diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
new file mode 100644
index 000000000..0eec61bf3
--- /dev/null
+++ b/.github/CONTRIBUTING.md
@@ -0,0 +1,119 @@
+# Contributing to COVIDcast indicator pipelines
+
+## Branches
+
+* `main`
+
+The primary/authoritative branch of this repository is called `main`, and contains up-to-date code and supporting libraries. This should be your starting point when creating a new indicator. It is protected so that only reviewed pull requests can be merged in.
+
+* `deploy-*`
+
+Each automated pipeline has a corresponding branch which automatically deploys to a runtime host which runs the pipeline at a designated time each day. New features and bugfixes are merged into this branch using a pull request, so that our CI system can run the lint and test cycles and make sure the package will run correctly on the runtime host. If an indicator does not have a branch named after it starting with `deploy-`, that means the indicator has not yet been automated, and has a designated human keeper who is responsible for making sure the indicator runs each day -- whether that is manually or using a scheduler like cron is the keeper's choice.
+
+* everything else
+
+All other branches are development branches. We don't enforce a naming policy.
+
+## Issues
+
+Issues are the main communication point when it comes to bugfixes, new features, or other possible changes. The repository has several issue templates that help to structure issues.
+
+If you ensure that each issue deals with a single topic (ie a single new proposed data source, or a single data quality problem), we'll all be less likely to drop subordinate tasks on the floor, but we also recognize that a lot of the people filing issues in this repository are new to large project management and not used to focusing their thoughts in this way. It's okay, we'll all learn and get better together.
+
+Admins will assign issues to one or more people based on balancing expediency, expertise, and team robustness. It may be faster for one person to fix something, but we can reduce the risk of having too many single points of failure if two people work on it together.
+
+## Project Boards
+
+The Delphi Engineering team uses project boards to structure its weekly calls and track active tasks.
+
+Immediate work is tracked on [Release Planning](https://github.com/cmu-delphi/covidcast-indicators/projects/2)
+
+Long-term work and modeling collaborations are tracked on [Refactoring](https://github.com/cmu-delphi/covidcast-indicators/projects/3)
+
+
+## General workflow for indicators creation and deployment
+
+So, how does one go about developing a pipeline for a new data source?
+
+**tl;dr**
+
+1. Create your new indicator branch from `main`.
+2. Build it using the appropriate template, following the guidelines in the included README.md and REVIEW.md files.
+3. Make some stuff!
+4. When your stuff works, push your `dev-*` branch to remote for review.
+5. Consult with a platform engineer for the remaining production setup needs. They will create a branch called `deploy-*` for your indicator.
+6. Initiate a pull request against this new branch.
+7. Following [the source documentation template](https://github.com/cmu-delphi/delphi-epidata/blob/main/docs/api/covidcast-signals/_source-template.md), create public API documentation for the source. You can submit this as a pull request against the delphi-epidata repository.
+8. If your peers like the code, the documentation is ready, and Jenkins approves, deploy your changes by merging the PR.
+9. An admin will propagate your successful changes to `main`.
+10. Rejoice!
+
+### Starting out
+
+The `main` branch should contain up-to-date code and supporting libraries. This should be your starting point when creating a new indicator.
+
+```shell
+# Hint
+#
+git checkout main
+git checkout -b dev-my-feature-branch
+```
+
+### Creating your indicator
+
+Create a directory for your new indicator by making a copy of `_template_r` or `_template_python` depending on the programming language you intend to use. The template copies of `README.md` and `REVIEW.md` include the minimum requirements for code structure, documentation, linting, testing, and method of configuration. Beyond that, we don't have any established restrictions on implementation; you can look at other existing indicators see some examples of code layout, organization, and general approach.
+
+- Consult your peers with questions! :handshake:
+
+Once you have something that runs locally and passes tests you set up your remote branch eventual review and production deployment.
+
+```shell
+# Hint
+#
+git push -u origin dev-my-feature-branch
+```
+
+You can then draft public API documentation for people who would fetch this
+data from the API. Public API documentation is kept in the delphi-epidata
+repository, and there is a [template Markdown
+file](https://github.com/cmu-delphi/delphi-epidata/blob/main/docs/api/covidcast-signals/_source-template.md)
+that outlines the features that need to be documented. You can create a pull
+request to add a new file to `docs/api/covidcast-signals/` for your source. Our
+goal is to have public API documentation for the data at the same time as it
+becomes available to the public.
+
+### Setting up for review and deployment
+
+Once you have your branch set up you should get in touch with a platform engineer to pair up on the remaining production needs. These include:
+
+- Creating the corresponding `deploy-*` branch in the repo.
+- Adding the necessary Jenkins scripts for your indicator.
+- Preparing the runtime host with any Automation configuration necessities.
+- Reviewing the workflow to make sure it meets the general guidelines and will run as expected on the runtime host.
+
+Once all the last mile configuration is in place you can create a pull request against the correct `deploy-*` branch to initiate the CI/CD pipeline which will build, test, and package your indicator for deployment.
+
+If everything looks ok, you've drafted source documentation, platform engineering has validated the last mile, and the pull request is accepted, you can merge the PR. Deployment will start automatically.
+
+Hopefully it'll be a full on :tada:, after that :crossed_fingers:
+
+If not, circle back and try again.
+
+## Production overview
+
+### Running production code
+
+Currently, the production indicators all live and run on the venerable and perennially useful Delphi primary server (also known generically as "the runtime host").
+
+### Delivering an indicator to the production environment
+
+We use a branch-based git workflow coupled with [Jenkins](https://www.jenkins.io/) and [Ansible](https://www.ansible.com/) to build, test, package, and deploy each indicator individually to the runtime host.
+
+- Jenkins dutifully manages the whole process for us by executing several "stages" in the context of a [CI/CD pipeline](https://dzone.com/articles/learn-how-to-setup-a-cicd-pipeline-from-scratch). Each stage does something unique, building on the previous stage. The stages are:
+ - Environment - Sets up some environment-specific needs that the other stages depend on.
+ - Build - Create the Python venv on the Jenkins host.
+ - Test - Run linting and unit tests.
+ - Package - Tar and gzip the built environment.
+ - Deploy - Trigger an Ansible playbook to place the built package onto the runtime host, place any necessary production configuration, and adjust the runtime envirnemnt (if necessary).
+
+There are several additional Jenkins-specific files that will need to be created for each indicator, as well as some configuration additions to the runtime host. It will be important to pair with a platform engineer to prepare the necessary production environment needs, test the workflow, validate on production, and ultimately sign off on a production release.
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 000000000..0086358db
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1 @@
+blank_issues_enabled: true
diff --git a/.github/ISSUE_TEMPLATE/data_quality_issue.md b/.github/ISSUE_TEMPLATE/data_quality_issue.md
new file mode 100644
index 000000000..c75b14e1c
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/data_quality_issue.md
@@ -0,0 +1,21 @@
+---
+name: Data quality issue
+about: Missing data, weird data, broken data
+title: ''
+labels: 'data quality'
+assignees: 'nmdefries'
+---
+
+**Actual Behavior:**
+
+
+
+When I...
+
+**Expected behavior**
+
+
+
+**Context**
+
+
diff --git a/.github/ISSUE_TEMPLATE/source_signal_request.md b/.github/ISSUE_TEMPLATE/source_signal_request.md
new file mode 100644
index 000000000..885541a23
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/source_signal_request.md
@@ -0,0 +1,19 @@
+---
+name: 🚀 New Source or Signal
+about: Suggest incorporation of a new source or signal
+title: ''
+labels: 'API addition'
+assignees: ''
+---
+
+
+
+It would be great if ...
+
+**Data details**
+
+
+
+**Additional context**
+
+
diff --git a/.gitignore b/.gitignore
index 385af7747..b32f99d31 100644
--- a/.gitignore
+++ b/.gitignore
@@ -116,6 +116,9 @@ venv.bak/
# mkdocs documentation
/site
+# VSCode settings
+*.vscode
+
# mypy
.mypy_cache/
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 000000000..fbfb2f9bd
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2020 The Delphi Group at Carnegie Mellon University
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index a71d7352a..1e2997dee 100644
--- a/README.md
+++ b/README.md
@@ -1,93 +1,35 @@
# Covidcast Indicators
-Pipeline code and supporting libraries for the **Real-time COVID-19 Indicators** used in the Delphi Group's [**COVIDcast** map](https://covidcast.cmu.edu).
+[![License: MIT][mit-image]][mit-url]
-## The indicators
+In early April 2020, Delphi developed a uniform data schema for [a new Epidata endpoint focused on COVID-19](https://cmu-delphi.github.io/delphi-epidata/api/covidcast.html). Our intent was to provide signals that would track in real-time and in fine geographic granularity all facets of the COVID-19 pandemic, aiding both nowcasting and forecasting. Delphi's long history in tracking and forecasting influenza made us uniquely situated to provide access to data streams not available anywhere else, including medical claims data, electronic medical records, lab test records, massive public surveys, and internet search trends. We also process commonly-used publicly-available data sources, both for user convenience and to provide data versioning for sources that do not track revisions themselves.
-Each subdirectory contained here that is named after an indicator has specific documentation. Please review as necessary!
+Each data stream arrives in a different format using a different delivery technique, be it sftp, an access-controlled API, or an email attachment. The purpose of each pipeline in this repository is to fetch the raw source data, extract informative aggregate signals, and output those signals---which we call **COVID-19 indicators**---in a common format for upload to the [COVIDcast API](https://cmu-delphi.github.io/delphi-epidata/api/covidcast.html).
-## General workflow for indicators creation and deployment
+For client access to the API, along with a variety of other utilities, see our [R](https://cmu-delphi.github.io/covidcast/covidcastR/) and [Python](https://cmu-delphi.github.io/covidcast/covidcast-py/html/) packages.
-**tl;dr**
+For interactive visualizations (of a subset of the available indicators), see our [COVIDcast map](https://covidcast.cmu.edu).
-1. Create your new indicator branch from `main`.
-2. Build it using the appropriate template, following the guidelines in the included README.md and REVIEW.md files.
-3. Make some stuff!
-4. When your stuff works, push your `dev-*` branch to remote for review.
-5. Consult with a platform engineer for the remaining production setup needs. They will create a branch called `deploy-*` for your indicator.
-6. Initiate a pull request against this new branch.
-7. Following [the source documentation template](https://github.com/cmu-delphi/delphi-epidata/blob/main/docs/api/covidcast-signals/_source-template.md), create public API documentation for the source. You can submit this as a pull request against the delphi-epidata repository.
-8. If your peers like the code, the documentation is ready, and Jenkins approves, deploy your changes by merging the PR.
-9. Rejoice!
+## Organization
-### Starting out
+Utilities:
+* `_delphi_utils_python` - common behaviors
+* `_template_python` & `_template_r` - starting points for new data sources
+* `ansible` & `jenkins` - automated testing and deployment
+* `sir_complainsalot` - a Slack bot to check for missing data
-The `main` branch should contain up-to-date code and supporting libraries. This should be your starting point when creating a new indicator.
+Indicator pipelines: all remaining directories.
-```shell
-# Hint
-#
-git checkout main
-git checkout -b dev-my-feature-branch
-```
+Each indicator pipeline includes its own documentation.
-### Creating your indicator
+* Consult README.md for directions to install, lint, test, and run the pipeline for that indicator.
+* Consult REVIEW.md for the checklist to use for code reviews.
+* Consult DETAILS.md (if present) for implementation details, including handling of corner cases.
-Create a directory for your new indicator by making a copy of `_template_r` or `_template_python` depending on the programming language you intend to use. The template copies of `README.md` and `REVIEW.md` include the minimum requirements for code structure, documentation, linting, testing, and method of configuration. Beyond that, we don't have any established restrictions on implementation; you can look at other existing indicators see some examples of code layout, organization, and general approach.
-- Consult your peers with questions! :handshake:
+## License
-Once you have something that runs locally and passes tests you set up your remote branch eventual review and production deployment.
+This repository is released under the **MIT License**.
-```shell
-# Hint
-#
-git push -u origin dev-my-feature-branch
-```
-
-You can then set draft public API documentation for people who would fetch this
-data from the API. Public API documentation is kept in the delphi-epidata
-repository, and there is a [template Markdown
-file](https://github.com/cmu-delphi/delphi-epidata/blob/main/docs/api/covidcast-signals/_source-template.md)
-that outlines the features that need to be documented. You can create a pull
-request to add a new file to `docs/api/covidcast-signals/` for your source. Our
-goal is to have public API documentation for the data at the same time as it
-becomes available to the public.
-
-### Setting up for review and deployment
-
-Once you have your branch set up you should get in touch with a platform engineer to pair up on the remaining production needs. These include:
-
-- Creating the corresponding `deploy-*` branch in the repo.
-- Adding the necessary Jenkins scripts for your indicator.
-- Preparing the runtime host with any Automation configuration necessities.
-- Reviewing the workflow to make sure it meets the general guidelines and will run as expected on the runtime host.
-
-Once all the last mile configuration is in place you can create a pull request against the correct `deploy-*` branch to initiate the CI/CD pipeline which will build, test, and package your indicator for deployment.
-
-If everything looks ok, you've drafted source documentation, platform engineering has validated the last mile, and the pull request is accepted, you can merge the PR. Deployment will start automatically.
-
-Hopefully it'll be a full on :tada:, after that :crossed_fingers:
-
-If not, circle back and try again.
-
-## Production overview
-
-### Running production code
-
-Currently, the production indicators all live and run on the venerable and perennially useful Delphi primary server (also known generically as "the runtime host").
-
-- This is a virtual machine running RHEL 7.5 and living in CMU's Campus Cloud vSphere-based infrastructure environemnt.
-
-### Delivering an indicator to the production environment
-
-We use a branch-based git workflow coupled with [Jenkins](https://www.jenkins.io/) and [Ansible](https://www.ansible.com/) to build, test, package, and deploy each indicator individually to the runtime host.
-
-- Jenkins dutifully manages the whole process for us by executing several "stages" in the context of a [CI/CD pipeline](https://dzone.com/articles/learn-how-to-setup-a-cicd-pipeline-from-scratch). Each stage does something unique, building on the previous stage. The stages are:
- - Environment - Sets up some environment-specific needs that the other stages depend on.
- - Build - Create the Python venv on the Jenkins host.
- - Test - Run linting and unit tests.
- - Package - Tar and gzip the built environment.
- - Deploy - Trigger an Ansible playbook to place the built package onto the runtime host, place any necessary production configuration, and adjust the runtime envirnemnt (if necessary).
-
-There are several additional Jenkins-specific files that will need to be created for each indicator, as well as some configuration additions to the runtime host. It will be important to pair with a platform engineer to prepare the necessary production environment needs, test the workflow, validate on production, and ultimately sign off on a production release.
+[mit-image]: https://img.shields.io/badge/License-MIT-yellow.svg
+[mit-url]: https://opensource.org/licenses/MIT
diff --git a/_delphi_utils_python/data_proc/geomap/03_20_MSAs.xls b/_delphi_utils_python/data_proc/geomap/03_20_MSAs.xls
deleted file mode 100644
index d2c6dd503..000000000
Binary files a/_delphi_utils_python/data_proc/geomap/03_20_MSAs.xls and /dev/null differ
diff --git a/_delphi_utils_python/data_proc/geomap/09_18_MSAs.xls b/_delphi_utils_python/data_proc/geomap/09_18_MSAs.xls
deleted file mode 100644
index ae913cc4f..000000000
Binary files a/_delphi_utils_python/data_proc/geomap/09_18_MSAs.xls and /dev/null differ
diff --git a/_delphi_utils_python/data_proc/geomap/COUNTY_ZIP_032020.xlsx b/_delphi_utils_python/data_proc/geomap/COUNTY_ZIP_032020.xlsx
deleted file mode 100644
index a62a7c9e9..000000000
Binary files a/_delphi_utils_python/data_proc/geomap/COUNTY_ZIP_032020.xlsx and /dev/null differ
diff --git a/_delphi_utils_python/data_proc/geomap/README.md b/_delphi_utils_python/data_proc/geomap/README.md
index 26b58a123..864946cb3 100644
--- a/_delphi_utils_python/data_proc/geomap/README.md
+++ b/_delphi_utils_python/data_proc/geomap/README.md
@@ -1,115 +1,65 @@
# Geocoding data processing pipeline
-Authors: Jingjing Tang, James Sharpnack
-
-The data_proc/geomap directory contains original source data, processing scripts, and notes for processing from original source to crosswalk tables in the data directory for the delphi_utils package.
+Authors: Jingjing Tang, James Sharpnack, Dmitry Shemetov
## Usage
Requires the following source files below.
-Run the following to write the cross files in the package data dir...
+Run the following to build the crosswalk tables in `covidcast-indicators/_delph_utils_python/delph_utils/data`
```
$ python geo_data_proc.py
```
-this will build the following files...
-- fips_msa_cross.csv
-- zip_fips_cross.csv
-- state_codes.csv
You can see consistency checks and diffs with old sources in ./consistency_checks.ipynb
-## Source files
-
-- 03_20_MSAs.xls : [US Census Bureau](https://www.census.gov/geographies/reference-files/time-series/demo/metro-micro/delineation-files.html)
-- 02_20_uszips.csv : Hand edited file from Jingjing, we only use the fips,zip encoding and also extract the states from these
-- Crosswalk files from https://www.huduser.gov/portal/datasets/usps_crosswalk.html
-- JHU crosswalk table: https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data#uid-lookup-table-logic
-- ZIP/County population: https://www.census.gov/geographies/reference-files/time-series/geo/relationship-files.html#par_textimage_674173622, https://www2.census.gov/geo/docs/maps-data/data/rel/zcta_county_rel_10.txt?#
-
-## Todo
-
-- make direct cross tables for fips -> hrr and zip -> msa / state
-- use hud for zip -> fips?
-
-## Notes
-
-Some of the source files were constructed by hand, most notably 02_20_uszips.csv.
-
-The 02_20_uszips.csv file is based on the newest consensus data including 5-digit zipcode, fips code, county name, state, population, HRR, HSA (I downloaded the original file from here https://simplemaps.com/data/us-zips. This file matches best to the most recent (2020) situation in terms of the population. But there still exist some matching problems. I manually checked and corrected those lines (~20) with zip-codes.com (https://www.zip-codes.com/zip-code/58439/zip-code-58439.asp). The mapping from 5-digit zipcode to HRR is based on the file in 2017 version downloaded from https://atlasdata.dartmouth.edu/static/supp_research_data
-
-transStateToHRR.csv and transfipsToHRR.csv are used to transform data from state level or county level to HRR respectively. For example, x is the horizontal vector of covid cases for different states in 04/10/20, then we have x @ H = y, where H is the table provided in these two csv files and y is a horizontal vector of covid cases for different HRRs.
+## Geo Codes
-HRRs are represented by hrrnum. There are 306 hrrs in total. They are not named as consecutive numbers.
+We support the following geocodes.
--Jingjing
+- The ZIP code and the FIPS code are the most granular geocodes we support.
+ - The [ZIP code](https://en.wikipedia.org/wiki/ZIP_Code) is a US postal code used by the USPS and the [FIPS code](https://en.wikipedia.org/wiki/FIPS_county_code) is an identifier for US counties and other associated territories. The ZIP code is five digit code (with leading zeros).
+ - The FIPS code is a five digit code (with leading zeros), where the first two digits are a two-digit state code and the last three are a three-digit county code (see this [US Census Bureau page](https://www.census.gov/library/reference/code-lists/ansi.html) for detailed information).
+- The Metropolitan Statistical Area (MSA) code refers to regions around cities (these are sometimes referred to as CBSA codes). More information on these can be found at the [US Census Bureau](https://www.census.gov/programs-surveys/metro-micro/about.html).
+ - We are reserving 10001-10099 for states codes of the form 100XX where XX is the FIPS code for the state (the current smallest CBSA is 10100). In the case that the CBSA codes change then it should be verified that these are not used.
+- State codes are a series of equivalent identifiers for US state. They include the state name, the state number (state_id), and the state two-letter abbreviation (state_code). The state number is the state FIPS code. See [here](https://en.wikipedia.org/wiki/List_of_U.S._state_and_territory_abbreviations) for more.
+- The Hospital Referral Region (HRR) and the Hospital Service Area (HSA). More information [here](https://www.dartmouthatlas.org/covid-19/hrr-mapping/).
+- The JHU signal contains its own geographic identifier, labeled the UID. Documentation is provided at [their repo](https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data#uid-lookup-table-logic). Its FIPS codes depart in some special cases, so we produce manual changes listed below.
+## Source files
-04/14/20: 'msa_id' and 'msa_name' are added according to the msa_list.csv that Aaron found from https://apps.bea.gov/regional/docs/msalist.cfm (2019)
-
-04/15/20:
-The newly updated(added columns) are based on cbsatocountycrosswalk.csv from https://data.nber.org/data/cbsa-fips-county-crosswalk.html
-- 'msa' : MSA ID
-- 'msaname': Name of the MSA
-- 'cbsa': CBSA ID
-- 'cbsaname': Name of the CBSA
-
-
-04/19/20:
-Changed to msa_list.csv again.
-
-05/20/20: Updated msa_list.csv to include MSAs in Puerto Rico, using the delineations file from March 2020: https://www.census.gov/geographies/reference-files/time-series/demo/metro-micro/delineation-files.html
-
-06/15/20:
-Added file co-est2019-annres.csv, which gives 2019 population estimates for each county by name
+The source files are requested from a government URL when `geo_data_proc.py` is run (see the top of said script for the URLs). Below we describe the locations to find updated versions of the source files, if they are ever needed.
-Source: Annual Estimates of the Resident Population for Counties in the United States: April 1, 2010 to July 1, 2019 (CO-EST2019-ANNRES). U.S. Census Bureau, Population Division. Release Date: March 2020
-Note: The estimates are based on the 2010 Census and reflect changes to the April 1, 2010 population due to the Count Question Resolution program and geographic program revisions. All geographic boundaries for the 2019 population estimates are as of January 1, 2019. For population estimates methodology statements, see http://www.census.gov/programs-surveys/popest/technical-documentation/methodology.html.
+- ZIP -> FIPS (county) population tables available from [US Census](https://www.census.gov/geographies/reference-files/time-series/geo/relationship-files.html#par_textimage_674173622). This file contains the population of the intersections between ZIP and FIPS regions, allowing the creation of a population-weighted transform between the two.
+- ZIP -> HRR -> HSA crosswalk file comes from the 2018 version at the [Dartmouth Atlas Project](https://atlasdata.dartmouth.edu/static/supp_research_data).
+- FIPS -> MSA crosswalk file comes from the September 2018 version of the delineation files at the [US Census Bureau](https://www.census.gov/geographies/reference-files/time-series/demo/metro-micro/delineation-files.html).
+- State Code -> State ID -> State Name comes from the ANSI standard at the [US Census](https://www.census.gov/library/reference/code-lists/ansi.html#par_textimage_3). The first two digits of a FIPS codes should match the state code here.
+- JHU UID -> FIPS comes from [the JHU documentation](https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data#uid-lookup-table-logic). We have to do some hand modifications to the JHU UID because the mapping to FIPS isn't always consistent.
-Note: The 6,222 people in Bedford city, Virginia, which was an independent city as of the 2010 Census, are not included in the April 1, 2010 Census enumerated population presented in the county estimates. In July 2013, the legal status of Bedford changed from a city to a town and it became dependent within (or part of) Bedford County, Virginia. This population of Bedford town is now included in the April 1, 2010 estimates base and all July 1 estimates for Bedford County. Because it is no longer an independent city, Bedford town is not listed in this table. As a result, the sum of the April 1, 2010 census values for Virginia counties and independent cities does not equal the 2010 Census count for Virginia, and the sum of April 1, 2010 census values for all counties and independent cities in the United States does not equal the 2010 Census count for the United States. Substantial geographic changes to counties can be found on the Census Bureau website at https://www.census.gov/programs-surveys/geography/technical-documentation/county-changes.html.
+## Derived files
+The rest of the crosswalk tables are derived from the mappings above. We provide crosswalk functions from granular to coarser codes, but not the other way around. This is because there is no information gained when crosswalking from coarse to granular.
-07/07/2020:
-Introduced the March 2020 MSA file, source is [US Census Bureau](https://www.census.gov/geographies/reference-files/time-series/demo/metro-micro/delineation-files.html). This file seems to differ in a few fips codes from the source for the 02_20_uszip file which Jingjing constructed. There are at least 10 additional fips in 03_20_msa that are not in the uszip file, and one of the msa codes seems to be incorrect: 49020 (a google search confirms that it is incorrect in uszip and correct in the census data).
+## JHU UID mapping changes
-07/08/2020:
-We are reserving 00001-00099 for states codes of the form 100XX where XX is the fips code for the state. In the case that the CBSA codes change then it should be verified that these are not used. The current smallest CBSA is 10100.
+- Dukes and Nantucket counties in Massachusets are aggregated, so we split them with population-proportional weights (approximately 2/3 Dukes and 1/3 Nantucket).
+- The same procedure is followed by Kansas City and four of its counties.
+- Kusilvak, Alaska is mapped to the FIPS code 02270.
+- Ogalala Lakota, South Dakota is mapped to the FIPS code 46113.
+- Utah reports at a territory level, so we only report it at in a state level megaFIPS 49000.
+- JHU places cases and deaths that cannot be localized to a single county into "Out of State" and "Unassigned" categories. We map these to the "megaFIPS" code XX000, where XX is the state FIPS code. This way, the data is recovered when aggregating up to the state level, but does not interfere with other counties.
--James
+## Deprecated source files
-07/22/2020:
-- Introducing the COUNTY_ZIP and ZIP_COUNTY crosswalk files from https://www.huduser.gov/portal/datasets/usps_crosswalk.html
-- Also the ZIP to HRR Crosswalk file (from 2018) from https://atlasdata.dartmouth.edu/static/supp_research_data
-- Added the JHU crosswalk table and created a jhu_uid to fips crosswalk table: https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data#uid-lookup-table-logic
+- ZIP to FIPS to HRR to states: `02_20_uszips.csv` comes from a version of the table [here](https://simplemaps.com/data/us-zips) modified by Jingjing to include population weights.
+ - The `02_20_uszips.csv` file is based on the newest consensus data including 5-digit zipcode, fips code, county name, state, population, HRR, HSA (I downloaded the original file from [here](https://simplemaps.com/data/us-zips). This file matches best to the most recent (2020) situation in terms of the population. But there still exist some matching problems. I manually checked and corrected those lines (~20) with [zip-codes](https://www.zip-codes.com/zip-code/58439/zip-code-58439.asp). The mapping from 5-digit zipcode to HRR is based on the file in 2017 version downloaded from [here](https://atlasdata.dartmouth.edu/static/supp_research_data).
+- ZIP -> FIPS is provided by [huduser.gov](https://www.huduser.gov/portal/datasets/usps_crosswalk.html) for zip -> fips?
+- FIPS county population data from [US Census Bureau](http://www.census.gov/programs-surveys/popest/technical-documentation/methodology.html). Details of Bedford, Virginia counting [here](https://www.census.gov/programs-surveys/geography/technical-documentation/county-changes.html).
+- JHU UID crosswalk table [here](https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data#uid-lookup-table-logic)
+- CBSA -> FIPS crosswalk from [here](https://data.nber.org/data/cbsa-fips-county-crosswalk.html) (the file is `cbsatocountycrosswalk.csv`).
+- MSA tables from March 2020 [here](https://www.census.gov/geographies/reference-files/time-series/demo/metro-micro/delineation-files.html). This file seems to differ in a few fips codes from the source for the 02_20_uszip file which Jingjing constructed. There are at least 10 additional fips in 03_20_msa that are not in the uszip file, and one of the msa codes seems to be incorrect: 49020 (a google search confirms that it is incorrect in uszip and correct in the census data).
+- MSA tables from 2019 [here](https://apps.bea.gov/regional/docs/msalist.cfm)
-There are NaN fips in the JHU tables, so to resolve this we are moving over to using the JHU unique id.
-We have to deal with the NaN fips by hand, which are
-```
-748 US
-887 Recovered, US
-888 Dukes and Nantucket, Massachusetts, US
-889 Kansas City, Missouri, US
-890 Michigan Department of Corrections (MDOC), Mic...
-891 Federal Correctional Institution (FCI), Michig...
-892 Air Force, US Military, US
-893 Army, US Military, US
-894 Marine Corps, US Military, US
-895 Navy, US Military, US
-896 Unassigned, US Military, US
-897 US Military, US
-898 Inmates, Federal Bureau of Prisons, US
-899 Staff, Federal Bureau of Prisons, US
-900 Federal Bureau of Prisons, US
-901 Bear River, Utah, US
-902 Central Utah, Utah, US
-903 Southeast Utah, Utah, US
-904 Southwest Utah, Utah, US
-905 TriCounty, Utah, US
-906 Weber-Morgan, Utah, US
-907 Veteran Hospitals, US
-```
-Is you look at geo_data.py::
+## Notes
-08/04/2020:
-Large changes in MSA from 2018 version from bea.gov (msa_list.csv), and the new 2020 version from census bureau (03_20_MSAs.xls).
-Trying to use 2018 version instead from https://www.census.gov/geographies/reference-files/time-series/demo/metro-micro/delineation-files.html
\ No newline at end of file
+- The NAs in the coding currently zero-fills.
diff --git a/_delphi_utils_python/data_proc/geomap/UID_ISO_FIPS_LookUp_Table.csv b/_delphi_utils_python/data_proc/geomap/UID_ISO_FIPS_LookUp_Table.csv
deleted file mode 100644
index 6cd4179ad..000000000
--- a/_delphi_utils_python/data_proc/geomap/UID_ISO_FIPS_LookUp_Table.csv
+++ /dev/null
@@ -1,4153 +0,0 @@
-UID,iso2,iso3,code3,FIPS,Admin2,Province_State,Country_Region,Lat,Long_,Combined_Key,Population
-4,AF,AFG,4,,,,Afghanistan,33.93911,67.709953,Afghanistan,38928341
-8,AL,ALB,8,,,,Albania,41.1533,20.1683,Albania,2877800
-12,DZ,DZA,12,,,,Algeria,28.0339,1.6596,Algeria,43851043
-20,AD,AND,20,,,,Andorra,42.5063,1.5218,Andorra,77265
-24,AO,AGO,24,,,,Angola,-11.2027,17.8739,Angola,32866268
-28,AG,ATG,28,,,,Antigua and Barbuda,17.0608,-61.7964,Antigua and Barbuda,97928
-32,AR,ARG,32,,,,Argentina,-38.4161,-63.6167,Argentina,45195777
-51,AM,ARM,51,,,,Armenia,40.0691,45.0382,Armenia,2963234
-40,AT,AUT,40,,,,Austria,47.5162,14.5501,Austria,9006400
-31,AZ,AZE,31,,,,Azerbaijan,40.1431,47.5769,Azerbaijan,10139175
-44,BS,BHS,44,,,,Bahamas,25.025885,-78.035889,Bahamas,393248
-48,BH,BHR,48,,,,Bahrain,26.0275,50.55,Bahrain,1701583
-50,BD,BGD,50,,,,Bangladesh,23.685,90.3563,Bangladesh,164689383
-52,BB,BRB,52,,,,Barbados,13.1939,-59.5432,Barbados,287371
-112,BY,BLR,112,,,,Belarus,53.7098,27.9534,Belarus,9449321
-56,BE,BEL,56,,,,Belgium,50.8333,4.469936,Belgium,11589616
-84,BZ,BLZ,84,,,,Belize,17.1899,-88.4976,Belize,397621
-204,BJ,BEN,204,,,,Benin,9.3077,2.3158,Benin,12123198
-64,BT,BTN,64,,,,Bhutan,27.5142,90.4336,Bhutan,771612
-68,BO,BOL,68,,,,Bolivia,-16.2902,-63.5887,Bolivia,11673029
-70,BA,BIH,70,,,,Bosnia and Herzegovina,43.9159,17.6791,Bosnia and Herzegovina,3280815
-72,BW,BWA,72,,,,Botswana,-22.3285,24.6849,Botswana,2351625
-76,BR,BRA,76,,,,Brazil,-14.235,-51.9253,Brazil,212559409
-7601,BR,BRA,76,,,Acre,Brazil,-9.0238,-70.812,"Acre, Brazil",881935
-7602,BR,BRA,76,,,Alagoas,Brazil,-9.5713,-36.782,"Alagoas, Brazil",3337357
-7603,BR,BRA,76,,,Amapa,Brazil,0.902,-52.003,"Amapa, Brazil",845731
-7604,BR,BRA,76,,,Amazonas,Brazil,-3.4168,-65.8561,"Amazonas, Brazil",4144597
-7605,BR,BRA,76,,,Bahia,Brazil,-12.5797,-41.7007,"Bahia, Brazil",14873064
-7606,BR,BRA,76,,,Ceara,Brazil,-5.4984,-39.3206,"Ceara, Brazil",9132078
-7607,BR,BRA,76,,,Distrito Federal,Brazil,-15.7998,-47.8645,"Distrito Federal, Brazil",3015268
-7608,BR,BRA,76,,,Espirito Santo,Brazil,-19.1834,-40.3089,"Espirito Santo, Brazil",4018650
-7609,BR,BRA,76,,,Goias,Brazil,-15.827,-49.8362,"Goias, Brazil",7018354
-7610,BR,BRA,76,,,Maranhao,Brazil,-4.9609,-45.2744,"Maranhao, Brazil",7075181
-7611,BR,BRA,76,,,Mato Grosso,Brazil,-12.6819,-56.9211,"Mato Grosso, Brazil",3484466
-7612,BR,BRA,76,,,Mato Grosso do Sul,Brazil,-20.7722,-54.7852,"Mato Grosso do Sul, Brazil",2778986
-7613,BR,BRA,76,,,Minas Gerais,Brazil,-18.5122,-44.555,"Minas Gerais, Brazil",21168791
-7614,BR,BRA,76,,,Para,Brazil,-1.9981,-54.9306,"Para, Brazil",8602865
-7615,BR,BRA,76,,,Paraiba,Brazil,-7.24,-36.782,"Paraiba, Brazil",4018127
-7616,BR,BRA,76,,,Parana,Brazil,-25.2521,-52.0215,"Parana, Brazil",11433957
-7617,BR,BRA,76,,,Pernambuco,Brazil,-8.8137,-36.9541,"Pernambuco, Brazil",9557071
-7618,BR,BRA,76,,,Piaui,Brazil,-7.7183,-42.7289,"Piaui, Brazil",3273227
-7619,BR,BRA,76,,,Rio de Janeiro,Brazil,-22.9068,-43.1729,"Rio de Janeiro, Brazil",17264943
-7620,BR,BRA,76,,,Rio Grande do Norte,Brazil,-5.4026,-36.9541,"Rio Grande do Norte, Brazil",3506853
-7621,BR,BRA,76,,,Rio Grande do Sul,Brazil,-30.0346,-51.2177,"Rio Grande do Sul, Brazil",11377239
-7622,BR,BRA,76,,,Rondonia,Brazil,-11.5057,-63.5806,"Rondonia, Brazil",1777225
-7623,BR,BRA,76,,,Roraima,Brazil,-2.7376,-62.0751,"Roraima, Brazil",605761
-7624,BR,BRA,76,,,Santa Catarina,Brazil,-27.2423,-50.2189,"Santa Catarina, Brazil",7164788
-7625,BR,BRA,76,,,Sao Paulo,Brazil,-23.5505,-46.6333,"Sao Paulo, Brazil",45919049
-7626,BR,BRA,76,,,Sergipe,Brazil,-10.5741,-37.3857,"Sergipe, Brazil",2298696
-7627,BR,BRA,76,,,Tocantins,Brazil,-10.1753,-48.2982,"Tocantins, Brazil",1572866
-7628,BR,BRA,76,,,Unknown,Brazil,,,"Unknown, Brazil",
-96,BN,BRN,96,,,,Brunei,4.5353,114.7277,Brunei,437483
-100,BG,BGR,100,,,,Bulgaria,42.7339,25.4858,Bulgaria,6948445
-854,BF,BFA,854,,,,Burkina Faso,12.2383,-1.5616,Burkina Faso,20903278
-104,MM,MMR,104,,,,Burma,21.9162,95.956,Burma,54409794
-108,BI,BDI,108,,,,Burundi,-3.3731,29.9189,Burundi,11890781
-132,CV,CPV,132,,,,Cabo Verde,16.5388,-23.0418,Cabo Verde,555988
-116,KH,KHM,116,,,,Cambodia,11.55,104.9167,Cambodia,16718971
-120,CM,CMR,120,,,,Cameroon,3.848,11.5021,Cameroon,26545864
-140,CF,CAF,140,,,,Central African Republic,6.6111,20.9394,Central African Republic,4829764
-148,TD,TCD,148,,,,Chad,15.4542,18.7322,Chad,16425859
-152,CL,CHL,152,,,,Chile,-35.6751,-71.543,Chile,19116209
-15201,CL,CHL,152,,,Antofagasta,Chile,-23.6509,-70.3975,"Antofagasta, Chile",607534
-15202,CL,CHL,152,,,Araucania,Chile,-38.9489,-72.3311,"Araucania, Chile",957224
-15203,CL,CHL,152,,,Arica y Parinacota,Chile,-18.594,-69.4785,"Arica y Parinacota, Chile",226068
-15204,CL,CHL,152,,,Atacama,Chile,-27.5661,-70.0503,"Atacama, Chile",288944
-15205,CL,CHL,152,,,Aysen,Chile,-45.9864,-73.7669,"Aysen, Chile",103158
-15206,CL,CHL,152,,,Biobio,Chile,-37.4464,-72.1416,"Biobio, Chile",1556805
-15207,CL,CHL,152,,,Coquimbo,Chile,-29.959,-71.3389,"Coquimbo, Chile",757586
-15208,CL,CHL,152,,,Los Lagos,Chile,-41.9198,-72.1416,"Los Lagos, Chile",828708
-15209,CL,CHL,152,,,Los Rios,Chile,-40.231,-72.3311,"Los Rios, Chile",384837
-15210,CL,CHL,152,,,Magallanes,Chile,-52.368,-70.9863,"Magallanes, Chile",166533
-15211,CL,CHL,152,,,Maule,Chile,-35.5183,-71.6885,"Maule, Chile",1044950
-15212,CL,CHL,152,,,Metropolitana,Chile,-33.4376,-70.6505,"Metropolitana, Chile",7112808
-15213,CL,CHL,152,,,Nuble,Chile,-36.7226,-71.7622,"Nuble, Chile",480609
-15214,CL,CHL,152,,,OHiggins,Chile,-34.5755,-71.0022,"OHiggins, Chile",914555
-15215,CL,CHL,152,,,Tarapaca,Chile,-19.9232,-69.5132,"Tarapaca, Chile",330558
-15216,CL,CHL,152,,,Valparaiso,Chile,-33.0472,-71.6127,"Valparaiso, Chile",1815902
-15217,CL,CHL,152,,,Unknown,Chile,,,"Unknown, Chile",
-170,CO,COL,170,,,,Colombia,4.5709,-74.2973,Colombia,50882884
-17001,CO,COL,170,,,Amazonas,Colombia,-1.4429,-71.5724,"Amazonas, Colombia",76589
-17002,CO,COL,170,,,Antioquia,Colombia,7.1986,-75.3412,"Antioquia, Colombia",6407102
-17003,CO,COL,170,,,Arauca,Colombia,7.0762,-70.7105,"Arauca, Colombia",262174
-17004,CO,COL,170,,,Atlantico,Colombia,10.6966,-74.8741,"Atlantico, Colombia",2535517
-17005,CO,COL,170,,,Bolivar,Colombia,8.6704,-74.03,"Bolivar, Colombia",2070110
-17006,CO,COL,170,,,Boyaca,Colombia,5.4545,-73.362,"Boyaca, Colombia",1217376
-17007,CO,COL,170,,,Caldas,Colombia,5.2983,-75.2479,"Caldas, Colombia",998255
-17008,CO,COL,170,,,Capital District,Colombia,4.711,-74.0721,"Capital District, Colombia",7412566
-17009,CO,COL,170,,,Caqueta,Colombia,0.8699,-73.8419,"Caqueta, Colombia",401489
-17010,CO,COL,170,,,Casanare,Colombia,5.7589,-71.5724,"Casanare, Colombia",420504
-17011,CO,COL,170,,,Cauca,Colombia,2.705,-76.826,"Cauca, Colombia",1464488
-17012,CO,COL,170,,,Cesar,Colombia,9.3373,-73.6536,"Cesar, Colombia",1200574
-17013,CO,COL,170,,,Choco,Colombia,5.2528,-76.826,"Choco, Colombia",534826
-17014,CO,COL,170,,,Cordoba,Colombia,8.0493,-75.574,"Cordoba, Colombia",1784783
-17015,CO,COL,170,,,Cundinamarca,Colombia,5.026,-74.03,"Cundinamarca, Colombia",2919060
-17016,CO,COL,170,,,Guainia,Colombia,2.5854,-68.5247,"Guainia, Colombia",48114
-17017,CO,COL,170,,,Guaviare,Colombia,1.0654,-73.2603,"Guaviare, Colombia",82767
-17018,CO,COL,170,,,Huila,Colombia,2.5359,-75.5277,"Huila, Colombia",1100386
-17019,CO,COL,170,,,La Guajira,Colombia,11.3548,-72.5205,"La Guajira, Colombia",880560
-17020,CO,COL,170,,,Magdalena,Colombia,10.4113,-74.4057,"Magdalena, Colombia",1341746
-17021,CO,COL,170,,,Meta,Colombia,3.272,-73.0877,"Meta, Colombia",1039722
-17022,CO,COL,170,,,Narino,Colombia,1.2892,-77.3579,"Narino, Colombia",1630592
-17023,CO,COL,170,,,Norte de Santander,Colombia,7.9463,-72.8988,"Norte de Santander, Colombia",1491689
-17024,CO,COL,170,,,Putumayo,Colombia,0.436,-75.5277,"Putumayo, Colombia",348182
-17025,CO,COL,170,,,Quindio,Colombia,4.461,-75.6674,"Quindio, Colombia",539904
-17026,CO,COL,170,,,Risaralda,Colombia,5.3158,-75.9928,"Risaralda, Colombia",943401
-17027,CO,COL,170,,,San Andres y Providencia,Colombia,12.5567,-81.7185,"San Andres y Providencia, Colombia",61280
-17028,CO,COL,170,,,Santander,Colombia,6.6437,-73.6536,"Santander, Colombia",2184837
-17029,CO,COL,170,,,Sucre,Colombia,8.814,-74.7233,"Sucre, Colombia",904863
-17030,CO,COL,170,,,Tolima,Colombia,4.0925,-75.1545,"Tolima, Colombia",1330187
-17031,CO,COL,170,,,Valle del Cauca,Colombia,3.8009,-76.6413,"Valle del Cauca, Colombia",4475886
-17032,CO,COL,170,,,Vaupes,Colombia,0.8554,-70.812,"Vaupes, Colombia",40797
-17033,CO,COL,170,,,Vichada,Colombia,4.4234,-69.2878,"Vichada, Colombia",107808
-17034,CO,COL,170,,,Unknown,Colombia,,,"Unknown, Colombia",
-178,CG,COG,178,,,,Congo (Brazzaville),-0.228,15.8277,Congo (Brazzaville),5518092
-180,CD,COD,180,,,,Congo (Kinshasa),-4.0383,21.7587,Congo (Kinshasa),89561404
-174,KM,COM,174,,,,Comoros,-11.6455,43.3333,Comoros,869595
-188,CR,CRI,188,,,,Costa Rica,9.7489,-83.7534,Costa Rica,5094114
-384,CI,CIV,384,,,,Cote d'Ivoire,7.54,-5.5471,Cote d'Ivoire,26378275
-191,HR,HRV,191,,,,Croatia,45.1,15.2,Croatia,4105268
-192,CU,CUB,192,,,,Cuba,21.521757,-77.781167,Cuba,11326616
-196,CY,CYP,196,,,,Cyprus,35.1264,33.4299,Cyprus,1207361
-203,CZ,CZE,203,,,,Czechia,49.8175,15.473,Czechia,10708982
-208,DK,DNK,208,,,,Denmark,56.2639,9.5018,Denmark,5792203
-234,FO,FRO,234,,,Faroe Islands,Denmark,61.8926,-6.9118,"Faroe Islands, Denmark",48865
-304,GL,GRL,304,,,Greenland,Denmark,71.7069,-42.6043,"Greenland, Denmark",56772
-9999,,,,,,,Diamond Princess,,,Diamond Princess,
-262,DJ,DJI,262,,,,Djibouti,11.8251,42.5903,Djibouti,988002
-212,DM,DMA,212,,,,Dominica,15.415,-61.371,Dominica,71991
-214,DO,DOM,214,,,,Dominican Republic,18.7357,-70.1627,Dominican Republic,10847904
-218,EC,ECU,218,,,,Ecuador,-1.8312,-78.1834,Ecuador,17643060
-818,EG,EGY,818,,,,Egypt,26.820553,30.802498,Egypt,102334403
-222,SV,SLV,222,,,,El Salvador,13.7942,-88.8965,El Salvador,6486201
-226,GQ,GNQ,226,,,,Equatorial Guinea,1.6508,10.2679,Equatorial Guinea,1402985
-232,ER,ERI,232,,,,Eritrea,15.1794,39.7823,Eritrea,3546427
-233,EE,EST,233,,,,Estonia,58.5953,25.0136,Estonia,1326539
-748,SZ,SWZ,748,,,,Eswatini,-26.5225,31.4659,Eswatini,1160164
-231,ET,ETH,231,,,,Ethiopia,9.145,40.4897,Ethiopia,114963583
-242,FJ,FJI,242,,,,Fiji,-17.7134,178.065,Fiji,896444
-246,FI,FIN,246,,,,Finland,61.92411,25.748151,Finland,5540718
-250,FR,FRA,250,,,,France,46.2276,2.2137,France,65273512
-254,GF,GUF,254,,,French Guiana,France,4,-53,"French Guiana, France",298682
-258,PF,PYF,258,,,French Polynesia,France,-17.6797,149.4068,"French Polynesia, France",280904
-312,GP,GLP,312,,,Guadeloupe,France,16.265,-61.551,"Guadeloupe, France",400127
-474,MQ,MTQ,474,,,Martinique,France,14.6415,-61.0242,"Martinique, France",375265
-175,YT,MYT,175,,,Mayotte,France,-12.8275,45.166244,"Mayotte, France",272813
-540,NC,NCL,540,,,New Caledonia,France,-20.904305,165.618042,"New Caledonia, France",285491
-638,RE,REU,638,,,Reunion,France,-21.1151,55.5364,"Reunion, France",895308
-652,BL,BLM,652,,,Saint Barthelemy,France,17.9,-62.8333,"Saint Barthelemy, France",9885
-666,PM,SPM,666,,,Saint Pierre and Miquelon,France,46.8852,-56.3159,"Saint Pierre and Miquelon, France",5795
-663,MF,MAF,663,,,St Martin,France,18.0708,-63.0501,"St Martin, France",38659
-266,GA,GAB,266,,,,Gabon,-0.8037,11.6094,Gabon,2225728
-270,GM,GMB,270,,,,Gambia,13.4432,-15.3101,Gambia,2416664
-268,GE,GEO,268,,,,Georgia,42.3154,43.3569,Georgia,3989175
-276,DE,DEU,276,,,,Germany,51.165691,10.451526,Germany,83783945
-27601,DE,DEU,276,,,Baden-Wurttemberg,Germany,48.6616,9.3501,"Baden-Wurttemberg, Germany",11069533
-27602,DE,DEU,276,,,Bayern,Germany,48.7904,11.4979,"Bayern, Germany",13076721
-27603,DE,DEU,276,,,Berlin,Germany,52.52,13.405,"Berlin, Germany",3644826
-27604,DE,DEU,276,,,Brandenburg,Germany,52.4125,12.5316,"Brandenburg, Germany",2511917
-27605,DE,DEU,276,,,Bremen,Germany,53.0793,8.8017,"Bremen, Germany",682986
-27606,DE,DEU,276,,,Hamburg,Germany,53.5511,9.9937,"Hamburg, Germany",1841179
-27607,DE,DEU,276,,,Hessen,Germany,50.6521,9.1624,"Hessen, Germany",6265809
-27608,DE,DEU,276,,,Mecklenburg-Vorpommern,Germany,53.6127,12.4296,"Mecklenburg-Vorpommern, Germany",1609675
-27609,DE,DEU,276,,,Niedersachsen,Germany,52.6367,9.8451,"Niedersachsen, Germany",7982448
-27610,DE,DEU,276,,,Nordrhein-Westfalen,Germany,51.4332,7.6616,"Nordrhein-Westfalen, Germany",17932651
-27611,DE,DEU,276,,,Rheinland-Pfalz,Germany,50.1183,7.309,"Rheinland-Pfalz, Germany",4084844
-27612,DE,DEU,276,,,Saarland,Germany,49.3964,7.023,"Saarland, Germany",990509
-27613,DE,DEU,276,,,Sachsen,Germany,51.1045,13.2017,"Sachsen, Germany",4077937
-27614,DE,DEU,276,,,Sachsen-Anhalt,Germany,51.9503,11.6923,"Sachsen-Anhalt, Germany",2208321
-27615,DE,DEU,276,,,Schleswig-Holstein,Germany,54.2194,9.6961,"Schleswig-Holstein, Germany",2896712
-27616,DE,DEU,276,,,Thuringen,Germany,51.011,10.8453,"Thuringen, Germany",2143145
-27617,DE,DEU,276,,,Unknown,Germany,,,"Unknown, Germany",
-288,GH,GHA,288,,,,Ghana,7.9465,-1.0232,Ghana,31072945
-300,GR,GRC,300,,,,Greece,39.0742,21.8243,Greece,10423056
-308,GD,GRD,308,,,,Grenada,12.1165,-61.679,Grenada,112519
-320,GT,GTM,320,,,,Guatemala,15.7835,-90.2308,Guatemala,17915567
-324,GN,GIN,324,,,,Guinea,9.9456,-9.6966,Guinea,13132792
-624,GW,GNB,624,,,,Guinea-Bissau,11.8037,-15.1804,Guinea-Bissau,1967998
-328,GY,GUY,328,,,,Guyana,4.860416,-58.93018,Guyana,786559
-332,HT,HTI,332,,,,Haiti,18.9712,-72.2852,Haiti,11402533
-336,VA,VAT,336,,,,Holy See,41.9029,12.4534,Holy See,809
-340,HN,HND,340,,,,Honduras,15.2,-86.2419,Honduras,9904608
-348,HU,HUN,348,,,,Hungary,47.1625,19.5033,Hungary,9660350
-352,IS,ISL,352,,,,Iceland,64.9631,-19.0208,Iceland,341250
-356,IN,IND,356,,,,India,20.593684,78.96288,India,1380004385
-35601,IN,IND,356,,,Andaman and Nicobar Islands,India,11.225999,92.968178,"Andaman and Nicobar Islands, India",417036
-35602,IN,IND,356,,,Andhra Pradesh,India,15.9129,79.74,"Andhra Pradesh, India",53903393
-35603,IN,IND,356,,,Arunachal Pradesh,India,27.768456,96.384277,"Arunachal Pradesh, India",1570458
-35604,IN,IND,356,,,Assam,India,26.357149,92.830441,"Assam, India",35607039
-35605,IN,IND,356,,,Bihar,India,25.679658,85.60484,"Bihar, India",124799926
-35606,IN,IND,356,,,Chandigarh,India,30.733839,76.768278,"Chandigarh, India",1158473
-35607,IN,IND,356,,,Chhattisgarh,India,21.264705,82.035366,"Chhattisgarh, India",29436231
-35608,IN,IND,356,,,Dadra and Nagar Haveli and Daman and Diu,India,20.194742,73.080901,"Dadra and Nagar Haveli and Daman and Diu, India",615724
-35609,IN,IND,356,,,Delhi,India,28.646519,77.10898,"Delhi, India",18710922
-35610,IN,IND,356,,,Goa,India,15.359682,74.057396,"Goa, India",1586250
-35611,IN,IND,356,,,Gujarat,India,22.694884,71.590923,"Gujarat, India",63872399
-35612,IN,IND,356,,,Haryana,India,29.20004,76.332824,"Haryana, India",28204692
-35613,IN,IND,356,,,Himachal Pradesh,India,31.927213,77.233081,"Himachal Pradesh, India",7451955
-35614,IN,IND,356,,,Jammu and Kashmir,India,33.75943,76.612638,"Jammu and Kashmir, India",13606320
-35615,IN,IND,356,,,Jharkhand,India,23.654536,85.557631,"Jharkhand, India",38593948
-35616,IN,IND,356,,,Karnataka,India,14.70518,76.166436,"Karnataka, India",67562686
-35617,IN,IND,356,,,Kerala,India,10.450898,76.405749,"Kerala, India",35699443
-35618,IN,IND,356,,,Ladakh,India,34.1526,77.5771,"Ladakh, India",274289
-35619,IN,IND,356,,,Madhya Pradesh,India,23.541513,78.289633,"Madhya Pradesh, India",85358965
-35620,IN,IND,356,,,Maharashtra,India,19.449759,76.108221,"Maharashtra, India",123144223
-35621,IN,IND,356,,,Manipur,India,24.738975,93.882541,"Manipur, India",3091545
-35622,IN,IND,356,,,Meghalaya,India,25.536934,91.278882,"Meghalaya, India",3366710
-35623,IN,IND,356,,,Mizoram,India,23.309381,92.83822,"Mizoram, India",1239244
-35624,IN,IND,356,,,Nagaland,India,26.06702,94.470302,"Nagaland, India",2249695
-35625,IN,IND,356,,,Odisha,India,20.505428,84.418059,"Odisha, India",46356334
-35626,IN,IND,356,,,Puducherry,India,11.882658,78.86498,"Puducherry, India",1413542
-35627,IN,IND,356,,,Punjab,India,30.841465,75.40879,"Punjab, India",30141373
-35628,IN,IND,356,,,Rajasthan,India,26.583423,73.847973,"Rajasthan, India",81032689
-35629,IN,IND,356,,,Sikkim,India,27.571671,88.472712,"Sikkim, India",690251
-35630,IN,IND,356,,,Tamil Nadu,India,11.006091,78.400624,"Tamil Nadu, India",77841267
-35631,IN,IND,356,,,Telangana,India,18.1124,79.0193,"Telangana, India",39362732
-35632,IN,IND,356,,,Tripura,India,23.746783,91.743565,"Tripura, India",4169794
-35633,IN,IND,356,,,Uttar Pradesh,India,26.925425,80.560982,"Uttar Pradesh, India",237882725
-35634,IN,IND,356,,,Uttarakhand,India,30.156447,79.197608,"Uttarakhand, India",11250858
-35635,IN,IND,356,,,West Bengal,India,23.814082,87.979803,"West Bengal, India",99609303
-35636,IN,IND,356,,,Unknown,India,,,"Unknown, India",
-360,ID,IDN,360,,,,Indonesia,-0.7893,113.9213,Indonesia,273523621
-364,IR,IRN,364,,,,Iran,32.427908,53.688046,Iran,83992953
-368,IQ,IRQ,368,,,,Iraq,33.223191,43.679291,Iraq,40222503
-372,IE,IRL,372,,,,Ireland,53.1424,-7.6921,Ireland,4937796
-376,IL,ISR,376,,,,Israel,31.046051,34.851612,Israel,8655541
-380,IT,ITA,380,,,,Italy,41.87194,12.56738,Italy,60461828
-38013,IT,ITA,380,,,Abruzzo,Italy,42.35122196,13.39843823,"Abruzzo, Italy",1311580
-38017,IT,ITA,380,,,Basilicata,Italy,40.63947052,15.80514834,"Basilicata, Italy",562869
-38018,IT,ITA,380,,,Calabria,Italy,38.90597598,16.59440194,"Calabria, Italy",1947131
-38015,IT,ITA,380,,,Campania,Italy,40.83956555,14.25084984,"Campania, Italy",5801692
-38008,IT,ITA,380,,,Emilia-Romagna,Italy,44.49436681,11.3417208,"Emilia-Romagna, Italy",4459477
-38006,IT,ITA,380,,,Friuli Venezia Giulia,Italy,45.6494354,13.76813649,"Friuli Venezia Giulia, Italy",1215220
-38012,IT,ITA,380,,,Lazio,Italy,41.89277044,12.48366722,"Lazio, Italy",5879082
-38007,IT,ITA,380,,,Liguria,Italy,44.41149315,8.9326992,"Liguria, Italy",1550640
-38003,IT,ITA,380,,,Lombardia,Italy,45.46679409,9.190347404,"Lombardia, Italy",10060574
-38011,IT,ITA,380,,,Marche,Italy,43.61675973,13.5188753,"Marche, Italy",1525271
-38014,IT,ITA,380,,,Molise,Italy,41.55774754,14.65916051,"Molise, Italy",305617
-38041,IT,ITA,380,,,P.A. Bolzano,Italy,46.49933453,11.35662422,"P.A. Bolzano, Italy",532318
-38042,IT,ITA,380,,,P.A. Trento,Italy,46.06893511,11.12123097,"P.A. Trento, Italy",541418
-38001,IT,ITA,380,,,Piemonte,Italy,45.0732745,7.680687483,"Piemonte, Italy",4356406
-38016,IT,ITA,380,,,Puglia,Italy,41.12559576,16.86736689,"Puglia, Italy",4029053
-38020,IT,ITA,380,,,Sardegna,Italy,39.21531192,9.110616306,"Sardegna, Italy",1639591
-38019,IT,ITA,380,,,Sicilia,Italy,38.11569725,13.3623567,"Sicilia, Italy",4999891
-38009,IT,ITA,380,,,Toscana,Italy,43.76923077,11.25588885,"Toscana, Italy",3729641
-38010,IT,ITA,380,,,Umbria,Italy,43.10675841,12.38824698,"Umbria, Italy",882015
-38002,IT,ITA,380,,,Valle d'Aosta,Italy,45.73750286,7.320149366,"Valle d'Aosta, Italy",125666
-38005,IT,ITA,380,,,Veneto,Italy,45.43490485,12.33845213,"Veneto, Italy",4905854
-388,JM,JAM,388,,,,Jamaica,18.1096,-77.2975,Jamaica,2961161
-392,JP,JPN,392,,,,Japan,36.204824,138.252924,Japan,126476458
-39201,JP,JPN,392,,,Aichi,Japan,35.035551,137.211621,"Aichi, Japan",7552239
-39202,JP,JPN,392,,,Akita,Japan,39.748679,140.408228,"Akita, Japan",966490
-39203,JP,JPN,392,,,Aomori,Japan,40.781541,140.828896,"Aomori, Japan",1246371
-39204,JP,JPN,392,,,Chiba,Japan,35.510141,140.198917,"Chiba, Japan",6259382
-39205,JP,JPN,392,,,Ehime,Japan,33.624835,132.856842,"Ehime, Japan",1339215
-39206,JP,JPN,392,,,Fukui,Japan,35.846614,136.224654,"Fukui, Japan",767937
-39207,JP,JPN,392,,,Fukuoka,Japan,33.526032,130.666949,"Fukuoka, Japan",5103679
-39208,JP,JPN,392,,,Fukushima,Japan,37.378867,140.223295,"Fukushima, Japan",1845519
-39209,JP,JPN,392,,,Gifu,Japan,35.778671,137.055925,"Gifu, Japan",1986587
-39210,JP,JPN,392,,,Gunma,Japan,36.504479,138.985605,"Gunma, Japan",1942456
-39211,JP,JPN,392,,,Hiroshima,Japan,34.605309,132.788719,"Hiroshima, Japan",2804177
-39212,JP,JPN,392,,,Hokkaido,Japan,43.385711,142.552318,"Hokkaido, Japan",5250049
-39213,JP,JPN,392,,,Hyogo,Japan,35.039913,134.828057,"Hyogo, Japan",5466190
-39214,JP,JPN,392,,,Ibaraki,Japan,36.303588,140.319591,"Ibaraki, Japan",2860307
-39215,JP,JPN,392,,,Ishikawa,Japan,36.769464,136.771027,"Ishikawa, Japan",1137649
-39216,JP,JPN,392,,,Iwate,Japan,39.593287,141.361777,"Iwate, Japan",1226816
-39217,JP,JPN,392,,,Kagawa,Japan,34.217292,133.969047,"Kagawa, Japan",956347
-39218,JP,JPN,392,,,Kagoshima,Japan,31.009484,130.430665,"Kagoshima, Japan",1602273
-39219,JP,JPN,392,,,Kanagawa,Japan,35.415312,139.338983,"Kanagawa, Japan",9198268
-39220,JP,JPN,392,,,Kochi,Japan,33.422519,133.367307,"Kochi, Japan",698029
-39221,JP,JPN,392,,,Kumamoto,Japan,32.608154,130.745231,"Kumamoto, Japan",1747567
-39222,JP,JPN,392,,,Kyoto,Japan,35.253815,135.443341,"Kyoto, Japan",2582957
-39223,JP,JPN,392,,,Mie,Japan,34.508018,136.376013,"Mie, Japan",1780882
-39224,JP,JPN,392,,,Miyagi,Japan,38.446859,140.927086,"Miyagi, Japan",2306365
-39225,JP,JPN,392,,,Miyazaki,Japan,32.193204,131.299374,"Miyazaki, Japan",1073301
-39226,JP,JPN,392,,,Nagano,Japan,36.132134,138.045528,"Nagano, Japan",2048790
-39227,JP,JPN,392,,,Nagasaki,Japan,33.235712,129.608033,"Nagasaki, Japan",1326524
-39228,JP,JPN,392,,,Nara,Japan,34.317451,135.871644,"Nara, Japan",1330123
-39229,JP,JPN,392,,,Niigata,Japan,37.521819,138.918647,"Niigata, Japan",2223106
-39230,JP,JPN,392,,,Oita,Japan,33.200697,131.43324,"Oita, Japan",1135434
-39231,JP,JPN,392,,,Okayama,Japan,34.89246,133.826252,"Okayama, Japan",1889586
-39232,JP,JPN,392,,,Okinawa,Japan,25.768923,126.668016,"Okinawa, Japan",1453168
-39233,JP,JPN,392,,,Osaka,Japan,34.620965,135.507481,"Osaka, Japan",8809363
-39234,JP,JPN,392,,,Saga,Japan,33.286977,130.115738,"Saga, Japan",814711
-39235,JP,JPN,392,,,Saitama,Japan,35.997101,139.347635,"Saitama, Japan",7349693
-39236,JP,JPN,392,,,Shiga,Japan,35.215827,136.138064,"Shiga, Japan",1413943
-39237,JP,JPN,392,,,Shimane,Japan,35.07076,132.554064,"Shimane, Japan",674346
-39238,JP,JPN,392,,,Shizuoka,Japan,34.916975,138.407784,"Shizuoka, Japan",3643528
-39239,JP,JPN,392,,,Tochigi,Japan,36.689912,139.819213,"Tochigi, Japan",1933990
-39240,JP,JPN,392,,,Tokushima,Japan,33.919178,134.242091,"Tokushima, Japan",727977
-39241,JP,JPN,392,,,Tokyo,Japan,35.711343,139.446921,"Tokyo, Japan",13920663
-39242,JP,JPN,392,,,Tottori,Japan,35.359069,133.863619,"Tottori, Japan",555558
-39243,JP,JPN,392,,,Toyama,Japan,36.637464,137.269346,"Toyama, Japan",1043502
-39244,JP,JPN,392,,,Wakayama,Japan,33.911879,135.505446,"Wakayama, Japan",924933
-39245,JP,JPN,392,,,Yamagata,Japan,38.448396,140.102154,"Yamagata, Japan",1077666
-39246,JP,JPN,392,,,Yamaguchi,Japan,34.20119,131.573293,"Yamaguchi, Japan",1358336
-39247,JP,JPN,392,,,Yamanashi,Japan,35.612364,138.611489,"Yamanashi, Japan",810956
-39248,JP,JPN,392,,,Port Quarantine,Japan,,,"Port Quarantine, Japan",
-39249,JP,JPN,392,,,Unknown,Japan,,,"Unknown, Japan",
-400,JO,JOR,400,,,,Jordan,31.24,36.51,Jordan,10203140
-398,KZ,KAZ,398,,,,Kazakhstan,48.0196,66.9237,Kazakhstan,18776707
-404,KE,KEN,404,,,,Kenya,-0.0236,37.9062,Kenya,53771300
-410,KR,KOR,410,,,,"Korea, South",35.907757,127.766922,"Korea, South",51269183
-383,XK,XKS,383,,,,Kosovo,42.602636,20.902977,Kosovo,1810366
-414,KW,KWT,414,,,,Kuwait,29.31166,47.481766,Kuwait,4270563
-417,KG,KGZ,417,,,,Kyrgyzstan,41.20438,74.766098,Kyrgyzstan,6524191
-418,LA,LAO,418,,,,Laos,19.85627,102.495496,Laos,7275556
-428,LV,LVA,428,,,,Latvia,56.8796,24.6032,Latvia,1886202
-422,LB,LBN,422,,,,Lebanon,33.8547,35.8623,Lebanon,6825442
-426,LS,LSO,426,,,,Lesotho,-29.61,28.2336,Lesotho,2142252
-430,LR,LBR,430,,,,Liberia,6.428055,-9.429499,Liberia,5057677
-434,LY,LBY,434,,,,Libya,26.3351,17.228331,Libya,6871287
-438,LI,LIE,438,,,,Liechtenstein,47.14,9.55,Liechtenstein,38137
-440,LT,LTU,440,,,,Lithuania,55.1694,23.8813,Lithuania,2722291
-442,LU,LUX,442,,,,Luxembourg,49.8153,6.1296,Luxembourg,625976
-450,MG,MDG,450,,,,Madagascar,-18.766947,46.869107,Madagascar,27691019
-454,MW,MWI,454,,,,Malawi,-13.2543,34.3015,Malawi,19129955
-458,MY,MYS,458,,,,Malaysia,4.210484,101.975766,Malaysia,32365998
-462,MV,MDV,462,,,,Maldives,3.2028,73.2207,Maldives,540542
-466,ML,MLI,466,,,,Mali,17.570692,-3.996166,Mali,20250834
-470,MT,MLT,470,,,,Malta,35.9375,14.3754,Malta,441539
-478,MR,MRT,478,,,,Mauritania,21.0079,-10.9408,Mauritania,4649660
-480,MU,MUS,480,,,,Mauritius,-20.348404,57.552152,Mauritius,1271767
-484,MX,MEX,484,,,,Mexico,23.6345,-102.5528,Mexico,127792286
-48401,MX,MEX,484,,,Aguascalientes,Mexico,21.8853,-102.2916,"Aguascalientes, Mexico",1434635
-48402,MX,MEX,484,,,Baja California,Mexico,30.8406,-115.2838,"Baja California, Mexico",3634868
-48403,MX,MEX,484,,,Baja California Sur,Mexico,26.0444,-111.6661,"Baja California Sur, Mexico",804708
-48404,MX,MEX,484,,,Campeche,Mexico,19.8301,-90.5349,"Campeche, Mexico",1000617
-48405,MX,MEX,484,,,Chiapas,Mexico,16.7569,-93.1292,"Chiapas, Mexico",5730367
-48406,MX,MEX,484,,,Chihuahua,Mexico,28.633,-106.0691,"Chihuahua, Mexico",3801487
-48407,MX,MEX,484,,,Ciudad de Mexico,Mexico,19.4326,-99.1332,"Ciudad de Mexico, Mexico",9018645
-48408,MX,MEX,484,,,Coahuila,Mexico,27.0587,-101.7068,"Coahuila, Mexico",3218720
-48409,MX,MEX,484,,,Colima,Mexico,19.1223,-104.0072,"Colima, Mexico",785153
-48410,MX,MEX,484,,,Durango,Mexico,24.5593,-104.6588,"Durango, Mexico",1868996
-48411,MX,MEX,484,,,Guanajuato,Mexico,21.019,-101.2574,"Guanajuato, Mexico",6228175
-48412,MX,MEX,484,,,Guerrero,Mexico,17.4392,-99.5451,"Guerrero, Mexico",3657048
-48413,MX,MEX,484,,,Hidalgo,Mexico,20.0911,-98.7624,"Hidalgo, Mexico",3086414
-48414,MX,MEX,484,,,Jalisco,Mexico,20.6595,-103.3494,"Jalisco, Mexico",8409693
-48415,MX,MEX,484,,,Mexico,Mexico,19.4969,-99.7233,"Mexico, Mexico",17427790
-48416,MX,MEX,484,,,Michoacan,Mexico,19.5665,-101.7068,"Michoacan, Mexico",4825401
-48417,MX,MEX,484,,,Morelos,Mexico,18.6813,-99.1013,"Morelos, Mexico",2044058
-48418,MX,MEX,484,,,Nayarit,Mexico,21.7514,-104.8455,"Nayarit, Mexico",1288571
-48419,MX,MEX,484,,,Nuevo Leon,Mexico,25.5922,-99.9962,"Nuevo Leon, Mexico",5610153
-48420,MX,MEX,484,,,Oaxaca,Mexico,17.0732,-96.7266,"Oaxaca, Mexico",4143593
-48421,MX,MEX,484,,,Puebla,Mexico,19.0414,-98.2063,"Puebla, Mexico",6604451
-48422,MX,MEX,484,,,Queretaro,Mexico,20.5888,-100.3899,"Queretaro, Mexico",2279637
-48423,MX,MEX,484,,,Quintana Roo,Mexico,19.1817,-88.4791,"Quintana Roo, Mexico",1723259
-48424,MX,MEX,484,,,San Luis Potosi,Mexico,22.1565,-100.9855,"San Luis Potosi, Mexico",2866142
-48425,MX,MEX,484,,,Sinaloa,Mexico,25.1721,-107.4795,"Sinaloa, Mexico",3156674
-48426,MX,MEX,484,,,Sonora,Mexico,29.2972,-110.3309,"Sonora, Mexico",3074745
-48427,MX,MEX,484,,,Tabasco,Mexico,17.8409,-92.6189,"Tabasco, Mexico",2572287
-48428,MX,MEX,484,,,Tamaulipas,Mexico,24.2669,-98.8363,"Tamaulipas, Mexico",3650602
-48429,MX,MEX,484,,,Tlaxcala,Mexico,19.3139,-98.2404,"Tlaxcala, Mexico",1380011
-48430,MX,MEX,484,,,Veracruz,Mexico,19.1738,-96.1342,"Veracruz, Mexico",8539862
-48431,MX,MEX,484,,,Yucatan,Mexico,20.7099,-89.0943,"Yucatan, Mexico",2259098
-48432,MX,MEX,484,,,Zacatecas,Mexico,22.7709,-102.5832,"Zacatecas, Mexico",1666426
-48433,MX,MEX,484,,,Unknown,Mexico,,,"Unknown, Mexico",
-498,MD,MDA,498,,,,Moldova,47.4116,28.3699,Moldova,4033963
-492,MC,MCO,492,,,,Monaco,43.7333,7.4167,Monaco,39244
-496,MN,MNG,496,,,,Mongolia,46.8625,103.8467,Mongolia,3278292
-499,ME,MNE,499,,,,Montenegro,42.708678,19.37439,Montenegro,628062
-504,MA,MAR,504,,,,Morocco,31.7917,-7.0926,Morocco,36910558
-508,MZ,MOZ,508,,,,Mozambique,-18.665695,35.529562,Mozambique,31255435
-8888,,,,,,,MS Zaandam,,,MS Zaandam,
-516,NA,NAM,516,,,,Namibia,-22.9576,18.4904,Namibia,2540916
-524,NP,NPL,524,,,,Nepal,28.1667,84.25,Nepal,29136808
-528,NL,NLD,528,,,,Netherlands,52.1326,5.2913,Netherlands,17134873
-52801,NL,NLD,528,,,Drenthe,Netherlands,52.862485,6.618435,"Drenthe, Netherlands",493682
-52802,NL,NLD,528,,,Flevoland,Netherlands,52.550383,5.515162,"Flevoland, Netherlands",423021
-52803,NL,NLD,528,,,Friesland,Netherlands,53.087337,5.7925,"Friesland, Netherlands",649957
-52804,NL,NLD,528,,,Gelderland,Netherlands,52.061738,5.939114,"Gelderland, Netherlands",2085952
-52805,NL,NLD,528,,,Groningen,Netherlands,53.217922,6.741514,"Groningen, Netherlands",585866
-52806,NL,NLD,528,,,Limburg,Netherlands,51.209227,5.93387,"Limburg, Netherlands",1117201
-52807,NL,NLD,528,,,Noord-Brabant,Netherlands,51.561174,5.184942,"Noord-Brabant, Netherlands",2562955
-52808,NL,NLD,528,,,Noord-Holland,Netherlands,52.600906,4.918688,"Noord-Holland, Netherlands",2879527
-52809,NL,NLD,528,,,Overijssel,Netherlands,52.444558,6.441722,"Overijssel, Netherlands",1162406
-52810,NL,NLD,528,,,Utrecht,Netherlands,52.084251,5.163824,"Utrecht, Netherlands",1354834
-52811,NL,NLD,528,,,Zeeland,Netherlands,51.47936,3.861559,"Zeeland, Netherlands",383488
-52812,NL,NLD,528,,,Zuid-Holland,Netherlands,51.937835,4.462114,"Zuid-Holland, Netherlands",3708696
-52813,NL,NLD,528,,,Unknown,Netherlands,,,"Unknown, Netherlands",
-533,AW,ABW,533,,,Aruba,Netherlands,12.5211,-69.9683,"Aruba, Netherlands",106766
-531,CW,CUW,531,,,Curacao,Netherlands,12.1696,-68.99,"Curacao, Netherlands",164100
-534,SX,SXM,534,,,Sint Maarten,Netherlands,18.0425,-63.0548,"Sint Maarten, Netherlands",42882
-535,BQ,BES,535,,,"Bonaire, Sint Eustatius and Saba",Netherlands,12.1784,-68.2385,"Bonaire, Sint Eustatius and Saba, Netherlands",26221
-554,NZ,NZL,554,,,,New Zealand,-40.9006,174.886,New Zealand,4822233
-558,NI,NIC,558,,,,Nicaragua,12.865416,-85.207229,Nicaragua,6624554
-562,NE,NER,562,,,,Niger,17.607789,8.081666,Niger,24206636
-566,NG,NGA,566,,,,Nigeria,9.082,8.6753,Nigeria,206139587
-56601,NG,NGA,566,,,Abia,Nigeria,5.4527,7.5248,"Abia, Nigeria",3727347
-56602,NG,NGA,566,,,Adamawa,Nigeria,9.3265,12.3984,"Adamawa, Nigeria",4248436
-56603,NG,NGA,566,,,Akwa Ibom,Nigeria,4.9057,7.8537,"Akwa Ibom, Nigeria",5482177
-56604,NG,NGA,566,,,Anambra,Nigeria,6.2209,6.937,"Anambra, Nigeria",5527809
-56605,NG,NGA,566,,,Bauchi,Nigeria,10.7761,9.9992,"Bauchi, Nigeria",6537314
-56606,NG,NGA,566,,,Bayelsa,Nigeria,4.7719,6.0699,"Bayelsa, Nigeria",2277961
-56607,NG,NGA,566,,,Benue,Nigeria,7.3369,8.7404,"Benue, Nigeria",5741815
-56608,NG,NGA,566,,,Borno,Nigeria,11.8846,13.152,"Borno, Nigeria",5860183
-56609,NG,NGA,566,,,Cross River,Nigeria,5.8702,8.5988,"Cross River, Nigeria",3866269
-56610,NG,NGA,566,,,Delta,Nigeria,5.704,5.9339,"Delta, Nigeria",5663362
-56611,NG,NGA,566,,,Ebonyi,Nigeria,6.2649,8.0137,"Ebonyi, Nigeria",2880383
-56612,NG,NGA,566,,,Edo,Nigeria,6.6342,5.9304,"Edo, Nigeria",4235595
-56613,NG,NGA,566,,,Ekiti,Nigeria,7.719,5.311,"Ekiti, Nigeria",3270798
-56614,NG,NGA,566,,,Enugu,Nigeria,6.5364,7.4356,"Enugu, Nigeria",4411119
-56615,NG,NGA,566,,,Federal Capital Territory,Nigeria,8.8941,7.186,"Federal Capital Territory, Nigeria",3564126
-56616,NG,NGA,566,,,Gombe,Nigeria,10.3638,11.1928,"Gombe, Nigeria",3256962
-56617,NG,NGA,566,,,Imo,Nigeria,5.572,7.0588,"Imo, Nigeria",5408756
-56618,NG,NGA,566,,,Jigawa,Nigeria,12.228,9.5616,"Jigawa, Nigeria",5828163
-56619,NG,NGA,566,,,Kaduna,Nigeria,10.3764,7.7095,"Kaduna, Nigeria",8252366
-56620,NG,NGA,566,,,Kano,Nigeria,11.7471,8.5247,"Kano, Nigeria",13076892
-56621,NG,NGA,566,,,Katsina,Nigeria,12.3797,7.6306,"Katsina, Nigeria",7831319
-56622,NG,NGA,566,,,Kebbi,Nigeria,11.4942,4.2333,"Kebbi, Nigeria",4440050
-56623,NG,NGA,566,,,Kogi,Nigeria,7.7337,6.6906,"Kogi, Nigeria",4473490
-56624,NG,NGA,566,,,Kwara,Nigeria,8.9669,4.3874,"Kwara, Nigeria",3192893
-56625,NG,NGA,566,,,Lagos,Nigeria,6.5236,3.6006,"Lagos, Nigeria",12550598
-56626,NG,NGA,566,,,Nasarawa,Nigeria,8.4998,8.1997,"Nasarawa, Nigeria",2523395
-56627,NG,NGA,566,,,Niger,Nigeria,9.9309,5.5983,"Niger, Nigeria",5556247
-56628,NG,NGA,566,,,Ogun,Nigeria,6.998,3.4737,"Ogun, Nigeria",5217716
-56629,NG,NGA,566,,,Ondo,Nigeria,6.9149,5.1478,"Ondo, Nigeria",4671695
-56630,NG,NGA,566,,,Osun,Nigeria,7.5629,4.52,"Osun, Nigeria",4705589
-56631,NG,NGA,566,,,Oyo,Nigeria,8.1574,3.6147,"Oyo, Nigeria",7840864
-56632,NG,NGA,566,,,Plateau,Nigeria,9.2182,9.5179,"Plateau, Nigeria",4200442
-56633,NG,NGA,566,,,Rivers,Nigeria,4.8396,6.9112,"Rivers, Nigeria",7303924
-56634,NG,NGA,566,,,Sokoto,Nigeria,13.0533,5.3223,"Sokoto, Nigeria",4998090
-56635,NG,NGA,566,,,Taraba,Nigeria,7.9994,10.774,"Taraba, Nigeria",3066834
-56636,NG,NGA,566,,,Yobe,Nigeria,12.2939,11.439,"Yobe, Nigeria",3294137
-56637,NG,NGA,566,,,Zamfara,Nigeria,12.1222,6.2236,"Zamfara, Nigeria",4515427
-56638,NG,NGA,566,,,Unknown,Nigeria,,,"Unknown, Nigeria",
-807,MK,MKD,807,,,,North Macedonia,41.6086,21.7453,North Macedonia,2083380
-578,NO,NOR,578,,,,Norway,60.472,8.4689,Norway,5421242
-512,OM,OMN,512,,,,Oman,21.512583,55.923255,Oman,5106622
-586,PK,PAK,586,,,,Pakistan,30.3753,69.3451,Pakistan,220892331
-58601,PK,PAK,586,,,Azad Jammu and Kashmir,Pakistan,34.027401,73.947253,"Azad Jammu and Kashmir, Pakistan",4045366
-58602,PK,PAK,586,,,Balochistan,Pakistan,28.328492,65.898403,"Balochistan, Pakistan",12344408
-58603,PK,PAK,586,,,Gilgit-Baltistan,Pakistan,35.792146,74.982138,"Gilgit-Baltistan, Pakistan",1013584
-58604,PK,PAK,586,,,Islamabad,Pakistan,33.665087,73.121219,"Islamabad, Pakistan",2006572
-58605,PK,PAK,586,,,Khyber Pakhtunkhwa,Pakistan,34.485332,72.09169,"Khyber Pakhtunkhwa, Pakistan",30523371
-58606,PK,PAK,586,,,Punjab,Pakistan,30.811346,72.139132,"Punjab, Pakistan",110012442
-58607,PK,PAK,586,,,Sindh,Pakistan,26.009446,68.776807,"Sindh, Pakistan",47886051
-58608,PK,PAK,586,,,Unknown,Pakistan,,,"Unknown, Pakistan",
-591,PA,PAN,591,,,,Panama,8.538,-80.7821,Panama,4314768
-598,PG,PNG,598,,,,Papua New Guinea,-6.314993,143.95555,Papua New Guinea,8947027
-600,PY,PRY,600,,,,Paraguay,-23.4425,-58.4438,Paraguay,7132530
-604,PE,PER,604,,,,Peru,-9.19,-75.0152,Peru,32971846
-60401,PE,PER,604,,,Amazonas,Peru,-5.077253,-78.050172,"Amazonas, Peru",426800
-60402,PE,PER,604,,,Ancash,Peru,-9.407125,-77.671795,"Ancash, Peru",1180600
-60403,PE,PER,604,,,Apurimac,Peru,-14.027713,-72.975378,"Apurimac, Peru",430700
-60404,PE,PER,604,,,Arequipa,Peru,-15.843524,-72.475539,"Arequipa, Peru",1497400
-60405,PE,PER,604,,,Ayacucho,Peru,-14.091648,-74.08344,"Ayacucho, Peru",668200
-60406,PE,PER,604,,,Cajamarca,Peru,-6.430284,-78.745596,"Cajamarca, Peru",1453700
-60407,PE,PER,604,,,Callao,Peru,-11.954609,-77.136042,"Callao, Peru",1129900
-60408,PE,PER,604,,,Cusco,Peru,-13.191068,-72.153609,"Cusco, Peru",1357100
-60409,PE,PER,604,,,Huancavelica,Peru,-13.023888,-75.00277,"Huancavelica, Peru",365300
-60410,PE,PER,604,,,Huanuco,Peru,-9.421676,-76.040642,"Huanuco, Peru",760300
-60411,PE,PER,604,,,Ica,Peru,-14.235097,-75.574821,"Ica, Peru",975200
-60412,PE,PER,604,,,Junin,Peru,-11.541783,-74.876968,"Junin, Peru",1361500
-60413,PE,PER,604,,,La Libertad,Peru,-7.92139,-78.370238,"La Libertad, Peru",2016800
-60414,PE,PER,604,,,Lambayeque,Peru,-6.353049,-79.824113,"Lambayeque, Peru",1310800
-60415,PE,PER,604,,,Lima,Peru,-11.766533,-76.604498,"Lima, Peru",10628500
-60416,PE,PER,604,,,Loreto,Peru,-4.124847,-74.424115,"Loreto, Peru",1027600
-60417,PE,PER,604,,,Madre de Dios,Peru,-11.972699,-70.53172,"Madre de Dios, Peru",173800
-60418,PE,PER,604,,,Moquegua,Peru,-16.860271,-70.839046,"Moquegua, Peru",192700
-60419,PE,PER,604,,,Pasco,Peru,-10.39655,-75.307635,"Pasco, Peru",271900
-60420,PE,PER,604,,,Piura,Peru,-5.133361,-80.335861,"Piura, Peru",2048000
-60421,PE,PER,604,,,Puno,Peru,-14.995827,-69.922726,"Puno, Peru",1238000
-60422,PE,PER,604,,,San Martin,Peru,-7.039531,-76.729127,"San Martin, Peru",899600
-60423,PE,PER,604,,,Tacna,Peru,-17.644161,-70.27756,"Tacna, Peru",371000
-60424,PE,PER,604,,,Tumbes,Peru,-3.857496,-80.545255,"Tumbes, Peru",251500
-60425,PE,PER,604,,,Ucayali,Peru,-9.621718,-73.444929,"Ucayali, Peru",589100
-60426,PE,PER,604,,,Unknown,Peru,,,"Unknown, Peru",
-608,PH,PHL,608,,,,Philippines,12.879721,121.774017,Philippines,109581085
-616,PL,POL,616,,,,Poland,51.9194,19.1451,Poland,37846605
-620,PT,PRT,620,,,,Portugal,39.3999,-8.2245,Portugal,10196707
-634,QA,QAT,634,,,,Qatar,25.3548,51.1839,Qatar,2881060
-642,RO,ROU,642,,,,Romania,45.9432,24.9668,Romania,19237682
-643,RU,RUS,643,,,,Russia,61.52401,105.318756,Russia,145934460
-64301,RU,RUS,643,,,Adygea Republic,Russia,44.6939006,40.1520421,"Adygea Republic, Russia",453376
-64302,RU,RUS,643,,,Altai Krai,Russia,52.6932243,82.6931424,"Altai Krai, Russia",2350080
-64303,RU,RUS,643,,,Altai Republic,Russia,50.7114101,86.8572186,"Altai Republic, Russia",218063
-64304,RU,RUS,643,,,Amur Oblast,Russia,52.8032368,128.437295,"Amur Oblast, Russia",798424
-64305,RU,RUS,643,,,Arkhangelsk Oblast,Russia,63.5589686,43.1221646,"Arkhangelsk Oblast, Russia",1155028
-64306,RU,RUS,643,,,Astrakhan Oblast,Russia,47.1878186,47.608851,"Astrakhan Oblast, Russia",1017514
-64307,RU,RUS,643,,,Bashkortostan Republic,Russia,54.8573563,57.1439682,"Bashkortostan Republic, Russia",4063293
-64308,RU,RUS,643,,,Belgorod Oblast,Russia,50.7080119,37.5837615,"Belgorod Oblast, Russia",1549876
-64309,RU,RUS,643,,,Bryansk Oblast,Russia,52.8873315,33.415853,"Bryansk Oblast, Russia",1210982
-64310,RU,RUS,643,,,Buryatia Republic,Russia,52.7182426,109.492143,"Buryatia Republic, Russia",984511
-64311,RU,RUS,643,,,Chechen Republic,Russia,43.3976147,45.6985005,"Chechen Republic, Russia",1436981
-64312,RU,RUS,643,,,Chelyabinsk Oblast,Russia,54.4223954,61.1865846,"Chelyabinsk Oblast, Russia",3493036
-64313,RU,RUS,643,,,Chukotka Autonomous Okrug,Russia,66.0006475,169.4900869,"Chukotka Autonomous Okrug, Russia",49348
-64314,RU,RUS,643,,,Chuvashia Republic,Russia,55.4259922,47.0849429,"Chuvashia Republic, Russia",1231117
-64315,RU,RUS,643,,,Dagestan Republic,Russia,43.0574916,47.1332224,"Dagestan Republic, Russia",3063885
-64316,RU,RUS,643,,,Ingushetia Republic,Russia,43.11542075,45.01713552,"Ingushetia Republic, Russia",488043
-64317,RU,RUS,643,,,Irkutsk Oblast,Russia,56.6370122,104.719221,"Irkutsk Oblast, Russia",2404195
-64318,RU,RUS,643,,,Ivanovo Oblast,Russia,56.9167446,41.4352137,"Ivanovo Oblast, Russia",1014646
-64319,RU,RUS,643,,,Jewish Autonomous Okrug,Russia,48.57527615,132.6630746,"Jewish Autonomous Okrug, Russia",162014
-64320,RU,RUS,643,,,Kabardino-Balkarian Republic,Russia,43.4806048,43.5978976,"Kabardino-Balkarian Republic, Russia",865828
-64321,RU,RUS,643,,,Kaliningrad Oblast,Russia,54.7293041,21.1489473,"Kaliningrad Oblast, Russia",994599
-64322,RU,RUS,643,,,Kalmykia Republic,Russia,46.2313018,45.3275745,"Kalmykia Republic, Russia",275413
-64323,RU,RUS,643,,,Kaluga Oblast,Russia,54.4382773,35.5272854,"Kaluga Oblast, Russia",1012056
-64324,RU,RUS,643,,,Kamchatka Krai,Russia,57.1914882,160.0383819,"Kamchatka Krai, Russia",315557
-64325,RU,RUS,643,,,Karachay-Cherkess Republic,Russia,43.7368326,41.7267991,"Karachay-Cherkess Republic, Russia",466305
-64326,RU,RUS,643,,,Karelia Republic,Russia,62.6194031,33.4920267,"Karelia Republic, Russia",622484
-64327,RU,RUS,643,,,Kemerovo Oblast,Russia,54.5335781,87.342861,"Kemerovo Oblast, Russia",2694877
-64328,RU,RUS,643,,,Khabarovsk Krai,Russia,51.6312684,136.121524,"Khabarovsk Krai, Russia",1328302
-64329,RU,RUS,643,,,Khakassia Republic,Russia,53.72258845,91.44293627,"Khakassia Republic, Russia",537513
-64330,RU,RUS,643,,,Khanty-Mansi Autonomous Okrug,Russia,61.0259025,69.0982628,"Khanty-Mansi Autonomous Okrug, Russia",1532243
-64331,RU,RUS,643,,,Kirov Oblast,Russia,57.9665589,49.4074599,"Kirov Oblast, Russia",1283238
-64332,RU,RUS,643,,,Komi Republic,Russia,63.9881421,54.3326073,"Komi Republic, Russia",840873
-64333,RU,RUS,643,,,Kostroma Oblast,Russia,58.424756,44.2533273,"Kostroma Oblast, Russia",643324
-64334,RU,RUS,643,,,Krasnodar Krai,Russia,45.7684014,39.0261044,"Krasnodar Krai, Russia",5603420
-64335,RU,RUS,643,,,Krasnoyarsk Krai,Russia,63.3233807,97.0979974,"Krasnoyarsk Krai, Russia",2876497
-64336,RU,RUS,643,,,Kurgan Oblast,Russia,55.7655302,64.5632681,"Kurgan Oblast, Russia",845537
-64337,RU,RUS,643,,,Kursk Oblast,Russia,51.6568453,36.4852695,"Kursk Oblast, Russia",1115237
-64338,RU,RUS,643,,,Leningrad Oblast,Russia,60.1853296,32.3925325,"Leningrad Oblast, Russia",1813816
-64339,RU,RUS,643,,,Lipetsk Oblast,Russia,52.6935178,39.1122664,"Lipetsk Oblast, Russia",1150201
-64340,RU,RUS,643,,,Magadan Oblast,Russia,62.48858785,153.9903764,"Magadan Oblast, Russia",144091
-64341,RU,RUS,643,,,Mari El Republic,Russia,56.5767504,47.8817512,"Mari El Republic, Russia",682333
-64342,RU,RUS,643,,,Mordovia Republic,Russia,54.4419829,44.4661144,"Mordovia Republic, Russia",805056
-64343,RU,RUS,643,,,Moscow,Russia,55.7504461,37.6174943,"Moscow, Russia",12506468
-64344,RU,RUS,643,,,Moscow Oblast,Russia,55.5043158,38.0353929,"Moscow Oblast, Russia",7503385
-64345,RU,RUS,643,,,Murmansk Oblast,Russia,68.0000418,33.9999151,"Murmansk Oblast, Russia",753557
-64346,RU,RUS,643,,,Nenets Autonomous Okrug,Russia,68.27557185,57.1686375,"Nenets Autonomous Okrug, Russia",43997
-64347,RU,RUS,643,,,Nizhny Novgorod Oblast,Russia,55.4718033,44.0911594,"Nizhny Novgorod Oblast, Russia",3234752
-64348,RU,RUS,643,,,North Ossetia - Alania Republic,Russia,42.7933611,44.6324493,"North Ossetia - Alania Republic, Russia",701765
-64349,RU,RUS,643,,,Novgorod Oblast,Russia,58.2843833,32.5169757,"Novgorod Oblast, Russia",606476
-64350,RU,RUS,643,,,Novosibirsk Oblast,Russia,54.9720169,79.4813924,"Novosibirsk Oblast, Russia",2788849
-64351,RU,RUS,643,,,Omsk Oblast,Russia,56.0935263,73.5099936,"Omsk Oblast, Russia",1960081
-64352,RU,RUS,643,,,Orel Oblast,Russia,52.9685433,36.0692477,"Orel Oblast, Russia",747247
-64353,RU,RUS,643,,,Orenburg Oblast,Russia,52.0269262,54.7276647,"Orenburg Oblast, Russia",1977720
-64354,RU,RUS,643,,,Penza Oblast,Russia,53.1655415,44.7879181,"Penza Oblast, Russia",1331655
-64355,RU,RUS,643,,,Perm Krai,Russia,58.5951603,56.3159546,"Perm Krai, Russia",2623122
-64356,RU,RUS,643,,,Primorsky Krai,Russia,45.0819456,134.726645,"Primorsky Krai, Russia",1913037
-64357,RU,RUS,643,,,Pskov Oblast,Russia,57.5358729,28.8586826,"Pskov Oblast, Russia",636546
-64358,RU,RUS,643,,,Rostov Oblast,Russia,47.6222451,40.7957942,"Rostov Oblast, Russia",4220452
-64359,RU,RUS,643,,,Ryazan Oblast,Russia,54.4226732,40.5705246,"Ryazan Oblast, Russia",1121474
-64360,RU,RUS,643,,,Saint Petersburg,Russia,59.9606739,30.1586551,"Saint Petersburg, Russia",5351935
-64361,RU,RUS,643,,,Sakha (Yakutiya) Republic,Russia,66.941626,129.642371,"Sakha (Yakutiya) Republic, Russia",964330
-64362,RU,RUS,643,,,Sakhalin Oblast,Russia,49.7219665,143.448533,"Sakhalin Oblast, Russia",490181
-64363,RU,RUS,643,,,Samara Oblast,Russia,53.2128813,50.8914633,"Samara Oblast, Russia",3193514
-64364,RU,RUS,643,,,Saratov Oblast,Russia,51.6520555,46.8631952,"Saratov Oblast, Russia",2462950
-64365,RU,RUS,643,,,Smolensk Oblast,Russia,55.0343496,33.0192065,"Smolensk Oblast, Russia",949348
-64366,RU,RUS,643,,,Stavropol Krai,Russia,44.8632577,43.4406913,"Stavropol Krai, Russia",2800674
-64367,RU,RUS,643,,,Sverdlovsk Oblast,Russia,58.6414755,61.8021546,"Sverdlovsk Oblast, Russia",4325256
-64368,RU,RUS,643,,,Tambov Oblast,Russia,52.9019574,41.3578918,"Tambov Oblast, Russia",1033552
-64369,RU,RUS,643,,,Tatarstan Republic,Russia,55.7648572,52.43104273,"Tatarstan Republic, Russia",3894284
-64370,RU,RUS,643,,,Tomsk Oblast,Russia,58.6124279,82.0475315,"Tomsk Oblast, Russia",1078280
-64371,RU,RUS,643,,,Tula Oblast,Russia,53.9570701,37.3690909,"Tula Oblast, Russia",1491855
-64372,RU,RUS,643,,,Tver Oblast,Russia,57.1134475,35.1744428,"Tver Oblast, Russia",1283873
-64373,RU,RUS,643,,,Tyumen Oblast,Russia,58.8206488,70.3658837,"Tyumen Oblast, Russia",3692400
-64374,RU,RUS,643,,,Tyva Republic,Russia,51.4017149,93.8582593,"Tyva Republic, Russia",321722
-64375,RU,RUS,643,,,Udmurt Republic,Russia,57.1961165,52.6959832,"Udmurt Republic, Russia",1513044
-64376,RU,RUS,643,,,Ulyanovsk Oblast,Russia,54.1463177,47.2324921,"Ulyanovsk Oblast, Russia",1246618
-64377,RU,RUS,643,,,Vladimir Oblast,Russia,56.0503336,40.6561633,"Vladimir Oblast, Russia",1378337
-64378,RU,RUS,643,,,Volgograd Oblast,Russia,49.6048339,44.2903582,"Volgograd Oblast, Russia",2521276
-64379,RU,RUS,643,,,Vologda Oblast,Russia,60.0391461,43.1215213,"Vologda Oblast, Russia",1176689
-64380,RU,RUS,643,,,Voronezh Oblast,Russia,50.9800393,40.1506507,"Voronezh Oblast, Russia",2333768
-64381,RU,RUS,643,,,Yamalo-Nenets Autonomous Okrug,Russia,67.1471631,74.3415488,"Yamalo-Nenets Autonomous Okrug, Russia",538547
-64382,RU,RUS,643,,,Yaroslavl Oblast,Russia,57.7781976,39.0021095,"Yaroslavl Oblast, Russia",1265684
-64383,RU,RUS,643,,,Zabaykalsky Krai,Russia,52.248521,115.956325,"Zabaykalsky Krai, Russia",1072806
-64384,RU,RUS,643,,,Unknown,Russia,,,"Unknown, Russia",
-646,RW,RWA,646,,,,Rwanda,-1.9403,29.8739,Rwanda,12952209
-659,KN,KNA,659,,,,Saint Kitts and Nevis,17.357822,-62.782998,Saint Kitts and Nevis,53192
-662,LC,LCA,662,,,,Saint Lucia,13.9094,-60.9789,Saint Lucia,183629
-670,VC,VCT,670,,,,Saint Vincent and the Grenadines,12.9843,-61.2872,Saint Vincent and the Grenadines,110947
-674,SM,SMR,674,,,,San Marino,43.9424,12.4578,San Marino,33938
-678,ST,STP,678,,,,Sao Tome and Principe,0.1864,6.6131,Sao Tome and Principe,219161
-682,SA,SAU,682,,,,Saudi Arabia,23.885942,45.079162,Saudi Arabia,34813867
-686,SN,SEN,686,,,,Senegal,14.4974,-14.4524,Senegal,16743930
-688,RS,SRB,688,,,,Serbia,44.0165,21.0059,Serbia,8737370
-690,SC,SYC,690,,,,Seychelles,-4.6796,55.492,Seychelles,98340
-694,SL,SLE,694,,,,Sierra Leone,8.460555,-11.779889,Sierra Leone,7976985
-702,SG,SGP,702,,,,Singapore,1.2833,103.8333,Singapore,5850343
-703,SK,SVK,703,,,,Slovakia,48.669,19.699,Slovakia,5459643
-705,SI,SVN,705,,,,Slovenia,46.1512,14.9955,Slovenia,2078932
-706,SO,SOM,706,,,,Somalia,5.152149,46.199616,Somalia,15893219
-710,ZA,ZAF,710,,,,South Africa,-30.5595,22.9375,South Africa,59308690
-728,SS,SSD,728,,,,South Sudan,6.877,31.307,South Sudan,11193729
-724,ES,ESP,724,,,,Spain,40.463667,-3.74922,Spain,46754783
-72401,ES,ESP,724,,,Andalusia,Spain,37.5443,-4.7278,"Andalusia, Spain",8427405
-72402,ES,ESP,724,,,Aragon,Spain,41.5976,-0.9057,"Aragon, Spain",1320586
-72403,ES,ESP,724,,,Asturias,Spain,43.3614,-5.8593,"Asturias, Spain",1022205
-72404,ES,ESP,724,,,Baleares,Spain,39.710358,2.995148,"Baleares, Spain",1188220
-72405,ES,ESP,724,,,Canarias,Spain,28.2916,-16.6291,"Canarias, Spain",2206901
-72406,ES,ESP,724,,,Cantabria,Spain,43.1828,-3.9878,"Cantabria, Spain",581641
-72407,ES,ESP,724,,,Castilla - La Mancha,Spain,39.2796,-3.0977,"Castilla - La Mancha, Spain",2034877
-72408,ES,ESP,724,,,Castilla y Leon,Spain,41.8357,-4.3976,"Castilla y Leon, Spain",2407733
-72409,ES,ESP,724,,,Catalonia,Spain,41.5912,1.5209,"Catalonia, Spain",7566431
-72410,ES,ESP,724,,,Ceuta,Spain,35.8894,-5.3213,"Ceuta, Spain",84829
-72411,ES,ESP,724,,,C. Valenciana,Spain,39.484,-0.7533,"C. Valenciana, Spain",4974969
-72412,ES,ESP,724,,,Extremadura,Spain,39.4937,-6.0679,"Extremadura, Spain",1065424
-72413,ES,ESP,724,,,Galicia,Spain,42.5751,-8.1339,"Galicia, Spain",2700441
-72414,ES,ESP,724,,,Madrid,Spain,40.4168,-3.7038,"Madrid, Spain",6641649
-72415,ES,ESP,724,,,Melilla,Spain,35.2923,-2.9381,"Melilla, Spain",84689
-72416,ES,ESP,724,,,Murcia,Spain,37.9922,-1.1307,"Murcia, Spain",1487663
-72417,ES,ESP,724,,,Navarra,Spain,42.6954,-1.6761,"Navarra, Spain",649946
-72418,ES,ESP,724,,,Pais Vasco,Spain,42.9896,-2.6189,"Pais Vasco, Spain",2177880
-72419,ES,ESP,724,,,La Rioja,Spain,42.2871,-2.5396,"La Rioja, Spain",313571
-72420,ES,ESP,724,,,Unknown,Spain,,,"Unknown, Spain",
-144,LK,LKA,144,,,,Sri Lanka,7.873054,80.771797,Sri Lanka,21413250
-729,SD,SDN,729,,,,Sudan,12.8628,30.2176,Sudan,43849269
-740,SR,SUR,740,,,,Suriname,3.9193,-56.0278,Suriname,586634
-752,SE,SWE,752,,,,Sweden,60.128161,18.643501,Sweden,10099270
-75201,SE,SWE,752,,,Blekinge,Sweden,56.2784,15.018,"Blekinge, Sweden",159606
-75202,SE,SWE,752,,,Dalarna,Sweden,61.0917,14.6664,"Dalarna, Sweden",287966
-75203,SE,SWE,752,,,Gavleborg,Sweden,61.3012,16.1534,"Gavleborg, Sweden",287382
-75204,SE,SWE,752,,,Gotland,Sweden,57.4684,18.4867,"Gotland, Sweden",59686
-75205,SE,SWE,752,,,Halland,Sweden,56.8967,12.8034,"Halland, Sweden",333848
-75206,SE,SWE,752,,,Jamtland Harjedalen,Sweden,63.1712,14.9592,"Jamtland Harjedalen, Sweden",130810
-75207,SE,SWE,752,,,Jonkoping,Sweden,57.3708,14.3439,"Jonkoping, Sweden",363599
-75208,SE,SWE,752,,,Kalmar,Sweden,57.235,16.1849,"Kalmar, Sweden",245446
-75209,SE,SWE,752,,,Kronoberg,Sweden,56.7183,14.4115,"Kronoberg, Sweden",201469
-75210,SE,SWE,752,,,Norrbotten,Sweden,66.8309,20.3992,"Norrbotten, Sweden",250093
-75211,SE,SWE,752,,,Orebro,Sweden,59.535,15.0066,"Orebro, Sweden",304805
-75212,SE,SWE,752,,,Ostergotland,Sweden,58.3454,15.5198,"Ostergotland, Sweden",465495
-75213,SE,SWE,752,,,Skane,Sweden,55.9903,13.5958,"Skane, Sweden",1377827
-75214,SE,SWE,752,,,Sormland,Sweden,59.0336,16.7519,"Sormland, Sweden",297540
-75215,SE,SWE,752,,,Stockholm,Sweden,59.6025,18.1384,"Stockholm, Sweden",2377081
-75216,SE,SWE,752,,,Uppsala,Sweden,60.0092,17.2715,"Uppsala, Sweden",383713
-75217,SE,SWE,752,,,Varmland,Sweden,59.7294,13.2354,"Varmland, Sweden",282414
-75218,SE,SWE,752,,,Vasterbotten,Sweden,65.3337,16.5162,"Vasterbotten, Sweden",271736
-75219,SE,SWE,752,,,Vasternorrland,Sweden,63.4276,17.7292,"Vasternorrland, Sweden",245347
-75220,SE,SWE,752,,,Vastmanland,Sweden,59.6714,16.2159,"Vastmanland, Sweden",275845
-75221,SE,SWE,752,,,Vastra Gotaland,Sweden,58.2528,13.0596,"Vastra Gotaland, Sweden",1725881
-75222,SE,SWE,752,,,Unknown,Sweden,,,"Unknown, Sweden",
-756,CH,CHE,756,,,,Switzerland,46.8182,8.2275,Switzerland,8654618
-760,SY,SYR,760,,,,Syria,34.802075,38.996815,Syria,17500657
-158,TW,TWN,158,,,,Taiwan*,23.7,121,Taiwan*,23816775
-762,TJ,TJK,762,,,,Tajikistan,38.861,71.2761,Tajikistan,9537642
-834,TZ,TZA,834,,,,Tanzania,-6.369028,34.888822,Tanzania,59734213
-764,TH,THA,764,,,,Thailand,15.870032,100.992541,Thailand,69799978
-626,TL,TLS,626,,,,Timor-Leste,-8.874217,125.727539,Timor-Leste,1318442
-768,TG,TGO,768,,,,Togo,8.6195,0.8248,Togo,8278737
-780,TT,TTO,780,,,,Trinidad and Tobago,10.6918,-61.2225,Trinidad and Tobago,1399491
-788,TN,TUN,788,,,,Tunisia,33.886917,9.537499,Tunisia,11818618
-792,TR,TUR,792,,,,Turkey,38.9637,35.2433,Turkey,84339067
-800,UG,UGA,800,,,,Uganda,1.373333,32.290275,Uganda,45741000
-804,UA,UKR,804,,,,Ukraine,48.3794,31.1656,Ukraine,43733759
-80401,UA,UKR,804,,,Cherkasy Oblast,Ukraine,49.4444,32.0598,"Cherkasy Oblast, Ukraine",1206351
-80402,UA,UKR,804,,,Chernihiv Oblast,Ukraine,51.4982,31.2893,"Chernihiv Oblast, Ukraine",1005745
-80403,UA,UKR,804,,,Chernivtsi Oblast,Ukraine,48.2917,25.9352,"Chernivtsi Oblast, Ukraine",904374
-80404,UA,UKR,804,,,Crimea Republic*,Ukraine,45.2835,34.2008,"Crimea Republic*, Ukraine",1913731
-80405,UA,UKR,804,,,Dnipropetrovsk Oblast,Ukraine,48.4647,35.0462,"Dnipropetrovsk Oblast, Ukraine",3206477
-80406,UA,UKR,804,,,Donetsk Oblast,Ukraine,48.0159,37.8028,"Donetsk Oblast, Ukraine",4165901
-80407,UA,UKR,804,,,Ivano-Frankivsk Oblast,Ukraine,48.9226,24.7111,"Ivano-Frankivsk Oblast, Ukraine",1373252
-80408,UA,UKR,804,,,Kharkiv Oblast,Ukraine,49.9935,36.2304,"Kharkiv Oblast, Ukraine",2675598
-80409,UA,UKR,804,,,Kherson Oblast,Ukraine,46.6354,32.6169,"Kherson Oblast, Ukraine",1037640
-80410,UA,UKR,804,,,Khmelnytskyi Oblast,Ukraine,49.423,26.9871,"Khmelnytskyi Oblast, Ukraine",1264705
-80411,UA,UKR,804,,,Kiev,Ukraine,50.4501,30.5234,"Kiev, Ukraine",2950800
-80412,UA,UKR,804,,,Kiev Oblast,Ukraine,50.053,30.7667,"Kiev Oblast, Ukraine",1767940
-80413,UA,UKR,804,,,Kirovohrad Oblast,Ukraine,48.5079,32.2623,"Kirovohrad Oblast, Ukraine",945549
-80414,UA,UKR,804,,,Luhansk Oblast,Ukraine,48.574,39.3078,"Luhansk Oblast, Ukraine",2151833
-80415,UA,UKR,804,,,Lviv Oblast,Ukraine,49.8397,24.0297,"Lviv Oblast, Ukraine",2522021
-80416,UA,UKR,804,,,Mykolaiv Oblast,Ukraine,46.975,31.9946,"Mykolaiv Oblast, Ukraine",2522021
-80417,UA,UKR,804,,,Odessa Oblast,Ukraine,46.4846,30.7326,"Odessa Oblast, Ukraine",2380308
-80418,UA,UKR,804,,,Poltava Oblast,Ukraine,49.5883,34.5514,"Poltava Oblast, Ukraine",1400439
-80419,UA,UKR,804,,,Rivne Oblast,Ukraine,50.6199,26.2516,"Rivne Oblast, Ukraine",1157301
-80420,UA,UKR,804,,,Sevastopol*,Ukraine,44.6054,33.522,"Sevastopol*, Ukraine",443211
-80421,UA,UKR,804,,,Sumy Oblast,Ukraine,50.9077,34.7981,"Sumy Oblast, Ukraine",1081418
-80422,UA,UKR,804,,,Ternopil Oblast,Ukraine,49.5535,25.5948,"Ternopil Oblast, Ukraine",1045879
-80423,UA,UKR,804,,,Vinnytsia Oblast,Ukraine,49.2331,28.4682,"Vinnytsia Oblast, Ukraine",1560394
-80424,UA,UKR,804,,,Volyn Oblast,Ukraine,50.7472,25.3254,"Volyn Oblast, Ukraine",1035330
-80425,UA,UKR,804,,,Zakarpattia Oblast,Ukraine,48.6208,22.2879,"Zakarpattia Oblast, Ukraine",1256802
-80426,UA,UKR,804,,,Zaporizhia Oblast,Ukraine,47.8388,35.1396,"Zaporizhia Oblast, Ukraine",1705836
-80427,UA,UKR,804,,,Zhytomyr Oblast,Ukraine,50.2547,28.6587,"Zhytomyr Oblast, Ukraine",1220193
-80428,UA,UKR,804,,,Unknown,Ukraine,,,"Unknown, Ukraine",
-784,AE,ARE,784,,,,United Arab Emirates,23.424076,53.847818,United Arab Emirates,9890400
-826,GB,GBR,826,,,,United Kingdom,55.3781,-3.436,United Kingdom,67886004
-82601,GB,GBR,826,,,England,United Kingdom,52.3555,-1.1743,"England, United Kingdom",55977200
-82602,GB,GBR,826,,,Northern Ireland,United Kingdom,54.7877,-6.4923,"Northern Ireland, United Kingdom",1881600
-82603,GB,GBR,826,,,Scotland,United Kingdom,56.4907,-4.2026,"Scotland, United Kingdom",5463300
-82604,GB,GBR,826,,,Wales,United Kingdom,52.1307,-3.7837,"Wales, United Kingdom",3138600
-82605,GB,GBR,826,,,Unknown,United Kingdom,,,"Unknown, United Kingdom",
-60,BM,BMU,60,,,Bermuda,United Kingdom,32.3078,-64.7505,"Bermuda, United Kingdom",62273
-92,VG,VGB,92,,,British Virgin Islands,United Kingdom,18.4207,-64.64,"British Virgin Islands, United Kingdom",30237
-136,KY,CYM,136,,,Cayman Islands,United Kingdom,19.3133,-81.2546,"Cayman Islands, United Kingdom",65720
-8261,GB,GBR,826,,,Channel Islands,United Kingdom,49.3723,-2.3644,"Channel Islands, United Kingdom",170499
-238,FK,FLK,238,,,Falkland Islands (Malvinas),United Kingdom,-51.7963,-59.5236,"Falkland Islands (Malvinas), United Kingdom",3483
-292,GI,GIB,292,,,Gibraltar,United Kingdom,36.1408,-5.3536,"Gibraltar, United Kingdom",33691
-833,IM,IMN,833,,,Isle of Man,United Kingdom,54.2361,-4.5481,"Isle of Man, United Kingdom",85032
-500,MS,MSR,500,,,Montserrat,United Kingdom,16.742498,-62.187366,"Montserrat, United Kingdom",4999
-796,TC,TCA,796,,,Turks and Caicos Islands,United Kingdom,21.694,-71.7979,"Turks and Caicos Islands, United Kingdom",38718
-660,AI,AIA,660,,,Anguilla,United Kingdom,18.2206,-63.0686,"Anguilla, United Kingdom",15002
-858,UY,URY,858,,,,Uruguay,-32.5228,-55.7658,Uruguay,3473727
-860,UZ,UZB,860,,,,Uzbekistan,41.377491,64.585262,Uzbekistan,33469199
-862,VE,VEN,862,,,,Venezuela,6.4238,-66.5897,Venezuela,28435943
-704,VN,VNM,704,,,,Vietnam,14.058324,108.277199,Vietnam,97338583
-275,PS,PSE,275,,,,West Bank and Gaza,31.9522,35.2332,West Bank and Gaza,5101416
-732,EH,ESH,732,,,,Western Sahara,24.2155,-12.8858,Western Sahara,597330
-887,YE,YEM,887,,,,Yemen,15.552727,48.516388,Yemen,29825968
-894,ZM,ZMB,894,,,,Zambia,-13.133897,27.849332,Zambia,18383956
-716,ZW,ZWE,716,,,,Zimbabwe,-19.015438,29.154857,Zimbabwe,14862927
-36,AU,AUS,36,,,,Australia,-25,133,Australia,25459700
-3601,AU,AUS,36,,,Australian Capital Territory,Australia,-35.4735,149.0124,"Australian Capital Territory, Australia",428100
-3602,AU,AUS,36,,,New South Wales,Australia,-33.8688,151.2093,"New South Wales, Australia",8118000
-3603,AU,AUS,36,,,Northern Territory,Australia,-12.4634,130.8456,"Northern Territory, Australia",245600
-3604,AU,AUS,36,,,Queensland,Australia,-27.4698,153.0251,"Queensland, Australia",5115500
-3605,AU,AUS,36,,,South Australia,Australia,-34.9285,138.6007,"South Australia, Australia",1756500
-3606,AU,AUS,36,,,Tasmania,Australia,-42.8821,147.3272,"Tasmania, Australia",535500
-3607,AU,AUS,36,,,Victoria,Australia,-37.8136,144.9631,"Victoria, Australia",6629900
-3608,AU,AUS,36,,,Western Australia,Australia,-31.9505,115.8605,"Western Australia, Australia",2630600
-124,CA,CAN,124,,,,Canada,60,-95,Canada,37855702
-12401,CA,CAN,124,,,Alberta,Canada,53.9333,-116.5765,"Alberta, Canada",4413146
-12402,CA,CAN,124,,,British Columbia,Canada,53.7267,-127.6476,"British Columbia, Canada",5110917
-12403,CA,CAN,124,,,Manitoba,Canada,53.7609,-98.8139,"Manitoba, Canada",1377517
-12404,CA,CAN,124,,,New Brunswick,Canada,46.5653,-66.4619,"New Brunswick, Canada",779993
-12405,CA,CAN,124,,,Newfoundland and Labrador,Canada,53.1355,-57.6604,"Newfoundland and Labrador, Canada",521365
-12406,CA,CAN,124,,,Northwest Territories,Canada,64.8255,-124.8457,"Northwest Territories,Canada",44904
-12407,CA,CAN,124,,,Nova Scotia,Canada,44.682,-63.7443,"Nova Scotia, Canada",977457
-12408,CA,CAN,124,,,Ontario,Canada,51.2538,-85.3232,"Ontario, Canada",14711827
-12409,CA,CAN,124,,,Prince Edward Island,Canada,46.5107,-63.4168,"Prince Edward Island, Canada",158158
-12410,CA,CAN,124,,,Quebec,Canada,52.9399,-73.5491,"Quebec, Canada",8537674
-12411,CA,CAN,124,,,Saskatchewan,Canada,52.9399,-106.4509,"Saskatchewan, Canada",1181666
-12412,CA,CAN,124,,,Yukon,Canada,64.2823,-135,"Yukon, Canada",41078
-12413,CA,CAN,124,,,Diamond Princess,Canada,,,"Diamond Princess, Canada",
-12414,CA,CAN,124,,,Grand Princess,Canada,,,"Grand Princess, Canada",
-12415,CA,CAN,124,,,Recovered,Canada,,,"Recovered, Canada",
-156,CN,CHN,156,,,,China,30.5928,114.3055,China,1404676330
-15601,CN,CHN,156,,,Anhui,China,31.8257,117.2264,"Anhui, China",63240000
-15602,CN,CHN,156,,,Beijing,China,40.1824,116.4142,"Beijing, China",21540000
-15603,CN,CHN,156,,,Chongqing,China,30.0572,107.874,"Chongqing, China",31020000
-15604,CN,CHN,156,,,Fujian,China,26.0789,117.9874,"Fujian, China",39410000
-15605,CN,CHN,156,,,Gansu,China,35.7518,104.2861,"Gansu, China",26370000
-15606,CN,CHN,156,,,Guangdong,China,23.3417,113.4244,"Guangdong, China",113460000
-15607,CN,CHN,156,,,Guangxi,China,23.8298,108.7881,"Guangxi, China",49260000
-15608,CN,CHN,156,,,Guizhou,China,26.8154,106.8748,"Guizhou, China",36000000
-15609,CN,CHN,156,,,Hainan,China,19.1959,109.7453,"Hainan, China",9340000
-15610,CN,CHN,156,,,Hebei,China,37.8957,114.9042,"Hebei, China",75560000
-15611,CN,CHN,156,,,Heilongjiang,China,47.862,127.7615,"Heilongjiang, China",37730000
-15612,CN,CHN,156,,,Henan,China,33.882,113.614,"Henan, China",96050000
-15613,CN,CHN,156,,,Hubei,China,30.9756,112.2707,"Hubei, China",59170000
-15614,CN,CHN,156,,,Hunan,China,27.6104,111.7088,"Hunan, China",68990000
-15615,CN,CHN,156,,,Inner Mongolia,China,44.0935,113.9448,"Inner Mongolia, China",25340000
-15616,CN,CHN,156,,,Jiangsu,China,32.9711,119.455,"Jiangsu, China",80510000
-15617,CN,CHN,156,,,Jiangxi,China,27.614,115.7221,"Jiangxi, China",46480000
-15618,CN,CHN,156,,,Jilin,China,43.6661,126.1923,"Jilin, China",27040000
-15619,CN,CHN,156,,,Liaoning,China,41.2956,122.6085,"Liaoning, China",43590000
-15620,CN,CHN,156,,,Ningxia,China,37.2692,106.1655,"Ningxia, China",6880000
-15621,CN,CHN,156,,,Qinghai,China,35.7452,95.9956,"Qinghai, China",6030000
-15622,CN,CHN,156,,,Shaanxi,China,35.1917,108.8701,"Shaanxi, China",38640000
-15623,CN,CHN,156,,,Shandong,China,36.3427,118.1498,"Shandong, China",100470000
-15624,CN,CHN,156,,,Shanghai,China,31.202,121.4491,"Shanghai, China",24240000
-15625,CN,CHN,156,,,Shanxi,China,37.5777,112.2922,"Shanxi, China",37180000
-15626,CN,CHN,156,,,Sichuan,China,30.6171,102.7103,"Sichuan, China",83410000
-15627,CN,CHN,156,,,Tianjin,China,39.3054,117.323,"Tianjin, China",15600000
-15628,CN,CHN,156,,,Tibet,China,31.6927,88.0924,"Tibet, China",3440000
-15629,CN,CHN,156,,,Xinjiang,China,41.1129,85.2401,"Xinjiang, China",24870000
-15630,CN,CHN,156,,,Yunnan,China,24.974,101.487,"Yunnan, China",48300000
-15631,CN,CHN,156,,,Zhejiang,China,29.1832,120.0934,"Zhejiang, China",57370000
-344,HK,HKG,344,,,Hong Kong SAR,China,22.3,114.2,"Hong Kong, China",7496988
-446,MO,MAC,446,,,Macau SAR,China,22.1667,113.55,"Macau, China",649342
-840,US,USA,840,,,,US,40,-100,US,329466283
-16,AS,ASM,16,60,,American Samoa,US,-14.271,-170.132,"American Samoa, US",55641
-316,GU,GUM,316,66,,Guam,US,13.4443,144.7937,"Guam, US",164229
-580,MP,MNP,580,69,,Northern Mariana Islands,US,15.0979,145.6739,"Northern Mariana Islands, US",55144
-850,VI,VIR,850,78,,Virgin Islands,US,18.3358,-64.8963,"Virgin Islands, US",107268
-630,PR,PRI,630,72,,Puerto Rico,US,18.2208,-66.5901,"Puerto Rico, US",2933408
-63072001,PR,PRI,630,72001,Adjuntas,Puerto Rico,US,18.180117,-66.754367,"Adjuntas, Puerto Rico, US",19483
-63072003,PR,PRI,630,72003,Aguada,Puerto Rico,US,18.360255,-67.175131,"Aguada, Puerto Rico, US",41959
-63072005,PR,PRI,630,72005,Aguadilla,Puerto Rico,US,18.459681,-67.120815,"Aguadilla, Puerto Rico, US",60949
-63072007,PR,PRI,630,72007,Aguas Buenas,Puerto Rico,US,18.251619,-66.126806,"Aguas Buenas, Puerto Rico, US",28659
-63072009,PR,PRI,630,72009,Aibonito,Puerto Rico,US,18.131361,-66.264131,"Aibonito, Puerto Rico, US",25900
-63072011,PR,PRI,630,72011,Anasco,Puerto Rico,US,18.287985,-67.120611,"Anasco, Puerto Rico, US",29261
-63072013,PR,PRI,630,72013,Arecibo,Puerto Rico,US,18.406631,-66.675077,"Arecibo, Puerto Rico, US",96440
-63072015,PR,PRI,630,72015,Arroyo,Puerto Rico,US,17.998457,-66.056546,"Arroyo, Puerto Rico, US",19575
-63072017,PR,PRI,630,72017,Barceloneta,Puerto Rico,US,18.445533,-66.560531,"Barceloneta, Puerto Rico, US",24816
-63072019,PR,PRI,630,72019,Barranquitas,Puerto Rico,US,18.201592,-66.30963,"Barranquitas, Puerto Rico, US",30318
-63072021,PR,PRI,630,72021,Bayamon,Puerto Rico,US,18.34946,-66.168435,"Bayamon, Puerto Rico, US",208116
-63072023,PR,PRI,630,72023,Cabo Rojo,Puerto Rico,US,18.040993,-67.154391,"Cabo Rojo, Puerto Rico, US",50917
-63072025,PR,PRI,630,72025,Caguas,Puerto Rico,US,18.211615,-66.050779,"Caguas, Puerto Rico, US",142893
-63072027,PR,PRI,630,72027,Camuy,Puerto Rico,US,18.418578,-66.860206,"Camuy, Puerto Rico, US",35159
-63072029,PR,PRI,630,72029,Canovanas,Puerto Rico,US,18.328802,-65.887612,"Canovanas, Puerto Rico, US",47648
-63072031,PR,PRI,630,72031,Carolina,Puerto Rico,US,18.374986,-65.956831,"Carolina, Puerto Rico, US",176762
-63072033,PR,PRI,630,72033,Catano,Puerto Rico,US,18.437269,-66.143306,"Catano, Puerto Rico, US",28140
-63072035,PR,PRI,630,72035,Cayey,Puerto Rico,US,18.102851,-66.14914,"Cayey, Puerto Rico, US",48119
-63072037,PR,PRI,630,72037,Ceiba,Puerto Rico,US,18.251818,-65.666416,"Ceiba, Puerto Rico, US",13631
-63072039,PR,PRI,630,72039,Ciales,Puerto Rico,US,18.28885,-66.516475,"Ciales, Puerto Rico, US",18782
-63072041,PR,PRI,630,72041,Cidra,Puerto Rico,US,18.173559,-66.161179,"Cidra, Puerto Rico, US",43480
-63072043,PR,PRI,630,72043,Coamo,Puerto Rico,US,18.097597,-66.36014,"Coamo, Puerto Rico, US",40512
-63072045,PR,PRI,630,72045,Comerio,Puerto Rico,US,18.224687,-66.221622,"Comerio, Puerto Rico, US",20778
-63072047,PR,PRI,630,72047,Corozal,Puerto Rico,US,18.304264,-66.327738,"Corozal, Puerto Rico, US",37142
-63072049,PR,PRI,630,72049,Culebra,Puerto Rico,US,18.31586,-65.28813,"Culebra, Puerto Rico, US",1818
-63072051,PR,PRI,630,72051,Dorado,Puerto Rico,US,18.436115,-66.278669,"Dorado, Puerto Rico, US",38165
-63072053,PR,PRI,630,72053,Fajardo,Puerto Rico,US,18.318373,-65.666866,"Fajardo, Puerto Rico, US",36993
-63072054,PR,PRI,630,72054,Florida,Puerto Rico,US,18.373715,-66.560488,"Florida, Puerto Rico, US",12680
-63072055,PR,PRI,630,72055,Guanica,Puerto Rico,US,17.982429,-66.919643,"Guanica, Puerto Rico, US",19427
-63072057,PR,PRI,630,72057,Guayama,Puerto Rico,US,18.007516,-66.133908,"Guayama, Puerto Rico, US",45362
-63072059,PR,PRI,630,72059,Guayanilla,Puerto Rico,US,18.039942,-66.79186,"Guayanilla, Puerto Rico, US",21581
-63072061,PR,PRI,630,72061,Guaynabo,Puerto Rico,US,18.345114,-66.114523,"Guaynabo, Puerto Rico, US",97924
-63072063,PR,PRI,630,72063,Gurabo,Puerto Rico,US,18.266461,-65.979705,"Gurabo, Puerto Rico, US",45369
-63072065,PR,PRI,630,72065,Hatillo,Puerto Rico,US,18.410928,-66.796326,"Hatillo, Puerto Rico, US",41953
-63072067,PR,PRI,630,72067,Hormigueros,Puerto Rico,US,18.134532,-67.113972,"Hormigueros, Puerto Rico, US",17250
-63072069,PR,PRI,630,72069,Humacao,Puerto Rico,US,18.145211,-65.810174,"Humacao, Puerto Rico, US",58466
-63072071,PR,PRI,630,72071,Isabela,Puerto Rico,US,18.44981,-67.005093,"Isabela, Puerto Rico, US",45631
-63072073,PR,PRI,630,72073,Jayuya,Puerto Rico,US,18.211446,-66.58878,"Jayuya, Puerto Rico, US",16642
-63072075,PR,PRI,630,72075,Juana Diaz,Puerto Rico,US,18.050764,-66.494581,"Juana Diaz, Puerto Rico, US",79897
-63072077,PR,PRI,630,72077,Juncos,Puerto Rico,US,18.223793,-65.909109,"Juncos, Puerto Rico, US",40290
-63072079,PR,PRI,630,72079,Lajas,Puerto Rico,US,18.011661,-67.040585,"Lajas, Puerto Rico, US",25753
-63072081,PR,PRI,630,72081,Lares,Puerto Rico,US,18.269035,-66.867236,"Lares, Puerto Rico, US",30753
-63072083,PR,PRI,630,72083,Las Marias,Puerto Rico,US,18.23679,-66.98362,"Las Marias, Puerto Rico, US",9881
-63072085,PR,PRI,630,72085,Las Piedras,Puerto Rico,US,18.187527,-65.869468,"Las Piedras, Puerto Rico, US",38675
-63072087,PR,PRI,630,72087,Loiza,Puerto Rico,US,18.425688,-65.89943,"Loiza, Puerto Rico, US",30060
-63072089,PR,PRI,630,72089,Luquillo,Puerto Rico,US,18.342114,-65.725097,"Luquillo, Puerto Rico, US",20068
-63072091,PR,PRI,630,72091,Manati,Puerto Rico,US,18.420473,-66.490461,"Manati, Puerto Rico, US",44113
-63072093,PR,PRI,630,72093,Maricao,Puerto Rico,US,18.171795,-66.942126,"Maricao, Puerto Rico, US",6276
-63072095,PR,PRI,630,72095,Maunabo,Puerto Rico,US,18.017889,-65.922235,"Maunabo, Puerto Rico, US",12225
-63072097,PR,PRI,630,72097,Mayaguez,Puerto Rico,US,18.2013,-67.1452,"Mayaguez, Puerto Rico, US",89080
-63072099,PR,PRI,630,72099,Moca,Puerto Rico,US,18.377805,-67.080952,"Moca, Puerto Rico, US",40109
-63072101,PR,PRI,630,72101,Morovis,Puerto Rico,US,18.316963,-66.420383,"Morovis, Puerto Rico, US",32610
-63072103,PR,PRI,630,72103,Naguabo,Puerto Rico,US,18.230637,-65.753897,"Naguabo, Puerto Rico, US",26720
-63072105,PR,PRI,630,72105,Naranjito,Puerto Rico,US,18.288019,-66.252703,"Naranjito, Puerto Rico, US",30402
-63072107,PR,PRI,630,72107,Orocovis,Puerto Rico,US,18.215046,-66.433604,"Orocovis, Puerto Rico, US",23423
-63072109,PR,PRI,630,72109,Patillas,Puerto Rico,US,18.03174,-66.012242,"Patillas, Puerto Rico, US",19277
-63072111,PR,PRI,630,72111,Penuelas,Puerto Rico,US,18.059645,-66.721572,"Penuelas, Puerto Rico, US",24282
-63072113,PR,PRI,630,72113,Ponce,Puerto Rico,US,18.059498,-66.613748,"Ponce, Puerto Rico, US",166327
-63072115,PR,PRI,630,72115,Quebradillas,Puerto Rico,US,18.439692,-66.926113,"Quebradillas, Puerto Rico, US",25919
-63072117,PR,PRI,630,72117,Rincon,Puerto Rico,US,18.335443,-67.23174,"Rincon, Puerto Rico, US",15200
-63072119,PR,PRI,630,72119,Rio Grande,Puerto Rico,US,18.346329,-65.813742,"Rio Grande, Puerto Rico, US",54304
-63072121,PR,PRI,630,72121,Sabana Grande,Puerto Rico,US,18.08282,-66.943758,"Sabana Grande, Puerto Rico, US",25265
-63072123,PR,PRI,630,72123,Salinas,Puerto Rico,US,18.010387,-66.256592,"Salinas, Puerto Rico, US",31078
-63072125,PR,PRI,630,72125,San German,Puerto Rico,US,18.111484,-67.038581,"San German, Puerto Rico, US",35527
-63072127,PR,PRI,630,72127,San Juan,Puerto Rico,US,18.386933,-66.061128,"San Juan, Puerto Rico, US",395326
-63072129,PR,PRI,630,72129,San Lorenzo,Puerto Rico,US,18.147987,-65.976392,"San Lorenzo, Puerto Rico, US",41058
-63072131,PR,PRI,630,72131,San Sebastian,Puerto Rico,US,18.328646,-66.971214,"San Sebastian, Puerto Rico, US",42430
-63072133,PR,PRI,630,72133,Santa Isabel,Puerto Rico,US,17.994525,-66.388913,"Santa Isabel, Puerto Rico, US",23274
-63072135,PR,PRI,630,72135,Toa Alta,Puerto Rico,US,18.362406,-66.246616,"Toa Alta, Puerto Rico, US",74066
-63072137,PR,PRI,630,72137,Toa Baja,Puerto Rico,US,18.431446,-66.213553,"Toa Baja, Puerto Rico, US",89609
-63072139,PR,PRI,630,72139,Trujillo Alto,Puerto Rico,US,18.336159,-65.998884,"Trujillo Alto, Puerto Rico, US",74842
-63072141,PR,PRI,630,72141,Utuado,Puerto Rico,US,18.271214,-66.702984,"Utuado, Puerto Rico, US",33149
-63072143,PR,PRI,630,72143,Vega Alta,Puerto Rico,US,18.409346,-66.33725,"Vega Alta, Puerto Rico, US",39951
-63072145,PR,PRI,630,72145,Vega Baja,Puerto Rico,US,18.428262,-66.397924,"Vega Baja, Puerto Rico, US",59662
-63072147,PR,PRI,630,72147,Vieques,Puerto Rico,US,18.123276,-65.440971,"Vieques, Puerto Rico, US",9301
-63072149,PR,PRI,630,72149,Villalba,Puerto Rico,US,18.127951,-66.473115,"Villalba, Puerto Rico, US",26073
-63072151,PR,PRI,630,72151,Yabucoa,Puerto Rico,US,18.070399,-65.896289,"Yabucoa, Puerto Rico, US",37941
-63072153,PR,PRI,630,72153,Yauco,Puerto Rico,US,18.080374,-66.858814,"Yauco, Puerto Rico, US",42043
-63072888,PR,PRI,630,72888,Out of PR,Puerto Rico,US,,,"Out of PR, Puerto Rico, US",
-63072999,PR,PRI,630,72999,Unassigned,Puerto Rico,US,,,"Unassigned, Puerto Rico, US",
-84088888,US,USA,840,88888,,Diamond Princess,US,,,"Diamond Princess, US",
-84099999,US,USA,840,99999,,Grand Princess,US,,,"Grand Princess, US",
-84000001,US,USA,840,01,,Alabama,US,32.3182,-86.9023,"Alabama, US",4903185
-84000002,US,USA,840,02,,Alaska,US,61.3707,-152.4044,"Alaska, US",731545
-84000004,US,USA,840,04,,Arizona,US,33.7298,-111.4312,"Arizona, US",7278717
-84000005,US,USA,840,05,,Arkansas,US,34.9697,-92.3731,"Arkansas, US",3017804
-84000006,US,USA,840,06,,California,US,36.1162,-119.6816,"California, US",39512223
-84000008,US,USA,840,08,,Colorado,US,39.0598,-105.3111,"Colorado, US",5758736
-84000009,US,USA,840,09,,Connecticut,US,41.5978,-72.7554,"Connecticut, US",3565287
-84000010,US,USA,840,10,,Delaware,US,39.3185,-75.5071,"Delaware, US",973764
-84000011,US,USA,840,11,,District of Columbia,US,38.8974,-77.0268,"District of Columbia, US",705749
-84000012,US,USA,840,12,,Florida,US,27.7663,-81.6868,"Florida, US",21477737
-84000013,US,USA,840,13,,Georgia,US,33.0406,-83.6431,"Georgia, US",10617423
-84000015,US,USA,840,15,,Hawaii,US,21.0943,-157.4983,"Hawaii, US",1415872
-84000016,US,USA,840,16,,Idaho,US,44.2405,-114.4788,"Idaho, US",1787065
-84000017,US,USA,840,17,,Illinois,US,40.3495,-88.9861,"Illinois, US",12671821
-84000018,US,USA,840,18,,Indiana,US,39.8494,-86.2583,"Indiana, US",6732219
-84000019,US,USA,840,19,,Iowa,US,42.0115,-93.2105,"Iowa, US",3155070
-84000020,US,USA,840,20,,Kansas,US,38.5266,-96.7265,"Kansas, US",2913314
-84000021,US,USA,840,21,,Kentucky,US,37.6681,-84.6701,"Kentucky, US",4467673
-84000022,US,USA,840,22,,Louisiana,US,31.1695,-91.8678,"Louisiana, US",4648794
-84000023,US,USA,840,23,,Maine,US,44.6939,-69.3819,"Maine, US",1344212
-84000024,US,USA,840,24,,Maryland,US,39.0639,-76.8021,"Maryland, US",6045680
-84000025,US,USA,840,25,,Massachusetts,US,42.2302,-71.5301,"Massachusetts, US",6892503
-84000026,US,USA,840,26,,Michigan,US,43.3266,-84.5361,"Michigan, US",9986857
-84000027,US,USA,840,27,,Minnesota,US,45.6945,-93.9002,"Minnesota, US",5639632
-84000028,US,USA,840,28,,Mississippi,US,32.7416,-89.6787,"Mississippi, US",2976149
-84000029,US,USA,840,29,,Missouri,US,38.4561,-92.2884,"Missouri, US",6137428
-84000030,US,USA,840,30,,Montana,US,46.9219,-110.4544,"Montana, US",1068778
-84000031,US,USA,840,31,,Nebraska,US,41.1254,-98.2681,"Nebraska, US",1934408
-84000032,US,USA,840,32,,Nevada,US,38.3135,-117.0554,"Nevada, US",3080156
-84000033,US,USA,840,33,,New Hampshire,US,43.4525,-71.5639,"New Hampshire, US",1359711
-84000034,US,USA,840,34,,New Jersey,US,40.2989,-74.521,"New Jersey, US",8882190
-84000035,US,USA,840,35,,New Mexico,US,34.8405,-106.2485,"New Mexico, US",2096829
-84000036,US,USA,840,36,,New York,US,42.1657,-74.9481,"New York, US",19453561
-84000037,US,USA,840,37,,North Carolina,US,35.6301,-79.8064,"North Carolina, US",10488084
-84000038,US,USA,840,38,,North Dakota,US,47.5289,-99.784,"North Dakota, US",762062
-84000039,US,USA,840,39,,Ohio,US,40.3888,-82.7649,"Ohio, US",11689100
-84000040,US,USA,840,40,,Oklahoma,US,35.5653,-96.9289,"Oklahoma, US",3956971
-84000041,US,USA,840,41,,Oregon,US,44.572,-122.0709,"Oregon, US",4217737
-84000042,US,USA,840,42,,Pennsylvania,US,40.5908,-77.2098,"Pennsylvania, US",12801989
-84000044,US,USA,840,44,,Rhode Island,US,41.6809,-71.5118,"Rhode Island, US",1059361
-84000045,US,USA,840,45,,South Carolina,US,33.8569,-80.945,"South Carolina, US",5148714
-84000046,US,USA,840,46,,South Dakota,US,44.2998,-99.4388,"South Dakota, US",884659
-84000047,US,USA,840,47,,Tennessee,US,35.7478,-86.6923,"Tennessee, US",6829174
-84000048,US,USA,840,48,,Texas,US,31.0545,-97.5635,"Texas, US",28995881
-84000049,US,USA,840,49,,Utah,US,40.15,-111.8624,"Utah, US",3205958
-84000050,US,USA,840,50,,Vermont,US,44.0459,-72.7107,"Vermont, US",623989
-84000051,US,USA,840,51,,Virginia,US,37.7693,-78.17,"Virginia, US",8535519
-84000053,US,USA,840,53,,Washington,US,47.4009,-121.4905,"Washington, US",7614893
-84000054,US,USA,840,54,,West Virginia,US,38.4912,-80.9545,"West Virginia, US",1792147
-84000055,US,USA,840,55,,Wisconsin,US,44.2685,-89.6165,"Wisconsin, US",5822434
-84000056,US,USA,840,56,,Wyoming,US,42.756,-107.3025,"Wyoming, US",578759
-84070001,US,USA,840,,,Recovered,US,,,"Recovered, US",
-84070002,US,USA,840,,Dukes and Nantucket,Massachusetts,US,41.40674725,-70.68763497,"Dukes and Nantucket, Massachusetts, US",28731
-84070003,US,USA,840,,Kansas City,Missouri,US,39.0997,-94.5786,"Kansas City, Missouri, US",488943
-84070004,US,USA,840,,Michigan Department of Corrections (MDOC),Michigan,US,,,"Michigan Department of Corrections (MDOC), Michigan, US",
-84070005,US,USA,840,,Federal Correctional Institution (FCI),Michigan,US,,,"Federal Correctional Institution (FCI), Michigan, US",
-84070006,US,USA,840,,Air Force,US Military,US,,,"Air Force, US Military, US",
-84070007,US,USA,840,,Army,US Military,US,,,"Army, US Military, US",
-84070008,US,USA,840,,Marine Corps,US Military,US,,,"Marine Corps, US Military, US",
-84070009,US,USA,840,,Navy,US Military,US,,,"Navy, US Military, US",
-84070010,US,USA,840,,Unassigned,US Military,US,,,"Unassigned, US Military, US",
-84070011,US,USA,840,,,US Military,US,,,"US Military, US",
-84070012,US,USA,840,,Inmates,Federal Bureau of Prisons,US,,,"Inmates, Federal Bureau of Prisons, US",
-84070013,US,USA,840,,Staff,Federal Bureau of Prisons,US,,,"Staff, Federal Bureau of Prisons, US",
-84070014,US,USA,840,,,Federal Bureau of Prisons,US,,,"Federal Bureau of Prisons, US",
-84070015,US,USA,840,,Bear River,Utah,US,41.52106798,-113.0832816,"Bear River, Utah, US",186818
-84070016,US,USA,840,,Central Utah,Utah,US,39.37231946,-111.5758676,"Central Utah, Utah, US",81954
-84070017,US,USA,840,,Southeast Utah,Utah,US,38.99617072,-110.7013958,"Southeast Utah, Utah, US",40229
-84070018,US,USA,840,,Southwest Utah,Utah,US,37.85447192,-111.4418764,"Southwest Utah, Utah, US",252042
-84070019,US,USA,840,,TriCounty,Utah,US,40.12491499,-109.5174415,"TriCounty, Utah, US",56622
-84070020,US,USA,840,,Weber-Morgan,Utah,US,41.27116049,-111.9145117,"Weber-Morgan, Utah, US",272337
-84070021,US,USA,840,,,Veteran Hospitals,US,,,"Veteran Hospitals, US",
-84080001,US,USA,840,80001,Out of AL,Alabama,US,,,"Out of AL, Alabama, US",
-84080002,US,USA,840,80002,Out of AK,Alaska,US,,,"Out of AK, Alaska, US",
-84080004,US,USA,840,80004,Out of AZ,Arizona,US,,,"Out of AZ, Arizona, US",
-84080005,US,USA,840,80005,Out of AR,Arkansas,US,,,"Out of AR, Arkansas, US",
-84080006,US,USA,840,80006,Out of CA,California,US,,,"Out of CA, California, US",
-84080008,US,USA,840,80008,Out of CO,Colorado,US,,,"Out of CO, Colorado, US",
-84080009,US,USA,840,80009,Out of CT,Connecticut,US,,,"Out of CT, Connecticut, US",
-84080010,US,USA,840,80010,Out of DE,Delaware,US,,,"Out of DE, Delaware, US",
-84080011,US,USA,840,80011,Out of DC,District of Columbia,US,,,"Out of DC, District of Columbia, US",
-84080012,US,USA,840,80012,Out of FL,Florida,US,,,"Out of FL, Florida, US",
-84080013,US,USA,840,80013,Out of GA,Georgia,US,,,"Out of GA, Georgia, US",
-84080015,US,USA,840,80015,Out of HI,Hawaii,US,,,"Out of HI, Hawaii, US",
-84080016,US,USA,840,80016,Out of ID,Idaho,US,,,"Out of ID, Idaho, US",
-84080017,US,USA,840,80017,Out of IL,Illinois,US,,,"Out of IL, Illinois, US",
-84080018,US,USA,840,80018,Out of IN,Indiana,US,,,"Out of IN, Indiana, US",
-84080019,US,USA,840,80019,Out of IA,Iowa,US,,,"Out of IA, Iowa, US",
-84080020,US,USA,840,80020,Out of KS,Kansas,US,,,"Out of KS, Kansas, US",
-84080021,US,USA,840,80021,Out of KY,Kentucky,US,,,"Out of KY, Kentucky, US",
-84080022,US,USA,840,80022,Out of LA,Louisiana,US,,,"Out of LA, Louisiana, US",
-84080023,US,USA,840,80023,Out of ME,Maine,US,,,"Out of ME, Maine, US",
-84080024,US,USA,840,80024,Out of MD,Maryland,US,,,"Out of MD, Maryland, US",
-84080025,US,USA,840,80025,Out of MA,Massachusetts,US,,,"Out of MA, Massachusetts, US",
-84080026,US,USA,840,80026,Out of MI,Michigan,US,,,"Out of MI, Michigan, US",
-84080027,US,USA,840,80027,Out of MN,Minnesota,US,,,"Out of MN, Minnesota, US",
-84080028,US,USA,840,80028,Out of MS,Mississippi,US,,,"Out of MS, Mississippi, US",
-84080029,US,USA,840,80029,Out of MO,Missouri,US,,,"Out of MO, Missouri, US",
-84080030,US,USA,840,80030,Out of MT,Montana,US,,,"Out of MT, Montana, US",
-84080031,US,USA,840,80031,Out of NE,Nebraska,US,,,"Out of NE, Nebraska, US",
-84080032,US,USA,840,80032,Out of NV,Nevada,US,,,"Out of NV, Nevada, US",
-84080033,US,USA,840,80033,Out of NH,New Hampshire,US,,,"Out of NH, New Hampshire, US",
-84080034,US,USA,840,80034,Out of NJ,New Jersey,US,,,"Out of NJ, New Jersey, US",
-84080035,US,USA,840,80035,Out of NM,New Mexico,US,,,"Out of NM, New Mexico, US",
-84080036,US,USA,840,80036,Out of NY,New York,US,,,"Out of NY, New York, US",
-84080037,US,USA,840,80037,Out of NC,North Carolina,US,,,"Out of NC, North Carolina, US",
-84080038,US,USA,840,80038,Out of ND,North Dakota,US,,,"Out of ND, North Dakota, US",
-84080039,US,USA,840,80039,Out of OH,Ohio,US,,,"Out of OH, Ohio, US",
-84080040,US,USA,840,80040,Out of OK,Oklahoma,US,,,"Out of OK, Oklahoma, US",
-84080041,US,USA,840,80041,Out of OR,Oregon,US,,,"Out of OR, Oregon, US",
-84080042,US,USA,840,80042,Out of PA,Pennsylvania,US,,,"Out of PA, Pennsylvania, US",
-84080044,US,USA,840,80044,Out of RI,Rhode Island,US,,,"Out of RI, Rhode Island, US",
-84080045,US,USA,840,80045,Out of SC,South Carolina,US,,,"Out of SC, South Carolina, US",
-84080046,US,USA,840,80046,Out of SD,South Dakota,US,,,"Out of SD, South Dakota, US",
-84080047,US,USA,840,80047,Out of TN,Tennessee,US,,,"Out of TN, Tennessee, US",
-84080048,US,USA,840,80048,Out of TX,Texas,US,,,"Out of TX, Texas, US",
-84080049,US,USA,840,80049,Out of UT,Utah,US,,,"Out of UT, Utah, US",
-84080050,US,USA,840,80050,Out of VT,Vermont,US,,,"Out of VT, Vermont, US",
-84080051,US,USA,840,80051,Out of VA,Virginia,US,,,"Out of VA, Virginia, US",
-84080053,US,USA,840,80053,Out of WA,Washington,US,,,"Out of WA, Washington, US",
-84080054,US,USA,840,80054,Out of WV,West Virginia,US,,,"Out of WV, West Virginia, US",
-84080055,US,USA,840,80055,Out of WI,Wisconsin,US,,,"Out of WI, Wisconsin, US",
-84080056,US,USA,840,80056,Out of WY,Wyoming,US,,,"Out of WY, Wyoming, US",
-84090001,US,USA,840,90001,Unassigned,Alabama,US,,,"Unassigned, Alabama, US",
-84090002,US,USA,840,90002,Unassigned,Alaska,US,,,"Unassigned, Alaska, US",
-84090004,US,USA,840,90004,Unassigned,Arizona,US,,,"Unassigned, Arizona, US",
-84090005,US,USA,840,90005,Unassigned,Arkansas,US,,,"Unassigned, Arkansas, US",
-84090006,US,USA,840,90006,Unassigned,California,US,,,"Unassigned, California, US",
-84090008,US,USA,840,90008,Unassigned,Colorado,US,,,"Unassigned, Colorado, US",
-84090009,US,USA,840,90009,Unassigned,Connecticut,US,,,"Unassigned, Connecticut, US",
-84090010,US,USA,840,90010,Unassigned,Delaware,US,,,"Unassigned, Delaware, US",
-84090011,US,USA,840,90011,Unassigned,District of Columbia,US,,,"Unassigned, District of Columbia, US",
-84090012,US,USA,840,90012,Unassigned,Florida,US,,,"Unassigned, Florida, US",
-84090013,US,USA,840,90013,Unassigned,Georgia,US,,,"Unassigned, Georgia, US",
-84090015,US,USA,840,90015,Unassigned,Hawaii,US,,,"Unassigned, Hawaii, US",
-84090016,US,USA,840,90016,Unassigned,Idaho,US,,,"Unassigned, Idaho, US",
-84090017,US,USA,840,90017,Unassigned,Illinois,US,,,"Unassigned, Illinois, US",
-84090018,US,USA,840,90018,Unassigned,Indiana,US,,,"Unassigned, Indiana, US",
-84090019,US,USA,840,90019,Unassigned,Iowa,US,,,"Unassigned, Iowa, US",
-84090020,US,USA,840,90020,Unassigned,Kansas,US,,,"Unassigned, Kansas, US",
-84090021,US,USA,840,90021,Unassigned,Kentucky,US,,,"Unassigned, Kentucky, US",
-84090022,US,USA,840,90022,Unassigned,Louisiana,US,,,"Unassigned, Louisiana, US",
-84090023,US,USA,840,90023,Unassigned,Maine,US,,,"Unassigned, Maine, US",
-84090024,US,USA,840,90024,Unassigned,Maryland,US,,,"Unassigned, Maryland, US",
-84090025,US,USA,840,90025,Unassigned,Massachusetts,US,,,"Unassigned, Massachusetts, US",
-84090026,US,USA,840,90026,Unassigned,Michigan,US,,,"Unassigned, Michigan, US",
-84090027,US,USA,840,90027,Unassigned,Minnesota,US,,,"Unassigned, Minnesota, US",
-84090028,US,USA,840,90028,Unassigned,Mississippi,US,,,"Unassigned, Mississippi, US",
-84090029,US,USA,840,90029,Unassigned,Missouri,US,,,"Unassigned, Missouri, US",
-84090030,US,USA,840,90030,Unassigned,Montana,US,,,"Unassigned, Montana, US",
-84090031,US,USA,840,90031,Unassigned,Nebraska,US,,,"Unassigned, Nebraska, US",
-84090032,US,USA,840,90032,Unassigned,Nevada,US,,,"Unassigned, Nevada, US",
-84090033,US,USA,840,90033,Unassigned,New Hampshire,US,,,"Unassigned, New Hampshire, US",
-84090034,US,USA,840,90034,Unassigned,New Jersey,US,,,"Unassigned, New Jersey, US",
-84090035,US,USA,840,90035,Unassigned,New Mexico,US,,,"Unassigned, New Mexico, US",
-84090036,US,USA,840,90036,Unassigned,New York,US,,,"Unassigned, New York, US",
-84090037,US,USA,840,90037,Unassigned,North Carolina,US,,,"Unassigned, North Carolina, US",
-84090038,US,USA,840,90038,Unassigned,North Dakota,US,,,"Unassigned, North Dakota, US",
-84090039,US,USA,840,90039,Unassigned,Ohio,US,,,"Unassigned, Ohio, US",
-84090040,US,USA,840,90040,Unassigned,Oklahoma,US,,,"Unassigned, Oklahoma, US",
-84090041,US,USA,840,90041,Unassigned,Oregon,US,,,"Unassigned, Oregon, US",
-84090042,US,USA,840,90042,Unassigned,Pennsylvania,US,,,"Unassigned, Pennsylvania, US",
-84090044,US,USA,840,90044,Unassigned,Rhode Island,US,,,"Unassigned, Rhode Island, US",
-84090045,US,USA,840,90045,Unassigned,South Carolina,US,,,"Unassigned, South Carolina, US",
-84090046,US,USA,840,90046,Unassigned,South Dakota,US,,,"Unassigned, South Dakota, US",
-84090047,US,USA,840,90047,Unassigned,Tennessee,US,,,"Unassigned, Tennessee, US",
-84090048,US,USA,840,90048,Unassigned,Texas,US,,,"Unassigned, Texas, US",
-84090049,US,USA,840,90049,Unassigned,Utah,US,,,"Unassigned, Utah, US",
-84090050,US,USA,840,90050,Unassigned,Vermont,US,,,"Unassigned, Vermont, US",
-84090051,US,USA,840,90051,Unassigned,Virginia,US,,,"Unassigned, Virginia, US",
-84090053,US,USA,840,90053,Unassigned,Washington,US,,,"Unassigned, Washington, US",
-84090054,US,USA,840,90054,Unassigned,West Virginia,US,,,"Unassigned, West Virginia, US",
-84090055,US,USA,840,90055,Unassigned,Wisconsin,US,,,"Unassigned, Wisconsin, US",
-84090056,US,USA,840,90056,Unassigned,Wyoming,US,,,"Unassigned, Wyoming, US",
-84001001,US,USA,840,01001,Autauga,Alabama,US,32.53952745,-86.64408227,"Autauga, Alabama, US",55869
-84001003,US,USA,840,01003,Baldwin,Alabama,US,30.72774991,-87.72207058,"Baldwin, Alabama, US",223234
-84001005,US,USA,840,01005,Barbour,Alabama,US,31.868263,-85.3871286,"Barbour, Alabama, US",24686
-84001007,US,USA,840,01007,Bibb,Alabama,US,32.99642064,-87.1251146,"Bibb, Alabama, US",22394
-84001009,US,USA,840,01009,Blount,Alabama,US,33.98210918,-86.56790593,"Blount, Alabama, US",57826
-84001011,US,USA,840,01011,Bullock,Alabama,US,32.10030533,-85.71265535,"Bullock, Alabama, US",10101
-84001013,US,USA,840,01013,Butler,Alabama,US,31.75300095,-86.68057478,"Butler, Alabama, US",19448
-84001015,US,USA,840,01015,Calhoun,Alabama,US,33.77483727,-85.82630386,"Calhoun, Alabama, US",113605
-84001017,US,USA,840,01017,Chambers,Alabama,US,32.91360079,-85.39072749,"Chambers, Alabama, US",33254
-84001019,US,USA,840,01019,Cherokee,Alabama,US,34.17805983,-85.60638968,"Cherokee, Alabama, US",26196
-84001021,US,USA,840,01021,Chilton,Alabama,US,32.85044126,-86.7173256,"Chilton, Alabama, US",44428
-84001023,US,USA,840,01023,Choctaw,Alabama,US,32.02227341,-88.2656443,"Choctaw, Alabama, US",12589
-84001025,US,USA,840,01025,Clarke,Alabama,US,31.68099859,-87.83548597,"Clarke, Alabama, US",23622
-84001027,US,USA,840,01027,Clay,Alabama,US,33.26984193,-85.85836077,"Clay, Alabama, US",13235
-84001029,US,USA,840,01029,Cleburne,Alabama,US,33.67679204,-85.52005899,"Cleburne, Alabama, US",14910
-84001031,US,USA,840,01031,Coffee,Alabama,US,31.39932826,-85.98901039,"Coffee, Alabama, US",52342
-84001033,US,USA,840,01033,Colbert,Alabama,US,34.69847452,-87.80168544,"Colbert, Alabama, US",55241
-84001035,US,USA,840,01035,Conecuh,Alabama,US,31.43401703,-86.99320044,"Conecuh, Alabama, US",12067
-84001037,US,USA,840,01037,Coosa,Alabama,US,32.93690146,-86.24847739,"Coosa, Alabama, US",10663
-84001039,US,USA,840,01039,Covington,Alabama,US,31.2477854,-86.45050893,"Covington, Alabama, US",37049
-84001041,US,USA,840,01041,Crenshaw,Alabama,US,31.72941803,-86.31593104,"Crenshaw, Alabama, US",13772
-84001043,US,USA,840,01043,Cullman,Alabama,US,34.13020303,-86.86888037,"Cullman, Alabama, US",83768
-84001045,US,USA,840,01045,Dale,Alabama,US,31.43037123,-85.61095742,"Dale, Alabama, US",49172
-84001047,US,USA,840,01047,Dallas,Alabama,US,32.32688101,-87.1086671,"Dallas, Alabama, US",37196
-84001049,US,USA,840,01049,DeKalb,Alabama,US,34.45946862,-85.80782906,"DeKalb, Alabama, US",71513
-84001051,US,USA,840,01051,Elmore,Alabama,US,32.59785413,-86.14415284,"Elmore, Alabama, US",81209
-84001053,US,USA,840,01053,Escambia,Alabama,US,31.1256789,-87.15918694,"Escambia, Alabama, US",36633
-84001055,US,USA,840,01055,Etowah,Alabama,US,34.04567266,-86.04051873,"Etowah, Alabama, US",102268
-84001057,US,USA,840,01057,Fayette,Alabama,US,33.72076938,-87.73886638,"Fayette, Alabama, US",16302
-84001059,US,USA,840,01059,Franklin,Alabama,US,34.44235334,-87.84289505,"Franklin, Alabama, US",31362
-84001061,US,USA,840,01061,Geneva,Alabama,US,31.09389027,-85.83572839,"Geneva, Alabama, US",26271
-84001063,US,USA,840,01063,Greene,Alabama,US,32.85504247,-87.95684022,"Greene, Alabama, US",8111
-84001065,US,USA,840,01065,Hale,Alabama,US,32.76039258,-87.63284988,"Hale, Alabama, US",14651
-84001067,US,USA,840,01067,Henry,Alabama,US,31.51148016,-85.24267944,"Henry, Alabama, US",17205
-84001069,US,USA,840,01069,Houston,Alabama,US,31.15197924,-85.29939599,"Houston, Alabama, US",105882
-84001071,US,USA,840,01071,Jackson,Alabama,US,34.78144169,-85.99750489,"Jackson, Alabama, US",51626
-84001073,US,USA,840,01073,Jefferson,Alabama,US,33.55554728,-86.895063,"Jefferson, Alabama, US",658573
-84001075,US,USA,840,01075,Lamar,Alabama,US,33.77995024,-88.09668032,"Lamar, Alabama, US",13805
-84001077,US,USA,840,01077,Lauderdale,Alabama,US,34.90171875,-87.65624729,"Lauderdale, Alabama, US",92729
-84001079,US,USA,840,01079,Lawrence,Alabama,US,34.52041498,-87.31069453,"Lawrence, Alabama, US",32924
-84001081,US,USA,840,01081,Lee,Alabama,US,32.60154883,-85.35132246,"Lee, Alabama, US",164542
-84001083,US,USA,840,01083,Limestone,Alabama,US,34.81185586,-86.98310072,"Limestone, Alabama, US",98915
-84001085,US,USA,840,01085,Lowndes,Alabama,US,32.1597283,-86.65158371,"Lowndes, Alabama, US",9726
-84001087,US,USA,840,01087,Macon,Alabama,US,32.38759944,-85.69267724,"Macon, Alabama, US",18068
-84001089,US,USA,840,01089,Madison,Alabama,US,34.76327133,-86.55069633,"Madison, Alabama, US",372909
-84001091,US,USA,840,01091,Marengo,Alabama,US,32.24767634,-87.78796182,"Marengo, Alabama, US",18863
-84001093,US,USA,840,01093,Marion,Alabama,US,34.13697363,-87.88704173,"Marion, Alabama, US",29709
-84001095,US,USA,840,01095,Marshall,Alabama,US,34.36975964,-86.30486727,"Marshall, Alabama, US",96774
-84001097,US,USA,840,01097,Mobile,Alabama,US,30.78472347,-88.20842409,"Mobile, Alabama, US",413210
-84001099,US,USA,840,01099,Monroe,Alabama,US,31.56729412,-87.36995001,"Monroe, Alabama, US",20733
-84001101,US,USA,840,01101,Montgomery,Alabama,US,32.2206831,-86.20969272,"Montgomery, Alabama, US",226486
-84001103,US,USA,840,01103,Morgan,Alabama,US,34.45500589,-86.85475946,"Morgan, Alabama, US",119679
-84001105,US,USA,840,01105,Perry,Alabama,US,32.64048341,-87.29770589,"Perry, Alabama, US",8923
-84001107,US,USA,840,01107,Pickens,Alabama,US,33.28094866,-88.08818103,"Pickens, Alabama, US",19930
-84001109,US,USA,840,01109,Pike,Alabama,US,31.80396383,-85.9408295,"Pike, Alabama, US",33114
-84001111,US,USA,840,01111,Randolph,Alabama,US,33.29526734,-85.45708831,"Randolph, Alabama, US",22722
-84001113,US,USA,840,01113,Russell,Alabama,US,32.28725256,-85.18415324,"Russell, Alabama, US",57961
-84001115,US,USA,840,01115,St. Clair,Alabama,US,33.71902176,-86.31029372,"St. Clair, Alabama, US",89512
-84001117,US,USA,840,01117,Shelby,Alabama,US,33.26879845,-86.66232561,"Shelby, Alabama, US",217702
-84001119,US,USA,840,01119,Sumter,Alabama,US,32.59117397,-88.19916205,"Sumter, Alabama, US",12427
-84001121,US,USA,840,01121,Talladega,Alabama,US,33.37823223,-86.16886178,"Talladega, Alabama, US",79978
-84001123,US,USA,840,01123,Tallapoosa,Alabama,US,32.86698258,-85.79833053,"Tallapoosa, Alabama, US",40367
-84001125,US,USA,840,01125,Tuscaloosa,Alabama,US,33.28726072,-87.52556818,"Tuscaloosa, Alabama, US",209355
-84001127,US,USA,840,01127,Walker,Alabama,US,33.80270512,-87.30027177,"Walker, Alabama, US",63521
-84001129,US,USA,840,01129,Washington,Alabama,US,31.4092794,-88.20689944,"Washington, Alabama, US",16326
-84001131,US,USA,840,01131,Wilcox,Alabama,US,31.98773215,-87.30891118,"Wilcox, Alabama, US",10373
-84001133,US,USA,840,01133,Winston,Alabama,US,34.15030532,-87.37325922,"Winston, Alabama, US",23629
-84002013,US,USA,840,02013,Aleutians East,Alaska,US,55.32222414,-161.9722021,"Aleutians East, Alaska, US",3337
-84002016,US,USA,840,02016,Aleutians West,Alaska,US,52.3233,-174.1596,"Aleutians West, Alaska, US",5634
-84002020,US,USA,840,02020,Anchorage,Alaska,US,61.14998174,-149.1426986,"Anchorage, Alaska, US",288000
-84002050,US,USA,840,02050,Bethel,Alaska,US,60.90980451,-159.8561831,"Bethel, Alaska, US",18386
-84002060,US,USA,840,02060,Bristol Bay,Alaska,US,58.74513976,-156.701064,"Bristol Bay, Alaska, US",836
-84002068,US,USA,840,02068,Denali,Alaska,US,63.67264044,-150.0076108,"Denali, Alaska, US",2097
-84002070,US,USA,840,02070,Dillingham,Alaska,US,59.79603738,-158.2381942,"Dillingham, Alaska, US",4916
-84002090,US,USA,840,02090,Fairbanks North Star,Alaska,US,64.80726247,-146.5692662,"Fairbanks North Star, Alaska, US",96849
-84002100,US,USA,840,02100,Haines,Alaska,US,59.09893571,-135.4679843,"Haines, Alaska, US",2530
-84002105,US,USA,840,02105,Hoonah-Angoon,Alaska,US,58.29307365,-135.6424424,"Hoonah-Angoon, Alaska, US",2148
-84002110,US,USA,840,02110,Juneau,Alaska,US,58.45031811,-134.200436,"Juneau, Alaska, US",31974
-84002122,US,USA,840,02122,Kenai Peninsula,Alaska,US,60.24429722,-151.5388884,"Kenai Peninsula, Alaska, US",58708
-84002130,US,USA,840,02130,Ketchikan Gateway,Alaska,US,55.57445008,-130.975561,"Ketchikan Gateway, Alaska, US",13901
-84002150,US,USA,840,02150,Kodiak Island,Alaska,US,57.65529415,-153.7493579,"Kodiak Island, Alaska, US",12998
-84002158,US,USA,840,02158,Kusilvak,Alaska,US,62.1542916,-163.3967883,"Kusilvak, Alaska, US",8314
-84002164,US,USA,840,02164,Lake and Peninsula,Alaska,US,58.62403337,-156.2140589,"Lake and Peninsula, Alaska, US",1592
-84002170,US,USA,840,02170,Matanuska-Susitna,Alaska,US,62.31305045,-149.5741743,"Matanuska-Susitna, Alaska, US",108317
-84002180,US,USA,840,02180,Nome,Alaska,US,64.90320724,-164.0353804,"Nome, Alaska, US",10004
-84002185,US,USA,840,02185,North Slope,Alaska,US,69.31479216,-153.4836093,"North Slope, Alaska, US",9832
-84002188,US,USA,840,02188,Northwest Arctic,Alaska,US,67.04919196,-159.7503946,"Northwest Arctic, Alaska, US",7621
-84002195,US,USA,840,02195,Petersburg,Alaska,US,57.13978948,-132.9540995,"Petersburg, Alaska, US",3266
-84002198,US,USA,840,02198,Prince of Wales-Hyder,Alaska,US,55.76261984,-133.0511621,"Prince of Wales-Hyder, Alaska, US",6203
-84002220,US,USA,840,02220,Sitka,Alaska,US,57.24124555,-135.3206587,"Sitka, Alaska, US",8493
-84002230,US,USA,840,02230,Skagway,Alaska,US,59.56149996,-135.3337748,"Skagway, Alaska, US",1183
-84002240,US,USA,840,02240,Southeast Fairbanks,Alaska,US,63.87692095,-143.2127643,"Southeast Fairbanks, Alaska, US",6893
-84002261,US,USA,840,02261,Valdez-Cordova,Alaska,US,61.47502768,-144.7126799,"Valdez-Cordova, Alaska, US",9202
-84002275,US,USA,840,02275,Wrangell,Alaska,US,56.3202004,-132.0583731,"Wrangell, Alaska, US",2502
-84002282,US,USA,840,02282,Yakutat,Alaska,US,59.8909808,-140.3601451,"Yakutat, Alaska, US",579
-84002290,US,USA,840,02290,Yukon-Koyukuk,Alaska,US,65.50815459,-151.3907387,"Yukon-Koyukuk, Alaska, US",5230
-84004001,US,USA,840,04001,Apache,Arizona,US,35.39465006,-109.4892383,"Apache, Arizona, US",71887
-84004003,US,USA,840,04003,Cochise,Arizona,US,31.87934684,-109.7516088,"Cochise, Arizona, US",125922
-84004005,US,USA,840,04005,Coconino,Arizona,US,35.83883429,-111.7707178,"Coconino, Arizona, US",143476
-84004007,US,USA,840,04007,Gila,Arizona,US,33.80190085,-110.8132779,"Gila, Arizona, US",54018
-84004009,US,USA,840,04009,Graham,Arizona,US,32.93166885,-109.8882178,"Graham, Arizona, US",38837
-84004011,US,USA,840,04011,Greenlee,Arizona,US,33.21498827,-109.2405279,"Greenlee, Arizona, US",9498
-84004012,US,USA,840,04012,La Paz,Arizona,US,33.72854224,-113.9810029,"La Paz, Arizona, US",21108
-84004013,US,USA,840,04013,Maricopa,Arizona,US,33.34835867,-112.4918154,"Maricopa, Arizona, US",4485414
-84004015,US,USA,840,04015,Mohave,Arizona,US,35.70471703,-113.7577902,"Mohave, Arizona, US",212181
-84004017,US,USA,840,04017,Navajo,Arizona,US,35.3997715,-110.3218983,"Navajo, Arizona, US",110924
-84004019,US,USA,840,04019,Pima,Arizona,US,32.0971334,-111.7890033,"Pima, Arizona, US",1047279
-84004021,US,USA,840,04021,Pinal,Arizona,US,32.90525627,-111.3449483,"Pinal, Arizona, US",462789
-84004023,US,USA,840,04023,Santa Cruz,Arizona,US,31.52508998,-110.8479088,"Santa Cruz, Arizona, US",46498
-84004025,US,USA,840,04025,Yavapai,Arizona,US,34.59933926,-112.5538588,"Yavapai, Arizona, US",235099
-84004027,US,USA,840,04027,Yuma,Arizona,US,32.76895712,-113.9066674,"Yuma, Arizona, US",213787
-84005001,US,USA,840,05001,Arkansas,Arkansas,US,34.29145151,-91.37277296,"Arkansas, Arkansas, US",17486
-84005003,US,USA,840,05003,Ashley,Arkansas,US,33.19153461,-91.7698471,"Ashley, Arkansas, US",19657
-84005005,US,USA,840,05005,Baxter,Arkansas,US,36.28784385,-92.33782872,"Baxter, Arkansas, US",41932
-84005007,US,USA,840,05007,Benton,Arkansas,US,36.33644656,-94.25680817,"Benton, Arkansas, US",279141
-84005009,US,USA,840,05009,Boone,Arkansas,US,36.3084504,-93.09374925,"Boone, Arkansas, US",37432
-84005011,US,USA,840,05011,Bradley,Arkansas,US,33.46755808,-92.15980837,"Bradley, Arkansas, US",10763
-84005013,US,USA,840,05013,Calhoun,Arkansas,US,33.55598792,-92.49974403,"Calhoun, Arkansas, US",5189
-84005015,US,USA,840,05015,Carroll,Arkansas,US,36.3403856,-93.54270261,"Carroll, Arkansas, US",28380
-84005017,US,USA,840,05017,Chicot,Arkansas,US,33.26458973,-91.29539209,"Chicot, Arkansas, US",10118
-84005019,US,USA,840,05019,Clark,Arkansas,US,34.04613432,-93.17484713,"Clark, Arkansas, US",22320
-84005021,US,USA,840,05021,Clay,Arkansas,US,36.36826212,-90.4148172,"Clay, Arkansas, US",14551
-84005023,US,USA,840,05023,Cleburne,Arkansas,US,35.53864922,-92.02640019,"Cleburne, Arkansas, US",24919
-84005025,US,USA,840,05025,Cleveland,Arkansas,US,33.89723187,-92.18537045,"Cleveland, Arkansas, US",7956
-84005027,US,USA,840,05027,Columbia,Arkansas,US,33.21230701,-93.22642793,"Columbia, Arkansas, US",23457
-84005029,US,USA,840,05029,Conway,Arkansas,US,35.26205537,-92.70506566,"Conway, Arkansas, US",20846
-84005031,US,USA,840,05031,Craighead,Arkansas,US,35.83018283,-90.63235729,"Craighead, Arkansas, US",110332
-84005033,US,USA,840,05033,Crawford,Arkansas,US,35.58928601,-94.2446814,"Crawford, Arkansas, US",63257
-84005035,US,USA,840,05035,Crittenden,Arkansas,US,35.21247318,-90.30839406,"Crittenden, Arkansas, US",47955
-84005037,US,USA,840,05037,Cross,Arkansas,US,35.29631396,-90.77185818,"Cross, Arkansas, US",16419
-84005039,US,USA,840,05039,Dallas,Arkansas,US,33.97042763,-92.65167437,"Dallas, Arkansas, US",7009
-84005041,US,USA,840,05041,Desha,Arkansas,US,33.83011025,-91.25500948,"Desha, Arkansas, US",11361
-84005043,US,USA,840,05043,Drew,Arkansas,US,33.59035001,-91.71777921,"Drew, Arkansas, US",18219
-84005045,US,USA,840,05045,Faulkner,Arkansas,US,35.14719007,-92.33717519,"Faulkner, Arkansas, US",126007
-84005047,US,USA,840,05047,Franklin,Arkansas,US,35.51202821,-93.89299569,"Franklin, Arkansas, US",17715
-84005049,US,USA,840,05049,Fulton,Arkansas,US,36.38177105,-91.81729127,"Fulton, Arkansas, US",12477
-84005051,US,USA,840,05051,Garland,Arkansas,US,34.57692074,-93.14921604,"Garland, Arkansas, US",99386
-84005053,US,USA,840,05053,Grant,Arkansas,US,34.29017991,-92.42320562,"Grant, Arkansas, US",18265
-84005055,US,USA,840,05055,Greene,Arkansas,US,36.1173546,-90.55832668,"Greene, Arkansas, US",45325
-84005057,US,USA,840,05057,Hempstead,Arkansas,US,33.73325583,-93.66935133,"Hempstead, Arkansas, US",21532
-84005059,US,USA,840,05059,Hot Spring,Arkansas,US,34.31709259,-92.95396325,"Hot Spring, Arkansas, US",33771
-84005061,US,USA,840,05061,Howard,Arkansas,US,34.09007427,-93.9934871,"Howard, Arkansas, US",13202
-84005063,US,USA,840,05063,Independence,Arkansas,US,35.74242707,-91.57001641,"Independence, Arkansas, US",37825
-84005065,US,USA,840,05065,Izard,Arkansas,US,36.09604046,-91.90847954,"Izard, Arkansas, US",13629
-84005067,US,USA,840,05067,Jackson,Arkansas,US,35.59802983,-91.21494602,"Jackson, Arkansas, US",16719
-84005069,US,USA,840,05069,Jefferson,Arkansas,US,34.26767081,-91.92619839,"Jefferson, Arkansas, US",66824
-84005071,US,USA,840,05071,Johnson,Arkansas,US,35.56759135,-93.46036368,"Johnson, Arkansas, US",26578
-84005073,US,USA,840,05073,Lafayette,Arkansas,US,33.24116713,-93.60677071,"Lafayette, Arkansas, US",6624
-84005075,US,USA,840,05075,Lawrence,Arkansas,US,36.04188196,-91.10867198,"Lawrence, Arkansas, US",16406
-84005077,US,USA,840,05077,Lee,Arkansas,US,34.78498904,-90.78383866,"Lee, Arkansas, US",8857
-84005079,US,USA,840,05079,Lincoln,Arkansas,US,33.95317155,-91.74002806,"Lincoln, Arkansas, US",13024
-84005081,US,USA,840,05081,Little River,Arkansas,US,33.70375665,-94.23468591,"Little River, Arkansas, US",12259
-84005083,US,USA,840,05083,Logan,Arkansas,US,35.21413234,-93.71951016,"Logan, Arkansas, US",21466
-84005085,US,USA,840,05085,Lonoke,Arkansas,US,34.75392199,-91.88742357,"Lonoke, Arkansas, US",73309
-84005087,US,USA,840,05087,Madison,Arkansas,US,36.01038185,-93.72524943,"Madison, Arkansas, US",16576
-84005089,US,USA,840,05089,Marion,Arkansas,US,36.26844485,-92.68451899,"Marion, Arkansas, US",16694
-84005091,US,USA,840,05091,Miller,Arkansas,US,33.31403423,-93.89285258,"Miller, Arkansas, US",43257
-84005093,US,USA,840,05093,Mississippi,Arkansas,US,35.76271485,-90.0519437,"Mississippi, Arkansas, US",40651
-84005095,US,USA,840,05095,Monroe,Arkansas,US,34.6815935,-91.20540287,"Monroe, Arkansas, US",6701
-84005097,US,USA,840,05097,Montgomery,Arkansas,US,34.53704874,-93.65824478,"Montgomery, Arkansas, US",8986
-84005099,US,USA,840,05099,Nevada,Arkansas,US,33.66340119,-93.30632432,"Nevada, Arkansas, US",8252
-84005101,US,USA,840,05101,Newton,Arkansas,US,35.91947491,-93.21612969,"Newton, Arkansas, US",7753
-84005103,US,USA,840,05103,Ouachita,Arkansas,US,33.58839816,-92.87795984,"Ouachita, Arkansas, US",23382
-84005105,US,USA,840,05105,Perry,Arkansas,US,34.9459153,-92.94372564,"Perry, Arkansas, US",10455
-84005107,US,USA,840,05107,Phillips,Arkansas,US,34.43268455,-90.84800154,"Phillips, Arkansas, US",17782
-84005109,US,USA,840,05109,Pike,Arkansas,US,34.16250414,-93.65789349,"Pike, Arkansas, US",10718
-84005111,US,USA,840,05111,Poinsett,Arkansas,US,35.57433534,-90.66268713,"Poinsett, Arkansas, US",23528
-84005113,US,USA,840,05113,Polk,Arkansas,US,34.48254879,-94.22728802,"Polk, Arkansas, US",19964
-84005115,US,USA,840,05115,Pope,Arkansas,US,35.44871474,-93.03212219,"Pope, Arkansas, US",64072
-84005117,US,USA,840,05117,Prairie,Arkansas,US,34.83624419,-91.55162157,"Prairie, Arkansas, US",8062
-84005119,US,USA,840,05119,Pulaski,Arkansas,US,34.77054088,-92.31355101,"Pulaski, Arkansas, US",391911
-84005121,US,USA,840,05121,Randolph,Arkansas,US,36.3415714,-91.02455531,"Randolph, Arkansas, US",17958
-84005123,US,USA,840,05123,St. Francis,Arkansas,US,35.02201976,-90.74828138,"St. Francis, Arkansas, US",24994
-84005125,US,USA,840,05125,Saline,Arkansas,US,34.64916145,-92.67583224,"Saline, Arkansas, US",122437
-84005127,US,USA,840,05127,Scott,Arkansas,US,34.85588887,-94.0632176,"Scott, Arkansas, US",10281
-84005129,US,USA,840,05129,Searcy,Arkansas,US,35.9109364,-92.69936482,"Searcy, Arkansas, US",7881
-84005131,US,USA,840,05131,Sebastian,Arkansas,US,35.19605503,-94.27162713,"Sebastian, Arkansas, US",127827
-84005133,US,USA,840,05133,Sevier,Arkansas,US,33.99780401,-94.2424869,"Sevier, Arkansas, US",17007
-84005135,US,USA,840,05135,Sharp,Arkansas,US,36.16258158,-91.47819342,"Sharp, Arkansas, US",17442
-84005137,US,USA,840,05137,Stone,Arkansas,US,35.86251946,-92.15684085,"Stone, Arkansas, US",12506
-84005139,US,USA,840,05139,Union,Arkansas,US,33.16887091,-92.59746952,"Union, Arkansas, US",38682
-84005141,US,USA,840,05141,Van Buren,Arkansas,US,35.58095779,-92.51295036,"Van Buren, Arkansas, US",16545
-84005143,US,USA,840,05143,Washington,Arkansas,US,35.976844,-94.21800746,"Washington, Arkansas, US",239187
-84005145,US,USA,840,05145,White,Arkansas,US,35.25688493,-91.74908296,"White, Arkansas, US",78753
-84005147,US,USA,840,05147,Woodruff,Arkansas,US,35.18902527,-91.2439489,"Woodruff, Arkansas, US",6320
-84005149,US,USA,840,05149,Yell,Arkansas,US,35.00292371,-93.41171338,"Yell, Arkansas, US",21341
-84006001,US,USA,840,06001,Alameda,California,US,37.64629437,-121.8929271,"Alameda, California, US",1671329
-84006003,US,USA,840,06003,Alpine,California,US,38.59678594,-119.8223594,"Alpine, California, US",1129
-84006005,US,USA,840,06005,Amador,California,US,38.44583082,-120.65696,"Amador, California, US",39752
-84006007,US,USA,840,06007,Butte,California,US,39.66727762,-121.6005252,"Butte, California, US",219186
-84006009,US,USA,840,06009,Calaveras,California,US,38.20537103,-120.552913,"Calaveras, California, US",45905
-84006011,US,USA,840,06011,Colusa,California,US,39.17881957,-122.2331726,"Colusa, California, US",21547
-84006013,US,USA,840,06013,Contra Costa,California,US,37.91923498,-121.9289527,"Contra Costa, California, US",1153526
-84006015,US,USA,840,06015,Del Norte,California,US,41.74228275,-123.8974063,"Del Norte, California, US",27812
-84006017,US,USA,840,06017,El Dorado,California,US,38.77965956,-120.5233166,"El Dorado, California, US",192843
-84006019,US,USA,840,06019,Fresno,California,US,36.75733899,-119.6466953,"Fresno, California, US",999101
-84006021,US,USA,840,06021,Glenn,California,US,39.59875897,-122.3938452,"Glenn, California, US",28393
-84006023,US,USA,840,06023,Humboldt,California,US,40.69923009,-123.876044,"Humboldt, California, US",135558
-84006025,US,USA,840,06025,Imperial,California,US,33.0393082,-115.3669042,"Imperial, California, US",181215
-84006027,US,USA,840,06027,Inyo,California,US,36.51112084,-117.4111978,"Inyo, California, US",18039
-84006029,US,USA,840,06029,Kern,California,US,35.34329425,-118.7277796,"Kern, California, US",900202
-84006031,US,USA,840,06031,Kings,California,US,36.07409056,-119.8159973,"Kings, California, US",152940
-84006033,US,USA,840,06033,Lake,California,US,39.10124298,-122.7536244,"Lake, California, US",64386
-84006035,US,USA,840,06035,Lassen,California,US,40.67311306,-120.5935099,"Lassen, California, US",30573
-84006037,US,USA,840,06037,Los Angeles,California,US,34.30828379,-118.2282411,"Los Angeles, California, US",10039107
-84006039,US,USA,840,06039,Madera,California,US,37.21513971,-119.7665589,"Madera, California, US",157327
-84006041,US,USA,840,06041,Marin,California,US,38.07122463,-122.7210631,"Marin, California, US",258826
-84006043,US,USA,840,06043,Mariposa,California,US,37.57978556,-119.9073334,"Mariposa, California, US",17203
-84006045,US,USA,840,06045,Mendocino,California,US,39.4381191,-123.3911313,"Mendocino, California, US",86749
-84006047,US,USA,840,06047,Merced,California,US,37.18922369,-120.7209035,"Merced, California, US",277680
-84006049,US,USA,840,06049,Modoc,California,US,41.58965602,-120.7244817,"Modoc, California, US",8841
-84006051,US,USA,840,06051,Mono,California,US,37.93899289,-118.8872409,"Mono, California, US",14444
-84006053,US,USA,840,06053,Monterey,California,US,36.21862405,-121.2413397,"Monterey, California, US",434061
-84006055,US,USA,840,06055,Napa,California,US,38.50735751,-122.332839,"Napa, California, US",137744
-84006057,US,USA,840,06057,Nevada,California,US,39.30394768,-120.7627281,"Nevada, California, US",99755
-84006059,US,USA,840,06059,Orange,California,US,33.70147516,-117.7645998,"Orange, California, US",3175692
-84006061,US,USA,840,06061,Placer,California,US,39.06167234,-120.7240569,"Placer, California, US",398329
-84006063,US,USA,840,06063,Plumas,California,US,40.00355989,-120.8395236,"Plumas, California, US",18807
-84006065,US,USA,840,06065,Riverside,California,US,33.74314981,-115.9933578,"Riverside, California, US",2470546
-84006067,US,USA,840,06067,Sacramento,California,US,38.45106826,-121.3425374,"Sacramento, California, US",1552058
-84006069,US,USA,840,06069,San Benito,California,US,36.60308176,-121.069975,"San Benito, California, US",62808
-84006071,US,USA,840,06071,San Bernardino,California,US,34.84060306,-116.1774685,"San Bernardino, California, US",2180085
-84006073,US,USA,840,06073,San Diego,California,US,33.03484597,-116.7365326,"San Diego, California, US",3338330
-84006075,US,USA,840,06075,San Francisco,California,US,37.75215114,-122.4385672,"San Francisco, California, US",881549
-84006077,US,USA,840,06077,San Joaquin,California,US,37.93433732,-121.2730061,"San Joaquin, California, US",762148
-84006079,US,USA,840,06079,San Luis Obispo,California,US,35.38822029,-120.4039028,"San Luis Obispo, California, US",283111
-84006081,US,USA,840,06081,San Mateo,California,US,37.4228808,-122.3275546,"San Mateo, California, US",766573
-84006083,US,USA,840,06083,Santa Barbara,California,US,34.65329488,-120.0188492,"Santa Barbara, California, US",446499
-84006085,US,USA,840,06085,Santa Clara,California,US,37.23104908,-121.6970462,"Santa Clara, California, US",1927852
-84006087,US,USA,840,06087,Santa Cruz,California,US,37.05580291,-122.0066524,"Santa Cruz, California, US",273213
-84006089,US,USA,840,06089,Shasta,California,US,40.76391419,-122.0396884,"Shasta, California, US",180080
-84006091,US,USA,840,06091,Sierra,California,US,39.57713498,-120.5200701,"Sierra, California, US",3005
-84006093,US,USA,840,06093,Siskiyou,California,US,41.59198861,-122.5407434,"Siskiyou, California, US",43539
-84006095,US,USA,840,06095,Solano,California,US,38.26827353,-121.9357113,"Solano, California, US",447643
-84006097,US,USA,840,06097,Sonoma,California,US,38.52746429,-122.8862506,"Sonoma, California, US",494336
-84006099,US,USA,840,06099,Stanislaus,California,US,37.55862499,-120.9970722,"Stanislaus, California, US",550660
-84006101,US,USA,840,06101,Sutter,California,US,39.03417539,-121.6945899,"Sutter, California, US",96971
-84006103,US,USA,840,06103,Tehama,California,US,40.12570935,-122.2370171,"Tehama, California, US",65084
-84006105,US,USA,840,06105,Trinity,California,US,40.6491767,-123.114713,"Trinity, California, US",12285
-84006107,US,USA,840,06107,Tulare,California,US,36.22026558,-118.8020203,"Tulare, California, US",466195
-84006109,US,USA,840,06109,Tuolumne,California,US,38.02644018,-119.9525093,"Tuolumne, California, US",54478
-84006111,US,USA,840,06111,Ventura,California,US,34.44465746,-119.0910613,"Ventura, California, US",846006
-84006113,US,USA,840,06113,Yolo,California,US,38.68278902,-121.9018288,"Yolo, California, US",220500
-84006115,US,USA,840,06115,Yuba,California,US,39.26255932,-121.3535644,"Yuba, California, US",78668
-84008001,US,USA,840,08001,Adams,Colorado,US,39.87432092,-104.3362578,"Adams, Colorado, US",517421
-84008003,US,USA,840,08003,Alamosa,Colorado,US,37.57250606,-105.7885451,"Alamosa, Colorado, US",16233
-84008005,US,USA,840,08005,Arapahoe,Colorado,US,39.64977461,-104.3353617,"Arapahoe, Colorado, US",656590
-84008007,US,USA,840,08007,Archuleta,Colorado,US,37.19474156,-107.0476867,"Archuleta, Colorado, US",14029
-84008009,US,USA,840,08009,Baca,Colorado,US,37.31940883,-102.5603223,"Baca, Colorado, US",3581
-84008011,US,USA,840,08011,Bent,Colorado,US,37.95474293,-103.0720195,"Bent, Colorado, US",5577
-84008013,US,USA,840,08013,Boulder,Colorado,US,40.09313619,-105.3546767,"Boulder, Colorado, US",326196
-84008014,US,USA,840,08014,Broomfield,Colorado,US,39.95998787,-105.0566324,"Broomfield, Colorado, US",70465
-84008015,US,USA,840,08015,Chaffee,Colorado,US,38.74745778,-106.1926573,"Chaffee, Colorado, US",20356
-84008017,US,USA,840,08017,Cheyenne,Colorado,US,38.82777431,-102.6032558,"Cheyenne, Colorado, US",1831
-84008019,US,USA,840,08019,Clear Creek,Colorado,US,39.68864463,-105.6463118,"Clear Creek, Colorado, US",9700
-84008021,US,USA,840,08021,Conejos,Colorado,US,37.201606,-106.1917488,"Conejos, Colorado, US",8205
-84008023,US,USA,840,08023,Costilla,Colorado,US,37.27732493,-105.4276548,"Costilla, Colorado, US",3887
-84008025,US,USA,840,08025,Crowley,Colorado,US,38.32608609,-103.7844965,"Crowley, Colorado, US",6061
-84008027,US,USA,840,08027,Custer,Colorado,US,38.10883162,-105.3683478,"Custer, Colorado, US",5068
-84008029,US,USA,840,08029,Delta,Colorado,US,38.86246243,-107.8631342,"Delta, Colorado, US",31162
-84008031,US,USA,840,08031,Denver,Colorado,US,39.76018276,-104.8725695,"Denver, Colorado, US",727211
-84008033,US,USA,840,08033,Dolores,Colorado,US,37.75208676,-108.5211585,"Dolores, Colorado, US",2055
-84008035,US,USA,840,08035,Douglas,Colorado,US,39.33133796,-104.930001,"Douglas, Colorado, US",351154
-84008037,US,USA,840,08037,Eagle,Colorado,US,39.62754308,-106.6933637,"Eagle, Colorado, US",55127
-84008039,US,USA,840,08039,Elbert,Colorado,US,39.28656773,-104.1358721,"Elbert, Colorado, US",26729
-84008041,US,USA,840,08041,El Paso,Colorado,US,38.83240149,-104.5251411,"El Paso, Colorado, US",720403
-84008043,US,USA,840,08043,Fremont,Colorado,US,38.47362326,-105.4399667,"Fremont, Colorado, US",47839
-84008045,US,USA,840,08045,Garfield,Colorado,US,39.59921777,-107.902708,"Garfield, Colorado, US",60061
-84008047,US,USA,840,08047,Gilpin,Colorado,US,39.85646523,-105.5252597,"Gilpin, Colorado, US",6243
-84008049,US,USA,840,08049,Grand,Colorado,US,40.10603347,-106.1178042,"Grand, Colorado, US",15734
-84008051,US,USA,840,08051,Gunnison,Colorado,US,38.66611652,-107.0320729,"Gunnison, Colorado, US",17462
-84008053,US,USA,840,08053,Hinsdale,Colorado,US,37.82247444,-107.3004345,"Hinsdale, Colorado, US",820
-84008055,US,USA,840,08055,Huerfano,Colorado,US,37.68473101,-104.9612585,"Huerfano, Colorado, US",6897
-84008057,US,USA,840,08057,Jackson,Colorado,US,40.6659387,-106.3408905,"Jackson, Colorado, US",1392
-84008059,US,USA,840,08059,Jefferson,Colorado,US,39.58635604,-105.2517692,"Jefferson, Colorado, US",582881
-84008061,US,USA,840,08061,Kiowa,Colorado,US,38.43260896,-102.7392145,"Kiowa, Colorado, US",1406
-84008063,US,USA,840,08063,Kit Carson,Colorado,US,39.30497777,-102.6022199,"Kit Carson, Colorado, US",7097
-84008065,US,USA,840,08065,Lake,Colorado,US,39.20278823,-106.3555697,"Lake, Colorado, US",8127
-84008067,US,USA,840,08067,La Plata,Colorado,US,37.28632032,-107.8429014,"La Plata, Colorado, US",56221
-84008069,US,USA,840,08069,Larimer,Colorado,US,40.66671597,-105.4625784,"Larimer, Colorado, US",356899
-84008071,US,USA,840,08071,Las Animas,Colorado,US,37.3153406,-104.0376458,"Las Animas, Colorado, US",14506
-84008073,US,USA,840,08073,Lincoln,Colorado,US,38.98749519,-103.5136649,"Lincoln, Colorado, US",5701
-84008075,US,USA,840,08075,Logan,Colorado,US,40.7249637,-103.110817,"Logan, Colorado, US",22409
-84008077,US,USA,840,08077,Mesa,Colorado,US,39.01787888,-108.469799,"Mesa, Colorado, US",154210
-84008079,US,USA,840,08079,Mineral,Colorado,US,37.66954283,-106.9281698,"Mineral, Colorado, US",769
-84008081,US,USA,840,08081,Moffat,Colorado,US,40.61810999,-108.2070876,"Moffat, Colorado, US",13283
-84008083,US,USA,840,08083,Montezuma,Colorado,US,37.33859579,-108.5958857,"Montezuma, Colorado, US",26183
-84008085,US,USA,840,08085,Montrose,Colorado,US,38.40214114,-108.2639022,"Montrose, Colorado, US",42758
-84008087,US,USA,840,08087,Morgan,Colorado,US,40.2627981,-103.8093302,"Morgan, Colorado, US",29068
-84008089,US,USA,840,08089,Otero,Colorado,US,37.9014485,-103.7173385,"Otero, Colorado, US",18278
-84008091,US,USA,840,08091,Ouray,Colorado,US,38.14717457,-107.7675136,"Ouray, Colorado, US",4952
-84008093,US,USA,840,08093,Park,Colorado,US,39.120926,-105.7182065,"Park, Colorado, US",18845
-84008095,US,USA,840,08095,Phillips,Colorado,US,40.59414277,-102.3577703,"Phillips, Colorado, US",4265
-84008097,US,USA,840,08097,Pitkin,Colorado,US,39.21720112,-106.9310027,"Pitkin, Colorado, US",17767
-84008099,US,USA,840,08099,Prowers,Colorado,US,37.95544985,-102.3926052,"Prowers, Colorado, US",12172
-84008101,US,USA,840,08101,Pueblo,Colorado,US,38.17359144,-104.5127437,"Pueblo, Colorado, US",168424
-84008103,US,USA,840,08103,Rio Blanco,Colorado,US,39.97913541,-108.2179009,"Rio Blanco, Colorado, US",6324
-84008105,US,USA,840,08105,Rio Grande,Colorado,US,37.5836865,-106.3847838,"Rio Grande, Colorado, US",11267
-84008107,US,USA,840,08107,Routt,Colorado,US,40.48596505,-106.9905548,"Routt, Colorado, US",25638
-84008109,US,USA,840,08109,Saguache,Colorado,US,38.08054629,-106.282466,"Saguache, Colorado, US",6824
-84008111,US,USA,840,08111,San Juan,Colorado,US,37.76248981,-107.6763289,"San Juan, Colorado, US",728
-84008113,US,USA,840,08113,San Miguel,Colorado,US,38.00450883,-108.4020725,"San Miguel, Colorado, US",8179
-84008115,US,USA,840,08115,Sedgwick,Colorado,US,40.87595412,-102.3519227,"Sedgwick, Colorado, US",2248
-84008117,US,USA,840,08117,Summit,Colorado,US,39.63803232,-106.1150762,"Summit, Colorado, US",31011
-84008119,US,USA,840,08119,Teller,Colorado,US,38.88133511,-105.1614893,"Teller, Colorado, US",25388
-84008121,US,USA,840,08121,Washington,Colorado,US,39.97015535,-103.202587,"Washington, Colorado, US",4908
-84008123,US,USA,840,08123,Weld,Colorado,US,40.55499405,-104.3929621,"Weld, Colorado, US",324492
-84008125,US,USA,840,08125,Yuma,Colorado,US,40.00346839,-102.4258673,"Yuma, Colorado, US",10019
-84009001,US,USA,840,09001,Fairfield,Connecticut,US,41.26809896,-73.3881171,"Fairfield, Connecticut, US",943332
-84009003,US,USA,840,09003,Hartford,Connecticut,US,41.80283011,-72.73103891,"Hartford, Connecticut, US",891720
-84009005,US,USA,840,09005,Litchfield,Connecticut,US,41.7937534,-73.2451475,"Litchfield, Connecticut, US",180333
-84009007,US,USA,840,09007,Middlesex,Connecticut,US,41.45949668,-72.53714864,"Middlesex, Connecticut, US",162436
-84009009,US,USA,840,09009,New Haven,Connecticut,US,41.4080325,-72.93620426,"New Haven, Connecticut, US",854757
-84009011,US,USA,840,09011,New London,Connecticut,US,41.48896435,-72.10430976,"New London, Connecticut, US",265206
-84009013,US,USA,840,09013,Tolland,Connecticut,US,41.85853803,-72.3308481,"Tolland, Connecticut, US",150721
-84009015,US,USA,840,09015,Windham,Connecticut,US,41.82972709,-71.98182316,"Windham, Connecticut, US",116782
-84010001,US,USA,840,10001,Kent,Delaware,US,39.08646628,-75.56884914,"Kent, Delaware, US",180786
-84010003,US,USA,840,10003,New Castle,Delaware,US,39.57992638,-75.64054974,"New Castle, Delaware, US",558753
-84010005,US,USA,840,10005,Sussex,Delaware,US,38.66143781,-75.39031349,"Sussex, Delaware, US",234225
-84011001,US,USA,840,11001,District of Columbia,District of Columbia,US,38.90417773,-77.01655992,"District of Columbia, District of Columbia ,US",705749
-84012001,US,USA,840,12001,Alachua,Florida,US,29.67866525,-82.35928158,"Alachua, Florida, US",269043
-84012003,US,USA,840,12003,Baker,Florida,US,30.33060121,-82.28467476,"Baker, Florida, US",29210
-84012005,US,USA,840,12005,Bay,Florida,US,30.26548745,-85.62122584,"Bay, Florida, US",174705
-84012007,US,USA,840,12007,Bradford,Florida,US,29.95079741,-82.16611613,"Bradford, Florida, US",28201
-84012009,US,USA,840,12009,Brevard,Florida,US,28.29409504,-80.73091022,"Brevard, Florida, US",601942
-84012011,US,USA,840,12011,Broward,Florida,US,26.15184651,-80.48725556,"Broward, Florida, US",1952778
-84012013,US,USA,840,12013,Calhoun,Florida,US,30.40666734,-85.19394153,"Calhoun, Florida, US",14105
-84012015,US,USA,840,12015,Charlotte,Florida,US,26.90131002,-81.92949121,"Charlotte, Florida, US",188910
-84012017,US,USA,840,12017,Citrus,Florida,US,28.84804315,-82.47614748,"Citrus, Florida, US",149657
-84012019,US,USA,840,12019,Clay,Florida,US,29.98319144,-81.85609986,"Clay, Florida, US",219252
-84012021,US,USA,840,12021,Collier,Florida,US,26.11091986,-81.34687065,"Collier, Florida, US",384902
-84012023,US,USA,840,12023,Columbia,Florida,US,30.22509788,-82.62160164,"Columbia, Florida, US",71686
-84012027,US,USA,840,12027,DeSoto,Florida,US,27.18677893,-81.80941373,"DeSoto, Florida, US",38001
-84012029,US,USA,840,12029,Dixie,Florida,US,29.60631086,-83.15724673,"Dixie, Florida, US",16826
-84012031,US,USA,840,12031,Duval,Florida,US,30.33225875,-81.66976468,"Duval, Florida, US",957755
-84012033,US,USA,840,12033,Escambia,Florida,US,30.67652764,-87.37284571,"Escambia, Florida, US",318316
-84012035,US,USA,840,12035,Flagler,Florida,US,29.45933576,-81.31508595,"Flagler, Florida, US",115081
-84012037,US,USA,840,12037,Franklin,Florida,US,29.83791238,-84.82731662,"Franklin, Florida, US",12125
-84012039,US,USA,840,12039,Gadsden,Florida,US,30.57796289,-84.61915825,"Gadsden, Florida, US",45660
-84012041,US,USA,840,12041,Gilchrist,Florida,US,29.72856978,-82.79880657,"Gilchrist, Florida, US",18582
-84012043,US,USA,840,12043,Glades,Florida,US,26.95635849,-81.18996211,"Glades, Florida, US",13811
-84012045,US,USA,840,12045,Gulf,Florida,US,29.93543004,-85.2427099,"Gulf, Florida, US",13639
-84012047,US,USA,840,12047,Hamilton,Florida,US,30.49673973,-82.94998918,"Hamilton, Florida, US",14428
-84012049,US,USA,840,12049,Hardee,Florida,US,27.49293939,-81.80956574,"Hardee, Florida, US",26937
-84012051,US,USA,840,12051,Hendry,Florida,US,26.55386945,-81.16469006,"Hendry, Florida, US",42022
-84012053,US,USA,840,12053,Hernando,Florida,US,28.55364461,-82.42700204,"Hernando, Florida, US",193920
-84012055,US,USA,840,12055,Highlands,Florida,US,27.34254618,-81.34071957,"Highlands, Florida, US",106221
-84012057,US,USA,840,12057,Hillsborough,Florida,US,27.9276559,-82.32013172,"Hillsborough, Florida, US",1471968
-84012059,US,USA,840,12059,Holmes,Florida,US,30.86747479,-85.81319222,"Holmes, Florida, US",19617
-84012061,US,USA,840,12061,Indian River,Florida,US,27.69308961,-80.60556721,"Indian River, Florida, US",159923
-84012063,US,USA,840,12063,Jackson,Florida,US,30.7954597,-85.21500423,"Jackson, Florida, US",46414
-84012065,US,USA,840,12065,Jefferson,Florida,US,30.43669112,-83.89442308,"Jefferson, Florida, US",14246
-84012067,US,USA,840,12067,Lafayette,Florida,US,29.98484137,-83.18166636,"Lafayette, Florida, US",8422
-84012069,US,USA,840,12069,Lake,Florida,US,28.76202069,-81.7125123,"Lake, Florida, US",367118
-84012071,US,USA,840,12071,Lee,Florida,US,26.58410348,-81.88399313,"Lee, Florida, US",770577
-84012073,US,USA,840,12073,Leon,Florida,US,30.45955727,-84.27491114,"Leon, Florida, US",293582
-84012075,US,USA,840,12075,Levy,Florida,US,29.31829741,-82.74007147,"Levy, Florida, US",41503
-84012077,US,USA,840,12077,Liberty,Florida,US,30.23766008,-84.8829258,"Liberty, Florida, US",8354
-84012079,US,USA,840,12079,Madison,Florida,US,30.44396917,-83.47398594,"Madison, Florida, US",18493
-84012081,US,USA,840,12081,Manatee,Florida,US,27.47196942,-82.31831044,"Manatee, Florida, US",403253
-84012083,US,USA,840,12083,Marion,Florida,US,29.21227113,-82.05803627,"Marion, Florida, US",365579
-84012085,US,USA,840,12085,Martin,Florida,US,27.0772071,-80.43109784,"Martin, Florida, US",161000
-84012086,US,USA,840,12086,Miami-Dade,Florida,US,25.6112362,-80.55170587,"Miami-Dade, Florida, US",2716940
-84012087,US,USA,840,12087,Monroe,Florida,US,25.20904673,-81.07812416,"Monroe, Florida, US",74228
-84012089,US,USA,840,12089,Nassau,Florida,US,30.61037141,-81.80297522,"Nassau, Florida, US",88625
-84012091,US,USA,840,12091,Okaloosa,Florida,US,30.69143028,-86.59267105,"Okaloosa, Florida, US",210738
-84012093,US,USA,840,12093,Okeechobee,Florida,US,27.3863362,-80.88944347,"Okeechobee, Florida, US",42168
-84012095,US,USA,840,12095,Orange,Florida,US,28.51367621,-81.31799498,"Orange, Florida, US",1393452
-84012097,US,USA,840,12097,Osceola,Florida,US,28.06312234,-81.14882926,"Osceola, Florida, US",375751
-84012099,US,USA,840,12099,Palm Beach,Florida,US,26.64676272,-80.46536002,"Palm Beach, Florida, US",1496770
-84012101,US,USA,840,12101,Pasco,Florida,US,28.30810945,-82.40227529,"Pasco, Florida, US",553947
-84012103,US,USA,840,12103,Pinellas,Florida,US,27.93130349,-82.72239666,"Pinellas, Florida, US",974996
-84012105,US,USA,840,12105,Polk,Florida,US,27.95027105,-81.69732947,"Polk, Florida, US",724777
-84012107,US,USA,840,12107,Putnam,Florida,US,29.60779729,-81.74230285,"Putnam, Florida, US",74521
-84012109,US,USA,840,12109,St. Johns,Florida,US,29.90096506,-81.43589967,"St. Johns, Florida, US",264672
-84012111,US,USA,840,12111,St. Lucie,Florida,US,27.37763908,-80.47106649,"St. Lucie, Florida, US",328297
-84012113,US,USA,840,12113,Santa Rosa,Florida,US,30.6934145,-87.02458128,"Santa Rosa, Florida, US",184313
-84012115,US,USA,840,12115,Sarasota,Florida,US,27.18546175,-82.33174248,"Sarasota, Florida, US",433742
-84012117,US,USA,840,12117,Seminole,Florida,US,28.7158582,-81.24060348,"Seminole, Florida, US",471826
-84012119,US,USA,840,12119,Sumter,Florida,US,28.70181754,-82.0794267,"Sumter, Florida, US",132420
-84012121,US,USA,840,12121,Suwannee,Florida,US,30.19746066,-82.9909967,"Suwannee, Florida, US",44417
-84012123,US,USA,840,12123,Taylor,Florida,US,30.04848048,-83.60445406,"Taylor, Florida, US",21569
-84012125,US,USA,840,12125,Union,Florida,US,30.04412971,-82.37497443,"Union, Florida, US",15237
-84012127,US,USA,840,12127,Volusia,Florida,US,29.05858895,-81.18263252,"Volusia, Florida, US",553284
-84012129,US,USA,840,12129,Wakulla,Florida,US,30.16548905,-84.39895211,"Wakulla, Florida, US",33739
-84012131,US,USA,840,12131,Walton,Florida,US,30.64204028,-86.16935664,"Walton, Florida, US",74071
-84012133,US,USA,840,12133,Washington,Florida,US,30.61359259,-85.66002461,"Washington, Florida, US",25473
-84013001,US,USA,840,13001,Appling,Georgia,US,31.74847232,-82.28909114,"Appling, Georgia, US",18386
-84013003,US,USA,840,13003,Atkinson,Georgia,US,31.29633502,-82.87545866,"Atkinson, Georgia, US",8165
-84013005,US,USA,840,13005,Bacon,Georgia,US,31.55456473,-82.45936528,"Bacon, Georgia, US",11164
-84013007,US,USA,840,13007,Baker,Georgia,US,31.32669878,-84.44218806,"Baker, Georgia, US",3038
-84013009,US,USA,840,13009,Baldwin,Georgia,US,33.06882326,-83.24701748,"Baldwin, Georgia, US",44890
-84013011,US,USA,840,13011,Banks,Georgia,US,34.35607081,-83.49644388,"Banks, Georgia, US",19234
-84013013,US,USA,840,13013,Barrow,Georgia,US,33.99148694,-83.71436292,"Barrow, Georgia, US",83240
-84013015,US,USA,840,13015,Bartow,Georgia,US,34.23732119,-84.83887523,"Bartow, Georgia, US",107738
-84013017,US,USA,840,13017,Ben Hill,Georgia,US,31.76095874,-83.22145359,"Ben Hill, Georgia, US",16700
-84013019,US,USA,840,13019,Berrien,Georgia,US,31.27590016,-83.2252992,"Berrien, Georgia, US",19397
-84013021,US,USA,840,13021,Bibb,Georgia,US,32.80904227,-83.70489165,"Bibb, Georgia, US",153159
-84013023,US,USA,840,13023,Bleckley,Georgia,US,32.43829035,-83.33035166,"Bleckley, Georgia, US",12873
-84013025,US,USA,840,13025,Brantley,Georgia,US,31.19576557,-81.97743999,"Brantley, Georgia, US",19109
-84013027,US,USA,840,13027,Brooks,Georgia,US,30.83922642,-83.58303423,"Brooks, Georgia, US",15457
-84013029,US,USA,840,13029,Bryan,Georgia,US,32.00979311,-81.44002948,"Bryan, Georgia, US",39627
-84013031,US,USA,840,13031,Bulloch,Georgia,US,32.39577406,-81.74811421,"Bulloch, Georgia, US",79608
-84013033,US,USA,840,13033,Burke,Georgia,US,33.05917989,-81.99928721,"Burke, Georgia, US",22383
-84013035,US,USA,840,13035,Butts,Georgia,US,33.2830945,-83.9543504,"Butts, Georgia, US",24936
-84013037,US,USA,840,13037,Calhoun,Georgia,US,31.53169785,-84.62725131,"Calhoun, Georgia, US",6189
-84013039,US,USA,840,13039,Camden,Georgia,US,30.92951916,-81.66601818,"Camden, Georgia, US",54666
-84013043,US,USA,840,13043,Candler,Georgia,US,32.40209349,-82.07702563,"Candler, Georgia, US",10803
-84013045,US,USA,840,13045,Carroll,Georgia,US,33.58138199,-85.07976677,"Carroll, Georgia, US",119992
-84013047,US,USA,840,13047,Catoosa,Georgia,US,34.89872298,-85.13757014,"Catoosa, Georgia, US",67580
-84013049,US,USA,840,13049,Charlton,Georgia,US,30.78371028,-82.13951596,"Charlton, Georgia, US",13392
-84013051,US,USA,840,13051,Chatham,Georgia,US,32.00043026,-81.12489526,"Chatham, Georgia, US",289430
-84013053,US,USA,840,13053,Chattahoochee,Georgia,US,32.34341231,-84.78809239,"Chattahoochee, Georgia, US",10907
-84013055,US,USA,840,13055,Chattooga,Georgia,US,34.47197698,-85.34535662,"Chattooga, Georgia, US",24789
-84013057,US,USA,840,13057,Cherokee,Georgia,US,34.24393976,-84.47431861,"Cherokee, Georgia, US",258773
-84013059,US,USA,840,13059,Clarke,Georgia,US,33.95436462,-83.37124007,"Clarke, Georgia, US",128331
-84013061,US,USA,840,13061,Clay,Georgia,US,31.62221166,-84.97713865,"Clay, Georgia, US",2834
-84013063,US,USA,840,13063,Clayton,Georgia,US,33.54187245,-84.35594188,"Clayton, Georgia, US",292256
-84013065,US,USA,840,13065,Clinch,Georgia,US,30.91395822,-82.70432472,"Clinch, Georgia, US",6618
-84013067,US,USA,840,13067,Cobb,Georgia,US,33.94243204,-84.5761255,"Cobb, Georgia, US",760141
-84013069,US,USA,840,13069,Coffee,Georgia,US,31.54892966,-82.8549206,"Coffee, Georgia, US",43273
-84013071,US,USA,840,13071,Colquitt,Georgia,US,31.18810588,-83.7677946,"Colquitt, Georgia, US",45600
-84013073,US,USA,840,13073,Columbia,Georgia,US,33.54534185,-82.263524,"Columbia, Georgia, US",156714
-84013075,US,USA,840,13075,Cook,Georgia,US,31.16068491,-83.42947229,"Cook, Georgia, US",17270
-84013077,US,USA,840,13077,Coweta,Georgia,US,33.35334302,-84.76129976,"Coweta, Georgia, US",148509
-84013079,US,USA,840,13079,Crawford,Georgia,US,32.71391813,-83.98061238,"Crawford, Georgia, US",12404
-84013081,US,USA,840,13081,Crisp,Georgia,US,31.92289565,-83.76811843,"Crisp, Georgia, US",22372
-84013083,US,USA,840,13083,Dade,Georgia,US,34.8549167,-85.50490424,"Dade, Georgia, US",16116
-84013085,US,USA,840,13085,Dawson,Georgia,US,34.44244079,-84.16964071,"Dawson, Georgia, US",26108
-84013087,US,USA,840,13087,Decatur,Georgia,US,30.87967778,-84.57619536,"Decatur, Georgia, US",26404
-84013089,US,USA,840,13089,DeKalb,Georgia,US,33.76944049,-84.22396017,"DeKalb, Georgia, US",759297
-84013091,US,USA,840,13091,Dodge,Georgia,US,32.17265114,-83.16948926,"Dodge, Georgia, US",20605
-84013093,US,USA,840,13093,Dooly,Georgia,US,32.15630737,-83.79746561,"Dooly, Georgia, US",13390
-84013095,US,USA,840,13095,Dougherty,Georgia,US,31.53328528,-84.21722377,"Dougherty, Georgia, US",87956
-84013097,US,USA,840,13097,Douglas,Georgia,US,33.70291126,-84.77026156,"Douglas, Georgia, US",146343
-84013099,US,USA,840,13099,Early,Georgia,US,31.32155345,-84.90255207,"Early, Georgia, US",10190
-84013101,US,USA,840,13101,Echols,Georgia,US,30.71101099,-82.89687287,"Echols, Georgia, US",4006
-84013103,US,USA,840,13103,Effingham,Georgia,US,32.36616021,-81.34280942,"Effingham, Georgia, US",64296
-84013105,US,USA,840,13105,Elbert,Georgia,US,34.11302332,-82.83936148,"Elbert, Georgia, US",19194
-84013107,US,USA,840,13107,Emanuel,Georgia,US,32.59221302,-82.30239915,"Emanuel, Georgia, US",22646
-84013109,US,USA,840,13109,Evans,Georgia,US,32.15328841,-81.8870105,"Evans, Georgia, US",10654
-84013111,US,USA,840,13111,Fannin,Georgia,US,34.86430205,-84.316964,"Fannin, Georgia, US",26188
-84013113,US,USA,840,13113,Fayette,Georgia,US,33.41357794,-84.49089434,"Fayette, Georgia, US",114421
-84013115,US,USA,840,13115,Floyd,Georgia,US,34.26268279,-85.21577392,"Floyd, Georgia, US",98498
-84013117,US,USA,840,13117,Forsyth,Georgia,US,34.22604035,-84.1231513,"Forsyth, Georgia, US",244252
-84013119,US,USA,840,13119,Franklin,Georgia,US,34.37525597,-83.23159927,"Franklin, Georgia, US",23349
-84013121,US,USA,840,13121,Fulton,Georgia,US,33.79216944,-84.46319413,"Fulton, Georgia, US",1063937
-84013123,US,USA,840,13123,Gilmer,Georgia,US,34.69316688,-84.45802506,"Gilmer, Georgia, US",31369
-84013125,US,USA,840,13125,Glascock,Georgia,US,33.22879932,-82.61297636,"Glascock, Georgia, US",2971
-84013127,US,USA,840,13127,Glynn,Georgia,US,31.23279254,-81.53811412,"Glynn, Georgia, US",85292
-84013129,US,USA,840,13129,Gordon,Georgia,US,34.50487351,-84.87296253,"Gordon, Georgia, US",57963
-84013131,US,USA,840,13131,Grady,Georgia,US,30.87454847,-84.23418364,"Grady, Georgia, US",24633
-84013133,US,USA,840,13133,Greene,Georgia,US,33.5769205,-83.17139104,"Greene, Georgia, US",18324
-84013135,US,USA,840,13135,Gwinnett,Georgia,US,33.96044201,-84.02137802,"Gwinnett, Georgia, US",936250
-84013137,US,USA,840,13137,Habersham,Georgia,US,34.63331566,-83.53094677,"Habersham, Georgia, US",45328
-84013139,US,USA,840,13139,Hall,Georgia,US,34.32207823,-83.81896936,"Hall, Georgia, US",204441
-84013141,US,USA,840,13141,Hancock,Georgia,US,33.2721566,-82.99766919,"Hancock, Georgia, US",8457
-84013143,US,USA,840,13143,Haralson,Georgia,US,33.79602175,-85.21005667,"Haralson, Georgia, US",29792
-84013145,US,USA,840,13145,Harris,Georgia,US,32.73709786,-84.90538572,"Harris, Georgia, US",35236
-84013147,US,USA,840,13147,Hart,Georgia,US,34.34626973,-82.96567682,"Hart, Georgia, US",26205
-84013149,US,USA,840,13149,Heard,Georgia,US,33.29686567,-85.12886832,"Heard, Georgia, US",11923
-84013151,US,USA,840,13151,Henry,Georgia,US,33.4533428,-84.1481466,"Henry, Georgia, US",234561
-84013153,US,USA,840,13153,Houston,Georgia,US,32.45802497,-83.66879087,"Houston, Georgia, US",157863
-84013155,US,USA,840,13155,Irwin,Georgia,US,31.60213036,-83.27501387,"Irwin, Georgia, US",9416
-84013157,US,USA,840,13157,Jackson,Georgia,US,34.13794553,-83.56814788,"Jackson, Georgia, US",72977
-84013159,US,USA,840,13159,Jasper,Georgia,US,33.31535543,-83.68844964,"Jasper, Georgia, US",14219
-84013161,US,USA,840,13161,Jeff Davis,Georgia,US,31.80405727,-82.6372487,"Jeff Davis, Georgia, US",15115
-84013163,US,USA,840,13163,Jefferson,Georgia,US,33.05867328,-82.41609057,"Jefferson, Georgia, US",15362
-84013165,US,USA,840,13165,Jenkins,Georgia,US,32.79248718,-81.96040187,"Jenkins, Georgia, US",8676
-84013167,US,USA,840,13167,Johnson,Georgia,US,32.70211082,-82.66166794,"Johnson, Georgia, US",9643
-84013169,US,USA,840,13169,Jones,Georgia,US,33.02512137,-83.56019163,"Jones, Georgia, US",28735
-84013171,US,USA,840,13171,Lamar,Georgia,US,33.07841647,-84.14263877,"Lamar, Georgia, US",19077
-84013173,US,USA,840,13173,Lanier,Georgia,US,31.0382857,-83.06472457,"Lanier, Georgia, US",10423
-84013175,US,USA,840,13175,Laurens,Georgia,US,32.46325233,-82.92221316,"Laurens, Georgia, US",47546
-84013177,US,USA,840,13177,Lee,Georgia,US,31.7793306,-84.14324253,"Lee, Georgia, US",29992
-84013179,US,USA,840,13179,Liberty,Georgia,US,31.82588896,-81.49251135,"Liberty, Georgia, US",61435
-84013181,US,USA,840,13181,Lincoln,Georgia,US,33.79201475,-82.45024131,"Lincoln, Georgia, US",7921
-84013183,US,USA,840,13183,Long,Georgia,US,31.75218791,-81.74952375,"Long, Georgia, US",19559
-84013185,US,USA,840,13185,Lowndes,Georgia,US,30.83568832,-83.27056716,"Lowndes, Georgia, US",117406
-84013187,US,USA,840,13187,Lumpkin,Georgia,US,34.57286511,-84.00425681,"Lumpkin, Georgia, US",33610
-84013189,US,USA,840,13189,McDuffie,Georgia,US,33.47851918,-82.48252774,"McDuffie, Georgia, US",21312
-84013191,US,USA,840,13191,McIntosh,Georgia,US,31.49683595,-81.40163426,"McIntosh, Georgia, US",14378
-84013193,US,USA,840,13193,Macon,Georgia,US,32.35207048,-84.04234127,"Macon, Georgia, US",12947
-84013195,US,USA,840,13195,Madison,Georgia,US,34.12920917,-83.21218732,"Madison, Georgia, US",29880
-84013197,US,USA,840,13197,Marion,Georgia,US,32.3483402,-84.52733571,"Marion, Georgia, US",8359
-84013199,US,USA,840,13199,Meriwether,Georgia,US,33.04163534,-84.68859732,"Meriwether, Georgia, US",21167
-84013201,US,USA,840,13201,Miller,Georgia,US,31.16568912,-84.73151117,"Miller, Georgia, US",5718
-84013205,US,USA,840,13205,Mitchell,Georgia,US,31.22483255,-84.19381821,"Mitchell, Georgia, US",21863
-84013207,US,USA,840,13207,Monroe,Georgia,US,33.014289,-83.92097166,"Monroe, Georgia, US",27578
-84013209,US,USA,840,13209,Montgomery,Georgia,US,32.17201038,-82.53527476,"Montgomery, Georgia, US",9172
-84013211,US,USA,840,13211,Morgan,Georgia,US,33.59232073,-83.49129491,"Morgan, Georgia, US",19276
-84013213,US,USA,840,13213,Murray,Georgia,US,34.78897608,-84.74993177,"Murray, Georgia, US",40096
-84013215,US,USA,840,13215,Muscogee,Georgia,US,32.50931999,-84.87142262,"Muscogee, Georgia, US",195769
-84013217,US,USA,840,13217,Newton,Georgia,US,33.55514538,-83.8454714,"Newton, Georgia, US",111744
-84013219,US,USA,840,13219,Oconee,Georgia,US,33.83749973,-83.43679568,"Oconee, Georgia, US",40280
-84013221,US,USA,840,13221,Oglethorpe,Georgia,US,33.8786296,-83.08278123,"Oglethorpe, Georgia, US",15259
-84013223,US,USA,840,13223,Paulding,Georgia,US,33.91969522,-84.86848792,"Paulding, Georgia, US",168667
-84013225,US,USA,840,13225,Peach,Georgia,US,32.56934316,-83.82937,"Peach, Georgia, US",27546
-84013227,US,USA,840,13227,Pickens,Georgia,US,34.46589159,-84.46406611,"Pickens, Georgia, US",32591
-84013229,US,USA,840,13229,Pierce,Georgia,US,31.35928155,-82.21598442,"Pierce, Georgia, US",19465
-84013231,US,USA,840,13231,Pike,Georgia,US,33.09310242,-84.38790389,"Pike, Georgia, US",18962
-84013233,US,USA,840,13233,Polk,Georgia,US,34.00267074,-85.18677781,"Polk, Georgia, US",42613
-84013235,US,USA,840,13235,Pulaski,Georgia,US,32.23334561,-83.4754996,"Pulaski, Georgia, US",11137
-84013237,US,USA,840,13237,Putnam,Georgia,US,33.32056115,-83.37552891,"Putnam, Georgia, US",22119
-84013239,US,USA,840,13239,Quitman,Georgia,US,31.86728114,-85.01773177,"Quitman, Georgia, US",2299
-84013241,US,USA,840,13241,Rabun,Georgia,US,34.88389445,-83.40304637,"Rabun, Georgia, US",17137
-84013243,US,USA,840,13243,Randolph,Georgia,US,31.76622818,-84.75732369,"Randolph, Georgia, US",6778
-84013245,US,USA,840,13245,Richmond,Georgia,US,33.35777107,-82.07026432,"Richmond, Georgia, US",202518
-84013247,US,USA,840,13247,Rockdale,Georgia,US,33.65145002,-84.02202167,"Rockdale, Georgia, US",90896
-84013249,US,USA,840,13249,Schley,Georgia,US,32.2654021,-84.31258912,"Schley, Georgia, US",5257
-84013251,US,USA,840,13251,Screven,Georgia,US,32.74976524,-81.60779441,"Screven, Georgia, US",13966
-84013253,US,USA,840,13253,Seminole,Georgia,US,30.93464824,-84.86823924,"Seminole, Georgia, US",8090
-84013255,US,USA,840,13255,Spalding,Georgia,US,33.26310031,-84.28013991,"Spalding, Georgia, US",66703
-84013257,US,USA,840,13257,Stephens,Georgia,US,34.55151201,-83.29405315,"Stephens, Georgia, US",25925
-84013259,US,USA,840,13259,Stewart,Georgia,US,32.07996777,-84.83208037,"Stewart, Georgia, US",6621
-84013261,US,USA,840,13261,Sumter,Georgia,US,32.03650571,-84.19821492,"Sumter, Georgia, US",29524
-84013263,US,USA,840,13263,Talbot,Georgia,US,32.69642758,-84.53351366,"Talbot, Georgia, US",6195
-84013265,US,USA,840,13265,Taliaferro,Georgia,US,33.56543317,-82.88136816,"Taliaferro, Georgia, US",1537
-84013267,US,USA,840,13267,Tattnall,Georgia,US,32.04785085,-82.05539188,"Tattnall, Georgia, US",25286
-84013269,US,USA,840,13269,Taylor,Georgia,US,32.55792548,-84.25077141,"Taylor, Georgia, US",8020
-84013271,US,USA,840,13271,Telfair,Georgia,US,31.92829517,-82.93491155,"Telfair, Georgia, US",15860
-84013273,US,USA,840,13273,Terrell,Georgia,US,31.77527543,-84.44069698,"Terrell, Georgia, US",8531
-84013275,US,USA,840,13275,Thomas,Georgia,US,30.86392347,-83.91847289,"Thomas, Georgia, US",44451
-84013277,US,USA,840,13277,Tift,Georgia,US,31.45743864,-83.5236119,"Tift, Georgia, US",40644
-84013279,US,USA,840,13279,Toombs,Georgia,US,32.12059861,-82.32957247,"Toombs, Georgia, US",26830
-84013281,US,USA,840,13281,Towns,Georgia,US,34.91369188,-83.7410746,"Towns, Georgia, US",12037
-84013283,US,USA,840,13283,Treutlen,Georgia,US,32.40422134,-82.56904553,"Treutlen, Georgia, US",6901
-84013285,US,USA,840,13285,Troup,Georgia,US,33.03349196,-85.02812115,"Troup, Georgia, US",69922
-84013287,US,USA,840,13287,Turner,Georgia,US,31.71612656,-83.62069378,"Turner, Georgia, US",7985
-84013289,US,USA,840,13289,Twiggs,Georgia,US,32.67435595,-83.43078662,"Twiggs, Georgia, US",8120
-84013291,US,USA,840,13291,Union,Georgia,US,34.82995757,-83.98967069,"Union, Georgia, US",24511
-84013293,US,USA,840,13293,Upson,Georgia,US,32.87920671,-84.30024826,"Upson, Georgia, US",26320
-84013295,US,USA,840,13295,Walker,Georgia,US,34.73376362,-85.30165174,"Walker, Georgia, US",69761
-84013297,US,USA,840,13297,Walton,Georgia,US,33.78017694,-83.73552314,"Walton, Georgia, US",94593
-84013299,US,USA,840,13299,Ware,Georgia,US,31.05449097,-82.42224148,"Ware, Georgia, US",35734
-84013301,US,USA,840,13301,Warren,Georgia,US,33.41146451,-82.67795848,"Warren, Georgia, US",5254
-84013303,US,USA,840,13303,Washington,Georgia,US,32.96711864,-82.79357039,"Washington, Georgia, US",20374
-84013305,US,USA,840,13305,Wayne,Georgia,US,31.5521809,-81.91894878,"Wayne, Georgia, US",29927
-84013307,US,USA,840,13307,Webster,Georgia,US,32.04066113,-84.54742852,"Webster, Georgia, US",2607
-84013309,US,USA,840,13309,Wheeler,Georgia,US,32.12009104,-82.72574721,"Wheeler, Georgia, US",7855
-84013311,US,USA,840,13311,White,Georgia,US,34.64624278,-83.74905525,"White, Georgia, US",30798
-84013313,US,USA,840,13313,Whitfield,Georgia,US,34.80987459,-84.96093476,"Whitfield, Georgia, US",104628
-84013315,US,USA,840,13315,Wilcox,Georgia,US,31.97496928,-83.43438555,"Wilcox, Georgia, US",8635
-84013317,US,USA,840,13317,Wilkes,Georgia,US,33.78290391,-82.74286107,"Wilkes, Georgia, US",9777
-84013319,US,USA,840,13319,Wilkinson,Georgia,US,32.80291082,-83.17140684,"Wilkinson, Georgia, US",8954
-84013321,US,USA,840,13321,Worth,Georgia,US,31.55162306,-83.85090513,"Worth, Georgia, US",20247
-84015001,US,USA,840,15001,Hawaii,Hawaii,US,19.60121157,-155.5210167,"Hawaii, Hawaii, US",201513
-84015003,US,USA,840,15003,Honolulu,Hawaii,US,21.45803166,-157.9712182,"Honolulu, Hawaii, US",974563
-84015005,US,USA,840,15005,Kalawao,Hawaii,US,21.17882515,-156.9583592,"Kalawao, Hawaii, US",86
-84015007,US,USA,840,15007,Kauai,Hawaii,US,22.03935037,-159.5966786,"Kauai, Hawaii, US",72293
-84015009,US,USA,840,15009,Maui,Hawaii,US,20.86399628,-156.5689097,"Maui, Hawaii, US",167417
-84016001,US,USA,840,16001,Ada,Idaho,US,43.4526575,-116.2415516,"Ada, Idaho, US",481587
-84016003,US,USA,840,16003,Adams,Idaho,US,44.89333571,-116.4545247,"Adams, Idaho, US",4294
-84016005,US,USA,840,16005,Bannock,Idaho,US,42.67002716,-112.2233311,"Bannock, Idaho, US",87808
-84016007,US,USA,840,16007,Bear Lake,Idaho,US,42.28269683,-111.3289238,"Bear Lake, Idaho, US",6125
-84016009,US,USA,840,16009,Benewah,Idaho,US,47.21754179,-116.6586851,"Benewah, Idaho, US",9298
-84016011,US,USA,840,16011,Bingham,Idaho,US,43.2167288,-112.3978437,"Bingham, Idaho, US",46811
-84016013,US,USA,840,16013,Blaine,Idaho,US,43.4085812,-113.9752658,"Blaine, Idaho, US",23021
-84016015,US,USA,840,16015,Boise,Idaho,US,43.98829931,-115.7309284,"Boise, Idaho, US",7831
-84016017,US,USA,840,16017,Bonner,Idaho,US,48.29996017,-116.6017932,"Bonner, Idaho, US",45739
-84016019,US,USA,840,16019,Bonneville,Idaho,US,43.38713372,-111.6161537,"Bonneville, Idaho, US",119062
-84016021,US,USA,840,16021,Boundary,Idaho,US,48.76684761,-116.4630179,"Boundary, Idaho, US",12245
-84016023,US,USA,840,16023,Butte,Idaho,US,43.72592209,-113.1735463,"Butte, Idaho, US",2597
-84016025,US,USA,840,16025,Camas,Idaho,US,43.46665742,-114.8065892,"Camas, Idaho, US",1106
-84016027,US,USA,840,16027,Canyon,Idaho,US,43.61970148,-116.7095499,"Canyon, Idaho, US",229849
-84016029,US,USA,840,16029,Caribou,Idaho,US,42.77149116,-111.5597683,"Caribou, Idaho, US",7155
-84016031,US,USA,840,16031,Cassia,Idaho,US,42.28347888,-113.6012409,"Cassia, Idaho, US",24030
-84016033,US,USA,840,16033,Clark,Idaho,US,44.28496071,-112.3505704,"Clark, Idaho, US",845
-84016035,US,USA,840,16035,Clearwater,Idaho,US,46.67459924,-115.6622393,"Clearwater, Idaho, US",8756
-84016037,US,USA,840,16037,Custer,Idaho,US,44.24186819,-114.2855494,"Custer, Idaho, US",4315
-84016039,US,USA,840,16039,Elmore,Idaho,US,43.3507101,-115.4701578,"Elmore, Idaho, US",27511
-84016041,US,USA,840,16041,Franklin,Idaho,US,42.18332217,-111.8149666,"Franklin, Idaho, US",13876
-84016043,US,USA,840,16043,Fremont,Idaho,US,44.22800938,-111.4809943,"Fremont, Idaho, US",13099
-84016045,US,USA,840,16045,Gem,Idaho,US,44.06482372,-116.398376,"Gem, Idaho, US",18112
-84016047,US,USA,840,16047,Gooding,Idaho,US,42.96927962,-114.8108306,"Gooding, Idaho, US",15179
-84016049,US,USA,840,16049,Idaho,Idaho,US,45.84721541,-115.4634436,"Idaho, Idaho, US",16667
-84016051,US,USA,840,16051,Jefferson,Idaho,US,43.82078483,-112.3131749,"Jefferson, Idaho, US",29871
-84016053,US,USA,840,16053,Jerome,Idaho,US,42.68891267,-114.2655033,"Jerome, Idaho, US",24412
-84016055,US,USA,840,16055,Kootenai,Idaho,US,47.67282258,-116.7020872,"Kootenai, Idaho, US",165697
-84016057,US,USA,840,16057,Latah,Idaho,US,46.81587887,-116.7113698,"Latah, Idaho, US",40108
-84016059,US,USA,840,16059,Lemhi,Idaho,US,44.9438088,-113.9309747,"Lemhi, Idaho, US",8027
-84016061,US,USA,840,16061,Lewis,Idaho,US,46.23315327,-116.434146,"Lewis, Idaho, US",3838
-84016063,US,USA,840,16063,Lincoln,Idaho,US,43.0012336,-114.1358773,"Lincoln, Idaho, US",5366
-84016065,US,USA,840,16065,Madison,Idaho,US,43.78141028,-111.6538474,"Madison, Idaho, US",39907
-84016067,US,USA,840,16067,Minidoka,Idaho,US,42.85518524,-113.6357257,"Minidoka, Idaho, US",21039
-84016069,US,USA,840,16069,Nez Perce,Idaho,US,46.32638236,-116.7500975,"Nez Perce, Idaho, US",40408
-84016071,US,USA,840,16071,Oneida,Idaho,US,42.1949428,-112.5407838,"Oneida, Idaho, US",4531
-84016073,US,USA,840,16073,Owyhee,Idaho,US,42.58016894,-116.1693871,"Owyhee, Idaho, US",11823
-84016075,US,USA,840,16075,Payette,Idaho,US,44.00545243,-116.7647695,"Payette, Idaho, US",23951
-84016077,US,USA,840,16077,Power,Idaho,US,42.69254894,-112.8395742,"Power, Idaho, US",7681
-84016079,US,USA,840,16079,Shoshone,Idaho,US,47.35364087,-115.8916749,"Shoshone, Idaho, US",12882
-84016081,US,USA,840,16081,Teton,Idaho,US,43.75303583,-111.2056773,"Teton, Idaho, US",12142
-84016083,US,USA,840,16083,Twin Falls,Idaho,US,42.35440512,-114.6685381,"Twin Falls, Idaho, US",86878
-84016085,US,USA,840,16085,Valley,Idaho,US,44.76728382,-115.5676773,"Valley, Idaho, US",11392
-84016087,US,USA,840,16087,Washington,Idaho,US,44.45275475,-116.7847688,"Washington, Idaho, US",10194
-84017001,US,USA,840,17001,Adams,Illinois,US,39.98815591,-91.18786813,"Adams, Illinois, US",65435
-84017003,US,USA,840,17003,Alexander,Illinois,US,37.18049267,-89.32910838,"Alexander, Illinois, US",5761
-84017005,US,USA,840,17005,Bond,Illinois,US,38.88829622,-89.43534887,"Bond, Illinois, US",16426
-84017007,US,USA,840,17007,Boone,Illinois,US,42.32359279,-88.82345779,"Boone, Illinois, US",53544
-84017009,US,USA,840,17009,Brown,Illinois,US,39.96209138,-90.75068024,"Brown, Illinois, US",6578
-84017011,US,USA,840,17011,Bureau,Illinois,US,41.40385234,-89.5283051,"Bureau, Illinois, US",32628
-84017013,US,USA,840,17013,Calhoun,Illinois,US,39.16840183,-90.66330078,"Calhoun, Illinois, US",4739
-84017015,US,USA,840,17015,Carroll,Illinois,US,42.06823429,-89.93395545,"Carroll, Illinois, US",14305
-84017017,US,USA,840,17017,Cass,Illinois,US,39.96991073,-90.24734436,"Cass, Illinois, US",12147
-84017019,US,USA,840,17019,Champaign,Illinois,US,40.13919438,-88.20046615,"Champaign, Illinois, US",209689
-84017021,US,USA,840,17021,Christian,Illinois,US,39.54581621,-89.27780482,"Christian, Illinois, US",32304
-84017023,US,USA,840,17023,Clark,Illinois,US,39.33425789,-87.78705622,"Clark, Illinois, US",15441
-84017025,US,USA,840,17025,Clay,Illinois,US,38.75388572,-88.48914513,"Clay, Illinois, US",13184
-84017027,US,USA,840,17027,Clinton,Illinois,US,38.60704876,-89.42385254,"Clinton, Illinois, US",37562
-84017029,US,USA,840,17029,Coles,Illinois,US,39.51949084,-88.22358557,"Coles, Illinois, US",50621
-84017031,US,USA,840,17031,Cook,Illinois,US,41.84144849,-87.81658794,"Cook, Illinois, US",5150233
-84017033,US,USA,840,17033,Crawford,Illinois,US,39.0032229,-87.75954624,"Crawford, Illinois, US",18667
-84017035,US,USA,840,17035,Cumberland,Illinois,US,39.27432424,-88.2401158,"Cumberland, Illinois, US",10766
-84017037,US,USA,840,17037,DeKalb,Illinois,US,41.89373302,-88.76958483,"DeKalb, Illinois, US",104897
-84017039,US,USA,840,17039,De Witt,Illinois,US,40.17514519,-88.90959682,"De Witt, Illinois, US",15638
-84017041,US,USA,840,17041,Douglas,Illinois,US,39.76768052,-88.21854195,"Douglas, Illinois, US",19465
-84017043,US,USA,840,17043,DuPage,Illinois,US,41.85116968,-88.08642662,"DuPage, Illinois, US",922921
-84017045,US,USA,840,17045,Edgar,Illinois,US,39.6809186,-87.74759563,"Edgar, Illinois, US",17161
-84017047,US,USA,840,17047,Edwards,Illinois,US,38.41353228,-88.05720863,"Edwards, Illinois, US",6395
-84017049,US,USA,840,17049,Effingham,Illinois,US,39.05935711,-88.58969584,"Effingham, Illinois, US",34008
-84017051,US,USA,840,17051,Fayette,Illinois,US,39.00072038,-89.02452658,"Fayette, Illinois, US",21336
-84017053,US,USA,840,17053,Ford,Illinois,US,40.59706922,-88.22350769,"Ford, Illinois, US",12961
-84017055,US,USA,840,17055,Franklin,Illinois,US,37.99189086,-88.92567818,"Franklin, Illinois, US",38469
-84017057,US,USA,840,17057,Fulton,Illinois,US,40.47289135,-90.20862357,"Fulton, Illinois, US",34340
-84017059,US,USA,840,17059,Gallatin,Illinois,US,37.76430935,-88.22953869,"Gallatin, Illinois, US",4828
-84017061,US,USA,840,17061,Greene,Illinois,US,39.35907414,-90.388865,"Greene, Illinois, US",12969
-84017063,US,USA,840,17063,Grundy,Illinois,US,41.28569601,-88.41905692,"Grundy, Illinois, US",51054
-84017065,US,USA,840,17065,Hamilton,Illinois,US,38.08163641,-88.53883373,"Hamilton, Illinois, US",8116
-84017067,US,USA,840,17067,Hancock,Illinois,US,40.40423981,-91.16313899,"Hancock, Illinois, US",17708
-84017069,US,USA,840,17069,Hardin,Illinois,US,37.51810645,-88.26873022,"Hardin, Illinois, US",3821
-84017071,US,USA,840,17071,Henderson,Illinois,US,40.81908672,-90.92491462,"Henderson, Illinois, US",6646
-84017073,US,USA,840,17073,Henry,Illinois,US,41.3533994,-90.13296166,"Henry, Illinois, US",48913
-84017075,US,USA,840,17075,Iroquois,Illinois,US,40.74717633,-87.82466784,"Iroquois, Illinois, US",27114
-84017077,US,USA,840,17077,Jackson,Illinois,US,37.78595185,-89.38232563,"Jackson, Illinois, US",56750
-84017079,US,USA,840,17079,Jasper,Illinois,US,39.01054275,-88.15437049,"Jasper, Illinois, US",9610
-84017081,US,USA,840,17081,Jefferson,Illinois,US,38.29980057,-88.9240025,"Jefferson, Illinois, US",37684
-84017083,US,USA,840,17083,Jersey,Illinois,US,39.08869046,-90.35393073,"Jersey, Illinois, US",21773
-84017085,US,USA,840,17085,Jo Daviess,Illinois,US,42.36542373,-90.21094405,"Jo Daviess, Illinois, US",21235
-84017087,US,USA,840,17087,Johnson,Illinois,US,37.45939802,-88.88165419,"Johnson, Illinois, US",12417
-84017089,US,USA,840,17089,Kane,Illinois,US,41.93842729,-88.42861412,"Kane, Illinois, US",532403
-84017091,US,USA,840,17091,Kankakee,Illinois,US,41.13746989,-87.86205334,"Kankakee, Illinois, US",109862
-84017093,US,USA,840,17093,Kendall,Illinois,US,41.59081014,-88.42869583,"Kendall, Illinois, US",128990
-84017095,US,USA,840,17095,Knox,Illinois,US,40.93148779,-90.2133034,"Knox, Illinois, US",49699
-84017097,US,USA,840,17097,Lake,Illinois,US,42.3224907,-88.00367925,"Lake, Illinois, US",696535
-84017099,US,USA,840,17099,LaSalle,Illinois,US,41.3442613,-88.88633881,"LaSalle, Illinois, US",108669
-84017101,US,USA,840,17101,Lawrence,Illinois,US,38.71987914,-87.72884035,"Lawrence, Illinois, US",15678
-84017103,US,USA,840,17103,Lee,Illinois,US,41.74583951,-89.29977132,"Lee, Illinois, US",34096
-84017105,US,USA,840,17105,Livingston,Illinois,US,40.89188292,-88.55784752,"Livingston, Illinois, US",35648
-84017107,US,USA,840,17107,Logan,Illinois,US,40.12581572,-89.36638784,"Logan, Illinois, US",28618
-84017109,US,USA,840,17109,McDonough,Illinois,US,40.45674722,-90.67775541,"McDonough, Illinois, US",29682
-84017111,US,USA,840,17111,McHenry,Illinois,US,42.32451172,-88.45248227,"McHenry, Illinois, US",307774
-84017113,US,USA,840,17113,McLean,Illinois,US,40.48996987,-88.84621113,"McLean, Illinois, US",171517
-84017115,US,USA,840,17115,Macon,Illinois,US,39.86064913,-88.96342505,"Macon, Illinois, US",104009
-84017117,US,USA,840,17117,Macoupin,Illinois,US,39.26119767,-89.92424028,"Macoupin, Illinois, US",44926
-84017119,US,USA,840,17119,Madison,Illinois,US,38.83042506,-89.90422563,"Madison, Illinois, US",262966
-84017121,US,USA,840,17121,Marion,Illinois,US,38.64963204,-88.91899208,"Marion, Illinois, US",37205
-84017123,US,USA,840,17123,Marshall,Illinois,US,41.0327901,-89.34510444,"Marshall, Illinois, US",11438
-84017125,US,USA,840,17125,Mason,Illinois,US,40.23917274,-89.91824452,"Mason, Illinois, US",13359
-84017127,US,USA,840,17127,Massac,Illinois,US,37.22078441,-88.71036614,"Massac, Illinois, US",13772
-84017129,US,USA,840,17129,Menard,Illinois,US,40.02742725,-89.80246001,"Menard, Illinois, US",12196
-84017131,US,USA,840,17131,Mercer,Illinois,US,41.20596782,-90.74290052,"Mercer, Illinois, US",15437
-84017133,US,USA,840,17133,Monroe,Illinois,US,38.27594376,-90.17761038,"Monroe, Illinois, US",34637
-84017135,US,USA,840,17135,Montgomery,Illinois,US,39.23198845,-89.47809254,"Montgomery, Illinois, US",28414
-84017137,US,USA,840,17137,Morgan,Illinois,US,39.71654544,-90.20255104,"Morgan, Illinois, US",33658
-84017139,US,USA,840,17139,Moultrie,Illinois,US,39.64187451,-88.62099969,"Moultrie, Illinois, US",14501
-84017141,US,USA,840,17141,Ogle,Illinois,US,42.04165196,-89.32184679,"Ogle, Illinois, US",50643
-84017143,US,USA,840,17143,Peoria,Illinois,US,40.78702156,-89.76078901,"Peoria, Illinois, US",179179
-84017145,US,USA,840,17145,Perry,Illinois,US,38.08510853,-89.36856219,"Perry, Illinois, US",20916
-84017147,US,USA,840,17147,Piatt,Illinois,US,40.01360584,-88.59319339,"Piatt, Illinois, US",16344
-84017149,US,USA,840,17149,Pike,Illinois,US,39.62265059,-90.8877017,"Pike, Illinois, US",15561
-84017151,US,USA,840,17151,Pope,Illinois,US,37.41391284,-88.56152109,"Pope, Illinois, US",4177
-84017153,US,USA,840,17153,Pulaski,Illinois,US,37.22631423,-89.13085001,"Pulaski, Illinois, US",5335
-84017155,US,USA,840,17155,Putnam,Illinois,US,41.2013541,-89.2869272,"Putnam, Illinois, US",5739
-84017157,US,USA,840,17157,Randolph,Illinois,US,38.05095369,-89.82512254,"Randolph, Illinois, US",31782
-84017159,US,USA,840,17159,Richland,Illinois,US,38.71240969,-88.08475366,"Richland, Illinois, US",15513
-84017161,US,USA,840,17161,Rock Island,Illinois,US,41.46613806,-90.57042164,"Rock Island, Illinois, US",141879
-84017163,US,USA,840,17163,St. Clair,Illinois,US,38.46996033,-89.93063427,"St. Clair, Illinois, US",259686
-84017165,US,USA,840,17165,Saline,Illinois,US,37.75332999,-88.54119706,"Saline, Illinois, US",23491
-84017167,US,USA,840,17167,Sangamon,Illinois,US,39.75836914,-89.65872023,"Sangamon, Illinois, US",194672
-84017169,US,USA,840,17169,Schuyler,Illinois,US,40.1571798,-90.61114163,"Schuyler, Illinois, US",6768
-84017171,US,USA,840,17171,Scott,Illinois,US,39.6429169,-90.47814431,"Scott, Illinois, US",4951
-84017173,US,USA,840,17173,Shelby,Illinois,US,39.39133527,-88.80611122,"Shelby, Illinois, US",21634
-84017175,US,USA,840,17175,Stark,Illinois,US,41.09309773,-89.79745866,"Stark, Illinois, US",5342
-84017177,US,USA,840,17177,Stephenson,Illinois,US,42.35129217,-89.662598,"Stephenson, Illinois, US",44498
-84017179,US,USA,840,17179,Tazewell,Illinois,US,40.50716185,-89.51404662,"Tazewell, Illinois, US",131803
-84017181,US,USA,840,17181,Union,Illinois,US,37.47119609,-89.25548938,"Union, Illinois, US",16653
-84017183,US,USA,840,17183,Vermilion,Illinois,US,40.18417171,-87.73384359,"Vermilion, Illinois, US",75758
-84017185,US,USA,840,17185,Wabash,Illinois,US,38.44272901,-87.84922065,"Wabash, Illinois, US",11520
-84017187,US,USA,840,17187,Warren,Illinois,US,40.84925021,-90.6147432,"Warren, Illinois, US",16844
-84017189,US,USA,840,17189,Washington,Illinois,US,38.35309213,-89.40982703,"Washington, Illinois, US",13887
-84017191,US,USA,840,17191,Wayne,Illinois,US,38.42955355,-88.42586459,"Wayne, Illinois, US",16215
-84017193,US,USA,840,17193,White,Illinois,US,38.08706198,-88.17657461,"White, Illinois, US",13537
-84017195,US,USA,840,17195,Whiteside,Illinois,US,41.75509713,-89.91556058,"Whiteside, Illinois, US",55175
-84017197,US,USA,840,17197,Will,Illinois,US,41.44619267,-87.97862712,"Will, Illinois, US",690743
-84017199,US,USA,840,17199,Williamson,Illinois,US,37.73033511,-88.92994027,"Williamson, Illinois, US",66597
-84017201,US,USA,840,17201,Winnebago,Illinois,US,42.33641854,-89.16085327,"Winnebago, Illinois, US",282572
-84017203,US,USA,840,17203,Woodford,Illinois,US,40.78579374,-89.20973757,"Woodford, Illinois, US",38459
-84018001,US,USA,840,18001,Adams,Indiana,US,40.7457653,-84.93671406,"Adams, Indiana, US",35777
-84018003,US,USA,840,18003,Allen,Indiana,US,41.09194313,-85.06800636,"Allen, Indiana, US",379299
-84018005,US,USA,840,18005,Bartholomew,Indiana,US,39.20744865,-85.89558181,"Bartholomew, Indiana, US",83779
-84018007,US,USA,840,18007,Benton,Indiana,US,40.60626947,-87.31093999,"Benton, Indiana, US",8748
-84018009,US,USA,840,18009,Blackford,Indiana,US,40.47388153,-85.32499702,"Blackford, Indiana, US",11758
-84018011,US,USA,840,18011,Boone,Indiana,US,40.0509304,-86.46841646,"Boone, Indiana, US",67843
-84018013,US,USA,840,18013,Brown,Indiana,US,39.19605589,-86.22868909,"Brown, Indiana, US",15092
-84018015,US,USA,840,18015,Carroll,Indiana,US,40.5807832,-86.56198812,"Carroll, Indiana, US",20257
-84018017,US,USA,840,18017,Cass,Indiana,US,40.76135835,-86.34830753,"Cass, Indiana, US",37689
-84018019,US,USA,840,18019,Clark,Indiana,US,38.48015445,-85.70510334,"Clark, Indiana, US",118302
-84018021,US,USA,840,18021,Clay,Indiana,US,39.39561833,-87.11723506,"Clay, Indiana, US",26225
-84018023,US,USA,840,18023,Clinton,Indiana,US,40.30319754,-86.47277257,"Clinton, Indiana, US",32399
-84018025,US,USA,840,18025,Crawford,Indiana,US,38.28814402,-86.44518825,"Crawford, Indiana, US",10577
-84018027,US,USA,840,18027,Daviess,Indiana,US,38.70186039,-87.07185406,"Daviess, Indiana, US",33351
-84018029,US,USA,840,18029,Dearborn,Indiana,US,39.14647946,-84.97333539,"Dearborn, Indiana, US",49458
-84018031,US,USA,840,18031,Decatur,Indiana,US,39.30712658,-85.50087166,"Decatur, Indiana, US",26559
-84018033,US,USA,840,18033,DeKalb,Indiana,US,41.39804622,-84.99906934,"DeKalb, Indiana, US",43475
-84018035,US,USA,840,18035,Delaware,Indiana,US,40.22787247,-85.39732772,"Delaware, Indiana, US",114135
-84018037,US,USA,840,18037,Dubois,Indiana,US,38.36597551,-86.8792417,"Dubois, Indiana, US",42736
-84018039,US,USA,840,18039,Elkhart,Indiana,US,41.59761169,-85.85875695,"Elkhart, Indiana, US",206341
-84018041,US,USA,840,18041,Fayette,Indiana,US,39.63684962,-85.17797541,"Fayette, Indiana, US",23102
-84018043,US,USA,840,18043,Floyd,Indiana,US,38.32117957,-85.90385377,"Floyd, Indiana, US",78522
-84018045,US,USA,840,18045,Fountain,Indiana,US,40.12361933,-87.24217689,"Fountain, Indiana, US",16346
-84018047,US,USA,840,18047,Franklin,Indiana,US,39.4142482,-85.06062647,"Franklin, Indiana, US",22758
-84018049,US,USA,840,18049,Fulton,Indiana,US,41.0469907,-86.26252745,"Fulton, Indiana, US",19974
-84018051,US,USA,840,18051,Gibson,Indiana,US,38.30393723,-87.58054938,"Gibson, Indiana, US",33659
-84018053,US,USA,840,18053,Grant,Indiana,US,40.51587228,-85.65468702,"Grant, Indiana, US",65769
-84018055,US,USA,840,18055,Greene,Indiana,US,39.03630547,-86.96223202,"Greene, Indiana, US",31922
-84018057,US,USA,840,18057,Hamilton,Indiana,US,40.07306535,-86.05244729,"Hamilton, Indiana, US",338011
-84018059,US,USA,840,18059,Hancock,Indiana,US,39.82304555,-85.77566351,"Hancock, Indiana, US",78168
-84018061,US,USA,840,18061,Harrison,Indiana,US,38.19467379,-86.10948271,"Harrison, Indiana, US",40515
-84018063,US,USA,840,18063,Hendricks,Indiana,US,39.76719009,-86.51037283,"Hendricks, Indiana, US",170311
-84018065,US,USA,840,18065,Henry,Indiana,US,39.93029017,-85.39625719,"Henry, Indiana, US",47972
-84018067,US,USA,840,18067,Howard,Indiana,US,40.48527731,-86.11351892,"Howard, Indiana, US",82544
-84018069,US,USA,840,18069,Huntington,Indiana,US,40.82907273,-85.48822092,"Huntington, Indiana, US",36520
-84018071,US,USA,840,18071,Jackson,Indiana,US,38.9091582,-86.03851889,"Jackson, Indiana, US",44231
-84018073,US,USA,840,18073,Jasper,Indiana,US,41.02078733,-87.11553319,"Jasper, Indiana, US",33562
-84018075,US,USA,840,18075,Jay,Indiana,US,40.43781032,-85.00576229,"Jay, Indiana, US",20436
-84018077,US,USA,840,18077,Jefferson,Indiana,US,38.78576239,-85.43633383,"Jefferson, Indiana, US",32308
-84018079,US,USA,840,18079,Jennings,Indiana,US,38.99588883,-85.62710784,"Jennings, Indiana, US",27735
-84018081,US,USA,840,18081,Johnson,Indiana,US,39.48994426,-86.10149107,"Johnson, Indiana, US",158167
-84018083,US,USA,840,18083,Knox,Indiana,US,38.68861576,-87.4194665,"Knox, Indiana, US",36594
-84018085,US,USA,840,18085,Kosciusko,Indiana,US,41.24521668,-85.86312322,"Kosciusko, Indiana, US",79456
-84018087,US,USA,840,18087,LaGrange,Indiana,US,41.64232188,-85.42674232,"LaGrange, Indiana, US",39614
-84018089,US,USA,840,18089,Lake,Indiana,US,41.41874274,-87.38277575,"Lake, Indiana, US",485493
-84018091,US,USA,840,18091,LaPorte,Indiana,US,41.54366008,-86.74072188,"LaPorte, Indiana, US",109888
-84018093,US,USA,840,18093,Lawrence,Indiana,US,38.84112637,-86.48361629,"Lawrence, Indiana, US",45370
-84018095,US,USA,840,18095,Madison,Indiana,US,40.16143691,-85.71964711,"Madison, Indiana, US",129569
-84018097,US,USA,840,18097,Marion,Indiana,US,39.78163624,-86.13826325,"Marion, Indiana, US",964582
-84018099,US,USA,840,18099,Marshall,Indiana,US,41.32467367,-86.26185087,"Marshall, Indiana, US",46258
-84018101,US,USA,840,18101,Martin,Indiana,US,38.7099921,-86.80373186,"Martin, Indiana, US",10255
-84018103,US,USA,840,18103,Miami,Indiana,US,40.76940965,-86.04525048,"Miami, Indiana, US",35516
-84018105,US,USA,840,18105,Monroe,Indiana,US,39.16130004,-86.52414358,"Monroe, Indiana, US",148431
-84018107,US,USA,840,18107,Montgomery,Indiana,US,40.04034823,-86.89335024,"Montgomery, Indiana, US",38338
-84018109,US,USA,840,18109,Morgan,Indiana,US,39.47899078,-86.44573375,"Morgan, Indiana, US",70489
-84018111,US,USA,840,18111,Newton,Indiana,US,40.95610449,-87.39635768,"Newton, Indiana, US",13984
-84018113,US,USA,840,18113,Noble,Indiana,US,41.39672484,-85.41966713,"Noble, Indiana, US",47744
-84018115,US,USA,840,18115,Ohio,Indiana,US,38.955305,-84.96515993,"Ohio, Indiana, US",5875
-84018117,US,USA,840,18117,Orange,Indiana,US,38.5411892,-86.49523093,"Orange, Indiana, US",19646
-84018119,US,USA,840,18119,Owen,Indiana,US,39.31145587,-86.83900724,"Owen, Indiana, US",20799
-84018121,US,USA,840,18121,Parke,Indiana,US,39.77202286,-87.20375833,"Parke, Indiana, US",16937
-84018123,US,USA,840,18123,Perry,Indiana,US,38.07809328,-86.63741946,"Perry, Indiana, US",19169
-84018125,US,USA,840,18125,Pike,Indiana,US,38.40112197,-87.23574907,"Pike, Indiana, US",12389
-84018127,US,USA,840,18127,Porter,Indiana,US,41.45986947,-87.06848888,"Porter, Indiana, US",170389
-84018129,US,USA,840,18129,Posey,Indiana,US,38.02097333,-87.86480429,"Posey, Indiana, US",25427
-84018131,US,USA,840,18131,Pulaski,Indiana,US,41.04166107,-86.69890683,"Pulaski, Indiana, US",12353
-84018133,US,USA,840,18133,Putnam,Indiana,US,39.66437981,-86.84517605,"Putnam, Indiana, US",37576
-84018135,US,USA,840,18135,Randolph,Indiana,US,40.15734772,-85.01139319,"Randolph, Indiana, US",24665
-84018137,US,USA,840,18137,Ripley,Indiana,US,39.10235626,-85.26212744,"Ripley, Indiana, US",28324
-84018139,US,USA,840,18139,Rush,Indiana,US,39.62002287,-85.4655599,"Rush, Indiana, US",16581
-84018141,US,USA,840,18141,St. Joseph,Indiana,US,41.61756781,-86.29040834,"St. Joseph, Indiana, US",271826
-84018143,US,USA,840,18143,Scott,Indiana,US,38.68672078,-85.74627859,"Scott, Indiana, US",23873
-84018145,US,USA,840,18145,Shelby,Indiana,US,39.52305623,-85.7915857,"Shelby, Indiana, US",44729
-84018147,US,USA,840,18147,Spencer,Indiana,US,38.01519732,-87.0079644,"Spencer, Indiana, US",20277
-84018149,US,USA,840,18149,Starke,Indiana,US,41.27890281,-86.64686895,"Starke, Indiana, US",22995
-84018151,US,USA,840,18151,Steuben,Indiana,US,41.64423868,-85.00101094,"Steuben, Indiana, US",34594
-84018153,US,USA,840,18153,Sullivan,Indiana,US,39.08952258,-87.41414469,"Sullivan, Indiana, US",20669
-84018155,US,USA,840,18155,Switzerland,Indiana,US,38.82767338,-85.03022429,"Switzerland, Indiana, US",10751
-84018157,US,USA,840,18157,Tippecanoe,Indiana,US,40.38872739,-86.89413959,"Tippecanoe, Indiana, US",195732
-84018159,US,USA,840,18159,Tipton,Indiana,US,40.31123252,-86.05234925,"Tipton, Indiana, US",15148
-84018161,US,USA,840,18161,Union,Indiana,US,39.62550777,-84.92497066,"Union, Indiana, US",7054
-84018163,US,USA,840,18163,Vanderburgh,Indiana,US,38.02658833,-87.58763124,"Vanderburgh, Indiana, US",181451
-84018165,US,USA,840,18165,Vermillion,Indiana,US,39.8523352,-87.46160542,"Vermillion, Indiana, US",15498
-84018167,US,USA,840,18167,Vigo,Indiana,US,39.42944561,-87.39169027,"Vigo, Indiana, US",107038
-84018169,US,USA,840,18169,Wabash,Indiana,US,40.84704239,-85.79328272,"Wabash, Indiana, US",30996
-84018171,US,USA,840,18171,Warren,Indiana,US,40.34728141,-87.35602659,"Warren, Indiana, US",8265
-84018173,US,USA,840,18173,Warrick,Indiana,US,38.08922676,-87.2716085,"Warrick, Indiana, US",62998
-84018175,US,USA,840,18175,Washington,Indiana,US,38.60219804,-86.1049363,"Washington, Indiana, US",28036
-84018177,US,USA,840,18177,Wayne,Indiana,US,39.8633444,-85.01044989,"Wayne, Indiana, US",65884
-84018179,US,USA,840,18179,Wells,Indiana,US,40.72934187,-85.22132966,"Wells, Indiana, US",28296
-84018181,US,USA,840,18181,White,Indiana,US,40.74911165,-86.86492015,"White, Indiana, US",24102
-84018183,US,USA,840,18183,Whitley,Indiana,US,41.13863784,-85.50791236,"Whitley, Indiana, US",33964
-84019001,US,USA,840,19001,Adair,Iowa,US,41.33075609,-94.47105874,"Adair, Iowa, US",7152
-84019003,US,USA,840,19003,Adams,Iowa,US,41.02903567,-94.69932645,"Adams, Iowa, US",3602
-84019005,US,USA,840,19005,Allamakee,Iowa,US,43.28383218,-91.37860922,"Allamakee, Iowa, US",13687
-84019007,US,USA,840,19007,Appanoose,Iowa,US,40.74324454,-92.86865906,"Appanoose, Iowa, US",12426
-84019009,US,USA,840,19009,Audubon,Iowa,US,41.6844628,-94.90581859,"Audubon, Iowa, US",5496
-84019011,US,USA,840,19011,Benton,Iowa,US,42.08011739,-92.06463573,"Benton, Iowa, US",25645
-84019013,US,USA,840,19013,Black Hawk,Iowa,US,42.4704581,-92.30524729,"Black Hawk, Iowa, US",131228
-84019015,US,USA,840,19015,Boone,Iowa,US,42.03657094,-93.9313999,"Boone, Iowa, US",26234
-84019017,US,USA,840,19017,Bremer,Iowa,US,42.77461496,-92.31795937,"Bremer, Iowa, US",25062
-84019019,US,USA,840,19019,Buchanan,Iowa,US,42.4709188,-91.83510825,"Buchanan, Iowa, US",21175
-84019021,US,USA,840,19021,Buena Vista,Iowa,US,42.73545875,-95.15100162,"Buena Vista, Iowa, US",19620
-84019023,US,USA,840,19023,Butler,Iowa,US,42.73172833,-92.79015971,"Butler, Iowa, US",14439
-84019025,US,USA,840,19025,Calhoun,Iowa,US,42.38521079,-94.64046046,"Calhoun, Iowa, US",9668
-84019027,US,USA,840,19027,Carroll,Iowa,US,42.03617207,-94.86032705,"Carroll, Iowa, US",20165
-84019029,US,USA,840,19029,Cass,Iowa,US,41.33149454,-94.92792482,"Cass, Iowa, US",12836
-84019031,US,USA,840,19031,Cedar,Iowa,US,41.77233777,-91.13246684,"Cedar, Iowa, US",18627
-84019033,US,USA,840,19033,Cerro Gordo,Iowa,US,43.08177563,-93.2612239,"Cerro Gordo, Iowa, US",42450
-84019035,US,USA,840,19035,Cherokee,Iowa,US,42.73538914,-95.62389402,"Cherokee, Iowa, US",11235
-84019037,US,USA,840,19037,Chickasaw,Iowa,US,43.06001295,-92.31773347,"Chickasaw, Iowa, US",11933
-84019039,US,USA,840,19039,Clarke,Iowa,US,41.02868181,-93.78499767,"Clarke, Iowa, US",9395
-84019041,US,USA,840,19041,Clay,Iowa,US,43.08247182,-95.15096481,"Clay, Iowa, US",16016
-84019043,US,USA,840,19043,Clayton,Iowa,US,42.84443388,-91.34133693,"Clayton, Iowa, US",17549
-84019045,US,USA,840,19045,Clinton,Iowa,US,41.89981633,-90.53275096,"Clinton, Iowa, US",46429
-84019047,US,USA,840,19047,Crawford,Iowa,US,42.03718237,-95.3819718,"Crawford, Iowa, US",16820
-84019049,US,USA,840,19049,Dallas,Iowa,US,41.68560356,-94.04127625,"Dallas, Iowa, US",93453
-84019051,US,USA,840,19051,Davis,Iowa,US,40.74773536,-92.41005468,"Davis, Iowa, US",9000
-84019053,US,USA,840,19053,Decatur,Iowa,US,40.73742757,-93.78645949,"Decatur, Iowa, US",7870
-84019055,US,USA,840,19055,Delaware,Iowa,US,42.47104597,-91.3664492,"Delaware, Iowa, US",17011
-84019057,US,USA,840,19057,Des Moines,Iowa,US,40.92012606,-91.18326592,"Des Moines, Iowa, US",38967
-84019059,US,USA,840,19059,Dickinson,Iowa,US,43.37787725,-95.1510206,"Dickinson, Iowa, US",17258
-84019061,US,USA,840,19061,Dubuque,Iowa,US,42.46815349,-90.88181925,"Dubuque, Iowa, US",97311
-84019063,US,USA,840,19063,Emmet,Iowa,US,43.37782951,-94.67858943,"Emmet, Iowa, US",9208
-84019065,US,USA,840,19065,Fayette,Iowa,US,42.86271799,-91.8441231,"Fayette, Iowa, US",19650
-84019067,US,USA,840,19067,Floyd,Iowa,US,43.0600053,-92.78940097,"Floyd, Iowa, US",15642
-84019069,US,USA,840,19069,Franklin,Iowa,US,42.73270384,-93.26256925,"Franklin, Iowa, US",10070
-84019071,US,USA,840,19071,Fremont,Iowa,US,40.7454272,-95.60129045,"Fremont, Iowa, US",6960
-84019073,US,USA,840,19073,Greene,Iowa,US,42.03614551,-94.39658081,"Greene, Iowa, US",8888
-84019075,US,USA,840,19075,Grundy,Iowa,US,42.40183723,-92.78829551,"Grundy, Iowa, US",12232
-84019077,US,USA,840,19077,Guthrie,Iowa,US,41.68378965,-94.50111014,"Guthrie, Iowa, US",10689
-84019079,US,USA,840,19079,Hamilton,Iowa,US,42.38382428,-93.70197703,"Hamilton, Iowa, US",14773
-84019081,US,USA,840,19081,Hancock,Iowa,US,43.08178477,-93.73454884,"Hancock, Iowa, US",10630
-84019083,US,USA,840,19083,Hardin,Iowa,US,42.38353877,-93.23654611,"Hardin, Iowa, US",16846
-84019085,US,USA,840,19085,Harrison,Iowa,US,41.68330137,-95.81558439,"Harrison, Iowa, US",14049
-84019087,US,USA,840,19087,Henry,Iowa,US,40.98767962,-91.54436349,"Henry, Iowa, US",19954
-84019089,US,USA,840,19089,Howard,Iowa,US,43.35671042,-92.31702714,"Howard, Iowa, US",9158
-84019091,US,USA,840,19091,Humboldt,Iowa,US,42.7764426,-94.20722537,"Humboldt, Iowa, US",9558
-84019093,US,USA,840,19093,Ida,Iowa,US,42.38696136,-95.51355387,"Ida, Iowa, US",6860
-84019095,US,USA,840,19095,Iowa,Iowa,US,41.68630265,-92.0643373,"Iowa, Iowa, US",16184
-84019097,US,USA,840,19097,Jackson,Iowa,US,42.17178824,-90.57354837,"Jackson, Iowa, US",19439
-84019099,US,USA,840,19099,Jasper,Iowa,US,41.68576082,-93.05567785,"Jasper, Iowa, US",37185
-84019101,US,USA,840,19101,Jefferson,Iowa,US,41.03192394,-91.94849466,"Jefferson, Iowa, US",18295
-84019103,US,USA,840,19103,Johnson,Iowa,US,41.67169354,-91.58754744,"Johnson, Iowa, US",151140
-84019105,US,USA,840,19105,Jones,Iowa,US,42.12118609,-91.13139641,"Jones, Iowa, US",20681
-84019107,US,USA,840,19107,Keokuk,Iowa,US,41.33649833,-92.1785067,"Keokuk, Iowa, US",10246
-84019109,US,USA,840,19109,Kossuth,Iowa,US,43.20405458,-94.20691791,"Kossuth, Iowa, US",14813
-84019111,US,USA,840,19111,Lee,Iowa,US,40.64181461,-91.48183025,"Lee, Iowa, US",33657
-84019113,US,USA,840,19113,Linn,Iowa,US,42.07923082,-91.59809485,"Linn, Iowa, US",226706
-84019115,US,USA,840,19115,Louisa,Iowa,US,41.21842119,-91.26102611,"Louisa, Iowa, US",11035
-84019117,US,USA,840,19117,Lucas,Iowa,US,41.02958964,-93.32780803,"Lucas, Iowa, US",8600
-84019119,US,USA,840,19119,Lyon,Iowa,US,43.38107862,-96.20926845,"Lyon, Iowa, US",11755
-84019121,US,USA,840,19121,Madison,Iowa,US,41.33081904,-94.01554631,"Madison, Iowa, US",16338
-84019123,US,USA,840,19123,Mahaska,Iowa,US,41.33521503,-92.64083907,"Mahaska, Iowa, US",22095
-84019125,US,USA,840,19125,Marion,Iowa,US,41.33445101,-93.09934783,"Marion, Iowa, US",33253
-84019127,US,USA,840,19127,Marshall,Iowa,US,42.03586837,-92.9990819,"Marshall, Iowa, US",39369
-84019129,US,USA,840,19129,Mills,Iowa,US,41.03299766,-95.61920963,"Mills, Iowa, US",15109
-84019131,US,USA,840,19131,Mitchell,Iowa,US,43.35638371,-92.78887719,"Mitchell, Iowa, US",10586
-84019133,US,USA,840,19133,Monona,Iowa,US,42.05220391,-95.95743843,"Monona, Iowa, US",8615
-84019135,US,USA,840,19135,Monroe,Iowa,US,41.02988815,-92.8690667,"Monroe, Iowa, US",7707
-84019137,US,USA,840,19137,Montgomery,Iowa,US,41.03018714,-95.15642896,"Montgomery, Iowa, US",9917
-84019139,US,USA,840,19139,Muscatine,Iowa,US,41.48370744,-91.1121697,"Muscatine, Iowa, US",42664
-84019141,US,USA,840,19141,O'Brien,Iowa,US,43.08310673,-95.62474482,"O'Brien, Iowa, US",13753
-84019143,US,USA,840,19143,Osceola,Iowa,US,43.37824276,-95.62422844,"Osceola, Iowa, US",5958
-84019145,US,USA,840,19145,Page,Iowa,US,40.7393172,-95.1497813,"Page, Iowa, US",15107
-84019147,US,USA,840,19147,Palo Alto,Iowa,US,43.08193849,-94.67824621,"Palo Alto, Iowa, US",8886
-84019149,US,USA,840,19149,Plymouth,Iowa,US,42.737633,-96.21366621,"Plymouth, Iowa, US",25177
-84019151,US,USA,840,19151,Pocahontas,Iowa,US,42.73420133,-94.67862564,"Pocahontas, Iowa, US",6619
-84019153,US,USA,840,19153,Polk,Iowa,US,41.68679484,-93.57767461,"Polk, Iowa, US",490161
-84019155,US,USA,840,19155,Pottawattamie,Iowa,US,41.33640314,-95.53907776,"Pottawattamie, Iowa, US",93206
-84019157,US,USA,840,19157,Poweshiek,Iowa,US,41.68625425,-92.53155731,"Poweshiek, Iowa, US",18504
-84019159,US,USA,840,19159,Ringgold,Iowa,US,40.73518949,-94.24368535,"Ringgold, Iowa, US",4894
-84019161,US,USA,840,19161,Sac,Iowa,US,42.38624071,-95.10547892,"Sac, Iowa, US",9721
-84019163,US,USA,840,19163,Scott,Iowa,US,41.63935978,-90.61959493,"Scott, Iowa, US",172943
-84019165,US,USA,840,19165,Shelby,Iowa,US,41.6850066,-95.31015553,"Shelby, Iowa, US",11454
-84019167,US,USA,840,19167,Sioux,Iowa,US,43.08221074,-96.1767568,"Sioux, Iowa, US",34855
-84019169,US,USA,840,19169,Story,Iowa,US,42.03621213,-93.46499005,"Story, Iowa, US",97117
-84019171,US,USA,840,19171,Tama,Iowa,US,42.07991767,-92.53266945,"Tama, Iowa, US",16854
-84019173,US,USA,840,19173,Taylor,Iowa,US,40.73710579,-94.69778563,"Taylor, Iowa, US",6121
-84019175,US,USA,840,19175,Union,Iowa,US,41.0277278,-94.24234847,"Union, Iowa, US",12241
-84019177,US,USA,840,19177,Van Buren,Iowa,US,40.75326764,-91.95017958,"Van Buren, Iowa, US",7044
-84019179,US,USA,840,19179,Wapello,Iowa,US,41.03064984,-92.40954728,"Wapello, Iowa, US",34969
-84019181,US,USA,840,19181,Warren,Iowa,US,41.33559454,-93.56007641,"Warren, Iowa, US",51466
-84019183,US,USA,840,19183,Washington,Iowa,US,41.33577126,-91.71725711,"Washington, Iowa, US",21965
-84019185,US,USA,840,19185,Wayne,Iowa,US,40.73969028,-93.32752197,"Wayne, Iowa, US",6441
-84019187,US,USA,840,19187,Webster,Iowa,US,42.42853483,-94.17987389,"Webster, Iowa, US",35904
-84019189,US,USA,840,19189,Winnebago,Iowa,US,43.37751174,-93.73407298,"Winnebago, Iowa, US",10354
-84019191,US,USA,840,19191,Winneshiek,Iowa,US,43.29094334,-91.84422722,"Winneshiek, Iowa, US",19991
-84019193,US,USA,840,19193,Woodbury,Iowa,US,42.38979414,-96.0459439,"Woodbury, Iowa, US",103107
-84019195,US,USA,840,19195,Worth,Iowa,US,43.37750768,-93.26087602,"Worth, Iowa, US",7381
-84019197,US,USA,840,19197,Wright,Iowa,US,42.73305373,-93.73515113,"Wright, Iowa, US",12562
-84020001,US,USA,840,20001,Allen,Kansas,US,37.88582951,-95.30030847,"Allen, Kansas, US",12369
-84020003,US,USA,840,20003,Anderson,Kansas,US,38.21413251,-95.29272815,"Anderson, Kansas, US",7858
-84020005,US,USA,840,20005,Atchison,Kansas,US,39.53185661,-95.30870026,"Atchison, Kansas, US",16073
-84020007,US,USA,840,20007,Barber,Kansas,US,37.2288586,-98.68460053,"Barber, Kansas, US",4427
-84020009,US,USA,840,20009,Barton,Kansas,US,38.47889676,-98.75636726,"Barton, Kansas, US",25779
-84020011,US,USA,840,20011,Bourbon,Kansas,US,37.85508555,-94.84865997,"Bourbon, Kansas, US",14534
-84020013,US,USA,840,20013,Brown,Kansas,US,39.82652589,-95.56421698,"Brown, Kansas, US",9564
-84020015,US,USA,840,20015,Butler,Kansas,US,37.78134351,-96.83878537,"Butler, Kansas, US",66911
-84020017,US,USA,840,20017,Chase,Kansas,US,38.30292938,-96.59563862,"Chase, Kansas, US",2648
-84020019,US,USA,840,20019,Chautauqua,Kansas,US,37.14994405,-96.2454192,"Chautauqua, Kansas, US",3250
-84020021,US,USA,840,20021,Cherokee,Kansas,US,37.16928494,-94.8462897,"Cherokee, Kansas, US",19939
-84020023,US,USA,840,20023,Cheyenne,Kansas,US,39.78580976,-101.7318201,"Cheyenne, Kansas, US",2657
-84020025,US,USA,840,20025,Clark,Kansas,US,37.23577007,-99.81883015,"Clark, Kansas, US",1994
-84020027,US,USA,840,20027,Clay,Kansas,US,39.34948772,-97.16518128,"Clay, Kansas, US",8002
-84020029,US,USA,840,20029,Cloud,Kansas,US,39.48028352,-97.64925343,"Cloud, Kansas, US",8786
-84020031,US,USA,840,20031,Coffey,Kansas,US,38.2365018,-95.73379515,"Coffey, Kansas, US",8179
-84020033,US,USA,840,20033,Comanche,Kansas,US,37.1911452,-99.27113247,"Comanche, Kansas, US",1700
-84020035,US,USA,840,20035,Cowley,Kansas,US,37.23781842,-96.83776647,"Cowley, Kansas, US",34908
-84020037,US,USA,840,20037,Crawford,Kansas,US,37.50675523,-94.85245778,"Crawford, Kansas, US",38818
-84020039,US,USA,840,20039,Decatur,Kansas,US,39.78468441,-100.4594081,"Decatur, Kansas, US",2827
-84020041,US,USA,840,20041,Dickinson,Kansas,US,38.86600962,-97.15532383,"Dickinson, Kansas, US",18466
-84020043,US,USA,840,20043,Doniphan,Kansas,US,39.79067154,-95.14056866,"Doniphan, Kansas, US",7600
-84020045,US,USA,840,20045,Douglas,Kansas,US,38.88503636,-95.2925121,"Douglas, Kansas, US",122259
-84020047,US,USA,840,20047,Edwards,Kansas,US,37.88735543,-99.31263309,"Edwards, Kansas, US",2798
-84020049,US,USA,840,20049,Elk,Kansas,US,37.45338105,-96.24369667,"Elk, Kansas, US",2530
-84020051,US,USA,840,20051,Ellis,Kansas,US,38.91458712,-99.31751551,"Ellis, Kansas, US",28553
-84020053,US,USA,840,20053,Ellsworth,Kansas,US,38.69677695,-98.20462799,"Ellsworth, Kansas, US",6102
-84020055,US,USA,840,20055,Finney,Kansas,US,38.04340344,-100.7381938,"Finney, Kansas, US",36467
-84020057,US,USA,840,20057,Ford,Kansas,US,37.69200114,-99.88825298,"Ford, Kansas, US",33619
-84020059,US,USA,840,20059,Franklin,Kansas,US,38.56443815,-95.28644341,"Franklin, Kansas, US",25544
-84020061,US,USA,840,20061,Geary,Kansas,US,38.99871131,-96.7577178,"Geary, Kansas, US",31670
-84020063,US,USA,840,20063,Gove,Kansas,US,38.91588178,-100.4829321,"Gove, Kansas, US",2636
-84020065,US,USA,840,20065,Graham,Kansas,US,39.34987223,-99.88332493,"Graham, Kansas, US",2482
-84020067,US,USA,840,20067,Grant,Kansas,US,37.56227336,-101.3079758,"Grant, Kansas, US",7150
-84020069,US,USA,840,20069,Gray,Kansas,US,37.73836671,-100.4369088,"Gray, Kansas, US",5988
-84020071,US,USA,840,20071,Greeley,Kansas,US,38.4808095,-101.8061079,"Greeley, Kansas, US",1232
-84020073,US,USA,840,20073,Greenwood,Kansas,US,37.8774388,-96.23250453,"Greenwood, Kansas, US",5982
-84020075,US,USA,840,20075,Hamilton,Kansas,US,37.99978709,-101.7921066,"Hamilton, Kansas, US",2539
-84020077,US,USA,840,20077,Harper,Kansas,US,37.19175361,-98.07578384,"Harper, Kansas, US",5436
-84020079,US,USA,840,20079,Harvey,Kansas,US,38.04293782,-97.42747573,"Harvey, Kansas, US",34429
-84020081,US,USA,840,20081,Haskell,Kansas,US,37.5620394,-100.8710738,"Haskell, Kansas, US",3968
-84020083,US,USA,840,20083,Hodgeman,Kansas,US,38.08780079,-99.89829881,"Hodgeman, Kansas, US",1794
-84020085,US,USA,840,20085,Jackson,Kansas,US,39.41673394,-95.79356799,"Jackson, Kansas, US",13171
-84020087,US,USA,840,20087,Jefferson,Kansas,US,39.2347941,-95.38289232,"Jefferson, Kansas, US",19043
-84020089,US,USA,840,20089,Jewell,Kansas,US,39.78470589,-98.21820662,"Jewell, Kansas, US",2879
-84020091,US,USA,840,20091,Johnson,Kansas,US,38.88548175,-94.82250877,"Johnson, Kansas, US",602401
-84020093,US,USA,840,20093,Kearny,Kansas,US,38.00017981,-101.321681,"Kearny, Kansas, US",3838
-84020095,US,USA,840,20095,Kingman,Kansas,US,37.55909527,-98.13638678,"Kingman, Kansas, US",7152
-84020097,US,USA,840,20097,Kiowa,Kansas,US,37.55848695,-99.2856537,"Kiowa, Kansas, US",2475
-84020099,US,USA,840,20099,Labette,Kansas,US,37.19113093,-95.29849679,"Labette, Kansas, US",19618
-84020101,US,USA,840,20101,Lane,Kansas,US,38.48119447,-100.4660754,"Lane, Kansas, US",1535
-84020103,US,USA,840,20103,Leavenworth,Kansas,US,39.20183497,-95.03620809,"Leavenworth, Kansas, US",81758
-84020105,US,USA,840,20105,Lincoln,Kansas,US,39.04549684,-98.20756994,"Lincoln, Kansas, US",2962
-84020107,US,USA,840,20107,Linn,Kansas,US,38.21267844,-94.84254089,"Linn, Kansas, US",9703
-84020109,US,USA,840,20109,Logan,Kansas,US,38.91735806,-101.148475,"Logan, Kansas, US",2794
-84020111,US,USA,840,20111,Lyon,Kansas,US,38.45576156,-96.15275715,"Lyon, Kansas, US",33195
-84020113,US,USA,840,20113,McPherson,Kansas,US,38.39184858,-97.64769869,"McPherson, Kansas, US",28542
-84020115,US,USA,840,20115,Marion,Kansas,US,38.35855394,-97.0985251,"Marion, Kansas, US",11884
-84020117,US,USA,840,20117,Marshall,Kansas,US,39.78359669,-96.52278974,"Marshall, Kansas, US",9707
-84020119,US,USA,840,20119,Meade,Kansas,US,37.23859987,-100.364831,"Meade, Kansas, US",4033
-84020121,US,USA,840,20121,Miami,Kansas,US,38.56383358,-94.83832189,"Miami, Kansas, US",34237
-84020123,US,USA,840,20123,Mitchell,Kansas,US,39.39331582,-98.20906732,"Mitchell, Kansas, US",5979
-84020125,US,USA,840,20125,Montgomery,Kansas,US,37.19236568,-95.74329258,"Montgomery, Kansas, US",31829
-84020127,US,USA,840,20127,Morris,Kansas,US,38.68827511,-96.65128437,"Morris, Kansas, US",5620
-84020129,US,USA,840,20129,Morton,Kansas,US,37.19141121,-101.7992519,"Morton, Kansas, US",2587
-84020131,US,USA,840,20131,Nemaha,Kansas,US,39.78345387,-96.01392079,"Nemaha, Kansas, US",10231
-84020133,US,USA,840,20133,Neosho,Kansas,US,37.55862897,-95.30670046,"Neosho, Kansas, US",16007
-84020135,US,USA,840,20135,Ness,Kansas,US,38.47974157,-99.91547333,"Ness, Kansas, US",2750
-84020137,US,USA,840,20137,Norton,Kansas,US,39.78443827,-99.90286639,"Norton, Kansas, US",5361
-84020139,US,USA,840,20139,Osage,Kansas,US,38.65235984,-95.72707998,"Osage, Kansas, US",15949
-84020141,US,USA,840,20141,Osborne,Kansas,US,39.3503437,-98.76753828,"Osborne, Kansas, US",3421
-84020143,US,USA,840,20143,Ottawa,Kansas,US,39.13237408,-97.65020313,"Ottawa, Kansas, US",5704
-84020145,US,USA,840,20145,Pawnee,Kansas,US,38.18108732,-99.23692334,"Pawnee, Kansas, US",6414
-84020147,US,USA,840,20147,Phillips,Kansas,US,39.78465501,-99.34668865,"Phillips, Kansas, US",5234
-84020149,US,USA,840,20149,Pottawatomie,Kansas,US,39.37925655,-96.34564657,"Pottawatomie, Kansas, US",24383
-84020151,US,USA,840,20151,Pratt,Kansas,US,37.64780729,-98.73922153,"Pratt, Kansas, US",9164
-84020153,US,USA,840,20153,Rawlins,Kansas,US,39.78525843,-101.0761617,"Rawlins, Kansas, US",2530
-84020155,US,USA,840,20155,Reno,Kansas,US,37.95230263,-98.08607292,"Reno, Kansas, US",61998
-84020157,US,USA,840,20157,Republic,Kansas,US,39.82799632,-97.65036709,"Republic, Kansas, US",4636
-84020159,US,USA,840,20159,Rice,Kansas,US,38.34616184,-98.19992118,"Rice, Kansas, US",9537
-84020161,US,USA,840,20161,Riley,Kansas,US,39.28935726,-96.73420026,"Riley, Kansas, US",74232
-84020163,US,USA,840,20163,Rooks,Kansas,US,39.35022773,-99.32484567,"Rooks, Kansas, US",4920
-84020165,US,USA,840,20165,Rush,Kansas,US,38.52275276,-99.30863983,"Rush, Kansas, US",3036
-84020167,US,USA,840,20167,Russell,Kansas,US,38.91462787,-98.76254297,"Russell, Kansas, US",6856
-84020169,US,USA,840,20169,Saline,Kansas,US,38.78369175,-97.65185177,"Saline, Kansas, US",54224
-84020171,US,USA,840,20171,Scott,Kansas,US,38.48222076,-100.9066539,"Scott, Kansas, US",4823
-84020173,US,USA,840,20173,Sedgwick,Kansas,US,37.6842718,-97.4608198,"Sedgwick, Kansas, US",516042
-84020175,US,USA,840,20175,Seward,Kansas,US,37.19324632,-100.8507201,"Seward, Kansas, US",21428
-84020177,US,USA,840,20177,Shawnee,Kansas,US,39.04100763,-95.7557264,"Shawnee, Kansas, US",176875
-84020179,US,USA,840,20179,Sheridan,Kansas,US,39.35018161,-100.4418259,"Sheridan, Kansas, US",2521
-84020181,US,USA,840,20181,Sherman,Kansas,US,39.35147699,-101.7197624,"Sherman, Kansas, US",5917
-84020183,US,USA,840,20183,Smith,Kansas,US,39.78516566,-98.78566062,"Smith, Kansas, US",3583
-84020185,US,USA,840,20185,Stafford,Kansas,US,38.03100851,-98.71762001,"Stafford, Kansas, US",4156
-84020187,US,USA,840,20187,Stanton,Kansas,US,37.56304714,-101.7843534,"Stanton, Kansas, US",2006
-84020189,US,USA,840,20189,Stevens,Kansas,US,37.1923008,-101.3118967,"Stevens, Kansas, US",5485
-84020191,US,USA,840,20191,Sumner,Kansas,US,37.23682549,-97.47721621,"Sumner, Kansas, US",22836
-84020193,US,USA,840,20193,Thomas,Kansas,US,39.35107575,-101.0553705,"Thomas, Kansas, US",7777
-84020195,US,USA,840,20195,Trego,Kansas,US,38.91467218,-99.87284448,"Trego, Kansas, US",2803
-84020197,US,USA,840,20197,Wabaunsee,Kansas,US,38.95471985,-96.20350509,"Wabaunsee, Kansas, US",6931
-84020199,US,USA,840,20199,Wallace,Kansas,US,38.91686134,-101.7638876,"Wallace, Kansas, US",1518
-84020201,US,USA,840,20201,Washington,Kansas,US,39.78420784,-97.0875323,"Washington, Kansas, US",5406
-84020203,US,USA,840,20203,Wichita,Kansas,US,38.48178252,-101.3471509,"Wichita, Kansas, US",2119
-84020205,US,USA,840,20205,Wilson,Kansas,US,37.55937174,-95.74323255,"Wilson, Kansas, US",8525
-84020207,US,USA,840,20207,Woodson,Kansas,US,37.8865336,-95.74006277,"Woodson, Kansas, US",3138
-84020209,US,USA,840,20209,Wyandotte,Kansas,US,39.11727348,-94.76378225,"Wyandotte, Kansas, US",165429
-84021001,US,USA,840,21001,Adair,Kentucky,US,37.10459774,-85.28129668,"Adair, Kentucky, US",19202
-84021003,US,USA,840,21003,Allen,Kentucky,US,36.75197631,-86.19457544,"Allen, Kentucky, US",21315
-84021005,US,USA,840,21005,Anderson,Kentucky,US,38.00671029,-84.99171713,"Anderson, Kentucky, US",22747
-84021007,US,USA,840,21007,Ballard,Kentucky,US,37.05842757,-88.99427697,"Ballard, Kentucky, US",7888
-84021009,US,USA,840,21009,Barren,Kentucky,US,36.96469836,-85.93338945,"Barren, Kentucky, US",44249
-84021011,US,USA,840,21011,Bath,Kentucky,US,38.14735938,-83.74588932,"Bath, Kentucky, US",12500
-84021013,US,USA,840,21013,Bell,Kentucky,US,36.73355174,-83.67766671,"Bell, Kentucky, US",26032
-84021015,US,USA,840,21015,Boone,Kentucky,US,38.97065142,-84.72615357,"Boone, Kentucky, US",133581
-84021017,US,USA,840,21017,Bourbon,Kentucky,US,38.2054607,-84.21827874,"Bourbon, Kentucky, US",19788
-84021019,US,USA,840,21019,Boyd,Kentucky,US,38.36176608,-82.68652187,"Boyd, Kentucky, US",46718
-84021021,US,USA,840,21021,Boyle,Kentucky,US,37.62680923,-84.8633779,"Boyle, Kentucky, US",30060
-84021023,US,USA,840,21023,Bracken,Kentucky,US,38.69158994,-84.08532444,"Bracken, Kentucky, US",8303
-84021025,US,USA,840,21025,Breathitt,Kentucky,US,37.52333168,-83.31959161,"Breathitt, Kentucky, US",12630
-84021027,US,USA,840,21027,Breckinridge,Kentucky,US,37.77377239,-86.42885017,"Breckinridge, Kentucky, US",20477
-84021029,US,USA,840,21029,Bullitt,Kentucky,US,37.97162523,-85.68955617,"Bullitt, Kentucky, US",81676
-84021031,US,USA,840,21031,Butler,Kentucky,US,37.20946153,-86.68748787,"Butler, Kentucky, US",12879
-84021033,US,USA,840,21033,Caldwell,Kentucky,US,37.14749129,-87.86948214,"Caldwell, Kentucky, US",12747
-84021035,US,USA,840,21035,Calloway,Kentucky,US,36.62093411,-88.2731593,"Calloway, Kentucky, US",39001
-84021037,US,USA,840,21037,Campbell,Kentucky,US,38.94384345,-84.37875208,"Campbell, Kentucky, US",93584
-84021039,US,USA,840,21039,Carlisle,Kentucky,US,36.85372876,-88.9669222,"Carlisle, Kentucky, US",4760
-84021041,US,USA,840,21041,Carroll,Kentucky,US,38.66599534,-85.12601074,"Carroll, Kentucky, US",10631
-84021043,US,USA,840,21043,Carter,Kentucky,US,38.31690743,-83.05092385,"Carter, Kentucky, US",26797
-84021045,US,USA,840,21045,Casey,Kentucky,US,37.32533118,-84.92726209,"Casey, Kentucky, US",16159
-84021047,US,USA,840,21047,Christian,Kentucky,US,36.89267803,-87.49055367,"Christian, Kentucky, US",70461
-84021049,US,USA,840,21049,Clark,Kentucky,US,37.9689263,-84.14615986,"Clark, Kentucky, US",36263
-84021051,US,USA,840,21051,Clay,Kentucky,US,37.16451126,-83.712575,"Clay, Kentucky, US",19901
-84021053,US,USA,840,21053,Clinton,Kentucky,US,36.72581156,-85.13377529,"Clinton, Kentucky, US",10218
-84021055,US,USA,840,21055,Crittenden,Kentucky,US,37.35839237,-88.0882609,"Crittenden, Kentucky, US",8806
-84021057,US,USA,840,21057,Cumberland,Kentucky,US,36.78926125,-85.39050034,"Cumberland, Kentucky, US",6614
-84021059,US,USA,840,21059,Daviess,Kentucky,US,37.73028906,-87.0901948,"Daviess, Kentucky, US",101511
-84021061,US,USA,840,21061,Edmonson,Kentucky,US,37.21218923,-86.23955613,"Edmonson, Kentucky, US",12150
-84021063,US,USA,840,21063,Elliott,Kentucky,US,38.11624059,-83.09771563,"Elliott, Kentucky, US",7517
-84021065,US,USA,840,21065,Estill,Kentucky,US,37.69241417,-83.95956369,"Estill, Kentucky, US",14106
-84021067,US,USA,840,21067,Fayette,Kentucky,US,38.0368225,-84.45576892,"Fayette, Kentucky, US",323152
-84021069,US,USA,840,21069,Fleming,Kentucky,US,38.36758311,-83.69657514,"Fleming, Kentucky, US",14581
-84021071,US,USA,840,21071,Floyd,Kentucky,US,37.56213922,-82.74750924,"Floyd, Kentucky, US",35589
-84021073,US,USA,840,21073,Franklin,Kentucky,US,38.2379395,-84.87962551,"Franklin, Kentucky, US",50991
-84021075,US,USA,840,21075,Fulton,Kentucky,US,36.55238827,-89.20140068,"Fulton, Kentucky, US",5969
-84021077,US,USA,840,21077,Gallatin,Kentucky,US,38.75398691,-84.8558382,"Gallatin, Kentucky, US",8869
-84021079,US,USA,840,21079,Garrard,Kentucky,US,37.6388668,-84.53289319,"Garrard, Kentucky, US",17666
-84021081,US,USA,840,21081,Grant,Kentucky,US,38.64962758,-84.62415957,"Grant, Kentucky, US",25069
-84021083,US,USA,840,21083,Graves,Kentucky,US,36.72292505,-88.65143315,"Graves, Kentucky, US",37266
-84021085,US,USA,840,21085,Grayson,Kentucky,US,37.46231118,-86.34248968,"Grayson, Kentucky, US",26427
-84021087,US,USA,840,21087,Green,Kentucky,US,37.26484328,-85.5540745,"Green, Kentucky, US",10941
-84021089,US,USA,840,21089,Greenup,Kentucky,US,38.54332505,-82.9215658,"Greenup, Kentucky, US",35098
-84021091,US,USA,840,21091,Hancock,Kentucky,US,37.83766422,-86.78280584,"Hancock, Kentucky, US",8722
-84021093,US,USA,840,21093,Hardin,Kentucky,US,37.6976111,-85.96319251,"Hardin, Kentucky, US",110958
-84021095,US,USA,840,21095,Harlan,Kentucky,US,36.85699301,-83.21899516,"Harlan, Kentucky, US",26010
-84021097,US,USA,840,21097,Harrison,Kentucky,US,38.44188174,-84.32869741,"Harrison, Kentucky, US",18886
-84021099,US,USA,840,21099,Hart,Kentucky,US,37.29943898,-85.88461055,"Hart, Kentucky, US",19035
-84021101,US,USA,840,21101,Henderson,Kentucky,US,37.79344553,-87.57392021,"Henderson, Kentucky, US",45210
-84021103,US,USA,840,21103,Henry,Kentucky,US,38.44942688,-85.11587507,"Henry, Kentucky, US",16126
-84021105,US,USA,840,21105,Hickman,Kentucky,US,36.6794808,-88.97875928,"Hickman, Kentucky, US",4380
-84021107,US,USA,840,21107,Hopkins,Kentucky,US,37.30939025,-87.54670406,"Hopkins, Kentucky, US",44686
-84021109,US,USA,840,21109,Jackson,Kentucky,US,37.41866422,-83.99825483,"Jackson, Kentucky, US",13329
-84021111,US,USA,840,21111,Jefferson,Kentucky,US,38.18664655,-85.65931031,"Jefferson, Kentucky, US",766757
-84021113,US,USA,840,21113,Jessamine,Kentucky,US,37.87119786,-84.58252003,"Jessamine, Kentucky, US",54115
-84021115,US,USA,840,21115,Johnson,Kentucky,US,37.85106355,-82.8264322,"Johnson, Kentucky, US",22188
-84021117,US,USA,840,21117,Kenton,Kentucky,US,38.93950319,-84.53241199,"Kenton, Kentucky, US",166998
-84021119,US,USA,840,21119,Knott,Kentucky,US,37.35388197,-82.94981134,"Knott, Kentucky, US",14806
-84021121,US,USA,840,21121,Knox,Kentucky,US,36.89225732,-83.85403396,"Knox, Kentucky, US",31145
-84021123,US,USA,840,21123,Larue,Kentucky,US,37.54567114,-85.70138352,"Larue, Kentucky, US",14398
-84021125,US,USA,840,21125,Laurel,Kentucky,US,37.10975748,-84.11321779,"Laurel, Kentucky, US",60813
-84021127,US,USA,840,21127,Lawrence,Kentucky,US,38.07136018,-82.72882223,"Lawrence, Kentucky, US",15317
-84021129,US,USA,840,21129,Lee,Kentucky,US,37.59645942,-83.71513901,"Lee, Kentucky, US",7403
-84021131,US,USA,840,21131,Leslie,Kentucky,US,37.09246661,-83.37999606,"Leslie, Kentucky, US",9877
-84021133,US,USA,840,21133,Letcher,Kentucky,US,37.12306748,-82.85346474,"Letcher, Kentucky, US",21553
-84021135,US,USA,840,21135,Lewis,Kentucky,US,38.53184419,-83.37735618,"Lewis, Kentucky, US",13275
-84021137,US,USA,840,21137,Lincoln,Kentucky,US,37.45475628,-84.6565327,"Lincoln, Kentucky, US",24549
-84021139,US,USA,840,21139,Livingston,Kentucky,US,37.21137452,-88.34797529,"Livingston, Kentucky, US",9194
-84021141,US,USA,840,21141,Logan,Kentucky,US,36.85949479,-86.877635,"Logan, Kentucky, US",27102
-84021143,US,USA,840,21143,Lyon,Kentucky,US,37.02080035,-88.07886257,"Lyon, Kentucky, US",8210
-84021145,US,USA,840,21145,McCracken,Kentucky,US,37.05350953,-88.70445755,"McCracken, Kentucky, US",65418
-84021147,US,USA,840,21147,McCreary,Kentucky,US,36.73874143,-84.48102924,"McCreary, Kentucky, US",17231
-84021149,US,USA,840,21149,McLean,Kentucky,US,37.5301951,-87.26803443,"McLean, Kentucky, US",9207
-84021151,US,USA,840,21151,Madison,Kentucky,US,37.71659336,-84.27220275,"Madison, Kentucky, US",92987
-84021153,US,USA,840,21153,Magoffin,Kentucky,US,37.70820545,-83.0657714,"Magoffin, Kentucky, US",12161
-84021155,US,USA,840,21155,Marion,Kentucky,US,37.55218078,-85.26898542,"Marion, Kentucky, US",19273
-84021157,US,USA,840,21157,Marshall,Kentucky,US,36.8800707,-88.32803576,"Marshall, Kentucky, US",31100
-84021159,US,USA,840,21159,Martin,Kentucky,US,37.79990579,-82.51247478,"Martin, Kentucky, US",11195
-84021161,US,USA,840,21161,Mason,Kentucky,US,38.59471935,-83.82151043,"Mason, Kentucky, US",17070
-84021163,US,USA,840,21163,Meade,Kentucky,US,37.96163597,-86.21028219,"Meade, Kentucky, US",28572
-84021165,US,USA,840,21165,Menifee,Kentucky,US,37.94090733,-83.59985712,"Menifee, Kentucky, US",6489
-84021167,US,USA,840,21167,Mercer,Kentucky,US,37.81474237,-84.87488475,"Mercer, Kentucky, US",21933
-84021169,US,USA,840,21169,Metcalfe,Kentucky,US,36.99459295,-85.63123699,"Metcalfe, Kentucky, US",10071
-84021171,US,USA,840,21171,Monroe,Kentucky,US,36.71225341,-85.71596443,"Monroe, Kentucky, US",10650
-84021173,US,USA,840,21173,Montgomery,Kentucky,US,38.03253032,-83.9145241,"Montgomery, Kentucky, US",28157
-84021175,US,USA,840,21175,Morgan,Kentucky,US,37.92465657,-83.25558245,"Morgan, Kentucky, US",13309
-84021177,US,USA,840,21177,Muhlenberg,Kentucky,US,37.21425819,-87.14632053,"Muhlenberg, Kentucky, US",30622
-84021179,US,USA,840,21179,Nelson,Kentucky,US,37.80335779,-85.4657193,"Nelson, Kentucky, US",46233
-84021181,US,USA,840,21181,Nicholas,Kentucky,US,38.33342292,-84.01889177,"Nicholas, Kentucky, US",7269
-84021183,US,USA,840,21183,Ohio,Kentucky,US,37.47751843,-86.85368087,"Ohio, Kentucky, US",23994
-84021185,US,USA,840,21185,Oldham,Kentucky,US,38.39791089,-85.448222,"Oldham, Kentucky, US",66799
-84021187,US,USA,840,21187,Owen,Kentucky,US,38.51679143,-84.82404619,"Owen, Kentucky, US",10901
-84021189,US,USA,840,21189,Owsley,Kentucky,US,37.42823949,-83.68811419,"Owsley, Kentucky, US",4415
-84021191,US,USA,840,21191,Pendleton,Kentucky,US,38.69607718,-84.35599463,"Pendleton, Kentucky, US",14590
-84021193,US,USA,840,21193,Perry,Kentucky,US,37.25023553,-83.22922731,"Perry, Kentucky, US",25758
-84021195,US,USA,840,21195,Pike,Kentucky,US,37.47088263,-82.39487445,"Pike, Kentucky, US",57876
-84021197,US,USA,840,21197,Powell,Kentucky,US,37.83218794,-83.82553961,"Powell, Kentucky, US",12359
-84021199,US,USA,840,21199,Pulaski,Kentucky,US,37.10466131,-84.57629079,"Pulaski, Kentucky, US",64979
-84021201,US,USA,840,21201,Robertson,Kentucky,US,38.51923469,-84.05055616,"Robertson, Kentucky, US",2108
-84021203,US,USA,840,21203,Rockcastle,Kentucky,US,37.36642393,-84.31176452,"Rockcastle, Kentucky, US",16695
-84021205,US,USA,840,21205,Rowan,Kentucky,US,38.19484205,-83.42088935,"Rowan, Kentucky, US",24460
-84021207,US,USA,840,21207,Russell,Kentucky,US,36.99308373,-85.06070117,"Russell, Kentucky, US",17923
-84021209,US,USA,840,21209,Scott,Kentucky,US,38.29622293,-84.5816631,"Scott, Kentucky, US",57004
-84021211,US,USA,840,21211,Shelby,Kentucky,US,38.21476019,-85.194223,"Shelby, Kentucky, US",49024
-84021213,US,USA,840,21213,Simpson,Kentucky,US,36.74058474,-86.58047435,"Simpson, Kentucky, US",18572
-84021215,US,USA,840,21215,Spencer,Kentucky,US,38.03223971,-85.32749335,"Spencer, Kentucky, US",19351
-84021217,US,USA,840,21217,Taylor,Kentucky,US,37.3677562,-85.3329931,"Taylor, Kentucky, US",25769
-84021219,US,USA,840,21219,Todd,Kentucky,US,36.8381152,-87.17878374,"Todd, Kentucky, US",12294
-84021221,US,USA,840,21221,Trigg,Kentucky,US,36.80767017,-87.87333656,"Trigg, Kentucky, US",14651
-84021223,US,USA,840,21223,Trimble,Kentucky,US,38.61056487,-85.33775972,"Trimble, Kentucky, US",8471
-84021225,US,USA,840,21225,Union,Kentucky,US,37.66166713,-87.94300009,"Union, Kentucky, US",14381
-84021227,US,USA,840,21227,Warren,Kentucky,US,36.99903045,-86.42672751,"Warren, Kentucky, US",132896
-84021229,US,USA,840,21229,Washington,Kentucky,US,37.75599461,-85.17407732,"Washington, Kentucky, US",12095
-84021231,US,USA,840,21231,Wayne,Kentucky,US,36.80310688,-84.8251971,"Wayne, Kentucky, US",20333
-84021233,US,USA,840,21233,Webster,Kentucky,US,37.52168356,-87.67989953,"Webster, Kentucky, US",12942
-84021235,US,USA,840,21235,Whitley,Kentucky,US,36.75700531,-84.14541217,"Whitley, Kentucky, US",36264
-84021237,US,USA,840,21237,Wolfe,Kentucky,US,37.73941626,-83.49303612,"Wolfe, Kentucky, US",7157
-84021239,US,USA,840,21239,Woodford,Kentucky,US,38.04178222,-84.7417556,"Woodford, Kentucky, US",26734
-84022001,US,USA,840,22001,Acadia,Louisiana,US,30.2950649,-92.41419698,"Acadia, Louisiana, US",62045
-84022003,US,USA,840,22003,Allen,Louisiana,US,30.65385745,-92.82442028,"Allen, Louisiana, US",25627
-84022005,US,USA,840,22005,Ascension,Louisiana,US,30.20406249,-90.9132841,"Ascension, Louisiana, US",126604
-84022007,US,USA,840,22007,Assumption,Louisiana,US,29.89946234,-91.06461642,"Assumption, Louisiana, US",21891
-84022009,US,USA,840,22009,Avoyelles,Louisiana,US,31.07796211,-92.00079449,"Avoyelles, Louisiana, US",40144
-84022011,US,USA,840,22011,Beauregard,Louisiana,US,30.64836518,-93.34173616,"Beauregard, Louisiana, US",37497
-84022013,US,USA,840,22013,Bienville,Louisiana,US,32.34569994,-93.05398492,"Bienville, Louisiana, US",13241
-84022015,US,USA,840,22015,Bossier,Louisiana,US,32.67932307,-93.60460152,"Bossier, Louisiana, US",127039
-84022017,US,USA,840,22017,Caddo,Louisiana,US,32.57991587,-93.88375652,"Caddo, Louisiana, US",240204
-84022019,US,USA,840,22019,Calcasieu,Louisiana,US,30.22931235,-93.35400434,"Calcasieu, Louisiana, US",203436
-84022021,US,USA,840,22021,Caldwell,Louisiana,US,32.0902519,-92.11752148,"Caldwell, Louisiana, US",9918
-84022023,US,USA,840,22023,Cameron,Louisiana,US,29.87592238,-93.19310676,"Cameron, Louisiana, US",6973
-84022025,US,USA,840,22025,Catahoula,Louisiana,US,31.66778967,-91.84526385,"Catahoula, Louisiana, US",9494
-84022027,US,USA,840,22027,Claiborne,Louisiana,US,32.82308512,-92.99526883,"Claiborne, Louisiana, US",15670
-84022029,US,USA,840,22029,Concordia,Louisiana,US,31.44817835,-91.63814433,"Concordia, Louisiana, US",19259
-84022031,US,USA,840,22031,De Soto,Louisiana,US,32.05457447,-93.74130302,"De Soto, Louisiana, US",27463
-84022033,US,USA,840,22033,East Baton Rouge,Louisiana,US,30.53842039,-91.09777565,"East Baton Rouge, Louisiana, US",440059
-84022035,US,USA,840,22035,East Carroll,Louisiana,US,32.73926954,-91.23425694,"East Carroll, Louisiana, US",6861
-84022037,US,USA,840,22037,East Feliciana,Louisiana,US,30.84425359,-91.04976723,"East Feliciana, Louisiana, US",19135
-84022039,US,USA,840,22039,Evangeline,Louisiana,US,30.72985248,-92.39915924,"Evangeline, Louisiana, US",33395
-84022041,US,USA,840,22041,Franklin,Louisiana,US,32.13675181,-91.67589857,"Franklin, Louisiana, US",20015
-84022043,US,USA,840,22043,Grant,Louisiana,US,31.59882456,-92.56124347,"Grant, Louisiana, US",22389
-84022045,US,USA,840,22045,Iberia,Louisiana,US,29.86803617,-91.75871777,"Iberia, Louisiana, US",69830
-84022047,US,USA,840,22047,Iberville,Louisiana,US,30.25734305,-91.3499598,"Iberville, Louisiana, US",32511
-84022049,US,USA,840,22049,Jackson,Louisiana,US,32.30251776,-92.55692092,"Jackson, Louisiana, US",15744
-84022051,US,USA,840,22051,Jefferson,Louisiana,US,29.74075478,-90.11115756,"Jefferson, Louisiana, US",432493
-84022053,US,USA,840,22053,Jefferson Davis,Louisiana,US,30.26896765,-92.81210004,"Jefferson Davis, Louisiana, US",31368
-84022055,US,USA,840,22055,Lafayette,Louisiana,US,30.2049055,-92.06959876,"Lafayette, Louisiana, US",244390
-84022057,US,USA,840,22057,Lafourche,Louisiana,US,29.52470226,-90.40976986,"Lafourche, Louisiana, US",97614
-84022059,US,USA,840,22059,LaSalle,Louisiana,US,31.67884782,-92.15907765,"LaSalle, Louisiana, US",14892
-84022061,US,USA,840,22061,Lincoln,Louisiana,US,32.6003154,-92.6659741,"Lincoln, Louisiana, US",46742
-84022063,US,USA,840,22063,Livingston,Louisiana,US,30.44143993,-90.73061664,"Livingston, Louisiana, US",140789
-84022065,US,USA,840,22065,Madison,Louisiana,US,32.36918118,-91.23973355,"Madison, Louisiana, US",10951
-84022067,US,USA,840,22067,Morehouse,Louisiana,US,32.81686191,-91.80421614,"Morehouse, Louisiana, US",24874
-84022069,US,USA,840,22069,Natchitoches,Louisiana,US,31.72321584,-93.09816516,"Natchitoches, Louisiana, US",38158
-84022071,US,USA,840,22071,Orleans,Louisiana,US,30.06971951,-89.92660315,"Orleans, Louisiana, US",390144
-84022073,US,USA,840,22073,Ouachita,Louisiana,US,32.47645559,-92.15704172,"Ouachita, Louisiana, US",153279
-84022075,US,USA,840,22075,Plaquemines,Louisiana,US,29.42245447,-89.60322085,"Plaquemines, Louisiana, US",23197
-84022077,US,USA,840,22077,Pointe Coupee,Louisiana,US,30.71409502,-91.60209535,"Pointe Coupee, Louisiana, US",21730
-84022079,US,USA,840,22079,Rapides,Louisiana,US,31.19778499,-92.52997303,"Rapides, Louisiana, US",129648
-84022081,US,USA,840,22081,Red River,Louisiana,US,32.09530039,-93.34213308,"Red River, Louisiana, US",8442
-84022083,US,USA,840,22083,Richland,Louisiana,US,32.41391005,-91.76634876,"Richland, Louisiana, US",20122
-84022085,US,USA,840,22085,Sabine,Louisiana,US,31.56388699,-93.55433981,"Sabine, Louisiana, US",23884
-84022087,US,USA,840,22087,St. Bernard,Louisiana,US,29.87761636,-89.51887093,"St. Bernard, Louisiana, US",47244
-84022089,US,USA,840,22089,St. Charles,Louisiana,US,29.90709658,-90.35555967,"St. Charles, Louisiana, US",53100
-84022091,US,USA,840,22091,St. Helena,Louisiana,US,30.82210324,-90.71013176,"St. Helena, Louisiana, US",10132
-84022093,US,USA,840,22093,St. James,Louisiana,US,30.02531716,-90.80212061,"St. James, Louisiana, US",21096
-84022095,US,USA,840,22095,St. John the Baptist,Louisiana,US,30.12597499,-90.4753503,"St. John the Baptist, Louisiana, US",42837
-84022097,US,USA,840,22097,St. Landry,Louisiana,US,30.59724262,-92.00135806,"St. Landry, Louisiana, US",82124
-84022099,US,USA,840,22099,St. Martin,Louisiana,US,30.13112107,-91.61403569,"St. Martin, Louisiana, US",53431
-84022101,US,USA,840,22101,St. Mary,Louisiana,US,29.69262097,-91.44702164,"St. Mary, Louisiana, US",49348
-84022103,US,USA,840,22103,St. Tammany,Louisiana,US,30.40942847,-89.95642711,"St. Tammany, Louisiana, US",260419
-84022105,US,USA,840,22105,Tangipahoa,Louisiana,US,30.62888673,-90.40664996,"Tangipahoa, Louisiana, US",134758
-84022107,US,USA,840,22107,Tensas,Louisiana,US,32.00760749,-91.32915234,"Tensas, Louisiana, US",4334
-84022109,US,USA,840,22109,Terrebonne,Louisiana,US,29.37343766,-90.82626855,"Terrebonne, Louisiana, US",110461
-84022111,US,USA,840,22111,Union,Louisiana,US,32.83121059,-92.3749373,"Union, Louisiana, US",22108
-84022113,US,USA,840,22113,Vermilion,Louisiana,US,29.83517605,-92.30292538,"Vermilion, Louisiana, US",59511
-84022115,US,USA,840,22115,Vernon,Louisiana,US,31.10884837,-93.18153838,"Vernon, Louisiana, US",47429
-84022117,US,USA,840,22117,Washington,Louisiana,US,30.85288548,-90.03866652,"Washington, Louisiana, US",46194
-84022119,US,USA,840,22119,Webster,Louisiana,US,32.70847669,-93.33121835,"Webster, Louisiana, US",38340
-84022121,US,USA,840,22121,West Baton Rouge,Louisiana,US,30.46058217,-91.30989571,"West Baton Rouge, Louisiana, US",26465
-84022123,US,USA,840,22123,West Carroll,Louisiana,US,32.78550125,-91.461201,"West Carroll, Louisiana, US",10830
-84022125,US,USA,840,22125,West Feliciana,Louisiana,US,30.87882871,-91.4148538,"West Feliciana, Louisiana, US",15568
-84022127,US,USA,840,22127,Winn,Louisiana,US,31.94449367,-92.63789413,"Winn, Louisiana, US",13904
-84023001,US,USA,840,23001,Androscoggin,Maine,US,44.1664747,-70.20380627,"Androscoggin, Maine, US",108277
-84023003,US,USA,840,23003,Aroostook,Maine,US,46.65926321,-68.59841248,"Aroostook, Maine, US",67055
-84023005,US,USA,840,23005,Cumberland,Maine,US,43.8370751,-70.37226999,"Cumberland, Maine, US",295003
-84023007,US,USA,840,23007,Franklin,Maine,US,44.97330019,-70.44381045,"Franklin, Maine, US",30199
-84023009,US,USA,840,23009,Hancock,Maine,US,44.59816444,-68.38401854,"Hancock, Maine, US",54987
-84023011,US,USA,840,23011,Kennebec,Maine,US,44.40759555,-69.76738544,"Kennebec, Maine, US",122302
-84023013,US,USA,840,23013,Knox,Maine,US,44.11486325,-69.10529169,"Knox, Maine, US",39772
-84023015,US,USA,840,23015,Lincoln,Maine,US,44.05996956,-69.54227124,"Lincoln, Maine, US",34634
-84023017,US,USA,840,23017,Oxford,Maine,US,44.49952995,-70.75682123,"Oxford, Maine, US",57975
-84023019,US,USA,840,23019,Penobscot,Maine,US,45.40194593,-68.65020455,"Penobscot, Maine, US",152148
-84023021,US,USA,840,23021,Piscataquis,Maine,US,45.83839062,-69.2860223,"Piscataquis, Maine, US",16785
-84023023,US,USA,840,23023,Sagadahoc,Maine,US,43.95415864,-69.85074999,"Sagadahoc, Maine, US",35856
-84023025,US,USA,840,23025,Somerset,Maine,US,45.51229767,-69.95995554,"Somerset, Maine, US",50484
-84023027,US,USA,840,23027,Waldo,Maine,US,44.4858305,-69.12061935,"Waldo, Maine, US",39715
-84023029,US,USA,840,23029,Washington,Maine,US,45.01607142,-67.62813524,"Washington, Maine, US",31379
-84023031,US,USA,840,23031,York,Maine,US,43.47808377,-70.71052375,"York, Maine, US",207641
-84024001,US,USA,840,24001,Allegany,Maryland,US,39.62357628,-78.69280486,"Allegany, Maryland, US",70416
-84024003,US,USA,840,24003,Anne Arundel,Maryland,US,39.00670238,-76.60329337,"Anne Arundel, Maryland, US",579234
-84024005,US,USA,840,24005,Baltimore,Maryland,US,39.45784712,-76.62911955,"Baltimore, Maryland, US",827370
-84024009,US,USA,840,24009,Calvert,Maryland,US,38.53961642,-76.56820632,"Calvert, Maryland, US",92525
-84024011,US,USA,840,24011,Caroline,Maryland,US,38.87172293,-75.82904158,"Caroline, Maryland, US",33406
-84024013,US,USA,840,24013,Carroll,Maryland,US,39.56453592,-77.02373735,"Carroll, Maryland, US",168447
-84024015,US,USA,840,24015,Cecil,Maryland,US,39.56647682,-75.94627411,"Cecil, Maryland, US",102855
-84024017,US,USA,840,24017,Charles,Maryland,US,38.51092331,-76.98580666,"Charles, Maryland, US",163257
-84024019,US,USA,840,24019,Dorchester,Maryland,US,38.45413522,-76.02752426,"Dorchester, Maryland, US",31929
-84024021,US,USA,840,24021,Frederick,Maryland,US,39.47296601,-77.39999394,"Frederick, Maryland, US",259547
-84024023,US,USA,840,24023,Garrett,Maryland,US,39.52786077,-79.27355126,"Garrett, Maryland, US",29014
-84024025,US,USA,840,24025,Harford,Maryland,US,39.55010644,-76.3077594,"Harford, Maryland, US",255441
-84024027,US,USA,840,24027,Howard,Maryland,US,39.25305293,-76.93126208,"Howard, Maryland, US",325690
-84024029,US,USA,840,24029,Kent,Maryland,US,39.24976208,-76.04741541,"Kent, Maryland, US",19422
-84024031,US,USA,840,24031,Montgomery,Maryland,US,39.13676329,-77.20358245,"Montgomery, Maryland, US",1050688
-84024033,US,USA,840,24033,Prince George's,Maryland,US,38.83070039,-76.8496441,"Prince George's, Maryland, US",909327
-84024035,US,USA,840,24035,Queen Anne's,Maryland,US,39.06198912,-76.03530977,"Queen Anne's, Maryland, US",50381
-84024037,US,USA,840,24037,St. Mary's,Maryland,US,38.30058422,-76.6062928,"St. Mary's, Maryland, US",113510
-84024039,US,USA,840,24039,Somerset,Maryland,US,38.1163542,-75.75118623,"Somerset, Maryland, US",25616
-84024041,US,USA,840,24041,Talbot,Maryland,US,38.76618159,-76.10882561,"Talbot, Maryland, US",37181
-84024043,US,USA,840,24043,Washington,Maryland,US,39.60835778,-77.82002295,"Washington, Maryland, US",151049
-84024045,US,USA,840,24045,Wicomico,Maryland,US,38.37301947,-75.62705831,"Wicomico, Maryland, US",103609
-84024047,US,USA,840,24047,Worcester,Maryland,US,38.21274277,-75.33200012,"Worcester, Maryland, US",52276
-84024510,US,USA,840,24510,Baltimore City,Maryland,US,39.30211911,-76.61151012,"Baltimore City, Maryland, US",593490
-84025001,US,USA,840,25001,Barnstable,Massachusetts,US,41.72980578,-70.28854339,"Barnstable, Massachusetts, US",212990
-84025003,US,USA,840,25003,Berkshire,Massachusetts,US,42.37428441,-73.20524838,"Berkshire, Massachusetts, US",124944
-84025005,US,USA,840,25005,Bristol,Massachusetts,US,41.79228404,-71.10872211,"Bristol, Massachusetts, US",565217
-84025007,US,USA,840,25007,Dukes,Massachusetts,US,41.40674725,-70.68763497,"Dukes, Massachusetts, US",17332
-84025009,US,USA,840,25009,Essex,Massachusetts,US,42.6687626,-70.94687179,"Essex, Massachusetts, US",789034
-84025011,US,USA,840,25011,Franklin,Massachusetts,US,42.58119713,-72.58602547,"Franklin, Massachusetts, US",70180
-84025013,US,USA,840,25013,Hampden,Massachusetts,US,42.13440424,-72.63235561,"Hampden, Massachusetts, US",466372
-84025015,US,USA,840,25015,Hampshire,Massachusetts,US,42.33997957,-72.65898478,"Hampshire, Massachusetts, US",160830
-84025017,US,USA,840,25017,Middlesex,Massachusetts,US,42.48607732,-71.39049229,"Middlesex, Massachusetts, US",1611699
-84025019,US,USA,840,25019,Nantucket,Massachusetts,US,41.2942019,-70.08774729,"Nantucket, Massachusetts, US",11399
-84025021,US,USA,840,25021,Norfolk,Massachusetts,US,42.16073095,-71.20530408,"Norfolk, Massachusetts, US",706775
-84025023,US,USA,840,25023,Plymouth,Massachusetts,US,41.94070556,-70.80802823,"Plymouth, Massachusetts, US",521202
-84025025,US,USA,840,25025,Suffolk,Massachusetts,US,42.3279514,-71.07850442,"Suffolk, Massachusetts, US",803907
-84025027,US,USA,840,25027,Worcester,Massachusetts,US,42.35026951,-71.90493363,"Worcester, Massachusetts, US",830622
-84026001,US,USA,840,26001,Alcona,Michigan,US,44.6846864,-83.59507875,"Alcona, Michigan, US",10405
-84026003,US,USA,840,26003,Alger,Michigan,US,46.41292944,-86.60260122,"Alger, Michigan, US",9108
-84026005,US,USA,840,26005,Allegan,Michigan,US,42.59147037,-85.89102866,"Allegan, Michigan, US",118081
-84026007,US,USA,840,26007,Alpena,Michigan,US,45.03477666,-83.62212411,"Alpena, Michigan, US",28405
-84026009,US,USA,840,26009,Antrim,Michigan,US,44.99690221,-85.15503082,"Antrim, Michigan, US",23324
-84026011,US,USA,840,26011,Arenac,Michigan,US,44.0636262,-83.89277559,"Arenac, Michigan, US",14883
-84026013,US,USA,840,26013,Baraga,Michigan,US,46.6720582,-88.36363591,"Baraga, Michigan, US",8209
-84026015,US,USA,840,26015,Barry,Michigan,US,42.59513984,-85.30834519,"Barry, Michigan, US",61550
-84026017,US,USA,840,26017,Bay,Michigan,US,43.70639106,-83.98731479,"Bay, Michigan, US",103126
-84026019,US,USA,840,26019,Benzie,Michigan,US,44.63899297,-86.01608482,"Benzie, Michigan, US",17766
-84026021,US,USA,840,26021,Berrien,Michigan,US,41.95447397,-86.4131308,"Berrien, Michigan, US",153401
-84026023,US,USA,840,26023,Branch,Michigan,US,41.91600556,-85.05929476,"Branch, Michigan, US",43517
-84026025,US,USA,840,26025,Calhoun,Michigan,US,42.24633834,-85.00493569,"Calhoun, Michigan, US",134159
-84026027,US,USA,840,26027,Cass,Michigan,US,41.91522292,-85.99405727,"Cass, Michigan, US",51787
-84026029,US,USA,840,26029,Charlevoix,Michigan,US,45.37790017,-85.19614053,"Charlevoix, Michigan, US",26143
-84026031,US,USA,840,26031,Cheboygan,Michigan,US,45.44787015,-84.50122149,"Cheboygan, Michigan, US",25276
-84026033,US,USA,840,26033,Chippewa,Michigan,US,46.29552653,-84.54353449,"Chippewa, Michigan, US",37349
-84026035,US,USA,840,26035,Clare,Michigan,US,43.98794227,-84.8481986,"Clare, Michigan, US",30950
-84026037,US,USA,840,26037,Clinton,Michigan,US,42.94400871,-84.60145248,"Clinton, Michigan, US",79595
-84026039,US,USA,840,26039,Crawford,Michigan,US,44.68255561,-84.61006219,"Crawford, Michigan, US",14029
-84026041,US,USA,840,26041,Delta,Michigan,US,45.9048491,-86.9080745,"Delta, Michigan, US",35784
-84026043,US,USA,840,26043,Dickinson,Michigan,US,46.00999672,-87.86961634,"Dickinson, Michigan, US",25239
-84026045,US,USA,840,26045,Eaton,Michigan,US,42.59599185,-84.83740035,"Eaton, Michigan, US",110268
-84026047,US,USA,840,26047,Emmet,Michigan,US,45.52625509,-84.89083249,"Emmet, Michigan, US",33415
-84026049,US,USA,840,26049,Genesee,Michigan,US,43.02244215,-83.70589709,"Genesee, Michigan, US",405813
-84026051,US,USA,840,26051,Gladwin,Michigan,US,43.98901072,-84.38774817,"Gladwin, Michigan, US",25449
-84026053,US,USA,840,26053,Gogebic,Michigan,US,46.40862701,-89.69377193,"Gogebic, Michigan, US",13975
-84026055,US,USA,840,26055,Grand Traverse,Michigan,US,44.69565625,-85.55585247,"Grand Traverse, Michigan, US",93088
-84026057,US,USA,840,26057,Gratiot,Michigan,US,43.29265605,-84.60505416,"Gratiot, Michigan, US",40711
-84026059,US,USA,840,26059,Hillsdale,Michigan,US,41.88753639,-84.59312019,"Hillsdale, Michigan, US",45605
-84026061,US,USA,840,26061,Houghton,Michigan,US,46.89988536,-88.68495385,"Houghton, Michigan, US",35684
-84026063,US,USA,840,26063,Huron,Michigan,US,43.83353985,-83.04078453,"Huron, Michigan, US",30981
-84026065,US,USA,840,26065,Ingham,Michigan,US,42.59716886,-84.37472069,"Ingham, Michigan, US",292406
-84026067,US,USA,840,26067,Ionia,Michigan,US,42.94502238,-85.07413319,"Ionia, Michigan, US",64697
-84026069,US,USA,840,26069,Iosco,Michigan,US,44.35486835,-83.63484895,"Iosco, Michigan, US",25127
-84026071,US,USA,840,26071,Iron,Michigan,US,46.20974132,-88.53136251,"Iron, Michigan, US",11066
-84026073,US,USA,840,26073,Isabella,Michigan,US,43.64060976,-84.84664923,"Isabella, Michigan, US",69872
-84026075,US,USA,840,26075,Jackson,Michigan,US,42.24807035,-84.42258681,"Jackson, Michigan, US",158510
-84026077,US,USA,840,26077,Kalamazoo,Michigan,US,42.24542231,-85.53038622,"Kalamazoo, Michigan, US",265066
-84026079,US,USA,840,26079,Kalkaska,Michigan,US,44.68512729,-85.09085699,"Kalkaska, Michigan, US",18038
-84026081,US,USA,840,26081,Kent,Michigan,US,43.03197711,-85.54934642,"Kent, Michigan, US",656955
-84026083,US,USA,840,26083,Keweenaw,Michigan,US,47.63197653,-88.41434263,"Keweenaw, Michigan, US",2116
-84026085,US,USA,840,26085,Lake,Michigan,US,43.99050893,-85.802173,"Lake, Michigan, US",11853
-84026087,US,USA,840,26087,Lapeer,Michigan,US,43.09052506,-83.22153148,"Lapeer, Michigan, US",87607
-84026089,US,USA,840,26089,Leelanau,Michigan,US,44.94430054,-85.80150326,"Leelanau, Michigan, US",21761
-84026091,US,USA,840,26091,Lenawee,Michigan,US,41.89475156,-84.06603727,"Lenawee, Michigan, US",98451
-84026093,US,USA,840,26093,Livingston,Michigan,US,42.60302282,-83.91297209,"Livingston, Michigan, US",191995
-84026095,US,USA,840,26095,Luce,Michigan,US,46.47227431,-85.54471223,"Luce, Michigan, US",6229
-84026097,US,USA,840,26097,Mackinac,Michigan,US,46.07028979,-85.04980537,"Mackinac, Michigan, US",10799
-84026099,US,USA,840,26099,Macomb,Michigan,US,42.69158356,-82.92752801,"Macomb, Michigan, US",873972
-84026101,US,USA,840,26101,Manistee,Michigan,US,44.33352407,-86.05626916,"Manistee, Michigan, US",24558
-84026103,US,USA,840,26103,Marquette,Michigan,US,46.4338914,-87.64043701,"Marquette, Michigan, US",66699
-84026105,US,USA,840,26105,Mason,Michigan,US,43.99509218,-86.24988902,"Mason, Michigan, US",29144
-84026107,US,USA,840,26107,Mecosta,Michigan,US,43.64064262,-85.32463223,"Mecosta, Michigan, US",43453
-84026109,US,USA,840,26109,Menominee,Michigan,US,45.58038692,-87.55370409,"Menominee, Michigan, US",22780
-84026111,US,USA,840,26111,Midland,Michigan,US,43.64330771,-84.38804374,"Midland, Michigan, US",83156
-84026113,US,USA,840,26113,Missaukee,Michigan,US,44.33772443,-85.09256478,"Missaukee, Michigan, US",15118
-84026115,US,USA,840,26115,Monroe,Michigan,US,41.92734151,-83.53749864,"Monroe, Michigan, US",150500
-84026117,US,USA,840,26117,Montcalm,Michigan,US,43.31082541,-85.15252824,"Montcalm, Michigan, US",63888
-84026119,US,USA,840,26119,Montmorency,Michigan,US,45.0275929,-84.12696227,"Montmorency, Michigan, US",9328
-84026121,US,USA,840,26121,Muskegon,Michigan,US,43.29123859,-86.15176712,"Muskegon, Michigan, US",173566
-84026123,US,USA,840,26123,Newaygo,Michigan,US,43.554374,-85.80070107,"Newaygo, Michigan, US",48980
-84026125,US,USA,840,26125,Oakland,Michigan,US,42.66090111,-83.38595416,"Oakland, Michigan, US",1257584
-84026127,US,USA,840,26127,Oceana,Michigan,US,43.64124435,-86.26726673,"Oceana, Michigan, US",26467
-84026129,US,USA,840,26129,Ogemaw,Michigan,US,44.33481032,-84.12725175,"Ogemaw, Michigan, US",20997
-84026131,US,USA,840,26131,Ontonagon,Michigan,US,46.6652262,-89.31390481,"Ontonagon, Michigan, US",5720
-84026133,US,USA,840,26133,Osceola,Michigan,US,43.98992088,-85.32566756,"Osceola, Michigan, US",23460
-84026135,US,USA,840,26135,Oscoda,Michigan,US,44.68192279,-84.12939244,"Oscoda, Michigan, US",8241
-84026137,US,USA,840,26137,Otsego,Michigan,US,45.02085831,-84.59898295,"Otsego, Michigan, US",24668
-84026139,US,USA,840,26139,Ottawa,Michigan,US,42.95996803,-85.9969107,"Ottawa, Michigan, US",291830
-84026141,US,USA,840,26141,Presque Isle,Michigan,US,45.34018577,-83.91498656,"Presque Isle, Michigan, US",12592
-84026143,US,USA,840,26143,Roscommon,Michigan,US,44.33473082,-84.61067651,"Roscommon, Michigan, US",24019
-84026145,US,USA,840,26145,Saginaw,Michigan,US,43.33433923,-84.0513121,"Saginaw, Michigan, US",190539
-84026147,US,USA,840,26147,St. Clair,Michigan,US,42.92655373,-82.67937954,"St. Clair, Michigan, US",159128
-84026149,US,USA,840,26149,St. Joseph,Michigan,US,41.91441767,-85.52797979,"St. Joseph, Michigan, US",60964
-84026151,US,USA,840,26151,Sanilac,Michigan,US,43.42406072,-82.82055898,"Sanilac, Michigan, US",41170
-84026153,US,USA,840,26153,Schoolcraft,Michigan,US,46.19235734,-86.19972234,"Schoolcraft, Michigan, US",8094
-84026155,US,USA,840,26155,Shiawassee,Michigan,US,42.953928,-84.14585902,"Shiawassee, Michigan, US",68122
-84026157,US,USA,840,26157,Tuscola,Michigan,US,43.46606813,-83.41897025,"Tuscola, Michigan, US",52245
-84026159,US,USA,840,26159,Van Buren,Michigan,US,42.25190229,-86.01939087,"Van Buren, Michigan, US",75677
-84026161,US,USA,840,26161,Washtenaw,Michigan,US,42.253105,-83.83853204,"Washtenaw, Michigan, US",367601
-84026163,US,USA,840,26163,Wayne,Michigan,US,42.28098405,-83.281255,"Wayne, Michigan, US",1749343
-84026165,US,USA,840,26165,Wexford,Michigan,US,44.33853602,-85.57712739,"Wexford, Michigan, US",33631
-84027001,US,USA,840,27001,Aitkin,Minnesota,US,46.60962049,-93.4116826,"Aitkin, Minnesota, US",15886
-84027003,US,USA,840,27003,Anoka,Minnesota,US,45.27476015,-93.24604565,"Anoka, Minnesota, US",356921
-84027005,US,USA,840,27005,Becker,Minnesota,US,46.93479392,-95.67158144,"Becker, Minnesota, US",34423
-84027007,US,USA,840,27007,Beltrami,Minnesota,US,47.97373527,-94.93732139,"Beltrami, Minnesota, US",47188
-84027009,US,USA,840,27009,Benton,Minnesota,US,45.69804958,-93.99514135,"Benton, Minnesota, US",40889
-84027011,US,USA,840,27011,Big Stone,Minnesota,US,45.42712824,-96.41403739,"Big Stone, Minnesota, US",4991
-84027013,US,USA,840,27013,Blue Earth,Minnesota,US,44.03554215,-94.06699781,"Blue Earth, Minnesota, US",67653
-84027015,US,USA,840,27015,Brown,Minnesota,US,44.24205652,-94.72562874,"Brown, Minnesota, US",25008
-84027017,US,USA,840,27017,Carlton,Minnesota,US,46.59180601,-92.67601019,"Carlton, Minnesota, US",35871
-84027019,US,USA,840,27019,Carver,Minnesota,US,44.82017001,-93.8009918,"Carver, Minnesota, US",105089
-84027021,US,USA,840,27021,Cass,Minnesota,US,46.95043611,-94.32603968,"Cass, Minnesota, US",29779
-84027023,US,USA,840,27023,Chippewa,Minnesota,US,45.02343421,-95.56403693,"Chippewa, Minnesota, US",11800
-84027025,US,USA,840,27025,Chisago,Minnesota,US,45.5021011,-92.90861945,"Chisago, Minnesota, US",56579
-84027027,US,USA,840,27027,Clay,Minnesota,US,46.89289518,-96.48761922,"Clay, Minnesota, US",64222
-84027029,US,USA,840,27029,Clearwater,Minnesota,US,47.57992111,-95.37790562,"Clearwater, Minnesota, US",8818
-84027031,US,USA,840,27031,Cook,Minnesota,US,47.90504893,-90.52629546,"Cook, Minnesota, US",5463
-84027033,US,USA,840,27033,Cottonwood,Minnesota,US,44.00715262,-95.18138802,"Cottonwood, Minnesota, US",11196
-84027035,US,USA,840,27035,Crow Wing,Minnesota,US,46.48096553,-94.06755609,"Crow Wing, Minnesota, US",65055
-84027037,US,USA,840,27037,Dakota,Minnesota,US,44.67172617,-93.06299363,"Dakota, Minnesota, US",429021
-84027039,US,USA,840,27039,Dodge,Minnesota,US,44.02238415,-92.86244324,"Dodge, Minnesota, US",20934
-84027041,US,USA,840,27041,Douglas,Minnesota,US,45.93348491,-95.45335469,"Douglas, Minnesota, US",38141
-84027043,US,USA,840,27043,Faribault,Minnesota,US,43.67381499,-93.94787458,"Faribault, Minnesota, US",13653
-84027045,US,USA,840,27045,Fillmore,Minnesota,US,43.67394126,-92.08980382,"Fillmore, Minnesota, US",21067
-84027047,US,USA,840,27047,Freeborn,Minnesota,US,43.67385583,-93.34884422,"Freeborn, Minnesota, US",30281
-84027049,US,USA,840,27049,Goodhue,Minnesota,US,44.40849741,-92.7234195,"Goodhue, Minnesota, US",46340
-84027051,US,USA,840,27051,Grant,Minnesota,US,45.93424769,-96.01139609,"Grant, Minnesota, US",5972
-84027053,US,USA,840,27053,Hennepin,Minnesota,US,45.00761521,-93.47694895,"Hennepin, Minnesota, US",1265843
-84027055,US,USA,840,27055,Houston,Minnesota,US,43.67129565,-91.49143057,"Houston, Minnesota, US",18600
-84027057,US,USA,840,27057,Hubbard,Minnesota,US,47.10778564,-94.91693868,"Hubbard, Minnesota, US",21491
-84027059,US,USA,840,27059,Isanti,Minnesota,US,45.56181234,-93.29487636,"Isanti, Minnesota, US",40596
-84027061,US,USA,840,27061,Itasca,Minnesota,US,47.51009045,-93.63092229,"Itasca, Minnesota, US",45130
-84027063,US,USA,840,27063,Jackson,Minnesota,US,43.67423373,-95.15398258,"Jackson, Minnesota, US",9846
-84027065,US,USA,840,27065,Kanabec,Minnesota,US,45.9459309,-93.29275192,"Kanabec, Minnesota, US",16337
-84027067,US,USA,840,27067,Kandiyohi,Minnesota,US,45.1526059,-95.00586446,"Kandiyohi, Minnesota, US",43199
-84027069,US,USA,840,27069,Kittson,Minnesota,US,48.77754106,-96.78317184,"Kittson, Minnesota, US",4298
-84027071,US,USA,840,27071,Koochiching,Minnesota,US,48.24539665,-93.78352843,"Koochiching, Minnesota, US",12229
-84027073,US,USA,840,27073,Lac qui Parle,Minnesota,US,44.9973857,-96.17488219,"Lac qui Parle, Minnesota, US",6623
-84027075,US,USA,840,27075,Lake,Minnesota,US,47.64270764,-91.44557998,"Lake, Minnesota, US",10641
-84027077,US,USA,840,27077,Lake of the Woods,Minnesota,US,48.77217001,-94.90274472,"Lake of the Woods, Minnesota, US",3740
-84027079,US,USA,840,27079,Le Sueur,Minnesota,US,44.37136597,-93.72844721,"Le Sueur, Minnesota, US",28887
-84027081,US,USA,840,27081,Lincoln,Minnesota,US,44.41311883,-96.26688165,"Lincoln, Minnesota, US",5639
-84027083,US,USA,840,27083,Lyon,Minnesota,US,44.41327865,-95.83806103,"Lyon, Minnesota, US",25474
-84027085,US,USA,840,27085,McLeod,Minnesota,US,44.82367677,-94.27287017,"McLeod, Minnesota, US",35893
-84027087,US,USA,840,27087,Mahnomen,Minnesota,US,47.32557075,-95.80921485,"Mahnomen, Minnesota, US",5527
-84027089,US,USA,840,27089,Marshall,Minnesota,US,48.35825983,-96.37017407,"Marshall, Minnesota, US",9336
-84027091,US,USA,840,27091,Martin,Minnesota,US,43.67429718,-94.55099908,"Martin, Minnesota, US",19683
-84027093,US,USA,840,27093,Meeker,Minnesota,US,45.12328869,-94.52839455,"Meeker, Minnesota, US",23222
-84027095,US,USA,840,27095,Mille Lacs,Minnesota,US,45.93705297,-93.63236823,"Mille Lacs, Minnesota, US",26277
-84027097,US,USA,840,27097,Morrison,Minnesota,US,46.01265363,-94.27341528,"Morrison, Minnesota, US",33386
-84027099,US,USA,840,27099,Mower,Minnesota,US,43.67142874,-92.75234549,"Mower, Minnesota, US",40062
-84027101,US,USA,840,27101,Murray,Minnesota,US,44.02216709,-95.76328482,"Murray, Minnesota, US",8194
-84027103,US,USA,840,27103,Nicollet,Minnesota,US,44.35291112,-94.24710352,"Nicollet, Minnesota, US",34274
-84027105,US,USA,840,27105,Nobles,Minnesota,US,43.67434621,-95.75329576,"Nobles, Minnesota, US",21629
-84027107,US,USA,840,27107,Norman,Minnesota,US,47.32628443,-96.45620947,"Norman, Minnesota, US",6375
-84027109,US,USA,840,27109,Olmsted,Minnesota,US,44.00374114,-92.40209944,"Olmsted, Minnesota, US",158293
-84027111,US,USA,840,27111,Otter Tail,Minnesota,US,46.40846929,-95.70835255,"Otter Tail, Minnesota, US",58746
-84027113,US,USA,840,27113,Pennington,Minnesota,US,48.06642577,-96.0370814,"Pennington, Minnesota, US",14119
-84027115,US,USA,840,27115,Pine,Minnesota,US,46.12105238,-92.74070188,"Pine, Minnesota, US",29579
-84027117,US,USA,840,27117,Pipestone,Minnesota,US,44.02301619,-96.25841142,"Pipestone, Minnesota, US",9126
-84027119,US,USA,840,27119,Polk,Minnesota,US,47.77372465,-96.40134647,"Polk, Minnesota, US",31364
-84027121,US,USA,840,27121,Pope,Minnesota,US,45.58606667,-95.44451209,"Pope, Minnesota, US",11249
-84027123,US,USA,840,27123,Ramsey,Minnesota,US,45.01625271,-93.09872295,"Ramsey, Minnesota, US",550321
-84027125,US,USA,840,27125,Red Lake,Minnesota,US,47.87197525,-96.09561104,"Red Lake, Minnesota, US",4055
-84027127,US,USA,840,27127,Redwood,Minnesota,US,44.40555844,-95.25207021,"Redwood, Minnesota, US",15170
-84027129,US,USA,840,27129,Renville,Minnesota,US,44.72836381,-94.94553734,"Renville, Minnesota, US",14548
-84027131,US,USA,840,27131,Rice,Minnesota,US,44.3543376,-93.29658715,"Rice, Minnesota, US",66972
-84027133,US,USA,840,27133,Rock,Minnesota,US,43.67482683,-96.25296832,"Rock, Minnesota, US",9315
-84027135,US,USA,840,27135,Roseau,Minnesota,US,48.77501878,-95.81079919,"Roseau, Minnesota, US",15165
-84027137,US,USA,840,27137,St. Louis,Minnesota,US,47.6048407,-92.46879855,"St. Louis, Minnesota, US",199070
-84027139,US,USA,840,27139,Scott,Minnesota,US,44.6490231,-93.53340251,"Scott, Minnesota, US",149013
-84027141,US,USA,840,27141,Sherburne,Minnesota,US,45.44447208,-93.77617511,"Sherburne, Minnesota, US",97238
-84027143,US,USA,840,27143,Sibley,Minnesota,US,44.5796592,-94.23164924,"Sibley, Minnesota, US",14865
-84027145,US,USA,840,27145,Stearns,Minnesota,US,45.55192576,-94.61078221,"Stearns, Minnesota, US",161075
-84027147,US,USA,840,27147,Steele,Minnesota,US,44.02240351,-93.22627088,"Steele, Minnesota, US",36649
-84027149,US,USA,840,27149,Stevens,Minnesota,US,45.58613007,-96.00163705,"Stevens, Minnesota, US",9805
-84027151,US,USA,840,27151,Swift,Minnesota,US,45.2829032,-95.68264092,"Swift, Minnesota, US",9266
-84027153,US,USA,840,27153,Todd,Minnesota,US,46.06996226,-94.89785296,"Todd, Minnesota, US",24664
-84027155,US,USA,840,27155,Traverse,Minnesota,US,45.77298854,-96.47062949,"Traverse, Minnesota, US",3259
-84027157,US,USA,840,27157,Wabasha,Minnesota,US,44.28424356,-92.23121312,"Wabasha, Minnesota, US",21627
-84027159,US,USA,840,27159,Wadena,Minnesota,US,46.58589171,-94.96968506,"Wadena, Minnesota, US",13682
-84027161,US,USA,840,27161,Waseca,Minnesota,US,44.02211116,-93.58720034,"Waseca, Minnesota, US",18612
-84027163,US,USA,840,27163,Washington,Minnesota,US,45.03864533,-92.88429635,"Washington, Minnesota, US",262440
-84027165,US,USA,840,27165,Watonwan,Minnesota,US,43.97823903,-94.61413846,"Watonwan, Minnesota, US",10897
-84027167,US,USA,840,27167,Wilkin,Minnesota,US,46.35721532,-96.4684375,"Wilkin, Minnesota, US",6207
-84027169,US,USA,840,27169,Winona,Minnesota,US,43.98772283,-91.78081305,"Winona, Minnesota, US",50484
-84027171,US,USA,840,27171,Wright,Minnesota,US,45.17297924,-93.96234781,"Wright, Minnesota, US",138377
-84027173,US,USA,840,27173,Yellow Medicine,Minnesota,US,44.71710183,-95.86842453,"Yellow Medicine, Minnesota, US",9709
-84028001,US,USA,840,28001,Adams,Mississippi,US,31.47669768,-91.35326037,"Adams, Mississippi, US",30693
-84028003,US,USA,840,28003,Alcorn,Mississippi,US,34.88084463,-88.57996173,"Alcorn, Mississippi, US",36953
-84028005,US,USA,840,28005,Amite,Mississippi,US,31.17467303,-90.80501621,"Amite, Mississippi, US",12297
-84028007,US,USA,840,28007,Attala,Mississippi,US,33.08658803,-89.57838564,"Attala, Mississippi, US",18174
-84028009,US,USA,840,28009,Benton,Mississippi,US,34.81681228,-89.18945516,"Benton, Mississippi, US",8259
-84028011,US,USA,840,28011,Bolivar,Mississippi,US,33.79696941,-90.87372121,"Bolivar, Mississippi, US",30628
-84028013,US,USA,840,28013,Calhoun,Mississippi,US,33.93683395,-89.33686647,"Calhoun, Mississippi, US",14361
-84028015,US,USA,840,28015,Carroll,Mississippi,US,33.44834567,-89.91994479,"Carroll, Mississippi, US",9947
-84028017,US,USA,840,28017,Chickasaw,Mississippi,US,33.91983202,-88.9481545,"Chickasaw, Mississippi, US",17103
-84028019,US,USA,840,28019,Choctaw,Mississippi,US,33.34598242,-89.24809382,"Choctaw, Mississippi, US",8210
-84028021,US,USA,840,28021,Claiborne,Mississippi,US,31.97061673,-90.90702196,"Claiborne, Mississippi, US",8988
-84028023,US,USA,840,28023,Clarke,Mississippi,US,32.04158545,-88.6889622,"Clarke, Mississippi, US",15541
-84028025,US,USA,840,28025,Clay,Mississippi,US,33.65358105,-88.77784255,"Clay, Mississippi, US",19316
-84028027,US,USA,840,28027,Coahoma,Mississippi,US,34.22772299,-90.60415045,"Coahoma, Mississippi, US",22124
-84028029,US,USA,840,28029,Copiah,Mississippi,US,31.86977774,-90.44565118,"Copiah, Mississippi, US",28065
-84028031,US,USA,840,28031,Covington,Mississippi,US,31.63225413,-89.55389939,"Covington, Mississippi, US",18636
-84028033,US,USA,840,28033,DeSoto,Mississippi,US,34.87625235,-89.99091418,"DeSoto, Mississippi, US",184945
-84028035,US,USA,840,28035,Forrest,Mississippi,US,31.18961454,-89.25832496,"Forrest, Mississippi, US",74897
-84028037,US,USA,840,28037,Franklin,Mississippi,US,31.47786634,-90.89672989,"Franklin, Mississippi, US",7713
-84028039,US,USA,840,28039,George,Mississippi,US,30.86259065,-88.64436789,"George, Mississippi, US",24500
-84028041,US,USA,840,28041,Greene,Mississippi,US,31.21444233,-88.63922281,"Greene, Mississippi, US",13586
-84028043,US,USA,840,28043,Grenada,Mississippi,US,33.77036166,-89.80245083,"Grenada, Mississippi, US",20758
-84028045,US,USA,840,28045,Hancock,Mississippi,US,30.41830223,-89.48851033,"Hancock, Mississippi, US",47632
-84028047,US,USA,840,28047,Harrison,Mississippi,US,30.51359752,-89.12467576,"Harrison, Mississippi, US",208080
-84028049,US,USA,840,28049,Hinds,Mississippi,US,32.2656285,-90.44435448,"Hinds, Mississippi, US",231840
-84028051,US,USA,840,28051,Holmes,Mississippi,US,33.12345854,-90.08923538,"Holmes, Mississippi, US",17010
-84028053,US,USA,840,28053,Humphreys,Mississippi,US,33.12825718,-90.52252707,"Humphreys, Mississippi, US",8064
-84028055,US,USA,840,28055,Issaquena,Mississippi,US,32.72531359,-90.97392828,"Issaquena, Mississippi, US",1327
-84028057,US,USA,840,28057,Itawamba,Mississippi,US,34.27993475,-88.3606733,"Itawamba, Mississippi, US",23390
-84028059,US,USA,840,28059,Jackson,Mississippi,US,30.54020656,-88.64184064,"Jackson, Mississippi, US",143617
-84028061,US,USA,840,28061,Jasper,Mississippi,US,32.01922104,-89.11786866,"Jasper, Mississippi, US",16383
-84028063,US,USA,840,28063,Jefferson,Mississippi,US,31.73397872,-91.03764977,"Jefferson, Mississippi, US",6990
-84028065,US,USA,840,28065,Jefferson Davis,Mississippi,US,31.56884708,-89.8267099,"Jefferson Davis, Mississippi, US",11128
-84028067,US,USA,840,28067,Jones,Mississippi,US,31.62257767,-89.168969,"Jones, Mississippi, US",68098
-84028069,US,USA,840,28069,Kemper,Mississippi,US,32.75462946,-88.64105766,"Kemper, Mississippi, US",9742
-84028071,US,USA,840,28071,Lafayette,Mississippi,US,34.35687874,-89.48490961,"Lafayette, Mississippi, US",54019
-84028073,US,USA,840,28073,Lamar,Mississippi,US,31.20572971,-89.5077704,"Lamar, Mississippi, US",63343
-84028075,US,USA,840,28075,Lauderdale,Mississippi,US,32.40419769,-88.66229662,"Lauderdale, Mississippi, US",74125
-84028077,US,USA,840,28077,Lawrence,Mississippi,US,31.55147224,-90.10841127,"Lawrence, Mississippi, US",12586
-84028079,US,USA,840,28079,Leake,Mississippi,US,32.7536828,-89.52402044,"Leake, Mississippi, US",22786
-84028081,US,USA,840,28081,Lee,Mississippi,US,34.2918775,-88.68149954,"Lee, Mississippi, US",85436
-84028083,US,USA,840,28083,Leflore,Mississippi,US,33.55545125,-90.29900733,"Leflore, Mississippi, US",28183
-84028085,US,USA,840,28085,Lincoln,Mississippi,US,31.53288662,-90.45391915,"Lincoln, Mississippi, US",34153
-84028087,US,USA,840,28087,Lowndes,Mississippi,US,33.47386518,-88.4419153,"Lowndes, Mississippi, US",58595
-84028089,US,USA,840,28089,Madison,Mississippi,US,32.63389156,-90.03513564,"Madison, Mississippi, US",106272
-84028091,US,USA,840,28091,Marion,Mississippi,US,31.23132643,-89.8209217,"Marion, Mississippi, US",24573
-84028093,US,USA,840,28093,Marshall,Mississippi,US,34.76216286,-89.50299462,"Marshall, Mississippi, US",35294
-84028095,US,USA,840,28095,Monroe,Mississippi,US,33.89236763,-88.4808438,"Monroe, Mississippi, US",35252
-84028097,US,USA,840,28097,Montgomery,Mississippi,US,33.49419589,-89.61729103,"Montgomery, Mississippi, US",9775
-84028099,US,USA,840,28099,Neshoba,Mississippi,US,32.75339664,-89.11726492,"Neshoba, Mississippi, US",29118
-84028101,US,USA,840,28101,Newton,Mississippi,US,32.40021118,-89.11843336,"Newton, Mississippi, US",21018
-84028103,US,USA,840,28103,Noxubee,Mississippi,US,33.11009499,-88.56949061,"Noxubee, Mississippi, US",10417
-84028105,US,USA,840,28105,Oktibbeha,Mississippi,US,33.42491685,-88.87905132,"Oktibbeha, Mississippi, US",49587
-84028107,US,USA,840,28107,Panola,Mississippi,US,34.36398677,-89.95064249,"Panola, Mississippi, US",34192
-84028109,US,USA,840,28109,Pearl River,Mississippi,US,30.77090935,-89.58677275,"Pearl River, Mississippi, US",55535
-84028111,US,USA,840,28111,Perry,Mississippi,US,31.17161885,-88.99281835,"Perry, Mississippi, US",11973
-84028113,US,USA,840,28113,Pike,Mississippi,US,31.17507789,-90.40392572,"Pike, Mississippi, US",39288
-84028115,US,USA,840,28115,Pontotoc,Mississippi,US,34.226046,-89.03636807,"Pontotoc, Mississippi, US",32174
-84028117,US,USA,840,28117,Prentiss,Mississippi,US,34.61810501,-88.51986294,"Prentiss, Mississippi, US",25126
-84028119,US,USA,840,28119,Quitman,Mississippi,US,34.25157572,-90.28908,"Quitman, Mississippi, US",6792
-84028121,US,USA,840,28121,Rankin,Mississippi,US,32.26469147,-89.94537876,"Rankin, Mississippi, US",155271
-84028123,US,USA,840,28123,Scott,Mississippi,US,32.4067041,-89.53789439,"Scott, Mississippi, US",28124
-84028125,US,USA,840,28125,Sharkey,Mississippi,US,32.88149103,-90.8159538,"Sharkey, Mississippi, US",4321
-84028127,US,USA,840,28127,Simpson,Mississippi,US,31.91282117,-89.91716179,"Simpson, Mississippi, US",26658
-84028129,US,USA,840,28129,Smith,Mississippi,US,32.01744532,-89.50644846,"Smith, Mississippi, US",15916
-84028131,US,USA,840,28131,Stone,Mississippi,US,30.79187949,-89.11547539,"Stone, Mississippi, US",18336
-84028133,US,USA,840,28133,Sunflower,Mississippi,US,33.60192578,-90.58882684,"Sunflower, Mississippi, US",25110
-84028135,US,USA,840,28135,Tallahatchie,Mississippi,US,33.95339918,-90.1729398,"Tallahatchie, Mississippi, US",13809
-84028137,US,USA,840,28137,Tate,Mississippi,US,34.65133709,-89.94485778,"Tate, Mississippi, US",28321
-84028139,US,USA,840,28139,Tippah,Mississippi,US,34.76872156,-88.90988194,"Tippah, Mississippi, US",22015
-84028141,US,USA,840,28141,Tishomingo,Mississippi,US,34.74023475,-88.23917219,"Tishomingo, Mississippi, US",19383
-84028143,US,USA,840,28143,Tunica,Mississippi,US,34.64967704,-90.37481167,"Tunica, Mississippi, US",9632
-84028145,US,USA,840,28145,Union,Mississippi,US,34.49162015,-89.00776006,"Union, Mississippi, US",28815
-84028147,US,USA,840,28147,Walthall,Mississippi,US,31.14971548,-90.10446654,"Walthall, Mississippi, US",14286
-84028149,US,USA,840,28149,Warren,Mississippi,US,32.35810271,-90.83352619,"Warren, Mississippi, US",45381
-84028151,US,USA,840,28151,Washington,Mississippi,US,33.28392041,-90.94196237,"Washington, Mississippi, US",43909
-84028153,US,USA,840,28153,Wayne,Mississippi,US,31.64135687,-88.69573913,"Wayne, Mississippi, US",20183
-84028155,US,USA,840,28155,Webster,Mississippi,US,33.61300486,-89.28392912,"Webster, Mississippi, US",9689
-84028157,US,USA,840,28157,Wilkinson,Mississippi,US,31.16078225,-91.31018819,"Wilkinson, Mississippi, US",8630
-84028159,US,USA,840,28159,Winston,Mississippi,US,33.08747908,-89.03391385,"Winston, Mississippi, US",17955
-84028161,US,USA,840,28161,Yalobusha,Mississippi,US,34.02824175,-89.7076205,"Yalobusha, Mississippi, US",12108
-84028163,US,USA,840,28163,Yazoo,Mississippi,US,32.77890365,-90.39656148,"Yazoo, Mississippi, US",29690
-84029001,US,USA,840,29001,Adair,Missouri,US,40.19058551,-92.60078167,"Adair, Missouri, US",25343
-84029003,US,USA,840,29003,Andrew,Missouri,US,39.98492163,-94.80163024,"Andrew, Missouri, US",17712
-84029005,US,USA,840,29005,Atchison,Missouri,US,40.43238737,-95.42970639,"Atchison, Missouri, US",5143
-84029007,US,USA,840,29007,Audrain,Missouri,US,39.215877,-91.84242683,"Audrain, Missouri, US",25388
-84029009,US,USA,840,29009,Barry,Missouri,US,36.70978521,-93.82919888,"Barry, Missouri, US",35789
-84029011,US,USA,840,29011,Barton,Missouri,US,37.50207671,-94.34757022,"Barton, Missouri, US",11754
-84029013,US,USA,840,29013,Bates,Missouri,US,38.25271289,-94.34113157,"Bates, Missouri, US",16172
-84029015,US,USA,840,29015,Benton,Missouri,US,38.29503305,-93.28756116,"Benton, Missouri, US",19443
-84029017,US,USA,840,29017,Bollinger,Missouri,US,37.32449052,-90.02725304,"Bollinger, Missouri, US",12133
-84029019,US,USA,840,29019,Boone,Missouri,US,38.99186229,-92.30723575,"Boone, Missouri, US",180463
-84029021,US,USA,840,29021,Buchanan,Missouri,US,39.65816401,-94.80138942,"Buchanan, Missouri, US",87364
-84029023,US,USA,840,29023,Butler,Missouri,US,36.71462476,-90.40421163,"Butler, Missouri, US",42478
-84029025,US,USA,840,29025,Caldwell,Missouri,US,39.65620858,-93.98308093,"Caldwell, Missouri, US",9020
-84029027,US,USA,840,29027,Callaway,Missouri,US,38.83674754,-91.92186505,"Callaway, Missouri, US",44743
-84029029,US,USA,840,29029,Camden,Missouri,US,38.02199522,-92.76083747,"Camden, Missouri, US",46305
-84029031,US,USA,840,29031,Cape Girardeau,Missouri,US,37.38489388,-89.6843587,"Cape Girardeau, Missouri, US",78871
-84029033,US,USA,840,29033,Carroll,Missouri,US,39.42762566,-93.50626255,"Carroll, Missouri, US",8679
-84029035,US,USA,840,29035,Carter,Missouri,US,36.94160441,-90.96051322,"Carter, Missouri, US",5982
-84029037,US,USA,840,29037,Cass,Missouri,US,38.64789422,-94.353399,"Cass, Missouri, US",105780
-84029039,US,USA,840,29039,Cedar,Missouri,US,37.72391475,-93.85445441,"Cedar, Missouri, US",14349
-84029041,US,USA,840,29041,Chariton,Missouri,US,39.51499357,-92.9629191,"Chariton, Missouri, US",7426
-84029043,US,USA,840,29043,Christian,Missouri,US,36.9711783,-93.18537118,"Christian, Missouri, US",88595
-84029045,US,USA,840,29045,Clark,Missouri,US,40.41040752,-91.73661677,"Clark, Missouri, US",6797
-84029047,US,USA,840,29047,Clay,Missouri,US,39.31132056,-94.41850862,"Clay, Missouri, US",249948
-84029049,US,USA,840,29049,Clinton,Missouri,US,39.6013098,-94.40465394,"Clinton, Missouri, US",20387
-84029051,US,USA,840,29051,Cole,Missouri,US,38.50455671,-92.27860244,"Cole, Missouri, US",76745
-84029053,US,USA,840,29053,Cooper,Missouri,US,38.844478,-92.80896081,"Cooper, Missouri, US",17709
-84029055,US,USA,840,29055,Crawford,Missouri,US,37.97663738,-91.30528104,"Crawford, Missouri, US",23920
-84029057,US,USA,840,29057,Dade,Missouri,US,37.431814,-93.8503345,"Dade, Missouri, US",7561
-84029059,US,USA,840,29059,Dallas,Missouri,US,37.6811355,-93.02127031,"Dallas, Missouri, US",16878
-84029061,US,USA,840,29061,Daviess,Missouri,US,39.96145298,-93.98519678,"Daviess, Missouri, US",8278
-84029063,US,USA,840,29063,DeKalb,Missouri,US,39.89201062,-94.40476508,"DeKalb, Missouri, US",12547
-84029065,US,USA,840,29065,Dent,Missouri,US,37.60663134,-91.50790473,"Dent, Missouri, US",15573
-84029067,US,USA,840,29067,Douglas,Missouri,US,36.9325593,-92.49905109,"Douglas, Missouri, US",13185
-84029069,US,USA,840,29069,Dunklin,Missouri,US,36.27167174,-90.09122243,"Dunklin, Missouri, US",29131
-84029071,US,USA,840,29071,Franklin,Missouri,US,38.41127108,-91.07522826,"Franklin, Missouri, US",103967
-84029073,US,USA,840,29073,Gasconade,Missouri,US,38.43947277,-91.50847147,"Gasconade, Missouri, US",14706
-84029075,US,USA,840,29075,Gentry,Missouri,US,40.21097916,-94.40944419,"Gentry, Missouri, US",6571
-84029077,US,USA,840,29077,Greene,Missouri,US,37.2575872,-93.34230916,"Greene, Missouri, US",293086
-84029079,US,USA,840,29079,Grundy,Missouri,US,40.11406587,-93.56509276,"Grundy, Missouri, US",9850
-84029081,US,USA,840,29081,Harrison,Missouri,US,40.35570088,-93.99222144,"Harrison, Missouri, US",8352
-84029083,US,USA,840,29083,Henry,Missouri,US,38.38482826,-93.79293734,"Henry, Missouri, US",21824
-84029085,US,USA,840,29085,Hickory,Missouri,US,37.94163617,-93.3203037,"Hickory, Missouri, US",9544
-84029087,US,USA,840,29087,Holt,Missouri,US,40.09799248,-95.2163888,"Holt, Missouri, US",4403
-84029089,US,USA,840,29089,Howard,Missouri,US,39.1435761,-92.69756691,"Howard, Missouri, US",10001
-84029091,US,USA,840,29091,Howell,Missouri,US,36.77383887,-91.88683935,"Howell, Missouri, US",40117
-84029093,US,USA,840,29093,Iron,Missouri,US,37.55487945,-90.7735296,"Iron, Missouri, US",10125
-84029095,US,USA,840,29095,Jackson,Missouri,US,39.01002188,-94.34724536,"Jackson, Missouri, US",703011
-84029097,US,USA,840,29097,Jasper,Missouri,US,37.20351921,-94.34050458,"Jasper, Missouri, US",121328
-84029099,US,USA,840,29099,Jefferson,Missouri,US,38.25926778,-90.53870896,"Jefferson, Missouri, US",225081
-84029101,US,USA,840,29101,Johnson,Missouri,US,38.74719601,-93.80691168,"Johnson, Missouri, US",54062
-84029103,US,USA,840,29103,Knox,Missouri,US,40.12699751,-92.14780832,"Knox, Missouri, US",3959
-84029105,US,USA,840,29105,Laclede,Missouri,US,37.65896829,-92.5888493,"Laclede, Missouri, US",35723
-84029107,US,USA,840,29107,Lafayette,Missouri,US,39.06986886,-93.78076396,"Lafayette, Missouri, US",32708
-84029109,US,USA,840,29109,Lawrence,Missouri,US,37.10626634,-93.83293097,"Lawrence, Missouri, US",38355
-84029111,US,USA,840,29111,Lewis,Missouri,US,40.09673161,-91.72070156,"Lewis, Missouri, US",9776
-84029113,US,USA,840,29113,Lincoln,Missouri,US,39.05345619,-90.95588181,"Lincoln, Missouri, US",59013
-84029115,US,USA,840,29115,Linn,Missouri,US,39.87001769,-93.10704106,"Linn, Missouri, US",11920
-84029117,US,USA,840,29117,Livingston,Missouri,US,39.78110272,-93.54645978,"Livingston, Missouri, US",15227
-84029119,US,USA,840,29119,McDonald,Missouri,US,36.62869595,-94.34867205,"McDonald, Missouri, US",22837
-84029121,US,USA,840,29121,Macon,Missouri,US,39.83049768,-92.56453089,"Macon, Missouri, US",15117
-84029123,US,USA,840,29123,Madison,Missouri,US,37.47865134,-90.3467143,"Madison, Missouri, US",12088
-84029125,US,USA,840,29125,Maries,Missouri,US,38.16193985,-91.92249662,"Maries, Missouri, US",8697
-84029127,US,USA,840,29127,Marion,Missouri,US,39.80601912,-91.62203062,"Marion, Missouri, US",28530
-84029129,US,USA,840,29129,Mercer,Missouri,US,40.42212303,-93.5682959,"Mercer, Missouri, US",3617
-84029131,US,USA,840,29131,Miller,Missouri,US,38.21450288,-92.42610898,"Miller, Missouri, US",25619
-84029133,US,USA,840,29133,Mississippi,Missouri,US,36.82516239,-89.29505753,"Mississippi, Missouri, US",13180
-84029135,US,USA,840,29135,Moniteau,Missouri,US,38.63571781,-92.57976951,"Moniteau, Missouri, US",16132
-84029137,US,USA,840,29137,Monroe,Missouri,US,39.49593978,-92.00043978,"Monroe, Missouri, US",8644
-84029139,US,USA,840,29139,Montgomery,Missouri,US,38.94022054,-91.47000721,"Montgomery, Missouri, US",11551
-84029141,US,USA,840,29141,Morgan,Missouri,US,38.4181765,-92.88791859,"Morgan, Missouri, US",20627
-84029143,US,USA,840,29143,New Madrid,Missouri,US,36.59666326,-89.66070007,"New Madrid, Missouri, US",17076
-84029145,US,USA,840,29145,Newton,Missouri,US,36.90519407,-94.3394104,"Newton, Missouri, US",58236
-84029147,US,USA,840,29147,Nodaway,Missouri,US,40.36079813,-94.88133008,"Nodaway, Missouri, US",22092
-84029149,US,USA,840,29149,Oregon,Missouri,US,36.68710164,-91.4033755,"Oregon, Missouri, US",10529
-84029151,US,USA,840,29151,Osage,Missouri,US,38.46036182,-91.8613635,"Osage, Missouri, US",13615
-84029153,US,USA,840,29153,Ozark,Missouri,US,36.64916339,-92.44459066,"Ozark, Missouri, US",9174
-84029155,US,USA,840,29155,Pemiscot,Missouri,US,36.2130572,-89.78742322,"Pemiscot, Missouri, US",15805
-84029157,US,USA,840,29157,Perry,Missouri,US,37.70660776,-89.82741088,"Perry, Missouri, US",19136
-84029159,US,USA,840,29159,Pettis,Missouri,US,38.72798918,-93.28471706,"Pettis, Missouri, US",42339
-84029161,US,USA,840,29161,Phelps,Missouri,US,37.87736118,-91.79351727,"Phelps, Missouri, US",44573
-84029163,US,USA,840,29163,Pike,Missouri,US,39.34310674,-91.16980779,"Pike, Missouri, US",18302
-84029165,US,USA,840,29165,Platte,Missouri,US,39.38154439,-94.77068479,"Platte, Missouri, US",104418
-84029167,US,USA,840,29167,Polk,Missouri,US,37.6162296,-93.39828174,"Polk, Missouri, US",32149
-84029169,US,USA,840,29169,Pulaski,Missouri,US,37.82462075,-92.20783203,"Pulaski, Missouri, US",52607
-84029171,US,USA,840,29171,Putnam,Missouri,US,40.47942497,-93.02042674,"Putnam, Missouri, US",4696
-84029173,US,USA,840,29173,Ralls,Missouri,US,39.52817427,-91.51838643,"Ralls, Missouri, US",10309
-84029175,US,USA,840,29175,Randolph,Missouri,US,39.44007257,-92.4971374,"Randolph, Missouri, US",24748
-84029177,US,USA,840,29177,Ray,Missouri,US,39.3537468,-93.98905745,"Ray, Missouri, US",23018
-84029179,US,USA,840,29179,Reynolds,Missouri,US,37.36085952,-90.97009925,"Reynolds, Missouri, US",6270
-84029181,US,USA,840,29181,Ripley,Missouri,US,36.65460667,-90.85990261,"Ripley, Missouri, US",13288
-84029183,US,USA,840,29183,St. Charles,Missouri,US,38.77875681,-90.66662425,"St. Charles, Missouri, US",402022
-84029185,US,USA,840,29185,St. Clair,Missouri,US,38.03699437,-93.77631447,"St. Clair, Missouri, US",9397
-84029186,US,USA,840,29186,Ste. Genevieve,Missouri,US,37.89090059,-90.1949941,"Ste. Genevieve, Missouri, US",17894
-84029187,US,USA,840,29187,St. Francois,Missouri,US,37.81214171,-90.47598685,"St. Francois, Missouri, US",67215
-84029189,US,USA,840,29189,St. Louis,Missouri,US,38.6377004,-90.4458375,"St. Louis, Missouri, US",994205
-84029195,US,USA,840,29195,Saline,Missouri,US,39.13734288,-93.20259964,"Saline, Missouri, US",22761
-84029197,US,USA,840,29197,Schuyler,Missouri,US,40.46921489,-92.52311943,"Schuyler, Missouri, US",4660
-84029199,US,USA,840,29199,Scotland,Missouri,US,40.45214695,-92.14709064,"Scotland, Missouri, US",4902
-84029201,US,USA,840,29201,Scott,Missouri,US,37.05588075,-89.56474493,"Scott, Missouri, US",38280
-84029203,US,USA,840,29203,Shannon,Missouri,US,37.15772072,-91.40190382,"Shannon, Missouri, US",8166
-84029205,US,USA,840,29205,Shelby,Missouri,US,39.79742518,-92.07634971,"Shelby, Missouri, US",5930
-84029207,US,USA,840,29207,Stoddard,Missouri,US,36.85571651,-89.9444155,"Stoddard, Missouri, US",29025
-84029209,US,USA,840,29209,Stone,Missouri,US,36.75000327,-93.45256475,"Stone, Missouri, US",31952
-84029211,US,USA,840,29211,Sullivan,Missouri,US,40.2099105,-93.11150106,"Sullivan, Missouri, US",6089
-84029213,US,USA,840,29213,Taney,Missouri,US,36.65465345,-93.04075153,"Taney, Missouri, US",55928
-84029215,US,USA,840,29215,Texas,Missouri,US,37.31728859,-91.96564727,"Texas, Missouri, US",25398
-84029217,US,USA,840,29217,Vernon,Missouri,US,37.8457799,-94.34127305,"Vernon, Missouri, US",20563
-84029219,US,USA,840,29219,Warren,Missouri,US,38.76529479,-91.16124662,"Warren, Missouri, US",35649
-84029221,US,USA,840,29221,Washington,Missouri,US,37.96130078,-90.87948158,"Washington, Missouri, US",24730
-84029223,US,USA,840,29223,Wayne,Missouri,US,37.11303869,-90.46001416,"Wayne, Missouri, US",12873
-84029225,US,USA,840,29225,Webster,Missouri,US,37.2813734,-92.876329,"Webster, Missouri, US",39592
-84029227,US,USA,840,29227,Worth,Missouri,US,40.47945588,-94.42328751,"Worth, Missouri, US",2013
-84029229,US,USA,840,29229,Wright,Missouri,US,37.27029221,-92.46914488,"Wright, Missouri, US",18289
-84029510,US,USA,840,29510,St. Louis City,Missouri,US,38.63555736,-90.24349225,"St. Louis City, Missouri, US",300576
-84030001,US,USA,840,30001,Beaverhead,Montana,US,45.13434354,-112.8984694,"Beaverhead, Montana, US",9453
-84030003,US,USA,840,30003,Big Horn,Montana,US,45.42335905,-107.492347,"Big Horn, Montana, US",13319
-84030005,US,USA,840,30005,Blaine,Montana,US,48.43175214,-108.9582723,"Blaine, Montana, US",6681
-84030007,US,USA,840,30007,Broadwater,Montana,US,46.33277565,-111.4955813,"Broadwater, Montana, US",6237
-84030009,US,USA,840,30009,Carbon,Montana,US,45.22850116,-109.0274047,"Carbon, Montana, US",10725
-84030011,US,USA,840,30011,Carter,Montana,US,45.5197966,-104.5395536,"Carter, Montana, US",1252
-84030013,US,USA,840,30013,Cascade,Montana,US,47.30797024,-111.3467922,"Cascade, Montana, US",81366
-84030015,US,USA,840,30015,Chouteau,Montana,US,47.88084126,-110.4353362,"Chouteau, Montana, US",5635
-84030017,US,USA,840,30017,Custer,Montana,US,46.25319932,-105.5737526,"Custer, Montana, US",11402
-84030019,US,USA,840,30019,Daniels,Montana,US,48.78420029,-105.5476343,"Daniels, Montana, US",1690
-84030021,US,USA,840,30021,Dawson,Montana,US,47.26584855,-104.8944417,"Dawson, Montana, US",8613
-84030023,US,USA,840,30023,Deer Lodge,Montana,US,46.05953325,-113.073353,"Deer Lodge, Montana, US",9140
-84030025,US,USA,840,30025,Fallon,Montana,US,46.33478338,-104.4183565,"Fallon, Montana, US",2846
-84030027,US,USA,840,30027,Fergus,Montana,US,47.26331584,-109.2245206,"Fergus, Montana, US",11050
-84030029,US,USA,840,30029,Flathead,Montana,US,48.29575866,-114.0520569,"Flathead, Montana, US",103806
-84030031,US,USA,840,30031,Gallatin,Montana,US,45.54486106,-111.1692571,"Gallatin, Montana, US",114434
-84030033,US,USA,840,30033,Garfield,Montana,US,47.27545948,-107.0002351,"Garfield, Montana, US",1258
-84030035,US,USA,840,30035,Glacier,Montana,US,48.70513576,-112.9934235,"Glacier, Montana, US",13753
-84030037,US,USA,840,30037,Golden Valley,Montana,US,46.3816474,-109.1768522,"Golden Valley, Montana, US",821
-84030039,US,USA,840,30039,Granite,Montana,US,46.4060522,-113.4414186,"Granite, Montana, US",3379
-84030041,US,USA,840,30041,Hill,Montana,US,48.62879827,-110.1129252,"Hill, Montana, US",16484
-84030043,US,USA,840,30043,Jefferson,Montana,US,46.14907081,-112.094396,"Jefferson, Montana, US",12221
-84030045,US,USA,840,30045,Judith Basin,Montana,US,47.04581276,-110.2660688,"Judith Basin, Montana, US",2007
-84030047,US,USA,840,30047,Lake,Montana,US,47.64514965,-114.0898013,"Lake, Montana, US",30458
-84030049,US,USA,840,30049,Lewis and Clark,Montana,US,47.12610041,-112.394698,"Lewis and Clark, Montana, US",69432
-84030051,US,USA,840,30051,Liberty,Montana,US,48.56084317,-111.024307,"Liberty, Montana, US",2337
-84030053,US,USA,840,30053,Lincoln,Montana,US,48.54265777,-115.4046155,"Lincoln, Montana, US",19980
-84030055,US,USA,840,30055,McCone,Montana,US,47.64469406,-105.7944994,"McCone, Montana, US",1664
-84030057,US,USA,840,30057,Madison,Montana,US,45.30080065,-111.9173017,"Madison, Montana, US",8600
-84030059,US,USA,840,30059,Meagher,Montana,US,46.59907074,-110.8898557,"Meagher, Montana, US",1862
-84030061,US,USA,840,30061,Mineral,Montana,US,47.15283992,-115.0015239,"Mineral, Montana, US",4397
-84030063,US,USA,840,30063,Missoula,Montana,US,47.03728583,-113.9213508,"Missoula, Montana, US",119600
-84030065,US,USA,840,30065,Musselshell,Montana,US,46.49684637,-108.39498,"Musselshell, Montana, US",4633
-84030067,US,USA,840,30067,Park,Montana,US,45.48965095,-110.5264394,"Park, Montana, US",16606
-84030069,US,USA,840,30069,Petroleum,Montana,US,47.1182463,-108.2508876,"Petroleum, Montana, US",487
-84030071,US,USA,840,30071,Phillips,Montana,US,48.25936577,-107.9128511,"Phillips, Montana, US",3954
-84030073,US,USA,840,30073,Pondera,Montana,US,48.22773388,-112.2252703,"Pondera, Montana, US",5911
-84030075,US,USA,840,30075,Powder River,Montana,US,45.39617714,-105.636738,"Powder River, Montana, US",1682
-84030077,US,USA,840,30077,Powell,Montana,US,46.85538891,-112.9359164,"Powell, Montana, US",6890
-84030079,US,USA,840,30079,Prairie,Montana,US,46.86048047,-105.379384,"Prairie, Montana, US",1077
-84030081,US,USA,840,30081,Ravalli,Montana,US,46.08520862,-114.1189164,"Ravalli, Montana, US",43806
-84030083,US,USA,840,30083,Richland,Montana,US,47.78668011,-104.5610786,"Richland, Montana, US",10803
-84030085,US,USA,840,30085,Roosevelt,Montana,US,48.29607488,-105.0079268,"Roosevelt, Montana, US",11004
-84030087,US,USA,840,30087,Rosebud,Montana,US,46.23397237,-106.729288,"Rosebud, Montana, US",8937
-84030089,US,USA,840,30089,Sanders,Montana,US,47.67657534,-115.1329916,"Sanders, Montana, US",12113
-84030091,US,USA,840,30091,Sheridan,Montana,US,48.72085833,-104.503829,"Sheridan, Montana, US",3309
-84030093,US,USA,840,30093,Silver Bow,Montana,US,45.90018933,-112.6620092,"Silver Bow, Montana, US",34915
-84030095,US,USA,840,30095,Stillwater,Montana,US,45.67071407,-109.3950061,"Stillwater, Montana, US",9642
-84030097,US,USA,840,30097,Sweet Grass,Montana,US,45.81367654,-109.9425686,"Sweet Grass, Montana, US",3737
-84030099,US,USA,840,30099,Teton,Montana,US,47.83741052,-112.2410688,"Teton, Montana, US",6147
-84030101,US,USA,840,30101,Toole,Montana,US,48.65577551,-111.6942414,"Toole, Montana, US",4736
-84030103,US,USA,840,30103,Treasure,Montana,US,46.2097322,-107.2666516,"Treasure, Montana, US",696
-84030105,US,USA,840,30105,Valley,Montana,US,48.36435097,-106.6669635,"Valley, Montana, US",7396
-84030107,US,USA,840,30107,Wheatland,Montana,US,46.46652491,-109.8464636,"Wheatland, Montana, US",2126
-84030109,US,USA,840,30109,Wibaux,Montana,US,46.95925154,-104.2510927,"Wibaux, Montana, US",969
-84030111,US,USA,840,30111,Yellowstone,Montana,US,45.93955949,-108.2691486,"Yellowstone, Montana, US",161300
-84031001,US,USA,840,31001,Adams,Nebraska,US,40.5244942,-98.50117804,"Adams, Nebraska, US",31363
-84031003,US,USA,840,31003,Antelope,Nebraska,US,42.17695516,-98.0666283,"Antelope, Nebraska, US",6298
-84031005,US,USA,840,31005,Arthur,Nebraska,US,41.56896142,-101.6959559,"Arthur, Nebraska, US",463
-84031007,US,USA,840,31007,Banner,Nebraska,US,41.54634427,-103.7114332,"Banner, Nebraska, US",745
-84031009,US,USA,840,31009,Blaine,Nebraska,US,41.91311716,-99.97677845,"Blaine, Nebraska, US",465
-84031011,US,USA,840,31011,Boone,Nebraska,US,41.70759415,-98.06737183,"Boone, Nebraska, US",5192
-84031013,US,USA,840,31013,Box Butte,Nebraska,US,42.22079243,-103.0878834,"Box Butte, Nebraska, US",10783
-84031015,US,USA,840,31015,Boyd,Nebraska,US,42.8997274,-98.76486568,"Boyd, Nebraska, US",1919
-84031017,US,USA,840,31017,Brown,Nebraska,US,42.43018907,-99.92904055,"Brown, Nebraska, US",2955
-84031019,US,USA,840,31019,Buffalo,Nebraska,US,40.85486962,-99.07500296,"Buffalo, Nebraska, US",49659
-84031021,US,USA,840,31021,Burt,Nebraska,US,41.85056773,-96.32605633,"Burt, Nebraska, US",6459
-84031023,US,USA,840,31023,Butler,Nebraska,US,41.22703692,-97.13106306,"Butler, Nebraska, US",8016
-84031025,US,USA,840,31025,Cass,Nebraska,US,40.90899107,-96.13971217,"Cass, Nebraska, US",26248
-84031027,US,USA,840,31027,Cedar,Nebraska,US,42.5988851,-97.25311951,"Cedar, Nebraska, US",8402
-84031029,US,USA,840,31029,Chase,Nebraska,US,40.5237198,-101.6978026,"Chase, Nebraska, US",3924
-84031031,US,USA,840,31031,Cherry,Nebraska,US,42.54502621,-101.1244332,"Cherry, Nebraska, US",5689
-84031033,US,USA,840,31033,Cheyenne,Nebraska,US,41.21999357,-102.9941693,"Cheyenne, Nebraska, US",8910
-84031035,US,USA,840,31035,Clay,Nebraska,US,40.52439441,-98.05126296,"Clay, Nebraska, US",6203
-84031037,US,USA,840,31037,Colfax,Nebraska,US,41.57486951,-97.0868542,"Colfax, Nebraska, US",10709
-84031039,US,USA,840,31039,Cuming,Nebraska,US,41.91637624,-96.78730772,"Cuming, Nebraska, US",8846
-84031041,US,USA,840,31041,Custer,Nebraska,US,41.39374521,-99.72805369,"Custer, Nebraska, US",10777
-84031043,US,USA,840,31043,Dakota,Nebraska,US,42.39040144,-96.56656425,"Dakota, Nebraska, US",20026
-84031045,US,USA,840,31045,Dawes,Nebraska,US,42.71985036,-103.1313774,"Dawes, Nebraska, US",8589
-84031047,US,USA,840,31047,Dawson,Nebraska,US,40.87028216,-99.8201461,"Dawson, Nebraska, US",23595
-84031049,US,USA,840,31049,Deuel,Nebraska,US,41.11168186,-102.3333331,"Deuel, Nebraska, US",1794
-84031051,US,USA,840,31051,Dixon,Nebraska,US,42.49188363,-96.86782408,"Dixon, Nebraska, US",5636
-84031053,US,USA,840,31053,Dodge,Nebraska,US,41.58071748,-96.65598179,"Dodge, Nebraska, US",36565
-84031055,US,USA,840,31055,Douglas,Nebraska,US,41.29518299,-96.15085305,"Douglas, Nebraska, US",571327
-84031057,US,USA,840,31057,Dundy,Nebraska,US,40.17638677,-101.6876522,"Dundy, Nebraska, US",1693
-84031059,US,USA,840,31059,Fillmore,Nebraska,US,40.52458567,-97.59646937,"Fillmore, Nebraska, US",5462
-84031061,US,USA,840,31061,Franklin,Nebraska,US,40.17636348,-98.95299073,"Franklin, Nebraska, US",2979
-84031063,US,USA,840,31063,Frontier,Nebraska,US,40.52993007,-100.3924658,"Frontier, Nebraska, US",2627
-84031065,US,USA,840,31065,Furnas,Nebraska,US,40.17642064,-99.91247454,"Furnas, Nebraska, US",4676
-84031067,US,USA,840,31067,Gage,Nebraska,US,40.26186809,-96.68946704,"Gage, Nebraska, US",21513
-84031069,US,USA,840,31069,Garden,Nebraska,US,41.61703149,-102.3313973,"Garden, Nebraska, US",1837
-84031071,US,USA,840,31071,Garfield,Nebraska,US,41.91428955,-98.99111827,"Garfield, Nebraska, US",1969
-84031073,US,USA,840,31073,Gosper,Nebraska,US,40.51481965,-99.83020279,"Gosper, Nebraska, US",1990
-84031075,US,USA,840,31075,Grant,Nebraska,US,41.91528587,-101.740701,"Grant, Nebraska, US",623
-84031077,US,USA,840,31077,Greeley,Nebraska,US,41.56742671,-98.52150266,"Greeley, Nebraska, US",2356
-84031079,US,USA,840,31079,Hall,Nebraska,US,40.87257079,-98.50218293,"Hall, Nebraska, US",61353
-84031081,US,USA,840,31081,Hamilton,Nebraska,US,40.87349452,-98.02099117,"Hamilton, Nebraska, US",9324
-84031083,US,USA,840,31083,Harlan,Nebraska,US,40.17658508,-99.40438879,"Harlan, Nebraska, US",3380
-84031085,US,USA,840,31085,Hayes,Nebraska,US,40.52451972,-101.0603568,"Hayes, Nebraska, US",922
-84031087,US,USA,840,31087,Hitchcock,Nebraska,US,40.17609175,-101.0416477,"Hitchcock, Nebraska, US",2762
-84031089,US,USA,840,31089,Holt,Nebraska,US,42.45522056,-98.78402558,"Holt, Nebraska, US",10067
-84031091,US,USA,840,31091,Hooker,Nebraska,US,41.91586243,-101.1354293,"Hooker, Nebraska, US",682
-84031093,US,USA,840,31093,Howard,Nebraska,US,41.2200529,-98.5166499,"Howard, Nebraska, US",6445
-84031095,US,USA,840,31095,Jefferson,Nebraska,US,40.17584531,-97.142601,"Jefferson, Nebraska, US",7046
-84031097,US,USA,840,31097,Johnson,Nebraska,US,40.39257596,-96.26522753,"Johnson, Nebraska, US",5071
-84031099,US,USA,840,31099,Kearney,Nebraska,US,40.50663314,-98.94877182,"Kearney, Nebraska, US",6495
-84031101,US,USA,840,31101,Keith,Nebraska,US,41.19930341,-101.6620164,"Keith, Nebraska, US",8034
-84031103,US,USA,840,31103,Keya Paha,Nebraska,US,42.87990694,-99.71343729,"Keya Paha, Nebraska, US",806
-84031105,US,USA,840,31105,Kimball,Nebraska,US,41.19774275,-103.7148131,"Kimball, Nebraska, US",3632
-84031107,US,USA,840,31107,Knox,Nebraska,US,42.63758421,-97.89178836,"Knox, Nebraska, US",8332
-84031109,US,USA,840,31109,Lancaster,Nebraska,US,40.78416049,-96.68777155,"Lancaster, Nebraska, US",319090
-84031111,US,USA,840,31111,Lincoln,Nebraska,US,41.04658298,-100.7475374,"Lincoln, Nebraska, US",34914
-84031113,US,USA,840,31113,Logan,Nebraska,US,41.56650314,-100.4817851,"Logan, Nebraska, US",748
-84031115,US,USA,840,31115,Loup,Nebraska,US,41.91371961,-99.45440415,"Loup, Nebraska, US",664
-84031117,US,USA,840,31117,McPherson,Nebraska,US,41.56797682,-101.0599362,"McPherson, Nebraska, US",494
-84031119,US,USA,840,31119,Madison,Nebraska,US,41.91676024,-97.6005481,"Madison, Nebraska, US",35099
-84031121,US,USA,840,31121,Merrick,Nebraska,US,41.16624273,-98.0374887,"Merrick, Nebraska, US",7755
-84031123,US,USA,840,31123,Morrill,Nebraska,US,41.71711774,-103.0061405,"Morrill, Nebraska, US",4642
-84031125,US,USA,840,31125,Nance,Nebraska,US,41.39750195,-97.99327291,"Nance, Nebraska, US",3519
-84031127,US,USA,840,31127,Nemaha,Nebraska,US,40.38514847,-95.85433992,"Nemaha, Nebraska, US",6972
-84031129,US,USA,840,31129,Nuckolls,Nebraska,US,40.17637905,-98.04743961,"Nuckolls, Nebraska, US",4148
-84031131,US,USA,840,31131,Otoe,Nebraska,US,40.64843556,-96.13374142,"Otoe, Nebraska, US",16012
-84031133,US,USA,840,31133,Pawnee,Nebraska,US,40.13141096,-96.23705437,"Pawnee, Nebraska, US",2613
-84031135,US,USA,840,31135,Perkins,Nebraska,US,40.85082525,-101.6502942,"Perkins, Nebraska, US",2891
-84031137,US,USA,840,31137,Phelps,Nebraska,US,40.51156033,-99.41461667,"Phelps, Nebraska, US",9034
-84031139,US,USA,840,31139,Pierce,Nebraska,US,42.26434853,-97.60122773,"Pierce, Nebraska, US",7148
-84031141,US,USA,840,31141,Platte,Nebraska,US,41.57246836,-97.52144359,"Platte, Nebraska, US",33470
-84031143,US,USA,840,31143,Polk,Nebraska,US,41.18813488,-97.56630712,"Polk, Nebraska, US",5213
-84031145,US,USA,840,31145,Red Willow,Nebraska,US,40.1755688,-100.476998,"Red Willow, Nebraska, US",10724
-84031147,US,USA,840,31147,Richardson,Nebraska,US,40.1247415,-95.71755036,"Richardson, Nebraska, US",7865
-84031149,US,USA,840,31149,Rock,Nebraska,US,42.42252217,-99.44832069,"Rock, Nebraska, US",1357
-84031151,US,USA,840,31151,Saline,Nebraska,US,40.52418865,-97.14085859,"Saline, Nebraska, US",14224
-84031153,US,USA,840,31153,Sarpy,Nebraska,US,41.11314181,-96.11156432,"Sarpy, Nebraska, US",187196
-84031155,US,USA,840,31155,Saunders,Nebraska,US,41.2278103,-96.63773905,"Saunders, Nebraska, US",21578
-84031157,US,USA,840,31157,Scotts Bluff,Nebraska,US,41.85070896,-103.7080986,"Scotts Bluff, Nebraska, US",35618
-84031159,US,USA,840,31159,Seward,Nebraska,US,40.87241834,-97.139673,"Seward, Nebraska, US",17284
-84031161,US,USA,840,31161,Sheridan,Nebraska,US,42.50284406,-102.4126613,"Sheridan, Nebraska, US",5246
-84031163,US,USA,840,31163,Sherman,Nebraska,US,41.22045983,-98.97588642,"Sherman, Nebraska, US",3001
-84031165,US,USA,840,31165,Sioux,Nebraska,US,42.48932059,-103.7576544,"Sioux, Nebraska, US",1166
-84031167,US,USA,840,31167,Stanton,Nebraska,US,41.9169835,-97.19394708,"Stanton, Nebraska, US",5920
-84031169,US,USA,840,31169,Thayer,Nebraska,US,40.17626377,-97.59504381,"Thayer, Nebraska, US",5003
-84031171,US,USA,840,31171,Thomas,Nebraska,US,41.91358968,-100.5556632,"Thomas, Nebraska, US",722
-84031173,US,USA,840,31173,Thurston,Nebraska,US,42.15725356,-96.54157099,"Thurston, Nebraska, US",7224
-84031175,US,USA,840,31175,Valley,Nebraska,US,41.56730777,-98.98197724,"Valley, Nebraska, US",4158
-84031177,US,USA,840,31177,Washington,Nebraska,US,41.52815707,-96.22019892,"Washington, Nebraska, US",20729
-84031179,US,USA,840,31179,Wayne,Nebraska,US,42.20934475,-97.11926964,"Wayne, Nebraska, US",9385
-84031181,US,USA,840,31181,Webster,Nebraska,US,40.17642643,-98.50019851,"Webster, Nebraska, US",3487
-84031183,US,USA,840,31183,Wheeler,Nebraska,US,41.91482725,-98.52798941,"Wheeler, Nebraska, US",783
-84031185,US,USA,840,31185,York,Nebraska,US,40.87272618,-97.59710186,"York, Nebraska, US",13679
-84032001,US,USA,840,32001,Churchill,Nevada,US,39.58105744,-118.3394607,"Churchill, Nevada, US",24909
-84032003,US,USA,840,32003,Clark,Nevada,US,36.21458855,-115.0130241,"Clark, Nevada, US",2266715
-84032005,US,USA,840,32005,Douglas,Nevada,US,38.912862,-119.6171333,"Douglas, Nevada, US",48905
-84032007,US,USA,840,32007,Elko,Nevada,US,41.14531606,-115.3577619,"Elko, Nevada, US",52778
-84032009,US,USA,840,32009,Esmeralda,Nevada,US,37.78436681,-117.6319999,"Esmeralda, Nevada, US",873
-84032011,US,USA,840,32011,Eureka,Nevada,US,39.98100864,-116.2683204,"Eureka, Nevada, US",2029
-84032013,US,USA,840,32013,Humboldt,Nevada,US,41.40692186,-118.1109427,"Humboldt, Nevada, US",16831
-84032015,US,USA,840,32015,Lander,Nevada,US,39.9332233,-117.0397075,"Lander, Nevada, US",5532
-84032017,US,USA,840,32017,Lincoln,Nevada,US,37.64268459,-114.8790388,"Lincoln, Nevada, US",5183
-84032019,US,USA,840,32019,Lyon,Nevada,US,39.01777974,-119.1870479,"Lyon, Nevada, US",57510
-84032021,US,USA,840,32021,Mineral,Nevada,US,38.53841696,-118.4344506,"Mineral, Nevada, US",4505
-84032023,US,USA,840,32023,Nye,Nevada,US,38.04264256,-116.4722702,"Nye, Nevada, US",46523
-84032027,US,USA,840,32027,Pershing,Nevada,US,40.44003782,-118.4005641,"Pershing, Nevada, US",6725
-84032029,US,USA,840,32029,Storey,Nevada,US,39.44875482,-119.5250207,"Storey, Nevada, US",4123
-84032031,US,USA,840,32031,Washoe,Nevada,US,40.66562265,-119.6631594,"Washoe, Nevada, US",471519
-84032033,US,USA,840,32033,White Pine,Nevada,US,39.44157041,-114.899966,"White Pine, Nevada, US",9580
-84032510,US,USA,840,32510,Carson City,Nevada,US,39.15509045,-119.7480219,"Carson City, Nevada, US",55916
-84033001,US,USA,840,33001,Belknap,New Hampshire,US,43.51637314,-71.41684235,"Belknap, New Hampshire, US",61303
-84033003,US,USA,840,33003,Carroll,New Hampshire,US,43.87498583,-71.20430216,"Carroll, New Hampshire, US",48910
-84033005,US,USA,840,33005,Cheshire,New Hampshire,US,42.92015988,-72.25311043,"Cheshire, New Hampshire, US",76085
-84033007,US,USA,840,33007,Coos,New Hampshire,US,44.69063265,-71.30633239,"Coos, New Hampshire, US",31563
-84033009,US,USA,840,33009,Grafton,New Hampshire,US,43.93779815,-71.82057197,"Grafton, New Hampshire, US",89886
-84033011,US,USA,840,33011,Hillsborough,New Hampshire,US,42.91537785,-71.7200253,"Hillsborough, New Hampshire, US",417025
-84033013,US,USA,840,33013,Merrimack,New Hampshire,US,43.29662971,-71.6811573,"Merrimack, New Hampshire, US",151391
-84033015,US,USA,840,33015,Rockingham,New Hampshire,US,42.98499744,-71.12883377,"Rockingham, New Hampshire, US",309769
-84033017,US,USA,840,33017,Strafford,New Hampshire,US,43.291833,-71.02336013,"Strafford, New Hampshire, US",130633
-84033019,US,USA,840,33019,Sullivan,New Hampshire,US,43.36094111,-72.22203125,"Sullivan, New Hampshire, US",43146
-84034001,US,USA,840,34001,Atlantic,New Jersey,US,39.47538693,-74.65848483,"Atlantic, New Jersey, US",263670
-84034003,US,USA,840,34003,Bergen,New Jersey,US,40.96010917,-74.07164325,"Bergen, New Jersey, US",932202
-84034005,US,USA,840,34005,Burlington,New Jersey,US,39.87681124,-74.66927768,"Burlington, New Jersey, US",445349
-84034007,US,USA,840,34007,Camden,New Jersey,US,39.80343818,-74.96388753,"Camden, New Jersey, US",506471
-84034009,US,USA,840,34009,Cape May,New Jersey,US,39.15008829,-74.80170244,"Cape May, New Jersey, US",92039
-84034011,US,USA,840,34011,Cumberland,New Jersey,US,39.37199394,-75.10712559,"Cumberland, New Jersey, US",149527
-84034013,US,USA,840,34013,Essex,New Jersey,US,40.78681335,-74.24657979,"Essex, New Jersey, US",798975
-84034015,US,USA,840,34015,Gloucester,New Jersey,US,39.71581067,-75.13995546,"Gloucester, New Jersey, US",291636
-84034017,US,USA,840,34017,Hudson,New Jersey,US,40.73766234,-74.07515667,"Hudson, New Jersey, US",672391
-84034019,US,USA,840,34019,Hunterdon,New Jersey,US,40.56335249,-74.91284156,"Hunterdon, New Jersey, US",124371
-84034021,US,USA,840,34021,Mercer,New Jersey,US,40.28047017,-74.70479631,"Mercer, New Jersey, US",367430
-84034023,US,USA,840,34023,Middlesex,New Jersey,US,40.43629879,-74.41426991,"Middlesex, New Jersey, US",825062
-84034025,US,USA,840,34025,Monmouth,New Jersey,US,40.26549699,-74.22240686,"Monmouth, New Jersey, US",618795
-84034027,US,USA,840,34027,Morris,New Jersey,US,40.86095313,-74.5455371,"Morris, New Jersey, US",491845
-84034029,US,USA,840,34029,Ocean,New Jersey,US,39.8895449,-74.28089251,"Ocean, New Jersey, US",607186
-84034031,US,USA,840,34031,Passaic,New Jersey,US,41.03238628,-74.29954144,"Passaic, New Jersey, US",501826
-84034033,US,USA,840,34033,Salem,New Jersey,US,39.58719656,-75.3469663,"Salem, New Jersey, US",62385
-84034035,US,USA,840,34035,Somerset,New Jersey,US,40.56465737,-74.61683016,"Somerset, New Jersey, US",328934
-84034037,US,USA,840,34037,Sussex,New Jersey,US,41.13891592,-74.69118243,"Sussex, New Jersey, US",140488
-84034039,US,USA,840,34039,Union,New Jersey,US,40.65835409,-74.30680092,"Union, New Jersey, US",556341
-84034041,US,USA,840,34041,Warren,New Jersey,US,40.85951833,-74.99556527,"Warren, New Jersey, US",105267
-84035001,US,USA,840,35001,Bernalillo,New Mexico,US,35.05163625,-106.6703554,"Bernalillo, New Mexico, US",679121
-84035003,US,USA,840,35003,Catron,New Mexico,US,33.91514144,-108.4046587,"Catron, New Mexico, US",3527
-84035005,US,USA,840,35005,Chaves,New Mexico,US,33.36406072,-104.4665365,"Chaves, New Mexico, US",64615
-84035006,US,USA,840,35006,Cibola,New Mexico,US,34.91131525,-107.998876,"Cibola, New Mexico, US",26675
-84035007,US,USA,840,35007,Colfax,New Mexico,US,36.60569702,-104.6472674,"Colfax, New Mexico, US",11941
-84035009,US,USA,840,35009,Curry,New Mexico,US,34.57421077,-103.3468876,"Curry, New Mexico, US",48954
-84035011,US,USA,840,35011,De Baca,New Mexico,US,34.34274529,-104.4117842,"De Baca, New Mexico, US",1748
-84035013,US,USA,840,35013,Dona Ana,New Mexico,US,32.35275771,-106.8329387,"Dona Ana, New Mexico, US",218195
-84035015,US,USA,840,35015,Eddy,New Mexico,US,32.47167456,-104.3053527,"Eddy, New Mexico, US",58460
-84035017,US,USA,840,35017,Grant,New Mexico,US,32.73911281,-108.3827845,"Grant, New Mexico, US",26998
-84035019,US,USA,840,35019,Guadalupe,New Mexico,US,34.86319296,-104.790669,"Guadalupe, New Mexico, US",4300
-84035021,US,USA,840,35021,Harding,New Mexico,US,35.85751555,-103.8220938,"Harding, New Mexico, US",625
-84035023,US,USA,840,35023,Hidalgo,New Mexico,US,31.91383467,-108.7151824,"Hidalgo, New Mexico, US",4198
-84035025,US,USA,840,35025,Lea,New Mexico,US,32.79215361,-103.4123733,"Lea, New Mexico, US",71070
-84035027,US,USA,840,35027,Lincoln,New Mexico,US,33.74526079,-105.4586166,"Lincoln, New Mexico, US",19572
-84035028,US,USA,840,35028,Los Alamos,New Mexico,US,35.86631386,-106.3134985,"Los Alamos, New Mexico, US",19369
-84035029,US,USA,840,35029,Luna,New Mexico,US,32.18179341,-107.7508826,"Luna, New Mexico, US",23709
-84035031,US,USA,840,35031,McKinley,New Mexico,US,35.5800772,-108.262245,"McKinley, New Mexico, US",71367
-84035033,US,USA,840,35033,Mora,New Mexico,US,36.01095101,-104.9497716,"Mora, New Mexico, US",4521
-84035035,US,USA,840,35035,Otero,New Mexico,US,32.61348406,-105.7417604,"Otero, New Mexico, US",67490
-84035037,US,USA,840,35037,Quay,New Mexico,US,35.10403332,-103.5481727,"Quay, New Mexico, US",8253
-84035039,US,USA,840,35039,Rio Arriba,New Mexico,US,36.51072137,-106.6931674,"Rio Arriba, New Mexico, US",38921
-84035041,US,USA,840,35041,Roosevelt,New Mexico,US,34.02097406,-103.4799493,"Roosevelt, New Mexico, US",18500
-84035043,US,USA,840,35043,Sandoval,New Mexico,US,35.68862401,-106.8687803,"Sandoval, New Mexico, US",146748
-84035045,US,USA,840,35045,San Juan,New Mexico,US,36.50838318,-108.320437,"San Juan, New Mexico, US",123958
-84035047,US,USA,840,35047,San Miguel,New Mexico,US,35.48014807,-104.8163562,"San Miguel, New Mexico, US",27277
-84035049,US,USA,840,35049,Santa Fe,New Mexico,US,35.50708973,-105.9774716,"Santa Fe, New Mexico, US",150358
-84035051,US,USA,840,35051,Sierra,New Mexico,US,33.13028233,-107.1925893,"Sierra, New Mexico, US",10791
-84035053,US,USA,840,35053,Socorro,New Mexico,US,34.00715494,-106.9298354,"Socorro, New Mexico, US",16637
-84035055,US,USA,840,35055,Taos,New Mexico,US,36.58006022,-105.6310198,"Taos, New Mexico, US",32723
-84035057,US,USA,840,35057,Torrance,New Mexico,US,34.64048375,-105.8508949,"Torrance, New Mexico, US",15461
-84035059,US,USA,840,35059,Union,New Mexico,US,36.48126404,-103.4709624,"Union, New Mexico, US",4059
-84035061,US,USA,840,35061,Valencia,New Mexico,US,34.71669834,-106.8103733,"Valencia, New Mexico, US",76688
-84036001,US,USA,840,36001,Albany,New York,US,42.60060306,-73.97723916,"Albany, New York, US",305506
-84036003,US,USA,840,36003,Allegany,New York,US,42.25748406,-78.02750466,"Allegany, New York, US",46091
-84036005,US,USA,840,36005,Bronx,New York,US,40.85209301,-73.86282755,"Bronx, New York, US",1418207
-84036007,US,USA,840,36007,Broome,New York,US,42.15903158,-75.81326086,"Broome, New York, US",190488
-84036009,US,USA,840,36009,Cattaraugus,New York,US,42.24778241,-78.67923096,"Cattaraugus, New York, US",76117
-84036011,US,USA,840,36011,Cayuga,New York,US,42.91261714,-76.55731592,"Cayuga, New York, US",76576
-84036013,US,USA,840,36013,Chautauqua,New York,US,42.2276921,-79.36691763,"Chautauqua, New York, US",126903
-84036015,US,USA,840,36015,Chemung,New York,US,42.13891056,-76.7638805,"Chemung, New York, US",83456
-84036017,US,USA,840,36017,Chenango,New York,US,42.49430041,-75.60887553,"Chenango, New York, US",47207
-84036019,US,USA,840,36019,Clinton,New York,US,44.74530905,-73.67875352,"Clinton, New York, US",80485
-84036021,US,USA,840,36021,Columbia,New York,US,42.24819348,-73.63089095,"Columbia, New York, US",59461
-84036023,US,USA,840,36023,Cortland,New York,US,42.59509207,-76.07048931,"Cortland, New York, US",47581
-84036025,US,USA,840,36025,Delaware,New York,US,42.19837623,-74.96709306,"Delaware, New York, US",44135
-84036027,US,USA,840,36027,Dutchess,New York,US,41.7648606,-73.74356679,"Dutchess, New York, US",294218
-84036029,US,USA,840,36029,Erie,New York,US,42.76249024,-78.73063652,"Erie, New York, US",918702
-84036031,US,USA,840,36031,Essex,New York,US,44.11630765,-73.77297842,"Essex, New York, US",36885
-84036033,US,USA,840,36033,Franklin,New York,US,44.59040891,-74.29926032,"Franklin, New York, US",50022
-84036035,US,USA,840,36035,Fulton,New York,US,43.11363907,-74.41798804,"Fulton, New York, US",53383
-84036037,US,USA,840,36037,Genesee,New York,US,43.0022601,-78.19135193,"Genesee, New York, US",57280
-84036039,US,USA,840,36039,Greene,New York,US,42.275797,-74.12384884,"Greene, New York, US",47188
-84036041,US,USA,840,36041,Hamilton,New York,US,43.66146647,-74.49721957,"Hamilton, New York, US",4416
-84036043,US,USA,840,36043,Herkimer,New York,US,43.42034246,-74.96145307,"Herkimer, New York, US",61319
-84036045,US,USA,840,36045,Jefferson,New York,US,44.04200959,-75.94653457,"Jefferson, New York, US",109834
-84036047,US,USA,840,36047,Kings,New York,US,40.6361825,-73.94935552,"Kings, New York, US",2559903
-84036049,US,USA,840,36049,Lewis,New York,US,43.7844157,-75.44903992,"Lewis, New York, US",26296
-84036051,US,USA,840,36051,Livingston,New York,US,42.72596275,-77.77966158,"Livingston, New York, US",62914
-84036053,US,USA,840,36053,Madison,New York,US,42.91653905,-75.67266639,"Madison, New York, US",70941
-84036055,US,USA,840,36055,Monroe,New York,US,43.14638895,-77.69322942,"Monroe, New York, US",741770
-84036057,US,USA,840,36057,Montgomery,New York,US,42.90123494,-74.44011632,"Montgomery, New York, US",49221
-84036059,US,USA,840,36059,Nassau,New York,US,40.74066522,-73.58941873,"Nassau, New York, US",1356924
-84036061,US,USA,840,36061,New York City,New York,US,40.7672726,-73.97152637,"New York City, New York, US",8336817
-84036063,US,USA,840,36063,Niagara,New York,US,43.19898042,-78.74777412,"Niagara, New York, US",209281
-84036065,US,USA,840,36065,Oneida,New York,US,43.24375382,-75.43710392,"Oneida, New York, US",228671
-84036067,US,USA,840,36067,Onondaga,New York,US,43.00491923,-76.19971155,"Onondaga, New York, US",460528
-84036069,US,USA,840,36069,Ontario,New York,US,42.85145728,-77.30874425,"Ontario, New York, US",109777
-84036071,US,USA,840,36071,Orange,New York,US,41.40337468,-74.30240757,"Orange, New York, US",384940
-84036073,US,USA,840,36073,Orleans,New York,US,43.2516977,-78.2320066,"Orleans, New York, US",40352
-84036075,US,USA,840,36075,Oswego,New York,US,43.42778894,-76.14635194,"Oswego, New York, US",117124
-84036077,US,USA,840,36077,Otsego,New York,US,42.63492579,-75.03151402,"Otsego, New York, US",59493
-84036079,US,USA,840,36079,Putnam,New York,US,41.42630093,-73.74965532,"Putnam, New York, US",98320
-84036081,US,USA,840,36081,Queens,New York,US,40.71088124,-73.81684712,"Queens, New York, US",2253858
-84036083,US,USA,840,36083,Rensselaer,New York,US,42.71348136,-73.51089874,"Rensselaer, New York, US",158714
-84036085,US,USA,840,36085,Richmond,New York,US,40.58582155,-74.14808598,"Richmond, New York, US",476143
-84036087,US,USA,840,36087,Rockland,New York,US,41.15027894,-74.02560498,"Rockland, New York, US",325789
-84036089,US,USA,840,36089,St. Lawrence,New York,US,44.4976179,-75.06550039,"St. Lawrence, New York, US",107740
-84036091,US,USA,840,36091,Saratoga,New York,US,43.10904162,-73.86653895,"Saratoga, New York, US",229863
-84036093,US,USA,840,36093,Schenectady,New York,US,42.81668777,-74.05278291,"Schenectady, New York, US",155299
-84036095,US,USA,840,36095,Schoharie,New York,US,42.58831742,-74.4433903,"Schoharie, New York, US",30999
-84036097,US,USA,840,36097,Schuyler,New York,US,42.39184015,-76.8773299,"Schuyler, New York, US",17807
-84036099,US,USA,840,36099,Seneca,New York,US,42.78081007,-76.82497064,"Seneca, New York, US",34016
-84036101,US,USA,840,36101,Steuben,New York,US,42.2689144,-77.3829924,"Steuben, New York, US",95379
-84036103,US,USA,840,36103,Suffolk,New York,US,40.88320119,-72.8012172,"Suffolk, New York, US",1476601
-84036105,US,USA,840,36105,Sullivan,New York,US,41.71579493,-74.76394559,"Sullivan, New York, US",75432
-84036107,US,USA,840,36107,Tioga,New York,US,42.16852837,-76.30835812,"Tioga, New York, US",48203
-84036109,US,USA,840,36109,Tompkins,New York,US,42.44945765,-76.47229843,"Tompkins, New York, US",102180
-84036111,US,USA,840,36111,Ulster,New York,US,41.89027881,-74.26252104,"Ulster, New York, US",177573
-84036113,US,USA,840,36113,Warren,New York,US,43.56173026,-73.8433699,"Warren, New York, US",63944
-84036115,US,USA,840,36115,Washington,New York,US,43.31153794,-73.43043448,"Washington, New York, US",61204
-84036117,US,USA,840,36117,Wayne,New York,US,43.15494365,-77.02976528,"Wayne, New York, US",89918
-84036119,US,USA,840,36119,Westchester,New York,US,41.16278376,-73.75741653,"Westchester, New York, US",967506
-84036121,US,USA,840,36121,Wyoming,New York,US,42.70145109,-78.22199579,"Wyoming, New York, US",39859
-84036123,US,USA,840,36123,Yates,New York,US,42.63505484,-77.10369919,"Yates, New York, US",24913
-84037001,US,USA,840,37001,Alamance,North Carolina,US,36.0434701,-79.39976137,"Alamance, North Carolina, US",169509
-84037003,US,USA,840,37003,Alexander,North Carolina,US,35.9223796,-81.17751948,"Alexander, North Carolina, US",37497
-84037005,US,USA,840,37005,Alleghany,North Carolina,US,36.49360862,-81.12857041,"Alleghany, North Carolina, US",11137
-84037007,US,USA,840,37007,Anson,North Carolina,US,34.97403241,-80.09953279,"Anson, North Carolina, US",24446
-84037009,US,USA,840,37009,Ashe,North Carolina,US,36.43296207,-81.49862729,"Ashe, North Carolina, US",27203
-84037011,US,USA,840,37011,Avery,North Carolina,US,36.07569796,-81.92308483,"Avery, North Carolina, US",17557
-84037013,US,USA,840,37013,Beaufort,North Carolina,US,35.48531943,-76.84325809,"Beaufort, North Carolina, US",46994
-84037015,US,USA,840,37015,Bertie,North Carolina,US,36.0688473,-76.96545943,"Bertie, North Carolina, US",18947
-84037017,US,USA,840,37017,Bladen,North Carolina,US,34.61296243,-78.56180059,"Bladen, North Carolina, US",32722
-84037019,US,USA,840,37019,Brunswick,North Carolina,US,34.070565,-78.22814204,"Brunswick, North Carolina, US",142820
-84037021,US,USA,840,37021,Buncombe,North Carolina,US,35.61113393,-82.53305,"Buncombe, North Carolina, US",261191
-84037023,US,USA,840,37023,Burke,North Carolina,US,35.74989637,-81.70755735,"Burke, North Carolina, US",90485
-84037025,US,USA,840,37025,Cabarrus,North Carolina,US,35.3877799,-80.55267168,"Cabarrus, North Carolina, US",216453
-84037027,US,USA,840,37027,Caldwell,North Carolina,US,35.95204977,-81.54799522,"Caldwell, North Carolina, US",82178
-84037029,US,USA,840,37029,Camden,North Carolina,US,36.33804939,-76.15568396,"Camden, North Carolina, US",10867
-84037031,US,USA,840,37031,Carteret,North Carolina,US,34.8932941,-76.54120135,"Carteret, North Carolina, US",69473
-84037033,US,USA,840,37033,Caswell,North Carolina,US,36.39312665,-79.33353281,"Caswell, North Carolina, US",22604
-84037035,US,USA,840,37035,Catawba,North Carolina,US,35.66211129,-81.2132617,"Catawba, North Carolina, US",159551
-84037037,US,USA,840,37037,Chatham,North Carolina,US,35.70394416,-79.25541492,"Chatham, North Carolina, US",74470
-84037039,US,USA,840,37039,Cherokee,North Carolina,US,35.1349263,-84.05970864,"Cherokee, North Carolina, US",28612
-84037041,US,USA,840,37041,Chowan,North Carolina,US,36.12908077,-76.60118385,"Chowan, North Carolina, US",13943
-84037043,US,USA,840,37043,Clay,North Carolina,US,35.05704275,-83.74353633,"Clay, North Carolina, US",11231
-84037045,US,USA,840,37045,Cleveland,North Carolina,US,35.33553364,-81.55204486,"Cleveland, North Carolina, US",97947
-84037047,US,USA,840,37047,Columbus,North Carolina,US,34.26744084,-78.65801424,"Columbus, North Carolina, US",55508
-84037049,US,USA,840,37049,Craven,North Carolina,US,35.11833364,-77.08398081,"Craven, North Carolina, US",102139
-84037051,US,USA,840,37051,Cumberland,North Carolina,US,35.04762133,-78.82623165,"Cumberland, North Carolina, US",335509
-84037053,US,USA,840,37053,Currituck,North Carolina,US,36.36123664,-75.95876401,"Currituck, North Carolina, US",27763
-84037055,US,USA,840,37055,Dare,North Carolina,US,35.66520691,-75.71767334,"Dare, North Carolina, US",37009
-84037057,US,USA,840,37057,Davidson,North Carolina,US,35.79115496,-80.21256572,"Davidson, North Carolina, US",167609
-84037059,US,USA,840,37059,Davie,North Carolina,US,35.93099927,-80.54496571,"Davie, North Carolina, US",42846
-84037061,US,USA,840,37061,Duplin,North Carolina,US,34.93449805,-77.93140529,"Duplin, North Carolina, US",58741
-84037063,US,USA,840,37063,Durham,North Carolina,US,36.03638492,-78.87608331,"Durham, North Carolina, US",321488
-84037065,US,USA,840,37065,Edgecombe,North Carolina,US,35.91230639,-77.59436892,"Edgecombe, North Carolina, US",51472
-84037067,US,USA,840,37067,Forsyth,North Carolina,US,36.12859861,-80.25459052,"Forsyth, North Carolina, US",382295
-84037069,US,USA,840,37069,Franklin,North Carolina,US,36.081519,-78.28708884,"Franklin, North Carolina, US",69685
-84037071,US,USA,840,37071,Gaston,North Carolina,US,35.29373559,-81.17477045,"Gaston, North Carolina, US",224529
-84037073,US,USA,840,37073,Gates,North Carolina,US,36.44667547,-76.69749701,"Gates, North Carolina, US",11562
-84037075,US,USA,840,37075,Graham,North Carolina,US,35.3506925,-83.83369267,"Graham, North Carolina, US",8441
-84037077,US,USA,840,37077,Granville,North Carolina,US,36.30337451,-78.65184241,"Granville, North Carolina, US",60443
-84037079,US,USA,840,37079,Greene,North Carolina,US,35.48544173,-77.67578087,"Greene, North Carolina, US",21069
-84037081,US,USA,840,37081,Guilford,North Carolina,US,36.07959451,-79.78824948,"Guilford, North Carolina, US",537174
-84037083,US,USA,840,37083,Halifax,North Carolina,US,36.25669272,-77.6556109,"Halifax, North Carolina, US",50010
-84037085,US,USA,840,37085,Harnett,North Carolina,US,35.36731853,-78.87243571,"Harnett, North Carolina, US",135976
-84037087,US,USA,840,37087,Haywood,North Carolina,US,35.55269063,-82.98196486,"Haywood, North Carolina, US",62317
-84037089,US,USA,840,37089,Henderson,North Carolina,US,35.33788927,-82.4766782,"Henderson, North Carolina, US",117417
-84037091,US,USA,840,37091,Hertford,North Carolina,US,36.3607755,-76.98104134,"Hertford, North Carolina, US",23677
-84037093,US,USA,840,37093,Hoke,North Carolina,US,35.01888303,-79.23651674,"Hoke, North Carolina, US",55234
-84037095,US,USA,840,37095,Hyde,North Carolina,US,35.42017674,-76.15180542,"Hyde, North Carolina, US",4937
-84037097,US,USA,840,37097,Iredell,North Carolina,US,35.80950511,-80.8743128,"Iredell, North Carolina, US",181806
-84037099,US,USA,840,37099,Jackson,North Carolina,US,35.28814273,-83.14093385,"Jackson, North Carolina, US",43938
-84037101,US,USA,840,37101,Johnston,North Carolina,US,35.51745004,-78.36622717,"Johnston, North Carolina, US",209339
-84037103,US,USA,840,37103,Jones,North Carolina,US,35.02254606,-77.35870791,"Jones, North Carolina, US",9419
-84037105,US,USA,840,37105,Lee,North Carolina,US,35.47623147,-79.17569362,"Lee, North Carolina, US",61779
-84037107,US,USA,840,37107,Lenoir,North Carolina,US,35.2403259,-77.64245615,"Lenoir, North Carolina, US",55949
-84037109,US,USA,840,37109,Lincoln,North Carolina,US,35.48508185,-81.21740317,"Lincoln, North Carolina, US",86111
-84037111,US,USA,840,37111,McDowell,North Carolina,US,35.67736232,-82.0482425,"McDowell, North Carolina, US",45756
-84037113,US,USA,840,37113,Macon,North Carolina,US,35.14867843,-83.41696617,"Macon, North Carolina, US",35858
-84037115,US,USA,840,37115,Madison,North Carolina,US,35.85402722,-82.71346418,"Madison, North Carolina, US",21755
-84037117,US,USA,840,37117,Martin,North Carolina,US,35.84326734,-77.10860251,"Martin, North Carolina, US",22440
-84037119,US,USA,840,37119,Mecklenburg,North Carolina,US,35.24469268,-80.8317671,"Mecklenburg, North Carolina, US",1110356
-84037121,US,USA,840,37121,Mitchell,North Carolina,US,36.01059309,-82.1582442,"Mitchell, North Carolina, US",14964
-84037123,US,USA,840,37123,Montgomery,North Carolina,US,35.33155144,-79.90416657,"Montgomery, North Carolina, US",27173
-84037125,US,USA,840,37125,Moore,North Carolina,US,35.30885257,-79.48474178,"Moore, North Carolina, US",100880
-84037127,US,USA,840,37127,Nash,North Carolina,US,35.96575634,-77.98422508,"Nash, North Carolina, US",94298
-84037129,US,USA,840,37129,New Hanover,North Carolina,US,34.25758282,-77.87075626,"New Hanover, North Carolina, US",234473
-84037131,US,USA,840,37131,Northampton,North Carolina,US,36.41736238,-77.39769443,"Northampton, North Carolina, US",19483
-84037133,US,USA,840,37133,Onslow,North Carolina,US,34.72607366,-77.42908179,"Onslow, North Carolina, US",197938
-84037135,US,USA,840,37135,Orange,North Carolina,US,36.06092947,-79.12167935,"Orange, North Carolina, US",148476
-84037137,US,USA,840,37137,Pamlico,North Carolina,US,35.15253315,-76.66559823,"Pamlico, North Carolina, US",12726
-84037139,US,USA,840,37139,Pasquotank,North Carolina,US,36.26723798,-76.25134778,"Pasquotank, North Carolina, US",39824
-84037141,US,USA,840,37141,Pender,North Carolina,US,34.52265624,-77.90352133,"Pender, North Carolina, US",63060
-84037143,US,USA,840,37143,Perquimans,North Carolina,US,36.17847453,-76.40603143,"Perquimans, North Carolina, US",13463
-84037145,US,USA,840,37145,Person,North Carolina,US,36.38989032,-78.97217358,"Person, North Carolina, US",39490
-84037147,US,USA,840,37147,Pitt,North Carolina,US,35.59535426,-77.37353178,"Pitt, North Carolina, US",180742
-84037149,US,USA,840,37149,Polk,North Carolina,US,35.27820615,-82.16812354,"Polk, North Carolina, US",20724
-84037151,US,USA,840,37151,Randolph,North Carolina,US,35.71015088,-79.80570339,"Randolph, North Carolina, US",143667
-84037153,US,USA,840,37153,Richmond,North Carolina,US,35.00417719,-79.74491009,"Richmond, North Carolina, US",44829
-84037155,US,USA,840,37155,Robeson,North Carolina,US,34.64244496,-79.1025053,"Robeson, North Carolina, US",130625
-84037157,US,USA,840,37157,Rockingham,North Carolina,US,36.39593137,-79.77504841,"Rockingham, North Carolina, US",91010
-84037159,US,USA,840,37159,Rowan,North Carolina,US,35.64003916,-80.52446628,"Rowan, North Carolina, US",142088
-84037161,US,USA,840,37161,Rutherford,North Carolina,US,35.40114178,-81.92112099,"Rutherford, North Carolina, US",67029
-84037163,US,USA,840,37163,Sampson,North Carolina,US,34.98820368,-78.36914061,"Sampson, North Carolina, US",63531
-84037165,US,USA,840,37165,Scotland,North Carolina,US,34.8386299,-79.4757978,"Scotland, North Carolina, US",34823
-84037167,US,USA,840,37167,Stanly,North Carolina,US,35.31647813,-80.25093221,"Stanly, North Carolina, US",62806
-84037169,US,USA,840,37169,Stokes,North Carolina,US,36.4017975,-80.23893369,"Stokes, North Carolina, US",45591
-84037171,US,USA,840,37171,Surry,North Carolina,US,36.41689489,-80.69102283,"Surry, North Carolina, US",71783
-84037173,US,USA,840,37173,Swain,North Carolina,US,35.48665845,-83.48748932,"Swain, North Carolina, US",14271
-84037175,US,USA,840,37175,Transylvania,North Carolina,US,35.20383864,-82.79638423,"Transylvania, North Carolina, US",34385
-84037177,US,USA,840,37177,Tyrrell,North Carolina,US,35.87147226,-76.17055253,"Tyrrell, North Carolina, US",4016
-84037179,US,USA,840,37179,Union,North Carolina,US,34.98960527,-80.52955873,"Union, North Carolina, US",239859
-84037181,US,USA,840,37181,Vance,North Carolina,US,36.36880673,-78.40670845,"Vance, North Carolina, US",44535
-84037183,US,USA,840,37183,Wake,North Carolina,US,35.78879266,-78.65249174,"Wake, North Carolina, US",1111761
-84037185,US,USA,840,37185,Warren,North Carolina,US,36.39728256,-78.10652228,"Warren, North Carolina, US",19731
-84037187,US,USA,840,37187,Washington,North Carolina,US,35.83810081,-76.57299037,"Washington, North Carolina, US",11580
-84037189,US,USA,840,37189,Watauga,North Carolina,US,36.23103603,-81.70033724,"Watauga, North Carolina, US",56177
-84037191,US,USA,840,37191,Wayne,North Carolina,US,35.36438125,-78.00027268,"Wayne, North Carolina, US",123131
-84037193,US,USA,840,37193,Wilkes,North Carolina,US,36.2084135,-81.16232895,"Wilkes, North Carolina, US",68412
-84037195,US,USA,840,37195,Wilson,North Carolina,US,35.70625477,-77.917978,"Wilson, North Carolina, US",81801
-84037197,US,USA,840,37197,Yadkin,North Carolina,US,36.16222629,-80.66239436,"Yadkin, North Carolina, US",37667
-84037199,US,USA,840,37199,Yancey,North Carolina,US,35.90079156,-82.31237181,"Yancey, North Carolina, US",18069
-84038001,US,USA,840,38001,Adams,North Dakota,US,46.09686891,-102.5285397,"Adams, North Dakota, US",2216
-84038003,US,USA,840,38003,Barnes,North Dakota,US,46.93579637,-98.06605978,"Barnes, North Dakota, US",10415
-84038005,US,USA,840,38005,Benson,North Dakota,US,48.0683985,-99.35916363,"Benson, North Dakota, US",6832
-84038007,US,USA,840,38007,Billings,North Dakota,US,47.02366884,-103.3762965,"Billings, North Dakota, US",928
-84038009,US,USA,840,38009,Bottineau,North Dakota,US,48.79106111,-100.8378166,"Bottineau, North Dakota, US",6282
-84038011,US,USA,840,38011,Bowman,North Dakota,US,46.11285362,-103.5203343,"Bowman, North Dakota, US",3024
-84038013,US,USA,840,38013,Burke,North Dakota,US,48.79094471,-102.5182117,"Burke, North Dakota, US",2115
-84038015,US,USA,840,38015,Burleigh,North Dakota,US,46.97847375,-100.4645214,"Burleigh, North Dakota, US",95626
-84038017,US,USA,840,38017,Cass,North Dakota,US,46.93201724,-97.2444719,"Cass, North Dakota, US",181923
-84038019,US,USA,840,38019,Cavalier,North Dakota,US,48.77286211,-98.46685243,"Cavalier, North Dakota, US",3762
-84038021,US,USA,840,38021,Dickey,North Dakota,US,46.11017712,-98.5049008,"Dickey, North Dakota, US",4872
-84038023,US,USA,840,38023,Divide,North Dakota,US,48.8149387,-103.4873611,"Divide, North Dakota, US",2264
-84038025,US,USA,840,38025,Dunn,North Dakota,US,47.35423935,-102.6160468,"Dunn, North Dakota, US",4424
-84038027,US,USA,840,38027,Eddy,North Dakota,US,47.71701474,-98.90432337,"Eddy, North Dakota, US",2287
-84038029,US,USA,840,38029,Emmons,North Dakota,US,46.28398398,-100.2389766,"Emmons, North Dakota, US",3241
-84038031,US,USA,840,38031,Foster,North Dakota,US,47.4571084,-98.88279923,"Foster, North Dakota, US",3210
-84038033,US,USA,840,38033,Golden Valley,North Dakota,US,46.94022281,-103.8465421,"Golden Valley, North Dakota, US",1761
-84038035,US,USA,840,38035,Grand Forks,North Dakota,US,47.92093639,-97.45450447,"Grand Forks, North Dakota, US",69451
-84038037,US,USA,840,38037,Grant,North Dakota,US,46.35821257,-101.6390013,"Grant, North Dakota, US",2274
-84038039,US,USA,840,38039,Griggs,North Dakota,US,47.45785838,-98.23850925,"Griggs, North Dakota, US",2231
-84038041,US,USA,840,38041,Hettinger,North Dakota,US,46.43375068,-102.4632417,"Hettinger, North Dakota, US",2499
-84038043,US,USA,840,38043,Kidder,North Dakota,US,46.97830064,-99.77507857,"Kidder, North Dakota, US",2480
-84038045,US,USA,840,38045,LaMoure,North Dakota,US,46.45681054,-98.53542355,"LaMoure, North Dakota, US",4046
-84038047,US,USA,840,38047,Logan,North Dakota,US,46.45729487,-99.47719806,"Logan, North Dakota, US",1850
-84038049,US,USA,840,38049,McHenry,North Dakota,US,48.23104458,-100.6324822,"McHenry, North Dakota, US",5745
-84038051,US,USA,840,38051,McIntosh,North Dakota,US,46.11182017,-99.44145858,"McIntosh, North Dakota, US",2497
-84038053,US,USA,840,38053,McKenzie,North Dakota,US,47.7413337,-103.395905,"McKenzie, North Dakota, US",15024
-84038055,US,USA,840,38055,McLean,North Dakota,US,47.60766714,-101.3182418,"McLean, North Dakota, US",9450
-84038057,US,USA,840,38057,Mercer,North Dakota,US,47.31213126,-101.8318399,"Mercer, North Dakota, US",8187
-84038059,US,USA,840,38059,Morton,North Dakota,US,46.71681782,-101.2822377,"Morton, North Dakota, US",31364
-84038061,US,USA,840,38061,Mountrail,North Dakota,US,48.20197971,-102.3555315,"Mountrail, North Dakota, US",10545
-84038063,US,USA,840,38063,Nelson,North Dakota,US,47.9226426,-98.19038437,"Nelson, North Dakota, US",2879
-84038065,US,USA,840,38065,Oliver,North Dakota,US,47.11530482,-101.3406158,"Oliver, North Dakota, US",1959
-84038067,US,USA,840,38067,Pembina,North Dakota,US,48.76623521,-97.5523809,"Pembina, North Dakota, US",6801
-84038069,US,USA,840,38069,Pierce,North Dakota,US,48.24977025,-99.96407787,"Pierce, North Dakota, US",3975
-84038071,US,USA,840,38071,Ramsey,North Dakota,US,48.26886249,-98.72223879,"Ramsey, North Dakota, US",11519
-84038073,US,USA,840,38073,Ransom,North Dakota,US,46.45621782,-97.65742504,"Ransom, North Dakota, US",5218
-84038075,US,USA,840,38075,Renville,North Dakota,US,48.71982533,-101.6603912,"Renville, North Dakota, US",2327
-84038077,US,USA,840,38077,Richland,North Dakota,US,46.26440649,-96.94852979,"Richland, North Dakota, US",16177
-84038079,US,USA,840,38079,Rolette,North Dakota,US,48.77245354,-99.84097493,"Rolette, North Dakota, US",14176
-84038081,US,USA,840,38081,Sargent,North Dakota,US,46.10830372,-97.63217159,"Sargent, North Dakota, US",3898
-84038083,US,USA,840,38083,Sheridan,North Dakota,US,47.57700669,-100.3426391,"Sheridan, North Dakota, US",1315
-84038085,US,USA,840,38085,Sioux,North Dakota,US,46.11323337,-101.0440149,"Sioux, North Dakota, US",4230
-84038087,US,USA,840,38087,Slope,North Dakota,US,46.44737738,-103.4601547,"Slope, North Dakota, US",750
-84038089,US,USA,840,38089,Stark,North Dakota,US,46.80851182,-102.6576326,"Stark, North Dakota, US",31489
-84038091,US,USA,840,38091,Steele,North Dakota,US,47.45611548,-97.72728747,"Steele, North Dakota, US",1890
-84038093,US,USA,840,38093,Stutsman,North Dakota,US,46.97962541,-98.95637318,"Stutsman, North Dakota, US",20704
-84038095,US,USA,840,38095,Towner,North Dakota,US,48.68565745,-99.24564265,"Towner, North Dakota, US",2189
-84038097,US,USA,840,38097,Traill,North Dakota,US,47.45367788,-97.16323288,"Traill, North Dakota, US",8036
-84038099,US,USA,840,38099,Walsh,North Dakota,US,48.36876964,-97.72574783,"Walsh, North Dakota, US",10641
-84038101,US,USA,840,38101,Ward,North Dakota,US,48.22390169,-101.5436763,"Ward, North Dakota, US",67641
-84038103,US,USA,840,38103,Wells,North Dakota,US,47.58614526,-99.65904998,"Wells, North Dakota, US",3834
-84038105,US,USA,840,38105,Williams,North Dakota,US,48.34522353,-103.4793387,"Williams, North Dakota, US",37589
-84039001,US,USA,840,39001,Adams,Ohio,US,38.84541072,-83.4718964,"Adams, Ohio, US",27698
-84039003,US,USA,840,39003,Allen,Ohio,US,40.77285242,-84.10802343,"Allen, Ohio, US",102351
-84039005,US,USA,840,39005,Ashland,Ohio,US,40.84772277,-82.27280781,"Ashland, Ohio, US",53484
-84039007,US,USA,840,39007,Ashtabula,Ohio,US,41.70860332,-80.74830218,"Ashtabula, Ohio, US",97241
-84039009,US,USA,840,39009,Athens,Ohio,US,39.33425634,-82.04278644,"Athens, Ohio, US",65327
-84039011,US,USA,840,39011,Auglaize,Ohio,US,40.55998859,-84.2242143,"Auglaize, Ohio, US",45656
-84039013,US,USA,840,39013,Belmont,Ohio,US,40.01625942,-80.9924051,"Belmont, Ohio, US",67006
-84039015,US,USA,840,39015,Brown,Ohio,US,38.93416837,-83.86788395,"Brown, Ohio, US",43432
-84039017,US,USA,840,39017,Butler,Ohio,US,39.44012838,-84.57388716,"Butler, Ohio, US",383134
-84039019,US,USA,840,39019,Carroll,Ohio,US,40.5789686,-81.09178213,"Carroll, Ohio, US",26914
-84039021,US,USA,840,39021,Champaign,Ohio,US,40.13923427,-83.76875242,"Champaign, Ohio, US",38885
-84039023,US,USA,840,39023,Clark,Ohio,US,39.91592258,-83.78498252,"Clark, Ohio, US",134083
-84039025,US,USA,840,39025,Clermont,Ohio,US,39.04847534,-84.15375786,"Clermont, Ohio, US",206428
-84039027,US,USA,840,39027,Clinton,Ohio,US,39.41485808,-83.80852286,"Clinton, Ohio, US",41968
-84039029,US,USA,840,39029,Columbiana,Ohio,US,40.76932373,-80.78094576,"Columbiana, Ohio, US",101883
-84039031,US,USA,840,39031,Coshocton,Ohio,US,40.30096166,-81.91729018,"Coshocton, Ohio, US",36600
-84039033,US,USA,840,39033,Crawford,Ohio,US,40.85065156,-82.91989099,"Crawford, Ohio, US",41494
-84039035,US,USA,840,39035,Cuyahoga,Ohio,US,41.424119,-81.65918339,"Cuyahoga, Ohio, US",1235072
-84039037,US,USA,840,39037,Darke,Ohio,US,40.13412966,-84.6194517,"Darke, Ohio, US",51113
-84039039,US,USA,840,39039,Defiance,Ohio,US,41.32398837,-84.49076944,"Defiance, Ohio, US",38087
-84039041,US,USA,840,39041,Delaware,Ohio,US,40.27942393,-83.00457058,"Delaware, Ohio, US",209177
-84039043,US,USA,840,39043,Erie,Ohio,US,41.36796058,-82.62904521,"Erie, Ohio, US",74266
-84039045,US,USA,840,39045,Fairfield,Ohio,US,39.75107189,-82.63088163,"Fairfield, Ohio, US",157574
-84039047,US,USA,840,39047,Fayette,Ohio,US,39.56021306,-83.4562016,"Fayette, Ohio, US",28525
-84039049,US,USA,840,39049,Franklin,Ohio,US,39.96995815,-83.01115755,"Franklin, Ohio, US",1316756
-84039051,US,USA,840,39051,Fulton,Ohio,US,41.60213491,-84.12571393,"Fulton, Ohio, US",42126
-84039053,US,USA,840,39053,Gallia,Ohio,US,38.82708533,-82.31647569,"Gallia, Ohio, US",29898
-84039055,US,USA,840,39055,Geauga,Ohio,US,41.49952319,-81.17935342,"Geauga, Ohio, US",93649
-84039057,US,USA,840,39057,Greene,Ohio,US,39.69116283,-83.89032084,"Greene, Ohio, US",168937
-84039059,US,USA,840,39059,Guernsey,Ohio,US,40.05026529,-81.49248905,"Guernsey, Ohio, US",38875
-84039061,US,USA,840,39061,Hamilton,Ohio,US,39.19673558,-84.54502924,"Hamilton, Ohio, US",817473
-84039063,US,USA,840,39063,Hancock,Ohio,US,41.00250487,-83.66838948,"Hancock, Ohio, US",75783
-84039065,US,USA,840,39065,Hardin,Ohio,US,40.66015414,-83.65929931,"Hardin, Ohio, US",31365
-84039067,US,USA,840,39067,Harrison,Ohio,US,40.29380509,-81.09068544,"Harrison, Ohio, US",15040
-84039069,US,USA,840,39069,Henry,Ohio,US,41.3339642,-84.06830637,"Henry, Ohio, US",27006
-84039071,US,USA,840,39071,Highland,Ohio,US,39.1839264,-83.60331456,"Highland, Ohio, US",43161
-84039073,US,USA,840,39073,Hocking,Ohio,US,39.49537927,-82.47991446,"Hocking, Ohio, US",28264
-84039075,US,USA,840,39075,Holmes,Ohio,US,40.56163713,-81.92635677,"Holmes, Ohio, US",43960
-84039077,US,USA,840,39077,Huron,Ohio,US,41.14651175,-82.59867951,"Huron, Ohio, US",58266
-84039079,US,USA,840,39079,Jackson,Ohio,US,39.01914254,-82.6181856,"Jackson, Ohio, US",32413
-84039081,US,USA,840,39081,Jefferson,Ohio,US,40.38614126,-80.76259514,"Jefferson, Ohio, US",65325
-84039083,US,USA,840,39083,Knox,Ohio,US,40.39830217,-82.42027563,"Knox, Ohio, US",62322
-84039085,US,USA,840,39085,Lake,Ohio,US,41.69710807,-81.23676539,"Lake, Ohio, US",230149
-84039087,US,USA,840,39087,Lawrence,Ohio,US,38.59743452,-82.53466552,"Lawrence, Ohio, US",59463
-84039089,US,USA,840,39089,Licking,Ohio,US,40.09136236,-82.48185785,"Licking, Ohio, US",176862
-84039091,US,USA,840,39091,Logan,Ohio,US,40.38996525,-83.76784341,"Logan, Ohio, US",45672
-84039093,US,USA,840,39093,Lorain,Ohio,US,41.29553751,-82.15083537,"Lorain, Ohio, US",309833
-84039095,US,USA,840,39095,Lucas,Ohio,US,41.62101218,-83.65468618,"Lucas, Ohio, US",428348
-84039097,US,USA,840,39097,Madison,Ohio,US,39.89381073,-83.40178317,"Madison, Ohio, US",44731
-84039099,US,USA,840,39099,Mahoning,Ohio,US,41.01631101,-80.77287029,"Mahoning, Ohio, US",228683
-84039101,US,USA,840,39101,Marion,Ohio,US,40.58610662,-83.15736305,"Marion, Ohio, US",65093
-84039103,US,USA,840,39103,Medina,Ohio,US,41.11770589,-81.8998621,"Medina, Ohio, US",179746
-84039105,US,USA,840,39105,Meigs,Ohio,US,39.09224872,-82.0305041,"Meigs, Ohio, US",22907
-84039107,US,USA,840,39107,Mercer,Ohio,US,40.54043046,-84.62912742,"Mercer, Ohio, US",41172
-84039109,US,USA,840,39109,Miami,Ohio,US,40.0543329,-84.22871271,"Miami, Ohio, US",106987
-84039111,US,USA,840,39111,Monroe,Ohio,US,39.72984936,-81.08464734,"Monroe, Ohio, US",13654
-84039113,US,USA,840,39113,Montgomery,Ohio,US,39.75394919,-84.29050975,"Montgomery, Ohio, US",531687
-84039115,US,USA,840,39115,Morgan,Ohio,US,39.62081738,-81.85308173,"Morgan, Ohio, US",14508
-84039117,US,USA,840,39117,Morrow,Ohio,US,40.5236356,-82.7892599,"Morrow, Ohio, US",35328
-84039119,US,USA,840,39119,Muskingum,Ohio,US,39.96575964,-81.94363275,"Muskingum, Ohio, US",86215
-84039121,US,USA,840,39121,Noble,Ohio,US,39.76818851,-81.45937183,"Noble, Ohio, US",14424
-84039123,US,USA,840,39123,Ottawa,Ohio,US,41.53781826,-83.0940185,"Ottawa, Ohio, US",40525
-84039125,US,USA,840,39125,Paulding,Ohio,US,41.11676341,-84.5801017,"Paulding, Ohio, US",18672
-84039127,US,USA,840,39127,Perry,Ohio,US,39.73508655,-82.23804971,"Perry, Ohio, US",36134
-84039129,US,USA,840,39129,Pickaway,Ohio,US,39.64170392,-83.0243386,"Pickaway, Ohio, US",58457
-84039131,US,USA,840,39131,Pike,Ohio,US,39.07634001,-83.06769584,"Pike, Ohio, US",27772
-84039133,US,USA,840,39133,Portage,Ohio,US,41.16793482,-81.19735782,"Portage, Ohio, US",162466
-84039135,US,USA,840,39135,Preble,Ohio,US,39.7420247,-84.64787018,"Preble, Ohio, US",40882
-84039137,US,USA,840,39137,Putnam,Ohio,US,41.02094889,-84.1336111,"Putnam, Ohio, US",33861
-84039139,US,USA,840,39139,Richland,Ohio,US,40.77180308,-82.5379961,"Richland, Ohio, US",121154
-84039141,US,USA,840,39141,Ross,Ohio,US,39.33705391,-83.06000914,"Ross, Ohio, US",76666
-84039143,US,USA,840,39143,Sandusky,Ohio,US,41.35624126,-83.137872,"Sandusky, Ohio, US",58518
-84039145,US,USA,840,39145,Scioto,Ohio,US,38.80270163,-82.98907345,"Scioto, Ohio, US",75314
-84039147,US,USA,840,39147,Seneca,Ohio,US,41.12351311,-83.12783209,"Seneca, Ohio, US",55178
-84039149,US,USA,840,39149,Shelby,Ohio,US,40.33163494,-84.20258189,"Shelby, Ohio, US",48590
-84039151,US,USA,840,39151,Stark,Ohio,US,40.81482476,-81.36437305,"Stark, Ohio, US",370606
-84039153,US,USA,840,39153,Summit,Ohio,US,41.12464734,-81.53123079,"Summit, Ohio, US",541013
-84039155,US,USA,840,39155,Trumbull,Ohio,US,41.31735028,-80.76109643,"Trumbull, Ohio, US",197974
-84039157,US,USA,840,39157,Tuscarawas,Ohio,US,40.44214695,-81.47226262,"Tuscarawas, Ohio, US",91987
-84039159,US,USA,840,39159,Union,Ohio,US,40.30016061,-83.37239023,"Union, Ohio, US",58988
-84039161,US,USA,840,39161,Van Wert,Ohio,US,40.8554138,-84.591117,"Van Wert, Ohio, US",28275
-84039163,US,USA,840,39163,Vinton,Ohio,US,39.25208988,-82.4831444,"Vinton, Ohio, US",13085
-84039165,US,USA,840,39165,Warren,Ohio,US,39.42581994,-84.16557457,"Warren, Ohio, US",234602
-84039167,US,USA,840,39167,Washington,Ohio,US,39.45690571,-81.49121382,"Washington, Ohio, US",59911
-84039169,US,USA,840,39169,Wayne,Ohio,US,40.82925852,-81.88844833,"Wayne, Ohio, US",115710
-84039171,US,USA,840,39171,Williams,Ohio,US,41.56052014,-84.58429552,"Williams, Ohio, US",36692
-84039173,US,USA,840,39173,Wood,Ohio,US,41.36224827,-83.62285108,"Wood, Ohio, US",130817
-84039175,US,USA,840,39175,Wyandot,Ohio,US,40.84339621,-83.30734173,"Wyandot, Ohio, US",21772
-84040001,US,USA,840,40001,Adair,Oklahoma,US,35.88494195,-94.65859267,"Adair, Oklahoma, US",22194
-84040003,US,USA,840,40003,Alfalfa,Oklahoma,US,36.73090616,-98.32408495,"Alfalfa, Oklahoma, US",5702
-84040005,US,USA,840,40005,Atoka,Oklahoma,US,34.37366573,-96.03802487,"Atoka, Oklahoma, US",13758
-84040007,US,USA,840,40007,Beaver,Oklahoma,US,36.7496847,-100.4758872,"Beaver, Oklahoma, US",5311
-84040009,US,USA,840,40009,Beckham,Oklahoma,US,35.26862449,-99.68128023,"Beckham, Oklahoma, US",21859
-84040011,US,USA,840,40011,Blaine,Oklahoma,US,35.87518314,-98.43307003,"Blaine, Oklahoma, US",9429
-84040013,US,USA,840,40013,Bryan,Oklahoma,US,33.96472458,-96.25903472,"Bryan, Oklahoma, US",47995
-84040015,US,USA,840,40015,Caddo,Oklahoma,US,35.17364557,-98.37534464,"Caddo, Oklahoma, US",28762
-84040017,US,USA,840,40017,Canadian,Oklahoma,US,35.5426055,-97.98465569,"Canadian, Oklahoma, US",148306
-84040019,US,USA,840,40019,Carter,Oklahoma,US,34.25103751,-97.28552485,"Carter, Oklahoma, US",48111
-84040021,US,USA,840,40021,Cherokee,Oklahoma,US,35.90692775,-94.99980896,"Cherokee, Oklahoma, US",48657
-84040023,US,USA,840,40023,Choctaw,Oklahoma,US,34.02807439,-95.54771129,"Choctaw, Oklahoma, US",14672
-84040025,US,USA,840,40025,Cimarron,Oklahoma,US,36.74817177,-102.5173885,"Cimarron, Oklahoma, US",2137
-84040027,US,USA,840,40027,Cleveland,Oklahoma,US,35.20413532,-97.32519562,"Cleveland, Oklahoma, US",284014
-84040029,US,USA,840,40029,Coal,Oklahoma,US,34.58840127,-96.29798747,"Coal, Oklahoma, US",5495
-84040031,US,USA,840,40031,Comanche,Oklahoma,US,34.65973764,-98.47195055,"Comanche, Oklahoma, US",120749
-84040033,US,USA,840,40033,Cotton,Oklahoma,US,34.28845626,-98.37053567,"Cotton, Oklahoma, US",5666
-84040035,US,USA,840,40035,Craig,Oklahoma,US,36.76268118,-95.20916602,"Craig, Oklahoma, US",14142
-84040037,US,USA,840,40037,Creek,Oklahoma,US,35.90230551,-96.37086028,"Creek, Oklahoma, US",71522
-84040039,US,USA,840,40039,Custer,Oklahoma,US,35.63853802,-99.00170785,"Custer, Oklahoma, US",29003
-84040041,US,USA,840,40041,Delaware,Oklahoma,US,36.40823634,-94.80325046,"Delaware, Oklahoma, US",43009
-84040043,US,USA,840,40043,Dewey,Oklahoma,US,35.98772922,-99.00730714,"Dewey, Oklahoma, US",4891
-84040045,US,USA,840,40045,Ellis,Oklahoma,US,36.2180194,-99.75324573,"Ellis, Oklahoma, US",3859
-84040047,US,USA,840,40047,Garfield,Oklahoma,US,36.3791334,-97.78265517,"Garfield, Oklahoma, US",61056
-84040049,US,USA,840,40049,Garvin,Oklahoma,US,34.70418038,-97.30811132,"Garvin, Oklahoma, US",27711
-84040051,US,USA,840,40051,Grady,Oklahoma,US,35.0167709,-97.88339847,"Grady, Oklahoma, US",55834
-84040053,US,USA,840,40053,Grant,Oklahoma,US,36.796297,-97.78638765,"Grant, Oklahoma, US",4333
-84040055,US,USA,840,40055,Greer,Oklahoma,US,34.93535801,-99.5605612,"Greer, Oklahoma, US",5712
-84040057,US,USA,840,40057,Harmon,Oklahoma,US,34.7440135,-99.84741652,"Harmon, Oklahoma, US",2653
-84040059,US,USA,840,40059,Harper,Oklahoma,US,36.78836519,-99.6679804,"Harper, Oklahoma, US",3688
-84040061,US,USA,840,40061,Haskell,Oklahoma,US,35.222576,-95.11513306,"Haskell, Oklahoma, US",12627
-84040063,US,USA,840,40063,Hughes,Oklahoma,US,35.04912569,-96.24921145,"Hughes, Oklahoma, US",13279
-84040065,US,USA,840,40065,Jackson,Oklahoma,US,34.58781741,-99.41138784,"Jackson, Oklahoma, US",24530
-84040067,US,USA,840,40067,Jefferson,Oklahoma,US,34.11130184,-97.83182974,"Jefferson, Oklahoma, US",6002
-84040069,US,USA,840,40069,Johnston,Oklahoma,US,34.31440473,-96.66011537,"Johnston, Oklahoma, US",11085
-84040071,US,USA,840,40071,Kay,Oklahoma,US,36.81799745,-97.14421435,"Kay, Oklahoma, US",43538
-84040073,US,USA,840,40073,Kingfisher,Oklahoma,US,35.94530008,-97.94193268,"Kingfisher, Oklahoma, US",15765
-84040075,US,USA,840,40075,Kiowa,Oklahoma,US,34.91671958,-98.97720696,"Kiowa, Oklahoma, US",8708
-84040077,US,USA,840,40077,Latimer,Oklahoma,US,34.87844729,-95.25215049,"Latimer, Oklahoma, US",10073
-84040079,US,USA,840,40079,Le Flore,Oklahoma,US,34.89851864,-94.70392124,"Le Flore, Oklahoma, US",49853
-84040081,US,USA,840,40081,Lincoln,Oklahoma,US,35.70270942,-96.8812462,"Lincoln, Oklahoma, US",34877
-84040083,US,USA,840,40083,Logan,Oklahoma,US,35.91899576,-97.44352845,"Logan, Oklahoma, US",48011
-84040085,US,USA,840,40085,Love,Oklahoma,US,33.95273467,-97.23906784,"Love, Oklahoma, US",10253
-84040087,US,USA,840,40087,McClain,Oklahoma,US,35.01123903,-97.44572302,"McClain, Oklahoma, US",40474
-84040089,US,USA,840,40089,McCurtain,Oklahoma,US,34.11664328,-94.77222373,"McCurtain, Oklahoma, US",32832
-84040091,US,USA,840,40091,McIntosh,Oklahoma,US,35.37235506,-95.66599306,"McIntosh, Oklahoma, US",19596
-84040093,US,USA,840,40093,Major,Oklahoma,US,36.31149996,-98.53467076,"Major, Oklahoma, US",7629
-84040095,US,USA,840,40095,Marshall,Oklahoma,US,34.02311222,-96.76855464,"Marshall, Oklahoma, US",16931
-84040097,US,USA,840,40097,Mayes,Oklahoma,US,36.30179091,-95.23175116,"Mayes, Oklahoma, US",41100
-84040099,US,USA,840,40099,Murray,Oklahoma,US,34.48116015,-97.06826283,"Murray, Oklahoma, US",14073
-84040101,US,USA,840,40101,Muskogee,Oklahoma,US,35.61318461,-95.37802952,"Muskogee, Oklahoma, US",67997
-84040103,US,USA,840,40103,Noble,Oklahoma,US,36.38953329,-97.22928674,"Noble, Oklahoma, US",11131
-84040105,US,USA,840,40105,Nowata,Oklahoma,US,36.79843529,-95.61902331,"Nowata, Oklahoma, US",10076
-84040107,US,USA,840,40107,Okfuskee,Oklahoma,US,35.46485198,-96.32639984,"Okfuskee, Oklahoma, US",11993
-84040109,US,USA,840,40109,Oklahoma,Oklahoma,US,35.55140095,-97.40716948,"Oklahoma, Oklahoma, US",797434
-84040111,US,USA,840,40111,Okmulgee,Oklahoma,US,35.64661916,-95.96432828,"Okmulgee, Oklahoma, US",38465
-84040113,US,USA,840,40113,Osage,Oklahoma,US,36.62888819,-96.39635704,"Osage, Oklahoma, US",46963
-84040115,US,USA,840,40115,Ottawa,Oklahoma,US,36.83532655,-94.81011909,"Ottawa, Oklahoma, US",31127
-84040117,US,USA,840,40117,Pawnee,Oklahoma,US,36.31743373,-96.7033176,"Pawnee, Oklahoma, US",16376
-84040119,US,USA,840,40119,Payne,Oklahoma,US,36.07695283,-96.97584944,"Payne, Oklahoma, US",81784
-84040121,US,USA,840,40121,Pittsburg,Oklahoma,US,34.92065823,-95.7513432,"Pittsburg, Oklahoma, US",43654
-84040123,US,USA,840,40123,Pontotoc,Oklahoma,US,34.72959848,-96.68337199,"Pontotoc, Oklahoma, US",38284
-84040125,US,USA,840,40125,Pottawatomie,Oklahoma,US,35.20614018,-96.94923008,"Pottawatomie, Oklahoma, US",72592
-84040127,US,USA,840,40127,Pushmataha,Oklahoma,US,34.41635232,-95.37603505,"Pushmataha, Oklahoma, US",11096
-84040129,US,USA,840,40129,Roger Mills,Oklahoma,US,35.68711719,-99.69666167,"Roger Mills, Oklahoma, US",3583
-84040131,US,USA,840,40131,Rogers,Oklahoma,US,36.37004357,-95.60406759,"Rogers, Oklahoma, US",92459
-84040133,US,USA,840,40133,Seminole,Oklahoma,US,35.16478725,-96.61686741,"Seminole, Oklahoma, US",24258
-84040135,US,USA,840,40135,Sequoyah,Oklahoma,US,35.49447108,-94.75463785,"Sequoyah, Oklahoma, US",41569
-84040137,US,USA,840,40137,Stephens,Oklahoma,US,34.48556989,-97.85141892,"Stephens, Oklahoma, US",43143
-84040139,US,USA,840,40139,Texas,Oklahoma,US,36.74777635,-101.4889765,"Texas, Oklahoma, US",19983
-84040141,US,USA,840,40141,Tillman,Oklahoma,US,34.37288446,-98.92426619,"Tillman, Oklahoma, US",7250
-84040143,US,USA,840,40143,Tulsa,Oklahoma,US,36.11939621,-95.94013939,"Tulsa, Oklahoma, US",651552
-84040145,US,USA,840,40145,Wagoner,Oklahoma,US,35.96024096,-95.51911308,"Wagoner, Oklahoma, US",81289
-84040147,US,USA,840,40147,Washington,Oklahoma,US,36.71380786,-95.90514104,"Washington, Oklahoma, US",51527
-84040149,US,USA,840,40149,Washita,Oklahoma,US,35.29071824,-98.99180434,"Washita, Oklahoma, US",10916
-84040151,US,USA,840,40151,Woods,Oklahoma,US,36.76705782,-98.86573064,"Woods, Oklahoma, US",8793
-84040153,US,USA,840,40153,Woodward,Oklahoma,US,36.42316318,-99.26283045,"Woodward, Oklahoma, US",20211
-84041001,US,USA,840,41001,Baker,Oregon,US,44.70915557,-117.6749883,"Baker, Oregon, US",16124
-84041003,US,USA,840,41003,Benton,Oregon,US,44.49167306,-123.4316987,"Benton, Oregon, US",93053
-84041005,US,USA,840,41005,Clackamas,Oregon,US,45.18787398,-122.2179634,"Clackamas, Oregon, US",418187
-84041007,US,USA,840,41007,Clatsop,Oregon,US,45.99712889,-123.660711,"Clatsop, Oregon, US",40224
-84041009,US,USA,840,41009,Columbia,Oregon,US,45.94464254,-123.0890898,"Columbia, Oregon, US",52354
-84041011,US,USA,840,41011,Coos,Oregon,US,43.17406868,-124.0594514,"Coos, Oregon, US",64487
-84041013,US,USA,840,41013,Crook,Oregon,US,44.14230227,-120.356297,"Crook, Oregon, US",24404
-84041015,US,USA,840,41015,Curry,Oregon,US,42.45911325,-124.157282,"Curry, Oregon, US",22925
-84041017,US,USA,840,41017,Deschutes,Oregon,US,43.91570171,-121.2289121,"Deschutes, Oregon, US",197692
-84041019,US,USA,840,41019,Douglas,Oregon,US,43.27941273,-123.167291,"Douglas, Oregon, US",110980
-84041021,US,USA,840,41021,Gilliam,Oregon,US,45.37160076,-120.2048869,"Gilliam, Oregon, US",1912
-84041023,US,USA,840,41023,Grant,Oregon,US,44.49024544,-119.0068631,"Grant, Oregon, US",7199
-84041025,US,USA,840,41025,Harney,Oregon,US,43.06422669,-118.9666306,"Harney, Oregon, US",7393
-84041027,US,USA,840,41027,Hood River,Oregon,US,45.51872811,-121.6552036,"Hood River, Oregon, US",23382
-84041029,US,USA,840,41029,Jackson,Oregon,US,42.43201126,-122.7289309,"Jackson, Oregon, US",220944
-84041031,US,USA,840,41031,Jefferson,Oregon,US,44.62806839,-121.17832,"Jefferson, Oregon, US",24658
-84041033,US,USA,840,41033,Josephine,Oregon,US,42.3665549,-123.5561938,"Josephine, Oregon, US",87487
-84041035,US,USA,840,41035,Klamath,Oregon,US,42.68762984,-121.6496461,"Klamath, Oregon, US",68238
-84041037,US,USA,840,41037,Lake,Oregon,US,42.79246693,-120.3850163,"Lake, Oregon, US",7869
-84041039,US,USA,840,41039,Lane,Oregon,US,43.93727035,-122.847753,"Lane, Oregon, US",382067
-84041041,US,USA,840,41041,Lincoln,Oregon,US,44.64252874,-123.869912,"Lincoln, Oregon, US",49962
-84041043,US,USA,840,41043,Linn,Oregon,US,44.48899494,-122.5373154,"Linn, Oregon, US",129749
-84041045,US,USA,840,41045,Malheur,Oregon,US,43.1937027,-117.6227395,"Malheur, Oregon, US",30571
-84041047,US,USA,840,41047,Marion,Oregon,US,44.90287942,-122.5815117,"Marion, Oregon, US",347818
-84041049,US,USA,840,41049,Morrow,Oregon,US,45.41846568,-119.584546,"Morrow, Oregon, US",11603
-84041051,US,USA,840,41051,Multnomah,Oregon,US,45.54747959,-122.4169351,"Multnomah, Oregon, US",812855
-84041053,US,USA,840,41053,Polk,Oregon,US,44.90322804,-123.4128888,"Polk, Oregon, US",86085
-84041055,US,USA,840,41055,Sherman,Oregon,US,45.41501554,-120.6827834,"Sherman, Oregon, US",1780
-84041057,US,USA,840,41057,Tillamook,Oregon,US,45.46248721,-123.712066,"Tillamook, Oregon, US",27036
-84041059,US,USA,840,41059,Umatilla,Oregon,US,45.59073056,-118.7353826,"Umatilla, Oregon, US",77950
-84041061,US,USA,840,41061,Union,Oregon,US,45.30915495,-118.0068979,"Union, Oregon, US",26835
-84041063,US,USA,840,41063,Wallowa,Oregon,US,45.57894064,-117.183538,"Wallowa, Oregon, US",7208
-84041065,US,USA,840,41065,Wasco,Oregon,US,45.16292781,-121.1670954,"Wasco, Oregon, US",26682
-84041067,US,USA,840,41067,Washington,Oregon,US,45.55972701,-123.0955257,"Washington, Oregon, US",601592
-84041069,US,USA,840,41069,Wheeler,Oregon,US,44.72698162,-120.0281427,"Wheeler, Oregon, US",1332
-84041071,US,USA,840,41071,Yamhill,Oregon,US,45.23330449,-123.3086963,"Yamhill, Oregon, US",107100
-84042001,US,USA,840,42001,Adams,Pennsylvania,US,39.87140411,-77.21610347,"Adams, Pennsylvania, US",103009
-84042003,US,USA,840,42003,Allegheny,Pennsylvania,US,40.46809875,-79.98167747,"Allegheny, Pennsylvania, US",1216045
-84042005,US,USA,840,42005,Armstrong,Pennsylvania,US,40.81665618,-79.46290811,"Armstrong, Pennsylvania, US",64735
-84042007,US,USA,840,42007,Beaver,Pennsylvania,US,40.6825484,-80.34921611,"Beaver, Pennsylvania, US",163929
-84042009,US,USA,840,42009,Bedford,Pennsylvania,US,40.00522157,-78.48998442,"Bedford, Pennsylvania, US",47888
-84042011,US,USA,840,42011,Berks,Pennsylvania,US,40.41570541,-75.92457766,"Berks, Pennsylvania, US",421164
-84042013,US,USA,840,42013,Blair,Pennsylvania,US,40.47961444,-78.34917412,"Blair, Pennsylvania, US",121829
-84042015,US,USA,840,42015,Bradford,Pennsylvania,US,41.78869215,-76.51570822,"Bradford, Pennsylvania, US",60323
-84042017,US,USA,840,42017,Bucks,Pennsylvania,US,40.33682119,-75.10836643,"Bucks, Pennsylvania, US",628270
-84042019,US,USA,840,42019,Butler,Pennsylvania,US,40.91152759,-79.91351055,"Butler, Pennsylvania, US",187853
-84042021,US,USA,840,42021,Cambria,Pennsylvania,US,40.49527404,-78.71377428,"Cambria, Pennsylvania, US",130192
-84042023,US,USA,840,42023,Cameron,Pennsylvania,US,41.43625568,-78.20376845,"Cameron, Pennsylvania, US",4447
-84042025,US,USA,840,42025,Carbon,Pennsylvania,US,40.91545395,-75.7068525,"Carbon, Pennsylvania, US",64182
-84042027,US,USA,840,42027,Centre,Pennsylvania,US,40.92058903,-77.82200624,"Centre, Pennsylvania, US",162385
-84042029,US,USA,840,42029,Chester,Pennsylvania,US,39.97291773,-75.74768357,"Chester, Pennsylvania, US",524989
-84042031,US,USA,840,42031,Clarion,Pennsylvania,US,41.19265812,-79.42413524,"Clarion, Pennsylvania, US",38438
-84042033,US,USA,840,42033,Clearfield,Pennsylvania,US,41.00110782,-78.47592663,"Clearfield, Pennsylvania, US",79255
-84042035,US,USA,840,42035,Clinton,Pennsylvania,US,41.23255967,-77.63785995,"Clinton, Pennsylvania, US",38632
-84042037,US,USA,840,42037,Columbia,Pennsylvania,US,41.04821986,-76.40565017,"Columbia, Pennsylvania, US",64964
-84042039,US,USA,840,42039,Crawford,Pennsylvania,US,41.68447709,-80.10760592,"Crawford, Pennsylvania, US",84629
-84042041,US,USA,840,42041,Cumberland,Pennsylvania,US,40.1625372,-77.26130755,"Cumberland, Pennsylvania, US",253370
-84042043,US,USA,840,42043,Dauphin,Pennsylvania,US,40.41377078,-76.77993242,"Dauphin, Pennsylvania, US",278299
-84042045,US,USA,840,42045,Delaware,Pennsylvania,US,39.91680171,-75.40243663,"Delaware, Pennsylvania, US",566747
-84042047,US,USA,840,42047,Elk,Pennsylvania,US,41.42822061,-78.64524744,"Elk, Pennsylvania, US",29910
-84042049,US,USA,840,42049,Erie,Pennsylvania,US,41.99253829,-80.03301954,"Erie, Pennsylvania, US",269728
-84042051,US,USA,840,42051,Fayette,Pennsylvania,US,39.92041012,-79.64291195,"Fayette, Pennsylvania, US",129274
-84042053,US,USA,840,42053,Forest,Pennsylvania,US,41.51095103,-79.23229292,"Forest, Pennsylvania, US",7247
-84042055,US,USA,840,42055,Franklin,Pennsylvania,US,39.92956518,-77.72157791,"Franklin, Pennsylvania, US",155027
-84042057,US,USA,840,42057,Fulton,Pennsylvania,US,39.92913544,-78.11163677,"Fulton, Pennsylvania, US",14530
-84042059,US,USA,840,42059,Greene,Pennsylvania,US,39.85746531,-80.22357106,"Greene, Pennsylvania, US",36233
-84042061,US,USA,840,42061,Huntingdon,Pennsylvania,US,40.42162652,-77.97673273,"Huntingdon, Pennsylvania, US",45144
-84042063,US,USA,840,42063,Indiana,Pennsylvania,US,40.65241041,-79.08963285,"Indiana, Pennsylvania, US",84073
-84042065,US,USA,840,42065,Jefferson,Pennsylvania,US,41.12913106,-78.9986361,"Jefferson, Pennsylvania, US",43425
-84042067,US,USA,840,42067,Juniata,Pennsylvania,US,40.53358749,-77.3997513,"Juniata, Pennsylvania, US",24763
-84042069,US,USA,840,42069,Lackawanna,Pennsylvania,US,41.43564672,-75.60379201,"Lackawanna, Pennsylvania, US",209674
-84042071,US,USA,840,42071,Lancaster,Pennsylvania,US,40.03904563,-76.24770128,"Lancaster, Pennsylvania, US",545724
-84042073,US,USA,840,42073,Lawrence,Pennsylvania,US,40.99206278,-80.33393706,"Lawrence, Pennsylvania, US",85512
-84042075,US,USA,840,42075,Lebanon,Pennsylvania,US,40.36680311,-76.45651841,"Lebanon, Pennsylvania, US",141793
-84042077,US,USA,840,42077,Lehigh,Pennsylvania,US,40.6154815,-75.59435245,"Lehigh, Pennsylvania, US",369318
-84042079,US,USA,840,42079,Luzerne,Pennsylvania,US,41.17823008,-75.98447579,"Luzerne, Pennsylvania, US",317417
-84042081,US,USA,840,42081,Lycoming,Pennsylvania,US,41.34310539,-77.06629984,"Lycoming, Pennsylvania, US",113299
-84042083,US,USA,840,42083,McKean,Pennsylvania,US,41.80938602,-78.56478358,"McKean, Pennsylvania, US",40625
-84042085,US,USA,840,42085,Mercer,Pennsylvania,US,41.30248872,-80.25816981,"Mercer, Pennsylvania, US",109424
-84042087,US,USA,840,42087,Mifflin,Pennsylvania,US,40.61116939,-77.61070738,"Mifflin, Pennsylvania, US",46138
-84042089,US,USA,840,42089,Monroe,Pennsylvania,US,41.05934058,-75.34031025,"Monroe, Pennsylvania, US",170271
-84042091,US,USA,840,42091,Montgomery,Pennsylvania,US,40.21053671,-75.36652296,"Montgomery, Pennsylvania, US",830915
-84042093,US,USA,840,42093,Montour,Pennsylvania,US,41.03023987,-76.66345939,"Montour, Pennsylvania, US",18230
-84042095,US,USA,840,42095,Northampton,Pennsylvania,US,40.75182733,-75.30471829,"Northampton, Pennsylvania, US",305285
-84042097,US,USA,840,42097,Northumberland,Pennsylvania,US,40.84785433,-76.70798222,"Northumberland, Pennsylvania, US",90843
-84042099,US,USA,840,42099,Perry,Pennsylvania,US,40.40206612,-77.26297447,"Perry, Pennsylvania, US",46272
-84042101,US,USA,840,42101,Philadelphia,Pennsylvania,US,40.00338507,-75.1379271,"Philadelphia, Pennsylvania, US",1584064
-84042103,US,USA,840,42103,Pike,Pennsylvania,US,41.33155042,-75.03208106,"Pike, Pennsylvania, US",55809
-84042105,US,USA,840,42105,Potter,Pennsylvania,US,41.74471626,-77.89559864,"Potter, Pennsylvania, US",16526
-84042107,US,USA,840,42107,Schuylkill,Pennsylvania,US,40.70497338,-76.2150785,"Schuylkill, Pennsylvania, US",141359
-84042109,US,USA,840,42109,Snyder,Pennsylvania,US,40.77129231,-77.06840691,"Snyder, Pennsylvania, US",40372
-84042111,US,USA,840,42111,Somerset,Pennsylvania,US,39.97172723,-79.02699593,"Somerset, Pennsylvania, US",73447
-84042113,US,USA,840,42113,Sullivan,Pennsylvania,US,41.44634738,-76.51246591,"Sullivan, Pennsylvania, US",6066
-84042115,US,USA,840,42115,Susquehanna,Pennsylvania,US,41.82147784,-75.80071959,"Susquehanna, Pennsylvania, US",40328
-84042117,US,USA,840,42117,Tioga,Pennsylvania,US,41.77255149,-77.25433032,"Tioga, Pennsylvania, US",40591
-84042119,US,USA,840,42119,Union,Pennsylvania,US,40.96188846,-77.05996014,"Union, Pennsylvania, US",44923
-84042121,US,USA,840,42121,Venango,Pennsylvania,US,41.40323442,-79.75845449,"Venango, Pennsylvania, US",50668
-84042123,US,USA,840,42123,Warren,Pennsylvania,US,41.81304978,-79.26969577,"Warren, Pennsylvania, US",39191
-84042125,US,USA,840,42125,Washington,Pennsylvania,US,40.19208869,-80.24582867,"Washington, Pennsylvania, US",206865
-84042127,US,USA,840,42127,Wayne,Pennsylvania,US,41.64938475,-75.29956506,"Wayne, Pennsylvania, US",51361
-84042129,US,USA,840,42129,Westmoreland,Pennsylvania,US,40.3137798,-79.46615476,"Westmoreland, Pennsylvania, US",348899
-84042131,US,USA,840,42131,Wyoming,Pennsylvania,US,41.51955538,-76.01074915,"Wyoming, Pennsylvania, US",26794
-84042133,US,USA,840,42133,York,Pennsylvania,US,39.9210089,-76.73040131,"York, Pennsylvania, US",449058
-84044001,US,USA,840,44001,Bristol,Rhode Island,US,41.71018079,-71.28652315,"Bristol, Rhode Island, US",48479
-84044003,US,USA,840,44003,Kent,Rhode Island,US,41.67106337,-71.57641596,"Kent, Rhode Island, US",164292
-84044005,US,USA,840,44005,Newport,Rhode Island,US,41.5642026,-71.26569799,"Newport, Rhode Island, US",82082
-84044007,US,USA,840,44007,Providence,Rhode Island,US,41.87064746,-71.57753536,"Providence, Rhode Island, US",638931
-84044009,US,USA,840,44009,Washington,Rhode Island,US,41.45961631,-71.61435303,"Washington, Rhode Island, US",125577
-84045001,US,USA,840,45001,Abbeville,South Carolina,US,34.22333378,-82.46170658,"Abbeville, South Carolina, US",24527
-84045003,US,USA,840,45003,Aiken,South Carolina,US,33.54338026,-81.63645384,"Aiken, South Carolina, US",170872
-84045005,US,USA,840,45005,Allendale,South Carolina,US,32.98837386,-81.35321066,"Allendale, South Carolina, US",8688
-84045007,US,USA,840,45007,Anderson,South Carolina,US,34.51828081,-82.63959517,"Anderson, South Carolina, US",202558
-84045009,US,USA,840,45009,Bamberg,South Carolina,US,33.21927586,-81.05659969,"Bamberg, South Carolina, US",14066
-84045011,US,USA,840,45011,Barnwell,South Carolina,US,33.26679302,-81.43584352,"Barnwell, South Carolina, US",20866
-84045013,US,USA,840,45013,Beaufort,South Carolina,US,32.39226291,-80.72619758,"Beaufort, South Carolina, US",192122
-84045015,US,USA,840,45015,Berkeley,South Carolina,US,33.20222596,-79.94654523,"Berkeley, South Carolina, US",227907
-84045017,US,USA,840,45017,Calhoun,South Carolina,US,33.66926881,-80.77722168,"Calhoun, South Carolina, US",14553
-84045019,US,USA,840,45019,Charleston,South Carolina,US,32.82487866,-79.96512315,"Charleston, South Carolina, US",411406
-84045021,US,USA,840,45021,Cherokee,South Carolina,US,35.05122251,-81.61828622,"Cherokee, South Carolina, US",57300
-84045023,US,USA,840,45023,Chester,South Carolina,US,34.69249168,-81.1583216,"Chester, South Carolina, US",32244
-84045025,US,USA,840,45025,Chesterfield,South Carolina,US,34.64137396,-80.1564014,"Chesterfield, South Carolina, US",45650
-84045027,US,USA,840,45027,Clarendon,South Carolina,US,33.66610974,-80.21647898,"Clarendon, South Carolina, US",33745
-84045029,US,USA,840,45029,Colleton,South Carolina,US,32.87582989,-80.67641292,"Colleton, South Carolina, US",37677
-84045031,US,USA,840,45031,Darlington,South Carolina,US,34.33358335,-79.96027485,"Darlington, South Carolina, US",66618
-84045033,US,USA,840,45033,Dillon,South Carolina,US,34.39007791,-79.37741872,"Dillon, South Carolina, US",30479
-84045035,US,USA,840,45035,Dorchester,South Carolina,US,33.0794369,-80.40502652,"Dorchester, South Carolina, US",162809
-84045037,US,USA,840,45037,Edgefield,South Carolina,US,33.77221995,-81.96231108,"Edgefield, South Carolina, US",27260
-84045039,US,USA,840,45039,Fairfield,South Carolina,US,34.39287073,-81.1195624,"Fairfield, South Carolina, US",22347
-84045041,US,USA,840,45041,Florence,South Carolina,US,34.02361754,-79.70189312,"Florence, South Carolina, US",138293
-84045043,US,USA,840,45043,Georgetown,South Carolina,US,33.43443342,-79.33202141,"Georgetown, South Carolina, US",62680
-84045045,US,USA,840,45045,Greenville,South Carolina,US,34.89502264,-82.37295012,"Greenville, South Carolina, US",523542
-84045047,US,USA,840,45047,Greenwood,South Carolina,US,34.15272415,-82.12715789,"Greenwood, South Carolina, US",70811
-84045049,US,USA,840,45049,Hampton,South Carolina,US,32.77419582,-81.13845571,"Hampton, South Carolina, US",19222
-84045051,US,USA,840,45051,Horry,South Carolina,US,33.9212828,-78.99555293,"Horry, South Carolina, US",354081
-84045053,US,USA,840,45053,Jasper,South Carolina,US,32.43171982,-81.02487495,"Jasper, South Carolina, US",30073
-84045055,US,USA,840,45055,Kershaw,South Carolina,US,34.33988254,-80.58763164,"Kershaw, South Carolina, US",66551
-84045057,US,USA,840,45057,Lancaster,South Carolina,US,34.68270843,-80.70513032,"Lancaster, South Carolina, US",98012
-84045059,US,USA,840,45059,Laurens,South Carolina,US,34.48244419,-82.00490796,"Laurens, South Carolina, US",67493
-84045061,US,USA,840,45061,Lee,South Carolina,US,34.16393091,-80.25690731,"Lee, South Carolina, US",16828
-84045063,US,USA,840,45063,Lexington,South Carolina,US,33.89665987,-81.27146426,"Lexington, South Carolina, US",298750
-84045065,US,USA,840,45065,McCormick,South Carolina,US,33.90161443,-82.30794338,"McCormick, South Carolina, US",9463
-84045067,US,USA,840,45067,Marion,South Carolina,US,34.07859748,-79.36400756,"Marion, South Carolina, US",30657
-84045069,US,USA,840,45069,Marlboro,South Carolina,US,34.59905577,-79.67561152,"Marlboro, South Carolina, US",26118
-84045071,US,USA,840,45071,Newberry,South Carolina,US,34.28629098,-81.59935761,"Newberry, South Carolina, US",38440
-84045073,US,USA,840,45073,Oconee,South Carolina,US,34.75225169,-83.06742317,"Oconee, South Carolina, US",79546
-84045075,US,USA,840,45075,Orangeburg,South Carolina,US,33.4391073,-80.79886287,"Orangeburg, South Carolina, US",86175
-84045077,US,USA,840,45077,Pickens,South Carolina,US,34.88807695,-82.72791551,"Pickens, South Carolina, US",126884
-84045079,US,USA,840,45079,Richland,South Carolina,US,34.01791263,-80.90267209,"Richland, South Carolina, US",415759
-84045081,US,USA,840,45081,Saluda,South Carolina,US,34.00795823,-81.72713237,"Saluda, South Carolina, US",20473
-84045083,US,USA,840,45083,Spartanburg,South Carolina,US,34.92960077,-81.99225984,"Spartanburg, South Carolina, US",319785
-84045085,US,USA,840,45085,Sumter,South Carolina,US,33.91826534,-80.37942316,"Sumter, South Carolina, US",106721
-84045087,US,USA,840,45087,Union,South Carolina,US,34.68835752,-81.61730349,"Union, South Carolina, US",27316
-84045089,US,USA,840,45089,Williamsburg,South Carolina,US,33.62190129,-79.72767442,"Williamsburg, South Carolina, US",30368
-84045091,US,USA,840,45091,York,South Carolina,US,34.97281497,-81.18085944,"York, South Carolina, US",280979
-84046003,US,USA,840,46003,Aurora,South Dakota,US,43.71757685,-98.56050467,"Aurora, South Dakota, US",2751
-84046005,US,USA,840,46005,Beadle,South Dakota,US,44.41464384,-98.27858469,"Beadle, South Dakota, US",18453
-84046007,US,USA,840,46007,Bennett,South Dakota,US,43.19486375,-101.6665572,"Bennett, South Dakota, US",3365
-84046009,US,USA,840,46009,Bon Homme,South Dakota,US,42.98914167,-97.88592746,"Bon Homme, South Dakota, US",6901
-84046011,US,USA,840,46011,Brookings,South Dakota,US,44.36974375,-96.79079945,"Brookings, South Dakota, US",35077
-84046013,US,USA,840,46013,Brown,South Dakota,US,45.58994323,-98.35165355,"Brown, South Dakota, US",38839
-84046015,US,USA,840,46015,Brule,South Dakota,US,43.71756379,-99.08118954,"Brule, South Dakota, US",5297
-84046017,US,USA,840,46017,Buffalo,South Dakota,US,44.07657829,-99.20814467,"Buffalo, South Dakota, US",1962
-84046019,US,USA,840,46019,Butte,South Dakota,US,44.90608745,-103.5079318,"Butte, South Dakota, US",10429
-84046021,US,USA,840,46021,Campbell,South Dakota,US,45.77074915,-100.0510181,"Campbell, South Dakota, US",1376
-84046023,US,USA,840,46023,Charles Mix,South Dakota,US,43.20660134,-98.58856175,"Charles Mix, South Dakota, US",9292
-84046025,US,USA,840,46025,Clark,South Dakota,US,44.85834507,-97.72925109,"Clark, South Dakota, US",3736
-84046027,US,USA,840,46027,Clay,South Dakota,US,42.91296147,-96.97656917,"Clay, South Dakota, US",14070
-84046029,US,USA,840,46029,Codington,South Dakota,US,44.97788119,-97.18827677,"Codington, South Dakota, US",28009
-84046031,US,USA,840,46031,Corson,South Dakota,US,45.70889983,-101.1970473,"Corson, South Dakota, US",4086
-84046033,US,USA,840,46033,Custer,South Dakota,US,43.67741105,-103.4534521,"Custer, South Dakota, US",8972
-84046035,US,USA,840,46035,Davison,South Dakota,US,43.67490933,-98.14458906,"Davison, South Dakota, US",19775
-84046037,US,USA,840,46037,Day,South Dakota,US,45.367281,-97.60737498,"Day, South Dakota, US",5424
-84046039,US,USA,840,46039,Deuel,South Dakota,US,44.75994309,-96.66943645,"Deuel, South Dakota, US",4351
-84046041,US,USA,840,46041,Dewey,South Dakota,US,45.15639647,-100.8709139,"Dewey, South Dakota, US",5892
-84046043,US,USA,840,46043,Douglas,South Dakota,US,43.38520741,-98.36978007,"Douglas, South Dakota, US",2921
-84046045,US,USA,840,46045,Edmunds,South Dakota,US,45.41846445,-99.21545423,"Edmunds, South Dakota, US",3829
-84046047,US,USA,840,46047,Fall River,South Dakota,US,43.23929297,-103.5275691,"Fall River, South Dakota, US",6713
-84046049,US,USA,840,46049,Faulk,South Dakota,US,45.07082625,-99.14535601,"Faulk, South Dakota, US",2299
-84046051,US,USA,840,46051,Grant,South Dakota,US,45.1723937,-96.77002276,"Grant, South Dakota, US",7052
-84046053,US,USA,840,46053,Gregory,South Dakota,US,43.19419064,-99.18883902,"Gregory, South Dakota, US",4185
-84046055,US,USA,840,46055,Haakon,South Dakota,US,44.29299053,-101.539099,"Haakon, South Dakota, US",1899
-84046057,US,USA,840,46057,Hamlin,South Dakota,US,44.67385954,-97.18829593,"Hamlin, South Dakota, US",6164
-84046059,US,USA,840,46059,Hand,South Dakota,US,44.54708407,-99.00386459,"Hand, South Dakota, US",3191
-84046061,US,USA,840,46061,Hanson,South Dakota,US,43.6746384,-97.78715148,"Hanson, South Dakota, US",3453
-84046063,US,USA,840,46063,Harding,South Dakota,US,45.58015551,-103.4958629,"Harding, South Dakota, US",1298
-84046065,US,USA,840,46065,Hughes,South Dakota,US,44.39091534,-99.99661148,"Hughes, South Dakota, US",17526
-84046067,US,USA,840,46067,Hutchinson,South Dakota,US,43.33449012,-97.75536441,"Hutchinson, South Dakota, US",7291
-84046069,US,USA,840,46069,Hyde,South Dakota,US,44.54747703,-99.48572582,"Hyde, South Dakota, US",1301
-84046071,US,USA,840,46071,Jackson,South Dakota,US,43.69318385,-101.6255063,"Jackson, South Dakota, US",3344
-84046073,US,USA,840,46073,Jerauld,South Dakota,US,44.06637798,-98.62965972,"Jerauld, South Dakota, US",2013
-84046075,US,USA,840,46075,Jones,South Dakota,US,43.96278565,-100.6940008,"Jones, South Dakota, US",903
-84046077,US,USA,840,46077,Kingsbury,South Dakota,US,44.36956169,-97.4913945,"Kingsbury, South Dakota, US",4939
-84046079,US,USA,840,46079,Lake,South Dakota,US,44.02193107,-97.12926365,"Lake, South Dakota, US",12797
-84046081,US,USA,840,46081,Lawrence,South Dakota,US,44.35919441,-103.7929428,"Lawrence, South Dakota, US",25844
-84046083,US,USA,840,46083,Lincoln,South Dakota,US,43.27841182,-96.7203905,"Lincoln, South Dakota, US",61128
-84046085,US,USA,840,46085,Lyman,South Dakota,US,43.89522709,-99.85201878,"Lyman, South Dakota, US",3781
-84046087,US,USA,840,46087,McCook,South Dakota,US,43.6742571,-97.36863144,"McCook, South Dakota, US",5586
-84046089,US,USA,840,46089,McPherson,South Dakota,US,45.76626028,-99.22118798,"McPherson, South Dakota, US",2379
-84046091,US,USA,840,46091,Marshall,South Dakota,US,45.75870838,-97.59855639,"Marshall, South Dakota, US",4935
-84046093,US,USA,840,46093,Meade,South Dakota,US,44.56676791,-102.7162741,"Meade, South Dakota, US",28332
-84046095,US,USA,840,46095,Mellette,South Dakota,US,43.58078848,-100.7563186,"Mellette, South Dakota, US",2061
-84046097,US,USA,840,46097,Miner,South Dakota,US,44.02197882,-97.60992207,"Miner, South Dakota, US",2216
-84046099,US,USA,840,46099,Minnehaha,South Dakota,US,43.67441641,-96.7910885,"Minnehaha, South Dakota, US",193134
-84046101,US,USA,840,46101,Moody,South Dakota,US,44.02266214,-96.67081159,"Moody, South Dakota, US",6576
-84046102,US,USA,840,46102,Oglala Lakota,South Dakota,US,43.33749164,-102.5555498,"Oglala Lakota, South Dakota, US",14177
-84046103,US,USA,840,46103,Pennington,South Dakota,US,44.0025835,-102.8240777,"Pennington, South Dakota, US",113775
-84046105,US,USA,840,46105,Perkins,South Dakota,US,45.49049506,-102.4755586,"Perkins, South Dakota, US",2865
-84046107,US,USA,840,46107,Potter,South Dakota,US,45.06583079,-99.95498503,"Potter, South Dakota, US",2153
-84046109,US,USA,840,46109,Roberts,South Dakota,US,45.62975048,-96.94672673,"Roberts, South Dakota, US",10394
-84046111,US,USA,840,46111,Sanborn,South Dakota,US,44.02351092,-98.0909816,"Sanborn, South Dakota, US",2344
-84046115,US,USA,840,46115,Spink,South Dakota,US,44.93837606,-98.34626602,"Spink, South Dakota, US",6376
-84046117,US,USA,840,46117,Stanley,South Dakota,US,44.41381872,-100.7349153,"Stanley, South Dakota, US",3098
-84046119,US,USA,840,46119,Sully,South Dakota,US,44.71571812,-100.1278092,"Sully, South Dakota, US",1391
-84046121,US,USA,840,46121,Todd,South Dakota,US,43.19338568,-100.7195503,"Todd, South Dakota, US",10177
-84046123,US,USA,840,46123,Tripp,South Dakota,US,43.34459388,-99.8854891,"Tripp, South Dakota, US",5441
-84046125,US,USA,840,46125,Turner,South Dakota,US,43.3109081,-97.14865776,"Turner, South Dakota, US",8384
-84046127,US,USA,840,46127,Union,South Dakota,US,42.83112163,-96.6557828,"Union, South Dakota, US",15932
-84046129,US,USA,840,46129,Walworth,South Dakota,US,45.43019636,-100.0307514,"Walworth, South Dakota, US",5435
-84046135,US,USA,840,46135,Yankton,South Dakota,US,43.00924485,-97.39467635,"Yankton, South Dakota, US",22814
-84046137,US,USA,840,46137,Ziebach,South Dakota,US,44.97881876,-101.6654622,"Ziebach, South Dakota, US",2756
-84047001,US,USA,840,47001,Anderson,Tennessee,US,36.12684348,-84.19965764,"Anderson, Tennessee, US",76978
-84047003,US,USA,840,47003,Bedford,Tennessee,US,35.51123746,-86.45549096,"Bedford, Tennessee, US",49713
-84047005,US,USA,840,47005,Benton,Tennessee,US,36.07110411,-88.06849355,"Benton, Tennessee, US",16160
-84047007,US,USA,840,47007,Bledsoe,Tennessee,US,35.59942968,-85.20611967,"Bledsoe, Tennessee, US",15064
-84047009,US,USA,840,47009,Blount,Tennessee,US,35.68938198,-83.92847788,"Blount, Tennessee, US",133088
-84047011,US,USA,840,47011,Bradley,Tennessee,US,35.15739424,-84.857186,"Bradley, Tennessee, US",108110
-84047013,US,USA,840,47013,Campbell,Tennessee,US,36.40355516,-84.1510856,"Campbell, Tennessee, US",39842
-84047015,US,USA,840,47015,Cannon,Tennessee,US,35.80990797,-86.05738983,"Cannon, Tennessee, US",14678
-84047017,US,USA,840,47017,Carroll,Tennessee,US,35.97366108,-88.45189331,"Carroll, Tennessee, US",27767
-84047019,US,USA,840,47019,Carter,Tennessee,US,36.28969086,-82.12588974,"Carter, Tennessee, US",56391
-84047021,US,USA,840,47021,Cheatham,Tennessee,US,36.26136216,-87.08903581,"Cheatham, Tennessee, US",40667
-84047023,US,USA,840,47023,Chester,Tennessee,US,35.42527478,-88.6095842,"Chester, Tennessee, US",17297
-84047025,US,USA,840,47025,Claiborne,Tennessee,US,36.48319149,-83.65947309,"Claiborne, Tennessee, US",31959
-84047027,US,USA,840,47027,Clay,Tennessee,US,36.55151008,-85.53930419,"Clay, Tennessee, US",7615
-84047029,US,USA,840,47029,Cocke,Tennessee,US,35.9278914,-83.11828725,"Cocke, Tennessee, US",36004
-84047031,US,USA,840,47031,Coffee,Tennessee,US,35.49090731,-86.07311784,"Coffee, Tennessee, US",56520
-84047033,US,USA,840,47033,Crockett,Tennessee,US,35.81830662,-89.14916269,"Crockett, Tennessee, US",14230
-84047035,US,USA,840,47035,Cumberland,Tennessee,US,35.95271721,-84.99840585,"Cumberland, Tennessee, US",60520
-84047037,US,USA,840,47037,Davidson,Tennessee,US,36.17007426,-86.78646056,"Davidson, Tennessee, US",694144
-84047039,US,USA,840,47039,Decatur,Tennessee,US,35.60048904,-88.11043779,"Decatur, Tennessee, US",11663
-84047041,US,USA,840,47041,DeKalb,Tennessee,US,35.97616272,-85.83689361,"DeKalb, Tennessee, US",20490
-84047043,US,USA,840,47043,Dickson,Tennessee,US,36.14669837,-87.35891709,"Dickson, Tennessee, US",53948
-84047045,US,USA,840,47045,Dyer,Tennessee,US,36.05931946,-89.41542855,"Dyer, Tennessee, US",37159
-84047047,US,USA,840,47047,Fayette,Tennessee,US,35.19615831,-89.41399032,"Fayette, Tennessee, US",41133
-84047049,US,USA,840,47049,Fentress,Tennessee,US,36.38128818,-84.92870012,"Fentress, Tennessee, US",18523
-84047051,US,USA,840,47051,Franklin,Tennessee,US,35.15634626,-86.09201039,"Franklin, Tennessee, US",42208
-84047053,US,USA,840,47053,Gibson,Tennessee,US,35.99438059,-88.93358327,"Gibson, Tennessee, US",49133
-84047055,US,USA,840,47055,Giles,Tennessee,US,35.20222469,-87.03992678,"Giles, Tennessee, US",29464
-84047057,US,USA,840,47057,Grainger,Tennessee,US,36.27469206,-83.51254721,"Grainger, Tennessee, US",23320
-84047059,US,USA,840,47059,Greene,Tennessee,US,36.17470125,-82.84691273,"Greene, Tennessee, US",69069
-84047061,US,USA,840,47061,Grundy,Tennessee,US,35.38433717,-85.72142731,"Grundy, Tennessee, US",13427
-84047063,US,USA,840,47063,Hamblen,Tennessee,US,36.21990035,-83.26586179,"Hamblen, Tennessee, US",64934
-84047065,US,USA,840,47065,Hamilton,Tennessee,US,35.17670231,-85.16652245,"Hamilton, Tennessee, US",367804
-84047067,US,USA,840,47067,Hancock,Tennessee,US,36.52692871,-83.22375847,"Hancock, Tennessee, US",6620
-84047069,US,USA,840,47069,Hardeman,Tennessee,US,35.20772017,-88.99161161,"Hardeman, Tennessee, US",25050
-84047071,US,USA,840,47071,Hardin,Tennessee,US,35.19732531,-88.18593755,"Hardin, Tennessee, US",25652
-84047073,US,USA,840,47073,Hawkins,Tennessee,US,36.44355426,-82.94885298,"Hawkins, Tennessee, US",56786
-84047075,US,USA,840,47075,Haywood,Tennessee,US,35.58332824,-89.28536625,"Haywood, Tennessee, US",17304
-84047077,US,USA,840,47077,Henderson,Tennessee,US,35.65581134,-88.38600175,"Henderson, Tennessee, US",28117
-84047079,US,USA,840,47079,Henry,Tennessee,US,36.33160906,-88.30121797,"Henry, Tennessee, US",32345
-84047081,US,USA,840,47081,Hickman,Tennessee,US,35.80609681,-87.47643507,"Hickman, Tennessee, US",25178
-84047083,US,USA,840,47083,Houston,Tennessee,US,36.28872054,-87.71878828,"Houston, Tennessee, US",8201
-84047085,US,USA,840,47085,Humphreys,Tennessee,US,36.03958805,-87.77992872,"Humphreys, Tennessee, US",18582
-84047087,US,USA,840,47087,Jackson,Tennessee,US,36.36380466,-85.67239905,"Jackson, Tennessee, US",11786
-84047089,US,USA,840,47089,Jefferson,Tennessee,US,36.04818632,-83.45148924,"Jefferson, Tennessee, US",54495
-84047091,US,USA,840,47091,Johnson,Tennessee,US,36.4552395,-81.84886538,"Johnson, Tennessee, US",17788
-84047093,US,USA,840,47093,Knox,Tennessee,US,35.99508821,-83.94635435,"Knox, Tennessee, US",470313
-84047095,US,USA,840,47095,Lake,Tennessee,US,36.3418017,-89.48921915,"Lake, Tennessee, US",7016
-84047097,US,USA,840,47097,Lauderdale,Tennessee,US,35.75893438,-89.6301591,"Lauderdale, Tennessee, US",25633
-84047099,US,USA,840,47099,Lawrence,Tennessee,US,35.21675201,-87.39787695,"Lawrence, Tennessee, US",44142
-84047101,US,USA,840,47101,Lewis,Tennessee,US,35.52853208,-87.49022694,"Lewis, Tennessee, US",12268
-84047103,US,USA,840,47103,Lincoln,Tennessee,US,35.13738622,-86.58910106,"Lincoln, Tennessee, US",34366
-84047105,US,USA,840,47105,Loudon,Tennessee,US,35.73939663,-84.31145275,"Loudon, Tennessee, US",54068
-84047107,US,USA,840,47107,McMinn,Tennessee,US,35.42812616,-84.61520715,"McMinn, Tennessee, US",53794
-84047109,US,USA,840,47109,McNairy,Tennessee,US,35.17468549,-88.5647812,"McNairy, Tennessee, US",25694
-84047111,US,USA,840,47111,Macon,Tennessee,US,36.53157855,-86.00778595,"Macon, Tennessee, US",24602
-84047113,US,USA,840,47113,Madison,Tennessee,US,35.61181957,-88.84076036,"Madison, Tennessee, US",97984
-84047115,US,USA,840,47115,Marion,Tennessee,US,35.12997174,-85.62265895,"Marion, Tennessee, US",28907
-84047117,US,USA,840,47117,Marshall,Tennessee,US,35.45798777,-86.76420988,"Marshall, Tennessee, US",34375
-84047119,US,USA,840,47119,Maury,Tennessee,US,35.6187413,-87.07462444,"Maury, Tennessee, US",96387
-84047121,US,USA,840,47121,Meigs,Tennessee,US,35.51558739,-84.81482914,"Meigs, Tennessee, US",12422
-84047123,US,USA,840,47123,Monroe,Tennessee,US,35.44550387,-84.24902965,"Monroe, Tennessee, US",46545
-84047125,US,USA,840,47125,Montgomery,Tennessee,US,36.49609412,-87.38550661,"Montgomery, Tennessee, US",208993
-84047127,US,USA,840,47127,Moore,Tennessee,US,35.27724699,-86.36230578,"Moore, Tennessee, US",6488
-84047129,US,USA,840,47129,Morgan,Tennessee,US,36.13248031,-84.64880098,"Morgan, Tennessee, US",21403
-84047131,US,USA,840,47131,Obion,Tennessee,US,36.35732446,-89.14921589,"Obion, Tennessee, US",30069
-84047133,US,USA,840,47133,Overton,Tennessee,US,36.34117832,-85.28989535,"Overton, Tennessee, US",22241
-84047135,US,USA,840,47135,Perry,Tennessee,US,35.63708728,-87.86139634,"Perry, Tennessee, US",8076
-84047137,US,USA,840,47137,Pickett,Tennessee,US,36.55606529,-85.077633,"Pickett, Tennessee, US",5048
-84047139,US,USA,840,47139,Polk,Tennessee,US,35.12245443,-84.52075859,"Polk, Tennessee, US",16832
-84047141,US,USA,840,47141,Putnam,Tennessee,US,36.14005459,-85.50646123,"Putnam, Tennessee, US",80245
-84047143,US,USA,840,47143,Rhea,Tennessee,US,35.60536161,-84.93076643,"Rhea, Tennessee, US",33167
-84047145,US,USA,840,47145,Roane,Tennessee,US,35.84923189,-84.52458689,"Roane, Tennessee, US",53382
-84047147,US,USA,840,47147,Robertson,Tennessee,US,36.52454807,-86.87346725,"Robertson, Tennessee, US",71813
-84047149,US,USA,840,47149,Rutherford,Tennessee,US,35.84591405,-86.4107263,"Rutherford, Tennessee, US",332285
-84047151,US,USA,840,47151,Scott,Tennessee,US,36.42325673,-84.50360494,"Scott, Tennessee, US",22068
-84047153,US,USA,840,47153,Sequatchie,Tennessee,US,35.36979721,-85.41022136,"Sequatchie, Tennessee, US",15026
-84047155,US,USA,840,47155,Sevier,Tennessee,US,35.78077323,-83.52244332,"Sevier, Tennessee, US",98250
-84047157,US,USA,840,47157,Shelby,Tennessee,US,35.1864775,-89.89692423,"Shelby, Tennessee, US",937166
-84047159,US,USA,840,47159,Smith,Tennessee,US,36.25359775,-85.95411046,"Smith, Tennessee, US",20157
-84047161,US,USA,840,47161,Stewart,Tennessee,US,36.50235092,-87.83920548,"Stewart, Tennessee, US",13715
-84047163,US,USA,840,47163,Sullivan,Tennessee,US,36.51240691,-82.30412917,"Sullivan, Tennessee, US",158348
-84047165,US,USA,840,47165,Sumner,Tennessee,US,36.46824103,-86.45917204,"Sumner, Tennessee, US",191283
-84047167,US,USA,840,47167,Tipton,Tennessee,US,35.501942,-89.73694895,"Tipton, Tennessee, US",61599
-84047169,US,USA,840,47169,Trousdale,Tennessee,US,36.39026213,-86.16087954,"Trousdale, Tennessee, US",11284
-84047171,US,USA,840,47171,Unicoi,Tennessee,US,36.10890856,-82.43709629,"Unicoi, Tennessee, US",17883
-84047173,US,USA,840,47173,Union,Tennessee,US,36.28590426,-83.83651902,"Union, Tennessee, US",19972
-84047175,US,USA,840,47175,Van Buren,Tennessee,US,35.69864497,-85.45221699,"Van Buren, Tennessee, US",5872
-84047177,US,USA,840,47177,Warren,Tennessee,US,35.6728299,-85.77969117,"Warren, Tennessee, US",41277
-84047179,US,USA,840,47179,Washington,Tennessee,US,36.29472368,-82.4945472,"Washington, Tennessee, US",129375
-84047181,US,USA,840,47181,Wayne,Tennessee,US,35.23868267,-87.78644456,"Wayne, Tennessee, US",16673
-84047183,US,USA,840,47183,Weakley,Tennessee,US,36.29896232,-88.71990865,"Weakley, Tennessee, US",33328
-84047185,US,USA,840,47185,White,Tennessee,US,35.92929884,-85.45591799,"White, Tennessee, US",27345
-84047187,US,USA,840,47187,Williamson,Tennessee,US,35.89099229,-86.89281867,"Williamson, Tennessee, US",238412
-84047189,US,USA,840,47189,Wilson,Tennessee,US,36.15496772,-86.29775884,"Wilson, Tennessee, US",144657
-84048001,US,USA,840,48001,Anderson,Texas,US,31.81534745,-95.65354823,"Anderson, Texas, US",57735
-84048003,US,USA,840,48003,Andrews,Texas,US,32.30468633,-102.6376548,"Andrews, Texas, US",18705
-84048005,US,USA,840,48005,Angelina,Texas,US,31.25457347,-94.60901487,"Angelina, Texas, US",86715
-84048007,US,USA,840,48007,Aransas,Texas,US,28.10556197,-96.9995047,"Aransas, Texas, US",23510
-84048009,US,USA,840,48009,Archer,Texas,US,33.61569967,-98.68754589,"Archer, Texas, US",8553
-84048011,US,USA,840,48011,Armstrong,Texas,US,34.96507426,-101.3574874,"Armstrong, Texas, US",1887
-84048013,US,USA,840,48013,Atascosa,Texas,US,28.89333001,-98.52730485,"Atascosa, Texas, US",51153
-84048015,US,USA,840,48015,Austin,Texas,US,29.88548725,-96.27736949,"Austin, Texas, US",30032
-84048017,US,USA,840,48017,Bailey,Texas,US,34.06854817,-102.8299707,"Bailey, Texas, US",7000
-84048019,US,USA,840,48019,Bandera,Texas,US,29.74619598,-99.24598147,"Bandera, Texas, US",23112
-84048021,US,USA,840,48021,Bastrop,Texas,US,30.10370699,-97.31206354,"Bastrop, Texas, US",88723
-84048023,US,USA,840,48023,Baylor,Texas,US,33.61640794,-99.21352901,"Baylor, Texas, US",3509
-84048025,US,USA,840,48025,Bee,Texas,US,28.41761668,-97.74215593,"Bee, Texas, US",32565
-84048027,US,USA,840,48027,Bell,Texas,US,31.03736027,-97.4785025,"Bell, Texas, US",362924
-84048029,US,USA,840,48029,Bexar,Texas,US,29.44928723,-98.52019748,"Bexar, Texas, US",2003554
-84048031,US,USA,840,48031,Blanco,Texas,US,30.26640707,-98.3999852,"Blanco, Texas, US",11931
-84048033,US,USA,840,48033,Borden,Texas,US,32.74363984,-101.4316509,"Borden, Texas, US",654
-84048035,US,USA,840,48035,Bosque,Texas,US,31.89978581,-97.63613524,"Bosque, Texas, US",18685
-84048037,US,USA,840,48037,Bowie,Texas,US,33.44626922,-94.41834132,"Bowie, Texas, US",93245
-84048039,US,USA,840,48039,Brazoria,Texas,US,29.18757369,-95.44563172,"Brazoria, Texas, US",374264
-84048041,US,USA,840,48041,Brazos,Texas,US,30.6636448,-96.30205577,"Brazos, Texas, US",229211
-84048043,US,USA,840,48043,Brewster,Texas,US,29.81008251,-103.2520326,"Brewster, Texas, US",9203
-84048045,US,USA,840,48045,Briscoe,Texas,US,34.53026962,-101.2084947,"Briscoe, Texas, US",1546
-84048047,US,USA,840,48047,Brooks,Texas,US,27.03103197,-98.21808402,"Brooks, Texas, US",7093
-84048049,US,USA,840,48049,Brown,Texas,US,31.77430356,-98.99907113,"Brown, Texas, US",37864
-84048051,US,USA,840,48051,Burleson,Texas,US,30.49273808,-96.62158484,"Burleson, Texas, US",18443
-84048053,US,USA,840,48053,Burnet,Texas,US,30.78801353,-98.181887,"Burnet, Texas, US",48155
-84048055,US,USA,840,48055,Caldwell,Texas,US,29.83668859,-97.61814775,"Caldwell, Texas, US",43664
-84048057,US,USA,840,48057,Calhoun,Texas,US,28.47048236,-96.61633945,"Calhoun, Texas, US",21290
-84048059,US,USA,840,48059,Callahan,Texas,US,32.29760619,-99.37326312,"Callahan, Texas, US",13943
-84048061,US,USA,840,48061,Cameron,Texas,US,26.14524221,-97.48140372,"Cameron, Texas, US",423163
-84048063,US,USA,840,48063,Camp,Texas,US,32.97195142,-94.97790104,"Camp, Texas, US",13094
-84048065,US,USA,840,48065,Carson,Texas,US,35.40365929,-101.3542669,"Carson, Texas, US",5926
-84048067,US,USA,840,48067,Cass,Texas,US,33.07499881,-94.34646905,"Cass, Texas, US",30026
-84048069,US,USA,840,48069,Castro,Texas,US,34.53016752,-102.2617243,"Castro, Texas, US",7530
-84048071,US,USA,840,48071,Chambers,Texas,US,29.70972016,-94.67154501,"Chambers, Texas, US",43837
-84048073,US,USA,840,48073,Cherokee,Texas,US,31.837258,-95.16559897,"Cherokee, Texas, US",52646
-84048075,US,USA,840,48075,Childress,Texas,US,34.5293041,-100.2077916,"Childress, Texas, US",7306
-84048077,US,USA,840,48077,Clay,Texas,US,33.78686685,-98.20771198,"Clay, Texas, US",10471
-84048079,US,USA,840,48079,Cochran,Texas,US,33.60425307,-102.8284499,"Cochran, Texas, US",2853
-84048081,US,USA,840,48081,Coke,Texas,US,31.88911733,-100.5297533,"Coke, Texas, US",3387
-84048083,US,USA,840,48083,Coleman,Texas,US,31.76736834,-99.45240766,"Coleman, Texas, US",8175
-84048085,US,USA,840,48085,Collin,Texas,US,33.18820114,-96.57264368,"Collin, Texas, US",1034730
-84048087,US,USA,840,48087,Collingsworth,Texas,US,34.96489496,-100.2700111,"Collingsworth, Texas, US",2920
-84048089,US,USA,840,48089,Colorado,Texas,US,29.622098,-96.5273805,"Colorado, Texas, US",21493
-84048091,US,USA,840,48091,Comal,Texas,US,29.80811278,-98.27647225,"Comal, Texas, US",156209
-84048093,US,USA,840,48093,Comanche,Texas,US,31.94854689,-98.55876441,"Comanche, Texas, US",13635
-84048095,US,USA,840,48095,Concho,Texas,US,31.32635934,-99.86473038,"Concho, Texas, US",2726
-84048097,US,USA,840,48097,Cooke,Texas,US,33.63979567,-97.21240912,"Cooke, Texas, US",41257
-84048099,US,USA,840,48099,Coryell,Texas,US,31.39078397,-97.79936155,"Coryell, Texas, US",75951
-84048101,US,USA,840,48101,Cottle,Texas,US,34.07783319,-100.2785062,"Cottle, Texas, US",1398
-84048103,US,USA,840,48103,Crane,Texas,US,31.43052248,-102.5143314,"Crane, Texas, US",4797
-84048105,US,USA,840,48105,Crockett,Texas,US,30.72367027,-101.4134238,"Crockett, Texas, US",3464
-84048107,US,USA,840,48107,Crosby,Texas,US,33.61431553,-101.3000364,"Crosby, Texas, US",5737
-84048109,US,USA,840,48109,Culberson,Texas,US,31.44506775,-104.5185739,"Culberson, Texas, US",2171
-84048111,US,USA,840,48111,Dallam,Texas,US,36.27787176,-102.6020725,"Dallam, Texas, US",7287
-84048113,US,USA,840,48113,Dallas,Texas,US,32.76670599,-96.7779605,"Dallas, Texas, US",2635516
-84048115,US,USA,840,48115,Dawson,Texas,US,32.74255572,-101.9477242,"Dawson, Texas, US",12728
-84048117,US,USA,840,48117,Deaf Smith,Texas,US,34.96522957,-102.6054267,"Deaf Smith, Texas, US",18546
-84048119,US,USA,840,48119,Delta,Texas,US,33.38570922,-95.66921122,"Delta, Texas, US",5331
-84048121,US,USA,840,48121,Denton,Texas,US,33.20521901,-97.11691153,"Denton, Texas, US",887207
-84048123,US,USA,840,48123,DeWitt,Texas,US,29.08101855,-97.3568117,"DeWitt, Texas, US",20160
-84048125,US,USA,840,48125,Dickens,Texas,US,33.61616822,-100.7788855,"Dickens, Texas, US",2211
-84048127,US,USA,840,48127,Dimmit,Texas,US,28.42270064,-99.75645095,"Dimmit, Texas, US",10124
-84048129,US,USA,840,48129,Donley,Texas,US,34.96517499,-100.8140093,"Donley, Texas, US",3278
-84048131,US,USA,840,48131,Duval,Texas,US,27.68184592,-98.50864568,"Duval, Texas, US",11157
-84048133,US,USA,840,48133,Eastland,Texas,US,32.32743996,-98.83243566,"Eastland, Texas, US",18360
-84048135,US,USA,840,48135,Ector,Texas,US,31.86898877,-102.5429428,"Ector, Texas, US",166223
-84048137,US,USA,840,48137,Edwards,Texas,US,29.98202582,-100.304252,"Edwards, Texas, US",1932
-84048139,US,USA,840,48139,Ellis,Texas,US,32.34894117,-96.79371841,"Ellis, Texas, US",184826
-84048141,US,USA,840,48141,El Paso,Texas,US,31.76980765,-106.2363275,"El Paso, Texas, US",839238
-84048143,US,USA,840,48143,Erath,Texas,US,32.23602653,-98.21773417,"Erath, Texas, US",42698
-84048145,US,USA,840,48145,Falls,Texas,US,31.25350609,-96.93630086,"Falls, Texas, US",17297
-84048147,US,USA,840,48147,Fannin,Texas,US,33.59564294,-96.10751083,"Fannin, Texas, US",35514
-84048149,US,USA,840,48149,Fayette,Texas,US,29.87788372,-96.92076062,"Fayette, Texas, US",25346
-84048151,US,USA,840,48151,Fisher,Texas,US,32.74281316,-100.4019302,"Fisher, Texas, US",3830
-84048153,US,USA,840,48153,Floyd,Texas,US,34.07227468,-101.3031546,"Floyd, Texas, US",5712
-84048155,US,USA,840,48155,Foard,Texas,US,33.97308618,-99.7767797,"Foard, Texas, US",1155
-84048157,US,USA,840,48157,Fort Bend,Texas,US,29.52704478,-95.77219463,"Fort Bend, Texas, US",811688
-84048159,US,USA,840,48159,Franklin,Texas,US,33.17653242,-95.21917243,"Franklin, Texas, US",10725
-84048161,US,USA,840,48161,Freestone,Texas,US,31.70422788,-96.15072516,"Freestone, Texas, US",19717
-84048163,US,USA,840,48163,Frio,Texas,US,28.86751206,-99.10804207,"Frio, Texas, US",20306
-84048165,US,USA,840,48165,Gaines,Texas,US,32.74055318,-102.6353295,"Gaines, Texas, US",21492
-84048167,US,USA,840,48167,Galveston,Texas,US,29.40167322,-94.90469073,"Galveston, Texas, US",342139
-84048169,US,USA,840,48169,Garza,Texas,US,33.17969345,-101.2984114,"Garza, Texas, US",6229
-84048171,US,USA,840,48171,Gillespie,Texas,US,30.31824095,-98.94676915,"Gillespie, Texas, US",26988
-84048173,US,USA,840,48173,Glasscock,Texas,US,31.86942909,-101.5207776,"Glasscock, Texas, US",1409
-84048175,US,USA,840,48175,Goliad,Texas,US,28.65696592,-97.42760647,"Goliad, Texas, US",7658
-84048177,US,USA,840,48177,Gonzales,Texas,US,29.45634206,-97.49424032,"Gonzales, Texas, US",20837
-84048179,US,USA,840,48179,Gray,Texas,US,35.40081878,-100.8129222,"Gray, Texas, US",21886
-84048181,US,USA,840,48181,Grayson,Texas,US,33.62744998,-96.67753461,"Grayson, Texas, US",136212
-84048183,US,USA,840,48183,Gregg,Texas,US,32.47940482,-94.81591935,"Gregg, Texas, US",123945
-84048185,US,USA,840,48185,Grimes,Texas,US,30.54579585,-95.98902499,"Grimes, Texas, US",28880
-84048187,US,USA,840,48187,Guadalupe,Texas,US,29.58165339,-97.94786822,"Guadalupe, Texas, US",166847
-84048189,US,USA,840,48189,Hale,Texas,US,34.07044901,-101.8268114,"Hale, Texas, US",33406
-84048191,US,USA,840,48191,Hall,Texas,US,34.5307555,-100.6813852,"Hall, Texas, US",2964
-84048193,US,USA,840,48193,Hamilton,Texas,US,31.70470573,-98.11083887,"Hamilton, Texas, US",8461
-84048195,US,USA,840,48195,Hansford,Texas,US,36.27743284,-101.3545796,"Hansford, Texas, US",5399
-84048197,US,USA,840,48197,Hardeman,Texas,US,34.28944521,-99.74632408,"Hardeman, Texas, US",3933
-84048199,US,USA,840,48199,Hardin,Texas,US,30.33364686,-94.38931817,"Hardin, Texas, US",57602
-84048201,US,USA,840,48201,Harris,Texas,US,29.85864939,-95.39339521,"Harris, Texas, US",4713325
-84048203,US,USA,840,48203,Harrison,Texas,US,32.54935988,-94.36934071,"Harrison, Texas, US",66553
-84048205,US,USA,840,48205,Hartley,Texas,US,35.84008013,-102.6029022,"Hartley, Texas, US",5576
-84048207,US,USA,840,48207,Haskell,Texas,US,33.17823584,-99.73037358,"Haskell, Texas, US",5658
-84048209,US,USA,840,48209,Hays,Texas,US,30.05669873,-98.02944344,"Hays, Texas, US",230191
-84048211,US,USA,840,48211,Hemphill,Texas,US,35.83764858,-100.2703577,"Hemphill, Texas, US",3819
-84048213,US,USA,840,48213,Henderson,Texas,US,32.21128872,-95.85846587,"Henderson, Texas, US",82737
-84048215,US,USA,840,48215,Hidalgo,Texas,US,26.39418217,-98.18299696,"Hidalgo, Texas, US",868707
-84048217,US,USA,840,48217,Hill,Texas,US,31.99045053,-97.13423143,"Hill, Texas, US",36649
-84048219,US,USA,840,48219,Hockley,Texas,US,33.60771256,-102.3431676,"Hockley, Texas, US",23021
-84048221,US,USA,840,48221,Hood,Texas,US,32.42990927,-97.83242024,"Hood, Texas, US",61643
-84048223,US,USA,840,48223,Hopkins,Texas,US,33.14875072,-95.56351139,"Hopkins, Texas, US",37084
-84048225,US,USA,840,48225,Houston,Texas,US,31.31925973,-95.42226208,"Houston, Texas, US",22968
-84048227,US,USA,840,48227,Howard,Texas,US,32.30621324,-101.4356444,"Howard, Texas, US",36664
-84048229,US,USA,840,48229,Hudspeth,Texas,US,31.45628381,-105.388178,"Hudspeth, Texas, US",4886
-84048231,US,USA,840,48231,Hunt,Texas,US,33.12351514,-96.08551032,"Hunt, Texas, US",98594
-84048233,US,USA,840,48233,Hutchinson,Texas,US,35.84006574,-101.3546643,"Hutchinson, Texas, US",20938
-84048235,US,USA,840,48235,Irion,Texas,US,31.30375559,-100.982439,"Irion, Texas, US",1536
-84048237,US,USA,840,48237,Jack,Texas,US,33.23377248,-98.17283469,"Jack, Texas, US",8935
-84048239,US,USA,840,48239,Jackson,Texas,US,28.95472367,-96.57749563,"Jackson, Texas, US",14760
-84048241,US,USA,840,48241,Jasper,Texas,US,30.74685667,-94.02667579,"Jasper, Texas, US",35529
-84048243,US,USA,840,48243,Jeff Davis,Texas,US,30.71490589,-104.1399973,"Jeff Davis, Texas, US",2274
-84048245,US,USA,840,48245,Jefferson,Texas,US,29.8832777,-94.16434171,"Jefferson, Texas, US",251565
-84048247,US,USA,840,48247,Jim Hogg,Texas,US,27.04453923,-98.6968187,"Jim Hogg, Texas, US",5200
-84048249,US,USA,840,48249,Jim Wells,Texas,US,27.73103938,-98.0904705,"Jim Wells, Texas, US",40482
-84048251,US,USA,840,48251,Johnson,Texas,US,32.37877812,-97.36615819,"Johnson, Texas, US",175817
-84048253,US,USA,840,48253,Jones,Texas,US,32.73997145,-99.87861576,"Jones, Texas, US",20083
-84048255,US,USA,840,48255,Karnes,Texas,US,28.90705334,-97.85960149,"Karnes, Texas, US",15601
-84048257,US,USA,840,48257,Kaufman,Texas,US,32.5991417,-96.28734728,"Kaufman, Texas, US",136154
-84048259,US,USA,840,48259,Kendall,Texas,US,29.94414155,-98.7113588,"Kendall, Texas, US",47431
-84048261,US,USA,840,48261,Kenedy,Texas,US,26.92601662,-97.66413984,"Kenedy, Texas, US",404
-84048263,US,USA,840,48263,Kent,Texas,US,33.18104136,-100.7780939,"Kent, Texas, US",762
-84048265,US,USA,840,48265,Kerr,Texas,US,30.06040006,-99.34930144,"Kerr, Texas, US",52600
-84048267,US,USA,840,48267,Kimble,Texas,US,30.48678918,-99.74856473,"Kimble, Texas, US",4337
-84048269,US,USA,840,48269,King,Texas,US,33.61643847,-100.2558057,"King, Texas, US",272
-84048271,US,USA,840,48271,Kinney,Texas,US,29.34967888,-100.4186638,"Kinney, Texas, US",3667
-84048273,US,USA,840,48273,Kleberg,Texas,US,27.42435506,-97.69894948,"Kleberg, Texas, US",30680
-84048275,US,USA,840,48275,Knox,Texas,US,33.60519951,-99.7422906,"Knox, Texas, US",3664
-84048277,US,USA,840,48277,Lamar,Texas,US,33.66981763,-95.57404777,"Lamar, Texas, US",49859
-84048279,US,USA,840,48279,Lamb,Texas,US,34.06859623,-102.3516289,"Lamb, Texas, US",12893
-84048281,US,USA,840,48281,Lampasas,Texas,US,31.19531316,-98.24206613,"Lampasas, Texas, US",21428
-84048283,US,USA,840,48283,La Salle,Texas,US,28.34453111,-99.09908775,"La Salle, Texas, US",7520
-84048285,US,USA,840,48285,Lavaca,Texas,US,29.38508402,-96.93186692,"Lavaca, Texas, US",20154
-84048287,US,USA,840,48287,Lee,Texas,US,30.31120597,-96.97045773,"Lee, Texas, US",17239
-84048289,US,USA,840,48289,Leon,Texas,US,31.29872538,-95.9936328,"Leon, Texas, US",17404
-84048291,US,USA,840,48291,Liberty,Texas,US,30.15152688,-94.81205615,"Liberty, Texas, US",88219
-84048293,US,USA,840,48293,Limestone,Texas,US,31.5454767,-96.58095444,"Limestone, Texas, US",23437
-84048295,US,USA,840,48295,Lipscomb,Texas,US,36.27783108,-100.2733151,"Lipscomb, Texas, US",3233
-84048297,US,USA,840,48297,Live Oak,Texas,US,28.35101362,-98.1246786,"Live Oak, Texas, US",12207
-84048299,US,USA,840,48299,Llano,Texas,US,30.70645047,-98.68475262,"Llano, Texas, US",21795
-84048301,US,USA,840,48301,Loving,Texas,US,31.84947612,-103.5818571,"Loving, Texas, US",169
-84048303,US,USA,840,48303,Lubbock,Texas,US,33.61008596,-101.8204789,"Lubbock, Texas, US",310569
-84048305,US,USA,840,48305,Lynn,Texas,US,33.17657705,-101.8162849,"Lynn, Texas, US",5951
-84048307,US,USA,840,48307,McCulloch,Texas,US,31.1925468,-99.34682807,"McCulloch, Texas, US",7984
-84048309,US,USA,840,48309,McLennan,Texas,US,31.55255453,-97.20217694,"McLennan, Texas, US",256623
-84048311,US,USA,840,48311,McMullen,Texas,US,28.35251708,-98.56769164,"McMullen, Texas, US",743
-84048313,US,USA,840,48313,Madison,Texas,US,30.96694679,-95.93003775,"Madison, Texas, US",14284
-84048315,US,USA,840,48315,Marion,Texas,US,32.79868409,-94.3566123,"Marion, Texas, US",9854
-84048317,US,USA,840,48317,Martin,Texas,US,32.30600051,-101.9513518,"Martin, Texas, US",5771
-84048319,US,USA,840,48319,Mason,Texas,US,30.71780434,-99.22629416,"Mason, Texas, US",4274
-84048321,US,USA,840,48321,Matagorda,Texas,US,28.81955746,-96.01230294,"Matagorda, Texas, US",36643
-84048323,US,USA,840,48323,Maverick,Texas,US,28.7429195,-100.3157686,"Maverick, Texas, US",58722
-84048325,US,USA,840,48325,Medina,Texas,US,29.3557301,-99.11030298,"Medina, Texas, US",51584
-84048327,US,USA,840,48327,Menard,Texas,US,30.88990665,-99.8204794,"Menard, Texas, US",2138
-84048329,US,USA,840,48329,Midland,Texas,US,31.86904128,-102.0315682,"Midland, Texas, US",176832
-84048331,US,USA,840,48331,Milam,Texas,US,30.7858183,-96.97718698,"Milam, Texas, US",24823
-84048333,US,USA,840,48333,Mills,Texas,US,31.49557106,-98.59272068,"Mills, Texas, US",4873
-84048335,US,USA,840,48335,Mitchell,Texas,US,32.30623474,-100.9212058,"Mitchell, Texas, US",8545
-84048337,US,USA,840,48337,Montague,Texas,US,33.67521893,-97.72500958,"Montague, Texas, US",19818
-84048339,US,USA,840,48339,Montgomery,Texas,US,30.30079133,-95.50572772,"Montgomery, Texas, US",607391
-84048341,US,USA,840,48341,Moore,Texas,US,35.83769242,-101.8930281,"Moore, Texas, US",20940
-84048343,US,USA,840,48343,Morris,Texas,US,33.11304005,-94.73255695,"Morris, Texas, US",12388
-84048345,US,USA,840,48345,Motley,Texas,US,34.07408766,-100.779722,"Motley, Texas, US",1200
-84048347,US,USA,840,48347,Nacogdoches,Texas,US,31.62017125,-94.61803994,"Nacogdoches, Texas, US",65204
-84048349,US,USA,840,48349,Navarro,Texas,US,32.04620681,-96.47428766,"Navarro, Texas, US",50113
-84048351,US,USA,840,48351,Newton,Texas,US,30.78548982,-93.74408813,"Newton, Texas, US",13595
-84048353,US,USA,840,48353,Nolan,Texas,US,32.30365282,-100.4060208,"Nolan, Texas, US",14714
-84048355,US,USA,840,48355,Nueces,Texas,US,27.736286,-97.5433285,"Nueces, Texas, US",362294
-84048357,US,USA,840,48357,Ochiltree,Texas,US,36.27829105,-100.8158184,"Ochiltree, Texas, US",9836
-84048359,US,USA,840,48359,Oldham,Texas,US,35.40425596,-102.6027606,"Oldham, Texas, US",2112
-84048361,US,USA,840,48361,Orange,Texas,US,30.11879481,-93.89412775,"Orange, Texas, US",83396
-84048363,US,USA,840,48363,Palo Pinto,Texas,US,32.75310985,-98.31319001,"Palo Pinto, Texas, US",29189
-84048365,US,USA,840,48365,Panola,Texas,US,32.1639596,-94.30552481,"Panola, Texas, US",23194
-84048367,US,USA,840,48367,Parker,Texas,US,32.77757172,-97.80500621,"Parker, Texas, US",142878
-84048369,US,USA,840,48369,Parmer,Texas,US,34.52993409,-102.7844668,"Parmer, Texas, US",9605
-84048371,US,USA,840,48371,Pecos,Texas,US,30.78097267,-102.7241261,"Pecos, Texas, US",15823
-84048373,US,USA,840,48373,Polk,Texas,US,30.79472531,-94.8276624,"Polk, Texas, US",51353
-84048375,US,USA,840,48375,Potter,Texas,US,35.40133773,-101.893964,"Potter, Texas, US",117415
-84048377,US,USA,840,48377,Presidio,Texas,US,29.99954402,-104.2408079,"Presidio, Texas, US",6704
-84048379,US,USA,840,48379,Rains,Texas,US,32.87109387,-95.79232691,"Rains, Texas, US",12514
-84048381,US,USA,840,48381,Randall,Texas,US,34.96585996,-101.8971322,"Randall, Texas, US",137713
-84048383,US,USA,840,48383,Reagan,Texas,US,31.36607041,-101.5232659,"Reagan, Texas, US",3849
-84048385,US,USA,840,48385,Real,Texas,US,29.83321503,-99.82018052,"Real, Texas, US",3452
-84048387,US,USA,840,48387,Red River,Texas,US,33.61886692,-95.04841765,"Red River, Texas, US",12023
-84048389,US,USA,840,48389,Reeves,Texas,US,31.32323325,-103.6903896,"Reeves, Texas, US",15976
-84048391,US,USA,840,48391,Refugio,Texas,US,28.3238976,-97.15766311,"Refugio, Texas, US",6948
-84048393,US,USA,840,48393,Roberts,Texas,US,35.83809685,-100.813175,"Roberts, Texas, US",854
-84048395,US,USA,840,48395,Robertson,Texas,US,31.02539637,-96.51272246,"Robertson, Texas, US",17074
-84048397,US,USA,840,48397,Rockwall,Texas,US,32.89779518,-96.40771592,"Rockwall, Texas, US",104915
-84048399,US,USA,840,48399,Runnels,Texas,US,31.8314342,-99.97616148,"Runnels, Texas, US",10264
-84048401,US,USA,840,48401,Rusk,Texas,US,32.10773545,-94.76176432,"Rusk, Texas, US",54406
-84048403,US,USA,840,48403,Sabine,Texas,US,31.34318809,-93.85440451,"Sabine, Texas, US",10542
-84048405,US,USA,840,48405,San Augustine,Texas,US,31.39457611,-94.17000399,"San Augustine, Texas, US",8237
-84048407,US,USA,840,48407,San Jacinto,Texas,US,30.57933681,-95.16260304,"San Jacinto, Texas, US",28859
-84048409,US,USA,840,48409,San Patricio,Texas,US,28.00880118,-97.51763891,"San Patricio, Texas, US",66730
-84048411,US,USA,840,48411,San Saba,Texas,US,31.1577796,-98.81758731,"San Saba, Texas, US",6055
-84048413,US,USA,840,48413,Schleicher,Texas,US,30.89740592,-100.5384842,"Schleicher, Texas, US",2793
-84048415,US,USA,840,48415,Scurry,Texas,US,32.74613808,-100.9162664,"Scurry, Texas, US",16703
-84048417,US,USA,840,48417,Shackelford,Texas,US,32.73587756,-99.35401337,"Shackelford, Texas, US",3265
-84048419,US,USA,840,48419,Shelby,Texas,US,31.79211404,-94.14550696,"Shelby, Texas, US",25274
-84048421,US,USA,840,48421,Sherman,Texas,US,36.27751473,-101.8933156,"Sherman, Texas, US",3022
-84048423,US,USA,840,48423,Smith,Texas,US,32.37474036,-95.2717568,"Smith, Texas, US",232751
-84048425,US,USA,840,48425,Somervell,Texas,US,32.22236802,-97.77403489,"Somervell, Texas, US",9128
-84048427,US,USA,840,48427,Starr,Texas,US,26.56150059,-98.73892358,"Starr, Texas, US",64633
-84048429,US,USA,840,48429,Stephens,Texas,US,32.73553157,-98.83631615,"Stephens, Texas, US",9366
-84048431,US,USA,840,48431,Sterling,Texas,US,31.82781912,-101.0500746,"Sterling, Texas, US",1291
-84048433,US,USA,840,48433,Stonewall,Texas,US,33.17906744,-100.2538401,"Stonewall, Texas, US",1350
-84048435,US,USA,840,48435,Sutton,Texas,US,30.49856623,-100.5382014,"Sutton, Texas, US",3776
-84048437,US,USA,840,48437,Swisher,Texas,US,34.53028891,-101.7349174,"Swisher, Texas, US",7397
-84048439,US,USA,840,48439,Tarrant,Texas,US,32.77143818,-97.29101614,"Tarrant, Texas, US",2102515
-84048441,US,USA,840,48441,Taylor,Texas,US,32.30163422,-99.89007449,"Taylor, Texas, US",138034
-84048443,US,USA,840,48443,Terrell,Texas,US,30.22429013,-102.0766732,"Terrell, Texas, US",776
-84048445,US,USA,840,48445,Terry,Texas,US,33.17402785,-102.3354521,"Terry, Texas, US",12337
-84048447,US,USA,840,48447,Throckmorton,Texas,US,33.17751417,-99.21226795,"Throckmorton, Texas, US",1501
-84048449,US,USA,840,48449,Titus,Texas,US,33.21339719,-94.96797273,"Titus, Texas, US",32750
-84048451,US,USA,840,48451,Tom Green,Texas,US,31.40464436,-100.462443,"Tom Green, Texas, US",119200
-84048453,US,USA,840,48453,Travis,Texas,US,30.33432034,-97.7853562,"Travis, Texas, US",1273954
-84048455,US,USA,840,48455,Trinity,Texas,US,31.0879489,-95.1367187,"Trinity, Texas, US",14651
-84048457,US,USA,840,48457,Tyler,Texas,US,30.77031716,-94.37690895,"Tyler, Texas, US",21672
-84048459,US,USA,840,48459,Upshur,Texas,US,32.73706798,-94.93999853,"Upshur, Texas, US",41753
-84048461,US,USA,840,48461,Upton,Texas,US,31.36868194,-102.0423217,"Upton, Texas, US",3657
-84048463,US,USA,840,48463,Uvalde,Texas,US,29.35739637,-99.76229172,"Uvalde, Texas, US",26741
-84048465,US,USA,840,48465,Val Verde,Texas,US,29.89149232,-101.1525205,"Val Verde, Texas, US",49025
-84048467,US,USA,840,48467,Van Zandt,Texas,US,32.56483801,-95.83766469,"Van Zandt, Texas, US",56590
-84048469,US,USA,840,48469,Victoria,Texas,US,28.79780988,-96.96813006,"Victoria, Texas, US",92084
-84048471,US,USA,840,48471,Walker,Texas,US,30.73872995,-95.57440968,"Walker, Texas, US",72971
-84048473,US,USA,840,48473,Waller,Texas,US,30.01058447,-95.99011759,"Waller, Texas, US",55246
-84048475,US,USA,840,48475,Ward,Texas,US,31.50999644,-103.0927909,"Ward, Texas, US",11998
-84048477,US,USA,840,48477,Washington,Texas,US,30.21498498,-96.40946246,"Washington, Texas, US",35882
-84048479,US,USA,840,48479,Webb,Texas,US,27.7610369,-99.33237355,"Webb, Texas, US",276652
-84048481,US,USA,840,48481,Wharton,Texas,US,29.27765923,-96.22319248,"Wharton, Texas, US",41556
-84048483,US,USA,840,48483,Wheeler,Texas,US,35.40114335,-100.2699514,"Wheeler, Texas, US",5056
-84048485,US,USA,840,48485,Wichita,Texas,US,33.98842886,-98.7041034,"Wichita, Texas, US",132230
-84048487,US,USA,840,48487,Wilbarger,Texas,US,34.07945812,-99.24178437,"Wilbarger, Texas, US",12769
-84048489,US,USA,840,48489,Willacy,Texas,US,26.47411727,-97.61535848,"Willacy, Texas, US",21358
-84048491,US,USA,840,48491,Williamson,Texas,US,30.64655664,-97.6004854,"Williamson, Texas, US",590551
-84048493,US,USA,840,48493,Wilson,Texas,US,29.1732598,-98.08693082,"Wilson, Texas, US",51070
-84048495,US,USA,840,48495,Winkler,Texas,US,31.85008651,-103.0485163,"Winkler, Texas, US",8010
-84048497,US,USA,840,48497,Wise,Texas,US,33.21570665,-97.65460265,"Wise, Texas, US",69984
-84048499,US,USA,840,48499,Wood,Texas,US,32.78722382,-95.38236368,"Wood, Texas, US",45539
-84048501,US,USA,840,48501,Yoakum,Texas,US,33.17320212,-102.8276433,"Yoakum, Texas, US",8713
-84048503,US,USA,840,48503,Young,Texas,US,33.17659707,-98.68790885,"Young, Texas, US",18010
-84048505,US,USA,840,48505,Zapata,Texas,US,27.00156391,-99.16987152,"Zapata, Texas, US",14179
-84048507,US,USA,840,48507,Zavala,Texas,US,28.86617238,-99.76050829,"Zavala, Texas, US",11840
-84049001,US,USA,840,49001,Beaver,Utah,US,38.35657051,-113.2342232,"Beaver, Utah, US",6710
-84049003,US,USA,840,49003,Box Elder,Utah,US,41.52106798,-113.0832816,"Box Elder, Utah, US",56046
-84049005,US,USA,840,49005,Cache,Utah,US,41.72330587,-111.7443667,"Cache, Utah, US",128289
-84049007,US,USA,840,49007,Carbon,Utah,US,39.64834818,-110.5872512,"Carbon, Utah, US",20463
-84049009,US,USA,840,49009,Daggett,Utah,US,40.88798265,-109.5121093,"Daggett, Utah, US",950
-84049011,US,USA,840,49011,Davis,Utah,US,40.99001837,-112.1139997,"Davis, Utah, US",355481
-84049013,US,USA,840,49013,Duchesne,Utah,US,40.29772254,-110.425237,"Duchesne, Utah, US",19938
-84049015,US,USA,840,49015,Emery,Utah,US,38.99617072,-110.7013958,"Emery, Utah, US",10012
-84049017,US,USA,840,49017,Garfield,Utah,US,37.85447192,-111.4418764,"Garfield, Utah, US",5051
-84049019,US,USA,840,49019,Grand,Utah,US,38.98103848,-109.5704487,"Grand, Utah, US",9754
-84049021,US,USA,840,49021,Iron,Utah,US,37.8590362,-113.2897381,"Iron, Utah, US",54839
-84049023,US,USA,840,49023,Juab,Utah,US,39.70208397,-112.7809245,"Juab, Utah, US",12017
-84049025,US,USA,840,49025,Kane,Utah,US,37.28507306,-111.8861752,"Kane, Utah, US",7886
-84049027,US,USA,840,49027,Millard,Utah,US,39.0729209,-113.1020328,"Millard, Utah, US",13188
-84049029,US,USA,840,49029,Morgan,Utah,US,41.08830262,-111.5727723,"Morgan, Utah, US",12124
-84049031,US,USA,840,49031,Piute,Utah,US,38.33815254,-112.1249591,"Piute, Utah, US",1479
-84049033,US,USA,840,49033,Rich,Utah,US,41.63137678,-111.2445105,"Rich, Utah, US",2483
-84049035,US,USA,840,49035,Salt Lake,Utah,US,40.66616532,-111.9216011,"Salt Lake, Utah, US",1160437
-84049037,US,USA,840,49037,San Juan,Utah,US,37.62762978,-109.8033714,"San Juan, Utah, US",15308
-84049039,US,USA,840,49039,Sanpete,Utah,US,39.37231946,-111.5758676,"Sanpete, Utah, US",30939
-84049041,US,USA,840,49041,Sevier,Utah,US,38.74837146,-111.8050275,"Sevier, Utah, US",21620
-84049043,US,USA,840,49043,Summit,Utah,US,40.86688146,-110.9535882,"Summit, Utah, US",42145
-84049045,US,USA,840,49045,Tooele,Utah,US,40.44862644,-113.1295715,"Tooele, Utah, US",72259
-84049047,US,USA,840,49047,Uintah,Utah,US,40.12491499,-109.5174415,"Uintah, Utah, US",35734
-84049049,US,USA,840,49049,Utah,Utah,US,40.1166722,-111.6657662,"Utah, Utah, US",636235
-84049051,US,USA,840,49051,Wasatch,Utah,US,40.33110236,-111.1691419,"Wasatch, Utah, US",34091
-84049053,US,USA,840,49053,Washington,Utah,US,37.28003525,-113.504698,"Washington, Utah, US",177556
-84049055,US,USA,840,49055,Wayne,Utah,US,38.32335822,-110.9096801,"Wayne, Utah, US",2711
-84049057,US,USA,840,49057,Weber,Utah,US,41.27116049,-111.9145117,"Weber, Utah, US",260213
-84050001,US,USA,840,50001,Addison,Vermont,US,44.03217337,-73.14130877,"Addison, Vermont, US",36777
-84050003,US,USA,840,50003,Bennington,Vermont,US,43.03519828,-73.09048868,"Bennington, Vermont, US",35470
-84050005,US,USA,840,50005,Caledonia,Vermont,US,44.46548598,-72.10314651,"Caledonia, Vermont, US",29993
-84050007,US,USA,840,50007,Chittenden,Vermont,US,44.46322849,-73.08359212,"Chittenden, Vermont, US",163774
-84050009,US,USA,840,50009,Essex,Vermont,US,44.72736416,-71.73579864,"Essex, Vermont, US",6163
-84050011,US,USA,840,50011,Franklin,Vermont,US,44.85627605,-72.91249563,"Franklin, Vermont, US",49402
-84050013,US,USA,840,50013,Grand Isle,Vermont,US,44.7975824,-73.29679772,"Grand Isle, Vermont, US",7235
-84050015,US,USA,840,50015,Lamoille,Vermont,US,44.60353043,-72.64356694,"Lamoille, Vermont, US",25362
-84050017,US,USA,840,50017,Orange,Vermont,US,44.00470222,-72.37640104,"Orange, Vermont, US",28892
-84050019,US,USA,840,50019,Orleans,Vermont,US,44.82964024,-72.24562697,"Orleans, Vermont, US",27037
-84050021,US,USA,840,50021,Rutland,Vermont,US,43.57723578,-73.03741676,"Rutland, Vermont, US",58191
-84050023,US,USA,840,50023,Washington,Vermont,US,44.27343241,-72.61604978,"Washington, Vermont, US",58409
-84050025,US,USA,840,50025,Windham,Vermont,US,42.986982,-72.71268875,"Windham, Vermont, US",42222
-84050027,US,USA,840,50027,Windsor,Vermont,US,43.58010937,-72.58595157,"Windsor, Vermont, US",55062
-84051001,US,USA,840,51001,Accomack,Virginia,US,37.76707161,-75.63234615,"Accomack, Virginia, US",32316
-84051003,US,USA,840,51003,Albemarle,Virginia,US,38.02080697,-78.55481085,"Albemarle, Virginia, US",109330
-84051005,US,USA,840,51005,Alleghany,Virginia,US,37.78636074,-80.00222498,"Alleghany, Virginia, US",14860
-84051007,US,USA,840,51007,Amelia,Virginia,US,37.34081025,-77.98584649,"Amelia, Virginia, US",13145
-84051009,US,USA,840,51009,Amherst,Virginia,US,37.60308293,-79.14548696,"Amherst, Virginia, US",31605
-84051011,US,USA,840,51011,Appomattox,Virginia,US,37.37569884,-78.81340003,"Appomattox, Virginia, US",15911
-84051013,US,USA,840,51013,Arlington,Virginia,US,38.8767675,-77.10139853,"Arlington, Virginia, US",236842
-84051015,US,USA,840,51015,Augusta,Virginia,US,38.16404586,-79.12461614,"Augusta, Virginia, US",75558
-84051017,US,USA,840,51017,Bath,Virginia,US,38.05852573,-79.73912095,"Bath, Virginia, US",4147
-84051019,US,USA,840,51019,Bedford,Virginia,US,37.3080028,-79.5281964,"Bedford, Virginia, US",78997
-84051021,US,USA,840,51021,Bland,Virginia,US,37.13128068,-81.13599391,"Bland, Virginia, US",6280
-84051023,US,USA,840,51023,Botetourt,Virginia,US,37.55531756,-79.80982182,"Botetourt, Virginia, US",33419
-84051025,US,USA,840,51025,Brunswick,Virginia,US,36.76366949,-77.8593436,"Brunswick, Virginia, US",16231
-84051027,US,USA,840,51027,Buchanan,Virginia,US,37.26818323,-82.03749726,"Buchanan, Virginia, US",21004
-84051029,US,USA,840,51029,Buckingham,Virginia,US,37.57242268,-78.52518834,"Buckingham, Virginia, US",17148
-84051031,US,USA,840,51031,Campbell,Virginia,US,37.20553386,-79.09678609,"Campbell, Virginia, US",54885
-84051033,US,USA,840,51033,Caroline,Virginia,US,38.02679129,-77.34901405,"Caroline, Virginia, US",30725
-84051035,US,USA,840,51035,Carroll,Virginia,US,36.73066666,-80.73455942,"Carroll, Virginia, US",29791
-84051036,US,USA,840,51036,Charles City,Virginia,US,37.35358063,-77.05634116,"Charles City, Virginia, US",6963
-84051037,US,USA,840,51037,Charlotte,Virginia,US,37.01909701,-78.66314092,"Charlotte, Virginia, US",11880
-84051041,US,USA,840,51041,Chesterfield,Virginia,US,37.37373208,-77.5868014,"Chesterfield, Virginia, US",352802
-84051043,US,USA,840,51043,Clarke,Virginia,US,39.11271747,-77.99199425,"Clarke, Virginia, US",14619
-84051045,US,USA,840,51045,Craig,Virginia,US,37.48133648,-80.21072274,"Craig, Virginia, US",5131
-84051047,US,USA,840,51047,Culpeper,Virginia,US,38.48199985,-77.9563087,"Culpeper, Virginia, US",52605
-84051049,US,USA,840,51049,Cumberland,Virginia,US,37.51328851,-78.24398086,"Cumberland, Virginia, US",9932
-84051051,US,USA,840,51051,Dickenson,Virginia,US,37.12560977,-82.35124171,"Dickenson, Virginia, US",14318
-84051053,US,USA,840,51053,Dinwiddie,Virginia,US,37.07544585,-77.63451754,"Dinwiddie, Virginia, US",28544
-84051057,US,USA,840,51057,Essex,Virginia,US,37.93357639,-76.94230311,"Essex, Virginia, US",10953
-84051059,US,USA,840,51059,Fairfax,Virginia,US,38.83677558,-77.27565836,"Fairfax, Virginia, US",1147532
-84051061,US,USA,840,51061,Fauquier,Virginia,US,38.73564842,-77.80647472,"Fauquier, Virginia, US",71222
-84051063,US,USA,840,51063,Floyd,Virginia,US,36.9302126,-80.36738849,"Floyd, Virginia, US",15749
-84051065,US,USA,840,51065,Fluvanna,Virginia,US,37.84157909,-78.27715475,"Fluvanna, Virginia, US",27270
-84051067,US,USA,840,51067,Franklin,Virginia,US,36.99536167,-79.88023649,"Franklin, Virginia, US",56042
-84051069,US,USA,840,51069,Frederick,Virginia,US,39.20172582,-78.25974949,"Frederick, Virginia, US",89313
-84051071,US,USA,840,51071,Giles,Virginia,US,37.31234791,-80.70636931,"Giles, Virginia, US",16720
-84051073,US,USA,840,51073,Gloucester,Virginia,US,37.40809042,-76.53524337,"Gloucester, Virginia, US",37348
-84051075,US,USA,840,51075,Goochland,Virginia,US,37.71714806,-77.90381514,"Goochland, Virginia, US",23753
-84051077,US,USA,840,51077,Grayson,Virginia,US,36.65677234,-81.23215889,"Grayson, Virginia, US",15550
-84051079,US,USA,840,51079,Greene,Virginia,US,38.29545894,-78.46525378,"Greene, Virginia, US",19819
-84051081,US,USA,840,51081,Greensville,Virginia,US,36.67878901,-77.56351439,"Greensville, Virginia, US",11336
-84051083,US,USA,840,51083,Halifax,Virginia,US,36.76654925,-78.93512622,"Halifax, Virginia, US",33911
-84051085,US,USA,840,51085,Hanover,Virginia,US,37.7583355,-77.49464673,"Hanover, Virginia, US",107766
-84051087,US,USA,840,51087,Henrico,Virginia,US,37.53460572,-77.39326555,"Henrico, Virginia, US",330818
-84051089,US,USA,840,51089,Henry,Virginia,US,36.68542395,-79.87634026,"Henry, Virginia, US",50557
-84051091,US,USA,840,51091,Highland,Virginia,US,38.35799465,-79.56124594,"Highland, Virginia, US",2190
-84051093,US,USA,840,51093,Isle of Wight,Virginia,US,36.90579348,-76.70842863,"Isle of Wight, Virginia, US",37109
-84051095,US,USA,840,51095,James City,Virginia,US,37.31156958,-76.76950618,"James City, Virginia, US",76523
-84051097,US,USA,840,51097,King and Queen,Virginia,US,37.71044922,-76.88689628,"King and Queen, Virginia, US",7025
-84051099,US,USA,840,51099,King George,Virginia,US,38.26818502,-77.15852768,"King George, Virginia, US",26836
-84051101,US,USA,840,51101,King William,Virginia,US,37.70965316,-77.09384941,"King William, Virginia, US",17148
-84051103,US,USA,840,51103,Lancaster,Virginia,US,37.71889653,-76.46400482,"Lancaster, Virginia, US",10603
-84051105,US,USA,840,51105,Lee,Virginia,US,36.70586667,-83.12606515,"Lee, Virginia, US",23423
-84051107,US,USA,840,51107,Loudoun,Virginia,US,39.08990083,-77.63481877,"Loudoun, Virginia, US",413538
-84051109,US,USA,840,51109,Louisa,Virginia,US,37.97850256,-77.96274807,"Louisa, Virginia, US",37591
-84051111,US,USA,840,51111,Lunenburg,Virginia,US,36.94618528,-78.24133319,"Lunenburg, Virginia, US",12196
-84051113,US,USA,840,51113,Madison,Virginia,US,38.41531222,-78.28220331,"Madison, Virginia, US",13261
-84051115,US,USA,840,51115,Mathews,Virginia,US,37.44164146,-76.34098896,"Mathews, Virginia, US",8834
-84051117,US,USA,840,51117,Mecklenburg,Virginia,US,36.67882005,-78.36131056,"Mecklenburg, Virginia, US",30587
-84051119,US,USA,840,51119,Middlesex,Virginia,US,37.63191998,-76.55064617,"Middlesex, Virginia, US",10582
-84051121,US,USA,840,51121,Montgomery,Virginia,US,37.17746986,-80.37868691,"Montgomery, Virginia, US",98535
-84051125,US,USA,840,51125,Nelson,Virginia,US,37.78790447,-78.88498513,"Nelson, Virginia, US",14930
-84051127,US,USA,840,51127,New Kent,Virginia,US,37.50694406,-76.99828634,"New Kent, Virginia, US",23091
-84051131,US,USA,840,51131,Northampton,Virginia,US,37.34062933,-75.87751591,"Northampton, Virginia, US",11710
-84051133,US,USA,840,51133,Northumberland,Virginia,US,37.89202088,-76.41949732,"Northumberland, Virginia, US",12095
-84051135,US,USA,840,51135,Nottoway,Virginia,US,37.1435975,-78.05065922,"Nottoway, Virginia, US",15232
-84051137,US,USA,840,51137,Orange,Virginia,US,38.24530219,-78.015604,"Orange, Virginia, US",37051
-84051139,US,USA,840,51139,Page,Virginia,US,38.61807452,-78.48797204,"Page, Virginia, US",23902
-84051141,US,USA,840,51141,Patrick,Virginia,US,36.6801638,-80.2865648,"Patrick, Virginia, US",17608
-84051143,US,USA,840,51143,Pittsylvania,Virginia,US,36.81980341,-79.39731264,"Pittsylvania, Virginia, US",60354
-84051145,US,USA,840,51145,Powhatan,Virginia,US,37.55016038,-77.91267882,"Powhatan, Virginia, US",29652
-84051147,US,USA,840,51147,Prince Edward,Virginia,US,37.22554789,-78.43597949,"Prince Edward, Virginia, US",22802
-84051149,US,USA,840,51149,Prince George,Virginia,US,37.18497668,-77.22922187,"Prince George, Virginia, US",38353
-84051153,US,USA,840,51153,Prince William,Virginia,US,38.70916224,-77.48713689,"Prince William, Virginia, US",470335
-84051155,US,USA,840,51155,Pulaski,Virginia,US,37.06474963,-80.71229738,"Pulaski, Virginia, US",34027
-84051157,US,USA,840,51157,Rappahannock,Virginia,US,38.68295619,-78.15826963,"Rappahannock, Virginia, US",7370
-84051159,US,USA,840,51159,Richmond,Virginia,US,37.937575,-76.72920628,"Richmond, Virginia, US",9023
-84051161,US,USA,840,51161,Roanoke,Virginia,US,37.26865804,-80.06396753,"Roanoke, Virginia, US",94186
-84051163,US,USA,840,51163,Rockbridge,Virginia,US,37.81204314,-79.44605905,"Rockbridge, Virginia, US",22573
-84051165,US,USA,840,51165,Rockingham,Virginia,US,38.51006137,-78.87260325,"Rockingham, Virginia, US",81948
-84051167,US,USA,840,51167,Russell,Virginia,US,36.9302832,-82.10095486,"Russell, Virginia, US",26586
-84051169,US,USA,840,51169,Scott,Virginia,US,36.71466456,-82.60171704,"Scott, Virginia, US",21566
-84051171,US,USA,840,51171,Shenandoah,Virginia,US,38.85905135,-78.56813762,"Shenandoah, Virginia, US",43616
-84051173,US,USA,840,51173,Smyth,Virginia,US,36.84455636,-81.53344948,"Smyth, Virginia, US",30104
-84051175,US,USA,840,51175,Southampton,Virginia,US,36.72231125,-77.10642712,"Southampton, Virginia, US",17631
-84051177,US,USA,840,51177,Spotsylvania,Virginia,US,38.18574462,-77.655399,"Spotsylvania, Virginia, US",136215
-84051179,US,USA,840,51179,Stafford,Virginia,US,38.41758738,-77.45917053,"Stafford, Virginia, US",152882
-84051181,US,USA,840,51181,Surry,Virginia,US,37.11781893,-76.88450012,"Surry, Virginia, US",6422
-84051183,US,USA,840,51183,Sussex,Virginia,US,36.92432914,-77.25791182,"Sussex, Virginia, US",11159
-84051185,US,USA,840,51185,Tazewell,Virginia,US,37.12191123,-81.56685568,"Tazewell, Virginia, US",40595
-84051187,US,USA,840,51187,Warren,Virginia,US,38.90847745,-78.20280433,"Warren, Virginia, US",40164
-84051191,US,USA,840,51191,Washington,Virginia,US,36.72341572,-81.95666289,"Washington, Virginia, US",53740
-84051193,US,USA,840,51193,Westmoreland,Virginia,US,38.11021557,-76.80213247,"Westmoreland, Virginia, US",18015
-84051195,US,USA,840,51195,Wise,Virginia,US,36.9746148,-82.62410519,"Wise, Virginia, US",37383
-84051197,US,USA,840,51197,Wythe,Virginia,US,36.91582035,-81.07834059,"Wythe, Virginia, US",28684
-84051199,US,USA,840,51199,York,Virginia,US,37.24374789,-76.54412815,"York, Virginia, US",68280
-84051510,US,USA,840,51510,Alexandria,Virginia,US,38.814003,-77.08183073,"Alexandria, Virginia, US",159428
-84051520,US,USA,840,51520,Bristol,Virginia,US,36.6163024,-82.16359122,"Bristol, Virginia, US",16762
-84051530,US,USA,840,51530,Buena Vista,Virginia,US,37.73484642,-79.35296097,"Buena Vista, Virginia, US",6478
-84051540,US,USA,840,51540,Charlottesville,Virginia,US,38.03527919,-78.48569588,"Charlottesville, Virginia, US",47266
-84051550,US,USA,840,51550,Chesapeake,Virginia,US,36.67670048,-76.30545744,"Chesapeake, Virginia, US",244835
-84051570,US,USA,840,51570,Colonial Heights,Virginia,US,37.26420587,-77.39609676,"Colonial Heights, Virginia, US",17370
-84051580,US,USA,840,51580,Covington,Virginia,US,37.7824656,-79.98631446,"Covington, Virginia, US",5538
-84051590,US,USA,840,51590,Danville,Virginia,US,36.58022376,-79.40395668,"Danville, Virginia, US",40044
-84051595,US,USA,840,51595,Emporia,Virginia,US,36.69455571,-77.53406129,"Emporia, Virginia, US",5346
-84051600,US,USA,840,51600,Fairfax City,Virginia,US,38.85157547,-77.2977964,"Fairfax City, Virginia, US",24019
-84051610,US,USA,840,51610,Falls Church,Virginia,US,38.88485255,-77.17560759,"Falls Church, Virginia, US",14617
-84051620,US,USA,840,51620,Franklin City,Virginia,US,36.6831435,-76.93859681,"Franklin City, Virginia, US",7967
-84051630,US,USA,840,51630,Fredericksburg,Virginia,US,38.2977863,-77.4922454,"Fredericksburg, Virginia, US",29036
-84051640,US,USA,840,51640,Galax,Virginia,US,36.66601852,-80.91703124,"Galax, Virginia, US",6347
-84051650,US,USA,840,51650,Hampton,Virginia,US,37.03513786,-76.35879121,"Hampton, Virginia, US",134510
-84051660,US,USA,840,51660,Harrisonburg,Virginia,US,38.43542574,-78.87536254,"Harrisonburg, Virginia, US",53016
-84051670,US,USA,840,51670,Hopewell,Virginia,US,37.29186313,-77.29754684,"Hopewell, Virginia, US",22529
-84051678,US,USA,840,51678,Lexington,Virginia,US,37.78258621,-79.44262866,"Lexington, Virginia, US",7446
-84051680,US,USA,840,51680,Lynchburg,Virginia,US,37.40021399,-79.19888138,"Lynchburg, Virginia, US",82168
-84051683,US,USA,840,51683,Manassas,Virginia,US,38.7464321,-77.48509905,"Manassas, Virginia, US",41085
-84051685,US,USA,840,51685,Manassas Park,Virginia,US,38.77058531,-77.44399307,"Manassas Park, Virginia, US",17478
-84051690,US,USA,840,51690,Martinsville,Virginia,US,36.68212094,-79.86352771,"Martinsville, Virginia, US",12554
-84051700,US,USA,840,51700,Newport News,Virginia,US,37.08166899,-76.51754109,"Newport News, Virginia, US",179225
-84051710,US,USA,840,51710,Norfolk,Virginia,US,36.89934014,-76.26420872,"Norfolk, Virginia, US",242742
-84051720,US,USA,840,51720,Norton,Virginia,US,36.93357076,-82.62750411,"Norton, Virginia, US",3981
-84051730,US,USA,840,51730,Petersburg,Virginia,US,37.20530399,-77.39368102,"Petersburg, Virginia, US",31346
-84051735,US,USA,840,51735,Poquoson,Virginia,US,37.14259351,-76.35798148,"Poquoson, Virginia, US",12271
-84051740,US,USA,840,51740,Portsmouth,Virginia,US,36.85914825,-76.35971629,"Portsmouth, Virginia, US",94398
-84051750,US,USA,840,51750,Radford,Virginia,US,37.12222899,-80.5602732,"Radford, Virginia, US",18249
-84051760,US,USA,840,51760,Richmond City,Virginia,US,37.53255773,-77.47966921,"Richmond City, Virginia, US",230436
-84051770,US,USA,840,51770,Roanoke City,Virginia,US,37.27791025,-79.96189766,"Roanoke City, Virginia, US",99143
-84051775,US,USA,840,51775,Salem,Virginia,US,37.2836193,-80.06219455,"Salem, Virginia, US",25301
-84051790,US,USA,840,51790,Staunton,Virginia,US,38.15965544,-79.05979937,"Staunton, Virginia, US",24932
-84051800,US,USA,840,51800,Suffolk,Virginia,US,36.70155394,-76.63603554,"Suffolk, Virginia, US",92108
-84051810,US,USA,840,51810,Virginia Beach,Virginia,US,36.73285734,-76.04566934,"Virginia Beach, Virginia, US",449974
-84051820,US,USA,840,51820,Waynesboro,Virginia,US,38.06451466,-78.90293905,"Waynesboro, Virginia, US",22630
-84051830,US,USA,840,51830,Williamsburg,Virginia,US,37.28131268,-76.70905141,"Williamsburg, Virginia, US",14954
-84051840,US,USA,840,51840,Winchester,Virginia,US,39.17054517,-78.17325058,"Winchester, Virginia, US",28078
-84053001,US,USA,840,53001,Adams,Washington,US,46.98299757,-118.5601734,"Adams, Washington, US",19983
-84053003,US,USA,840,53003,Asotin,Washington,US,46.18894415,-117.2022851,"Asotin, Washington, US",22582
-84053005,US,USA,840,53005,Benton,Washington,US,46.23946995,-119.5120834,"Benton, Washington, US",204390
-84053007,US,USA,840,53007,Chelan,Washington,US,47.87046092,-120.6173956,"Chelan, Washington, US",77200
-84053009,US,USA,840,53009,Clallam,Washington,US,48.04754642,-123.9226319,"Clallam, Washington, US",77331
-84053011,US,USA,840,53011,Clark,Washington,US,45.77568046,-122.4829204,"Clark, Washington, US",488241
-84053013,US,USA,840,53013,Columbia,Washington,US,46.29442881,-117.9051983,"Columbia, Washington, US",3985
-84053015,US,USA,840,53015,Cowlitz,Washington,US,46.19074721,-122.6782231,"Cowlitz, Washington, US",110593
-84053017,US,USA,840,53017,Douglas,Washington,US,47.7361335,-119.692937,"Douglas, Washington, US",43429
-84053019,US,USA,840,53019,Ferry,Washington,US,48.4711431,-118.5154041,"Ferry, Washington, US",7627
-84053021,US,USA,840,53021,Franklin,Washington,US,46.53351425,-118.9018212,"Franklin, Washington, US",95222
-84053023,US,USA,840,53023,Garfield,Washington,US,46.43197502,-117.5454032,"Garfield, Washington, US",2225
-84053025,US,USA,840,53025,Grant,Washington,US,47.20753737,-119.4500749,"Grant, Washington, US",97733
-84053027,US,USA,840,53027,Grays Harbor,Washington,US,47.14003705,-123.7820567,"Grays Harbor, Washington, US",75061
-84053029,US,USA,840,53029,Island,Washington,US,48.14713305,-122.5216407,"Island, Washington, US",85141
-84053031,US,USA,840,53031,Jefferson,Washington,US,47.75003077,-123.5609704,"Jefferson, Washington, US",32221
-84053033,US,USA,840,53033,King,Washington,US,47.49137892,-121.8346131,"King, Washington, US",2252782
-84053035,US,USA,840,53035,Kitsap,Washington,US,47.63479026,-122.6436061,"Kitsap, Washington, US",271473
-84053037,US,USA,840,53037,Kittitas,Washington,US,47.12521214,-120.679439,"Kittitas, Washington, US",47935
-84053039,US,USA,840,53039,Klickitat,Washington,US,45.87325839,-120.7913598,"Klickitat, Washington, US",22425
-84053041,US,USA,840,53041,Lewis,Washington,US,46.57756476,-122.3925769,"Lewis, Washington, US",80707
-84053043,US,USA,840,53043,Lincoln,Washington,US,47.57705241,-118.4194388,"Lincoln, Washington, US",10939
-84053045,US,USA,840,53045,Mason,Washington,US,47.35007586,-123.1863685,"Mason, Washington, US",66768
-84053047,US,USA,840,53047,Okanogan,Washington,US,48.54855019,-119.7387224,"Okanogan, Washington, US",42243
-84053049,US,USA,840,53049,Pacific,Washington,US,46.55418369,-123.7285716,"Pacific, Washington, US",22471
-84053051,US,USA,840,53051,Pend Oreille,Washington,US,48.53234021,-117.2741804,"Pend Oreille, Washington, US",13724
-84053053,US,USA,840,53053,Pierce,Washington,US,47.03892768,-122.1405958,"Pierce, Washington, US",904980
-84053055,US,USA,840,53055,San Juan,Washington,US,48.60182783,-122.96745,"San Juan, Washington, US",17582
-84053057,US,USA,840,53057,Skagit,Washington,US,48.48171488,-121.766131,"Skagit, Washington, US",129205
-84053059,US,USA,840,53059,Skamania,Washington,US,46.02408726,-121.9164403,"Skamania, Washington, US",12083
-84053061,US,USA,840,53061,Snohomish,Washington,US,48.04615983,-121.7170703,"Snohomish, Washington, US",822083
-84053063,US,USA,840,53063,Spokane,Washington,US,47.62113146,-117.4046494,"Spokane, Washington, US",522798
-84053065,US,USA,840,53065,Stevens,Washington,US,48.40035475,-117.8542701,"Stevens, Washington, US",45723
-84053067,US,USA,840,53067,Thurston,Washington,US,46.9291895,-122.8290656,"Thurston, Washington, US",290536
-84053069,US,USA,840,53069,Wahkiakum,Washington,US,46.2918004,-123.4250831,"Wahkiakum, Washington, US",4488
-84053071,US,USA,840,53071,Walla Walla,Washington,US,46.23040051,-118.4775539,"Walla Walla, Washington, US",60760
-84053073,US,USA,840,53073,Whatcom,Washington,US,48.82227976,-121.7490018,"Whatcom, Washington, US",229247
-84053075,US,USA,840,53075,Whitman,Washington,US,46.90022523,-117.5241763,"Whitman, Washington, US",50104
-84053077,US,USA,840,53077,Yakima,Washington,US,46.45738486,-120.7380126,"Yakima, Washington, US",250873
-84054001,US,USA,840,54001,Barbour,West Virginia,US,39.1307219,-80.00350858,"Barbour, West Virginia, US",16441
-84054003,US,USA,840,54003,Berkeley,West Virginia,US,39.46704621,-78.02414609,"Berkeley, West Virginia, US",119171
-84054005,US,USA,840,54005,Boone,West Virginia,US,38.01974191,-81.69888019,"Boone, West Virginia, US",21457
-84054007,US,USA,840,54007,Braxton,West Virginia,US,38.70036159,-80.72011184,"Braxton, West Virginia, US",13957
-84054009,US,USA,840,54009,Brooke,West Virginia,US,40.27367263,-80.57915332,"Brooke, West Virginia, US",21939
-84054011,US,USA,840,54011,Cabell,West Virginia,US,38.42424062,-82.23855912,"Cabell, West Virginia, US",91945
-84054013,US,USA,840,54013,Calhoun,West Virginia,US,38.84315422,-81.11934872,"Calhoun, West Virginia, US",7109
-84054015,US,USA,840,54015,Clay,West Virginia,US,38.46231092,-81.07652217,"Clay, West Virginia, US",8508
-84054017,US,USA,840,54017,Doddridge,West Virginia,US,39.27057157,-80.70671527,"Doddridge, West Virginia, US",8448
-84054019,US,USA,840,54019,Fayette,West Virginia,US,38.02974928,-81.08286634,"Fayette, West Virginia, US",42406
-84054021,US,USA,840,54021,Gilmer,West Virginia,US,38.9251277,-80.85952723,"Gilmer, West Virginia, US",7823
-84054023,US,USA,840,54023,Grant,West Virginia,US,39.10314817,-79.19440518,"Grant, West Virginia, US",11568
-84054025,US,USA,840,54025,Greenbrier,West Virginia,US,37.9463652,-80.45335881,"Greenbrier, West Virginia, US",34662
-84054027,US,USA,840,54027,Hampshire,West Virginia,US,39.32103553,-78.60826476,"Hampshire, West Virginia, US",23175
-84054029,US,USA,840,54029,Hancock,West Virginia,US,40.51943859,-80.57461608,"Hancock, West Virginia, US",28810
-84054031,US,USA,840,54031,Hardy,West Virginia,US,39.00683177,-78.85855301,"Hardy, West Virginia, US",13776
-84054033,US,USA,840,54033,Harrison,West Virginia,US,39.2853852,-80.37919577,"Harrison, West Virginia, US",67256
-84054035,US,USA,840,54035,Jackson,West Virginia,US,38.84263974,-81.68148753,"Jackson, West Virginia, US",28576
-84054037,US,USA,840,54037,Jefferson,West Virginia,US,39.30776166,-77.86014147,"Jefferson, West Virginia, US",57146
-84054039,US,USA,840,54039,Kanawha,West Virginia,US,38.33860077,-81.52857054,"Kanawha, West Virginia, US",178124
-84054041,US,USA,840,54041,Lewis,West Virginia,US,38.9947249,-80.49988181,"Lewis, West Virginia, US",15907
-84054043,US,USA,840,54043,Lincoln,West Virginia,US,38.172154,-82.07017953,"Lincoln, West Virginia, US",20409
-84054045,US,USA,840,54045,Logan,West Virginia,US,37.8299889,-81.93528571,"Logan, West Virginia, US",32019
-84054047,US,USA,840,54047,McDowell,West Virginia,US,37.38002939,-81.65083669,"McDowell, West Virginia, US",17624
-84054049,US,USA,840,54049,Marion,West Virginia,US,39.50984542,-80.24244659,"Marion, West Virginia, US",56072
-84054051,US,USA,840,54051,Marshall,West Virginia,US,39.86064362,-80.66591062,"Marshall, West Virginia, US",30531
-84054053,US,USA,840,54053,Mason,West Virginia,US,38.77071799,-82.02524219,"Mason, West Virginia, US",26516
-84054055,US,USA,840,54055,Mercer,West Virginia,US,37.40481169,-81.11023142,"Mercer, West Virginia, US",58758
-84054057,US,USA,840,54057,Mineral,West Virginia,US,39.41561583,-78.94104895,"Mineral, West Virginia, US",26868
-84054059,US,USA,840,54059,Mingo,West Virginia,US,37.73048351,-82.13338365,"Mingo, West Virginia, US",23424
-84054061,US,USA,840,54061,Monongalia,West Virginia,US,39.63218457,-80.04766838,"Monongalia, West Virginia, US",105612
-84054063,US,USA,840,54063,Monroe,West Virginia,US,37.56274716,-80.54577965,"Monroe, West Virginia, US",13275
-84054065,US,USA,840,54065,Morgan,West Virginia,US,39.55439028,-78.26311676,"Morgan, West Virginia, US",17884
-84054067,US,USA,840,54067,Nicholas,West Virginia,US,38.29617706,-80.79759588,"Nicholas, West Virginia, US",24496
-84054069,US,USA,840,54069,Ohio,West Virginia,US,40.0955451,-80.62203992,"Ohio, West Virginia, US",41411
-84054071,US,USA,840,54071,Pendleton,West Virginia,US,38.68314479,-79.35084086,"Pendleton, West Virginia, US",6969
-84054073,US,USA,840,54073,Pleasants,West Virginia,US,39.37091679,-81.16771771,"Pleasants, West Virginia, US",7460
-84054075,US,USA,840,54075,Pocahontas,West Virginia,US,38.32758728,-80.00993811,"Pocahontas, West Virginia, US",8247
-84054077,US,USA,840,54077,Preston,West Virginia,US,39.46770987,-79.66712803,"Preston, West Virginia, US",33432
-84054079,US,USA,840,54079,Putnam,West Virginia,US,38.50782345,-81.9082131,"Putnam, West Virginia, US",56450
-84054081,US,USA,840,54081,Raleigh,West Virginia,US,37.76936795,-81.2456041,"Raleigh, West Virginia, US",73361
-84054083,US,USA,840,54083,Randolph,West Virginia,US,38.769899,-79.87919615,"Randolph, West Virginia, US",28695
-84054085,US,USA,840,54085,Ritchie,West Virginia,US,39.18094587,-81.06356878,"Ritchie, West Virginia, US",9554
-84054087,US,USA,840,54087,Roane,West Virginia,US,38.71622686,-81.35243568,"Roane, West Virginia, US",13688
-84054089,US,USA,840,54089,Summers,West Virginia,US,37.65390597,-80.86009693,"Summers, West Virginia, US",12573
-84054091,US,USA,840,54091,Taylor,West Virginia,US,39.33602617,-80.0421439,"Taylor, West Virginia, US",16695
-84054093,US,USA,840,54093,Tucker,West Virginia,US,39.11240885,-79.57053576,"Tucker, West Virginia, US",6839
-84054095,US,USA,840,54095,Tyler,West Virginia,US,39.46811972,-80.88772676,"Tyler, West Virginia, US",8591
-84054097,US,USA,840,54097,Upshur,West Virginia,US,38.89285061,-80.23689136,"Upshur, West Virginia, US",24176
-84054099,US,USA,840,54099,Wayne,West Virginia,US,38.14901357,-82.42287994,"Wayne, West Virginia, US",39402
-84054101,US,USA,840,54101,Webster,West Virginia,US,38.49370949,-80.4202023,"Webster, West Virginia, US",8114
-84054103,US,USA,840,54103,Wetzel,West Virginia,US,39.6065771,-80.6401654,"Wetzel, West Virginia, US",15065
-84054105,US,USA,840,54105,Wirt,West Virginia,US,39.02775007,-81.37473928,"Wirt, West Virginia, US",5821
-84054107,US,USA,840,54107,Wood,West Virginia,US,39.20967886,-81.5162836,"Wood, West Virginia, US",83518
-84054109,US,USA,840,54109,Wyoming,West Virginia,US,37.612327,-81.54511071,"Wyoming, West Virginia, US",20394
-84055001,US,USA,840,55001,Adams,Wisconsin,US,43.96974651,-89.76782777,"Adams, Wisconsin, US",20220
-84055003,US,USA,840,55003,Ashland,Wisconsin,US,46.31956891,-90.67837132,"Ashland, Wisconsin, US",15562
-84055005,US,USA,840,55005,Barron,Wisconsin,US,45.42372701,-91.84833627,"Barron, Wisconsin, US",45244
-84055007,US,USA,840,55007,Bayfield,Wisconsin,US,46.52868768,-91.19716729,"Bayfield, Wisconsin, US",15036
-84055009,US,USA,840,55009,Brown,Wisconsin,US,44.4526553,-88.00411844,"Brown, Wisconsin, US",264542
-84055011,US,USA,840,55011,Buffalo,Wisconsin,US,44.37835084,-91.75332578,"Buffalo, Wisconsin, US",13031
-84055013,US,USA,840,55013,Burnett,Wisconsin,US,45.86303537,-92.36711412,"Burnett, Wisconsin, US",15414
-84055015,US,USA,840,55015,Calumet,Wisconsin,US,44.0816316,-88.21780273,"Calumet, Wisconsin, US",50089
-84055017,US,USA,840,55017,Chippewa,Wisconsin,US,45.06939744,-91.28068855,"Chippewa, Wisconsin, US",64658
-84055019,US,USA,840,55019,Clark,Wisconsin,US,44.73483377,-90.61207486,"Clark, Wisconsin, US",34774
-84055021,US,USA,840,55021,Columbia,Wisconsin,US,43.46492199,-89.33589004,"Columbia, Wisconsin, US",57532
-84055023,US,USA,840,55023,Crawford,Wisconsin,US,43.23870316,-90.93073686,"Crawford, Wisconsin, US",16131
-84055025,US,USA,840,55025,Dane,Wisconsin,US,43.06601594,-89.41733797,"Dane, Wisconsin, US",546695
-84055027,US,USA,840,55027,Dodge,Wisconsin,US,43.41576662,-88.70928178,"Dodge, Wisconsin, US",87839
-84055029,US,USA,840,55029,Door,Wisconsin,US,44.95856458,-87.30002707,"Door, Wisconsin, US",27668
-84055031,US,USA,840,55031,Douglas,Wisconsin,US,46.43222285,-91.91595768,"Douglas, Wisconsin, US",43150
-84055033,US,USA,840,55033,Dunn,Wisconsin,US,44.94562799,-91.8962481,"Dunn, Wisconsin, US",45368
-84055035,US,USA,840,55035,Eau Claire,Wisconsin,US,44.726614,-91.28609183,"Eau Claire, Wisconsin, US",104646
-84055037,US,USA,840,55037,Florence,Wisconsin,US,45.84963535,-88.39804137,"Florence, Wisconsin, US",4295
-84055039,US,USA,840,55039,Fond du Lac,Wisconsin,US,43.75354908,-88.48885325,"Fond du Lac, Wisconsin, US",103403
-84055041,US,USA,840,55041,Forest,Wisconsin,US,45.66678019,-88.77084892,"Forest, Wisconsin, US",9004
-84055043,US,USA,840,55043,Grant,Wisconsin,US,42.8671731,-90.7063218,"Grant, Wisconsin, US",51439
-84055045,US,USA,840,55045,Green,Wisconsin,US,42.6794956,-89.60243287,"Green, Wisconsin, US",36960
-84055047,US,USA,840,55047,Green Lake,Wisconsin,US,43.80025981,-89.04679553,"Green Lake, Wisconsin, US",18913
-84055049,US,USA,840,55049,Iowa,Wisconsin,US,43.00050278,-90.13469017,"Iowa, Wisconsin, US",23678
-84055051,US,USA,840,55051,Iron,Wisconsin,US,46.26302338,-90.24295041,"Iron, Wisconsin, US",5687
-84055053,US,USA,840,55053,Jackson,Wisconsin,US,44.31864893,-90.80566792,"Jackson, Wisconsin, US",20643
-84055055,US,USA,840,55055,Jefferson,Wisconsin,US,43.02054068,-88.77529134,"Jefferson, Wisconsin, US",84769
-84055057,US,USA,840,55057,Juneau,Wisconsin,US,43.92456975,-90.11120239,"Juneau, Wisconsin, US",26687
-84055059,US,USA,840,55059,Kenosha,Wisconsin,US,42.57639354,-88.04051686,"Kenosha, Wisconsin, US",169561
-84055061,US,USA,840,55061,Kewaunee,Wisconsin,US,44.51727459,-87.61468386,"Kewaunee, Wisconsin, US",20434
-84055063,US,USA,840,55063,La Crosse,Wisconsin,US,43.90632465,-91.11451093,"La Crosse, Wisconsin, US",118016
-84055065,US,USA,840,55065,Lafayette,Wisconsin,US,42.66005229,-90.1317729,"Lafayette, Wisconsin, US",16665
-84055067,US,USA,840,55067,Langlade,Wisconsin,US,45.26271619,-89.07483625,"Langlade, Wisconsin, US",19189
-84055069,US,USA,840,55069,Lincoln,Wisconsin,US,45.33737523,-89.73411273,"Lincoln, Wisconsin, US",27593
-84055071,US,USA,840,55071,Manitowoc,Wisconsin,US,44.11946801,-87.80928853,"Manitowoc, Wisconsin, US",78981
-84055073,US,USA,840,55073,Marathon,Wisconsin,US,44.89792533,-89.75863384,"Marathon, Wisconsin, US",135692
-84055075,US,USA,840,55075,Marinette,Wisconsin,US,45.38553432,-88.033246,"Marinette, Wisconsin, US",40350
-84055077,US,USA,840,55077,Marquette,Wisconsin,US,43.81911946,-89.40073763,"Marquette, Wisconsin, US",15574
-84055078,US,USA,840,55078,Menominee,Wisconsin,US,45.00422544,-88.70950714,"Menominee, Wisconsin, US",4556
-84055079,US,USA,840,55079,Milwaukee,Wisconsin,US,43.00486062,-87.96733172,"Milwaukee, Wisconsin, US",945726
-84055081,US,USA,840,55081,Monroe,Wisconsin,US,43.94641218,-90.618819,"Monroe, Wisconsin, US",46253
-84055083,US,USA,840,55083,Oconto,Wisconsin,US,45.02715345,-88.26807503,"Oconto, Wisconsin, US",37930
-84055085,US,USA,840,55085,Oneida,Wisconsin,US,45.70677897,-89.51944105,"Oneida, Wisconsin, US",35595
-84055087,US,USA,840,55087,Outagamie,Wisconsin,US,44.41578887,-88.46565023,"Outagamie, Wisconsin, US",187885
-84055089,US,USA,840,55089,Ozaukee,Wisconsin,US,43.38352225,-87.94625009,"Ozaukee, Wisconsin, US",89221
-84055091,US,USA,840,55091,Pepin,Wisconsin,US,44.58307413,-91.99949611,"Pepin, Wisconsin, US",7287
-84055093,US,USA,840,55093,Pierce,Wisconsin,US,44.71850291,-92.4224416,"Pierce, Wisconsin, US",42754
-84055095,US,USA,840,55095,Polk,Wisconsin,US,45.46130348,-92.44182875,"Polk, Wisconsin, US",43783
-84055097,US,USA,840,55097,Portage,Wisconsin,US,44.47558711,-89.50152965,"Portage, Wisconsin, US",70772
-84055099,US,USA,840,55099,Price,Wisconsin,US,45.68051754,-90.3609888,"Price, Wisconsin, US",13351
-84055101,US,USA,840,55101,Racine,Wisconsin,US,42.74753117,-88.05941254,"Racine, Wisconsin, US",196311
-84055103,US,USA,840,55103,Richland,Wisconsin,US,43.3762778,-90.43012729,"Richland, Wisconsin, US",17252
-84055105,US,USA,840,55105,Rock,Wisconsin,US,42.67151616,-89.071479,"Rock, Wisconsin, US",163354
-84055107,US,USA,840,55107,Rusk,Wisconsin,US,45.47498854,-91.1333012,"Rusk, Wisconsin, US",14178
-84055109,US,USA,840,55109,St. Croix,Wisconsin,US,45.03437474,-92.45000068,"St. Croix, Wisconsin, US",90687
-84055111,US,USA,840,55111,Sauk,Wisconsin,US,43.42574087,-89.94966132,"Sauk, Wisconsin, US",64442
-84055113,US,USA,840,55113,Sawyer,Wisconsin,US,45.87931905,-91.14504927,"Sawyer, Wisconsin, US",16558
-84055115,US,USA,840,55115,Shawano,Wisconsin,US,44.78902246,-88.76443896,"Shawano, Wisconsin, US",40899
-84055117,US,USA,840,55117,Sheboygan,Wisconsin,US,43.72099677,-87.94579284,"Sheboygan, Wisconsin, US",115340
-84055119,US,USA,840,55119,Taylor,Wisconsin,US,45.21179252,-90.5004405,"Taylor, Wisconsin, US",20343
-84055121,US,USA,840,55121,Trempealeau,Wisconsin,US,44.30360275,-91.35893614,"Trempealeau, Wisconsin, US",29649
-84055123,US,USA,840,55123,Vernon,Wisconsin,US,43.59422667,-90.8324691,"Vernon, Wisconsin, US",30822
-84055125,US,USA,840,55125,Vilas,Wisconsin,US,46.05467334,-89.51719204,"Vilas, Wisconsin, US",22195
-84055127,US,USA,840,55127,Walworth,Wisconsin,US,42.66858202,-88.54163073,"Walworth, Wisconsin, US",103868
-84055129,US,USA,840,55129,Washburn,Wisconsin,US,45.89838588,-91.79050449,"Washburn, Wisconsin, US",15720
-84055131,US,USA,840,55131,Washington,Wisconsin,US,43.36863664,-88.22974712,"Washington, Wisconsin, US",136034
-84055133,US,USA,840,55133,Waukesha,Wisconsin,US,43.01833055,-88.30431188,"Waukesha, Wisconsin, US",404198
-84055135,US,USA,840,55135,Waupaca,Wisconsin,US,44.47068056,-88.96534501,"Waupaca, Wisconsin, US",50990
-84055137,US,USA,840,55137,Waushara,Wisconsin,US,44.11324419,-89.24317107,"Waushara, Wisconsin, US",24443
-84055139,US,USA,840,55139,Winnebago,Wisconsin,US,44.06886922,-88.64477096,"Winnebago, Wisconsin, US",171907
-84055141,US,USA,840,55141,Wood,Wisconsin,US,44.45537896,-90.04158336,"Wood, Wisconsin, US",72999
-84056001,US,USA,840,56001,Albany,Wyoming,US,41.65498705,-105.7235415,"Albany, Wyoming, US",38880
-84056003,US,USA,840,56003,Big Horn,Wyoming,US,44.52405055,-107.9960365,"Big Horn, Wyoming, US",11790
-84056005,US,USA,840,56005,Campbell,Wyoming,US,44.24886082,-105.5474404,"Campbell, Wyoming, US",46341
-84056007,US,USA,840,56007,Carbon,Wyoming,US,41.69357844,-106.9326084,"Carbon, Wyoming, US",14800
-84056009,US,USA,840,56009,Converse,Wyoming,US,42.97272268,-105.5081848,"Converse, Wyoming, US",13822
-84056011,US,USA,840,56011,Crook,Wyoming,US,44.58855102,-104.5697705,"Crook, Wyoming, US",7584
-84056013,US,USA,840,56013,Fremont,Wyoming,US,43.04183996,-108.6296893,"Fremont, Wyoming, US",39261
-84056015,US,USA,840,56015,Goshen,Wyoming,US,42.08798185,-104.3534743,"Goshen, Wyoming, US",13211
-84056017,US,USA,840,56017,Hot Springs,Wyoming,US,43.71930657,-108.4423174,"Hot Springs, Wyoming, US",4413
-84056019,US,USA,840,56019,Johnson,Wyoming,US,44.04057166,-106.5845174,"Johnson, Wyoming, US",8445
-84056021,US,USA,840,56021,Laramie,Wyoming,US,41.3070252,-104.6887497,"Laramie, Wyoming, US",99500
-84056023,US,USA,840,56023,Lincoln,Wyoming,US,42.26376367,-110.6563997,"Lincoln, Wyoming, US",19830
-84056025,US,USA,840,56025,Natrona,Wyoming,US,42.96180148,-106.797885,"Natrona, Wyoming, US",79858
-84056027,US,USA,840,56027,Niobrara,Wyoming,US,43.05607708,-104.4758896,"Niobrara, Wyoming, US",2356
-84056029,US,USA,840,56029,Park,Wyoming,US,44.52157546,-109.5852825,"Park, Wyoming, US",29194
-84056031,US,USA,840,56031,Platte,Wyoming,US,42.13299116,-104.966331,"Platte, Wyoming, US",8393
-84056033,US,USA,840,56033,Sheridan,Wyoming,US,44.79048913,-106.8862389,"Sheridan, Wyoming, US",30485
-84056035,US,USA,840,56035,Sublette,Wyoming,US,42.76558279,-109.9130922,"Sublette, Wyoming, US",9831
-84056037,US,USA,840,56037,Sweetwater,Wyoming,US,41.65943896,-108.8827882,"Sweetwater, Wyoming, US",42343
-84056039,US,USA,840,56039,Teton,Wyoming,US,43.93522482,-110.5890801,"Teton, Wyoming, US",23464
-84056041,US,USA,840,56041,Uinta,Wyoming,US,41.2878183,-110.5475782,"Uinta, Wyoming, US",20226
-84056043,US,USA,840,56043,Washakie,Wyoming,US,43.90451606,-107.680187,"Washakie, Wyoming, US",7805
-84056045,US,USA,840,56045,Weston,Wyoming,US,43.83961191,-104.5674881,"Weston, Wyoming, US",6927
diff --git a/_delphi_utils_python/data_proc/geomap/USDA_2015_fips_changes.csv b/_delphi_utils_python/data_proc/geomap/USDA_2015_fips_changes.csv
deleted file mode 100644
index 183041133..000000000
--- a/_delphi_utils_python/data_proc/geomap/USDA_2015_fips_changes.csv
+++ /dev/null
@@ -1,38 +0,0 @@
-https://www.nrcs.usda.gov/wps/portal/nrcs/detail/pa/home/?cid=nrcs143_013710,,
-State,Before,After
-CO,8031,8001
-WY,parts of 56029,56047
-WY,56039,56047
-MO,29510,29189
-VA,51540,51003
-VA,51560,51005
-VA,51580,51005
-VA,51790,51015
-VA,�51820,51015
-VA,51515,51019
-VA,51640,51035
-VA,51570,51041
-VA,51013,51059
-VA,51510,51059
-VA,51600,51059
-VA,51610,51059
-VA,51840,�51069
-VA,51595,51081
-VA,51780,51083
-VA,51690,51089
-VA,51830,51095
-VA,51750,51121
-VA,51590,51143
-VA,51670,51149
-VA,51730,51149
-VA,51683,51153
-VA,�51685,51153
-VA,51770,51161
-VA,51775,51161
-VA,51530,51163
-VA,51678,51163
-VA,51660,51165
-VA,51620,51175
-VA,51630,51177
-VA,51520,51191
-VA,51720,51195
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/ZIP_COUNTY_032020.xlsx b/_delphi_utils_python/data_proc/geomap/ZIP_COUNTY_032020.xlsx
deleted file mode 100644
index 7593d5fcc..000000000
Binary files a/_delphi_utils_python/data_proc/geomap/ZIP_COUNTY_032020.xlsx and /dev/null differ
diff --git a/_delphi_utils_python/data_proc/geomap/ZipHsaHrr18.csv b/_delphi_utils_python/data_proc/geomap/ZipHsaHrr18.csv
deleted file mode 100644
index b6477f244..000000000
--- a/_delphi_utils_python/data_proc/geomap/ZipHsaHrr18.csv
+++ /dev/null
@@ -1,40878 +0,0 @@
-zipcode18,hsanum,hsacity,hsastate,hrrnum,hrrcity,hrrstate
-00501,33095,Patchogue,NY,301,East Long Island,NY
-00544,33095,Patchogue,NY,301,East Long Island,NY
-01001,22058,Springfield,MA,230,Springfield,MA
-01002,22046,Northampton,MA,230,Springfield,MA
-01003,22046,Northampton,MA,230,Springfield,MA
-01004,22046,Northampton,MA,230,Springfield,MA
-01005,22070,Worcester,MA,231,Worcester,MA
-01007,22063,Ware,MA,230,Springfield,MA
-01008,22066,Westfield,MA,230,Springfield,MA
-01009,22049,Palmer,MA,230,Springfield,MA
-01010,22057,Southbridge,MA,231,Worcester,MA
-01011,22051,Pittsfield,MA,295,Albany,NY
-01012,22046,Northampton,MA,230,Springfield,MA
-01013,22058,Springfield,MA,230,Springfield,MA
-01014,22058,Springfield,MA,230,Springfield,MA
-01020,22058,Springfield,MA,230,Springfield,MA
-01021,22058,Springfield,MA,230,Springfield,MA
-01022,22023,Holyoke,MA,230,Springfield,MA
-01026,22046,Northampton,MA,230,Springfield,MA
-01027,22046,Northampton,MA,230,Springfield,MA
-01028,22058,Springfield,MA,230,Springfield,MA
-01029,22020,Great Barrington,MA,230,Springfield,MA
-01030,22058,Springfield,MA,230,Springfield,MA
-01031,22063,Ware,MA,230,Springfield,MA
-01032,22046,Northampton,MA,230,Springfield,MA
-01033,22023,Holyoke,MA,230,Springfield,MA
-01034,22066,Westfield,MA,230,Springfield,MA
-01035,22046,Northampton,MA,230,Springfield,MA
-01036,22058,Springfield,MA,230,Springfield,MA
-01037,22063,Ware,MA,230,Springfield,MA
-01038,22046,Northampton,MA,230,Springfield,MA
-01039,22021,Greenfield,MA,230,Springfield,MA
-01040,22023,Holyoke,MA,230,Springfield,MA
-01041,22023,Holyoke,MA,230,Springfield,MA
-01050,22066,Westfield,MA,230,Springfield,MA
-01053,22046,Northampton,MA,230,Springfield,MA
-01054,22021,Greenfield,MA,230,Springfield,MA
-01056,22028,Ludlow,MA,230,Springfield,MA
-01057,22049,Palmer,MA,230,Springfield,MA
-01059,22046,Northampton,MA,230,Springfield,MA
-01060,22046,Northampton,MA,230,Springfield,MA
-01061,22046,Northampton,MA,230,Springfield,MA
-01062,22046,Northampton,MA,230,Springfield,MA
-01063,22046,Northampton,MA,230,Springfield,MA
-01066,22046,Northampton,MA,230,Springfield,MA
-01068,22070,Worcester,MA,231,Worcester,MA
-01069,22049,Palmer,MA,230,Springfield,MA
-01070,22046,Northampton,MA,230,Springfield,MA
-01071,22066,Westfield,MA,230,Springfield,MA
-01072,22021,Greenfield,MA,230,Springfield,MA
-01073,22046,Northampton,MA,230,Springfield,MA
-01074,22070,Worcester,MA,231,Worcester,MA
-01075,22023,Holyoke,MA,230,Springfield,MA
-01077,22066,Westfield,MA,230,Springfield,MA
-01079,22049,Palmer,MA,230,Springfield,MA
-01080,22049,Palmer,MA,230,Springfield,MA
-01081,22057,Southbridge,MA,231,Worcester,MA
-01082,22063,Ware,MA,230,Springfield,MA
-01083,22063,Ware,MA,230,Springfield,MA
-01084,22046,Northampton,MA,230,Springfield,MA
-01085,22066,Westfield,MA,230,Springfield,MA
-01086,22066,Westfield,MA,230,Springfield,MA
-01088,22046,Northampton,MA,230,Springfield,MA
-01089,22058,Springfield,MA,230,Springfield,MA
-01090,22058,Springfield,MA,230,Springfield,MA
-01092,22063,Ware,MA,230,Springfield,MA
-01093,22021,Greenfield,MA,230,Springfield,MA
-01094,22063,Ware,MA,230,Springfield,MA
-01095,22058,Springfield,MA,230,Springfield,MA
-01096,22046,Northampton,MA,230,Springfield,MA
-01097,22066,Westfield,MA,230,Springfield,MA
-01098,22046,Northampton,MA,230,Springfield,MA
-01101,22058,Springfield,MA,230,Springfield,MA
-01102,22058,Springfield,MA,230,Springfield,MA
-01103,22058,Springfield,MA,230,Springfield,MA
-01104,22058,Springfield,MA,230,Springfield,MA
-01105,22058,Springfield,MA,230,Springfield,MA
-01106,22058,Springfield,MA,230,Springfield,MA
-01107,22058,Springfield,MA,230,Springfield,MA
-01108,22058,Springfield,MA,230,Springfield,MA
-01109,22058,Springfield,MA,230,Springfield,MA
-01111,22058,Springfield,MA,230,Springfield,MA
-01115,22058,Springfield,MA,230,Springfield,MA
-01116,22058,Springfield,MA,230,Springfield,MA
-01118,22058,Springfield,MA,230,Springfield,MA
-01119,22058,Springfield,MA,230,Springfield,MA
-01128,22058,Springfield,MA,230,Springfield,MA
-01129,22058,Springfield,MA,230,Springfield,MA
-01138,22058,Springfield,MA,230,Springfield,MA
-01139,22058,Springfield,MA,230,Springfield,MA
-01144,22058,Springfield,MA,230,Springfield,MA
-01151,22058,Springfield,MA,230,Springfield,MA
-01152,22058,Springfield,MA,230,Springfield,MA
-01199,22058,Springfield,MA,230,Springfield,MA
-01201,22051,Pittsfield,MA,295,Albany,NY
-01202,22051,Pittsfield,MA,295,Albany,NY
-01203,22051,Pittsfield,MA,295,Albany,NY
-01220,22045,North Adams,MA,230,Springfield,MA
-01222,22020,Great Barrington,MA,230,Springfield,MA
-01223,22051,Pittsfield,MA,295,Albany,NY
-01224,22051,Pittsfield,MA,295,Albany,NY
-01225,22051,Pittsfield,MA,295,Albany,NY
-01226,22051,Pittsfield,MA,295,Albany,NY
-01227,22051,Pittsfield,MA,295,Albany,NY
-01229,22051,Pittsfield,MA,295,Albany,NY
-01230,22020,Great Barrington,MA,230,Springfield,MA
-01235,22051,Pittsfield,MA,295,Albany,NY
-01236,22020,Great Barrington,MA,230,Springfield,MA
-01237,22051,Pittsfield,MA,295,Albany,NY
-01238,22051,Pittsfield,MA,295,Albany,NY
-01240,22051,Pittsfield,MA,295,Albany,NY
-01242,22051,Pittsfield,MA,295,Albany,NY
-01243,22051,Pittsfield,MA,295,Albany,NY
-01244,22020,Great Barrington,MA,230,Springfield,MA
-01245,22020,Great Barrington,MA,230,Springfield,MA
-01247,22045,North Adams,MA,230,Springfield,MA
-01252,22020,Great Barrington,MA,230,Springfield,MA
-01253,22020,Great Barrington,MA,230,Springfield,MA
-01254,22051,Pittsfield,MA,295,Albany,NY
-01255,22020,Great Barrington,MA,230,Springfield,MA
-01256,22045,North Adams,MA,230,Springfield,MA
-01257,22020,Great Barrington,MA,230,Springfield,MA
-01258,22020,Great Barrington,MA,230,Springfield,MA
-01259,22020,Great Barrington,MA,230,Springfield,MA
-01260,22051,Pittsfield,MA,295,Albany,NY
-01262,22051,Pittsfield,MA,295,Albany,NY
-01263,22051,Pittsfield,MA,295,Albany,NY
-01264,22051,Pittsfield,MA,295,Albany,NY
-01266,22051,Pittsfield,MA,295,Albany,NY
-01267,22045,North Adams,MA,230,Springfield,MA
-01270,22051,Pittsfield,MA,295,Albany,NY
-01301,22021,Greenfield,MA,230,Springfield,MA
-01302,22021,Greenfield,MA,230,Springfield,MA
-01330,22021,Greenfield,MA,230,Springfield,MA
-01331,22002,Athol,MA,231,Worcester,MA
-01337,22021,Greenfield,MA,230,Springfield,MA
-01338,22021,Greenfield,MA,230,Springfield,MA
-01339,22021,Greenfield,MA,230,Springfield,MA
-01340,22021,Greenfield,MA,230,Springfield,MA
-01341,22021,Greenfield,MA,230,Springfield,MA
-01342,22021,Greenfield,MA,230,Springfield,MA
-01343,22021,Greenfield,MA,230,Springfield,MA
-01344,22021,Greenfield,MA,230,Springfield,MA
-01346,22021,Greenfield,MA,230,Springfield,MA
-01347,22021,Greenfield,MA,230,Springfield,MA
-01349,22021,Greenfield,MA,230,Springfield,MA
-01350,22045,North Adams,MA,230,Springfield,MA
-01351,22021,Greenfield,MA,230,Springfield,MA
-01354,22021,Greenfield,MA,230,Springfield,MA
-01355,22002,Athol,MA,231,Worcester,MA
-01360,22021,Greenfield,MA,230,Springfield,MA
-01364,22002,Athol,MA,231,Worcester,MA
-01366,22002,Athol,MA,231,Worcester,MA
-01367,22021,Greenfield,MA,230,Springfield,MA
-01368,22002,Athol,MA,231,Worcester,MA
-01370,22021,Greenfield,MA,230,Springfield,MA
-01373,22021,Greenfield,MA,230,Springfield,MA
-01375,22021,Greenfield,MA,230,Springfield,MA
-01376,22021,Greenfield,MA,230,Springfield,MA
-01378,22002,Athol,MA,231,Worcester,MA
-01379,22021,Greenfield,MA,230,Springfield,MA
-01380,22021,Greenfield,MA,230,Springfield,MA
-01420,22016,Fitchburg,MA,231,Worcester,MA
-01430,22018,Gardner,MA,231,Worcester,MA
-01431,22016,Fitchburg,MA,231,Worcester,MA
-01432,22004,Ayer,MA,227,Boston,MA
-01434,22004,Ayer,MA,227,Boston,MA
-01436,22018,Gardner,MA,231,Worcester,MA
-01438,22018,Gardner,MA,231,Worcester,MA
-01440,22018,Gardner,MA,231,Worcester,MA
-01441,22018,Gardner,MA,231,Worcester,MA
-01450,22004,Ayer,MA,227,Boston,MA
-01451,22004,Ayer,MA,227,Boston,MA
-01452,22018,Gardner,MA,231,Worcester,MA
-01453,22026,Leominster,MA,231,Worcester,MA
-01460,22004,Ayer,MA,227,Boston,MA
-01462,22016,Fitchburg,MA,231,Worcester,MA
-01463,22004,Ayer,MA,227,Boston,MA
-01464,22004,Ayer,MA,227,Boston,MA
-01467,22004,Ayer,MA,227,Boston,MA
-01468,22018,Gardner,MA,231,Worcester,MA
-01469,22004,Ayer,MA,227,Boston,MA
-01470,22004,Ayer,MA,227,Boston,MA
-01471,22004,Ayer,MA,227,Boston,MA
-01472,22004,Ayer,MA,227,Boston,MA
-01473,22018,Gardner,MA,231,Worcester,MA
-01474,22016,Fitchburg,MA,231,Worcester,MA
-01475,22018,Gardner,MA,231,Worcester,MA
-01501,22070,Worcester,MA,231,Worcester,MA
-01503,22070,Worcester,MA,231,Worcester,MA
-01504,41009,Woonsocket,RI,364,Providence,RI
-01505,22070,Worcester,MA,231,Worcester,MA
-01506,22070,Worcester,MA,231,Worcester,MA
-01507,22057,Southbridge,MA,231,Worcester,MA
-01508,22057,Southbridge,MA,231,Worcester,MA
-01509,22057,Southbridge,MA,231,Worcester,MA
-01510,22010,Clinton,MA,231,Worcester,MA
-01515,22070,Worcester,MA,231,Worcester,MA
-01516,22070,Worcester,MA,231,Worcester,MA
-01518,22057,Southbridge,MA,231,Worcester,MA
-01519,22070,Worcester,MA,231,Worcester,MA
-01520,22070,Worcester,MA,231,Worcester,MA
-01521,22057,Southbridge,MA,231,Worcester,MA
-01522,22070,Worcester,MA,231,Worcester,MA
-01523,22010,Clinton,MA,231,Worcester,MA
-01524,22070,Worcester,MA,231,Worcester,MA
-01525,22070,Worcester,MA,231,Worcester,MA
-01526,22070,Worcester,MA,231,Worcester,MA
-01527,22070,Worcester,MA,231,Worcester,MA
-01529,41009,Woonsocket,RI,364,Providence,RI
-01531,22070,Worcester,MA,231,Worcester,MA
-01532,22070,Worcester,MA,231,Worcester,MA
-01534,22070,Worcester,MA,231,Worcester,MA
-01535,22070,Worcester,MA,231,Worcester,MA
-01536,22070,Worcester,MA,231,Worcester,MA
-01537,22070,Worcester,MA,231,Worcester,MA
-01538,22070,Worcester,MA,231,Worcester,MA
-01540,22070,Worcester,MA,231,Worcester,MA
-01541,22070,Worcester,MA,231,Worcester,MA
-01542,22070,Worcester,MA,231,Worcester,MA
-01543,22070,Worcester,MA,231,Worcester,MA
-01545,22070,Worcester,MA,231,Worcester,MA
-01546,22070,Worcester,MA,231,Worcester,MA
-01550,22057,Southbridge,MA,231,Worcester,MA
-01560,22070,Worcester,MA,231,Worcester,MA
-01561,22010,Clinton,MA,231,Worcester,MA
-01562,22070,Worcester,MA,231,Worcester,MA
-01564,22070,Worcester,MA,231,Worcester,MA
-01566,22057,Southbridge,MA,231,Worcester,MA
-01568,22070,Worcester,MA,231,Worcester,MA
-01569,22070,Worcester,MA,231,Worcester,MA
-01570,22065,Webster,MA,231,Worcester,MA
-01571,22065,Webster,MA,231,Worcester,MA
-01581,22070,Worcester,MA,231,Worcester,MA
-01583,22070,Worcester,MA,231,Worcester,MA
-01585,22063,Ware,MA,230,Springfield,MA
-01586,22070,Worcester,MA,231,Worcester,MA
-01588,22070,Worcester,MA,231,Worcester,MA
-01590,22070,Worcester,MA,231,Worcester,MA
-01601,22070,Worcester,MA,231,Worcester,MA
-01602,22070,Worcester,MA,231,Worcester,MA
-01603,22070,Worcester,MA,231,Worcester,MA
-01604,22070,Worcester,MA,231,Worcester,MA
-01605,22070,Worcester,MA,231,Worcester,MA
-01606,22070,Worcester,MA,231,Worcester,MA
-01607,22070,Worcester,MA,231,Worcester,MA
-01608,22070,Worcester,MA,231,Worcester,MA
-01609,22070,Worcester,MA,231,Worcester,MA
-01610,22070,Worcester,MA,231,Worcester,MA
-01611,22070,Worcester,MA,231,Worcester,MA
-01612,22070,Worcester,MA,231,Worcester,MA
-01613,22070,Worcester,MA,231,Worcester,MA
-01614,22070,Worcester,MA,231,Worcester,MA
-01615,22070,Worcester,MA,231,Worcester,MA
-01653,22070,Worcester,MA,231,Worcester,MA
-01655,22070,Worcester,MA,231,Worcester,MA
-01701,22039,Natick,MA,227,Boston,MA
-01702,22039,Natick,MA,227,Boston,MA
-01703,22039,Natick,MA,227,Boston,MA
-01704,22039,Natick,MA,227,Boston,MA
-01705,22039,Natick,MA,227,Boston,MA
-01718,22011,Concord,MA,227,Boston,MA
-01719,22011,Concord,MA,227,Boston,MA
-01720,22011,Concord,MA,227,Boston,MA
-01721,22039,Natick,MA,227,Boston,MA
-01730,22011,Concord,MA,227,Boston,MA
-01731,22011,Concord,MA,227,Boston,MA
-01740,22031,Marlborough,MA,231,Worcester,MA
-01741,22011,Concord,MA,227,Boston,MA
-01742,22011,Concord,MA,227,Boston,MA
-01745,22039,Natick,MA,227,Boston,MA
-01746,22039,Natick,MA,227,Boston,MA
-01747,22070,Worcester,MA,231,Worcester,MA
-01748,22039,Natick,MA,227,Boston,MA
-01749,22031,Marlborough,MA,231,Worcester,MA
-01752,22031,Marlborough,MA,231,Worcester,MA
-01754,22011,Concord,MA,227,Boston,MA
-01756,22070,Worcester,MA,231,Worcester,MA
-01757,22039,Natick,MA,227,Boston,MA
-01760,22039,Natick,MA,227,Boston,MA
-01770,22039,Natick,MA,227,Boston,MA
-01772,22039,Natick,MA,227,Boston,MA
-01773,22011,Concord,MA,227,Boston,MA
-01775,22011,Concord,MA,227,Boston,MA
-01776,22011,Concord,MA,227,Boston,MA
-01778,22039,Natick,MA,227,Boston,MA
-01784,22039,Natick,MA,227,Boston,MA
-01801,22067,Winchester,MA,227,Boston,MA
-01803,22008,Burlington,MA,227,Boston,MA
-01805,22008,Burlington,MA,227,Boston,MA
-01810,22025,Lawrence,MA,227,Boston,MA
-01812,22025,Lawrence,MA,227,Boston,MA
-01813,22067,Winchester,MA,227,Boston,MA
-01815,22067,Winchester,MA,227,Boston,MA
-01821,22027,Lowell,MA,227,Boston,MA
-01822,22027,Lowell,MA,227,Boston,MA
-01824,22027,Lowell,MA,227,Boston,MA
-01826,22027,Lowell,MA,227,Boston,MA
-01827,22027,Lowell,MA,227,Boston,MA
-01830,22022,Haverhill,MA,227,Boston,MA
-01831,22022,Haverhill,MA,227,Boston,MA
-01832,22022,Haverhill,MA,227,Boston,MA
-01833,22022,Haverhill,MA,227,Boston,MA
-01834,22022,Haverhill,MA,227,Boston,MA
-01835,22022,Haverhill,MA,227,Boston,MA
-01840,22025,Lawrence,MA,227,Boston,MA
-01841,22025,Lawrence,MA,227,Boston,MA
-01842,22025,Lawrence,MA,227,Boston,MA
-01843,22025,Lawrence,MA,227,Boston,MA
-01844,22034,Methuen,MA,227,Boston,MA
-01845,22025,Lawrence,MA,227,Boston,MA
-01850,22027,Lowell,MA,227,Boston,MA
-01851,22027,Lowell,MA,227,Boston,MA
-01852,22027,Lowell,MA,227,Boston,MA
-01853,22027,Lowell,MA,227,Boston,MA
-01854,22027,Lowell,MA,227,Boston,MA
-01860,22042,Newburyport,MA,227,Boston,MA
-01862,22027,Lowell,MA,227,Boston,MA
-01863,22027,Lowell,MA,227,Boston,MA
-01864,22067,Winchester,MA,227,Boston,MA
-01865,22027,Lowell,MA,227,Boston,MA
-01866,22027,Lowell,MA,227,Boston,MA
-01867,22067,Winchester,MA,227,Boston,MA
-01876,22027,Lowell,MA,227,Boston,MA
-01879,22027,Lowell,MA,227,Boston,MA
-01880,22033,Melrose,MA,227,Boston,MA
-01885,22005,Beverly,MA,227,Boston,MA
-01886,22027,Lowell,MA,227,Boston,MA
-01887,22067,Winchester,MA,227,Boston,MA
-01888,22067,Winchester,MA,227,Boston,MA
-01889,22067,Winchester,MA,227,Boston,MA
-01890,22067,Winchester,MA,227,Boston,MA
-01899,22025,Lawrence,MA,227,Boston,MA
-01901,22029,Lynn,MA,227,Boston,MA
-01902,22029,Lynn,MA,227,Boston,MA
-01903,22029,Lynn,MA,227,Boston,MA
-01904,22029,Lynn,MA,227,Boston,MA
-01905,22029,Lynn,MA,227,Boston,MA
-01906,22033,Melrose,MA,227,Boston,MA
-01907,22054,Salem,MA,227,Boston,MA
-01908,22029,Lynn,MA,227,Boston,MA
-01910,22029,Lynn,MA,227,Boston,MA
-01913,22042,Newburyport,MA,227,Boston,MA
-01915,22005,Beverly,MA,227,Boston,MA
-01921,22005,Beverly,MA,227,Boston,MA
-01922,22042,Newburyport,MA,227,Boston,MA
-01923,22005,Beverly,MA,227,Boston,MA
-01929,22005,Beverly,MA,227,Boston,MA
-01930,22019,Gloucester,MA,227,Boston,MA
-01931,22019,Gloucester,MA,227,Boston,MA
-01936,22005,Beverly,MA,227,Boston,MA
-01937,22005,Beverly,MA,227,Boston,MA
-01938,22005,Beverly,MA,227,Boston,MA
-01940,22029,Lynn,MA,227,Boston,MA
-01944,22005,Beverly,MA,227,Boston,MA
-01945,22054,Salem,MA,227,Boston,MA
-01949,22005,Beverly,MA,227,Boston,MA
-01950,22042,Newburyport,MA,227,Boston,MA
-01951,22042,Newburyport,MA,227,Boston,MA
-01952,22042,Newburyport,MA,227,Boston,MA
-01960,22054,Salem,MA,227,Boston,MA
-01961,22054,Salem,MA,227,Boston,MA
-01965,22005,Beverly,MA,227,Boston,MA
-01966,22019,Gloucester,MA,227,Boston,MA
-01969,22042,Newburyport,MA,227,Boston,MA
-01970,22054,Salem,MA,227,Boston,MA
-01971,22054,Salem,MA,227,Boston,MA
-01982,22005,Beverly,MA,227,Boston,MA
-01983,22005,Beverly,MA,227,Boston,MA
-01984,22005,Beverly,MA,227,Boston,MA
-01985,22042,Newburyport,MA,227,Boston,MA
-02018,22056,South Weymouth,MA,227,Boston,MA
-02019,41009,Woonsocket,RI,364,Providence,RI
-02020,22056,South Weymouth,MA,227,Boston,MA
-02021,22047,Norwood,MA,227,Boston,MA
-02025,22056,South Weymouth,MA,227,Boston,MA
-02026,22006,Boston,MA,227,Boston,MA
-02027,22006,Boston,MA,227,Boston,MA
-02030,22039,Natick,MA,227,Boston,MA
-02032,22047,Norwood,MA,227,Boston,MA
-02035,22047,Norwood,MA,227,Boston,MA
-02038,22044,Norfolk,MA,227,Boston,MA
-02040,22056,South Weymouth,MA,227,Boston,MA
-02041,22056,South Weymouth,MA,227,Boston,MA
-02043,22056,South Weymouth,MA,227,Boston,MA
-02044,22056,South Weymouth,MA,227,Boston,MA
-02045,22056,South Weymouth,MA,227,Boston,MA
-02047,22056,South Weymouth,MA,227,Boston,MA
-02048,22003,Attleboro,MA,364,Providence,RI
-02050,22056,South Weymouth,MA,227,Boston,MA
-02051,22056,South Weymouth,MA,227,Boston,MA
-02052,22039,Natick,MA,227,Boston,MA
-02053,22039,Natick,MA,227,Boston,MA
-02054,22039,Natick,MA,227,Boston,MA
-02055,22056,South Weymouth,MA,227,Boston,MA
-02056,22044,Norfolk,MA,227,Boston,MA
-02059,22056,South Weymouth,MA,227,Boston,MA
-02060,22056,South Weymouth,MA,227,Boston,MA
-02061,22056,South Weymouth,MA,227,Boston,MA
-02062,22047,Norwood,MA,227,Boston,MA
-02065,22056,South Weymouth,MA,227,Boston,MA
-02066,22056,South Weymouth,MA,227,Boston,MA
-02067,22047,Norwood,MA,227,Boston,MA
-02070,22044,Norfolk,MA,227,Boston,MA
-02071,22047,Norwood,MA,227,Boston,MA
-02072,22060,Stoughton,MA,227,Boston,MA
-02081,22047,Norwood,MA,227,Boston,MA
-02090,22047,Norwood,MA,227,Boston,MA
-02093,22044,Norfolk,MA,227,Boston,MA
-02108,22006,Boston,MA,227,Boston,MA
-02109,22006,Boston,MA,227,Boston,MA
-02110,22006,Boston,MA,227,Boston,MA
-02111,22006,Boston,MA,227,Boston,MA
-02112,22006,Boston,MA,227,Boston,MA
-02113,22006,Boston,MA,227,Boston,MA
-02114,22006,Boston,MA,227,Boston,MA
-02115,22006,Boston,MA,227,Boston,MA
-02116,22006,Boston,MA,227,Boston,MA
-02117,22006,Boston,MA,227,Boston,MA
-02118,22006,Boston,MA,227,Boston,MA
-02119,22006,Boston,MA,227,Boston,MA
-02120,22006,Boston,MA,227,Boston,MA
-02121,22006,Boston,MA,227,Boston,MA
-02122,22006,Boston,MA,227,Boston,MA
-02123,22006,Boston,MA,227,Boston,MA
-02124,22006,Boston,MA,227,Boston,MA
-02125,22006,Boston,MA,227,Boston,MA
-02126,22006,Boston,MA,227,Boston,MA
-02127,22006,Boston,MA,227,Boston,MA
-02128,22006,Boston,MA,227,Boston,MA
-02129,22006,Boston,MA,227,Boston,MA
-02130,22006,Boston,MA,227,Boston,MA
-02131,22006,Boston,MA,227,Boston,MA
-02132,22006,Boston,MA,227,Boston,MA
-02133,22006,Boston,MA,227,Boston,MA
-02134,22006,Boston,MA,227,Boston,MA
-02135,22006,Boston,MA,227,Boston,MA
-02136,22006,Boston,MA,227,Boston,MA
-02137,22006,Boston,MA,227,Boston,MA
-02138,22009,Cambridge,MA,227,Boston,MA
-02139,22009,Cambridge,MA,227,Boston,MA
-02140,22009,Cambridge,MA,227,Boston,MA
-02141,22009,Cambridge,MA,227,Boston,MA
-02142,22006,Boston,MA,227,Boston,MA
-02143,22055,Somerville,MA,227,Boston,MA
-02144,22055,Somerville,MA,227,Boston,MA
-02145,22055,Somerville,MA,227,Boston,MA
-02148,22030,Malden,MA,227,Boston,MA
-02149,22013,Everett,MA,227,Boston,MA
-02150,22006,Boston,MA,227,Boston,MA
-02151,22006,Boston,MA,227,Boston,MA
-02152,22068,Winthrop,MA,227,Boston,MA
-02153,22055,Somerville,MA,227,Boston,MA
-02155,22032,Medford,MA,227,Boston,MA
-02156,22032,Medford,MA,227,Boston,MA
-02163,22006,Boston,MA,227,Boston,MA
-02169,22053,Quincy,MA,227,Boston,MA
-02170,22053,Quincy,MA,227,Boston,MA
-02171,22006,Boston,MA,227,Boston,MA
-02176,22033,Melrose,MA,227,Boston,MA
-02180,22059,Stoneham,MA,227,Boston,MA
-02184,22056,South Weymouth,MA,227,Boston,MA
-02185,22056,South Weymouth,MA,227,Boston,MA
-02186,22037,Milton,MA,227,Boston,MA
-02187,22037,Milton,MA,227,Boston,MA
-02188,22056,South Weymouth,MA,227,Boston,MA
-02189,22056,South Weymouth,MA,227,Boston,MA
-02190,22056,South Weymouth,MA,227,Boston,MA
-02191,22056,South Weymouth,MA,227,Boston,MA
-02196,22006,Boston,MA,227,Boston,MA
-02199,22006,Boston,MA,227,Boston,MA
-02201,22006,Boston,MA,227,Boston,MA
-02203,22006,Boston,MA,227,Boston,MA
-02204,22006,Boston,MA,227,Boston,MA
-02205,22006,Boston,MA,227,Boston,MA
-02206,22006,Boston,MA,227,Boston,MA
-02210,22006,Boston,MA,227,Boston,MA
-02211,22006,Boston,MA,227,Boston,MA
-02212,22006,Boston,MA,227,Boston,MA
-02215,22006,Boston,MA,227,Boston,MA
-02217,22006,Boston,MA,227,Boston,MA
-02222,22006,Boston,MA,227,Boston,MA
-02238,22009,Cambridge,MA,227,Boston,MA
-02241,22006,Boston,MA,227,Boston,MA
-02266,22006,Boston,MA,227,Boston,MA
-02269,22053,Quincy,MA,227,Boston,MA
-02283,22006,Boston,MA,227,Boston,MA
-02284,22006,Boston,MA,227,Boston,MA
-02293,22006,Boston,MA,227,Boston,MA
-02297,22006,Boston,MA,227,Boston,MA
-02298,22006,Boston,MA,227,Boston,MA
-02301,22007,Brockton,MA,227,Boston,MA
-02302,22007,Brockton,MA,227,Boston,MA
-02303,22007,Brockton,MA,227,Boston,MA
-02304,22007,Brockton,MA,227,Boston,MA
-02305,22007,Brockton,MA,227,Boston,MA
-02322,22007,Brockton,MA,227,Boston,MA
-02324,22007,Brockton,MA,227,Boston,MA
-02325,22007,Brockton,MA,227,Boston,MA
-02327,22056,South Weymouth,MA,227,Boston,MA
-02330,22052,Plymouth,MA,227,Boston,MA
-02331,22052,Plymouth,MA,227,Boston,MA
-02332,22052,Plymouth,MA,227,Boston,MA
-02333,22007,Brockton,MA,227,Boston,MA
-02334,22007,Brockton,MA,227,Boston,MA
-02337,22007,Brockton,MA,227,Boston,MA
-02338,22007,Brockton,MA,227,Boston,MA
-02339,22056,South Weymouth,MA,227,Boston,MA
-02341,22007,Brockton,MA,227,Boston,MA
-02343,22007,Brockton,MA,227,Boston,MA
-02344,22061,Taunton,MA,227,Boston,MA
-02345,22052,Plymouth,MA,227,Boston,MA
-02346,22061,Taunton,MA,227,Boston,MA
-02347,22061,Taunton,MA,227,Boston,MA
-02348,22061,Taunton,MA,227,Boston,MA
-02349,22061,Taunton,MA,227,Boston,MA
-02350,22007,Brockton,MA,227,Boston,MA
-02351,22007,Brockton,MA,227,Boston,MA
-02355,22052,Plymouth,MA,227,Boston,MA
-02356,22007,Brockton,MA,227,Boston,MA
-02357,22007,Brockton,MA,227,Boston,MA
-02358,22056,South Weymouth,MA,227,Boston,MA
-02359,22056,South Weymouth,MA,227,Boston,MA
-02360,22052,Plymouth,MA,227,Boston,MA
-02361,22052,Plymouth,MA,227,Boston,MA
-02362,22052,Plymouth,MA,227,Boston,MA
-02364,22052,Plymouth,MA,227,Boston,MA
-02366,22052,Plymouth,MA,227,Boston,MA
-02367,22052,Plymouth,MA,227,Boston,MA
-02368,22007,Brockton,MA,227,Boston,MA
-02370,22056,South Weymouth,MA,227,Boston,MA
-02375,22007,Brockton,MA,227,Boston,MA
-02379,22007,Brockton,MA,227,Boston,MA
-02381,22052,Plymouth,MA,227,Boston,MA
-02382,22007,Brockton,MA,227,Boston,MA
-02420,22072,Arlington,MA,227,Boston,MA
-02421,22072,Arlington,MA,227,Boston,MA
-02445,22006,Boston,MA,227,Boston,MA
-02446,22006,Boston,MA,227,Boston,MA
-02447,22006,Boston,MA,227,Boston,MA
-02451,22062,Waltham,MA,227,Boston,MA
-02452,22062,Waltham,MA,227,Boston,MA
-02453,22062,Waltham,MA,227,Boston,MA
-02454,22062,Waltham,MA,227,Boston,MA
-02455,22062,Waltham,MA,227,Boston,MA
-02456,22009,Cambridge,MA,227,Boston,MA
-02457,22043,Newton,MA,227,Boston,MA
-02458,22043,Newton,MA,227,Boston,MA
-02459,22006,Boston,MA,227,Boston,MA
-02460,22043,Newton,MA,227,Boston,MA
-02461,22043,Newton,MA,227,Boston,MA
-02462,22043,Newton,MA,227,Boston,MA
-02464,22043,Newton,MA,227,Boston,MA
-02465,22043,Newton,MA,227,Boston,MA
-02466,22043,Newton,MA,227,Boston,MA
-02467,22006,Boston,MA,227,Boston,MA
-02468,22043,Newton,MA,227,Boston,MA
-02471,22009,Cambridge,MA,227,Boston,MA
-02472,22009,Cambridge,MA,227,Boston,MA
-02474,22072,Arlington,MA,227,Boston,MA
-02475,22072,Arlington,MA,227,Boston,MA
-02476,22072,Arlington,MA,227,Boston,MA
-02477,22009,Cambridge,MA,227,Boston,MA
-02478,22009,Cambridge,MA,227,Boston,MA
-02479,22009,Cambridge,MA,227,Boston,MA
-02481,22043,Newton,MA,227,Boston,MA
-02482,22043,Newton,MA,227,Boston,MA
-02492,22040,Needham,MA,227,Boston,MA
-02493,22062,Waltham,MA,227,Boston,MA
-02494,22040,Needham,MA,227,Boston,MA
-02495,22043,Newton,MA,227,Boston,MA
-02532,22015,Falmouth,MA,227,Boston,MA
-02534,22015,Falmouth,MA,227,Boston,MA
-02535,22048,Oak Bluffs,MA,227,Boston,MA
-02536,22015,Falmouth,MA,227,Boston,MA
-02537,22015,Falmouth,MA,227,Boston,MA
-02538,22064,Wareham,MA,227,Boston,MA
-02539,22048,Oak Bluffs,MA,227,Boston,MA
-02540,22015,Falmouth,MA,227,Boston,MA
-02541,22015,Falmouth,MA,227,Boston,MA
-02542,22015,Falmouth,MA,227,Boston,MA
-02543,22015,Falmouth,MA,227,Boston,MA
-02552,22048,Oak Bluffs,MA,227,Boston,MA
-02553,22015,Falmouth,MA,227,Boston,MA
-02554,22038,Nantucket,MA,227,Boston,MA
-02556,22015,Falmouth,MA,227,Boston,MA
-02557,22048,Oak Bluffs,MA,227,Boston,MA
-02558,22064,Wareham,MA,227,Boston,MA
-02559,22015,Falmouth,MA,227,Boston,MA
-02561,22015,Falmouth,MA,227,Boston,MA
-02562,22015,Falmouth,MA,227,Boston,MA
-02563,22015,Falmouth,MA,227,Boston,MA
-02564,22038,Nantucket,MA,227,Boston,MA
-02568,22048,Oak Bluffs,MA,227,Boston,MA
-02571,22064,Wareham,MA,227,Boston,MA
-02574,22015,Falmouth,MA,227,Boston,MA
-02575,22048,Oak Bluffs,MA,227,Boston,MA
-02576,22064,Wareham,MA,227,Boston,MA
-02584,22038,Nantucket,MA,227,Boston,MA
-02601,22024,Hyannis,MA,227,Boston,MA
-02630,22024,Hyannis,MA,227,Boston,MA
-02631,22024,Hyannis,MA,227,Boston,MA
-02632,22024,Hyannis,MA,227,Boston,MA
-02633,22024,Hyannis,MA,227,Boston,MA
-02634,22024,Hyannis,MA,227,Boston,MA
-02635,22024,Hyannis,MA,227,Boston,MA
-02637,22024,Hyannis,MA,227,Boston,MA
-02638,22024,Hyannis,MA,227,Boston,MA
-02639,22024,Hyannis,MA,227,Boston,MA
-02641,22024,Hyannis,MA,227,Boston,MA
-02642,22024,Hyannis,MA,227,Boston,MA
-02643,22024,Hyannis,MA,227,Boston,MA
-02644,22015,Falmouth,MA,227,Boston,MA
-02645,22024,Hyannis,MA,227,Boston,MA
-02646,22024,Hyannis,MA,227,Boston,MA
-02647,22024,Hyannis,MA,227,Boston,MA
-02648,22024,Hyannis,MA,227,Boston,MA
-02649,22024,Hyannis,MA,227,Boston,MA
-02650,22024,Hyannis,MA,227,Boston,MA
-02651,22024,Hyannis,MA,227,Boston,MA
-02652,22024,Hyannis,MA,227,Boston,MA
-02653,22024,Hyannis,MA,227,Boston,MA
-02655,22024,Hyannis,MA,227,Boston,MA
-02657,22024,Hyannis,MA,227,Boston,MA
-02659,22024,Hyannis,MA,227,Boston,MA
-02660,22024,Hyannis,MA,227,Boston,MA
-02661,22024,Hyannis,MA,227,Boston,MA
-02662,22024,Hyannis,MA,227,Boston,MA
-02663,22024,Hyannis,MA,227,Boston,MA
-02664,22024,Hyannis,MA,227,Boston,MA
-02666,22024,Hyannis,MA,227,Boston,MA
-02667,22024,Hyannis,MA,227,Boston,MA
-02668,22024,Hyannis,MA,227,Boston,MA
-02669,22024,Hyannis,MA,227,Boston,MA
-02670,22024,Hyannis,MA,227,Boston,MA
-02671,22024,Hyannis,MA,227,Boston,MA
-02672,22024,Hyannis,MA,227,Boston,MA
-02673,22024,Hyannis,MA,227,Boston,MA
-02675,22024,Hyannis,MA,227,Boston,MA
-02702,22014,Fall River,MA,227,Boston,MA
-02703,22003,Attleboro,MA,364,Providence,RI
-02712,22003,Attleboro,MA,364,Providence,RI
-02713,22041,New Bedford,MA,227,Boston,MA
-02714,22041,New Bedford,MA,227,Boston,MA
-02715,22061,Taunton,MA,227,Boston,MA
-02717,22041,New Bedford,MA,227,Boston,MA
-02718,22061,Taunton,MA,227,Boston,MA
-02719,22041,New Bedford,MA,227,Boston,MA
-02720,22014,Fall River,MA,227,Boston,MA
-02721,22014,Fall River,MA,227,Boston,MA
-02722,22014,Fall River,MA,227,Boston,MA
-02723,22014,Fall River,MA,227,Boston,MA
-02724,22014,Fall River,MA,227,Boston,MA
-02725,22014,Fall River,MA,227,Boston,MA
-02726,22014,Fall River,MA,227,Boston,MA
-02738,22064,Wareham,MA,227,Boston,MA
-02739,22041,New Bedford,MA,227,Boston,MA
-02740,22041,New Bedford,MA,227,Boston,MA
-02741,22041,New Bedford,MA,227,Boston,MA
-02742,22041,New Bedford,MA,227,Boston,MA
-02743,22041,New Bedford,MA,227,Boston,MA
-02744,22041,New Bedford,MA,227,Boston,MA
-02745,22041,New Bedford,MA,227,Boston,MA
-02746,22041,New Bedford,MA,227,Boston,MA
-02747,22041,New Bedford,MA,227,Boston,MA
-02748,22041,New Bedford,MA,227,Boston,MA
-02760,22003,Attleboro,MA,364,Providence,RI
-02761,22003,Attleboro,MA,364,Providence,RI
-02762,22003,Attleboro,MA,364,Providence,RI
-02763,22003,Attleboro,MA,364,Providence,RI
-02764,22061,Taunton,MA,227,Boston,MA
-02766,22003,Attleboro,MA,364,Providence,RI
-02767,22061,Taunton,MA,227,Boston,MA
-02768,22061,Taunton,MA,227,Boston,MA
-02769,41005,Providence,RI,364,Providence,RI
-02770,22064,Wareham,MA,227,Boston,MA
-02771,41005,Providence,RI,364,Providence,RI
-02777,22014,Fall River,MA,227,Boston,MA
-02779,22061,Taunton,MA,227,Boston,MA
-02780,22061,Taunton,MA,227,Boston,MA
-02790,22014,Fall River,MA,227,Boston,MA
-02791,22014,Fall River,MA,227,Boston,MA
-02801,22014,Fall River,MA,227,Boston,MA
-02802,41005,Providence,RI,364,Providence,RI
-02804,41008,Westerly,RI,364,Providence,RI
-02806,41005,Providence,RI,364,Providence,RI
-02807,41008,Westerly,RI,364,Providence,RI
-02808,41008,Westerly,RI,364,Providence,RI
-02809,41005,Providence,RI,364,Providence,RI
-02812,41006,Wakefield,RI,364,Providence,RI
-02813,41006,Wakefield,RI,364,Providence,RI
-02814,41005,Providence,RI,364,Providence,RI
-02815,41005,Providence,RI,364,Providence,RI
-02816,41007,Warwick,RI,364,Providence,RI
-02817,41007,Warwick,RI,364,Providence,RI
-02818,41007,Warwick,RI,364,Providence,RI
-02822,41006,Wakefield,RI,364,Providence,RI
-02823,41005,Providence,RI,364,Providence,RI
-02824,41009,Woonsocket,RI,364,Providence,RI
-02825,41005,Providence,RI,364,Providence,RI
-02826,41009,Woonsocket,RI,364,Providence,RI
-02827,41007,Warwick,RI,364,Providence,RI
-02828,41005,Providence,RI,364,Providence,RI
-02829,41005,Providence,RI,364,Providence,RI
-02830,41009,Woonsocket,RI,364,Providence,RI
-02831,41007,Warwick,RI,364,Providence,RI
-02832,41008,Westerly,RI,364,Providence,RI
-02833,41008,Westerly,RI,364,Providence,RI
-02835,41002,Newport,RI,364,Providence,RI
-02836,41006,Wakefield,RI,364,Providence,RI
-02837,22014,Fall River,MA,227,Boston,MA
-02838,41009,Woonsocket,RI,364,Providence,RI
-02839,41005,Providence,RI,364,Providence,RI
-02840,41002,Newport,RI,364,Providence,RI
-02841,41002,Newport,RI,364,Providence,RI
-02842,41002,Newport,RI,364,Providence,RI
-02852,41007,Warwick,RI,364,Providence,RI
-02857,41005,Providence,RI,364,Providence,RI
-02858,41009,Woonsocket,RI,364,Providence,RI
-02859,41009,Woonsocket,RI,364,Providence,RI
-02860,41004,Pawtucket,RI,364,Providence,RI
-02861,41004,Pawtucket,RI,364,Providence,RI
-02862,41004,Pawtucket,RI,364,Providence,RI
-02863,41004,Pawtucket,RI,364,Providence,RI
-02864,41009,Woonsocket,RI,364,Providence,RI
-02865,41005,Providence,RI,364,Providence,RI
-02871,41002,Newport,RI,364,Providence,RI
-02872,41002,Newport,RI,364,Providence,RI
-02873,41008,Westerly,RI,364,Providence,RI
-02874,41006,Wakefield,RI,364,Providence,RI
-02875,41006,Wakefield,RI,364,Providence,RI
-02876,41009,Woonsocket,RI,364,Providence,RI
-02877,41006,Wakefield,RI,364,Providence,RI
-02878,22014,Fall River,MA,227,Boston,MA
-02879,41006,Wakefield,RI,364,Providence,RI
-02880,41006,Wakefield,RI,364,Providence,RI
-02881,41006,Wakefield,RI,364,Providence,RI
-02882,41006,Wakefield,RI,364,Providence,RI
-02883,41006,Wakefield,RI,364,Providence,RI
-02885,41005,Providence,RI,364,Providence,RI
-02886,41007,Warwick,RI,364,Providence,RI
-02887,41007,Warwick,RI,364,Providence,RI
-02888,41007,Warwick,RI,364,Providence,RI
-02889,41007,Warwick,RI,364,Providence,RI
-02891,41008,Westerly,RI,364,Providence,RI
-02892,41006,Wakefield,RI,364,Providence,RI
-02893,41007,Warwick,RI,364,Providence,RI
-02894,41008,Westerly,RI,364,Providence,RI
-02895,41009,Woonsocket,RI,364,Providence,RI
-02896,41009,Woonsocket,RI,364,Providence,RI
-02898,41008,Westerly,RI,364,Providence,RI
-02901,41005,Providence,RI,364,Providence,RI
-02902,41005,Providence,RI,364,Providence,RI
-02903,41005,Providence,RI,364,Providence,RI
-02904,41005,Providence,RI,364,Providence,RI
-02905,41005,Providence,RI,364,Providence,RI
-02906,41005,Providence,RI,364,Providence,RI
-02907,41005,Providence,RI,364,Providence,RI
-02908,41005,Providence,RI,364,Providence,RI
-02909,41005,Providence,RI,364,Providence,RI
-02910,41005,Providence,RI,364,Providence,RI
-02911,41005,Providence,RI,364,Providence,RI
-02912,41005,Providence,RI,364,Providence,RI
-02914,41005,Providence,RI,364,Providence,RI
-02915,41005,Providence,RI,364,Providence,RI
-02916,41005,Providence,RI,364,Providence,RI
-02917,41005,Providence,RI,364,Providence,RI
-02918,41005,Providence,RI,364,Providence,RI
-02919,41005,Providence,RI,364,Providence,RI
-02920,41005,Providence,RI,364,Providence,RI
-02921,41005,Providence,RI,364,Providence,RI
-02940,41005,Providence,RI,364,Providence,RI
-03031,30016,Nashua,NH,282,Manchester,NH
-03032,30015,Manchester,NH,282,Manchester,NH
-03033,30016,Nashua,NH,282,Manchester,NH
-03034,30015,Manchester,NH,282,Manchester,NH
-03036,30015,Manchester,NH,282,Manchester,NH
-03037,30015,Manchester,NH,282,Manchester,NH
-03038,30005,Derry,NH,282,Manchester,NH
-03040,30015,Manchester,NH,282,Manchester,NH
-03041,30005,Derry,NH,282,Manchester,NH
-03042,30007,Exeter,NH,282,Manchester,NH
-03043,30020,Peterborough,NH,282,Manchester,NH
-03044,30007,Exeter,NH,282,Manchester,NH
-03045,30015,Manchester,NH,282,Manchester,NH
-03046,30015,Manchester,NH,282,Manchester,NH
-03047,30020,Peterborough,NH,282,Manchester,NH
-03048,30020,Peterborough,NH,282,Manchester,NH
-03049,30016,Nashua,NH,282,Manchester,NH
-03051,30016,Nashua,NH,282,Manchester,NH
-03052,30016,Nashua,NH,282,Manchester,NH
-03053,30015,Manchester,NH,282,Manchester,NH
-03054,30016,Nashua,NH,282,Manchester,NH
-03055,30016,Nashua,NH,282,Manchester,NH
-03057,30016,Nashua,NH,282,Manchester,NH
-03060,30016,Nashua,NH,282,Manchester,NH
-03061,30016,Nashua,NH,282,Manchester,NH
-03062,30016,Nashua,NH,282,Manchester,NH
-03063,30016,Nashua,NH,282,Manchester,NH
-03064,30016,Nashua,NH,282,Manchester,NH
-03070,30015,Manchester,NH,282,Manchester,NH
-03071,30020,Peterborough,NH,282,Manchester,NH
-03073,22034,Methuen,MA,227,Boston,MA
-03076,22027,Lowell,MA,227,Boston,MA
-03077,30007,Exeter,NH,282,Manchester,NH
-03079,22034,Methuen,MA,227,Boston,MA
-03082,30016,Nashua,NH,282,Manchester,NH
-03084,30020,Peterborough,NH,282,Manchester,NH
-03086,30016,Nashua,NH,282,Manchester,NH
-03087,30005,Derry,NH,282,Manchester,NH
-03101,30015,Manchester,NH,282,Manchester,NH
-03102,30015,Manchester,NH,282,Manchester,NH
-03103,30015,Manchester,NH,282,Manchester,NH
-03104,30015,Manchester,NH,282,Manchester,NH
-03105,30015,Manchester,NH,282,Manchester,NH
-03106,30015,Manchester,NH,282,Manchester,NH
-03108,30015,Manchester,NH,282,Manchester,NH
-03109,30015,Manchester,NH,282,Manchester,NH
-03110,30015,Manchester,NH,282,Manchester,NH
-03111,30015,Manchester,NH,282,Manchester,NH
-03215,30021,Plymouth,NH,282,Manchester,NH
-03216,30017,New London,NH,281,Lebanon,NH
-03217,30021,Plymouth,NH,282,Manchester,NH
-03218,30004,Concord,NH,282,Manchester,NH
-03220,30011,Laconia,NH,282,Manchester,NH
-03221,30017,New London,NH,281,Lebanon,NH
-03222,30008,Franklin,NH,282,Manchester,NH
-03223,30021,Plymouth,NH,282,Manchester,NH
-03224,30004,Concord,NH,282,Manchester,NH
-03225,30004,Concord,NH,282,Manchester,NH
-03226,30011,Laconia,NH,282,Manchester,NH
-03227,30011,Laconia,NH,282,Manchester,NH
-03229,30004,Concord,NH,282,Manchester,NH
-03230,30017,New London,NH,281,Lebanon,NH
-03231,30008,Franklin,NH,282,Manchester,NH
-03233,30017,New London,NH,281,Lebanon,NH
-03234,30004,Concord,NH,282,Manchester,NH
-03235,30008,Franklin,NH,282,Manchester,NH
-03237,30011,Laconia,NH,282,Manchester,NH
-03238,30025,Woodsville,NH,281,Lebanon,NH
-03240,30013,Lebanon,NH,281,Lebanon,NH
-03241,30021,Plymouth,NH,282,Manchester,NH
-03242,30004,Concord,NH,282,Manchester,NH
-03243,30008,Franklin,NH,282,Manchester,NH
-03244,30004,Concord,NH,282,Manchester,NH
-03245,30021,Plymouth,NH,282,Manchester,NH
-03246,30011,Laconia,NH,282,Manchester,NH
-03247,30011,Laconia,NH,282,Manchester,NH
-03249,30011,Laconia,NH,282,Manchester,NH
-03251,30014,Littleton,NH,281,Lebanon,NH
-03252,30008,Franklin,NH,282,Manchester,NH
-03253,30011,Laconia,NH,282,Manchester,NH
-03254,30011,Laconia,NH,282,Manchester,NH
-03255,30017,New London,NH,281,Lebanon,NH
-03256,30011,Laconia,NH,282,Manchester,NH
-03257,30017,New London,NH,281,Lebanon,NH
-03258,30004,Concord,NH,282,Manchester,NH
-03259,30011,Laconia,NH,282,Manchester,NH
-03260,30004,Concord,NH,282,Manchester,NH
-03261,30004,Concord,NH,282,Manchester,NH
-03262,30014,Littleton,NH,281,Lebanon,NH
-03263,30004,Concord,NH,282,Manchester,NH
-03264,30021,Plymouth,NH,282,Manchester,NH
-03266,30021,Plymouth,NH,282,Manchester,NH
-03268,30004,Concord,NH,282,Manchester,NH
-03269,30008,Franklin,NH,282,Manchester,NH
-03272,30017,New London,NH,281,Lebanon,NH
-03273,30004,Concord,NH,282,Manchester,NH
-03275,30004,Concord,NH,282,Manchester,NH
-03276,30008,Franklin,NH,282,Manchester,NH
-03278,30004,Concord,NH,282,Manchester,NH
-03279,30025,Woodsville,NH,281,Lebanon,NH
-03280,30004,Concord,NH,282,Manchester,NH
-03281,30004,Concord,NH,282,Manchester,NH
-03282,30021,Plymouth,NH,282,Manchester,NH
-03284,30017,New London,NH,281,Lebanon,NH
-03285,30021,Plymouth,NH,282,Manchester,NH
-03287,30017,New London,NH,281,Lebanon,NH
-03289,30011,Laconia,NH,282,Manchester,NH
-03290,30006,Dover,NH,222,Portland,ME
-03291,30006,Dover,NH,222,Portland,ME
-03293,30014,Littleton,NH,281,Lebanon,NH
-03298,30011,Laconia,NH,282,Manchester,NH
-03299,30011,Laconia,NH,282,Manchester,NH
-03301,30004,Concord,NH,282,Manchester,NH
-03302,30004,Concord,NH,282,Manchester,NH
-03303,30004,Concord,NH,282,Manchester,NH
-03304,30004,Concord,NH,282,Manchester,NH
-03305,30004,Concord,NH,282,Manchester,NH
-03307,30004,Concord,NH,282,Manchester,NH
-03431,30010,Keene,NH,281,Lebanon,NH
-03435,30010,Keene,NH,281,Lebanon,NH
-03440,30020,Peterborough,NH,282,Manchester,NH
-03441,30010,Keene,NH,281,Lebanon,NH
-03442,30020,Peterborough,NH,282,Manchester,NH
-03443,30010,Keene,NH,281,Lebanon,NH
-03444,30010,Keene,NH,281,Lebanon,NH
-03445,30010,Keene,NH,281,Lebanon,NH
-03446,30010,Keene,NH,281,Lebanon,NH
-03447,30010,Keene,NH,281,Lebanon,NH
-03448,30010,Keene,NH,281,Lebanon,NH
-03449,30020,Peterborough,NH,282,Manchester,NH
-03450,30010,Keene,NH,281,Lebanon,NH
-03451,47004,Brattleboro,VT,281,Lebanon,NH
-03452,30020,Peterborough,NH,282,Manchester,NH
-03455,30010,Keene,NH,281,Lebanon,NH
-03456,30010,Keene,NH,281,Lebanon,NH
-03457,30010,Keene,NH,281,Lebanon,NH
-03458,30020,Peterborough,NH,282,Manchester,NH
-03461,30020,Peterborough,NH,282,Manchester,NH
-03462,30010,Keene,NH,281,Lebanon,NH
-03464,30010,Keene,NH,281,Lebanon,NH
-03465,30010,Keene,NH,281,Lebanon,NH
-03466,47004,Brattleboro,VT,281,Lebanon,NH
-03467,30010,Keene,NH,281,Lebanon,NH
-03468,30020,Peterborough,NH,282,Manchester,NH
-03469,30010,Keene,NH,281,Lebanon,NH
-03470,30010,Keene,NH,281,Lebanon,NH
-03561,30014,Littleton,NH,281,Lebanon,NH
-03570,30001,Berlin,NH,281,Lebanon,NH
-03574,30014,Littleton,NH,281,Lebanon,NH
-03575,30012,Lancaster,NH,281,Lebanon,NH
-03576,30003,Colebrook,NH,281,Lebanon,NH
-03579,30001,Berlin,NH,281,Lebanon,NH
-03580,30014,Littleton,NH,281,Lebanon,NH
-03581,30001,Berlin,NH,281,Lebanon,NH
-03582,30012,Lancaster,NH,281,Lebanon,NH
-03583,30012,Lancaster,NH,281,Lebanon,NH
-03584,30012,Lancaster,NH,281,Lebanon,NH
-03585,30014,Littleton,NH,281,Lebanon,NH
-03586,30014,Littleton,NH,281,Lebanon,NH
-03588,30001,Berlin,NH,281,Lebanon,NH
-03589,30019,North Conway,NH,222,Portland,ME
-03590,30012,Lancaster,NH,281,Lebanon,NH
-03592,30003,Colebrook,NH,281,Lebanon,NH
-03593,30001,Berlin,NH,281,Lebanon,NH
-03595,30012,Lancaster,NH,281,Lebanon,NH
-03597,30003,Colebrook,NH,281,Lebanon,NH
-03598,30012,Lancaster,NH,281,Lebanon,NH
-03601,30017,New London,NH,281,Lebanon,NH
-03602,30010,Keene,NH,281,Lebanon,NH
-03603,30002,Claremont,NH,281,Lebanon,NH
-03604,30010,Keene,NH,281,Lebanon,NH
-03605,30017,New London,NH,281,Lebanon,NH
-03607,30010,Keene,NH,281,Lebanon,NH
-03608,30010,Keene,NH,281,Lebanon,NH
-03609,47011,Springfield,VT,281,Lebanon,NH
-03740,30025,Woodsville,NH,281,Lebanon,NH
-03741,30013,Lebanon,NH,281,Lebanon,NH
-03743,30002,Claremont,NH,281,Lebanon,NH
-03745,30002,Claremont,NH,281,Lebanon,NH
-03746,30002,Claremont,NH,281,Lebanon,NH
-03748,30013,Lebanon,NH,281,Lebanon,NH
-03749,30013,Lebanon,NH,281,Lebanon,NH
-03750,30013,Lebanon,NH,281,Lebanon,NH
-03751,30017,New London,NH,281,Lebanon,NH
-03752,30017,New London,NH,281,Lebanon,NH
-03753,30013,Lebanon,NH,281,Lebanon,NH
-03754,30017,New London,NH,281,Lebanon,NH
-03755,30013,Lebanon,NH,281,Lebanon,NH
-03756,30013,Lebanon,NH,281,Lebanon,NH
-03765,30025,Woodsville,NH,281,Lebanon,NH
-03766,30013,Lebanon,NH,281,Lebanon,NH
-03768,30013,Lebanon,NH,281,Lebanon,NH
-03769,30013,Lebanon,NH,281,Lebanon,NH
-03770,30013,Lebanon,NH,281,Lebanon,NH
-03771,30025,Woodsville,NH,281,Lebanon,NH
-03773,30017,New London,NH,281,Lebanon,NH
-03774,30025,Woodsville,NH,281,Lebanon,NH
-03777,30013,Lebanon,NH,281,Lebanon,NH
-03779,30025,Woodsville,NH,281,Lebanon,NH
-03780,30025,Woodsville,NH,281,Lebanon,NH
-03781,30013,Lebanon,NH,281,Lebanon,NH
-03782,30017,New London,NH,281,Lebanon,NH
-03784,30013,Lebanon,NH,281,Lebanon,NH
-03785,30025,Woodsville,NH,281,Lebanon,NH
-03801,30022,Portsmouth,NH,282,Manchester,NH
-03802,30022,Portsmouth,NH,282,Manchester,NH
-03803,30022,Portsmouth,NH,282,Manchester,NH
-03804,20033,York,ME,222,Portland,ME
-03809,30024,Wolfeboro,NH,282,Manchester,NH
-03810,30024,Wolfeboro,NH,282,Manchester,NH
-03811,22022,Haverhill,MA,227,Boston,MA
-03812,30019,North Conway,NH,222,Portland,ME
-03813,30019,North Conway,NH,222,Portland,ME
-03814,30024,Wolfeboro,NH,282,Manchester,NH
-03815,30023,Rochester,NH,222,Portland,ME
-03816,30024,Wolfeboro,NH,282,Manchester,NH
-03817,30019,North Conway,NH,222,Portland,ME
-03818,30019,North Conway,NH,222,Portland,ME
-03819,30007,Exeter,NH,282,Manchester,NH
-03820,30006,Dover,NH,222,Portland,ME
-03821,30006,Dover,NH,222,Portland,ME
-03822,30006,Dover,NH,222,Portland,ME
-03823,30006,Dover,NH,222,Portland,ME
-03824,30006,Dover,NH,222,Portland,ME
-03825,30006,Dover,NH,222,Portland,ME
-03826,22022,Haverhill,MA,227,Boston,MA
-03827,30007,Exeter,NH,282,Manchester,NH
-03830,30024,Wolfeboro,NH,282,Manchester,NH
-03832,30019,North Conway,NH,222,Portland,ME
-03833,30007,Exeter,NH,282,Manchester,NH
-03835,30023,Rochester,NH,222,Portland,ME
-03836,30024,Wolfeboro,NH,282,Manchester,NH
-03837,30011,Laconia,NH,282,Manchester,NH
-03838,30019,North Conway,NH,222,Portland,ME
-03839,30023,Rochester,NH,222,Portland,ME
-03840,30022,Portsmouth,NH,282,Manchester,NH
-03841,30005,Derry,NH,282,Manchester,NH
-03842,30007,Exeter,NH,282,Manchester,NH
-03843,30007,Exeter,NH,282,Manchester,NH
-03844,30007,Exeter,NH,282,Manchester,NH
-03845,30019,North Conway,NH,222,Portland,ME
-03846,30019,North Conway,NH,222,Portland,ME
-03847,30019,North Conway,NH,222,Portland,ME
-03848,30007,Exeter,NH,282,Manchester,NH
-03849,30019,North Conway,NH,222,Portland,ME
-03850,30024,Wolfeboro,NH,282,Manchester,NH
-03851,30023,Rochester,NH,222,Portland,ME
-03852,30023,Rochester,NH,222,Portland,ME
-03853,30024,Wolfeboro,NH,282,Manchester,NH
-03854,30022,Portsmouth,NH,282,Manchester,NH
-03855,30023,Rochester,NH,222,Portland,ME
-03856,30007,Exeter,NH,282,Manchester,NH
-03857,30007,Exeter,NH,282,Manchester,NH
-03858,30007,Exeter,NH,282,Manchester,NH
-03859,30007,Exeter,NH,282,Manchester,NH
-03860,30019,North Conway,NH,222,Portland,ME
-03861,30006,Dover,NH,222,Portland,ME
-03862,30007,Exeter,NH,282,Manchester,NH
-03864,30024,Wolfeboro,NH,282,Manchester,NH
-03865,22022,Haverhill,MA,227,Boston,MA
-03866,30023,Rochester,NH,222,Portland,ME
-03867,30023,Rochester,NH,222,Portland,ME
-03868,30023,Rochester,NH,222,Portland,ME
-03869,30006,Dover,NH,222,Portland,ME
-03870,30022,Portsmouth,NH,282,Manchester,NH
-03871,30022,Portsmouth,NH,282,Manchester,NH
-03872,30024,Wolfeboro,NH,282,Manchester,NH
-03873,30005,Derry,NH,282,Manchester,NH
-03874,22042,Newburyport,MA,227,Boston,MA
-03875,30019,North Conway,NH,222,Portland,ME
-03878,30006,Dover,NH,222,Portland,ME
-03882,30024,Wolfeboro,NH,282,Manchester,NH
-03883,30011,Laconia,NH,282,Manchester,NH
-03884,30023,Rochester,NH,222,Portland,ME
-03885,30007,Exeter,NH,282,Manchester,NH
-03886,30011,Laconia,NH,282,Manchester,NH
-03887,30023,Rochester,NH,222,Portland,ME
-03890,30024,Wolfeboro,NH,282,Manchester,NH
-03894,30024,Wolfeboro,NH,282,Manchester,NH
-03896,30024,Wolfeboro,NH,282,Manchester,NH
-03897,30011,Laconia,NH,282,Manchester,NH
-03901,30006,Dover,NH,222,Portland,ME
-03902,20033,York,ME,222,Portland,ME
-03903,20033,York,ME,222,Portland,ME
-03904,20033,York,ME,222,Portland,ME
-03905,20033,York,ME,222,Portland,ME
-03906,20029,Sanford,ME,222,Portland,ME
-03907,20033,York,ME,222,Portland,ME
-03908,30006,Dover,NH,222,Portland,ME
-03909,20033,York,ME,222,Portland,ME
-03910,20033,York,ME,222,Portland,ME
-03911,20033,York,ME,222,Portland,ME
-04001,20029,Sanford,ME,222,Portland,ME
-04002,20029,Sanford,ME,222,Portland,ME
-04003,20010,Brunswick,ME,222,Portland,ME
-04004,20025,Portland,ME,222,Portland,ME
-04005,20006,Biddeford,ME,222,Portland,ME
-04006,20006,Biddeford,ME,222,Portland,ME
-04007,20006,Biddeford,ME,222,Portland,ME
-04008,20010,Brunswick,ME,222,Portland,ME
-04009,20009,Bridgton,ME,222,Portland,ME
-04010,20009,Bridgton,ME,222,Portland,ME
-04011,20010,Brunswick,ME,222,Portland,ME
-04013,20025,Portland,ME,222,Portland,ME
-04014,20006,Biddeford,ME,222,Portland,ME
-04015,20025,Portland,ME,222,Portland,ME
-04016,20009,Bridgton,ME,222,Portland,ME
-04017,20025,Portland,ME,222,Portland,ME
-04019,20025,Portland,ME,222,Portland,ME
-04020,20025,Portland,ME,222,Portland,ME
-04021,20025,Portland,ME,222,Portland,ME
-04022,20009,Bridgton,ME,222,Portland,ME
-04024,20025,Portland,ME,222,Portland,ME
-04027,20029,Sanford,ME,222,Portland,ME
-04028,20025,Portland,ME,222,Portland,ME
-04029,20025,Portland,ME,222,Portland,ME
-04030,20029,Sanford,ME,222,Portland,ME
-04032,20010,Brunswick,ME,222,Portland,ME
-04033,20010,Brunswick,ME,222,Portland,ME
-04034,20010,Brunswick,ME,222,Portland,ME
-04037,20009,Bridgton,ME,222,Portland,ME
-04038,20025,Portland,ME,222,Portland,ME
-04039,20025,Portland,ME,222,Portland,ME
-04040,20009,Bridgton,ME,222,Portland,ME
-04041,20025,Portland,ME,222,Portland,ME
-04042,20025,Portland,ME,222,Portland,ME
-04043,20006,Biddeford,ME,222,Portland,ME
-04046,20006,Biddeford,ME,222,Portland,ME
-04047,20025,Portland,ME,222,Portland,ME
-04048,20025,Portland,ME,222,Portland,ME
-04049,20025,Portland,ME,222,Portland,ME
-04050,20025,Portland,ME,222,Portland,ME
-04051,20023,Norway,ME,222,Portland,ME
-04054,20033,York,ME,222,Portland,ME
-04055,20009,Bridgton,ME,222,Portland,ME
-04056,20029,Sanford,ME,222,Portland,ME
-04057,20009,Bridgton,ME,222,Portland,ME
-04061,20029,Sanford,ME,222,Portland,ME
-04062,20025,Portland,ME,222,Portland,ME
-04063,20006,Biddeford,ME,222,Portland,ME
-04064,20006,Biddeford,ME,222,Portland,ME
-04066,20010,Brunswick,ME,222,Portland,ME
-04068,20025,Portland,ME,222,Portland,ME
-04069,20025,Portland,ME,222,Portland,ME
-04070,20025,Portland,ME,222,Portland,ME
-04071,20025,Portland,ME,222,Portland,ME
-04072,20006,Biddeford,ME,222,Portland,ME
-04073,20029,Sanford,ME,222,Portland,ME
-04074,20025,Portland,ME,222,Portland,ME
-04076,20029,Sanford,ME,222,Portland,ME
-04077,20025,Portland,ME,222,Portland,ME
-04078,20010,Brunswick,ME,222,Portland,ME
-04079,20010,Brunswick,ME,222,Portland,ME
-04082,20025,Portland,ME,222,Portland,ME
-04083,20029,Sanford,ME,222,Portland,ME
-04084,20025,Portland,ME,222,Portland,ME
-04085,20025,Portland,ME,222,Portland,ME
-04086,20010,Brunswick,ME,222,Portland,ME
-04087,20029,Sanford,ME,222,Portland,ME
-04088,20023,Norway,ME,222,Portland,ME
-04090,20033,York,ME,222,Portland,ME
-04091,20025,Portland,ME,222,Portland,ME
-04092,20025,Portland,ME,222,Portland,ME
-04093,20025,Portland,ME,222,Portland,ME
-04094,20006,Biddeford,ME,222,Portland,ME
-04095,20029,Sanford,ME,222,Portland,ME
-04096,20025,Portland,ME,222,Portland,ME
-04097,20025,Portland,ME,222,Portland,ME
-04098,20025,Portland,ME,222,Portland,ME
-04101,20025,Portland,ME,222,Portland,ME
-04102,20025,Portland,ME,222,Portland,ME
-04103,20025,Portland,ME,222,Portland,ME
-04104,20025,Portland,ME,222,Portland,ME
-04105,20025,Portland,ME,222,Portland,ME
-04106,20025,Portland,ME,222,Portland,ME
-04107,20025,Portland,ME,222,Portland,ME
-04108,20025,Portland,ME,222,Portland,ME
-04109,20025,Portland,ME,222,Portland,ME
-04110,20025,Portland,ME,222,Portland,ME
-04112,20025,Portland,ME,222,Portland,ME
-04116,20025,Portland,ME,222,Portland,ME
-04122,20025,Portland,ME,222,Portland,ME
-04123,20025,Portland,ME,222,Portland,ME
-04124,20025,Portland,ME,222,Portland,ME
-04210,20019,Lewiston,ME,222,Portland,ME
-04211,20019,Lewiston,ME,222,Portland,ME
-04212,20019,Lewiston,ME,222,Portland,ME
-04216,20028,Rumford,ME,222,Portland,ME
-04217,20023,Norway,ME,222,Portland,ME
-04219,20023,Norway,ME,222,Portland,ME
-04220,20019,Lewiston,ME,222,Portland,ME
-04221,20019,Lewiston,ME,222,Portland,ME
-04222,20019,Lewiston,ME,222,Portland,ME
-04223,20019,Lewiston,ME,222,Portland,ME
-04224,20028,Rumford,ME,222,Portland,ME
-04225,20016,Farmington,ME,222,Portland,ME
-04226,20028,Rumford,ME,222,Portland,ME
-04227,20016,Farmington,ME,222,Portland,ME
-04228,20019,Lewiston,ME,222,Portland,ME
-04230,20019,Lewiston,ME,222,Portland,ME
-04231,20023,Norway,ME,222,Portland,ME
-04234,20016,Farmington,ME,222,Portland,ME
-04236,20019,Lewiston,ME,222,Portland,ME
-04237,20028,Rumford,ME,222,Portland,ME
-04238,20019,Lewiston,ME,222,Portland,ME
-04239,20016,Farmington,ME,222,Portland,ME
-04240,20019,Lewiston,ME,222,Portland,ME
-04241,20019,Lewiston,ME,222,Portland,ME
-04243,20019,Lewiston,ME,222,Portland,ME
-04250,20019,Lewiston,ME,222,Portland,ME
-04252,20019,Lewiston,ME,222,Portland,ME
-04253,20016,Farmington,ME,222,Portland,ME
-04254,20016,Farmington,ME,222,Portland,ME
-04255,20023,Norway,ME,222,Portland,ME
-04256,20019,Lewiston,ME,222,Portland,ME
-04257,20028,Rumford,ME,222,Portland,ME
-04258,20019,Lewiston,ME,222,Portland,ME
-04259,20019,Lewiston,ME,222,Portland,ME
-04260,20019,Lewiston,ME,222,Portland,ME
-04261,20023,Norway,ME,222,Portland,ME
-04262,20016,Farmington,ME,222,Portland,ME
-04263,20019,Lewiston,ME,222,Portland,ME
-04265,20019,Lewiston,ME,222,Portland,ME
-04266,20019,Lewiston,ME,222,Portland,ME
-04267,20023,Norway,ME,222,Portland,ME
-04268,20023,Norway,ME,222,Portland,ME
-04270,20023,Norway,ME,222,Portland,ME
-04271,20023,Norway,ME,222,Portland,ME
-04274,20019,Lewiston,ME,222,Portland,ME
-04275,20028,Rumford,ME,222,Portland,ME
-04276,20028,Rumford,ME,222,Portland,ME
-04280,20019,Lewiston,ME,222,Portland,ME
-04281,20023,Norway,ME,222,Portland,ME
-04282,20019,Lewiston,ME,222,Portland,ME
-04284,20001,Augusta,ME,222,Portland,ME
-04285,20016,Farmington,ME,222,Portland,ME
-04286,20023,Norway,ME,222,Portland,ME
-04287,20010,Brunswick,ME,222,Portland,ME
-04288,20019,Lewiston,ME,222,Portland,ME
-04289,20023,Norway,ME,222,Portland,ME
-04290,20028,Rumford,ME,222,Portland,ME
-04291,20019,Lewiston,ME,222,Portland,ME
-04292,20023,Norway,ME,222,Portland,ME
-04294,20016,Farmington,ME,222,Portland,ME
-04330,20001,Augusta,ME,222,Portland,ME
-04332,20001,Augusta,ME,222,Portland,ME
-04333,20001,Augusta,ME,222,Portland,ME
-04336,20001,Augusta,ME,222,Portland,ME
-04338,20001,Augusta,ME,222,Portland,ME
-04341,20001,Augusta,ME,222,Portland,ME
-04342,20001,Augusta,ME,222,Portland,ME
-04343,20001,Augusta,ME,222,Portland,ME
-04344,20001,Augusta,ME,222,Portland,ME
-04345,20001,Augusta,ME,222,Portland,ME
-04346,20001,Augusta,ME,222,Portland,ME
-04347,20001,Augusta,ME,222,Portland,ME
-04348,20001,Augusta,ME,222,Portland,ME
-04349,20016,Farmington,ME,222,Portland,ME
-04350,20019,Lewiston,ME,222,Portland,ME
-04351,20001,Augusta,ME,222,Portland,ME
-04352,20016,Farmington,ME,222,Portland,ME
-04353,20001,Augusta,ME,222,Portland,ME
-04354,20031,Waterville,ME,222,Portland,ME
-04355,20001,Augusta,ME,222,Portland,ME
-04357,20001,Augusta,ME,222,Portland,ME
-04358,20031,Waterville,ME,222,Portland,ME
-04359,20001,Augusta,ME,222,Portland,ME
-04360,20016,Farmington,ME,222,Portland,ME
-04363,20001,Augusta,ME,222,Portland,ME
-04364,20001,Augusta,ME,222,Portland,ME
-04401,20002,Bangor,ME,221,Bangor,ME
-04402,20002,Bangor,ME,221,Bangor,ME
-04406,20035,Greenville,ME,221,Bangor,ME
-04408,20002,Bangor,ME,221,Bangor,ME
-04410,20002,Bangor,ME,221,Bangor,ME
-04411,20002,Bangor,ME,221,Bangor,ME
-04412,20002,Bangor,ME,221,Bangor,ME
-04413,20018,Houlton,ME,221,Bangor,ME
-04414,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04415,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04416,20002,Bangor,ME,221,Bangor,ME
-04417,20020,Lincoln,ME,221,Bangor,ME
-04418,20002,Bangor,ME,221,Bangor,ME
-04419,20002,Bangor,ME,221,Bangor,ME
-04420,20002,Bangor,ME,221,Bangor,ME
-04421,20002,Bangor,ME,221,Bangor,ME
-04422,20002,Bangor,ME,221,Bangor,ME
-04424,20018,Houlton,ME,221,Bangor,ME
-04426,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04427,20002,Bangor,ME,221,Bangor,ME
-04428,20002,Bangor,ME,221,Bangor,ME
-04429,20002,Bangor,ME,221,Bangor,ME
-04430,20022,Millinocket,ME,221,Bangor,ME
-04431,20002,Bangor,ME,221,Bangor,ME
-04434,20024,Pittsfield,ME,221,Bangor,ME
-04435,20002,Bangor,ME,221,Bangor,ME
-04438,20002,Bangor,ME,221,Bangor,ME
-04441,20035,Greenville,ME,221,Bangor,ME
-04442,20035,Greenville,ME,221,Bangor,ME
-04443,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04444,20002,Bangor,ME,221,Bangor,ME
-04448,20020,Lincoln,ME,221,Bangor,ME
-04449,20002,Bangor,ME,221,Bangor,ME
-04450,20002,Bangor,ME,221,Bangor,ME
-04451,20020,Lincoln,ME,221,Bangor,ME
-04453,20002,Bangor,ME,221,Bangor,ME
-04454,20011,Calais,ME,221,Bangor,ME
-04455,20020,Lincoln,ME,221,Bangor,ME
-04456,20002,Bangor,ME,221,Bangor,ME
-04457,20020,Lincoln,ME,221,Bangor,ME
-04459,20020,Lincoln,ME,221,Bangor,ME
-04460,20022,Millinocket,ME,221,Bangor,ME
-04461,20002,Bangor,ME,221,Bangor,ME
-04462,20022,Millinocket,ME,221,Bangor,ME
-04463,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04464,20035,Greenville,ME,221,Bangor,ME
-04468,20002,Bangor,ME,221,Bangor,ME
-04469,20002,Bangor,ME,221,Bangor,ME
-04471,20018,Houlton,ME,221,Bangor,ME
-04472,20002,Bangor,ME,221,Bangor,ME
-04473,20002,Bangor,ME,221,Bangor,ME
-04474,20002,Bangor,ME,221,Bangor,ME
-04475,20020,Lincoln,ME,221,Bangor,ME
-04476,20002,Bangor,ME,221,Bangor,ME
-04478,20035,Greenville,ME,221,Bangor,ME
-04479,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04481,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04485,20035,Greenville,ME,221,Bangor,ME
-04487,20020,Lincoln,ME,221,Bangor,ME
-04488,20002,Bangor,ME,221,Bangor,ME
-04489,20002,Bangor,ME,221,Bangor,ME
-04490,20011,Calais,ME,221,Bangor,ME
-04491,20011,Calais,ME,221,Bangor,ME
-04492,20011,Calais,ME,221,Bangor,ME
-04493,20020,Lincoln,ME,221,Bangor,ME
-04495,20020,Lincoln,ME,221,Bangor,ME
-04496,20002,Bangor,ME,221,Bangor,ME
-04497,20018,Houlton,ME,221,Bangor,ME
-04530,20010,Brunswick,ME,222,Portland,ME
-04535,20010,Brunswick,ME,222,Portland,ME
-04537,20008,Boothbay Harbor,ME,222,Portland,ME
-04538,20008,Boothbay Harbor,ME,222,Portland,ME
-04539,20013,Damariscotta,ME,222,Portland,ME
-04541,20013,Damariscotta,ME,222,Portland,ME
-04543,20013,Damariscotta,ME,222,Portland,ME
-04544,20008,Boothbay Harbor,ME,222,Portland,ME
-04547,20027,Rockland,ME,222,Portland,ME
-04548,20010,Brunswick,ME,222,Portland,ME
-04549,20008,Boothbay Harbor,ME,222,Portland,ME
-04551,20013,Damariscotta,ME,222,Portland,ME
-04553,20013,Damariscotta,ME,222,Portland,ME
-04554,20013,Damariscotta,ME,222,Portland,ME
-04555,20013,Damariscotta,ME,222,Portland,ME
-04556,20013,Damariscotta,ME,222,Portland,ME
-04558,20013,Damariscotta,ME,222,Portland,ME
-04562,20010,Brunswick,ME,222,Portland,ME
-04563,20027,Rockland,ME,222,Portland,ME
-04564,20013,Damariscotta,ME,222,Portland,ME
-04565,20010,Brunswick,ME,222,Portland,ME
-04568,20013,Damariscotta,ME,222,Portland,ME
-04570,20008,Boothbay Harbor,ME,222,Portland,ME
-04571,20008,Boothbay Harbor,ME,222,Portland,ME
-04572,20027,Rockland,ME,222,Portland,ME
-04573,20013,Damariscotta,ME,222,Portland,ME
-04574,20027,Rockland,ME,222,Portland,ME
-04575,20008,Boothbay Harbor,ME,222,Portland,ME
-04576,20008,Boothbay Harbor,ME,222,Portland,ME
-04578,20010,Brunswick,ME,222,Portland,ME
-04579,20010,Brunswick,ME,222,Portland,ME
-04605,20015,Ellsworth,ME,221,Bangor,ME
-04606,20021,Machias,ME,221,Bangor,ME
-04607,20015,Ellsworth,ME,221,Bangor,ME
-04609,20003,Bar Harbor,ME,221,Bangor,ME
-04611,20021,Machias,ME,221,Bangor,ME
-04612,20003,Bar Harbor,ME,221,Bangor,ME
-04613,20015,Ellsworth,ME,221,Bangor,ME
-04614,20007,Blue Hill,ME,221,Bangor,ME
-04616,20007,Blue Hill,ME,221,Bangor,ME
-04617,20007,Blue Hill,ME,221,Bangor,ME
-04619,20011,Calais,ME,221,Bangor,ME
-04622,20015,Ellsworth,ME,221,Bangor,ME
-04623,20021,Machias,ME,221,Bangor,ME
-04624,20015,Ellsworth,ME,221,Bangor,ME
-04625,20003,Bar Harbor,ME,221,Bangor,ME
-04626,20021,Machias,ME,221,Bangor,ME
-04627,20007,Blue Hill,ME,221,Bangor,ME
-04628,20021,Machias,ME,221,Bangor,ME
-04629,20007,Blue Hill,ME,221,Bangor,ME
-04630,20021,Machias,ME,221,Bangor,ME
-04631,20011,Calais,ME,221,Bangor,ME
-04634,20015,Ellsworth,ME,221,Bangor,ME
-04635,20003,Bar Harbor,ME,221,Bangor,ME
-04637,20011,Calais,ME,221,Bangor,ME
-04640,20015,Ellsworth,ME,221,Bangor,ME
-04642,20007,Blue Hill,ME,221,Bangor,ME
-04643,20021,Machias,ME,221,Bangor,ME
-04644,20003,Bar Harbor,ME,221,Bangor,ME
-04645,20007,Blue Hill,ME,221,Bangor,ME
-04646,20003,Bar Harbor,ME,221,Bangor,ME
-04648,20021,Machias,ME,221,Bangor,ME
-04649,20021,Machias,ME,221,Bangor,ME
-04650,20007,Blue Hill,ME,221,Bangor,ME
-04652,20021,Machias,ME,221,Bangor,ME
-04653,20003,Bar Harbor,ME,221,Bangor,ME
-04654,20021,Machias,ME,221,Bangor,ME
-04655,20021,Machias,ME,221,Bangor,ME
-04657,20011,Calais,ME,221,Bangor,ME
-04658,20015,Ellsworth,ME,221,Bangor,ME
-04660,20003,Bar Harbor,ME,221,Bangor,ME
-04662,20003,Bar Harbor,ME,221,Bangor,ME
-04664,20015,Ellsworth,ME,221,Bangor,ME
-04666,20011,Calais,ME,221,Bangor,ME
-04667,20011,Calais,ME,221,Bangor,ME
-04668,20011,Calais,ME,221,Bangor,ME
-04669,20015,Ellsworth,ME,221,Bangor,ME
-04671,20011,Calais,ME,221,Bangor,ME
-04672,20003,Bar Harbor,ME,221,Bangor,ME
-04673,20007,Blue Hill,ME,221,Bangor,ME
-04674,20003,Bar Harbor,ME,221,Bangor,ME
-04675,20003,Bar Harbor,ME,221,Bangor,ME
-04676,20007,Blue Hill,ME,221,Bangor,ME
-04677,20015,Ellsworth,ME,221,Bangor,ME
-04679,20003,Bar Harbor,ME,221,Bangor,ME
-04680,20015,Ellsworth,ME,221,Bangor,ME
-04681,20007,Blue Hill,ME,221,Bangor,ME
-04683,20007,Blue Hill,ME,221,Bangor,ME
-04684,20007,Blue Hill,ME,221,Bangor,ME
-04685,20003,Bar Harbor,ME,221,Bangor,ME
-04686,20021,Machias,ME,221,Bangor,ME
-04691,20021,Machias,ME,221,Bangor,ME
-04693,20015,Ellsworth,ME,221,Bangor,ME
-04694,20011,Calais,ME,221,Bangor,ME
-04730,20018,Houlton,ME,221,Bangor,ME
-04732,20026,Presque Isle,ME,221,Bangor,ME
-04733,20022,Millinocket,ME,221,Bangor,ME
-04734,20026,Presque Isle,ME,221,Bangor,ME
-04735,20026,Presque Isle,ME,221,Bangor,ME
-04736,20012,Caribou,ME,221,Bangor,ME
-04737,20017,Fort Kent,ME,221,Bangor,ME
-04738,20026,Presque Isle,ME,221,Bangor,ME
-04739,20017,Fort Kent,ME,221,Bangor,ME
-04740,20026,Presque Isle,ME,221,Bangor,ME
-04741,20017,Fort Kent,ME,221,Bangor,ME
-04742,20026,Presque Isle,ME,221,Bangor,ME
-04743,20017,Fort Kent,ME,221,Bangor,ME
-04744,20017,Fort Kent,ME,221,Bangor,ME
-04745,20017,Fort Kent,ME,221,Bangor,ME
-04746,20012,Caribou,ME,221,Bangor,ME
-04747,20018,Houlton,ME,221,Bangor,ME
-04750,20012,Caribou,ME,221,Bangor,ME
-04751,20012,Caribou,ME,221,Bangor,ME
-04756,20017,Fort Kent,ME,221,Bangor,ME
-04757,20026,Presque Isle,ME,221,Bangor,ME
-04758,20026,Presque Isle,ME,221,Bangor,ME
-04760,20018,Houlton,ME,221,Bangor,ME
-04761,20018,Houlton,ME,221,Bangor,ME
-04762,20012,Caribou,ME,221,Bangor,ME
-04763,20018,Houlton,ME,221,Bangor,ME
-04764,20026,Presque Isle,ME,221,Bangor,ME
-04765,20018,Houlton,ME,221,Bangor,ME
-04766,20026,Presque Isle,ME,221,Bangor,ME
-04768,20026,Presque Isle,ME,221,Bangor,ME
-04769,20026,Presque Isle,ME,221,Bangor,ME
-04772,20017,Fort Kent,ME,221,Bangor,ME
-04773,20017,Fort Kent,ME,221,Bangor,ME
-04774,20017,Fort Kent,ME,221,Bangor,ME
-04775,20026,Presque Isle,ME,221,Bangor,ME
-04776,20022,Millinocket,ME,221,Bangor,ME
-04777,20022,Millinocket,ME,221,Bangor,ME
-04779,20012,Caribou,ME,221,Bangor,ME
-04780,20018,Houlton,ME,221,Bangor,ME
-04781,20017,Fort Kent,ME,221,Bangor,ME
-04783,20012,Caribou,ME,221,Bangor,ME
-04785,20012,Caribou,ME,221,Bangor,ME
-04786,20026,Presque Isle,ME,221,Bangor,ME
-04787,20026,Presque Isle,ME,221,Bangor,ME
-04841,20027,Rockland,ME,222,Portland,ME
-04843,20027,Rockland,ME,222,Portland,ME
-04847,20027,Rockland,ME,222,Portland,ME
-04848,20027,Rockland,ME,222,Portland,ME
-04849,20027,Rockland,ME,222,Portland,ME
-04850,20027,Rockland,ME,222,Portland,ME
-04851,20027,Rockland,ME,222,Portland,ME
-04852,20027,Rockland,ME,222,Portland,ME
-04853,20027,Rockland,ME,222,Portland,ME
-04854,20027,Rockland,ME,222,Portland,ME
-04855,20027,Rockland,ME,222,Portland,ME
-04856,20027,Rockland,ME,222,Portland,ME
-04858,20027,Rockland,ME,222,Portland,ME
-04859,20027,Rockland,ME,222,Portland,ME
-04860,20027,Rockland,ME,222,Portland,ME
-04861,20027,Rockland,ME,222,Portland,ME
-04862,20027,Rockland,ME,222,Portland,ME
-04863,20027,Rockland,ME,222,Portland,ME
-04864,20027,Rockland,ME,222,Portland,ME
-04865,20027,Rockland,ME,222,Portland,ME
-04901,20031,Waterville,ME,222,Portland,ME
-04903,20031,Waterville,ME,222,Portland,ME
-04910,20031,Waterville,ME,222,Portland,ME
-04911,20030,Skowhegan,ME,221,Bangor,ME
-04912,20030,Skowhegan,ME,221,Bangor,ME
-04915,20005,Belfast,ME,221,Bangor,ME
-04917,20031,Waterville,ME,222,Portland,ME
-04918,20031,Waterville,ME,222,Portland,ME
-04920,20030,Skowhegan,ME,221,Bangor,ME
-04921,20005,Belfast,ME,221,Bangor,ME
-04922,20031,Waterville,ME,222,Portland,ME
-04923,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04924,20030,Skowhegan,ME,221,Bangor,ME
-04925,20031,Waterville,ME,222,Portland,ME
-04926,20031,Waterville,ME,222,Portland,ME
-04927,20031,Waterville,ME,222,Portland,ME
-04928,20024,Pittsfield,ME,221,Bangor,ME
-04929,20024,Pittsfield,ME,221,Bangor,ME
-04930,20014,Dover-Foxcroft,ME,221,Bangor,ME
-04932,20002,Bangor,ME,221,Bangor,ME
-04933,20024,Pittsfield,ME,221,Bangor,ME
-04935,20031,Waterville,ME,222,Portland,ME
-04936,20016,Farmington,ME,222,Portland,ME
-04937,20031,Waterville,ME,222,Portland,ME
-04938,20016,Farmington,ME,222,Portland,ME
-04939,20002,Bangor,ME,221,Bangor,ME
-04940,20016,Farmington,ME,222,Portland,ME
-04941,20031,Waterville,ME,222,Portland,ME
-04942,20030,Skowhegan,ME,221,Bangor,ME
-04943,20024,Pittsfield,ME,221,Bangor,ME
-04944,20031,Waterville,ME,222,Portland,ME
-04945,20031,Waterville,ME,222,Portland,ME
-04947,20016,Farmington,ME,222,Portland,ME
-04949,20005,Belfast,ME,221,Bangor,ME
-04950,20030,Skowhegan,ME,221,Bangor,ME
-04951,20005,Belfast,ME,221,Bangor,ME
-04952,20005,Belfast,ME,221,Bangor,ME
-04953,20024,Pittsfield,ME,221,Bangor,ME
-04954,20016,Farmington,ME,222,Portland,ME
-04955,20016,Farmington,ME,222,Portland,ME
-04956,20016,Farmington,ME,222,Portland,ME
-04957,20030,Skowhegan,ME,221,Bangor,ME
-04958,20030,Skowhegan,ME,221,Bangor,ME
-04961,20030,Skowhegan,ME,221,Bangor,ME
-04962,20031,Waterville,ME,222,Portland,ME
-04963,20031,Waterville,ME,222,Portland,ME
-04964,20016,Farmington,ME,222,Portland,ME
-04965,20024,Pittsfield,ME,221,Bangor,ME
-04966,20016,Farmington,ME,222,Portland,ME
-04967,20024,Pittsfield,ME,221,Bangor,ME
-04969,20024,Pittsfield,ME,221,Bangor,ME
-04970,20016,Farmington,ME,222,Portland,ME
-04971,20024,Pittsfield,ME,221,Bangor,ME
-04972,20005,Belfast,ME,221,Bangor,ME
-04973,20027,Rockland,ME,222,Portland,ME
-04974,20005,Belfast,ME,221,Bangor,ME
-04975,20031,Waterville,ME,222,Portland,ME
-04976,20030,Skowhegan,ME,221,Bangor,ME
-04978,20031,Waterville,ME,222,Portland,ME
-04979,20030,Skowhegan,ME,221,Bangor,ME
-04981,20005,Belfast,ME,221,Bangor,ME
-04982,20016,Farmington,ME,222,Portland,ME
-04983,20016,Farmington,ME,222,Portland,ME
-04984,20016,Farmington,ME,222,Portland,ME
-04985,20031,Waterville,ME,222,Portland,ME
-04986,20031,Waterville,ME,222,Portland,ME
-04987,20031,Waterville,ME,222,Portland,ME
-04988,20031,Waterville,ME,222,Portland,ME
-04989,20031,Waterville,ME,222,Portland,ME
-04992,20016,Farmington,ME,222,Portland,ME
-05001,30013,Lebanon,NH,281,Lebanon,NH
-05009,30013,Lebanon,NH,281,Lebanon,NH
-05030,47015,Windsor,VT,281,Lebanon,NH
-05031,47009,Randolph,VT,281,Lebanon,NH
-05032,47009,Randolph,VT,281,Lebanon,NH
-05033,30025,Woodsville,NH,281,Lebanon,NH
-05034,30013,Lebanon,NH,281,Lebanon,NH
-05035,30013,Lebanon,NH,281,Lebanon,NH
-05036,47003,Berlin,VT,424,Burlington,VT
-05037,47015,Windsor,VT,281,Lebanon,NH
-05038,47009,Randolph,VT,281,Lebanon,NH
-05039,30013,Lebanon,NH,281,Lebanon,NH
-05040,30013,Lebanon,NH,281,Lebanon,NH
-05041,47003,Berlin,VT,424,Burlington,VT
-05042,30025,Woodsville,NH,281,Lebanon,NH
-05043,30013,Lebanon,NH,281,Lebanon,NH
-05045,30013,Lebanon,NH,281,Lebanon,NH
-05046,30025,Woodsville,NH,281,Lebanon,NH
-05047,30013,Lebanon,NH,281,Lebanon,NH
-05048,47015,Windsor,VT,281,Lebanon,NH
-05049,47015,Windsor,VT,281,Lebanon,NH
-05050,47013,St. Johnsbury,VT,281,Lebanon,NH
-05051,30025,Woodsville,NH,281,Lebanon,NH
-05052,30013,Lebanon,NH,281,Lebanon,NH
-05053,30013,Lebanon,NH,281,Lebanon,NH
-05054,30013,Lebanon,NH,281,Lebanon,NH
-05055,30013,Lebanon,NH,281,Lebanon,NH
-05056,30013,Lebanon,NH,281,Lebanon,NH
-05058,30013,Lebanon,NH,281,Lebanon,NH
-05059,30013,Lebanon,NH,281,Lebanon,NH
-05060,47009,Randolph,VT,281,Lebanon,NH
-05061,47009,Randolph,VT,281,Lebanon,NH
-05062,47015,Windsor,VT,281,Lebanon,NH
-05065,30013,Lebanon,NH,281,Lebanon,NH
-05067,30013,Lebanon,NH,281,Lebanon,NH
-05068,47009,Randolph,VT,281,Lebanon,NH
-05069,30025,Woodsville,NH,281,Lebanon,NH
-05070,30013,Lebanon,NH,281,Lebanon,NH
-05071,30013,Lebanon,NH,281,Lebanon,NH
-05072,30013,Lebanon,NH,281,Lebanon,NH
-05073,30013,Lebanon,NH,281,Lebanon,NH
-05074,30013,Lebanon,NH,281,Lebanon,NH
-05075,30013,Lebanon,NH,281,Lebanon,NH
-05076,47003,Berlin,VT,424,Burlington,VT
-05077,47009,Randolph,VT,281,Lebanon,NH
-05079,30013,Lebanon,NH,281,Lebanon,NH
-05081,30025,Woodsville,NH,281,Lebanon,NH
-05083,30013,Lebanon,NH,281,Lebanon,NH
-05084,30013,Lebanon,NH,281,Lebanon,NH
-05085,30025,Woodsville,NH,281,Lebanon,NH
-05086,47003,Berlin,VT,424,Burlington,VT
-05088,30013,Lebanon,NH,281,Lebanon,NH
-05089,47015,Windsor,VT,281,Lebanon,NH
-05091,30013,Lebanon,NH,281,Lebanon,NH
-05101,47011,Springfield,VT,281,Lebanon,NH
-05141,47011,Springfield,VT,281,Lebanon,NH
-05142,47011,Springfield,VT,281,Lebanon,NH
-05143,47011,Springfield,VT,281,Lebanon,NH
-05146,47011,Springfield,VT,281,Lebanon,NH
-05148,47011,Springfield,VT,281,Lebanon,NH
-05149,47011,Springfield,VT,281,Lebanon,NH
-05150,47011,Springfield,VT,281,Lebanon,NH
-05151,47011,Springfield,VT,281,Lebanon,NH
-05152,47011,Springfield,VT,281,Lebanon,NH
-05153,47011,Springfield,VT,281,Lebanon,NH
-05154,47011,Springfield,VT,281,Lebanon,NH
-05155,47011,Springfield,VT,281,Lebanon,NH
-05156,47011,Springfield,VT,281,Lebanon,NH
-05158,47004,Brattleboro,VT,281,Lebanon,NH
-05159,47004,Brattleboro,VT,281,Lebanon,NH
-05161,47011,Springfield,VT,281,Lebanon,NH
-05201,47002,Bennington,VT,295,Albany,NY
-05250,47002,Bennington,VT,295,Albany,NY
-05251,47002,Bennington,VT,295,Albany,NY
-05252,47002,Bennington,VT,295,Albany,NY
-05253,47010,Rutland,VT,424,Burlington,VT
-05254,47002,Bennington,VT,295,Albany,NY
-05255,47002,Bennington,VT,295,Albany,NY
-05257,47002,Bennington,VT,295,Albany,NY
-05260,47002,Bennington,VT,295,Albany,NY
-05261,47002,Bennington,VT,295,Albany,NY
-05262,47002,Bennington,VT,295,Albany,NY
-05301,47004,Brattleboro,VT,281,Lebanon,NH
-05302,47004,Brattleboro,VT,281,Lebanon,NH
-05303,47004,Brattleboro,VT,281,Lebanon,NH
-05304,47004,Brattleboro,VT,281,Lebanon,NH
-05340,47011,Springfield,VT,281,Lebanon,NH
-05341,47004,Brattleboro,VT,281,Lebanon,NH
-05342,47002,Bennington,VT,295,Albany,NY
-05343,47014,Townshend,VT,281,Lebanon,NH
-05344,47004,Brattleboro,VT,281,Lebanon,NH
-05345,47014,Townshend,VT,281,Lebanon,NH
-05346,47004,Brattleboro,VT,281,Lebanon,NH
-05350,22045,North Adams,MA,230,Springfield,MA
-05351,47014,Townshend,VT,281,Lebanon,NH
-05352,22045,North Adams,MA,230,Springfield,MA
-05353,47014,Townshend,VT,281,Lebanon,NH
-05354,47004,Brattleboro,VT,281,Lebanon,NH
-05355,47014,Townshend,VT,281,Lebanon,NH
-05356,47002,Bennington,VT,295,Albany,NY
-05357,47004,Brattleboro,VT,281,Lebanon,NH
-05358,47002,Bennington,VT,295,Albany,NY
-05359,47014,Townshend,VT,281,Lebanon,NH
-05360,47014,Townshend,VT,281,Lebanon,NH
-05361,47002,Bennington,VT,295,Albany,NY
-05362,47004,Brattleboro,VT,281,Lebanon,NH
-05363,47002,Bennington,VT,295,Albany,NY
-05401,47005,Burlington,VT,424,Burlington,VT
-05402,47005,Burlington,VT,424,Burlington,VT
-05403,47005,Burlington,VT,424,Burlington,VT
-05404,47005,Burlington,VT,424,Burlington,VT
-05405,47005,Burlington,VT,424,Burlington,VT
-05406,47005,Burlington,VT,424,Burlington,VT
-05407,47005,Burlington,VT,424,Burlington,VT
-05408,47005,Burlington,VT,424,Burlington,VT
-05439,47005,Burlington,VT,424,Burlington,VT
-05440,47012,St. Albans,VT,424,Burlington,VT
-05441,47012,St. Albans,VT,424,Burlington,VT
-05442,47007,Morrisville,VT,424,Burlington,VT
-05443,47006,Middlebury,VT,424,Burlington,VT
-05444,47005,Burlington,VT,424,Burlington,VT
-05445,47005,Burlington,VT,424,Burlington,VT
-05446,47005,Burlington,VT,424,Burlington,VT
-05447,47012,St. Albans,VT,424,Burlington,VT
-05448,47005,Burlington,VT,424,Burlington,VT
-05449,47005,Burlington,VT,424,Burlington,VT
-05450,47012,St. Albans,VT,424,Burlington,VT
-05451,47005,Burlington,VT,424,Burlington,VT
-05452,47005,Burlington,VT,424,Burlington,VT
-05453,47005,Burlington,VT,424,Burlington,VT
-05454,47012,St. Albans,VT,424,Burlington,VT
-05455,47012,St. Albans,VT,424,Burlington,VT
-05456,47006,Middlebury,VT,424,Burlington,VT
-05457,47012,St. Albans,VT,424,Burlington,VT
-05458,47005,Burlington,VT,424,Burlington,VT
-05459,47012,St. Albans,VT,424,Burlington,VT
-05460,47012,St. Albans,VT,424,Burlington,VT
-05461,47005,Burlington,VT,424,Burlington,VT
-05462,47005,Burlington,VT,424,Burlington,VT
-05463,33099,Plattsburgh,NY,424,Burlington,VT
-05464,47005,Burlington,VT,424,Burlington,VT
-05465,47005,Burlington,VT,424,Burlington,VT
-05466,47005,Burlington,VT,424,Burlington,VT
-05468,47005,Burlington,VT,424,Burlington,VT
-05469,47006,Middlebury,VT,424,Burlington,VT
-05470,47012,St. Albans,VT,424,Burlington,VT
-05471,47012,St. Albans,VT,424,Burlington,VT
-05472,47006,Middlebury,VT,424,Burlington,VT
-05473,47005,Burlington,VT,424,Burlington,VT
-05474,47005,Burlington,VT,424,Burlington,VT
-05476,47012,St. Albans,VT,424,Burlington,VT
-05477,47005,Burlington,VT,424,Burlington,VT
-05478,47012,St. Albans,VT,424,Burlington,VT
-05479,47012,St. Albans,VT,424,Burlington,VT
-05481,47012,St. Albans,VT,424,Burlington,VT
-05482,47005,Burlington,VT,424,Burlington,VT
-05483,47012,St. Albans,VT,424,Burlington,VT
-05485,47012,St. Albans,VT,424,Burlington,VT
-05486,47005,Burlington,VT,424,Burlington,VT
-05487,47006,Middlebury,VT,424,Burlington,VT
-05488,47012,St. Albans,VT,424,Burlington,VT
-05489,47005,Burlington,VT,424,Burlington,VT
-05490,47005,Burlington,VT,424,Burlington,VT
-05491,47006,Middlebury,VT,424,Burlington,VT
-05492,47007,Morrisville,VT,424,Burlington,VT
-05494,47005,Burlington,VT,424,Burlington,VT
-05495,47005,Burlington,VT,424,Burlington,VT
-05501,22025,Lawrence,MA,227,Boston,MA
-05601,47003,Berlin,VT,424,Burlington,VT
-05602,47003,Berlin,VT,424,Burlington,VT
-05603,47003,Berlin,VT,424,Burlington,VT
-05604,47003,Berlin,VT,424,Burlington,VT
-05609,47003,Berlin,VT,424,Burlington,VT
-05620,47003,Berlin,VT,424,Burlington,VT
-05633,47003,Berlin,VT,424,Burlington,VT
-05640,47003,Berlin,VT,424,Burlington,VT
-05641,47003,Berlin,VT,424,Burlington,VT
-05647,47003,Berlin,VT,424,Burlington,VT
-05648,47003,Berlin,VT,424,Burlington,VT
-05649,47003,Berlin,VT,424,Burlington,VT
-05650,47003,Berlin,VT,424,Burlington,VT
-05651,47003,Berlin,VT,424,Burlington,VT
-05652,47007,Morrisville,VT,424,Burlington,VT
-05653,47007,Morrisville,VT,424,Burlington,VT
-05654,47003,Berlin,VT,424,Burlington,VT
-05655,47007,Morrisville,VT,424,Burlington,VT
-05656,47007,Morrisville,VT,424,Burlington,VT
-05657,47007,Morrisville,VT,424,Burlington,VT
-05658,47003,Berlin,VT,424,Burlington,VT
-05660,47003,Berlin,VT,424,Burlington,VT
-05661,47007,Morrisville,VT,424,Burlington,VT
-05662,47007,Morrisville,VT,424,Burlington,VT
-05663,47003,Berlin,VT,424,Burlington,VT
-05664,47003,Berlin,VT,424,Burlington,VT
-05665,47007,Morrisville,VT,424,Burlington,VT
-05666,47003,Berlin,VT,424,Burlington,VT
-05667,47003,Berlin,VT,424,Burlington,VT
-05669,47009,Randolph,VT,281,Lebanon,NH
-05670,47003,Berlin,VT,424,Burlington,VT
-05671,47003,Berlin,VT,424,Burlington,VT
-05672,47007,Morrisville,VT,424,Burlington,VT
-05673,47003,Berlin,VT,424,Burlington,VT
-05674,47003,Berlin,VT,424,Burlington,VT
-05675,47003,Berlin,VT,424,Burlington,VT
-05676,47003,Berlin,VT,424,Burlington,VT
-05677,47003,Berlin,VT,424,Burlington,VT
-05678,47003,Berlin,VT,424,Burlington,VT
-05679,47003,Berlin,VT,424,Burlington,VT
-05680,47007,Morrisville,VT,424,Burlington,VT
-05681,47003,Berlin,VT,424,Burlington,VT
-05682,47003,Berlin,VT,424,Burlington,VT
-05701,47010,Rutland,VT,424,Burlington,VT
-05702,47010,Rutland,VT,424,Burlington,VT
-05730,47010,Rutland,VT,424,Burlington,VT
-05731,47010,Rutland,VT,424,Burlington,VT
-05732,47010,Rutland,VT,424,Burlington,VT
-05733,47010,Rutland,VT,424,Burlington,VT
-05734,47006,Middlebury,VT,424,Burlington,VT
-05735,47010,Rutland,VT,424,Burlington,VT
-05736,47010,Rutland,VT,424,Burlington,VT
-05737,47010,Rutland,VT,424,Burlington,VT
-05738,47010,Rutland,VT,424,Burlington,VT
-05739,47010,Rutland,VT,424,Burlington,VT
-05740,47006,Middlebury,VT,424,Burlington,VT
-05741,47010,Rutland,VT,424,Burlington,VT
-05742,47010,Rutland,VT,424,Burlington,VT
-05743,47010,Rutland,VT,424,Burlington,VT
-05744,47010,Rutland,VT,424,Burlington,VT
-05745,47010,Rutland,VT,424,Burlington,VT
-05746,47009,Randolph,VT,281,Lebanon,NH
-05747,47009,Randolph,VT,281,Lebanon,NH
-05748,47009,Randolph,VT,281,Lebanon,NH
-05750,47010,Rutland,VT,424,Burlington,VT
-05751,47010,Rutland,VT,424,Burlington,VT
-05753,47006,Middlebury,VT,424,Burlington,VT
-05757,47010,Rutland,VT,424,Burlington,VT
-05758,47010,Rutland,VT,424,Burlington,VT
-05759,47010,Rutland,VT,424,Burlington,VT
-05760,47010,Rutland,VT,424,Burlington,VT
-05761,47010,Rutland,VT,424,Burlington,VT
-05762,47009,Randolph,VT,281,Lebanon,NH
-05763,47010,Rutland,VT,424,Burlington,VT
-05764,47010,Rutland,VT,424,Burlington,VT
-05765,47010,Rutland,VT,424,Burlington,VT
-05766,47006,Middlebury,VT,424,Burlington,VT
-05767,47009,Randolph,VT,281,Lebanon,NH
-05768,33016,Cambridge,NY,295,Albany,NY
-05769,47006,Middlebury,VT,424,Burlington,VT
-05770,47006,Middlebury,VT,424,Burlington,VT
-05772,47009,Randolph,VT,281,Lebanon,NH
-05773,47010,Rutland,VT,424,Burlington,VT
-05774,47010,Rutland,VT,424,Burlington,VT
-05775,47010,Rutland,VT,424,Burlington,VT
-05776,33016,Cambridge,NY,295,Albany,NY
-05777,47010,Rutland,VT,424,Burlington,VT
-05778,47010,Rutland,VT,424,Burlington,VT
-05819,47013,St. Johnsbury,VT,281,Lebanon,NH
-05820,47008,Newport,VT,281,Lebanon,NH
-05821,47013,St. Johnsbury,VT,281,Lebanon,NH
-05822,47008,Newport,VT,281,Lebanon,NH
-05823,47008,Newport,VT,281,Lebanon,NH
-05824,47013,St. Johnsbury,VT,281,Lebanon,NH
-05825,47008,Newport,VT,281,Lebanon,NH
-05826,47007,Morrisville,VT,424,Burlington,VT
-05827,47007,Morrisville,VT,424,Burlington,VT
-05828,47013,St. Johnsbury,VT,281,Lebanon,NH
-05829,47008,Newport,VT,281,Lebanon,NH
-05830,47008,Newport,VT,281,Lebanon,NH
-05832,47013,St. Johnsbury,VT,281,Lebanon,NH
-05833,47008,Newport,VT,281,Lebanon,NH
-05836,47013,St. Johnsbury,VT,281,Lebanon,NH
-05837,47013,St. Johnsbury,VT,281,Lebanon,NH
-05838,47013,St. Johnsbury,VT,281,Lebanon,NH
-05839,47008,Newport,VT,281,Lebanon,NH
-05840,47013,St. Johnsbury,VT,281,Lebanon,NH
-05841,47007,Morrisville,VT,424,Burlington,VT
-05842,47007,Morrisville,VT,424,Burlington,VT
-05843,47007,Morrisville,VT,424,Burlington,VT
-05845,47008,Newport,VT,281,Lebanon,NH
-05846,47008,Newport,VT,281,Lebanon,NH
-05847,47007,Morrisville,VT,424,Burlington,VT
-05848,47013,St. Johnsbury,VT,281,Lebanon,NH
-05849,47013,St. Johnsbury,VT,281,Lebanon,NH
-05850,47013,St. Johnsbury,VT,281,Lebanon,NH
-05851,47013,St. Johnsbury,VT,281,Lebanon,NH
-05853,47008,Newport,VT,281,Lebanon,NH
-05855,47008,Newport,VT,281,Lebanon,NH
-05857,47008,Newport,VT,281,Lebanon,NH
-05858,47013,St. Johnsbury,VT,281,Lebanon,NH
-05859,47008,Newport,VT,281,Lebanon,NH
-05860,47008,Newport,VT,281,Lebanon,NH
-05861,47013,St. Johnsbury,VT,281,Lebanon,NH
-05862,47013,St. Johnsbury,VT,281,Lebanon,NH
-05863,47013,St. Johnsbury,VT,281,Lebanon,NH
-05866,47013,St. Johnsbury,VT,281,Lebanon,NH
-05867,47013,St. Johnsbury,VT,281,Lebanon,NH
-05868,47008,Newport,VT,281,Lebanon,NH
-05871,47013,St. Johnsbury,VT,281,Lebanon,NH
-05872,47008,Newport,VT,281,Lebanon,NH
-05873,47013,St. Johnsbury,VT,281,Lebanon,NH
-05874,47008,Newport,VT,281,Lebanon,NH
-05875,47008,Newport,VT,281,Lebanon,NH
-05901,30003,Colebrook,NH,281,Lebanon,NH
-05902,30003,Colebrook,NH,281,Lebanon,NH
-05903,30003,Colebrook,NH,281,Lebanon,NH
-05904,30012,Lancaster,NH,281,Lebanon,NH
-05905,30012,Lancaster,NH,281,Lebanon,NH
-05906,30012,Lancaster,NH,281,Lebanon,NH
-05907,30003,Colebrook,NH,281,Lebanon,NH
-06001,7007,Hartford,CT,110,Hartford,CT
-06002,7007,Hartford,CT,110,Hartford,CT
-06006,7007,Hartford,CT,110,Hartford,CT
-06010,7002,Bristol,CT,110,Hartford,CT
-06011,7002,Bristol,CT,110,Hartford,CT
-06013,7002,Bristol,CT,110,Hartford,CT
-06016,7007,Hartford,CT,110,Hartford,CT
-06018,7021,Sharon,CT,110,Hartford,CT
-06019,7007,Hartford,CT,110,Hartford,CT
-06020,7007,Hartford,CT,110,Hartford,CT
-06021,7028,Winsted,CT,110,Hartford,CT
-06022,7007,Hartford,CT,110,Hartford,CT
-06023,7012,New Britain,CT,110,Hartford,CT
-06024,7021,Sharon,CT,110,Hartford,CT
-06025,7007,Hartford,CT,110,Hartford,CT
-06026,7007,Hartford,CT,110,Hartford,CT
-06027,7007,Hartford,CT,110,Hartford,CT
-06028,7008,Manchester,CT,110,Hartford,CT
-06029,7020,Rockville,CT,110,Hartford,CT
-06030,7007,Hartford,CT,110,Hartford,CT
-06031,7021,Sharon,CT,110,Hartford,CT
-06032,7007,Hartford,CT,110,Hartford,CT
-06033,7007,Hartford,CT,110,Hartford,CT
-06034,7007,Hartford,CT,110,Hartford,CT
-06035,7007,Hartford,CT,110,Hartford,CT
-06037,7012,New Britain,CT,110,Hartford,CT
-06039,7021,Sharon,CT,110,Hartford,CT
-06040,7008,Manchester,CT,110,Hartford,CT
-06041,7008,Manchester,CT,110,Hartford,CT
-06042,7008,Manchester,CT,110,Hartford,CT
-06043,7008,Manchester,CT,110,Hartford,CT
-06045,7008,Manchester,CT,110,Hartford,CT
-06050,7012,New Britain,CT,110,Hartford,CT
-06051,7012,New Britain,CT,110,Hartford,CT
-06052,7012,New Britain,CT,110,Hartford,CT
-06053,7012,New Britain,CT,110,Hartford,CT
-06057,7025,Torrington,CT,110,Hartford,CT
-06058,7028,Winsted,CT,110,Hartford,CT
-06059,7028,Winsted,CT,110,Hartford,CT
-06060,7007,Hartford,CT,110,Hartford,CT
-06061,7025,Torrington,CT,110,Hartford,CT
-06062,7012,New Britain,CT,110,Hartford,CT
-06063,7028,Winsted,CT,110,Hartford,CT
-06064,7007,Hartford,CT,110,Hartford,CT
-06065,7007,Hartford,CT,110,Hartford,CT
-06066,7020,Rockville,CT,110,Hartford,CT
-06067,7007,Hartford,CT,110,Hartford,CT
-06068,7021,Sharon,CT,110,Hartford,CT
-06069,7021,Sharon,CT,110,Hartford,CT
-06070,7007,Hartford,CT,110,Hartford,CT
-06071,7023,Stafford Springs,CT,110,Hartford,CT
-06072,7023,Stafford Springs,CT,110,Hartford,CT
-06073,7007,Hartford,CT,110,Hartford,CT
-06074,7008,Manchester,CT,110,Hartford,CT
-06075,7023,Stafford Springs,CT,110,Hartford,CT
-06076,7023,Stafford Springs,CT,110,Hartford,CT
-06077,7023,Stafford Springs,CT,110,Hartford,CT
-06078,7007,Hartford,CT,110,Hartford,CT
-06079,7021,Sharon,CT,110,Hartford,CT
-06080,7007,Hartford,CT,110,Hartford,CT
-06081,7007,Hartford,CT,110,Hartford,CT
-06082,7023,Stafford Springs,CT,110,Hartford,CT
-06083,7023,Stafford Springs,CT,110,Hartford,CT
-06084,7020,Rockville,CT,110,Hartford,CT
-06085,7007,Hartford,CT,110,Hartford,CT
-06088,7007,Hartford,CT,110,Hartford,CT
-06089,7007,Hartford,CT,110,Hartford,CT
-06090,7007,Hartford,CT,110,Hartford,CT
-06091,7007,Hartford,CT,110,Hartford,CT
-06092,7007,Hartford,CT,110,Hartford,CT
-06093,7007,Hartford,CT,110,Hartford,CT
-06094,7028,Winsted,CT,110,Hartford,CT
-06095,7007,Hartford,CT,110,Hartford,CT
-06096,7007,Hartford,CT,110,Hartford,CT
-06098,7028,Winsted,CT,110,Hartford,CT
-06101,7007,Hartford,CT,110,Hartford,CT
-06102,7007,Hartford,CT,110,Hartford,CT
-06103,7007,Hartford,CT,110,Hartford,CT
-06104,7007,Hartford,CT,110,Hartford,CT
-06105,7007,Hartford,CT,110,Hartford,CT
-06106,7007,Hartford,CT,110,Hartford,CT
-06107,7007,Hartford,CT,110,Hartford,CT
-06108,7007,Hartford,CT,110,Hartford,CT
-06109,7007,Hartford,CT,110,Hartford,CT
-06110,7007,Hartford,CT,110,Hartford,CT
-06111,7007,Hartford,CT,110,Hartford,CT
-06112,7007,Hartford,CT,110,Hartford,CT
-06114,7007,Hartford,CT,110,Hartford,CT
-06115,7007,Hartford,CT,110,Hartford,CT
-06117,7007,Hartford,CT,110,Hartford,CT
-06118,7007,Hartford,CT,110,Hartford,CT
-06119,7007,Hartford,CT,110,Hartford,CT
-06120,7007,Hartford,CT,110,Hartford,CT
-06123,7007,Hartford,CT,110,Hartford,CT
-06126,7007,Hartford,CT,110,Hartford,CT
-06127,7007,Hartford,CT,110,Hartford,CT
-06128,7007,Hartford,CT,110,Hartford,CT
-06129,7007,Hartford,CT,110,Hartford,CT
-06131,7007,Hartford,CT,110,Hartford,CT
-06132,7007,Hartford,CT,110,Hartford,CT
-06133,7007,Hartford,CT,110,Hartford,CT
-06134,7007,Hartford,CT,110,Hartford,CT
-06137,7007,Hartford,CT,110,Hartford,CT
-06138,7007,Hartford,CT,110,Hartford,CT
-06140,7007,Hartford,CT,110,Hartford,CT
-06141,7007,Hartford,CT,110,Hartford,CT
-06142,7007,Hartford,CT,110,Hartford,CT
-06143,7007,Hartford,CT,110,Hartford,CT
-06144,7007,Hartford,CT,110,Hartford,CT
-06145,7007,Hartford,CT,110,Hartford,CT
-06146,7007,Hartford,CT,110,Hartford,CT
-06147,7007,Hartford,CT,110,Hartford,CT
-06150,7007,Hartford,CT,110,Hartford,CT
-06151,7007,Hartford,CT,110,Hartford,CT
-06152,7007,Hartford,CT,110,Hartford,CT
-06153,7007,Hartford,CT,110,Hartford,CT
-06154,7007,Hartford,CT,110,Hartford,CT
-06155,7007,Hartford,CT,110,Hartford,CT
-06156,7007,Hartford,CT,110,Hartford,CT
-06160,7007,Hartford,CT,110,Hartford,CT
-06161,7007,Hartford,CT,110,Hartford,CT
-06167,7007,Hartford,CT,110,Hartford,CT
-06176,7007,Hartford,CT,110,Hartford,CT
-06180,7007,Hartford,CT,110,Hartford,CT
-06183,7007,Hartford,CT,110,Hartford,CT
-06199,7007,Hartford,CT,110,Hartford,CT
-06226,7027,Willimantic,CT,110,Hartford,CT
-06230,7019,Putnam,CT,110,Hartford,CT
-06231,7027,Willimantic,CT,110,Hartford,CT
-06232,7008,Manchester,CT,110,Hartford,CT
-06233,7019,Putnam,CT,110,Hartford,CT
-06234,7019,Putnam,CT,110,Hartford,CT
-06235,7027,Willimantic,CT,110,Hartford,CT
-06237,7027,Willimantic,CT,110,Hartford,CT
-06238,7027,Willimantic,CT,110,Hartford,CT
-06239,7019,Putnam,CT,110,Hartford,CT
-06241,7019,Putnam,CT,110,Hartford,CT
-06242,7019,Putnam,CT,110,Hartford,CT
-06243,7019,Putnam,CT,110,Hartford,CT
-06244,7019,Putnam,CT,110,Hartford,CT
-06245,7019,Putnam,CT,110,Hartford,CT
-06246,7019,Putnam,CT,110,Hartford,CT
-06247,7027,Willimantic,CT,110,Hartford,CT
-06248,7008,Manchester,CT,110,Hartford,CT
-06249,7027,Willimantic,CT,110,Hartford,CT
-06250,7027,Willimantic,CT,110,Hartford,CT
-06251,7027,Willimantic,CT,110,Hartford,CT
-06254,7018,Norwich,CT,110,Hartford,CT
-06255,7019,Putnam,CT,110,Hartford,CT
-06256,7027,Willimantic,CT,110,Hartford,CT
-06258,7019,Putnam,CT,110,Hartford,CT
-06259,7019,Putnam,CT,110,Hartford,CT
-06260,7019,Putnam,CT,110,Hartford,CT
-06262,7019,Putnam,CT,110,Hartford,CT
-06263,7019,Putnam,CT,110,Hartford,CT
-06264,7027,Willimantic,CT,110,Hartford,CT
-06265,7023,Stafford Springs,CT,110,Hartford,CT
-06266,7027,Willimantic,CT,110,Hartford,CT
-06267,7019,Putnam,CT,110,Hartford,CT
-06268,7027,Willimantic,CT,110,Hartford,CT
-06269,7027,Willimantic,CT,110,Hartford,CT
-06277,7019,Putnam,CT,110,Hartford,CT
-06278,7027,Willimantic,CT,110,Hartford,CT
-06279,7023,Stafford Springs,CT,110,Hartford,CT
-06280,7027,Willimantic,CT,110,Hartford,CT
-06281,7019,Putnam,CT,110,Hartford,CT
-06282,7019,Putnam,CT,110,Hartford,CT
-06320,7014,New London,CT,111,New Haven,CT
-06330,7018,Norwich,CT,110,Hartford,CT
-06331,7018,Norwich,CT,110,Hartford,CT
-06332,7019,Putnam,CT,110,Hartford,CT
-06333,7014,New London,CT,111,New Haven,CT
-06334,7018,Norwich,CT,110,Hartford,CT
-06335,7014,New London,CT,111,New Haven,CT
-06336,7018,Norwich,CT,110,Hartford,CT
-06338,7014,New London,CT,111,New Haven,CT
-06339,7014,New London,CT,111,New Haven,CT
-06340,7014,New London,CT,111,New Haven,CT
-06349,7014,New London,CT,111,New Haven,CT
-06350,7018,Norwich,CT,110,Hartford,CT
-06351,7018,Norwich,CT,110,Hartford,CT
-06353,7014,New London,CT,111,New Haven,CT
-06354,7019,Putnam,CT,110,Hartford,CT
-06355,7014,New London,CT,111,New Haven,CT
-06357,7014,New London,CT,111,New Haven,CT
-06359,41008,Westerly,RI,364,Providence,RI
-06360,7018,Norwich,CT,110,Hartford,CT
-06365,7018,Norwich,CT,110,Hartford,CT
-06370,7014,New London,CT,111,New Haven,CT
-06371,7014,New London,CT,111,New Haven,CT
-06372,7014,New London,CT,111,New Haven,CT
-06373,7019,Putnam,CT,110,Hartford,CT
-06374,7019,Putnam,CT,110,Hartford,CT
-06375,7014,New London,CT,111,New Haven,CT
-06376,7014,New London,CT,111,New Haven,CT
-06377,7019,Putnam,CT,110,Hartford,CT
-06378,41008,Westerly,RI,364,Providence,RI
-06379,41008,Westerly,RI,364,Providence,RI
-06380,7018,Norwich,CT,110,Hartford,CT
-06382,7014,New London,CT,111,New Haven,CT
-06383,7018,Norwich,CT,110,Hartford,CT
-06384,7018,Norwich,CT,110,Hartford,CT
-06385,7014,New London,CT,111,New Haven,CT
-06387,7019,Putnam,CT,110,Hartford,CT
-06388,7014,New London,CT,111,New Haven,CT
-06389,7018,Norwich,CT,110,Hartford,CT
-06390,7014,New London,CT,111,New Haven,CT
-06401,7004,Derby,CT,111,New Haven,CT
-06403,7026,Waterbury,CT,111,New Haven,CT
-06404,7003,Danbury,CT,111,New Haven,CT
-06405,7013,New Haven,CT,111,New Haven,CT
-06408,7026,Waterbury,CT,111,New Haven,CT
-06409,7010,Middletown,CT,110,Hartford,CT
-06410,7026,Waterbury,CT,111,New Haven,CT
-06411,7026,Waterbury,CT,111,New Haven,CT
-06412,7010,Middletown,CT,110,Hartford,CT
-06413,7010,Middletown,CT,110,Hartford,CT
-06414,7010,Middletown,CT,110,Hartford,CT
-06415,7010,Middletown,CT,110,Hartford,CT
-06416,7010,Middletown,CT,110,Hartford,CT
-06417,7010,Middletown,CT,110,Hartford,CT
-06418,7004,Derby,CT,111,New Haven,CT
-06419,7010,Middletown,CT,110,Hartford,CT
-06420,7014,New London,CT,111,New Haven,CT
-06422,7010,Middletown,CT,110,Hartford,CT
-06423,7010,Middletown,CT,110,Hartford,CT
-06424,7010,Middletown,CT,110,Hartford,CT
-06426,7010,Middletown,CT,110,Hartford,CT
-06437,7013,New Haven,CT,111,New Haven,CT
-06438,7010,Middletown,CT,110,Hartford,CT
-06439,7014,New London,CT,111,New Haven,CT
-06440,7003,Danbury,CT,111,New Haven,CT
-06441,7010,Middletown,CT,110,Hartford,CT
-06442,7010,Middletown,CT,110,Hartford,CT
-06443,7013,New Haven,CT,111,New Haven,CT
-06444,7022,Southington,CT,111,New Haven,CT
-06447,7010,Middletown,CT,110,Hartford,CT
-06450,7009,Meriden,CT,111,New Haven,CT
-06451,7009,Meriden,CT,111,New Haven,CT
-06455,7010,Middletown,CT,110,Hartford,CT
-06456,7010,Middletown,CT,110,Hartford,CT
-06457,7010,Middletown,CT,110,Hartford,CT
-06459,7010,Middletown,CT,110,Hartford,CT
-06460,7011,Milford,CT,111,New Haven,CT
-06461,7011,Milford,CT,111,New Haven,CT
-06467,7022,Southington,CT,111,New Haven,CT
-06468,7001,Bridgeport,CT,109,Bridgeport,CT
-06469,7010,Middletown,CT,110,Hartford,CT
-06470,7003,Danbury,CT,111,New Haven,CT
-06471,7013,New Haven,CT,111,New Haven,CT
-06472,7013,New Haven,CT,111,New Haven,CT
-06473,7013,New Haven,CT,111,New Haven,CT
-06474,7010,Middletown,CT,110,Hartford,CT
-06475,7010,Middletown,CT,110,Hartford,CT
-06477,7013,New Haven,CT,111,New Haven,CT
-06478,7004,Derby,CT,111,New Haven,CT
-06479,7022,Southington,CT,111,New Haven,CT
-06480,7010,Middletown,CT,110,Hartford,CT
-06481,7010,Middletown,CT,110,Hartford,CT
-06482,7003,Danbury,CT,111,New Haven,CT
-06483,7004,Derby,CT,111,New Haven,CT
-06484,7004,Derby,CT,111,New Haven,CT
-06487,7026,Waterbury,CT,111,New Haven,CT
-06488,7026,Waterbury,CT,111,New Haven,CT
-06489,7022,Southington,CT,111,New Haven,CT
-06491,7001,Bridgeport,CT,109,Bridgeport,CT
-06492,7009,Meriden,CT,111,New Haven,CT
-06493,7009,Meriden,CT,111,New Haven,CT
-06494,7009,Meriden,CT,111,New Haven,CT
-06495,7009,Meriden,CT,111,New Haven,CT
-06498,7010,Middletown,CT,110,Hartford,CT
-06501,7013,New Haven,CT,111,New Haven,CT
-06502,7013,New Haven,CT,111,New Haven,CT
-06503,7013,New Haven,CT,111,New Haven,CT
-06504,7013,New Haven,CT,111,New Haven,CT
-06505,7013,New Haven,CT,111,New Haven,CT
-06506,7013,New Haven,CT,111,New Haven,CT
-06507,7013,New Haven,CT,111,New Haven,CT
-06508,7013,New Haven,CT,111,New Haven,CT
-06509,7013,New Haven,CT,111,New Haven,CT
-06510,7013,New Haven,CT,111,New Haven,CT
-06511,7013,New Haven,CT,111,New Haven,CT
-06512,7013,New Haven,CT,111,New Haven,CT
-06513,7013,New Haven,CT,111,New Haven,CT
-06514,7013,New Haven,CT,111,New Haven,CT
-06515,7013,New Haven,CT,111,New Haven,CT
-06516,7013,New Haven,CT,111,New Haven,CT
-06517,7013,New Haven,CT,111,New Haven,CT
-06518,7013,New Haven,CT,111,New Haven,CT
-06519,7013,New Haven,CT,111,New Haven,CT
-06520,7013,New Haven,CT,111,New Haven,CT
-06521,7013,New Haven,CT,111,New Haven,CT
-06524,7013,New Haven,CT,111,New Haven,CT
-06525,7013,New Haven,CT,111,New Haven,CT
-06530,7013,New Haven,CT,111,New Haven,CT
-06531,7013,New Haven,CT,111,New Haven,CT
-06532,7013,New Haven,CT,111,New Haven,CT
-06533,7013,New Haven,CT,111,New Haven,CT
-06534,7013,New Haven,CT,111,New Haven,CT
-06535,7013,New Haven,CT,111,New Haven,CT
-06536,7013,New Haven,CT,111,New Haven,CT
-06537,7013,New Haven,CT,111,New Haven,CT
-06538,7013,New Haven,CT,111,New Haven,CT
-06540,7013,New Haven,CT,111,New Haven,CT
-06601,7001,Bridgeport,CT,109,Bridgeport,CT
-06602,7001,Bridgeport,CT,109,Bridgeport,CT
-06604,7001,Bridgeport,CT,109,Bridgeport,CT
-06605,7001,Bridgeport,CT,109,Bridgeport,CT
-06606,7001,Bridgeport,CT,109,Bridgeport,CT
-06607,7001,Bridgeport,CT,109,Bridgeport,CT
-06608,7001,Bridgeport,CT,109,Bridgeport,CT
-06610,7001,Bridgeport,CT,109,Bridgeport,CT
-06611,7001,Bridgeport,CT,109,Bridgeport,CT
-06612,7001,Bridgeport,CT,109,Bridgeport,CT
-06614,7001,Bridgeport,CT,109,Bridgeport,CT
-06615,7001,Bridgeport,CT,109,Bridgeport,CT
-06673,7001,Bridgeport,CT,109,Bridgeport,CT
-06699,7001,Bridgeport,CT,109,Bridgeport,CT
-06701,7026,Waterbury,CT,111,New Haven,CT
-06702,7026,Waterbury,CT,111,New Haven,CT
-06703,7026,Waterbury,CT,111,New Haven,CT
-06704,7026,Waterbury,CT,111,New Haven,CT
-06705,7026,Waterbury,CT,111,New Haven,CT
-06706,7026,Waterbury,CT,111,New Haven,CT
-06708,7026,Waterbury,CT,111,New Haven,CT
-06710,7026,Waterbury,CT,111,New Haven,CT
-06712,7026,Waterbury,CT,111,New Haven,CT
-06716,7026,Waterbury,CT,111,New Haven,CT
-06720,7026,Waterbury,CT,111,New Haven,CT
-06721,7026,Waterbury,CT,111,New Haven,CT
-06722,7026,Waterbury,CT,111,New Haven,CT
-06723,7026,Waterbury,CT,111,New Haven,CT
-06724,7026,Waterbury,CT,111,New Haven,CT
-06725,7026,Waterbury,CT,111,New Haven,CT
-06726,7026,Waterbury,CT,111,New Haven,CT
-06749,7026,Waterbury,CT,111,New Haven,CT
-06750,7025,Torrington,CT,110,Hartford,CT
-06751,7026,Waterbury,CT,111,New Haven,CT
-06752,7015,New Milford,CT,111,New Haven,CT
-06753,7021,Sharon,CT,110,Hartford,CT
-06754,7021,Sharon,CT,110,Hartford,CT
-06755,7015,New Milford,CT,111,New Haven,CT
-06756,7025,Torrington,CT,110,Hartford,CT
-06757,7021,Sharon,CT,110,Hartford,CT
-06758,7025,Torrington,CT,110,Hartford,CT
-06759,7025,Torrington,CT,110,Hartford,CT
-06762,7026,Waterbury,CT,111,New Haven,CT
-06763,7025,Torrington,CT,110,Hartford,CT
-06770,7026,Waterbury,CT,111,New Haven,CT
-06776,7015,New Milford,CT,111,New Haven,CT
-06777,7015,New Milford,CT,111,New Haven,CT
-06778,7025,Torrington,CT,110,Hartford,CT
-06779,7026,Waterbury,CT,111,New Haven,CT
-06781,7002,Bristol,CT,110,Hartford,CT
-06782,7026,Waterbury,CT,111,New Haven,CT
-06783,7015,New Milford,CT,111,New Haven,CT
-06784,7015,New Milford,CT,111,New Haven,CT
-06785,7015,New Milford,CT,111,New Haven,CT
-06786,7002,Bristol,CT,110,Hartford,CT
-06787,7026,Waterbury,CT,111,New Haven,CT
-06790,7025,Torrington,CT,110,Hartford,CT
-06791,7025,Torrington,CT,110,Hartford,CT
-06792,7025,Torrington,CT,110,Hartford,CT
-06793,7015,New Milford,CT,111,New Haven,CT
-06794,7015,New Milford,CT,111,New Haven,CT
-06795,7026,Waterbury,CT,111,New Haven,CT
-06796,7021,Sharon,CT,110,Hartford,CT
-06798,7026,Waterbury,CT,111,New Haven,CT
-06801,7003,Danbury,CT,111,New Haven,CT
-06804,7003,Danbury,CT,111,New Haven,CT
-06807,7006,Greenwich,CT,109,Bridgeport,CT
-06810,7003,Danbury,CT,111,New Haven,CT
-06811,7003,Danbury,CT,111,New Haven,CT
-06812,7003,Danbury,CT,111,New Haven,CT
-06813,7003,Danbury,CT,111,New Haven,CT
-06814,7003,Danbury,CT,111,New Haven,CT
-06816,7003,Danbury,CT,111,New Haven,CT
-06817,7003,Danbury,CT,111,New Haven,CT
-06820,7024,Stamford,CT,109,Bridgeport,CT
-06824,7001,Bridgeport,CT,109,Bridgeport,CT
-06825,7001,Bridgeport,CT,109,Bridgeport,CT
-06828,7001,Bridgeport,CT,109,Bridgeport,CT
-06829,7017,Norwalk,CT,109,Bridgeport,CT
-06830,7006,Greenwich,CT,109,Bridgeport,CT
-06831,7006,Greenwich,CT,109,Bridgeport,CT
-06836,7006,Greenwich,CT,109,Bridgeport,CT
-06838,7017,Norwalk,CT,109,Bridgeport,CT
-06840,7017,Norwalk,CT,109,Bridgeport,CT
-06850,7017,Norwalk,CT,109,Bridgeport,CT
-06851,7017,Norwalk,CT,109,Bridgeport,CT
-06852,7017,Norwalk,CT,109,Bridgeport,CT
-06853,7017,Norwalk,CT,109,Bridgeport,CT
-06854,7017,Norwalk,CT,109,Bridgeport,CT
-06855,7017,Norwalk,CT,109,Bridgeport,CT
-06856,7017,Norwalk,CT,109,Bridgeport,CT
-06857,7017,Norwalk,CT,109,Bridgeport,CT
-06858,7017,Norwalk,CT,109,Bridgeport,CT
-06860,7017,Norwalk,CT,109,Bridgeport,CT
-06870,7006,Greenwich,CT,109,Bridgeport,CT
-06875,7003,Danbury,CT,111,New Haven,CT
-06876,7003,Danbury,CT,111,New Haven,CT
-06877,7003,Danbury,CT,111,New Haven,CT
-06878,7006,Greenwich,CT,109,Bridgeport,CT
-06879,7003,Danbury,CT,111,New Haven,CT
-06880,7017,Norwalk,CT,109,Bridgeport,CT
-06881,7017,Norwalk,CT,109,Bridgeport,CT
-06883,7017,Norwalk,CT,109,Bridgeport,CT
-06888,7017,Norwalk,CT,109,Bridgeport,CT
-06889,7017,Norwalk,CT,109,Bridgeport,CT
-06890,7001,Bridgeport,CT,109,Bridgeport,CT
-06896,7003,Danbury,CT,111,New Haven,CT
-06897,7017,Norwalk,CT,109,Bridgeport,CT
-06901,7024,Stamford,CT,109,Bridgeport,CT
-06902,7024,Stamford,CT,109,Bridgeport,CT
-06903,7024,Stamford,CT,109,Bridgeport,CT
-06904,7024,Stamford,CT,109,Bridgeport,CT
-06905,7024,Stamford,CT,109,Bridgeport,CT
-06906,7024,Stamford,CT,109,Bridgeport,CT
-06907,7024,Stamford,CT,109,Bridgeport,CT
-06910,7024,Stamford,CT,109,Bridgeport,CT
-06911,7024,Stamford,CT,109,Bridgeport,CT
-06912,7024,Stamford,CT,109,Bridgeport,CT
-06913,7024,Stamford,CT,109,Bridgeport,CT
-06914,7024,Stamford,CT,109,Bridgeport,CT
-06926,7024,Stamford,CT,109,Bridgeport,CT
-06927,7024,Stamford,CT,109,Bridgeport,CT
-07001,31048,Rahway,NJ,289,Newark,NJ
-07002,31002,Bayonne,NJ,289,Newark,NJ
-07003,31030,Montclair,NJ,289,Newark,NJ
-07004,31030,Montclair,NJ,289,Newark,NJ
-07005,31007,Denville,NJ,285,Morristown,NJ
-07006,31030,Montclair,NJ,289,Newark,NJ
-07007,31030,Montclair,NJ,289,Newark,NJ
-07008,31048,Rahway,NJ,289,Newark,NJ
-07009,31030,Montclair,NJ,289,Newark,NJ
-07010,31061,Teaneck,NJ,284,Hackensack,NJ
-07011,31040,Passaic,NJ,284,Hackensack,NJ
-07012,31040,Passaic,NJ,284,Hackensack,NJ
-07013,31040,Passaic,NJ,284,Hackensack,NJ
-07014,31040,Passaic,NJ,284,Hackensack,NJ
-07015,31040,Passaic,NJ,284,Hackensack,NJ
-07016,31064,Union,NJ,289,Newark,NJ
-07017,31035,Newark,NJ,289,Newark,NJ
-07018,31038,Orange,NJ,289,Newark,NJ
-07019,31035,Newark,NJ,289,Newark,NJ
-07020,31061,Teaneck,NJ,284,Hackensack,NJ
-07021,31030,Montclair,NJ,289,Newark,NJ
-07022,31061,Teaneck,NJ,284,Hackensack,NJ
-07023,31044,Plainfield,NJ,285,Morristown,NJ
-07024,31013,Englewood,NJ,284,Hackensack,NJ
-07026,31040,Passaic,NJ,284,Hackensack,NJ
-07027,31059,Summit,NJ,285,Morristown,NJ
-07028,31030,Montclair,NJ,289,Newark,NJ
-07029,31024,Kearny,NJ,289,Newark,NJ
-07030,31020,Hoboken,NJ,284,Hackensack,NJ
-07031,31024,Kearny,NJ,289,Newark,NJ
-07032,31024,Kearny,NJ,289,Newark,NJ
-07033,31064,Union,NJ,289,Newark,NJ
-07034,31007,Denville,NJ,285,Morristown,NJ
-07035,31046,Pompton Plains,NJ,291,Paterson,NJ
-07036,31011,Elizabeth,NJ,289,Newark,NJ
-07039,31026,Livingston,NJ,289,Newark,NJ
-07040,31026,Livingston,NJ,289,Newark,NJ
-07041,31059,Summit,NJ,285,Morristown,NJ
-07042,31030,Montclair,NJ,289,Newark,NJ
-07043,31030,Montclair,NJ,289,Newark,NJ
-07044,31030,Montclair,NJ,289,Newark,NJ
-07045,31007,Denville,NJ,285,Morristown,NJ
-07046,31007,Denville,NJ,285,Morristown,NJ
-07047,31037,North Bergen,NJ,284,Hackensack,NJ
-07050,31038,Orange,NJ,289,Newark,NJ
-07051,31038,Orange,NJ,289,Newark,NJ
-07052,31026,Livingston,NJ,289,Newark,NJ
-07054,31007,Denville,NJ,285,Morristown,NJ
-07055,31040,Passaic,NJ,284,Hackensack,NJ
-07057,31040,Passaic,NJ,284,Hackensack,NJ
-07058,31007,Denville,NJ,285,Morristown,NJ
-07059,31059,Summit,NJ,285,Morristown,NJ
-07060,31044,Plainfield,NJ,285,Morristown,NJ
-07061,31044,Plainfield,NJ,285,Morristown,NJ
-07062,31044,Plainfield,NJ,285,Morristown,NJ
-07063,31044,Plainfield,NJ,285,Morristown,NJ
-07064,31010,Edison,NJ,288,New Brunswick,NJ
-07065,31048,Rahway,NJ,289,Newark,NJ
-07066,31048,Rahway,NJ,289,Newark,NJ
-07067,31010,Edison,NJ,288,New Brunswick,NJ
-07068,31026,Livingston,NJ,289,Newark,NJ
-07069,31044,Plainfield,NJ,285,Morristown,NJ
-07070,31040,Passaic,NJ,284,Hackensack,NJ
-07071,31040,Passaic,NJ,284,Hackensack,NJ
-07072,31016,Hackensack,NJ,284,Hackensack,NJ
-07073,31040,Passaic,NJ,284,Hackensack,NJ
-07074,31016,Hackensack,NJ,284,Hackensack,NJ
-07075,31016,Hackensack,NJ,284,Hackensack,NJ
-07076,31044,Plainfield,NJ,285,Morristown,NJ
-07077,31010,Edison,NJ,288,New Brunswick,NJ
-07078,31059,Summit,NJ,285,Morristown,NJ
-07079,31026,Livingston,NJ,289,Newark,NJ
-07080,31044,Plainfield,NJ,285,Morristown,NJ
-07081,31059,Summit,NJ,285,Morristown,NJ
-07082,31007,Denville,NJ,285,Morristown,NJ
-07083,31064,Union,NJ,289,Newark,NJ
-07086,31020,Hoboken,NJ,284,Hackensack,NJ
-07087,31020,Hoboken,NJ,284,Hackensack,NJ
-07088,31059,Summit,NJ,285,Morristown,NJ
-07090,31059,Summit,NJ,285,Morristown,NJ
-07091,31059,Summit,NJ,285,Morristown,NJ
-07092,31059,Summit,NJ,285,Morristown,NJ
-07093,31037,North Bergen,NJ,284,Hackensack,NJ
-07094,31054,Secaucus,NJ,284,Hackensack,NJ
-07095,31010,Edison,NJ,288,New Brunswick,NJ
-07096,31054,Secaucus,NJ,284,Hackensack,NJ
-07097,31023,Jersey City,NJ,289,Newark,NJ
-07099,31024,Kearny,NJ,289,Newark,NJ
-07101,31035,Newark,NJ,289,Newark,NJ
-07102,31035,Newark,NJ,289,Newark,NJ
-07103,31035,Newark,NJ,289,Newark,NJ
-07104,31035,Newark,NJ,289,Newark,NJ
-07105,31035,Newark,NJ,289,Newark,NJ
-07106,31035,Newark,NJ,289,Newark,NJ
-07107,31035,Newark,NJ,289,Newark,NJ
-07108,31035,Newark,NJ,289,Newark,NJ
-07109,31003,Belleville,NJ,289,Newark,NJ
-07110,31003,Belleville,NJ,289,Newark,NJ
-07111,31022,Irvington,NJ,289,Newark,NJ
-07112,31035,Newark,NJ,289,Newark,NJ
-07114,31035,Newark,NJ,289,Newark,NJ
-07175,31035,Newark,NJ,289,Newark,NJ
-07184,31035,Newark,NJ,289,Newark,NJ
-07188,31035,Newark,NJ,289,Newark,NJ
-07189,31035,Newark,NJ,289,Newark,NJ
-07191,31035,Newark,NJ,289,Newark,NJ
-07192,31035,Newark,NJ,289,Newark,NJ
-07193,31035,Newark,NJ,289,Newark,NJ
-07195,31035,Newark,NJ,289,Newark,NJ
-07198,31035,Newark,NJ,289,Newark,NJ
-07199,31035,Newark,NJ,289,Newark,NJ
-07201,31011,Elizabeth,NJ,289,Newark,NJ
-07202,31011,Elizabeth,NJ,289,Newark,NJ
-07203,31011,Elizabeth,NJ,289,Newark,NJ
-07204,31064,Union,NJ,289,Newark,NJ
-07205,31011,Elizabeth,NJ,289,Newark,NJ
-07206,31011,Elizabeth,NJ,289,Newark,NJ
-07207,31011,Elizabeth,NJ,289,Newark,NJ
-07208,31011,Elizabeth,NJ,289,Newark,NJ
-07302,31023,Jersey City,NJ,289,Newark,NJ
-07303,31023,Jersey City,NJ,289,Newark,NJ
-07304,31023,Jersey City,NJ,289,Newark,NJ
-07305,31023,Jersey City,NJ,289,Newark,NJ
-07306,31023,Jersey City,NJ,289,Newark,NJ
-07307,31023,Jersey City,NJ,289,Newark,NJ
-07308,31023,Jersey City,NJ,289,Newark,NJ
-07310,31023,Jersey City,NJ,289,Newark,NJ
-07311,31023,Jersey City,NJ,289,Newark,NJ
-07395,31023,Jersey City,NJ,289,Newark,NJ
-07399,31023,Jersey City,NJ,289,Newark,NJ
-07401,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07403,31046,Pompton Plains,NJ,291,Paterson,NJ
-07405,31046,Pompton Plains,NJ,291,Paterson,NJ
-07407,31041,Paterson,NJ,291,Paterson,NJ
-07410,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07416,31060,Sussex,NJ,285,Morristown,NJ
-07417,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07418,33133,Warwick,NY,292,Ridgewood,NJ
-07419,31060,Sussex,NJ,285,Morristown,NJ
-07420,31046,Pompton Plains,NJ,291,Paterson,NJ
-07421,31046,Pompton Plains,NJ,291,Paterson,NJ
-07422,31060,Sussex,NJ,285,Morristown,NJ
-07423,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07424,31041,Paterson,NJ,291,Paterson,NJ
-07428,31060,Sussex,NJ,285,Morristown,NJ
-07430,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07432,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07435,31046,Pompton Plains,NJ,291,Paterson,NJ
-07436,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07438,31008,Dover,NJ,285,Morristown,NJ
-07439,31036,Newton,NJ,285,Morristown,NJ
-07440,31046,Pompton Plains,NJ,291,Paterson,NJ
-07442,31046,Pompton Plains,NJ,291,Paterson,NJ
-07444,31046,Pompton Plains,NJ,291,Paterson,NJ
-07446,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07450,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07451,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07452,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07456,31046,Pompton Plains,NJ,291,Paterson,NJ
-07457,31046,Pompton Plains,NJ,291,Paterson,NJ
-07458,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07460,31060,Sussex,NJ,285,Morristown,NJ
-07461,31060,Sussex,NJ,285,Morristown,NJ
-07462,31060,Sussex,NJ,285,Morristown,NJ
-07463,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07465,31046,Pompton Plains,NJ,291,Paterson,NJ
-07470,31066,Wayne,NJ,291,Paterson,NJ
-07474,31066,Wayne,NJ,291,Paterson,NJ
-07480,31046,Pompton Plains,NJ,291,Paterson,NJ
-07481,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07495,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07501,31041,Paterson,NJ,291,Paterson,NJ
-07502,31066,Wayne,NJ,291,Paterson,NJ
-07503,31041,Paterson,NJ,291,Paterson,NJ
-07504,31041,Paterson,NJ,291,Paterson,NJ
-07505,31041,Paterson,NJ,291,Paterson,NJ
-07506,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07507,31050,Ridgewood,NJ,292,Ridgewood,NJ
-07508,31066,Wayne,NJ,291,Paterson,NJ
-07509,31041,Paterson,NJ,291,Paterson,NJ
-07510,31041,Paterson,NJ,291,Paterson,NJ
-07511,31066,Wayne,NJ,291,Paterson,NJ
-07512,31066,Wayne,NJ,291,Paterson,NJ
-07513,31041,Paterson,NJ,291,Paterson,NJ
-07514,31041,Paterson,NJ,291,Paterson,NJ
-07522,31041,Paterson,NJ,291,Paterson,NJ
-07524,31041,Paterson,NJ,291,Paterson,NJ
-07533,31041,Paterson,NJ,291,Paterson,NJ
-07538,31066,Wayne,NJ,291,Paterson,NJ
-07543,31041,Paterson,NJ,291,Paterson,NJ
-07544,31041,Paterson,NJ,291,Paterson,NJ
-07601,31016,Hackensack,NJ,284,Hackensack,NJ
-07602,31016,Hackensack,NJ,284,Hackensack,NJ
-07603,31061,Teaneck,NJ,284,Hackensack,NJ
-07604,31016,Hackensack,NJ,284,Hackensack,NJ
-07605,31013,Englewood,NJ,284,Hackensack,NJ
-07606,31016,Hackensack,NJ,284,Hackensack,NJ
-07607,31016,Hackensack,NJ,284,Hackensack,NJ
-07608,31016,Hackensack,NJ,284,Hackensack,NJ
-07620,31013,Englewood,NJ,284,Hackensack,NJ
-07621,31061,Teaneck,NJ,284,Hackensack,NJ
-07624,31067,Westwood,NJ,284,Hackensack,NJ
-07626,31013,Englewood,NJ,284,Hackensack,NJ
-07627,31013,Englewood,NJ,284,Hackensack,NJ
-07628,31013,Englewood,NJ,284,Hackensack,NJ
-07630,31067,Westwood,NJ,284,Hackensack,NJ
-07631,31013,Englewood,NJ,284,Hackensack,NJ
-07632,31013,Englewood,NJ,284,Hackensack,NJ
-07640,31067,Westwood,NJ,284,Hackensack,NJ
-07641,31013,Englewood,NJ,284,Hackensack,NJ
-07642,31067,Westwood,NJ,284,Hackensack,NJ
-07643,31016,Hackensack,NJ,284,Hackensack,NJ
-07644,31016,Hackensack,NJ,284,Hackensack,NJ
-07645,31067,Westwood,NJ,284,Hackensack,NJ
-07646,31061,Teaneck,NJ,284,Hackensack,NJ
-07647,31067,Westwood,NJ,284,Hackensack,NJ
-07648,31067,Westwood,NJ,284,Hackensack,NJ
-07649,31067,Westwood,NJ,284,Hackensack,NJ
-07650,31013,Englewood,NJ,284,Hackensack,NJ
-07652,31039,Paramus,NJ,284,Hackensack,NJ
-07653,31039,Paramus,NJ,284,Hackensack,NJ
-07656,31067,Westwood,NJ,284,Hackensack,NJ
-07657,31061,Teaneck,NJ,284,Hackensack,NJ
-07660,31061,Teaneck,NJ,284,Hackensack,NJ
-07661,31016,Hackensack,NJ,284,Hackensack,NJ
-07662,31016,Hackensack,NJ,284,Hackensack,NJ
-07663,31016,Hackensack,NJ,284,Hackensack,NJ
-07666,31061,Teaneck,NJ,284,Hackensack,NJ
-07670,31013,Englewood,NJ,284,Hackensack,NJ
-07675,31067,Westwood,NJ,284,Hackensack,NJ
-07676,31067,Westwood,NJ,284,Hackensack,NJ
-07677,31067,Westwood,NJ,284,Hackensack,NJ
-07699,31016,Hackensack,NJ,284,Hackensack,NJ
-07701,31049,Red Bank,NJ,283,Camden,NJ
-07702,31049,Red Bank,NJ,283,Camden,NJ
-07703,31049,Red Bank,NJ,283,Camden,NJ
-07704,31049,Red Bank,NJ,283,Camden,NJ
-07710,31015,Freehold,NJ,283,Camden,NJ
-07711,31027,Long Branch,NJ,283,Camden,NJ
-07712,31033,Neptune,NJ,283,Camden,NJ
-07715,31033,Neptune,NJ,283,Camden,NJ
-07716,31049,Red Bank,NJ,283,Camden,NJ
-07717,31033,Neptune,NJ,283,Camden,NJ
-07718,31049,Red Bank,NJ,283,Camden,NJ
-07719,31033,Neptune,NJ,283,Camden,NJ
-07720,31033,Neptune,NJ,283,Camden,NJ
-07721,31021,Holmdel,NJ,283,Camden,NJ
-07722,31049,Red Bank,NJ,283,Camden,NJ
-07723,31027,Long Branch,NJ,283,Camden,NJ
-07724,31027,Long Branch,NJ,283,Camden,NJ
-07726,31015,Freehold,NJ,283,Camden,NJ
-07727,31033,Neptune,NJ,283,Camden,NJ
-07728,31015,Freehold,NJ,283,Camden,NJ
-07730,31021,Holmdel,NJ,283,Camden,NJ
-07731,31025,Lakewood,NJ,283,Camden,NJ
-07732,31049,Red Bank,NJ,283,Camden,NJ
-07733,31021,Holmdel,NJ,283,Camden,NJ
-07734,31021,Holmdel,NJ,283,Camden,NJ
-07735,31021,Holmdel,NJ,283,Camden,NJ
-07737,31049,Red Bank,NJ,283,Camden,NJ
-07738,31049,Red Bank,NJ,283,Camden,NJ
-07739,31049,Red Bank,NJ,283,Camden,NJ
-07740,31027,Long Branch,NJ,283,Camden,NJ
-07746,31015,Freehold,NJ,283,Camden,NJ
-07747,31021,Holmdel,NJ,283,Camden,NJ
-07748,31049,Red Bank,NJ,283,Camden,NJ
-07750,31027,Long Branch,NJ,283,Camden,NJ
-07751,31021,Holmdel,NJ,283,Camden,NJ
-07752,31049,Red Bank,NJ,283,Camden,NJ
-07753,31033,Neptune,NJ,283,Camden,NJ
-07754,31033,Neptune,NJ,283,Camden,NJ
-07755,31027,Long Branch,NJ,283,Camden,NJ
-07756,31033,Neptune,NJ,283,Camden,NJ
-07757,31027,Long Branch,NJ,283,Camden,NJ
-07758,31049,Red Bank,NJ,283,Camden,NJ
-07760,31049,Red Bank,NJ,283,Camden,NJ
-07762,31033,Neptune,NJ,283,Camden,NJ
-07763,31015,Freehold,NJ,283,Camden,NJ
-07764,31027,Long Branch,NJ,283,Camden,NJ
-07765,31021,Holmdel,NJ,283,Camden,NJ
-07799,31027,Long Branch,NJ,283,Camden,NJ
-07801,31008,Dover,NJ,285,Morristown,NJ
-07802,31008,Dover,NJ,285,Morristown,NJ
-07803,31008,Dover,NJ,285,Morristown,NJ
-07806,31008,Dover,NJ,285,Morristown,NJ
-07820,31017,Hackettstown,NJ,285,Morristown,NJ
-07821,31036,Newton,NJ,285,Morristown,NJ
-07822,31060,Sussex,NJ,285,Morristown,NJ
-07823,31043,Phillipsburg,NJ,346,Allentown,PA
-07825,31036,Newton,NJ,285,Morristown,NJ
-07826,31036,Newton,NJ,285,Morristown,NJ
-07827,33102,Port Jervis,NY,285,Morristown,NJ
-07828,31008,Dover,NJ,285,Morristown,NJ
-07829,31043,Phillipsburg,NJ,346,Allentown,PA
-07830,31014,Flemington,NJ,356,Philadelphia,PA
-07831,31014,Flemington,NJ,356,Philadelphia,PA
-07832,31036,Newton,NJ,285,Morristown,NJ
-07833,31036,Newton,NJ,285,Morristown,NJ
-07834,31007,Denville,NJ,285,Morristown,NJ
-07836,31008,Dover,NJ,285,Morristown,NJ
-07837,31036,Newton,NJ,285,Morristown,NJ
-07838,31036,Newton,NJ,285,Morristown,NJ
-07839,31036,Newton,NJ,285,Morristown,NJ
-07840,31017,Hackettstown,NJ,285,Morristown,NJ
-07842,31007,Denville,NJ,285,Morristown,NJ
-07843,31008,Dover,NJ,285,Morristown,NJ
-07844,31036,Newton,NJ,285,Morristown,NJ
-07845,31008,Dover,NJ,285,Morristown,NJ
-07846,31036,Newton,NJ,285,Morristown,NJ
-07847,31008,Dover,NJ,285,Morristown,NJ
-07848,31036,Newton,NJ,285,Morristown,NJ
-07849,31008,Dover,NJ,285,Morristown,NJ
-07850,31008,Dover,NJ,285,Morristown,NJ
-07851,31036,Newton,NJ,285,Morristown,NJ
-07852,31008,Dover,NJ,285,Morristown,NJ
-07853,31017,Hackettstown,NJ,285,Morristown,NJ
-07855,31036,Newton,NJ,285,Morristown,NJ
-07856,31008,Dover,NJ,285,Morristown,NJ
-07857,31008,Dover,NJ,285,Morristown,NJ
-07860,31036,Newton,NJ,285,Morristown,NJ
-07863,31043,Phillipsburg,NJ,346,Allentown,PA
-07865,31017,Hackettstown,NJ,285,Morristown,NJ
-07866,31007,Denville,NJ,285,Morristown,NJ
-07869,31008,Dover,NJ,285,Morristown,NJ
-07870,31017,Hackettstown,NJ,285,Morristown,NJ
-07871,31036,Newton,NJ,285,Morristown,NJ
-07874,31008,Dover,NJ,285,Morristown,NJ
-07875,31036,Newton,NJ,285,Morristown,NJ
-07876,31008,Dover,NJ,285,Morristown,NJ
-07877,31036,Newton,NJ,285,Morristown,NJ
-07878,31007,Denville,NJ,285,Morristown,NJ
-07879,31036,Newton,NJ,285,Morristown,NJ
-07880,31017,Hackettstown,NJ,285,Morristown,NJ
-07881,31036,Newton,NJ,285,Morristown,NJ
-07882,31043,Phillipsburg,NJ,346,Allentown,PA
-07885,31008,Dover,NJ,285,Morristown,NJ
-07890,31036,Newton,NJ,285,Morristown,NJ
-07901,31059,Summit,NJ,285,Morristown,NJ
-07902,31059,Summit,NJ,285,Morristown,NJ
-07920,31031,Morristown,NJ,285,Morristown,NJ
-07921,31031,Morristown,NJ,285,Morristown,NJ
-07922,31059,Summit,NJ,285,Morristown,NJ
-07924,31031,Morristown,NJ,285,Morristown,NJ
-07926,31031,Morristown,NJ,285,Morristown,NJ
-07927,31031,Morristown,NJ,285,Morristown,NJ
-07928,31059,Summit,NJ,285,Morristown,NJ
-07930,31031,Morristown,NJ,285,Morristown,NJ
-07931,31031,Morristown,NJ,285,Morristown,NJ
-07932,31031,Morristown,NJ,285,Morristown,NJ
-07933,31059,Summit,NJ,285,Morristown,NJ
-07934,31031,Morristown,NJ,285,Morristown,NJ
-07935,31031,Morristown,NJ,285,Morristown,NJ
-07936,31031,Morristown,NJ,285,Morristown,NJ
-07938,31031,Morristown,NJ,285,Morristown,NJ
-07939,31031,Morristown,NJ,285,Morristown,NJ
-07940,31031,Morristown,NJ,285,Morristown,NJ
-07945,31031,Morristown,NJ,285,Morristown,NJ
-07946,31031,Morristown,NJ,285,Morristown,NJ
-07950,31031,Morristown,NJ,285,Morristown,NJ
-07960,31031,Morristown,NJ,285,Morristown,NJ
-07961,31031,Morristown,NJ,285,Morristown,NJ
-07962,31031,Morristown,NJ,285,Morristown,NJ
-07963,31031,Morristown,NJ,285,Morristown,NJ
-07970,31031,Morristown,NJ,285,Morristown,NJ
-07974,31059,Summit,NJ,285,Morristown,NJ
-07976,31031,Morristown,NJ,285,Morristown,NJ
-07977,31031,Morristown,NJ,285,Morristown,NJ
-07978,31031,Morristown,NJ,285,Morristown,NJ
-07979,31014,Flemington,NJ,356,Philadelphia,PA
-07980,31031,Morristown,NJ,285,Morristown,NJ
-07981,31031,Morristown,NJ,285,Morristown,NJ
-07999,31031,Morristown,NJ,285,Morristown,NJ
-08001,31004,Bridgeton,NJ,283,Camden,NJ
-08002,31005,Camden,NJ,283,Camden,NJ
-08003,31005,Camden,NJ,283,Camden,NJ
-08004,31005,Camden,NJ,283,Camden,NJ
-08005,31028,Manahawkin,NJ,283,Camden,NJ
-08006,31028,Manahawkin,NJ,283,Camden,NJ
-08007,31005,Camden,NJ,283,Camden,NJ
-08008,31028,Manahawkin,NJ,283,Camden,NJ
-08009,31005,Camden,NJ,283,Camden,NJ
-08010,31068,Willingboro,NJ,283,Camden,NJ
-08011,31032,Mount Holly,NJ,283,Camden,NJ
-08012,31058,Stratford,NJ,283,Camden,NJ
-08014,31069,Woodbury,NJ,356,Philadelphia,PA
-08015,31032,Mount Holly,NJ,283,Camden,NJ
-08016,31068,Willingboro,NJ,283,Camden,NJ
-08018,31005,Camden,NJ,283,Camden,NJ
-08019,31032,Mount Holly,NJ,283,Camden,NJ
-08020,31069,Woodbury,NJ,356,Philadelphia,PA
-08021,31058,Stratford,NJ,283,Camden,NJ
-08022,31032,Mount Holly,NJ,283,Camden,NJ
-08023,31053,Salem,NJ,112,Wilmington,DE
-08025,31069,Woodbury,NJ,356,Philadelphia,PA
-08026,31005,Camden,NJ,283,Camden,NJ
-08027,31069,Woodbury,NJ,356,Philadelphia,PA
-08028,31058,Stratford,NJ,283,Camden,NJ
-08029,31005,Camden,NJ,283,Camden,NJ
-08030,31005,Camden,NJ,283,Camden,NJ
-08031,31005,Camden,NJ,283,Camden,NJ
-08032,31058,Stratford,NJ,283,Camden,NJ
-08033,31005,Camden,NJ,283,Camden,NJ
-08034,31005,Camden,NJ,283,Camden,NJ
-08035,31005,Camden,NJ,283,Camden,NJ
-08036,31032,Mount Holly,NJ,283,Camden,NJ
-08037,31019,Hammonton,NJ,283,Camden,NJ
-08038,31053,Salem,NJ,112,Wilmington,DE
-08039,31069,Woodbury,NJ,356,Philadelphia,PA
-08041,31032,Mount Holly,NJ,283,Camden,NJ
-08042,31032,Mount Holly,NJ,283,Camden,NJ
-08043,31005,Camden,NJ,283,Camden,NJ
-08045,31005,Camden,NJ,283,Camden,NJ
-08046,31068,Willingboro,NJ,283,Camden,NJ
-08048,31032,Mount Holly,NJ,283,Camden,NJ
-08049,31005,Camden,NJ,283,Camden,NJ
-08050,31028,Manahawkin,NJ,283,Camden,NJ
-08051,31069,Woodbury,NJ,356,Philadelphia,PA
-08052,31005,Camden,NJ,283,Camden,NJ
-08053,31005,Camden,NJ,283,Camden,NJ
-08054,31005,Camden,NJ,283,Camden,NJ
-08055,31032,Mount Holly,NJ,283,Camden,NJ
-08056,31069,Woodbury,NJ,356,Philadelphia,PA
-08057,31032,Mount Holly,NJ,283,Camden,NJ
-08059,31005,Camden,NJ,283,Camden,NJ
-08060,31032,Mount Holly,NJ,283,Camden,NJ
-08061,31069,Woodbury,NJ,356,Philadelphia,PA
-08062,31069,Woodbury,NJ,356,Philadelphia,PA
-08063,31069,Woodbury,NJ,356,Philadelphia,PA
-08064,31032,Mount Holly,NJ,283,Camden,NJ
-08065,31051,Riverside,NJ,283,Camden,NJ
-08066,31069,Woodbury,NJ,356,Philadelphia,PA
-08067,31053,Salem,NJ,112,Wilmington,DE
-08068,31032,Mount Holly,NJ,283,Camden,NJ
-08069,31053,Salem,NJ,112,Wilmington,DE
-08070,31053,Salem,NJ,112,Wilmington,DE
-08071,31069,Woodbury,NJ,356,Philadelphia,PA
-08072,31053,Salem,NJ,112,Wilmington,DE
-08073,31068,Willingboro,NJ,283,Camden,NJ
-08074,31069,Woodbury,NJ,356,Philadelphia,PA
-08075,31051,Riverside,NJ,283,Camden,NJ
-08076,31051,Riverside,NJ,283,Camden,NJ
-08077,31051,Riverside,NJ,283,Camden,NJ
-08078,31005,Camden,NJ,283,Camden,NJ
-08079,31053,Salem,NJ,112,Wilmington,DE
-08080,31058,Stratford,NJ,283,Camden,NJ
-08081,31005,Camden,NJ,283,Camden,NJ
-08083,31005,Camden,NJ,283,Camden,NJ
-08084,31058,Stratford,NJ,283,Camden,NJ
-08085,31069,Woodbury,NJ,356,Philadelphia,PA
-08086,31069,Woodbury,NJ,356,Philadelphia,PA
-08087,31028,Manahawkin,NJ,283,Camden,NJ
-08088,31032,Mount Holly,NJ,283,Camden,NJ
-08089,31005,Camden,NJ,283,Camden,NJ
-08090,31069,Woodbury,NJ,356,Philadelphia,PA
-08091,31005,Camden,NJ,283,Camden,NJ
-08092,31028,Manahawkin,NJ,283,Camden,NJ
-08093,31069,Woodbury,NJ,356,Philadelphia,PA
-08094,31058,Stratford,NJ,283,Camden,NJ
-08095,31019,Hammonton,NJ,283,Camden,NJ
-08096,31069,Woodbury,NJ,356,Philadelphia,PA
-08097,31069,Woodbury,NJ,356,Philadelphia,PA
-08098,31053,Salem,NJ,112,Wilmington,DE
-08099,31005,Camden,NJ,283,Camden,NJ
-08101,31005,Camden,NJ,283,Camden,NJ
-08102,31005,Camden,NJ,283,Camden,NJ
-08103,31005,Camden,NJ,283,Camden,NJ
-08104,31005,Camden,NJ,283,Camden,NJ
-08105,31005,Camden,NJ,283,Camden,NJ
-08106,31005,Camden,NJ,283,Camden,NJ
-08107,31005,Camden,NJ,283,Camden,NJ
-08108,31005,Camden,NJ,283,Camden,NJ
-08109,31005,Camden,NJ,283,Camden,NJ
-08110,31005,Camden,NJ,283,Camden,NJ
-08201,31001,Atlantic City,NJ,283,Camden,NJ
-08202,31006,Cape May Court House,NJ,283,Camden,NJ
-08203,31001,Atlantic City,NJ,283,Camden,NJ
-08204,31006,Cape May Court House,NJ,283,Camden,NJ
-08205,31001,Atlantic City,NJ,283,Camden,NJ
-08210,31006,Cape May Court House,NJ,283,Camden,NJ
-08212,31006,Cape May Court House,NJ,283,Camden,NJ
-08213,31001,Atlantic City,NJ,283,Camden,NJ
-08214,31006,Cape May Court House,NJ,283,Camden,NJ
-08215,31001,Atlantic City,NJ,283,Camden,NJ
-08217,31019,Hammonton,NJ,283,Camden,NJ
-08218,31006,Cape May Court House,NJ,283,Camden,NJ
-08219,31006,Cape May Court House,NJ,283,Camden,NJ
-08220,31001,Atlantic City,NJ,283,Camden,NJ
-08221,31055,Somers Point,NJ,283,Camden,NJ
-08223,31055,Somers Point,NJ,283,Camden,NJ
-08224,31028,Manahawkin,NJ,283,Camden,NJ
-08225,31055,Somers Point,NJ,283,Camden,NJ
-08226,31055,Somers Point,NJ,283,Camden,NJ
-08230,31055,Somers Point,NJ,283,Camden,NJ
-08231,31001,Atlantic City,NJ,283,Camden,NJ
-08232,31001,Atlantic City,NJ,283,Camden,NJ
-08234,31001,Atlantic City,NJ,283,Camden,NJ
-08240,31001,Atlantic City,NJ,283,Camden,NJ
-08241,31001,Atlantic City,NJ,283,Camden,NJ
-08242,31006,Cape May Court House,NJ,283,Camden,NJ
-08243,31006,Cape May Court House,NJ,283,Camden,NJ
-08244,31055,Somers Point,NJ,283,Camden,NJ
-08245,31006,Cape May Court House,NJ,283,Camden,NJ
-08246,31055,Somers Point,NJ,283,Camden,NJ
-08247,31006,Cape May Court House,NJ,283,Camden,NJ
-08248,31055,Somers Point,NJ,283,Camden,NJ
-08250,31006,Cape May Court House,NJ,283,Camden,NJ
-08251,31006,Cape May Court House,NJ,283,Camden,NJ
-08252,31006,Cape May Court House,NJ,283,Camden,NJ
-08260,31006,Cape May Court House,NJ,283,Camden,NJ
-08270,31006,Cape May Court House,NJ,283,Camden,NJ
-08302,31004,Bridgeton,NJ,283,Camden,NJ
-08310,31065,Vineland,NJ,283,Camden,NJ
-08311,31004,Bridgeton,NJ,283,Camden,NJ
-08312,31012,Elmer,NJ,283,Camden,NJ
-08313,31004,Bridgeton,NJ,283,Camden,NJ
-08314,31004,Bridgeton,NJ,283,Camden,NJ
-08315,31004,Bridgeton,NJ,283,Camden,NJ
-08316,31004,Bridgeton,NJ,283,Camden,NJ
-08317,31065,Vineland,NJ,283,Camden,NJ
-08318,31012,Elmer,NJ,283,Camden,NJ
-08319,31065,Vineland,NJ,283,Camden,NJ
-08320,31004,Bridgeton,NJ,283,Camden,NJ
-08321,31004,Bridgeton,NJ,283,Camden,NJ
-08322,31012,Elmer,NJ,283,Camden,NJ
-08323,31004,Bridgeton,NJ,283,Camden,NJ
-08324,31004,Bridgeton,NJ,283,Camden,NJ
-08326,31065,Vineland,NJ,283,Camden,NJ
-08327,31004,Bridgeton,NJ,283,Camden,NJ
-08328,31012,Elmer,NJ,283,Camden,NJ
-08329,31004,Bridgeton,NJ,283,Camden,NJ
-08330,31001,Atlantic City,NJ,283,Camden,NJ
-08332,31004,Bridgeton,NJ,283,Camden,NJ
-08340,31065,Vineland,NJ,283,Camden,NJ
-08341,31065,Vineland,NJ,283,Camden,NJ
-08342,31001,Atlantic City,NJ,283,Camden,NJ
-08343,31012,Elmer,NJ,283,Camden,NJ
-08344,31012,Elmer,NJ,283,Camden,NJ
-08345,31004,Bridgeton,NJ,283,Camden,NJ
-08346,31065,Vineland,NJ,283,Camden,NJ
-08347,31004,Bridgeton,NJ,283,Camden,NJ
-08348,31004,Bridgeton,NJ,283,Camden,NJ
-08349,31004,Bridgeton,NJ,283,Camden,NJ
-08350,31065,Vineland,NJ,283,Camden,NJ
-08352,31004,Bridgeton,NJ,283,Camden,NJ
-08353,31004,Bridgeton,NJ,283,Camden,NJ
-08360,31065,Vineland,NJ,283,Camden,NJ
-08361,31065,Vineland,NJ,283,Camden,NJ
-08362,31065,Vineland,NJ,283,Camden,NJ
-08401,31001,Atlantic City,NJ,283,Camden,NJ
-08402,31055,Somers Point,NJ,283,Camden,NJ
-08403,31055,Somers Point,NJ,283,Camden,NJ
-08404,31001,Atlantic City,NJ,283,Camden,NJ
-08405,31001,Atlantic City,NJ,283,Camden,NJ
-08406,31001,Atlantic City,NJ,283,Camden,NJ
-08501,31063,Trenton,NJ,356,Philadelphia,PA
-08502,31056,Somerville,NJ,288,New Brunswick,NJ
-08504,31047,Princeton,NJ,288,New Brunswick,NJ
-08505,31063,Trenton,NJ,356,Philadelphia,PA
-08510,31015,Freehold,NJ,283,Camden,NJ
-08511,31032,Mount Holly,NJ,283,Camden,NJ
-08512,31047,Princeton,NJ,288,New Brunswick,NJ
-08514,31015,Freehold,NJ,283,Camden,NJ
-08515,31032,Mount Holly,NJ,283,Camden,NJ
-08518,31068,Willingboro,NJ,283,Camden,NJ
-08520,31047,Princeton,NJ,288,New Brunswick,NJ
-08525,31047,Princeton,NJ,288,New Brunswick,NJ
-08526,31015,Freehold,NJ,283,Camden,NJ
-08527,31025,Lakewood,NJ,283,Camden,NJ
-08528,31047,Princeton,NJ,288,New Brunswick,NJ
-08530,31014,Flemington,NJ,356,Philadelphia,PA
-08533,31015,Freehold,NJ,283,Camden,NJ
-08534,31063,Trenton,NJ,356,Philadelphia,PA
-08535,31015,Freehold,NJ,283,Camden,NJ
-08536,31047,Princeton,NJ,288,New Brunswick,NJ
-08540,31047,Princeton,NJ,288,New Brunswick,NJ
-08541,31047,Princeton,NJ,288,New Brunswick,NJ
-08542,31047,Princeton,NJ,288,New Brunswick,NJ
-08543,31047,Princeton,NJ,288,New Brunswick,NJ
-08544,31047,Princeton,NJ,288,New Brunswick,NJ
-08550,31047,Princeton,NJ,288,New Brunswick,NJ
-08551,31014,Flemington,NJ,356,Philadelphia,PA
-08553,31047,Princeton,NJ,288,New Brunswick,NJ
-08554,31068,Willingboro,NJ,283,Camden,NJ
-08555,31015,Freehold,NJ,283,Camden,NJ
-08556,31014,Flemington,NJ,356,Philadelphia,PA
-08557,31014,Flemington,NJ,356,Philadelphia,PA
-08558,31047,Princeton,NJ,288,New Brunswick,NJ
-08559,31014,Flemington,NJ,356,Philadelphia,PA
-08560,31063,Trenton,NJ,356,Philadelphia,PA
-08561,31063,Trenton,NJ,356,Philadelphia,PA
-08562,31032,Mount Holly,NJ,283,Camden,NJ
-08601,31063,Trenton,NJ,356,Philadelphia,PA
-08602,31063,Trenton,NJ,356,Philadelphia,PA
-08603,31063,Trenton,NJ,356,Philadelphia,PA
-08604,31063,Trenton,NJ,356,Philadelphia,PA
-08605,31063,Trenton,NJ,356,Philadelphia,PA
-08606,31063,Trenton,NJ,356,Philadelphia,PA
-08607,31063,Trenton,NJ,356,Philadelphia,PA
-08608,31063,Trenton,NJ,356,Philadelphia,PA
-08609,31063,Trenton,NJ,356,Philadelphia,PA
-08610,31063,Trenton,NJ,356,Philadelphia,PA
-08611,31063,Trenton,NJ,356,Philadelphia,PA
-08618,31063,Trenton,NJ,356,Philadelphia,PA
-08619,31063,Trenton,NJ,356,Philadelphia,PA
-08620,31063,Trenton,NJ,356,Philadelphia,PA
-08625,31063,Trenton,NJ,356,Philadelphia,PA
-08628,31063,Trenton,NJ,356,Philadelphia,PA
-08629,31063,Trenton,NJ,356,Philadelphia,PA
-08638,31063,Trenton,NJ,356,Philadelphia,PA
-08640,31032,Mount Holly,NJ,283,Camden,NJ
-08641,31032,Mount Holly,NJ,283,Camden,NJ
-08645,31063,Trenton,NJ,356,Philadelphia,PA
-08646,31063,Trenton,NJ,356,Philadelphia,PA
-08647,31063,Trenton,NJ,356,Philadelphia,PA
-08648,31063,Trenton,NJ,356,Philadelphia,PA
-08650,31063,Trenton,NJ,356,Philadelphia,PA
-08666,31063,Trenton,NJ,356,Philadelphia,PA
-08690,31063,Trenton,NJ,356,Philadelphia,PA
-08691,31063,Trenton,NJ,356,Philadelphia,PA
-08695,31063,Trenton,NJ,356,Philadelphia,PA
-08701,31025,Lakewood,NJ,283,Camden,NJ
-08720,31025,Lakewood,NJ,283,Camden,NJ
-08721,31062,Toms River,NJ,283,Camden,NJ
-08722,31062,Toms River,NJ,283,Camden,NJ
-08723,31045,Point Pleasant,NJ,283,Camden,NJ
-08724,31045,Point Pleasant,NJ,283,Camden,NJ
-08730,31045,Point Pleasant,NJ,283,Camden,NJ
-08731,31062,Toms River,NJ,283,Camden,NJ
-08732,31062,Toms River,NJ,283,Camden,NJ
-08733,31025,Lakewood,NJ,283,Camden,NJ
-08734,31062,Toms River,NJ,283,Camden,NJ
-08735,31045,Point Pleasant,NJ,283,Camden,NJ
-08736,31045,Point Pleasant,NJ,283,Camden,NJ
-08738,31045,Point Pleasant,NJ,283,Camden,NJ
-08739,31045,Point Pleasant,NJ,283,Camden,NJ
-08740,31062,Toms River,NJ,283,Camden,NJ
-08741,31062,Toms River,NJ,283,Camden,NJ
-08742,31045,Point Pleasant,NJ,283,Camden,NJ
-08750,31033,Neptune,NJ,283,Camden,NJ
-08751,31062,Toms River,NJ,283,Camden,NJ
-08752,31062,Toms River,NJ,283,Camden,NJ
-08753,31062,Toms River,NJ,283,Camden,NJ
-08754,31062,Toms River,NJ,283,Camden,NJ
-08755,31062,Toms River,NJ,283,Camden,NJ
-08756,31062,Toms River,NJ,283,Camden,NJ
-08757,31062,Toms River,NJ,283,Camden,NJ
-08758,31028,Manahawkin,NJ,283,Camden,NJ
-08759,31062,Toms River,NJ,283,Camden,NJ
-08801,31014,Flemington,NJ,356,Philadelphia,PA
-08802,31043,Phillipsburg,NJ,346,Allentown,PA
-08803,31014,Flemington,NJ,356,Philadelphia,PA
-08804,31043,Phillipsburg,NJ,346,Allentown,PA
-08805,31056,Somerville,NJ,288,New Brunswick,NJ
-08807,31056,Somerville,NJ,288,New Brunswick,NJ
-08808,31043,Phillipsburg,NJ,346,Allentown,PA
-08809,31014,Flemington,NJ,356,Philadelphia,PA
-08810,31047,Princeton,NJ,288,New Brunswick,NJ
-08812,31044,Plainfield,NJ,285,Morristown,NJ
-08816,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08817,31010,Edison,NJ,288,New Brunswick,NJ
-08818,31010,Edison,NJ,288,New Brunswick,NJ
-08820,31010,Edison,NJ,288,New Brunswick,NJ
-08821,31031,Morristown,NJ,285,Morristown,NJ
-08822,31014,Flemington,NJ,356,Philadelphia,PA
-08823,31047,Princeton,NJ,288,New Brunswick,NJ
-08824,31047,Princeton,NJ,288,New Brunswick,NJ
-08825,31014,Flemington,NJ,356,Philadelphia,PA
-08826,31014,Flemington,NJ,356,Philadelphia,PA
-08827,31014,Flemington,NJ,356,Philadelphia,PA
-08828,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08829,31014,Flemington,NJ,356,Philadelphia,PA
-08830,31010,Edison,NJ,288,New Brunswick,NJ
-08831,31047,Princeton,NJ,288,New Brunswick,NJ
-08832,31042,Perth Amboy,NJ,288,New Brunswick,NJ
-08833,31014,Flemington,NJ,356,Philadelphia,PA
-08834,31043,Phillipsburg,NJ,346,Allentown,PA
-08835,31056,Somerville,NJ,288,New Brunswick,NJ
-08836,31056,Somerville,NJ,288,New Brunswick,NJ
-08837,31010,Edison,NJ,288,New Brunswick,NJ
-08840,31010,Edison,NJ,288,New Brunswick,NJ
-08844,31056,Somerville,NJ,288,New Brunswick,NJ
-08846,31056,Somerville,NJ,288,New Brunswick,NJ
-08848,31043,Phillipsburg,NJ,346,Allentown,PA
-08850,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08852,31047,Princeton,NJ,288,New Brunswick,NJ
-08853,31056,Somerville,NJ,288,New Brunswick,NJ
-08854,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08855,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08857,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08858,31014,Flemington,NJ,356,Philadelphia,PA
-08859,31057,South Amboy,NJ,288,New Brunswick,NJ
-08861,31042,Perth Amboy,NJ,288,New Brunswick,NJ
-08862,31042,Perth Amboy,NJ,288,New Brunswick,NJ
-08863,31010,Edison,NJ,288,New Brunswick,NJ
-08865,31043,Phillipsburg,NJ,346,Allentown,PA
-08867,31014,Flemington,NJ,356,Philadelphia,PA
-08868,31014,Flemington,NJ,356,Philadelphia,PA
-08869,31056,Somerville,NJ,288,New Brunswick,NJ
-08870,31014,Flemington,NJ,356,Philadelphia,PA
-08871,31057,South Amboy,NJ,288,New Brunswick,NJ
-08872,31057,South Amboy,NJ,288,New Brunswick,NJ
-08873,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08875,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08876,31056,Somerville,NJ,288,New Brunswick,NJ
-08879,31057,South Amboy,NJ,288,New Brunswick,NJ
-08880,31056,Somerville,NJ,288,New Brunswick,NJ
-08882,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08884,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08885,31014,Flemington,NJ,356,Philadelphia,PA
-08886,31043,Phillipsburg,NJ,346,Allentown,PA
-08887,31014,Flemington,NJ,356,Philadelphia,PA
-08888,31014,Flemington,NJ,356,Philadelphia,PA
-08889,31014,Flemington,NJ,356,Philadelphia,PA
-08890,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08899,31010,Edison,NJ,288,New Brunswick,NJ
-08901,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08902,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08903,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08904,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08906,31010,Edison,NJ,288,New Brunswick,NJ
-08933,31034,New Brunswick,NJ,288,New Brunswick,NJ
-08989,31010,Edison,NJ,288,New Brunswick,NJ
-10001,33080,Manhattan,NY,303,Manhattan,NY
-10002,33080,Manhattan,NY,303,Manhattan,NY
-10003,33080,Manhattan,NY,303,Manhattan,NY
-10004,33080,Manhattan,NY,303,Manhattan,NY
-10005,33080,Manhattan,NY,303,Manhattan,NY
-10006,33080,Manhattan,NY,303,Manhattan,NY
-10007,33080,Manhattan,NY,303,Manhattan,NY
-10008,33080,Manhattan,NY,303,Manhattan,NY
-10009,33080,Manhattan,NY,303,Manhattan,NY
-10010,33080,Manhattan,NY,303,Manhattan,NY
-10011,33080,Manhattan,NY,303,Manhattan,NY
-10012,33080,Manhattan,NY,303,Manhattan,NY
-10013,33080,Manhattan,NY,303,Manhattan,NY
-10014,33080,Manhattan,NY,303,Manhattan,NY
-10016,33080,Manhattan,NY,303,Manhattan,NY
-10017,33080,Manhattan,NY,303,Manhattan,NY
-10018,33080,Manhattan,NY,303,Manhattan,NY
-10019,33080,Manhattan,NY,303,Manhattan,NY
-10020,33080,Manhattan,NY,303,Manhattan,NY
-10021,33080,Manhattan,NY,303,Manhattan,NY
-10022,33080,Manhattan,NY,303,Manhattan,NY
-10023,33080,Manhattan,NY,303,Manhattan,NY
-10024,33080,Manhattan,NY,303,Manhattan,NY
-10025,33080,Manhattan,NY,303,Manhattan,NY
-10026,33080,Manhattan,NY,303,Manhattan,NY
-10027,33080,Manhattan,NY,303,Manhattan,NY
-10028,33080,Manhattan,NY,303,Manhattan,NY
-10029,33080,Manhattan,NY,303,Manhattan,NY
-10030,33080,Manhattan,NY,303,Manhattan,NY
-10031,33080,Manhattan,NY,303,Manhattan,NY
-10032,33080,Manhattan,NY,303,Manhattan,NY
-10033,33080,Manhattan,NY,303,Manhattan,NY
-10034,33080,Manhattan,NY,303,Manhattan,NY
-10035,33080,Manhattan,NY,303,Manhattan,NY
-10036,33080,Manhattan,NY,303,Manhattan,NY
-10037,33080,Manhattan,NY,303,Manhattan,NY
-10038,33080,Manhattan,NY,303,Manhattan,NY
-10039,33080,Manhattan,NY,303,Manhattan,NY
-10040,33080,Manhattan,NY,303,Manhattan,NY
-10041,33080,Manhattan,NY,303,Manhattan,NY
-10043,33080,Manhattan,NY,303,Manhattan,NY
-10044,33080,Manhattan,NY,303,Manhattan,NY
-10045,33080,Manhattan,NY,303,Manhattan,NY
-10055,33080,Manhattan,NY,303,Manhattan,NY
-10060,33080,Manhattan,NY,303,Manhattan,NY
-10065,33080,Manhattan,NY,303,Manhattan,NY
-10069,33080,Manhattan,NY,303,Manhattan,NY
-10075,33080,Manhattan,NY,303,Manhattan,NY
-10080,33080,Manhattan,NY,303,Manhattan,NY
-10081,33080,Manhattan,NY,303,Manhattan,NY
-10087,33080,Manhattan,NY,303,Manhattan,NY
-10090,33080,Manhattan,NY,303,Manhattan,NY
-10101,33080,Manhattan,NY,303,Manhattan,NY
-10102,33080,Manhattan,NY,303,Manhattan,NY
-10103,33080,Manhattan,NY,303,Manhattan,NY
-10104,33080,Manhattan,NY,303,Manhattan,NY
-10105,33080,Manhattan,NY,303,Manhattan,NY
-10106,33080,Manhattan,NY,303,Manhattan,NY
-10107,33080,Manhattan,NY,303,Manhattan,NY
-10108,33080,Manhattan,NY,303,Manhattan,NY
-10109,33080,Manhattan,NY,303,Manhattan,NY
-10110,33080,Manhattan,NY,303,Manhattan,NY
-10111,33080,Manhattan,NY,303,Manhattan,NY
-10112,33080,Manhattan,NY,303,Manhattan,NY
-10113,33080,Manhattan,NY,303,Manhattan,NY
-10114,33080,Manhattan,NY,303,Manhattan,NY
-10115,33080,Manhattan,NY,303,Manhattan,NY
-10116,33080,Manhattan,NY,303,Manhattan,NY
-10117,33080,Manhattan,NY,303,Manhattan,NY
-10118,33080,Manhattan,NY,303,Manhattan,NY
-10119,33080,Manhattan,NY,303,Manhattan,NY
-10120,33080,Manhattan,NY,303,Manhattan,NY
-10121,33080,Manhattan,NY,303,Manhattan,NY
-10122,33080,Manhattan,NY,303,Manhattan,NY
-10123,33080,Manhattan,NY,303,Manhattan,NY
-10124,33080,Manhattan,NY,303,Manhattan,NY
-10125,33080,Manhattan,NY,303,Manhattan,NY
-10126,33080,Manhattan,NY,303,Manhattan,NY
-10128,33080,Manhattan,NY,303,Manhattan,NY
-10129,33080,Manhattan,NY,303,Manhattan,NY
-10130,33080,Manhattan,NY,303,Manhattan,NY
-10131,33080,Manhattan,NY,303,Manhattan,NY
-10132,33080,Manhattan,NY,303,Manhattan,NY
-10133,33080,Manhattan,NY,303,Manhattan,NY
-10138,33080,Manhattan,NY,303,Manhattan,NY
-10150,33080,Manhattan,NY,303,Manhattan,NY
-10151,33080,Manhattan,NY,303,Manhattan,NY
-10152,33080,Manhattan,NY,303,Manhattan,NY
-10153,33080,Manhattan,NY,303,Manhattan,NY
-10154,33080,Manhattan,NY,303,Manhattan,NY
-10155,33080,Manhattan,NY,303,Manhattan,NY
-10156,33080,Manhattan,NY,303,Manhattan,NY
-10157,33080,Manhattan,NY,303,Manhattan,NY
-10158,33080,Manhattan,NY,303,Manhattan,NY
-10159,33080,Manhattan,NY,303,Manhattan,NY
-10160,33080,Manhattan,NY,303,Manhattan,NY
-10162,33080,Manhattan,NY,303,Manhattan,NY
-10163,33080,Manhattan,NY,303,Manhattan,NY
-10164,33080,Manhattan,NY,303,Manhattan,NY
-10165,33080,Manhattan,NY,303,Manhattan,NY
-10166,33080,Manhattan,NY,303,Manhattan,NY
-10167,33080,Manhattan,NY,303,Manhattan,NY
-10168,33080,Manhattan,NY,303,Manhattan,NY
-10169,33080,Manhattan,NY,303,Manhattan,NY
-10170,33080,Manhattan,NY,303,Manhattan,NY
-10171,33080,Manhattan,NY,303,Manhattan,NY
-10172,33080,Manhattan,NY,303,Manhattan,NY
-10173,33080,Manhattan,NY,303,Manhattan,NY
-10174,33080,Manhattan,NY,303,Manhattan,NY
-10175,33080,Manhattan,NY,303,Manhattan,NY
-10176,33080,Manhattan,NY,303,Manhattan,NY
-10177,33080,Manhattan,NY,303,Manhattan,NY
-10178,33080,Manhattan,NY,303,Manhattan,NY
-10179,33080,Manhattan,NY,303,Manhattan,NY
-10185,33080,Manhattan,NY,303,Manhattan,NY
-10199,33080,Manhattan,NY,303,Manhattan,NY
-10203,33080,Manhattan,NY,303,Manhattan,NY
-10211,33080,Manhattan,NY,303,Manhattan,NY
-10212,33080,Manhattan,NY,303,Manhattan,NY
-10213,33080,Manhattan,NY,303,Manhattan,NY
-10242,33080,Manhattan,NY,303,Manhattan,NY
-10249,33080,Manhattan,NY,303,Manhattan,NY
-10256,33080,Manhattan,NY,303,Manhattan,NY
-10258,33080,Manhattan,NY,303,Manhattan,NY
-10259,33080,Manhattan,NY,303,Manhattan,NY
-10260,33080,Manhattan,NY,303,Manhattan,NY
-10261,33080,Manhattan,NY,303,Manhattan,NY
-10265,33080,Manhattan,NY,303,Manhattan,NY
-10268,33080,Manhattan,NY,303,Manhattan,NY
-10269,33080,Manhattan,NY,303,Manhattan,NY
-10270,33080,Manhattan,NY,303,Manhattan,NY
-10271,33080,Manhattan,NY,303,Manhattan,NY
-10272,33080,Manhattan,NY,303,Manhattan,NY
-10273,33080,Manhattan,NY,303,Manhattan,NY
-10274,33080,Manhattan,NY,303,Manhattan,NY
-10275,33080,Manhattan,NY,303,Manhattan,NY
-10276,33080,Manhattan,NY,303,Manhattan,NY
-10277,33080,Manhattan,NY,303,Manhattan,NY
-10278,33080,Manhattan,NY,303,Manhattan,NY
-10279,33080,Manhattan,NY,303,Manhattan,NY
-10280,33080,Manhattan,NY,303,Manhattan,NY
-10281,33080,Manhattan,NY,303,Manhattan,NY
-10282,33080,Manhattan,NY,303,Manhattan,NY
-10285,33080,Manhattan,NY,303,Manhattan,NY
-10286,33080,Manhattan,NY,303,Manhattan,NY
-10301,33121,Staten Island,NY,303,Manhattan,NY
-10302,33121,Staten Island,NY,303,Manhattan,NY
-10303,33121,Staten Island,NY,303,Manhattan,NY
-10304,33121,Staten Island,NY,303,Manhattan,NY
-10305,33121,Staten Island,NY,303,Manhattan,NY
-10306,33121,Staten Island,NY,303,Manhattan,NY
-10307,33121,Staten Island,NY,303,Manhattan,NY
-10308,33121,Staten Island,NY,303,Manhattan,NY
-10309,33121,Staten Island,NY,303,Manhattan,NY
-10310,33121,Staten Island,NY,303,Manhattan,NY
-10311,33121,Staten Island,NY,303,Manhattan,NY
-10312,33121,Staten Island,NY,303,Manhattan,NY
-10313,33121,Staten Island,NY,303,Manhattan,NY
-10314,33121,Staten Island,NY,303,Manhattan,NY
-10451,33012,Bronx,NY,297,Bronx,NY
-10452,33012,Bronx,NY,297,Bronx,NY
-10453,33012,Bronx,NY,297,Bronx,NY
-10454,33012,Bronx,NY,297,Bronx,NY
-10455,33012,Bronx,NY,297,Bronx,NY
-10456,33012,Bronx,NY,297,Bronx,NY
-10457,33012,Bronx,NY,297,Bronx,NY
-10458,33012,Bronx,NY,297,Bronx,NY
-10459,33012,Bronx,NY,297,Bronx,NY
-10460,33012,Bronx,NY,297,Bronx,NY
-10461,33012,Bronx,NY,297,Bronx,NY
-10462,33012,Bronx,NY,297,Bronx,NY
-10463,33080,Manhattan,NY,303,Manhattan,NY
-10464,33012,Bronx,NY,297,Bronx,NY
-10465,33012,Bronx,NY,297,Bronx,NY
-10466,33012,Bronx,NY,297,Bronx,NY
-10467,33012,Bronx,NY,297,Bronx,NY
-10468,33012,Bronx,NY,297,Bronx,NY
-10469,33012,Bronx,NY,297,Bronx,NY
-10470,33012,Bronx,NY,297,Bronx,NY
-10471,33080,Manhattan,NY,303,Manhattan,NY
-10472,33012,Bronx,NY,297,Bronx,NY
-10473,33012,Bronx,NY,297,Bronx,NY
-10474,33012,Bronx,NY,297,Bronx,NY
-10475,33012,Bronx,NY,297,Bronx,NY
-10501,33077,Mount Kisco,NY,308,White Plains,NY
-10502,33032,Dobbs Ferry,NY,308,White Plains,NY
-10503,33085,North Tarrytown,NY,308,White Plains,NY
-10504,33077,Mount Kisco,NY,308,White Plains,NY
-10505,33077,Mount Kisco,NY,308,White Plains,NY
-10506,33077,Mount Kisco,NY,308,White Plains,NY
-10507,33077,Mount Kisco,NY,308,White Plains,NY
-10509,33018,Carmel,NY,111,New Haven,CT
-10510,33085,North Tarrytown,NY,308,White Plains,NY
-10511,33096,Peekskill,NY,308,White Plains,NY
-10512,33018,Carmel,NY,111,New Haven,CT
-10514,33077,Mount Kisco,NY,308,White Plains,NY
-10516,33024,Cold Spring,NY,308,White Plains,NY
-10517,33096,Peekskill,NY,308,White Plains,NY
-10518,33077,Mount Kisco,NY,308,White Plains,NY
-10519,33077,Mount Kisco,NY,308,White Plains,NY
-10520,33085,North Tarrytown,NY,308,White Plains,NY
-10521,33085,North Tarrytown,NY,308,White Plains,NY
-10522,33032,Dobbs Ferry,NY,308,White Plains,NY
-10523,33085,North Tarrytown,NY,308,White Plains,NY
-10524,33096,Peekskill,NY,308,White Plains,NY
-10526,33077,Mount Kisco,NY,308,White Plains,NY
-10527,33077,Mount Kisco,NY,308,White Plains,NY
-10528,33100,Port Chester,NY,308,White Plains,NY
-10530,33139,White Plains,NY,308,White Plains,NY
-10532,33139,White Plains,NY,308,White Plains,NY
-10533,33085,North Tarrytown,NY,308,White Plains,NY
-10535,33077,Mount Kisco,NY,308,White Plains,NY
-10536,33077,Mount Kisco,NY,308,White Plains,NY
-10537,33096,Peekskill,NY,308,White Plains,NY
-10538,33079,New Rochelle,NY,297,Bronx,NY
-10540,33077,Mount Kisco,NY,308,White Plains,NY
-10541,33018,Carmel,NY,111,New Haven,CT
-10542,33018,Carmel,NY,111,New Haven,CT
-10543,33100,Port Chester,NY,308,White Plains,NY
-10545,33085,North Tarrytown,NY,308,White Plains,NY
-10546,33077,Mount Kisco,NY,308,White Plains,NY
-10547,33096,Peekskill,NY,308,White Plains,NY
-10548,33096,Peekskill,NY,308,White Plains,NY
-10549,33077,Mount Kisco,NY,308,White Plains,NY
-10550,33078,Mount Vernon,NY,308,White Plains,NY
-10551,33078,Mount Vernon,NY,308,White Plains,NY
-10552,33078,Mount Vernon,NY,308,White Plains,NY
-10553,33078,Mount Vernon,NY,308,White Plains,NY
-10560,33018,Carmel,NY,111,New Haven,CT
-10562,33085,North Tarrytown,NY,308,White Plains,NY
-10566,33096,Peekskill,NY,308,White Plains,NY
-10567,33096,Peekskill,NY,308,White Plains,NY
-10570,33077,Mount Kisco,NY,308,White Plains,NY
-10573,33100,Port Chester,NY,308,White Plains,NY
-10576,33077,Mount Kisco,NY,308,White Plains,NY
-10577,33139,White Plains,NY,308,White Plains,NY
-10578,33077,Mount Kisco,NY,308,White Plains,NY
-10579,33096,Peekskill,NY,308,White Plains,NY
-10580,33100,Port Chester,NY,308,White Plains,NY
-10583,33139,White Plains,NY,308,White Plains,NY
-10587,33077,Mount Kisco,NY,308,White Plains,NY
-10588,33096,Peekskill,NY,308,White Plains,NY
-10589,33077,Mount Kisco,NY,308,White Plains,NY
-10590,33077,Mount Kisco,NY,308,White Plains,NY
-10591,33085,North Tarrytown,NY,308,White Plains,NY
-10594,33077,Mount Kisco,NY,308,White Plains,NY
-10595,33139,White Plains,NY,308,White Plains,NY
-10596,33096,Peekskill,NY,308,White Plains,NY
-10597,33077,Mount Kisco,NY,308,White Plains,NY
-10598,33077,Mount Kisco,NY,308,White Plains,NY
-10601,33139,White Plains,NY,308,White Plains,NY
-10602,33139,White Plains,NY,308,White Plains,NY
-10603,33139,White Plains,NY,308,White Plains,NY
-10604,33139,White Plains,NY,308,White Plains,NY
-10605,33139,White Plains,NY,308,White Plains,NY
-10606,33139,White Plains,NY,308,White Plains,NY
-10607,33139,White Plains,NY,308,White Plains,NY
-10610,33139,White Plains,NY,308,White Plains,NY
-10701,33140,Yonkers,NY,308,White Plains,NY
-10702,33140,Yonkers,NY,308,White Plains,NY
-10703,33140,Yonkers,NY,308,White Plains,NY
-10704,33140,Yonkers,NY,308,White Plains,NY
-10705,33140,Yonkers,NY,308,White Plains,NY
-10706,33140,Yonkers,NY,308,White Plains,NY
-10707,33013,Bronxville,NY,308,White Plains,NY
-10708,33013,Bronxville,NY,308,White Plains,NY
-10709,33013,Bronxville,NY,308,White Plains,NY
-10710,33013,Bronxville,NY,308,White Plains,NY
-10801,33079,New Rochelle,NY,297,Bronx,NY
-10802,33079,New Rochelle,NY,297,Bronx,NY
-10803,33079,New Rochelle,NY,297,Bronx,NY
-10804,33079,New Rochelle,NY,297,Bronx,NY
-10805,33079,New Rochelle,NY,297,Bronx,NY
-10901,33123,Suffern,NY,292,Ridgewood,NJ
-10910,33045,Goshen,NY,292,Ridgewood,NJ
-10911,33088,Nyack,NY,284,Hackensack,NJ
-10912,33133,Warwick,NY,292,Ridgewood,NJ
-10913,33088,Nyack,NY,284,Hackensack,NJ
-10914,33028,Cornwall,NY,308,White Plains,NY
-10915,33074,Middletown,NY,308,White Plains,NY
-10916,33045,Goshen,NY,292,Ridgewood,NJ
-10917,33028,Cornwall,NY,308,White Plains,NY
-10918,33045,Goshen,NY,292,Ridgewood,NJ
-10919,33074,Middletown,NY,308,White Plains,NY
-10920,33088,Nyack,NY,284,Hackensack,NJ
-10921,33045,Goshen,NY,292,Ridgewood,NJ
-10922,33028,Cornwall,NY,308,White Plains,NY
-10923,33088,Nyack,NY,284,Hackensack,NJ
-10924,33045,Goshen,NY,292,Ridgewood,NJ
-10925,33133,Warwick,NY,292,Ridgewood,NJ
-10926,33045,Goshen,NY,292,Ridgewood,NJ
-10927,33088,Nyack,NY,284,Hackensack,NJ
-10928,33028,Cornwall,NY,308,White Plains,NY
-10930,33028,Cornwall,NY,308,White Plains,NY
-10931,33123,Suffern,NY,292,Ridgewood,NJ
-10932,33074,Middletown,NY,308,White Plains,NY
-10933,33074,Middletown,NY,308,White Plains,NY
-10940,33074,Middletown,NY,308,White Plains,NY
-10941,33074,Middletown,NY,308,White Plains,NY
-10949,33045,Goshen,NY,292,Ridgewood,NJ
-10950,33045,Goshen,NY,292,Ridgewood,NJ
-10952,33123,Suffern,NY,292,Ridgewood,NJ
-10953,33028,Cornwall,NY,308,White Plains,NY
-10954,33088,Nyack,NY,284,Hackensack,NJ
-10956,33088,Nyack,NY,284,Hackensack,NJ
-10958,33074,Middletown,NY,308,White Plains,NY
-10959,33133,Warwick,NY,292,Ridgewood,NJ
-10960,33088,Nyack,NY,284,Hackensack,NJ
-10962,33088,Nyack,NY,284,Hackensack,NJ
-10963,33074,Middletown,NY,308,White Plains,NY
-10964,33088,Nyack,NY,284,Hackensack,NJ
-10965,33088,Nyack,NY,284,Hackensack,NJ
-10968,33088,Nyack,NY,284,Hackensack,NJ
-10969,33074,Middletown,NY,308,White Plains,NY
-10970,33123,Suffern,NY,292,Ridgewood,NJ
-10973,33074,Middletown,NY,308,White Plains,NY
-10974,33123,Suffern,NY,292,Ridgewood,NJ
-10975,33045,Goshen,NY,292,Ridgewood,NJ
-10976,33088,Nyack,NY,284,Hackensack,NJ
-10977,33123,Suffern,NY,292,Ridgewood,NJ
-10979,33123,Suffern,NY,292,Ridgewood,NJ
-10980,33088,Nyack,NY,284,Hackensack,NJ
-10981,33045,Goshen,NY,292,Ridgewood,NJ
-10982,33123,Suffern,NY,292,Ridgewood,NJ
-10983,33088,Nyack,NY,284,Hackensack,NJ
-10984,33088,Nyack,NY,284,Hackensack,NJ
-10985,33074,Middletown,NY,308,White Plains,NY
-10986,33088,Nyack,NY,284,Hackensack,NJ
-10987,33123,Suffern,NY,292,Ridgewood,NJ
-10988,33074,Middletown,NY,308,White Plains,NY
-10989,33088,Nyack,NY,284,Hackensack,NJ
-10990,33133,Warwick,NY,292,Ridgewood,NJ
-10992,33028,Cornwall,NY,308,White Plains,NY
-10993,33088,Nyack,NY,284,Hackensack,NJ
-10994,33088,Nyack,NY,284,Hackensack,NJ
-10996,33028,Cornwall,NY,308,White Plains,NY
-10997,33028,Cornwall,NY,308,White Plains,NY
-10998,33074,Middletown,NY,308,White Plains,NY
-11001,33075,Mineola,NY,301,East Long Island,NY
-11002,33075,Mineola,NY,301,East Long Island,NY
-11003,33130,Valley Stream,NY,301,East Long Island,NY
-11004,33070,Manhasset,NY,301,East Long Island,NY
-11005,33070,Manhasset,NY,301,East Long Island,NY
-11010,33130,Valley Stream,NY,301,East Long Island,NY
-11020,33070,Manhasset,NY,301,East Long Island,NY
-11021,33070,Manhasset,NY,301,East Long Island,NY
-11022,33070,Manhasset,NY,301,East Long Island,NY
-11023,33070,Manhasset,NY,301,East Long Island,NY
-11024,33070,Manhasset,NY,301,East Long Island,NY
-11026,33070,Manhasset,NY,301,East Long Island,NY
-11027,33070,Manhasset,NY,301,East Long Island,NY
-11030,33070,Manhasset,NY,301,East Long Island,NY
-11040,33075,Mineola,NY,301,East Long Island,NY
-11042,33070,Manhasset,NY,301,East Long Island,NY
-11050,33070,Manhasset,NY,301,East Long Island,NY
-11051,33070,Manhasset,NY,301,East Long Island,NY
-11052,33070,Manhasset,NY,301,East Long Island,NY
-11053,33070,Manhasset,NY,301,East Long Island,NY
-11054,33070,Manhasset,NY,301,East Long Island,NY
-11055,33070,Manhasset,NY,301,East Long Island,NY
-11096,33038,Far Rockaway,NY,301,East Long Island,NY
-11101,33080,Manhattan,NY,303,Manhattan,NY
-11102,33067,Long Island City,NY,303,Manhattan,NY
-11103,33067,Long Island City,NY,303,Manhattan,NY
-11104,33080,Manhattan,NY,303,Manhattan,NY
-11105,33067,Long Island City,NY,303,Manhattan,NY
-11106,33067,Long Island City,NY,303,Manhattan,NY
-11109,33080,Manhattan,NY,303,Manhattan,NY
-11120,33080,Manhattan,NY,303,Manhattan,NY
-11201,33014,Brooklyn,NY,303,Manhattan,NY
-11202,33014,Brooklyn,NY,303,Manhattan,NY
-11203,33014,Brooklyn,NY,303,Manhattan,NY
-11204,33014,Brooklyn,NY,303,Manhattan,NY
-11205,33014,Brooklyn,NY,303,Manhattan,NY
-11206,33014,Brooklyn,NY,303,Manhattan,NY
-11207,33014,Brooklyn,NY,303,Manhattan,NY
-11208,33014,Brooklyn,NY,303,Manhattan,NY
-11209,33014,Brooklyn,NY,303,Manhattan,NY
-11210,33014,Brooklyn,NY,303,Manhattan,NY
-11211,33080,Manhattan,NY,303,Manhattan,NY
-11212,33014,Brooklyn,NY,303,Manhattan,NY
-11213,33014,Brooklyn,NY,303,Manhattan,NY
-11214,33014,Brooklyn,NY,303,Manhattan,NY
-11215,33014,Brooklyn,NY,303,Manhattan,NY
-11216,33014,Brooklyn,NY,303,Manhattan,NY
-11217,33014,Brooklyn,NY,303,Manhattan,NY
-11218,33014,Brooklyn,NY,303,Manhattan,NY
-11219,33014,Brooklyn,NY,303,Manhattan,NY
-11220,33014,Brooklyn,NY,303,Manhattan,NY
-11221,33014,Brooklyn,NY,303,Manhattan,NY
-11222,33080,Manhattan,NY,303,Manhattan,NY
-11223,33014,Brooklyn,NY,303,Manhattan,NY
-11224,33014,Brooklyn,NY,303,Manhattan,NY
-11225,33014,Brooklyn,NY,303,Manhattan,NY
-11226,33014,Brooklyn,NY,303,Manhattan,NY
-11228,33014,Brooklyn,NY,303,Manhattan,NY
-11229,33014,Brooklyn,NY,303,Manhattan,NY
-11230,33014,Brooklyn,NY,303,Manhattan,NY
-11231,33014,Brooklyn,NY,303,Manhattan,NY
-11232,33014,Brooklyn,NY,303,Manhattan,NY
-11233,33014,Brooklyn,NY,303,Manhattan,NY
-11234,33014,Brooklyn,NY,303,Manhattan,NY
-11235,33014,Brooklyn,NY,303,Manhattan,NY
-11236,33014,Brooklyn,NY,303,Manhattan,NY
-11237,33014,Brooklyn,NY,303,Manhattan,NY
-11238,33014,Brooklyn,NY,303,Manhattan,NY
-11239,33014,Brooklyn,NY,303,Manhattan,NY
-11241,33014,Brooklyn,NY,303,Manhattan,NY
-11242,33014,Brooklyn,NY,303,Manhattan,NY
-11243,33014,Brooklyn,NY,303,Manhattan,NY
-11245,33014,Brooklyn,NY,303,Manhattan,NY
-11247,33014,Brooklyn,NY,303,Manhattan,NY
-11249,33080,Manhattan,NY,303,Manhattan,NY
-11251,33014,Brooklyn,NY,303,Manhattan,NY
-11252,33014,Brooklyn,NY,303,Manhattan,NY
-11256,33014,Brooklyn,NY,303,Manhattan,NY
-11351,33039,Flushing,NY,301,East Long Island,NY
-11352,33039,Flushing,NY,301,East Long Island,NY
-11354,33039,Flushing,NY,301,East Long Island,NY
-11355,33039,Flushing,NY,301,East Long Island,NY
-11356,33039,Flushing,NY,301,East Long Island,NY
-11357,33039,Flushing,NY,301,East Long Island,NY
-11358,33039,Flushing,NY,301,East Long Island,NY
-11359,33039,Flushing,NY,301,East Long Island,NY
-11360,33039,Flushing,NY,301,East Long Island,NY
-11361,33039,Flushing,NY,301,East Long Island,NY
-11362,33070,Manhasset,NY,301,East Long Island,NY
-11363,33070,Manhasset,NY,301,East Long Island,NY
-11364,33039,Flushing,NY,301,East Long Island,NY
-11365,33039,Flushing,NY,301,East Long Island,NY
-11366,33039,Flushing,NY,301,East Long Island,NY
-11367,33039,Flushing,NY,301,East Long Island,NY
-11368,33039,Flushing,NY,301,East Long Island,NY
-11369,33039,Flushing,NY,301,East Long Island,NY
-11370,33039,Flushing,NY,301,East Long Island,NY
-11371,33039,Flushing,NY,301,East Long Island,NY
-11372,33039,Flushing,NY,301,East Long Island,NY
-11373,33039,Flushing,NY,301,East Long Island,NY
-11374,33039,Flushing,NY,301,East Long Island,NY
-11375,33039,Flushing,NY,301,East Long Island,NY
-11377,33080,Manhattan,NY,303,Manhattan,NY
-11378,33057,Jamaica,NY,301,East Long Island,NY
-11379,33057,Jamaica,NY,301,East Long Island,NY
-11380,33039,Flushing,NY,301,East Long Island,NY
-11381,33057,Jamaica,NY,301,East Long Island,NY
-11385,33057,Jamaica,NY,301,East Long Island,NY
-11386,33057,Jamaica,NY,301,East Long Island,NY
-11405,33057,Jamaica,NY,301,East Long Island,NY
-11411,33057,Jamaica,NY,301,East Long Island,NY
-11412,33057,Jamaica,NY,301,East Long Island,NY
-11413,33057,Jamaica,NY,301,East Long Island,NY
-11414,33057,Jamaica,NY,301,East Long Island,NY
-11415,33039,Flushing,NY,301,East Long Island,NY
-11416,33057,Jamaica,NY,301,East Long Island,NY
-11417,33057,Jamaica,NY,301,East Long Island,NY
-11418,33057,Jamaica,NY,301,East Long Island,NY
-11419,33057,Jamaica,NY,301,East Long Island,NY
-11420,33057,Jamaica,NY,301,East Long Island,NY
-11421,33057,Jamaica,NY,301,East Long Island,NY
-11422,33130,Valley Stream,NY,301,East Long Island,NY
-11423,33057,Jamaica,NY,301,East Long Island,NY
-11424,33039,Flushing,NY,301,East Long Island,NY
-11425,33057,Jamaica,NY,301,East Long Island,NY
-11426,33070,Manhasset,NY,301,East Long Island,NY
-11427,33039,Flushing,NY,301,East Long Island,NY
-11428,33039,Flushing,NY,301,East Long Island,NY
-11429,33057,Jamaica,NY,301,East Long Island,NY
-11430,33057,Jamaica,NY,301,East Long Island,NY
-11431,33057,Jamaica,NY,301,East Long Island,NY
-11432,33057,Jamaica,NY,301,East Long Island,NY
-11433,33057,Jamaica,NY,301,East Long Island,NY
-11434,33057,Jamaica,NY,301,East Long Island,NY
-11435,33039,Flushing,NY,301,East Long Island,NY
-11436,33057,Jamaica,NY,301,East Long Island,NY
-11439,33057,Jamaica,NY,301,East Long Island,NY
-11451,33057,Jamaica,NY,301,East Long Island,NY
-11499,33057,Jamaica,NY,301,East Long Island,NY
-11501,33075,Mineola,NY,301,East Long Island,NY
-11507,33075,Mineola,NY,301,East Long Island,NY
-11509,33066,Long Beach,NY,303,Manhattan,NY
-11510,33089,Oceanside,NY,301,East Long Island,NY
-11514,33075,Mineola,NY,301,East Long Island,NY
-11516,33038,Far Rockaway,NY,301,East Long Island,NY
-11518,33089,Oceanside,NY,301,East Long Island,NY
-11520,33089,Oceanside,NY,301,East Long Island,NY
-11530,33075,Mineola,NY,301,East Long Island,NY
-11531,33075,Mineola,NY,301,East Long Island,NY
-11542,33042,Glen Cove,NY,301,East Long Island,NY
-11545,33042,Glen Cove,NY,301,East Long Island,NY
-11547,33042,Glen Cove,NY,301,East Long Island,NY
-11548,33042,Glen Cove,NY,301,East Long Island,NY
-11549,33075,Mineola,NY,301,East Long Island,NY
-11550,33108,Rockville Centre,NY,301,East Long Island,NY
-11551,33108,Rockville Centre,NY,301,East Long Island,NY
-11552,33108,Rockville Centre,NY,301,East Long Island,NY
-11553,33034,East Meadow,NY,301,East Long Island,NY
-11554,33034,East Meadow,NY,301,East Long Island,NY
-11555,33034,East Meadow,NY,301,East Long Island,NY
-11556,33034,East Meadow,NY,301,East Long Island,NY
-11557,33089,Oceanside,NY,301,East Long Island,NY
-11558,33066,Long Beach,NY,303,Manhattan,NY
-11559,33038,Far Rockaway,NY,301,East Long Island,NY
-11560,33042,Glen Cove,NY,301,East Long Island,NY
-11561,33066,Long Beach,NY,303,Manhattan,NY
-11563,33089,Oceanside,NY,301,East Long Island,NY
-11565,33108,Rockville Centre,NY,301,East Long Island,NY
-11566,33089,Oceanside,NY,301,East Long Island,NY
-11568,33075,Mineola,NY,301,East Long Island,NY
-11569,33066,Long Beach,NY,303,Manhattan,NY
-11570,33108,Rockville Centre,NY,301,East Long Island,NY
-11571,33108,Rockville Centre,NY,301,East Long Island,NY
-11572,33089,Oceanside,NY,301,East Long Island,NY
-11575,33034,East Meadow,NY,301,East Long Island,NY
-11576,33070,Manhasset,NY,301,East Long Island,NY
-11577,33070,Manhasset,NY,301,East Long Island,NY
-11579,33042,Glen Cove,NY,301,East Long Island,NY
-11580,33130,Valley Stream,NY,301,East Long Island,NY
-11581,33130,Valley Stream,NY,301,East Long Island,NY
-11582,33130,Valley Stream,NY,301,East Long Island,NY
-11590,33075,Mineola,NY,301,East Long Island,NY
-11596,33075,Mineola,NY,301,East Long Island,NY
-11598,33038,Far Rockaway,NY,301,East Long Island,NY
-11599,33075,Mineola,NY,301,East Long Island,NY
-11690,33038,Far Rockaway,NY,301,East Long Island,NY
-11691,33038,Far Rockaway,NY,301,East Long Island,NY
-11692,33038,Far Rockaway,NY,301,East Long Island,NY
-11693,33038,Far Rockaway,NY,301,East Long Island,NY
-11694,33038,Far Rockaway,NY,301,East Long Island,NY
-11695,33038,Far Rockaway,NY,301,East Long Island,NY
-11697,33038,Far Rockaway,NY,301,East Long Island,NY
-11701,33003,Amityville,NY,301,East Long Island,NY
-11702,33137,West Islip,NY,301,East Long Island,NY
-11703,33137,West Islip,NY,301,East Long Island,NY
-11704,33137,West Islip,NY,301,East Long Island,NY
-11705,33095,Patchogue,NY,301,East Long Island,NY
-11706,33008,Bay Shore,NY,301,East Long Island,NY
-11707,33137,West Islip,NY,301,East Long Island,NY
-11709,33042,Glen Cove,NY,301,East Long Island,NY
-11710,33034,East Meadow,NY,301,East Long Island,NY
-11713,33095,Patchogue,NY,301,East Long Island,NY
-11714,33009,Bethpage,NY,301,East Long Island,NY
-11715,33095,Patchogue,NY,301,East Long Island,NY
-11716,33008,Bay Shore,NY,301,East Long Island,NY
-11717,33008,Bay Shore,NY,301,East Long Island,NY
-11718,33008,Bay Shore,NY,301,East Long Island,NY
-11719,33095,Patchogue,NY,301,East Long Island,NY
-11720,33101,Port Jefferson,NY,301,East Long Island,NY
-11721,33053,Huntington,NY,301,East Long Island,NY
-11722,33116,Smithtown,NY,301,East Long Island,NY
-11724,33053,Huntington,NY,301,East Long Island,NY
-11725,33116,Smithtown,NY,301,East Long Island,NY
-11726,33003,Amityville,NY,301,East Long Island,NY
-11727,33101,Port Jefferson,NY,301,East Long Island,NY
-11729,33137,West Islip,NY,301,East Long Island,NY
-11730,33008,Bay Shore,NY,301,East Long Island,NY
-11731,33053,Huntington,NY,301,East Long Island,NY
-11732,33042,Glen Cove,NY,301,East Long Island,NY
-11733,33101,Port Jefferson,NY,301,East Long Island,NY
-11735,33009,Bethpage,NY,301,East Long Island,NY
-11737,33009,Bethpage,NY,301,East Long Island,NY
-11738,33101,Port Jefferson,NY,301,East Long Island,NY
-11739,33008,Bay Shore,NY,301,East Long Island,NY
-11740,33053,Huntington,NY,301,East Long Island,NY
-11741,33095,Patchogue,NY,301,East Long Island,NY
-11742,33095,Patchogue,NY,301,East Long Island,NY
-11743,33053,Huntington,NY,301,East Long Island,NY
-11746,33053,Huntington,NY,301,East Long Island,NY
-11747,33053,Huntington,NY,301,East Long Island,NY
-11749,33116,Smithtown,NY,301,East Long Island,NY
-11751,33008,Bay Shore,NY,301,East Long Island,NY
-11752,33008,Bay Shore,NY,301,East Long Island,NY
-11753,33124,Syosset,NY,301,East Long Island,NY
-11754,33116,Smithtown,NY,301,East Long Island,NY
-11755,33122,Stony Brook,NY,301,East Long Island,NY
-11756,33009,Bethpage,NY,301,East Long Island,NY
-11757,33137,West Islip,NY,301,East Long Island,NY
-11758,33003,Amityville,NY,301,East Long Island,NY
-11760,33116,Smithtown,NY,301,East Long Island,NY
-11762,33003,Amityville,NY,301,East Long Island,NY
-11763,33095,Patchogue,NY,301,East Long Island,NY
-11764,33101,Port Jefferson,NY,301,East Long Island,NY
-11765,33042,Glen Cove,NY,301,East Long Island,NY
-11766,33101,Port Jefferson,NY,301,East Long Island,NY
-11767,33116,Smithtown,NY,301,East Long Island,NY
-11768,33053,Huntington,NY,301,East Long Island,NY
-11769,33008,Bay Shore,NY,301,East Long Island,NY
-11770,33008,Bay Shore,NY,301,East Long Island,NY
-11771,33042,Glen Cove,NY,301,East Long Island,NY
-11772,33095,Patchogue,NY,301,East Long Island,NY
-11773,33124,Syosset,NY,301,East Long Island,NY
-11775,33053,Huntington,NY,301,East Long Island,NY
-11776,33101,Port Jefferson,NY,301,East Long Island,NY
-11777,33101,Port Jefferson,NY,301,East Long Island,NY
-11778,33101,Port Jefferson,NY,301,East Long Island,NY
-11779,33116,Smithtown,NY,301,East Long Island,NY
-11780,33116,Smithtown,NY,301,East Long Island,NY
-11782,33008,Bay Shore,NY,301,East Long Island,NY
-11783,33114,Seaford,NY,301,East Long Island,NY
-11784,33101,Port Jefferson,NY,301,East Long Island,NY
-11786,33101,Port Jefferson,NY,301,East Long Island,NY
-11787,33116,Smithtown,NY,301,East Long Island,NY
-11788,33116,Smithtown,NY,301,East Long Island,NY
-11789,33101,Port Jefferson,NY,301,East Long Island,NY
-11790,33122,Stony Brook,NY,301,East Long Island,NY
-11791,33124,Syosset,NY,301,East Long Island,NY
-11792,33101,Port Jefferson,NY,301,East Long Island,NY
-11793,33009,Bethpage,NY,301,East Long Island,NY
-11794,33101,Port Jefferson,NY,301,East Long Island,NY
-11795,33137,West Islip,NY,301,East Long Island,NY
-11796,33008,Bay Shore,NY,301,East Long Island,NY
-11797,33124,Syosset,NY,301,East Long Island,NY
-11798,33137,West Islip,NY,301,East Long Island,NY
-11801,33098,Plainview,NY,301,East Long Island,NY
-11802,33098,Plainview,NY,301,East Long Island,NY
-11803,33098,Plainview,NY,301,East Long Island,NY
-11804,33098,Plainview,NY,301,East Long Island,NY
-11815,33098,Plainview,NY,301,East Long Island,NY
-11853,33075,Mineola,NY,301,East Long Island,NY
-11901,33106,Riverhead,NY,301,East Long Island,NY
-11930,33118,Southampton,NY,301,East Long Island,NY
-11931,33106,Riverhead,NY,301,East Long Island,NY
-11932,33118,Southampton,NY,301,East Long Island,NY
-11933,33106,Riverhead,NY,301,East Long Island,NY
-11934,33095,Patchogue,NY,301,East Long Island,NY
-11935,33048,Greenport,NY,301,East Long Island,NY
-11937,33118,Southampton,NY,301,East Long Island,NY
-11939,33048,Greenport,NY,301,East Long Island,NY
-11940,33106,Riverhead,NY,301,East Long Island,NY
-11941,33106,Riverhead,NY,301,East Long Island,NY
-11942,33118,Southampton,NY,301,East Long Island,NY
-11944,33048,Greenport,NY,301,East Long Island,NY
-11946,33118,Southampton,NY,301,East Long Island,NY
-11947,33106,Riverhead,NY,301,East Long Island,NY
-11948,33106,Riverhead,NY,301,East Long Island,NY
-11949,33106,Riverhead,NY,301,East Long Island,NY
-11950,33095,Patchogue,NY,301,East Long Island,NY
-11951,33095,Patchogue,NY,301,East Long Island,NY
-11952,33106,Riverhead,NY,301,East Long Island,NY
-11953,33101,Port Jefferson,NY,301,East Long Island,NY
-11954,33118,Southampton,NY,301,East Long Island,NY
-11955,33095,Patchogue,NY,301,East Long Island,NY
-11956,33048,Greenport,NY,301,East Long Island,NY
-11957,33048,Greenport,NY,301,East Long Island,NY
-11958,33048,Greenport,NY,301,East Long Island,NY
-11959,33118,Southampton,NY,301,East Long Island,NY
-11960,33106,Riverhead,NY,301,East Long Island,NY
-11961,33101,Port Jefferson,NY,301,East Long Island,NY
-11962,33118,Southampton,NY,301,East Long Island,NY
-11963,33118,Southampton,NY,301,East Long Island,NY
-11964,33048,Greenport,NY,301,East Long Island,NY
-11965,33048,Greenport,NY,301,East Long Island,NY
-11967,33095,Patchogue,NY,301,East Long Island,NY
-11968,33118,Southampton,NY,301,East Long Island,NY
-11969,33118,Southampton,NY,301,East Long Island,NY
-11970,33106,Riverhead,NY,301,East Long Island,NY
-11971,33048,Greenport,NY,301,East Long Island,NY
-11972,33106,Riverhead,NY,301,East Long Island,NY
-11973,33101,Port Jefferson,NY,301,East Long Island,NY
-11975,33118,Southampton,NY,301,East Long Island,NY
-11976,33118,Southampton,NY,301,East Long Island,NY
-11977,33106,Riverhead,NY,301,East Long Island,NY
-11978,33106,Riverhead,NY,301,East Long Island,NY
-11980,33095,Patchogue,NY,301,East Long Island,NY
-12007,33001,Albany,NY,295,Albany,NY
-12008,33113,Schenectady,NY,295,Albany,NY
-12009,33001,Albany,NY,295,Albany,NY
-12010,33004,Amsterdam,NY,295,Albany,NY
-12015,33020,Catskill,NY,295,Albany,NY
-12016,33004,Amsterdam,NY,295,Albany,NY
-12017,22051,Pittsfield,MA,295,Albany,NY
-12018,33127,Troy,NY,295,Albany,NY
-12019,33113,Schenectady,NY,295,Albany,NY
-12020,33112,Saratoga Springs,NY,295,Albany,NY
-12022,47002,Bennington,VT,295,Albany,NY
-12023,33001,Albany,NY,295,Albany,NY
-12024,22051,Pittsfield,MA,295,Albany,NY
-12025,33004,Amsterdam,NY,295,Albany,NY
-12027,33113,Schenectady,NY,295,Albany,NY
-12028,47002,Bennington,VT,295,Albany,NY
-12029,22051,Pittsfield,MA,295,Albany,NY
-12031,33004,Amsterdam,NY,295,Albany,NY
-12032,33044,Gloversville,NY,295,Albany,NY
-12033,33001,Albany,NY,295,Albany,NY
-12035,33023,Cobleskill,NY,295,Albany,NY
-12036,33093,Oneonta,NY,296,Binghamton,NY
-12037,22051,Pittsfield,MA,295,Albany,NY
-12040,47002,Bennington,VT,295,Albany,NY
-12041,33001,Albany,NY,295,Albany,NY
-12042,33001,Albany,NY,295,Albany,NY
-12043,33023,Cobleskill,NY,295,Albany,NY
-12045,33001,Albany,NY,295,Albany,NY
-12046,33001,Albany,NY,295,Albany,NY
-12047,33127,Troy,NY,295,Albany,NY
-12050,33020,Catskill,NY,295,Albany,NY
-12051,33001,Albany,NY,295,Albany,NY
-12052,33127,Troy,NY,295,Albany,NY
-12053,33113,Schenectady,NY,295,Albany,NY
-12054,33001,Albany,NY,295,Albany,NY
-12055,33001,Albany,NY,295,Albany,NY
-12056,33113,Schenectady,NY,295,Albany,NY
-12057,47002,Bennington,VT,295,Albany,NY
-12058,33001,Albany,NY,295,Albany,NY
-12059,33001,Albany,NY,295,Albany,NY
-12060,22051,Pittsfield,MA,295,Albany,NY
-12061,33001,Albany,NY,295,Albany,NY
-12062,22051,Pittsfield,MA,295,Albany,NY
-12063,33001,Albany,NY,295,Albany,NY
-12064,33093,Oneonta,NY,296,Binghamton,NY
-12065,33113,Schenectady,NY,295,Albany,NY
-12066,33113,Schenectady,NY,295,Albany,NY
-12067,33001,Albany,NY,295,Albany,NY
-12068,33004,Amsterdam,NY,295,Albany,NY
-12069,33004,Amsterdam,NY,295,Albany,NY
-12070,33004,Amsterdam,NY,295,Albany,NY
-12071,33023,Cobleskill,NY,295,Albany,NY
-12072,33004,Amsterdam,NY,295,Albany,NY
-12073,33023,Cobleskill,NY,295,Albany,NY
-12074,33113,Schenectady,NY,295,Albany,NY
-12075,33020,Catskill,NY,295,Albany,NY
-12076,33071,Margaretville,NY,295,Albany,NY
-12077,33001,Albany,NY,295,Albany,NY
-12078,33044,Gloversville,NY,295,Albany,NY
-12082,33127,Troy,NY,295,Albany,NY
-12083,33001,Albany,NY,295,Albany,NY
-12084,33001,Albany,NY,295,Albany,NY
-12085,33001,Albany,NY,295,Albany,NY
-12086,33004,Amsterdam,NY,295,Albany,NY
-12087,33001,Albany,NY,295,Albany,NY
-12089,47002,Bennington,VT,295,Albany,NY
-12090,47002,Bennington,VT,295,Albany,NY
-12092,33023,Cobleskill,NY,295,Albany,NY
-12093,33093,Oneonta,NY,296,Binghamton,NY
-12094,33127,Troy,NY,295,Albany,NY
-12095,33044,Gloversville,NY,295,Albany,NY
-12106,33020,Catskill,NY,295,Albany,NY
-12107,33001,Albany,NY,295,Albany,NY
-12108,33044,Gloversville,NY,295,Albany,NY
-12110,33001,Albany,NY,295,Albany,NY
-12115,33001,Albany,NY,295,Albany,NY
-12116,33093,Oneonta,NY,296,Binghamton,NY
-12117,33044,Gloversville,NY,295,Albany,NY
-12118,33127,Troy,NY,295,Albany,NY
-12120,33001,Albany,NY,295,Albany,NY
-12121,33127,Troy,NY,295,Albany,NY
-12122,33023,Cobleskill,NY,295,Albany,NY
-12123,33001,Albany,NY,295,Albany,NY
-12124,33001,Albany,NY,295,Albany,NY
-12125,22051,Pittsfield,MA,295,Albany,NY
-12128,33001,Albany,NY,295,Albany,NY
-12130,33001,Albany,NY,295,Albany,NY
-12131,33093,Oneonta,NY,296,Binghamton,NY
-12132,33001,Albany,NY,295,Albany,NY
-12133,47002,Bennington,VT,295,Albany,NY
-12134,33044,Gloversville,NY,295,Albany,NY
-12136,22051,Pittsfield,MA,295,Albany,NY
-12137,33113,Schenectady,NY,295,Albany,NY
-12138,47002,Bennington,VT,295,Albany,NY
-12139,33128,Utica,NY,300,Elmira,NY
-12140,33127,Troy,NY,295,Albany,NY
-12141,33113,Schenectady,NY,295,Albany,NY
-12143,33001,Albany,NY,295,Albany,NY
-12144,33001,Albany,NY,295,Albany,NY
-12147,33001,Albany,NY,295,Albany,NY
-12148,33113,Schenectady,NY,295,Albany,NY
-12149,33023,Cobleskill,NY,295,Albany,NY
-12150,33113,Schenectady,NY,295,Albany,NY
-12151,33113,Schenectady,NY,295,Albany,NY
-12153,33127,Troy,NY,295,Albany,NY
-12154,33127,Troy,NY,295,Albany,NY
-12155,33093,Oneonta,NY,296,Binghamton,NY
-12156,33001,Albany,NY,295,Albany,NY
-12157,33023,Cobleskill,NY,295,Albany,NY
-12158,33001,Albany,NY,295,Albany,NY
-12159,33001,Albany,NY,295,Albany,NY
-12160,33023,Cobleskill,NY,295,Albany,NY
-12161,33001,Albany,NY,295,Albany,NY
-12164,33044,Gloversville,NY,295,Albany,NY
-12165,22051,Pittsfield,MA,295,Albany,NY
-12166,33004,Amsterdam,NY,295,Albany,NY
-12167,33093,Oneonta,NY,296,Binghamton,NY
-12168,22051,Pittsfield,MA,295,Albany,NY
-12169,22051,Pittsfield,MA,295,Albany,NY
-12170,33127,Troy,NY,295,Albany,NY
-12172,33020,Catskill,NY,295,Albany,NY
-12173,33020,Catskill,NY,295,Albany,NY
-12174,33020,Catskill,NY,295,Albany,NY
-12175,33023,Cobleskill,NY,295,Albany,NY
-12176,33001,Albany,NY,295,Albany,NY
-12177,33004,Amsterdam,NY,295,Albany,NY
-12180,33127,Troy,NY,295,Albany,NY
-12181,33127,Troy,NY,295,Albany,NY
-12182,33127,Troy,NY,295,Albany,NY
-12183,33127,Troy,NY,295,Albany,NY
-12184,33001,Albany,NY,295,Albany,NY
-12185,33127,Troy,NY,295,Albany,NY
-12186,33001,Albany,NY,295,Albany,NY
-12187,33023,Cobleskill,NY,295,Albany,NY
-12188,33127,Troy,NY,295,Albany,NY
-12189,33127,Troy,NY,295,Albany,NY
-12190,33044,Gloversville,NY,295,Albany,NY
-12192,33001,Albany,NY,295,Albany,NY
-12193,33001,Albany,NY,295,Albany,NY
-12194,33023,Cobleskill,NY,295,Albany,NY
-12195,22051,Pittsfield,MA,295,Albany,NY
-12196,33001,Albany,NY,295,Albany,NY
-12197,33093,Oneonta,NY,296,Binghamton,NY
-12198,33127,Troy,NY,295,Albany,NY
-12201,33001,Albany,NY,295,Albany,NY
-12202,33001,Albany,NY,295,Albany,NY
-12203,33001,Albany,NY,295,Albany,NY
-12204,33001,Albany,NY,295,Albany,NY
-12205,33001,Albany,NY,295,Albany,NY
-12206,33001,Albany,NY,295,Albany,NY
-12207,33001,Albany,NY,295,Albany,NY
-12208,33001,Albany,NY,295,Albany,NY
-12209,33001,Albany,NY,295,Albany,NY
-12210,33001,Albany,NY,295,Albany,NY
-12211,33001,Albany,NY,295,Albany,NY
-12212,33001,Albany,NY,295,Albany,NY
-12214,33001,Albany,NY,295,Albany,NY
-12220,33001,Albany,NY,295,Albany,NY
-12222,33001,Albany,NY,295,Albany,NY
-12223,33001,Albany,NY,295,Albany,NY
-12224,33001,Albany,NY,295,Albany,NY
-12225,33001,Albany,NY,295,Albany,NY
-12226,33001,Albany,NY,295,Albany,NY
-12227,33001,Albany,NY,295,Albany,NY
-12228,33001,Albany,NY,295,Albany,NY
-12229,33001,Albany,NY,295,Albany,NY
-12230,33001,Albany,NY,295,Albany,NY
-12231,33001,Albany,NY,295,Albany,NY
-12232,33001,Albany,NY,295,Albany,NY
-12233,33001,Albany,NY,295,Albany,NY
-12234,33001,Albany,NY,295,Albany,NY
-12235,33001,Albany,NY,295,Albany,NY
-12236,33001,Albany,NY,295,Albany,NY
-12237,33001,Albany,NY,295,Albany,NY
-12238,33001,Albany,NY,295,Albany,NY
-12239,33001,Albany,NY,295,Albany,NY
-12240,33001,Albany,NY,295,Albany,NY
-12241,33001,Albany,NY,295,Albany,NY
-12242,33001,Albany,NY,295,Albany,NY
-12243,33001,Albany,NY,295,Albany,NY
-12244,33001,Albany,NY,295,Albany,NY
-12245,33001,Albany,NY,295,Albany,NY
-12246,33001,Albany,NY,295,Albany,NY
-12247,33001,Albany,NY,295,Albany,NY
-12248,33001,Albany,NY,295,Albany,NY
-12249,33001,Albany,NY,295,Albany,NY
-12250,33001,Albany,NY,295,Albany,NY
-12255,33001,Albany,NY,295,Albany,NY
-12257,33001,Albany,NY,295,Albany,NY
-12260,33001,Albany,NY,295,Albany,NY
-12261,33001,Albany,NY,295,Albany,NY
-12288,33001,Albany,NY,295,Albany,NY
-12301,33113,Schenectady,NY,295,Albany,NY
-12302,33113,Schenectady,NY,295,Albany,NY
-12303,33113,Schenectady,NY,295,Albany,NY
-12304,33113,Schenectady,NY,295,Albany,NY
-12305,33113,Schenectady,NY,295,Albany,NY
-12306,33113,Schenectady,NY,295,Albany,NY
-12307,33113,Schenectady,NY,295,Albany,NY
-12308,33113,Schenectady,NY,295,Albany,NY
-12309,33113,Schenectady,NY,295,Albany,NY
-12325,33113,Schenectady,NY,295,Albany,NY
-12345,33113,Schenectady,NY,295,Albany,NY
-12401,33060,Kingston,NY,295,Albany,NY
-12402,33060,Kingston,NY,295,Albany,NY
-12404,33060,Kingston,NY,295,Albany,NY
-12405,33020,Catskill,NY,295,Albany,NY
-12406,33071,Margaretville,NY,295,Albany,NY
-12407,33071,Margaretville,NY,295,Albany,NY
-12409,33060,Kingston,NY,295,Albany,NY
-12410,33060,Kingston,NY,295,Albany,NY
-12411,33060,Kingston,NY,295,Albany,NY
-12412,33060,Kingston,NY,295,Albany,NY
-12413,33020,Catskill,NY,295,Albany,NY
-12414,33020,Catskill,NY,295,Albany,NY
-12416,33060,Kingston,NY,295,Albany,NY
-12417,33060,Kingston,NY,295,Albany,NY
-12418,33020,Catskill,NY,295,Albany,NY
-12419,33060,Kingston,NY,295,Albany,NY
-12420,33074,Middletown,NY,308,White Plains,NY
-12421,33071,Margaretville,NY,295,Albany,NY
-12422,33020,Catskill,NY,295,Albany,NY
-12423,33020,Catskill,NY,295,Albany,NY
-12424,33020,Catskill,NY,295,Albany,NY
-12427,33060,Kingston,NY,295,Albany,NY
-12428,33036,Ellenville,NY,295,Albany,NY
-12429,33060,Kingston,NY,295,Albany,NY
-12430,33071,Margaretville,NY,295,Albany,NY
-12431,33001,Albany,NY,295,Albany,NY
-12432,33060,Kingston,NY,295,Albany,NY
-12433,33060,Kingston,NY,295,Albany,NY
-12434,33093,Oneonta,NY,296,Binghamton,NY
-12435,33036,Ellenville,NY,295,Albany,NY
-12436,33020,Catskill,NY,295,Albany,NY
-12438,33071,Margaretville,NY,295,Albany,NY
-12439,33020,Catskill,NY,295,Albany,NY
-12440,33060,Kingston,NY,295,Albany,NY
-12441,33071,Margaretville,NY,295,Albany,NY
-12442,33020,Catskill,NY,295,Albany,NY
-12443,33060,Kingston,NY,295,Albany,NY
-12444,33020,Catskill,NY,295,Albany,NY
-12446,33060,Kingston,NY,295,Albany,NY
-12448,33060,Kingston,NY,295,Albany,NY
-12449,33060,Kingston,NY,295,Albany,NY
-12450,33060,Kingston,NY,295,Albany,NY
-12451,33020,Catskill,NY,295,Albany,NY
-12452,33060,Kingston,NY,295,Albany,NY
-12453,33060,Kingston,NY,295,Albany,NY
-12454,33020,Catskill,NY,295,Albany,NY
-12455,33071,Margaretville,NY,295,Albany,NY
-12456,33060,Kingston,NY,295,Albany,NY
-12457,33060,Kingston,NY,295,Albany,NY
-12458,33036,Ellenville,NY,295,Albany,NY
-12459,33071,Margaretville,NY,295,Albany,NY
-12460,33001,Albany,NY,295,Albany,NY
-12461,33060,Kingston,NY,295,Albany,NY
-12463,33020,Catskill,NY,295,Albany,NY
-12464,33060,Kingston,NY,295,Albany,NY
-12465,33071,Margaretville,NY,295,Albany,NY
-12466,33060,Kingston,NY,295,Albany,NY
-12468,33071,Margaretville,NY,295,Albany,NY
-12469,33001,Albany,NY,295,Albany,NY
-12470,33020,Catskill,NY,295,Albany,NY
-12471,33060,Kingston,NY,295,Albany,NY
-12472,33060,Kingston,NY,295,Albany,NY
-12473,33020,Catskill,NY,295,Albany,NY
-12474,33071,Margaretville,NY,295,Albany,NY
-12475,33060,Kingston,NY,295,Albany,NY
-12477,33060,Kingston,NY,295,Albany,NY
-12480,33060,Kingston,NY,295,Albany,NY
-12481,33060,Kingston,NY,295,Albany,NY
-12482,33020,Catskill,NY,295,Albany,NY
-12483,33036,Ellenville,NY,295,Albany,NY
-12484,33060,Kingston,NY,295,Albany,NY
-12485,33060,Kingston,NY,295,Albany,NY
-12486,33060,Kingston,NY,295,Albany,NY
-12487,33060,Kingston,NY,295,Albany,NY
-12489,33036,Ellenville,NY,295,Albany,NY
-12490,33060,Kingston,NY,295,Albany,NY
-12491,33060,Kingston,NY,295,Albany,NY
-12492,33060,Kingston,NY,295,Albany,NY
-12493,33060,Kingston,NY,295,Albany,NY
-12494,33060,Kingston,NY,295,Albany,NY
-12495,33060,Kingston,NY,295,Albany,NY
-12496,33020,Catskill,NY,295,Albany,NY
-12498,33060,Kingston,NY,295,Albany,NY
-12501,7021,Sharon,CT,110,Hartford,CT
-12502,7021,Sharon,CT,110,Hartford,CT
-12503,7021,Sharon,CT,110,Hartford,CT
-12504,33105,Rhinebeck,NY,295,Albany,NY
-12506,7021,Sharon,CT,110,Hartford,CT
-12507,33105,Rhinebeck,NY,295,Albany,NY
-12508,33104,Poughkeepsie,NY,295,Albany,NY
-12510,33104,Poughkeepsie,NY,295,Albany,NY
-12511,33104,Poughkeepsie,NY,295,Albany,NY
-12512,33104,Poughkeepsie,NY,295,Albany,NY
-12513,33020,Catskill,NY,295,Albany,NY
-12514,33104,Poughkeepsie,NY,295,Albany,NY
-12515,33104,Poughkeepsie,NY,295,Albany,NY
-12516,22020,Great Barrington,MA,230,Springfield,MA
-12517,22020,Great Barrington,MA,230,Springfield,MA
-12518,33028,Cornwall,NY,308,White Plains,NY
-12520,33028,Cornwall,NY,308,White Plains,NY
-12521,33020,Catskill,NY,295,Albany,NY
-12522,7021,Sharon,CT,110,Hartford,CT
-12523,33020,Catskill,NY,295,Albany,NY
-12524,33104,Poughkeepsie,NY,295,Albany,NY
-12525,33060,Kingston,NY,295,Albany,NY
-12526,33020,Catskill,NY,295,Albany,NY
-12527,33104,Poughkeepsie,NY,295,Albany,NY
-12528,33104,Poughkeepsie,NY,295,Albany,NY
-12529,22020,Great Barrington,MA,230,Springfield,MA
-12530,33020,Catskill,NY,295,Albany,NY
-12531,33018,Carmel,NY,111,New Haven,CT
-12533,33104,Poughkeepsie,NY,295,Albany,NY
-12534,33020,Catskill,NY,295,Albany,NY
-12537,33104,Poughkeepsie,NY,295,Albany,NY
-12538,33104,Poughkeepsie,NY,295,Albany,NY
-12540,33104,Poughkeepsie,NY,295,Albany,NY
-12541,33020,Catskill,NY,295,Albany,NY
-12542,33082,Newburgh,NY,308,White Plains,NY
-12543,33045,Goshen,NY,292,Ridgewood,NJ
-12544,33020,Catskill,NY,295,Albany,NY
-12545,7021,Sharon,CT,110,Hartford,CT
-12546,7021,Sharon,CT,110,Hartford,CT
-12547,33104,Poughkeepsie,NY,295,Albany,NY
-12548,33060,Kingston,NY,295,Albany,NY
-12549,33074,Middletown,NY,308,White Plains,NY
-12550,33082,Newburgh,NY,308,White Plains,NY
-12551,33082,Newburgh,NY,308,White Plains,NY
-12552,33082,Newburgh,NY,308,White Plains,NY
-12553,33028,Cornwall,NY,308,White Plains,NY
-12555,33082,Newburgh,NY,308,White Plains,NY
-12561,33060,Kingston,NY,295,Albany,NY
-12563,33018,Carmel,NY,111,New Haven,CT
-12564,7015,New Milford,CT,111,New Haven,CT
-12565,33020,Catskill,NY,295,Albany,NY
-12566,33074,Middletown,NY,308,White Plains,NY
-12567,7021,Sharon,CT,110,Hartford,CT
-12568,33082,Newburgh,NY,308,White Plains,NY
-12569,33104,Poughkeepsie,NY,295,Albany,NY
-12570,33104,Poughkeepsie,NY,295,Albany,NY
-12571,33105,Rhinebeck,NY,295,Albany,NY
-12572,33105,Rhinebeck,NY,295,Albany,NY
-12574,33105,Rhinebeck,NY,295,Albany,NY
-12575,33028,Cornwall,NY,308,White Plains,NY
-12577,33028,Cornwall,NY,308,White Plains,NY
-12578,33104,Poughkeepsie,NY,295,Albany,NY
-12580,33104,Poughkeepsie,NY,295,Albany,NY
-12581,7021,Sharon,CT,110,Hartford,CT
-12582,33104,Poughkeepsie,NY,295,Albany,NY
-12583,33105,Rhinebeck,NY,295,Albany,NY
-12584,33028,Cornwall,NY,308,White Plains,NY
-12585,33104,Poughkeepsie,NY,295,Albany,NY
-12586,33082,Newburgh,NY,308,White Plains,NY
-12588,33074,Middletown,NY,308,White Plains,NY
-12589,33082,Newburgh,NY,308,White Plains,NY
-12590,33104,Poughkeepsie,NY,295,Albany,NY
-12592,7021,Sharon,CT,110,Hartford,CT
-12594,7015,New Milford,CT,111,New Haven,CT
-12601,33104,Poughkeepsie,NY,295,Albany,NY
-12602,33104,Poughkeepsie,NY,295,Albany,NY
-12603,33104,Poughkeepsie,NY,295,Albany,NY
-12604,33104,Poughkeepsie,NY,295,Albany,NY
-12701,33050,Harris,NY,295,Albany,NY
-12719,33102,Port Jervis,NY,285,Morristown,NJ
-12720,33050,Harris,NY,295,Albany,NY
-12721,33074,Middletown,NY,308,White Plains,NY
-12722,33074,Middletown,NY,308,White Plains,NY
-12723,33142,Callicoon,NY,296,Binghamton,NY
-12724,33050,Harris,NY,295,Albany,NY
-12725,33050,Harris,NY,295,Albany,NY
-12726,39054,Honesdale,PA,360,Scranton,PA
-12727,39054,Honesdale,PA,360,Scranton,PA
-12729,33102,Port Jervis,NY,285,Morristown,NJ
-12732,33102,Port Jervis,NY,285,Morristown,NJ
-12733,33050,Harris,NY,295,Albany,NY
-12734,33050,Harris,NY,295,Albany,NY
-12736,33142,Callicoon,NY,296,Binghamton,NY
-12737,33102,Port Jervis,NY,285,Morristown,NJ
-12738,33050,Harris,NY,295,Albany,NY
-12740,33050,Harris,NY,295,Albany,NY
-12741,33142,Callicoon,NY,296,Binghamton,NY
-12742,33050,Harris,NY,295,Albany,NY
-12743,33102,Port Jervis,NY,285,Morristown,NJ
-12745,33142,Callicoon,NY,296,Binghamton,NY
-12746,33102,Port Jervis,NY,285,Morristown,NJ
-12747,33050,Harris,NY,295,Albany,NY
-12748,33050,Harris,NY,295,Albany,NY
-12749,33050,Harris,NY,295,Albany,NY
-12750,33050,Harris,NY,295,Albany,NY
-12751,33050,Harris,NY,295,Albany,NY
-12752,39054,Honesdale,PA,360,Scranton,PA
-12754,33050,Harris,NY,295,Albany,NY
-12758,33050,Harris,NY,295,Albany,NY
-12759,33050,Harris,NY,295,Albany,NY
-12760,33142,Callicoon,NY,296,Binghamton,NY
-12762,33050,Harris,NY,295,Albany,NY
-12763,33050,Harris,NY,295,Albany,NY
-12764,39054,Honesdale,PA,360,Scranton,PA
-12765,33050,Harris,NY,295,Albany,NY
-12766,33142,Callicoon,NY,296,Binghamton,NY
-12767,33142,Callicoon,NY,296,Binghamton,NY
-12768,33050,Harris,NY,295,Albany,NY
-12769,33074,Middletown,NY,308,White Plains,NY
-12770,33102,Port Jervis,NY,285,Morristown,NJ
-12771,33102,Port Jervis,NY,285,Morristown,NJ
-12775,33050,Harris,NY,295,Albany,NY
-12776,33050,Harris,NY,295,Albany,NY
-12777,33050,Harris,NY,295,Albany,NY
-12778,33050,Harris,NY,295,Albany,NY
-12779,33050,Harris,NY,295,Albany,NY
-12780,33102,Port Jervis,NY,285,Morristown,NJ
-12781,33074,Middletown,NY,308,White Plains,NY
-12783,33050,Harris,NY,295,Albany,NY
-12784,33050,Harris,NY,295,Albany,NY
-12785,33074,Middletown,NY,308,White Plains,NY
-12786,33050,Harris,NY,295,Albany,NY
-12787,33050,Harris,NY,295,Albany,NY
-12788,33050,Harris,NY,295,Albany,NY
-12789,33050,Harris,NY,295,Albany,NY
-12790,33074,Middletown,NY,308,White Plains,NY
-12791,33050,Harris,NY,295,Albany,NY
-12792,39054,Honesdale,PA,360,Scranton,PA
-12801,33043,Glens Falls,NY,295,Albany,NY
-12803,33043,Glens Falls,NY,295,Albany,NY
-12804,33043,Glens Falls,NY,295,Albany,NY
-12808,33043,Glens Falls,NY,295,Albany,NY
-12809,33043,Glens Falls,NY,295,Albany,NY
-12810,33043,Glens Falls,NY,295,Albany,NY
-12811,33043,Glens Falls,NY,295,Albany,NY
-12812,33111,Saranac Lake,NY,424,Burlington,VT
-12814,33043,Glens Falls,NY,295,Albany,NY
-12815,33043,Glens Falls,NY,295,Albany,NY
-12816,33016,Cambridge,NY,295,Albany,NY
-12817,33043,Glens Falls,NY,295,Albany,NY
-12819,33043,Glens Falls,NY,295,Albany,NY
-12820,33043,Glens Falls,NY,295,Albany,NY
-12821,33043,Glens Falls,NY,295,Albany,NY
-12822,33112,Saratoga Springs,NY,295,Albany,NY
-12823,33016,Cambridge,NY,295,Albany,NY
-12824,33043,Glens Falls,NY,295,Albany,NY
-12827,33043,Glens Falls,NY,295,Albany,NY
-12828,33043,Glens Falls,NY,295,Albany,NY
-12831,33043,Glens Falls,NY,295,Albany,NY
-12832,33043,Glens Falls,NY,295,Albany,NY
-12833,33112,Saratoga Springs,NY,295,Albany,NY
-12834,33016,Cambridge,NY,295,Albany,NY
-12835,33112,Saratoga Springs,NY,295,Albany,NY
-12836,33126,Ticonderoga,NY,424,Burlington,VT
-12837,33043,Glens Falls,NY,295,Albany,NY
-12838,33043,Glens Falls,NY,295,Albany,NY
-12839,33043,Glens Falls,NY,295,Albany,NY
-12841,33043,Glens Falls,NY,295,Albany,NY
-12842,33043,Glens Falls,NY,295,Albany,NY
-12843,33043,Glens Falls,NY,295,Albany,NY
-12844,33043,Glens Falls,NY,295,Albany,NY
-12845,33043,Glens Falls,NY,295,Albany,NY
-12846,33043,Glens Falls,NY,295,Albany,NY
-12847,33111,Saranac Lake,NY,424,Burlington,VT
-12848,33016,Cambridge,NY,295,Albany,NY
-12849,33043,Glens Falls,NY,295,Albany,NY
-12850,33112,Saratoga Springs,NY,295,Albany,NY
-12851,33043,Glens Falls,NY,295,Albany,NY
-12852,33111,Saranac Lake,NY,424,Burlington,VT
-12853,33043,Glens Falls,NY,295,Albany,NY
-12854,33043,Glens Falls,NY,295,Albany,NY
-12855,33035,Elizabethtown,NY,424,Burlington,VT
-12856,33043,Glens Falls,NY,295,Albany,NY
-12857,33043,Glens Falls,NY,295,Albany,NY
-12858,33043,Glens Falls,NY,295,Albany,NY
-12859,33112,Saratoga Springs,NY,295,Albany,NY
-12860,33043,Glens Falls,NY,295,Albany,NY
-12861,33126,Ticonderoga,NY,424,Burlington,VT
-12862,33043,Glens Falls,NY,295,Albany,NY
-12863,33112,Saratoga Springs,NY,295,Albany,NY
-12864,33043,Glens Falls,NY,295,Albany,NY
-12865,33016,Cambridge,NY,295,Albany,NY
-12866,33112,Saratoga Springs,NY,295,Albany,NY
-12870,33043,Glens Falls,NY,295,Albany,NY
-12871,33112,Saratoga Springs,NY,295,Albany,NY
-12872,33043,Glens Falls,NY,295,Albany,NY
-12873,33016,Cambridge,NY,295,Albany,NY
-12874,33126,Ticonderoga,NY,424,Burlington,VT
-12878,33043,Glens Falls,NY,295,Albany,NY
-12879,33111,Saranac Lake,NY,424,Burlington,VT
-12883,33126,Ticonderoga,NY,424,Burlington,VT
-12884,33112,Saratoga Springs,NY,295,Albany,NY
-12885,33043,Glens Falls,NY,295,Albany,NY
-12886,33043,Glens Falls,NY,295,Albany,NY
-12887,33043,Glens Falls,NY,295,Albany,NY
-12901,33099,Plattsburgh,NY,424,Burlington,VT
-12903,33099,Plattsburgh,NY,424,Burlington,VT
-12910,33099,Plattsburgh,NY,424,Burlington,VT
-12911,33099,Plattsburgh,NY,424,Burlington,VT
-12912,33099,Plattsburgh,NY,424,Burlington,VT
-12913,33111,Saranac Lake,NY,424,Burlington,VT
-12914,33069,Malone,NY,424,Burlington,VT
-12915,33069,Malone,NY,424,Burlington,VT
-12916,33069,Malone,NY,424,Burlington,VT
-12917,33069,Malone,NY,424,Burlington,VT
-12918,33099,Plattsburgh,NY,424,Burlington,VT
-12919,33099,Plattsburgh,NY,424,Burlington,VT
-12920,33069,Malone,NY,424,Burlington,VT
-12921,33099,Plattsburgh,NY,424,Burlington,VT
-12922,33103,Potsdam,NY,424,Burlington,VT
-12923,33099,Plattsburgh,NY,424,Burlington,VT
-12924,33099,Plattsburgh,NY,424,Burlington,VT
-12926,33069,Malone,NY,424,Burlington,VT
-12927,33103,Potsdam,NY,424,Burlington,VT
-12928,33126,Ticonderoga,NY,424,Burlington,VT
-12929,33099,Plattsburgh,NY,424,Burlington,VT
-12930,33069,Malone,NY,424,Burlington,VT
-12932,33035,Elizabethtown,NY,424,Burlington,VT
-12933,33099,Plattsburgh,NY,424,Burlington,VT
-12934,33099,Plattsburgh,NY,424,Burlington,VT
-12935,33099,Plattsburgh,NY,424,Burlington,VT
-12936,33099,Plattsburgh,NY,424,Burlington,VT
-12937,33069,Malone,NY,424,Burlington,VT
-12939,33111,Saranac Lake,NY,424,Burlington,VT
-12941,33099,Plattsburgh,NY,424,Burlington,VT
-12942,33111,Saranac Lake,NY,424,Burlington,VT
-12943,33111,Saranac Lake,NY,424,Burlington,VT
-12944,33099,Plattsburgh,NY,424,Burlington,VT
-12945,33111,Saranac Lake,NY,424,Burlington,VT
-12946,33111,Saranac Lake,NY,424,Burlington,VT
-12949,33103,Potsdam,NY,424,Burlington,VT
-12950,33099,Plattsburgh,NY,424,Burlington,VT
-12952,33099,Plattsburgh,NY,424,Burlington,VT
-12953,33069,Malone,NY,424,Burlington,VT
-12955,33099,Plattsburgh,NY,424,Burlington,VT
-12956,33035,Elizabethtown,NY,424,Burlington,VT
-12957,33069,Malone,NY,424,Burlington,VT
-12958,33099,Plattsburgh,NY,424,Burlington,VT
-12959,33099,Plattsburgh,NY,424,Burlington,VT
-12960,33126,Ticonderoga,NY,424,Burlington,VT
-12961,33126,Ticonderoga,NY,424,Burlington,VT
-12962,33099,Plattsburgh,NY,424,Burlington,VT
-12964,33035,Elizabethtown,NY,424,Burlington,VT
-12965,33103,Potsdam,NY,424,Burlington,VT
-12966,33069,Malone,NY,424,Burlington,VT
-12967,33103,Potsdam,NY,424,Burlington,VT
-12969,33069,Malone,NY,424,Burlington,VT
-12970,33111,Saranac Lake,NY,424,Burlington,VT
-12972,33099,Plattsburgh,NY,424,Burlington,VT
-12973,33111,Saranac Lake,NY,424,Burlington,VT
-12974,33126,Ticonderoga,NY,424,Burlington,VT
-12975,33099,Plattsburgh,NY,424,Burlington,VT
-12976,33111,Saranac Lake,NY,424,Burlington,VT
-12977,33111,Saranac Lake,NY,424,Burlington,VT
-12978,33099,Plattsburgh,NY,424,Burlington,VT
-12979,33099,Plattsburgh,NY,424,Burlington,VT
-12980,33111,Saranac Lake,NY,424,Burlington,VT
-12981,33099,Plattsburgh,NY,424,Burlington,VT
-12983,33111,Saranac Lake,NY,424,Burlington,VT
-12985,33099,Plattsburgh,NY,424,Burlington,VT
-12986,33111,Saranac Lake,NY,424,Burlington,VT
-12987,33099,Plattsburgh,NY,424,Burlington,VT
-12989,33111,Saranac Lake,NY,424,Burlington,VT
-12992,33099,Plattsburgh,NY,424,Burlington,VT
-12993,33035,Elizabethtown,NY,424,Burlington,VT
-12995,33069,Malone,NY,424,Burlington,VT
-12996,33099,Plattsburgh,NY,424,Burlington,VT
-12997,33111,Saranac Lake,NY,424,Burlington,VT
-12998,33035,Elizabethtown,NY,424,Burlington,VT
-13020,33125,Syracuse,NY,307,Syracuse,NY
-13021,33005,Auburn,NY,307,Syracuse,NY
-13022,33005,Auburn,NY,307,Syracuse,NY
-13024,33005,Auburn,NY,307,Syracuse,NY
-13026,33005,Auburn,NY,307,Syracuse,NY
-13027,33125,Syracuse,NY,307,Syracuse,NY
-13028,33125,Syracuse,NY,307,Syracuse,NY
-13029,33125,Syracuse,NY,307,Syracuse,NY
-13030,33125,Syracuse,NY,307,Syracuse,NY
-13031,33125,Syracuse,NY,307,Syracuse,NY
-13032,33092,Oneida,NY,307,Syracuse,NY
-13033,33005,Auburn,NY,307,Syracuse,NY
-13034,33005,Auburn,NY,307,Syracuse,NY
-13035,33125,Syracuse,NY,307,Syracuse,NY
-13036,33125,Syracuse,NY,307,Syracuse,NY
-13037,33125,Syracuse,NY,307,Syracuse,NY
-13039,33125,Syracuse,NY,307,Syracuse,NY
-13040,33029,Cortland,NY,307,Syracuse,NY
-13041,33125,Syracuse,NY,307,Syracuse,NY
-13042,33125,Syracuse,NY,307,Syracuse,NY
-13043,33092,Oneida,NY,307,Syracuse,NY
-13044,33125,Syracuse,NY,307,Syracuse,NY
-13045,33029,Cortland,NY,307,Syracuse,NY
-13051,33125,Syracuse,NY,307,Syracuse,NY
-13052,33029,Cortland,NY,307,Syracuse,NY
-13053,33056,Ithaca,NY,304,Rochester,NY
-13054,33092,Oneida,NY,307,Syracuse,NY
-13056,33029,Cortland,NY,307,Syracuse,NY
-13057,33125,Syracuse,NY,307,Syracuse,NY
-13060,33125,Syracuse,NY,307,Syracuse,NY
-13061,33125,Syracuse,NY,307,Syracuse,NY
-13062,33056,Ithaca,NY,304,Rochester,NY
-13063,33125,Syracuse,NY,307,Syracuse,NY
-13064,33040,Fulton,NY,307,Syracuse,NY
-13065,33041,Geneva,NY,304,Rochester,NY
-13066,33125,Syracuse,NY,307,Syracuse,NY
-13068,33056,Ithaca,NY,304,Rochester,NY
-13069,33040,Fulton,NY,307,Syracuse,NY
-13071,33056,Ithaca,NY,304,Rochester,NY
-13072,33049,Hamilton,NY,307,Syracuse,NY
-13073,33029,Cortland,NY,307,Syracuse,NY
-13074,33040,Fulton,NY,307,Syracuse,NY
-13076,33125,Syracuse,NY,307,Syracuse,NY
-13077,33029,Cortland,NY,307,Syracuse,NY
-13078,33125,Syracuse,NY,307,Syracuse,NY
-13080,33125,Syracuse,NY,307,Syracuse,NY
-13081,33056,Ithaca,NY,304,Rochester,NY
-13082,33125,Syracuse,NY,307,Syracuse,NY
-13083,33135,Watertown,NY,307,Syracuse,NY
-13084,33125,Syracuse,NY,307,Syracuse,NY
-13087,33125,Syracuse,NY,307,Syracuse,NY
-13088,33125,Syracuse,NY,307,Syracuse,NY
-13089,33125,Syracuse,NY,307,Syracuse,NY
-13090,33125,Syracuse,NY,307,Syracuse,NY
-13092,33029,Cortland,NY,307,Syracuse,NY
-13093,33094,Oswego,NY,307,Syracuse,NY
-13101,33029,Cortland,NY,307,Syracuse,NY
-13102,33029,Cortland,NY,307,Syracuse,NY
-13103,33125,Syracuse,NY,307,Syracuse,NY
-13104,33125,Syracuse,NY,307,Syracuse,NY
-13107,33125,Syracuse,NY,307,Syracuse,NY
-13108,33125,Syracuse,NY,307,Syracuse,NY
-13110,33125,Syracuse,NY,307,Syracuse,NY
-13111,33040,Fulton,NY,307,Syracuse,NY
-13112,33125,Syracuse,NY,307,Syracuse,NY
-13113,33005,Auburn,NY,307,Syracuse,NY
-13114,33094,Oswego,NY,307,Syracuse,NY
-13115,33094,Oswego,NY,307,Syracuse,NY
-13116,33125,Syracuse,NY,307,Syracuse,NY
-13117,33005,Auburn,NY,307,Syracuse,NY
-13118,33005,Auburn,NY,307,Syracuse,NY
-13119,33005,Auburn,NY,307,Syracuse,NY
-13120,33125,Syracuse,NY,307,Syracuse,NY
-13121,33094,Oswego,NY,307,Syracuse,NY
-13122,33125,Syracuse,NY,307,Syracuse,NY
-13123,33125,Syracuse,NY,307,Syracuse,NY
-13124,33029,Cortland,NY,307,Syracuse,NY
-13126,33094,Oswego,NY,307,Syracuse,NY
-13131,33125,Syracuse,NY,307,Syracuse,NY
-13132,33125,Syracuse,NY,307,Syracuse,NY
-13134,33049,Hamilton,NY,307,Syracuse,NY
-13135,33125,Syracuse,NY,307,Syracuse,NY
-13136,33029,Cortland,NY,307,Syracuse,NY
-13137,33125,Syracuse,NY,307,Syracuse,NY
-13138,33125,Syracuse,NY,307,Syracuse,NY
-13139,33005,Auburn,NY,307,Syracuse,NY
-13140,33005,Auburn,NY,307,Syracuse,NY
-13141,33029,Cortland,NY,307,Syracuse,NY
-13142,33125,Syracuse,NY,307,Syracuse,NY
-13143,33117,Sodus,NY,304,Rochester,NY
-13144,33125,Syracuse,NY,307,Syracuse,NY
-13145,33135,Watertown,NY,307,Syracuse,NY
-13146,33081,Newark,NY,304,Rochester,NY
-13147,33005,Auburn,NY,307,Syracuse,NY
-13148,33041,Geneva,NY,304,Rochester,NY
-13152,33005,Auburn,NY,307,Syracuse,NY
-13153,33125,Syracuse,NY,307,Syracuse,NY
-13154,33081,Newark,NY,304,Rochester,NY
-13155,33087,Norwich,NY,296,Binghamton,NY
-13156,33040,Fulton,NY,307,Syracuse,NY
-13157,33109,Rome,NY,307,Syracuse,NY
-13158,33029,Cortland,NY,307,Syracuse,NY
-13159,33125,Syracuse,NY,307,Syracuse,NY
-13160,33005,Auburn,NY,307,Syracuse,NY
-13162,33109,Rome,NY,307,Syracuse,NY
-13163,33092,Oneida,NY,307,Syracuse,NY
-13164,33125,Syracuse,NY,307,Syracuse,NY
-13165,33041,Geneva,NY,304,Rochester,NY
-13166,33005,Auburn,NY,307,Syracuse,NY
-13167,33125,Syracuse,NY,307,Syracuse,NY
-13201,33125,Syracuse,NY,307,Syracuse,NY
-13202,33125,Syracuse,NY,307,Syracuse,NY
-13203,33125,Syracuse,NY,307,Syracuse,NY
-13204,33125,Syracuse,NY,307,Syracuse,NY
-13205,33125,Syracuse,NY,307,Syracuse,NY
-13206,33125,Syracuse,NY,307,Syracuse,NY
-13207,33125,Syracuse,NY,307,Syracuse,NY
-13208,33125,Syracuse,NY,307,Syracuse,NY
-13209,33125,Syracuse,NY,307,Syracuse,NY
-13210,33125,Syracuse,NY,307,Syracuse,NY
-13211,33125,Syracuse,NY,307,Syracuse,NY
-13212,33125,Syracuse,NY,307,Syracuse,NY
-13214,33125,Syracuse,NY,307,Syracuse,NY
-13215,33125,Syracuse,NY,307,Syracuse,NY
-13217,33125,Syracuse,NY,307,Syracuse,NY
-13218,33125,Syracuse,NY,307,Syracuse,NY
-13219,33125,Syracuse,NY,307,Syracuse,NY
-13220,33125,Syracuse,NY,307,Syracuse,NY
-13221,33125,Syracuse,NY,307,Syracuse,NY
-13224,33125,Syracuse,NY,307,Syracuse,NY
-13225,33125,Syracuse,NY,307,Syracuse,NY
-13235,33125,Syracuse,NY,307,Syracuse,NY
-13244,33125,Syracuse,NY,307,Syracuse,NY
-13250,33125,Syracuse,NY,307,Syracuse,NY
-13251,33125,Syracuse,NY,307,Syracuse,NY
-13252,33125,Syracuse,NY,307,Syracuse,NY
-13261,33125,Syracuse,NY,307,Syracuse,NY
-13290,33125,Syracuse,NY,307,Syracuse,NY
-13301,33128,Utica,NY,300,Elmira,NY
-13302,33125,Syracuse,NY,307,Syracuse,NY
-13303,33109,Rome,NY,307,Syracuse,NY
-13304,33128,Utica,NY,300,Elmira,NY
-13305,33068,Lowville,NY,307,Syracuse,NY
-13308,33109,Rome,NY,307,Syracuse,NY
-13309,33128,Utica,NY,300,Elmira,NY
-13310,33049,Hamilton,NY,307,Syracuse,NY
-13312,33068,Lowville,NY,307,Syracuse,NY
-13313,33128,Utica,NY,300,Elmira,NY
-13314,33049,Hamilton,NY,307,Syracuse,NY
-13315,33025,Cooperstown,NY,295,Albany,NY
-13316,33109,Rome,NY,307,Syracuse,NY
-13317,33004,Amsterdam,NY,295,Albany,NY
-13318,33128,Utica,NY,300,Elmira,NY
-13319,33128,Utica,NY,300,Elmira,NY
-13320,33025,Cooperstown,NY,295,Albany,NY
-13321,33128,Utica,NY,300,Elmira,NY
-13322,33128,Utica,NY,300,Elmira,NY
-13323,33128,Utica,NY,300,Elmira,NY
-13324,33128,Utica,NY,300,Elmira,NY
-13325,33068,Lowville,NY,307,Syracuse,NY
-13326,33025,Cooperstown,NY,295,Albany,NY
-13327,33068,Lowville,NY,307,Syracuse,NY
-13328,33128,Utica,NY,300,Elmira,NY
-13329,33064,Little Falls,NY,300,Elmira,NY
-13331,33128,Utica,NY,300,Elmira,NY
-13332,33049,Hamilton,NY,307,Syracuse,NY
-13333,33025,Cooperstown,NY,295,Albany,NY
-13334,33049,Hamilton,NY,307,Syracuse,NY
-13335,33025,Cooperstown,NY,295,Albany,NY
-13337,33025,Cooperstown,NY,295,Albany,NY
-13338,33128,Utica,NY,300,Elmira,NY
-13339,33004,Amsterdam,NY,295,Albany,NY
-13340,33128,Utica,NY,300,Elmira,NY
-13341,33128,Utica,NY,300,Elmira,NY
-13342,33093,Oneonta,NY,296,Binghamton,NY
-13343,33068,Lowville,NY,307,Syracuse,NY
-13345,33068,Lowville,NY,307,Syracuse,NY
-13346,33049,Hamilton,NY,307,Syracuse,NY
-13348,33025,Cooperstown,NY,295,Albany,NY
-13350,33128,Utica,NY,300,Elmira,NY
-13352,33128,Utica,NY,300,Elmira,NY
-13353,33128,Utica,NY,300,Elmira,NY
-13354,33128,Utica,NY,300,Elmira,NY
-13355,33049,Hamilton,NY,307,Syracuse,NY
-13357,33128,Utica,NY,300,Elmira,NY
-13360,33128,Utica,NY,300,Elmira,NY
-13361,33128,Utica,NY,300,Elmira,NY
-13362,33049,Hamilton,NY,307,Syracuse,NY
-13363,33109,Rome,NY,307,Syracuse,NY
-13364,33049,Hamilton,NY,307,Syracuse,NY
-13365,33064,Little Falls,NY,300,Elmira,NY
-13367,33068,Lowville,NY,307,Syracuse,NY
-13368,33068,Lowville,NY,307,Syracuse,NY
-13401,33109,Rome,NY,307,Syracuse,NY
-13402,33049,Hamilton,NY,307,Syracuse,NY
-13403,33128,Utica,NY,300,Elmira,NY
-13404,33068,Lowville,NY,307,Syracuse,NY
-13406,33128,Utica,NY,300,Elmira,NY
-13407,33128,Utica,NY,300,Elmira,NY
-13408,33049,Hamilton,NY,307,Syracuse,NY
-13409,33092,Oneida,NY,307,Syracuse,NY
-13410,33004,Amsterdam,NY,295,Albany,NY
-13411,33025,Cooperstown,NY,295,Albany,NY
-13413,33128,Utica,NY,300,Elmira,NY
-13415,33093,Oneonta,NY,296,Binghamton,NY
-13416,33128,Utica,NY,300,Elmira,NY
-13417,33128,Utica,NY,300,Elmira,NY
-13418,33049,Hamilton,NY,307,Syracuse,NY
-13420,33128,Utica,NY,300,Elmira,NY
-13421,33092,Oneida,NY,307,Syracuse,NY
-13424,33128,Utica,NY,300,Elmira,NY
-13425,33049,Hamilton,NY,307,Syracuse,NY
-13426,33125,Syracuse,NY,307,Syracuse,NY
-13428,33004,Amsterdam,NY,295,Albany,NY
-13431,33128,Utica,NY,300,Elmira,NY
-13433,33068,Lowville,NY,307,Syracuse,NY
-13435,33128,Utica,NY,300,Elmira,NY
-13436,33111,Saranac Lake,NY,424,Burlington,VT
-13437,33135,Watertown,NY,307,Syracuse,NY
-13438,33128,Utica,NY,300,Elmira,NY
-13439,33025,Cooperstown,NY,295,Albany,NY
-13440,33109,Rome,NY,307,Syracuse,NY
-13441,33109,Rome,NY,307,Syracuse,NY
-13442,33109,Rome,NY,307,Syracuse,NY
-13449,33109,Rome,NY,307,Syracuse,NY
-13450,33093,Oneonta,NY,296,Binghamton,NY
-13452,33064,Little Falls,NY,300,Elmira,NY
-13454,33064,Little Falls,NY,300,Elmira,NY
-13455,33128,Utica,NY,300,Elmira,NY
-13456,33128,Utica,NY,300,Elmira,NY
-13457,33025,Cooperstown,NY,295,Albany,NY
-13459,33025,Cooperstown,NY,295,Albany,NY
-13460,33049,Hamilton,NY,307,Syracuse,NY
-13461,33092,Oneida,NY,307,Syracuse,NY
-13464,33049,Hamilton,NY,307,Syracuse,NY
-13465,33049,Hamilton,NY,307,Syracuse,NY
-13468,33025,Cooperstown,NY,295,Albany,NY
-13469,33128,Utica,NY,300,Elmira,NY
-13470,33064,Little Falls,NY,300,Elmira,NY
-13471,33109,Rome,NY,307,Syracuse,NY
-13472,33128,Utica,NY,300,Elmira,NY
-13473,33068,Lowville,NY,307,Syracuse,NY
-13475,33025,Cooperstown,NY,295,Albany,NY
-13476,33092,Oneida,NY,307,Syracuse,NY
-13477,33092,Oneida,NY,307,Syracuse,NY
-13478,33092,Oneida,NY,307,Syracuse,NY
-13479,33128,Utica,NY,300,Elmira,NY
-13480,33128,Utica,NY,300,Elmira,NY
-13482,33025,Cooperstown,NY,295,Albany,NY
-13483,33109,Rome,NY,307,Syracuse,NY
-13484,33049,Hamilton,NY,307,Syracuse,NY
-13485,33049,Hamilton,NY,307,Syracuse,NY
-13486,33109,Rome,NY,307,Syracuse,NY
-13488,33093,Oneonta,NY,296,Binghamton,NY
-13489,33128,Utica,NY,300,Elmira,NY
-13490,33109,Rome,NY,307,Syracuse,NY
-13491,33128,Utica,NY,300,Elmira,NY
-13492,33128,Utica,NY,300,Elmira,NY
-13493,33125,Syracuse,NY,307,Syracuse,NY
-13494,33128,Utica,NY,300,Elmira,NY
-13495,33128,Utica,NY,300,Elmira,NY
-13501,33128,Utica,NY,300,Elmira,NY
-13502,33128,Utica,NY,300,Elmira,NY
-13503,33128,Utica,NY,300,Elmira,NY
-13504,33128,Utica,NY,300,Elmira,NY
-13505,33128,Utica,NY,300,Elmira,NY
-13599,33128,Utica,NY,300,Elmira,NY
-13601,33135,Watertown,NY,307,Syracuse,NY
-13602,33135,Watertown,NY,307,Syracuse,NY
-13603,33135,Watertown,NY,307,Syracuse,NY
-13605,33135,Watertown,NY,307,Syracuse,NY
-13606,33135,Watertown,NY,307,Syracuse,NY
-13607,33002,Alexandria Bay,NY,307,Syracuse,NY
-13608,33046,Gouverneur,NY,307,Syracuse,NY
-13611,33135,Watertown,NY,307,Syracuse,NY
-13612,33135,Watertown,NY,307,Syracuse,NY
-13613,33072,Massena,NY,424,Burlington,VT
-13614,33090,Ogdensburg,NY,307,Syracuse,NY
-13615,33135,Watertown,NY,307,Syracuse,NY
-13616,33135,Watertown,NY,307,Syracuse,NY
-13617,33103,Potsdam,NY,424,Burlington,VT
-13618,33135,Watertown,NY,307,Syracuse,NY
-13619,33019,Carthage,NY,307,Syracuse,NY
-13620,33068,Lowville,NY,307,Syracuse,NY
-13621,33090,Ogdensburg,NY,307,Syracuse,NY
-13622,33135,Watertown,NY,307,Syracuse,NY
-13623,33090,Ogdensburg,NY,307,Syracuse,NY
-13624,33002,Alexandria Bay,NY,307,Syracuse,NY
-13625,33103,Potsdam,NY,424,Burlington,VT
-13626,33135,Watertown,NY,307,Syracuse,NY
-13627,33019,Carthage,NY,307,Syracuse,NY
-13628,33135,Watertown,NY,307,Syracuse,NY
-13630,33090,Ogdensburg,NY,307,Syracuse,NY
-13631,33019,Carthage,NY,307,Syracuse,NY
-13632,33135,Watertown,NY,307,Syracuse,NY
-13633,33090,Ogdensburg,NY,307,Syracuse,NY
-13634,33135,Watertown,NY,307,Syracuse,NY
-13635,33120,Star Lake,NY,307,Syracuse,NY
-13636,33135,Watertown,NY,307,Syracuse,NY
-13637,33135,Watertown,NY,307,Syracuse,NY
-13638,33135,Watertown,NY,307,Syracuse,NY
-13639,33120,Star Lake,NY,307,Syracuse,NY
-13640,33002,Alexandria Bay,NY,307,Syracuse,NY
-13641,33002,Alexandria Bay,NY,307,Syracuse,NY
-13642,33046,Gouverneur,NY,307,Syracuse,NY
-13643,33019,Carthage,NY,307,Syracuse,NY
-13645,33046,Gouverneur,NY,307,Syracuse,NY
-13646,33090,Ogdensburg,NY,307,Syracuse,NY
-13647,33103,Potsdam,NY,424,Burlington,VT
-13648,33019,Carthage,NY,307,Syracuse,NY
-13649,33072,Massena,NY,424,Burlington,VT
-13650,33135,Watertown,NY,307,Syracuse,NY
-13651,33135,Watertown,NY,307,Syracuse,NY
-13652,33103,Potsdam,NY,424,Burlington,VT
-13654,33090,Ogdensburg,NY,307,Syracuse,NY
-13655,33069,Malone,NY,424,Burlington,VT
-13656,33135,Watertown,NY,307,Syracuse,NY
-13657,33135,Watertown,NY,307,Syracuse,NY
-13658,33090,Ogdensburg,NY,307,Syracuse,NY
-13659,33135,Watertown,NY,307,Syracuse,NY
-13660,33103,Potsdam,NY,424,Burlington,VT
-13661,33135,Watertown,NY,307,Syracuse,NY
-13662,33072,Massena,NY,424,Burlington,VT
-13664,33090,Ogdensburg,NY,307,Syracuse,NY
-13665,33019,Carthage,NY,307,Syracuse,NY
-13666,33120,Star Lake,NY,307,Syracuse,NY
-13667,33103,Potsdam,NY,424,Burlington,VT
-13668,33103,Potsdam,NY,424,Burlington,VT
-13669,33090,Ogdensburg,NY,307,Syracuse,NY
-13670,33120,Star Lake,NY,307,Syracuse,NY
-13671,33046,Gouverneur,NY,307,Syracuse,NY
-13672,33103,Potsdam,NY,424,Burlington,VT
-13673,33135,Watertown,NY,307,Syracuse,NY
-13674,33135,Watertown,NY,307,Syracuse,NY
-13675,33002,Alexandria Bay,NY,307,Syracuse,NY
-13676,33103,Potsdam,NY,424,Burlington,VT
-13677,33103,Potsdam,NY,424,Burlington,VT
-13678,33103,Potsdam,NY,424,Burlington,VT
-13679,33002,Alexandria Bay,NY,307,Syracuse,NY
-13680,33090,Ogdensburg,NY,307,Syracuse,NY
-13681,33046,Gouverneur,NY,307,Syracuse,NY
-13682,33135,Watertown,NY,307,Syracuse,NY
-13683,33069,Malone,NY,424,Burlington,VT
-13684,33120,Star Lake,NY,307,Syracuse,NY
-13685,33135,Watertown,NY,307,Syracuse,NY
-13687,33103,Potsdam,NY,424,Burlington,VT
-13690,33120,Star Lake,NY,307,Syracuse,NY
-13691,33135,Watertown,NY,307,Syracuse,NY
-13692,33002,Alexandria Bay,NY,307,Syracuse,NY
-13693,33135,Watertown,NY,307,Syracuse,NY
-13694,33090,Ogdensburg,NY,307,Syracuse,NY
-13695,33120,Star Lake,NY,307,Syracuse,NY
-13696,33103,Potsdam,NY,424,Burlington,VT
-13697,33103,Potsdam,NY,424,Burlington,VT
-13699,33103,Potsdam,NY,424,Burlington,VT
-13730,33115,Sidney,NY,296,Binghamton,NY
-13731,33025,Cooperstown,NY,295,Albany,NY
-13732,33010,Binghamton,NY,296,Binghamton,NY
-13733,33115,Sidney,NY,296,Binghamton,NY
-13734,39108,Sayre,PA,359,Sayre,PA
-13736,33010,Binghamton,NY,296,Binghamton,NY
-13737,33010,Binghamton,NY,296,Binghamton,NY
-13738,33029,Cortland,NY,307,Syracuse,NY
-13739,33025,Cooperstown,NY,295,Albany,NY
-13740,33025,Cooperstown,NY,295,Albany,NY
-13743,39108,Sayre,PA,359,Sayre,PA
-13744,33010,Binghamton,NY,296,Binghamton,NY
-13745,33010,Binghamton,NY,296,Binghamton,NY
-13746,33010,Binghamton,NY,296,Binghamton,NY
-13747,33093,Oneonta,NY,296,Binghamton,NY
-13748,33010,Binghamton,NY,296,Binghamton,NY
-13749,33010,Binghamton,NY,296,Binghamton,NY
-13750,33093,Oneonta,NY,296,Binghamton,NY
-13751,33025,Cooperstown,NY,295,Albany,NY
-13752,33025,Cooperstown,NY,295,Albany,NY
-13753,33025,Cooperstown,NY,295,Albany,NY
-13754,33010,Binghamton,NY,296,Binghamton,NY
-13755,33131,Walton,NY,296,Binghamton,NY
-13756,33131,Walton,NY,296,Binghamton,NY
-13757,33025,Cooperstown,NY,295,Albany,NY
-13758,33087,Norwich,NY,296,Binghamton,NY
-13760,33010,Binghamton,NY,296,Binghamton,NY
-13761,33010,Binghamton,NY,296,Binghamton,NY
-13762,33010,Binghamton,NY,296,Binghamton,NY
-13763,33010,Binghamton,NY,296,Binghamton,NY
-13774,33131,Walton,NY,296,Binghamton,NY
-13775,33093,Oneonta,NY,296,Binghamton,NY
-13776,33087,Norwich,NY,296,Binghamton,NY
-13777,33010,Binghamton,NY,296,Binghamton,NY
-13778,33010,Binghamton,NY,296,Binghamton,NY
-13780,33115,Sidney,NY,296,Binghamton,NY
-13782,33025,Cooperstown,NY,295,Albany,NY
-13783,33010,Binghamton,NY,296,Binghamton,NY
-13784,33029,Cortland,NY,307,Syracuse,NY
-13786,33093,Oneonta,NY,296,Binghamton,NY
-13787,33010,Binghamton,NY,296,Binghamton,NY
-13788,33093,Oneonta,NY,296,Binghamton,NY
-13790,33010,Binghamton,NY,296,Binghamton,NY
-13794,33010,Binghamton,NY,296,Binghamton,NY
-13795,33010,Binghamton,NY,296,Binghamton,NY
-13796,33093,Oneonta,NY,296,Binghamton,NY
-13797,33010,Binghamton,NY,296,Binghamton,NY
-13801,33087,Norwich,NY,296,Binghamton,NY
-13802,33010,Binghamton,NY,296,Binghamton,NY
-13803,33029,Cortland,NY,307,Syracuse,NY
-13804,33115,Sidney,NY,296,Binghamton,NY
-13806,33025,Cooperstown,NY,295,Albany,NY
-13807,33025,Cooperstown,NY,295,Albany,NY
-13808,33093,Oneonta,NY,296,Binghamton,NY
-13809,33115,Sidney,NY,296,Binghamton,NY
-13810,33093,Oneonta,NY,296,Binghamton,NY
-13811,33010,Binghamton,NY,296,Binghamton,NY
-13812,39108,Sayre,PA,359,Sayre,PA
-13813,33010,Binghamton,NY,296,Binghamton,NY
-13814,33087,Norwich,NY,296,Binghamton,NY
-13815,33087,Norwich,NY,296,Binghamton,NY
-13820,33093,Oneonta,NY,296,Binghamton,NY
-13825,33093,Oneonta,NY,296,Binghamton,NY
-13826,33010,Binghamton,NY,296,Binghamton,NY
-13827,33010,Binghamton,NY,296,Binghamton,NY
-13830,33087,Norwich,NY,296,Binghamton,NY
-13832,33087,Norwich,NY,296,Binghamton,NY
-13833,33010,Binghamton,NY,296,Binghamton,NY
-13834,33093,Oneonta,NY,296,Binghamton,NY
-13835,33010,Binghamton,NY,296,Binghamton,NY
-13838,33115,Sidney,NY,296,Binghamton,NY
-13839,33115,Sidney,NY,296,Binghamton,NY
-13840,39108,Sayre,PA,359,Sayre,PA
-13841,33010,Binghamton,NY,296,Binghamton,NY
-13842,33025,Cooperstown,NY,295,Albany,NY
-13843,33025,Cooperstown,NY,295,Albany,NY
-13844,33087,Norwich,NY,296,Binghamton,NY
-13845,39108,Sayre,PA,359,Sayre,PA
-13846,33093,Oneonta,NY,296,Binghamton,NY
-13847,33115,Sidney,NY,296,Binghamton,NY
-13848,33010,Binghamton,NY,296,Binghamton,NY
-13849,33115,Sidney,NY,296,Binghamton,NY
-13850,33010,Binghamton,NY,296,Binghamton,NY
-13851,33010,Binghamton,NY,296,Binghamton,NY
-13856,33131,Walton,NY,296,Binghamton,NY
-13859,33093,Oneonta,NY,296,Binghamton,NY
-13860,33093,Oneonta,NY,296,Binghamton,NY
-13861,33093,Oneonta,NY,296,Binghamton,NY
-13862,33010,Binghamton,NY,296,Binghamton,NY
-13863,33029,Cortland,NY,307,Syracuse,NY
-13864,33056,Ithaca,NY,304,Rochester,NY
-13865,33010,Binghamton,NY,296,Binghamton,NY
-13901,33010,Binghamton,NY,296,Binghamton,NY
-13902,33010,Binghamton,NY,296,Binghamton,NY
-13903,33010,Binghamton,NY,296,Binghamton,NY
-13904,33010,Binghamton,NY,296,Binghamton,NY
-13905,33010,Binghamton,NY,296,Binghamton,NY
-14001,33015,Buffalo,NY,299,Buffalo,NY
-14004,33015,Buffalo,NY,299,Buffalo,NY
-14005,33006,Batavia,NY,299,Buffalo,NY
-14006,33055,Irving,NY,299,Buffalo,NY
-14008,33083,Newfane,NY,299,Buffalo,NY
-14009,33119,Springville,NY,299,Buffalo,NY
-14010,33015,Buffalo,NY,299,Buffalo,NY
-14011,33006,Batavia,NY,299,Buffalo,NY
-14012,33083,Newfane,NY,299,Buffalo,NY
-14013,33006,Batavia,NY,299,Buffalo,NY
-14020,33006,Batavia,NY,299,Buffalo,NY
-14021,33006,Batavia,NY,299,Buffalo,NY
-14024,33132,Warsaw,NY,304,Rochester,NY
-14025,33015,Buffalo,NY,299,Buffalo,NY
-14026,33015,Buffalo,NY,299,Buffalo,NY
-14027,33055,Irving,NY,299,Buffalo,NY
-14028,33083,Newfane,NY,299,Buffalo,NY
-14029,33119,Springville,NY,299,Buffalo,NY
-14030,33119,Springville,NY,299,Buffalo,NY
-14031,33015,Buffalo,NY,299,Buffalo,NY
-14032,33015,Buffalo,NY,299,Buffalo,NY
-14033,33015,Buffalo,NY,299,Buffalo,NY
-14034,33047,Gowanda,NY,299,Buffalo,NY
-14035,33047,Gowanda,NY,299,Buffalo,NY
-14036,33006,Batavia,NY,299,Buffalo,NY
-14037,33015,Buffalo,NY,299,Buffalo,NY
-14038,33015,Buffalo,NY,299,Buffalo,NY
-14039,33132,Warsaw,NY,304,Rochester,NY
-14040,33006,Batavia,NY,299,Buffalo,NY
-14041,33047,Gowanda,NY,299,Buffalo,NY
-14042,33119,Springville,NY,299,Buffalo,NY
-14043,33015,Buffalo,NY,299,Buffalo,NY
-14047,33015,Buffalo,NY,299,Buffalo,NY
-14048,33033,Dunkirk,NY,299,Buffalo,NY
-14051,33015,Buffalo,NY,299,Buffalo,NY
-14052,33015,Buffalo,NY,299,Buffalo,NY
-14054,33006,Batavia,NY,299,Buffalo,NY
-14055,33119,Springville,NY,299,Buffalo,NY
-14056,33006,Batavia,NY,299,Buffalo,NY
-14057,33015,Buffalo,NY,299,Buffalo,NY
-14058,33006,Batavia,NY,299,Buffalo,NY
-14059,33015,Buffalo,NY,299,Buffalo,NY
-14060,33091,Olean,NY,299,Buffalo,NY
-14061,33055,Irving,NY,299,Buffalo,NY
-14062,33033,Dunkirk,NY,299,Buffalo,NY
-14063,33033,Dunkirk,NY,299,Buffalo,NY
-14065,33119,Springville,NY,299,Buffalo,NY
-14066,33132,Warsaw,NY,304,Rochester,NY
-14067,33065,Lockport,NY,299,Buffalo,NY
-14068,33015,Buffalo,NY,299,Buffalo,NY
-14069,33119,Springville,NY,299,Buffalo,NY
-14070,33047,Gowanda,NY,299,Buffalo,NY
-14072,33059,Kenmore,NY,299,Buffalo,NY
-14075,33015,Buffalo,NY,299,Buffalo,NY
-14080,33015,Buffalo,NY,299,Buffalo,NY
-14081,33055,Irving,NY,299,Buffalo,NY
-14082,33132,Warsaw,NY,304,Rochester,NY
-14083,33132,Warsaw,NY,304,Rochester,NY
-14085,33015,Buffalo,NY,299,Buffalo,NY
-14086,33015,Buffalo,NY,299,Buffalo,NY
-14091,33047,Gowanda,NY,299,Buffalo,NY
-14092,33063,Lewiston,NY,299,Buffalo,NY
-14094,33065,Lockport,NY,299,Buffalo,NY
-14095,33065,Lockport,NY,299,Buffalo,NY
-14098,33073,Medina,NY,299,Buffalo,NY
-14101,33119,Springville,NY,299,Buffalo,NY
-14102,33015,Buffalo,NY,299,Buffalo,NY
-14103,33073,Medina,NY,299,Buffalo,NY
-14105,33073,Medina,NY,299,Buffalo,NY
-14107,33063,Lewiston,NY,299,Buffalo,NY
-14108,33083,Newfane,NY,299,Buffalo,NY
-14109,33084,Niagara Falls,NY,299,Buffalo,NY
-14110,33015,Buffalo,NY,299,Buffalo,NY
-14111,33055,Irving,NY,299,Buffalo,NY
-14112,33015,Buffalo,NY,299,Buffalo,NY
-14113,33132,Warsaw,NY,304,Rochester,NY
-14120,33086,North Tonawanda,NY,299,Buffalo,NY
-14125,33006,Batavia,NY,299,Buffalo,NY
-14126,33083,Newfane,NY,299,Buffalo,NY
-14127,33015,Buffalo,NY,299,Buffalo,NY
-14129,33047,Gowanda,NY,299,Buffalo,NY
-14130,33132,Warsaw,NY,304,Rochester,NY
-14131,33063,Lewiston,NY,299,Buffalo,NY
-14132,33063,Lewiston,NY,299,Buffalo,NY
-14133,33119,Springville,NY,299,Buffalo,NY
-14134,33119,Springville,NY,299,Buffalo,NY
-14135,33055,Irving,NY,299,Buffalo,NY
-14136,33055,Irving,NY,299,Buffalo,NY
-14138,33047,Gowanda,NY,299,Buffalo,NY
-14139,33015,Buffalo,NY,299,Buffalo,NY
-14140,33015,Buffalo,NY,299,Buffalo,NY
-14141,33119,Springville,NY,299,Buffalo,NY
-14143,33006,Batavia,NY,299,Buffalo,NY
-14144,33063,Lewiston,NY,299,Buffalo,NY
-14145,33015,Buffalo,NY,299,Buffalo,NY
-14150,33059,Kenmore,NY,299,Buffalo,NY
-14151,33059,Kenmore,NY,299,Buffalo,NY
-14166,33033,Dunkirk,NY,299,Buffalo,NY
-14167,33132,Warsaw,NY,304,Rochester,NY
-14168,33047,Gowanda,NY,299,Buffalo,NY
-14169,33015,Buffalo,NY,299,Buffalo,NY
-14170,33015,Buffalo,NY,299,Buffalo,NY
-14171,33119,Springville,NY,299,Buffalo,NY
-14172,33083,Newfane,NY,299,Buffalo,NY
-14173,33119,Springville,NY,299,Buffalo,NY
-14174,33063,Lewiston,NY,299,Buffalo,NY
-14201,33015,Buffalo,NY,299,Buffalo,NY
-14202,33015,Buffalo,NY,299,Buffalo,NY
-14203,33015,Buffalo,NY,299,Buffalo,NY
-14204,33015,Buffalo,NY,299,Buffalo,NY
-14205,33015,Buffalo,NY,299,Buffalo,NY
-14206,33015,Buffalo,NY,299,Buffalo,NY
-14207,33015,Buffalo,NY,299,Buffalo,NY
-14208,33015,Buffalo,NY,299,Buffalo,NY
-14209,33015,Buffalo,NY,299,Buffalo,NY
-14210,33015,Buffalo,NY,299,Buffalo,NY
-14211,33015,Buffalo,NY,299,Buffalo,NY
-14212,33015,Buffalo,NY,299,Buffalo,NY
-14213,33015,Buffalo,NY,299,Buffalo,NY
-14214,33015,Buffalo,NY,299,Buffalo,NY
-14215,33015,Buffalo,NY,299,Buffalo,NY
-14216,33015,Buffalo,NY,299,Buffalo,NY
-14217,33059,Kenmore,NY,299,Buffalo,NY
-14218,33061,Lackawanna,NY,299,Buffalo,NY
-14219,33061,Lackawanna,NY,299,Buffalo,NY
-14220,33015,Buffalo,NY,299,Buffalo,NY
-14221,33015,Buffalo,NY,299,Buffalo,NY
-14222,33015,Buffalo,NY,299,Buffalo,NY
-14223,33015,Buffalo,NY,299,Buffalo,NY
-14224,33015,Buffalo,NY,299,Buffalo,NY
-14225,33015,Buffalo,NY,299,Buffalo,NY
-14226,33015,Buffalo,NY,299,Buffalo,NY
-14227,33015,Buffalo,NY,299,Buffalo,NY
-14228,33059,Kenmore,NY,299,Buffalo,NY
-14231,33015,Buffalo,NY,299,Buffalo,NY
-14233,33015,Buffalo,NY,299,Buffalo,NY
-14240,33015,Buffalo,NY,299,Buffalo,NY
-14241,33015,Buffalo,NY,299,Buffalo,NY
-14260,33015,Buffalo,NY,299,Buffalo,NY
-14261,33015,Buffalo,NY,299,Buffalo,NY
-14263,33015,Buffalo,NY,299,Buffalo,NY
-14264,33015,Buffalo,NY,299,Buffalo,NY
-14265,33015,Buffalo,NY,299,Buffalo,NY
-14267,33015,Buffalo,NY,299,Buffalo,NY
-14269,33015,Buffalo,NY,299,Buffalo,NY
-14270,33015,Buffalo,NY,299,Buffalo,NY
-14272,33015,Buffalo,NY,299,Buffalo,NY
-14273,33015,Buffalo,NY,299,Buffalo,NY
-14276,33015,Buffalo,NY,299,Buffalo,NY
-14280,33015,Buffalo,NY,299,Buffalo,NY
-14301,33084,Niagara Falls,NY,299,Buffalo,NY
-14302,33084,Niagara Falls,NY,299,Buffalo,NY
-14303,33084,Niagara Falls,NY,299,Buffalo,NY
-14304,33063,Lewiston,NY,299,Buffalo,NY
-14305,33084,Niagara Falls,NY,299,Buffalo,NY
-14410,33107,Rochester,NY,304,Rochester,NY
-14411,33073,Medina,NY,299,Buffalo,NY
-14413,33117,Sodus,NY,304,Rochester,NY
-14414,33107,Rochester,NY,304,Rochester,NY
-14415,33097,Penn Yan,NY,304,Rochester,NY
-14416,33107,Rochester,NY,304,Rochester,NY
-14418,33097,Penn Yan,NY,304,Rochester,NY
-14420,33011,Brockport,NY,304,Rochester,NY
-14422,33006,Batavia,NY,299,Buffalo,NY
-14423,33107,Rochester,NY,304,Rochester,NY
-14424,33017,Canandaigua,NY,304,Rochester,NY
-14425,33017,Canandaigua,NY,304,Rochester,NY
-14427,33132,Warsaw,NY,304,Rochester,NY
-14428,33107,Rochester,NY,304,Rochester,NY
-14429,33011,Brockport,NY,304,Rochester,NY
-14430,33011,Brockport,NY,304,Rochester,NY
-14432,33022,Clifton Springs,NY,304,Rochester,NY
-14433,33081,Newark,NY,304,Rochester,NY
-14435,33031,Dansville,NY,304,Rochester,NY
-14437,33031,Dansville,NY,304,Rochester,NY
-14441,33097,Penn Yan,NY,304,Rochester,NY
-14443,33017,Canandaigua,NY,304,Rochester,NY
-14445,33107,Rochester,NY,304,Rochester,NY
-14449,33117,Sodus,NY,304,Rochester,NY
-14450,33107,Rochester,NY,304,Rochester,NY
-14452,33011,Brockport,NY,304,Rochester,NY
-14453,33017,Canandaigua,NY,304,Rochester,NY
-14454,33107,Rochester,NY,304,Rochester,NY
-14456,33041,Geneva,NY,304,Rochester,NY
-14461,33017,Canandaigua,NY,304,Rochester,NY
-14462,33031,Dansville,NY,304,Rochester,NY
-14463,33041,Geneva,NY,304,Rochester,NY
-14464,33011,Brockport,NY,304,Rochester,NY
-14466,33107,Rochester,NY,304,Rochester,NY
-14467,33107,Rochester,NY,304,Rochester,NY
-14468,33107,Rochester,NY,304,Rochester,NY
-14469,33017,Canandaigua,NY,304,Rochester,NY
-14470,33011,Brockport,NY,304,Rochester,NY
-14471,33017,Canandaigua,NY,304,Rochester,NY
-14472,33107,Rochester,NY,304,Rochester,NY
-14475,33107,Rochester,NY,304,Rochester,NY
-14476,33011,Brockport,NY,304,Rochester,NY
-14477,33011,Brockport,NY,304,Rochester,NY
-14478,33097,Penn Yan,NY,304,Rochester,NY
-14479,33073,Medina,NY,299,Buffalo,NY
-14480,33107,Rochester,NY,304,Rochester,NY
-14481,33132,Warsaw,NY,304,Rochester,NY
-14482,33006,Batavia,NY,299,Buffalo,NY
-14485,33107,Rochester,NY,304,Rochester,NY
-14486,33006,Batavia,NY,299,Buffalo,NY
-14487,33107,Rochester,NY,304,Rochester,NY
-14488,33107,Rochester,NY,304,Rochester,NY
-14489,33081,Newark,NY,304,Rochester,NY
-14502,33107,Rochester,NY,304,Rochester,NY
-14504,33022,Clifton Springs,NY,304,Rochester,NY
-14505,33081,Newark,NY,304,Rochester,NY
-14506,33107,Rochester,NY,304,Rochester,NY
-14507,33017,Canandaigua,NY,304,Rochester,NY
-14508,33011,Brockport,NY,304,Rochester,NY
-14510,33031,Dansville,NY,304,Rochester,NY
-14511,33107,Rochester,NY,304,Rochester,NY
-14512,33017,Canandaigua,NY,304,Rochester,NY
-14513,33081,Newark,NY,304,Rochester,NY
-14514,33107,Rochester,NY,304,Rochester,NY
-14515,33107,Rochester,NY,304,Rochester,NY
-14516,33117,Sodus,NY,304,Rochester,NY
-14517,33031,Dansville,NY,304,Rochester,NY
-14518,33041,Geneva,NY,304,Rochester,NY
-14519,33107,Rochester,NY,304,Rochester,NY
-14520,33107,Rochester,NY,304,Rochester,NY
-14521,33041,Geneva,NY,304,Rochester,NY
-14522,33022,Clifton Springs,NY,304,Rochester,NY
-14525,33006,Batavia,NY,299,Buffalo,NY
-14526,33107,Rochester,NY,304,Rochester,NY
-14527,33097,Penn Yan,NY,304,Rochester,NY
-14529,33031,Dansville,NY,304,Rochester,NY
-14530,33132,Warsaw,NY,304,Rochester,NY
-14532,33022,Clifton Springs,NY,304,Rochester,NY
-14533,33107,Rochester,NY,304,Rochester,NY
-14534,33107,Rochester,NY,304,Rochester,NY
-14536,33132,Warsaw,NY,304,Rochester,NY
-14537,33022,Clifton Springs,NY,304,Rochester,NY
-14538,33117,Sodus,NY,304,Rochester,NY
-14539,33107,Rochester,NY,304,Rochester,NY
-14541,33041,Geneva,NY,304,Rochester,NY
-14542,33081,Newark,NY,304,Rochester,NY
-14543,33107,Rochester,NY,304,Rochester,NY
-14544,33017,Canandaigua,NY,304,Rochester,NY
-14545,33031,Dansville,NY,304,Rochester,NY
-14546,33107,Rochester,NY,304,Rochester,NY
-14547,33017,Canandaigua,NY,304,Rochester,NY
-14548,33022,Clifton Springs,NY,304,Rochester,NY
-14549,33132,Warsaw,NY,304,Rochester,NY
-14550,33132,Warsaw,NY,304,Rochester,NY
-14551,33117,Sodus,NY,304,Rochester,NY
-14555,33117,Sodus,NY,304,Rochester,NY
-14556,33031,Dansville,NY,304,Rochester,NY
-14557,33006,Batavia,NY,299,Buffalo,NY
-14558,33107,Rochester,NY,304,Rochester,NY
-14559,33107,Rochester,NY,304,Rochester,NY
-14560,33031,Dansville,NY,304,Rochester,NY
-14561,33017,Canandaigua,NY,304,Rochester,NY
-14563,33107,Rochester,NY,304,Rochester,NY
-14564,33017,Canandaigua,NY,304,Rochester,NY
-14568,33107,Rochester,NY,304,Rochester,NY
-14569,33132,Warsaw,NY,304,Rochester,NY
-14571,33073,Medina,NY,299,Buffalo,NY
-14572,33031,Dansville,NY,304,Rochester,NY
-14580,33107,Rochester,NY,304,Rochester,NY
-14585,33017,Canandaigua,NY,304,Rochester,NY
-14586,33107,Rochester,NY,304,Rochester,NY
-14588,33041,Geneva,NY,304,Rochester,NY
-14589,33117,Sodus,NY,304,Rochester,NY
-14590,33117,Sodus,NY,304,Rochester,NY
-14591,33132,Warsaw,NY,304,Rochester,NY
-14592,33107,Rochester,NY,304,Rochester,NY
-14602,33107,Rochester,NY,304,Rochester,NY
-14603,33107,Rochester,NY,304,Rochester,NY
-14604,33107,Rochester,NY,304,Rochester,NY
-14605,33107,Rochester,NY,304,Rochester,NY
-14606,33107,Rochester,NY,304,Rochester,NY
-14607,33107,Rochester,NY,304,Rochester,NY
-14608,33107,Rochester,NY,304,Rochester,NY
-14609,33107,Rochester,NY,304,Rochester,NY
-14610,33107,Rochester,NY,304,Rochester,NY
-14611,33107,Rochester,NY,304,Rochester,NY
-14612,33107,Rochester,NY,304,Rochester,NY
-14613,33107,Rochester,NY,304,Rochester,NY
-14614,33107,Rochester,NY,304,Rochester,NY
-14615,33107,Rochester,NY,304,Rochester,NY
-14616,33107,Rochester,NY,304,Rochester,NY
-14617,33107,Rochester,NY,304,Rochester,NY
-14618,33107,Rochester,NY,304,Rochester,NY
-14619,33107,Rochester,NY,304,Rochester,NY
-14620,33107,Rochester,NY,304,Rochester,NY
-14621,33107,Rochester,NY,304,Rochester,NY
-14622,33107,Rochester,NY,304,Rochester,NY
-14623,33107,Rochester,NY,304,Rochester,NY
-14624,33107,Rochester,NY,304,Rochester,NY
-14625,33107,Rochester,NY,304,Rochester,NY
-14626,33107,Rochester,NY,304,Rochester,NY
-14627,33107,Rochester,NY,304,Rochester,NY
-14638,33107,Rochester,NY,304,Rochester,NY
-14639,33107,Rochester,NY,304,Rochester,NY
-14642,33107,Rochester,NY,304,Rochester,NY
-14643,33107,Rochester,NY,304,Rochester,NY
-14644,33107,Rochester,NY,304,Rochester,NY
-14646,33107,Rochester,NY,304,Rochester,NY
-14647,33107,Rochester,NY,304,Rochester,NY
-14649,33107,Rochester,NY,304,Rochester,NY
-14650,33107,Rochester,NY,304,Rochester,NY
-14651,33107,Rochester,NY,304,Rochester,NY
-14652,33107,Rochester,NY,304,Rochester,NY
-14653,33107,Rochester,NY,304,Rochester,NY
-14692,33107,Rochester,NY,304,Rochester,NY
-14694,33107,Rochester,NY,304,Rochester,NY
-14701,33058,Jamestown,NY,351,Erie,PA
-14702,33058,Jamestown,NY,351,Erie,PA
-14706,33091,Olean,NY,299,Buffalo,NY
-14707,33136,Wellsville,NY,304,Rochester,NY
-14708,33136,Wellsville,NY,304,Rochester,NY
-14709,33136,Wellsville,NY,304,Rochester,NY
-14710,33058,Jamestown,NY,351,Erie,PA
-14711,33136,Wellsville,NY,304,Rochester,NY
-14712,33058,Jamestown,NY,351,Erie,PA
-14714,33030,Cuba,NY,299,Buffalo,NY
-14715,33136,Wellsville,NY,304,Rochester,NY
-14716,33033,Dunkirk,NY,299,Buffalo,NY
-14717,33136,Wellsville,NY,304,Rochester,NY
-14718,33033,Dunkirk,NY,299,Buffalo,NY
-14719,33047,Gowanda,NY,299,Buffalo,NY
-14720,33058,Jamestown,NY,351,Erie,PA
-14721,33091,Olean,NY,299,Buffalo,NY
-14722,33138,Westfield,NY,351,Erie,PA
-14723,33058,Jamestown,NY,351,Erie,PA
-14724,39029,Corry,PA,351,Erie,PA
-14726,33058,Jamestown,NY,351,Erie,PA
-14727,33030,Cuba,NY,299,Buffalo,NY
-14728,33058,Jamestown,NY,351,Erie,PA
-14729,33119,Springville,NY,299,Buffalo,NY
-14730,33058,Jamestown,NY,351,Erie,PA
-14731,33091,Olean,NY,299,Buffalo,NY
-14732,33058,Jamestown,NY,351,Erie,PA
-14733,33058,Jamestown,NY,351,Erie,PA
-14735,33132,Warsaw,NY,304,Rochester,NY
-14736,39041,Erie,PA,351,Erie,PA
-14737,33091,Olean,NY,299,Buffalo,NY
-14738,33058,Jamestown,NY,351,Erie,PA
-14739,33030,Cuba,NY,299,Buffalo,NY
-14740,33058,Jamestown,NY,351,Erie,PA
-14741,33091,Olean,NY,299,Buffalo,NY
-14742,33058,Jamestown,NY,351,Erie,PA
-14743,33091,Olean,NY,299,Buffalo,NY
-14744,33091,Olean,NY,299,Buffalo,NY
-14745,33132,Warsaw,NY,304,Rochester,NY
-14747,33058,Jamestown,NY,351,Erie,PA
-14748,33091,Olean,NY,299,Buffalo,NY
-14750,33058,Jamestown,NY,351,Erie,PA
-14751,33058,Jamestown,NY,351,Erie,PA
-14752,33033,Dunkirk,NY,299,Buffalo,NY
-14753,39011,Bradford,PA,351,Erie,PA
-14754,33091,Olean,NY,299,Buffalo,NY
-14755,33091,Olean,NY,299,Buffalo,NY
-14756,33058,Jamestown,NY,351,Erie,PA
-14757,33138,Westfield,NY,351,Erie,PA
-14758,33058,Jamestown,NY,351,Erie,PA
-14760,33091,Olean,NY,299,Buffalo,NY
-14766,33047,Gowanda,NY,299,Buffalo,NY
-14767,33058,Jamestown,NY,351,Erie,PA
-14769,33138,Westfield,NY,351,Erie,PA
-14770,33091,Olean,NY,299,Buffalo,NY
-14772,33058,Jamestown,NY,351,Erie,PA
-14774,33136,Wellsville,NY,304,Rochester,NY
-14775,39041,Erie,PA,351,Erie,PA
-14777,33091,Olean,NY,299,Buffalo,NY
-14778,33091,Olean,NY,299,Buffalo,NY
-14779,33091,Olean,NY,299,Buffalo,NY
-14781,33138,Westfield,NY,351,Erie,PA
-14782,33058,Jamestown,NY,351,Erie,PA
-14783,33058,Jamestown,NY,351,Erie,PA
-14784,33033,Dunkirk,NY,299,Buffalo,NY
-14785,33058,Jamestown,NY,351,Erie,PA
-14786,33030,Cuba,NY,299,Buffalo,NY
-14787,33138,Westfield,NY,351,Erie,PA
-14788,33091,Olean,NY,299,Buffalo,NY
-14801,33027,Corning,NY,359,Sayre,PA
-14802,33136,Wellsville,NY,304,Rochester,NY
-14803,33136,Wellsville,NY,304,Rochester,NY
-14804,33052,Hornell,NY,304,Rochester,NY
-14805,33037,Elmira,NY,300,Elmira,NY
-14806,33136,Wellsville,NY,304,Rochester,NY
-14807,33052,Hornell,NY,304,Rochester,NY
-14808,33031,Dansville,NY,304,Rochester,NY
-14809,33007,Bath,NY,304,Rochester,NY
-14810,33007,Bath,NY,304,Rochester,NY
-14812,33027,Corning,NY,359,Sayre,PA
-14813,33136,Wellsville,NY,304,Rochester,NY
-14814,33037,Elmira,NY,300,Elmira,NY
-14815,33027,Corning,NY,359,Sayre,PA
-14816,33037,Elmira,NY,300,Elmira,NY
-14817,33056,Ithaca,NY,304,Rochester,NY
-14818,33076,Montour Falls,NY,300,Elmira,NY
-14819,33052,Hornell,NY,304,Rochester,NY
-14820,33007,Bath,NY,304,Rochester,NY
-14821,33027,Corning,NY,359,Sayre,PA
-14822,33031,Dansville,NY,304,Rochester,NY
-14823,33052,Hornell,NY,304,Rochester,NY
-14824,33037,Elmira,NY,300,Elmira,NY
-14825,39108,Sayre,PA,359,Sayre,PA
-14826,33031,Dansville,NY,304,Rochester,NY
-14827,33027,Corning,NY,359,Sayre,PA
-14830,33027,Corning,NY,359,Sayre,PA
-14831,33027,Corning,NY,359,Sayre,PA
-14836,33031,Dansville,NY,304,Rochester,NY
-14837,33097,Penn Yan,NY,304,Rochester,NY
-14838,33037,Elmira,NY,300,Elmira,NY
-14839,33052,Hornell,NY,304,Rochester,NY
-14840,33007,Bath,NY,304,Rochester,NY
-14841,33076,Montour Falls,NY,300,Elmira,NY
-14842,33097,Penn Yan,NY,304,Rochester,NY
-14843,33052,Hornell,NY,304,Rochester,NY
-14845,33037,Elmira,NY,300,Elmira,NY
-14846,33031,Dansville,NY,304,Rochester,NY
-14847,33056,Ithaca,NY,304,Rochester,NY
-14850,33056,Ithaca,NY,304,Rochester,NY
-14851,33056,Ithaca,NY,304,Rochester,NY
-14852,33056,Ithaca,NY,304,Rochester,NY
-14853,33056,Ithaca,NY,304,Rochester,NY
-14854,33056,Ithaca,NY,304,Rochester,NY
-14855,33052,Hornell,NY,304,Rochester,NY
-14856,33007,Bath,NY,304,Rochester,NY
-14857,33097,Penn Yan,NY,304,Rochester,NY
-14858,33027,Corning,NY,359,Sayre,PA
-14859,39108,Sayre,PA,359,Sayre,PA
-14860,33041,Geneva,NY,304,Rochester,NY
-14861,33037,Elmira,NY,300,Elmira,NY
-14863,33056,Ithaca,NY,304,Rochester,NY
-14864,33037,Elmira,NY,300,Elmira,NY
-14865,33076,Montour Falls,NY,300,Elmira,NY
-14867,33056,Ithaca,NY,304,Rochester,NY
-14869,33076,Montour Falls,NY,300,Elmira,NY
-14870,33027,Corning,NY,359,Sayre,PA
-14871,33037,Elmira,NY,300,Elmira,NY
-14872,33037,Elmira,NY,300,Elmira,NY
-14873,33007,Bath,NY,304,Rochester,NY
-14874,33097,Penn Yan,NY,304,Rochester,NY
-14876,33076,Montour Falls,NY,300,Elmira,NY
-14877,33052,Hornell,NY,304,Rochester,NY
-14878,33076,Montour Falls,NY,300,Elmira,NY
-14879,33007,Bath,NY,304,Rochester,NY
-14880,33136,Wellsville,NY,304,Rochester,NY
-14881,33056,Ithaca,NY,304,Rochester,NY
-14882,33056,Ithaca,NY,304,Rochester,NY
-14883,39108,Sayre,PA,359,Sayre,PA
-14884,33031,Dansville,NY,304,Rochester,NY
-14885,33052,Hornell,NY,304,Rochester,NY
-14886,33056,Ithaca,NY,304,Rochester,NY
-14887,33076,Montour Falls,NY,300,Elmira,NY
-14889,39108,Sayre,PA,359,Sayre,PA
-14891,33076,Montour Falls,NY,300,Elmira,NY
-14892,39108,Sayre,PA,359,Sayre,PA
-14893,33097,Penn Yan,NY,304,Rochester,NY
-14894,33037,Elmira,NY,300,Elmira,NY
-14895,33136,Wellsville,NY,304,Rochester,NY
-14897,33136,Wellsville,NY,304,Rochester,NY
-14898,33027,Corning,NY,359,Sayre,PA
-14901,33037,Elmira,NY,300,Elmira,NY
-14902,33037,Elmira,NY,300,Elmira,NY
-14903,33037,Elmira,NY,300,Elmira,NY
-14904,33037,Elmira,NY,300,Elmira,NY
-14905,33037,Elmira,NY,300,Elmira,NY
-15001,39002,Aliquippa,PA,357,Pittsburgh,PA
-15003,39111,Sewickley,PA,357,Pittsburgh,PA
-15004,51042,Weirton,WV,357,Pittsburgh,PA
-15005,39111,Sewickley,PA,357,Pittsburgh,PA
-15006,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15007,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15009,39006,Beaver,PA,357,Pittsburgh,PA
-15010,39006,Beaver,PA,357,Pittsburgh,PA
-15012,39081,Monongahela,PA,357,Pittsburgh,PA
-15014,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15015,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15017,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15018,39075,McKeesport,PA,357,Pittsburgh,PA
-15019,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15020,39081,Monongahela,PA,357,Pittsburgh,PA
-15021,51042,Weirton,WV,357,Pittsburgh,PA
-15022,39081,Monongahela,PA,357,Pittsburgh,PA
-15024,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15025,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15026,39111,Sewickley,PA,357,Pittsburgh,PA
-15027,39006,Beaver,PA,357,Pittsburgh,PA
-15028,39075,McKeesport,PA,357,Pittsburgh,PA
-15030,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15031,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15032,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15033,39081,Monongahela,PA,357,Pittsburgh,PA
-15034,39075,McKeesport,PA,357,Pittsburgh,PA
-15035,39082,Monroeville,PA,357,Pittsburgh,PA
-15037,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15038,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15042,39006,Beaver,PA,357,Pittsburgh,PA
-15043,39006,Beaver,PA,357,Pittsburgh,PA
-15044,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15045,39075,McKeesport,PA,357,Pittsburgh,PA
-15046,39111,Sewickley,PA,357,Pittsburgh,PA
-15047,39075,McKeesport,PA,357,Pittsburgh,PA
-15049,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15050,39002,Aliquippa,PA,357,Pittsburgh,PA
-15051,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15052,39006,Beaver,PA,357,Pittsburgh,PA
-15053,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15054,51042,Weirton,WV,357,Pittsburgh,PA
-15055,39019,Canonsburg,PA,357,Pittsburgh,PA
-15056,39111,Sewickley,PA,357,Pittsburgh,PA
-15057,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15059,39006,Beaver,PA,357,Pittsburgh,PA
-15060,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15061,39006,Beaver,PA,357,Pittsburgh,PA
-15062,39081,Monongahela,PA,357,Pittsburgh,PA
-15063,39081,Monongahela,PA,357,Pittsburgh,PA
-15064,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15065,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15066,39006,Beaver,PA,357,Pittsburgh,PA
-15067,39081,Monongahela,PA,357,Pittsburgh,PA
-15068,39089,New Kensington,PA,357,Pittsburgh,PA
-15069,39089,New Kensington,PA,357,Pittsburgh,PA
-15071,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15072,39081,Monongahela,PA,357,Pittsburgh,PA
-15074,39006,Beaver,PA,357,Pittsburgh,PA
-15075,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15076,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15077,39006,Beaver,PA,357,Pittsburgh,PA
-15078,51042,Weirton,WV,357,Pittsburgh,PA
-15081,39002,Aliquippa,PA,357,Pittsburgh,PA
-15082,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15083,39046,Greensburg,PA,357,Pittsburgh,PA
-15084,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15085,39057,Jeannette,PA,357,Pittsburgh,PA
-15086,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15087,39081,Monongahela,PA,357,Pittsburgh,PA
-15088,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15089,39046,Greensburg,PA,357,Pittsburgh,PA
-15090,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15091,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15095,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15096,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15101,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15102,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15104,39010,Braddock,PA,357,Pittsburgh,PA
-15106,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15108,39111,Sewickley,PA,357,Pittsburgh,PA
-15110,39075,McKeesport,PA,357,Pittsburgh,PA
-15112,39010,Braddock,PA,357,Pittsburgh,PA
-15116,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15120,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15122,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15123,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15126,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15127,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15129,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15131,39075,McKeesport,PA,357,Pittsburgh,PA
-15132,39075,McKeesport,PA,357,Pittsburgh,PA
-15133,39075,McKeesport,PA,357,Pittsburgh,PA
-15134,39075,McKeesport,PA,357,Pittsburgh,PA
-15135,39075,McKeesport,PA,357,Pittsburgh,PA
-15136,39074,McKees Rocks,PA,357,Pittsburgh,PA
-15137,39075,McKeesport,PA,357,Pittsburgh,PA
-15139,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15140,39082,Monroeville,PA,357,Pittsburgh,PA
-15142,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15143,39111,Sewickley,PA,357,Pittsburgh,PA
-15144,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15145,39082,Monroeville,PA,357,Pittsburgh,PA
-15146,39082,Monroeville,PA,357,Pittsburgh,PA
-15147,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15148,39082,Monroeville,PA,357,Pittsburgh,PA
-15201,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15202,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15203,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15204,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15205,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15206,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15207,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15208,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15209,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15210,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15211,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15212,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15213,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15214,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15215,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15216,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15217,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15218,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15219,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15220,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15221,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15222,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15223,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15224,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15225,39111,Sewickley,PA,357,Pittsburgh,PA
-15226,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15227,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15228,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15229,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15230,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15231,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15232,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15233,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15234,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15235,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15236,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15237,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15238,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15239,39082,Monroeville,PA,357,Pittsburgh,PA
-15240,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15241,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15242,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15243,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15244,39074,McKees Rocks,PA,357,Pittsburgh,PA
-15250,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15251,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15252,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15253,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15254,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15255,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15257,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15258,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15259,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15260,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15261,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15262,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15264,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15265,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15267,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15268,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15270,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15272,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15274,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15275,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15276,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15277,39074,McKees Rocks,PA,357,Pittsburgh,PA
-15278,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15279,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15281,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15282,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15283,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15286,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15289,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15290,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15295,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15301,39131,Washington,PA,357,Pittsburgh,PA
-15310,51010,Glen Dale,WV,357,Pittsburgh,PA
-15311,39131,Washington,PA,357,Pittsburgh,PA
-15312,39131,Washington,PA,357,Pittsburgh,PA
-15313,39131,Washington,PA,357,Pittsburgh,PA
-15314,39081,Monongahela,PA,357,Pittsburgh,PA
-15315,51024,Morgantown,WV,445,Morgantown,WV
-15316,51024,Morgantown,WV,445,Morgantown,WV
-15317,39019,Canonsburg,PA,357,Pittsburgh,PA
-15320,39133,Waynesburg,PA,445,Morgantown,WV
-15321,39019,Canonsburg,PA,357,Pittsburgh,PA
-15322,39133,Waynesburg,PA,445,Morgantown,WV
-15323,39131,Washington,PA,357,Pittsburgh,PA
-15324,39131,Washington,PA,357,Pittsburgh,PA
-15325,39133,Waynesburg,PA,445,Morgantown,WV
-15327,51024,Morgantown,WV,445,Morgantown,WV
-15329,39131,Washington,PA,357,Pittsburgh,PA
-15330,39019,Canonsburg,PA,357,Pittsburgh,PA
-15331,39131,Washington,PA,357,Pittsburgh,PA
-15332,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15333,39131,Washington,PA,357,Pittsburgh,PA
-15334,39133,Waynesburg,PA,445,Morgantown,WV
-15336,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15337,39133,Waynesburg,PA,445,Morgantown,WV
-15338,51024,Morgantown,WV,445,Morgantown,WV
-15339,39019,Canonsburg,PA,357,Pittsburgh,PA
-15340,39131,Washington,PA,357,Pittsburgh,PA
-15341,39133,Waynesburg,PA,445,Morgantown,WV
-15342,39131,Washington,PA,357,Pittsburgh,PA
-15344,39133,Waynesburg,PA,445,Morgantown,WV
-15345,39131,Washington,PA,357,Pittsburgh,PA
-15346,39133,Waynesburg,PA,445,Morgantown,WV
-15347,39131,Washington,PA,357,Pittsburgh,PA
-15348,39133,Waynesburg,PA,445,Morgantown,WV
-15349,51024,Morgantown,WV,445,Morgantown,WV
-15350,39019,Canonsburg,PA,357,Pittsburgh,PA
-15351,39133,Waynesburg,PA,445,Morgantown,WV
-15352,39133,Waynesburg,PA,445,Morgantown,WV
-15353,39133,Waynesburg,PA,445,Morgantown,WV
-15357,39133,Waynesburg,PA,445,Morgantown,WV
-15358,39014,Brownsville,PA,357,Pittsburgh,PA
-15359,39133,Waynesburg,PA,445,Morgantown,WV
-15360,39131,Washington,PA,357,Pittsburgh,PA
-15361,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15362,51024,Morgantown,WV,445,Morgantown,WV
-15363,39019,Canonsburg,PA,357,Pittsburgh,PA
-15364,39133,Waynesburg,PA,445,Morgantown,WV
-15365,39131,Washington,PA,357,Pittsburgh,PA
-15366,39081,Monongahela,PA,357,Pittsburgh,PA
-15367,39098,Pittsburgh,PA,357,Pittsburgh,PA
-15368,39133,Waynesburg,PA,445,Morgantown,WV
-15370,39133,Waynesburg,PA,445,Morgantown,WV
-15376,39131,Washington,PA,357,Pittsburgh,PA
-15377,39131,Washington,PA,357,Pittsburgh,PA
-15378,39131,Washington,PA,357,Pittsburgh,PA
-15379,39131,Washington,PA,357,Pittsburgh,PA
-15380,39133,Waynesburg,PA,445,Morgantown,WV
-15401,39127,Uniontown,PA,357,Pittsburgh,PA
-15410,39127,Uniontown,PA,357,Pittsburgh,PA
-15411,39114,Somerset,PA,354,Johnstown,PA
-15412,39081,Monongahela,PA,357,Pittsburgh,PA
-15413,39127,Uniontown,PA,357,Pittsburgh,PA
-15415,39127,Uniontown,PA,357,Pittsburgh,PA
-15416,39127,Uniontown,PA,357,Pittsburgh,PA
-15417,39014,Brownsville,PA,357,Pittsburgh,PA
-15419,39014,Brownsville,PA,357,Pittsburgh,PA
-15420,39127,Uniontown,PA,357,Pittsburgh,PA
-15421,39127,Uniontown,PA,357,Pittsburgh,PA
-15422,39127,Uniontown,PA,357,Pittsburgh,PA
-15423,39014,Brownsville,PA,357,Pittsburgh,PA
-15424,39114,Somerset,PA,354,Johnstown,PA
-15425,39028,Connellsville,PA,357,Pittsburgh,PA
-15427,39014,Brownsville,PA,357,Pittsburgh,PA
-15428,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15429,39014,Brownsville,PA,357,Pittsburgh,PA
-15430,39028,Connellsville,PA,357,Pittsburgh,PA
-15431,39028,Connellsville,PA,357,Pittsburgh,PA
-15432,39081,Monongahela,PA,357,Pittsburgh,PA
-15433,39014,Brownsville,PA,357,Pittsburgh,PA
-15434,39081,Monongahela,PA,357,Pittsburgh,PA
-15435,39127,Uniontown,PA,357,Pittsburgh,PA
-15436,39127,Uniontown,PA,357,Pittsburgh,PA
-15437,39127,Uniontown,PA,357,Pittsburgh,PA
-15438,39081,Monongahela,PA,357,Pittsburgh,PA
-15439,51024,Morgantown,WV,445,Morgantown,WV
-15440,39127,Uniontown,PA,357,Pittsburgh,PA
-15442,39127,Uniontown,PA,357,Pittsburgh,PA
-15443,39127,Uniontown,PA,357,Pittsburgh,PA
-15444,39014,Brownsville,PA,357,Pittsburgh,PA
-15445,39127,Uniontown,PA,357,Pittsburgh,PA
-15446,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15447,39014,Brownsville,PA,357,Pittsburgh,PA
-15448,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15449,39127,Uniontown,PA,357,Pittsburgh,PA
-15450,39014,Brownsville,PA,357,Pittsburgh,PA
-15451,51024,Morgantown,WV,445,Morgantown,WV
-15454,39127,Uniontown,PA,357,Pittsburgh,PA
-15455,39028,Connellsville,PA,357,Pittsburgh,PA
-15456,39127,Uniontown,PA,357,Pittsburgh,PA
-15458,39127,Uniontown,PA,357,Pittsburgh,PA
-15459,39127,Uniontown,PA,357,Pittsburgh,PA
-15460,39127,Uniontown,PA,357,Pittsburgh,PA
-15461,39127,Uniontown,PA,357,Pittsburgh,PA
-15462,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15463,39127,Uniontown,PA,357,Pittsburgh,PA
-15464,39028,Connellsville,PA,357,Pittsburgh,PA
-15465,39127,Uniontown,PA,357,Pittsburgh,PA
-15466,39127,Uniontown,PA,357,Pittsburgh,PA
-15467,51024,Morgantown,WV,445,Morgantown,WV
-15468,39127,Uniontown,PA,357,Pittsburgh,PA
-15469,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15470,39127,Uniontown,PA,357,Pittsburgh,PA
-15472,39127,Uniontown,PA,357,Pittsburgh,PA
-15473,39127,Uniontown,PA,357,Pittsburgh,PA
-15474,51024,Morgantown,WV,445,Morgantown,WV
-15475,39014,Brownsville,PA,357,Pittsburgh,PA
-15476,39127,Uniontown,PA,357,Pittsburgh,PA
-15477,39081,Monongahela,PA,357,Pittsburgh,PA
-15478,39127,Uniontown,PA,357,Pittsburgh,PA
-15479,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15480,39127,Uniontown,PA,357,Pittsburgh,PA
-15482,39127,Uniontown,PA,357,Pittsburgh,PA
-15483,39081,Monongahela,PA,357,Pittsburgh,PA
-15484,39127,Uniontown,PA,357,Pittsburgh,PA
-15485,39114,Somerset,PA,354,Johnstown,PA
-15486,39028,Connellsville,PA,357,Pittsburgh,PA
-15488,39127,Uniontown,PA,357,Pittsburgh,PA
-15489,39127,Uniontown,PA,357,Pittsburgh,PA
-15490,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15492,39127,Uniontown,PA,357,Pittsburgh,PA
-15501,39114,Somerset,PA,354,Johnstown,PA
-15502,39114,Somerset,PA,354,Johnstown,PA
-15510,39114,Somerset,PA,354,Johnstown,PA
-15520,39114,Somerset,PA,354,Johnstown,PA
-15521,39042,Everett,PA,347,Altoona,PA
-15522,39042,Everett,PA,347,Altoona,PA
-15530,39114,Somerset,PA,354,Johnstown,PA
-15531,39114,Somerset,PA,354,Johnstown,PA
-15532,39080,Meyersdale,PA,354,Johnstown,PA
-15533,39042,Everett,PA,347,Altoona,PA
-15534,21010,Cumberland,MD,113,Washington,DC
-15535,21010,Cumberland,MD,113,Washington,DC
-15536,39042,Everett,PA,347,Altoona,PA
-15537,39042,Everett,PA,347,Altoona,PA
-15538,39114,Somerset,PA,354,Johnstown,PA
-15539,39042,Everett,PA,347,Altoona,PA
-15540,39114,Somerset,PA,354,Johnstown,PA
-15541,39114,Somerset,PA,354,Johnstown,PA
-15542,39080,Meyersdale,PA,354,Johnstown,PA
-15544,39114,Somerset,PA,354,Johnstown,PA
-15545,39080,Meyersdale,PA,354,Johnstown,PA
-15546,39114,Somerset,PA,354,Johnstown,PA
-15547,39114,Somerset,PA,354,Johnstown,PA
-15548,39114,Somerset,PA,354,Johnstown,PA
-15549,39114,Somerset,PA,354,Johnstown,PA
-15550,39042,Everett,PA,347,Altoona,PA
-15551,39114,Somerset,PA,354,Johnstown,PA
-15552,39080,Meyersdale,PA,354,Johnstown,PA
-15553,39114,Somerset,PA,354,Johnstown,PA
-15554,39042,Everett,PA,347,Altoona,PA
-15555,39114,Somerset,PA,354,Johnstown,PA
-15557,39114,Somerset,PA,354,Johnstown,PA
-15558,39080,Meyersdale,PA,354,Johnstown,PA
-15559,39042,Everett,PA,347,Altoona,PA
-15560,39114,Somerset,PA,354,Johnstown,PA
-15561,39114,Somerset,PA,354,Johnstown,PA
-15562,39080,Meyersdale,PA,354,Johnstown,PA
-15563,39114,Somerset,PA,354,Johnstown,PA
-15564,39080,Meyersdale,PA,354,Johnstown,PA
-15565,39080,Meyersdale,PA,354,Johnstown,PA
-15601,39046,Greensburg,PA,357,Pittsburgh,PA
-15605,39046,Greensburg,PA,357,Pittsburgh,PA
-15606,39046,Greensburg,PA,357,Pittsburgh,PA
-15610,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15611,39057,Jeannette,PA,357,Pittsburgh,PA
-15612,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15613,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15615,39057,Jeannette,PA,357,Pittsburgh,PA
-15616,39046,Greensburg,PA,357,Pittsburgh,PA
-15617,39057,Jeannette,PA,357,Pittsburgh,PA
-15618,39082,Monroeville,PA,357,Pittsburgh,PA
-15619,39046,Greensburg,PA,357,Pittsburgh,PA
-15620,39066,Latrobe,PA,357,Pittsburgh,PA
-15621,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15622,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15623,39057,Jeannette,PA,357,Pittsburgh,PA
-15624,39046,Greensburg,PA,357,Pittsburgh,PA
-15625,39046,Greensburg,PA,357,Pittsburgh,PA
-15626,39082,Monroeville,PA,357,Pittsburgh,PA
-15627,39066,Latrobe,PA,357,Pittsburgh,PA
-15628,39066,Latrobe,PA,357,Pittsburgh,PA
-15629,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15631,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15632,39082,Monroeville,PA,357,Pittsburgh,PA
-15633,39046,Greensburg,PA,357,Pittsburgh,PA
-15634,39057,Jeannette,PA,357,Pittsburgh,PA
-15635,39046,Greensburg,PA,357,Pittsburgh,PA
-15636,39057,Jeannette,PA,357,Pittsburgh,PA
-15637,39046,Greensburg,PA,357,Pittsburgh,PA
-15638,39066,Latrobe,PA,357,Pittsburgh,PA
-15639,39046,Greensburg,PA,357,Pittsburgh,PA
-15640,39046,Greensburg,PA,357,Pittsburgh,PA
-15641,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15642,39057,Jeannette,PA,357,Pittsburgh,PA
-15644,39057,Jeannette,PA,357,Pittsburgh,PA
-15646,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15647,39057,Jeannette,PA,357,Pittsburgh,PA
-15650,39066,Latrobe,PA,357,Pittsburgh,PA
-15655,39066,Latrobe,PA,357,Pittsburgh,PA
-15656,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15658,39066,Latrobe,PA,357,Pittsburgh,PA
-15660,39046,Greensburg,PA,357,Pittsburgh,PA
-15661,39066,Latrobe,PA,357,Pittsburgh,PA
-15662,39046,Greensburg,PA,357,Pittsburgh,PA
-15663,39046,Greensburg,PA,357,Pittsburgh,PA
-15664,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15665,39057,Jeannette,PA,357,Pittsburgh,PA
-15666,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15668,39082,Monroeville,PA,357,Pittsburgh,PA
-15670,39066,Latrobe,PA,357,Pittsburgh,PA
-15671,39066,Latrobe,PA,357,Pittsburgh,PA
-15672,39046,Greensburg,PA,357,Pittsburgh,PA
-15673,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15674,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15675,39057,Jeannette,PA,357,Pittsburgh,PA
-15676,39066,Latrobe,PA,357,Pittsburgh,PA
-15677,39066,Latrobe,PA,357,Pittsburgh,PA
-15678,39046,Greensburg,PA,357,Pittsburgh,PA
-15679,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15680,39082,Monroeville,PA,357,Pittsburgh,PA
-15681,39066,Latrobe,PA,357,Pittsburgh,PA
-15682,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15683,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15684,39082,Monroeville,PA,357,Pittsburgh,PA
-15685,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15686,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15687,39066,Latrobe,PA,357,Pittsburgh,PA
-15688,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15689,39084,Mount Pleasant,PA,357,Pittsburgh,PA
-15690,39087,Natrona Heights,PA,357,Pittsburgh,PA
-15691,39057,Jeannette,PA,357,Pittsburgh,PA
-15692,39057,Jeannette,PA,357,Pittsburgh,PA
-15693,39066,Latrobe,PA,357,Pittsburgh,PA
-15695,39046,Greensburg,PA,357,Pittsburgh,PA
-15696,39066,Latrobe,PA,357,Pittsburgh,PA
-15697,39046,Greensburg,PA,357,Pittsburgh,PA
-15698,39046,Greensburg,PA,357,Pittsburgh,PA
-15701,39056,Indiana,PA,357,Pittsburgh,PA
-15705,39056,Indiana,PA,357,Pittsburgh,PA
-15710,39056,Indiana,PA,357,Pittsburgh,PA
-15711,39035,Dubois,PA,357,Pittsburgh,PA
-15712,39115,Spangler,PA,354,Johnstown,PA
-15713,39056,Indiana,PA,357,Pittsburgh,PA
-15714,39115,Spangler,PA,354,Johnstown,PA
-15715,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15716,39066,Latrobe,PA,357,Pittsburgh,PA
-15717,39066,Latrobe,PA,357,Pittsburgh,PA
-15720,39056,Indiana,PA,357,Pittsburgh,PA
-15721,39115,Spangler,PA,354,Johnstown,PA
-15722,39115,Spangler,PA,354,Johnstown,PA
-15723,39056,Indiana,PA,357,Pittsburgh,PA
-15724,39115,Spangler,PA,354,Johnstown,PA
-15725,39066,Latrobe,PA,357,Pittsburgh,PA
-15727,39056,Indiana,PA,357,Pittsburgh,PA
-15728,39056,Indiana,PA,357,Pittsburgh,PA
-15729,39056,Indiana,PA,357,Pittsburgh,PA
-15730,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15731,39056,Indiana,PA,357,Pittsburgh,PA
-15732,39056,Indiana,PA,357,Pittsburgh,PA
-15733,39035,Dubois,PA,357,Pittsburgh,PA
-15734,39056,Indiana,PA,357,Pittsburgh,PA
-15736,39056,Indiana,PA,357,Pittsburgh,PA
-15737,39115,Spangler,PA,354,Johnstown,PA
-15738,39115,Spangler,PA,354,Johnstown,PA
-15739,39056,Indiana,PA,357,Pittsburgh,PA
-15741,39115,Spangler,PA,354,Johnstown,PA
-15742,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15744,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15745,39056,Indiana,PA,357,Pittsburgh,PA
-15746,39115,Spangler,PA,354,Johnstown,PA
-15747,39056,Indiana,PA,357,Pittsburgh,PA
-15748,39056,Indiana,PA,357,Pittsburgh,PA
-15750,39066,Latrobe,PA,357,Pittsburgh,PA
-15752,39066,Latrobe,PA,357,Pittsburgh,PA
-15753,39025,Clearfield,PA,347,Altoona,PA
-15754,39056,Indiana,PA,357,Pittsburgh,PA
-15756,39056,Indiana,PA,357,Pittsburgh,PA
-15757,39025,Clearfield,PA,347,Altoona,PA
-15758,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15759,39056,Indiana,PA,357,Pittsburgh,PA
-15760,39115,Spangler,PA,354,Johnstown,PA
-15761,39056,Indiana,PA,357,Pittsburgh,PA
-15762,39115,Spangler,PA,354,Johnstown,PA
-15763,39062,Kittanning,PA,357,Pittsburgh,PA
-15764,39035,Dubois,PA,357,Pittsburgh,PA
-15765,39056,Indiana,PA,357,Pittsburgh,PA
-15767,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15770,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15771,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15772,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15773,39115,Spangler,PA,354,Johnstown,PA
-15774,39056,Indiana,PA,357,Pittsburgh,PA
-15775,39115,Spangler,PA,354,Johnstown,PA
-15776,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15777,39056,Indiana,PA,357,Pittsburgh,PA
-15778,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15779,39066,Latrobe,PA,357,Pittsburgh,PA
-15780,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15781,39101,Punxsutawney,PA,357,Pittsburgh,PA
-15783,39056,Indiana,PA,357,Pittsburgh,PA
-15784,39013,Brookville,PA,357,Pittsburgh,PA
-15801,39035,Dubois,PA,357,Pittsburgh,PA
-15821,39117,St. Marys,PA,351,Erie,PA
-15822,39035,Dubois,PA,357,Pittsburgh,PA
-15823,39035,Dubois,PA,357,Pittsburgh,PA
-15824,39035,Dubois,PA,357,Pittsburgh,PA
-15825,39013,Brookville,PA,357,Pittsburgh,PA
-15827,39035,Dubois,PA,357,Pittsburgh,PA
-15828,39013,Brookville,PA,357,Pittsburgh,PA
-15829,39013,Brookville,PA,357,Pittsburgh,PA
-15831,39117,St. Marys,PA,351,Erie,PA
-15832,39117,St. Marys,PA,351,Erie,PA
-15834,39117,St. Marys,PA,351,Erie,PA
-15840,39035,Dubois,PA,357,Pittsburgh,PA
-15841,39035,Dubois,PA,357,Pittsburgh,PA
-15845,39105,Ridgway,PA,351,Erie,PA
-15846,39117,St. Marys,PA,351,Erie,PA
-15847,39013,Brookville,PA,357,Pittsburgh,PA
-15848,39035,Dubois,PA,357,Pittsburgh,PA
-15849,39035,Dubois,PA,357,Pittsburgh,PA
-15851,39035,Dubois,PA,357,Pittsburgh,PA
-15853,39105,Ridgway,PA,351,Erie,PA
-15856,39035,Dubois,PA,357,Pittsburgh,PA
-15857,39117,St. Marys,PA,351,Erie,PA
-15860,39013,Brookville,PA,357,Pittsburgh,PA
-15861,39030,Coudersport,PA,351,Erie,PA
-15863,39035,Dubois,PA,357,Pittsburgh,PA
-15864,39013,Brookville,PA,357,Pittsburgh,PA
-15865,39035,Dubois,PA,357,Pittsburgh,PA
-15866,39035,Dubois,PA,357,Pittsburgh,PA
-15868,39035,Dubois,PA,357,Pittsburgh,PA
-15870,39117,St. Marys,PA,351,Erie,PA
-15901,39059,Johnstown,PA,354,Johnstown,PA
-15902,39059,Johnstown,PA,354,Johnstown,PA
-15904,39059,Johnstown,PA,354,Johnstown,PA
-15905,39059,Johnstown,PA,354,Johnstown,PA
-15906,39059,Johnstown,PA,354,Johnstown,PA
-15907,39059,Johnstown,PA,354,Johnstown,PA
-15909,39059,Johnstown,PA,354,Johnstown,PA
-15915,39059,Johnstown,PA,354,Johnstown,PA
-15920,39059,Johnstown,PA,354,Johnstown,PA
-15921,39059,Johnstown,PA,354,Johnstown,PA
-15922,39059,Johnstown,PA,354,Johnstown,PA
-15923,39059,Johnstown,PA,354,Johnstown,PA
-15924,39139,Windber,PA,354,Johnstown,PA
-15925,39059,Johnstown,PA,354,Johnstown,PA
-15926,39139,Windber,PA,354,Johnstown,PA
-15927,39059,Johnstown,PA,354,Johnstown,PA
-15928,39059,Johnstown,PA,354,Johnstown,PA
-15929,39059,Johnstown,PA,354,Johnstown,PA
-15930,39059,Johnstown,PA,354,Johnstown,PA
-15931,39059,Johnstown,PA,354,Johnstown,PA
-15934,39059,Johnstown,PA,354,Johnstown,PA
-15935,39059,Johnstown,PA,354,Johnstown,PA
-15936,39114,Somerset,PA,354,Johnstown,PA
-15937,39059,Johnstown,PA,354,Johnstown,PA
-15938,39059,Johnstown,PA,354,Johnstown,PA
-15940,39004,Altoona,PA,347,Altoona,PA
-15942,39059,Johnstown,PA,354,Johnstown,PA
-15943,39059,Johnstown,PA,354,Johnstown,PA
-15944,39059,Johnstown,PA,354,Johnstown,PA
-15945,39059,Johnstown,PA,354,Johnstown,PA
-15946,39059,Johnstown,PA,354,Johnstown,PA
-15948,39059,Johnstown,PA,354,Johnstown,PA
-15949,39059,Johnstown,PA,354,Johnstown,PA
-15951,39059,Johnstown,PA,354,Johnstown,PA
-15952,39059,Johnstown,PA,354,Johnstown,PA
-15953,39139,Windber,PA,354,Johnstown,PA
-15954,39059,Johnstown,PA,354,Johnstown,PA
-15955,39059,Johnstown,PA,354,Johnstown,PA
-15956,39059,Johnstown,PA,354,Johnstown,PA
-15957,39059,Johnstown,PA,354,Johnstown,PA
-15958,39059,Johnstown,PA,354,Johnstown,PA
-15959,39059,Johnstown,PA,354,Johnstown,PA
-15960,39059,Johnstown,PA,354,Johnstown,PA
-15961,39059,Johnstown,PA,354,Johnstown,PA
-15962,39059,Johnstown,PA,354,Johnstown,PA
-15963,39139,Windber,PA,354,Johnstown,PA
-16001,39016,Butler,PA,357,Pittsburgh,PA
-16002,39016,Butler,PA,357,Pittsburgh,PA
-16003,39016,Butler,PA,357,Pittsburgh,PA
-16016,39048,Grove City,PA,357,Pittsburgh,PA
-16017,39048,Grove City,PA,357,Pittsburgh,PA
-16018,39048,Grove City,PA,357,Pittsburgh,PA
-16020,39048,Grove City,PA,357,Pittsburgh,PA
-16021,39048,Grove City,PA,357,Pittsburgh,PA
-16022,39016,Butler,PA,357,Pittsburgh,PA
-16023,39087,Natrona Heights,PA,357,Pittsburgh,PA
-16024,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16025,39016,Butler,PA,357,Pittsburgh,PA
-16027,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16028,39062,Kittanning,PA,357,Pittsburgh,PA
-16029,39016,Butler,PA,357,Pittsburgh,PA
-16030,39016,Butler,PA,357,Pittsburgh,PA
-16033,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16034,39016,Butler,PA,357,Pittsburgh,PA
-16035,39048,Grove City,PA,357,Pittsburgh,PA
-16036,39044,Franklin,PA,351,Erie,PA
-16037,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16038,39048,Grove City,PA,357,Pittsburgh,PA
-16039,39016,Butler,PA,357,Pittsburgh,PA
-16040,39016,Butler,PA,357,Pittsburgh,PA
-16041,39016,Butler,PA,357,Pittsburgh,PA
-16045,39016,Butler,PA,357,Pittsburgh,PA
-16046,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16048,39016,Butler,PA,357,Pittsburgh,PA
-16049,39044,Franklin,PA,351,Erie,PA
-16050,39016,Butler,PA,357,Pittsburgh,PA
-16051,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16052,39016,Butler,PA,357,Pittsburgh,PA
-16053,39016,Butler,PA,357,Pittsburgh,PA
-16054,39044,Franklin,PA,351,Erie,PA
-16055,39087,Natrona Heights,PA,357,Pittsburgh,PA
-16056,39087,Natrona Heights,PA,357,Pittsburgh,PA
-16057,39048,Grove City,PA,357,Pittsburgh,PA
-16058,39044,Franklin,PA,351,Erie,PA
-16059,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16061,39016,Butler,PA,357,Pittsburgh,PA
-16063,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16066,39098,Pittsburgh,PA,357,Pittsburgh,PA
-16101,39088,New Castle,PA,335,Youngstown,OH
-16102,39088,New Castle,PA,335,Youngstown,OH
-16103,39088,New Castle,PA,335,Youngstown,OH
-16105,39088,New Castle,PA,335,Youngstown,OH
-16107,39088,New Castle,PA,335,Youngstown,OH
-16108,39088,New Castle,PA,335,Youngstown,OH
-16110,39047,Greenville,PA,351,Erie,PA
-16111,39077,Meadville,PA,351,Erie,PA
-16112,39088,New Castle,PA,335,Youngstown,OH
-16113,39047,Greenville,PA,351,Erie,PA
-16114,39047,Greenville,PA,351,Erie,PA
-16115,39006,Beaver,PA,357,Pittsburgh,PA
-16116,39088,New Castle,PA,335,Youngstown,OH
-16117,39039,Ellwood City,PA,357,Pittsburgh,PA
-16120,39088,New Castle,PA,335,Youngstown,OH
-16121,39113,Sharon,PA,335,Youngstown,OH
-16123,39039,Ellwood City,PA,357,Pittsburgh,PA
-16124,39047,Greenville,PA,351,Erie,PA
-16125,39047,Greenville,PA,351,Erie,PA
-16127,39048,Grove City,PA,357,Pittsburgh,PA
-16130,39047,Greenville,PA,351,Erie,PA
-16131,39047,Greenville,PA,351,Erie,PA
-16132,39088,New Castle,PA,335,Youngstown,OH
-16133,39048,Grove City,PA,357,Pittsburgh,PA
-16134,39047,Greenville,PA,351,Erie,PA
-16136,39006,Beaver,PA,357,Pittsburgh,PA
-16137,39047,Greenville,PA,351,Erie,PA
-16140,39088,New Castle,PA,335,Youngstown,OH
-16141,39006,Beaver,PA,357,Pittsburgh,PA
-16142,39088,New Castle,PA,335,Youngstown,OH
-16143,39088,New Castle,PA,335,Youngstown,OH
-16145,39047,Greenville,PA,351,Erie,PA
-16146,39113,Sharon,PA,335,Youngstown,OH
-16148,39113,Sharon,PA,335,Youngstown,OH
-16150,39113,Sharon,PA,335,Youngstown,OH
-16151,39047,Greenville,PA,351,Erie,PA
-16153,39047,Greenville,PA,351,Erie,PA
-16154,39047,Greenville,PA,351,Erie,PA
-16155,39088,New Castle,PA,335,Youngstown,OH
-16156,39088,New Castle,PA,335,Youngstown,OH
-16157,39039,Ellwood City,PA,357,Pittsburgh,PA
-16159,39113,Sharon,PA,335,Youngstown,OH
-16160,39039,Ellwood City,PA,357,Pittsburgh,PA
-16161,39113,Sharon,PA,335,Youngstown,OH
-16172,39088,New Castle,PA,335,Youngstown,OH
-16201,39062,Kittanning,PA,357,Pittsburgh,PA
-16210,39062,Kittanning,PA,357,Pittsburgh,PA
-16211,39056,Indiana,PA,357,Pittsburgh,PA
-16212,39062,Kittanning,PA,357,Pittsburgh,PA
-16213,39024,Clarion,PA,357,Pittsburgh,PA
-16214,39024,Clarion,PA,357,Pittsburgh,PA
-16217,39024,Clarion,PA,357,Pittsburgh,PA
-16218,39062,Kittanning,PA,357,Pittsburgh,PA
-16220,39024,Clarion,PA,357,Pittsburgh,PA
-16221,39024,Clarion,PA,357,Pittsburgh,PA
-16222,39062,Kittanning,PA,357,Pittsburgh,PA
-16223,39013,Brookville,PA,357,Pittsburgh,PA
-16224,39013,Brookville,PA,357,Pittsburgh,PA
-16225,39024,Clarion,PA,357,Pittsburgh,PA
-16226,39062,Kittanning,PA,357,Pittsburgh,PA
-16228,39062,Kittanning,PA,357,Pittsburgh,PA
-16229,39087,Natrona Heights,PA,357,Pittsburgh,PA
-16230,39013,Brookville,PA,357,Pittsburgh,PA
-16232,39024,Clarion,PA,357,Pittsburgh,PA
-16233,39024,Clarion,PA,357,Pittsburgh,PA
-16234,39013,Brookville,PA,357,Pittsburgh,PA
-16235,39024,Clarion,PA,357,Pittsburgh,PA
-16236,39062,Kittanning,PA,357,Pittsburgh,PA
-16238,39062,Kittanning,PA,357,Pittsburgh,PA
-16239,39060,Kane,PA,351,Erie,PA
-16240,39013,Brookville,PA,357,Pittsburgh,PA
-16242,39013,Brookville,PA,357,Pittsburgh,PA
-16244,39062,Kittanning,PA,357,Pittsburgh,PA
-16245,39013,Brookville,PA,357,Pittsburgh,PA
-16246,39101,Punxsutawney,PA,357,Pittsburgh,PA
-16248,39024,Clarion,PA,357,Pittsburgh,PA
-16249,39062,Kittanning,PA,357,Pittsburgh,PA
-16250,39062,Kittanning,PA,357,Pittsburgh,PA
-16253,39013,Brookville,PA,357,Pittsburgh,PA
-16254,39024,Clarion,PA,357,Pittsburgh,PA
-16255,39024,Clarion,PA,357,Pittsburgh,PA
-16256,39101,Punxsutawney,PA,357,Pittsburgh,PA
-16257,39024,Clarion,PA,357,Pittsburgh,PA
-16258,39024,Clarion,PA,357,Pittsburgh,PA
-16259,39062,Kittanning,PA,357,Pittsburgh,PA
-16260,39024,Clarion,PA,357,Pittsburgh,PA
-16261,39062,Kittanning,PA,357,Pittsburgh,PA
-16262,39062,Kittanning,PA,357,Pittsburgh,PA
-16263,39062,Kittanning,PA,357,Pittsburgh,PA
-16301,39044,Franklin,PA,351,Erie,PA
-16311,39077,Meadville,PA,351,Erie,PA
-16312,39130,Warren,PA,351,Erie,PA
-16313,39130,Warren,PA,351,Erie,PA
-16314,39077,Meadville,PA,351,Erie,PA
-16316,39077,Meadville,PA,351,Erie,PA
-16317,39044,Franklin,PA,351,Erie,PA
-16319,39044,Franklin,PA,351,Erie,PA
-16321,39121,Titusville,PA,351,Erie,PA
-16322,39121,Titusville,PA,351,Erie,PA
-16323,39044,Franklin,PA,351,Erie,PA
-16326,39024,Clarion,PA,357,Pittsburgh,PA
-16327,39077,Meadville,PA,351,Erie,PA
-16328,39121,Titusville,PA,351,Erie,PA
-16329,39121,Titusville,PA,351,Erie,PA
-16331,39024,Clarion,PA,357,Pittsburgh,PA
-16332,39024,Clarion,PA,357,Pittsburgh,PA
-16333,39060,Kane,PA,351,Erie,PA
-16334,39024,Clarion,PA,357,Pittsburgh,PA
-16335,39077,Meadville,PA,351,Erie,PA
-16340,39130,Warren,PA,351,Erie,PA
-16341,39121,Titusville,PA,351,Erie,PA
-16342,39044,Franklin,PA,351,Erie,PA
-16343,39044,Franklin,PA,351,Erie,PA
-16344,39044,Franklin,PA,351,Erie,PA
-16345,39130,Warren,PA,351,Erie,PA
-16346,39044,Franklin,PA,351,Erie,PA
-16347,39130,Warren,PA,351,Erie,PA
-16350,39130,Warren,PA,351,Erie,PA
-16351,39121,Titusville,PA,351,Erie,PA
-16352,39130,Warren,PA,351,Erie,PA
-16353,39121,Titusville,PA,351,Erie,PA
-16354,39121,Titusville,PA,351,Erie,PA
-16360,39077,Meadville,PA,351,Erie,PA
-16361,39024,Clarion,PA,357,Pittsburgh,PA
-16362,39044,Franklin,PA,351,Erie,PA
-16364,39044,Franklin,PA,351,Erie,PA
-16365,39130,Warren,PA,351,Erie,PA
-16366,39130,Warren,PA,351,Erie,PA
-16367,39130,Warren,PA,351,Erie,PA
-16368,39130,Warren,PA,351,Erie,PA
-16369,39130,Warren,PA,351,Erie,PA
-16370,39121,Titusville,PA,351,Erie,PA
-16371,39130,Warren,PA,351,Erie,PA
-16372,39044,Franklin,PA,351,Erie,PA
-16373,39044,Franklin,PA,351,Erie,PA
-16374,39044,Franklin,PA,351,Erie,PA
-16375,39024,Clarion,PA,357,Pittsburgh,PA
-16388,39077,Meadville,PA,351,Erie,PA
-16401,39041,Erie,PA,351,Erie,PA
-16402,39029,Corry,PA,351,Erie,PA
-16403,39077,Meadville,PA,351,Erie,PA
-16404,39121,Titusville,PA,351,Erie,PA
-16405,39029,Corry,PA,351,Erie,PA
-16406,39077,Meadville,PA,351,Erie,PA
-16407,39029,Corry,PA,351,Erie,PA
-16410,39041,Erie,PA,351,Erie,PA
-16411,39041,Erie,PA,351,Erie,PA
-16412,39041,Erie,PA,351,Erie,PA
-16413,39029,Corry,PA,351,Erie,PA
-16415,39041,Erie,PA,351,Erie,PA
-16416,39130,Warren,PA,351,Erie,PA
-16417,39041,Erie,PA,351,Erie,PA
-16420,39130,Warren,PA,351,Erie,PA
-16421,39041,Erie,PA,351,Erie,PA
-16422,39077,Meadville,PA,351,Erie,PA
-16423,39041,Erie,PA,351,Erie,PA
-16424,39077,Meadville,PA,351,Erie,PA
-16426,39041,Erie,PA,351,Erie,PA
-16427,39041,Erie,PA,351,Erie,PA
-16428,39041,Erie,PA,351,Erie,PA
-16430,39041,Erie,PA,351,Erie,PA
-16432,39121,Titusville,PA,351,Erie,PA
-16433,39077,Meadville,PA,351,Erie,PA
-16434,39029,Corry,PA,351,Erie,PA
-16435,39077,Meadville,PA,351,Erie,PA
-16436,39121,Titusville,PA,351,Erie,PA
-16438,39126,Union City,PA,351,Erie,PA
-16440,39077,Meadville,PA,351,Erie,PA
-16441,39041,Erie,PA,351,Erie,PA
-16442,39041,Erie,PA,351,Erie,PA
-16443,39041,Erie,PA,351,Erie,PA
-16444,39041,Erie,PA,351,Erie,PA
-16475,39041,Erie,PA,351,Erie,PA
-16501,39041,Erie,PA,351,Erie,PA
-16502,39041,Erie,PA,351,Erie,PA
-16503,39041,Erie,PA,351,Erie,PA
-16504,39041,Erie,PA,351,Erie,PA
-16505,39041,Erie,PA,351,Erie,PA
-16506,39041,Erie,PA,351,Erie,PA
-16507,39041,Erie,PA,351,Erie,PA
-16508,39041,Erie,PA,351,Erie,PA
-16509,39041,Erie,PA,351,Erie,PA
-16510,39041,Erie,PA,351,Erie,PA
-16511,39041,Erie,PA,351,Erie,PA
-16512,39041,Erie,PA,351,Erie,PA
-16514,39041,Erie,PA,351,Erie,PA
-16515,39041,Erie,PA,351,Erie,PA
-16522,39041,Erie,PA,351,Erie,PA
-16530,39041,Erie,PA,351,Erie,PA
-16531,39041,Erie,PA,351,Erie,PA
-16534,39041,Erie,PA,351,Erie,PA
-16538,39041,Erie,PA,351,Erie,PA
-16541,39041,Erie,PA,351,Erie,PA
-16544,39041,Erie,PA,351,Erie,PA
-16546,39041,Erie,PA,351,Erie,PA
-16550,39041,Erie,PA,351,Erie,PA
-16553,39041,Erie,PA,351,Erie,PA
-16563,39041,Erie,PA,351,Erie,PA
-16565,39041,Erie,PA,351,Erie,PA
-16601,39004,Altoona,PA,347,Altoona,PA
-16602,39004,Altoona,PA,347,Altoona,PA
-16603,39004,Altoona,PA,347,Altoona,PA
-16611,39055,Huntingdon,PA,347,Altoona,PA
-16613,39004,Altoona,PA,347,Altoona,PA
-16616,39004,Altoona,PA,347,Altoona,PA
-16617,39004,Altoona,PA,347,Altoona,PA
-16619,39004,Altoona,PA,347,Altoona,PA
-16620,39025,Clearfield,PA,347,Altoona,PA
-16621,39055,Huntingdon,PA,347,Altoona,PA
-16622,39055,Huntingdon,PA,347,Altoona,PA
-16623,39055,Huntingdon,PA,347,Altoona,PA
-16624,39115,Spangler,PA,354,Johnstown,PA
-16625,39107,Roaring Spring,PA,347,Altoona,PA
-16627,39004,Altoona,PA,347,Altoona,PA
-16629,39004,Altoona,PA,347,Altoona,PA
-16630,39004,Altoona,PA,347,Altoona,PA
-16631,39107,Roaring Spring,PA,347,Altoona,PA
-16633,39042,Everett,PA,347,Altoona,PA
-16634,39055,Huntingdon,PA,347,Altoona,PA
-16635,39004,Altoona,PA,347,Altoona,PA
-16636,39004,Altoona,PA,347,Altoona,PA
-16637,39107,Roaring Spring,PA,347,Altoona,PA
-16638,39055,Huntingdon,PA,347,Altoona,PA
-16639,39004,Altoona,PA,347,Altoona,PA
-16640,39004,Altoona,PA,347,Altoona,PA
-16641,39004,Altoona,PA,347,Altoona,PA
-16644,39004,Altoona,PA,347,Altoona,PA
-16645,39025,Clearfield,PA,347,Altoona,PA
-16646,39115,Spangler,PA,354,Johnstown,PA
-16647,39055,Huntingdon,PA,347,Altoona,PA
-16648,39004,Altoona,PA,347,Altoona,PA
-16650,39042,Everett,PA,347,Altoona,PA
-16651,39025,Clearfield,PA,347,Altoona,PA
-16652,39055,Huntingdon,PA,347,Altoona,PA
-16654,39055,Huntingdon,PA,347,Altoona,PA
-16655,39107,Roaring Spring,PA,347,Altoona,PA
-16656,39004,Altoona,PA,347,Altoona,PA
-16657,39055,Huntingdon,PA,347,Altoona,PA
-16659,39107,Roaring Spring,PA,347,Altoona,PA
-16660,39055,Huntingdon,PA,347,Altoona,PA
-16661,39025,Clearfield,PA,347,Altoona,PA
-16662,39107,Roaring Spring,PA,347,Altoona,PA
-16663,39025,Clearfield,PA,347,Altoona,PA
-16664,39107,Roaring Spring,PA,347,Altoona,PA
-16665,39004,Altoona,PA,347,Altoona,PA
-16666,39096,Philipsburg,PA,347,Altoona,PA
-16667,39107,Roaring Spring,PA,347,Altoona,PA
-16668,39115,Spangler,PA,354,Johnstown,PA
-16669,39055,Huntingdon,PA,347,Altoona,PA
-16670,39107,Roaring Spring,PA,347,Altoona,PA
-16671,39025,Clearfield,PA,347,Altoona,PA
-16672,39042,Everett,PA,347,Altoona,PA
-16673,39107,Roaring Spring,PA,347,Altoona,PA
-16674,39055,Huntingdon,PA,347,Altoona,PA
-16675,39115,Spangler,PA,354,Johnstown,PA
-16677,39096,Philipsburg,PA,347,Altoona,PA
-16678,39055,Huntingdon,PA,347,Altoona,PA
-16679,39042,Everett,PA,347,Altoona,PA
-16680,39125,Tyrone,PA,347,Altoona,PA
-16681,39025,Clearfield,PA,347,Altoona,PA
-16682,39107,Roaring Spring,PA,347,Altoona,PA
-16683,39125,Tyrone,PA,347,Altoona,PA
-16684,39004,Altoona,PA,347,Altoona,PA
-16685,39055,Huntingdon,PA,347,Altoona,PA
-16686,39125,Tyrone,PA,347,Altoona,PA
-16689,39073,McConnellsburg,PA,352,Harrisburg,PA
-16691,39073,McConnellsburg,PA,352,Harrisburg,PA
-16692,39115,Spangler,PA,354,Johnstown,PA
-16693,39004,Altoona,PA,347,Altoona,PA
-16694,39055,Huntingdon,PA,347,Altoona,PA
-16695,39107,Roaring Spring,PA,347,Altoona,PA
-16698,39025,Clearfield,PA,347,Altoona,PA
-16699,39004,Altoona,PA,347,Altoona,PA
-16701,39011,Bradford,PA,351,Erie,PA
-16720,39030,Coudersport,PA,351,Erie,PA
-16724,39011,Bradford,PA,351,Erie,PA
-16725,39011,Bradford,PA,351,Erie,PA
-16726,39011,Bradford,PA,351,Erie,PA
-16727,39011,Bradford,PA,351,Erie,PA
-16728,39060,Kane,PA,351,Erie,PA
-16729,33091,Olean,NY,299,Buffalo,NY
-16730,39011,Bradford,PA,351,Erie,PA
-16731,33091,Olean,NY,299,Buffalo,NY
-16732,39011,Bradford,PA,351,Erie,PA
-16733,39011,Bradford,PA,351,Erie,PA
-16734,39060,Kane,PA,351,Erie,PA
-16735,39060,Kane,PA,351,Erie,PA
-16738,39011,Bradford,PA,351,Erie,PA
-16740,39060,Kane,PA,351,Erie,PA
-16743,39030,Coudersport,PA,351,Erie,PA
-16744,39011,Bradford,PA,351,Erie,PA
-16745,33091,Olean,NY,299,Buffalo,NY
-16746,39030,Coudersport,PA,351,Erie,PA
-16748,33091,Olean,NY,299,Buffalo,NY
-16749,39011,Bradford,PA,351,Erie,PA
-16750,39030,Coudersport,PA,351,Erie,PA
-16801,39118,State College,PA,350,Danville,PA
-16802,39118,State College,PA,350,Danville,PA
-16803,39118,State College,PA,350,Danville,PA
-16804,39118,State College,PA,350,Danville,PA
-16805,39118,State College,PA,350,Danville,PA
-16820,39118,State College,PA,350,Danville,PA
-16821,39096,Philipsburg,PA,347,Altoona,PA
-16822,39072,Lock Haven,PA,350,Danville,PA
-16823,39118,State College,PA,350,Danville,PA
-16825,39025,Clearfield,PA,347,Altoona,PA
-16826,39072,Lock Haven,PA,350,Danville,PA
-16827,39118,State College,PA,350,Danville,PA
-16828,39118,State College,PA,350,Danville,PA
-16829,39118,State College,PA,350,Danville,PA
-16830,39025,Clearfield,PA,347,Altoona,PA
-16832,39118,State College,PA,350,Danville,PA
-16833,39025,Clearfield,PA,347,Altoona,PA
-16834,39025,Clearfield,PA,347,Altoona,PA
-16835,39118,State College,PA,350,Danville,PA
-16836,39025,Clearfield,PA,347,Altoona,PA
-16837,39025,Clearfield,PA,347,Altoona,PA
-16838,39025,Clearfield,PA,347,Altoona,PA
-16839,39025,Clearfield,PA,347,Altoona,PA
-16840,39096,Philipsburg,PA,347,Altoona,PA
-16841,39072,Lock Haven,PA,350,Danville,PA
-16843,39025,Clearfield,PA,347,Altoona,PA
-16844,39118,State College,PA,350,Danville,PA
-16845,39025,Clearfield,PA,347,Altoona,PA
-16847,39025,Clearfield,PA,347,Altoona,PA
-16848,39072,Lock Haven,PA,350,Danville,PA
-16849,39025,Clearfield,PA,347,Altoona,PA
-16850,39025,Clearfield,PA,347,Altoona,PA
-16851,39118,State College,PA,350,Danville,PA
-16852,39118,State College,PA,350,Danville,PA
-16853,39118,State College,PA,350,Danville,PA
-16854,39118,State College,PA,350,Danville,PA
-16855,39025,Clearfield,PA,347,Altoona,PA
-16856,39118,State College,PA,350,Danville,PA
-16858,39025,Clearfield,PA,347,Altoona,PA
-16859,39118,State College,PA,350,Danville,PA
-16860,39025,Clearfield,PA,347,Altoona,PA
-16861,39025,Clearfield,PA,347,Altoona,PA
-16863,39025,Clearfield,PA,347,Altoona,PA
-16864,39072,Lock Haven,PA,350,Danville,PA
-16865,39118,State College,PA,350,Danville,PA
-16866,39096,Philipsburg,PA,347,Altoona,PA
-16868,39118,State College,PA,350,Danville,PA
-16870,39118,State College,PA,350,Danville,PA
-16871,39025,Clearfield,PA,347,Altoona,PA
-16872,39118,State College,PA,350,Danville,PA
-16873,39025,Clearfield,PA,347,Altoona,PA
-16874,39118,State College,PA,350,Danville,PA
-16875,39118,State College,PA,350,Danville,PA
-16876,39025,Clearfield,PA,347,Altoona,PA
-16877,39118,State College,PA,350,Danville,PA
-16878,39025,Clearfield,PA,347,Altoona,PA
-16879,39025,Clearfield,PA,347,Altoona,PA
-16881,39025,Clearfield,PA,347,Altoona,PA
-16882,39118,State College,PA,350,Danville,PA
-16901,39134,Wellsboro,PA,359,Sayre,PA
-16910,39108,Sayre,PA,359,Sayre,PA
-16911,39134,Wellsboro,PA,359,Sayre,PA
-16912,39134,Wellsboro,PA,359,Sayre,PA
-16914,39108,Sayre,PA,359,Sayre,PA
-16915,39030,Coudersport,PA,351,Erie,PA
-16917,39134,Wellsboro,PA,359,Sayre,PA
-16920,39134,Wellsboro,PA,359,Sayre,PA
-16921,39134,Wellsboro,PA,359,Sayre,PA
-16922,39134,Wellsboro,PA,359,Sayre,PA
-16923,39030,Coudersport,PA,351,Erie,PA
-16925,33037,Elmira,NY,300,Elmira,NY
-16926,39108,Sayre,PA,359,Sayre,PA
-16927,39030,Coudersport,PA,351,Erie,PA
-16928,39134,Wellsboro,PA,359,Sayre,PA
-16929,39134,Wellsboro,PA,359,Sayre,PA
-16930,39138,Williamsport,PA,350,Danville,PA
-16932,39134,Wellsboro,PA,359,Sayre,PA
-16933,39134,Wellsboro,PA,359,Sayre,PA
-16935,39134,Wellsboro,PA,359,Sayre,PA
-16936,33037,Elmira,NY,300,Elmira,NY
-16937,39030,Coudersport,PA,351,Erie,PA
-16938,39134,Wellsboro,PA,359,Sayre,PA
-16939,39134,Wellsboro,PA,359,Sayre,PA
-16940,39134,Wellsboro,PA,359,Sayre,PA
-16941,39030,Coudersport,PA,351,Erie,PA
-16942,39134,Wellsboro,PA,359,Sayre,PA
-16943,39134,Wellsboro,PA,359,Sayre,PA
-16945,39108,Sayre,PA,359,Sayre,PA
-16946,39134,Wellsboro,PA,359,Sayre,PA
-16947,39108,Sayre,PA,359,Sayre,PA
-16948,39030,Coudersport,PA,351,Erie,PA
-16950,39134,Wellsboro,PA,359,Sayre,PA
-17001,39018,Camp Hill,PA,352,Harrisburg,PA
-17002,39070,Lewistown,PA,352,Harrisburg,PA
-17003,39067,Lebanon,PA,352,Harrisburg,PA
-17004,39070,Lewistown,PA,352,Harrisburg,PA
-17005,39050,Harrisburg,PA,352,Harrisburg,PA
-17006,39021,Carlisle,PA,352,Harrisburg,PA
-17007,39021,Carlisle,PA,352,Harrisburg,PA
-17009,39070,Lewistown,PA,352,Harrisburg,PA
-17010,39067,Lebanon,PA,352,Harrisburg,PA
-17011,39018,Camp Hill,PA,352,Harrisburg,PA
-17013,39021,Carlisle,PA,352,Harrisburg,PA
-17014,39070,Lewistown,PA,352,Harrisburg,PA
-17015,39021,Carlisle,PA,352,Harrisburg,PA
-17016,39067,Lebanon,PA,352,Harrisburg,PA
-17017,39119,Sunbury,PA,350,Danville,PA
-17018,39050,Harrisburg,PA,352,Harrisburg,PA
-17019,39018,Camp Hill,PA,352,Harrisburg,PA
-17020,39050,Harrisburg,PA,352,Harrisburg,PA
-17021,39070,Lewistown,PA,352,Harrisburg,PA
-17022,39063,Lancaster,PA,355,Lancaster,PA
-17023,39050,Harrisburg,PA,352,Harrisburg,PA
-17024,39050,Harrisburg,PA,352,Harrisburg,PA
-17025,39018,Camp Hill,PA,352,Harrisburg,PA
-17026,39067,Lebanon,PA,352,Harrisburg,PA
-17027,39018,Camp Hill,PA,352,Harrisburg,PA
-17028,39050,Harrisburg,PA,352,Harrisburg,PA
-17029,39070,Lewistown,PA,352,Harrisburg,PA
-17030,39050,Harrisburg,PA,352,Harrisburg,PA
-17032,39050,Harrisburg,PA,352,Harrisburg,PA
-17033,39053,Hershey,PA,352,Harrisburg,PA
-17034,39050,Harrisburg,PA,352,Harrisburg,PA
-17035,39070,Lewistown,PA,352,Harrisburg,PA
-17036,39050,Harrisburg,PA,352,Harrisburg,PA
-17037,39050,Harrisburg,PA,352,Harrisburg,PA
-17038,39067,Lebanon,PA,352,Harrisburg,PA
-17039,39067,Lebanon,PA,352,Harrisburg,PA
-17040,39021,Carlisle,PA,352,Harrisburg,PA
-17041,39053,Hershey,PA,352,Harrisburg,PA
-17042,39067,Lebanon,PA,352,Harrisburg,PA
-17043,39018,Camp Hill,PA,352,Harrisburg,PA
-17044,39070,Lewistown,PA,352,Harrisburg,PA
-17045,39050,Harrisburg,PA,352,Harrisburg,PA
-17046,39067,Lebanon,PA,352,Harrisburg,PA
-17047,39021,Carlisle,PA,352,Harrisburg,PA
-17048,39050,Harrisburg,PA,352,Harrisburg,PA
-17049,39070,Lewistown,PA,352,Harrisburg,PA
-17050,39018,Camp Hill,PA,352,Harrisburg,PA
-17051,39070,Lewistown,PA,352,Harrisburg,PA
-17052,39055,Huntingdon,PA,347,Altoona,PA
-17053,39018,Camp Hill,PA,352,Harrisburg,PA
-17054,39070,Lewistown,PA,352,Harrisburg,PA
-17055,39018,Camp Hill,PA,352,Harrisburg,PA
-17056,39070,Lewistown,PA,352,Harrisburg,PA
-17057,39050,Harrisburg,PA,352,Harrisburg,PA
-17058,39070,Lewistown,PA,352,Harrisburg,PA
-17059,39070,Lewistown,PA,352,Harrisburg,PA
-17060,39055,Huntingdon,PA,347,Altoona,PA
-17061,39050,Harrisburg,PA,352,Harrisburg,PA
-17062,39050,Harrisburg,PA,352,Harrisburg,PA
-17063,39070,Lewistown,PA,352,Harrisburg,PA
-17064,39067,Lebanon,PA,352,Harrisburg,PA
-17065,39021,Carlisle,PA,352,Harrisburg,PA
-17066,39055,Huntingdon,PA,347,Altoona,PA
-17067,39067,Lebanon,PA,352,Harrisburg,PA
-17068,39050,Harrisburg,PA,352,Harrisburg,PA
-17069,39050,Harrisburg,PA,352,Harrisburg,PA
-17070,39018,Camp Hill,PA,352,Harrisburg,PA
-17071,39021,Carlisle,PA,352,Harrisburg,PA
-17072,39018,Camp Hill,PA,352,Harrisburg,PA
-17073,39067,Lebanon,PA,352,Harrisburg,PA
-17074,39050,Harrisburg,PA,352,Harrisburg,PA
-17075,39055,Huntingdon,PA,347,Altoona,PA
-17076,39070,Lewistown,PA,352,Harrisburg,PA
-17077,39067,Lebanon,PA,352,Harrisburg,PA
-17078,39067,Lebanon,PA,352,Harrisburg,PA
-17080,39050,Harrisburg,PA,352,Harrisburg,PA
-17081,39021,Carlisle,PA,352,Harrisburg,PA
-17082,39070,Lewistown,PA,352,Harrisburg,PA
-17083,39067,Lebanon,PA,352,Harrisburg,PA
-17084,39070,Lewistown,PA,352,Harrisburg,PA
-17085,39067,Lebanon,PA,352,Harrisburg,PA
-17086,39070,Lewistown,PA,352,Harrisburg,PA
-17087,39067,Lebanon,PA,352,Harrisburg,PA
-17088,39067,Lebanon,PA,352,Harrisburg,PA
-17089,39018,Camp Hill,PA,352,Harrisburg,PA
-17090,39021,Carlisle,PA,352,Harrisburg,PA
-17093,39018,Camp Hill,PA,352,Harrisburg,PA
-17094,39070,Lewistown,PA,352,Harrisburg,PA
-17097,39050,Harrisburg,PA,352,Harrisburg,PA
-17098,39050,Harrisburg,PA,352,Harrisburg,PA
-17099,39070,Lewistown,PA,352,Harrisburg,PA
-17101,39050,Harrisburg,PA,352,Harrisburg,PA
-17102,39050,Harrisburg,PA,352,Harrisburg,PA
-17103,39050,Harrisburg,PA,352,Harrisburg,PA
-17104,39050,Harrisburg,PA,352,Harrisburg,PA
-17105,39050,Harrisburg,PA,352,Harrisburg,PA
-17106,39050,Harrisburg,PA,352,Harrisburg,PA
-17107,39050,Harrisburg,PA,352,Harrisburg,PA
-17108,39050,Harrisburg,PA,352,Harrisburg,PA
-17109,39050,Harrisburg,PA,352,Harrisburg,PA
-17110,39050,Harrisburg,PA,352,Harrisburg,PA
-17111,39050,Harrisburg,PA,352,Harrisburg,PA
-17112,39050,Harrisburg,PA,352,Harrisburg,PA
-17113,39050,Harrisburg,PA,352,Harrisburg,PA
-17120,39050,Harrisburg,PA,352,Harrisburg,PA
-17121,39050,Harrisburg,PA,352,Harrisburg,PA
-17122,39050,Harrisburg,PA,352,Harrisburg,PA
-17123,39050,Harrisburg,PA,352,Harrisburg,PA
-17124,39050,Harrisburg,PA,352,Harrisburg,PA
-17125,39050,Harrisburg,PA,352,Harrisburg,PA
-17126,39050,Harrisburg,PA,352,Harrisburg,PA
-17127,39050,Harrisburg,PA,352,Harrisburg,PA
-17128,39050,Harrisburg,PA,352,Harrisburg,PA
-17129,39050,Harrisburg,PA,352,Harrisburg,PA
-17130,39050,Harrisburg,PA,352,Harrisburg,PA
-17140,39050,Harrisburg,PA,352,Harrisburg,PA
-17177,39050,Harrisburg,PA,352,Harrisburg,PA
-17201,39022,Chambersburg,PA,352,Harrisburg,PA
-17202,39022,Chambersburg,PA,352,Harrisburg,PA
-17210,39022,Chambersburg,PA,352,Harrisburg,PA
-17211,21010,Cumberland,MD,113,Washington,DC
-17212,39073,McConnellsburg,PA,352,Harrisburg,PA
-17213,39022,Chambersburg,PA,352,Harrisburg,PA
-17214,39132,Waynesboro,PA,352,Harrisburg,PA
-17215,39073,McConnellsburg,PA,352,Harrisburg,PA
-17217,39022,Chambersburg,PA,352,Harrisburg,PA
-17219,39022,Chambersburg,PA,352,Harrisburg,PA
-17220,39022,Chambersburg,PA,352,Harrisburg,PA
-17221,39022,Chambersburg,PA,352,Harrisburg,PA
-17222,39022,Chambersburg,PA,352,Harrisburg,PA
-17223,39073,McConnellsburg,PA,352,Harrisburg,PA
-17224,39022,Chambersburg,PA,352,Harrisburg,PA
-17225,39132,Waynesboro,PA,352,Harrisburg,PA
-17228,39073,McConnellsburg,PA,352,Harrisburg,PA
-17229,39073,McConnellsburg,PA,352,Harrisburg,PA
-17231,39022,Chambersburg,PA,352,Harrisburg,PA
-17232,39022,Chambersburg,PA,352,Harrisburg,PA
-17233,39073,McConnellsburg,PA,352,Harrisburg,PA
-17235,39022,Chambersburg,PA,352,Harrisburg,PA
-17236,39022,Chambersburg,PA,352,Harrisburg,PA
-17237,39132,Waynesboro,PA,352,Harrisburg,PA
-17238,39073,McConnellsburg,PA,352,Harrisburg,PA
-17239,39022,Chambersburg,PA,352,Harrisburg,PA
-17240,39022,Chambersburg,PA,352,Harrisburg,PA
-17241,39021,Carlisle,PA,352,Harrisburg,PA
-17243,39055,Huntingdon,PA,347,Altoona,PA
-17244,39022,Chambersburg,PA,352,Harrisburg,PA
-17246,39022,Chambersburg,PA,352,Harrisburg,PA
-17247,39132,Waynesboro,PA,352,Harrisburg,PA
-17249,39055,Huntingdon,PA,347,Altoona,PA
-17250,39132,Waynesboro,PA,352,Harrisburg,PA
-17251,39022,Chambersburg,PA,352,Harrisburg,PA
-17252,39022,Chambersburg,PA,352,Harrisburg,PA
-17253,39055,Huntingdon,PA,347,Altoona,PA
-17254,39022,Chambersburg,PA,352,Harrisburg,PA
-17255,39022,Chambersburg,PA,352,Harrisburg,PA
-17256,39132,Waynesboro,PA,352,Harrisburg,PA
-17257,39022,Chambersburg,PA,352,Harrisburg,PA
-17260,39055,Huntingdon,PA,347,Altoona,PA
-17261,39132,Waynesboro,PA,352,Harrisburg,PA
-17262,39022,Chambersburg,PA,352,Harrisburg,PA
-17263,39132,Waynesboro,PA,352,Harrisburg,PA
-17264,39055,Huntingdon,PA,347,Altoona,PA
-17265,39022,Chambersburg,PA,352,Harrisburg,PA
-17266,39021,Carlisle,PA,352,Harrisburg,PA
-17267,39073,McConnellsburg,PA,352,Harrisburg,PA
-17268,39132,Waynesboro,PA,352,Harrisburg,PA
-17271,39022,Chambersburg,PA,352,Harrisburg,PA
-17272,39132,Waynesboro,PA,352,Harrisburg,PA
-17301,39049,Hanover,PA,363,York,PA
-17302,39140,York,PA,363,York,PA
-17303,39045,Gettysburg,PA,352,Harrisburg,PA
-17304,39045,Gettysburg,PA,352,Harrisburg,PA
-17306,39045,Gettysburg,PA,352,Harrisburg,PA
-17307,39045,Gettysburg,PA,352,Harrisburg,PA
-17309,39140,York,PA,363,York,PA
-17310,39045,Gettysburg,PA,352,Harrisburg,PA
-17311,39140,York,PA,363,York,PA
-17312,39140,York,PA,363,York,PA
-17313,39140,York,PA,363,York,PA
-17314,39140,York,PA,363,York,PA
-17315,39140,York,PA,363,York,PA
-17316,39140,York,PA,363,York,PA
-17317,39140,York,PA,363,York,PA
-17318,39140,York,PA,363,York,PA
-17319,39018,Camp Hill,PA,352,Harrisburg,PA
-17320,39045,Gettysburg,PA,352,Harrisburg,PA
-17321,39140,York,PA,363,York,PA
-17322,39140,York,PA,363,York,PA
-17323,39018,Camp Hill,PA,352,Harrisburg,PA
-17324,39021,Carlisle,PA,352,Harrisburg,PA
-17325,39045,Gettysburg,PA,352,Harrisburg,PA
-17327,39140,York,PA,363,York,PA
-17329,39049,Hanover,PA,363,York,PA
-17331,39049,Hanover,PA,363,York,PA
-17332,39049,Hanover,PA,363,York,PA
-17333,39049,Hanover,PA,363,York,PA
-17334,39049,Hanover,PA,363,York,PA
-17335,39049,Hanover,PA,363,York,PA
-17337,39021,Carlisle,PA,352,Harrisburg,PA
-17339,39018,Camp Hill,PA,352,Harrisburg,PA
-17340,39049,Hanover,PA,363,York,PA
-17342,39140,York,PA,363,York,PA
-17343,39045,Gettysburg,PA,352,Harrisburg,PA
-17344,39049,Hanover,PA,363,York,PA
-17345,39140,York,PA,363,York,PA
-17347,39140,York,PA,363,York,PA
-17349,39140,York,PA,363,York,PA
-17350,39049,Hanover,PA,363,York,PA
-17352,39140,York,PA,363,York,PA
-17353,39045,Gettysburg,PA,352,Harrisburg,PA
-17354,39140,York,PA,363,York,PA
-17355,39140,York,PA,363,York,PA
-17356,39140,York,PA,363,York,PA
-17358,39140,York,PA,363,York,PA
-17360,39140,York,PA,363,York,PA
-17361,39140,York,PA,363,York,PA
-17362,39140,York,PA,363,York,PA
-17363,39140,York,PA,363,York,PA
-17364,39140,York,PA,363,York,PA
-17365,39140,York,PA,363,York,PA
-17366,39140,York,PA,363,York,PA
-17368,39140,York,PA,363,York,PA
-17370,39140,York,PA,363,York,PA
-17371,39140,York,PA,363,York,PA
-17372,39045,Gettysburg,PA,352,Harrisburg,PA
-17375,39021,Carlisle,PA,352,Harrisburg,PA
-17401,39140,York,PA,363,York,PA
-17402,39140,York,PA,363,York,PA
-17403,39140,York,PA,363,York,PA
-17404,39140,York,PA,363,York,PA
-17405,39140,York,PA,363,York,PA
-17406,39140,York,PA,363,York,PA
-17407,39140,York,PA,363,York,PA
-17408,39140,York,PA,363,York,PA
-17501,39040,Ephrata,PA,355,Lancaster,PA
-17502,39063,Lancaster,PA,355,Lancaster,PA
-17503,39063,Lancaster,PA,355,Lancaster,PA
-17504,39063,Lancaster,PA,355,Lancaster,PA
-17505,39063,Lancaster,PA,355,Lancaster,PA
-17506,39063,Lancaster,PA,355,Lancaster,PA
-17507,39040,Ephrata,PA,355,Lancaster,PA
-17508,39040,Ephrata,PA,355,Lancaster,PA
-17509,39063,Lancaster,PA,355,Lancaster,PA
-17512,39063,Lancaster,PA,355,Lancaster,PA
-17516,39063,Lancaster,PA,355,Lancaster,PA
-17517,39040,Ephrata,PA,355,Lancaster,PA
-17518,39063,Lancaster,PA,355,Lancaster,PA
-17519,39063,Lancaster,PA,355,Lancaster,PA
-17520,39063,Lancaster,PA,355,Lancaster,PA
-17521,39063,Lancaster,PA,355,Lancaster,PA
-17522,39040,Ephrata,PA,355,Lancaster,PA
-17527,39063,Lancaster,PA,355,Lancaster,PA
-17528,39063,Lancaster,PA,355,Lancaster,PA
-17529,39063,Lancaster,PA,355,Lancaster,PA
-17532,39063,Lancaster,PA,355,Lancaster,PA
-17533,39040,Ephrata,PA,355,Lancaster,PA
-17534,39063,Lancaster,PA,355,Lancaster,PA
-17535,39063,Lancaster,PA,355,Lancaster,PA
-17536,39063,Lancaster,PA,355,Lancaster,PA
-17537,39063,Lancaster,PA,355,Lancaster,PA
-17538,39063,Lancaster,PA,355,Lancaster,PA
-17540,39063,Lancaster,PA,355,Lancaster,PA
-17543,39063,Lancaster,PA,355,Lancaster,PA
-17545,39063,Lancaster,PA,355,Lancaster,PA
-17547,39063,Lancaster,PA,355,Lancaster,PA
-17549,39040,Ephrata,PA,355,Lancaster,PA
-17550,39063,Lancaster,PA,355,Lancaster,PA
-17551,39063,Lancaster,PA,355,Lancaster,PA
-17552,39063,Lancaster,PA,355,Lancaster,PA
-17554,39063,Lancaster,PA,355,Lancaster,PA
-17555,39063,Lancaster,PA,355,Lancaster,PA
-17557,39063,Lancaster,PA,355,Lancaster,PA
-17560,39063,Lancaster,PA,355,Lancaster,PA
-17562,39063,Lancaster,PA,355,Lancaster,PA
-17563,39063,Lancaster,PA,355,Lancaster,PA
-17564,39063,Lancaster,PA,355,Lancaster,PA
-17565,39063,Lancaster,PA,355,Lancaster,PA
-17566,39063,Lancaster,PA,355,Lancaster,PA
-17567,39040,Ephrata,PA,355,Lancaster,PA
-17568,39063,Lancaster,PA,355,Lancaster,PA
-17569,39040,Ephrata,PA,355,Lancaster,PA
-17570,39063,Lancaster,PA,355,Lancaster,PA
-17572,39063,Lancaster,PA,355,Lancaster,PA
-17573,39063,Lancaster,PA,355,Lancaster,PA
-17575,39063,Lancaster,PA,355,Lancaster,PA
-17576,39063,Lancaster,PA,355,Lancaster,PA
-17578,39040,Ephrata,PA,355,Lancaster,PA
-17579,39063,Lancaster,PA,355,Lancaster,PA
-17580,39063,Lancaster,PA,355,Lancaster,PA
-17581,39063,Lancaster,PA,355,Lancaster,PA
-17582,39063,Lancaster,PA,355,Lancaster,PA
-17583,39063,Lancaster,PA,355,Lancaster,PA
-17584,39063,Lancaster,PA,355,Lancaster,PA
-17585,39063,Lancaster,PA,355,Lancaster,PA
-17601,39063,Lancaster,PA,355,Lancaster,PA
-17602,39063,Lancaster,PA,355,Lancaster,PA
-17603,39063,Lancaster,PA,355,Lancaster,PA
-17604,39063,Lancaster,PA,355,Lancaster,PA
-17605,39063,Lancaster,PA,355,Lancaster,PA
-17606,39063,Lancaster,PA,355,Lancaster,PA
-17607,39063,Lancaster,PA,355,Lancaster,PA
-17608,39063,Lancaster,PA,355,Lancaster,PA
-17611,39063,Lancaster,PA,355,Lancaster,PA
-17622,39063,Lancaster,PA,355,Lancaster,PA
-17699,39063,Lancaster,PA,355,Lancaster,PA
-17701,39138,Williamsport,PA,350,Danville,PA
-17702,39138,Williamsport,PA,350,Danville,PA
-17703,39138,Williamsport,PA,350,Danville,PA
-17705,39138,Williamsport,PA,350,Danville,PA
-17720,39138,Williamsport,PA,350,Danville,PA
-17721,39058,Jersey Shore,PA,350,Danville,PA
-17723,39138,Williamsport,PA,350,Danville,PA
-17724,39108,Sayre,PA,359,Sayre,PA
-17726,39072,Lock Haven,PA,350,Danville,PA
-17727,39138,Williamsport,PA,350,Danville,PA
-17728,39138,Williamsport,PA,350,Danville,PA
-17729,39104,Renovo,PA,350,Danville,PA
-17730,39069,Lewisburg,PA,350,Danville,PA
-17731,39085,Muncy,PA,350,Danville,PA
-17735,39108,Sayre,PA,359,Sayre,PA
-17737,39085,Muncy,PA,350,Danville,PA
-17739,39138,Williamsport,PA,350,Danville,PA
-17740,39058,Jersey Shore,PA,350,Danville,PA
-17742,39085,Muncy,PA,350,Danville,PA
-17744,39138,Williamsport,PA,350,Danville,PA
-17745,39072,Lock Haven,PA,350,Danville,PA
-17747,39072,Lock Haven,PA,350,Danville,PA
-17748,39072,Lock Haven,PA,350,Danville,PA
-17749,39069,Lewisburg,PA,350,Danville,PA
-17750,39072,Lock Haven,PA,350,Danville,PA
-17751,39072,Lock Haven,PA,350,Danville,PA
-17752,39085,Muncy,PA,350,Danville,PA
-17754,39138,Williamsport,PA,350,Danville,PA
-17756,39085,Muncy,PA,350,Danville,PA
-17758,39085,Muncy,PA,350,Danville,PA
-17760,39104,Renovo,PA,350,Danville,PA
-17762,39085,Muncy,PA,350,Danville,PA
-17763,39138,Williamsport,PA,350,Danville,PA
-17764,39104,Renovo,PA,350,Danville,PA
-17765,39108,Sayre,PA,359,Sayre,PA
-17768,39108,Sayre,PA,359,Sayre,PA
-17769,39058,Jersey Shore,PA,350,Danville,PA
-17771,39138,Williamsport,PA,350,Danville,PA
-17772,39085,Muncy,PA,350,Danville,PA
-17774,39085,Muncy,PA,350,Danville,PA
-17776,39138,Williamsport,PA,350,Danville,PA
-17777,39069,Lewisburg,PA,350,Danville,PA
-17778,39104,Renovo,PA,350,Danville,PA
-17779,39058,Jersey Shore,PA,350,Danville,PA
-17801,39119,Sunbury,PA,350,Danville,PA
-17810,39138,Williamsport,PA,350,Danville,PA
-17812,39069,Lewisburg,PA,350,Danville,PA
-17813,39069,Lewisburg,PA,350,Danville,PA
-17814,39009,Bloomsburg,PA,350,Danville,PA
-17815,39009,Bloomsburg,PA,350,Danville,PA
-17820,39031,Danville,PA,350,Danville,PA
-17821,39031,Danville,PA,350,Danville,PA
-17822,39031,Danville,PA,350,Danville,PA
-17823,39119,Sunbury,PA,350,Danville,PA
-17824,39031,Danville,PA,350,Danville,PA
-17827,39069,Lewisburg,PA,350,Danville,PA
-17829,39069,Lewisburg,PA,350,Danville,PA
-17830,39119,Sunbury,PA,350,Danville,PA
-17831,39119,Sunbury,PA,350,Danville,PA
-17832,39031,Danville,PA,350,Danville,PA
-17833,39069,Lewisburg,PA,350,Danville,PA
-17834,39031,Danville,PA,350,Danville,PA
-17835,39069,Lewisburg,PA,350,Danville,PA
-17836,39119,Sunbury,PA,350,Danville,PA
-17837,39069,Lewisburg,PA,350,Danville,PA
-17840,39031,Danville,PA,350,Danville,PA
-17841,39070,Lewistown,PA,352,Harrisburg,PA
-17842,39069,Lewisburg,PA,350,Danville,PA
-17843,39069,Lewisburg,PA,350,Danville,PA
-17844,39069,Lewisburg,PA,350,Danville,PA
-17845,39069,Lewisburg,PA,350,Danville,PA
-17846,39009,Bloomsburg,PA,350,Danville,PA
-17847,39069,Lewisburg,PA,350,Danville,PA
-17850,39069,Lewisburg,PA,350,Danville,PA
-17851,39031,Danville,PA,350,Danville,PA
-17853,39069,Lewisburg,PA,350,Danville,PA
-17855,39069,Lewisburg,PA,350,Danville,PA
-17856,39069,Lewisburg,PA,350,Danville,PA
-17857,39119,Sunbury,PA,350,Danville,PA
-17858,39031,Danville,PA,350,Danville,PA
-17859,39009,Bloomsburg,PA,350,Danville,PA
-17860,39031,Danville,PA,350,Danville,PA
-17861,39069,Lewisburg,PA,350,Danville,PA
-17862,39069,Lewisburg,PA,350,Danville,PA
-17864,39069,Lewisburg,PA,350,Danville,PA
-17865,39069,Lewisburg,PA,350,Danville,PA
-17866,39112,Shamokin,PA,350,Danville,PA
-17867,39119,Sunbury,PA,350,Danville,PA
-17868,39031,Danville,PA,350,Danville,PA
-17870,39119,Sunbury,PA,350,Danville,PA
-17872,39112,Shamokin,PA,350,Danville,PA
-17876,39119,Sunbury,PA,350,Danville,PA
-17877,39119,Sunbury,PA,350,Danville,PA
-17878,39009,Bloomsburg,PA,350,Danville,PA
-17880,39069,Lewisburg,PA,350,Danville,PA
-17881,39119,Sunbury,PA,350,Danville,PA
-17882,39069,Lewisburg,PA,350,Danville,PA
-17883,39069,Lewisburg,PA,350,Danville,PA
-17884,39031,Danville,PA,350,Danville,PA
-17885,39069,Lewisburg,PA,350,Danville,PA
-17886,39069,Lewisburg,PA,350,Danville,PA
-17887,39069,Lewisburg,PA,350,Danville,PA
-17888,39005,Ashland,PA,358,Reading,PA
-17889,39069,Lewisburg,PA,350,Danville,PA
-17901,39100,Pottsville,PA,358,Reading,PA
-17920,39005,Ashland,PA,358,Reading,PA
-17921,39005,Ashland,PA,358,Reading,PA
-17922,39100,Pottsville,PA,358,Reading,PA
-17923,39100,Pottsville,PA,358,Reading,PA
-17925,39100,Pottsville,PA,358,Reading,PA
-17929,39100,Pottsville,PA,358,Reading,PA
-17930,39100,Pottsville,PA,358,Reading,PA
-17931,39100,Pottsville,PA,358,Reading,PA
-17932,39100,Pottsville,PA,358,Reading,PA
-17933,39100,Pottsville,PA,358,Reading,PA
-17934,39100,Pottsville,PA,358,Reading,PA
-17935,39005,Ashland,PA,358,Reading,PA
-17936,39005,Ashland,PA,358,Reading,PA
-17938,39100,Pottsville,PA,358,Reading,PA
-17941,39100,Pottsville,PA,358,Reading,PA
-17943,39005,Ashland,PA,358,Reading,PA
-17944,39100,Pottsville,PA,358,Reading,PA
-17945,39005,Ashland,PA,358,Reading,PA
-17946,39005,Ashland,PA,358,Reading,PA
-17948,39100,Pottsville,PA,358,Reading,PA
-17949,39100,Pottsville,PA,358,Reading,PA
-17951,39100,Pottsville,PA,358,Reading,PA
-17952,39100,Pottsville,PA,358,Reading,PA
-17953,39100,Pottsville,PA,358,Reading,PA
-17954,39100,Pottsville,PA,358,Reading,PA
-17957,39100,Pottsville,PA,358,Reading,PA
-17959,39100,Pottsville,PA,358,Reading,PA
-17960,39100,Pottsville,PA,358,Reading,PA
-17961,39100,Pottsville,PA,358,Reading,PA
-17963,39100,Pottsville,PA,358,Reading,PA
-17964,39100,Pottsville,PA,358,Reading,PA
-17965,39100,Pottsville,PA,358,Reading,PA
-17966,39100,Pottsville,PA,358,Reading,PA
-17967,39052,Hazleton,PA,346,Allentown,PA
-17968,39100,Pottsville,PA,358,Reading,PA
-17970,39100,Pottsville,PA,358,Reading,PA
-17972,39100,Pottsville,PA,358,Reading,PA
-17974,39100,Pottsville,PA,358,Reading,PA
-17976,39100,Pottsville,PA,358,Reading,PA
-17978,39050,Harrisburg,PA,352,Harrisburg,PA
-17979,39100,Pottsville,PA,358,Reading,PA
-17980,39100,Pottsville,PA,358,Reading,PA
-17981,39100,Pottsville,PA,358,Reading,PA
-17982,39100,Pottsville,PA,358,Reading,PA
-17983,39100,Pottsville,PA,358,Reading,PA
-17985,39052,Hazleton,PA,346,Allentown,PA
-18001,39003,Allentown,PA,346,Allentown,PA
-18002,39008,Bethlehem,PA,346,Allentown,PA
-18003,39008,Bethlehem,PA,346,Allentown,PA
-18011,39003,Allentown,PA,346,Allentown,PA
-18012,39092,Palmerton,PA,346,Allentown,PA
-18013,39037,Easton,PA,346,Allentown,PA
-18014,39008,Bethlehem,PA,346,Allentown,PA
-18015,39008,Bethlehem,PA,346,Allentown,PA
-18016,39008,Bethlehem,PA,346,Allentown,PA
-18017,39008,Bethlehem,PA,346,Allentown,PA
-18018,39008,Bethlehem,PA,346,Allentown,PA
-18020,39008,Bethlehem,PA,346,Allentown,PA
-18025,39008,Bethlehem,PA,346,Allentown,PA
-18030,39092,Palmerton,PA,346,Allentown,PA
-18031,39003,Allentown,PA,346,Allentown,PA
-18032,39003,Allentown,PA,346,Allentown,PA
-18034,39003,Allentown,PA,346,Allentown,PA
-18035,39003,Allentown,PA,346,Allentown,PA
-18036,39003,Allentown,PA,346,Allentown,PA
-18037,39003,Allentown,PA,346,Allentown,PA
-18038,39003,Allentown,PA,346,Allentown,PA
-18039,39102,Quakertown,PA,346,Allentown,PA
-18040,39037,Easton,PA,346,Allentown,PA
-18041,39110,Sellersville,PA,346,Allentown,PA
-18042,39037,Easton,PA,346,Allentown,PA
-18043,39037,Easton,PA,346,Allentown,PA
-18044,39037,Easton,PA,346,Allentown,PA
-18045,39037,Easton,PA,346,Allentown,PA
-18046,39003,Allentown,PA,346,Allentown,PA
-18049,39003,Allentown,PA,346,Allentown,PA
-18051,39003,Allentown,PA,346,Allentown,PA
-18052,39003,Allentown,PA,346,Allentown,PA
-18053,39003,Allentown,PA,346,Allentown,PA
-18054,39110,Sellersville,PA,346,Allentown,PA
-18055,39008,Bethlehem,PA,346,Allentown,PA
-18056,39003,Allentown,PA,346,Allentown,PA
-18058,39092,Palmerton,PA,346,Allentown,PA
-18059,39003,Allentown,PA,346,Allentown,PA
-18060,39003,Allentown,PA,346,Allentown,PA
-18062,39003,Allentown,PA,346,Allentown,PA
-18063,39037,Easton,PA,346,Allentown,PA
-18064,39037,Easton,PA,346,Allentown,PA
-18065,39003,Allentown,PA,346,Allentown,PA
-18066,39003,Allentown,PA,346,Allentown,PA
-18067,39003,Allentown,PA,346,Allentown,PA
-18068,39003,Allentown,PA,346,Allentown,PA
-18069,39003,Allentown,PA,346,Allentown,PA
-18070,39003,Allentown,PA,346,Allentown,PA
-18071,39092,Palmerton,PA,346,Allentown,PA
-18072,39037,Easton,PA,346,Allentown,PA
-18073,39110,Sellersville,PA,346,Allentown,PA
-18074,39110,Sellersville,PA,346,Allentown,PA
-18076,39110,Sellersville,PA,346,Allentown,PA
-18077,39102,Quakertown,PA,346,Allentown,PA
-18078,39003,Allentown,PA,346,Allentown,PA
-18079,39003,Allentown,PA,346,Allentown,PA
-18080,39003,Allentown,PA,346,Allentown,PA
-18081,39008,Bethlehem,PA,346,Allentown,PA
-18083,39037,Easton,PA,346,Allentown,PA
-18084,39110,Sellersville,PA,346,Allentown,PA
-18085,39037,Easton,PA,346,Allentown,PA
-18086,39003,Allentown,PA,346,Allentown,PA
-18087,39003,Allentown,PA,346,Allentown,PA
-18088,39003,Allentown,PA,346,Allentown,PA
-18091,39037,Easton,PA,346,Allentown,PA
-18092,39003,Allentown,PA,346,Allentown,PA
-18098,39003,Allentown,PA,346,Allentown,PA
-18099,39003,Allentown,PA,346,Allentown,PA
-18101,39003,Allentown,PA,346,Allentown,PA
-18102,39003,Allentown,PA,346,Allentown,PA
-18103,39003,Allentown,PA,346,Allentown,PA
-18104,39003,Allentown,PA,346,Allentown,PA
-18105,39003,Allentown,PA,346,Allentown,PA
-18106,39003,Allentown,PA,346,Allentown,PA
-18109,39003,Allentown,PA,346,Allentown,PA
-18195,39003,Allentown,PA,346,Allentown,PA
-18201,39052,Hazleton,PA,346,Allentown,PA
-18202,39052,Hazleton,PA,346,Allentown,PA
-18210,39068,Lehighton,PA,346,Allentown,PA
-18211,39068,Lehighton,PA,346,Allentown,PA
-18212,39068,Lehighton,PA,346,Allentown,PA
-18214,39100,Pottsville,PA,358,Reading,PA
-18216,39052,Hazleton,PA,346,Allentown,PA
-18218,39026,Coaldale,PA,346,Allentown,PA
-18219,39052,Hazleton,PA,346,Allentown,PA
-18220,39052,Hazleton,PA,346,Allentown,PA
-18221,39052,Hazleton,PA,346,Allentown,PA
-18222,39052,Hazleton,PA,346,Allentown,PA
-18223,39052,Hazleton,PA,346,Allentown,PA
-18224,39052,Hazleton,PA,346,Allentown,PA
-18225,39052,Hazleton,PA,346,Allentown,PA
-18229,39068,Lehighton,PA,346,Allentown,PA
-18230,39052,Hazleton,PA,346,Allentown,PA
-18231,39052,Hazleton,PA,346,Allentown,PA
-18232,39026,Coaldale,PA,346,Allentown,PA
-18234,39052,Hazleton,PA,346,Allentown,PA
-18235,39068,Lehighton,PA,346,Allentown,PA
-18237,39052,Hazleton,PA,346,Allentown,PA
-18239,39052,Hazleton,PA,346,Allentown,PA
-18240,39026,Coaldale,PA,346,Allentown,PA
-18241,39052,Hazleton,PA,346,Allentown,PA
-18242,39052,Hazleton,PA,346,Allentown,PA
-18244,39092,Palmerton,PA,346,Allentown,PA
-18245,39026,Coaldale,PA,346,Allentown,PA
-18246,39052,Hazleton,PA,346,Allentown,PA
-18247,39052,Hazleton,PA,346,Allentown,PA
-18248,39052,Hazleton,PA,346,Allentown,PA
-18249,39052,Hazleton,PA,346,Allentown,PA
-18250,39026,Coaldale,PA,346,Allentown,PA
-18251,39052,Hazleton,PA,346,Allentown,PA
-18252,39026,Coaldale,PA,346,Allentown,PA
-18254,39052,Hazleton,PA,346,Allentown,PA
-18255,39052,Hazleton,PA,346,Allentown,PA
-18256,39052,Hazleton,PA,346,Allentown,PA
-18301,39036,East Stroudsburg,PA,346,Allentown,PA
-18302,39036,East Stroudsburg,PA,346,Allentown,PA
-18320,39036,East Stroudsburg,PA,346,Allentown,PA
-18321,39036,East Stroudsburg,PA,346,Allentown,PA
-18322,39036,East Stroudsburg,PA,346,Allentown,PA
-18323,39036,East Stroudsburg,PA,346,Allentown,PA
-18324,39036,East Stroudsburg,PA,346,Allentown,PA
-18325,39036,East Stroudsburg,PA,346,Allentown,PA
-18326,39036,East Stroudsburg,PA,346,Allentown,PA
-18327,39036,East Stroudsburg,PA,346,Allentown,PA
-18328,33102,Port Jervis,NY,285,Morristown,NJ
-18330,39036,East Stroudsburg,PA,346,Allentown,PA
-18331,39036,East Stroudsburg,PA,346,Allentown,PA
-18332,39036,East Stroudsburg,PA,346,Allentown,PA
-18333,39092,Palmerton,PA,346,Allentown,PA
-18334,39036,East Stroudsburg,PA,346,Allentown,PA
-18335,39036,East Stroudsburg,PA,346,Allentown,PA
-18336,33102,Port Jervis,NY,285,Morristown,NJ
-18337,33102,Port Jervis,NY,285,Morristown,NJ
-18340,33102,Port Jervis,NY,285,Morristown,NJ
-18341,39036,East Stroudsburg,PA,346,Allentown,PA
-18342,39036,East Stroudsburg,PA,346,Allentown,PA
-18343,39036,East Stroudsburg,PA,346,Allentown,PA
-18344,39036,East Stroudsburg,PA,346,Allentown,PA
-18346,39036,East Stroudsburg,PA,346,Allentown,PA
-18347,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18348,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18349,39036,East Stroudsburg,PA,346,Allentown,PA
-18350,39036,East Stroudsburg,PA,346,Allentown,PA
-18351,39036,East Stroudsburg,PA,346,Allentown,PA
-18352,39036,East Stroudsburg,PA,346,Allentown,PA
-18353,39036,East Stroudsburg,PA,346,Allentown,PA
-18354,39036,East Stroudsburg,PA,346,Allentown,PA
-18355,39036,East Stroudsburg,PA,346,Allentown,PA
-18356,39036,East Stroudsburg,PA,346,Allentown,PA
-18357,39036,East Stroudsburg,PA,346,Allentown,PA
-18360,39036,East Stroudsburg,PA,346,Allentown,PA
-18370,39036,East Stroudsburg,PA,346,Allentown,PA
-18371,39036,East Stroudsburg,PA,346,Allentown,PA
-18372,39036,East Stroudsburg,PA,346,Allentown,PA
-18403,39109,Scranton,PA,360,Scranton,PA
-18405,39054,Honesdale,PA,360,Scranton,PA
-18407,39020,Carbondale,PA,360,Scranton,PA
-18410,39109,Scranton,PA,360,Scranton,PA
-18411,39109,Scranton,PA,360,Scranton,PA
-18413,39020,Carbondale,PA,360,Scranton,PA
-18414,39109,Scranton,PA,360,Scranton,PA
-18415,39054,Honesdale,PA,360,Scranton,PA
-18416,39109,Scranton,PA,360,Scranton,PA
-18417,39054,Honesdale,PA,360,Scranton,PA
-18419,39109,Scranton,PA,360,Scranton,PA
-18420,39109,Scranton,PA,360,Scranton,PA
-18421,39020,Carbondale,PA,360,Scranton,PA
-18424,39109,Scranton,PA,360,Scranton,PA
-18425,39054,Honesdale,PA,360,Scranton,PA
-18426,39109,Scranton,PA,360,Scranton,PA
-18427,39109,Scranton,PA,360,Scranton,PA
-18428,39054,Honesdale,PA,360,Scranton,PA
-18430,39020,Carbondale,PA,360,Scranton,PA
-18431,39054,Honesdale,PA,360,Scranton,PA
-18433,39109,Scranton,PA,360,Scranton,PA
-18434,39109,Scranton,PA,360,Scranton,PA
-18435,39054,Honesdale,PA,360,Scranton,PA
-18436,39109,Scranton,PA,360,Scranton,PA
-18437,39054,Honesdale,PA,360,Scranton,PA
-18438,39054,Honesdale,PA,360,Scranton,PA
-18439,39054,Honesdale,PA,360,Scranton,PA
-18440,39109,Scranton,PA,360,Scranton,PA
-18441,39109,Scranton,PA,360,Scranton,PA
-18443,39054,Honesdale,PA,360,Scranton,PA
-18444,39109,Scranton,PA,360,Scranton,PA
-18445,39109,Scranton,PA,360,Scranton,PA
-18446,39109,Scranton,PA,360,Scranton,PA
-18447,39109,Scranton,PA,360,Scranton,PA
-18448,39109,Scranton,PA,360,Scranton,PA
-18449,39054,Honesdale,PA,360,Scranton,PA
-18451,39054,Honesdale,PA,360,Scranton,PA
-18452,39094,Peckville,PA,360,Scranton,PA
-18453,39020,Carbondale,PA,360,Scranton,PA
-18454,39054,Honesdale,PA,360,Scranton,PA
-18455,39054,Honesdale,PA,360,Scranton,PA
-18456,39054,Honesdale,PA,360,Scranton,PA
-18457,39054,Honesdale,PA,360,Scranton,PA
-18458,33102,Port Jervis,NY,285,Morristown,NJ
-18459,39109,Scranton,PA,360,Scranton,PA
-18460,39109,Scranton,PA,360,Scranton,PA
-18461,33010,Binghamton,NY,296,Binghamton,NY
-18462,39120,Susquehanna,PA,360,Scranton,PA
-18463,39109,Scranton,PA,360,Scranton,PA
-18464,39054,Honesdale,PA,360,Scranton,PA
-18465,39120,Susquehanna,PA,360,Scranton,PA
-18466,39036,East Stroudsburg,PA,346,Allentown,PA
-18469,39054,Honesdale,PA,360,Scranton,PA
-18470,39020,Carbondale,PA,360,Scranton,PA
-18471,39109,Scranton,PA,360,Scranton,PA
-18472,39020,Carbondale,PA,360,Scranton,PA
-18473,39109,Scranton,PA,360,Scranton,PA
-18501,39109,Scranton,PA,360,Scranton,PA
-18502,39109,Scranton,PA,360,Scranton,PA
-18503,39109,Scranton,PA,360,Scranton,PA
-18504,39109,Scranton,PA,360,Scranton,PA
-18505,39109,Scranton,PA,360,Scranton,PA
-18507,39109,Scranton,PA,360,Scranton,PA
-18508,39109,Scranton,PA,360,Scranton,PA
-18509,39109,Scranton,PA,360,Scranton,PA
-18510,39109,Scranton,PA,360,Scranton,PA
-18512,39109,Scranton,PA,360,Scranton,PA
-18515,39109,Scranton,PA,360,Scranton,PA
-18517,39109,Scranton,PA,360,Scranton,PA
-18518,39109,Scranton,PA,360,Scranton,PA
-18519,39109,Scranton,PA,360,Scranton,PA
-18540,39109,Scranton,PA,360,Scranton,PA
-18577,39109,Scranton,PA,360,Scranton,PA
-18601,39007,Berwick,PA,350,Danville,PA
-18602,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18603,39007,Berwick,PA,350,Danville,PA
-18610,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18611,39009,Bloomsburg,PA,350,Danville,PA
-18612,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18614,39122,Towanda,PA,359,Sayre,PA
-18615,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18616,39138,Williamsport,PA,350,Danville,PA
-18617,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18618,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18619,39138,Williamsport,PA,350,Danville,PA
-18621,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18622,39007,Berwick,PA,350,Danville,PA
-18623,39124,Tunkhannock,PA,359,Sayre,PA
-18624,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18625,39109,Scranton,PA,360,Scranton,PA
-18626,39085,Muncy,PA,350,Danville,PA
-18627,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18628,39122,Towanda,PA,359,Sayre,PA
-18629,39124,Tunkhannock,PA,359,Sayre,PA
-18630,39124,Tunkhannock,PA,359,Sayre,PA
-18631,39007,Berwick,PA,350,Danville,PA
-18632,39122,Towanda,PA,359,Sayre,PA
-18634,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18635,39007,Berwick,PA,350,Danville,PA
-18636,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18640,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18641,39109,Scranton,PA,360,Scranton,PA
-18642,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18643,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18644,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18651,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18653,39109,Scranton,PA,360,Scranton,PA
-18654,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18655,39007,Berwick,PA,350,Danville,PA
-18656,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18657,39124,Tunkhannock,PA,359,Sayre,PA
-18660,39007,Berwick,PA,350,Danville,PA
-18661,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18690,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18701,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18702,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18703,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18704,39061,Kingston,PA,362,Wilkes-Barre,PA
-18705,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18706,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18707,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18708,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18709,39061,Kingston,PA,362,Wilkes-Barre,PA
-18710,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18711,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18762,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18764,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18765,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18766,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18767,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18769,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18773,39137,Wilkes-Barre,PA,362,Wilkes-Barre,PA
-18801,39083,Montrose,PA,296,Binghamton,NY
-18810,39108,Sayre,PA,359,Sayre,PA
-18812,33010,Binghamton,NY,296,Binghamton,NY
-18813,39083,Montrose,PA,296,Binghamton,NY
-18814,39122,Towanda,PA,359,Sayre,PA
-18815,39122,Towanda,PA,359,Sayre,PA
-18816,39124,Tunkhannock,PA,359,Sayre,PA
-18817,39108,Sayre,PA,359,Sayre,PA
-18818,33010,Binghamton,NY,296,Binghamton,NY
-18820,39083,Montrose,PA,296,Binghamton,NY
-18821,39120,Susquehanna,PA,360,Scranton,PA
-18822,33010,Binghamton,NY,296,Binghamton,NY
-18823,39083,Montrose,PA,296,Binghamton,NY
-18824,39124,Tunkhannock,PA,359,Sayre,PA
-18825,39120,Susquehanna,PA,360,Scranton,PA
-18826,39083,Montrose,PA,296,Binghamton,NY
-18827,39120,Susquehanna,PA,360,Scranton,PA
-18828,39124,Tunkhannock,PA,359,Sayre,PA
-18829,39108,Sayre,PA,359,Sayre,PA
-18830,33010,Binghamton,NY,296,Binghamton,NY
-18831,39108,Sayre,PA,359,Sayre,PA
-18832,39122,Towanda,PA,359,Sayre,PA
-18833,39122,Towanda,PA,359,Sayre,PA
-18834,39120,Susquehanna,PA,360,Scranton,PA
-18837,39108,Sayre,PA,359,Sayre,PA
-18840,39108,Sayre,PA,359,Sayre,PA
-18842,39120,Susquehanna,PA,360,Scranton,PA
-18843,39083,Montrose,PA,296,Binghamton,NY
-18844,39124,Tunkhannock,PA,359,Sayre,PA
-18845,39108,Sayre,PA,359,Sayre,PA
-18846,39122,Towanda,PA,359,Sayre,PA
-18847,39120,Susquehanna,PA,360,Scranton,PA
-18848,39122,Towanda,PA,359,Sayre,PA
-18850,39108,Sayre,PA,359,Sayre,PA
-18851,39108,Sayre,PA,359,Sayre,PA
-18853,39122,Towanda,PA,359,Sayre,PA
-18854,39122,Towanda,PA,359,Sayre,PA
-18901,39033,Doylestown,PA,356,Philadelphia,PA
-18902,39033,Doylestown,PA,356,Philadelphia,PA
-18910,39033,Doylestown,PA,356,Philadelphia,PA
-18911,39110,Sellersville,PA,346,Allentown,PA
-18912,39033,Doylestown,PA,356,Philadelphia,PA
-18913,39033,Doylestown,PA,356,Philadelphia,PA
-18914,39033,Doylestown,PA,356,Philadelphia,PA
-18915,39065,Lansdale,PA,356,Philadelphia,PA
-18916,39033,Doylestown,PA,356,Philadelphia,PA
-18917,39110,Sellersville,PA,346,Allentown,PA
-18918,39110,Sellersville,PA,346,Allentown,PA
-18920,39033,Doylestown,PA,356,Philadelphia,PA
-18921,39033,Doylestown,PA,356,Philadelphia,PA
-18922,39033,Doylestown,PA,356,Philadelphia,PA
-18923,39033,Doylestown,PA,356,Philadelphia,PA
-18925,39033,Doylestown,PA,356,Philadelphia,PA
-18927,39033,Doylestown,PA,356,Philadelphia,PA
-18928,39033,Doylestown,PA,356,Philadelphia,PA
-18929,39033,Doylestown,PA,356,Philadelphia,PA
-18930,39102,Quakertown,PA,346,Allentown,PA
-18931,39033,Doylestown,PA,356,Philadelphia,PA
-18932,39065,Lansdale,PA,356,Philadelphia,PA
-18933,39033,Doylestown,PA,356,Philadelphia,PA
-18934,39033,Doylestown,PA,356,Philadelphia,PA
-18935,39102,Quakertown,PA,346,Allentown,PA
-18936,39065,Lansdale,PA,356,Philadelphia,PA
-18938,39033,Doylestown,PA,356,Philadelphia,PA
-18940,39064,Langhorne,PA,356,Philadelphia,PA
-18942,39033,Doylestown,PA,356,Philadelphia,PA
-18943,39064,Langhorne,PA,356,Philadelphia,PA
-18944,39110,Sellersville,PA,346,Allentown,PA
-18946,39064,Langhorne,PA,356,Philadelphia,PA
-18947,39033,Doylestown,PA,356,Philadelphia,PA
-18949,39033,Doylestown,PA,356,Philadelphia,PA
-18950,39033,Doylestown,PA,356,Philadelphia,PA
-18951,39102,Quakertown,PA,346,Allentown,PA
-18953,39033,Doylestown,PA,356,Philadelphia,PA
-18954,39064,Langhorne,PA,356,Philadelphia,PA
-18955,39102,Quakertown,PA,346,Allentown,PA
-18956,39033,Doylestown,PA,356,Philadelphia,PA
-18957,39110,Sellersville,PA,346,Allentown,PA
-18958,39110,Sellersville,PA,346,Allentown,PA
-18960,39110,Sellersville,PA,346,Allentown,PA
-18962,39110,Sellersville,PA,346,Allentown,PA
-18963,39033,Doylestown,PA,356,Philadelphia,PA
-18964,39110,Sellersville,PA,346,Allentown,PA
-18966,39064,Langhorne,PA,356,Philadelphia,PA
-18968,39102,Quakertown,PA,346,Allentown,PA
-18969,39110,Sellersville,PA,346,Allentown,PA
-18970,39102,Quakertown,PA,346,Allentown,PA
-18971,39110,Sellersville,PA,346,Allentown,PA
-18972,39033,Doylestown,PA,356,Philadelphia,PA
-18974,39129,Warminster,PA,356,Philadelphia,PA
-18976,39033,Doylestown,PA,356,Philadelphia,PA
-18977,39064,Langhorne,PA,356,Philadelphia,PA
-18979,39110,Sellersville,PA,346,Allentown,PA
-18980,39064,Langhorne,PA,356,Philadelphia,PA
-18981,39102,Quakertown,PA,346,Allentown,PA
-18991,39129,Warminster,PA,356,Philadelphia,PA
-19001,39001,Abington,PA,356,Philadelphia,PA
-19002,39095,Philadelphia,PA,356,Philadelphia,PA
-19003,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19004,39095,Philadelphia,PA,356,Philadelphia,PA
-19006,39095,Philadelphia,PA,356,Philadelphia,PA
-19007,39012,Bristol,PA,356,Philadelphia,PA
-19008,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19009,39095,Philadelphia,PA,356,Philadelphia,PA
-19010,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19012,39095,Philadelphia,PA,356,Philadelphia,PA
-19013,39128,Upland,PA,356,Philadelphia,PA
-19014,39128,Upland,PA,356,Philadelphia,PA
-19015,39128,Upland,PA,356,Philadelphia,PA
-19016,39128,Upland,PA,356,Philadelphia,PA
-19017,39128,Upland,PA,356,Philadelphia,PA
-19018,39034,Drexel Hill,PA,356,Philadelphia,PA
-19019,39095,Philadelphia,PA,356,Philadelphia,PA
-19020,39095,Philadelphia,PA,356,Philadelphia,PA
-19021,39012,Bristol,PA,356,Philadelphia,PA
-19022,39106,Ridley Park,PA,356,Philadelphia,PA
-19023,39032,Darby,PA,356,Philadelphia,PA
-19025,39001,Abington,PA,356,Philadelphia,PA
-19026,39034,Drexel Hill,PA,356,Philadelphia,PA
-19027,39095,Philadelphia,PA,356,Philadelphia,PA
-19028,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19029,39106,Ridley Park,PA,356,Philadelphia,PA
-19030,39064,Langhorne,PA,356,Philadelphia,PA
-19031,39095,Philadelphia,PA,356,Philadelphia,PA
-19032,39106,Ridley Park,PA,356,Philadelphia,PA
-19033,39106,Ridley Park,PA,356,Philadelphia,PA
-19034,39095,Philadelphia,PA,356,Philadelphia,PA
-19035,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19036,39106,Ridley Park,PA,356,Philadelphia,PA
-19037,39079,Media,PA,356,Philadelphia,PA
-19038,39001,Abington,PA,356,Philadelphia,PA
-19039,39079,Media,PA,356,Philadelphia,PA
-19040,39001,Abington,PA,356,Philadelphia,PA
-19041,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19043,39106,Ridley Park,PA,356,Philadelphia,PA
-19044,39001,Abington,PA,356,Philadelphia,PA
-19046,39001,Abington,PA,356,Philadelphia,PA
-19047,39064,Langhorne,PA,356,Philadelphia,PA
-19048,39064,Langhorne,PA,356,Philadelphia,PA
-19049,39064,Langhorne,PA,356,Philadelphia,PA
-19050,39032,Darby,PA,356,Philadelphia,PA
-19052,39079,Media,PA,356,Philadelphia,PA
-19053,39064,Langhorne,PA,356,Philadelphia,PA
-19054,39064,Langhorne,PA,356,Philadelphia,PA
-19055,39064,Langhorne,PA,356,Philadelphia,PA
-19056,39064,Langhorne,PA,356,Philadelphia,PA
-19057,39012,Bristol,PA,356,Philadelphia,PA
-19058,39064,Langhorne,PA,356,Philadelphia,PA
-19060,39128,Upland,PA,356,Philadelphia,PA
-19061,39128,Upland,PA,356,Philadelphia,PA
-19063,39079,Media,PA,356,Philadelphia,PA
-19064,39034,Drexel Hill,PA,356,Philadelphia,PA
-19065,39079,Media,PA,356,Philadelphia,PA
-19066,39095,Philadelphia,PA,356,Philadelphia,PA
-19067,39064,Langhorne,PA,356,Philadelphia,PA
-19070,39106,Ridley Park,PA,356,Philadelphia,PA
-19072,39095,Philadelphia,PA,356,Philadelphia,PA
-19073,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19074,39106,Ridley Park,PA,356,Philadelphia,PA
-19075,39095,Philadelphia,PA,356,Philadelphia,PA
-19076,39106,Ridley Park,PA,356,Philadelphia,PA
-19078,39106,Ridley Park,PA,356,Philadelphia,PA
-19079,39106,Ridley Park,PA,356,Philadelphia,PA
-19080,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19081,39106,Ridley Park,PA,356,Philadelphia,PA
-19082,39034,Drexel Hill,PA,356,Philadelphia,PA
-19083,39095,Philadelphia,PA,356,Philadelphia,PA
-19085,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19086,39128,Upland,PA,356,Philadelphia,PA
-19087,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19088,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19089,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19090,39001,Abington,PA,356,Philadelphia,PA
-19091,39079,Media,PA,356,Philadelphia,PA
-19092,39095,Philadelphia,PA,356,Philadelphia,PA
-19093,39095,Philadelphia,PA,356,Philadelphia,PA
-19094,39106,Ridley Park,PA,356,Philadelphia,PA
-19095,39001,Abington,PA,356,Philadelphia,PA
-19096,39095,Philadelphia,PA,356,Philadelphia,PA
-19098,39106,Ridley Park,PA,356,Philadelphia,PA
-19099,39095,Philadelphia,PA,356,Philadelphia,PA
-19101,39095,Philadelphia,PA,356,Philadelphia,PA
-19102,39095,Philadelphia,PA,356,Philadelphia,PA
-19103,39095,Philadelphia,PA,356,Philadelphia,PA
-19104,39095,Philadelphia,PA,356,Philadelphia,PA
-19105,39095,Philadelphia,PA,356,Philadelphia,PA
-19106,39095,Philadelphia,PA,356,Philadelphia,PA
-19107,39095,Philadelphia,PA,356,Philadelphia,PA
-19108,39095,Philadelphia,PA,356,Philadelphia,PA
-19109,39095,Philadelphia,PA,356,Philadelphia,PA
-19110,39095,Philadelphia,PA,356,Philadelphia,PA
-19111,39095,Philadelphia,PA,356,Philadelphia,PA
-19112,39095,Philadelphia,PA,356,Philadelphia,PA
-19113,39106,Ridley Park,PA,356,Philadelphia,PA
-19114,39095,Philadelphia,PA,356,Philadelphia,PA
-19115,39095,Philadelphia,PA,356,Philadelphia,PA
-19116,39095,Philadelphia,PA,356,Philadelphia,PA
-19118,39095,Philadelphia,PA,356,Philadelphia,PA
-19119,39095,Philadelphia,PA,356,Philadelphia,PA
-19120,39095,Philadelphia,PA,356,Philadelphia,PA
-19121,39095,Philadelphia,PA,356,Philadelphia,PA
-19122,39095,Philadelphia,PA,356,Philadelphia,PA
-19123,39095,Philadelphia,PA,356,Philadelphia,PA
-19124,39095,Philadelphia,PA,356,Philadelphia,PA
-19125,39095,Philadelphia,PA,356,Philadelphia,PA
-19126,39095,Philadelphia,PA,356,Philadelphia,PA
-19127,39095,Philadelphia,PA,356,Philadelphia,PA
-19128,39095,Philadelphia,PA,356,Philadelphia,PA
-19129,39095,Philadelphia,PA,356,Philadelphia,PA
-19130,39095,Philadelphia,PA,356,Philadelphia,PA
-19131,39095,Philadelphia,PA,356,Philadelphia,PA
-19132,39095,Philadelphia,PA,356,Philadelphia,PA
-19133,39095,Philadelphia,PA,356,Philadelphia,PA
-19134,39095,Philadelphia,PA,356,Philadelphia,PA
-19135,39095,Philadelphia,PA,356,Philadelphia,PA
-19136,39095,Philadelphia,PA,356,Philadelphia,PA
-19137,39095,Philadelphia,PA,356,Philadelphia,PA
-19138,39095,Philadelphia,PA,356,Philadelphia,PA
-19139,39095,Philadelphia,PA,356,Philadelphia,PA
-19140,39095,Philadelphia,PA,356,Philadelphia,PA
-19141,39095,Philadelphia,PA,356,Philadelphia,PA
-19142,39032,Darby,PA,356,Philadelphia,PA
-19143,39095,Philadelphia,PA,356,Philadelphia,PA
-19144,39095,Philadelphia,PA,356,Philadelphia,PA
-19145,39095,Philadelphia,PA,356,Philadelphia,PA
-19146,39095,Philadelphia,PA,356,Philadelphia,PA
-19147,39095,Philadelphia,PA,356,Philadelphia,PA
-19148,39095,Philadelphia,PA,356,Philadelphia,PA
-19149,39095,Philadelphia,PA,356,Philadelphia,PA
-19150,39095,Philadelphia,PA,356,Philadelphia,PA
-19151,39095,Philadelphia,PA,356,Philadelphia,PA
-19152,39095,Philadelphia,PA,356,Philadelphia,PA
-19153,39032,Darby,PA,356,Philadelphia,PA
-19154,39095,Philadelphia,PA,356,Philadelphia,PA
-19155,39095,Philadelphia,PA,356,Philadelphia,PA
-19160,39095,Philadelphia,PA,356,Philadelphia,PA
-19161,39095,Philadelphia,PA,356,Philadelphia,PA
-19162,39095,Philadelphia,PA,356,Philadelphia,PA
-19170,39095,Philadelphia,PA,356,Philadelphia,PA
-19171,39095,Philadelphia,PA,356,Philadelphia,PA
-19172,39095,Philadelphia,PA,356,Philadelphia,PA
-19173,39095,Philadelphia,PA,356,Philadelphia,PA
-19175,39095,Philadelphia,PA,356,Philadelphia,PA
-19176,39032,Darby,PA,356,Philadelphia,PA
-19177,39095,Philadelphia,PA,356,Philadelphia,PA
-19178,39095,Philadelphia,PA,356,Philadelphia,PA
-19179,39095,Philadelphia,PA,356,Philadelphia,PA
-19181,39095,Philadelphia,PA,356,Philadelphia,PA
-19182,39095,Philadelphia,PA,356,Philadelphia,PA
-19183,39095,Philadelphia,PA,356,Philadelphia,PA
-19184,39095,Philadelphia,PA,356,Philadelphia,PA
-19185,39095,Philadelphia,PA,356,Philadelphia,PA
-19187,39095,Philadelphia,PA,356,Philadelphia,PA
-19188,39095,Philadelphia,PA,356,Philadelphia,PA
-19190,39095,Philadelphia,PA,356,Philadelphia,PA
-19191,39095,Philadelphia,PA,356,Philadelphia,PA
-19192,39095,Philadelphia,PA,356,Philadelphia,PA
-19193,39095,Philadelphia,PA,356,Philadelphia,PA
-19194,39095,Philadelphia,PA,356,Philadelphia,PA
-19195,39095,Philadelphia,PA,356,Philadelphia,PA
-19196,39095,Philadelphia,PA,356,Philadelphia,PA
-19197,39095,Philadelphia,PA,356,Philadelphia,PA
-19244,39095,Philadelphia,PA,356,Philadelphia,PA
-19255,39095,Philadelphia,PA,356,Philadelphia,PA
-19301,39093,Paoli,PA,356,Philadelphia,PA
-19310,39063,Lancaster,PA,355,Lancaster,PA
-19311,39136,West Grove,PA,355,Lancaster,PA
-19312,39093,Paoli,PA,356,Philadelphia,PA
-19316,39017,Coatesville,PA,355,Lancaster,PA
-19317,39135,West Chester,PA,356,Philadelphia,PA
-19318,39136,West Grove,PA,355,Lancaster,PA
-19319,39079,Media,PA,356,Philadelphia,PA
-19320,39017,Coatesville,PA,355,Lancaster,PA
-19330,39136,West Grove,PA,355,Lancaster,PA
-19331,39079,Media,PA,356,Philadelphia,PA
-19333,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19335,39135,West Chester,PA,356,Philadelphia,PA
-19339,39079,Media,PA,356,Philadelphia,PA
-19340,39079,Media,PA,356,Philadelphia,PA
-19341,39093,Paoli,PA,356,Philadelphia,PA
-19342,39079,Media,PA,356,Philadelphia,PA
-19343,39017,Coatesville,PA,355,Lancaster,PA
-19344,39017,Coatesville,PA,355,Lancaster,PA
-19345,39093,Paoli,PA,356,Philadelphia,PA
-19346,39136,West Grove,PA,355,Lancaster,PA
-19347,39136,West Grove,PA,355,Lancaster,PA
-19348,39135,West Chester,PA,356,Philadelphia,PA
-19350,39136,West Grove,PA,355,Lancaster,PA
-19351,39136,West Grove,PA,355,Lancaster,PA
-19352,39136,West Grove,PA,355,Lancaster,PA
-19353,39093,Paoli,PA,356,Philadelphia,PA
-19354,39135,West Chester,PA,356,Philadelphia,PA
-19355,39093,Paoli,PA,356,Philadelphia,PA
-19357,39135,West Chester,PA,356,Philadelphia,PA
-19358,39017,Coatesville,PA,355,Lancaster,PA
-19360,39136,West Grove,PA,355,Lancaster,PA
-19362,39136,West Grove,PA,355,Lancaster,PA
-19363,39136,West Grove,PA,355,Lancaster,PA
-19365,39017,Coatesville,PA,355,Lancaster,PA
-19366,39135,West Chester,PA,356,Philadelphia,PA
-19367,39017,Coatesville,PA,355,Lancaster,PA
-19369,39017,Coatesville,PA,355,Lancaster,PA
-19371,39017,Coatesville,PA,355,Lancaster,PA
-19372,39017,Coatesville,PA,355,Lancaster,PA
-19373,39079,Media,PA,356,Philadelphia,PA
-19374,39135,West Chester,PA,356,Philadelphia,PA
-19375,39135,West Chester,PA,356,Philadelphia,PA
-19376,39017,Coatesville,PA,355,Lancaster,PA
-19380,39135,West Chester,PA,356,Philadelphia,PA
-19381,39135,West Chester,PA,356,Philadelphia,PA
-19382,39135,West Chester,PA,356,Philadelphia,PA
-19383,39135,West Chester,PA,356,Philadelphia,PA
-19390,39136,West Grove,PA,355,Lancaster,PA
-19395,39135,West Chester,PA,356,Philadelphia,PA
-19397,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19398,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19399,39015,Bryn Mawr,PA,356,Philadelphia,PA
-19401,39090,Norristown,PA,356,Philadelphia,PA
-19403,39090,Norristown,PA,356,Philadelphia,PA
-19404,39090,Norristown,PA,356,Philadelphia,PA
-19405,39090,Norristown,PA,356,Philadelphia,PA
-19406,39090,Norristown,PA,356,Philadelphia,PA
-19407,39090,Norristown,PA,356,Philadelphia,PA
-19408,39090,Norristown,PA,356,Philadelphia,PA
-19409,39090,Norristown,PA,356,Philadelphia,PA
-19415,39090,Norristown,PA,356,Philadelphia,PA
-19421,39097,Phoenixville,PA,356,Philadelphia,PA
-19422,39090,Norristown,PA,356,Philadelphia,PA
-19423,39065,Lansdale,PA,356,Philadelphia,PA
-19424,39090,Norristown,PA,356,Philadelphia,PA
-19425,39097,Phoenixville,PA,356,Philadelphia,PA
-19426,39090,Norristown,PA,356,Philadelphia,PA
-19428,39090,Norristown,PA,356,Philadelphia,PA
-19429,39090,Norristown,PA,356,Philadelphia,PA
-19430,39110,Sellersville,PA,346,Allentown,PA
-19432,39093,Paoli,PA,356,Philadelphia,PA
-19435,39099,Pottstown,PA,358,Reading,PA
-19436,39095,Philadelphia,PA,356,Philadelphia,PA
-19437,39095,Philadelphia,PA,356,Philadelphia,PA
-19438,39110,Sellersville,PA,346,Allentown,PA
-19440,39065,Lansdale,PA,356,Philadelphia,PA
-19441,39110,Sellersville,PA,346,Allentown,PA
-19442,39097,Phoenixville,PA,356,Philadelphia,PA
-19443,39065,Lansdale,PA,356,Philadelphia,PA
-19444,39095,Philadelphia,PA,356,Philadelphia,PA
-19446,39065,Lansdale,PA,356,Philadelphia,PA
-19450,39110,Sellersville,PA,346,Allentown,PA
-19451,39110,Sellersville,PA,346,Allentown,PA
-19453,39097,Phoenixville,PA,356,Philadelphia,PA
-19454,39065,Lansdale,PA,356,Philadelphia,PA
-19455,39065,Lansdale,PA,356,Philadelphia,PA
-19456,39097,Phoenixville,PA,356,Philadelphia,PA
-19457,39099,Pottstown,PA,358,Reading,PA
-19460,39097,Phoenixville,PA,356,Philadelphia,PA
-19462,39090,Norristown,PA,356,Philadelphia,PA
-19464,39099,Pottstown,PA,358,Reading,PA
-19465,39099,Pottstown,PA,358,Reading,PA
-19468,39097,Phoenixville,PA,356,Philadelphia,PA
-19470,39103,Reading,PA,358,Reading,PA
-19472,39099,Pottstown,PA,358,Reading,PA
-19473,39090,Norristown,PA,356,Philadelphia,PA
-19474,39110,Sellersville,PA,346,Allentown,PA
-19475,39097,Phoenixville,PA,356,Philadelphia,PA
-19477,39095,Philadelphia,PA,356,Philadelphia,PA
-19478,39090,Norristown,PA,356,Philadelphia,PA
-19480,39097,Phoenixville,PA,356,Philadelphia,PA
-19481,39097,Phoenixville,PA,356,Philadelphia,PA
-19482,39097,Phoenixville,PA,356,Philadelphia,PA
-19484,39090,Norristown,PA,356,Philadelphia,PA
-19486,39065,Lansdale,PA,356,Philadelphia,PA
-19490,39065,Lansdale,PA,356,Philadelphia,PA
-19492,39099,Pottstown,PA,358,Reading,PA
-19493,39093,Paoli,PA,356,Philadelphia,PA
-19494,39093,Paoli,PA,356,Philadelphia,PA
-19495,39093,Paoli,PA,356,Philadelphia,PA
-19496,39093,Paoli,PA,356,Philadelphia,PA
-19501,39040,Ephrata,PA,355,Lancaster,PA
-19503,39003,Allentown,PA,346,Allentown,PA
-19504,39003,Allentown,PA,346,Allentown,PA
-19505,39099,Pottstown,PA,358,Reading,PA
-19506,39103,Reading,PA,358,Reading,PA
-19507,39067,Lebanon,PA,352,Harrisburg,PA
-19508,39103,Reading,PA,358,Reading,PA
-19510,39103,Reading,PA,358,Reading,PA
-19511,39103,Reading,PA,358,Reading,PA
-19512,39099,Pottstown,PA,358,Reading,PA
-19516,39103,Reading,PA,358,Reading,PA
-19518,39103,Reading,PA,358,Reading,PA
-19519,39099,Pottstown,PA,358,Reading,PA
-19520,39103,Reading,PA,358,Reading,PA
-19522,39103,Reading,PA,358,Reading,PA
-19523,39103,Reading,PA,358,Reading,PA
-19525,39099,Pottstown,PA,358,Reading,PA
-19526,39103,Reading,PA,358,Reading,PA
-19529,39003,Allentown,PA,346,Allentown,PA
-19530,39103,Reading,PA,358,Reading,PA
-19533,39103,Reading,PA,358,Reading,PA
-19534,39103,Reading,PA,358,Reading,PA
-19535,39103,Reading,PA,358,Reading,PA
-19536,39103,Reading,PA,358,Reading,PA
-19538,39103,Reading,PA,358,Reading,PA
-19539,39003,Allentown,PA,346,Allentown,PA
-19540,39103,Reading,PA,358,Reading,PA
-19541,39103,Reading,PA,358,Reading,PA
-19543,39103,Reading,PA,358,Reading,PA
-19544,39067,Lebanon,PA,352,Harrisburg,PA
-19545,39099,Pottstown,PA,358,Reading,PA
-19547,39103,Reading,PA,358,Reading,PA
-19548,39099,Pottstown,PA,358,Reading,PA
-19549,39103,Reading,PA,358,Reading,PA
-19550,39067,Lebanon,PA,352,Harrisburg,PA
-19551,39103,Reading,PA,358,Reading,PA
-19554,39103,Reading,PA,358,Reading,PA
-19555,39103,Reading,PA,358,Reading,PA
-19559,39103,Reading,PA,358,Reading,PA
-19560,39103,Reading,PA,358,Reading,PA
-19562,39003,Allentown,PA,346,Allentown,PA
-19564,39103,Reading,PA,358,Reading,PA
-19565,39103,Reading,PA,358,Reading,PA
-19567,39103,Reading,PA,358,Reading,PA
-19601,39103,Reading,PA,358,Reading,PA
-19602,39103,Reading,PA,358,Reading,PA
-19603,39103,Reading,PA,358,Reading,PA
-19604,39103,Reading,PA,358,Reading,PA
-19605,39103,Reading,PA,358,Reading,PA
-19606,39103,Reading,PA,358,Reading,PA
-19607,39103,Reading,PA,358,Reading,PA
-19608,39103,Reading,PA,358,Reading,PA
-19609,39103,Reading,PA,358,Reading,PA
-19610,39103,Reading,PA,358,Reading,PA
-19611,39103,Reading,PA,358,Reading,PA
-19612,39103,Reading,PA,358,Reading,PA
-19701,8005,Wilmington,DE,112,Wilmington,DE
-19702,8005,Wilmington,DE,112,Wilmington,DE
-19703,8005,Wilmington,DE,112,Wilmington,DE
-19706,8005,Wilmington,DE,112,Wilmington,DE
-19707,8005,Wilmington,DE,112,Wilmington,DE
-19708,8005,Wilmington,DE,112,Wilmington,DE
-19709,8005,Wilmington,DE,112,Wilmington,DE
-19710,8005,Wilmington,DE,112,Wilmington,DE
-19711,8005,Wilmington,DE,112,Wilmington,DE
-19712,8005,Wilmington,DE,112,Wilmington,DE
-19713,8005,Wilmington,DE,112,Wilmington,DE
-19714,8005,Wilmington,DE,112,Wilmington,DE
-19715,8005,Wilmington,DE,112,Wilmington,DE
-19716,8005,Wilmington,DE,112,Wilmington,DE
-19717,8005,Wilmington,DE,112,Wilmington,DE
-19718,8005,Wilmington,DE,112,Wilmington,DE
-19720,8005,Wilmington,DE,112,Wilmington,DE
-19721,8005,Wilmington,DE,112,Wilmington,DE
-19725,8005,Wilmington,DE,112,Wilmington,DE
-19726,8005,Wilmington,DE,112,Wilmington,DE
-19730,8005,Wilmington,DE,112,Wilmington,DE
-19731,8005,Wilmington,DE,112,Wilmington,DE
-19732,8005,Wilmington,DE,112,Wilmington,DE
-19733,8005,Wilmington,DE,112,Wilmington,DE
-19734,8005,Wilmington,DE,112,Wilmington,DE
-19735,8005,Wilmington,DE,112,Wilmington,DE
-19736,8005,Wilmington,DE,112,Wilmington,DE
-19801,8005,Wilmington,DE,112,Wilmington,DE
-19802,8005,Wilmington,DE,112,Wilmington,DE
-19803,8005,Wilmington,DE,112,Wilmington,DE
-19804,8005,Wilmington,DE,112,Wilmington,DE
-19805,8005,Wilmington,DE,112,Wilmington,DE
-19806,8005,Wilmington,DE,112,Wilmington,DE
-19807,8005,Wilmington,DE,112,Wilmington,DE
-19808,8005,Wilmington,DE,112,Wilmington,DE
-19809,8005,Wilmington,DE,112,Wilmington,DE
-19810,8005,Wilmington,DE,112,Wilmington,DE
-19850,8005,Wilmington,DE,112,Wilmington,DE
-19880,8005,Wilmington,DE,112,Wilmington,DE
-19884,8005,Wilmington,DE,112,Wilmington,DE
-19885,8005,Wilmington,DE,112,Wilmington,DE
-19886,8005,Wilmington,DE,112,Wilmington,DE
-19890,8005,Wilmington,DE,112,Wilmington,DE
-19891,8005,Wilmington,DE,112,Wilmington,DE
-19892,8005,Wilmington,DE,112,Wilmington,DE
-19893,8005,Wilmington,DE,112,Wilmington,DE
-19894,8005,Wilmington,DE,112,Wilmington,DE
-19895,8005,Wilmington,DE,112,Wilmington,DE
-19896,8005,Wilmington,DE,112,Wilmington,DE
-19897,8005,Wilmington,DE,112,Wilmington,DE
-19898,8005,Wilmington,DE,112,Wilmington,DE
-19899,8005,Wilmington,DE,112,Wilmington,DE
-19901,8001,Dover,DE,112,Wilmington,DE
-19902,8001,Dover,DE,112,Wilmington,DE
-19903,8001,Dover,DE,112,Wilmington,DE
-19904,8001,Dover,DE,112,Wilmington,DE
-19905,8001,Dover,DE,112,Wilmington,DE
-19906,8001,Dover,DE,112,Wilmington,DE
-19930,8002,Lewes,DE,225,Salisbury,MD
-19931,8004,Seaford,DE,225,Salisbury,MD
-19933,8004,Seaford,DE,225,Salisbury,MD
-19934,8001,Dover,DE,112,Wilmington,DE
-19936,8001,Dover,DE,112,Wilmington,DE
-19938,8001,Dover,DE,112,Wilmington,DE
-19939,8002,Lewes,DE,225,Salisbury,MD
-19940,21029,Salisbury,MD,225,Salisbury,MD
-19941,8003,Milford,DE,225,Salisbury,MD
-19943,8001,Dover,DE,112,Wilmington,DE
-19944,8002,Lewes,DE,225,Salisbury,MD
-19945,8002,Lewes,DE,225,Salisbury,MD
-19946,8003,Milford,DE,225,Salisbury,MD
-19947,8003,Milford,DE,225,Salisbury,MD
-19950,8003,Milford,DE,225,Salisbury,MD
-19951,8002,Lewes,DE,225,Salisbury,MD
-19952,8003,Milford,DE,225,Salisbury,MD
-19953,8001,Dover,DE,112,Wilmington,DE
-19954,8003,Milford,DE,225,Salisbury,MD
-19955,8001,Dover,DE,112,Wilmington,DE
-19956,8004,Seaford,DE,225,Salisbury,MD
-19958,8002,Lewes,DE,225,Salisbury,MD
-19960,8003,Milford,DE,225,Salisbury,MD
-19961,8001,Dover,DE,112,Wilmington,DE
-19962,8001,Dover,DE,112,Wilmington,DE
-19963,8003,Milford,DE,225,Salisbury,MD
-19964,8001,Dover,DE,112,Wilmington,DE
-19966,8002,Lewes,DE,225,Salisbury,MD
-19967,8002,Lewes,DE,225,Salisbury,MD
-19968,8003,Milford,DE,225,Salisbury,MD
-19969,8002,Lewes,DE,225,Salisbury,MD
-19970,8002,Lewes,DE,225,Salisbury,MD
-19971,8002,Lewes,DE,225,Salisbury,MD
-19973,8004,Seaford,DE,225,Salisbury,MD
-19975,21029,Salisbury,MD,225,Salisbury,MD
-19977,8001,Dover,DE,112,Wilmington,DE
-19979,8001,Dover,DE,112,Wilmington,DE
-19980,8001,Dover,DE,112,Wilmington,DE
-20001,9001,Washington,DC,113,Washington,DC
-20002,9001,Washington,DC,113,Washington,DC
-20003,9001,Washington,DC,113,Washington,DC
-20004,9001,Washington,DC,113,Washington,DC
-20005,9001,Washington,DC,113,Washington,DC
-20006,9001,Washington,DC,113,Washington,DC
-20007,9001,Washington,DC,113,Washington,DC
-20008,9001,Washington,DC,113,Washington,DC
-20009,9001,Washington,DC,113,Washington,DC
-20010,9001,Washington,DC,113,Washington,DC
-20011,9001,Washington,DC,113,Washington,DC
-20012,9001,Washington,DC,113,Washington,DC
-20013,9001,Washington,DC,113,Washington,DC
-20015,9001,Washington,DC,113,Washington,DC
-20016,9001,Washington,DC,113,Washington,DC
-20017,9001,Washington,DC,113,Washington,DC
-20018,9001,Washington,DC,113,Washington,DC
-20019,9001,Washington,DC,113,Washington,DC
-20020,9001,Washington,DC,113,Washington,DC
-20022,9001,Washington,DC,113,Washington,DC
-20024,9001,Washington,DC,113,Washington,DC
-20026,9001,Washington,DC,113,Washington,DC
-20027,9001,Washington,DC,113,Washington,DC
-20029,9001,Washington,DC,113,Washington,DC
-20030,9001,Washington,DC,113,Washington,DC
-20032,9001,Washington,DC,113,Washington,DC
-20033,9001,Washington,DC,113,Washington,DC
-20035,9001,Washington,DC,113,Washington,DC
-20036,9001,Washington,DC,113,Washington,DC
-20037,9001,Washington,DC,113,Washington,DC
-20038,9001,Washington,DC,113,Washington,DC
-20039,9001,Washington,DC,113,Washington,DC
-20040,9001,Washington,DC,113,Washington,DC
-20041,49046,Reston,VA,426,Arlington,VA
-20042,9001,Washington,DC,113,Washington,DC
-20043,9001,Washington,DC,113,Washington,DC
-20044,9001,Washington,DC,113,Washington,DC
-20045,9001,Washington,DC,113,Washington,DC
-20047,9001,Washington,DC,113,Washington,DC
-20049,9001,Washington,DC,113,Washington,DC
-20050,9001,Washington,DC,113,Washington,DC
-20052,9001,Washington,DC,113,Washington,DC
-20053,9001,Washington,DC,113,Washington,DC
-20055,9001,Washington,DC,113,Washington,DC
-20056,9001,Washington,DC,113,Washington,DC
-20057,9001,Washington,DC,113,Washington,DC
-20058,21003,Bethesda,MD,113,Washington,DC
-20059,9001,Washington,DC,113,Washington,DC
-20060,9001,Washington,DC,113,Washington,DC
-20061,9001,Washington,DC,113,Washington,DC
-20062,9001,Washington,DC,113,Washington,DC
-20063,9001,Washington,DC,113,Washington,DC
-20064,9001,Washington,DC,113,Washington,DC
-20065,9001,Washington,DC,113,Washington,DC
-20066,9001,Washington,DC,113,Washington,DC
-20067,9001,Washington,DC,113,Washington,DC
-20068,9001,Washington,DC,113,Washington,DC
-20069,49014,Falls Church,VA,426,Arlington,VA
-20070,49014,Falls Church,VA,426,Arlington,VA
-20071,9001,Washington,DC,113,Washington,DC
-20073,9001,Washington,DC,113,Washington,DC
-20074,9001,Washington,DC,113,Washington,DC
-20075,9001,Washington,DC,113,Washington,DC
-20076,9001,Washington,DC,113,Washington,DC
-20077,9001,Washington,DC,113,Washington,DC
-20078,9001,Washington,DC,113,Washington,DC
-20080,9001,Washington,DC,113,Washington,DC
-20081,9001,Washington,DC,113,Washington,DC
-20082,9001,Washington,DC,113,Washington,DC
-20090,9001,Washington,DC,113,Washington,DC
-20091,9001,Washington,DC,113,Washington,DC
-20101,49028,Leesburg,VA,426,Arlington,VA
-20102,49046,Reston,VA,426,Arlington,VA
-20103,49046,Reston,VA,426,Arlington,VA
-20104,49046,Reston,VA,426,Arlington,VA
-20105,49028,Leesburg,VA,426,Arlington,VA
-20106,49060,Warrenton,VA,426,Arlington,VA
-20108,49033,Manassas,VA,426,Arlington,VA
-20109,49033,Manassas,VA,426,Arlington,VA
-20110,49033,Manassas,VA,426,Arlington,VA
-20111,49033,Manassas,VA,426,Arlington,VA
-20112,49033,Manassas,VA,426,Arlington,VA
-20113,49033,Manassas,VA,426,Arlington,VA
-20115,49060,Warrenton,VA,426,Arlington,VA
-20116,49060,Warrenton,VA,426,Arlington,VA
-20117,49028,Leesburg,VA,426,Arlington,VA
-20118,49028,Leesburg,VA,426,Arlington,VA
-20119,49060,Warrenton,VA,426,Arlington,VA
-20120,49013,Fairfax,VA,426,Arlington,VA
-20121,49013,Fairfax,VA,426,Arlington,VA
-20122,49013,Fairfax,VA,426,Arlington,VA
-20124,49013,Fairfax,VA,426,Arlington,VA
-20128,49060,Warrenton,VA,426,Arlington,VA
-20129,49028,Leesburg,VA,426,Arlington,VA
-20130,49063,Winchester,VA,435,Winchester,VA
-20131,49028,Leesburg,VA,426,Arlington,VA
-20132,49028,Leesburg,VA,426,Arlington,VA
-20134,49028,Leesburg,VA,426,Arlington,VA
-20135,49063,Winchester,VA,435,Winchester,VA
-20136,49033,Manassas,VA,426,Arlington,VA
-20137,49060,Warrenton,VA,426,Arlington,VA
-20138,49060,Warrenton,VA,426,Arlington,VA
-20139,49060,Warrenton,VA,426,Arlington,VA
-20140,49060,Warrenton,VA,426,Arlington,VA
-20141,49028,Leesburg,VA,426,Arlington,VA
-20142,49028,Leesburg,VA,426,Arlington,VA
-20143,49033,Manassas,VA,426,Arlington,VA
-20144,49060,Warrenton,VA,426,Arlington,VA
-20146,49028,Leesburg,VA,426,Arlington,VA
-20147,49028,Leesburg,VA,426,Arlington,VA
-20148,49028,Leesburg,VA,426,Arlington,VA
-20149,49028,Leesburg,VA,426,Arlington,VA
-20151,49013,Fairfax,VA,426,Arlington,VA
-20152,49013,Fairfax,VA,426,Arlington,VA
-20153,49013,Fairfax,VA,426,Arlington,VA
-20155,49033,Manassas,VA,426,Arlington,VA
-20156,49033,Manassas,VA,426,Arlington,VA
-20158,49028,Leesburg,VA,426,Arlington,VA
-20159,49028,Leesburg,VA,426,Arlington,VA
-20160,49028,Leesburg,VA,426,Arlington,VA
-20163,49046,Reston,VA,426,Arlington,VA
-20164,49046,Reston,VA,426,Arlington,VA
-20165,49028,Leesburg,VA,426,Arlington,VA
-20166,49046,Reston,VA,426,Arlington,VA
-20167,49046,Reston,VA,426,Arlington,VA
-20168,49033,Manassas,VA,426,Arlington,VA
-20169,49033,Manassas,VA,426,Arlington,VA
-20170,49046,Reston,VA,426,Arlington,VA
-20171,49046,Reston,VA,426,Arlington,VA
-20172,49046,Reston,VA,426,Arlington,VA
-20175,49028,Leesburg,VA,426,Arlington,VA
-20176,49028,Leesburg,VA,426,Arlington,VA
-20177,49028,Leesburg,VA,426,Arlington,VA
-20178,49028,Leesburg,VA,426,Arlington,VA
-20180,49028,Leesburg,VA,426,Arlington,VA
-20181,49033,Manassas,VA,426,Arlington,VA
-20182,49033,Manassas,VA,426,Arlington,VA
-20184,49063,Winchester,VA,435,Winchester,VA
-20185,49063,Winchester,VA,435,Winchester,VA
-20186,49060,Warrenton,VA,426,Arlington,VA
-20187,49060,Warrenton,VA,426,Arlington,VA
-20188,49060,Warrenton,VA,426,Arlington,VA
-20189,49028,Leesburg,VA,426,Arlington,VA
-20190,49046,Reston,VA,426,Arlington,VA
-20191,49046,Reston,VA,426,Arlington,VA
-20192,49046,Reston,VA,426,Arlington,VA
-20194,49046,Reston,VA,426,Arlington,VA
-20195,49046,Reston,VA,426,Arlington,VA
-20196,49046,Reston,VA,426,Arlington,VA
-20197,49028,Leesburg,VA,426,Arlington,VA
-20198,49060,Warrenton,VA,426,Arlington,VA
-20201,9001,Washington,DC,113,Washington,DC
-20202,9001,Washington,DC,113,Washington,DC
-20203,9001,Washington,DC,113,Washington,DC
-20204,9001,Washington,DC,113,Washington,DC
-20206,49002,Alexandria,VA,426,Arlington,VA
-20207,9001,Washington,DC,113,Washington,DC
-20208,9001,Washington,DC,113,Washington,DC
-20210,9001,Washington,DC,113,Washington,DC
-20211,9001,Washington,DC,113,Washington,DC
-20212,9001,Washington,DC,113,Washington,DC
-20213,9001,Washington,DC,113,Washington,DC
-20214,9001,Washington,DC,113,Washington,DC
-20215,9001,Washington,DC,113,Washington,DC
-20216,9001,Washington,DC,113,Washington,DC
-20217,9001,Washington,DC,113,Washington,DC
-20218,9001,Washington,DC,113,Washington,DC
-20219,9001,Washington,DC,113,Washington,DC
-20220,9001,Washington,DC,113,Washington,DC
-20221,9001,Washington,DC,113,Washington,DC
-20222,9001,Washington,DC,113,Washington,DC
-20223,9001,Washington,DC,113,Washington,DC
-20224,9001,Washington,DC,113,Washington,DC
-20226,9001,Washington,DC,113,Washington,DC
-20227,9001,Washington,DC,113,Washington,DC
-20228,9001,Washington,DC,113,Washington,DC
-20229,9001,Washington,DC,113,Washington,DC
-20230,9001,Washington,DC,113,Washington,DC
-20232,9001,Washington,DC,113,Washington,DC
-20233,9001,Washington,DC,113,Washington,DC
-20235,9001,Washington,DC,113,Washington,DC
-20237,9001,Washington,DC,113,Washington,DC
-20238,9001,Washington,DC,113,Washington,DC
-20239,9001,Washington,DC,113,Washington,DC
-20240,9001,Washington,DC,113,Washington,DC
-20241,9001,Washington,DC,113,Washington,DC
-20242,9001,Washington,DC,113,Washington,DC
-20244,9001,Washington,DC,113,Washington,DC
-20245,9001,Washington,DC,113,Washington,DC
-20250,9001,Washington,DC,113,Washington,DC
-20251,9001,Washington,DC,113,Washington,DC
-20252,9001,Washington,DC,113,Washington,DC
-20254,9001,Washington,DC,113,Washington,DC
-20260,9001,Washington,DC,113,Washington,DC
-20261,9001,Washington,DC,113,Washington,DC
-20262,9001,Washington,DC,113,Washington,DC
-20265,9001,Washington,DC,113,Washington,DC
-20266,9001,Washington,DC,113,Washington,DC
-20268,9001,Washington,DC,113,Washington,DC
-20270,9001,Washington,DC,113,Washington,DC
-20277,9001,Washington,DC,113,Washington,DC
-20289,9001,Washington,DC,113,Washington,DC
-20299,9001,Washington,DC,113,Washington,DC
-20301,49003,Arlington,VA,426,Arlington,VA
-20303,9001,Washington,DC,113,Washington,DC
-20306,9001,Washington,DC,113,Washington,DC
-20310,49003,Arlington,VA,426,Arlington,VA
-20314,9001,Washington,DC,113,Washington,DC
-20317,9001,Washington,DC,113,Washington,DC
-20318,9001,Washington,DC,113,Washington,DC
-20319,9001,Washington,DC,113,Washington,DC
-20330,49003,Arlington,VA,426,Arlington,VA
-20340,9001,Washington,DC,113,Washington,DC
-20350,49003,Arlington,VA,426,Arlington,VA
-20355,9001,Washington,DC,113,Washington,DC
-20370,9001,Washington,DC,113,Washington,DC
-20372,9001,Washington,DC,113,Washington,DC
-20373,9001,Washington,DC,113,Washington,DC
-20374,9001,Washington,DC,113,Washington,DC
-20375,9001,Washington,DC,113,Washington,DC
-20376,9001,Washington,DC,113,Washington,DC
-20380,9001,Washington,DC,113,Washington,DC
-20388,9001,Washington,DC,113,Washington,DC
-20389,9001,Washington,DC,113,Washington,DC
-20390,9001,Washington,DC,113,Washington,DC
-20391,9001,Washington,DC,113,Washington,DC
-20392,9001,Washington,DC,113,Washington,DC
-20393,9001,Washington,DC,113,Washington,DC
-20394,9001,Washington,DC,113,Washington,DC
-20395,9001,Washington,DC,113,Washington,DC
-20398,9001,Washington,DC,113,Washington,DC
-20401,9001,Washington,DC,113,Washington,DC
-20402,9001,Washington,DC,113,Washington,DC
-20403,9001,Washington,DC,113,Washington,DC
-20404,9001,Washington,DC,113,Washington,DC
-20405,9001,Washington,DC,113,Washington,DC
-20406,49003,Arlington,VA,426,Arlington,VA
-20407,9001,Washington,DC,113,Washington,DC
-20408,9001,Washington,DC,113,Washington,DC
-20410,9001,Washington,DC,113,Washington,DC
-20411,9001,Washington,DC,113,Washington,DC
-20412,9001,Washington,DC,113,Washington,DC
-20413,9001,Washington,DC,113,Washington,DC
-20414,9001,Washington,DC,113,Washington,DC
-20415,9001,Washington,DC,113,Washington,DC
-20416,9001,Washington,DC,113,Washington,DC
-20417,9001,Washington,DC,113,Washington,DC
-20418,9001,Washington,DC,113,Washington,DC
-20419,9001,Washington,DC,113,Washington,DC
-20420,9001,Washington,DC,113,Washington,DC
-20421,9001,Washington,DC,113,Washington,DC
-20422,9001,Washington,DC,113,Washington,DC
-20423,9001,Washington,DC,113,Washington,DC
-20424,9001,Washington,DC,113,Washington,DC
-20425,9001,Washington,DC,113,Washington,DC
-20426,9001,Washington,DC,113,Washington,DC
-20427,9001,Washington,DC,113,Washington,DC
-20428,9001,Washington,DC,113,Washington,DC
-20429,9001,Washington,DC,113,Washington,DC
-20431,9001,Washington,DC,113,Washington,DC
-20433,9001,Washington,DC,113,Washington,DC
-20434,9001,Washington,DC,113,Washington,DC
-20435,9001,Washington,DC,113,Washington,DC
-20436,9001,Washington,DC,113,Washington,DC
-20437,9001,Washington,DC,113,Washington,DC
-20439,9001,Washington,DC,113,Washington,DC
-20440,9001,Washington,DC,113,Washington,DC
-20441,9001,Washington,DC,113,Washington,DC
-20442,9001,Washington,DC,113,Washington,DC
-20444,9001,Washington,DC,113,Washington,DC
-20447,9001,Washington,DC,113,Washington,DC
-20451,9001,Washington,DC,113,Washington,DC
-20453,49003,Arlington,VA,426,Arlington,VA
-20456,9001,Washington,DC,113,Washington,DC
-20460,9001,Washington,DC,113,Washington,DC
-20463,9001,Washington,DC,113,Washington,DC
-20468,9001,Washington,DC,113,Washington,DC
-20469,9001,Washington,DC,113,Washington,DC
-20470,9001,Washington,DC,113,Washington,DC
-20472,9001,Washington,DC,113,Washington,DC
-20500,9001,Washington,DC,113,Washington,DC
-20501,9001,Washington,DC,113,Washington,DC
-20502,9001,Washington,DC,113,Washington,DC
-20503,9001,Washington,DC,113,Washington,DC
-20504,9001,Washington,DC,113,Washington,DC
-20505,9001,Washington,DC,113,Washington,DC
-20506,9001,Washington,DC,113,Washington,DC
-20507,9001,Washington,DC,113,Washington,DC
-20508,9001,Washington,DC,113,Washington,DC
-20509,9001,Washington,DC,113,Washington,DC
-20510,9001,Washington,DC,113,Washington,DC
-20511,9001,Washington,DC,113,Washington,DC
-20515,9001,Washington,DC,113,Washington,DC
-20520,9001,Washington,DC,113,Washington,DC
-20521,9001,Washington,DC,113,Washington,DC
-20522,9001,Washington,DC,113,Washington,DC
-20523,9001,Washington,DC,113,Washington,DC
-20524,9001,Washington,DC,113,Washington,DC
-20525,9001,Washington,DC,113,Washington,DC
-20526,9001,Washington,DC,113,Washington,DC
-20527,9001,Washington,DC,113,Washington,DC
-20528,9001,Washington,DC,113,Washington,DC
-20529,9001,Washington,DC,113,Washington,DC
-20530,9001,Washington,DC,113,Washington,DC
-20531,9001,Washington,DC,113,Washington,DC
-20533,9001,Washington,DC,113,Washington,DC
-20534,9001,Washington,DC,113,Washington,DC
-20535,9001,Washington,DC,113,Washington,DC
-20536,9001,Washington,DC,113,Washington,DC
-20537,9001,Washington,DC,113,Washington,DC
-20538,9001,Washington,DC,113,Washington,DC
-20539,9001,Washington,DC,113,Washington,DC
-20540,9001,Washington,DC,113,Washington,DC
-20541,9001,Washington,DC,113,Washington,DC
-20542,9001,Washington,DC,113,Washington,DC
-20543,9001,Washington,DC,113,Washington,DC
-20544,9001,Washington,DC,113,Washington,DC
-20546,9001,Washington,DC,113,Washington,DC
-20547,9001,Washington,DC,113,Washington,DC
-20548,9001,Washington,DC,113,Washington,DC
-20549,9001,Washington,DC,113,Washington,DC
-20551,9001,Washington,DC,113,Washington,DC
-20552,9001,Washington,DC,113,Washington,DC
-20553,9001,Washington,DC,113,Washington,DC
-20554,9001,Washington,DC,113,Washington,DC
-20555,9001,Washington,DC,113,Washington,DC
-20557,9001,Washington,DC,113,Washington,DC
-20559,9001,Washington,DC,113,Washington,DC
-20560,9001,Washington,DC,113,Washington,DC
-20565,9001,Washington,DC,113,Washington,DC
-20566,9001,Washington,DC,113,Washington,DC
-20570,9001,Washington,DC,113,Washington,DC
-20571,9001,Washington,DC,113,Washington,DC
-20572,9001,Washington,DC,113,Washington,DC
-20573,9001,Washington,DC,113,Washington,DC
-20575,9001,Washington,DC,113,Washington,DC
-20576,9001,Washington,DC,113,Washington,DC
-20577,9001,Washington,DC,113,Washington,DC
-20578,9001,Washington,DC,113,Washington,DC
-20579,9001,Washington,DC,113,Washington,DC
-20580,9001,Washington,DC,113,Washington,DC
-20581,9001,Washington,DC,113,Washington,DC
-20585,9001,Washington,DC,113,Washington,DC
-20586,9001,Washington,DC,113,Washington,DC
-20588,21007,Clinton,MD,113,Washington,DC
-20590,9001,Washington,DC,113,Washington,DC
-20591,9001,Washington,DC,113,Washington,DC
-20593,9001,Washington,DC,113,Washington,DC
-20594,9001,Washington,DC,113,Washington,DC
-20597,9001,Washington,DC,113,Washington,DC
-20598,49003,Arlington,VA,426,Arlington,VA
-20599,9001,Washington,DC,113,Washington,DC
-20601,21007,Clinton,MD,113,Washington,DC
-20602,21007,Clinton,MD,113,Washington,DC
-20603,21019,La Plata,MD,113,Washington,DC
-20604,21007,Clinton,MD,113,Washington,DC
-20606,21022,Leonardtown,MD,113,Washington,DC
-20607,21007,Clinton,MD,113,Washington,DC
-20608,21007,Clinton,MD,113,Washington,DC
-20609,21022,Leonardtown,MD,113,Washington,DC
-20610,21025,Prince Frederick,MD,113,Washington,DC
-20611,21019,La Plata,MD,113,Washington,DC
-20612,21019,La Plata,MD,113,Washington,DC
-20613,21007,Clinton,MD,113,Washington,DC
-20615,21025,Prince Frederick,MD,113,Washington,DC
-20616,21019,La Plata,MD,113,Washington,DC
-20617,21019,La Plata,MD,113,Washington,DC
-20618,21022,Leonardtown,MD,113,Washington,DC
-20619,21022,Leonardtown,MD,113,Washington,DC
-20620,21022,Leonardtown,MD,113,Washington,DC
-20621,21022,Leonardtown,MD,113,Washington,DC
-20622,21019,La Plata,MD,113,Washington,DC
-20623,21007,Clinton,MD,113,Washington,DC
-20624,21022,Leonardtown,MD,113,Washington,DC
-20625,21019,La Plata,MD,113,Washington,DC
-20626,21022,Leonardtown,MD,113,Washington,DC
-20627,21022,Leonardtown,MD,113,Washington,DC
-20628,21022,Leonardtown,MD,113,Washington,DC
-20629,21025,Prince Frederick,MD,113,Washington,DC
-20630,21022,Leonardtown,MD,113,Washington,DC
-20632,21019,La Plata,MD,113,Washington,DC
-20634,21022,Leonardtown,MD,113,Washington,DC
-20635,21022,Leonardtown,MD,113,Washington,DC
-20636,21022,Leonardtown,MD,113,Washington,DC
-20637,21019,La Plata,MD,113,Washington,DC
-20639,21025,Prince Frederick,MD,113,Washington,DC
-20640,21019,La Plata,MD,113,Washington,DC
-20643,21019,La Plata,MD,113,Washington,DC
-20645,21019,La Plata,MD,113,Washington,DC
-20646,21019,La Plata,MD,113,Washington,DC
-20650,21022,Leonardtown,MD,113,Washington,DC
-20653,21022,Leonardtown,MD,113,Washington,DC
-20656,21022,Leonardtown,MD,113,Washington,DC
-20657,21025,Prince Frederick,MD,113,Washington,DC
-20658,21019,La Plata,MD,113,Washington,DC
-20659,21022,Leonardtown,MD,113,Washington,DC
-20660,21022,Leonardtown,MD,113,Washington,DC
-20661,21019,La Plata,MD,113,Washington,DC
-20662,21019,La Plata,MD,113,Washington,DC
-20664,21019,La Plata,MD,113,Washington,DC
-20667,21022,Leonardtown,MD,113,Washington,DC
-20670,21025,Prince Frederick,MD,113,Washington,DC
-20674,21022,Leonardtown,MD,113,Washington,DC
-20675,21019,La Plata,MD,113,Washington,DC
-20676,21025,Prince Frederick,MD,113,Washington,DC
-20677,21019,La Plata,MD,113,Washington,DC
-20678,21025,Prince Frederick,MD,113,Washington,DC
-20680,21022,Leonardtown,MD,113,Washington,DC
-20682,21022,Leonardtown,MD,113,Washington,DC
-20684,21022,Leonardtown,MD,113,Washington,DC
-20685,21025,Prince Frederick,MD,113,Washington,DC
-20686,21022,Leonardtown,MD,113,Washington,DC
-20687,21022,Leonardtown,MD,113,Washington,DC
-20688,21025,Prince Frederick,MD,113,Washington,DC
-20689,21025,Prince Frederick,MD,113,Washington,DC
-20690,21022,Leonardtown,MD,113,Washington,DC
-20692,21022,Leonardtown,MD,113,Washington,DC
-20693,21019,La Plata,MD,113,Washington,DC
-20695,21019,La Plata,MD,113,Washington,DC
-20697,9001,Washington,DC,113,Washington,DC
-20701,21021,Laurel,MD,226,Takoma Park,MD
-20703,21020,Lanham,MD,226,Takoma Park,MD
-20704,21021,Laurel,MD,226,Takoma Park,MD
-20705,21021,Laurel,MD,226,Takoma Park,MD
-20706,21020,Lanham,MD,226,Takoma Park,MD
-20707,21021,Laurel,MD,226,Takoma Park,MD
-20708,21021,Laurel,MD,226,Takoma Park,MD
-20709,21021,Laurel,MD,226,Takoma Park,MD
-20710,21006,Cheverly,MD,226,Takoma Park,MD
-20711,21001,Annapolis,MD,113,Washington,DC
-20712,9001,Washington,DC,113,Washington,DC
-20714,21025,Prince Frederick,MD,113,Washington,DC
-20715,21020,Lanham,MD,226,Takoma Park,MD
-20716,21020,Lanham,MD,226,Takoma Park,MD
-20717,21020,Lanham,MD,226,Takoma Park,MD
-20718,21020,Lanham,MD,226,Takoma Park,MD
-20719,21020,Lanham,MD,226,Takoma Park,MD
-20720,21020,Lanham,MD,226,Takoma Park,MD
-20721,21006,Cheverly,MD,226,Takoma Park,MD
-20722,21006,Cheverly,MD,226,Takoma Park,MD
-20723,21021,Laurel,MD,226,Takoma Park,MD
-20724,21021,Laurel,MD,226,Takoma Park,MD
-20725,21021,Laurel,MD,226,Takoma Park,MD
-20726,21021,Laurel,MD,226,Takoma Park,MD
-20731,9001,Washington,DC,113,Washington,DC
-20732,21025,Prince Frederick,MD,113,Washington,DC
-20733,21001,Annapolis,MD,113,Washington,DC
-20735,21007,Clinton,MD,113,Washington,DC
-20736,21025,Prince Frederick,MD,113,Washington,DC
-20737,21020,Lanham,MD,226,Takoma Park,MD
-20738,21020,Lanham,MD,226,Takoma Park,MD
-20740,21020,Lanham,MD,226,Takoma Park,MD
-20741,21020,Lanham,MD,226,Takoma Park,MD
-20742,21020,Lanham,MD,226,Takoma Park,MD
-20743,9001,Washington,DC,113,Washington,DC
-20744,9001,Washington,DC,113,Washington,DC
-20745,9001,Washington,DC,113,Washington,DC
-20746,9001,Washington,DC,113,Washington,DC
-20747,9001,Washington,DC,113,Washington,DC
-20748,9001,Washington,DC,113,Washington,DC
-20749,9001,Washington,DC,113,Washington,DC
-20750,9001,Washington,DC,113,Washington,DC
-20751,21001,Annapolis,MD,113,Washington,DC
-20752,9001,Washington,DC,113,Washington,DC
-20753,9001,Washington,DC,113,Washington,DC
-20754,21025,Prince Frederick,MD,113,Washington,DC
-20755,21016,Glen Burnie,MD,223,Baltimore,MD
-20757,9001,Washington,DC,113,Washington,DC
-20758,21025,Prince Frederick,MD,113,Washington,DC
-20759,21008,Columbia,MD,223,Baltimore,MD
-20762,21007,Clinton,MD,113,Washington,DC
-20763,21021,Laurel,MD,226,Takoma Park,MD
-20764,21001,Annapolis,MD,113,Washington,DC
-20765,21001,Annapolis,MD,113,Washington,DC
-20768,21020,Lanham,MD,226,Takoma Park,MD
-20769,21020,Lanham,MD,226,Takoma Park,MD
-20770,21020,Lanham,MD,226,Takoma Park,MD
-20771,21020,Lanham,MD,226,Takoma Park,MD
-20772,21007,Clinton,MD,113,Washington,DC
-20773,21007,Clinton,MD,113,Washington,DC
-20774,21007,Clinton,MD,113,Washington,DC
-20775,21007,Clinton,MD,113,Washington,DC
-20776,21001,Annapolis,MD,113,Washington,DC
-20777,21024,Olney,MD,226,Takoma Park,MD
-20778,21001,Annapolis,MD,113,Washington,DC
-20779,21001,Annapolis,MD,113,Washington,DC
-20781,21006,Cheverly,MD,226,Takoma Park,MD
-20782,21031,Takoma Park,MD,226,Takoma Park,MD
-20783,21031,Takoma Park,MD,226,Takoma Park,MD
-20784,21006,Cheverly,MD,226,Takoma Park,MD
-20785,21006,Cheverly,MD,226,Takoma Park,MD
-20787,21031,Takoma Park,MD,226,Takoma Park,MD
-20788,21031,Takoma Park,MD,226,Takoma Park,MD
-20790,9001,Washington,DC,113,Washington,DC
-20791,9001,Washington,DC,113,Washington,DC
-20792,21006,Cheverly,MD,226,Takoma Park,MD
-20794,21021,Laurel,MD,226,Takoma Park,MD
-20797,9001,Washington,DC,113,Washington,DC
-20799,9001,Washington,DC,113,Washington,DC
-20810,9001,Washington,DC,113,Washington,DC
-20811,9001,Washington,DC,113,Washington,DC
-20812,9001,Washington,DC,113,Washington,DC
-20813,9001,Washington,DC,113,Washington,DC
-20814,21003,Bethesda,MD,113,Washington,DC
-20815,9001,Washington,DC,113,Washington,DC
-20816,9001,Washington,DC,113,Washington,DC
-20817,21003,Bethesda,MD,113,Washington,DC
-20818,9001,Washington,DC,113,Washington,DC
-20824,9001,Washington,DC,113,Washington,DC
-20825,9001,Washington,DC,113,Washington,DC
-20827,21003,Bethesda,MD,113,Washington,DC
-20830,21024,Olney,MD,226,Takoma Park,MD
-20832,21024,Olney,MD,226,Takoma Park,MD
-20833,21024,Olney,MD,226,Takoma Park,MD
-20837,21028,Rockville,MD,113,Washington,DC
-20838,21028,Rockville,MD,113,Washington,DC
-20839,21014,Frederick,MD,113,Washington,DC
-20841,21028,Rockville,MD,113,Washington,DC
-20842,21014,Frederick,MD,113,Washington,DC
-20847,21003,Bethesda,MD,113,Washington,DC
-20848,21028,Rockville,MD,113,Washington,DC
-20849,21028,Rockville,MD,113,Washington,DC
-20850,21028,Rockville,MD,113,Washington,DC
-20851,21028,Rockville,MD,113,Washington,DC
-20852,21003,Bethesda,MD,113,Washington,DC
-20853,21024,Olney,MD,226,Takoma Park,MD
-20854,21003,Bethesda,MD,113,Washington,DC
-20855,21028,Rockville,MD,113,Washington,DC
-20857,21003,Bethesda,MD,113,Washington,DC
-20859,21003,Bethesda,MD,113,Washington,DC
-20860,21024,Olney,MD,226,Takoma Park,MD
-20861,21024,Olney,MD,226,Takoma Park,MD
-20862,21024,Olney,MD,226,Takoma Park,MD
-20866,21021,Laurel,MD,226,Takoma Park,MD
-20868,21024,Olney,MD,226,Takoma Park,MD
-20871,21028,Rockville,MD,113,Washington,DC
-20872,21024,Olney,MD,226,Takoma Park,MD
-20874,21028,Rockville,MD,113,Washington,DC
-20875,21028,Rockville,MD,113,Washington,DC
-20876,21028,Rockville,MD,113,Washington,DC
-20877,21028,Rockville,MD,113,Washington,DC
-20878,21028,Rockville,MD,113,Washington,DC
-20879,21028,Rockville,MD,113,Washington,DC
-20880,21028,Rockville,MD,113,Washington,DC
-20882,21024,Olney,MD,226,Takoma Park,MD
-20883,21028,Rockville,MD,113,Washington,DC
-20884,21028,Rockville,MD,113,Washington,DC
-20885,21028,Rockville,MD,113,Washington,DC
-20886,21028,Rockville,MD,113,Washington,DC
-20889,21003,Bethesda,MD,113,Washington,DC
-20891,21003,Bethesda,MD,113,Washington,DC
-20892,21003,Bethesda,MD,113,Washington,DC
-20894,21003,Bethesda,MD,113,Washington,DC
-20895,21003,Bethesda,MD,113,Washington,DC
-20896,21003,Bethesda,MD,113,Washington,DC
-20897,21028,Rockville,MD,113,Washington,DC
-20898,21028,Rockville,MD,113,Washington,DC
-20899,21028,Rockville,MD,113,Washington,DC
-20901,21030,Silver Spring,MD,226,Takoma Park,MD
-20902,21030,Silver Spring,MD,226,Takoma Park,MD
-20903,21031,Takoma Park,MD,226,Takoma Park,MD
-20904,21030,Silver Spring,MD,226,Takoma Park,MD
-20905,21024,Olney,MD,226,Takoma Park,MD
-20906,21024,Olney,MD,226,Takoma Park,MD
-20907,21030,Silver Spring,MD,226,Takoma Park,MD
-20908,21024,Olney,MD,226,Takoma Park,MD
-20910,21030,Silver Spring,MD,226,Takoma Park,MD
-20911,21030,Silver Spring,MD,226,Takoma Park,MD
-20912,21031,Takoma Park,MD,226,Takoma Park,MD
-20913,21031,Takoma Park,MD,226,Takoma Park,MD
-20914,21030,Silver Spring,MD,226,Takoma Park,MD
-20915,21030,Silver Spring,MD,226,Takoma Park,MD
-20916,21024,Olney,MD,226,Takoma Park,MD
-20918,21030,Silver Spring,MD,226,Takoma Park,MD
-20993,21030,Silver Spring,MD,226,Takoma Park,MD
-20997,21030,Silver Spring,MD,226,Takoma Park,MD
-21001,21018,Havre De Grace,MD,223,Baltimore,MD
-21005,21018,Havre De Grace,MD,223,Baltimore,MD
-21009,21013,Fallston,MD,223,Baltimore,MD
-21010,21002,Baltimore,MD,223,Baltimore,MD
-21012,21001,Annapolis,MD,113,Washington,DC
-21013,21002,Baltimore,MD,223,Baltimore,MD
-21014,21013,Fallston,MD,223,Baltimore,MD
-21015,21013,Fallston,MD,223,Baltimore,MD
-21017,21018,Havre De Grace,MD,223,Baltimore,MD
-21018,21013,Fallston,MD,223,Baltimore,MD
-21020,21002,Baltimore,MD,223,Baltimore,MD
-21022,21002,Baltimore,MD,223,Baltimore,MD
-21023,21002,Baltimore,MD,223,Baltimore,MD
-21027,21002,Baltimore,MD,223,Baltimore,MD
-21028,21018,Havre De Grace,MD,223,Baltimore,MD
-21029,21008,Columbia,MD,223,Baltimore,MD
-21030,21002,Baltimore,MD,223,Baltimore,MD
-21031,21002,Baltimore,MD,223,Baltimore,MD
-21032,21016,Glen Burnie,MD,223,Baltimore,MD
-21034,21018,Havre De Grace,MD,223,Baltimore,MD
-21035,21001,Annapolis,MD,113,Washington,DC
-21036,21024,Olney,MD,226,Takoma Park,MD
-21037,21001,Annapolis,MD,113,Washington,DC
-21040,21013,Fallston,MD,223,Baltimore,MD
-21041,21008,Columbia,MD,223,Baltimore,MD
-21042,21008,Columbia,MD,223,Baltimore,MD
-21043,21008,Columbia,MD,223,Baltimore,MD
-21044,21008,Columbia,MD,223,Baltimore,MD
-21045,21008,Columbia,MD,223,Baltimore,MD
-21046,21008,Columbia,MD,223,Baltimore,MD
-21047,21013,Fallston,MD,223,Baltimore,MD
-21048,21033,Westminster,MD,223,Baltimore,MD
-21050,21013,Fallston,MD,223,Baltimore,MD
-21051,21002,Baltimore,MD,223,Baltimore,MD
-21052,21002,Baltimore,MD,223,Baltimore,MD
-21053,21002,Baltimore,MD,223,Baltimore,MD
-21054,21001,Annapolis,MD,113,Washington,DC
-21056,21016,Glen Burnie,MD,223,Baltimore,MD
-21057,21002,Baltimore,MD,223,Baltimore,MD
-21060,21016,Glen Burnie,MD,223,Baltimore,MD
-21061,21016,Glen Burnie,MD,223,Baltimore,MD
-21062,21016,Glen Burnie,MD,223,Baltimore,MD
-21065,21002,Baltimore,MD,223,Baltimore,MD
-21071,21002,Baltimore,MD,223,Baltimore,MD
-21074,21033,Westminster,MD,223,Baltimore,MD
-21075,21002,Baltimore,MD,223,Baltimore,MD
-21076,21016,Glen Burnie,MD,223,Baltimore,MD
-21077,21016,Glen Burnie,MD,223,Baltimore,MD
-21078,21018,Havre De Grace,MD,223,Baltimore,MD
-21082,21002,Baltimore,MD,223,Baltimore,MD
-21084,21013,Fallston,MD,223,Baltimore,MD
-21085,21002,Baltimore,MD,223,Baltimore,MD
-21087,21002,Baltimore,MD,223,Baltimore,MD
-21088,21033,Westminster,MD,223,Baltimore,MD
-21090,21002,Baltimore,MD,223,Baltimore,MD
-21092,21002,Baltimore,MD,223,Baltimore,MD
-21093,21002,Baltimore,MD,223,Baltimore,MD
-21094,21002,Baltimore,MD,223,Baltimore,MD
-21102,21002,Baltimore,MD,223,Baltimore,MD
-21104,21026,Randallstown,MD,223,Baltimore,MD
-21105,21002,Baltimore,MD,223,Baltimore,MD
-21106,21001,Annapolis,MD,113,Washington,DC
-21108,21016,Glen Burnie,MD,223,Baltimore,MD
-21111,21002,Baltimore,MD,223,Baltimore,MD
-21113,21016,Glen Burnie,MD,223,Baltimore,MD
-21114,21001,Annapolis,MD,113,Washington,DC
-21117,21026,Randallstown,MD,223,Baltimore,MD
-21120,21002,Baltimore,MD,223,Baltimore,MD
-21122,21016,Glen Burnie,MD,223,Baltimore,MD
-21123,21016,Glen Burnie,MD,223,Baltimore,MD
-21128,21002,Baltimore,MD,223,Baltimore,MD
-21130,21018,Havre De Grace,MD,223,Baltimore,MD
-21131,21002,Baltimore,MD,223,Baltimore,MD
-21132,21013,Fallston,MD,223,Baltimore,MD
-21133,21026,Randallstown,MD,223,Baltimore,MD
-21136,21026,Randallstown,MD,223,Baltimore,MD
-21139,21002,Baltimore,MD,223,Baltimore,MD
-21140,21001,Annapolis,MD,113,Washington,DC
-21144,21016,Glen Burnie,MD,223,Baltimore,MD
-21146,21016,Glen Burnie,MD,223,Baltimore,MD
-21150,21008,Columbia,MD,223,Baltimore,MD
-21152,21002,Baltimore,MD,223,Baltimore,MD
-21153,21002,Baltimore,MD,223,Baltimore,MD
-21154,21013,Fallston,MD,223,Baltimore,MD
-21155,21002,Baltimore,MD,223,Baltimore,MD
-21156,21002,Baltimore,MD,223,Baltimore,MD
-21157,21033,Westminster,MD,223,Baltimore,MD
-21158,21033,Westminster,MD,223,Baltimore,MD
-21160,21013,Fallston,MD,223,Baltimore,MD
-21161,21002,Baltimore,MD,223,Baltimore,MD
-21162,21002,Baltimore,MD,223,Baltimore,MD
-21163,21026,Randallstown,MD,223,Baltimore,MD
-21201,21002,Baltimore,MD,223,Baltimore,MD
-21202,21002,Baltimore,MD,223,Baltimore,MD
-21203,21002,Baltimore,MD,223,Baltimore,MD
-21204,21002,Baltimore,MD,223,Baltimore,MD
-21205,21002,Baltimore,MD,223,Baltimore,MD
-21206,21002,Baltimore,MD,223,Baltimore,MD
-21207,21002,Baltimore,MD,223,Baltimore,MD
-21208,21002,Baltimore,MD,223,Baltimore,MD
-21209,21002,Baltimore,MD,223,Baltimore,MD
-21210,21002,Baltimore,MD,223,Baltimore,MD
-21211,21002,Baltimore,MD,223,Baltimore,MD
-21212,21002,Baltimore,MD,223,Baltimore,MD
-21213,21002,Baltimore,MD,223,Baltimore,MD
-21214,21002,Baltimore,MD,223,Baltimore,MD
-21215,21002,Baltimore,MD,223,Baltimore,MD
-21216,21002,Baltimore,MD,223,Baltimore,MD
-21217,21002,Baltimore,MD,223,Baltimore,MD
-21218,21002,Baltimore,MD,223,Baltimore,MD
-21219,21002,Baltimore,MD,223,Baltimore,MD
-21220,21002,Baltimore,MD,223,Baltimore,MD
-21221,21002,Baltimore,MD,223,Baltimore,MD
-21222,21002,Baltimore,MD,223,Baltimore,MD
-21223,21002,Baltimore,MD,223,Baltimore,MD
-21224,21002,Baltimore,MD,223,Baltimore,MD
-21225,21002,Baltimore,MD,223,Baltimore,MD
-21226,21002,Baltimore,MD,223,Baltimore,MD
-21227,21002,Baltimore,MD,223,Baltimore,MD
-21228,21002,Baltimore,MD,223,Baltimore,MD
-21229,21002,Baltimore,MD,223,Baltimore,MD
-21230,21002,Baltimore,MD,223,Baltimore,MD
-21231,21002,Baltimore,MD,223,Baltimore,MD
-21233,21002,Baltimore,MD,223,Baltimore,MD
-21234,21002,Baltimore,MD,223,Baltimore,MD
-21235,21002,Baltimore,MD,223,Baltimore,MD
-21236,21002,Baltimore,MD,223,Baltimore,MD
-21237,21002,Baltimore,MD,223,Baltimore,MD
-21239,21002,Baltimore,MD,223,Baltimore,MD
-21240,21016,Glen Burnie,MD,223,Baltimore,MD
-21241,21002,Baltimore,MD,223,Baltimore,MD
-21244,21026,Randallstown,MD,223,Baltimore,MD
-21250,21002,Baltimore,MD,223,Baltimore,MD
-21251,21002,Baltimore,MD,223,Baltimore,MD
-21252,21002,Baltimore,MD,223,Baltimore,MD
-21263,21002,Baltimore,MD,223,Baltimore,MD
-21264,21002,Baltimore,MD,223,Baltimore,MD
-21270,21002,Baltimore,MD,223,Baltimore,MD
-21273,21002,Baltimore,MD,223,Baltimore,MD
-21275,21002,Baltimore,MD,223,Baltimore,MD
-21278,21002,Baltimore,MD,223,Baltimore,MD
-21279,21002,Baltimore,MD,223,Baltimore,MD
-21281,21002,Baltimore,MD,223,Baltimore,MD
-21282,21002,Baltimore,MD,223,Baltimore,MD
-21284,21002,Baltimore,MD,223,Baltimore,MD
-21285,21002,Baltimore,MD,223,Baltimore,MD
-21286,21002,Baltimore,MD,223,Baltimore,MD
-21287,21002,Baltimore,MD,223,Baltimore,MD
-21289,21002,Baltimore,MD,223,Baltimore,MD
-21290,21002,Baltimore,MD,223,Baltimore,MD
-21297,21002,Baltimore,MD,223,Baltimore,MD
-21298,21002,Baltimore,MD,223,Baltimore,MD
-21401,21001,Annapolis,MD,113,Washington,DC
-21402,21001,Annapolis,MD,113,Washington,DC
-21403,21001,Annapolis,MD,113,Washington,DC
-21404,21001,Annapolis,MD,113,Washington,DC
-21405,21001,Annapolis,MD,113,Washington,DC
-21409,21001,Annapolis,MD,113,Washington,DC
-21411,21001,Annapolis,MD,113,Washington,DC
-21412,21001,Annapolis,MD,113,Washington,DC
-21501,21010,Cumberland,MD,113,Washington,DC
-21502,21010,Cumberland,MD,113,Washington,DC
-21503,21010,Cumberland,MD,113,Washington,DC
-21504,21010,Cumberland,MD,113,Washington,DC
-21505,21010,Cumberland,MD,113,Washington,DC
-21520,21023,Oakland,MD,445,Morgantown,WV
-21521,21010,Cumberland,MD,113,Washington,DC
-21522,21023,Oakland,MD,445,Morgantown,WV
-21523,21010,Cumberland,MD,113,Washington,DC
-21524,21010,Cumberland,MD,113,Washington,DC
-21528,21010,Cumberland,MD,113,Washington,DC
-21529,21010,Cumberland,MD,113,Washington,DC
-21530,21010,Cumberland,MD,113,Washington,DC
-21531,21023,Oakland,MD,445,Morgantown,WV
-21532,21010,Cumberland,MD,113,Washington,DC
-21536,21010,Cumberland,MD,113,Washington,DC
-21538,21023,Oakland,MD,445,Morgantown,WV
-21539,21010,Cumberland,MD,113,Washington,DC
-21540,21010,Cumberland,MD,113,Washington,DC
-21541,21023,Oakland,MD,445,Morgantown,WV
-21542,21010,Cumberland,MD,113,Washington,DC
-21543,21010,Cumberland,MD,113,Washington,DC
-21545,21010,Cumberland,MD,113,Washington,DC
-21550,21023,Oakland,MD,445,Morgantown,WV
-21555,21010,Cumberland,MD,113,Washington,DC
-21556,21010,Cumberland,MD,113,Washington,DC
-21557,21010,Cumberland,MD,113,Washington,DC
-21560,21010,Cumberland,MD,113,Washington,DC
-21561,21023,Oakland,MD,445,Morgantown,WV
-21562,21010,Cumberland,MD,113,Washington,DC
-21601,21011,Easton,MD,223,Baltimore,MD
-21607,21005,Chestertown,MD,223,Baltimore,MD
-21609,21011,Easton,MD,223,Baltimore,MD
-21610,21005,Chestertown,MD,223,Baltimore,MD
-21612,21011,Easton,MD,223,Baltimore,MD
-21613,21004,Cambridge,MD,225,Salisbury,MD
-21617,21011,Easton,MD,223,Baltimore,MD
-21619,21011,Easton,MD,223,Baltimore,MD
-21620,21005,Chestertown,MD,223,Baltimore,MD
-21622,21004,Cambridge,MD,225,Salisbury,MD
-21623,21005,Chestertown,MD,223,Baltimore,MD
-21624,21011,Easton,MD,223,Baltimore,MD
-21625,21011,Easton,MD,223,Baltimore,MD
-21626,21004,Cambridge,MD,225,Salisbury,MD
-21627,21004,Cambridge,MD,225,Salisbury,MD
-21628,21005,Chestertown,MD,223,Baltimore,MD
-21629,21011,Easton,MD,223,Baltimore,MD
-21631,21004,Cambridge,MD,225,Salisbury,MD
-21632,21011,Easton,MD,223,Baltimore,MD
-21634,21004,Cambridge,MD,225,Salisbury,MD
-21635,21005,Chestertown,MD,223,Baltimore,MD
-21636,21011,Easton,MD,223,Baltimore,MD
-21638,21011,Easton,MD,223,Baltimore,MD
-21639,21011,Easton,MD,223,Baltimore,MD
-21640,21011,Easton,MD,223,Baltimore,MD
-21641,21011,Easton,MD,223,Baltimore,MD
-21643,21004,Cambridge,MD,225,Salisbury,MD
-21644,21005,Chestertown,MD,223,Baltimore,MD
-21645,21005,Chestertown,MD,223,Baltimore,MD
-21647,21011,Easton,MD,223,Baltimore,MD
-21648,21004,Cambridge,MD,225,Salisbury,MD
-21649,21005,Chestertown,MD,223,Baltimore,MD
-21650,21005,Chestertown,MD,223,Baltimore,MD
-21651,21005,Chestertown,MD,223,Baltimore,MD
-21652,21011,Easton,MD,223,Baltimore,MD
-21653,21011,Easton,MD,223,Baltimore,MD
-21654,21011,Easton,MD,223,Baltimore,MD
-21655,21011,Easton,MD,223,Baltimore,MD
-21656,21011,Easton,MD,223,Baltimore,MD
-21657,21011,Easton,MD,223,Baltimore,MD
-21658,21011,Easton,MD,223,Baltimore,MD
-21659,21004,Cambridge,MD,225,Salisbury,MD
-21660,21011,Easton,MD,223,Baltimore,MD
-21661,21005,Chestertown,MD,223,Baltimore,MD
-21662,21011,Easton,MD,223,Baltimore,MD
-21663,21011,Easton,MD,223,Baltimore,MD
-21664,21004,Cambridge,MD,225,Salisbury,MD
-21665,21011,Easton,MD,223,Baltimore,MD
-21666,21001,Annapolis,MD,113,Washington,DC
-21667,21005,Chestertown,MD,223,Baltimore,MD
-21668,21005,Chestertown,MD,223,Baltimore,MD
-21669,21004,Cambridge,MD,225,Salisbury,MD
-21670,8001,Dover,DE,112,Wilmington,DE
-21671,21011,Easton,MD,223,Baltimore,MD
-21672,21004,Cambridge,MD,225,Salisbury,MD
-21673,21011,Easton,MD,223,Baltimore,MD
-21675,21004,Cambridge,MD,225,Salisbury,MD
-21676,21011,Easton,MD,223,Baltimore,MD
-21677,21004,Cambridge,MD,225,Salisbury,MD
-21678,21005,Chestertown,MD,223,Baltimore,MD
-21679,21011,Easton,MD,223,Baltimore,MD
-21690,21005,Chestertown,MD,223,Baltimore,MD
-21701,21014,Frederick,MD,113,Washington,DC
-21702,21014,Frederick,MD,113,Washington,DC
-21703,21014,Frederick,MD,113,Washington,DC
-21704,21014,Frederick,MD,113,Washington,DC
-21705,21014,Frederick,MD,113,Washington,DC
-21709,21014,Frederick,MD,113,Washington,DC
-21710,21014,Frederick,MD,113,Washington,DC
-21711,21017,Hagerstown,MD,113,Washington,DC
-21713,21017,Hagerstown,MD,113,Washington,DC
-21714,21014,Frederick,MD,113,Washington,DC
-21715,21014,Frederick,MD,113,Washington,DC
-21716,21014,Frederick,MD,113,Washington,DC
-21717,21014,Frederick,MD,113,Washington,DC
-21718,21014,Frederick,MD,113,Washington,DC
-21719,39132,Waynesboro,PA,352,Harrisburg,PA
-21720,21017,Hagerstown,MD,113,Washington,DC
-21721,21017,Hagerstown,MD,113,Washington,DC
-21722,21017,Hagerstown,MD,113,Washington,DC
-21723,21024,Olney,MD,226,Takoma Park,MD
-21727,39045,Gettysburg,PA,352,Harrisburg,PA
-21733,21017,Hagerstown,MD,113,Washington,DC
-21734,21017,Hagerstown,MD,113,Washington,DC
-21737,21024,Olney,MD,226,Takoma Park,MD
-21738,21024,Olney,MD,226,Takoma Park,MD
-21740,21017,Hagerstown,MD,113,Washington,DC
-21741,21017,Hagerstown,MD,113,Washington,DC
-21742,21017,Hagerstown,MD,113,Washington,DC
-21746,21017,Hagerstown,MD,113,Washington,DC
-21747,21017,Hagerstown,MD,113,Washington,DC
-21749,21017,Hagerstown,MD,113,Washington,DC
-21750,21017,Hagerstown,MD,113,Washington,DC
-21754,21014,Frederick,MD,113,Washington,DC
-21755,21014,Frederick,MD,113,Washington,DC
-21756,21017,Hagerstown,MD,113,Washington,DC
-21757,21014,Frederick,MD,113,Washington,DC
-21758,21014,Frederick,MD,113,Washington,DC
-21759,21014,Frederick,MD,113,Washington,DC
-21762,21014,Frederick,MD,113,Washington,DC
-21765,21033,Westminster,MD,223,Baltimore,MD
-21766,21010,Cumberland,MD,113,Washington,DC
-21767,21017,Hagerstown,MD,113,Washington,DC
-21769,21014,Frederick,MD,113,Washington,DC
-21770,21014,Frederick,MD,113,Washington,DC
-21771,21014,Frederick,MD,113,Washington,DC
-21773,21014,Frederick,MD,113,Washington,DC
-21774,21014,Frederick,MD,113,Washington,DC
-21775,21014,Frederick,MD,113,Washington,DC
-21776,21033,Westminster,MD,223,Baltimore,MD
-21777,21014,Frederick,MD,113,Washington,DC
-21778,21014,Frederick,MD,113,Washington,DC
-21779,21017,Hagerstown,MD,113,Washington,DC
-21780,21017,Hagerstown,MD,113,Washington,DC
-21781,21017,Hagerstown,MD,113,Washington,DC
-21782,21017,Hagerstown,MD,113,Washington,DC
-21783,21017,Hagerstown,MD,113,Washington,DC
-21784,21026,Randallstown,MD,223,Baltimore,MD
-21787,21033,Westminster,MD,223,Baltimore,MD
-21788,21014,Frederick,MD,113,Washington,DC
-21790,21014,Frederick,MD,113,Washington,DC
-21791,21014,Frederick,MD,113,Washington,DC
-21792,21029,Salisbury,MD,225,Salisbury,MD
-21793,21014,Frederick,MD,113,Washington,DC
-21794,21008,Columbia,MD,223,Baltimore,MD
-21795,21017,Hagerstown,MD,113,Washington,DC
-21797,21033,Westminster,MD,223,Baltimore,MD
-21798,21014,Frederick,MD,113,Washington,DC
-21801,21029,Salisbury,MD,225,Salisbury,MD
-21802,21029,Salisbury,MD,225,Salisbury,MD
-21803,21029,Salisbury,MD,225,Salisbury,MD
-21804,21029,Salisbury,MD,225,Salisbury,MD
-21810,21029,Salisbury,MD,225,Salisbury,MD
-21811,21029,Salisbury,MD,225,Salisbury,MD
-21813,21029,Salisbury,MD,225,Salisbury,MD
-21814,21029,Salisbury,MD,225,Salisbury,MD
-21817,21009,Crisfield,MD,225,Salisbury,MD
-21821,21029,Salisbury,MD,225,Salisbury,MD
-21822,21029,Salisbury,MD,225,Salisbury,MD
-21824,21029,Salisbury,MD,225,Salisbury,MD
-21826,21029,Salisbury,MD,225,Salisbury,MD
-21829,21029,Salisbury,MD,225,Salisbury,MD
-21830,21029,Salisbury,MD,225,Salisbury,MD
-21835,21004,Cambridge,MD,225,Salisbury,MD
-21836,21029,Salisbury,MD,225,Salisbury,MD
-21837,21029,Salisbury,MD,225,Salisbury,MD
-21838,21029,Salisbury,MD,225,Salisbury,MD
-21840,21029,Salisbury,MD,225,Salisbury,MD
-21841,21029,Salisbury,MD,225,Salisbury,MD
-21842,21029,Salisbury,MD,225,Salisbury,MD
-21843,21029,Salisbury,MD,225,Salisbury,MD
-21849,21029,Salisbury,MD,225,Salisbury,MD
-21850,21029,Salisbury,MD,225,Salisbury,MD
-21851,21029,Salisbury,MD,225,Salisbury,MD
-21852,21029,Salisbury,MD,225,Salisbury,MD
-21853,21029,Salisbury,MD,225,Salisbury,MD
-21856,21029,Salisbury,MD,225,Salisbury,MD
-21857,21029,Salisbury,MD,225,Salisbury,MD
-21861,21029,Salisbury,MD,225,Salisbury,MD
-21862,21029,Salisbury,MD,225,Salisbury,MD
-21863,21029,Salisbury,MD,225,Salisbury,MD
-21864,21029,Salisbury,MD,225,Salisbury,MD
-21865,21029,Salisbury,MD,225,Salisbury,MD
-21866,21029,Salisbury,MD,225,Salisbury,MD
-21867,21029,Salisbury,MD,225,Salisbury,MD
-21869,21004,Cambridge,MD,225,Salisbury,MD
-21871,21029,Salisbury,MD,225,Salisbury,MD
-21872,21029,Salisbury,MD,225,Salisbury,MD
-21874,21029,Salisbury,MD,225,Salisbury,MD
-21875,21029,Salisbury,MD,225,Salisbury,MD
-21890,21029,Salisbury,MD,225,Salisbury,MD
-21901,21012,Elkton,MD,112,Wilmington,DE
-21902,21018,Havre De Grace,MD,223,Baltimore,MD
-21903,21018,Havre De Grace,MD,223,Baltimore,MD
-21904,21018,Havre De Grace,MD,223,Baltimore,MD
-21911,21018,Havre De Grace,MD,223,Baltimore,MD
-21912,21012,Elkton,MD,112,Wilmington,DE
-21913,21012,Elkton,MD,112,Wilmington,DE
-21914,21012,Elkton,MD,112,Wilmington,DE
-21915,21012,Elkton,MD,112,Wilmington,DE
-21916,21012,Elkton,MD,112,Wilmington,DE
-21917,21018,Havre De Grace,MD,223,Baltimore,MD
-21918,21018,Havre De Grace,MD,223,Baltimore,MD
-21919,21012,Elkton,MD,112,Wilmington,DE
-21920,21012,Elkton,MD,112,Wilmington,DE
-21921,21012,Elkton,MD,112,Wilmington,DE
-21922,21012,Elkton,MD,112,Wilmington,DE
-21930,21012,Elkton,MD,112,Wilmington,DE
-22003,49014,Falls Church,VA,426,Arlington,VA
-22009,49014,Falls Church,VA,426,Arlington,VA
-22015,49014,Falls Church,VA,426,Arlington,VA
-22025,49065,Woodbridge,VA,426,Arlington,VA
-22026,49065,Woodbridge,VA,426,Arlington,VA
-22027,49014,Falls Church,VA,426,Arlington,VA
-22030,49014,Falls Church,VA,426,Arlington,VA
-22031,49014,Falls Church,VA,426,Arlington,VA
-22032,49014,Falls Church,VA,426,Arlington,VA
-22033,49013,Fairfax,VA,426,Arlington,VA
-22034,49014,Falls Church,VA,426,Arlington,VA
-22035,49014,Falls Church,VA,426,Arlington,VA
-22036,49014,Falls Church,VA,426,Arlington,VA
-22037,49014,Falls Church,VA,426,Arlington,VA
-22038,49014,Falls Church,VA,426,Arlington,VA
-22039,49014,Falls Church,VA,426,Arlington,VA
-22040,49014,Falls Church,VA,426,Arlington,VA
-22041,49003,Arlington,VA,426,Arlington,VA
-22042,49014,Falls Church,VA,426,Arlington,VA
-22043,49014,Falls Church,VA,426,Arlington,VA
-22044,49003,Arlington,VA,426,Arlington,VA
-22046,49014,Falls Church,VA,426,Arlington,VA
-22060,49002,Alexandria,VA,426,Arlington,VA
-22066,49046,Reston,VA,426,Arlington,VA
-22067,49014,Falls Church,VA,426,Arlington,VA
-22079,49002,Alexandria,VA,426,Arlington,VA
-22081,49014,Falls Church,VA,426,Arlington,VA
-22082,49014,Falls Church,VA,426,Arlington,VA
-22095,49046,Reston,VA,426,Arlington,VA
-22096,49046,Reston,VA,426,Arlington,VA
-22101,49014,Falls Church,VA,426,Arlington,VA
-22102,49014,Falls Church,VA,426,Arlington,VA
-22103,49014,Falls Church,VA,426,Arlington,VA
-22106,49014,Falls Church,VA,426,Arlington,VA
-22107,49014,Falls Church,VA,426,Arlington,VA
-22108,49014,Falls Church,VA,426,Arlington,VA
-22109,49014,Falls Church,VA,426,Arlington,VA
-22116,49014,Falls Church,VA,426,Arlington,VA
-22118,49014,Falls Church,VA,426,Arlington,VA
-22119,49014,Falls Church,VA,426,Arlington,VA
-22121,49002,Alexandria,VA,426,Arlington,VA
-22122,49002,Alexandria,VA,426,Arlington,VA
-22124,49014,Falls Church,VA,426,Arlington,VA
-22125,49065,Woodbridge,VA,426,Arlington,VA
-22134,49065,Woodbridge,VA,426,Arlington,VA
-22135,49017,Fredericksburg,VA,431,Richmond,VA
-22150,49014,Falls Church,VA,426,Arlington,VA
-22151,49014,Falls Church,VA,426,Arlington,VA
-22152,49014,Falls Church,VA,426,Arlington,VA
-22153,49014,Falls Church,VA,426,Arlington,VA
-22156,49014,Falls Church,VA,426,Arlington,VA
-22158,49014,Falls Church,VA,426,Arlington,VA
-22159,49014,Falls Church,VA,426,Arlington,VA
-22160,49014,Falls Church,VA,426,Arlington,VA
-22161,49014,Falls Church,VA,426,Arlington,VA
-22172,49065,Woodbridge,VA,426,Arlington,VA
-22180,49014,Falls Church,VA,426,Arlington,VA
-22181,49014,Falls Church,VA,426,Arlington,VA
-22182,49014,Falls Church,VA,426,Arlington,VA
-22183,49014,Falls Church,VA,426,Arlington,VA
-22185,49014,Falls Church,VA,426,Arlington,VA
-22191,49065,Woodbridge,VA,426,Arlington,VA
-22192,49065,Woodbridge,VA,426,Arlington,VA
-22193,49065,Woodbridge,VA,426,Arlington,VA
-22194,49065,Woodbridge,VA,426,Arlington,VA
-22195,49065,Woodbridge,VA,426,Arlington,VA
-22199,49002,Alexandria,VA,426,Arlington,VA
-22201,49003,Arlington,VA,426,Arlington,VA
-22202,49003,Arlington,VA,426,Arlington,VA
-22203,49003,Arlington,VA,426,Arlington,VA
-22204,49003,Arlington,VA,426,Arlington,VA
-22205,49003,Arlington,VA,426,Arlington,VA
-22206,49003,Arlington,VA,426,Arlington,VA
-22207,49003,Arlington,VA,426,Arlington,VA
-22209,49003,Arlington,VA,426,Arlington,VA
-22210,49003,Arlington,VA,426,Arlington,VA
-22211,49003,Arlington,VA,426,Arlington,VA
-22212,49003,Arlington,VA,426,Arlington,VA
-22213,49003,Arlington,VA,426,Arlington,VA
-22214,49003,Arlington,VA,426,Arlington,VA
-22215,49003,Arlington,VA,426,Arlington,VA
-22216,49003,Arlington,VA,426,Arlington,VA
-22217,49003,Arlington,VA,426,Arlington,VA
-22219,49003,Arlington,VA,426,Arlington,VA
-22225,49003,Arlington,VA,426,Arlington,VA
-22226,49003,Arlington,VA,426,Arlington,VA
-22227,49003,Arlington,VA,426,Arlington,VA
-22230,49003,Arlington,VA,426,Arlington,VA
-22240,49003,Arlington,VA,426,Arlington,VA
-22241,49003,Arlington,VA,426,Arlington,VA
-22242,49003,Arlington,VA,426,Arlington,VA
-22243,49003,Arlington,VA,426,Arlington,VA
-22244,49003,Arlington,VA,426,Arlington,VA
-22245,49003,Arlington,VA,426,Arlington,VA
-22246,49003,Arlington,VA,426,Arlington,VA
-22301,49002,Alexandria,VA,426,Arlington,VA
-22302,49002,Alexandria,VA,426,Arlington,VA
-22303,49002,Alexandria,VA,426,Arlington,VA
-22304,49002,Alexandria,VA,426,Arlington,VA
-22305,49002,Alexandria,VA,426,Arlington,VA
-22306,49002,Alexandria,VA,426,Arlington,VA
-22307,49002,Alexandria,VA,426,Arlington,VA
-22308,49002,Alexandria,VA,426,Arlington,VA
-22309,49002,Alexandria,VA,426,Arlington,VA
-22310,49002,Alexandria,VA,426,Arlington,VA
-22311,49002,Alexandria,VA,426,Arlington,VA
-22312,49014,Falls Church,VA,426,Arlington,VA
-22313,49002,Alexandria,VA,426,Arlington,VA
-22314,49002,Alexandria,VA,426,Arlington,VA
-22315,49002,Alexandria,VA,426,Arlington,VA
-22320,49002,Alexandria,VA,426,Arlington,VA
-22331,49002,Alexandria,VA,426,Arlington,VA
-22332,49002,Alexandria,VA,426,Arlington,VA
-22333,49002,Alexandria,VA,426,Arlington,VA
-22334,49002,Alexandria,VA,426,Arlington,VA
-22350,49002,Alexandria,VA,426,Arlington,VA
-22401,49017,Fredericksburg,VA,431,Richmond,VA
-22402,49017,Fredericksburg,VA,431,Richmond,VA
-22403,49017,Fredericksburg,VA,431,Richmond,VA
-22404,49017,Fredericksburg,VA,431,Richmond,VA
-22405,49017,Fredericksburg,VA,431,Richmond,VA
-22406,49017,Fredericksburg,VA,431,Richmond,VA
-22407,49017,Fredericksburg,VA,431,Richmond,VA
-22408,49017,Fredericksburg,VA,431,Richmond,VA
-22412,49017,Fredericksburg,VA,431,Richmond,VA
-22427,49048,Richmond,VA,431,Richmond,VA
-22428,49048,Richmond,VA,431,Richmond,VA
-22430,49017,Fredericksburg,VA,431,Richmond,VA
-22432,49026,Kilmarnock,VA,431,Richmond,VA
-22433,49010,Culpeper,VA,427,Charlottesville,VA
-22435,49057,Tappahannock,VA,431,Richmond,VA
-22436,49017,Fredericksburg,VA,431,Richmond,VA
-22437,49048,Richmond,VA,431,Richmond,VA
-22438,49048,Richmond,VA,431,Richmond,VA
-22442,49057,Tappahannock,VA,431,Richmond,VA
-22443,49017,Fredericksburg,VA,431,Richmond,VA
-22446,49017,Fredericksburg,VA,431,Richmond,VA
-22448,49017,Fredericksburg,VA,431,Richmond,VA
-22451,49017,Fredericksburg,VA,431,Richmond,VA
-22454,49057,Tappahannock,VA,431,Richmond,VA
-22456,49026,Kilmarnock,VA,431,Richmond,VA
-22460,49026,Kilmarnock,VA,431,Richmond,VA
-22463,49017,Fredericksburg,VA,431,Richmond,VA
-22469,49057,Tappahannock,VA,431,Richmond,VA
-22471,49017,Fredericksburg,VA,431,Richmond,VA
-22472,49057,Tappahannock,VA,431,Richmond,VA
-22473,49026,Kilmarnock,VA,431,Richmond,VA
-22476,49048,Richmond,VA,431,Richmond,VA
-22480,49026,Kilmarnock,VA,431,Richmond,VA
-22481,49017,Fredericksburg,VA,431,Richmond,VA
-22482,49026,Kilmarnock,VA,431,Richmond,VA
-22485,49017,Fredericksburg,VA,431,Richmond,VA
-22488,49057,Tappahannock,VA,431,Richmond,VA
-22501,49048,Richmond,VA,431,Richmond,VA
-22503,49026,Kilmarnock,VA,431,Richmond,VA
-22504,49048,Richmond,VA,431,Richmond,VA
-22507,49026,Kilmarnock,VA,431,Richmond,VA
-22508,49017,Fredericksburg,VA,431,Richmond,VA
-22509,49017,Fredericksburg,VA,431,Richmond,VA
-22511,49026,Kilmarnock,VA,431,Richmond,VA
-22513,49026,Kilmarnock,VA,431,Richmond,VA
-22514,49048,Richmond,VA,431,Richmond,VA
-22517,49026,Kilmarnock,VA,431,Richmond,VA
-22520,49057,Tappahannock,VA,431,Richmond,VA
-22523,49026,Kilmarnock,VA,431,Richmond,VA
-22524,49057,Tappahannock,VA,431,Richmond,VA
-22526,49017,Fredericksburg,VA,431,Richmond,VA
-22528,49026,Kilmarnock,VA,431,Richmond,VA
-22529,49057,Tappahannock,VA,431,Richmond,VA
-22530,49026,Kilmarnock,VA,431,Richmond,VA
-22534,49017,Fredericksburg,VA,431,Richmond,VA
-22535,49017,Fredericksburg,VA,431,Richmond,VA
-22538,49017,Fredericksburg,VA,431,Richmond,VA
-22539,49026,Kilmarnock,VA,431,Richmond,VA
-22542,49010,Culpeper,VA,427,Charlottesville,VA
-22544,49017,Fredericksburg,VA,431,Richmond,VA
-22545,49017,Fredericksburg,VA,431,Richmond,VA
-22546,49048,Richmond,VA,431,Richmond,VA
-22547,49017,Fredericksburg,VA,431,Richmond,VA
-22548,49057,Tappahannock,VA,431,Richmond,VA
-22551,49017,Fredericksburg,VA,431,Richmond,VA
-22552,49048,Richmond,VA,431,Richmond,VA
-22553,49017,Fredericksburg,VA,431,Richmond,VA
-22554,49017,Fredericksburg,VA,431,Richmond,VA
-22555,49017,Fredericksburg,VA,431,Richmond,VA
-22556,49017,Fredericksburg,VA,431,Richmond,VA
-22558,49057,Tappahannock,VA,431,Richmond,VA
-22560,49057,Tappahannock,VA,431,Richmond,VA
-22565,49017,Fredericksburg,VA,431,Richmond,VA
-22567,49007,Charlottesville,VA,427,Charlottesville,VA
-22570,49057,Tappahannock,VA,431,Richmond,VA
-22572,49057,Tappahannock,VA,431,Richmond,VA
-22576,49026,Kilmarnock,VA,431,Richmond,VA
-22577,49057,Tappahannock,VA,431,Richmond,VA
-22578,49026,Kilmarnock,VA,431,Richmond,VA
-22579,49026,Kilmarnock,VA,431,Richmond,VA
-22580,49017,Fredericksburg,VA,431,Richmond,VA
-22581,49057,Tappahannock,VA,431,Richmond,VA
-22601,49063,Winchester,VA,435,Winchester,VA
-22602,49063,Winchester,VA,435,Winchester,VA
-22603,49063,Winchester,VA,435,Winchester,VA
-22604,49063,Winchester,VA,435,Winchester,VA
-22610,49018,Front Royal,VA,435,Winchester,VA
-22611,49063,Winchester,VA,435,Winchester,VA
-22620,49063,Winchester,VA,435,Winchester,VA
-22622,49063,Winchester,VA,435,Winchester,VA
-22623,49018,Front Royal,VA,435,Winchester,VA
-22624,49063,Winchester,VA,435,Winchester,VA
-22625,49063,Winchester,VA,435,Winchester,VA
-22626,49063,Winchester,VA,435,Winchester,VA
-22627,49060,Warrenton,VA,426,Arlington,VA
-22630,49018,Front Royal,VA,435,Winchester,VA
-22637,49063,Winchester,VA,435,Winchester,VA
-22639,49060,Warrenton,VA,426,Arlington,VA
-22640,49018,Front Royal,VA,435,Winchester,VA
-22641,49063,Winchester,VA,435,Winchester,VA
-22642,49018,Front Royal,VA,435,Winchester,VA
-22643,49060,Warrenton,VA,426,Arlington,VA
-22644,49066,Woodstock,VA,435,Winchester,VA
-22645,49063,Winchester,VA,435,Winchester,VA
-22646,49063,Winchester,VA,435,Winchester,VA
-22649,49018,Front Royal,VA,435,Winchester,VA
-22650,49031,Luray,VA,435,Winchester,VA
-22652,49066,Woodstock,VA,435,Winchester,VA
-22654,49063,Winchester,VA,435,Winchester,VA
-22655,49063,Winchester,VA,435,Winchester,VA
-22656,49063,Winchester,VA,435,Winchester,VA
-22657,49063,Winchester,VA,435,Winchester,VA
-22660,49066,Woodstock,VA,435,Winchester,VA
-22663,49063,Winchester,VA,435,Winchester,VA
-22664,49066,Woodstock,VA,435,Winchester,VA
-22701,49010,Culpeper,VA,427,Charlottesville,VA
-22709,49007,Charlottesville,VA,427,Charlottesville,VA
-22711,49007,Charlottesville,VA,427,Charlottesville,VA
-22712,49060,Warrenton,VA,426,Arlington,VA
-22713,49010,Culpeper,VA,427,Charlottesville,VA
-22714,49010,Culpeper,VA,427,Charlottesville,VA
-22715,49007,Charlottesville,VA,427,Charlottesville,VA
-22716,49060,Warrenton,VA,426,Arlington,VA
-22718,49010,Culpeper,VA,427,Charlottesville,VA
-22719,49007,Charlottesville,VA,427,Charlottesville,VA
-22720,49017,Fredericksburg,VA,431,Richmond,VA
-22722,49010,Culpeper,VA,427,Charlottesville,VA
-22723,49007,Charlottesville,VA,427,Charlottesville,VA
-22724,49060,Warrenton,VA,426,Arlington,VA
-22725,49010,Culpeper,VA,427,Charlottesville,VA
-22726,49010,Culpeper,VA,427,Charlottesville,VA
-22727,49007,Charlottesville,VA,427,Charlottesville,VA
-22728,49060,Warrenton,VA,426,Arlington,VA
-22729,49007,Charlottesville,VA,427,Charlottesville,VA
-22730,49010,Culpeper,VA,427,Charlottesville,VA
-22731,49007,Charlottesville,VA,427,Charlottesville,VA
-22732,49007,Charlottesville,VA,427,Charlottesville,VA
-22733,49007,Charlottesville,VA,427,Charlottesville,VA
-22734,49060,Warrenton,VA,426,Arlington,VA
-22735,49010,Culpeper,VA,427,Charlottesville,VA
-22736,49010,Culpeper,VA,427,Charlottesville,VA
-22737,49010,Culpeper,VA,427,Charlottesville,VA
-22738,49007,Charlottesville,VA,427,Charlottesville,VA
-22739,49017,Fredericksburg,VA,431,Richmond,VA
-22740,49010,Culpeper,VA,427,Charlottesville,VA
-22741,49010,Culpeper,VA,427,Charlottesville,VA
-22742,49060,Warrenton,VA,426,Arlington,VA
-22743,49007,Charlottesville,VA,427,Charlottesville,VA
-22746,49060,Warrenton,VA,426,Arlington,VA
-22747,49060,Warrenton,VA,426,Arlington,VA
-22748,49007,Charlottesville,VA,427,Charlottesville,VA
-22749,49010,Culpeper,VA,427,Charlottesville,VA
-22801,49023,Harrisonburg,VA,427,Charlottesville,VA
-22802,49023,Harrisonburg,VA,427,Charlottesville,VA
-22803,49023,Harrisonburg,VA,427,Charlottesville,VA
-22807,49023,Harrisonburg,VA,427,Charlottesville,VA
-22810,49066,Woodstock,VA,435,Winchester,VA
-22811,49023,Harrisonburg,VA,427,Charlottesville,VA
-22812,49023,Harrisonburg,VA,427,Charlottesville,VA
-22815,49023,Harrisonburg,VA,427,Charlottesville,VA
-22820,49023,Harrisonburg,VA,427,Charlottesville,VA
-22821,49023,Harrisonburg,VA,427,Charlottesville,VA
-22824,49066,Woodstock,VA,435,Winchester,VA
-22827,49023,Harrisonburg,VA,427,Charlottesville,VA
-22830,49023,Harrisonburg,VA,427,Charlottesville,VA
-22831,49023,Harrisonburg,VA,427,Charlottesville,VA
-22832,49023,Harrisonburg,VA,427,Charlottesville,VA
-22833,49023,Harrisonburg,VA,427,Charlottesville,VA
-22834,49023,Harrisonburg,VA,427,Charlottesville,VA
-22835,49031,Luray,VA,435,Winchester,VA
-22840,49023,Harrisonburg,VA,427,Charlottesville,VA
-22841,49023,Harrisonburg,VA,427,Charlottesville,VA
-22842,49066,Woodstock,VA,435,Winchester,VA
-22843,49023,Harrisonburg,VA,427,Charlottesville,VA
-22844,49023,Harrisonburg,VA,427,Charlottesville,VA
-22845,49066,Woodstock,VA,435,Winchester,VA
-22846,49023,Harrisonburg,VA,427,Charlottesville,VA
-22847,49023,Harrisonburg,VA,427,Charlottesville,VA
-22848,49023,Harrisonburg,VA,427,Charlottesville,VA
-22849,49023,Harrisonburg,VA,427,Charlottesville,VA
-22850,49023,Harrisonburg,VA,427,Charlottesville,VA
-22851,49031,Luray,VA,435,Winchester,VA
-22853,49023,Harrisonburg,VA,427,Charlottesville,VA
-22901,49007,Charlottesville,VA,427,Charlottesville,VA
-22902,49007,Charlottesville,VA,427,Charlottesville,VA
-22903,49007,Charlottesville,VA,427,Charlottesville,VA
-22904,49007,Charlottesville,VA,427,Charlottesville,VA
-22905,49007,Charlottesville,VA,427,Charlottesville,VA
-22906,49007,Charlottesville,VA,427,Charlottesville,VA
-22907,49007,Charlottesville,VA,427,Charlottesville,VA
-22908,49007,Charlottesville,VA,427,Charlottesville,VA
-22909,49007,Charlottesville,VA,427,Charlottesville,VA
-22910,49007,Charlottesville,VA,427,Charlottesville,VA
-22911,49007,Charlottesville,VA,427,Charlottesville,VA
-22920,49007,Charlottesville,VA,427,Charlottesville,VA
-22922,49032,Lynchburg,VA,428,Lynchburg,VA
-22923,49007,Charlottesville,VA,427,Charlottesville,VA
-22924,49007,Charlottesville,VA,427,Charlottesville,VA
-22931,49007,Charlottesville,VA,427,Charlottesville,VA
-22932,49007,Charlottesville,VA,427,Charlottesville,VA
-22935,49007,Charlottesville,VA,427,Charlottesville,VA
-22936,49007,Charlottesville,VA,427,Charlottesville,VA
-22937,49007,Charlottesville,VA,427,Charlottesville,VA
-22938,49007,Charlottesville,VA,427,Charlottesville,VA
-22939,49054,Staunton,VA,427,Charlottesville,VA
-22940,49007,Charlottesville,VA,427,Charlottesville,VA
-22942,49007,Charlottesville,VA,427,Charlottesville,VA
-22943,49007,Charlottesville,VA,427,Charlottesville,VA
-22945,49007,Charlottesville,VA,427,Charlottesville,VA
-22946,49007,Charlottesville,VA,427,Charlottesville,VA
-22947,49007,Charlottesville,VA,427,Charlottesville,VA
-22948,49007,Charlottesville,VA,427,Charlottesville,VA
-22949,49007,Charlottesville,VA,427,Charlottesville,VA
-22952,49054,Staunton,VA,427,Charlottesville,VA
-22957,49007,Charlottesville,VA,427,Charlottesville,VA
-22958,49007,Charlottesville,VA,427,Charlottesville,VA
-22959,49007,Charlottesville,VA,427,Charlottesville,VA
-22960,49007,Charlottesville,VA,427,Charlottesville,VA
-22963,49007,Charlottesville,VA,427,Charlottesville,VA
-22964,49032,Lynchburg,VA,428,Lynchburg,VA
-22965,49007,Charlottesville,VA,427,Charlottesville,VA
-22967,49032,Lynchburg,VA,428,Lynchburg,VA
-22968,49007,Charlottesville,VA,427,Charlottesville,VA
-22969,49007,Charlottesville,VA,427,Charlottesville,VA
-22971,49007,Charlottesville,VA,427,Charlottesville,VA
-22972,49007,Charlottesville,VA,427,Charlottesville,VA
-22973,49007,Charlottesville,VA,427,Charlottesville,VA
-22974,49007,Charlottesville,VA,427,Charlottesville,VA
-22976,49054,Staunton,VA,427,Charlottesville,VA
-22980,49054,Staunton,VA,427,Charlottesville,VA
-22987,49007,Charlottesville,VA,427,Charlottesville,VA
-22989,49007,Charlottesville,VA,427,Charlottesville,VA
-23001,49020,Gloucester,VA,429,Newport News,VA
-23002,49048,Richmond,VA,431,Richmond,VA
-23003,49020,Gloucester,VA,429,Newport News,VA
-23004,49007,Charlottesville,VA,427,Charlottesville,VA
-23005,49048,Richmond,VA,431,Richmond,VA
-23009,49048,Richmond,VA,431,Richmond,VA
-23011,49062,Williamsburg,VA,429,Newport News,VA
-23014,49048,Richmond,VA,431,Richmond,VA
-23015,49048,Richmond,VA,431,Richmond,VA
-23018,49020,Gloucester,VA,429,Newport News,VA
-23021,49020,Gloucester,VA,429,Newport News,VA
-23022,49007,Charlottesville,VA,427,Charlottesville,VA
-23023,49057,Tappahannock,VA,431,Richmond,VA
-23024,49048,Richmond,VA,431,Richmond,VA
-23025,49020,Gloucester,VA,429,Newport News,VA
-23027,49048,Richmond,VA,431,Richmond,VA
-23030,49048,Richmond,VA,431,Richmond,VA
-23031,49020,Gloucester,VA,429,Newport News,VA
-23032,49020,Gloucester,VA,429,Newport News,VA
-23035,49020,Gloucester,VA,429,Newport News,VA
-23038,49048,Richmond,VA,431,Richmond,VA
-23039,49048,Richmond,VA,431,Richmond,VA
-23040,49048,Richmond,VA,431,Richmond,VA
-23043,49026,Kilmarnock,VA,431,Richmond,VA
-23045,49020,Gloucester,VA,429,Newport News,VA
-23047,49048,Richmond,VA,431,Richmond,VA
-23050,49020,Gloucester,VA,429,Newport News,VA
-23055,49007,Charlottesville,VA,427,Charlottesville,VA
-23056,49020,Gloucester,VA,429,Newport News,VA
-23058,49048,Richmond,VA,431,Richmond,VA
-23059,49048,Richmond,VA,431,Richmond,VA
-23060,49048,Richmond,VA,431,Richmond,VA
-23061,49020,Gloucester,VA,429,Newport News,VA
-23062,49037,Newport News,VA,429,Newport News,VA
-23063,49048,Richmond,VA,431,Richmond,VA
-23064,49020,Gloucester,VA,429,Newport News,VA
-23065,49048,Richmond,VA,431,Richmond,VA
-23066,49020,Gloucester,VA,429,Newport News,VA
-23067,49048,Richmond,VA,431,Richmond,VA
-23068,49020,Gloucester,VA,429,Newport News,VA
-23069,49048,Richmond,VA,431,Richmond,VA
-23070,49026,Kilmarnock,VA,431,Richmond,VA
-23071,49026,Kilmarnock,VA,431,Richmond,VA
-23072,49020,Gloucester,VA,429,Newport News,VA
-23075,49048,Richmond,VA,431,Richmond,VA
-23076,49020,Gloucester,VA,429,Newport News,VA
-23079,49020,Gloucester,VA,429,Newport News,VA
-23081,49062,Williamsburg,VA,429,Newport News,VA
-23083,49048,Richmond,VA,431,Richmond,VA
-23084,49007,Charlottesville,VA,427,Charlottesville,VA
-23085,49048,Richmond,VA,431,Richmond,VA
-23086,49048,Richmond,VA,431,Richmond,VA
-23089,49062,Williamsburg,VA,429,Newport News,VA
-23090,49062,Williamsburg,VA,429,Newport News,VA
-23091,49020,Gloucester,VA,429,Newport News,VA
-23092,49026,Kilmarnock,VA,431,Richmond,VA
-23093,49007,Charlottesville,VA,427,Charlottesville,VA
-23102,49048,Richmond,VA,431,Richmond,VA
-23103,49048,Richmond,VA,431,Richmond,VA
-23105,49048,Richmond,VA,431,Richmond,VA
-23106,49048,Richmond,VA,431,Richmond,VA
-23107,49020,Gloucester,VA,429,Newport News,VA
-23108,49020,Gloucester,VA,429,Newport News,VA
-23109,49020,Gloucester,VA,429,Newport News,VA
-23110,49020,Gloucester,VA,429,Newport News,VA
-23111,49048,Richmond,VA,431,Richmond,VA
-23112,49048,Richmond,VA,431,Richmond,VA
-23113,49048,Richmond,VA,431,Richmond,VA
-23114,49048,Richmond,VA,431,Richmond,VA
-23115,49057,Tappahannock,VA,431,Richmond,VA
-23116,49048,Richmond,VA,431,Richmond,VA
-23117,49048,Richmond,VA,431,Richmond,VA
-23119,49020,Gloucester,VA,429,Newport News,VA
-23120,49048,Richmond,VA,431,Richmond,VA
-23123,49007,Charlottesville,VA,427,Charlottesville,VA
-23124,49048,Richmond,VA,431,Richmond,VA
-23125,49020,Gloucester,VA,429,Newport News,VA
-23126,49048,Richmond,VA,431,Richmond,VA
-23127,49062,Williamsburg,VA,429,Newport News,VA
-23128,49020,Gloucester,VA,429,Newport News,VA
-23129,49048,Richmond,VA,431,Richmond,VA
-23130,49020,Gloucester,VA,429,Newport News,VA
-23131,49020,Gloucester,VA,429,Newport News,VA
-23138,49020,Gloucester,VA,429,Newport News,VA
-23139,49048,Richmond,VA,431,Richmond,VA
-23140,49048,Richmond,VA,431,Richmond,VA
-23141,49048,Richmond,VA,431,Richmond,VA
-23146,49048,Richmond,VA,431,Richmond,VA
-23147,49048,Richmond,VA,431,Richmond,VA
-23148,49048,Richmond,VA,431,Richmond,VA
-23149,49020,Gloucester,VA,429,Newport News,VA
-23150,49048,Richmond,VA,431,Richmond,VA
-23153,49048,Richmond,VA,431,Richmond,VA
-23154,49020,Gloucester,VA,429,Newport News,VA
-23155,49020,Gloucester,VA,429,Newport News,VA
-23156,49020,Gloucester,VA,429,Newport News,VA
-23160,49048,Richmond,VA,431,Richmond,VA
-23161,49048,Richmond,VA,431,Richmond,VA
-23162,49048,Richmond,VA,431,Richmond,VA
-23163,49020,Gloucester,VA,429,Newport News,VA
-23168,49062,Williamsburg,VA,429,Newport News,VA
-23169,49026,Kilmarnock,VA,431,Richmond,VA
-23170,49007,Charlottesville,VA,427,Charlottesville,VA
-23173,49048,Richmond,VA,431,Richmond,VA
-23175,49020,Gloucester,VA,429,Newport News,VA
-23176,49026,Kilmarnock,VA,431,Richmond,VA
-23177,49048,Richmond,VA,431,Richmond,VA
-23178,49020,Gloucester,VA,429,Newport News,VA
-23180,49020,Gloucester,VA,429,Newport News,VA
-23181,49048,Richmond,VA,431,Richmond,VA
-23183,49020,Gloucester,VA,429,Newport News,VA
-23184,49020,Gloucester,VA,429,Newport News,VA
-23185,49062,Williamsburg,VA,429,Newport News,VA
-23186,49062,Williamsburg,VA,429,Newport News,VA
-23187,49062,Williamsburg,VA,429,Newport News,VA
-23188,49062,Williamsburg,VA,429,Newport News,VA
-23190,49020,Gloucester,VA,429,Newport News,VA
-23192,49048,Richmond,VA,431,Richmond,VA
-23218,49048,Richmond,VA,431,Richmond,VA
-23219,49048,Richmond,VA,431,Richmond,VA
-23220,49048,Richmond,VA,431,Richmond,VA
-23221,49048,Richmond,VA,431,Richmond,VA
-23222,49048,Richmond,VA,431,Richmond,VA
-23223,49048,Richmond,VA,431,Richmond,VA
-23224,49048,Richmond,VA,431,Richmond,VA
-23225,49048,Richmond,VA,431,Richmond,VA
-23226,49048,Richmond,VA,431,Richmond,VA
-23227,49048,Richmond,VA,431,Richmond,VA
-23228,49048,Richmond,VA,431,Richmond,VA
-23229,49048,Richmond,VA,431,Richmond,VA
-23230,49048,Richmond,VA,431,Richmond,VA
-23231,49048,Richmond,VA,431,Richmond,VA
-23232,49048,Richmond,VA,431,Richmond,VA
-23233,49048,Richmond,VA,431,Richmond,VA
-23234,49048,Richmond,VA,431,Richmond,VA
-23235,49048,Richmond,VA,431,Richmond,VA
-23236,49048,Richmond,VA,431,Richmond,VA
-23237,49048,Richmond,VA,431,Richmond,VA
-23238,49048,Richmond,VA,431,Richmond,VA
-23241,49048,Richmond,VA,431,Richmond,VA
-23242,49048,Richmond,VA,431,Richmond,VA
-23249,49048,Richmond,VA,431,Richmond,VA
-23250,49048,Richmond,VA,431,Richmond,VA
-23255,49048,Richmond,VA,431,Richmond,VA
-23260,49048,Richmond,VA,431,Richmond,VA
-23261,49048,Richmond,VA,431,Richmond,VA
-23269,49048,Richmond,VA,431,Richmond,VA
-23273,49048,Richmond,VA,431,Richmond,VA
-23274,49048,Richmond,VA,431,Richmond,VA
-23276,49048,Richmond,VA,431,Richmond,VA
-23278,49048,Richmond,VA,431,Richmond,VA
-23279,49048,Richmond,VA,431,Richmond,VA
-23282,49048,Richmond,VA,431,Richmond,VA
-23284,49048,Richmond,VA,431,Richmond,VA
-23285,49048,Richmond,VA,431,Richmond,VA
-23286,49048,Richmond,VA,431,Richmond,VA
-23288,49048,Richmond,VA,431,Richmond,VA
-23289,49048,Richmond,VA,431,Richmond,VA
-23290,49048,Richmond,VA,431,Richmond,VA
-23291,49048,Richmond,VA,431,Richmond,VA
-23292,49048,Richmond,VA,431,Richmond,VA
-23293,49048,Richmond,VA,431,Richmond,VA
-23294,49048,Richmond,VA,431,Richmond,VA
-23295,49048,Richmond,VA,431,Richmond,VA
-23297,49048,Richmond,VA,431,Richmond,VA
-23298,49048,Richmond,VA,431,Richmond,VA
-23301,49036,Nassawadox,VA,430,Norfolk,VA
-23302,21029,Salisbury,MD,225,Salisbury,MD
-23303,21029,Salisbury,MD,225,Salisbury,MD
-23304,49037,Newport News,VA,429,Newport News,VA
-23306,49036,Nassawadox,VA,430,Norfolk,VA
-23307,49036,Nassawadox,VA,430,Norfolk,VA
-23308,49036,Nassawadox,VA,430,Norfolk,VA
-23310,49036,Nassawadox,VA,430,Norfolk,VA
-23313,49036,Nassawadox,VA,430,Norfolk,VA
-23314,49037,Newport News,VA,429,Newport News,VA
-23315,49016,Franklin,VA,430,Norfolk,VA
-23316,49036,Nassawadox,VA,430,Norfolk,VA
-23320,49008,Chesapeake,VA,430,Norfolk,VA
-23321,49043,Portsmouth,VA,430,Norfolk,VA
-23322,49008,Chesapeake,VA,430,Norfolk,VA
-23323,49043,Portsmouth,VA,430,Norfolk,VA
-23324,49008,Chesapeake,VA,430,Norfolk,VA
-23325,49008,Chesapeake,VA,430,Norfolk,VA
-23326,49008,Chesapeake,VA,430,Norfolk,VA
-23327,49008,Chesapeake,VA,430,Norfolk,VA
-23328,49008,Chesapeake,VA,430,Norfolk,VA
-23336,21029,Salisbury,MD,225,Salisbury,MD
-23337,21029,Salisbury,MD,225,Salisbury,MD
-23341,49036,Nassawadox,VA,430,Norfolk,VA
-23345,49036,Nassawadox,VA,430,Norfolk,VA
-23347,49036,Nassawadox,VA,430,Norfolk,VA
-23350,49036,Nassawadox,VA,430,Norfolk,VA
-23354,49036,Nassawadox,VA,430,Norfolk,VA
-23356,21029,Salisbury,MD,225,Salisbury,MD
-23357,49036,Nassawadox,VA,430,Norfolk,VA
-23358,49036,Nassawadox,VA,430,Norfolk,VA
-23359,21029,Salisbury,MD,225,Salisbury,MD
-23389,49036,Nassawadox,VA,430,Norfolk,VA
-23395,21029,Salisbury,MD,225,Salisbury,MD
-23396,21029,Salisbury,MD,225,Salisbury,MD
-23397,49056,Suffolk,VA,430,Norfolk,VA
-23398,49036,Nassawadox,VA,430,Norfolk,VA
-23399,21029,Salisbury,MD,225,Salisbury,MD
-23401,49036,Nassawadox,VA,430,Norfolk,VA
-23404,49036,Nassawadox,VA,430,Norfolk,VA
-23405,49036,Nassawadox,VA,430,Norfolk,VA
-23407,49036,Nassawadox,VA,430,Norfolk,VA
-23408,49036,Nassawadox,VA,430,Norfolk,VA
-23409,49036,Nassawadox,VA,430,Norfolk,VA
-23410,49036,Nassawadox,VA,430,Norfolk,VA
-23412,49036,Nassawadox,VA,430,Norfolk,VA
-23413,49036,Nassawadox,VA,430,Norfolk,VA
-23414,49036,Nassawadox,VA,430,Norfolk,VA
-23415,21029,Salisbury,MD,225,Salisbury,MD
-23416,21029,Salisbury,MD,225,Salisbury,MD
-23417,49036,Nassawadox,VA,430,Norfolk,VA
-23418,49036,Nassawadox,VA,430,Norfolk,VA
-23419,49036,Nassawadox,VA,430,Norfolk,VA
-23420,49036,Nassawadox,VA,430,Norfolk,VA
-23421,49036,Nassawadox,VA,430,Norfolk,VA
-23422,49036,Nassawadox,VA,430,Norfolk,VA
-23423,49036,Nassawadox,VA,430,Norfolk,VA
-23424,49037,Newport News,VA,429,Newport News,VA
-23426,21029,Salisbury,MD,225,Salisbury,MD
-23427,21029,Salisbury,MD,225,Salisbury,MD
-23429,49036,Nassawadox,VA,430,Norfolk,VA
-23430,49037,Newport News,VA,429,Newport News,VA
-23431,49037,Newport News,VA,429,Newport News,VA
-23432,49056,Suffolk,VA,430,Norfolk,VA
-23433,49043,Portsmouth,VA,430,Norfolk,VA
-23434,49056,Suffolk,VA,430,Norfolk,VA
-23435,49043,Portsmouth,VA,430,Norfolk,VA
-23436,49056,Suffolk,VA,430,Norfolk,VA
-23437,49056,Suffolk,VA,430,Norfolk,VA
-23438,49056,Suffolk,VA,430,Norfolk,VA
-23439,49056,Suffolk,VA,430,Norfolk,VA
-23440,21029,Salisbury,MD,225,Salisbury,MD
-23441,49036,Nassawadox,VA,430,Norfolk,VA
-23442,21029,Salisbury,MD,225,Salisbury,MD
-23443,49036,Nassawadox,VA,430,Norfolk,VA
-23450,49059,Virginia Beach,VA,430,Norfolk,VA
-23451,49059,Virginia Beach,VA,430,Norfolk,VA
-23452,49059,Virginia Beach,VA,430,Norfolk,VA
-23453,49059,Virginia Beach,VA,430,Norfolk,VA
-23454,49059,Virginia Beach,VA,430,Norfolk,VA
-23455,49059,Virginia Beach,VA,430,Norfolk,VA
-23456,49059,Virginia Beach,VA,430,Norfolk,VA
-23457,49059,Virginia Beach,VA,430,Norfolk,VA
-23458,49059,Virginia Beach,VA,430,Norfolk,VA
-23459,49059,Virginia Beach,VA,430,Norfolk,VA
-23460,49059,Virginia Beach,VA,430,Norfolk,VA
-23461,49059,Virginia Beach,VA,430,Norfolk,VA
-23462,49038,Norfolk,VA,430,Norfolk,VA
-23463,49038,Norfolk,VA,430,Norfolk,VA
-23464,49038,Norfolk,VA,430,Norfolk,VA
-23465,49038,Norfolk,VA,430,Norfolk,VA
-23466,49038,Norfolk,VA,430,Norfolk,VA
-23467,49038,Norfolk,VA,430,Norfolk,VA
-23471,49059,Virginia Beach,VA,430,Norfolk,VA
-23479,49059,Virginia Beach,VA,430,Norfolk,VA
-23480,49036,Nassawadox,VA,430,Norfolk,VA
-23482,49036,Nassawadox,VA,430,Norfolk,VA
-23483,21029,Salisbury,MD,225,Salisbury,MD
-23486,49036,Nassawadox,VA,430,Norfolk,VA
-23487,49056,Suffolk,VA,430,Norfolk,VA
-23488,21029,Salisbury,MD,225,Salisbury,MD
-23501,49038,Norfolk,VA,430,Norfolk,VA
-23502,49038,Norfolk,VA,430,Norfolk,VA
-23503,49038,Norfolk,VA,430,Norfolk,VA
-23504,49038,Norfolk,VA,430,Norfolk,VA
-23505,49038,Norfolk,VA,430,Norfolk,VA
-23506,49038,Norfolk,VA,430,Norfolk,VA
-23507,49038,Norfolk,VA,430,Norfolk,VA
-23508,49038,Norfolk,VA,430,Norfolk,VA
-23509,49038,Norfolk,VA,430,Norfolk,VA
-23510,49038,Norfolk,VA,430,Norfolk,VA
-23511,49038,Norfolk,VA,430,Norfolk,VA
-23513,49038,Norfolk,VA,430,Norfolk,VA
-23514,49038,Norfolk,VA,430,Norfolk,VA
-23515,49038,Norfolk,VA,430,Norfolk,VA
-23517,49038,Norfolk,VA,430,Norfolk,VA
-23518,49038,Norfolk,VA,430,Norfolk,VA
-23519,49038,Norfolk,VA,430,Norfolk,VA
-23523,49038,Norfolk,VA,430,Norfolk,VA
-23529,49038,Norfolk,VA,430,Norfolk,VA
-23541,49038,Norfolk,VA,430,Norfolk,VA
-23551,49038,Norfolk,VA,430,Norfolk,VA
-23601,49037,Newport News,VA,429,Newport News,VA
-23602,49037,Newport News,VA,429,Newport News,VA
-23603,49037,Newport News,VA,429,Newport News,VA
-23604,49037,Newport News,VA,429,Newport News,VA
-23605,49037,Newport News,VA,429,Newport News,VA
-23606,49037,Newport News,VA,429,Newport News,VA
-23607,49037,Newport News,VA,429,Newport News,VA
-23608,49037,Newport News,VA,429,Newport News,VA
-23609,49037,Newport News,VA,429,Newport News,VA
-23612,49037,Newport News,VA,429,Newport News,VA
-23628,49037,Newport News,VA,429,Newport News,VA
-23630,49022,Hampton,VA,429,Newport News,VA
-23651,49022,Hampton,VA,429,Newport News,VA
-23661,49022,Hampton,VA,429,Newport News,VA
-23662,49037,Newport News,VA,429,Newport News,VA
-23663,49022,Hampton,VA,429,Newport News,VA
-23664,49022,Hampton,VA,429,Newport News,VA
-23665,49037,Newport News,VA,429,Newport News,VA
-23666,49037,Newport News,VA,429,Newport News,VA
-23667,49022,Hampton,VA,429,Newport News,VA
-23668,49022,Hampton,VA,429,Newport News,VA
-23669,49022,Hampton,VA,429,Newport News,VA
-23670,49022,Hampton,VA,429,Newport News,VA
-23681,49037,Newport News,VA,429,Newport News,VA
-23690,49037,Newport News,VA,429,Newport News,VA
-23691,49037,Newport News,VA,429,Newport News,VA
-23692,49037,Newport News,VA,429,Newport News,VA
-23693,49037,Newport News,VA,429,Newport News,VA
-23694,49037,Newport News,VA,429,Newport News,VA
-23696,49037,Newport News,VA,429,Newport News,VA
-23701,49043,Portsmouth,VA,430,Norfolk,VA
-23702,49043,Portsmouth,VA,430,Norfolk,VA
-23703,49043,Portsmouth,VA,430,Norfolk,VA
-23704,49043,Portsmouth,VA,430,Norfolk,VA
-23705,49043,Portsmouth,VA,430,Norfolk,VA
-23707,49043,Portsmouth,VA,430,Norfolk,VA
-23708,49043,Portsmouth,VA,430,Norfolk,VA
-23709,49043,Portsmouth,VA,430,Norfolk,VA
-23801,49042,Petersburg,VA,431,Richmond,VA
-23803,49042,Petersburg,VA,431,Richmond,VA
-23804,49042,Petersburg,VA,431,Richmond,VA
-23805,49042,Petersburg,VA,431,Richmond,VA
-23806,49042,Petersburg,VA,431,Richmond,VA
-23821,49053,South Hill,VA,431,Richmond,VA
-23822,49042,Petersburg,VA,431,Richmond,VA
-23824,49048,Richmond,VA,431,Richmond,VA
-23827,49016,Franklin,VA,430,Norfolk,VA
-23828,49016,Franklin,VA,430,Norfolk,VA
-23829,49016,Franklin,VA,430,Norfolk,VA
-23830,49042,Petersburg,VA,431,Richmond,VA
-23831,49048,Richmond,VA,431,Richmond,VA
-23832,49048,Richmond,VA,431,Richmond,VA
-23833,49042,Petersburg,VA,431,Richmond,VA
-23834,49042,Petersburg,VA,431,Richmond,VA
-23836,49048,Richmond,VA,431,Richmond,VA
-23837,49016,Franklin,VA,430,Norfolk,VA
-23838,49048,Richmond,VA,431,Richmond,VA
-23839,49056,Suffolk,VA,430,Norfolk,VA
-23840,49042,Petersburg,VA,431,Richmond,VA
-23841,49042,Petersburg,VA,431,Richmond,VA
-23842,49042,Petersburg,VA,431,Richmond,VA
-23843,49053,South Hill,VA,431,Richmond,VA
-23844,49012,Emporia,VA,431,Richmond,VA
-23845,49053,South Hill,VA,431,Richmond,VA
-23846,49037,Newport News,VA,429,Newport News,VA
-23847,49012,Emporia,VA,431,Richmond,VA
-23850,49042,Petersburg,VA,431,Richmond,VA
-23851,49016,Franklin,VA,430,Norfolk,VA
-23856,49012,Emporia,VA,431,Richmond,VA
-23857,49048,Richmond,VA,431,Richmond,VA
-23860,49024,Hopewell,VA,431,Richmond,VA
-23866,49056,Suffolk,VA,430,Norfolk,VA
-23867,49012,Emporia,VA,431,Richmond,VA
-23868,49012,Emporia,VA,431,Richmond,VA
-23870,49012,Emporia,VA,431,Richmond,VA
-23872,49042,Petersburg,VA,431,Richmond,VA
-23873,49053,South Hill,VA,431,Richmond,VA
-23874,49016,Franklin,VA,430,Norfolk,VA
-23875,49024,Hopewell,VA,431,Richmond,VA
-23876,49053,South Hill,VA,431,Richmond,VA
-23878,49016,Franklin,VA,430,Norfolk,VA
-23879,49012,Emporia,VA,431,Richmond,VA
-23881,49042,Petersburg,VA,431,Richmond,VA
-23882,49012,Emporia,VA,431,Richmond,VA
-23883,49037,Newport News,VA,429,Newport News,VA
-23884,49042,Petersburg,VA,431,Richmond,VA
-23885,49042,Petersburg,VA,431,Richmond,VA
-23887,49012,Emporia,VA,431,Richmond,VA
-23888,49056,Suffolk,VA,430,Norfolk,VA
-23889,49053,South Hill,VA,431,Richmond,VA
-23890,49042,Petersburg,VA,431,Richmond,VA
-23891,49042,Petersburg,VA,431,Richmond,VA
-23893,49053,South Hill,VA,431,Richmond,VA
-23894,49048,Richmond,VA,431,Richmond,VA
-23897,49012,Emporia,VA,431,Richmond,VA
-23898,49056,Suffolk,VA,430,Norfolk,VA
-23899,49042,Petersburg,VA,431,Richmond,VA
-23901,49015,Farmville,VA,431,Richmond,VA
-23909,49015,Farmville,VA,431,Richmond,VA
-23915,49053,South Hill,VA,431,Richmond,VA
-23917,49053,South Hill,VA,431,Richmond,VA
-23919,49053,South Hill,VA,431,Richmond,VA
-23920,49053,South Hill,VA,431,Richmond,VA
-23921,49007,Charlottesville,VA,427,Charlottesville,VA
-23922,49048,Richmond,VA,431,Richmond,VA
-23923,49015,Farmville,VA,431,Richmond,VA
-23924,49052,South Boston,VA,312,Durham,NC
-23927,49052,South Boston,VA,312,Durham,NC
-23930,49048,Richmond,VA,431,Richmond,VA
-23934,49015,Farmville,VA,431,Richmond,VA
-23936,49048,Richmond,VA,431,Richmond,VA
-23937,49052,South Boston,VA,312,Durham,NC
-23938,49053,South Hill,VA,431,Richmond,VA
-23939,49032,Lynchburg,VA,428,Lynchburg,VA
-23941,49052,South Boston,VA,312,Durham,NC
-23942,49015,Farmville,VA,431,Richmond,VA
-23943,49015,Farmville,VA,431,Richmond,VA
-23944,49053,South Hill,VA,431,Richmond,VA
-23947,49015,Farmville,VA,431,Richmond,VA
-23950,49053,South Hill,VA,431,Richmond,VA
-23952,49053,South Hill,VA,431,Richmond,VA
-23954,49015,Farmville,VA,431,Richmond,VA
-23955,49048,Richmond,VA,431,Richmond,VA
-23958,49032,Lynchburg,VA,428,Lynchburg,VA
-23959,49032,Lynchburg,VA,428,Lynchburg,VA
-23960,49015,Farmville,VA,431,Richmond,VA
-23962,49052,South Boston,VA,312,Durham,NC
-23963,49032,Lynchburg,VA,428,Lynchburg,VA
-23964,49052,South Boston,VA,312,Durham,NC
-23966,49015,Farmville,VA,431,Richmond,VA
-23967,49052,South Boston,VA,312,Durham,NC
-23968,49052,South Boston,VA,312,Durham,NC
-23970,49053,South Hill,VA,431,Richmond,VA
-23974,49048,Richmond,VA,431,Richmond,VA
-23976,49052,South Boston,VA,312,Durham,NC
-24001,49049,Roanoke,VA,432,Roanoke,VA
-24002,49049,Roanoke,VA,432,Roanoke,VA
-24003,49049,Roanoke,VA,432,Roanoke,VA
-24004,49049,Roanoke,VA,432,Roanoke,VA
-24005,49049,Roanoke,VA,432,Roanoke,VA
-24006,49049,Roanoke,VA,432,Roanoke,VA
-24007,49049,Roanoke,VA,432,Roanoke,VA
-24008,49049,Roanoke,VA,432,Roanoke,VA
-24009,49049,Roanoke,VA,432,Roanoke,VA
-24010,49049,Roanoke,VA,432,Roanoke,VA
-24011,49049,Roanoke,VA,432,Roanoke,VA
-24012,49049,Roanoke,VA,432,Roanoke,VA
-24013,49049,Roanoke,VA,432,Roanoke,VA
-24014,49049,Roanoke,VA,432,Roanoke,VA
-24015,49049,Roanoke,VA,432,Roanoke,VA
-24016,49049,Roanoke,VA,432,Roanoke,VA
-24017,49049,Roanoke,VA,432,Roanoke,VA
-24018,49049,Roanoke,VA,432,Roanoke,VA
-24019,49049,Roanoke,VA,432,Roanoke,VA
-24020,49049,Roanoke,VA,432,Roanoke,VA
-24022,49049,Roanoke,VA,432,Roanoke,VA
-24023,49049,Roanoke,VA,432,Roanoke,VA
-24024,49049,Roanoke,VA,432,Roanoke,VA
-24025,49049,Roanoke,VA,432,Roanoke,VA
-24026,49049,Roanoke,VA,432,Roanoke,VA
-24027,49049,Roanoke,VA,432,Roanoke,VA
-24028,49049,Roanoke,VA,432,Roanoke,VA
-24029,49049,Roanoke,VA,432,Roanoke,VA
-24030,49049,Roanoke,VA,432,Roanoke,VA
-24031,49049,Roanoke,VA,432,Roanoke,VA
-24032,49049,Roanoke,VA,432,Roanoke,VA
-24033,49049,Roanoke,VA,432,Roanoke,VA
-24034,49049,Roanoke,VA,432,Roanoke,VA
-24035,49049,Roanoke,VA,432,Roanoke,VA
-24036,49049,Roanoke,VA,432,Roanoke,VA
-24037,49049,Roanoke,VA,432,Roanoke,VA
-24038,49049,Roanoke,VA,432,Roanoke,VA
-24040,49049,Roanoke,VA,432,Roanoke,VA
-24042,49049,Roanoke,VA,432,Roanoke,VA
-24043,49049,Roanoke,VA,432,Roanoke,VA
-24050,49049,Roanoke,VA,432,Roanoke,VA
-24053,34061,Mount Airy,NC,320,Winston-Salem,NC
-24054,49035,Martinsville,VA,312,Durham,NC
-24055,49035,Martinsville,VA,312,Durham,NC
-24058,49045,Radford,VA,432,Roanoke,VA
-24059,49051,Salem,VA,432,Roanoke,VA
-24060,49006,Blacksburg,VA,432,Roanoke,VA
-24061,49006,Blacksburg,VA,432,Roanoke,VA
-24062,49006,Blacksburg,VA,432,Roanoke,VA
-24063,49006,Blacksburg,VA,432,Roanoke,VA
-24064,49049,Roanoke,VA,432,Roanoke,VA
-24065,49049,Roanoke,VA,432,Roanoke,VA
-24066,49049,Roanoke,VA,432,Roanoke,VA
-24067,49049,Roanoke,VA,432,Roanoke,VA
-24068,49006,Blacksburg,VA,432,Roanoke,VA
-24069,49011,Danville,VA,312,Durham,NC
-24070,49051,Salem,VA,432,Roanoke,VA
-24072,49051,Salem,VA,432,Roanoke,VA
-24073,49006,Blacksburg,VA,432,Roanoke,VA
-24076,34061,Mount Airy,NC,320,Winston-Salem,NC
-24077,49049,Roanoke,VA,432,Roanoke,VA
-24078,49035,Martinsville,VA,312,Durham,NC
-24079,49051,Salem,VA,432,Roanoke,VA
-24082,49055,Stuart,VA,320,Winston-Salem,NC
-24083,49049,Roanoke,VA,432,Roanoke,VA
-24084,49045,Radford,VA,432,Roanoke,VA
-24085,49030,Low Moor,VA,432,Roanoke,VA
-24086,49040,Pearisburg,VA,432,Roanoke,VA
-24087,49051,Salem,VA,432,Roanoke,VA
-24088,49050,Rocky Mount,VA,432,Roanoke,VA
-24089,49035,Martinsville,VA,312,Durham,NC
-24090,49049,Roanoke,VA,432,Roanoke,VA
-24091,49049,Roanoke,VA,432,Roanoke,VA
-24092,49050,Rocky Mount,VA,432,Roanoke,VA
-24093,51031,Princeton,WV,432,Roanoke,VA
-24095,49049,Roanoke,VA,432,Roanoke,VA
-24101,49049,Roanoke,VA,432,Roanoke,VA
-24102,49050,Rocky Mount,VA,432,Roanoke,VA
-24104,49004,Bedford,VA,428,Lynchburg,VA
-24105,49045,Radford,VA,432,Roanoke,VA
-24111,49006,Blacksburg,VA,432,Roanoke,VA
-24112,49035,Martinsville,VA,312,Durham,NC
-24113,49035,Martinsville,VA,312,Durham,NC
-24114,49035,Martinsville,VA,312,Durham,NC
-24115,49035,Martinsville,VA,312,Durham,NC
-24120,49055,Stuart,VA,320,Winston-Salem,NC
-24121,49004,Bedford,VA,428,Lynchburg,VA
-24122,49049,Roanoke,VA,432,Roanoke,VA
-24124,49040,Pearisburg,VA,432,Roanoke,VA
-24126,49045,Radford,VA,432,Roanoke,VA
-24127,49051,Salem,VA,432,Roanoke,VA
-24128,49006,Blacksburg,VA,432,Roanoke,VA
-24129,49045,Radford,VA,432,Roanoke,VA
-24130,49030,Low Moor,VA,432,Roanoke,VA
-24131,49051,Salem,VA,432,Roanoke,VA
-24132,49045,Radford,VA,432,Roanoke,VA
-24133,49055,Stuart,VA,320,Winston-Salem,NC
-24134,49040,Pearisburg,VA,432,Roanoke,VA
-24136,49040,Pearisburg,VA,432,Roanoke,VA
-24137,49049,Roanoke,VA,432,Roanoke,VA
-24138,49006,Blacksburg,VA,432,Roanoke,VA
-24139,49032,Lynchburg,VA,428,Lynchburg,VA
-24141,49045,Radford,VA,432,Roanoke,VA
-24142,49045,Radford,VA,432,Roanoke,VA
-24143,49045,Radford,VA,432,Roanoke,VA
-24146,49050,Rocky Mount,VA,432,Roanoke,VA
-24147,49040,Pearisburg,VA,432,Roanoke,VA
-24148,49035,Martinsville,VA,312,Durham,NC
-24149,49045,Radford,VA,432,Roanoke,VA
-24150,49040,Pearisburg,VA,432,Roanoke,VA
-24151,49050,Rocky Mount,VA,432,Roanoke,VA
-24153,49051,Salem,VA,432,Roanoke,VA
-24155,49049,Roanoke,VA,432,Roanoke,VA
-24157,49049,Roanoke,VA,432,Roanoke,VA
-24161,49011,Danville,VA,312,Durham,NC
-24162,49051,Salem,VA,432,Roanoke,VA
-24165,49035,Martinsville,VA,312,Durham,NC
-24167,49040,Pearisburg,VA,432,Roanoke,VA
-24168,49035,Martinsville,VA,312,Durham,NC
-24171,49055,Stuart,VA,320,Winston-Salem,NC
-24174,49004,Bedford,VA,428,Lynchburg,VA
-24175,49049,Roanoke,VA,432,Roanoke,VA
-24176,49049,Roanoke,VA,432,Roanoke,VA
-24177,49055,Stuart,VA,320,Winston-Salem,NC
-24178,49049,Roanoke,VA,432,Roanoke,VA
-24179,49049,Roanoke,VA,432,Roanoke,VA
-24184,49049,Roanoke,VA,432,Roanoke,VA
-24185,49055,Stuart,VA,320,Winston-Salem,NC
-24201,44003,Bristol,TN,376,Kingsport,TN
-24202,49001,Abingdon,VA,376,Kingsport,TN
-24203,44003,Bristol,TN,376,Kingsport,TN
-24205,44003,Bristol,TN,376,Kingsport,TN
-24209,44003,Bristol,TN,376,Kingsport,TN
-24210,49001,Abingdon,VA,376,Kingsport,TN
-24211,49001,Abingdon,VA,376,Kingsport,TN
-24212,49001,Abingdon,VA,376,Kingsport,TN
-24215,49005,Big Stone Gap,VA,376,Kingsport,TN
-24216,49005,Big Stone Gap,VA,376,Kingsport,TN
-24217,49027,Lebanon,VA,376,Kingsport,TN
-24218,49041,Pennington Gap,VA,376,Kingsport,TN
-24219,49005,Big Stone Gap,VA,376,Kingsport,TN
-24220,49009,Clintwood,VA,376,Kingsport,TN
-24221,44042,Kingsport,TN,376,Kingsport,TN
-24224,49027,Lebanon,VA,376,Kingsport,TN
-24225,49027,Lebanon,VA,376,Kingsport,TN
-24226,49009,Clintwood,VA,376,Kingsport,TN
-24228,49009,Clintwood,VA,376,Kingsport,TN
-24230,49039,Norton,VA,376,Kingsport,TN
-24236,49001,Abingdon,VA,376,Kingsport,TN
-24237,49027,Lebanon,VA,376,Kingsport,TN
-24239,49021,Grundy,VA,376,Kingsport,TN
-24243,49041,Pennington Gap,VA,376,Kingsport,TN
-24244,44042,Kingsport,TN,376,Kingsport,TN
-24245,44042,Kingsport,TN,376,Kingsport,TN
-24246,49005,Big Stone Gap,VA,376,Kingsport,TN
-24248,18057,Middlesboro,KY,377,Knoxville,TN
-24250,44042,Kingsport,TN,376,Kingsport,TN
-24251,44042,Kingsport,TN,376,Kingsport,TN
-24256,49009,Clintwood,VA,376,Kingsport,TN
-24258,44042,Kingsport,TN,376,Kingsport,TN
-24260,49027,Lebanon,VA,376,Kingsport,TN
-24263,49041,Pennington Gap,VA,376,Kingsport,TN
-24265,49005,Big Stone Gap,VA,376,Kingsport,TN
-24266,49027,Lebanon,VA,376,Kingsport,TN
-24269,49009,Clintwood,VA,376,Kingsport,TN
-24270,44003,Bristol,TN,376,Kingsport,TN
-24271,44042,Kingsport,TN,376,Kingsport,TN
-24272,49039,Norton,VA,376,Kingsport,TN
-24273,49039,Norton,VA,376,Kingsport,TN
-24277,49041,Pennington Gap,VA,376,Kingsport,TN
-24279,49039,Norton,VA,376,Kingsport,TN
-24280,49027,Lebanon,VA,376,Kingsport,TN
-24281,49041,Pennington Gap,VA,376,Kingsport,TN
-24282,49041,Pennington Gap,VA,376,Kingsport,TN
-24283,49027,Lebanon,VA,376,Kingsport,TN
-24290,44042,Kingsport,TN,376,Kingsport,TN
-24292,49001,Abingdon,VA,376,Kingsport,TN
-24293,49039,Norton,VA,376,Kingsport,TN
-24301,49044,Pulaski,VA,432,Roanoke,VA
-24311,49034,Marion,VA,376,Kingsport,TN
-24312,49067,Wytheville,VA,432,Roanoke,VA
-24313,49044,Pulaski,VA,432,Roanoke,VA
-24314,51003,Bluefield,WV,432,Roanoke,VA
-24315,49067,Wytheville,VA,432,Roanoke,VA
-24316,49034,Marion,VA,376,Kingsport,TN
-24317,34061,Mount Airy,NC,320,Winston-Salem,NC
-24318,49067,Wytheville,VA,432,Roanoke,VA
-24319,49034,Marion,VA,376,Kingsport,TN
-24322,49067,Wytheville,VA,432,Roanoke,VA
-24323,49067,Wytheville,VA,432,Roanoke,VA
-24324,49044,Pulaski,VA,432,Roanoke,VA
-24325,49019,Galax,VA,320,Winston-Salem,NC
-24326,49019,Galax,VA,320,Winston-Salem,NC
-24327,49001,Abingdon,VA,376,Kingsport,TN
-24328,49019,Galax,VA,320,Winston-Salem,NC
-24330,49019,Galax,VA,320,Winston-Salem,NC
-24333,49019,Galax,VA,320,Winston-Salem,NC
-24340,49001,Abingdon,VA,376,Kingsport,TN
-24343,49019,Galax,VA,320,Winston-Salem,NC
-24347,49044,Pulaski,VA,432,Roanoke,VA
-24348,49019,Galax,VA,320,Winston-Salem,NC
-24350,49067,Wytheville,VA,432,Roanoke,VA
-24351,49019,Galax,VA,320,Winston-Salem,NC
-24352,49019,Galax,VA,320,Winston-Salem,NC
-24354,49034,Marion,VA,376,Kingsport,TN
-24360,49067,Wytheville,VA,432,Roanoke,VA
-24361,49001,Abingdon,VA,376,Kingsport,TN
-24363,49019,Galax,VA,320,Winston-Salem,NC
-24366,49040,Pearisburg,VA,432,Roanoke,VA
-24368,49067,Wytheville,VA,432,Roanoke,VA
-24370,49034,Marion,VA,376,Kingsport,TN
-24374,49067,Wytheville,VA,432,Roanoke,VA
-24375,49034,Marion,VA,376,Kingsport,TN
-24377,49034,Marion,VA,376,Kingsport,TN
-24378,49034,Marion,VA,376,Kingsport,TN
-24380,49045,Radford,VA,432,Roanoke,VA
-24381,49019,Galax,VA,320,Winston-Salem,NC
-24382,49067,Wytheville,VA,432,Roanoke,VA
-24401,49054,Staunton,VA,427,Charlottesville,VA
-24402,49054,Staunton,VA,427,Charlottesville,VA
-24411,49054,Staunton,VA,427,Charlottesville,VA
-24412,49025,Hot Springs,VA,427,Charlottesville,VA
-24413,49023,Harrisonburg,VA,427,Charlottesville,VA
-24415,49029,Lexington,VA,432,Roanoke,VA
-24416,49029,Lexington,VA,432,Roanoke,VA
-24421,49054,Staunton,VA,427,Charlottesville,VA
-24422,49030,Low Moor,VA,432,Roanoke,VA
-24426,49030,Low Moor,VA,432,Roanoke,VA
-24430,49054,Staunton,VA,427,Charlottesville,VA
-24431,49054,Staunton,VA,427,Charlottesville,VA
-24432,49054,Staunton,VA,427,Charlottesville,VA
-24433,49054,Staunton,VA,427,Charlottesville,VA
-24435,49029,Lexington,VA,432,Roanoke,VA
-24437,49054,Staunton,VA,427,Charlottesville,VA
-24438,49030,Low Moor,VA,432,Roanoke,VA
-24439,49054,Staunton,VA,427,Charlottesville,VA
-24440,49054,Staunton,VA,427,Charlottesville,VA
-24441,49023,Harrisonburg,VA,427,Charlottesville,VA
-24442,49054,Staunton,VA,427,Charlottesville,VA
-24445,49025,Hot Springs,VA,427,Charlottesville,VA
-24448,49030,Low Moor,VA,432,Roanoke,VA
-24450,49029,Lexington,VA,432,Roanoke,VA
-24457,49030,Low Moor,VA,432,Roanoke,VA
-24458,49054,Staunton,VA,427,Charlottesville,VA
-24459,49054,Staunton,VA,427,Charlottesville,VA
-24460,49025,Hot Springs,VA,427,Charlottesville,VA
-24463,49054,Staunton,VA,427,Charlottesville,VA
-24464,49054,Staunton,VA,427,Charlottesville,VA
-24465,49054,Staunton,VA,427,Charlottesville,VA
-24467,49054,Staunton,VA,427,Charlottesville,VA
-24468,49025,Hot Springs,VA,427,Charlottesville,VA
-24469,49054,Staunton,VA,427,Charlottesville,VA
-24471,49023,Harrisonburg,VA,427,Charlottesville,VA
-24472,49054,Staunton,VA,427,Charlottesville,VA
-24473,49029,Lexington,VA,432,Roanoke,VA
-24474,49030,Low Moor,VA,432,Roanoke,VA
-24476,49054,Staunton,VA,427,Charlottesville,VA
-24477,49054,Staunton,VA,427,Charlottesville,VA
-24479,49054,Staunton,VA,427,Charlottesville,VA
-24482,49054,Staunton,VA,427,Charlottesville,VA
-24483,49054,Staunton,VA,427,Charlottesville,VA
-24484,49025,Hot Springs,VA,427,Charlottesville,VA
-24485,49054,Staunton,VA,427,Charlottesville,VA
-24486,49023,Harrisonburg,VA,427,Charlottesville,VA
-24487,49054,Staunton,VA,427,Charlottesville,VA
-24501,49032,Lynchburg,VA,428,Lynchburg,VA
-24502,49032,Lynchburg,VA,428,Lynchburg,VA
-24503,49032,Lynchburg,VA,428,Lynchburg,VA
-24504,49032,Lynchburg,VA,428,Lynchburg,VA
-24505,49032,Lynchburg,VA,428,Lynchburg,VA
-24506,49032,Lynchburg,VA,428,Lynchburg,VA
-24513,49032,Lynchburg,VA,428,Lynchburg,VA
-24514,49032,Lynchburg,VA,428,Lynchburg,VA
-24515,49032,Lynchburg,VA,428,Lynchburg,VA
-24517,49032,Lynchburg,VA,428,Lynchburg,VA
-24520,49052,South Boston,VA,312,Durham,NC
-24521,49032,Lynchburg,VA,428,Lynchburg,VA
-24522,49032,Lynchburg,VA,428,Lynchburg,VA
-24523,49004,Bedford,VA,428,Lynchburg,VA
-24526,49032,Lynchburg,VA,428,Lynchburg,VA
-24527,49011,Danville,VA,312,Durham,NC
-24528,49032,Lynchburg,VA,428,Lynchburg,VA
-24529,49052,South Boston,VA,312,Durham,NC
-24530,49011,Danville,VA,312,Durham,NC
-24531,49011,Danville,VA,312,Durham,NC
-24533,49032,Lynchburg,VA,428,Lynchburg,VA
-24534,49052,South Boston,VA,312,Durham,NC
-24535,49052,South Boston,VA,312,Durham,NC
-24536,49032,Lynchburg,VA,428,Lynchburg,VA
-24538,49032,Lynchburg,VA,428,Lynchburg,VA
-24539,49052,South Boston,VA,312,Durham,NC
-24540,49011,Danville,VA,312,Durham,NC
-24541,49011,Danville,VA,312,Durham,NC
-24543,49011,Danville,VA,312,Durham,NC
-24549,49011,Danville,VA,312,Durham,NC
-24550,49032,Lynchburg,VA,428,Lynchburg,VA
-24551,49032,Lynchburg,VA,428,Lynchburg,VA
-24553,49032,Lynchburg,VA,428,Lynchburg,VA
-24554,49032,Lynchburg,VA,428,Lynchburg,VA
-24555,49029,Lexington,VA,432,Roanoke,VA
-24556,49032,Lynchburg,VA,428,Lynchburg,VA
-24557,49032,Lynchburg,VA,428,Lynchburg,VA
-24558,49052,South Boston,VA,312,Durham,NC
-24562,49007,Charlottesville,VA,427,Charlottesville,VA
-24563,49032,Lynchburg,VA,428,Lynchburg,VA
-24565,49011,Danville,VA,312,Durham,NC
-24566,49011,Danville,VA,312,Durham,NC
-24569,49032,Lynchburg,VA,428,Lynchburg,VA
-24570,49004,Bedford,VA,428,Lynchburg,VA
-24571,49032,Lynchburg,VA,428,Lynchburg,VA
-24572,49032,Lynchburg,VA,428,Lynchburg,VA
-24574,49032,Lynchburg,VA,428,Lynchburg,VA
-24576,49032,Lynchburg,VA,428,Lynchburg,VA
-24577,49052,South Boston,VA,312,Durham,NC
-24578,49029,Lexington,VA,432,Roanoke,VA
-24579,49029,Lexington,VA,432,Roanoke,VA
-24580,49052,South Boston,VA,312,Durham,NC
-24581,49007,Charlottesville,VA,427,Charlottesville,VA
-24586,49011,Danville,VA,312,Durham,NC
-24588,49032,Lynchburg,VA,428,Lynchburg,VA
-24589,49052,South Boston,VA,312,Durham,NC
-24590,49007,Charlottesville,VA,427,Charlottesville,VA
-24592,49052,South Boston,VA,312,Durham,NC
-24593,49032,Lynchburg,VA,428,Lynchburg,VA
-24594,49011,Danville,VA,312,Durham,NC
-24595,49032,Lynchburg,VA,428,Lynchburg,VA
-24597,49052,South Boston,VA,312,Durham,NC
-24598,49052,South Boston,VA,312,Durham,NC
-24599,49007,Charlottesville,VA,427,Charlottesville,VA
-24601,49047,Richlands,VA,376,Kingsport,TN
-24602,49047,Richlands,VA,376,Kingsport,TN
-24603,49021,Grundy,VA,376,Kingsport,TN
-24604,49047,Richlands,VA,376,Kingsport,TN
-24605,51003,Bluefield,WV,432,Roanoke,VA
-24606,51003,Bluefield,WV,432,Roanoke,VA
-24607,49009,Clintwood,VA,376,Kingsport,TN
-24608,49058,Tazewell,VA,432,Roanoke,VA
-24609,49047,Richlands,VA,376,Kingsport,TN
-24612,49047,Richlands,VA,376,Kingsport,TN
-24613,51003,Bluefield,WV,432,Roanoke,VA
-24614,49021,Grundy,VA,376,Kingsport,TN
-24619,49047,Richlands,VA,376,Kingsport,TN
-24620,49021,Grundy,VA,376,Kingsport,TN
-24622,49047,Richlands,VA,376,Kingsport,TN
-24624,49047,Richlands,VA,376,Kingsport,TN
-24627,49021,Grundy,VA,376,Kingsport,TN
-24628,49021,Grundy,VA,376,Kingsport,TN
-24630,49058,Tazewell,VA,432,Roanoke,VA
-24631,49047,Richlands,VA,376,Kingsport,TN
-24634,49021,Grundy,VA,376,Kingsport,TN
-24635,51003,Bluefield,WV,432,Roanoke,VA
-24637,49047,Richlands,VA,376,Kingsport,TN
-24639,49047,Richlands,VA,376,Kingsport,TN
-24640,49047,Richlands,VA,376,Kingsport,TN
-24641,49047,Richlands,VA,376,Kingsport,TN
-24646,49047,Richlands,VA,376,Kingsport,TN
-24647,49047,Richlands,VA,376,Kingsport,TN
-24649,49047,Richlands,VA,376,Kingsport,TN
-24651,49058,Tazewell,VA,432,Roanoke,VA
-24656,49021,Grundy,VA,376,Kingsport,TN
-24657,49047,Richlands,VA,376,Kingsport,TN
-24658,49021,Grundy,VA,376,Kingsport,TN
-24701,51003,Bluefield,WV,432,Roanoke,VA
-24712,51031,Princeton,WV,432,Roanoke,VA
-24714,51031,Princeton,WV,432,Roanoke,VA
-24715,51003,Bluefield,WV,432,Roanoke,VA
-24716,51031,Princeton,WV,432,Roanoke,VA
-24719,51031,Princeton,WV,432,Roanoke,VA
-24724,51003,Bluefield,WV,432,Roanoke,VA
-24726,51031,Princeton,WV,432,Roanoke,VA
-24729,51031,Princeton,WV,432,Roanoke,VA
-24731,51031,Princeton,WV,432,Roanoke,VA
-24732,51031,Princeton,WV,432,Roanoke,VA
-24733,51031,Princeton,WV,432,Roanoke,VA
-24736,51031,Princeton,WV,432,Roanoke,VA
-24737,51003,Bluefield,WV,432,Roanoke,VA
-24738,51003,Bluefield,WV,432,Roanoke,VA
-24739,51031,Princeton,WV,432,Roanoke,VA
-24740,51031,Princeton,WV,432,Roanoke,VA
-24747,51003,Bluefield,WV,432,Roanoke,VA
-24751,51003,Bluefield,WV,432,Roanoke,VA
-24801,51003,Bluefield,WV,432,Roanoke,VA
-24808,51003,Bluefield,WV,432,Roanoke,VA
-24811,51003,Bluefield,WV,432,Roanoke,VA
-24813,51003,Bluefield,WV,432,Roanoke,VA
-24815,51003,Bluefield,WV,432,Roanoke,VA
-24816,51003,Bluefield,WV,432,Roanoke,VA
-24817,49021,Grundy,VA,376,Kingsport,TN
-24818,51001,Beckley,WV,443,Charleston,WV
-24822,51001,Beckley,WV,443,Charleston,WV
-24823,51001,Beckley,WV,443,Charleston,WV
-24826,51003,Bluefield,WV,432,Roanoke,VA
-24827,51020,Man,WV,443,Charleston,WV
-24828,51001,Beckley,WV,443,Charleston,WV
-24829,51003,Bluefield,WV,432,Roanoke,VA
-24830,51003,Bluefield,WV,432,Roanoke,VA
-24831,51003,Bluefield,WV,432,Roanoke,VA
-24834,51001,Beckley,WV,443,Charleston,WV
-24836,51003,Bluefield,WV,432,Roanoke,VA
-24839,51020,Man,WV,443,Charleston,WV
-24843,51003,Bluefield,WV,432,Roanoke,VA
-24844,51003,Bluefield,WV,432,Roanoke,VA
-24845,51020,Man,WV,443,Charleston,WV
-24846,51003,Bluefield,WV,432,Roanoke,VA
-24847,51001,Beckley,WV,443,Charleston,WV
-24848,51003,Bluefield,WV,432,Roanoke,VA
-24849,51001,Beckley,WV,443,Charleston,WV
-24850,49021,Grundy,VA,376,Kingsport,TN
-24851,51018,Logan,WV,443,Charleston,WV
-24853,51003,Bluefield,WV,432,Roanoke,VA
-24854,51001,Beckley,WV,443,Charleston,WV
-24855,51003,Bluefield,WV,432,Roanoke,VA
-24857,51001,Beckley,WV,443,Charleston,WV
-24859,51001,Beckley,WV,443,Charleston,WV
-24860,51001,Beckley,WV,443,Charleston,WV
-24861,51003,Bluefield,WV,432,Roanoke,VA
-24862,51003,Bluefield,WV,432,Roanoke,VA
-24866,51003,Bluefield,WV,432,Roanoke,VA
-24867,51001,Beckley,WV,443,Charleston,WV
-24868,51003,Bluefield,WV,432,Roanoke,VA
-24869,51020,Man,WV,443,Charleston,WV
-24870,51001,Beckley,WV,443,Charleston,WV
-24871,51003,Bluefield,WV,432,Roanoke,VA
-24872,51003,Bluefield,WV,432,Roanoke,VA
-24873,49021,Grundy,VA,376,Kingsport,TN
-24874,51001,Beckley,WV,443,Charleston,WV
-24878,51003,Bluefield,WV,432,Roanoke,VA
-24879,49021,Grundy,VA,376,Kingsport,TN
-24880,51001,Beckley,WV,443,Charleston,WV
-24881,51003,Bluefield,WV,432,Roanoke,VA
-24882,51020,Man,WV,443,Charleston,WV
-24884,51003,Bluefield,WV,432,Roanoke,VA
-24887,51003,Bluefield,WV,432,Roanoke,VA
-24888,51003,Bluefield,WV,432,Roanoke,VA
-24892,51003,Bluefield,WV,432,Roanoke,VA
-24894,51003,Bluefield,WV,432,Roanoke,VA
-24895,51003,Bluefield,WV,432,Roanoke,VA
-24898,51001,Beckley,WV,443,Charleston,WV
-24901,51036,Ronceverte,WV,443,Charleston,WV
-24902,51036,Ronceverte,WV,443,Charleston,WV
-24910,51036,Ronceverte,WV,443,Charleston,WV
-24915,51007,Elkins,WV,445,Morgantown,WV
-24916,51036,Ronceverte,WV,443,Charleston,WV
-24918,51031,Princeton,WV,432,Roanoke,VA
-24920,51007,Elkins,WV,445,Morgantown,WV
-24924,51021,Marlinton,WV,427,Charlottesville,VA
-24925,51036,Ronceverte,WV,443,Charleston,WV
-24927,51021,Marlinton,WV,427,Charlottesville,VA
-24931,51036,Ronceverte,WV,443,Charleston,WV
-24934,51021,Marlinton,WV,427,Charlottesville,VA
-24935,51013,Hinton,WV,443,Charleston,WV
-24938,51036,Ronceverte,WV,443,Charleston,WV
-24941,51036,Ronceverte,WV,443,Charleston,WV
-24943,51036,Ronceverte,WV,443,Charleston,WV
-24944,51007,Elkins,WV,445,Morgantown,WV
-24945,51031,Princeton,WV,432,Roanoke,VA
-24946,51036,Ronceverte,WV,443,Charleston,WV
-24951,51031,Princeton,WV,432,Roanoke,VA
-24954,51021,Marlinton,WV,427,Charlottesville,VA
-24957,51036,Ronceverte,WV,443,Charleston,WV
-24962,51013,Hinton,WV,443,Charleston,WV
-24963,49040,Pearisburg,VA,432,Roanoke,VA
-24966,51036,Ronceverte,WV,443,Charleston,WV
-24970,51036,Ronceverte,WV,443,Charleston,WV
-24974,51036,Ronceverte,WV,443,Charleston,WV
-24976,51036,Ronceverte,WV,443,Charleston,WV
-24977,51036,Ronceverte,WV,443,Charleston,WV
-24981,51013,Hinton,WV,443,Charleston,WV
-24983,51036,Ronceverte,WV,443,Charleston,WV
-24984,51036,Ronceverte,WV,443,Charleston,WV
-24985,51013,Hinton,WV,443,Charleston,WV
-24986,51036,Ronceverte,WV,443,Charleston,WV
-24991,51036,Ronceverte,WV,443,Charleston,WV
-24993,51036,Ronceverte,WV,443,Charleston,WV
-25002,51023,Montgomery,WV,443,Charleston,WV
-25003,51005,Charleston,WV,443,Charleston,WV
-25005,51005,Charleston,WV,443,Charleston,WV
-25007,51001,Beckley,WV,443,Charleston,WV
-25008,51001,Beckley,WV,443,Charleston,WV
-25009,51005,Charleston,WV,443,Charleston,WV
-25011,51038,South Charleston,WV,443,Charleston,WV
-25015,51005,Charleston,WV,443,Charleston,WV
-25019,51005,Charleston,WV,443,Charleston,WV
-25021,51005,Charleston,WV,443,Charleston,WV
-25022,51018,Logan,WV,443,Charleston,WV
-25024,51005,Charleston,WV,443,Charleston,WV
-25025,51005,Charleston,WV,443,Charleston,WV
-25026,51005,Charleston,WV,443,Charleston,WV
-25028,51005,Charleston,WV,443,Charleston,WV
-25030,51005,Charleston,WV,443,Charleston,WV
-25031,51023,Montgomery,WV,443,Charleston,WV
-25033,51015,Hurricane,WV,443,Charleston,WV
-25035,51005,Charleston,WV,443,Charleston,WV
-25036,51023,Montgomery,WV,443,Charleston,WV
-25039,51005,Charleston,WV,443,Charleston,WV
-25040,51023,Montgomery,WV,443,Charleston,WV
-25043,51005,Charleston,WV,443,Charleston,WV
-25044,51001,Beckley,WV,443,Charleston,WV
-25045,51005,Charleston,WV,443,Charleston,WV
-25047,51018,Logan,WV,443,Charleston,WV
-25048,51001,Beckley,WV,443,Charleston,WV
-25049,51005,Charleston,WV,443,Charleston,WV
-25051,51005,Charleston,WV,443,Charleston,WV
-25053,51005,Charleston,WV,443,Charleston,WV
-25054,51005,Charleston,WV,443,Charleston,WV
-25057,51023,Montgomery,WV,443,Charleston,WV
-25059,51005,Charleston,WV,443,Charleston,WV
-25060,51001,Beckley,WV,443,Charleston,WV
-25061,51005,Charleston,WV,443,Charleston,WV
-25062,51001,Beckley,WV,443,Charleston,WV
-25063,51005,Charleston,WV,443,Charleston,WV
-25064,51038,South Charleston,WV,443,Charleston,WV
-25067,51005,Charleston,WV,443,Charleston,WV
-25070,51015,Hurricane,WV,443,Charleston,WV
-25071,51005,Charleston,WV,443,Charleston,WV
-25075,51005,Charleston,WV,443,Charleston,WV
-25076,51018,Logan,WV,443,Charleston,WV
-25079,51005,Charleston,WV,443,Charleston,WV
-25081,51005,Charleston,WV,443,Charleston,WV
-25082,51015,Hurricane,WV,443,Charleston,WV
-25083,51005,Charleston,WV,443,Charleston,WV
-25085,51023,Montgomery,WV,443,Charleston,WV
-25086,51005,Charleston,WV,443,Charleston,WV
-25088,51005,Charleston,WV,443,Charleston,WV
-25090,51023,Montgomery,WV,443,Charleston,WV
-25093,51005,Charleston,WV,443,Charleston,WV
-25102,51005,Charleston,WV,443,Charleston,WV
-25103,51005,Charleston,WV,443,Charleston,WV
-25106,51030,Point Pleasant,WV,444,Huntington,WV
-25107,51005,Charleston,WV,443,Charleston,WV
-25108,51005,Charleston,WV,443,Charleston,WV
-25109,51015,Hurricane,WV,443,Charleston,WV
-25110,51005,Charleston,WV,443,Charleston,WV
-25111,51005,Charleston,WV,443,Charleston,WV
-25112,51038,South Charleston,WV,443,Charleston,WV
-25113,51005,Charleston,WV,443,Charleston,WV
-25114,51005,Charleston,WV,443,Charleston,WV
-25115,51023,Montgomery,WV,443,Charleston,WV
-25118,51023,Montgomery,WV,443,Charleston,WV
-25119,51023,Montgomery,WV,443,Charleston,WV
-25121,51018,Logan,WV,443,Charleston,WV
-25123,51030,Point Pleasant,WV,444,Huntington,WV
-25124,51005,Charleston,WV,443,Charleston,WV
-25125,51005,Charleston,WV,443,Charleston,WV
-25126,51005,Charleston,WV,443,Charleston,WV
-25130,51005,Charleston,WV,443,Charleston,WV
-25132,51005,Charleston,WV,443,Charleston,WV
-25133,51005,Charleston,WV,443,Charleston,WV
-25134,51005,Charleston,WV,443,Charleston,WV
-25136,51023,Montgomery,WV,443,Charleston,WV
-25139,51023,Montgomery,WV,443,Charleston,WV
-25140,51001,Beckley,WV,443,Charleston,WV
-25141,51039,Spencer,WV,443,Charleston,WV
-25142,51005,Charleston,WV,443,Charleston,WV
-25143,51038,South Charleston,WV,443,Charleston,WV
-25148,51005,Charleston,WV,443,Charleston,WV
-25149,51005,Charleston,WV,443,Charleston,WV
-25152,51023,Montgomery,WV,443,Charleston,WV
-25154,51005,Charleston,WV,443,Charleston,WV
-25156,51005,Charleston,WV,443,Charleston,WV
-25159,51038,South Charleston,WV,443,Charleston,WV
-25160,51005,Charleston,WV,443,Charleston,WV
-25161,51023,Montgomery,WV,443,Charleston,WV
-25162,51005,Charleston,WV,443,Charleston,WV
-25164,51005,Charleston,WV,443,Charleston,WV
-25165,51005,Charleston,WV,443,Charleston,WV
-25168,51015,Hurricane,WV,443,Charleston,WV
-25169,51005,Charleston,WV,443,Charleston,WV
-25173,51023,Montgomery,WV,443,Charleston,WV
-25174,51001,Beckley,WV,443,Charleston,WV
-25177,51038,South Charleston,WV,443,Charleston,WV
-25180,51001,Beckley,WV,443,Charleston,WV
-25181,51005,Charleston,WV,443,Charleston,WV
-25183,51018,Logan,WV,443,Charleston,WV
-25185,51023,Montgomery,WV,443,Charleston,WV
-25186,51023,Montgomery,WV,443,Charleston,WV
-25187,51030,Point Pleasant,WV,444,Huntington,WV
-25193,51005,Charleston,WV,443,Charleston,WV
-25201,51005,Charleston,WV,443,Charleston,WV
-25202,51038,South Charleston,WV,443,Charleston,WV
-25203,51005,Charleston,WV,443,Charleston,WV
-25204,51005,Charleston,WV,443,Charleston,WV
-25205,51005,Charleston,WV,443,Charleston,WV
-25206,51005,Charleston,WV,443,Charleston,WV
-25208,51005,Charleston,WV,443,Charleston,WV
-25209,51001,Beckley,WV,443,Charleston,WV
-25211,51040,Summersville,WV,443,Charleston,WV
-25213,51015,Hurricane,WV,443,Charleston,WV
-25214,51005,Charleston,WV,443,Charleston,WV
-25231,51005,Charleston,WV,443,Charleston,WV
-25234,51039,Spencer,WV,443,Charleston,WV
-25235,51039,Spencer,WV,443,Charleston,WV
-25239,51034,Ripley,WV,443,Charleston,WV
-25241,51034,Ripley,WV,443,Charleston,WV
-25243,51039,Spencer,WV,443,Charleston,WV
-25244,51034,Ripley,WV,443,Charleston,WV
-25245,51034,Ripley,WV,443,Charleston,WV
-25247,51030,Point Pleasant,WV,444,Huntington,WV
-25248,51034,Ripley,WV,443,Charleston,WV
-25251,51039,Spencer,WV,443,Charleston,WV
-25252,51034,Ripley,WV,443,Charleston,WV
-25253,51030,Point Pleasant,WV,444,Huntington,WV
-25259,51039,Spencer,WV,443,Charleston,WV
-25260,51030,Point Pleasant,WV,444,Huntington,WV
-25261,51012,Grantsville,WV,443,Charleston,WV
-25262,51034,Ripley,WV,443,Charleston,WV
-25264,51030,Point Pleasant,WV,444,Huntington,WV
-25265,51030,Point Pleasant,WV,444,Huntington,WV
-25266,51005,Charleston,WV,443,Charleston,WV
-25267,51012,Grantsville,WV,443,Charleston,WV
-25268,51039,Spencer,WV,443,Charleston,WV
-25270,51039,Spencer,WV,443,Charleston,WV
-25271,51034,Ripley,WV,443,Charleston,WV
-25275,51034,Ripley,WV,443,Charleston,WV
-25276,51039,Spencer,WV,443,Charleston,WV
-25285,51005,Charleston,WV,443,Charleston,WV
-25286,51039,Spencer,WV,443,Charleston,WV
-25287,51030,Point Pleasant,WV,444,Huntington,WV
-25301,51005,Charleston,WV,443,Charleston,WV
-25302,51005,Charleston,WV,443,Charleston,WV
-25303,51005,Charleston,WV,443,Charleston,WV
-25304,51005,Charleston,WV,443,Charleston,WV
-25305,51005,Charleston,WV,443,Charleston,WV
-25306,51005,Charleston,WV,443,Charleston,WV
-25309,51038,South Charleston,WV,443,Charleston,WV
-25311,51005,Charleston,WV,443,Charleston,WV
-25312,51005,Charleston,WV,443,Charleston,WV
-25313,51005,Charleston,WV,443,Charleston,WV
-25314,51005,Charleston,WV,443,Charleston,WV
-25315,51005,Charleston,WV,443,Charleston,WV
-25317,51005,Charleston,WV,443,Charleston,WV
-25320,51005,Charleston,WV,443,Charleston,WV
-25321,51005,Charleston,WV,443,Charleston,WV
-25322,51005,Charleston,WV,443,Charleston,WV
-25323,51005,Charleston,WV,443,Charleston,WV
-25324,51005,Charleston,WV,443,Charleston,WV
-25325,51005,Charleston,WV,443,Charleston,WV
-25326,51005,Charleston,WV,443,Charleston,WV
-25327,51005,Charleston,WV,443,Charleston,WV
-25328,51005,Charleston,WV,443,Charleston,WV
-25329,51005,Charleston,WV,443,Charleston,WV
-25330,51005,Charleston,WV,443,Charleston,WV
-25331,51005,Charleston,WV,443,Charleston,WV
-25332,51005,Charleston,WV,443,Charleston,WV
-25333,51005,Charleston,WV,443,Charleston,WV
-25334,51005,Charleston,WV,443,Charleston,WV
-25335,51005,Charleston,WV,443,Charleston,WV
-25336,51005,Charleston,WV,443,Charleston,WV
-25337,51005,Charleston,WV,443,Charleston,WV
-25338,51005,Charleston,WV,443,Charleston,WV
-25339,51005,Charleston,WV,443,Charleston,WV
-25350,51005,Charleston,WV,443,Charleston,WV
-25356,51005,Charleston,WV,443,Charleston,WV
-25357,51005,Charleston,WV,443,Charleston,WV
-25358,51038,South Charleston,WV,443,Charleston,WV
-25360,51005,Charleston,WV,443,Charleston,WV
-25361,51005,Charleston,WV,443,Charleston,WV
-25362,51005,Charleston,WV,443,Charleston,WV
-25364,51005,Charleston,WV,443,Charleston,WV
-25365,51005,Charleston,WV,443,Charleston,WV
-25375,51005,Charleston,WV,443,Charleston,WV
-25387,51005,Charleston,WV,443,Charleston,WV
-25389,51005,Charleston,WV,443,Charleston,WV
-25392,51005,Charleston,WV,443,Charleston,WV
-25396,51005,Charleston,WV,443,Charleston,WV
-25401,51022,Martinsburg,WV,435,Winchester,VA
-25402,51022,Martinsburg,WV,435,Winchester,VA
-25403,51022,Martinsburg,WV,435,Winchester,VA
-25404,51022,Martinsburg,WV,435,Winchester,VA
-25405,51022,Martinsburg,WV,435,Winchester,VA
-25410,51032,Ranson,WV,435,Winchester,VA
-25411,51002,Berkeley Springs,WV,435,Winchester,VA
-25413,49063,Winchester,VA,435,Winchester,VA
-25414,51032,Ranson,WV,435,Winchester,VA
-25419,51022,Martinsburg,WV,435,Winchester,VA
-25420,51022,Martinsburg,WV,435,Winchester,VA
-25421,51022,Martinsburg,WV,435,Winchester,VA
-25422,51002,Berkeley Springs,WV,435,Winchester,VA
-25423,51032,Ranson,WV,435,Winchester,VA
-25425,51032,Ranson,WV,435,Winchester,VA
-25427,51022,Martinsburg,WV,435,Winchester,VA
-25428,51022,Martinsburg,WV,435,Winchester,VA
-25430,51032,Ranson,WV,435,Winchester,VA
-25431,21010,Cumberland,MD,113,Washington,DC
-25432,51032,Ranson,WV,435,Winchester,VA
-25434,21010,Cumberland,MD,113,Washington,DC
-25437,49063,Winchester,VA,435,Winchester,VA
-25438,51032,Ranson,WV,435,Winchester,VA
-25440,49063,Winchester,VA,435,Winchester,VA
-25441,51032,Ranson,WV,435,Winchester,VA
-25442,51032,Ranson,WV,435,Winchester,VA
-25443,51022,Martinsburg,WV,435,Winchester,VA
-25444,21010,Cumberland,MD,113,Washington,DC
-25446,51032,Ranson,WV,435,Winchester,VA
-25501,51005,Charleston,WV,443,Charleston,WV
-25502,51030,Point Pleasant,WV,444,Huntington,WV
-25503,51014,Huntington,WV,444,Huntington,WV
-25504,51014,Huntington,WV,444,Huntington,WV
-25505,51018,Logan,WV,443,Charleston,WV
-25506,51014,Huntington,WV,444,Huntington,WV
-25507,51014,Huntington,WV,444,Huntington,WV
-25508,51018,Logan,WV,443,Charleston,WV
-25510,51014,Huntington,WV,444,Huntington,WV
-25511,51014,Huntington,WV,444,Huntington,WV
-25512,51014,Huntington,WV,444,Huntington,WV
-25514,18048,Louisa,KY,444,Huntington,WV
-25515,51030,Point Pleasant,WV,444,Huntington,WV
-25517,51014,Huntington,WV,444,Huntington,WV
-25520,51014,Huntington,WV,444,Huntington,WV
-25521,51038,South Charleston,WV,443,Charleston,WV
-25523,51014,Huntington,WV,444,Huntington,WV
-25524,51014,Huntington,WV,444,Huntington,WV
-25526,51015,Hurricane,WV,443,Charleston,WV
-25529,51005,Charleston,WV,443,Charleston,WV
-25530,51014,Huntington,WV,444,Huntington,WV
-25534,51014,Huntington,WV,444,Huntington,WV
-25535,51014,Huntington,WV,444,Huntington,WV
-25537,51014,Huntington,WV,444,Huntington,WV
-25540,51014,Huntington,WV,444,Huntington,WV
-25541,51014,Huntington,WV,444,Huntington,WV
-25544,51014,Huntington,WV,444,Huntington,WV
-25545,51014,Huntington,WV,444,Huntington,WV
-25547,51018,Logan,WV,443,Charleston,WV
-25550,51030,Point Pleasant,WV,444,Huntington,WV
-25555,51014,Huntington,WV,444,Huntington,WV
-25557,51014,Huntington,WV,444,Huntington,WV
-25559,51014,Huntington,WV,444,Huntington,WV
-25560,51015,Hurricane,WV,443,Charleston,WV
-25562,51014,Huntington,WV,444,Huntington,WV
-25564,51038,South Charleston,WV,443,Charleston,WV
-25565,51014,Huntington,WV,444,Huntington,WV
-25567,51038,South Charleston,WV,443,Charleston,WV
-25569,51015,Hurricane,WV,443,Charleston,WV
-25570,51014,Huntington,WV,444,Huntington,WV
-25571,51014,Huntington,WV,444,Huntington,WV
-25572,51005,Charleston,WV,443,Charleston,WV
-25573,51038,South Charleston,WV,443,Charleston,WV
-25601,51018,Logan,WV,443,Charleston,WV
-25606,51020,Man,WV,443,Charleston,WV
-25607,51020,Man,WV,443,Charleston,WV
-25608,51018,Logan,WV,443,Charleston,WV
-25611,51020,Man,WV,443,Charleston,WV
-25612,51018,Logan,WV,443,Charleston,WV
-25614,51018,Logan,WV,443,Charleston,WV
-25617,51020,Man,WV,443,Charleston,WV
-25621,51018,Logan,WV,443,Charleston,WV
-25624,51018,Logan,WV,443,Charleston,WV
-25625,51018,Logan,WV,443,Charleston,WV
-25628,51020,Man,WV,443,Charleston,WV
-25630,51020,Man,WV,443,Charleston,WV
-25632,51018,Logan,WV,443,Charleston,WV
-25634,51020,Man,WV,443,Charleston,WV
-25635,51020,Man,WV,443,Charleston,WV
-25637,51018,Logan,WV,443,Charleston,WV
-25638,51018,Logan,WV,443,Charleston,WV
-25639,51018,Logan,WV,443,Charleston,WV
-25644,51018,Logan,WV,443,Charleston,WV
-25646,51018,Logan,WV,443,Charleston,WV
-25647,51018,Logan,WV,443,Charleston,WV
-25649,51018,Logan,WV,443,Charleston,WV
-25650,51020,Man,WV,443,Charleston,WV
-25651,51018,Logan,WV,443,Charleston,WV
-25652,51018,Logan,WV,443,Charleston,WV
-25653,51018,Logan,WV,443,Charleston,WV
-25654,51018,Logan,WV,443,Charleston,WV
-25661,51045,Williamson,WV,443,Charleston,WV
-25665,51045,Williamson,WV,443,Charleston,WV
-25666,51018,Logan,WV,443,Charleston,WV
-25667,51045,Williamson,WV,443,Charleston,WV
-25669,18048,Louisa,KY,444,Huntington,WV
-25670,51045,Williamson,WV,443,Charleston,WV
-25671,51018,Logan,WV,443,Charleston,WV
-25672,18080,South Williamson,KY,204,Lexington,KY
-25674,51045,Williamson,WV,443,Charleston,WV
-25676,51045,Williamson,WV,443,Charleston,WV
-25678,51045,Williamson,WV,443,Charleston,WV
-25685,51045,Williamson,WV,443,Charleston,WV
-25686,18080,South Williamson,KY,204,Lexington,KY
-25688,51045,Williamson,WV,443,Charleston,WV
-25690,51045,Williamson,WV,443,Charleston,WV
-25691,51045,Williamson,WV,443,Charleston,WV
-25692,51045,Williamson,WV,443,Charleston,WV
-25696,51045,Williamson,WV,443,Charleston,WV
-25699,51018,Logan,WV,443,Charleston,WV
-25701,51014,Huntington,WV,444,Huntington,WV
-25702,51014,Huntington,WV,444,Huntington,WV
-25703,51014,Huntington,WV,444,Huntington,WV
-25704,51014,Huntington,WV,444,Huntington,WV
-25705,51014,Huntington,WV,444,Huntington,WV
-25706,51014,Huntington,WV,444,Huntington,WV
-25707,51014,Huntington,WV,444,Huntington,WV
-25708,51014,Huntington,WV,444,Huntington,WV
-25709,51014,Huntington,WV,444,Huntington,WV
-25710,51014,Huntington,WV,444,Huntington,WV
-25711,51014,Huntington,WV,444,Huntington,WV
-25712,51014,Huntington,WV,444,Huntington,WV
-25713,51014,Huntington,WV,444,Huntington,WV
-25714,51014,Huntington,WV,444,Huntington,WV
-25715,51014,Huntington,WV,444,Huntington,WV
-25716,51014,Huntington,WV,444,Huntington,WV
-25717,51014,Huntington,WV,444,Huntington,WV
-25718,51014,Huntington,WV,444,Huntington,WV
-25719,51014,Huntington,WV,444,Huntington,WV
-25720,51014,Huntington,WV,444,Huntington,WV
-25721,51014,Huntington,WV,444,Huntington,WV
-25722,51014,Huntington,WV,444,Huntington,WV
-25723,51014,Huntington,WV,444,Huntington,WV
-25724,51014,Huntington,WV,444,Huntington,WV
-25725,51014,Huntington,WV,444,Huntington,WV
-25726,51014,Huntington,WV,444,Huntington,WV
-25727,51014,Huntington,WV,444,Huntington,WV
-25728,51014,Huntington,WV,444,Huntington,WV
-25729,51014,Huntington,WV,444,Huntington,WV
-25755,51014,Huntington,WV,444,Huntington,WV
-25770,51014,Huntington,WV,444,Huntington,WV
-25771,51014,Huntington,WV,444,Huntington,WV
-25772,51014,Huntington,WV,444,Huntington,WV
-25773,51014,Huntington,WV,444,Huntington,WV
-25774,51014,Huntington,WV,444,Huntington,WV
-25775,51014,Huntington,WV,444,Huntington,WV
-25776,51014,Huntington,WV,444,Huntington,WV
-25777,51014,Huntington,WV,444,Huntington,WV
-25778,51014,Huntington,WV,444,Huntington,WV
-25779,51014,Huntington,WV,444,Huntington,WV
-25801,51001,Beckley,WV,443,Charleston,WV
-25802,51001,Beckley,WV,443,Charleston,WV
-25810,51001,Beckley,WV,443,Charleston,WV
-25811,51001,Beckley,WV,443,Charleston,WV
-25812,51026,Oak Hill,WV,443,Charleston,WV
-25813,51001,Beckley,WV,443,Charleston,WV
-25817,51001,Beckley,WV,443,Charleston,WV
-25818,51001,Beckley,WV,443,Charleston,WV
-25820,51001,Beckley,WV,443,Charleston,WV
-25823,51001,Beckley,WV,443,Charleston,WV
-25825,51001,Beckley,WV,443,Charleston,WV
-25826,51031,Princeton,WV,432,Roanoke,VA
-25827,51001,Beckley,WV,443,Charleston,WV
-25831,51001,Beckley,WV,443,Charleston,WV
-25832,51001,Beckley,WV,443,Charleston,WV
-25833,51026,Oak Hill,WV,443,Charleston,WV
-25836,51001,Beckley,WV,443,Charleston,WV
-25837,51026,Oak Hill,WV,443,Charleston,WV
-25839,51001,Beckley,WV,443,Charleston,WV
-25840,51026,Oak Hill,WV,443,Charleston,WV
-25841,51001,Beckley,WV,443,Charleston,WV
-25843,51001,Beckley,WV,443,Charleston,WV
-25844,51001,Beckley,WV,443,Charleston,WV
-25845,51001,Beckley,WV,443,Charleston,WV
-25846,51001,Beckley,WV,443,Charleston,WV
-25848,51001,Beckley,WV,443,Charleston,WV
-25849,51001,Beckley,WV,443,Charleston,WV
-25851,51001,Beckley,WV,443,Charleston,WV
-25853,51001,Beckley,WV,443,Charleston,WV
-25854,51026,Oak Hill,WV,443,Charleston,WV
-25855,51001,Beckley,WV,443,Charleston,WV
-25857,51001,Beckley,WV,443,Charleston,WV
-25860,51001,Beckley,WV,443,Charleston,WV
-25862,51026,Oak Hill,WV,443,Charleston,WV
-25864,51001,Beckley,WV,443,Charleston,WV
-25865,51001,Beckley,WV,443,Charleston,WV
-25866,51026,Oak Hill,WV,443,Charleston,WV
-25868,51026,Oak Hill,WV,443,Charleston,WV
-25870,51001,Beckley,WV,443,Charleston,WV
-25871,51001,Beckley,WV,443,Charleston,WV
-25873,51001,Beckley,WV,443,Charleston,WV
-25875,51001,Beckley,WV,443,Charleston,WV
-25876,51001,Beckley,WV,443,Charleston,WV
-25878,51001,Beckley,WV,443,Charleston,WV
-25879,51026,Oak Hill,WV,443,Charleston,WV
-25880,51001,Beckley,WV,443,Charleston,WV
-25882,51001,Beckley,WV,443,Charleston,WV
-25888,51001,Beckley,WV,443,Charleston,WV
-25901,51026,Oak Hill,WV,443,Charleston,WV
-25902,51001,Beckley,WV,443,Charleston,WV
-25904,51001,Beckley,WV,443,Charleston,WV
-25906,51001,Beckley,WV,443,Charleston,WV
-25907,51001,Beckley,WV,443,Charleston,WV
-25908,51001,Beckley,WV,443,Charleston,WV
-25909,51001,Beckley,WV,443,Charleston,WV
-25911,51001,Beckley,WV,443,Charleston,WV
-25913,51001,Beckley,WV,443,Charleston,WV
-25915,51001,Beckley,WV,443,Charleston,WV
-25916,51001,Beckley,WV,443,Charleston,WV
-25917,51026,Oak Hill,WV,443,Charleston,WV
-25918,51001,Beckley,WV,443,Charleston,WV
-25919,51001,Beckley,WV,443,Charleston,WV
-25920,51001,Beckley,WV,443,Charleston,WV
-25921,51001,Beckley,WV,443,Charleston,WV
-25922,51031,Princeton,WV,432,Roanoke,VA
-25927,51001,Beckley,WV,443,Charleston,WV
-25928,51001,Beckley,WV,443,Charleston,WV
-25932,51001,Beckley,WV,443,Charleston,WV
-25936,51026,Oak Hill,WV,443,Charleston,WV
-25938,51026,Oak Hill,WV,443,Charleston,WV
-25942,51026,Oak Hill,WV,443,Charleston,WV
-25943,51001,Beckley,WV,443,Charleston,WV
-25951,51013,Hinton,WV,443,Charleston,WV
-25958,51036,Ronceverte,WV,443,Charleston,WV
-25962,51036,Ronceverte,WV,443,Charleston,WV
-25966,51013,Hinton,WV,443,Charleston,WV
-25969,51013,Hinton,WV,443,Charleston,WV
-25971,51031,Princeton,WV,432,Roanoke,VA
-25972,51036,Ronceverte,WV,443,Charleston,WV
-25976,51036,Ronceverte,WV,443,Charleston,WV
-25977,51013,Hinton,WV,443,Charleston,WV
-25978,51013,Hinton,WV,443,Charleston,WV
-25979,51031,Princeton,WV,432,Roanoke,VA
-25981,51036,Ronceverte,WV,443,Charleston,WV
-25984,51036,Ronceverte,WV,443,Charleston,WV
-25985,51013,Hinton,WV,443,Charleston,WV
-25986,51036,Ronceverte,WV,443,Charleston,WV
-25989,51001,Beckley,WV,443,Charleston,WV
-26003,51044,Wheeling,WV,357,Pittsburgh,PA
-26030,51044,Wheeling,WV,357,Pittsburgh,PA
-26031,51044,Wheeling,WV,357,Pittsburgh,PA
-26032,51044,Wheeling,WV,357,Pittsburgh,PA
-26033,51010,Glen Dale,WV,357,Pittsburgh,PA
-26034,36037,East Liverpool,OH,357,Pittsburgh,PA
-26035,51042,Weirton,WV,357,Pittsburgh,PA
-26036,51044,Wheeling,WV,357,Pittsburgh,PA
-26037,51042,Weirton,WV,357,Pittsburgh,PA
-26038,51010,Glen Dale,WV,357,Pittsburgh,PA
-26039,51010,Glen Dale,WV,357,Pittsburgh,PA
-26040,51044,Wheeling,WV,357,Pittsburgh,PA
-26041,51010,Glen Dale,WV,357,Pittsburgh,PA
-26047,51042,Weirton,WV,357,Pittsburgh,PA
-26050,36037,East Liverpool,OH,357,Pittsburgh,PA
-26055,51010,Glen Dale,WV,357,Pittsburgh,PA
-26056,36037,East Liverpool,OH,357,Pittsburgh,PA
-26058,51044,Wheeling,WV,357,Pittsburgh,PA
-26059,51044,Wheeling,WV,357,Pittsburgh,PA
-26060,51044,Wheeling,WV,357,Pittsburgh,PA
-26062,51042,Weirton,WV,357,Pittsburgh,PA
-26070,51044,Wheeling,WV,357,Pittsburgh,PA
-26074,51044,Wheeling,WV,357,Pittsburgh,PA
-26075,51044,Wheeling,WV,357,Pittsburgh,PA
-26101,51027,Parkersburg,WV,443,Charleston,WV
-26102,51027,Parkersburg,WV,443,Charleston,WV
-26103,51027,Parkersburg,WV,443,Charleston,WV
-26104,51027,Parkersburg,WV,443,Charleston,WV
-26105,51027,Parkersburg,WV,443,Charleston,WV
-26106,51027,Parkersburg,WV,443,Charleston,WV
-26120,51027,Parkersburg,WV,443,Charleston,WV
-26121,51027,Parkersburg,WV,443,Charleston,WV
-26133,51027,Parkersburg,WV,443,Charleston,WV
-26134,51027,Parkersburg,WV,443,Charleston,WV
-26136,51012,Grantsville,WV,443,Charleston,WV
-26137,51027,Parkersburg,WV,443,Charleston,WV
-26138,51027,Parkersburg,WV,443,Charleston,WV
-26141,51027,Parkersburg,WV,443,Charleston,WV
-26142,51027,Parkersburg,WV,443,Charleston,WV
-26143,51027,Parkersburg,WV,443,Charleston,WV
-26146,51027,Parkersburg,WV,443,Charleston,WV
-26147,51012,Grantsville,WV,443,Charleston,WV
-26148,51027,Parkersburg,WV,443,Charleston,WV
-26149,51025,New Martinsville,WV,357,Pittsburgh,PA
-26150,51027,Parkersburg,WV,443,Charleston,WV
-26151,51039,Spencer,WV,443,Charleston,WV
-26152,51027,Parkersburg,WV,443,Charleston,WV
-26155,51025,New Martinsville,WV,357,Pittsburgh,PA
-26159,51025,New Martinsville,WV,357,Pittsburgh,PA
-26160,51027,Parkersburg,WV,443,Charleston,WV
-26161,51027,Parkersburg,WV,443,Charleston,WV
-26162,51025,New Martinsville,WV,357,Pittsburgh,PA
-26164,51034,Ripley,WV,443,Charleston,WV
-26167,51025,New Martinsville,WV,357,Pittsburgh,PA
-26169,51027,Parkersburg,WV,443,Charleston,WV
-26170,51027,Parkersburg,WV,443,Charleston,WV
-26175,51037,Sistersville,WV,443,Charleston,WV
-26178,51027,Parkersburg,WV,443,Charleston,WV
-26180,51027,Parkersburg,WV,443,Charleston,WV
-26181,51027,Parkersburg,WV,443,Charleston,WV
-26184,51027,Parkersburg,WV,443,Charleston,WV
-26187,36065,Marietta,OH,329,Columbus,OH
-26201,51004,Buckhannon,WV,443,Charleston,WV
-26202,51033,Richwood,WV,443,Charleston,WV
-26203,51040,Summersville,WV,443,Charleston,WV
-26205,51040,Summersville,WV,443,Charleston,WV
-26206,51040,Summersville,WV,443,Charleston,WV
-26208,51040,Summersville,WV,443,Charleston,WV
-26209,51021,Marlinton,WV,427,Charlottesville,VA
-26210,51004,Buckhannon,WV,443,Charleston,WV
-26215,51004,Buckhannon,WV,443,Charleston,WV
-26217,51041,Webster Springs,WV,443,Charleston,WV
-26218,51004,Buckhannon,WV,443,Charleston,WV
-26219,51004,Buckhannon,WV,443,Charleston,WV
-26222,51004,Buckhannon,WV,443,Charleston,WV
-26224,51007,Elkins,WV,445,Morgantown,WV
-26228,51043,Weston,WV,443,Charleston,WV
-26229,51004,Buckhannon,WV,443,Charleston,WV
-26230,51004,Buckhannon,WV,443,Charleston,WV
-26234,51004,Buckhannon,WV,443,Charleston,WV
-26236,51004,Buckhannon,WV,443,Charleston,WV
-26237,51004,Buckhannon,WV,443,Charleston,WV
-26238,51029,Philippi,WV,445,Morgantown,WV
-26241,51007,Elkins,WV,445,Morgantown,WV
-26250,51007,Elkins,WV,445,Morgantown,WV
-26253,51007,Elkins,WV,445,Morgantown,WV
-26254,51007,Elkins,WV,445,Morgantown,WV
-26257,51007,Elkins,WV,445,Morgantown,WV
-26259,51007,Elkins,WV,445,Morgantown,WV
-26260,51007,Elkins,WV,445,Morgantown,WV
-26261,51033,Richwood,WV,443,Charleston,WV
-26263,51007,Elkins,WV,445,Morgantown,WV
-26264,51007,Elkins,WV,445,Morgantown,WV
-26266,51040,Summersville,WV,443,Charleston,WV
-26267,51007,Elkins,WV,445,Morgantown,WV
-26268,51007,Elkins,WV,445,Morgantown,WV
-26269,51007,Elkins,WV,445,Morgantown,WV
-26270,51007,Elkins,WV,445,Morgantown,WV
-26271,51007,Elkins,WV,445,Morgantown,WV
-26273,51007,Elkins,WV,445,Morgantown,WV
-26275,51007,Elkins,WV,445,Morgantown,WV
-26276,51007,Elkins,WV,445,Morgantown,WV
-26278,51007,Elkins,WV,445,Morgantown,WV
-26280,51007,Elkins,WV,445,Morgantown,WV
-26282,51007,Elkins,WV,445,Morgantown,WV
-26283,51007,Elkins,WV,445,Morgantown,WV
-26285,51007,Elkins,WV,445,Morgantown,WV
-26287,51007,Elkins,WV,445,Morgantown,WV
-26288,51041,Webster Springs,WV,443,Charleston,WV
-26289,51007,Elkins,WV,445,Morgantown,WV
-26291,51021,Marlinton,WV,427,Charlottesville,VA
-26292,51007,Elkins,WV,445,Morgantown,WV
-26293,51007,Elkins,WV,445,Morgantown,WV
-26294,51007,Elkins,WV,445,Morgantown,WV
-26296,51007,Elkins,WV,445,Morgantown,WV
-26298,51041,Webster Springs,WV,443,Charleston,WV
-26301,51006,Clarksburg,WV,445,Morgantown,WV
-26302,51006,Clarksburg,WV,445,Morgantown,WV
-26306,51006,Clarksburg,WV,445,Morgantown,WV
-26320,51025,New Martinsville,WV,357,Pittsburgh,PA
-26321,51043,Weston,WV,443,Charleston,WV
-26323,51006,Clarksburg,WV,445,Morgantown,WV
-26325,51027,Parkersburg,WV,443,Charleston,WV
-26327,51027,Parkersburg,WV,443,Charleston,WV
-26330,51006,Clarksburg,WV,445,Morgantown,WV
-26335,51043,Weston,WV,443,Charleston,WV
-26337,51027,Parkersburg,WV,443,Charleston,WV
-26338,51043,Weston,WV,443,Charleston,WV
-26339,51006,Clarksburg,WV,445,Morgantown,WV
-26342,51043,Weston,WV,443,Charleston,WV
-26343,51043,Weston,WV,443,Charleston,WV
-26346,51027,Parkersburg,WV,443,Charleston,WV
-26347,51006,Clarksburg,WV,445,Morgantown,WV
-26348,51006,Clarksburg,WV,445,Morgantown,WV
-26349,51029,Philippi,WV,445,Morgantown,WV
-26351,51043,Weston,WV,443,Charleston,WV
-26354,51011,Grafton,WV,445,Morgantown,WV
-26361,51006,Clarksburg,WV,445,Morgantown,WV
-26362,51027,Parkersburg,WV,443,Charleston,WV
-26366,51006,Clarksburg,WV,445,Morgantown,WV
-26369,51006,Clarksburg,WV,445,Morgantown,WV
-26372,51004,Buckhannon,WV,443,Charleston,WV
-26374,51024,Morgantown,WV,445,Morgantown,WV
-26376,51043,Weston,WV,443,Charleston,WV
-26377,51025,New Martinsville,WV,357,Pittsburgh,PA
-26378,51043,Weston,WV,443,Charleston,WV
-26384,51043,Weston,WV,443,Charleston,WV
-26385,51006,Clarksburg,WV,445,Morgantown,WV
-26386,51006,Clarksburg,WV,445,Morgantown,WV
-26404,51006,Clarksburg,WV,445,Morgantown,WV
-26405,51029,Philippi,WV,445,Morgantown,WV
-26408,51006,Clarksburg,WV,445,Morgantown,WV
-26410,51024,Morgantown,WV,445,Morgantown,WV
-26411,51006,Clarksburg,WV,445,Morgantown,WV
-26412,51043,Weston,WV,443,Charleston,WV
-26415,51027,Parkersburg,WV,443,Charleston,WV
-26416,51029,Philippi,WV,445,Morgantown,WV
-26419,51025,New Martinsville,WV,357,Pittsburgh,PA
-26421,51027,Parkersburg,WV,443,Charleston,WV
-26422,51006,Clarksburg,WV,445,Morgantown,WV
-26424,51006,Clarksburg,WV,445,Morgantown,WV
-26425,51017,Kingwood,WV,445,Morgantown,WV
-26426,51006,Clarksburg,WV,445,Morgantown,WV
-26430,51043,Weston,WV,443,Charleston,WV
-26431,51006,Clarksburg,WV,445,Morgantown,WV
-26434,51025,New Martinsville,WV,357,Pittsburgh,PA
-26435,51006,Clarksburg,WV,445,Morgantown,WV
-26436,51006,Clarksburg,WV,445,Morgantown,WV
-26437,51025,New Martinsville,WV,357,Pittsburgh,PA
-26438,51006,Clarksburg,WV,445,Morgantown,WV
-26440,51024,Morgantown,WV,445,Morgantown,WV
-26443,51043,Weston,WV,443,Charleston,WV
-26444,51017,Kingwood,WV,445,Morgantown,WV
-26447,51043,Weston,WV,443,Charleston,WV
-26448,51006,Clarksburg,WV,445,Morgantown,WV
-26451,51006,Clarksburg,WV,445,Morgantown,WV
-26452,51043,Weston,WV,443,Charleston,WV
-26456,51006,Clarksburg,WV,445,Morgantown,WV
-26463,51006,Clarksburg,WV,445,Morgantown,WV
-26501,51024,Morgantown,WV,445,Morgantown,WV
-26502,51024,Morgantown,WV,445,Morgantown,WV
-26504,51024,Morgantown,WV,445,Morgantown,WV
-26505,51024,Morgantown,WV,445,Morgantown,WV
-26506,51024,Morgantown,WV,445,Morgantown,WV
-26507,51024,Morgantown,WV,445,Morgantown,WV
-26508,51024,Morgantown,WV,445,Morgantown,WV
-26519,51017,Kingwood,WV,445,Morgantown,WV
-26520,51024,Morgantown,WV,445,Morgantown,WV
-26521,51024,Morgantown,WV,445,Morgantown,WV
-26524,51024,Morgantown,WV,445,Morgantown,WV
-26525,51024,Morgantown,WV,445,Morgantown,WV
-26527,51024,Morgantown,WV,445,Morgantown,WV
-26531,51024,Morgantown,WV,445,Morgantown,WV
-26534,51024,Morgantown,WV,445,Morgantown,WV
-26537,51017,Kingwood,WV,445,Morgantown,WV
-26541,51024,Morgantown,WV,445,Morgantown,WV
-26542,51024,Morgantown,WV,445,Morgantown,WV
-26543,51024,Morgantown,WV,445,Morgantown,WV
-26544,51024,Morgantown,WV,445,Morgantown,WV
-26546,51024,Morgantown,WV,445,Morgantown,WV
-26547,51024,Morgantown,WV,445,Morgantown,WV
-26554,51008,Fairmont,WV,445,Morgantown,WV
-26555,51008,Fairmont,WV,445,Morgantown,WV
-26559,51008,Fairmont,WV,445,Morgantown,WV
-26560,51008,Fairmont,WV,445,Morgantown,WV
-26561,51025,New Martinsville,WV,357,Pittsburgh,PA
-26562,51024,Morgantown,WV,445,Morgantown,WV
-26563,51008,Fairmont,WV,445,Morgantown,WV
-26566,51008,Fairmont,WV,445,Morgantown,WV
-26568,51006,Clarksburg,WV,445,Morgantown,WV
-26570,51024,Morgantown,WV,445,Morgantown,WV
-26571,51008,Fairmont,WV,445,Morgantown,WV
-26572,51008,Fairmont,WV,445,Morgantown,WV
-26574,51008,Fairmont,WV,445,Morgantown,WV
-26575,51024,Morgantown,WV,445,Morgantown,WV
-26576,51008,Fairmont,WV,445,Morgantown,WV
-26578,51008,Fairmont,WV,445,Morgantown,WV
-26581,51025,New Martinsville,WV,357,Pittsburgh,PA
-26582,51008,Fairmont,WV,445,Morgantown,WV
-26585,51008,Fairmont,WV,445,Morgantown,WV
-26586,51008,Fairmont,WV,445,Morgantown,WV
-26587,51008,Fairmont,WV,445,Morgantown,WV
-26588,51008,Fairmont,WV,445,Morgantown,WV
-26590,51024,Morgantown,WV,445,Morgantown,WV
-26591,51008,Fairmont,WV,445,Morgantown,WV
-26601,51009,Gassaway,WV,443,Charleston,WV
-26610,51040,Summersville,WV,443,Charleston,WV
-26611,51043,Weston,WV,443,Charleston,WV
-26615,51009,Gassaway,WV,443,Charleston,WV
-26617,51040,Summersville,WV,443,Charleston,WV
-26619,51009,Gassaway,WV,443,Charleston,WV
-26621,51009,Gassaway,WV,443,Charleston,WV
-26623,51009,Gassaway,WV,443,Charleston,WV
-26624,51009,Gassaway,WV,443,Charleston,WV
-26627,51009,Gassaway,WV,443,Charleston,WV
-26629,51009,Gassaway,WV,443,Charleston,WV
-26631,51043,Weston,WV,443,Charleston,WV
-26636,51012,Grantsville,WV,443,Charleston,WV
-26638,51012,Grantsville,WV,443,Charleston,WV
-26651,51040,Summersville,WV,443,Charleston,WV
-26656,51023,Montgomery,WV,443,Charleston,WV
-26660,51040,Summersville,WV,443,Charleston,WV
-26662,51040,Summersville,WV,443,Charleston,WV
-26667,51040,Summersville,WV,443,Charleston,WV
-26671,51040,Summersville,WV,443,Charleston,WV
-26675,51040,Summersville,WV,443,Charleston,WV
-26676,51040,Summersville,WV,443,Charleston,WV
-26678,51040,Summersville,WV,443,Charleston,WV
-26679,51040,Summersville,WV,443,Charleston,WV
-26680,51036,Ronceverte,WV,443,Charleston,WV
-26681,51040,Summersville,WV,443,Charleston,WV
-26684,51040,Summersville,WV,443,Charleston,WV
-26690,51023,Montgomery,WV,443,Charleston,WV
-26691,51040,Summersville,WV,443,Charleston,WV
-26704,49063,Winchester,VA,435,Winchester,VA
-26705,21023,Oakland,MD,445,Morgantown,WV
-26707,21023,Oakland,MD,445,Morgantown,WV
-26710,21010,Cumberland,MD,113,Washington,DC
-26711,49063,Winchester,VA,435,Winchester,VA
-26714,49063,Winchester,VA,435,Winchester,VA
-26716,21023,Oakland,MD,445,Morgantown,WV
-26717,21010,Cumberland,MD,113,Washington,DC
-26719,21010,Cumberland,MD,113,Washington,DC
-26720,21023,Oakland,MD,445,Morgantown,WV
-26722,21010,Cumberland,MD,113,Washington,DC
-26726,21010,Cumberland,MD,113,Washington,DC
-26731,51028,Petersburg,WV,435,Winchester,VA
-26739,51028,Petersburg,WV,435,Winchester,VA
-26743,21010,Cumberland,MD,113,Washington,DC
-26750,21010,Cumberland,MD,113,Washington,DC
-26753,21010,Cumberland,MD,113,Washington,DC
-26755,49063,Winchester,VA,435,Winchester,VA
-26757,51035,Romney,WV,435,Winchester,VA
-26761,51035,Romney,WV,435,Winchester,VA
-26763,21010,Cumberland,MD,113,Washington,DC
-26764,21023,Oakland,MD,445,Morgantown,WV
-26767,21010,Cumberland,MD,113,Washington,DC
-26801,49063,Winchester,VA,435,Winchester,VA
-26802,49023,Harrisonburg,VA,427,Charlottesville,VA
-26804,51007,Elkins,WV,445,Morgantown,WV
-26807,49023,Harrisonburg,VA,427,Charlottesville,VA
-26808,49063,Winchester,VA,435,Winchester,VA
-26810,49063,Winchester,VA,435,Winchester,VA
-26812,49023,Harrisonburg,VA,427,Charlottesville,VA
-26814,51028,Petersburg,WV,435,Winchester,VA
-26815,49023,Harrisonburg,VA,427,Charlottesville,VA
-26817,49063,Winchester,VA,435,Winchester,VA
-26818,51028,Petersburg,WV,435,Winchester,VA
-26823,49063,Winchester,VA,435,Winchester,VA
-26833,51028,Petersburg,WV,435,Winchester,VA
-26836,51028,Petersburg,WV,435,Winchester,VA
-26838,51028,Petersburg,WV,435,Winchester,VA
-26845,51028,Petersburg,WV,435,Winchester,VA
-26847,51028,Petersburg,WV,435,Winchester,VA
-26851,49063,Winchester,VA,435,Winchester,VA
-26852,51035,Romney,WV,435,Winchester,VA
-26855,51028,Petersburg,WV,435,Winchester,VA
-26865,49063,Winchester,VA,435,Winchester,VA
-26866,51028,Petersburg,WV,435,Winchester,VA
-26884,51028,Petersburg,WV,435,Winchester,VA
-26886,51028,Petersburg,WV,435,Winchester,VA
-27006,34056,Mocksville,NC,320,Winston-Salem,NC
-27007,34061,Mount Airy,NC,320,Winston-Salem,NC
-27009,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27010,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27011,34029,Elkin,NC,320,Winston-Salem,NC
-27012,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27013,34085,Statesville,NC,320,Winston-Salem,NC
-27014,34056,Mocksville,NC,320,Winston-Salem,NC
-27016,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27017,34061,Mount Airy,NC,320,Winston-Salem,NC
-27018,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27019,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27020,34085,Statesville,NC,320,Winston-Salem,NC
-27021,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27022,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27023,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27024,34061,Mount Airy,NC,320,Winston-Salem,NC
-27025,34036,Greensboro,NC,313,Greensboro,NC
-27027,34036,Greensboro,NC,313,Greensboro,NC
-27028,34056,Mocksville,NC,320,Winston-Salem,NC
-27030,34061,Mount Airy,NC,320,Winston-Salem,NC
-27031,34061,Mount Airy,NC,320,Winston-Salem,NC
-27040,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27041,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27042,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27043,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27045,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27046,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27047,34061,Mount Airy,NC,320,Winston-Salem,NC
-27048,34025,Eden,NC,313,Greensboro,NC
-27049,34061,Mount Airy,NC,320,Winston-Salem,NC
-27050,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27051,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27052,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27053,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27054,34075,Salisbury,NC,311,Charlotte,NC
-27055,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27094,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27098,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27099,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27101,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27102,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27103,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27104,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27105,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27106,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27107,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27108,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27109,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27110,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27111,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27113,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27114,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27115,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27116,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27117,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27120,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27127,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27130,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27150,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27152,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27155,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27157,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27198,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27199,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27201,34014,Burlington,NC,312,Durham,NC
-27202,34014,Burlington,NC,312,Durham,NC
-27203,34004,Asheboro,NC,313,Greensboro,NC
-27204,34004,Asheboro,NC,313,Greensboro,NC
-27205,34004,Asheboro,NC,313,Greensboro,NC
-27207,34080,Siler City,NC,313,Greensboro,NC
-27208,34066,Pinehurst,NC,312,Durham,NC
-27209,34066,Pinehurst,NC,312,Durham,NC
-27212,49011,Danville,VA,312,Durham,NC
-27213,34080,Siler City,NC,313,Greensboro,NC
-27214,34036,Greensboro,NC,313,Greensboro,NC
-27215,34014,Burlington,NC,312,Durham,NC
-27216,34014,Burlington,NC,312,Durham,NC
-27217,34014,Burlington,NC,312,Durham,NC
-27228,34015,Chapel Hill,NC,312,Durham,NC
-27229,34066,Pinehurst,NC,312,Durham,NC
-27230,34004,Asheboro,NC,313,Greensboro,NC
-27231,34015,Chapel Hill,NC,312,Durham,NC
-27233,34004,Asheboro,NC,313,Greensboro,NC
-27235,34036,Greensboro,NC,313,Greensboro,NC
-27237,34076,Sanford,NC,312,Durham,NC
-27239,34004,Asheboro,NC,313,Greensboro,NC
-27242,34066,Pinehurst,NC,312,Durham,NC
-27243,34015,Chapel Hill,NC,312,Durham,NC
-27244,34014,Burlington,NC,312,Durham,NC
-27247,34004,Asheboro,NC,313,Greensboro,NC
-27248,34004,Asheboro,NC,313,Greensboro,NC
-27249,34036,Greensboro,NC,313,Greensboro,NC
-27252,34076,Sanford,NC,312,Durham,NC
-27253,34014,Burlington,NC,312,Durham,NC
-27256,34076,Sanford,NC,312,Durham,NC
-27258,34014,Burlington,NC,312,Durham,NC
-27259,34066,Pinehurst,NC,312,Durham,NC
-27260,34042,High Point,NC,320,Winston-Salem,NC
-27261,34042,High Point,NC,320,Winston-Salem,NC
-27262,34042,High Point,NC,320,Winston-Salem,NC
-27263,34042,High Point,NC,320,Winston-Salem,NC
-27264,34042,High Point,NC,320,Winston-Salem,NC
-27265,34042,High Point,NC,320,Winston-Salem,NC
-27268,34042,High Point,NC,320,Winston-Salem,NC
-27278,34024,Durham,NC,312,Durham,NC
-27281,34066,Pinehurst,NC,312,Durham,NC
-27282,34042,High Point,NC,320,Winston-Salem,NC
-27283,34036,Greensboro,NC,313,Greensboro,NC
-27284,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27285,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27288,34025,Eden,NC,313,Greensboro,NC
-27289,34025,Eden,NC,313,Greensboro,NC
-27291,34073,Roxboro,NC,312,Durham,NC
-27292,34051,Lexington,NC,320,Winston-Salem,NC
-27293,34051,Lexington,NC,320,Winston-Salem,NC
-27294,34051,Lexington,NC,320,Winston-Salem,NC
-27295,34051,Lexington,NC,320,Winston-Salem,NC
-27298,34036,Greensboro,NC,313,Greensboro,NC
-27299,34051,Lexington,NC,320,Winston-Salem,NC
-27301,34036,Greensboro,NC,313,Greensboro,NC
-27302,34014,Burlington,NC,312,Durham,NC
-27305,49011,Danville,VA,312,Durham,NC
-27306,34091,Troy,NC,313,Greensboro,NC
-27310,34036,Greensboro,NC,313,Greensboro,NC
-27311,49011,Danville,VA,312,Durham,NC
-27312,34015,Chapel Hill,NC,312,Durham,NC
-27313,34036,Greensboro,NC,313,Greensboro,NC
-27314,34015,Chapel Hill,NC,312,Durham,NC
-27315,49011,Danville,VA,312,Durham,NC
-27316,34004,Asheboro,NC,313,Greensboro,NC
-27317,34004,Asheboro,NC,313,Greensboro,NC
-27320,34069,Reidsville,NC,313,Greensboro,NC
-27323,34069,Reidsville,NC,313,Greensboro,NC
-27325,34066,Pinehurst,NC,312,Durham,NC
-27326,34069,Reidsville,NC,313,Greensboro,NC
-27330,34076,Sanford,NC,312,Durham,NC
-27331,34076,Sanford,NC,312,Durham,NC
-27332,34076,Sanford,NC,312,Durham,NC
-27340,34014,Burlington,NC,312,Durham,NC
-27341,34004,Asheboro,NC,313,Greensboro,NC
-27342,34036,Greensboro,NC,313,Greensboro,NC
-27343,34073,Roxboro,NC,312,Durham,NC
-27344,34080,Siler City,NC,313,Greensboro,NC
-27349,34014,Burlington,NC,312,Durham,NC
-27350,34042,High Point,NC,320,Winston-Salem,NC
-27351,34051,Lexington,NC,320,Winston-Salem,NC
-27355,34036,Greensboro,NC,313,Greensboro,NC
-27356,34066,Pinehurst,NC,312,Durham,NC
-27357,34036,Greensboro,NC,313,Greensboro,NC
-27358,34036,Greensboro,NC,313,Greensboro,NC
-27359,34014,Burlington,NC,312,Durham,NC
-27360,34090,Thomasville,NC,320,Winston-Salem,NC
-27361,34090,Thomasville,NC,320,Winston-Salem,NC
-27370,34042,High Point,NC,320,Winston-Salem,NC
-27371,34091,Troy,NC,313,Greensboro,NC
-27373,34100,Winston-Salem,NC,320,Winston-Salem,NC
-27374,34051,Lexington,NC,320,Winston-Salem,NC
-27375,34069,Reidsville,NC,313,Greensboro,NC
-27376,34066,Pinehurst,NC,312,Durham,NC
-27377,34036,Greensboro,NC,313,Greensboro,NC
-27379,49011,Danville,VA,312,Durham,NC
-27401,34036,Greensboro,NC,313,Greensboro,NC
-27402,34036,Greensboro,NC,313,Greensboro,NC
-27403,34036,Greensboro,NC,313,Greensboro,NC
-27404,34036,Greensboro,NC,313,Greensboro,NC
-27405,34036,Greensboro,NC,313,Greensboro,NC
-27406,34036,Greensboro,NC,313,Greensboro,NC
-27407,34036,Greensboro,NC,313,Greensboro,NC
-27408,34036,Greensboro,NC,313,Greensboro,NC
-27409,34036,Greensboro,NC,313,Greensboro,NC
-27410,34036,Greensboro,NC,313,Greensboro,NC
-27411,34036,Greensboro,NC,313,Greensboro,NC
-27412,34036,Greensboro,NC,313,Greensboro,NC
-27413,34036,Greensboro,NC,313,Greensboro,NC
-27415,34036,Greensboro,NC,313,Greensboro,NC
-27416,34036,Greensboro,NC,313,Greensboro,NC
-27417,34036,Greensboro,NC,313,Greensboro,NC
-27419,34036,Greensboro,NC,313,Greensboro,NC
-27420,34036,Greensboro,NC,313,Greensboro,NC
-27425,34036,Greensboro,NC,313,Greensboro,NC
-27427,34036,Greensboro,NC,313,Greensboro,NC
-27429,34036,Greensboro,NC,313,Greensboro,NC
-27435,34036,Greensboro,NC,313,Greensboro,NC
-27438,34036,Greensboro,NC,313,Greensboro,NC
-27455,34036,Greensboro,NC,313,Greensboro,NC
-27495,34036,Greensboro,NC,313,Greensboro,NC
-27497,34036,Greensboro,NC,313,Greensboro,NC
-27498,34036,Greensboro,NC,313,Greensboro,NC
-27499,34036,Greensboro,NC,313,Greensboro,NC
-27501,34068,Raleigh,NC,318,Raleigh,NC
-27502,34068,Raleigh,NC,318,Raleigh,NC
-27503,34024,Durham,NC,312,Durham,NC
-27504,34081,Smithfield,NC,318,Raleigh,NC
-27505,34076,Sanford,NC,312,Durham,NC
-27506,34068,Raleigh,NC,318,Raleigh,NC
-27507,34065,Oxford,NC,312,Durham,NC
-27508,34053,Louisburg,NC,318,Raleigh,NC
-27509,34024,Durham,NC,312,Durham,NC
-27510,34015,Chapel Hill,NC,312,Durham,NC
-27511,34068,Raleigh,NC,318,Raleigh,NC
-27512,34068,Raleigh,NC,318,Raleigh,NC
-27513,34068,Raleigh,NC,318,Raleigh,NC
-27514,34015,Chapel Hill,NC,312,Durham,NC
-27515,34015,Chapel Hill,NC,312,Durham,NC
-27516,34015,Chapel Hill,NC,312,Durham,NC
-27517,34015,Chapel Hill,NC,312,Durham,NC
-27518,34068,Raleigh,NC,318,Raleigh,NC
-27519,34068,Raleigh,NC,318,Raleigh,NC
-27520,34068,Raleigh,NC,318,Raleigh,NC
-27521,34068,Raleigh,NC,318,Raleigh,NC
-27522,34024,Durham,NC,312,Durham,NC
-27523,34068,Raleigh,NC,318,Raleigh,NC
-27524,34081,Smithfield,NC,318,Raleigh,NC
-27525,34053,Louisburg,NC,318,Raleigh,NC
-27526,34068,Raleigh,NC,318,Raleigh,NC
-27527,34068,Raleigh,NC,318,Raleigh,NC
-27528,34068,Raleigh,NC,318,Raleigh,NC
-27529,34068,Raleigh,NC,318,Raleigh,NC
-27530,34035,Goldsboro,NC,318,Raleigh,NC
-27531,34035,Goldsboro,NC,318,Raleigh,NC
-27532,34035,Goldsboro,NC,318,Raleigh,NC
-27533,34035,Goldsboro,NC,318,Raleigh,NC
-27534,34035,Goldsboro,NC,318,Raleigh,NC
-27536,34039,Henderson,NC,312,Durham,NC
-27537,34039,Henderson,NC,312,Durham,NC
-27539,34068,Raleigh,NC,318,Raleigh,NC
-27540,34068,Raleigh,NC,318,Raleigh,NC
-27541,34024,Durham,NC,312,Durham,NC
-27542,34098,Wilson,NC,318,Raleigh,NC
-27543,34068,Raleigh,NC,318,Raleigh,NC
-27544,34039,Henderson,NC,312,Durham,NC
-27545,34068,Raleigh,NC,318,Raleigh,NC
-27546,34068,Raleigh,NC,318,Raleigh,NC
-27549,34053,Louisburg,NC,318,Raleigh,NC
-27551,34039,Henderson,NC,312,Durham,NC
-27552,34068,Raleigh,NC,318,Raleigh,NC
-27553,34039,Henderson,NC,312,Durham,NC
-27555,34081,Smithfield,NC,318,Raleigh,NC
-27556,34039,Henderson,NC,312,Durham,NC
-27557,34068,Raleigh,NC,318,Raleigh,NC
-27559,34076,Sanford,NC,312,Durham,NC
-27560,34068,Raleigh,NC,318,Raleigh,NC
-27562,34068,Raleigh,NC,318,Raleigh,NC
-27563,34039,Henderson,NC,312,Durham,NC
-27565,34065,Oxford,NC,312,Durham,NC
-27568,34081,Smithfield,NC,318,Raleigh,NC
-27569,34081,Smithfield,NC,318,Raleigh,NC
-27570,34039,Henderson,NC,312,Durham,NC
-27571,34068,Raleigh,NC,318,Raleigh,NC
-27572,34024,Durham,NC,312,Durham,NC
-27573,34073,Roxboro,NC,312,Durham,NC
-27574,34073,Roxboro,NC,312,Durham,NC
-27576,34081,Smithfield,NC,318,Raleigh,NC
-27577,34081,Smithfield,NC,318,Raleigh,NC
-27581,34024,Durham,NC,312,Durham,NC
-27582,34065,Oxford,NC,312,Durham,NC
-27583,34024,Durham,NC,312,Durham,NC
-27584,34039,Henderson,NC,312,Durham,NC
-27586,34039,Henderson,NC,312,Durham,NC
-27587,34068,Raleigh,NC,318,Raleigh,NC
-27588,34068,Raleigh,NC,318,Raleigh,NC
-27589,34039,Henderson,NC,312,Durham,NC
-27591,34068,Raleigh,NC,318,Raleigh,NC
-27592,34068,Raleigh,NC,318,Raleigh,NC
-27593,34081,Smithfield,NC,318,Raleigh,NC
-27594,34039,Henderson,NC,312,Durham,NC
-27596,34068,Raleigh,NC,318,Raleigh,NC
-27597,34068,Raleigh,NC,318,Raleigh,NC
-27599,34015,Chapel Hill,NC,312,Durham,NC
-27601,34068,Raleigh,NC,318,Raleigh,NC
-27602,34068,Raleigh,NC,318,Raleigh,NC
-27603,34068,Raleigh,NC,318,Raleigh,NC
-27604,34068,Raleigh,NC,318,Raleigh,NC
-27605,34068,Raleigh,NC,318,Raleigh,NC
-27606,34068,Raleigh,NC,318,Raleigh,NC
-27607,34068,Raleigh,NC,318,Raleigh,NC
-27608,34068,Raleigh,NC,318,Raleigh,NC
-27609,34068,Raleigh,NC,318,Raleigh,NC
-27610,34068,Raleigh,NC,318,Raleigh,NC
-27611,34068,Raleigh,NC,318,Raleigh,NC
-27612,34068,Raleigh,NC,318,Raleigh,NC
-27613,34068,Raleigh,NC,318,Raleigh,NC
-27614,34068,Raleigh,NC,318,Raleigh,NC
-27615,34068,Raleigh,NC,318,Raleigh,NC
-27616,34068,Raleigh,NC,318,Raleigh,NC
-27617,34068,Raleigh,NC,318,Raleigh,NC
-27619,34068,Raleigh,NC,318,Raleigh,NC
-27620,34068,Raleigh,NC,318,Raleigh,NC
-27621,34068,Raleigh,NC,318,Raleigh,NC
-27622,34068,Raleigh,NC,318,Raleigh,NC
-27623,34068,Raleigh,NC,318,Raleigh,NC
-27624,34068,Raleigh,NC,318,Raleigh,NC
-27625,34068,Raleigh,NC,318,Raleigh,NC
-27626,34068,Raleigh,NC,318,Raleigh,NC
-27627,34068,Raleigh,NC,318,Raleigh,NC
-27628,34068,Raleigh,NC,318,Raleigh,NC
-27629,34068,Raleigh,NC,318,Raleigh,NC
-27634,34068,Raleigh,NC,318,Raleigh,NC
-27635,34068,Raleigh,NC,318,Raleigh,NC
-27636,34068,Raleigh,NC,318,Raleigh,NC
-27640,34068,Raleigh,NC,318,Raleigh,NC
-27650,34068,Raleigh,NC,318,Raleigh,NC
-27656,34068,Raleigh,NC,318,Raleigh,NC
-27658,34068,Raleigh,NC,318,Raleigh,NC
-27661,34068,Raleigh,NC,318,Raleigh,NC
-27668,34068,Raleigh,NC,318,Raleigh,NC
-27675,34068,Raleigh,NC,318,Raleigh,NC
-27676,34068,Raleigh,NC,318,Raleigh,NC
-27690,34068,Raleigh,NC,318,Raleigh,NC
-27695,34068,Raleigh,NC,318,Raleigh,NC
-27697,34068,Raleigh,NC,318,Raleigh,NC
-27698,34068,Raleigh,NC,318,Raleigh,NC
-27699,34068,Raleigh,NC,318,Raleigh,NC
-27701,34024,Durham,NC,312,Durham,NC
-27702,34024,Durham,NC,312,Durham,NC
-27703,34024,Durham,NC,312,Durham,NC
-27704,34024,Durham,NC,312,Durham,NC
-27705,34024,Durham,NC,312,Durham,NC
-27706,34024,Durham,NC,312,Durham,NC
-27707,34024,Durham,NC,312,Durham,NC
-27708,34024,Durham,NC,312,Durham,NC
-27709,34068,Raleigh,NC,318,Raleigh,NC
-27710,34024,Durham,NC,312,Durham,NC
-27711,34024,Durham,NC,312,Durham,NC
-27712,34024,Durham,NC,312,Durham,NC
-27713,34024,Durham,NC,312,Durham,NC
-27715,34024,Durham,NC,312,Durham,NC
-27717,34024,Durham,NC,312,Durham,NC
-27722,34024,Durham,NC,312,Durham,NC
-27801,34072,Rocky Mount,NC,318,Raleigh,NC
-27802,34072,Rocky Mount,NC,318,Raleigh,NC
-27803,34072,Rocky Mount,NC,318,Raleigh,NC
-27804,34072,Rocky Mount,NC,318,Raleigh,NC
-27805,34001,Ahoskie,NC,314,Greenville,NC
-27806,34063,New Bern,NC,314,Greenville,NC
-27807,34098,Wilson,NC,318,Raleigh,NC
-27808,34094,Washington,NC,314,Greenville,NC
-27809,34072,Rocky Mount,NC,318,Raleigh,NC
-27810,34007,Belhaven,NC,314,Greenville,NC
-27811,34037,Greenville,NC,314,Greenville,NC
-27812,34037,Greenville,NC,314,Greenville,NC
-27813,34098,Wilson,NC,318,Raleigh,NC
-27814,34094,Washington,NC,314,Greenville,NC
-27815,34072,Rocky Mount,NC,318,Raleigh,NC
-27816,34072,Rocky Mount,NC,318,Raleigh,NC
-27817,34094,Washington,NC,314,Greenville,NC
-27818,34001,Ahoskie,NC,314,Greenville,NC
-27819,34088,Tarboro,NC,314,Greenville,NC
-27820,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27821,34094,Washington,NC,314,Greenville,NC
-27822,34098,Wilson,NC,318,Raleigh,NC
-27823,34072,Rocky Mount,NC,318,Raleigh,NC
-27824,34007,Belhaven,NC,314,Greenville,NC
-27825,34096,Williamston,NC,314,Greenville,NC
-27826,34007,Belhaven,NC,314,Greenville,NC
-27827,34037,Greenville,NC,314,Greenville,NC
-27828,34037,Greenville,NC,314,Greenville,NC
-27829,34037,Greenville,NC,314,Greenville,NC
-27830,34035,Goldsboro,NC,318,Raleigh,NC
-27831,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27832,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27833,34037,Greenville,NC,314,Greenville,NC
-27834,34037,Greenville,NC,314,Greenville,NC
-27835,34037,Greenville,NC,314,Greenville,NC
-27836,34037,Greenville,NC,314,Greenville,NC
-27837,34037,Greenville,NC,314,Greenville,NC
-27839,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27840,34096,Williamston,NC,314,Greenville,NC
-27841,34037,Greenville,NC,314,Greenville,NC
-27842,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27843,34088,Tarboro,NC,314,Greenville,NC
-27844,34072,Rocky Mount,NC,318,Raleigh,NC
-27845,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27846,34096,Williamston,NC,314,Greenville,NC
-27847,34001,Ahoskie,NC,314,Greenville,NC
-27849,34001,Ahoskie,NC,314,Greenville,NC
-27850,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27851,34098,Wilson,NC,318,Raleigh,NC
-27852,34088,Tarboro,NC,314,Greenville,NC
-27853,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27855,34001,Ahoskie,NC,314,Greenville,NC
-27856,34072,Rocky Mount,NC,318,Raleigh,NC
-27857,34037,Greenville,NC,314,Greenville,NC
-27858,34037,Greenville,NC,314,Greenville,NC
-27860,34007,Belhaven,NC,314,Greenville,NC
-27861,34037,Greenville,NC,314,Greenville,NC
-27862,34001,Ahoskie,NC,314,Greenville,NC
-27863,34035,Goldsboro,NC,318,Raleigh,NC
-27864,34088,Tarboro,NC,314,Greenville,NC
-27865,34007,Belhaven,NC,314,Greenville,NC
-27866,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27867,34001,Ahoskie,NC,314,Greenville,NC
-27868,34072,Rocky Mount,NC,318,Raleigh,NC
-27869,34001,Ahoskie,NC,314,Greenville,NC
-27870,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27871,34037,Greenville,NC,314,Greenville,NC
-27872,34001,Ahoskie,NC,314,Greenville,NC
-27873,34098,Wilson,NC,318,Raleigh,NC
-27874,34072,Rocky Mount,NC,318,Raleigh,NC
-27875,34007,Belhaven,NC,314,Greenville,NC
-27876,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27877,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27878,34072,Rocky Mount,NC,318,Raleigh,NC
-27879,34037,Greenville,NC,314,Greenville,NC
-27880,34098,Wilson,NC,318,Raleigh,NC
-27881,34088,Tarboro,NC,314,Greenville,NC
-27882,34072,Rocky Mount,NC,318,Raleigh,NC
-27883,34037,Greenville,NC,314,Greenville,NC
-27884,34037,Greenville,NC,314,Greenville,NC
-27885,34007,Belhaven,NC,314,Greenville,NC
-27886,34088,Tarboro,NC,314,Greenville,NC
-27887,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27888,34037,Greenville,NC,314,Greenville,NC
-27889,34096,Williamston,NC,314,Greenville,NC
-27890,34070,Roanoke Rapids,NC,318,Raleigh,NC
-27891,34072,Rocky Mount,NC,318,Raleigh,NC
-27892,34096,Williamston,NC,314,Greenville,NC
-27893,34098,Wilson,NC,318,Raleigh,NC
-27894,34098,Wilson,NC,318,Raleigh,NC
-27895,34098,Wilson,NC,318,Raleigh,NC
-27896,34098,Wilson,NC,318,Raleigh,NC
-27897,34001,Ahoskie,NC,314,Greenville,NC
-27906,34027,Elizabeth City,NC,430,Norfolk,VA
-27907,34027,Elizabeth City,NC,430,Norfolk,VA
-27909,34027,Elizabeth City,NC,430,Norfolk,VA
-27910,34001,Ahoskie,NC,314,Greenville,NC
-27915,34027,Elizabeth City,NC,430,Norfolk,VA
-27916,34027,Elizabeth City,NC,430,Norfolk,VA
-27917,34027,Elizabeth City,NC,430,Norfolk,VA
-27919,34027,Elizabeth City,NC,430,Norfolk,VA
-27920,34027,Elizabeth City,NC,430,Norfolk,VA
-27921,34027,Elizabeth City,NC,430,Norfolk,VA
-27922,34001,Ahoskie,NC,314,Greenville,NC
-27923,34027,Elizabeth City,NC,430,Norfolk,VA
-27924,34001,Ahoskie,NC,314,Greenville,NC
-27925,34026,Edenton,NC,314,Greenville,NC
-27926,49056,Suffolk,VA,430,Norfolk,VA
-27927,34027,Elizabeth City,NC,430,Norfolk,VA
-27928,34067,Plymouth,NC,314,Greenville,NC
-27929,34027,Elizabeth City,NC,430,Norfolk,VA
-27930,34027,Elizabeth City,NC,430,Norfolk,VA
-27932,34026,Edenton,NC,314,Greenville,NC
-27935,34001,Ahoskie,NC,314,Greenville,NC
-27936,34027,Elizabeth City,NC,430,Norfolk,VA
-27937,49056,Suffolk,VA,430,Norfolk,VA
-27938,34001,Ahoskie,NC,314,Greenville,NC
-27939,34027,Elizabeth City,NC,430,Norfolk,VA
-27941,34027,Elizabeth City,NC,430,Norfolk,VA
-27942,34001,Ahoskie,NC,314,Greenville,NC
-27943,34027,Elizabeth City,NC,430,Norfolk,VA
-27944,34027,Elizabeth City,NC,430,Norfolk,VA
-27946,34027,Elizabeth City,NC,430,Norfolk,VA
-27947,34027,Elizabeth City,NC,430,Norfolk,VA
-27948,34027,Elizabeth City,NC,430,Norfolk,VA
-27949,34027,Elizabeth City,NC,430,Norfolk,VA
-27950,49059,Virginia Beach,VA,430,Norfolk,VA
-27953,34027,Elizabeth City,NC,430,Norfolk,VA
-27954,34027,Elizabeth City,NC,430,Norfolk,VA
-27956,49008,Chesapeake,VA,430,Norfolk,VA
-27957,34026,Edenton,NC,314,Greenville,NC
-27958,49008,Chesapeake,VA,430,Norfolk,VA
-27959,34027,Elizabeth City,NC,430,Norfolk,VA
-27960,34027,Elizabeth City,NC,430,Norfolk,VA
-27962,34067,Plymouth,NC,314,Greenville,NC
-27964,34027,Elizabeth City,NC,430,Norfolk,VA
-27965,34027,Elizabeth City,NC,430,Norfolk,VA
-27966,34027,Elizabeth City,NC,430,Norfolk,VA
-27967,34001,Ahoskie,NC,314,Greenville,NC
-27968,34027,Elizabeth City,NC,430,Norfolk,VA
-27969,49056,Suffolk,VA,430,Norfolk,VA
-27970,34067,Plymouth,NC,314,Greenville,NC
-27972,34027,Elizabeth City,NC,430,Norfolk,VA
-27973,34027,Elizabeth City,NC,430,Norfolk,VA
-27974,34027,Elizabeth City,NC,430,Norfolk,VA
-27976,34027,Elizabeth City,NC,430,Norfolk,VA
-27978,34027,Elizabeth City,NC,430,Norfolk,VA
-27979,49056,Suffolk,VA,430,Norfolk,VA
-27980,34026,Edenton,NC,314,Greenville,NC
-27981,34027,Elizabeth City,NC,430,Norfolk,VA
-27982,34027,Elizabeth City,NC,430,Norfolk,VA
-27983,34099,Windsor,NC,314,Greenville,NC
-27985,34027,Elizabeth City,NC,430,Norfolk,VA
-27986,34001,Ahoskie,NC,314,Greenville,NC
-28001,34002,Albemarle,NC,311,Charlotte,NC
-28002,34002,Albemarle,NC,311,Charlotte,NC
-28006,34034,Gastonia,NC,311,Charlotte,NC
-28007,34093,Wadesboro,NC,311,Charlotte,NC
-28009,34002,Albemarle,NC,311,Charlotte,NC
-28010,34085,Statesville,NC,320,Winston-Salem,NC
-28012,34016,Charlotte,NC,311,Charlotte,NC
-28016,34034,Gastonia,NC,311,Charlotte,NC
-28017,34079,Shelby,NC,311,Charlotte,NC
-28018,34074,Rutherfordton,NC,311,Charlotte,NC
-28019,34074,Rutherfordton,NC,311,Charlotte,NC
-28020,34079,Shelby,NC,311,Charlotte,NC
-28021,34079,Shelby,NC,311,Charlotte,NC
-28023,34075,Salisbury,NC,311,Charlotte,NC
-28024,34074,Rutherfordton,NC,311,Charlotte,NC
-28025,34020,Concord,NC,311,Charlotte,NC
-28026,34020,Concord,NC,311,Charlotte,NC
-28027,34020,Concord,NC,311,Charlotte,NC
-28031,34016,Charlotte,NC,311,Charlotte,NC
-28032,34034,Gastonia,NC,311,Charlotte,NC
-28033,34052,Lincolnton,NC,311,Charlotte,NC
-28034,34034,Gastonia,NC,311,Charlotte,NC
-28035,34016,Charlotte,NC,311,Charlotte,NC
-28036,34016,Charlotte,NC,311,Charlotte,NC
-28037,34016,Charlotte,NC,311,Charlotte,NC
-28038,34079,Shelby,NC,311,Charlotte,NC
-28039,34075,Salisbury,NC,311,Charlotte,NC
-28040,34074,Rutherfordton,NC,311,Charlotte,NC
-28041,34075,Salisbury,NC,311,Charlotte,NC
-28042,34079,Shelby,NC,311,Charlotte,NC
-28043,34074,Rutherfordton,NC,311,Charlotte,NC
-28052,34034,Gastonia,NC,311,Charlotte,NC
-28053,34034,Gastonia,NC,311,Charlotte,NC
-28054,34034,Gastonia,NC,311,Charlotte,NC
-28055,34034,Gastonia,NC,311,Charlotte,NC
-28056,34034,Gastonia,NC,311,Charlotte,NC
-28070,34016,Charlotte,NC,311,Charlotte,NC
-28071,34002,Albemarle,NC,311,Charlotte,NC
-28072,34075,Salisbury,NC,311,Charlotte,NC
-28073,34079,Shelby,NC,311,Charlotte,NC
-28074,34074,Rutherfordton,NC,311,Charlotte,NC
-28075,34016,Charlotte,NC,311,Charlotte,NC
-28076,34074,Rutherfordton,NC,311,Charlotte,NC
-28077,34034,Gastonia,NC,311,Charlotte,NC
-28078,34016,Charlotte,NC,311,Charlotte,NC
-28079,34016,Charlotte,NC,311,Charlotte,NC
-28080,34052,Lincolnton,NC,311,Charlotte,NC
-28081,34020,Concord,NC,311,Charlotte,NC
-28082,34020,Concord,NC,311,Charlotte,NC
-28083,34020,Concord,NC,311,Charlotte,NC
-28086,34047,Kings Mountain,NC,311,Charlotte,NC
-28088,34075,Salisbury,NC,311,Charlotte,NC
-28089,34079,Shelby,NC,311,Charlotte,NC
-28090,34079,Shelby,NC,311,Charlotte,NC
-28091,34093,Wadesboro,NC,311,Charlotte,NC
-28092,34052,Lincolnton,NC,311,Charlotte,NC
-28093,34052,Lincolnton,NC,311,Charlotte,NC
-28097,34016,Charlotte,NC,311,Charlotte,NC
-28098,34034,Gastonia,NC,311,Charlotte,NC
-28101,34034,Gastonia,NC,311,Charlotte,NC
-28102,34093,Wadesboro,NC,311,Charlotte,NC
-28103,34057,Monroe,NC,311,Charlotte,NC
-28104,34016,Charlotte,NC,311,Charlotte,NC
-28105,34016,Charlotte,NC,311,Charlotte,NC
-28106,34016,Charlotte,NC,311,Charlotte,NC
-28107,34016,Charlotte,NC,311,Charlotte,NC
-28108,34016,Charlotte,NC,311,Charlotte,NC
-28109,34002,Albemarle,NC,311,Charlotte,NC
-28110,34057,Monroe,NC,311,Charlotte,NC
-28111,34057,Monroe,NC,311,Charlotte,NC
-28112,34057,Monroe,NC,311,Charlotte,NC
-28114,34074,Rutherfordton,NC,311,Charlotte,NC
-28115,34058,Mooresville,NC,311,Charlotte,NC
-28117,34058,Mooresville,NC,311,Charlotte,NC
-28119,34093,Wadesboro,NC,311,Charlotte,NC
-28120,34016,Charlotte,NC,311,Charlotte,NC
-28123,34058,Mooresville,NC,311,Charlotte,NC
-28124,34020,Concord,NC,311,Charlotte,NC
-28125,34058,Mooresville,NC,311,Charlotte,NC
-28126,34016,Charlotte,NC,311,Charlotte,NC
-28127,34002,Albemarle,NC,311,Charlotte,NC
-28128,34002,Albemarle,NC,311,Charlotte,NC
-28129,34002,Albemarle,NC,311,Charlotte,NC
-28130,34016,Charlotte,NC,311,Charlotte,NC
-28133,34057,Monroe,NC,311,Charlotte,NC
-28134,34016,Charlotte,NC,311,Charlotte,NC
-28135,34093,Wadesboro,NC,311,Charlotte,NC
-28136,34079,Shelby,NC,311,Charlotte,NC
-28137,34002,Albemarle,NC,311,Charlotte,NC
-28138,34075,Salisbury,NC,311,Charlotte,NC
-28139,34074,Rutherfordton,NC,311,Charlotte,NC
-28144,34075,Salisbury,NC,311,Charlotte,NC
-28145,34075,Salisbury,NC,311,Charlotte,NC
-28146,34075,Salisbury,NC,311,Charlotte,NC
-28147,34075,Salisbury,NC,311,Charlotte,NC
-28150,34079,Shelby,NC,311,Charlotte,NC
-28151,34079,Shelby,NC,311,Charlotte,NC
-28152,34079,Shelby,NC,311,Charlotte,NC
-28159,34075,Salisbury,NC,311,Charlotte,NC
-28160,34074,Rutherfordton,NC,311,Charlotte,NC
-28163,34020,Concord,NC,311,Charlotte,NC
-28164,34034,Gastonia,NC,311,Charlotte,NC
-28166,34085,Statesville,NC,320,Winston-Salem,NC
-28167,34074,Rutherfordton,NC,311,Charlotte,NC
-28168,34052,Lincolnton,NC,311,Charlotte,NC
-28169,34079,Shelby,NC,311,Charlotte,NC
-28170,34093,Wadesboro,NC,311,Charlotte,NC
-28173,34016,Charlotte,NC,311,Charlotte,NC
-28174,34057,Monroe,NC,311,Charlotte,NC
-28201,34016,Charlotte,NC,311,Charlotte,NC
-28202,34016,Charlotte,NC,311,Charlotte,NC
-28203,34016,Charlotte,NC,311,Charlotte,NC
-28204,34016,Charlotte,NC,311,Charlotte,NC
-28205,34016,Charlotte,NC,311,Charlotte,NC
-28206,34016,Charlotte,NC,311,Charlotte,NC
-28207,34016,Charlotte,NC,311,Charlotte,NC
-28208,34016,Charlotte,NC,311,Charlotte,NC
-28209,34016,Charlotte,NC,311,Charlotte,NC
-28210,34016,Charlotte,NC,311,Charlotte,NC
-28211,34016,Charlotte,NC,311,Charlotte,NC
-28212,34016,Charlotte,NC,311,Charlotte,NC
-28213,34016,Charlotte,NC,311,Charlotte,NC
-28214,34016,Charlotte,NC,311,Charlotte,NC
-28215,34016,Charlotte,NC,311,Charlotte,NC
-28216,34016,Charlotte,NC,311,Charlotte,NC
-28217,34016,Charlotte,NC,311,Charlotte,NC
-28218,34016,Charlotte,NC,311,Charlotte,NC
-28219,34016,Charlotte,NC,311,Charlotte,NC
-28220,34016,Charlotte,NC,311,Charlotte,NC
-28221,34016,Charlotte,NC,311,Charlotte,NC
-28222,34016,Charlotte,NC,311,Charlotte,NC
-28223,34016,Charlotte,NC,311,Charlotte,NC
-28224,34016,Charlotte,NC,311,Charlotte,NC
-28226,34016,Charlotte,NC,311,Charlotte,NC
-28227,34016,Charlotte,NC,311,Charlotte,NC
-28228,34016,Charlotte,NC,311,Charlotte,NC
-28229,34016,Charlotte,NC,311,Charlotte,NC
-28230,34016,Charlotte,NC,311,Charlotte,NC
-28231,34016,Charlotte,NC,311,Charlotte,NC
-28232,34016,Charlotte,NC,311,Charlotte,NC
-28233,34016,Charlotte,NC,311,Charlotte,NC
-28234,34016,Charlotte,NC,311,Charlotte,NC
-28235,34016,Charlotte,NC,311,Charlotte,NC
-28236,34016,Charlotte,NC,311,Charlotte,NC
-28237,34016,Charlotte,NC,311,Charlotte,NC
-28241,34016,Charlotte,NC,311,Charlotte,NC
-28242,34016,Charlotte,NC,311,Charlotte,NC
-28243,34016,Charlotte,NC,311,Charlotte,NC
-28244,34016,Charlotte,NC,311,Charlotte,NC
-28246,34016,Charlotte,NC,311,Charlotte,NC
-28247,34016,Charlotte,NC,311,Charlotte,NC
-28253,34016,Charlotte,NC,311,Charlotte,NC
-28254,34016,Charlotte,NC,311,Charlotte,NC
-28255,34016,Charlotte,NC,311,Charlotte,NC
-28256,34016,Charlotte,NC,311,Charlotte,NC
-28258,34016,Charlotte,NC,311,Charlotte,NC
-28260,34016,Charlotte,NC,311,Charlotte,NC
-28262,34016,Charlotte,NC,311,Charlotte,NC
-28263,34016,Charlotte,NC,311,Charlotte,NC
-28265,34016,Charlotte,NC,311,Charlotte,NC
-28266,34016,Charlotte,NC,311,Charlotte,NC
-28269,34016,Charlotte,NC,311,Charlotte,NC
-28270,34016,Charlotte,NC,311,Charlotte,NC
-28271,34016,Charlotte,NC,311,Charlotte,NC
-28272,34016,Charlotte,NC,311,Charlotte,NC
-28273,34016,Charlotte,NC,311,Charlotte,NC
-28274,34016,Charlotte,NC,311,Charlotte,NC
-28275,34016,Charlotte,NC,311,Charlotte,NC
-28277,34016,Charlotte,NC,311,Charlotte,NC
-28278,34016,Charlotte,NC,311,Charlotte,NC
-28280,34016,Charlotte,NC,311,Charlotte,NC
-28281,34016,Charlotte,NC,311,Charlotte,NC
-28282,34016,Charlotte,NC,311,Charlotte,NC
-28284,34016,Charlotte,NC,311,Charlotte,NC
-28285,34016,Charlotte,NC,311,Charlotte,NC
-28287,34016,Charlotte,NC,311,Charlotte,NC
-28288,34016,Charlotte,NC,311,Charlotte,NC
-28289,34016,Charlotte,NC,311,Charlotte,NC
-28290,34016,Charlotte,NC,311,Charlotte,NC
-28296,34016,Charlotte,NC,311,Charlotte,NC
-28297,34016,Charlotte,NC,311,Charlotte,NC
-28299,34016,Charlotte,NC,311,Charlotte,NC
-28301,34031,Fayetteville,NC,318,Raleigh,NC
-28302,34031,Fayetteville,NC,318,Raleigh,NC
-28303,34031,Fayetteville,NC,318,Raleigh,NC
-28304,34031,Fayetteville,NC,318,Raleigh,NC
-28305,34031,Fayetteville,NC,318,Raleigh,NC
-28306,34031,Fayetteville,NC,318,Raleigh,NC
-28307,34031,Fayetteville,NC,318,Raleigh,NC
-28308,34031,Fayetteville,NC,318,Raleigh,NC
-28309,34031,Fayetteville,NC,318,Raleigh,NC
-28310,34031,Fayetteville,NC,318,Raleigh,NC
-28311,34031,Fayetteville,NC,318,Raleigh,NC
-28312,34031,Fayetteville,NC,318,Raleigh,NC
-28314,34031,Fayetteville,NC,318,Raleigh,NC
-28315,34066,Pinehurst,NC,312,Durham,NC
-28318,34017,Clinton,NC,318,Raleigh,NC
-28319,34054,Lumberton,NC,312,Durham,NC
-28320,34028,Elizabethtown,NC,319,Wilmington,NC
-28323,34030,Erwin,NC,318,Raleigh,NC
-28325,34017,Clinton,NC,318,Raleigh,NC
-28326,34068,Raleigh,NC,318,Raleigh,NC
-28327,34066,Pinehurst,NC,312,Durham,NC
-28328,34017,Clinton,NC,318,Raleigh,NC
-28329,34017,Clinton,NC,318,Raleigh,NC
-28330,34071,Rockingham,NC,311,Charlotte,NC
-28331,34031,Fayetteville,NC,318,Raleigh,NC
-28332,34028,Elizabethtown,NC,319,Wilmington,NC
-28333,34035,Goldsboro,NC,318,Raleigh,NC
-28334,34023,Dunn,NC,318,Raleigh,NC
-28335,34023,Dunn,NC,318,Raleigh,NC
-28337,34028,Elizabethtown,NC,319,Wilmington,NC
-28338,34066,Pinehurst,NC,312,Durham,NC
-28339,34030,Erwin,NC,318,Raleigh,NC
-28340,34054,Lumberton,NC,312,Durham,NC
-28341,34017,Clinton,NC,318,Raleigh,NC
-28342,34023,Dunn,NC,318,Raleigh,NC
-28343,34049,Laurinburg,NC,312,Durham,NC
-28344,34017,Clinton,NC,318,Raleigh,NC
-28345,34038,Hamlet,NC,311,Charlotte,NC
-28347,34066,Pinehurst,NC,312,Durham,NC
-28348,34031,Fayetteville,NC,318,Raleigh,NC
-28349,34046,Kenansville,NC,314,Greenville,NC
-28350,34066,Pinehurst,NC,312,Durham,NC
-28351,34049,Laurinburg,NC,312,Durham,NC
-28352,34049,Laurinburg,NC,312,Durham,NC
-28353,34049,Laurinburg,NC,312,Durham,NC
-28355,34076,Sanford,NC,312,Durham,NC
-28356,34023,Dunn,NC,318,Raleigh,NC
-28357,34031,Fayetteville,NC,318,Raleigh,NC
-28358,34054,Lumberton,NC,312,Durham,NC
-28359,34054,Lumberton,NC,312,Durham,NC
-28360,34054,Lumberton,NC,312,Durham,NC
-28362,34054,Lumberton,NC,312,Durham,NC
-28363,34049,Laurinburg,NC,312,Durham,NC
-28364,34049,Laurinburg,NC,312,Durham,NC
-28365,34035,Goldsboro,NC,318,Raleigh,NC
-28366,34017,Clinton,NC,318,Raleigh,NC
-28367,34066,Pinehurst,NC,312,Durham,NC
-28368,34076,Sanford,NC,312,Durham,NC
-28369,34054,Lumberton,NC,312,Durham,NC
-28370,34066,Pinehurst,NC,312,Durham,NC
-28371,34031,Fayetteville,NC,318,Raleigh,NC
-28372,34054,Lumberton,NC,312,Durham,NC
-28373,34066,Pinehurst,NC,312,Durham,NC
-28374,34066,Pinehurst,NC,312,Durham,NC
-28375,34054,Lumberton,NC,312,Durham,NC
-28376,34066,Pinehurst,NC,312,Durham,NC
-28377,34054,Lumberton,NC,312,Durham,NC
-28378,34054,Lumberton,NC,312,Durham,NC
-28379,34071,Rockingham,NC,311,Charlotte,NC
-28380,34071,Rockingham,NC,311,Charlotte,NC
-28382,34017,Clinton,NC,318,Raleigh,NC
-28383,34054,Lumberton,NC,312,Durham,NC
-28384,34054,Lumberton,NC,312,Durham,NC
-28385,34017,Clinton,NC,318,Raleigh,NC
-28386,34054,Lumberton,NC,312,Durham,NC
-28387,34066,Pinehurst,NC,312,Durham,NC
-28388,34066,Pinehurst,NC,312,Durham,NC
-28390,34068,Raleigh,NC,318,Raleigh,NC
-28391,34031,Fayetteville,NC,318,Raleigh,NC
-28392,34028,Elizabethtown,NC,319,Wilmington,NC
-28393,34017,Clinton,NC,318,Raleigh,NC
-28394,34066,Pinehurst,NC,312,Durham,NC
-28395,34031,Fayetteville,NC,318,Raleigh,NC
-28396,34049,Laurinburg,NC,312,Durham,NC
-28398,34046,Kenansville,NC,314,Greenville,NC
-28399,34028,Elizabethtown,NC,319,Wilmington,NC
-28401,34097,Wilmington,NC,319,Wilmington,NC
-28402,34097,Wilmington,NC,319,Wilmington,NC
-28403,34097,Wilmington,NC,319,Wilmington,NC
-28404,34097,Wilmington,NC,319,Wilmington,NC
-28405,34097,Wilmington,NC,319,Wilmington,NC
-28406,34097,Wilmington,NC,319,Wilmington,NC
-28407,34097,Wilmington,NC,319,Wilmington,NC
-28408,34097,Wilmington,NC,319,Wilmington,NC
-28409,34097,Wilmington,NC,319,Wilmington,NC
-28410,34097,Wilmington,NC,319,Wilmington,NC
-28411,34097,Wilmington,NC,319,Wilmington,NC
-28412,34097,Wilmington,NC,319,Wilmington,NC
-28420,34086,Supply,NC,319,Wilmington,NC
-28421,34013,Burgaw,NC,319,Wilmington,NC
-28422,34086,Supply,NC,319,Wilmington,NC
-28423,34097,Wilmington,NC,319,Wilmington,NC
-28424,34095,Whiteville,NC,319,Wilmington,NC
-28425,34013,Burgaw,NC,319,Wilmington,NC
-28428,34097,Wilmington,NC,319,Wilmington,NC
-28429,34097,Wilmington,NC,319,Wilmington,NC
-28430,34095,Whiteville,NC,319,Wilmington,NC
-28431,34095,Whiteville,NC,319,Wilmington,NC
-28432,34095,Whiteville,NC,319,Wilmington,NC
-28433,34028,Elizabethtown,NC,319,Wilmington,NC
-28434,34028,Elizabethtown,NC,319,Wilmington,NC
-28435,34013,Burgaw,NC,319,Wilmington,NC
-28436,34097,Wilmington,NC,319,Wilmington,NC
-28438,34095,Whiteville,NC,319,Wilmington,NC
-28439,34095,Whiteville,NC,319,Wilmington,NC
-28441,34017,Clinton,NC,318,Raleigh,NC
-28442,34095,Whiteville,NC,319,Wilmington,NC
-28443,34097,Wilmington,NC,319,Wilmington,NC
-28444,34017,Clinton,NC,318,Raleigh,NC
-28445,34097,Wilmington,NC,319,Wilmington,NC
-28447,34017,Clinton,NC,318,Raleigh,NC
-28448,34013,Burgaw,NC,319,Wilmington,NC
-28449,34097,Wilmington,NC,319,Wilmington,NC
-28450,34095,Whiteville,NC,319,Wilmington,NC
-28451,34097,Wilmington,NC,319,Wilmington,NC
-28452,34086,Supply,NC,319,Wilmington,NC
-28453,34046,Kenansville,NC,314,Greenville,NC
-28454,34097,Wilmington,NC,319,Wilmington,NC
-28455,34095,Whiteville,NC,319,Wilmington,NC
-28456,34097,Wilmington,NC,319,Wilmington,NC
-28457,34097,Wilmington,NC,319,Wilmington,NC
-28458,34046,Kenansville,NC,314,Greenville,NC
-28459,34086,Supply,NC,319,Wilmington,NC
-28460,34044,Jacksonville,NC,314,Greenville,NC
-28461,34082,Southport,NC,319,Wilmington,NC
-28462,34086,Supply,NC,319,Wilmington,NC
-28463,42033,Loris,SC,367,Florence,SC
-28464,34097,Wilmington,NC,319,Wilmington,NC
-28465,34082,Southport,NC,319,Wilmington,NC
-28466,34097,Wilmington,NC,319,Wilmington,NC
-28467,42038,Myrtle Beach,SC,365,Charleston,SC
-28468,42038,Myrtle Beach,SC,365,Charleston,SC
-28469,34086,Supply,NC,319,Wilmington,NC
-28470,34086,Supply,NC,319,Wilmington,NC
-28472,34095,Whiteville,NC,319,Wilmington,NC
-28478,34097,Wilmington,NC,319,Wilmington,NC
-28479,34082,Southport,NC,319,Wilmington,NC
-28480,34097,Wilmington,NC,319,Wilmington,NC
-28501,34048,Kinston,NC,314,Greenville,NC
-28502,34048,Kinston,NC,314,Greenville,NC
-28503,34048,Kinston,NC,314,Greenville,NC
-28504,34048,Kinston,NC,314,Greenville,NC
-28508,34048,Kinston,NC,314,Greenville,NC
-28509,34063,New Bern,NC,314,Greenville,NC
-28510,34063,New Bern,NC,314,Greenville,NC
-28511,34059,Morehead City,NC,314,Greenville,NC
-28512,34059,Morehead City,NC,314,Greenville,NC
-28513,34037,Greenville,NC,314,Greenville,NC
-28515,34063,New Bern,NC,314,Greenville,NC
-28516,34059,Morehead City,NC,314,Greenville,NC
-28518,34046,Kenansville,NC,314,Greenville,NC
-28519,34063,New Bern,NC,314,Greenville,NC
-28520,34059,Morehead City,NC,314,Greenville,NC
-28521,34046,Kenansville,NC,314,Greenville,NC
-28522,34048,Kinston,NC,314,Greenville,NC
-28523,34063,New Bern,NC,314,Greenville,NC
-28524,34059,Morehead City,NC,314,Greenville,NC
-28525,34048,Kinston,NC,314,Greenville,NC
-28526,34048,Kinston,NC,314,Greenville,NC
-28527,34063,New Bern,NC,314,Greenville,NC
-28528,34059,Morehead City,NC,314,Greenville,NC
-28529,34063,New Bern,NC,314,Greenville,NC
-28530,34037,Greenville,NC,314,Greenville,NC
-28531,34059,Morehead City,NC,314,Greenville,NC
-28532,34063,New Bern,NC,314,Greenville,NC
-28533,34063,New Bern,NC,314,Greenville,NC
-28537,34063,New Bern,NC,314,Greenville,NC
-28538,34037,Greenville,NC,314,Greenville,NC
-28539,34044,Jacksonville,NC,314,Greenville,NC
-28540,34044,Jacksonville,NC,314,Greenville,NC
-28541,34044,Jacksonville,NC,314,Greenville,NC
-28542,34044,Jacksonville,NC,314,Greenville,NC
-28543,34044,Jacksonville,NC,314,Greenville,NC
-28544,34044,Jacksonville,NC,314,Greenville,NC
-28545,34044,Jacksonville,NC,314,Greenville,NC
-28546,34044,Jacksonville,NC,314,Greenville,NC
-28547,34044,Jacksonville,NC,314,Greenville,NC
-28551,34048,Kinston,NC,314,Greenville,NC
-28552,34063,New Bern,NC,314,Greenville,NC
-28553,34059,Morehead City,NC,314,Greenville,NC
-28554,34037,Greenville,NC,314,Greenville,NC
-28555,34063,New Bern,NC,314,Greenville,NC
-28556,34063,New Bern,NC,314,Greenville,NC
-28557,34059,Morehead City,NC,314,Greenville,NC
-28560,34063,New Bern,NC,314,Greenville,NC
-28561,34063,New Bern,NC,314,Greenville,NC
-28562,34063,New Bern,NC,314,Greenville,NC
-28563,34063,New Bern,NC,314,Greenville,NC
-28564,34063,New Bern,NC,314,Greenville,NC
-28570,34059,Morehead City,NC,314,Greenville,NC
-28571,34063,New Bern,NC,314,Greenville,NC
-28572,34048,Kinston,NC,314,Greenville,NC
-28573,34063,New Bern,NC,314,Greenville,NC
-28574,34044,Jacksonville,NC,314,Greenville,NC
-28575,34059,Morehead City,NC,314,Greenville,NC
-28577,34059,Morehead City,NC,314,Greenville,NC
-28578,34035,Goldsboro,NC,318,Raleigh,NC
-28579,34059,Morehead City,NC,314,Greenville,NC
-28580,34048,Kinston,NC,314,Greenville,NC
-28581,34059,Morehead City,NC,314,Greenville,NC
-28582,34044,Jacksonville,NC,314,Greenville,NC
-28583,34063,New Bern,NC,314,Greenville,NC
-28584,34059,Morehead City,NC,314,Greenville,NC
-28585,34048,Kinston,NC,314,Greenville,NC
-28586,34063,New Bern,NC,314,Greenville,NC
-28587,34063,New Bern,NC,314,Greenville,NC
-28589,34059,Morehead City,NC,314,Greenville,NC
-28590,34037,Greenville,NC,314,Greenville,NC
-28594,34059,Morehead City,NC,314,Greenville,NC
-28601,34041,Hickory,NC,315,Hickory,NC
-28602,34041,Hickory,NC,315,Hickory,NC
-28603,34041,Hickory,NC,315,Hickory,NC
-28604,34006,Banner Elk,NC,375,Johnson City,TN
-28605,34008,Blowing Rock,NC,309,Asheville,NC
-28606,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28607,34010,Boone,NC,375,Johnson City,TN
-28608,34010,Boone,NC,375,Johnson City,TN
-28609,34041,Hickory,NC,315,Hickory,NC
-28610,34041,Hickory,NC,315,Hickory,NC
-28611,34021,Crossnore,NC,309,Asheville,NC
-28612,34092,Valdese,NC,315,Hickory,NC
-28613,34041,Hickory,NC,315,Hickory,NC
-28615,34045,Jefferson,NC,320,Winston-Salem,NC
-28616,34021,Crossnore,NC,309,Asheville,NC
-28617,34045,Jefferson,NC,320,Winston-Salem,NC
-28618,34010,Boone,NC,375,Johnson City,TN
-28619,34060,Morganton,NC,311,Charlotte,NC
-28621,34029,Elkin,NC,320,Winston-Salem,NC
-28622,34006,Banner Elk,NC,375,Johnson City,TN
-28623,34083,Sparta,NC,320,Winston-Salem,NC
-28624,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28625,34085,Statesville,NC,320,Winston-Salem,NC
-28626,34045,Jefferson,NC,320,Winston-Salem,NC
-28627,34083,Sparta,NC,320,Winston-Salem,NC
-28628,34060,Morganton,NC,311,Charlotte,NC
-28629,34045,Jefferson,NC,320,Winston-Salem,NC
-28630,34041,Hickory,NC,315,Hickory,NC
-28631,34045,Jefferson,NC,320,Winston-Salem,NC
-28633,34050,Lenoir,NC,315,Hickory,NC
-28634,34085,Statesville,NC,320,Winston-Salem,NC
-28635,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28636,34085,Statesville,NC,320,Winston-Salem,NC
-28637,34092,Valdese,NC,315,Hickory,NC
-28638,34050,Lenoir,NC,315,Hickory,NC
-28640,34045,Jefferson,NC,320,Winston-Salem,NC
-28641,34021,Crossnore,NC,309,Asheville,NC
-28642,34029,Elkin,NC,320,Winston-Salem,NC
-28643,34045,Jefferson,NC,320,Winston-Salem,NC
-28644,34083,Sparta,NC,320,Winston-Salem,NC
-28645,34050,Lenoir,NC,315,Hickory,NC
-28646,34021,Crossnore,NC,309,Asheville,NC
-28647,34021,Crossnore,NC,309,Asheville,NC
-28649,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28650,34041,Hickory,NC,315,Hickory,NC
-28651,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28652,34006,Banner Elk,NC,375,Johnson City,TN
-28653,34021,Crossnore,NC,309,Asheville,NC
-28654,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28655,34060,Morganton,NC,311,Charlotte,NC
-28656,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28657,34021,Crossnore,NC,309,Asheville,NC
-28658,34041,Hickory,NC,315,Hickory,NC
-28659,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28660,34085,Statesville,NC,320,Winston-Salem,NC
-28661,34050,Lenoir,NC,315,Hickory,NC
-28662,34008,Blowing Rock,NC,309,Asheville,NC
-28663,34083,Sparta,NC,320,Winston-Salem,NC
-28664,34021,Crossnore,NC,309,Asheville,NC
-28665,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28666,34092,Valdese,NC,315,Hickory,NC
-28667,34041,Hickory,NC,315,Hickory,NC
-28668,34029,Elkin,NC,320,Winston-Salem,NC
-28669,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28670,34029,Elkin,NC,320,Winston-Salem,NC
-28671,34092,Valdese,NC,315,Hickory,NC
-28672,34045,Jefferson,NC,320,Winston-Salem,NC
-28673,34041,Hickory,NC,315,Hickory,NC
-28675,34083,Sparta,NC,320,Winston-Salem,NC
-28676,34029,Elkin,NC,320,Winston-Salem,NC
-28677,34085,Statesville,NC,320,Winston-Salem,NC
-28678,34085,Statesville,NC,320,Winston-Salem,NC
-28679,34010,Boone,NC,375,Johnson City,TN
-28680,34060,Morganton,NC,311,Charlotte,NC
-28681,34089,Taylorsville,NC,315,Hickory,NC
-28682,34041,Hickory,NC,315,Hickory,NC
-28683,34029,Elkin,NC,320,Winston-Salem,NC
-28684,34010,Boone,NC,375,Johnson City,TN
-28685,34029,Elkin,NC,320,Winston-Salem,NC
-28687,34085,Statesville,NC,320,Winston-Salem,NC
-28688,34085,Statesville,NC,320,Winston-Salem,NC
-28689,34085,Statesville,NC,320,Winston-Salem,NC
-28690,34092,Valdese,NC,315,Hickory,NC
-28691,34006,Banner Elk,NC,375,Johnson City,TN
-28692,34010,Boone,NC,375,Johnson City,TN
-28693,34045,Jefferson,NC,320,Winston-Salem,NC
-28694,34045,Jefferson,NC,320,Winston-Salem,NC
-28697,34064,North Wilkesboro,NC,320,Winston-Salem,NC
-28698,34010,Boone,NC,375,Johnson City,TN
-28699,34085,Statesville,NC,320,Winston-Salem,NC
-28701,34005,Asheville,NC,309,Asheville,NC
-28702,34003,Andrews,NC,309,Asheville,NC
-28704,34005,Asheville,NC,309,Asheville,NC
-28705,34084,Spruce Pine,NC,309,Asheville,NC
-28707,34087,Sylva,NC,309,Asheville,NC
-28708,34011,Brevard,NC,309,Asheville,NC
-28709,34005,Asheville,NC,309,Asheville,NC
-28710,34005,Asheville,NC,309,Asheville,NC
-28711,34005,Asheville,NC,309,Asheville,NC
-28712,34011,Brevard,NC,309,Asheville,NC
-28713,34012,Bryson City,NC,309,Asheville,NC
-28714,34084,Spruce Pine,NC,309,Asheville,NC
-28715,34005,Asheville,NC,309,Asheville,NC
-28716,34018,Clyde,NC,309,Asheville,NC
-28717,34043,Highlands,NC,309,Asheville,NC
-28718,34011,Brevard,NC,309,Asheville,NC
-28719,34102,Cherokee,NC,309,Asheville,NC
-28720,34074,Rutherfordton,NC,311,Charlotte,NC
-28721,34018,Clyde,NC,309,Asheville,NC
-28722,34019,Columbus,NC,369,Spartanburg,SC
-28723,34087,Sylva,NC,309,Asheville,NC
-28724,34040,Hendersonville,NC,309,Asheville,NC
-28725,34087,Sylva,NC,309,Asheville,NC
-28726,34040,Hendersonville,NC,309,Asheville,NC
-28727,34040,Hendersonville,NC,309,Asheville,NC
-28728,34005,Asheville,NC,309,Asheville,NC
-28729,34040,Hendersonville,NC,309,Asheville,NC
-28730,34005,Asheville,NC,309,Asheville,NC
-28731,34040,Hendersonville,NC,309,Asheville,NC
-28732,34005,Asheville,NC,309,Asheville,NC
-28733,34003,Andrews,NC,309,Asheville,NC
-28734,34033,Franklin,NC,309,Asheville,NC
-28735,34040,Hendersonville,NC,309,Asheville,NC
-28736,34087,Sylva,NC,309,Asheville,NC
-28737,34055,Marion,NC,309,Asheville,NC
-28738,34018,Clyde,NC,309,Asheville,NC
-28739,34040,Hendersonville,NC,309,Asheville,NC
-28740,34084,Spruce Pine,NC,309,Asheville,NC
-28741,34043,Highlands,NC,309,Asheville,NC
-28742,34040,Hendersonville,NC,309,Asheville,NC
-28743,34005,Asheville,NC,309,Asheville,NC
-28744,34033,Franklin,NC,309,Asheville,NC
-28745,34018,Clyde,NC,309,Asheville,NC
-28746,34074,Rutherfordton,NC,311,Charlotte,NC
-28747,34011,Brevard,NC,309,Asheville,NC
-28748,34005,Asheville,NC,309,Asheville,NC
-28749,34055,Marion,NC,309,Asheville,NC
-28750,34019,Columbus,NC,369,Spartanburg,SC
-28751,34018,Clyde,NC,309,Asheville,NC
-28752,34055,Marion,NC,309,Asheville,NC
-28753,34005,Asheville,NC,309,Asheville,NC
-28754,34005,Asheville,NC,309,Asheville,NC
-28755,34084,Spruce Pine,NC,309,Asheville,NC
-28756,34019,Columbus,NC,369,Spartanburg,SC
-28757,34005,Asheville,NC,309,Asheville,NC
-28758,34040,Hendersonville,NC,309,Asheville,NC
-28759,34040,Hendersonville,NC,309,Asheville,NC
-28760,34040,Hendersonville,NC,309,Asheville,NC
-28761,34055,Marion,NC,309,Asheville,NC
-28762,34055,Marion,NC,309,Asheville,NC
-28763,34033,Franklin,NC,309,Asheville,NC
-28765,34084,Spruce Pine,NC,309,Asheville,NC
-28766,34011,Brevard,NC,309,Asheville,NC
-28768,34011,Brevard,NC,309,Asheville,NC
-28770,34005,Asheville,NC,309,Asheville,NC
-28771,34003,Andrews,NC,309,Asheville,NC
-28772,34011,Brevard,NC,309,Asheville,NC
-28773,34040,Hendersonville,NC,309,Asheville,NC
-28774,34043,Highlands,NC,309,Asheville,NC
-28775,11029,Clayton,GA,144,Atlanta,GA
-28776,34005,Asheville,NC,309,Asheville,NC
-28777,34084,Spruce Pine,NC,309,Asheville,NC
-28778,34005,Asheville,NC,309,Asheville,NC
-28779,34087,Sylva,NC,309,Asheville,NC
-28781,34003,Andrews,NC,309,Asheville,NC
-28782,34019,Columbus,NC,369,Spartanburg,SC
-28783,34087,Sylva,NC,309,Asheville,NC
-28784,34040,Hendersonville,NC,309,Asheville,NC
-28785,34018,Clyde,NC,309,Asheville,NC
-28786,34018,Clyde,NC,309,Asheville,NC
-28787,34005,Asheville,NC,309,Asheville,NC
-28788,34087,Sylva,NC,309,Asheville,NC
-28789,34087,Sylva,NC,309,Asheville,NC
-28790,34040,Hendersonville,NC,309,Asheville,NC
-28791,34040,Hendersonville,NC,309,Asheville,NC
-28792,34040,Hendersonville,NC,309,Asheville,NC
-28793,34040,Hendersonville,NC,309,Asheville,NC
-28801,34005,Asheville,NC,309,Asheville,NC
-28802,34005,Asheville,NC,309,Asheville,NC
-28803,34005,Asheville,NC,309,Asheville,NC
-28804,34005,Asheville,NC,309,Asheville,NC
-28805,34005,Asheville,NC,309,Asheville,NC
-28806,34005,Asheville,NC,309,Asheville,NC
-28810,34005,Asheville,NC,309,Asheville,NC
-28813,34005,Asheville,NC,309,Asheville,NC
-28814,34005,Asheville,NC,309,Asheville,NC
-28815,34005,Asheville,NC,309,Asheville,NC
-28816,34005,Asheville,NC,309,Asheville,NC
-28901,34003,Andrews,NC,309,Asheville,NC
-28902,34062,Murphy,NC,144,Atlanta,GA
-28903,34062,Murphy,NC,144,Atlanta,GA
-28904,34062,Murphy,NC,144,Atlanta,GA
-28905,34003,Andrews,NC,309,Asheville,NC
-28906,34062,Murphy,NC,144,Atlanta,GA
-28909,34062,Murphy,NC,144,Atlanta,GA
-29001,42034,Manning,SC,366,Columbia,SC
-29002,42014,Columbia,SC,366,Columbia,SC
-29003,42004,Bamberg,SC,366,Columbia,SC
-29006,42051,West Columbia,SC,366,Columbia,SC
-29009,42009,Camden,SC,366,Columbia,SC
-29010,42008,Bishopville,SC,366,Columbia,SC
-29014,42052,Winnsboro,SC,366,Columbia,SC
-29015,42052,Winnsboro,SC,366,Columbia,SC
-29016,42014,Columbia,SC,366,Columbia,SC
-29018,42040,Orangeburg,SC,366,Columbia,SC
-29020,42009,Camden,SC,366,Columbia,SC
-29021,42009,Camden,SC,366,Columbia,SC
-29030,42040,Orangeburg,SC,366,Columbia,SC
-29031,42048,Union,SC,369,Spartanburg,SC
-29032,42009,Camden,SC,366,Columbia,SC
-29033,42051,West Columbia,SC,366,Columbia,SC
-29036,42014,Columbia,SC,366,Columbia,SC
-29037,42025,Greenwood,SC,366,Columbia,SC
-29038,42040,Orangeburg,SC,366,Columbia,SC
-29039,42040,Orangeburg,SC,366,Columbia,SC
-29040,42047,Sumter,SC,366,Columbia,SC
-29041,42034,Manning,SC,366,Columbia,SC
-29042,42004,Bamberg,SC,366,Columbia,SC
-29044,42014,Columbia,SC,366,Columbia,SC
-29045,42014,Columbia,SC,366,Columbia,SC
-29046,42021,Florence,SC,367,Florence,SC
-29047,42040,Orangeburg,SC,366,Columbia,SC
-29048,42010,Charleston,SC,365,Charleston,SC
-29051,42047,Sumter,SC,366,Columbia,SC
-29052,42014,Columbia,SC,366,Columbia,SC
-29053,42051,West Columbia,SC,366,Columbia,SC
-29054,42051,West Columbia,SC,366,Columbia,SC
-29055,42012,Chester,SC,366,Columbia,SC
-29056,42029,Kingstree,SC,367,Florence,SC
-29058,42031,Lancaster,SC,311,Charlotte,NC
-29059,42010,Charleston,SC,365,Charleston,SC
-29061,42014,Columbia,SC,366,Columbia,SC
-29062,42047,Sumter,SC,366,Columbia,SC
-29063,42014,Columbia,SC,366,Columbia,SC
-29065,42014,Columbia,SC,366,Columbia,SC
-29067,42031,Lancaster,SC,311,Charlotte,NC
-29069,42021,Florence,SC,367,Florence,SC
-29070,42051,West Columbia,SC,366,Columbia,SC
-29071,42051,West Columbia,SC,366,Columbia,SC
-29072,42051,West Columbia,SC,366,Columbia,SC
-29073,42051,West Columbia,SC,366,Columbia,SC
-29074,42031,Lancaster,SC,311,Charlotte,NC
-29075,42014,Columbia,SC,366,Columbia,SC
-29078,42009,Camden,SC,366,Columbia,SC
-29079,42027,Hartsville,SC,366,Columbia,SC
-29080,42047,Sumter,SC,366,Columbia,SC
-29081,42004,Bamberg,SC,366,Columbia,SC
-29082,42050,Walterboro,SC,365,Charleston,SC
-29101,42027,Hartsville,SC,366,Columbia,SC
-29102,42034,Manning,SC,366,Columbia,SC
-29104,42047,Sumter,SC,366,Columbia,SC
-29105,42002,Aiken,SC,145,Augusta,GA
-29107,42040,Orangeburg,SC,366,Columbia,SC
-29108,42039,Newberry,SC,366,Columbia,SC
-29111,42034,Manning,SC,366,Columbia,SC
-29112,42040,Orangeburg,SC,366,Columbia,SC
-29113,42040,Orangeburg,SC,366,Columbia,SC
-29114,42021,Florence,SC,367,Florence,SC
-29115,42040,Orangeburg,SC,366,Columbia,SC
-29116,42040,Orangeburg,SC,366,Columbia,SC
-29117,42040,Orangeburg,SC,366,Columbia,SC
-29118,42040,Orangeburg,SC,366,Columbia,SC
-29122,42014,Columbia,SC,366,Columbia,SC
-29123,42051,West Columbia,SC,366,Columbia,SC
-29125,42047,Sumter,SC,366,Columbia,SC
-29126,42039,Newberry,SC,366,Columbia,SC
-29127,42039,Newberry,SC,366,Columbia,SC
-29128,42047,Sumter,SC,366,Columbia,SC
-29129,42002,Aiken,SC,145,Augusta,GA
-29130,42014,Columbia,SC,366,Columbia,SC
-29132,42052,Winnsboro,SC,366,Columbia,SC
-29133,42040,Orangeburg,SC,366,Columbia,SC
-29135,42040,Orangeburg,SC,366,Columbia,SC
-29137,42002,Aiken,SC,145,Augusta,GA
-29138,42025,Greenwood,SC,366,Columbia,SC
-29142,42040,Orangeburg,SC,366,Columbia,SC
-29143,42047,Sumter,SC,366,Columbia,SC
-29145,42039,Newberry,SC,366,Columbia,SC
-29146,42040,Orangeburg,SC,366,Columbia,SC
-29147,42014,Columbia,SC,366,Columbia,SC
-29148,42034,Manning,SC,366,Columbia,SC
-29150,42047,Sumter,SC,366,Columbia,SC
-29151,42047,Sumter,SC,366,Columbia,SC
-29152,42047,Sumter,SC,366,Columbia,SC
-29153,42047,Sumter,SC,366,Columbia,SC
-29154,42047,Sumter,SC,366,Columbia,SC
-29160,42051,West Columbia,SC,366,Columbia,SC
-29161,42021,Florence,SC,367,Florence,SC
-29162,42021,Florence,SC,367,Florence,SC
-29163,42040,Orangeburg,SC,366,Columbia,SC
-29164,42002,Aiken,SC,145,Augusta,GA
-29166,42025,Greenwood,SC,366,Columbia,SC
-29168,42047,Sumter,SC,366,Columbia,SC
-29169,42051,West Columbia,SC,366,Columbia,SC
-29170,42051,West Columbia,SC,366,Columbia,SC
-29171,42051,West Columbia,SC,366,Columbia,SC
-29172,42051,West Columbia,SC,366,Columbia,SC
-29175,42009,Camden,SC,366,Columbia,SC
-29177,42014,Columbia,SC,366,Columbia,SC
-29178,42048,Union,SC,369,Spartanburg,SC
-29180,42052,Winnsboro,SC,366,Columbia,SC
-29201,42014,Columbia,SC,366,Columbia,SC
-29202,42014,Columbia,SC,366,Columbia,SC
-29203,42014,Columbia,SC,366,Columbia,SC
-29204,42014,Columbia,SC,366,Columbia,SC
-29205,42014,Columbia,SC,366,Columbia,SC
-29206,42014,Columbia,SC,366,Columbia,SC
-29207,42014,Columbia,SC,366,Columbia,SC
-29208,42014,Columbia,SC,366,Columbia,SC
-29209,42014,Columbia,SC,366,Columbia,SC
-29210,42014,Columbia,SC,366,Columbia,SC
-29211,42014,Columbia,SC,366,Columbia,SC
-29212,42014,Columbia,SC,366,Columbia,SC
-29214,42014,Columbia,SC,366,Columbia,SC
-29215,42014,Columbia,SC,366,Columbia,SC
-29216,42014,Columbia,SC,366,Columbia,SC
-29217,42014,Columbia,SC,366,Columbia,SC
-29218,42014,Columbia,SC,366,Columbia,SC
-29219,42014,Columbia,SC,366,Columbia,SC
-29220,42014,Columbia,SC,366,Columbia,SC
-29221,42014,Columbia,SC,366,Columbia,SC
-29222,42014,Columbia,SC,366,Columbia,SC
-29223,42014,Columbia,SC,366,Columbia,SC
-29224,42014,Columbia,SC,366,Columbia,SC
-29225,42014,Columbia,SC,366,Columbia,SC
-29226,42014,Columbia,SC,366,Columbia,SC
-29227,42014,Columbia,SC,366,Columbia,SC
-29228,42014,Columbia,SC,366,Columbia,SC
-29229,42014,Columbia,SC,366,Columbia,SC
-29230,42014,Columbia,SC,366,Columbia,SC
-29240,42014,Columbia,SC,366,Columbia,SC
-29250,42014,Columbia,SC,366,Columbia,SC
-29260,42014,Columbia,SC,366,Columbia,SC
-29290,42014,Columbia,SC,366,Columbia,SC
-29292,42014,Columbia,SC,366,Columbia,SC
-29301,42046,Spartanburg,SC,369,Spartanburg,SC
-29302,42046,Spartanburg,SC,369,Spartanburg,SC
-29303,42046,Spartanburg,SC,369,Spartanburg,SC
-29304,42046,Spartanburg,SC,369,Spartanburg,SC
-29305,42046,Spartanburg,SC,369,Spartanburg,SC
-29306,42046,Spartanburg,SC,369,Spartanburg,SC
-29307,42046,Spartanburg,SC,369,Spartanburg,SC
-29316,42046,Spartanburg,SC,369,Spartanburg,SC
-29319,42046,Spartanburg,SC,369,Spartanburg,SC
-29320,42046,Spartanburg,SC,369,Spartanburg,SC
-29321,42048,Union,SC,369,Spartanburg,SC
-29322,42046,Spartanburg,SC,369,Spartanburg,SC
-29323,42046,Spartanburg,SC,369,Spartanburg,SC
-29324,42046,Spartanburg,SC,369,Spartanburg,SC
-29325,42013,Clinton,SC,368,Greenville,SC
-29329,42046,Spartanburg,SC,369,Spartanburg,SC
-29330,42046,Spartanburg,SC,369,Spartanburg,SC
-29331,42046,Spartanburg,SC,369,Spartanburg,SC
-29332,42025,Greenwood,SC,366,Columbia,SC
-29333,42046,Spartanburg,SC,369,Spartanburg,SC
-29334,42046,Spartanburg,SC,369,Spartanburg,SC
-29335,42046,Spartanburg,SC,369,Spartanburg,SC
-29336,42046,Spartanburg,SC,369,Spartanburg,SC
-29338,42046,Spartanburg,SC,369,Spartanburg,SC
-29340,42022,Gaffney,SC,369,Spartanburg,SC
-29341,42022,Gaffney,SC,369,Spartanburg,SC
-29342,42022,Gaffney,SC,369,Spartanburg,SC
-29346,42046,Spartanburg,SC,369,Spartanburg,SC
-29348,42046,Spartanburg,SC,369,Spartanburg,SC
-29349,42046,Spartanburg,SC,369,Spartanburg,SC
-29351,42013,Clinton,SC,368,Greenville,SC
-29353,42046,Spartanburg,SC,369,Spartanburg,SC
-29355,42025,Greenwood,SC,366,Columbia,SC
-29356,34019,Columbus,NC,369,Spartanburg,SC
-29360,42013,Clinton,SC,368,Greenville,SC
-29364,42048,Union,SC,369,Spartanburg,SC
-29365,42046,Spartanburg,SC,369,Spartanburg,SC
-29368,42046,Spartanburg,SC,369,Spartanburg,SC
-29369,42046,Spartanburg,SC,369,Spartanburg,SC
-29370,42013,Clinton,SC,368,Greenville,SC
-29372,42046,Spartanburg,SC,369,Spartanburg,SC
-29373,42046,Spartanburg,SC,369,Spartanburg,SC
-29374,42046,Spartanburg,SC,369,Spartanburg,SC
-29375,42046,Spartanburg,SC,369,Spartanburg,SC
-29376,42046,Spartanburg,SC,369,Spartanburg,SC
-29377,42046,Spartanburg,SC,369,Spartanburg,SC
-29378,42046,Spartanburg,SC,369,Spartanburg,SC
-29379,42048,Union,SC,369,Spartanburg,SC
-29384,42025,Greenwood,SC,366,Columbia,SC
-29385,42046,Spartanburg,SC,369,Spartanburg,SC
-29386,42046,Spartanburg,SC,369,Spartanburg,SC
-29388,42053,Woodruff,SC,369,Spartanburg,SC
-29395,42046,Spartanburg,SC,369,Spartanburg,SC
-29401,42010,Charleston,SC,365,Charleston,SC
-29402,42010,Charleston,SC,365,Charleston,SC
-29403,42010,Charleston,SC,365,Charleston,SC
-29404,42010,Charleston,SC,365,Charleston,SC
-29405,42010,Charleston,SC,365,Charleston,SC
-29406,42010,Charleston,SC,365,Charleston,SC
-29407,42010,Charleston,SC,365,Charleston,SC
-29409,42010,Charleston,SC,365,Charleston,SC
-29410,42010,Charleston,SC,365,Charleston,SC
-29412,42010,Charleston,SC,365,Charleston,SC
-29413,42010,Charleston,SC,365,Charleston,SC
-29414,42010,Charleston,SC,365,Charleston,SC
-29415,42010,Charleston,SC,365,Charleston,SC
-29416,42010,Charleston,SC,365,Charleston,SC
-29417,42010,Charleston,SC,365,Charleston,SC
-29418,42010,Charleston,SC,365,Charleston,SC
-29419,42010,Charleston,SC,365,Charleston,SC
-29420,42010,Charleston,SC,365,Charleston,SC
-29422,42010,Charleston,SC,365,Charleston,SC
-29423,42010,Charleston,SC,365,Charleston,SC
-29424,42010,Charleston,SC,365,Charleston,SC
-29425,42010,Charleston,SC,365,Charleston,SC
-29426,42010,Charleston,SC,365,Charleston,SC
-29429,42036,Mount Pleasant,SC,365,Charleston,SC
-29431,42010,Charleston,SC,365,Charleston,SC
-29432,42040,Orangeburg,SC,366,Columbia,SC
-29433,42050,Walterboro,SC,365,Charleston,SC
-29434,42010,Charleston,SC,365,Charleston,SC
-29435,42050,Walterboro,SC,365,Charleston,SC
-29436,42010,Charleston,SC,365,Charleston,SC
-29437,42010,Charleston,SC,365,Charleston,SC
-29438,42010,Charleston,SC,365,Charleston,SC
-29439,42010,Charleston,SC,365,Charleston,SC
-29440,42023,Georgetown,SC,365,Charleston,SC
-29442,42023,Georgetown,SC,365,Charleston,SC
-29445,42010,Charleston,SC,365,Charleston,SC
-29446,42050,Walterboro,SC,365,Charleston,SC
-29447,42010,Charleston,SC,365,Charleston,SC
-29448,42010,Charleston,SC,365,Charleston,SC
-29449,42010,Charleston,SC,365,Charleston,SC
-29450,42036,Mount Pleasant,SC,365,Charleston,SC
-29451,42010,Charleston,SC,365,Charleston,SC
-29452,42050,Walterboro,SC,365,Charleston,SC
-29453,42010,Charleston,SC,365,Charleston,SC
-29455,42010,Charleston,SC,365,Charleston,SC
-29456,42010,Charleston,SC,365,Charleston,SC
-29457,42010,Charleston,SC,365,Charleston,SC
-29458,42036,Mount Pleasant,SC,365,Charleston,SC
-29461,42010,Charleston,SC,365,Charleston,SC
-29464,42036,Mount Pleasant,SC,365,Charleston,SC
-29465,42036,Mount Pleasant,SC,365,Charleston,SC
-29466,42036,Mount Pleasant,SC,365,Charleston,SC
-29468,42010,Charleston,SC,365,Charleston,SC
-29469,42010,Charleston,SC,365,Charleston,SC
-29470,42010,Charleston,SC,365,Charleston,SC
-29471,42010,Charleston,SC,365,Charleston,SC
-29472,42010,Charleston,SC,365,Charleston,SC
-29474,42050,Walterboro,SC,365,Charleston,SC
-29475,42050,Walterboro,SC,365,Charleston,SC
-29476,42010,Charleston,SC,365,Charleston,SC
-29477,42010,Charleston,SC,365,Charleston,SC
-29479,42010,Charleston,SC,365,Charleston,SC
-29481,42050,Walterboro,SC,365,Charleston,SC
-29482,42010,Charleston,SC,365,Charleston,SC
-29483,42010,Charleston,SC,365,Charleston,SC
-29484,42010,Charleston,SC,365,Charleston,SC
-29485,42010,Charleston,SC,365,Charleston,SC
-29486,42010,Charleston,SC,365,Charleston,SC
-29487,42010,Charleston,SC,365,Charleston,SC
-29488,42050,Walterboro,SC,365,Charleston,SC
-29492,42010,Charleston,SC,365,Charleston,SC
-29493,42050,Walterboro,SC,365,Charleston,SC
-29501,42021,Florence,SC,367,Florence,SC
-29502,42021,Florence,SC,367,Florence,SC
-29503,42021,Florence,SC,367,Florence,SC
-29504,42021,Florence,SC,367,Florence,SC
-29505,42021,Florence,SC,367,Florence,SC
-29506,42021,Florence,SC,367,Florence,SC
-29510,42023,Georgetown,SC,365,Charleston,SC
-29511,42015,Conway,SC,365,Charleston,SC
-29512,42007,Bennettsville,SC,367,Florence,SC
-29516,42007,Bennettsville,SC,367,Florence,SC
-29518,42021,Florence,SC,367,Florence,SC
-29519,42035,Marion,SC,367,Florence,SC
-29520,42011,Cheraw,SC,367,Florence,SC
-29525,42007,Bennettsville,SC,367,Florence,SC
-29526,42015,Conway,SC,365,Charleston,SC
-29527,42015,Conway,SC,365,Charleston,SC
-29528,42015,Conway,SC,365,Charleston,SC
-29530,42021,Florence,SC,367,Florence,SC
-29532,42021,Florence,SC,367,Florence,SC
-29536,42017,Dillon,SC,367,Florence,SC
-29540,42021,Florence,SC,367,Florence,SC
-29541,42021,Florence,SC,367,Florence,SC
-29543,42037,Mullins,SC,367,Florence,SC
-29544,42015,Conway,SC,365,Charleston,SC
-29545,42033,Loris,SC,367,Florence,SC
-29546,42035,Marion,SC,367,Florence,SC
-29547,42017,Dillon,SC,367,Florence,SC
-29550,42027,Hartsville,SC,366,Columbia,SC
-29551,42027,Hartsville,SC,366,Columbia,SC
-29554,42021,Florence,SC,367,Florence,SC
-29555,42021,Florence,SC,367,Florence,SC
-29556,42029,Kingstree,SC,367,Florence,SC
-29560,42021,Florence,SC,367,Florence,SC
-29563,42037,Mullins,SC,367,Florence,SC
-29564,42029,Kingstree,SC,367,Florence,SC
-29565,42017,Dillon,SC,367,Florence,SC
-29566,42038,Myrtle Beach,SC,365,Charleston,SC
-29567,42017,Dillon,SC,367,Florence,SC
-29568,42033,Loris,SC,367,Florence,SC
-29569,42033,Loris,SC,367,Florence,SC
-29570,42007,Bennettsville,SC,367,Florence,SC
-29571,42035,Marion,SC,367,Florence,SC
-29572,42038,Myrtle Beach,SC,365,Charleston,SC
-29574,42037,Mullins,SC,367,Florence,SC
-29575,42038,Myrtle Beach,SC,365,Charleston,SC
-29576,42038,Myrtle Beach,SC,365,Charleston,SC
-29577,42038,Myrtle Beach,SC,365,Charleston,SC
-29578,42038,Myrtle Beach,SC,365,Charleston,SC
-29579,42015,Conway,SC,365,Charleston,SC
-29580,42021,Florence,SC,367,Florence,SC
-29581,42033,Loris,SC,367,Florence,SC
-29582,42038,Myrtle Beach,SC,365,Charleston,SC
-29583,42021,Florence,SC,367,Florence,SC
-29584,42011,Cheraw,SC,367,Florence,SC
-29585,42023,Georgetown,SC,365,Charleston,SC
-29587,42038,Myrtle Beach,SC,365,Charleston,SC
-29588,42038,Myrtle Beach,SC,365,Charleston,SC
-29589,42035,Marion,SC,367,Florence,SC
-29590,42029,Kingstree,SC,367,Florence,SC
-29591,42021,Florence,SC,367,Florence,SC
-29592,42035,Marion,SC,367,Florence,SC
-29593,42021,Florence,SC,367,Florence,SC
-29594,42007,Bennettsville,SC,367,Florence,SC
-29596,42011,Cheraw,SC,367,Florence,SC
-29597,42038,Myrtle Beach,SC,365,Charleston,SC
-29598,42038,Myrtle Beach,SC,365,Charleston,SC
-29601,42024,Greenville,SC,368,Greenville,SC
-29602,42024,Greenville,SC,368,Greenville,SC
-29603,42024,Greenville,SC,368,Greenville,SC
-29604,42024,Greenville,SC,368,Greenville,SC
-29605,42024,Greenville,SC,368,Greenville,SC
-29606,42024,Greenville,SC,368,Greenville,SC
-29607,42024,Greenville,SC,368,Greenville,SC
-29608,42024,Greenville,SC,368,Greenville,SC
-29609,42024,Greenville,SC,368,Greenville,SC
-29610,42024,Greenville,SC,368,Greenville,SC
-29611,42024,Greenville,SC,368,Greenville,SC
-29612,42024,Greenville,SC,368,Greenville,SC
-29613,42024,Greenville,SC,368,Greenville,SC
-29614,42024,Greenville,SC,368,Greenville,SC
-29615,42024,Greenville,SC,368,Greenville,SC
-29616,42024,Greenville,SC,368,Greenville,SC
-29617,42024,Greenville,SC,368,Greenville,SC
-29620,42001,Abbeville,SC,366,Columbia,SC
-29621,42003,Anderson,SC,368,Greenville,SC
-29622,42003,Anderson,SC,368,Greenville,SC
-29623,42003,Anderson,SC,368,Greenville,SC
-29624,42003,Anderson,SC,368,Greenville,SC
-29625,42003,Anderson,SC,368,Greenville,SC
-29626,42003,Anderson,SC,368,Greenville,SC
-29627,42003,Anderson,SC,368,Greenville,SC
-29628,42001,Abbeville,SC,366,Columbia,SC
-29630,42018,Easley,SC,368,Greenville,SC
-29631,42003,Anderson,SC,368,Greenville,SC
-29632,42003,Anderson,SC,368,Greenville,SC
-29633,42003,Anderson,SC,368,Greenville,SC
-29634,42003,Anderson,SC,368,Greenville,SC
-29635,42024,Greenville,SC,368,Greenville,SC
-29636,42024,Greenville,SC,368,Greenville,SC
-29638,42025,Greenwood,SC,366,Columbia,SC
-29639,42001,Abbeville,SC,366,Columbia,SC
-29640,42018,Easley,SC,368,Greenville,SC
-29641,42018,Easley,SC,368,Greenville,SC
-29642,42018,Easley,SC,368,Greenville,SC
-29643,42044,Seneca,SC,368,Greenville,SC
-29644,42024,Greenville,SC,368,Greenville,SC
-29645,42024,Greenville,SC,368,Greenville,SC
-29646,42025,Greenwood,SC,366,Columbia,SC
-29647,42025,Greenwood,SC,366,Columbia,SC
-29648,42025,Greenwood,SC,366,Columbia,SC
-29649,42025,Greenwood,SC,366,Columbia,SC
-29650,42026,Greer,SC,368,Greenville,SC
-29651,42026,Greer,SC,368,Greenville,SC
-29652,42026,Greer,SC,368,Greenville,SC
-29653,42025,Greenwood,SC,366,Columbia,SC
-29654,42003,Anderson,SC,368,Greenville,SC
-29655,42003,Anderson,SC,368,Greenville,SC
-29656,42003,Anderson,SC,368,Greenville,SC
-29657,42018,Easley,SC,368,Greenville,SC
-29658,42044,Seneca,SC,368,Greenville,SC
-29659,42001,Abbeville,SC,366,Columbia,SC
-29661,42024,Greenville,SC,368,Greenville,SC
-29662,42024,Greenville,SC,368,Greenville,SC
-29664,42044,Seneca,SC,368,Greenville,SC
-29665,42044,Seneca,SC,368,Greenville,SC
-29666,42025,Greenwood,SC,366,Columbia,SC
-29667,42018,Easley,SC,368,Greenville,SC
-29669,42024,Greenville,SC,368,Greenville,SC
-29670,42003,Anderson,SC,368,Greenville,SC
-29671,42041,Pickens,SC,368,Greenville,SC
-29672,42044,Seneca,SC,368,Greenville,SC
-29673,42024,Greenville,SC,368,Greenville,SC
-29675,42044,Seneca,SC,368,Greenville,SC
-29676,42044,Seneca,SC,368,Greenville,SC
-29677,42003,Anderson,SC,368,Greenville,SC
-29678,42044,Seneca,SC,368,Greenville,SC
-29679,42044,Seneca,SC,368,Greenville,SC
-29680,42024,Greenville,SC,368,Greenville,SC
-29681,42024,Greenville,SC,368,Greenville,SC
-29682,42041,Pickens,SC,368,Greenville,SC
-29683,42024,Greenville,SC,368,Greenville,SC
-29684,42003,Anderson,SC,368,Greenville,SC
-29685,42041,Pickens,SC,368,Greenville,SC
-29686,42044,Seneca,SC,368,Greenville,SC
-29687,42024,Greenville,SC,368,Greenville,SC
-29688,42024,Greenville,SC,368,Greenville,SC
-29689,42003,Anderson,SC,368,Greenville,SC
-29690,42024,Greenville,SC,368,Greenville,SC
-29691,42044,Seneca,SC,368,Greenville,SC
-29692,42013,Clinton,SC,368,Greenville,SC
-29693,42044,Seneca,SC,368,Greenville,SC
-29695,42025,Greenwood,SC,366,Columbia,SC
-29696,42044,Seneca,SC,368,Greenville,SC
-29697,42003,Anderson,SC,368,Greenville,SC
-29702,42022,Gaffney,SC,369,Spartanburg,SC
-29703,42043,Rock Hill,SC,311,Charlotte,NC
-29704,42043,Rock Hill,SC,311,Charlotte,NC
-29706,42012,Chester,SC,366,Columbia,SC
-29707,42031,Lancaster,SC,311,Charlotte,NC
-29708,42043,Rock Hill,SC,311,Charlotte,NC
-29709,42011,Cheraw,SC,367,Florence,SC
-29710,42043,Rock Hill,SC,311,Charlotte,NC
-29712,42043,Rock Hill,SC,311,Charlotte,NC
-29714,42031,Lancaster,SC,311,Charlotte,NC
-29715,42043,Rock Hill,SC,311,Charlotte,NC
-29716,42043,Rock Hill,SC,311,Charlotte,NC
-29717,42043,Rock Hill,SC,311,Charlotte,NC
-29718,34057,Monroe,NC,311,Charlotte,NC
-29720,42031,Lancaster,SC,311,Charlotte,NC
-29721,42031,Lancaster,SC,311,Charlotte,NC
-29722,42031,Lancaster,SC,311,Charlotte,NC
-29724,42012,Chester,SC,366,Columbia,SC
-29726,42043,Rock Hill,SC,311,Charlotte,NC
-29727,42011,Cheraw,SC,367,Florence,SC
-29728,34057,Monroe,NC,311,Charlotte,NC
-29729,42012,Chester,SC,366,Columbia,SC
-29730,42043,Rock Hill,SC,311,Charlotte,NC
-29731,42043,Rock Hill,SC,311,Charlotte,NC
-29732,42043,Rock Hill,SC,311,Charlotte,NC
-29733,42043,Rock Hill,SC,311,Charlotte,NC
-29734,42043,Rock Hill,SC,311,Charlotte,NC
-29741,42011,Cheraw,SC,367,Florence,SC
-29742,42043,Rock Hill,SC,311,Charlotte,NC
-29743,42043,Rock Hill,SC,311,Charlotte,NC
-29744,42031,Lancaster,SC,311,Charlotte,NC
-29745,42043,Rock Hill,SC,311,Charlotte,NC
-29801,42002,Aiken,SC,145,Augusta,GA
-29802,42002,Aiken,SC,145,Augusta,GA
-29803,42002,Aiken,SC,145,Augusta,GA
-29804,42002,Aiken,SC,145,Augusta,GA
-29805,42002,Aiken,SC,145,Augusta,GA
-29808,11008,Augusta,GA,145,Augusta,GA
-29809,42002,Aiken,SC,145,Augusta,GA
-29810,42020,Fairfax,SC,145,Augusta,GA
-29812,42005,Barnwell,SC,366,Columbia,SC
-29813,42005,Barnwell,SC,366,Columbia,SC
-29816,11008,Augusta,GA,145,Augusta,GA
-29817,42005,Barnwell,SC,366,Columbia,SC
-29819,42025,Greenwood,SC,366,Columbia,SC
-29821,11008,Augusta,GA,145,Augusta,GA
-29822,11008,Augusta,GA,145,Augusta,GA
-29824,42019,Edgefield,SC,145,Augusta,GA
-29826,42002,Aiken,SC,145,Augusta,GA
-29827,42020,Fairfax,SC,145,Augusta,GA
-29828,11008,Augusta,GA,145,Augusta,GA
-29829,42002,Aiken,SC,145,Augusta,GA
-29831,11008,Augusta,GA,145,Augusta,GA
-29832,11008,Augusta,GA,145,Augusta,GA
-29834,11008,Augusta,GA,145,Augusta,GA
-29835,42025,Greenwood,SC,366,Columbia,SC
-29836,42020,Fairfax,SC,145,Augusta,GA
-29838,11008,Augusta,GA,145,Augusta,GA
-29839,42002,Aiken,SC,145,Augusta,GA
-29840,42001,Abbeville,SC,366,Columbia,SC
-29841,11008,Augusta,GA,145,Augusta,GA
-29842,11008,Augusta,GA,145,Augusta,GA
-29843,42004,Bamberg,SC,366,Columbia,SC
-29844,42025,Greenwood,SC,366,Columbia,SC
-29845,42025,Greenwood,SC,366,Columbia,SC
-29846,42020,Fairfax,SC,145,Augusta,GA
-29847,11008,Augusta,GA,145,Augusta,GA
-29848,42025,Greenwood,SC,366,Columbia,SC
-29849,42020,Fairfax,SC,145,Augusta,GA
-29850,42002,Aiken,SC,145,Augusta,GA
-29851,11008,Augusta,GA,145,Augusta,GA
-29853,42002,Aiken,SC,145,Augusta,GA
-29856,42002,Aiken,SC,145,Augusta,GA
-29860,11008,Augusta,GA,145,Augusta,GA
-29861,11008,Augusta,GA,145,Augusta,GA
-29899,42025,Greenwood,SC,366,Columbia,SC
-29901,42006,Beaufort,SC,149,Savannah,GA
-29902,42006,Beaufort,SC,149,Savannah,GA
-29903,42006,Beaufort,SC,149,Savannah,GA
-29904,42006,Beaufort,SC,149,Savannah,GA
-29905,42006,Beaufort,SC,149,Savannah,GA
-29906,42006,Beaufort,SC,149,Savannah,GA
-29907,42006,Beaufort,SC,149,Savannah,GA
-29909,42028,Hilton Head Island,SC,149,Savannah,GA
-29910,42028,Hilton Head Island,SC,149,Savannah,GA
-29911,42049,Varnville,SC,365,Charleston,SC
-29912,42042,Ridgeland,SC,149,Savannah,GA
-29913,42049,Varnville,SC,365,Charleston,SC
-29914,42006,Beaufort,SC,149,Savannah,GA
-29915,42028,Hilton Head Island,SC,149,Savannah,GA
-29916,42006,Beaufort,SC,149,Savannah,GA
-29918,42049,Varnville,SC,365,Charleston,SC
-29920,42006,Beaufort,SC,149,Savannah,GA
-29921,42049,Varnville,SC,365,Charleston,SC
-29922,42042,Ridgeland,SC,149,Savannah,GA
-29923,42020,Fairfax,SC,145,Augusta,GA
-29924,42049,Varnville,SC,365,Charleston,SC
-29925,42028,Hilton Head Island,SC,149,Savannah,GA
-29926,42028,Hilton Head Island,SC,149,Savannah,GA
-29927,11102,Savannah,GA,149,Savannah,GA
-29928,42028,Hilton Head Island,SC,149,Savannah,GA
-29929,42050,Walterboro,SC,365,Charleston,SC
-29931,42006,Beaufort,SC,149,Savannah,GA
-29932,42020,Fairfax,SC,145,Augusta,GA
-29933,42049,Varnville,SC,365,Charleston,SC
-29934,42042,Ridgeland,SC,149,Savannah,GA
-29935,42006,Beaufort,SC,149,Savannah,GA
-29936,42042,Ridgeland,SC,149,Savannah,GA
-29938,42028,Hilton Head Island,SC,149,Savannah,GA
-29939,42049,Varnville,SC,365,Charleston,SC
-29940,42006,Beaufort,SC,149,Savannah,GA
-29941,42006,Beaufort,SC,149,Savannah,GA
-29943,42042,Ridgeland,SC,149,Savannah,GA
-29944,42049,Varnville,SC,365,Charleston,SC
-29945,42006,Beaufort,SC,149,Savannah,GA
-30002,11043,Decatur,GA,144,Atlanta,GA
-30003,11007,Atlanta,GA,144,Atlanta,GA
-30004,11099,Roswell,GA,144,Atlanta,GA
-30005,11007,Atlanta,GA,144,Atlanta,GA
-30006,11080,Marietta,GA,144,Atlanta,GA
-30007,11007,Atlanta,GA,144,Atlanta,GA
-30008,11080,Marietta,GA,144,Atlanta,GA
-30009,11099,Roswell,GA,144,Atlanta,GA
-30010,11007,Atlanta,GA,144,Atlanta,GA
-30011,11075,Lawrenceville,GA,144,Atlanta,GA
-30012,11034,Conyers,GA,144,Atlanta,GA
-30013,11034,Conyers,GA,144,Atlanta,GA
-30014,11036,Covington,GA,144,Atlanta,GA
-30015,11036,Covington,GA,144,Atlanta,GA
-30016,11036,Covington,GA,144,Atlanta,GA
-30017,11075,Lawrenceville,GA,144,Atlanta,GA
-30018,11036,Covington,GA,144,Atlanta,GA
-30019,11075,Lawrenceville,GA,144,Atlanta,GA
-30021,11043,Decatur,GA,144,Atlanta,GA
-30022,11007,Atlanta,GA,144,Atlanta,GA
-30023,11007,Atlanta,GA,144,Atlanta,GA
-30024,11075,Lawrenceville,GA,144,Atlanta,GA
-30025,11085,Monroe,GA,144,Atlanta,GA
-30026,11075,Lawrenceville,GA,144,Atlanta,GA
-30028,11099,Roswell,GA,144,Atlanta,GA
-30029,11075,Lawrenceville,GA,144,Atlanta,GA
-30030,11043,Decatur,GA,144,Atlanta,GA
-30031,11043,Decatur,GA,144,Atlanta,GA
-30032,11007,Atlanta,GA,144,Atlanta,GA
-30033,11043,Decatur,GA,144,Atlanta,GA
-30034,11007,Atlanta,GA,144,Atlanta,GA
-30035,11043,Decatur,GA,144,Atlanta,GA
-30036,11007,Atlanta,GA,144,Atlanta,GA
-30037,11007,Atlanta,GA,144,Atlanta,GA
-30038,11007,Atlanta,GA,144,Atlanta,GA
-30039,11007,Atlanta,GA,144,Atlanta,GA
-30040,11099,Roswell,GA,144,Atlanta,GA
-30041,11099,Roswell,GA,144,Atlanta,GA
-30042,11075,Lawrenceville,GA,144,Atlanta,GA
-30043,11075,Lawrenceville,GA,144,Atlanta,GA
-30044,11075,Lawrenceville,GA,144,Atlanta,GA
-30045,11075,Lawrenceville,GA,144,Atlanta,GA
-30046,11075,Lawrenceville,GA,144,Atlanta,GA
-30047,11007,Atlanta,GA,144,Atlanta,GA
-30048,11007,Atlanta,GA,144,Atlanta,GA
-30049,11075,Lawrenceville,GA,144,Atlanta,GA
-30052,11104,Snellville,GA,144,Atlanta,GA
-30054,11036,Covington,GA,144,Atlanta,GA
-30055,11036,Covington,GA,144,Atlanta,GA
-30056,11036,Covington,GA,144,Atlanta,GA
-30058,11007,Atlanta,GA,144,Atlanta,GA
-30060,11080,Marietta,GA,144,Atlanta,GA
-30061,11080,Marietta,GA,144,Atlanta,GA
-30062,11080,Marietta,GA,144,Atlanta,GA
-30063,11080,Marietta,GA,144,Atlanta,GA
-30064,11080,Marietta,GA,144,Atlanta,GA
-30065,11080,Marietta,GA,144,Atlanta,GA
-30066,11080,Marietta,GA,144,Atlanta,GA
-30067,11080,Marietta,GA,144,Atlanta,GA
-30068,11007,Atlanta,GA,144,Atlanta,GA
-30069,11080,Marietta,GA,144,Atlanta,GA
-30070,11036,Covington,GA,144,Atlanta,GA
-30071,11007,Atlanta,GA,144,Atlanta,GA
-30072,11043,Decatur,GA,144,Atlanta,GA
-30074,11007,Atlanta,GA,144,Atlanta,GA
-30075,11099,Roswell,GA,144,Atlanta,GA
-30076,11099,Roswell,GA,144,Atlanta,GA
-30077,11099,Roswell,GA,144,Atlanta,GA
-30078,11104,Snellville,GA,144,Atlanta,GA
-30079,11043,Decatur,GA,144,Atlanta,GA
-30080,11103,Smyrna,GA,144,Atlanta,GA
-30081,11103,Smyrna,GA,144,Atlanta,GA
-30082,11103,Smyrna,GA,144,Atlanta,GA
-30083,11043,Decatur,GA,144,Atlanta,GA
-30084,11007,Atlanta,GA,144,Atlanta,GA
-30085,11007,Atlanta,GA,144,Atlanta,GA
-30086,11043,Decatur,GA,144,Atlanta,GA
-30087,11007,Atlanta,GA,144,Atlanta,GA
-30088,11007,Atlanta,GA,144,Atlanta,GA
-30090,11080,Marietta,GA,144,Atlanta,GA
-30091,11007,Atlanta,GA,144,Atlanta,GA
-30092,11007,Atlanta,GA,144,Atlanta,GA
-30093,11007,Atlanta,GA,144,Atlanta,GA
-30094,11034,Conyers,GA,144,Atlanta,GA
-30095,11075,Lawrenceville,GA,144,Atlanta,GA
-30096,11075,Lawrenceville,GA,144,Atlanta,GA
-30097,11075,Lawrenceville,GA,144,Atlanta,GA
-30098,11075,Lawrenceville,GA,144,Atlanta,GA
-30099,11075,Lawrenceville,GA,144,Atlanta,GA
-30101,11080,Marietta,GA,144,Atlanta,GA
-30102,11080,Marietta,GA,144,Atlanta,GA
-30103,11098,Rome,GA,148,Rome,GA
-30104,11098,Rome,GA,148,Rome,GA
-30105,11098,Rome,GA,148,Rome,GA
-30106,11009,Austell,GA,144,Atlanta,GA
-30107,11023,Canton,GA,144,Atlanta,GA
-30108,11024,Carrollton,GA,144,Atlanta,GA
-30109,11024,Carrollton,GA,144,Atlanta,GA
-30110,11017,Bremen,GA,148,Rome,GA
-30111,11009,Austell,GA,144,Atlanta,GA
-30112,11024,Carrollton,GA,144,Atlanta,GA
-30113,11017,Bremen,GA,148,Rome,GA
-30114,11023,Canton,GA,144,Atlanta,GA
-30115,11023,Canton,GA,144,Atlanta,GA
-30116,11024,Carrollton,GA,144,Atlanta,GA
-30117,11024,Carrollton,GA,144,Atlanta,GA
-30118,11024,Carrollton,GA,144,Atlanta,GA
-30119,11024,Carrollton,GA,144,Atlanta,GA
-30120,11025,Cartersville,GA,144,Atlanta,GA
-30121,11025,Cartersville,GA,144,Atlanta,GA
-30122,11009,Austell,GA,144,Atlanta,GA
-30123,11025,Cartersville,GA,144,Atlanta,GA
-30124,11098,Rome,GA,148,Rome,GA
-30125,11098,Rome,GA,148,Rome,GA
-30126,11009,Austell,GA,144,Atlanta,GA
-30127,11009,Austell,GA,144,Atlanta,GA
-30129,11098,Rome,GA,148,Rome,GA
-30132,11040,Dallas,GA,144,Atlanta,GA
-30133,11047,Douglasville,GA,144,Atlanta,GA
-30134,11047,Douglasville,GA,144,Atlanta,GA
-30135,11047,Douglasville,GA,144,Atlanta,GA
-30137,11025,Cartersville,GA,144,Atlanta,GA
-30138,11098,Rome,GA,148,Rome,GA
-30139,11021,Calhoun,GA,148,Rome,GA
-30140,11017,Bremen,GA,148,Rome,GA
-30141,11009,Austell,GA,144,Atlanta,GA
-30142,11023,Canton,GA,144,Atlanta,GA
-30143,11071,Jasper,GA,144,Atlanta,GA
-30144,11080,Marietta,GA,144,Atlanta,GA
-30145,11098,Rome,GA,148,Rome,GA
-30146,11023,Canton,GA,144,Atlanta,GA
-30147,11098,Rome,GA,148,Rome,GA
-30148,11071,Jasper,GA,144,Atlanta,GA
-30149,11098,Rome,GA,148,Rome,GA
-30150,11024,Carrollton,GA,144,Atlanta,GA
-30151,11023,Canton,GA,144,Atlanta,GA
-30152,11080,Marietta,GA,144,Atlanta,GA
-30153,11098,Rome,GA,148,Rome,GA
-30154,11047,Douglasville,GA,144,Atlanta,GA
-30156,11080,Marietta,GA,144,Atlanta,GA
-30157,11040,Dallas,GA,144,Atlanta,GA
-30160,11080,Marietta,GA,144,Atlanta,GA
-30161,11098,Rome,GA,148,Rome,GA
-30162,11098,Rome,GA,148,Rome,GA
-30164,11098,Rome,GA,148,Rome,GA
-30165,11098,Rome,GA,148,Rome,GA
-30168,11009,Austell,GA,144,Atlanta,GA
-30169,11023,Canton,GA,144,Atlanta,GA
-30170,11024,Carrollton,GA,144,Atlanta,GA
-30171,11021,Calhoun,GA,148,Rome,GA
-30172,11098,Rome,GA,148,Rome,GA
-30173,11098,Rome,GA,148,Rome,GA
-30175,11071,Jasper,GA,144,Atlanta,GA
-30176,11017,Bremen,GA,148,Rome,GA
-30177,11071,Jasper,GA,144,Atlanta,GA
-30178,11098,Rome,GA,148,Rome,GA
-30179,11024,Carrollton,GA,144,Atlanta,GA
-30180,11122,Villa Rica,GA,144,Atlanta,GA
-30182,11024,Carrollton,GA,144,Atlanta,GA
-30183,11023,Canton,GA,144,Atlanta,GA
-30184,11025,Cartersville,GA,144,Atlanta,GA
-30185,11024,Carrollton,GA,144,Atlanta,GA
-30187,11047,Douglasville,GA,144,Atlanta,GA
-30188,11080,Marietta,GA,144,Atlanta,GA
-30189,11080,Marietta,GA,144,Atlanta,GA
-30204,11114,Thomaston,GA,147,Macon,GA
-30205,11062,Griffin,GA,144,Atlanta,GA
-30206,11062,Griffin,GA,144,Atlanta,GA
-30212,11062,Griffin,GA,144,Atlanta,GA
-30213,11007,Atlanta,GA,144,Atlanta,GA
-30214,11007,Atlanta,GA,144,Atlanta,GA
-30215,11007,Atlanta,GA,144,Atlanta,GA
-30216,11070,Jackson,GA,144,Atlanta,GA
-30217,11090,Newnan,GA,144,Atlanta,GA
-30218,11073,La Grange,GA,144,Atlanta,GA
-30220,11090,Newnan,GA,144,Atlanta,GA
-30222,11073,La Grange,GA,144,Atlanta,GA
-30223,11062,Griffin,GA,144,Atlanta,GA
-30224,11062,Griffin,GA,144,Atlanta,GA
-30228,11109,Stockbridge,GA,144,Atlanta,GA
-30229,11090,Newnan,GA,144,Atlanta,GA
-30230,11073,La Grange,GA,144,Atlanta,GA
-30233,11070,Jackson,GA,144,Atlanta,GA
-30234,11070,Jackson,GA,144,Atlanta,GA
-30236,11096,Riverdale,GA,144,Atlanta,GA
-30237,11096,Riverdale,GA,144,Atlanta,GA
-30238,11096,Riverdale,GA,144,Atlanta,GA
-30240,11073,La Grange,GA,144,Atlanta,GA
-30241,11073,La Grange,GA,144,Atlanta,GA
-30248,11109,Stockbridge,GA,144,Atlanta,GA
-30250,11109,Stockbridge,GA,144,Atlanta,GA
-30251,11090,Newnan,GA,144,Atlanta,GA
-30252,11109,Stockbridge,GA,144,Atlanta,GA
-30253,11109,Stockbridge,GA,144,Atlanta,GA
-30256,11114,Thomaston,GA,147,Macon,GA
-30257,11062,Griffin,GA,144,Atlanta,GA
-30258,11114,Thomaston,GA,147,Macon,GA
-30259,11090,Newnan,GA,144,Atlanta,GA
-30260,11096,Riverdale,GA,144,Atlanta,GA
-30261,11073,La Grange,GA,144,Atlanta,GA
-30263,11090,Newnan,GA,144,Atlanta,GA
-30264,11090,Newnan,GA,144,Atlanta,GA
-30265,11090,Newnan,GA,144,Atlanta,GA
-30266,11062,Griffin,GA,144,Atlanta,GA
-30268,11090,Newnan,GA,144,Atlanta,GA
-30269,11007,Atlanta,GA,144,Atlanta,GA
-30270,11007,Atlanta,GA,144,Atlanta,GA
-30271,11090,Newnan,GA,144,Atlanta,GA
-30272,11049,East Point,GA,144,Atlanta,GA
-30273,11096,Riverdale,GA,144,Atlanta,GA
-30274,11096,Riverdale,GA,144,Atlanta,GA
-30275,11090,Newnan,GA,144,Atlanta,GA
-30276,11090,Newnan,GA,144,Atlanta,GA
-30277,11090,Newnan,GA,144,Atlanta,GA
-30281,11109,Stockbridge,GA,144,Atlanta,GA
-30284,11109,Stockbridge,GA,144,Atlanta,GA
-30285,11114,Thomaston,GA,147,Macon,GA
-30286,11114,Thomaston,GA,147,Macon,GA
-30287,11096,Riverdale,GA,144,Atlanta,GA
-30288,11096,Riverdale,GA,144,Atlanta,GA
-30289,11090,Newnan,GA,144,Atlanta,GA
-30290,11007,Atlanta,GA,144,Atlanta,GA
-30291,11049,East Point,GA,144,Atlanta,GA
-30292,11062,Griffin,GA,144,Atlanta,GA
-30293,11073,La Grange,GA,144,Atlanta,GA
-30294,11007,Atlanta,GA,144,Atlanta,GA
-30295,11062,Griffin,GA,144,Atlanta,GA
-30296,11096,Riverdale,GA,144,Atlanta,GA
-30297,11096,Riverdale,GA,144,Atlanta,GA
-30298,11096,Riverdale,GA,144,Atlanta,GA
-30301,11007,Atlanta,GA,144,Atlanta,GA
-30302,11007,Atlanta,GA,144,Atlanta,GA
-30303,11007,Atlanta,GA,144,Atlanta,GA
-30304,11007,Atlanta,GA,144,Atlanta,GA
-30305,11007,Atlanta,GA,144,Atlanta,GA
-30306,11007,Atlanta,GA,144,Atlanta,GA
-30307,11007,Atlanta,GA,144,Atlanta,GA
-30308,11007,Atlanta,GA,144,Atlanta,GA
-30309,11007,Atlanta,GA,144,Atlanta,GA
-30310,11007,Atlanta,GA,144,Atlanta,GA
-30311,11007,Atlanta,GA,144,Atlanta,GA
-30312,11007,Atlanta,GA,144,Atlanta,GA
-30313,11007,Atlanta,GA,144,Atlanta,GA
-30314,11007,Atlanta,GA,144,Atlanta,GA
-30315,11007,Atlanta,GA,144,Atlanta,GA
-30316,11007,Atlanta,GA,144,Atlanta,GA
-30317,11007,Atlanta,GA,144,Atlanta,GA
-30318,11007,Atlanta,GA,144,Atlanta,GA
-30319,11007,Atlanta,GA,144,Atlanta,GA
-30320,11049,East Point,GA,144,Atlanta,GA
-30321,11007,Atlanta,GA,144,Atlanta,GA
-30322,11007,Atlanta,GA,144,Atlanta,GA
-30324,11007,Atlanta,GA,144,Atlanta,GA
-30325,11007,Atlanta,GA,144,Atlanta,GA
-30326,11007,Atlanta,GA,144,Atlanta,GA
-30327,11007,Atlanta,GA,144,Atlanta,GA
-30328,11007,Atlanta,GA,144,Atlanta,GA
-30329,11007,Atlanta,GA,144,Atlanta,GA
-30331,11007,Atlanta,GA,144,Atlanta,GA
-30332,11007,Atlanta,GA,144,Atlanta,GA
-30333,11007,Atlanta,GA,144,Atlanta,GA
-30334,11007,Atlanta,GA,144,Atlanta,GA
-30336,11007,Atlanta,GA,144,Atlanta,GA
-30337,11049,East Point,GA,144,Atlanta,GA
-30338,11007,Atlanta,GA,144,Atlanta,GA
-30339,11007,Atlanta,GA,144,Atlanta,GA
-30340,11007,Atlanta,GA,144,Atlanta,GA
-30341,11007,Atlanta,GA,144,Atlanta,GA
-30342,11007,Atlanta,GA,144,Atlanta,GA
-30343,11007,Atlanta,GA,144,Atlanta,GA
-30344,11049,East Point,GA,144,Atlanta,GA
-30345,11007,Atlanta,GA,144,Atlanta,GA
-30346,11007,Atlanta,GA,144,Atlanta,GA
-30348,11007,Atlanta,GA,144,Atlanta,GA
-30349,11049,East Point,GA,144,Atlanta,GA
-30350,11007,Atlanta,GA,144,Atlanta,GA
-30353,11007,Atlanta,GA,144,Atlanta,GA
-30354,11007,Atlanta,GA,144,Atlanta,GA
-30355,11007,Atlanta,GA,144,Atlanta,GA
-30356,11007,Atlanta,GA,144,Atlanta,GA
-30357,11007,Atlanta,GA,144,Atlanta,GA
-30358,11007,Atlanta,GA,144,Atlanta,GA
-30359,11007,Atlanta,GA,144,Atlanta,GA
-30360,11007,Atlanta,GA,144,Atlanta,GA
-30361,11007,Atlanta,GA,144,Atlanta,GA
-30362,11007,Atlanta,GA,144,Atlanta,GA
-30363,11007,Atlanta,GA,144,Atlanta,GA
-30364,11049,East Point,GA,144,Atlanta,GA
-30366,11007,Atlanta,GA,144,Atlanta,GA
-30368,11007,Atlanta,GA,144,Atlanta,GA
-30369,11007,Atlanta,GA,144,Atlanta,GA
-30370,11007,Atlanta,GA,144,Atlanta,GA
-30371,11007,Atlanta,GA,144,Atlanta,GA
-30374,11007,Atlanta,GA,144,Atlanta,GA
-30375,11007,Atlanta,GA,144,Atlanta,GA
-30377,11007,Atlanta,GA,144,Atlanta,GA
-30378,11007,Atlanta,GA,144,Atlanta,GA
-30380,11007,Atlanta,GA,144,Atlanta,GA
-30384,11007,Atlanta,GA,144,Atlanta,GA
-30385,11049,East Point,GA,144,Atlanta,GA
-30388,11007,Atlanta,GA,144,Atlanta,GA
-30392,11007,Atlanta,GA,144,Atlanta,GA
-30394,11007,Atlanta,GA,144,Atlanta,GA
-30396,11007,Atlanta,GA,144,Atlanta,GA
-30398,11007,Atlanta,GA,144,Atlanta,GA
-30401,11111,Swainsboro,GA,145,Augusta,GA
-30410,11120,Vidalia,GA,149,Savannah,GA
-30411,11048,Dublin,GA,147,Macon,GA
-30412,11120,Vidalia,GA,149,Savannah,GA
-30413,11077,Louisville,GA,145,Augusta,GA
-30414,11028,Claxton,GA,149,Savannah,GA
-30415,11108,Statesboro,GA,149,Savannah,GA
-30417,11028,Claxton,GA,149,Savannah,GA
-30420,11082,Metter,GA,149,Savannah,GA
-30421,11082,Metter,GA,149,Savannah,GA
-30423,11028,Claxton,GA,149,Savannah,GA
-30424,11108,Statesboro,GA,149,Savannah,GA
-30425,11108,Statesboro,GA,149,Savannah,GA
-30426,11008,Augusta,GA,145,Augusta,GA
-30427,11102,Savannah,GA,149,Savannah,GA
-30428,11060,Glenwood,GA,147,Macon,GA
-30429,11028,Claxton,GA,149,Savannah,GA
-30434,11077,Louisville,GA,145,Augusta,GA
-30436,11120,Vidalia,GA,149,Savannah,GA
-30438,11102,Savannah,GA,149,Savannah,GA
-30439,11082,Metter,GA,149,Savannah,GA
-30441,11127,Waynesboro,GA,145,Augusta,GA
-30442,11084,Millen,GA,145,Augusta,GA
-30445,11120,Vidalia,GA,149,Savannah,GA
-30446,11112,Sylvania,GA,149,Savannah,GA
-30447,11048,Dublin,GA,147,Macon,GA
-30448,11111,Swainsboro,GA,145,Augusta,GA
-30449,11112,Sylvania,GA,149,Savannah,GA
-30450,11108,Statesboro,GA,149,Savannah,GA
-30451,11082,Metter,GA,149,Savannah,GA
-30452,11108,Statesboro,GA,149,Savannah,GA
-30453,11094,Reidsville,GA,149,Savannah,GA
-30454,11048,Dublin,GA,147,Macon,GA
-30455,11108,Statesboro,GA,149,Savannah,GA
-30456,11127,Waynesboro,GA,145,Augusta,GA
-30457,11048,Dublin,GA,147,Macon,GA
-30458,11108,Statesboro,GA,149,Savannah,GA
-30459,11108,Statesboro,GA,149,Savannah,GA
-30460,11108,Statesboro,GA,149,Savannah,GA
-30461,11108,Statesboro,GA,149,Savannah,GA
-30464,11082,Metter,GA,149,Savannah,GA
-30467,11112,Sylvania,GA,149,Savannah,GA
-30470,11048,Dublin,GA,147,Macon,GA
-30471,11082,Metter,GA,149,Savannah,GA
-30473,11120,Vidalia,GA,149,Savannah,GA
-30474,11120,Vidalia,GA,149,Savannah,GA
-30475,11120,Vidalia,GA,149,Savannah,GA
-30477,11077,Louisville,GA,145,Augusta,GA
-30499,11094,Reidsville,GA,149,Savannah,GA
-30501,11059,Gainesville,GA,144,Atlanta,GA
-30502,11059,Gainesville,GA,144,Atlanta,GA
-30503,11059,Gainesville,GA,144,Atlanta,GA
-30504,11059,Gainesville,GA,144,Atlanta,GA
-30506,11059,Gainesville,GA,144,Atlanta,GA
-30507,11059,Gainesville,GA,144,Atlanta,GA
-30510,11059,Gainesville,GA,144,Atlanta,GA
-30511,11044,Demorest,GA,144,Atlanta,GA
-30512,11013,Blairsville,GA,144,Atlanta,GA
-30513,11015,Blue Ridge,GA,144,Atlanta,GA
-30514,11013,Blairsville,GA,144,Atlanta,GA
-30515,11075,Lawrenceville,GA,144,Atlanta,GA
-30516,11100,Royston,GA,144,Atlanta,GA
-30517,11059,Gainesville,GA,144,Atlanta,GA
-30518,11075,Lawrenceville,GA,144,Atlanta,GA
-30519,11075,Lawrenceville,GA,144,Atlanta,GA
-30520,11100,Royston,GA,144,Atlanta,GA
-30521,11100,Royston,GA,144,Atlanta,GA
-30522,11053,Ellijay,GA,144,Atlanta,GA
-30523,11044,Demorest,GA,144,Atlanta,GA
-30525,11029,Clayton,GA,144,Atlanta,GA
-30527,11059,Gainesville,GA,144,Atlanta,GA
-30528,11059,Gainesville,GA,144,Atlanta,GA
-30529,11033,Commerce,GA,144,Atlanta,GA
-30530,11006,Athens,GA,144,Atlanta,GA
-30531,11044,Demorest,GA,144,Atlanta,GA
-30533,11039,Dahlonega,GA,144,Atlanta,GA
-30534,11059,Gainesville,GA,144,Atlanta,GA
-30535,11044,Demorest,GA,144,Atlanta,GA
-30536,11053,Ellijay,GA,144,Atlanta,GA
-30537,11029,Clayton,GA,144,Atlanta,GA
-30538,11118,Toccoa,GA,144,Atlanta,GA
-30539,11053,Ellijay,GA,144,Atlanta,GA
-30540,11053,Ellijay,GA,144,Atlanta,GA
-30541,11015,Blue Ridge,GA,144,Atlanta,GA
-30542,11059,Gainesville,GA,144,Atlanta,GA
-30543,11059,Gainesville,GA,144,Atlanta,GA
-30545,11059,Gainesville,GA,144,Atlanta,GA
-30546,11067,Hiawassee,GA,144,Atlanta,GA
-30547,11033,Commerce,GA,144,Atlanta,GA
-30548,11128,Winder,GA,144,Atlanta,GA
-30549,11006,Athens,GA,144,Atlanta,GA
-30552,11029,Clayton,GA,144,Atlanta,GA
-30553,11100,Royston,GA,144,Atlanta,GA
-30554,11059,Gainesville,GA,144,Atlanta,GA
-30555,11015,Blue Ridge,GA,144,Atlanta,GA
-30557,11118,Toccoa,GA,144,Atlanta,GA
-30558,11033,Commerce,GA,144,Atlanta,GA
-30559,11015,Blue Ridge,GA,144,Atlanta,GA
-30560,11015,Blue Ridge,GA,144,Atlanta,GA
-30562,11029,Clayton,GA,144,Atlanta,GA
-30563,11044,Demorest,GA,144,Atlanta,GA
-30564,11039,Dahlonega,GA,144,Atlanta,GA
-30565,11006,Athens,GA,144,Atlanta,GA
-30566,11059,Gainesville,GA,144,Atlanta,GA
-30567,11059,Gainesville,GA,144,Atlanta,GA
-30568,11029,Clayton,GA,144,Atlanta,GA
-30571,11059,Gainesville,GA,144,Atlanta,GA
-30572,11039,Dahlonega,GA,144,Atlanta,GA
-30573,11029,Clayton,GA,144,Atlanta,GA
-30575,11059,Gainesville,GA,144,Atlanta,GA
-30576,11029,Clayton,GA,144,Atlanta,GA
-30577,11118,Toccoa,GA,144,Atlanta,GA
-30580,11044,Demorest,GA,144,Atlanta,GA
-30581,11029,Clayton,GA,144,Atlanta,GA
-30582,11067,Hiawassee,GA,144,Atlanta,GA
-30597,11039,Dahlonega,GA,144,Atlanta,GA
-30598,11118,Toccoa,GA,144,Atlanta,GA
-30599,11033,Commerce,GA,144,Atlanta,GA
-30601,11006,Athens,GA,144,Atlanta,GA
-30602,11006,Athens,GA,144,Atlanta,GA
-30603,11006,Athens,GA,144,Atlanta,GA
-30604,11006,Athens,GA,144,Atlanta,GA
-30605,11006,Athens,GA,144,Atlanta,GA
-30606,11006,Athens,GA,144,Atlanta,GA
-30607,11006,Athens,GA,144,Atlanta,GA
-30608,11006,Athens,GA,144,Atlanta,GA
-30609,11006,Athens,GA,144,Atlanta,GA
-30612,11006,Athens,GA,144,Atlanta,GA
-30619,11006,Athens,GA,144,Atlanta,GA
-30620,11128,Winder,GA,144,Atlanta,GA
-30621,11006,Athens,GA,144,Atlanta,GA
-30622,11006,Athens,GA,144,Atlanta,GA
-30623,11006,Athens,GA,144,Atlanta,GA
-30624,11100,Royston,GA,144,Atlanta,GA
-30625,11006,Athens,GA,144,Atlanta,GA
-30627,11006,Athens,GA,144,Atlanta,GA
-30628,11006,Athens,GA,144,Atlanta,GA
-30629,11006,Athens,GA,144,Atlanta,GA
-30630,11006,Athens,GA,144,Atlanta,GA
-30631,11125,Washington,GA,145,Augusta,GA
-30633,11006,Athens,GA,144,Atlanta,GA
-30634,11052,Elberton,GA,144,Atlanta,GA
-30635,11052,Elberton,GA,144,Atlanta,GA
-30638,11006,Athens,GA,144,Atlanta,GA
-30639,11100,Royston,GA,144,Atlanta,GA
-30641,11085,Monroe,GA,144,Atlanta,GA
-30642,11061,Greensboro,GA,144,Atlanta,GA
-30643,11064,Hartwell,GA,144,Atlanta,GA
-30645,11006,Athens,GA,144,Atlanta,GA
-30646,11006,Athens,GA,144,Atlanta,GA
-30647,11006,Athens,GA,144,Atlanta,GA
-30648,11006,Athens,GA,144,Atlanta,GA
-30650,11006,Athens,GA,144,Atlanta,GA
-30655,11085,Monroe,GA,144,Atlanta,GA
-30656,11085,Monroe,GA,144,Atlanta,GA
-30660,11125,Washington,GA,145,Augusta,GA
-30662,11100,Royston,GA,144,Atlanta,GA
-30663,11006,Athens,GA,144,Atlanta,GA
-30664,11125,Washington,GA,145,Augusta,GA
-30665,11061,Greensboro,GA,144,Atlanta,GA
-30666,11006,Athens,GA,144,Atlanta,GA
-30667,11006,Athens,GA,144,Atlanta,GA
-30668,11125,Washington,GA,145,Augusta,GA
-30669,11061,Greensboro,GA,144,Atlanta,GA
-30671,11006,Athens,GA,144,Atlanta,GA
-30673,11125,Washington,GA,145,Augusta,GA
-30677,11006,Athens,GA,144,Atlanta,GA
-30678,11061,Greensboro,GA,144,Atlanta,GA
-30680,11128,Winder,GA,144,Atlanta,GA
-30683,11006,Athens,GA,144,Atlanta,GA
-30701,11021,Calhoun,GA,148,Rome,GA
-30703,11021,Calhoun,GA,148,Rome,GA
-30705,11041,Dalton,GA,144,Atlanta,GA
-30707,11057,Fort Oglethorpe,GA,373,Chattanooga,TN
-30708,11041,Dalton,GA,144,Atlanta,GA
-30710,11041,Dalton,GA,144,Atlanta,GA
-30711,11041,Dalton,GA,144,Atlanta,GA
-30719,11041,Dalton,GA,144,Atlanta,GA
-30720,11041,Dalton,GA,144,Atlanta,GA
-30721,11041,Dalton,GA,144,Atlanta,GA
-30722,11041,Dalton,GA,144,Atlanta,GA
-30724,11041,Dalton,GA,144,Atlanta,GA
-30725,44009,Chattanooga,TN,373,Chattanooga,TN
-30726,44009,Chattanooga,TN,373,Chattanooga,TN
-30728,11057,Fort Oglethorpe,GA,373,Chattanooga,TN
-30730,11098,Rome,GA,148,Rome,GA
-30731,11098,Rome,GA,148,Rome,GA
-30732,11021,Calhoun,GA,148,Rome,GA
-30733,11098,Rome,GA,148,Rome,GA
-30734,11021,Calhoun,GA,148,Rome,GA
-30735,11041,Dalton,GA,144,Atlanta,GA
-30736,44009,Chattanooga,TN,373,Chattanooga,TN
-30738,44009,Chattanooga,TN,373,Chattanooga,TN
-30739,11057,Fort Oglethorpe,GA,373,Chattanooga,TN
-30740,11041,Dalton,GA,144,Atlanta,GA
-30741,11057,Fort Oglethorpe,GA,373,Chattanooga,TN
-30742,11057,Fort Oglethorpe,GA,373,Chattanooga,TN
-30746,11021,Calhoun,GA,148,Rome,GA
-30747,11098,Rome,GA,148,Rome,GA
-30750,44009,Chattanooga,TN,373,Chattanooga,TN
-30751,11041,Dalton,GA,144,Atlanta,GA
-30752,44009,Chattanooga,TN,373,Chattanooga,TN
-30753,11098,Rome,GA,148,Rome,GA
-30755,11041,Dalton,GA,144,Atlanta,GA
-30756,11041,Dalton,GA,144,Atlanta,GA
-30757,44009,Chattanooga,TN,373,Chattanooga,TN
-30802,11008,Augusta,GA,145,Augusta,GA
-30803,11008,Augusta,GA,145,Augusta,GA
-30805,11008,Augusta,GA,145,Augusta,GA
-30806,11008,Augusta,GA,145,Augusta,GA
-30807,11008,Augusta,GA,145,Augusta,GA
-30808,11008,Augusta,GA,145,Augusta,GA
-30809,11008,Augusta,GA,145,Augusta,GA
-30810,11008,Augusta,GA,145,Augusta,GA
-30811,11077,Louisville,GA,145,Augusta,GA
-30812,11008,Augusta,GA,145,Augusta,GA
-30813,11008,Augusta,GA,145,Augusta,GA
-30814,11008,Augusta,GA,145,Augusta,GA
-30815,11008,Augusta,GA,145,Augusta,GA
-30816,11008,Augusta,GA,145,Augusta,GA
-30817,11008,Augusta,GA,145,Augusta,GA
-30818,11008,Augusta,GA,145,Augusta,GA
-30819,11008,Augusta,GA,145,Augusta,GA
-30820,11008,Augusta,GA,145,Augusta,GA
-30821,11008,Augusta,GA,145,Augusta,GA
-30822,11084,Millen,GA,145,Augusta,GA
-30823,11008,Augusta,GA,145,Augusta,GA
-30824,11116,Thomson,GA,145,Augusta,GA
-30828,11008,Augusta,GA,145,Augusta,GA
-30830,11127,Waynesboro,GA,145,Augusta,GA
-30833,11008,Augusta,GA,145,Augusta,GA
-30901,11008,Augusta,GA,145,Augusta,GA
-30903,11008,Augusta,GA,145,Augusta,GA
-30904,11008,Augusta,GA,145,Augusta,GA
-30905,11008,Augusta,GA,145,Augusta,GA
-30906,11008,Augusta,GA,145,Augusta,GA
-30907,11008,Augusta,GA,145,Augusta,GA
-30909,11008,Augusta,GA,145,Augusta,GA
-30912,11008,Augusta,GA,145,Augusta,GA
-30914,11008,Augusta,GA,145,Augusta,GA
-30916,11008,Augusta,GA,145,Augusta,GA
-30917,11008,Augusta,GA,145,Augusta,GA
-30919,11008,Augusta,GA,145,Augusta,GA
-30999,11008,Augusta,GA,145,Augusta,GA
-31001,11054,Fitzgerald,GA,147,Macon,GA
-31002,11048,Dublin,GA,147,Macon,GA
-31003,11048,Dublin,GA,147,Macon,GA
-31004,11078,Macon,GA,147,Macon,GA
-31005,11124,Warner Robins,GA,147,Macon,GA
-31006,11078,Macon,GA,147,Macon,GA
-31007,11121,Vienna,GA,147,Macon,GA
-31008,11078,Macon,GA,147,Macon,GA
-31009,11048,Dublin,GA,147,Macon,GA
-31010,11035,Cordele,GA,147,Macon,GA
-31011,11050,Eastman,GA,147,Macon,GA
-31012,11030,Cochran,GA,147,Macon,GA
-31013,11065,Hawkinsville,GA,147,Macon,GA
-31014,11030,Cochran,GA,147,Macon,GA
-31015,11035,Cordele,GA,147,Macon,GA
-31016,11078,Macon,GA,147,Macon,GA
-31017,11078,Macon,GA,147,Macon,GA
-31018,11101,Sandersville,GA,145,Augusta,GA
-31019,11048,Dublin,GA,147,Macon,GA
-31020,11078,Macon,GA,147,Macon,GA
-31021,11048,Dublin,GA,147,Macon,GA
-31022,11048,Dublin,GA,147,Macon,GA
-31023,11050,Eastman,GA,147,Macon,GA
-31024,11051,Eatonton,GA,144,Atlanta,GA
-31025,11092,Perry,GA,147,Macon,GA
-31026,11051,Eatonton,GA,144,Atlanta,GA
-31027,11048,Dublin,GA,147,Macon,GA
-31028,11124,Warner Robins,GA,147,Macon,GA
-31029,11056,Forsyth,GA,147,Macon,GA
-31030,11058,Fort Valley,GA,147,Macon,GA
-31031,11078,Macon,GA,147,Macon,GA
-31032,11078,Macon,GA,147,Macon,GA
-31033,11078,Macon,GA,147,Macon,GA
-31034,11083,Milledgeville,GA,147,Macon,GA
-31035,11101,Sandersville,GA,145,Augusta,GA
-31036,11065,Hawkinsville,GA,147,Macon,GA
-31037,11081,McRae,GA,147,Macon,GA
-31038,11078,Macon,GA,147,Macon,GA
-31039,11078,Macon,GA,147,Macon,GA
-31040,11048,Dublin,GA,147,Macon,GA
-31041,11086,Montezuma,GA,147,Macon,GA
-31042,11078,Macon,GA,147,Macon,GA
-31044,11078,Macon,GA,147,Macon,GA
-31045,11008,Augusta,GA,145,Augusta,GA
-31046,11056,Forsyth,GA,147,Macon,GA
-31047,11124,Warner Robins,GA,147,Macon,GA
-31049,11111,Swainsboro,GA,145,Augusta,GA
-31050,11078,Macon,GA,147,Macon,GA
-31051,11121,Vienna,GA,147,Macon,GA
-31052,11078,Macon,GA,147,Macon,GA
-31054,11078,Macon,GA,147,Macon,GA
-31055,11081,McRae,GA,147,Macon,GA
-31057,11078,Macon,GA,147,Macon,GA
-31058,11032,Columbus,GA,146,Columbus,GA
-31059,11083,Milledgeville,GA,147,Macon,GA
-31060,11050,Eastman,GA,147,Macon,GA
-31061,11083,Milledgeville,GA,147,Macon,GA
-31062,11083,Milledgeville,GA,147,Macon,GA
-31063,11086,Montezuma,GA,147,Macon,GA
-31064,11078,Macon,GA,147,Macon,GA
-31065,11048,Dublin,GA,147,Macon,GA
-31066,11078,Macon,GA,147,Macon,GA
-31067,11101,Sandersville,GA,145,Augusta,GA
-31068,11086,Montezuma,GA,147,Macon,GA
-31069,11092,Perry,GA,147,Macon,GA
-31070,11121,Vienna,GA,147,Macon,GA
-31071,11065,Hawkinsville,GA,147,Macon,GA
-31072,11035,Cordele,GA,147,Macon,GA
-31075,11048,Dublin,GA,147,Macon,GA
-31076,11078,Macon,GA,147,Macon,GA
-31077,11050,Eastman,GA,147,Macon,GA
-31078,11078,Macon,GA,147,Macon,GA
-31079,11065,Hawkinsville,GA,147,Macon,GA
-31081,11086,Montezuma,GA,147,Macon,GA
-31082,11101,Sandersville,GA,145,Augusta,GA
-31083,11081,McRae,GA,147,Macon,GA
-31084,11035,Cordele,GA,147,Macon,GA
-31085,11036,Covington,GA,144,Atlanta,GA
-31086,11078,Macon,GA,147,Macon,GA
-31087,11105,Sparta,GA,147,Macon,GA
-31088,11124,Warner Robins,GA,147,Macon,GA
-31089,11101,Sandersville,GA,145,Augusta,GA
-31090,11048,Dublin,GA,147,Macon,GA
-31091,11065,Hawkinsville,GA,147,Macon,GA
-31092,11121,Vienna,GA,147,Macon,GA
-31093,11124,Warner Robins,GA,147,Macon,GA
-31094,11101,Sandersville,GA,145,Augusta,GA
-31095,11124,Warner Robins,GA,147,Macon,GA
-31096,11101,Sandersville,GA,145,Augusta,GA
-31097,11114,Thomaston,GA,147,Macon,GA
-31098,11124,Warner Robins,GA,147,Macon,GA
-31099,11124,Warner Robins,GA,147,Macon,GA
-31106,11007,Atlanta,GA,144,Atlanta,GA
-31107,11007,Atlanta,GA,144,Atlanta,GA
-31119,11007,Atlanta,GA,144,Atlanta,GA
-31126,11007,Atlanta,GA,144,Atlanta,GA
-31131,11007,Atlanta,GA,144,Atlanta,GA
-31136,11007,Atlanta,GA,144,Atlanta,GA
-31139,11007,Atlanta,GA,144,Atlanta,GA
-31141,11007,Atlanta,GA,144,Atlanta,GA
-31144,11080,Marietta,GA,144,Atlanta,GA
-31145,11007,Atlanta,GA,144,Atlanta,GA
-31146,11007,Atlanta,GA,144,Atlanta,GA
-31150,11007,Atlanta,GA,144,Atlanta,GA
-31156,11007,Atlanta,GA,144,Atlanta,GA
-31169,11007,Atlanta,GA,144,Atlanta,GA
-31192,11049,East Point,GA,144,Atlanta,GA
-31193,11007,Atlanta,GA,144,Atlanta,GA
-31195,11007,Atlanta,GA,144,Atlanta,GA
-31196,11007,Atlanta,GA,144,Atlanta,GA
-31201,11078,Macon,GA,147,Macon,GA
-31202,11078,Macon,GA,147,Macon,GA
-31203,11078,Macon,GA,147,Macon,GA
-31204,11078,Macon,GA,147,Macon,GA
-31205,11078,Macon,GA,147,Macon,GA
-31206,11078,Macon,GA,147,Macon,GA
-31207,11078,Macon,GA,147,Macon,GA
-31208,11078,Macon,GA,147,Macon,GA
-31209,11078,Macon,GA,147,Macon,GA
-31210,11078,Macon,GA,147,Macon,GA
-31211,11078,Macon,GA,147,Macon,GA
-31213,11078,Macon,GA,147,Macon,GA
-31216,11078,Macon,GA,147,Macon,GA
-31217,11078,Macon,GA,147,Macon,GA
-31220,11078,Macon,GA,147,Macon,GA
-31221,11078,Macon,GA,147,Macon,GA
-31294,11078,Macon,GA,147,Macon,GA
-31295,11078,Macon,GA,147,Macon,GA
-31296,11078,Macon,GA,147,Macon,GA
-31297,11078,Macon,GA,147,Macon,GA
-31301,11068,Hinesville,GA,149,Savannah,GA
-31302,11102,Savannah,GA,149,Savannah,GA
-31303,11102,Savannah,GA,149,Savannah,GA
-31304,11018,Brunswick,GA,123,Jacksonville,FL
-31305,11018,Brunswick,GA,123,Jacksonville,FL
-31307,11102,Savannah,GA,149,Savannah,GA
-31308,11102,Savannah,GA,149,Savannah,GA
-31309,11068,Hinesville,GA,149,Savannah,GA
-31310,11068,Hinesville,GA,149,Savannah,GA
-31312,11102,Savannah,GA,149,Savannah,GA
-31313,11068,Hinesville,GA,149,Savannah,GA
-31314,11068,Hinesville,GA,149,Savannah,GA
-31315,11068,Hinesville,GA,149,Savannah,GA
-31316,11102,Savannah,GA,149,Savannah,GA
-31318,11102,Savannah,GA,149,Savannah,GA
-31319,11018,Brunswick,GA,123,Jacksonville,FL
-31320,11102,Savannah,GA,149,Savannah,GA
-31321,11102,Savannah,GA,149,Savannah,GA
-31322,11102,Savannah,GA,149,Savannah,GA
-31323,11102,Savannah,GA,149,Savannah,GA
-31324,11102,Savannah,GA,149,Savannah,GA
-31326,11102,Savannah,GA,149,Savannah,GA
-31327,11018,Brunswick,GA,123,Jacksonville,FL
-31328,11102,Savannah,GA,149,Savannah,GA
-31329,11102,Savannah,GA,149,Savannah,GA
-31331,11018,Brunswick,GA,123,Jacksonville,FL
-31333,11068,Hinesville,GA,149,Savannah,GA
-31401,11102,Savannah,GA,149,Savannah,GA
-31402,11102,Savannah,GA,149,Savannah,GA
-31403,11102,Savannah,GA,149,Savannah,GA
-31404,11102,Savannah,GA,149,Savannah,GA
-31405,11102,Savannah,GA,149,Savannah,GA
-31406,11102,Savannah,GA,149,Savannah,GA
-31407,11102,Savannah,GA,149,Savannah,GA
-31408,11102,Savannah,GA,149,Savannah,GA
-31409,11102,Savannah,GA,149,Savannah,GA
-31410,11102,Savannah,GA,149,Savannah,GA
-31411,11102,Savannah,GA,149,Savannah,GA
-31412,11102,Savannah,GA,149,Savannah,GA
-31414,11102,Savannah,GA,149,Savannah,GA
-31415,11102,Savannah,GA,149,Savannah,GA
-31416,11102,Savannah,GA,149,Savannah,GA
-31418,11102,Savannah,GA,149,Savannah,GA
-31419,11102,Savannah,GA,149,Savannah,GA
-31420,11102,Savannah,GA,149,Savannah,GA
-31421,11102,Savannah,GA,149,Savannah,GA
-31501,11126,Waycross,GA,123,Jacksonville,FL
-31502,11126,Waycross,GA,123,Jacksonville,FL
-31503,11126,Waycross,GA,123,Jacksonville,FL
-31510,11003,Alma,GA,123,Jacksonville,FL
-31512,11046,Douglas,GA,123,Jacksonville,FL
-31513,11011,Baxley,GA,149,Savannah,GA
-31515,11011,Baxley,GA,149,Savannah,GA
-31516,11126,Waycross,GA,123,Jacksonville,FL
-31518,11072,Jesup,GA,149,Savannah,GA
-31519,11046,Douglas,GA,123,Jacksonville,FL
-31520,11018,Brunswick,GA,123,Jacksonville,FL
-31521,11018,Brunswick,GA,123,Jacksonville,FL
-31522,11018,Brunswick,GA,123,Jacksonville,FL
-31523,11018,Brunswick,GA,123,Jacksonville,FL
-31524,11018,Brunswick,GA,123,Jacksonville,FL
-31525,11018,Brunswick,GA,123,Jacksonville,FL
-31527,11018,Brunswick,GA,123,Jacksonville,FL
-31532,11066,Hazlehurst,GA,149,Savannah,GA
-31533,11046,Douglas,GA,123,Jacksonville,FL
-31534,11046,Douglas,GA,123,Jacksonville,FL
-31535,11046,Douglas,GA,123,Jacksonville,FL
-31537,11055,Folkston,GA,123,Jacksonville,FL
-31539,11066,Hazlehurst,GA,149,Savannah,GA
-31542,11126,Waycross,GA,123,Jacksonville,FL
-31543,11018,Brunswick,GA,123,Jacksonville,FL
-31544,11081,McRae,GA,147,Macon,GA
-31545,11072,Jesup,GA,149,Savannah,GA
-31546,11072,Jesup,GA,149,Savannah,GA
-31547,11107,St. Marys,GA,123,Jacksonville,FL
-31548,11107,St. Marys,GA,123,Jacksonville,FL
-31549,11066,Hazlehurst,GA,149,Savannah,GA
-31550,11126,Waycross,GA,123,Jacksonville,FL
-31551,11003,Alma,GA,123,Jacksonville,FL
-31552,11046,Douglas,GA,123,Jacksonville,FL
-31553,11018,Brunswick,GA,123,Jacksonville,FL
-31554,11003,Alma,GA,123,Jacksonville,FL
-31555,11072,Jesup,GA,149,Savannah,GA
-31556,11126,Waycross,GA,123,Jacksonville,FL
-31557,11126,Waycross,GA,123,Jacksonville,FL
-31558,11107,St. Marys,GA,123,Jacksonville,FL
-31560,11072,Jesup,GA,149,Savannah,GA
-31561,11018,Brunswick,GA,123,Jacksonville,FL
-31562,10050,Jacksonville,FL,123,Jacksonville,FL
-31563,11072,Jesup,GA,149,Savannah,GA
-31564,11126,Waycross,GA,123,Jacksonville,FL
-31565,11018,Brunswick,GA,123,Jacksonville,FL
-31566,11018,Brunswick,GA,123,Jacksonville,FL
-31567,11046,Douglas,GA,123,Jacksonville,FL
-31568,11018,Brunswick,GA,123,Jacksonville,FL
-31569,11018,Brunswick,GA,123,Jacksonville,FL
-31598,11072,Jesup,GA,149,Savannah,GA
-31599,11072,Jesup,GA,149,Savannah,GA
-31601,11119,Valdosta,GA,140,Tallahassee,FL
-31602,11119,Valdosta,GA,140,Tallahassee,FL
-31603,11119,Valdosta,GA,140,Tallahassee,FL
-31604,11119,Valdosta,GA,140,Tallahassee,FL
-31605,11119,Valdosta,GA,140,Tallahassee,FL
-31606,11119,Valdosta,GA,140,Tallahassee,FL
-31620,11001,Adel,GA,140,Tallahassee,FL
-31622,11089,Nashville,GA,140,Tallahassee,FL
-31623,11069,Homerville,GA,123,Jacksonville,FL
-31624,11046,Douglas,GA,123,Jacksonville,FL
-31625,11001,Adel,GA,140,Tallahassee,FL
-31626,11115,Thomasville,GA,140,Tallahassee,FL
-31627,11001,Adel,GA,140,Tallahassee,FL
-31629,11115,Thomasville,GA,140,Tallahassee,FL
-31630,11119,Valdosta,GA,140,Tallahassee,FL
-31631,11069,Homerville,GA,123,Jacksonville,FL
-31632,11063,Hahira,GA,140,Tallahassee,FL
-31634,11069,Homerville,GA,123,Jacksonville,FL
-31635,11074,Lakeland,GA,140,Tallahassee,FL
-31636,11119,Valdosta,GA,140,Tallahassee,FL
-31637,11117,Tifton,GA,140,Tallahassee,FL
-31638,11119,Valdosta,GA,140,Tallahassee,FL
-31639,11089,Nashville,GA,140,Tallahassee,FL
-31641,11119,Valdosta,GA,140,Tallahassee,FL
-31642,11046,Douglas,GA,123,Jacksonville,FL
-31643,11093,Quitman,GA,140,Tallahassee,FL
-31645,11119,Valdosta,GA,140,Tallahassee,FL
-31647,11001,Adel,GA,140,Tallahassee,FL
-31648,11119,Valdosta,GA,140,Tallahassee,FL
-31649,11119,Valdosta,GA,140,Tallahassee,FL
-31650,11046,Douglas,GA,123,Jacksonville,FL
-31698,11119,Valdosta,GA,140,Tallahassee,FL
-31699,11119,Valdosta,GA,140,Tallahassee,FL
-31701,11002,Albany,GA,142,Albany,GA
-31702,11002,Albany,GA,142,Albany,GA
-31703,11002,Albany,GA,142,Albany,GA
-31704,11002,Albany,GA,142,Albany,GA
-31705,11002,Albany,GA,142,Albany,GA
-31706,11002,Albany,GA,142,Albany,GA
-31707,11002,Albany,GA,142,Albany,GA
-31708,11002,Albany,GA,142,Albany,GA
-31709,11004,Americus,GA,142,Albany,GA
-31711,11086,Montezuma,GA,147,Macon,GA
-31712,11035,Cordele,GA,147,Macon,GA
-31714,11117,Tifton,GA,140,Tallahassee,FL
-31716,11002,Albany,GA,142,Albany,GA
-31719,11004,Americus,GA,142,Albany,GA
-31720,11115,Thomasville,GA,140,Tallahassee,FL
-31721,11002,Albany,GA,142,Albany,GA
-31722,11088,Moultrie,GA,140,Tallahassee,FL
-31727,11117,Tifton,GA,140,Tallahassee,FL
-31730,11002,Albany,GA,142,Albany,GA
-31733,11117,Tifton,GA,140,Tallahassee,FL
-31735,11004,Americus,GA,142,Albany,GA
-31738,11115,Thomasville,GA,140,Tallahassee,FL
-31739,11115,Thomasville,GA,140,Tallahassee,FL
-31743,11004,Americus,GA,142,Albany,GA
-31744,11088,Moultrie,GA,140,Tallahassee,FL
-31747,11088,Moultrie,GA,140,Tallahassee,FL
-31749,11117,Tifton,GA,140,Tallahassee,FL
-31750,11054,Fitzgerald,GA,147,Macon,GA
-31753,11088,Moultrie,GA,140,Tallahassee,FL
-31756,11088,Moultrie,GA,140,Tallahassee,FL
-31757,11115,Thomasville,GA,140,Tallahassee,FL
-31758,11115,Thomasville,GA,140,Tallahassee,FL
-31760,11117,Tifton,GA,140,Tallahassee,FL
-31763,11002,Albany,GA,142,Albany,GA
-31764,11004,Americus,GA,142,Albany,GA
-31765,11115,Thomasville,GA,140,Tallahassee,FL
-31768,11088,Moultrie,GA,140,Tallahassee,FL
-31769,11091,Ocilla,GA,147,Macon,GA
-31771,11088,Moultrie,GA,140,Tallahassee,FL
-31772,11002,Albany,GA,142,Albany,GA
-31773,11115,Thomasville,GA,140,Tallahassee,FL
-31774,11091,Ocilla,GA,147,Macon,GA
-31775,11117,Tifton,GA,140,Tallahassee,FL
-31776,11088,Moultrie,GA,140,Tallahassee,FL
-31778,11115,Thomasville,GA,140,Tallahassee,FL
-31779,11115,Thomasville,GA,140,Tallahassee,FL
-31780,11004,Americus,GA,142,Albany,GA
-31781,11002,Albany,GA,142,Albany,GA
-31782,11002,Albany,GA,142,Albany,GA
-31783,11117,Tifton,GA,140,Tallahassee,FL
-31784,11002,Albany,GA,142,Albany,GA
-31787,11004,Americus,GA,142,Albany,GA
-31788,11088,Moultrie,GA,140,Tallahassee,FL
-31789,11002,Albany,GA,142,Albany,GA
-31790,11117,Tifton,GA,140,Tallahassee,FL
-31791,11002,Albany,GA,142,Albany,GA
-31792,11115,Thomasville,GA,140,Tallahassee,FL
-31793,11117,Tifton,GA,140,Tallahassee,FL
-31794,11117,Tifton,GA,140,Tallahassee,FL
-31795,11117,Tifton,GA,140,Tallahassee,FL
-31796,11002,Albany,GA,142,Albany,GA
-31798,11046,Douglas,GA,123,Jacksonville,FL
-31799,11115,Thomasville,GA,140,Tallahassee,FL
-31801,11032,Columbus,GA,146,Columbus,GA
-31803,11032,Columbus,GA,146,Columbus,GA
-31804,11032,Columbus,GA,146,Columbus,GA
-31805,11032,Columbus,GA,146,Columbus,GA
-31806,11004,Americus,GA,142,Albany,GA
-31807,11032,Columbus,GA,146,Columbus,GA
-31808,11032,Columbus,GA,146,Columbus,GA
-31810,11032,Columbus,GA,146,Columbus,GA
-31811,11032,Columbus,GA,146,Columbus,GA
-31812,11032,Columbus,GA,146,Columbus,GA
-31814,11032,Columbus,GA,146,Columbus,GA
-31815,11032,Columbus,GA,146,Columbus,GA
-31816,11032,Columbus,GA,146,Columbus,GA
-31820,11032,Columbus,GA,146,Columbus,GA
-31821,11032,Columbus,GA,146,Columbus,GA
-31822,11073,La Grange,GA,144,Atlanta,GA
-31823,11032,Columbus,GA,146,Columbus,GA
-31824,11095,Richland,GA,146,Columbus,GA
-31825,11095,Richland,GA,146,Columbus,GA
-31826,11032,Columbus,GA,146,Columbus,GA
-31827,11032,Columbus,GA,146,Columbus,GA
-31829,11032,Columbus,GA,146,Columbus,GA
-31830,11032,Columbus,GA,146,Columbus,GA
-31831,11032,Columbus,GA,146,Columbus,GA
-31832,11095,Richland,GA,146,Columbus,GA
-31833,1084,Valley,AL,1,Birmingham,AL
-31836,11032,Columbus,GA,146,Columbus,GA
-31901,11032,Columbus,GA,146,Columbus,GA
-31902,11032,Columbus,GA,146,Columbus,GA
-31903,11032,Columbus,GA,146,Columbus,GA
-31904,11032,Columbus,GA,146,Columbus,GA
-31905,11032,Columbus,GA,146,Columbus,GA
-31906,11032,Columbus,GA,146,Columbus,GA
-31907,11032,Columbus,GA,146,Columbus,GA
-31908,11032,Columbus,GA,146,Columbus,GA
-31909,11032,Columbus,GA,146,Columbus,GA
-31914,11032,Columbus,GA,146,Columbus,GA
-31917,11032,Columbus,GA,146,Columbus,GA
-31993,11032,Columbus,GA,146,Columbus,GA
-31995,11032,Columbus,GA,146,Columbus,GA
-31997,11032,Columbus,GA,146,Columbus,GA
-31998,11032,Columbus,GA,146,Columbus,GA
-31999,11032,Columbus,GA,146,Columbus,GA
-32003,10085,Orange Park,FL,123,Jacksonville,FL
-32004,10050,Jacksonville,FL,123,Jacksonville,FL
-32006,10085,Orange Park,FL,123,Jacksonville,FL
-32007,10089,Palatka,FL,120,Gainesville,FL
-32008,10040,Gainesville,FL,120,Gainesville,FL
-32009,10050,Jacksonville,FL,123,Jacksonville,FL
-32011,10050,Jacksonville,FL,123,Jacksonville,FL
-32013,10119,Tallahassee,FL,140,Tallahassee,FL
-32024,10058,Lake City,FL,120,Gainesville,FL
-32025,10058,Lake City,FL,120,Gainesville,FL
-32026,10040,Gainesville,FL,120,Gainesville,FL
-32030,10085,Orange Park,FL,123,Jacksonville,FL
-32033,10113,St. Augustine,FL,123,Jacksonville,FL
-32034,10035,Fernandina Beach,FL,123,Jacksonville,FL
-32035,10035,Fernandina Beach,FL,123,Jacksonville,FL
-32038,10040,Gainesville,FL,120,Gainesville,FL
-32040,10050,Jacksonville,FL,123,Jacksonville,FL
-32041,10050,Jacksonville,FL,123,Jacksonville,FL
-32042,10040,Gainesville,FL,120,Gainesville,FL
-32043,10085,Orange Park,FL,123,Jacksonville,FL
-32044,10040,Gainesville,FL,120,Gainesville,FL
-32046,10050,Jacksonville,FL,123,Jacksonville,FL
-32050,10085,Orange Park,FL,123,Jacksonville,FL
-32052,10052,Jasper,FL,140,Tallahassee,FL
-32053,10052,Jasper,FL,140,Tallahassee,FL
-32054,10040,Gainesville,FL,120,Gainesville,FL
-32055,10058,Lake City,FL,120,Gainesville,FL
-32056,10058,Lake City,FL,120,Gainesville,FL
-32058,10040,Gainesville,FL,120,Gainesville,FL
-32059,10119,Tallahassee,FL,140,Tallahassee,FL
-32060,10040,Gainesville,FL,120,Gainesville,FL
-32061,10058,Lake City,FL,120,Gainesville,FL
-32062,10058,Lake City,FL,120,Gainesville,FL
-32063,10050,Jacksonville,FL,123,Jacksonville,FL
-32064,10040,Gainesville,FL,120,Gainesville,FL
-32065,10085,Orange Park,FL,123,Jacksonville,FL
-32066,10040,Gainesville,FL,120,Gainesville,FL
-32067,10085,Orange Park,FL,123,Jacksonville,FL
-32068,10085,Orange Park,FL,123,Jacksonville,FL
-32071,10058,Lake City,FL,120,Gainesville,FL
-32072,10050,Jacksonville,FL,123,Jacksonville,FL
-32073,10085,Orange Park,FL,123,Jacksonville,FL
-32079,10085,Orange Park,FL,123,Jacksonville,FL
-32080,10113,St. Augustine,FL,123,Jacksonville,FL
-32081,10113,St. Augustine,FL,123,Jacksonville,FL
-32082,10050,Jacksonville,FL,123,Jacksonville,FL
-32083,10040,Gainesville,FL,120,Gainesville,FL
-32084,10113,St. Augustine,FL,123,Jacksonville,FL
-32085,10113,St. Augustine,FL,123,Jacksonville,FL
-32086,10113,St. Augustine,FL,123,Jacksonville,FL
-32087,10050,Jacksonville,FL,123,Jacksonville,FL
-32091,10040,Gainesville,FL,120,Gainesville,FL
-32092,10113,St. Augustine,FL,123,Jacksonville,FL
-32094,10058,Lake City,FL,120,Gainesville,FL
-32095,10113,St. Augustine,FL,123,Jacksonville,FL
-32096,10058,Lake City,FL,120,Gainesville,FL
-32097,10050,Jacksonville,FL,123,Jacksonville,FL
-32099,10050,Jacksonville,FL,123,Jacksonville,FL
-32102,10029,De Land,FL,130,Orlando,FL
-32105,10029,De Land,FL,130,Orlando,FL
-32110,10015,Bunnell,FL,131,Ormond Beach,FL
-32111,10083,Ocala,FL,129,Ocala,FL
-32112,10089,Palatka,FL,120,Gainesville,FL
-32113,10083,Ocala,FL,129,Ocala,FL
-32114,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32115,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32116,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32117,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32118,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32119,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32120,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32121,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32122,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32123,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32124,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32125,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32126,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32127,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32128,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32129,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32130,10029,De Land,FL,130,Orlando,FL
-32131,10089,Palatka,FL,120,Gainesville,FL
-32132,10079,New Smyrna Beach,FL,131,Ormond Beach,FL
-32133,10083,Ocala,FL,129,Ocala,FL
-32134,10083,Ocala,FL,129,Ocala,FL
-32135,10015,Bunnell,FL,131,Ormond Beach,FL
-32136,10087,Ormond Beach,FL,131,Ormond Beach,FL
-32137,10015,Bunnell,FL,131,Ormond Beach,FL
-32138,10040,Gainesville,FL,120,Gainesville,FL
-32139,10089,Palatka,FL,120,Gainesville,FL
-32140,10089,Palatka,FL,120,Gainesville,FL
-32141,10079,New Smyrna Beach,FL,131,Ormond Beach,FL
-32142,10087,Ormond Beach,FL,131,Ormond Beach,FL
-32143,10087,Ormond Beach,FL,131,Ormond Beach,FL
-32145,10113,St. Augustine,FL,123,Jacksonville,FL
-32147,10089,Palatka,FL,120,Gainesville,FL
-32148,10089,Palatka,FL,120,Gainesville,FL
-32149,10089,Palatka,FL,120,Gainesville,FL
-32157,10089,Palatka,FL,120,Gainesville,FL
-32158,10063,Leesburg,FL,130,Orlando,FL
-32159,10063,Leesburg,FL,130,Orlando,FL
-32160,10040,Gainesville,FL,120,Gainesville,FL
-32162,10083,Ocala,FL,129,Ocala,FL
-32163,10063,Leesburg,FL,130,Orlando,FL
-32164,10015,Bunnell,FL,131,Ormond Beach,FL
-32168,10079,New Smyrna Beach,FL,131,Ormond Beach,FL
-32169,10079,New Smyrna Beach,FL,131,Ormond Beach,FL
-32170,10079,New Smyrna Beach,FL,131,Ormond Beach,FL
-32173,10087,Ormond Beach,FL,131,Ormond Beach,FL
-32174,10087,Ormond Beach,FL,131,Ormond Beach,FL
-32175,10087,Ormond Beach,FL,131,Ormond Beach,FL
-32176,10087,Ormond Beach,FL,131,Ormond Beach,FL
-32177,10089,Palatka,FL,120,Gainesville,FL
-32178,10089,Palatka,FL,120,Gainesville,FL
-32179,10083,Ocala,FL,129,Ocala,FL
-32180,10029,De Land,FL,130,Orlando,FL
-32181,10089,Palatka,FL,120,Gainesville,FL
-32182,10083,Ocala,FL,129,Ocala,FL
-32183,10083,Ocala,FL,129,Ocala,FL
-32185,10040,Gainesville,FL,120,Gainesville,FL
-32187,10089,Palatka,FL,120,Gainesville,FL
-32189,10089,Palatka,FL,120,Gainesville,FL
-32190,10029,De Land,FL,130,Orlando,FL
-32192,10083,Ocala,FL,129,Ocala,FL
-32193,10089,Palatka,FL,120,Gainesville,FL
-32195,10083,Ocala,FL,129,Ocala,FL
-32198,10027,Daytona Beach,FL,131,Ormond Beach,FL
-32201,10050,Jacksonville,FL,123,Jacksonville,FL
-32202,10050,Jacksonville,FL,123,Jacksonville,FL
-32203,10050,Jacksonville,FL,123,Jacksonville,FL
-32204,10050,Jacksonville,FL,123,Jacksonville,FL
-32205,10050,Jacksonville,FL,123,Jacksonville,FL
-32206,10050,Jacksonville,FL,123,Jacksonville,FL
-32207,10050,Jacksonville,FL,123,Jacksonville,FL
-32208,10050,Jacksonville,FL,123,Jacksonville,FL
-32209,10050,Jacksonville,FL,123,Jacksonville,FL
-32210,10050,Jacksonville,FL,123,Jacksonville,FL
-32211,10050,Jacksonville,FL,123,Jacksonville,FL
-32212,10050,Jacksonville,FL,123,Jacksonville,FL
-32214,10050,Jacksonville,FL,123,Jacksonville,FL
-32216,10050,Jacksonville,FL,123,Jacksonville,FL
-32217,10050,Jacksonville,FL,123,Jacksonville,FL
-32218,10050,Jacksonville,FL,123,Jacksonville,FL
-32219,10050,Jacksonville,FL,123,Jacksonville,FL
-32220,10050,Jacksonville,FL,123,Jacksonville,FL
-32221,10050,Jacksonville,FL,123,Jacksonville,FL
-32222,10050,Jacksonville,FL,123,Jacksonville,FL
-32223,10050,Jacksonville,FL,123,Jacksonville,FL
-32224,10050,Jacksonville,FL,123,Jacksonville,FL
-32225,10050,Jacksonville,FL,123,Jacksonville,FL
-32226,10050,Jacksonville,FL,123,Jacksonville,FL
-32227,10050,Jacksonville,FL,123,Jacksonville,FL
-32228,10050,Jacksonville,FL,123,Jacksonville,FL
-32229,10050,Jacksonville,FL,123,Jacksonville,FL
-32231,10050,Jacksonville,FL,123,Jacksonville,FL
-32232,10050,Jacksonville,FL,123,Jacksonville,FL
-32233,10050,Jacksonville,FL,123,Jacksonville,FL
-32234,10050,Jacksonville,FL,123,Jacksonville,FL
-32235,10050,Jacksonville,FL,123,Jacksonville,FL
-32236,10050,Jacksonville,FL,123,Jacksonville,FL
-32237,10050,Jacksonville,FL,123,Jacksonville,FL
-32238,10050,Jacksonville,FL,123,Jacksonville,FL
-32239,10050,Jacksonville,FL,123,Jacksonville,FL
-32240,10051,Jacksonville Beach,FL,123,Jacksonville,FL
-32241,10050,Jacksonville,FL,123,Jacksonville,FL
-32244,10050,Jacksonville,FL,123,Jacksonville,FL
-32245,10050,Jacksonville,FL,123,Jacksonville,FL
-32246,10050,Jacksonville,FL,123,Jacksonville,FL
-32247,10050,Jacksonville,FL,123,Jacksonville,FL
-32250,10051,Jacksonville Beach,FL,123,Jacksonville,FL
-32254,10050,Jacksonville,FL,123,Jacksonville,FL
-32255,10050,Jacksonville,FL,123,Jacksonville,FL
-32256,10050,Jacksonville,FL,123,Jacksonville,FL
-32257,10050,Jacksonville,FL,123,Jacksonville,FL
-32258,10050,Jacksonville,FL,123,Jacksonville,FL
-32259,10050,Jacksonville,FL,123,Jacksonville,FL
-32260,10050,Jacksonville,FL,123,Jacksonville,FL
-32266,10051,Jacksonville Beach,FL,123,Jacksonville,FL
-32277,10050,Jacksonville,FL,123,Jacksonville,FL
-32301,10119,Tallahassee,FL,140,Tallahassee,FL
-32302,10119,Tallahassee,FL,140,Tallahassee,FL
-32303,10119,Tallahassee,FL,140,Tallahassee,FL
-32304,10119,Tallahassee,FL,140,Tallahassee,FL
-32305,10119,Tallahassee,FL,140,Tallahassee,FL
-32306,10119,Tallahassee,FL,140,Tallahassee,FL
-32307,10119,Tallahassee,FL,140,Tallahassee,FL
-32308,10119,Tallahassee,FL,140,Tallahassee,FL
-32309,10119,Tallahassee,FL,140,Tallahassee,FL
-32310,10119,Tallahassee,FL,140,Tallahassee,FL
-32311,10119,Tallahassee,FL,140,Tallahassee,FL
-32312,10119,Tallahassee,FL,140,Tallahassee,FL
-32313,10119,Tallahassee,FL,140,Tallahassee,FL
-32314,10119,Tallahassee,FL,140,Tallahassee,FL
-32315,10119,Tallahassee,FL,140,Tallahassee,FL
-32316,10119,Tallahassee,FL,140,Tallahassee,FL
-32317,10119,Tallahassee,FL,140,Tallahassee,FL
-32318,10119,Tallahassee,FL,140,Tallahassee,FL
-32320,10001,Apalachicola,FL,133,Panama City,FL
-32321,10119,Tallahassee,FL,140,Tallahassee,FL
-32322,10119,Tallahassee,FL,140,Tallahassee,FL
-32323,10119,Tallahassee,FL,140,Tallahassee,FL
-32324,10119,Tallahassee,FL,140,Tallahassee,FL
-32326,10119,Tallahassee,FL,140,Tallahassee,FL
-32327,10119,Tallahassee,FL,140,Tallahassee,FL
-32328,10001,Apalachicola,FL,133,Panama City,FL
-32329,10001,Apalachicola,FL,133,Panama City,FL
-32330,10119,Tallahassee,FL,140,Tallahassee,FL
-32331,10119,Tallahassee,FL,140,Tallahassee,FL
-32332,10119,Tallahassee,FL,140,Tallahassee,FL
-32333,10119,Tallahassee,FL,140,Tallahassee,FL
-32334,10119,Tallahassee,FL,140,Tallahassee,FL
-32335,10091,Panama City,FL,133,Panama City,FL
-32336,10119,Tallahassee,FL,140,Tallahassee,FL
-32337,10119,Tallahassee,FL,140,Tallahassee,FL
-32340,10069,Madison,FL,140,Tallahassee,FL
-32341,10069,Madison,FL,140,Tallahassee,FL
-32343,10119,Tallahassee,FL,140,Tallahassee,FL
-32344,10119,Tallahassee,FL,140,Tallahassee,FL
-32345,10119,Tallahassee,FL,140,Tallahassee,FL
-32346,10119,Tallahassee,FL,140,Tallahassee,FL
-32347,10119,Tallahassee,FL,140,Tallahassee,FL
-32348,10119,Tallahassee,FL,140,Tallahassee,FL
-32350,11119,Valdosta,GA,140,Tallahassee,FL
-32351,10119,Tallahassee,FL,140,Tallahassee,FL
-32352,10119,Tallahassee,FL,140,Tallahassee,FL
-32353,10119,Tallahassee,FL,140,Tallahassee,FL
-32355,10119,Tallahassee,FL,140,Tallahassee,FL
-32356,10040,Gainesville,FL,120,Gainesville,FL
-32357,10119,Tallahassee,FL,140,Tallahassee,FL
-32358,10119,Tallahassee,FL,140,Tallahassee,FL
-32359,10040,Gainesville,FL,120,Gainesville,FL
-32360,10119,Tallahassee,FL,140,Tallahassee,FL
-32361,10119,Tallahassee,FL,140,Tallahassee,FL
-32362,10119,Tallahassee,FL,140,Tallahassee,FL
-32395,10119,Tallahassee,FL,140,Tallahassee,FL
-32399,10119,Tallahassee,FL,140,Tallahassee,FL
-32401,10091,Panama City,FL,133,Panama City,FL
-32402,10091,Panama City,FL,133,Panama City,FL
-32403,10091,Panama City,FL,133,Panama City,FL
-32404,10091,Panama City,FL,133,Panama City,FL
-32405,10091,Panama City,FL,133,Panama City,FL
-32406,10091,Panama City,FL,133,Panama City,FL
-32407,10091,Panama City,FL,133,Panama City,FL
-32408,10091,Panama City,FL,133,Panama City,FL
-32409,10091,Panama City,FL,133,Panama City,FL
-32410,10091,Panama City,FL,133,Panama City,FL
-32411,10091,Panama City,FL,133,Panama City,FL
-32412,10091,Panama City,FL,133,Panama City,FL
-32413,10091,Panama City,FL,133,Panama City,FL
-32417,10091,Panama City,FL,133,Panama City,FL
-32420,10072,Marianna,FL,2,Dothan,AL
-32421,10008,Blountstown,FL,140,Tallahassee,FL
-32422,10028,De Funiak Springs,FL,134,Pensacola,FL
-32423,1026,Dothan,AL,2,Dothan,AL
-32424,10008,Blountstown,FL,140,Tallahassee,FL
-32425,1026,Dothan,AL,2,Dothan,AL
-32426,1026,Dothan,AL,2,Dothan,AL
-32427,1040,Geneva,AL,2,Dothan,AL
-32428,10017,Chipley,FL,133,Panama City,FL
-32430,10008,Blountstown,FL,140,Tallahassee,FL
-32431,10072,Marianna,FL,2,Dothan,AL
-32432,10072,Marianna,FL,2,Dothan,AL
-32433,10028,De Funiak Springs,FL,134,Pensacola,FL
-32434,10028,De Funiak Springs,FL,134,Pensacola,FL
-32435,10028,De Funiak Springs,FL,134,Pensacola,FL
-32437,10091,Panama City,FL,133,Panama City,FL
-32438,10091,Panama City,FL,133,Panama City,FL
-32439,10080,Niceville,FL,134,Pensacola,FL
-32440,10041,Graceville,FL,2,Dothan,AL
-32442,10072,Marianna,FL,2,Dothan,AL
-32443,10072,Marianna,FL,2,Dothan,AL
-32444,10091,Panama City,FL,133,Panama City,FL
-32445,1026,Dothan,AL,2,Dothan,AL
-32446,10072,Marianna,FL,2,Dothan,AL
-32447,10072,Marianna,FL,2,Dothan,AL
-32448,10072,Marianna,FL,2,Dothan,AL
-32449,10091,Panama City,FL,133,Panama City,FL
-32452,1026,Dothan,AL,2,Dothan,AL
-32455,10028,De Funiak Springs,FL,134,Pensacola,FL
-32456,10100,Port St. Joe,FL,133,Panama City,FL
-32457,10100,Port St. Joe,FL,133,Panama City,FL
-32459,10031,Destin,FL,134,Pensacola,FL
-32460,10072,Marianna,FL,2,Dothan,AL
-32461,10031,Destin,FL,134,Pensacola,FL
-32462,10091,Panama City,FL,133,Panama City,FL
-32463,10017,Chipley,FL,133,Panama City,FL
-32464,1040,Geneva,AL,2,Dothan,AL
-32465,10091,Panama City,FL,133,Panama City,FL
-32466,10091,Panama City,FL,133,Panama City,FL
-32501,10093,Pensacola,FL,134,Pensacola,FL
-32502,10093,Pensacola,FL,134,Pensacola,FL
-32503,10093,Pensacola,FL,134,Pensacola,FL
-32504,10093,Pensacola,FL,134,Pensacola,FL
-32505,10093,Pensacola,FL,134,Pensacola,FL
-32506,10093,Pensacola,FL,134,Pensacola,FL
-32507,10093,Pensacola,FL,134,Pensacola,FL
-32508,10093,Pensacola,FL,134,Pensacola,FL
-32509,10093,Pensacola,FL,134,Pensacola,FL
-32511,10093,Pensacola,FL,134,Pensacola,FL
-32512,10093,Pensacola,FL,134,Pensacola,FL
-32513,10093,Pensacola,FL,134,Pensacola,FL
-32514,10093,Pensacola,FL,134,Pensacola,FL
-32516,10093,Pensacola,FL,134,Pensacola,FL
-32520,10093,Pensacola,FL,134,Pensacola,FL
-32521,10093,Pensacola,FL,134,Pensacola,FL
-32522,10093,Pensacola,FL,134,Pensacola,FL
-32523,10093,Pensacola,FL,134,Pensacola,FL
-32524,10093,Pensacola,FL,134,Pensacola,FL
-32526,10093,Pensacola,FL,134,Pensacola,FL
-32530,10076,Milton,FL,134,Pensacola,FL
-32531,10024,Crestview,FL,134,Pensacola,FL
-32533,10093,Pensacola,FL,134,Pensacola,FL
-32534,10093,Pensacola,FL,134,Pensacola,FL
-32535,10093,Pensacola,FL,134,Pensacola,FL
-32536,10024,Crestview,FL,134,Pensacola,FL
-32537,10024,Crestview,FL,134,Pensacola,FL
-32538,10024,Crestview,FL,134,Pensacola,FL
-32539,10024,Crestview,FL,134,Pensacola,FL
-32540,10031,Destin,FL,134,Pensacola,FL
-32541,10031,Destin,FL,134,Pensacola,FL
-32542,10080,Niceville,FL,134,Pensacola,FL
-32544,10039,Fort Walton Beach,FL,134,Pensacola,FL
-32547,10039,Fort Walton Beach,FL,134,Pensacola,FL
-32548,10039,Fort Walton Beach,FL,134,Pensacola,FL
-32549,10039,Fort Walton Beach,FL,134,Pensacola,FL
-32550,10031,Destin,FL,134,Pensacola,FL
-32559,10093,Pensacola,FL,134,Pensacola,FL
-32560,10093,Pensacola,FL,134,Pensacola,FL
-32561,10043,Gulf Breeze,FL,134,Pensacola,FL
-32562,10043,Gulf Breeze,FL,134,Pensacola,FL
-32563,10043,Gulf Breeze,FL,134,Pensacola,FL
-32564,10024,Crestview,FL,134,Pensacola,FL
-32565,10053,Jay,FL,134,Pensacola,FL
-32566,10043,Gulf Breeze,FL,134,Pensacola,FL
-32567,10024,Crestview,FL,134,Pensacola,FL
-32568,10093,Pensacola,FL,134,Pensacola,FL
-32569,10039,Fort Walton Beach,FL,134,Pensacola,FL
-32570,10076,Milton,FL,134,Pensacola,FL
-32571,10093,Pensacola,FL,134,Pensacola,FL
-32572,10076,Milton,FL,134,Pensacola,FL
-32577,10093,Pensacola,FL,134,Pensacola,FL
-32578,10080,Niceville,FL,134,Pensacola,FL
-32579,10039,Fort Walton Beach,FL,134,Pensacola,FL
-32580,10080,Niceville,FL,134,Pensacola,FL
-32583,10076,Milton,FL,134,Pensacola,FL
-32588,10080,Niceville,FL,134,Pensacola,FL
-32591,10093,Pensacola,FL,134,Pensacola,FL
-32601,10040,Gainesville,FL,120,Gainesville,FL
-32602,10040,Gainesville,FL,120,Gainesville,FL
-32603,10040,Gainesville,FL,120,Gainesville,FL
-32604,10040,Gainesville,FL,120,Gainesville,FL
-32605,10040,Gainesville,FL,120,Gainesville,FL
-32606,10040,Gainesville,FL,120,Gainesville,FL
-32607,10040,Gainesville,FL,120,Gainesville,FL
-32608,10040,Gainesville,FL,120,Gainesville,FL
-32609,10040,Gainesville,FL,120,Gainesville,FL
-32610,10040,Gainesville,FL,120,Gainesville,FL
-32611,10040,Gainesville,FL,120,Gainesville,FL
-32612,10040,Gainesville,FL,120,Gainesville,FL
-32614,10040,Gainesville,FL,120,Gainesville,FL
-32615,10040,Gainesville,FL,120,Gainesville,FL
-32616,10040,Gainesville,FL,120,Gainesville,FL
-32617,10083,Ocala,FL,129,Ocala,FL
-32618,10040,Gainesville,FL,120,Gainesville,FL
-32619,10040,Gainesville,FL,120,Gainesville,FL
-32621,10040,Gainesville,FL,120,Gainesville,FL
-32622,10040,Gainesville,FL,120,Gainesville,FL
-32625,10040,Gainesville,FL,120,Gainesville,FL
-32626,10040,Gainesville,FL,120,Gainesville,FL
-32627,10040,Gainesville,FL,120,Gainesville,FL
-32628,10040,Gainesville,FL,120,Gainesville,FL
-32631,10040,Gainesville,FL,120,Gainesville,FL
-32633,10040,Gainesville,FL,120,Gainesville,FL
-32634,10083,Ocala,FL,129,Ocala,FL
-32635,10040,Gainesville,FL,120,Gainesville,FL
-32639,10025,Crystal River,FL,129,Ocala,FL
-32640,10040,Gainesville,FL,120,Gainesville,FL
-32641,10040,Gainesville,FL,120,Gainesville,FL
-32643,10040,Gainesville,FL,120,Gainesville,FL
-32644,10040,Gainesville,FL,120,Gainesville,FL
-32648,10040,Gainesville,FL,120,Gainesville,FL
-32653,10040,Gainesville,FL,120,Gainesville,FL
-32654,10040,Gainesville,FL,120,Gainesville,FL
-32655,10040,Gainesville,FL,120,Gainesville,FL
-32656,10040,Gainesville,FL,120,Gainesville,FL
-32658,10040,Gainesville,FL,120,Gainesville,FL
-32662,10040,Gainesville,FL,120,Gainesville,FL
-32663,10083,Ocala,FL,129,Ocala,FL
-32664,10083,Ocala,FL,129,Ocala,FL
-32666,10040,Gainesville,FL,120,Gainesville,FL
-32667,10040,Gainesville,FL,120,Gainesville,FL
-32668,10040,Gainesville,FL,120,Gainesville,FL
-32669,10040,Gainesville,FL,120,Gainesville,FL
-32680,10040,Gainesville,FL,120,Gainesville,FL
-32681,10083,Ocala,FL,129,Ocala,FL
-32683,10025,Crystal River,FL,129,Ocala,FL
-32686,10083,Ocala,FL,129,Ocala,FL
-32692,10040,Gainesville,FL,120,Gainesville,FL
-32693,10040,Gainesville,FL,120,Gainesville,FL
-32694,10040,Gainesville,FL,120,Gainesville,FL
-32696,10040,Gainesville,FL,120,Gainesville,FL
-32697,10040,Gainesville,FL,120,Gainesville,FL
-32701,10086,Orlando,FL,130,Orlando,FL
-32702,10034,Eustis,FL,130,Orlando,FL
-32703,10086,Orlando,FL,130,Orlando,FL
-32704,10086,Orlando,FL,130,Orlando,FL
-32706,10029,De Land,FL,130,Orlando,FL
-32707,10086,Orlando,FL,130,Orlando,FL
-32708,10086,Orlando,FL,130,Orlando,FL
-32709,10086,Orlando,FL,130,Orlando,FL
-32710,10086,Orlando,FL,130,Orlando,FL
-32712,10086,Orlando,FL,130,Orlando,FL
-32713,10106,Sanford,FL,130,Orlando,FL
-32714,10086,Orlando,FL,130,Orlando,FL
-32715,10086,Orlando,FL,130,Orlando,FL
-32716,10086,Orlando,FL,130,Orlando,FL
-32718,10086,Orlando,FL,130,Orlando,FL
-32719,10086,Orlando,FL,130,Orlando,FL
-32720,10029,De Land,FL,130,Orlando,FL
-32721,10029,De Land,FL,130,Orlando,FL
-32722,10029,De Land,FL,130,Orlando,FL
-32723,10029,De Land,FL,130,Orlando,FL
-32724,10029,De Land,FL,130,Orlando,FL
-32725,10106,Sanford,FL,130,Orlando,FL
-32726,10034,Eustis,FL,130,Orlando,FL
-32727,10034,Eustis,FL,130,Orlando,FL
-32728,10106,Sanford,FL,130,Orlando,FL
-32730,10086,Orlando,FL,130,Orlando,FL
-32732,10106,Sanford,FL,130,Orlando,FL
-32733,10132,Winter Park,FL,130,Orlando,FL
-32735,10034,Eustis,FL,130,Orlando,FL
-32736,10034,Eustis,FL,130,Orlando,FL
-32738,10106,Sanford,FL,130,Orlando,FL
-32739,10106,Sanford,FL,130,Orlando,FL
-32744,10029,De Land,FL,130,Orlando,FL
-32745,10086,Orlando,FL,130,Orlando,FL
-32746,10086,Orlando,FL,130,Orlando,FL
-32747,10106,Sanford,FL,130,Orlando,FL
-32750,10086,Orlando,FL,130,Orlando,FL
-32751,10086,Orlando,FL,130,Orlando,FL
-32752,10086,Orlando,FL,130,Orlando,FL
-32753,10106,Sanford,FL,130,Orlando,FL
-32754,10124,Titusville,FL,130,Orlando,FL
-32756,10034,Eustis,FL,130,Orlando,FL
-32757,10034,Eustis,FL,130,Orlando,FL
-32759,10079,New Smyrna Beach,FL,131,Ormond Beach,FL
-32762,10132,Winter Park,FL,130,Orlando,FL
-32763,10029,De Land,FL,130,Orlando,FL
-32764,10106,Sanford,FL,130,Orlando,FL
-32765,10132,Winter Park,FL,130,Orlando,FL
-32766,10086,Orlando,FL,130,Orlando,FL
-32767,10034,Eustis,FL,130,Orlando,FL
-32768,10086,Orlando,FL,130,Orlando,FL
-32771,10106,Sanford,FL,130,Orlando,FL
-32772,10106,Sanford,FL,130,Orlando,FL
-32773,10106,Sanford,FL,130,Orlando,FL
-32774,10029,De Land,FL,130,Orlando,FL
-32775,10124,Titusville,FL,130,Orlando,FL
-32776,10086,Orlando,FL,130,Orlando,FL
-32777,10034,Eustis,FL,130,Orlando,FL
-32778,10034,Eustis,FL,130,Orlando,FL
-32779,10086,Orlando,FL,130,Orlando,FL
-32780,10124,Titusville,FL,130,Orlando,FL
-32781,10124,Titusville,FL,130,Orlando,FL
-32783,10124,Titusville,FL,130,Orlando,FL
-32784,10034,Eustis,FL,130,Orlando,FL
-32789,10086,Orlando,FL,130,Orlando,FL
-32790,10086,Orlando,FL,130,Orlando,FL
-32791,10086,Orlando,FL,130,Orlando,FL
-32792,10132,Winter Park,FL,130,Orlando,FL
-32793,10132,Winter Park,FL,130,Orlando,FL
-32794,10086,Orlando,FL,130,Orlando,FL
-32795,10086,Orlando,FL,130,Orlando,FL
-32796,10124,Titusville,FL,130,Orlando,FL
-32798,10086,Orlando,FL,130,Orlando,FL
-32799,10086,Orlando,FL,130,Orlando,FL
-32801,10086,Orlando,FL,130,Orlando,FL
-32802,10086,Orlando,FL,130,Orlando,FL
-32803,10086,Orlando,FL,130,Orlando,FL
-32804,10086,Orlando,FL,130,Orlando,FL
-32805,10086,Orlando,FL,130,Orlando,FL
-32806,10086,Orlando,FL,130,Orlando,FL
-32807,10086,Orlando,FL,130,Orlando,FL
-32808,10086,Orlando,FL,130,Orlando,FL
-32809,10086,Orlando,FL,130,Orlando,FL
-32810,10086,Orlando,FL,130,Orlando,FL
-32811,10086,Orlando,FL,130,Orlando,FL
-32812,10086,Orlando,FL,130,Orlando,FL
-32814,10132,Winter Park,FL,130,Orlando,FL
-32815,10124,Titusville,FL,130,Orlando,FL
-32816,10086,Orlando,FL,130,Orlando,FL
-32817,10086,Orlando,FL,130,Orlando,FL
-32818,10086,Orlando,FL,130,Orlando,FL
-32819,10086,Orlando,FL,130,Orlando,FL
-32820,10086,Orlando,FL,130,Orlando,FL
-32821,10086,Orlando,FL,130,Orlando,FL
-32822,10086,Orlando,FL,130,Orlando,FL
-32824,10086,Orlando,FL,130,Orlando,FL
-32825,10086,Orlando,FL,130,Orlando,FL
-32826,10086,Orlando,FL,130,Orlando,FL
-32827,10086,Orlando,FL,130,Orlando,FL
-32828,10086,Orlando,FL,130,Orlando,FL
-32829,10086,Orlando,FL,130,Orlando,FL
-32830,10086,Orlando,FL,130,Orlando,FL
-32831,10086,Orlando,FL,130,Orlando,FL
-32832,10086,Orlando,FL,130,Orlando,FL
-32833,10086,Orlando,FL,130,Orlando,FL
-32834,10086,Orlando,FL,130,Orlando,FL
-32835,10086,Orlando,FL,130,Orlando,FL
-32836,10086,Orlando,FL,130,Orlando,FL
-32837,10086,Orlando,FL,130,Orlando,FL
-32839,10086,Orlando,FL,130,Orlando,FL
-32853,10086,Orlando,FL,130,Orlando,FL
-32854,10086,Orlando,FL,130,Orlando,FL
-32855,10086,Orlando,FL,130,Orlando,FL
-32856,10086,Orlando,FL,130,Orlando,FL
-32857,10086,Orlando,FL,130,Orlando,FL
-32858,10086,Orlando,FL,130,Orlando,FL
-32859,10086,Orlando,FL,130,Orlando,FL
-32860,10086,Orlando,FL,130,Orlando,FL
-32861,10086,Orlando,FL,130,Orlando,FL
-32862,10086,Orlando,FL,130,Orlando,FL
-32867,10086,Orlando,FL,130,Orlando,FL
-32868,10086,Orlando,FL,130,Orlando,FL
-32869,10086,Orlando,FL,130,Orlando,FL
-32872,10086,Orlando,FL,130,Orlando,FL
-32877,10086,Orlando,FL,130,Orlando,FL
-32878,10086,Orlando,FL,130,Orlando,FL
-32885,10086,Orlando,FL,130,Orlando,FL
-32886,10086,Orlando,FL,130,Orlando,FL
-32887,10086,Orlando,FL,130,Orlando,FL
-32891,10086,Orlando,FL,130,Orlando,FL
-32896,10086,Orlando,FL,130,Orlando,FL
-32897,10086,Orlando,FL,130,Orlando,FL
-32899,10124,Titusville,FL,130,Orlando,FL
-32901,10073,Melbourne,FL,130,Orlando,FL
-32902,10073,Melbourne,FL,130,Orlando,FL
-32903,10073,Melbourne,FL,130,Orlando,FL
-32904,10073,Melbourne,FL,130,Orlando,FL
-32905,10073,Melbourne,FL,130,Orlando,FL
-32906,10073,Melbourne,FL,130,Orlando,FL
-32907,10073,Melbourne,FL,130,Orlando,FL
-32908,10073,Melbourne,FL,130,Orlando,FL
-32909,10073,Melbourne,FL,130,Orlando,FL
-32910,10073,Melbourne,FL,130,Orlando,FL
-32911,10073,Melbourne,FL,130,Orlando,FL
-32912,10073,Melbourne,FL,130,Orlando,FL
-32919,10073,Melbourne,FL,130,Orlando,FL
-32920,10021,Cocoa Beach,FL,130,Orlando,FL
-32922,10104,Rockledge,FL,130,Orlando,FL
-32923,10104,Rockledge,FL,130,Orlando,FL
-32924,10104,Rockledge,FL,130,Orlando,FL
-32925,10073,Melbourne,FL,130,Orlando,FL
-32926,10104,Rockledge,FL,130,Orlando,FL
-32927,10104,Rockledge,FL,130,Orlando,FL
-32931,10021,Cocoa Beach,FL,130,Orlando,FL
-32932,10021,Cocoa Beach,FL,130,Orlando,FL
-32934,10073,Melbourne,FL,130,Orlando,FL
-32935,10073,Melbourne,FL,130,Orlando,FL
-32936,10073,Melbourne,FL,130,Orlando,FL
-32937,10073,Melbourne,FL,130,Orlando,FL
-32940,10073,Melbourne,FL,130,Orlando,FL
-32941,10073,Melbourne,FL,130,Orlando,FL
-32948,10108,Sebastian,FL,130,Orlando,FL
-32949,10073,Melbourne,FL,130,Orlando,FL
-32950,10073,Melbourne,FL,130,Orlando,FL
-32951,10073,Melbourne,FL,130,Orlando,FL
-32952,10021,Cocoa Beach,FL,130,Orlando,FL
-32953,10104,Rockledge,FL,130,Orlando,FL
-32954,10104,Rockledge,FL,130,Orlando,FL
-32955,10104,Rockledge,FL,130,Orlando,FL
-32956,10104,Rockledge,FL,130,Orlando,FL
-32957,10108,Sebastian,FL,130,Orlando,FL
-32958,10108,Sebastian,FL,130,Orlando,FL
-32959,10104,Rockledge,FL,130,Orlando,FL
-32960,10126,Vero Beach,FL,130,Orlando,FL
-32961,10126,Vero Beach,FL,130,Orlando,FL
-32962,10126,Vero Beach,FL,130,Orlando,FL
-32963,10126,Vero Beach,FL,130,Orlando,FL
-32964,10126,Vero Beach,FL,130,Orlando,FL
-32965,10126,Vero Beach,FL,130,Orlando,FL
-32966,10126,Vero Beach,FL,130,Orlando,FL
-32967,10126,Vero Beach,FL,130,Orlando,FL
-32968,10126,Vero Beach,FL,130,Orlando,FL
-32969,10126,Vero Beach,FL,130,Orlando,FL
-32970,10126,Vero Beach,FL,130,Orlando,FL
-32971,10126,Vero Beach,FL,130,Orlando,FL
-32976,10108,Sebastian,FL,130,Orlando,FL
-32978,10108,Sebastian,FL,130,Orlando,FL
-33001,10070,Marathon,FL,127,Miami,FL
-33002,10045,Hialeah,FL,127,Miami,FL
-33004,10046,Hollywood,FL,127,Miami,FL
-33008,10046,Hollywood,FL,127,Miami,FL
-33009,10046,Hollywood,FL,127,Miami,FL
-33010,10045,Hialeah,FL,127,Miami,FL
-33011,10045,Hialeah,FL,127,Miami,FL
-33012,10045,Hialeah,FL,127,Miami,FL
-33013,10045,Hialeah,FL,127,Miami,FL
-33014,10045,Hialeah,FL,127,Miami,FL
-33015,10045,Hialeah,FL,127,Miami,FL
-33016,10045,Hialeah,FL,127,Miami,FL
-33017,10045,Hialeah,FL,127,Miami,FL
-33018,10045,Hialeah,FL,127,Miami,FL
-33019,10046,Hollywood,FL,127,Miami,FL
-33020,10046,Hollywood,FL,127,Miami,FL
-33021,10046,Hollywood,FL,127,Miami,FL
-33022,10046,Hollywood,FL,127,Miami,FL
-33023,10046,Hollywood,FL,127,Miami,FL
-33024,10046,Hollywood,FL,127,Miami,FL
-33025,10046,Hollywood,FL,127,Miami,FL
-33026,10092,Pembroke Pines,FL,127,Miami,FL
-33027,10092,Pembroke Pines,FL,127,Miami,FL
-33028,10092,Pembroke Pines,FL,127,Miami,FL
-33029,10092,Pembroke Pines,FL,127,Miami,FL
-33030,10047,Homestead,FL,127,Miami,FL
-33031,10074,Miami,FL,127,Miami,FL
-33032,10074,Miami,FL,127,Miami,FL
-33033,10074,Miami,FL,127,Miami,FL
-33034,10047,Homestead,FL,127,Miami,FL
-33035,10047,Homestead,FL,127,Miami,FL
-33036,10123,Tavernier,FL,127,Miami,FL
-33037,10123,Tavernier,FL,127,Miami,FL
-33039,10074,Miami,FL,127,Miami,FL
-33040,10055,Key West,FL,127,Miami,FL
-33041,10055,Key West,FL,127,Miami,FL
-33042,10055,Key West,FL,127,Miami,FL
-33043,10070,Marathon,FL,127,Miami,FL
-33045,10055,Key West,FL,127,Miami,FL
-33050,10070,Marathon,FL,127,Miami,FL
-33051,10070,Marathon,FL,127,Miami,FL
-33052,10070,Marathon,FL,127,Miami,FL
-33054,10074,Miami,FL,127,Miami,FL
-33055,10074,Miami,FL,127,Miami,FL
-33056,10074,Miami,FL,127,Miami,FL
-33060,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33061,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33062,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33063,10071,Margate,FL,118,Fort Lauderdale,FL
-33064,10098,Pompano Beach,FL,118,Fort Lauderdale,FL
-33065,10023,Coral Springs,FL,118,Fort Lauderdale,FL
-33066,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33067,10023,Coral Springs,FL,118,Fort Lauderdale,FL
-33068,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33069,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33070,10123,Tavernier,FL,127,Miami,FL
-33071,10023,Coral Springs,FL,118,Fort Lauderdale,FL
-33072,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33073,10098,Pompano Beach,FL,118,Fort Lauderdale,FL
-33074,10098,Pompano Beach,FL,118,Fort Lauderdale,FL
-33075,10023,Coral Springs,FL,118,Fort Lauderdale,FL
-33076,10023,Coral Springs,FL,118,Fort Lauderdale,FL
-33077,10023,Coral Springs,FL,118,Fort Lauderdale,FL
-33081,10046,Hollywood,FL,127,Miami,FL
-33082,10092,Pembroke Pines,FL,127,Miami,FL
-33083,10046,Hollywood,FL,127,Miami,FL
-33084,10046,Hollywood,FL,127,Miami,FL
-33090,10047,Homestead,FL,127,Miami,FL
-33092,10074,Miami,FL,127,Miami,FL
-33093,10071,Margate,FL,118,Fort Lauderdale,FL
-33097,10098,Pompano Beach,FL,118,Fort Lauderdale,FL
-33101,10074,Miami,FL,127,Miami,FL
-33102,10074,Miami,FL,127,Miami,FL
-33106,10074,Miami,FL,127,Miami,FL
-33109,10075,Miami Beach,FL,127,Miami,FL
-33111,10074,Miami,FL,127,Miami,FL
-33112,10074,Miami,FL,127,Miami,FL
-33114,10074,Miami,FL,127,Miami,FL
-33116,10074,Miami,FL,127,Miami,FL
-33119,10075,Miami Beach,FL,127,Miami,FL
-33122,10074,Miami,FL,127,Miami,FL
-33124,10074,Miami,FL,127,Miami,FL
-33125,10074,Miami,FL,127,Miami,FL
-33126,10074,Miami,FL,127,Miami,FL
-33127,10074,Miami,FL,127,Miami,FL
-33128,10074,Miami,FL,127,Miami,FL
-33129,10074,Miami,FL,127,Miami,FL
-33130,10074,Miami,FL,127,Miami,FL
-33131,10074,Miami,FL,127,Miami,FL
-33132,10074,Miami,FL,127,Miami,FL
-33133,10074,Miami,FL,127,Miami,FL
-33134,10074,Miami,FL,127,Miami,FL
-33135,10074,Miami,FL,127,Miami,FL
-33136,10074,Miami,FL,127,Miami,FL
-33137,10074,Miami,FL,127,Miami,FL
-33138,10074,Miami,FL,127,Miami,FL
-33139,10075,Miami Beach,FL,127,Miami,FL
-33140,10075,Miami Beach,FL,127,Miami,FL
-33141,10075,Miami Beach,FL,127,Miami,FL
-33142,10074,Miami,FL,127,Miami,FL
-33143,10111,South Miami,FL,127,Miami,FL
-33144,10074,Miami,FL,127,Miami,FL
-33145,10074,Miami,FL,127,Miami,FL
-33146,10022,Coral Gables,FL,127,Miami,FL
-33147,10074,Miami,FL,127,Miami,FL
-33149,10074,Miami,FL,127,Miami,FL
-33150,10074,Miami,FL,127,Miami,FL
-33151,10074,Miami,FL,127,Miami,FL
-33152,10074,Miami,FL,127,Miami,FL
-33153,10074,Miami,FL,127,Miami,FL
-33154,10075,Miami Beach,FL,127,Miami,FL
-33155,10074,Miami,FL,127,Miami,FL
-33156,10074,Miami,FL,127,Miami,FL
-33157,10074,Miami,FL,127,Miami,FL
-33158,10074,Miami,FL,127,Miami,FL
-33160,10074,Miami,FL,127,Miami,FL
-33161,10074,Miami,FL,127,Miami,FL
-33162,10074,Miami,FL,127,Miami,FL
-33163,10074,Miami,FL,127,Miami,FL
-33164,10074,Miami,FL,127,Miami,FL
-33165,10074,Miami,FL,127,Miami,FL
-33166,10074,Miami,FL,127,Miami,FL
-33167,10074,Miami,FL,127,Miami,FL
-33168,10074,Miami,FL,127,Miami,FL
-33169,10074,Miami,FL,127,Miami,FL
-33170,10074,Miami,FL,127,Miami,FL
-33172,10074,Miami,FL,127,Miami,FL
-33173,10074,Miami,FL,127,Miami,FL
-33174,10074,Miami,FL,127,Miami,FL
-33175,10074,Miami,FL,127,Miami,FL
-33176,10074,Miami,FL,127,Miami,FL
-33177,10074,Miami,FL,127,Miami,FL
-33178,10074,Miami,FL,127,Miami,FL
-33179,10074,Miami,FL,127,Miami,FL
-33180,10074,Miami,FL,127,Miami,FL
-33181,10075,Miami Beach,FL,127,Miami,FL
-33182,10074,Miami,FL,127,Miami,FL
-33183,10074,Miami,FL,127,Miami,FL
-33184,10074,Miami,FL,127,Miami,FL
-33185,10074,Miami,FL,127,Miami,FL
-33186,10074,Miami,FL,127,Miami,FL
-33187,10074,Miami,FL,127,Miami,FL
-33188,10074,Miami,FL,127,Miami,FL
-33189,10074,Miami,FL,127,Miami,FL
-33190,10074,Miami,FL,127,Miami,FL
-33191,10074,Miami,FL,127,Miami,FL
-33192,10074,Miami,FL,127,Miami,FL
-33193,10074,Miami,FL,127,Miami,FL
-33194,10074,Miami,FL,127,Miami,FL
-33195,10074,Miami,FL,127,Miami,FL
-33196,10074,Miami,FL,127,Miami,FL
-33197,10074,Miami,FL,127,Miami,FL
-33198,10074,Miami,FL,127,Miami,FL
-33199,10074,Miami,FL,127,Miami,FL
-33206,10074,Miami,FL,127,Miami,FL
-33222,10074,Miami,FL,127,Miami,FL
-33231,10074,Miami,FL,127,Miami,FL
-33233,10074,Miami,FL,127,Miami,FL
-33234,10074,Miami,FL,127,Miami,FL
-33238,10074,Miami,FL,127,Miami,FL
-33239,10075,Miami Beach,FL,127,Miami,FL
-33242,10074,Miami,FL,127,Miami,FL
-33243,10111,South Miami,FL,127,Miami,FL
-33245,10074,Miami,FL,127,Miami,FL
-33247,10074,Miami,FL,127,Miami,FL
-33255,10074,Miami,FL,127,Miami,FL
-33256,10074,Miami,FL,127,Miami,FL
-33257,10074,Miami,FL,127,Miami,FL
-33261,10075,Miami Beach,FL,127,Miami,FL
-33265,10074,Miami,FL,127,Miami,FL
-33266,10074,Miami,FL,127,Miami,FL
-33269,10074,Miami,FL,127,Miami,FL
-33280,10074,Miami,FL,127,Miami,FL
-33283,10074,Miami,FL,127,Miami,FL
-33296,10074,Miami,FL,127,Miami,FL
-33299,10074,Miami,FL,127,Miami,FL
-33301,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33302,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33303,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33304,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33305,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33306,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33307,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33308,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33309,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33310,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33311,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33312,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33313,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33314,10046,Hollywood,FL,127,Miami,FL
-33315,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33316,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33317,10097,Plantation,FL,118,Fort Lauderdale,FL
-33318,10097,Plantation,FL,118,Fort Lauderdale,FL
-33319,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33320,10120,Tamarac,FL,118,Fort Lauderdale,FL
-33321,10120,Tamarac,FL,118,Fort Lauderdale,FL
-33322,10097,Plantation,FL,118,Fort Lauderdale,FL
-33323,10097,Plantation,FL,118,Fort Lauderdale,FL
-33324,10097,Plantation,FL,118,Fort Lauderdale,FL
-33325,10097,Plantation,FL,118,Fort Lauderdale,FL
-33326,10097,Plantation,FL,118,Fort Lauderdale,FL
-33327,10092,Pembroke Pines,FL,127,Miami,FL
-33328,10092,Pembroke Pines,FL,127,Miami,FL
-33329,10092,Pembroke Pines,FL,127,Miami,FL
-33330,10092,Pembroke Pines,FL,127,Miami,FL
-33331,10092,Pembroke Pines,FL,127,Miami,FL
-33332,10092,Pembroke Pines,FL,127,Miami,FL
-33334,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33335,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33336,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33337,10097,Plantation,FL,118,Fort Lauderdale,FL
-33338,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33339,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33340,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33345,10092,Pembroke Pines,FL,127,Miami,FL
-33346,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33348,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33349,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33351,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33355,10097,Plantation,FL,118,Fort Lauderdale,FL
-33359,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33388,10097,Plantation,FL,118,Fort Lauderdale,FL
-33394,10036,Fort Lauderdale,FL,118,Fort Lauderdale,FL
-33401,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33402,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33403,10090,Palm Beach Gardens,FL,118,Fort Lauderdale,FL
-33404,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33405,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33406,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33407,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33408,10090,Palm Beach Gardens,FL,118,Fort Lauderdale,FL
-33409,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33410,10090,Palm Beach Gardens,FL,118,Fort Lauderdale,FL
-33411,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33412,10090,Palm Beach Gardens,FL,118,Fort Lauderdale,FL
-33413,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33414,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33415,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33416,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33417,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33418,10090,Palm Beach Gardens,FL,118,Fort Lauderdale,FL
-33419,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33420,10090,Palm Beach Gardens,FL,118,Fort Lauderdale,FL
-33421,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33422,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33424,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33425,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33426,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33427,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33428,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33429,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33430,10007,Belle Glade,FL,118,Fort Lauderdale,FL
-33431,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33432,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33433,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33434,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33435,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33436,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33437,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33438,10088,Pahokee,FL,118,Fort Lauderdale,FL
-33440,10020,Clewiston,FL,119,Fort Myers,FL
-33441,10098,Pompano Beach,FL,118,Fort Lauderdale,FL
-33442,10098,Pompano Beach,FL,118,Fort Lauderdale,FL
-33443,10098,Pompano Beach,FL,118,Fort Lauderdale,FL
-33444,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33445,10030,Delray Beach,FL,118,Fort Lauderdale,FL
-33446,10030,Delray Beach,FL,118,Fort Lauderdale,FL
-33448,10030,Delray Beach,FL,118,Fort Lauderdale,FL
-33449,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33454,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33455,10117,Stuart,FL,118,Fort Lauderdale,FL
-33458,10054,Jupiter,FL,118,Fort Lauderdale,FL
-33459,10007,Belle Glade,FL,118,Fort Lauderdale,FL
-33460,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33461,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33462,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33463,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33464,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33465,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33466,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33467,10003,Atlantis,FL,118,Fort Lauderdale,FL
-33468,10054,Jupiter,FL,118,Fort Lauderdale,FL
-33469,10054,Jupiter,FL,118,Fort Lauderdale,FL
-33470,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33471,10037,Fort Myers,FL,119,Fort Myers,FL
-33472,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33473,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33474,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33475,10117,Stuart,FL,118,Fort Lauderdale,FL
-33476,10088,Pahokee,FL,118,Fort Lauderdale,FL
-33477,10054,Jupiter,FL,118,Fort Lauderdale,FL
-33478,10054,Jupiter,FL,118,Fort Lauderdale,FL
-33480,10128,West Palm Beach,FL,118,Fort Lauderdale,FL
-33481,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33482,10030,Delray Beach,FL,118,Fort Lauderdale,FL
-33483,10011,Boynton Beach,FL,118,Fort Lauderdale,FL
-33484,10030,Delray Beach,FL,118,Fort Lauderdale,FL
-33486,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33487,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33488,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33493,10007,Belle Glade,FL,118,Fort Lauderdale,FL
-33496,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33497,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33498,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33499,10009,Boca Raton,FL,118,Fort Lauderdale,FL
-33503,10013,Brandon,FL,141,Tampa,FL
-33508,10013,Brandon,FL,141,Tampa,FL
-33509,10013,Brandon,FL,141,Tampa,FL
-33510,10013,Brandon,FL,141,Tampa,FL
-33511,10013,Brandon,FL,141,Tampa,FL
-33513,10063,Leesburg,FL,130,Orlando,FL
-33514,10063,Leesburg,FL,130,Orlando,FL
-33521,10063,Leesburg,FL,130,Orlando,FL
-33523,10026,Dade City,FL,141,Tampa,FL
-33524,10133,Zephyrhills,FL,141,Tampa,FL
-33525,10026,Dade City,FL,141,Tampa,FL
-33526,10026,Dade City,FL,141,Tampa,FL
-33527,10013,Brandon,FL,141,Tampa,FL
-33530,10096,Plant City,FL,124,Lakeland,FL
-33534,10013,Brandon,FL,141,Tampa,FL
-33537,10026,Dade City,FL,141,Tampa,FL
-33538,10049,Inverness,FL,129,Ocala,FL
-33539,10133,Zephyrhills,FL,141,Tampa,FL
-33540,10133,Zephyrhills,FL,141,Tampa,FL
-33541,10133,Zephyrhills,FL,141,Tampa,FL
-33542,10133,Zephyrhills,FL,141,Tampa,FL
-33543,10121,Tampa,FL,141,Tampa,FL
-33544,10121,Tampa,FL,141,Tampa,FL
-33545,10121,Tampa,FL,141,Tampa,FL
-33547,10013,Brandon,FL,141,Tampa,FL
-33548,10121,Tampa,FL,141,Tampa,FL
-33549,10121,Tampa,FL,141,Tampa,FL
-33550,10013,Brandon,FL,141,Tampa,FL
-33556,10121,Tampa,FL,141,Tampa,FL
-33558,10121,Tampa,FL,141,Tampa,FL
-33559,10121,Tampa,FL,141,Tampa,FL
-33563,10096,Plant City,FL,124,Lakeland,FL
-33564,10096,Plant City,FL,124,Lakeland,FL
-33565,10096,Plant City,FL,124,Lakeland,FL
-33566,10096,Plant City,FL,124,Lakeland,FL
-33567,10096,Plant City,FL,124,Lakeland,FL
-33568,10013,Brandon,FL,141,Tampa,FL
-33569,10013,Brandon,FL,141,Tampa,FL
-33570,10118,Sun City Center,FL,141,Tampa,FL
-33571,10118,Sun City Center,FL,141,Tampa,FL
-33572,10118,Sun City Center,FL,141,Tampa,FL
-33573,10118,Sun City Center,FL,141,Tampa,FL
-33574,10026,Dade City,FL,141,Tampa,FL
-33575,10118,Sun City Center,FL,141,Tampa,FL
-33576,10026,Dade City,FL,141,Tampa,FL
-33578,10013,Brandon,FL,141,Tampa,FL
-33579,10013,Brandon,FL,141,Tampa,FL
-33583,10013,Brandon,FL,141,Tampa,FL
-33584,10013,Brandon,FL,141,Tampa,FL
-33585,10063,Leesburg,FL,130,Orlando,FL
-33586,10118,Sun City Center,FL,141,Tampa,FL
-33587,10013,Brandon,FL,141,Tampa,FL
-33592,10121,Tampa,FL,141,Tampa,FL
-33593,10026,Dade City,FL,141,Tampa,FL
-33594,10013,Brandon,FL,141,Tampa,FL
-33595,10013,Brandon,FL,141,Tampa,FL
-33596,10013,Brandon,FL,141,Tampa,FL
-33597,10063,Leesburg,FL,130,Orlando,FL
-33598,10118,Sun City Center,FL,141,Tampa,FL
-33601,10121,Tampa,FL,141,Tampa,FL
-33602,10121,Tampa,FL,141,Tampa,FL
-33603,10121,Tampa,FL,141,Tampa,FL
-33604,10121,Tampa,FL,141,Tampa,FL
-33605,10121,Tampa,FL,141,Tampa,FL
-33606,10121,Tampa,FL,141,Tampa,FL
-33607,10121,Tampa,FL,141,Tampa,FL
-33608,10121,Tampa,FL,141,Tampa,FL
-33609,10121,Tampa,FL,141,Tampa,FL
-33610,10121,Tampa,FL,141,Tampa,FL
-33611,10121,Tampa,FL,141,Tampa,FL
-33612,10121,Tampa,FL,141,Tampa,FL
-33613,10121,Tampa,FL,141,Tampa,FL
-33614,10121,Tampa,FL,141,Tampa,FL
-33615,10121,Tampa,FL,141,Tampa,FL
-33616,10121,Tampa,FL,141,Tampa,FL
-33617,10121,Tampa,FL,141,Tampa,FL
-33618,10121,Tampa,FL,141,Tampa,FL
-33619,10121,Tampa,FL,141,Tampa,FL
-33620,10121,Tampa,FL,141,Tampa,FL
-33621,10121,Tampa,FL,141,Tampa,FL
-33622,10121,Tampa,FL,141,Tampa,FL
-33623,10121,Tampa,FL,141,Tampa,FL
-33624,10121,Tampa,FL,141,Tampa,FL
-33625,10121,Tampa,FL,141,Tampa,FL
-33626,10121,Tampa,FL,141,Tampa,FL
-33629,10121,Tampa,FL,141,Tampa,FL
-33630,10121,Tampa,FL,141,Tampa,FL
-33631,10121,Tampa,FL,141,Tampa,FL
-33633,10121,Tampa,FL,141,Tampa,FL
-33634,10121,Tampa,FL,141,Tampa,FL
-33635,10121,Tampa,FL,141,Tampa,FL
-33637,10121,Tampa,FL,141,Tampa,FL
-33646,10121,Tampa,FL,141,Tampa,FL
-33647,10121,Tampa,FL,141,Tampa,FL
-33650,10121,Tampa,FL,141,Tampa,FL
-33655,10121,Tampa,FL,141,Tampa,FL
-33660,10121,Tampa,FL,141,Tampa,FL
-33661,10121,Tampa,FL,141,Tampa,FL
-33662,10121,Tampa,FL,141,Tampa,FL
-33663,10121,Tampa,FL,141,Tampa,FL
-33664,10121,Tampa,FL,141,Tampa,FL
-33672,10121,Tampa,FL,141,Tampa,FL
-33673,10121,Tampa,FL,141,Tampa,FL
-33674,10121,Tampa,FL,141,Tampa,FL
-33675,10121,Tampa,FL,141,Tampa,FL
-33677,10121,Tampa,FL,141,Tampa,FL
-33679,10121,Tampa,FL,141,Tampa,FL
-33680,10121,Tampa,FL,141,Tampa,FL
-33681,10121,Tampa,FL,141,Tampa,FL
-33682,10121,Tampa,FL,141,Tampa,FL
-33684,10121,Tampa,FL,141,Tampa,FL
-33685,10121,Tampa,FL,141,Tampa,FL
-33686,10121,Tampa,FL,141,Tampa,FL
-33687,10121,Tampa,FL,141,Tampa,FL
-33688,10121,Tampa,FL,141,Tampa,FL
-33689,10121,Tampa,FL,141,Tampa,FL
-33694,10121,Tampa,FL,141,Tampa,FL
-33701,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33702,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33703,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33704,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33705,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33706,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33707,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33708,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33709,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33710,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33711,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33712,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33713,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33714,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33715,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33716,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33729,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33730,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33731,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33732,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33733,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33734,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33736,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33738,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33740,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33741,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33742,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33743,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33744,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33747,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33755,10018,Clearwater,FL,116,Clearwater,FL
-33756,10018,Clearwater,FL,116,Clearwater,FL
-33757,10018,Clearwater,FL,116,Clearwater,FL
-33758,10018,Clearwater,FL,116,Clearwater,FL
-33759,10018,Clearwater,FL,116,Clearwater,FL
-33760,10062,Largo,FL,116,Clearwater,FL
-33761,10105,Safety Harbor,FL,116,Clearwater,FL
-33762,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33763,10018,Clearwater,FL,116,Clearwater,FL
-33764,10018,Clearwater,FL,116,Clearwater,FL
-33765,10018,Clearwater,FL,116,Clearwater,FL
-33766,10018,Clearwater,FL,116,Clearwater,FL
-33767,10018,Clearwater,FL,116,Clearwater,FL
-33769,10018,Clearwater,FL,116,Clearwater,FL
-33770,10062,Largo,FL,116,Clearwater,FL
-33771,10062,Largo,FL,116,Clearwater,FL
-33772,10062,Largo,FL,116,Clearwater,FL
-33773,10062,Largo,FL,116,Clearwater,FL
-33774,10062,Largo,FL,116,Clearwater,FL
-33775,10062,Largo,FL,116,Clearwater,FL
-33776,10062,Largo,FL,116,Clearwater,FL
-33777,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33778,10062,Largo,FL,116,Clearwater,FL
-33779,10062,Largo,FL,116,Clearwater,FL
-33780,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33781,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33782,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33784,10115,St. Petersburg,FL,139,St. Petersburg,FL
-33785,10062,Largo,FL,116,Clearwater,FL
-33786,10062,Largo,FL,116,Clearwater,FL
-33801,10061,Lakeland,FL,124,Lakeland,FL
-33802,10061,Lakeland,FL,124,Lakeland,FL
-33803,10061,Lakeland,FL,124,Lakeland,FL
-33804,10061,Lakeland,FL,124,Lakeland,FL
-33805,10061,Lakeland,FL,124,Lakeland,FL
-33806,10061,Lakeland,FL,124,Lakeland,FL
-33807,10061,Lakeland,FL,124,Lakeland,FL
-33809,10061,Lakeland,FL,124,Lakeland,FL
-33810,10061,Lakeland,FL,124,Lakeland,FL
-33811,10061,Lakeland,FL,124,Lakeland,FL
-33812,10061,Lakeland,FL,124,Lakeland,FL
-33813,10061,Lakeland,FL,124,Lakeland,FL
-33815,10061,Lakeland,FL,124,Lakeland,FL
-33820,10006,Bartow,FL,124,Lakeland,FL
-33823,10131,Winter Haven,FL,130,Orlando,FL
-33825,10005,Avon Park,FL,130,Orlando,FL
-33826,10005,Avon Park,FL,130,Orlando,FL
-33827,10059,Lake Wales,FL,130,Orlando,FL
-33830,10006,Bartow,FL,124,Lakeland,FL
-33831,10006,Bartow,FL,124,Lakeland,FL
-33834,10061,Lakeland,FL,124,Lakeland,FL
-33835,10061,Lakeland,FL,124,Lakeland,FL
-33836,10131,Winter Haven,FL,130,Orlando,FL
-33837,10131,Winter Haven,FL,130,Orlando,FL
-33838,10131,Winter Haven,FL,130,Orlando,FL
-33839,10131,Winter Haven,FL,130,Orlando,FL
-33840,10061,Lakeland,FL,124,Lakeland,FL
-33841,10006,Bartow,FL,124,Lakeland,FL
-33843,10005,Avon Park,FL,130,Orlando,FL
-33844,10131,Winter Haven,FL,130,Orlando,FL
-33845,10131,Winter Haven,FL,130,Orlando,FL
-33846,10061,Lakeland,FL,124,Lakeland,FL
-33847,10006,Bartow,FL,124,Lakeland,FL
-33848,10056,Kissimmee,FL,130,Orlando,FL
-33849,10061,Lakeland,FL,124,Lakeland,FL
-33850,10131,Winter Haven,FL,130,Orlando,FL
-33851,10131,Winter Haven,FL,130,Orlando,FL
-33852,10005,Avon Park,FL,130,Orlando,FL
-33853,10059,Lake Wales,FL,130,Orlando,FL
-33854,10059,Lake Wales,FL,130,Orlando,FL
-33855,10059,Lake Wales,FL,130,Orlando,FL
-33856,10059,Lake Wales,FL,130,Orlando,FL
-33857,10109,Sebring,FL,130,Orlando,FL
-33858,10131,Winter Haven,FL,130,Orlando,FL
-33859,10059,Lake Wales,FL,130,Orlando,FL
-33860,10061,Lakeland,FL,124,Lakeland,FL
-33862,10005,Avon Park,FL,130,Orlando,FL
-33863,10061,Lakeland,FL,124,Lakeland,FL
-33865,10002,Arcadia,FL,137,Sarasota,FL
-33867,10005,Avon Park,FL,130,Orlando,FL
-33868,10061,Lakeland,FL,124,Lakeland,FL
-33870,10109,Sebring,FL,130,Orlando,FL
-33871,10109,Sebring,FL,130,Orlando,FL
-33872,10109,Sebring,FL,130,Orlando,FL
-33873,10005,Avon Park,FL,130,Orlando,FL
-33875,10109,Sebring,FL,130,Orlando,FL
-33876,10109,Sebring,FL,130,Orlando,FL
-33877,10059,Lake Wales,FL,130,Orlando,FL
-33880,10131,Winter Haven,FL,130,Orlando,FL
-33881,10131,Winter Haven,FL,130,Orlando,FL
-33882,10131,Winter Haven,FL,130,Orlando,FL
-33883,10131,Winter Haven,FL,130,Orlando,FL
-33884,10131,Winter Haven,FL,130,Orlando,FL
-33885,10131,Winter Haven,FL,130,Orlando,FL
-33888,10131,Winter Haven,FL,130,Orlando,FL
-33890,10005,Avon Park,FL,130,Orlando,FL
-33896,10131,Winter Haven,FL,130,Orlando,FL
-33897,10131,Winter Haven,FL,130,Orlando,FL
-33898,10059,Lake Wales,FL,130,Orlando,FL
-33901,10037,Fort Myers,FL,119,Fort Myers,FL
-33902,10037,Fort Myers,FL,119,Fort Myers,FL
-33903,10037,Fort Myers,FL,119,Fort Myers,FL
-33904,10016,Cape Coral,FL,119,Fort Myers,FL
-33905,10037,Fort Myers,FL,119,Fort Myers,FL
-33906,10037,Fort Myers,FL,119,Fort Myers,FL
-33907,10037,Fort Myers,FL,119,Fort Myers,FL
-33908,10037,Fort Myers,FL,119,Fort Myers,FL
-33909,10016,Cape Coral,FL,119,Fort Myers,FL
-33910,10016,Cape Coral,FL,119,Fort Myers,FL
-33911,10037,Fort Myers,FL,119,Fort Myers,FL
-33912,10037,Fort Myers,FL,119,Fort Myers,FL
-33913,10037,Fort Myers,FL,119,Fort Myers,FL
-33914,10016,Cape Coral,FL,119,Fort Myers,FL
-33915,10016,Cape Coral,FL,119,Fort Myers,FL
-33916,10037,Fort Myers,FL,119,Fort Myers,FL
-33917,10037,Fort Myers,FL,119,Fort Myers,FL
-33918,10037,Fort Myers,FL,119,Fort Myers,FL
-33919,10037,Fort Myers,FL,119,Fort Myers,FL
-33920,10037,Fort Myers,FL,119,Fort Myers,FL
-33921,10033,Englewood,FL,137,Sarasota,FL
-33922,10016,Cape Coral,FL,119,Fort Myers,FL
-33924,10037,Fort Myers,FL,119,Fort Myers,FL
-33927,10099,Port Charlotte,FL,119,Fort Myers,FL
-33928,10037,Fort Myers,FL,119,Fort Myers,FL
-33929,10037,Fort Myers,FL,119,Fort Myers,FL
-33930,10037,Fort Myers,FL,119,Fort Myers,FL
-33931,10037,Fort Myers,FL,119,Fort Myers,FL
-33932,10037,Fort Myers,FL,119,Fort Myers,FL
-33935,10037,Fort Myers,FL,119,Fort Myers,FL
-33936,10064,Lehigh Acres,FL,119,Fort Myers,FL
-33938,10099,Port Charlotte,FL,119,Fort Myers,FL
-33944,10037,Fort Myers,FL,119,Fort Myers,FL
-33945,10016,Cape Coral,FL,119,Fort Myers,FL
-33946,10033,Englewood,FL,137,Sarasota,FL
-33947,10033,Englewood,FL,137,Sarasota,FL
-33948,10099,Port Charlotte,FL,119,Fort Myers,FL
-33949,10099,Port Charlotte,FL,119,Fort Myers,FL
-33950,10102,Punta Gorda,FL,119,Fort Myers,FL
-33951,10102,Punta Gorda,FL,119,Fort Myers,FL
-33952,10099,Port Charlotte,FL,119,Fort Myers,FL
-33953,10099,Port Charlotte,FL,119,Fort Myers,FL
-33954,10099,Port Charlotte,FL,119,Fort Myers,FL
-33955,10102,Punta Gorda,FL,119,Fort Myers,FL
-33956,10016,Cape Coral,FL,119,Fort Myers,FL
-33957,10037,Fort Myers,FL,119,Fort Myers,FL
-33960,10005,Avon Park,FL,130,Orlando,FL
-33965,10037,Fort Myers,FL,119,Fort Myers,FL
-33966,10037,Fort Myers,FL,119,Fort Myers,FL
-33967,10037,Fort Myers,FL,119,Fort Myers,FL
-33970,10064,Lehigh Acres,FL,119,Fort Myers,FL
-33971,10064,Lehigh Acres,FL,119,Fort Myers,FL
-33972,10064,Lehigh Acres,FL,119,Fort Myers,FL
-33973,10064,Lehigh Acres,FL,119,Fort Myers,FL
-33974,10064,Lehigh Acres,FL,119,Fort Myers,FL
-33975,10037,Fort Myers,FL,119,Fort Myers,FL
-33976,10064,Lehigh Acres,FL,119,Fort Myers,FL
-33980,10099,Port Charlotte,FL,119,Fort Myers,FL
-33981,10099,Port Charlotte,FL,119,Fort Myers,FL
-33982,10102,Punta Gorda,FL,119,Fort Myers,FL
-33983,10099,Port Charlotte,FL,119,Fort Myers,FL
-33990,10016,Cape Coral,FL,119,Fort Myers,FL
-33991,10016,Cape Coral,FL,119,Fort Myers,FL
-33993,10016,Cape Coral,FL,119,Fort Myers,FL
-33994,10037,Fort Myers,FL,119,Fort Myers,FL
-34101,10077,Naples,FL,119,Fort Myers,FL
-34102,10077,Naples,FL,119,Fort Myers,FL
-34103,10077,Naples,FL,119,Fort Myers,FL
-34104,10077,Naples,FL,119,Fort Myers,FL
-34105,10077,Naples,FL,119,Fort Myers,FL
-34106,10077,Naples,FL,119,Fort Myers,FL
-34107,10077,Naples,FL,119,Fort Myers,FL
-34108,10077,Naples,FL,119,Fort Myers,FL
-34109,10077,Naples,FL,119,Fort Myers,FL
-34110,10077,Naples,FL,119,Fort Myers,FL
-34112,10077,Naples,FL,119,Fort Myers,FL
-34113,10077,Naples,FL,119,Fort Myers,FL
-34114,10077,Naples,FL,119,Fort Myers,FL
-34116,10077,Naples,FL,119,Fort Myers,FL
-34117,10077,Naples,FL,119,Fort Myers,FL
-34119,10077,Naples,FL,119,Fort Myers,FL
-34120,10077,Naples,FL,119,Fort Myers,FL
-34133,10077,Naples,FL,119,Fort Myers,FL
-34134,10077,Naples,FL,119,Fort Myers,FL
-34135,10077,Naples,FL,119,Fort Myers,FL
-34136,10077,Naples,FL,119,Fort Myers,FL
-34137,10077,Naples,FL,119,Fort Myers,FL
-34138,10077,Naples,FL,119,Fort Myers,FL
-34139,10077,Naples,FL,119,Fort Myers,FL
-34140,10077,Naples,FL,119,Fort Myers,FL
-34141,10077,Naples,FL,119,Fort Myers,FL
-34142,10077,Naples,FL,119,Fort Myers,FL
-34143,10077,Naples,FL,119,Fort Myers,FL
-34145,10077,Naples,FL,119,Fort Myers,FL
-34146,10077,Naples,FL,119,Fort Myers,FL
-34201,10107,Sarasota,FL,137,Sarasota,FL
-34202,10012,Bradenton,FL,115,Bradenton,FL
-34203,10012,Bradenton,FL,115,Bradenton,FL
-34204,10012,Bradenton,FL,115,Bradenton,FL
-34205,10012,Bradenton,FL,115,Bradenton,FL
-34206,10012,Bradenton,FL,115,Bradenton,FL
-34207,10012,Bradenton,FL,115,Bradenton,FL
-34208,10012,Bradenton,FL,115,Bradenton,FL
-34209,10012,Bradenton,FL,115,Bradenton,FL
-34210,10012,Bradenton,FL,115,Bradenton,FL
-34211,10012,Bradenton,FL,115,Bradenton,FL
-34212,10012,Bradenton,FL,115,Bradenton,FL
-34215,10012,Bradenton,FL,115,Bradenton,FL
-34216,10012,Bradenton,FL,115,Bradenton,FL
-34217,10012,Bradenton,FL,115,Bradenton,FL
-34218,10012,Bradenton,FL,115,Bradenton,FL
-34219,10012,Bradenton,FL,115,Bradenton,FL
-34220,10012,Bradenton,FL,115,Bradenton,FL
-34221,10012,Bradenton,FL,115,Bradenton,FL
-34222,10012,Bradenton,FL,115,Bradenton,FL
-34223,10033,Englewood,FL,137,Sarasota,FL
-34224,10033,Englewood,FL,137,Sarasota,FL
-34228,10107,Sarasota,FL,137,Sarasota,FL
-34229,10107,Sarasota,FL,137,Sarasota,FL
-34230,10107,Sarasota,FL,137,Sarasota,FL
-34231,10107,Sarasota,FL,137,Sarasota,FL
-34232,10107,Sarasota,FL,137,Sarasota,FL
-34233,10107,Sarasota,FL,137,Sarasota,FL
-34234,10107,Sarasota,FL,137,Sarasota,FL
-34235,10107,Sarasota,FL,137,Sarasota,FL
-34236,10107,Sarasota,FL,137,Sarasota,FL
-34237,10107,Sarasota,FL,137,Sarasota,FL
-34238,10107,Sarasota,FL,137,Sarasota,FL
-34239,10107,Sarasota,FL,137,Sarasota,FL
-34240,10107,Sarasota,FL,137,Sarasota,FL
-34241,10107,Sarasota,FL,137,Sarasota,FL
-34242,10107,Sarasota,FL,137,Sarasota,FL
-34243,10107,Sarasota,FL,137,Sarasota,FL
-34249,10107,Sarasota,FL,137,Sarasota,FL
-34250,10012,Bradenton,FL,115,Bradenton,FL
-34251,10012,Bradenton,FL,115,Bradenton,FL
-34260,10107,Sarasota,FL,137,Sarasota,FL
-34264,10012,Bradenton,FL,115,Bradenton,FL
-34265,10002,Arcadia,FL,137,Sarasota,FL
-34266,10002,Arcadia,FL,137,Sarasota,FL
-34267,10002,Arcadia,FL,137,Sarasota,FL
-34268,10002,Arcadia,FL,137,Sarasota,FL
-34269,10002,Arcadia,FL,137,Sarasota,FL
-34270,10107,Sarasota,FL,137,Sarasota,FL
-34272,10125,Venice,FL,137,Sarasota,FL
-34274,10125,Venice,FL,137,Sarasota,FL
-34275,10125,Venice,FL,137,Sarasota,FL
-34276,10107,Sarasota,FL,137,Sarasota,FL
-34277,10107,Sarasota,FL,137,Sarasota,FL
-34278,10107,Sarasota,FL,137,Sarasota,FL
-34280,10012,Bradenton,FL,115,Bradenton,FL
-34281,10012,Bradenton,FL,115,Bradenton,FL
-34282,10012,Bradenton,FL,115,Bradenton,FL
-34284,10125,Venice,FL,137,Sarasota,FL
-34285,10125,Venice,FL,137,Sarasota,FL
-34286,10099,Port Charlotte,FL,119,Fort Myers,FL
-34287,10099,Port Charlotte,FL,119,Fort Myers,FL
-34288,10099,Port Charlotte,FL,119,Fort Myers,FL
-34289,10099,Port Charlotte,FL,119,Fort Myers,FL
-34290,10099,Port Charlotte,FL,119,Fort Myers,FL
-34291,10099,Port Charlotte,FL,119,Fort Myers,FL
-34292,10125,Venice,FL,137,Sarasota,FL
-34293,10125,Venice,FL,137,Sarasota,FL
-34295,10033,Englewood,FL,137,Sarasota,FL
-34420,10083,Ocala,FL,129,Ocala,FL
-34421,10083,Ocala,FL,129,Ocala,FL
-34423,10025,Crystal River,FL,129,Ocala,FL
-34428,10025,Crystal River,FL,129,Ocala,FL
-34429,10025,Crystal River,FL,129,Ocala,FL
-34430,10083,Ocala,FL,129,Ocala,FL
-34431,10083,Ocala,FL,129,Ocala,FL
-34432,10083,Ocala,FL,129,Ocala,FL
-34433,10025,Crystal River,FL,129,Ocala,FL
-34434,10049,Inverness,FL,129,Ocala,FL
-34436,10049,Inverness,FL,129,Ocala,FL
-34441,10049,Inverness,FL,129,Ocala,FL
-34442,10049,Inverness,FL,129,Ocala,FL
-34445,10049,Inverness,FL,129,Ocala,FL
-34446,10025,Crystal River,FL,129,Ocala,FL
-34447,10025,Crystal River,FL,129,Ocala,FL
-34448,10025,Crystal River,FL,129,Ocala,FL
-34449,10025,Crystal River,FL,129,Ocala,FL
-34450,10049,Inverness,FL,129,Ocala,FL
-34451,10049,Inverness,FL,129,Ocala,FL
-34452,10049,Inverness,FL,129,Ocala,FL
-34453,10049,Inverness,FL,129,Ocala,FL
-34460,10025,Crystal River,FL,129,Ocala,FL
-34461,10025,Crystal River,FL,129,Ocala,FL
-34464,10025,Crystal River,FL,129,Ocala,FL
-34465,10025,Crystal River,FL,129,Ocala,FL
-34470,10083,Ocala,FL,129,Ocala,FL
-34471,10083,Ocala,FL,129,Ocala,FL
-34472,10083,Ocala,FL,129,Ocala,FL
-34473,10083,Ocala,FL,129,Ocala,FL
-34474,10083,Ocala,FL,129,Ocala,FL
-34475,10083,Ocala,FL,129,Ocala,FL
-34476,10083,Ocala,FL,129,Ocala,FL
-34477,10083,Ocala,FL,129,Ocala,FL
-34478,10083,Ocala,FL,129,Ocala,FL
-34479,10083,Ocala,FL,129,Ocala,FL
-34480,10083,Ocala,FL,129,Ocala,FL
-34481,10083,Ocala,FL,129,Ocala,FL
-34482,10083,Ocala,FL,129,Ocala,FL
-34483,10083,Ocala,FL,129,Ocala,FL
-34484,10083,Ocala,FL,129,Ocala,FL
-34487,10025,Crystal River,FL,129,Ocala,FL
-34488,10083,Ocala,FL,129,Ocala,FL
-34489,10083,Ocala,FL,129,Ocala,FL
-34491,10083,Ocala,FL,129,Ocala,FL
-34492,10083,Ocala,FL,129,Ocala,FL
-34498,10025,Crystal River,FL,129,Ocala,FL
-34601,10014,Brooksville,FL,122,Hudson,FL
-34602,10014,Brooksville,FL,122,Hudson,FL
-34603,10014,Brooksville,FL,122,Hudson,FL
-34604,10112,Spring Hill,FL,122,Hudson,FL
-34605,10014,Brooksville,FL,122,Hudson,FL
-34606,10112,Spring Hill,FL,122,Hudson,FL
-34607,10112,Spring Hill,FL,122,Hudson,FL
-34608,10112,Spring Hill,FL,122,Hudson,FL
-34609,10112,Spring Hill,FL,122,Hudson,FL
-34610,10112,Spring Hill,FL,122,Hudson,FL
-34611,10112,Spring Hill,FL,122,Hudson,FL
-34613,10112,Spring Hill,FL,122,Hudson,FL
-34614,10112,Spring Hill,FL,122,Hudson,FL
-34636,10014,Brooksville,FL,122,Hudson,FL
-34637,10121,Tampa,FL,141,Tampa,FL
-34638,10121,Tampa,FL,141,Tampa,FL
-34639,10121,Tampa,FL,141,Tampa,FL
-34652,10078,New Port Richey,FL,122,Hudson,FL
-34653,10078,New Port Richey,FL,122,Hudson,FL
-34654,10078,New Port Richey,FL,122,Hudson,FL
-34655,10078,New Port Richey,FL,122,Hudson,FL
-34656,10078,New Port Richey,FL,122,Hudson,FL
-34660,10018,Clearwater,FL,116,Clearwater,FL
-34661,10014,Brooksville,FL,122,Hudson,FL
-34667,10048,Hudson,FL,122,Hudson,FL
-34668,10078,New Port Richey,FL,122,Hudson,FL
-34669,10048,Hudson,FL,122,Hudson,FL
-34673,10078,New Port Richey,FL,122,Hudson,FL
-34674,10048,Hudson,FL,122,Hudson,FL
-34677,10105,Safety Harbor,FL,116,Clearwater,FL
-34679,10048,Hudson,FL,122,Hudson,FL
-34680,10078,New Port Richey,FL,122,Hudson,FL
-34681,10018,Clearwater,FL,116,Clearwater,FL
-34682,10018,Clearwater,FL,116,Clearwater,FL
-34683,10018,Clearwater,FL,116,Clearwater,FL
-34684,10105,Safety Harbor,FL,116,Clearwater,FL
-34685,10105,Safety Harbor,FL,116,Clearwater,FL
-34688,10122,Tarpon Springs,FL,116,Clearwater,FL
-34689,10122,Tarpon Springs,FL,116,Clearwater,FL
-34690,10078,New Port Richey,FL,122,Hudson,FL
-34691,10078,New Port Richey,FL,122,Hudson,FL
-34692,10078,New Port Richey,FL,122,Hudson,FL
-34695,10105,Safety Harbor,FL,116,Clearwater,FL
-34697,10032,Dunedin,FL,116,Clearwater,FL
-34698,10032,Dunedin,FL,116,Clearwater,FL
-34705,10034,Eustis,FL,130,Orlando,FL
-34711,10019,Clermont,FL,130,Orlando,FL
-34712,10019,Clermont,FL,130,Orlando,FL
-34713,10019,Clermont,FL,130,Orlando,FL
-34714,10019,Clermont,FL,130,Orlando,FL
-34715,10019,Clermont,FL,130,Orlando,FL
-34729,10135,Ocoee,FL,130,Orlando,FL
-34731,10063,Leesburg,FL,130,Orlando,FL
-34734,10135,Ocoee,FL,130,Orlando,FL
-34736,10019,Clermont,FL,130,Orlando,FL
-34737,10063,Leesburg,FL,130,Orlando,FL
-34739,10114,St. Cloud,FL,130,Orlando,FL
-34740,10135,Ocoee,FL,130,Orlando,FL
-34741,10056,Kissimmee,FL,130,Orlando,FL
-34742,10056,Kissimmee,FL,130,Orlando,FL
-34743,10056,Kissimmee,FL,130,Orlando,FL
-34744,10056,Kissimmee,FL,130,Orlando,FL
-34745,10056,Kissimmee,FL,130,Orlando,FL
-34746,10056,Kissimmee,FL,130,Orlando,FL
-34747,10056,Kissimmee,FL,130,Orlando,FL
-34748,10063,Leesburg,FL,130,Orlando,FL
-34749,10063,Leesburg,FL,130,Orlando,FL
-34753,10019,Clermont,FL,130,Orlando,FL
-34755,10019,Clermont,FL,130,Orlando,FL
-34756,10135,Ocoee,FL,130,Orlando,FL
-34758,10056,Kissimmee,FL,130,Orlando,FL
-34759,10056,Kissimmee,FL,130,Orlando,FL
-34760,10135,Ocoee,FL,130,Orlando,FL
-34761,10135,Ocoee,FL,130,Orlando,FL
-34762,10063,Leesburg,FL,130,Orlando,FL
-34769,10114,St. Cloud,FL,130,Orlando,FL
-34770,10114,St. Cloud,FL,130,Orlando,FL
-34771,10114,St. Cloud,FL,130,Orlando,FL
-34772,10114,St. Cloud,FL,130,Orlando,FL
-34773,10114,St. Cloud,FL,130,Orlando,FL
-34777,10135,Ocoee,FL,130,Orlando,FL
-34778,10135,Ocoee,FL,130,Orlando,FL
-34785,10063,Leesburg,FL,130,Orlando,FL
-34786,10086,Orlando,FL,130,Orlando,FL
-34787,10135,Ocoee,FL,130,Orlando,FL
-34788,10034,Eustis,FL,130,Orlando,FL
-34789,10034,Eustis,FL,130,Orlando,FL
-34797,10063,Leesburg,FL,130,Orlando,FL
-34945,10038,Fort Pierce,FL,130,Orlando,FL
-34946,10038,Fort Pierce,FL,130,Orlando,FL
-34947,10038,Fort Pierce,FL,130,Orlando,FL
-34948,10038,Fort Pierce,FL,130,Orlando,FL
-34949,10038,Fort Pierce,FL,130,Orlando,FL
-34950,10038,Fort Pierce,FL,130,Orlando,FL
-34951,10126,Vero Beach,FL,130,Orlando,FL
-34952,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34953,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34954,10038,Fort Pierce,FL,130,Orlando,FL
-34956,10117,Stuart,FL,118,Fort Lauderdale,FL
-34957,10117,Stuart,FL,118,Fort Lauderdale,FL
-34958,10117,Stuart,FL,118,Fort Lauderdale,FL
-34972,10084,Okeechobee,FL,130,Orlando,FL
-34973,10084,Okeechobee,FL,130,Orlando,FL
-34974,10084,Okeechobee,FL,130,Orlando,FL
-34979,10038,Fort Pierce,FL,130,Orlando,FL
-34981,10038,Fort Pierce,FL,130,Orlando,FL
-34982,10038,Fort Pierce,FL,130,Orlando,FL
-34983,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34984,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34985,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34986,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34987,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34988,10101,Port St. Lucie,FL,118,Fort Lauderdale,FL
-34990,10117,Stuart,FL,118,Fort Lauderdale,FL
-34991,10117,Stuart,FL,118,Fort Lauderdale,FL
-34992,10117,Stuart,FL,118,Fort Lauderdale,FL
-34994,10117,Stuart,FL,118,Fort Lauderdale,FL
-34995,10117,Stuart,FL,118,Fort Lauderdale,FL
-34996,10117,Stuart,FL,118,Fort Lauderdale,FL
-34997,10117,Stuart,FL,118,Fort Lauderdale,FL
-35004,1011,Birmingham,AL,1,Birmingham,AL
-35005,1011,Birmingham,AL,1,Birmingham,AL
-35006,1010,Bessemer,AL,1,Birmingham,AL
-35007,1001,Alabaster,AL,1,Birmingham,AL
-35010,1002,Alexander City,AL,1,Birmingham,AL
-35011,1002,Alexander City,AL,1,Birmingham,AL
-35013,1063,Oneonta,AL,1,Birmingham,AL
-35014,1078,Talladega,AL,1,Birmingham,AL
-35015,1011,Birmingham,AL,1,Birmingham,AL
-35016,1046,Guntersville,AL,5,Huntsville,AL
-35019,1022,Cullman,AL,1,Birmingham,AL
-35020,1010,Bessemer,AL,1,Birmingham,AL
-35021,1010,Bessemer,AL,1,Birmingham,AL
-35022,1010,Bessemer,AL,1,Birmingham,AL
-35023,1010,Bessemer,AL,1,Birmingham,AL
-35031,1011,Birmingham,AL,1,Birmingham,AL
-35032,1011,Birmingham,AL,1,Birmingham,AL
-35033,1022,Cullman,AL,1,Birmingham,AL
-35034,1019,Centreville,AL,9,Tuscaloosa,AL
-35035,1001,Alabaster,AL,1,Birmingham,AL
-35036,1011,Birmingham,AL,1,Birmingham,AL
-35038,1011,Birmingham,AL,1,Birmingham,AL
-35040,1001,Alabaster,AL,1,Birmingham,AL
-35042,1019,Centreville,AL,9,Tuscaloosa,AL
-35043,1011,Birmingham,AL,1,Birmingham,AL
-35044,1011,Birmingham,AL,1,Birmingham,AL
-35045,1001,Alabaster,AL,1,Birmingham,AL
-35046,1001,Alabaster,AL,1,Birmingham,AL
-35048,1011,Birmingham,AL,1,Birmingham,AL
-35049,1011,Birmingham,AL,1,Birmingham,AL
-35051,1001,Alabaster,AL,1,Birmingham,AL
-35052,1011,Birmingham,AL,1,Birmingham,AL
-35053,1022,Cullman,AL,1,Birmingham,AL
-35054,1011,Birmingham,AL,1,Birmingham,AL
-35055,1022,Cullman,AL,1,Birmingham,AL
-35056,1022,Cullman,AL,1,Birmingham,AL
-35057,1022,Cullman,AL,1,Birmingham,AL
-35058,1022,Cullman,AL,1,Birmingham,AL
-35060,1011,Birmingham,AL,1,Birmingham,AL
-35061,1011,Birmingham,AL,1,Birmingham,AL
-35062,1011,Birmingham,AL,1,Birmingham,AL
-35063,1011,Birmingham,AL,1,Birmingham,AL
-35064,1011,Birmingham,AL,1,Birmingham,AL
-35068,1011,Birmingham,AL,1,Birmingham,AL
-35070,1022,Cullman,AL,1,Birmingham,AL
-35071,1011,Birmingham,AL,1,Birmingham,AL
-35072,1077,Sylacauga,AL,1,Birmingham,AL
-35073,1011,Birmingham,AL,1,Birmingham,AL
-35074,1010,Bessemer,AL,1,Birmingham,AL
-35077,1022,Cullman,AL,1,Birmingham,AL
-35078,1011,Birmingham,AL,1,Birmingham,AL
-35079,1011,Birmingham,AL,1,Birmingham,AL
-35080,1011,Birmingham,AL,1,Birmingham,AL
-35082,1077,Sylacauga,AL,1,Birmingham,AL
-35083,1022,Cullman,AL,1,Birmingham,AL
-35085,1001,Alabaster,AL,1,Birmingham,AL
-35087,1046,Guntersville,AL,5,Huntsville,AL
-35089,1002,Alexander City,AL,1,Birmingham,AL
-35091,1011,Birmingham,AL,1,Birmingham,AL
-35094,1011,Birmingham,AL,1,Birmingham,AL
-35096,1011,Birmingham,AL,1,Birmingham,AL
-35097,1011,Birmingham,AL,1,Birmingham,AL
-35098,1022,Cullman,AL,1,Birmingham,AL
-35111,1010,Bessemer,AL,1,Birmingham,AL
-35112,1011,Birmingham,AL,1,Birmingham,AL
-35114,1001,Alabaster,AL,1,Birmingham,AL
-35115,1001,Alabaster,AL,1,Birmingham,AL
-35116,1011,Birmingham,AL,1,Birmingham,AL
-35117,1011,Birmingham,AL,1,Birmingham,AL
-35118,1011,Birmingham,AL,1,Birmingham,AL
-35119,1011,Birmingham,AL,1,Birmingham,AL
-35120,1011,Birmingham,AL,1,Birmingham,AL
-35121,1063,Oneonta,AL,1,Birmingham,AL
-35123,1011,Birmingham,AL,1,Birmingham,AL
-35124,1011,Birmingham,AL,1,Birmingham,AL
-35125,1011,Birmingham,AL,1,Birmingham,AL
-35126,1011,Birmingham,AL,1,Birmingham,AL
-35127,1011,Birmingham,AL,1,Birmingham,AL
-35128,1011,Birmingham,AL,1,Birmingham,AL
-35130,1011,Birmingham,AL,1,Birmingham,AL
-35131,1011,Birmingham,AL,1,Birmingham,AL
-35133,1011,Birmingham,AL,1,Birmingham,AL
-35135,1011,Birmingham,AL,1,Birmingham,AL
-35136,1077,Sylacauga,AL,1,Birmingham,AL
-35137,1001,Alabaster,AL,1,Birmingham,AL
-35139,1011,Birmingham,AL,1,Birmingham,AL
-35142,1010,Bessemer,AL,1,Birmingham,AL
-35143,1001,Alabaster,AL,1,Birmingham,AL
-35144,1001,Alabaster,AL,1,Birmingham,AL
-35146,1011,Birmingham,AL,1,Birmingham,AL
-35147,1011,Birmingham,AL,1,Birmingham,AL
-35148,1011,Birmingham,AL,1,Birmingham,AL
-35149,1077,Sylacauga,AL,1,Birmingham,AL
-35150,1077,Sylacauga,AL,1,Birmingham,AL
-35151,1077,Sylacauga,AL,1,Birmingham,AL
-35160,1078,Talladega,AL,1,Birmingham,AL
-35161,1078,Talladega,AL,1,Birmingham,AL
-35171,1001,Alabaster,AL,1,Birmingham,AL
-35172,1011,Birmingham,AL,1,Birmingham,AL
-35173,1011,Birmingham,AL,1,Birmingham,AL
-35175,1051,Huntsville,AL,5,Huntsville,AL
-35176,1011,Birmingham,AL,1,Birmingham,AL
-35178,1011,Birmingham,AL,1,Birmingham,AL
-35179,1022,Cullman,AL,1,Birmingham,AL
-35180,1011,Birmingham,AL,1,Birmingham,AL
-35181,1011,Birmingham,AL,1,Birmingham,AL
-35182,1011,Birmingham,AL,1,Birmingham,AL
-35183,1077,Sylacauga,AL,1,Birmingham,AL
-35184,1010,Bessemer,AL,1,Birmingham,AL
-35185,1011,Birmingham,AL,1,Birmingham,AL
-35186,1011,Birmingham,AL,1,Birmingham,AL
-35187,1001,Alabaster,AL,1,Birmingham,AL
-35188,1010,Bessemer,AL,1,Birmingham,AL
-35201,1011,Birmingham,AL,1,Birmingham,AL
-35202,1011,Birmingham,AL,1,Birmingham,AL
-35203,1011,Birmingham,AL,1,Birmingham,AL
-35204,1011,Birmingham,AL,1,Birmingham,AL
-35205,1011,Birmingham,AL,1,Birmingham,AL
-35206,1011,Birmingham,AL,1,Birmingham,AL
-35207,1011,Birmingham,AL,1,Birmingham,AL
-35208,1011,Birmingham,AL,1,Birmingham,AL
-35209,1011,Birmingham,AL,1,Birmingham,AL
-35210,1011,Birmingham,AL,1,Birmingham,AL
-35211,1011,Birmingham,AL,1,Birmingham,AL
-35212,1011,Birmingham,AL,1,Birmingham,AL
-35213,1011,Birmingham,AL,1,Birmingham,AL
-35214,1011,Birmingham,AL,1,Birmingham,AL
-35215,1011,Birmingham,AL,1,Birmingham,AL
-35216,1011,Birmingham,AL,1,Birmingham,AL
-35217,1011,Birmingham,AL,1,Birmingham,AL
-35218,1011,Birmingham,AL,1,Birmingham,AL
-35219,1011,Birmingham,AL,1,Birmingham,AL
-35220,1011,Birmingham,AL,1,Birmingham,AL
-35221,1011,Birmingham,AL,1,Birmingham,AL
-35222,1011,Birmingham,AL,1,Birmingham,AL
-35223,1011,Birmingham,AL,1,Birmingham,AL
-35224,1011,Birmingham,AL,1,Birmingham,AL
-35226,1011,Birmingham,AL,1,Birmingham,AL
-35228,1011,Birmingham,AL,1,Birmingham,AL
-35229,1011,Birmingham,AL,1,Birmingham,AL
-35231,1011,Birmingham,AL,1,Birmingham,AL
-35232,1011,Birmingham,AL,1,Birmingham,AL
-35233,1011,Birmingham,AL,1,Birmingham,AL
-35234,1011,Birmingham,AL,1,Birmingham,AL
-35235,1011,Birmingham,AL,1,Birmingham,AL
-35236,1011,Birmingham,AL,1,Birmingham,AL
-35237,1011,Birmingham,AL,1,Birmingham,AL
-35238,1011,Birmingham,AL,1,Birmingham,AL
-35242,1011,Birmingham,AL,1,Birmingham,AL
-35243,1011,Birmingham,AL,1,Birmingham,AL
-35244,1011,Birmingham,AL,1,Birmingham,AL
-35246,1011,Birmingham,AL,1,Birmingham,AL
-35249,1011,Birmingham,AL,1,Birmingham,AL
-35253,1011,Birmingham,AL,1,Birmingham,AL
-35254,1011,Birmingham,AL,1,Birmingham,AL
-35255,1011,Birmingham,AL,1,Birmingham,AL
-35259,1011,Birmingham,AL,1,Birmingham,AL
-35260,1011,Birmingham,AL,1,Birmingham,AL
-35261,1011,Birmingham,AL,1,Birmingham,AL
-35266,1011,Birmingham,AL,1,Birmingham,AL
-35270,1011,Birmingham,AL,1,Birmingham,AL
-35282,1011,Birmingham,AL,1,Birmingham,AL
-35283,1011,Birmingham,AL,1,Birmingham,AL
-35285,1011,Birmingham,AL,1,Birmingham,AL
-35287,1011,Birmingham,AL,1,Birmingham,AL
-35288,1011,Birmingham,AL,1,Birmingham,AL
-35290,1011,Birmingham,AL,1,Birmingham,AL
-35291,1011,Birmingham,AL,1,Birmingham,AL
-35292,1011,Birmingham,AL,1,Birmingham,AL
-35293,1011,Birmingham,AL,1,Birmingham,AL
-35294,1011,Birmingham,AL,1,Birmingham,AL
-35295,1011,Birmingham,AL,1,Birmingham,AL
-35296,1011,Birmingham,AL,1,Birmingham,AL
-35297,1011,Birmingham,AL,1,Birmingham,AL
-35298,1011,Birmingham,AL,1,Birmingham,AL
-35401,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35402,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35403,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35404,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35405,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35406,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35407,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35440,1010,Bessemer,AL,1,Birmingham,AL
-35441,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35442,1017,Carrollton,AL,9,Tuscaloosa,AL
-35443,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35444,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35446,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35447,1017,Carrollton,AL,9,Tuscaloosa,AL
-35448,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35449,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35452,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35453,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35456,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35457,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35458,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35459,25056,Meridian,MS,260,Meridian,MS
-35460,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35461,25021,Columbus,MS,262,Tupelo,MS
-35462,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35463,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35464,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35466,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35468,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35469,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35470,25056,Meridian,MS,260,Meridian,MS
-35471,1033,Fayette,AL,9,Tuscaloosa,AL
-35473,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35474,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35475,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35476,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35477,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35478,1010,Bessemer,AL,1,Birmingham,AL
-35480,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35481,1017,Carrollton,AL,9,Tuscaloosa,AL
-35482,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35486,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35487,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35490,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35491,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35501,1054,Jasper,AL,1,Birmingham,AL
-35502,1054,Jasper,AL,1,Birmingham,AL
-35503,1054,Jasper,AL,1,Birmingham,AL
-35504,1054,Jasper,AL,1,Birmingham,AL
-35540,1022,Cullman,AL,1,Birmingham,AL
-35541,1054,Jasper,AL,1,Birmingham,AL
-35542,1033,Fayette,AL,9,Tuscaloosa,AL
-35543,1047,Haleyville,AL,1,Birmingham,AL
-35544,1088,Winfield,AL,1,Birmingham,AL
-35545,1033,Fayette,AL,9,Tuscaloosa,AL
-35546,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-35548,1088,Winfield,AL,1,Birmingham,AL
-35549,1054,Jasper,AL,1,Birmingham,AL
-35550,1054,Jasper,AL,1,Birmingham,AL
-35551,1047,Haleyville,AL,1,Birmingham,AL
-35552,1048,Hamilton,AL,262,Tupelo,MS
-35553,1047,Haleyville,AL,1,Birmingham,AL
-35554,1088,Winfield,AL,1,Birmingham,AL
-35555,1033,Fayette,AL,9,Tuscaloosa,AL
-35559,1088,Winfield,AL,1,Birmingham,AL
-35560,1054,Jasper,AL,1,Birmingham,AL
-35563,1088,Winfield,AL,1,Birmingham,AL
-35564,1073,Russellville,AL,1,Birmingham,AL
-35565,1047,Haleyville,AL,1,Birmingham,AL
-35570,1048,Hamilton,AL,262,Tupelo,MS
-35571,1048,Hamilton,AL,262,Tupelo,MS
-35572,1022,Cullman,AL,1,Birmingham,AL
-35573,1054,Jasper,AL,1,Birmingham,AL
-35574,1033,Fayette,AL,9,Tuscaloosa,AL
-35575,1054,Jasper,AL,1,Birmingham,AL
-35576,25021,Columbus,MS,262,Tupelo,MS
-35577,1047,Haleyville,AL,1,Birmingham,AL
-35578,1054,Jasper,AL,1,Birmingham,AL
-35579,1054,Jasper,AL,1,Birmingham,AL
-35580,1054,Jasper,AL,1,Birmingham,AL
-35581,1073,Russellville,AL,1,Birmingham,AL
-35582,1071,Red Bay,AL,1,Birmingham,AL
-35584,1054,Jasper,AL,1,Birmingham,AL
-35585,1073,Russellville,AL,1,Birmingham,AL
-35586,1085,Vernon,AL,9,Tuscaloosa,AL
-35587,1054,Jasper,AL,1,Birmingham,AL
-35592,1085,Vernon,AL,9,Tuscaloosa,AL
-35593,1071,Red Bay,AL,1,Birmingham,AL
-35594,1088,Winfield,AL,1,Birmingham,AL
-35601,1024,Decatur,AL,5,Huntsville,AL
-35602,1024,Decatur,AL,5,Huntsville,AL
-35603,1024,Decatur,AL,5,Huntsville,AL
-35609,1024,Decatur,AL,5,Huntsville,AL
-35610,1036,Florence,AL,1,Birmingham,AL
-35611,1007,Athens,AL,5,Huntsville,AL
-35612,1007,Athens,AL,5,Huntsville,AL
-35613,1007,Athens,AL,5,Huntsville,AL
-35614,1007,Athens,AL,5,Huntsville,AL
-35615,1051,Huntsville,AL,5,Huntsville,AL
-35616,1061,Muscle Shoals/Sheffield,AL,1,Birmingham,AL
-35617,1036,Florence,AL,1,Birmingham,AL
-35618,1024,Decatur,AL,5,Huntsville,AL
-35619,1060,Moulton,AL,1,Birmingham,AL
-35620,1007,Athens,AL,5,Huntsville,AL
-35621,1022,Cullman,AL,1,Birmingham,AL
-35622,1049,Hartselle,AL,1,Birmingham,AL
-35630,1036,Florence,AL,1,Birmingham,AL
-35631,1036,Florence,AL,1,Birmingham,AL
-35632,1036,Florence,AL,1,Birmingham,AL
-35633,1036,Florence,AL,1,Birmingham,AL
-35634,1036,Florence,AL,1,Birmingham,AL
-35640,1049,Hartselle,AL,1,Birmingham,AL
-35643,1024,Decatur,AL,5,Huntsville,AL
-35645,1036,Florence,AL,1,Birmingham,AL
-35646,1061,Muscle Shoals/Sheffield,AL,1,Birmingham,AL
-35647,1007,Athens,AL,5,Huntsville,AL
-35648,1036,Florence,AL,1,Birmingham,AL
-35649,1051,Huntsville,AL,5,Huntsville,AL
-35650,1060,Moulton,AL,1,Birmingham,AL
-35651,1060,Moulton,AL,1,Birmingham,AL
-35652,1036,Florence,AL,1,Birmingham,AL
-35653,1073,Russellville,AL,1,Birmingham,AL
-35654,1073,Russellville,AL,1,Birmingham,AL
-35660,1061,Muscle Shoals/Sheffield,AL,1,Birmingham,AL
-35661,1061,Muscle Shoals/Sheffield,AL,1,Birmingham,AL
-35662,1061,Muscle Shoals/Sheffield,AL,1,Birmingham,AL
-35670,1024,Decatur,AL,5,Huntsville,AL
-35671,1007,Athens,AL,5,Huntsville,AL
-35672,1060,Moulton,AL,1,Birmingham,AL
-35673,1060,Moulton,AL,1,Birmingham,AL
-35674,1061,Muscle Shoals/Sheffield,AL,1,Birmingham,AL
-35677,1036,Florence,AL,1,Birmingham,AL
-35699,1024,Decatur,AL,5,Huntsville,AL
-35739,1051,Huntsville,AL,5,Huntsville,AL
-35740,1014,Bridgeport,AL,373,Chattanooga,TN
-35741,1051,Huntsville,AL,5,Huntsville,AL
-35742,1007,Athens,AL,5,Huntsville,AL
-35744,1074,Scottsboro,AL,5,Huntsville,AL
-35745,1051,Huntsville,AL,5,Huntsville,AL
-35746,1074,Scottsboro,AL,5,Huntsville,AL
-35747,1051,Huntsville,AL,5,Huntsville,AL
-35748,1051,Huntsville,AL,5,Huntsville,AL
-35749,1051,Huntsville,AL,5,Huntsville,AL
-35750,1051,Huntsville,AL,5,Huntsville,AL
-35751,1051,Huntsville,AL,5,Huntsville,AL
-35752,1074,Scottsboro,AL,5,Huntsville,AL
-35754,1051,Huntsville,AL,5,Huntsville,AL
-35755,1051,Huntsville,AL,5,Huntsville,AL
-35756,1051,Huntsville,AL,5,Huntsville,AL
-35757,1051,Huntsville,AL,5,Huntsville,AL
-35758,1051,Huntsville,AL,5,Huntsville,AL
-35759,1051,Huntsville,AL,5,Huntsville,AL
-35760,1051,Huntsville,AL,5,Huntsville,AL
-35761,1051,Huntsville,AL,5,Huntsville,AL
-35762,1051,Huntsville,AL,5,Huntsville,AL
-35763,1051,Huntsville,AL,5,Huntsville,AL
-35764,1051,Huntsville,AL,5,Huntsville,AL
-35765,1074,Scottsboro,AL,5,Huntsville,AL
-35766,1051,Huntsville,AL,5,Huntsville,AL
-35767,1051,Huntsville,AL,5,Huntsville,AL
-35768,1074,Scottsboro,AL,5,Huntsville,AL
-35769,1074,Scottsboro,AL,5,Huntsville,AL
-35771,1074,Scottsboro,AL,5,Huntsville,AL
-35772,1014,Bridgeport,AL,373,Chattanooga,TN
-35773,1051,Huntsville,AL,5,Huntsville,AL
-35774,1051,Huntsville,AL,5,Huntsville,AL
-35775,1051,Huntsville,AL,5,Huntsville,AL
-35776,1051,Huntsville,AL,5,Huntsville,AL
-35801,1051,Huntsville,AL,5,Huntsville,AL
-35802,1051,Huntsville,AL,5,Huntsville,AL
-35803,1051,Huntsville,AL,5,Huntsville,AL
-35804,1051,Huntsville,AL,5,Huntsville,AL
-35805,1051,Huntsville,AL,5,Huntsville,AL
-35806,1051,Huntsville,AL,5,Huntsville,AL
-35807,1051,Huntsville,AL,5,Huntsville,AL
-35808,1051,Huntsville,AL,5,Huntsville,AL
-35809,1051,Huntsville,AL,5,Huntsville,AL
-35810,1051,Huntsville,AL,5,Huntsville,AL
-35811,1051,Huntsville,AL,5,Huntsville,AL
-35812,1051,Huntsville,AL,5,Huntsville,AL
-35813,1051,Huntsville,AL,5,Huntsville,AL
-35814,1051,Huntsville,AL,5,Huntsville,AL
-35815,1051,Huntsville,AL,5,Huntsville,AL
-35816,1051,Huntsville,AL,5,Huntsville,AL
-35824,1051,Huntsville,AL,5,Huntsville,AL
-35893,1051,Huntsville,AL,5,Huntsville,AL
-35894,1051,Huntsville,AL,5,Huntsville,AL
-35895,1051,Huntsville,AL,5,Huntsville,AL
-35896,1051,Huntsville,AL,5,Huntsville,AL
-35897,1051,Huntsville,AL,5,Huntsville,AL
-35898,1051,Huntsville,AL,5,Huntsville,AL
-35899,1051,Huntsville,AL,5,Huntsville,AL
-35901,1039,Gadsden,AL,1,Birmingham,AL
-35902,1039,Gadsden,AL,1,Birmingham,AL
-35903,1039,Gadsden,AL,1,Birmingham,AL
-35904,1039,Gadsden,AL,1,Birmingham,AL
-35905,1039,Gadsden,AL,1,Birmingham,AL
-35906,1039,Gadsden,AL,1,Birmingham,AL
-35907,1039,Gadsden,AL,1,Birmingham,AL
-35950,1012,Boaz,AL,1,Birmingham,AL
-35951,1012,Boaz,AL,1,Birmingham,AL
-35952,1063,Oneonta,AL,1,Birmingham,AL
-35953,1011,Birmingham,AL,1,Birmingham,AL
-35954,1039,Gadsden,AL,1,Birmingham,AL
-35956,1012,Boaz,AL,1,Birmingham,AL
-35957,1012,Boaz,AL,1,Birmingham,AL
-35958,44009,Chattanooga,TN,373,Chattanooga,TN
-35959,1018,Centre,AL,148,Rome,GA
-35960,1018,Centre,AL,148,Rome,GA
-35961,1039,Gadsden,AL,1,Birmingham,AL
-35962,1012,Boaz,AL,1,Birmingham,AL
-35963,1012,Boaz,AL,1,Birmingham,AL
-35964,1012,Boaz,AL,1,Birmingham,AL
-35966,44009,Chattanooga,TN,373,Chattanooga,TN
-35967,1038,Fort Payne,AL,1,Birmingham,AL
-35968,1038,Fort Payne,AL,1,Birmingham,AL
-35971,1038,Fort Payne,AL,1,Birmingham,AL
-35972,1063,Oneonta,AL,1,Birmingham,AL
-35973,1018,Centre,AL,148,Rome,GA
-35974,1012,Boaz,AL,1,Birmingham,AL
-35975,1038,Fort Payne,AL,1,Birmingham,AL
-35976,1046,Guntersville,AL,5,Huntsville,AL
-35978,1038,Fort Payne,AL,1,Birmingham,AL
-35979,44009,Chattanooga,TN,373,Chattanooga,TN
-35980,1012,Boaz,AL,1,Birmingham,AL
-35981,44009,Chattanooga,TN,373,Chattanooga,TN
-35983,1018,Centre,AL,148,Rome,GA
-35984,1038,Fort Payne,AL,1,Birmingham,AL
-35986,1038,Fort Payne,AL,1,Birmingham,AL
-35987,1039,Gadsden,AL,1,Birmingham,AL
-35988,1038,Fort Payne,AL,1,Birmingham,AL
-35989,1038,Fort Payne,AL,1,Birmingham,AL
-35990,1063,Oneonta,AL,1,Birmingham,AL
-36003,1059,Montgomery,AL,7,Montgomery,AL
-36005,1081,Troy,AL,7,Montgomery,AL
-36006,1001,Alabaster,AL,1,Birmingham,AL
-36008,1070,Prattville,AL,7,Montgomery,AL
-36009,1056,Luverne,AL,7,Montgomery,AL
-36010,1081,Troy,AL,7,Montgomery,AL
-36013,1059,Montgomery,AL,7,Montgomery,AL
-36015,1044,Greenville,AL,7,Montgomery,AL
-36016,1026,Dothan,AL,2,Dothan,AL
-36017,1026,Dothan,AL,2,Dothan,AL
-36020,1059,Montgomery,AL,7,Montgomery,AL
-36022,1059,Montgomery,AL,7,Montgomery,AL
-36023,1079,Tallassee,AL,7,Montgomery,AL
-36024,1059,Montgomery,AL,7,Montgomery,AL
-36025,1059,Montgomery,AL,7,Montgomery,AL
-36026,1059,Montgomery,AL,7,Montgomery,AL
-36027,1029,Eufaula,AL,2,Dothan,AL
-36028,1003,Andalusia,AL,134,Pensacola,FL
-36029,1059,Montgomery,AL,7,Montgomery,AL
-36030,1044,Greenville,AL,7,Montgomery,AL
-36031,1083,Union Springs,AL,7,Montgomery,AL
-36032,1059,Montgomery,AL,7,Montgomery,AL
-36033,1044,Greenville,AL,7,Montgomery,AL
-36034,1027,Elba,AL,2,Dothan,AL
-36035,1081,Troy,AL,7,Montgomery,AL
-36036,1059,Montgomery,AL,7,Montgomery,AL
-36037,1044,Greenville,AL,7,Montgomery,AL
-36038,1003,Andalusia,AL,134,Pensacola,FL
-36039,1059,Montgomery,AL,7,Montgomery,AL
-36040,1059,Montgomery,AL,7,Montgomery,AL
-36041,1059,Montgomery,AL,7,Montgomery,AL
-36042,1044,Greenville,AL,7,Montgomery,AL
-36043,1059,Montgomery,AL,7,Montgomery,AL
-36045,1079,Tallassee,AL,7,Montgomery,AL
-36046,1059,Montgomery,AL,7,Montgomery,AL
-36047,1059,Montgomery,AL,7,Montgomery,AL
-36048,1026,Dothan,AL,2,Dothan,AL
-36049,1056,Luverne,AL,7,Montgomery,AL
-36051,1059,Montgomery,AL,7,Montgomery,AL
-36052,1059,Montgomery,AL,7,Montgomery,AL
-36053,1083,Union Springs,AL,7,Montgomery,AL
-36054,1059,Montgomery,AL,7,Montgomery,AL
-36057,1059,Montgomery,AL,7,Montgomery,AL
-36061,1081,Troy,AL,7,Montgomery,AL
-36062,1059,Montgomery,AL,7,Montgomery,AL
-36064,1059,Montgomery,AL,7,Montgomery,AL
-36065,1059,Montgomery,AL,7,Montgomery,AL
-36066,1070,Prattville,AL,7,Montgomery,AL
-36067,1070,Prattville,AL,7,Montgomery,AL
-36068,1070,Prattville,AL,7,Montgomery,AL
-36069,1059,Montgomery,AL,7,Montgomery,AL
-36071,1056,Luverne,AL,7,Montgomery,AL
-36072,1029,Eufaula,AL,2,Dothan,AL
-36075,1059,Montgomery,AL,7,Montgomery,AL
-36078,1079,Tallassee,AL,7,Montgomery,AL
-36079,1081,Troy,AL,7,Montgomery,AL
-36080,1059,Montgomery,AL,7,Montgomery,AL
-36081,1081,Troy,AL,7,Montgomery,AL
-36082,1081,Troy,AL,7,Montgomery,AL
-36083,1064,Opelika,AL,1,Birmingham,AL
-36087,1064,Opelika,AL,1,Birmingham,AL
-36088,1064,Opelika,AL,1,Birmingham,AL
-36089,1083,Union Springs,AL,7,Montgomery,AL
-36091,1059,Montgomery,AL,7,Montgomery,AL
-36092,1059,Montgomery,AL,7,Montgomery,AL
-36093,1059,Montgomery,AL,7,Montgomery,AL
-36101,1059,Montgomery,AL,7,Montgomery,AL
-36102,1059,Montgomery,AL,7,Montgomery,AL
-36103,1059,Montgomery,AL,7,Montgomery,AL
-36104,1059,Montgomery,AL,7,Montgomery,AL
-36105,1059,Montgomery,AL,7,Montgomery,AL
-36106,1059,Montgomery,AL,7,Montgomery,AL
-36107,1059,Montgomery,AL,7,Montgomery,AL
-36108,1059,Montgomery,AL,7,Montgomery,AL
-36109,1059,Montgomery,AL,7,Montgomery,AL
-36110,1059,Montgomery,AL,7,Montgomery,AL
-36111,1059,Montgomery,AL,7,Montgomery,AL
-36112,1059,Montgomery,AL,7,Montgomery,AL
-36113,1059,Montgomery,AL,7,Montgomery,AL
-36114,1059,Montgomery,AL,7,Montgomery,AL
-36115,1059,Montgomery,AL,7,Montgomery,AL
-36116,1059,Montgomery,AL,7,Montgomery,AL
-36117,1059,Montgomery,AL,7,Montgomery,AL
-36118,1059,Montgomery,AL,7,Montgomery,AL
-36119,1059,Montgomery,AL,7,Montgomery,AL
-36120,1059,Montgomery,AL,7,Montgomery,AL
-36121,1059,Montgomery,AL,7,Montgomery,AL
-36123,1059,Montgomery,AL,7,Montgomery,AL
-36124,1059,Montgomery,AL,7,Montgomery,AL
-36125,1059,Montgomery,AL,7,Montgomery,AL
-36130,1059,Montgomery,AL,7,Montgomery,AL
-36131,1059,Montgomery,AL,7,Montgomery,AL
-36132,1059,Montgomery,AL,7,Montgomery,AL
-36135,1059,Montgomery,AL,7,Montgomery,AL
-36140,1059,Montgomery,AL,7,Montgomery,AL
-36141,1059,Montgomery,AL,7,Montgomery,AL
-36142,1059,Montgomery,AL,7,Montgomery,AL
-36177,1059,Montgomery,AL,7,Montgomery,AL
-36191,1059,Montgomery,AL,7,Montgomery,AL
-36201,1004,Anniston,AL,1,Birmingham,AL
-36202,1004,Anniston,AL,1,Birmingham,AL
-36203,1004,Anniston,AL,1,Birmingham,AL
-36204,1004,Anniston,AL,1,Birmingham,AL
-36205,1004,Anniston,AL,1,Birmingham,AL
-36206,1004,Anniston,AL,1,Birmingham,AL
-36207,1004,Anniston,AL,1,Birmingham,AL
-36250,1004,Anniston,AL,1,Birmingham,AL
-36251,1006,Ashland,AL,1,Birmingham,AL
-36253,1004,Anniston,AL,1,Birmingham,AL
-36254,1053,Jacksonville,AL,1,Birmingham,AL
-36255,1006,Ashland,AL,1,Birmingham,AL
-36256,1064,Opelika,AL,1,Birmingham,AL
-36257,1004,Anniston,AL,1,Birmingham,AL
-36258,1004,Anniston,AL,1,Birmingham,AL
-36260,1078,Talladega,AL,1,Birmingham,AL
-36261,1004,Anniston,AL,1,Birmingham,AL
-36262,1004,Anniston,AL,1,Birmingham,AL
-36263,11024,Carrollton,GA,144,Atlanta,GA
-36264,1004,Anniston,AL,1,Birmingham,AL
-36265,1053,Jacksonville,AL,1,Birmingham,AL
-36266,1006,Ashland,AL,1,Birmingham,AL
-36267,1006,Ashland,AL,1,Birmingham,AL
-36268,1078,Talladega,AL,1,Birmingham,AL
-36269,11017,Bremen,GA,148,Rome,GA
-36271,1004,Anniston,AL,1,Birmingham,AL
-36272,1053,Jacksonville,AL,1,Birmingham,AL
-36273,11024,Carrollton,GA,144,Atlanta,GA
-36274,1072,Roanoke,AL,1,Birmingham,AL
-36275,1018,Centre,AL,148,Rome,GA
-36276,1072,Roanoke,AL,1,Birmingham,AL
-36277,1004,Anniston,AL,1,Birmingham,AL
-36278,1086,Wedowee,AL,1,Birmingham,AL
-36279,1039,Gadsden,AL,1,Birmingham,AL
-36280,1086,Wedowee,AL,1,Birmingham,AL
-36301,1026,Dothan,AL,2,Dothan,AL
-36302,1026,Dothan,AL,2,Dothan,AL
-36303,1026,Dothan,AL,2,Dothan,AL
-36304,1026,Dothan,AL,2,Dothan,AL
-36305,1026,Dothan,AL,2,Dothan,AL
-36310,1026,Dothan,AL,2,Dothan,AL
-36311,1066,Ozark,AL,2,Dothan,AL
-36312,1026,Dothan,AL,2,Dothan,AL
-36313,1026,Dothan,AL,2,Dothan,AL
-36314,1026,Dothan,AL,2,Dothan,AL
-36316,1026,Dothan,AL,2,Dothan,AL
-36317,1026,Dothan,AL,2,Dothan,AL
-36318,1028,Enterprise,AL,2,Dothan,AL
-36319,1026,Dothan,AL,2,Dothan,AL
-36320,1026,Dothan,AL,2,Dothan,AL
-36321,1026,Dothan,AL,2,Dothan,AL
-36322,1026,Dothan,AL,2,Dothan,AL
-36323,1027,Elba,AL,2,Dothan,AL
-36330,1028,Enterprise,AL,2,Dothan,AL
-36331,1028,Enterprise,AL,2,Dothan,AL
-36340,1040,Geneva,AL,2,Dothan,AL
-36343,1026,Dothan,AL,2,Dothan,AL
-36344,1026,Dothan,AL,2,Dothan,AL
-36345,1026,Dothan,AL,2,Dothan,AL
-36346,1028,Enterprise,AL,2,Dothan,AL
-36349,1026,Dothan,AL,2,Dothan,AL
-36350,1026,Dothan,AL,2,Dothan,AL
-36351,1028,Enterprise,AL,2,Dothan,AL
-36352,1026,Dothan,AL,2,Dothan,AL
-36353,1026,Dothan,AL,2,Dothan,AL
-36360,1066,Ozark,AL,2,Dothan,AL
-36361,1066,Ozark,AL,2,Dothan,AL
-36362,1026,Dothan,AL,2,Dothan,AL
-36370,1026,Dothan,AL,2,Dothan,AL
-36371,1026,Dothan,AL,2,Dothan,AL
-36373,1026,Dothan,AL,2,Dothan,AL
-36374,1066,Ozark,AL,2,Dothan,AL
-36375,1026,Dothan,AL,2,Dothan,AL
-36376,1026,Dothan,AL,2,Dothan,AL
-36401,1031,Evergreen,AL,7,Montgomery,AL
-36420,1003,Andalusia,AL,134,Pensacola,FL
-36421,1003,Andalusia,AL,134,Pensacola,FL
-36425,1058,Monroeville,AL,6,Mobile,AL
-36426,1013,Brewton,AL,134,Pensacola,FL
-36427,1013,Brewton,AL,134,Pensacola,FL
-36429,1031,Evergreen,AL,7,Montgomery,AL
-36432,1013,Brewton,AL,134,Pensacola,FL
-36435,1016,Camden,AL,1,Birmingham,AL
-36436,1045,Grove Hill,AL,6,Mobile,AL
-36439,1058,Monroeville,AL,6,Mobile,AL
-36441,1013,Brewton,AL,134,Pensacola,FL
-36442,1035,Florala,AL,134,Pensacola,FL
-36444,1058,Monroeville,AL,6,Mobile,AL
-36445,1058,Monroeville,AL,6,Mobile,AL
-36446,1045,Grove Hill,AL,6,Mobile,AL
-36449,1058,Monroeville,AL,6,Mobile,AL
-36451,1045,Grove Hill,AL,6,Mobile,AL
-36453,1065,Opp,AL,2,Dothan,AL
-36454,1013,Brewton,AL,134,Pensacola,FL
-36455,1035,Florala,AL,134,Pensacola,FL
-36456,1044,Greenville,AL,7,Montgomery,AL
-36457,1058,Monroeville,AL,6,Mobile,AL
-36458,1058,Monroeville,AL,6,Mobile,AL
-36460,1058,Monroeville,AL,6,Mobile,AL
-36461,1058,Monroeville,AL,6,Mobile,AL
-36467,1065,Opp,AL,2,Dothan,AL
-36470,1058,Monroeville,AL,6,Mobile,AL
-36471,1058,Monroeville,AL,6,Mobile,AL
-36473,1013,Brewton,AL,134,Pensacola,FL
-36474,1003,Andalusia,AL,134,Pensacola,FL
-36475,1058,Monroeville,AL,6,Mobile,AL
-36476,1003,Andalusia,AL,134,Pensacola,FL
-36477,1040,Geneva,AL,2,Dothan,AL
-36480,1058,Monroeville,AL,6,Mobile,AL
-36481,1058,Monroeville,AL,6,Mobile,AL
-36482,1045,Grove Hill,AL,6,Mobile,AL
-36483,1003,Andalusia,AL,134,Pensacola,FL
-36502,1008,Atmore,AL,134,Pensacola,FL
-36503,1008,Atmore,AL,134,Pensacola,FL
-36504,1008,Atmore,AL,134,Pensacola,FL
-36505,1057,Mobile,AL,6,Mobile,AL
-36507,1057,Mobile,AL,6,Mobile,AL
-36509,1057,Mobile,AL,6,Mobile,AL
-36511,1037,Foley,AL,6,Mobile,AL
-36512,1057,Mobile,AL,6,Mobile,AL
-36513,1057,Mobile,AL,6,Mobile,AL
-36518,1057,Mobile,AL,6,Mobile,AL
-36521,1057,Mobile,AL,6,Mobile,AL
-36522,1057,Mobile,AL,6,Mobile,AL
-36523,1057,Mobile,AL,6,Mobile,AL
-36524,1057,Mobile,AL,6,Mobile,AL
-36525,1057,Mobile,AL,6,Mobile,AL
-36526,1057,Mobile,AL,6,Mobile,AL
-36527,1057,Mobile,AL,6,Mobile,AL
-36528,1057,Mobile,AL,6,Mobile,AL
-36529,1057,Mobile,AL,6,Mobile,AL
-36530,1037,Foley,AL,6,Mobile,AL
-36532,1032,Fairhope,AL,6,Mobile,AL
-36533,1032,Fairhope,AL,6,Mobile,AL
-36535,1037,Foley,AL,6,Mobile,AL
-36536,1037,Foley,AL,6,Mobile,AL
-36538,1057,Mobile,AL,6,Mobile,AL
-36539,1057,Mobile,AL,6,Mobile,AL
-36540,1057,Mobile,AL,6,Mobile,AL
-36541,1057,Mobile,AL,6,Mobile,AL
-36542,1037,Foley,AL,6,Mobile,AL
-36543,1008,Atmore,AL,134,Pensacola,FL
-36544,1057,Mobile,AL,6,Mobile,AL
-36545,1057,Mobile,AL,6,Mobile,AL
-36547,1037,Foley,AL,6,Mobile,AL
-36548,1057,Mobile,AL,6,Mobile,AL
-36549,10093,Pensacola,FL,134,Pensacola,FL
-36550,1057,Mobile,AL,6,Mobile,AL
-36551,1057,Mobile,AL,6,Mobile,AL
-36553,1057,Mobile,AL,6,Mobile,AL
-36555,1037,Foley,AL,6,Mobile,AL
-36556,1057,Mobile,AL,6,Mobile,AL
-36558,1057,Mobile,AL,6,Mobile,AL
-36559,1057,Mobile,AL,6,Mobile,AL
-36560,1057,Mobile,AL,6,Mobile,AL
-36561,1037,Foley,AL,6,Mobile,AL
-36562,1057,Mobile,AL,6,Mobile,AL
-36564,1032,Fairhope,AL,6,Mobile,AL
-36567,1057,Mobile,AL,6,Mobile,AL
-36568,1057,Mobile,AL,6,Mobile,AL
-36569,1057,Mobile,AL,6,Mobile,AL
-36571,1057,Mobile,AL,6,Mobile,AL
-36572,1057,Mobile,AL,6,Mobile,AL
-36574,10093,Pensacola,FL,134,Pensacola,FL
-36575,1057,Mobile,AL,6,Mobile,AL
-36576,1032,Fairhope,AL,6,Mobile,AL
-36577,1057,Mobile,AL,6,Mobile,AL
-36578,1057,Mobile,AL,6,Mobile,AL
-36579,1057,Mobile,AL,6,Mobile,AL
-36580,1037,Foley,AL,6,Mobile,AL
-36581,1057,Mobile,AL,6,Mobile,AL
-36582,1057,Mobile,AL,6,Mobile,AL
-36583,1057,Mobile,AL,6,Mobile,AL
-36584,1057,Mobile,AL,6,Mobile,AL
-36585,1057,Mobile,AL,6,Mobile,AL
-36587,1057,Mobile,AL,6,Mobile,AL
-36590,1057,Mobile,AL,6,Mobile,AL
-36601,1057,Mobile,AL,6,Mobile,AL
-36602,1057,Mobile,AL,6,Mobile,AL
-36603,1057,Mobile,AL,6,Mobile,AL
-36604,1057,Mobile,AL,6,Mobile,AL
-36605,1057,Mobile,AL,6,Mobile,AL
-36606,1057,Mobile,AL,6,Mobile,AL
-36607,1057,Mobile,AL,6,Mobile,AL
-36608,1057,Mobile,AL,6,Mobile,AL
-36609,1057,Mobile,AL,6,Mobile,AL
-36610,1057,Mobile,AL,6,Mobile,AL
-36611,1057,Mobile,AL,6,Mobile,AL
-36612,1057,Mobile,AL,6,Mobile,AL
-36613,1057,Mobile,AL,6,Mobile,AL
-36615,1057,Mobile,AL,6,Mobile,AL
-36616,1057,Mobile,AL,6,Mobile,AL
-36617,1057,Mobile,AL,6,Mobile,AL
-36618,1057,Mobile,AL,6,Mobile,AL
-36619,1057,Mobile,AL,6,Mobile,AL
-36628,1057,Mobile,AL,6,Mobile,AL
-36633,1057,Mobile,AL,6,Mobile,AL
-36640,1057,Mobile,AL,6,Mobile,AL
-36641,1057,Mobile,AL,6,Mobile,AL
-36644,1057,Mobile,AL,6,Mobile,AL
-36652,1057,Mobile,AL,6,Mobile,AL
-36660,1057,Mobile,AL,6,Mobile,AL
-36663,1057,Mobile,AL,6,Mobile,AL
-36670,1057,Mobile,AL,6,Mobile,AL
-36671,1057,Mobile,AL,6,Mobile,AL
-36675,1057,Mobile,AL,6,Mobile,AL
-36685,1057,Mobile,AL,6,Mobile,AL
-36688,1057,Mobile,AL,6,Mobile,AL
-36689,1057,Mobile,AL,6,Mobile,AL
-36691,1057,Mobile,AL,6,Mobile,AL
-36693,1057,Mobile,AL,6,Mobile,AL
-36695,1057,Mobile,AL,6,Mobile,AL
-36701,1075,Selma,AL,1,Birmingham,AL
-36702,1075,Selma,AL,1,Birmingham,AL
-36703,1075,Selma,AL,1,Birmingham,AL
-36720,1075,Selma,AL,1,Birmingham,AL
-36722,1080,Thomasville,AL,6,Mobile,AL
-36723,1075,Selma,AL,1,Birmingham,AL
-36726,1016,Camden,AL,1,Birmingham,AL
-36727,1080,Thomasville,AL,6,Mobile,AL
-36728,1075,Selma,AL,1,Birmingham,AL
-36732,1025,Demopolis,AL,1,Birmingham,AL
-36736,1080,Thomasville,AL,6,Mobile,AL
-36738,1025,Demopolis,AL,1,Birmingham,AL
-36740,1025,Demopolis,AL,1,Birmingham,AL
-36741,1016,Camden,AL,1,Birmingham,AL
-36742,1025,Demopolis,AL,1,Birmingham,AL
-36744,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-36745,1025,Demopolis,AL,1,Birmingham,AL
-36748,1025,Demopolis,AL,1,Birmingham,AL
-36749,1075,Selma,AL,1,Birmingham,AL
-36750,1075,Selma,AL,1,Birmingham,AL
-36751,1080,Thomasville,AL,6,Mobile,AL
-36752,1059,Montgomery,AL,7,Montgomery,AL
-36753,1016,Camden,AL,1,Birmingham,AL
-36754,1075,Selma,AL,1,Birmingham,AL
-36756,1075,Selma,AL,1,Birmingham,AL
-36758,1075,Selma,AL,1,Birmingham,AL
-36759,1075,Selma,AL,1,Birmingham,AL
-36761,1075,Selma,AL,1,Birmingham,AL
-36763,1025,Demopolis,AL,1,Birmingham,AL
-36764,1080,Thomasville,AL,6,Mobile,AL
-36765,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-36766,1016,Camden,AL,1,Birmingham,AL
-36767,1075,Selma,AL,1,Birmingham,AL
-36768,1016,Camden,AL,1,Birmingham,AL
-36769,1080,Thomasville,AL,6,Mobile,AL
-36773,1075,Selma,AL,1,Birmingham,AL
-36775,1075,Selma,AL,1,Birmingham,AL
-36776,1082,Tuscaloosa,AL,9,Tuscaloosa,AL
-36782,1080,Thomasville,AL,6,Mobile,AL
-36783,1075,Selma,AL,1,Birmingham,AL
-36784,1080,Thomasville,AL,6,Mobile,AL
-36785,1075,Selma,AL,1,Birmingham,AL
-36786,1075,Selma,AL,1,Birmingham,AL
-36790,1075,Selma,AL,1,Birmingham,AL
-36792,1019,Centreville,AL,9,Tuscaloosa,AL
-36793,1075,Selma,AL,1,Birmingham,AL
-36801,1064,Opelika,AL,1,Birmingham,AL
-36802,1064,Opelika,AL,1,Birmingham,AL
-36803,1064,Opelika,AL,1,Birmingham,AL
-36804,1064,Opelika,AL,1,Birmingham,AL
-36830,1064,Opelika,AL,1,Birmingham,AL
-36831,1064,Opelika,AL,1,Birmingham,AL
-36832,1064,Opelika,AL,1,Birmingham,AL
-36849,1064,Opelika,AL,1,Birmingham,AL
-36850,1064,Opelika,AL,1,Birmingham,AL
-36851,11032,Columbus,GA,146,Columbus,GA
-36852,1064,Opelika,AL,1,Birmingham,AL
-36853,1023,Dadeville,AL,1,Birmingham,AL
-36854,1084,Valley,AL,1,Birmingham,AL
-36855,11073,La Grange,GA,144,Atlanta,GA
-36856,1068,Phenix City,AL,146,Columbus,GA
-36858,11032,Columbus,GA,146,Columbus,GA
-36859,11032,Columbus,GA,146,Columbus,GA
-36860,11032,Columbus,GA,146,Columbus,GA
-36861,1064,Opelika,AL,1,Birmingham,AL
-36862,1064,Opelika,AL,1,Birmingham,AL
-36863,1084,Valley,AL,1,Birmingham,AL
-36865,1064,Opelika,AL,1,Birmingham,AL
-36866,1064,Opelika,AL,1,Birmingham,AL
-36867,1068,Phenix City,AL,146,Columbus,GA
-36868,1068,Phenix City,AL,146,Columbus,GA
-36869,1068,Phenix City,AL,146,Columbus,GA
-36870,1068,Phenix City,AL,146,Columbus,GA
-36871,11032,Columbus,GA,146,Columbus,GA
-36872,1064,Opelika,AL,1,Birmingham,AL
-36874,1064,Opelika,AL,1,Birmingham,AL
-36875,11032,Columbus,GA,146,Columbus,GA
-36877,1068,Phenix City,AL,146,Columbus,GA
-36879,1064,Opelika,AL,1,Birmingham,AL
-36901,25056,Meridian,MS,260,Meridian,MS
-36904,25056,Meridian,MS,260,Meridian,MS
-36907,25056,Meridian,MS,260,Meridian,MS
-36908,25056,Meridian,MS,260,Meridian,MS
-36910,25056,Meridian,MS,260,Meridian,MS
-36912,25056,Meridian,MS,260,Meridian,MS
-36913,25056,Meridian,MS,260,Meridian,MS
-36915,25056,Meridian,MS,260,Meridian,MS
-36916,25056,Meridian,MS,260,Meridian,MS
-36919,25056,Meridian,MS,260,Meridian,MS
-36921,25056,Meridian,MS,260,Meridian,MS
-36922,25056,Meridian,MS,260,Meridian,MS
-36925,25056,Meridian,MS,260,Meridian,MS
-37010,44084,Springfield,TN,380,Nashville,TN
-37011,44063,Nashville,TN,380,Nashville,TN
-37012,44079,Smithville,TN,380,Nashville,TN
-37013,44063,Nashville,TN,380,Nashville,TN
-37014,44026,Franklin,TN,380,Nashville,TN
-37015,44096,Ashland City,TN,380,Nashville,TN
-37016,44094,Woodbury,TN,380,Nashville,TN
-37018,44054,Manchester,TN,380,Nashville,TN
-37019,44048,Lewisburg,TN,380,Nashville,TN
-37020,44062,Murfreesboro,TN,380,Nashville,TN
-37022,44028,Gallatin,TN,380,Nashville,TN
-37023,44010,Clarksville,TN,380,Nashville,TN
-37024,44063,Nashville,TN,380,Nashville,TN
-37025,44018,Dickson,TN,380,Nashville,TN
-37026,44094,Woodbury,TN,380,Nashville,TN
-37027,44063,Nashville,TN,380,Nashville,TN
-37028,44010,Clarksville,TN,380,Nashville,TN
-37029,44018,Dickson,TN,380,Nashville,TN
-37030,44006,Carthage,TN,380,Nashville,TN
-37031,44028,Gallatin,TN,380,Nashville,TN
-37032,44084,Springfield,TN,380,Nashville,TN
-37033,44008,Centerville,TN,380,Nashville,TN
-37034,44048,Lewisburg,TN,380,Nashville,TN
-37035,44096,Ashland City,TN,380,Nashville,TN
-37036,44018,Dickson,TN,380,Nashville,TN
-37037,44062,Murfreesboro,TN,380,Nashville,TN
-37040,44010,Clarksville,TN,380,Nashville,TN
-37041,44010,Clarksville,TN,380,Nashville,TN
-37042,44010,Clarksville,TN,380,Nashville,TN
-37043,44010,Clarksville,TN,380,Nashville,TN
-37044,44010,Clarksville,TN,380,Nashville,TN
-37046,44026,Franklin,TN,380,Nashville,TN
-37047,44048,Lewisburg,TN,380,Nashville,TN
-37048,44053,Madison,TN,380,Nashville,TN
-37049,44084,Springfield,TN,380,Nashville,TN
-37050,44022,Erin,TN,380,Nashville,TN
-37051,44018,Dickson,TN,380,Nashville,TN
-37052,44010,Clarksville,TN,380,Nashville,TN
-37055,44018,Dickson,TN,380,Nashville,TN
-37056,44018,Dickson,TN,380,Nashville,TN
-37057,44006,Carthage,TN,380,Nashville,TN
-37058,44010,Clarksville,TN,380,Nashville,TN
-37059,44079,Smithville,TN,380,Nashville,TN
-37060,44062,Murfreesboro,TN,380,Nashville,TN
-37061,44022,Erin,TN,380,Nashville,TN
-37062,44063,Nashville,TN,380,Nashville,TN
-37063,44062,Murfreesboro,TN,380,Nashville,TN
-37064,44026,Franklin,TN,380,Nashville,TN
-37065,44026,Franklin,TN,380,Nashville,TN
-37066,44028,Gallatin,TN,380,Nashville,TN
-37067,44063,Nashville,TN,380,Nashville,TN
-37068,44026,Franklin,TN,380,Nashville,TN
-37069,44026,Franklin,TN,380,Nashville,TN
-37070,44053,Madison,TN,380,Nashville,TN
-37071,44063,Nashville,TN,380,Nashville,TN
-37072,44053,Madison,TN,380,Nashville,TN
-37073,44084,Springfield,TN,380,Nashville,TN
-37074,44032,Hartsville,TN,380,Nashville,TN
-37075,44033,Hendersonville,TN,380,Nashville,TN
-37076,44063,Nashville,TN,380,Nashville,TN
-37077,44033,Hendersonville,TN,380,Nashville,TN
-37078,44090,Waverly,TN,380,Nashville,TN
-37079,44010,Clarksville,TN,380,Nashville,TN
-37080,44063,Nashville,TN,380,Nashville,TN
-37082,44063,Nashville,TN,380,Nashville,TN
-37083,44045,Lafayette,TN,380,Nashville,TN
-37085,44062,Murfreesboro,TN,380,Nashville,TN
-37086,44063,Nashville,TN,380,Nashville,TN
-37087,44047,Lebanon,TN,380,Nashville,TN
-37088,44047,Lebanon,TN,380,Nashville,TN
-37089,44063,Nashville,TN,380,Nashville,TN
-37090,44047,Lebanon,TN,380,Nashville,TN
-37091,44048,Lewisburg,TN,380,Nashville,TN
-37095,44079,Smithville,TN,380,Nashville,TN
-37096,44050,Linden,TN,380,Nashville,TN
-37097,44050,Linden,TN,380,Nashville,TN
-37098,44018,Dickson,TN,380,Nashville,TN
-37101,44018,Dickson,TN,380,Nashville,TN
-37110,44058,McMinnville,TN,380,Nashville,TN
-37111,44058,McMinnville,TN,380,Nashville,TN
-37115,44053,Madison,TN,380,Nashville,TN
-37116,44053,Madison,TN,380,Nashville,TN
-37118,44062,Murfreesboro,TN,380,Nashville,TN
-37119,44070,Portland,TN,380,Nashville,TN
-37121,44063,Nashville,TN,380,Nashville,TN
-37122,44063,Nashville,TN,380,Nashville,TN
-37127,44062,Murfreesboro,TN,380,Nashville,TN
-37128,44062,Murfreesboro,TN,380,Nashville,TN
-37129,44062,Murfreesboro,TN,380,Nashville,TN
-37130,44062,Murfreesboro,TN,380,Nashville,TN
-37131,44062,Murfreesboro,TN,380,Nashville,TN
-37132,44062,Murfreesboro,TN,380,Nashville,TN
-37133,44062,Murfreesboro,TN,380,Nashville,TN
-37134,44090,Waverly,TN,380,Nashville,TN
-37135,44063,Nashville,TN,380,Nashville,TN
-37136,44047,Lebanon,TN,380,Nashville,TN
-37137,44008,Centerville,TN,380,Nashville,TN
-37138,44053,Madison,TN,380,Nashville,TN
-37140,44008,Centerville,TN,380,Nashville,TN
-37141,44084,Springfield,TN,380,Nashville,TN
-37142,44010,Clarksville,TN,380,Nashville,TN
-37143,44063,Nashville,TN,380,Nashville,TN
-37144,44025,Fayetteville,TN,5,Huntsville,AL
-37145,44006,Carthage,TN,380,Nashville,TN
-37146,44063,Nashville,TN,380,Nashville,TN
-37148,44070,Portland,TN,380,Nashville,TN
-37149,44062,Murfreesboro,TN,380,Nashville,TN
-37150,44045,Lafayette,TN,380,Nashville,TN
-37151,44006,Carthage,TN,380,Nashville,TN
-37152,44084,Springfield,TN,380,Nashville,TN
-37153,44062,Murfreesboro,TN,380,Nashville,TN
-37160,44078,Shelbyville,TN,380,Nashville,TN
-37161,44078,Shelbyville,TN,380,Nashville,TN
-37162,44078,Shelbyville,TN,380,Nashville,TN
-37165,44018,Dickson,TN,380,Nashville,TN
-37166,44079,Smithville,TN,380,Nashville,TN
-37167,44063,Nashville,TN,380,Nashville,TN
-37171,44010,Clarksville,TN,380,Nashville,TN
-37172,44084,Springfield,TN,380,Nashville,TN
-37174,44026,Franklin,TN,380,Nashville,TN
-37175,44022,Erin,TN,380,Nashville,TN
-37178,44022,Erin,TN,380,Nashville,TN
-37179,44026,Franklin,TN,380,Nashville,TN
-37180,44078,Shelbyville,TN,380,Nashville,TN
-37181,44018,Dickson,TN,380,Nashville,TN
-37183,44078,Shelbyville,TN,380,Nashville,TN
-37184,44047,Lebanon,TN,380,Nashville,TN
-37185,44090,Waverly,TN,380,Nashville,TN
-37186,44028,Gallatin,TN,380,Nashville,TN
-37187,44018,Dickson,TN,380,Nashville,TN
-37188,44053,Madison,TN,380,Nashville,TN
-37189,44063,Nashville,TN,380,Nashville,TN
-37190,44094,Woodbury,TN,380,Nashville,TN
-37191,44010,Clarksville,TN,380,Nashville,TN
-37201,44063,Nashville,TN,380,Nashville,TN
-37202,44063,Nashville,TN,380,Nashville,TN
-37203,44063,Nashville,TN,380,Nashville,TN
-37204,44063,Nashville,TN,380,Nashville,TN
-37205,44063,Nashville,TN,380,Nashville,TN
-37206,44063,Nashville,TN,380,Nashville,TN
-37207,44063,Nashville,TN,380,Nashville,TN
-37208,44063,Nashville,TN,380,Nashville,TN
-37209,44063,Nashville,TN,380,Nashville,TN
-37210,44063,Nashville,TN,380,Nashville,TN
-37211,44063,Nashville,TN,380,Nashville,TN
-37212,44063,Nashville,TN,380,Nashville,TN
-37213,44063,Nashville,TN,380,Nashville,TN
-37214,44063,Nashville,TN,380,Nashville,TN
-37215,44063,Nashville,TN,380,Nashville,TN
-37216,44063,Nashville,TN,380,Nashville,TN
-37217,44063,Nashville,TN,380,Nashville,TN
-37218,44063,Nashville,TN,380,Nashville,TN
-37219,44063,Nashville,TN,380,Nashville,TN
-37220,44063,Nashville,TN,380,Nashville,TN
-37221,44063,Nashville,TN,380,Nashville,TN
-37222,44063,Nashville,TN,380,Nashville,TN
-37224,44063,Nashville,TN,380,Nashville,TN
-37227,44063,Nashville,TN,380,Nashville,TN
-37228,44063,Nashville,TN,380,Nashville,TN
-37229,44063,Nashville,TN,380,Nashville,TN
-37230,44063,Nashville,TN,380,Nashville,TN
-37232,44063,Nashville,TN,380,Nashville,TN
-37234,44063,Nashville,TN,380,Nashville,TN
-37235,44063,Nashville,TN,380,Nashville,TN
-37236,44063,Nashville,TN,380,Nashville,TN
-37238,44063,Nashville,TN,380,Nashville,TN
-37240,44063,Nashville,TN,380,Nashville,TN
-37241,44063,Nashville,TN,380,Nashville,TN
-37242,44063,Nashville,TN,380,Nashville,TN
-37243,44063,Nashville,TN,380,Nashville,TN
-37244,44063,Nashville,TN,380,Nashville,TN
-37246,44063,Nashville,TN,380,Nashville,TN
-37250,44063,Nashville,TN,380,Nashville,TN
-37301,44058,McMinnville,TN,380,Nashville,TN
-37302,44009,Chattanooga,TN,373,Chattanooga,TN
-37303,44001,Athens,TN,377,Knoxville,TN
-37304,44009,Chattanooga,TN,373,Chattanooga,TN
-37305,44058,McMinnville,TN,380,Nashville,TN
-37306,44093,Winchester,TN,380,Nashville,TN
-37307,44011,Cleveland,TN,373,Chattanooga,TN
-37308,44011,Cleveland,TN,373,Chattanooga,TN
-37309,44011,Cleveland,TN,373,Chattanooga,TN
-37310,44011,Cleveland,TN,373,Chattanooga,TN
-37311,44011,Cleveland,TN,373,Chattanooga,TN
-37312,44011,Cleveland,TN,373,Chattanooga,TN
-37313,44093,Winchester,TN,380,Nashville,TN
-37314,44085,Sweetwater,TN,377,Knoxville,TN
-37315,44009,Chattanooga,TN,373,Chattanooga,TN
-37316,44011,Cleveland,TN,373,Chattanooga,TN
-37317,44014,Copperhill,TN,373,Chattanooga,TN
-37318,44093,Winchester,TN,380,Nashville,TN
-37320,44011,Cleveland,TN,373,Chattanooga,TN
-37321,44017,Dayton,TN,373,Chattanooga,TN
-37322,44001,Athens,TN,377,Knoxville,TN
-37323,44011,Cleveland,TN,373,Chattanooga,TN
-37324,44093,Winchester,TN,380,Nashville,TN
-37325,44024,Etowah,TN,377,Knoxville,TN
-37326,44014,Copperhill,TN,373,Chattanooga,TN
-37327,44009,Chattanooga,TN,373,Chattanooga,TN
-37328,44025,Fayetteville,TN,5,Huntsville,AL
-37329,44024,Etowah,TN,377,Knoxville,TN
-37330,44093,Winchester,TN,380,Nashville,TN
-37331,44024,Etowah,TN,377,Knoxville,TN
-37332,44073,Rockwood,TN,377,Knoxville,TN
-37333,44014,Copperhill,TN,373,Chattanooga,TN
-37334,44025,Fayetteville,TN,5,Huntsville,AL
-37335,44025,Fayetteville,TN,5,Huntsville,AL
-37336,44011,Cleveland,TN,373,Chattanooga,TN
-37337,44016,Crossville,TN,380,Nashville,TN
-37338,44009,Chattanooga,TN,373,Chattanooga,TN
-37339,44093,Winchester,TN,380,Nashville,TN
-37340,44009,Chattanooga,TN,373,Chattanooga,TN
-37341,44009,Chattanooga,TN,373,Chattanooga,TN
-37342,44054,Manchester,TN,380,Nashville,TN
-37343,44009,Chattanooga,TN,373,Chattanooga,TN
-37345,44093,Winchester,TN,380,Nashville,TN
-37347,44082,South Pittsburg,TN,373,Chattanooga,TN
-37348,44025,Fayetteville,TN,5,Huntsville,AL
-37349,44054,Manchester,TN,380,Nashville,TN
-37350,44009,Chattanooga,TN,373,Chattanooga,TN
-37351,44009,Chattanooga,TN,373,Chattanooga,TN
-37352,44088,Tullahoma,TN,380,Nashville,TN
-37353,44011,Cleveland,TN,373,Chattanooga,TN
-37354,44085,Sweetwater,TN,377,Knoxville,TN
-37355,44054,Manchester,TN,380,Nashville,TN
-37356,44093,Winchester,TN,380,Nashville,TN
-37357,44058,McMinnville,TN,380,Nashville,TN
-37359,44025,Fayetteville,TN,5,Huntsville,AL
-37360,44088,Tullahoma,TN,380,Nashville,TN
-37361,44011,Cleveland,TN,373,Chattanooga,TN
-37362,44011,Cleveland,TN,373,Chattanooga,TN
-37363,44009,Chattanooga,TN,373,Chattanooga,TN
-37364,44011,Cleveland,TN,373,Chattanooga,TN
-37365,44009,Chattanooga,TN,373,Chattanooga,TN
-37366,44093,Winchester,TN,380,Nashville,TN
-37367,44069,Pikeville,TN,373,Chattanooga,TN
-37369,44024,Etowah,TN,377,Knoxville,TN
-37370,44011,Cleveland,TN,373,Chattanooga,TN
-37371,44001,Athens,TN,377,Knoxville,TN
-37373,44009,Chattanooga,TN,373,Chattanooga,TN
-37374,44082,South Pittsburg,TN,373,Chattanooga,TN
-37375,44093,Winchester,TN,380,Nashville,TN
-37376,44093,Winchester,TN,380,Nashville,TN
-37377,44009,Chattanooga,TN,373,Chattanooga,TN
-37378,44058,McMinnville,TN,380,Nashville,TN
-37379,44009,Chattanooga,TN,373,Chattanooga,TN
-37380,44082,South Pittsburg,TN,373,Chattanooga,TN
-37381,44073,Rockwood,TN,377,Knoxville,TN
-37382,44058,McMinnville,TN,380,Nashville,TN
-37383,44093,Winchester,TN,380,Nashville,TN
-37384,44009,Chattanooga,TN,373,Chattanooga,TN
-37385,44085,Sweetwater,TN,377,Knoxville,TN
-37387,44093,Winchester,TN,380,Nashville,TN
-37388,44088,Tullahoma,TN,380,Nashville,TN
-37389,44054,Manchester,TN,380,Nashville,TN
-37391,44014,Copperhill,TN,373,Chattanooga,TN
-37394,44058,McMinnville,TN,380,Nashville,TN
-37396,44009,Chattanooga,TN,373,Chattanooga,TN
-37397,44009,Chattanooga,TN,373,Chattanooga,TN
-37398,44093,Winchester,TN,380,Nashville,TN
-37401,44009,Chattanooga,TN,373,Chattanooga,TN
-37402,44009,Chattanooga,TN,373,Chattanooga,TN
-37403,44009,Chattanooga,TN,373,Chattanooga,TN
-37404,44009,Chattanooga,TN,373,Chattanooga,TN
-37405,44009,Chattanooga,TN,373,Chattanooga,TN
-37406,44009,Chattanooga,TN,373,Chattanooga,TN
-37407,44009,Chattanooga,TN,373,Chattanooga,TN
-37408,44009,Chattanooga,TN,373,Chattanooga,TN
-37409,44009,Chattanooga,TN,373,Chattanooga,TN
-37410,44009,Chattanooga,TN,373,Chattanooga,TN
-37411,44009,Chattanooga,TN,373,Chattanooga,TN
-37412,44009,Chattanooga,TN,373,Chattanooga,TN
-37414,44009,Chattanooga,TN,373,Chattanooga,TN
-37415,44009,Chattanooga,TN,373,Chattanooga,TN
-37416,44009,Chattanooga,TN,373,Chattanooga,TN
-37419,44009,Chattanooga,TN,373,Chattanooga,TN
-37421,44009,Chattanooga,TN,373,Chattanooga,TN
-37422,44009,Chattanooga,TN,373,Chattanooga,TN
-37424,44009,Chattanooga,TN,373,Chattanooga,TN
-37450,44009,Chattanooga,TN,373,Chattanooga,TN
-37501,44059,Memphis,TN,379,Memphis,TN
-37544,44059,Memphis,TN,379,Memphis,TN
-37601,44041,Johnson City,TN,375,Johnson City,TN
-37602,44041,Johnson City,TN,375,Johnson City,TN
-37604,44041,Johnson City,TN,375,Johnson City,TN
-37605,44041,Johnson City,TN,375,Johnson City,TN
-37614,44041,Johnson City,TN,375,Johnson City,TN
-37615,44041,Johnson City,TN,375,Johnson City,TN
-37616,44030,Greeneville,TN,377,Knoxville,TN
-37617,44042,Kingsport,TN,376,Kingsport,TN
-37618,44003,Bristol,TN,376,Kingsport,TN
-37620,44003,Bristol,TN,376,Kingsport,TN
-37621,44003,Bristol,TN,376,Kingsport,TN
-37625,44003,Bristol,TN,376,Kingsport,TN
-37640,44041,Johnson City,TN,375,Johnson City,TN
-37641,44041,Johnson City,TN,375,Johnson City,TN
-37642,44042,Kingsport,TN,376,Kingsport,TN
-37643,44041,Johnson City,TN,375,Johnson City,TN
-37644,44041,Johnson City,TN,375,Johnson City,TN
-37645,44042,Kingsport,TN,376,Kingsport,TN
-37650,44023,Erwin,TN,375,Johnson City,TN
-37656,44042,Kingsport,TN,376,Kingsport,TN
-37657,44023,Erwin,TN,375,Johnson City,TN
-37658,44041,Johnson City,TN,375,Johnson City,TN
-37659,44041,Johnson City,TN,375,Johnson City,TN
-37660,44042,Kingsport,TN,376,Kingsport,TN
-37662,44042,Kingsport,TN,376,Kingsport,TN
-37663,44042,Kingsport,TN,376,Kingsport,TN
-37664,44042,Kingsport,TN,376,Kingsport,TN
-37665,44042,Kingsport,TN,376,Kingsport,TN
-37669,44042,Kingsport,TN,376,Kingsport,TN
-37680,34010,Boone,NC,375,Johnson City,TN
-37681,44041,Johnson City,TN,375,Johnson City,TN
-37682,44041,Johnson City,TN,375,Johnson City,TN
-37683,34010,Boone,NC,375,Johnson City,TN
-37684,44041,Johnson City,TN,375,Johnson City,TN
-37686,44041,Johnson City,TN,375,Johnson City,TN
-37687,44041,Johnson City,TN,375,Johnson City,TN
-37688,44003,Bristol,TN,376,Kingsport,TN
-37690,44041,Johnson City,TN,375,Johnson City,TN
-37691,34010,Boone,NC,375,Johnson City,TN
-37692,44041,Johnson City,TN,375,Johnson City,TN
-37694,44041,Johnson City,TN,375,Johnson City,TN
-37699,44003,Bristol,TN,376,Kingsport,TN
-37701,44056,Maryville,TN,377,Knoxville,TN
-37705,44065,Oak Ridge,TN,377,Knoxville,TN
-37707,44086,Tazewell,TN,377,Knoxville,TN
-37708,44061,Morristown,TN,377,Knoxville,TN
-37709,44043,Knoxville,TN,377,Knoxville,TN
-37710,44065,Oak Ridge,TN,377,Knoxville,TN
-37711,44030,Greeneville,TN,377,Knoxville,TN
-37713,44064,Newport,TN,377,Knoxville,TN
-37714,44044,La Follette,TN,377,Knoxville,TN
-37715,44040,Jellico,TN,377,Knoxville,TN
-37716,44065,Oak Ridge,TN,377,Knoxville,TN
-37717,44065,Oak Ridge,TN,377,Knoxville,TN
-37719,44065,Oak Ridge,TN,377,Knoxville,TN
-37721,44043,Knoxville,TN,377,Knoxville,TN
-37722,44064,Newport,TN,377,Knoxville,TN
-37723,44016,Crossville,TN,380,Nashville,TN
-37724,44086,Tazewell,TN,377,Knoxville,TN
-37725,44043,Knoxville,TN,377,Knoxville,TN
-37726,44065,Oak Ridge,TN,377,Knoxville,TN
-37727,44064,Newport,TN,377,Knoxville,TN
-37729,44040,Jellico,TN,377,Knoxville,TN
-37730,44040,Jellico,TN,377,Knoxville,TN
-37731,44042,Kingsport,TN,376,Kingsport,TN
-37732,44066,Oneida,TN,377,Knoxville,TN
-37733,44065,Oak Ridge,TN,377,Knoxville,TN
-37737,44056,Maryville,TN,377,Knoxville,TN
-37738,44077,Sevierville,TN,377,Knoxville,TN
-37742,44056,Maryville,TN,377,Knoxville,TN
-37743,44030,Greeneville,TN,377,Knoxville,TN
-37744,44030,Greeneville,TN,377,Knoxville,TN
-37745,44030,Greeneville,TN,377,Knoxville,TN
-37748,44031,Harriman,TN,377,Knoxville,TN
-37752,44086,Tazewell,TN,377,Knoxville,TN
-37753,44064,Newport,TN,377,Knoxville,TN
-37754,44043,Knoxville,TN,377,Knoxville,TN
-37755,44066,Oneida,TN,377,Knoxville,TN
-37756,44066,Oneida,TN,377,Knoxville,TN
-37757,44044,La Follette,TN,377,Knoxville,TN
-37760,44039,Jefferson City,TN,377,Knoxville,TN
-37762,44040,Jellico,TN,377,Knoxville,TN
-37763,44043,Knoxville,TN,377,Knoxville,TN
-37764,44043,Knoxville,TN,377,Knoxville,TN
-37765,44042,Kingsport,TN,376,Kingsport,TN
-37766,44044,La Follette,TN,377,Knoxville,TN
-37769,44065,Oak Ridge,TN,377,Knoxville,TN
-37770,44065,Oak Ridge,TN,377,Knoxville,TN
-37771,44043,Knoxville,TN,377,Knoxville,TN
-37772,44043,Knoxville,TN,377,Knoxville,TN
-37773,44086,Tazewell,TN,377,Knoxville,TN
-37774,44043,Knoxville,TN,377,Knoxville,TN
-37777,44043,Knoxville,TN,377,Knoxville,TN
-37778,44061,Morristown,TN,377,Knoxville,TN
-37779,44043,Knoxville,TN,377,Knoxville,TN
-37801,44056,Maryville,TN,377,Knoxville,TN
-37802,44056,Maryville,TN,377,Knoxville,TN
-37803,44056,Maryville,TN,377,Knoxville,TN
-37804,44056,Maryville,TN,377,Knoxville,TN
-37806,44043,Knoxville,TN,377,Knoxville,TN
-37807,44043,Knoxville,TN,377,Knoxville,TN
-37809,44030,Greeneville,TN,377,Knoxville,TN
-37810,44030,Greeneville,TN,377,Knoxville,TN
-37811,44061,Morristown,TN,377,Knoxville,TN
-37813,44061,Morristown,TN,377,Knoxville,TN
-37814,44061,Morristown,TN,377,Knoxville,TN
-37815,44061,Morristown,TN,377,Knoxville,TN
-37816,44061,Morristown,TN,377,Knoxville,TN
-37818,44030,Greeneville,TN,377,Knoxville,TN
-37819,44040,Jellico,TN,377,Knoxville,TN
-37820,44039,Jefferson City,TN,377,Knoxville,TN
-37821,44064,Newport,TN,377,Knoxville,TN
-37822,44064,Newport,TN,377,Knoxville,TN
-37824,44086,Tazewell,TN,377,Knoxville,TN
-37825,44086,Tazewell,TN,377,Knoxville,TN
-37826,44001,Athens,TN,377,Knoxville,TN
-37828,44065,Oak Ridge,TN,377,Knoxville,TN
-37829,44031,Harriman,TN,377,Knoxville,TN
-37830,44065,Oak Ridge,TN,377,Knoxville,TN
-37831,44065,Oak Ridge,TN,377,Knoxville,TN
-37840,44031,Harriman,TN,377,Knoxville,TN
-37841,44066,Oneida,TN,377,Knoxville,TN
-37843,44064,Newport,TN,377,Knoxville,TN
-37845,44065,Oak Ridge,TN,377,Knoxville,TN
-37846,44043,Knoxville,TN,377,Knoxville,TN
-37847,44066,Oneida,TN,377,Knoxville,TN
-37848,44043,Knoxville,TN,377,Knoxville,TN
-37849,44043,Knoxville,TN,377,Knoxville,TN
-37851,44040,Jellico,TN,377,Knoxville,TN
-37852,44066,Oneida,TN,377,Knoxville,TN
-37853,44056,Maryville,TN,377,Knoxville,TN
-37854,44073,Rockwood,TN,377,Knoxville,TN
-37857,44074,Rogersville,TN,377,Knoxville,TN
-37860,44061,Morristown,TN,377,Knoxville,TN
-37861,44043,Knoxville,TN,377,Knoxville,TN
-37862,44077,Sevierville,TN,377,Knoxville,TN
-37863,44077,Sevierville,TN,377,Knoxville,TN
-37864,44077,Sevierville,TN,377,Knoxville,TN
-37865,44043,Knoxville,TN,377,Knoxville,TN
-37866,44086,Tazewell,TN,377,Knoxville,TN
-37867,44086,Tazewell,TN,377,Knoxville,TN
-37868,44077,Sevierville,TN,377,Knoxville,TN
-37869,44061,Morristown,TN,377,Knoxville,TN
-37870,44086,Tazewell,TN,377,Knoxville,TN
-37871,44043,Knoxville,TN,377,Knoxville,TN
-37872,44065,Oak Ridge,TN,377,Knoxville,TN
-37873,44042,Kingsport,TN,376,Kingsport,TN
-37874,44085,Sweetwater,TN,377,Knoxville,TN
-37876,44077,Sevierville,TN,377,Knoxville,TN
-37877,44043,Knoxville,TN,377,Knoxville,TN
-37878,44056,Maryville,TN,377,Knoxville,TN
-37879,44086,Tazewell,TN,377,Knoxville,TN
-37880,44043,Knoxville,TN,377,Knoxville,TN
-37881,44061,Morristown,TN,377,Knoxville,TN
-37882,44056,Maryville,TN,377,Knoxville,TN
-37885,44056,Maryville,TN,377,Knoxville,TN
-37886,44056,Maryville,TN,377,Knoxville,TN
-37887,44031,Harriman,TN,377,Knoxville,TN
-37888,44043,Knoxville,TN,377,Knoxville,TN
-37890,44061,Morristown,TN,377,Knoxville,TN
-37891,44061,Morristown,TN,377,Knoxville,TN
-37892,44066,Oneida,TN,377,Knoxville,TN
-37901,44043,Knoxville,TN,377,Knoxville,TN
-37902,44043,Knoxville,TN,377,Knoxville,TN
-37909,44043,Knoxville,TN,377,Knoxville,TN
-37912,44043,Knoxville,TN,377,Knoxville,TN
-37914,44043,Knoxville,TN,377,Knoxville,TN
-37915,44043,Knoxville,TN,377,Knoxville,TN
-37916,44043,Knoxville,TN,377,Knoxville,TN
-37917,44043,Knoxville,TN,377,Knoxville,TN
-37918,44043,Knoxville,TN,377,Knoxville,TN
-37919,44043,Knoxville,TN,377,Knoxville,TN
-37920,44043,Knoxville,TN,377,Knoxville,TN
-37921,44043,Knoxville,TN,377,Knoxville,TN
-37922,44043,Knoxville,TN,377,Knoxville,TN
-37923,44043,Knoxville,TN,377,Knoxville,TN
-37924,44043,Knoxville,TN,377,Knoxville,TN
-37927,44043,Knoxville,TN,377,Knoxville,TN
-37928,44043,Knoxville,TN,377,Knoxville,TN
-37929,44043,Knoxville,TN,377,Knoxville,TN
-37930,44043,Knoxville,TN,377,Knoxville,TN
-37931,44043,Knoxville,TN,377,Knoxville,TN
-37932,44043,Knoxville,TN,377,Knoxville,TN
-37933,44043,Knoxville,TN,377,Knoxville,TN
-37934,44043,Knoxville,TN,377,Knoxville,TN
-37938,44043,Knoxville,TN,377,Knoxville,TN
-37939,44043,Knoxville,TN,377,Knoxville,TN
-37940,44043,Knoxville,TN,377,Knoxville,TN
-37950,44043,Knoxville,TN,377,Knoxville,TN
-37995,44043,Knoxville,TN,377,Knoxville,TN
-37996,44043,Knoxville,TN,377,Knoxville,TN
-37997,44043,Knoxville,TN,377,Knoxville,TN
-37998,44043,Knoxville,TN,377,Knoxville,TN
-38001,44037,Jackson,TN,374,Jackson,TN
-38002,44059,Memphis,TN,379,Memphis,TN
-38004,44059,Memphis,TN,379,Memphis,TN
-38006,44037,Jackson,TN,374,Jackson,TN
-38007,44020,Dyersburg,TN,379,Memphis,TN
-38008,44037,Jackson,TN,374,Jackson,TN
-38010,44059,Memphis,TN,379,Memphis,TN
-38011,44059,Memphis,TN,379,Memphis,TN
-38012,44004,Brownsville,TN,379,Memphis,TN
-38014,44059,Memphis,TN,379,Memphis,TN
-38015,44015,Covington,TN,379,Memphis,TN
-38016,44059,Memphis,TN,379,Memphis,TN
-38017,44059,Memphis,TN,379,Memphis,TN
-38018,44059,Memphis,TN,379,Memphis,TN
-38019,44015,Covington,TN,379,Memphis,TN
-38021,44037,Jackson,TN,374,Jackson,TN
-38023,44059,Memphis,TN,379,Memphis,TN
-38024,44020,Dyersburg,TN,379,Memphis,TN
-38025,44020,Dyersburg,TN,379,Memphis,TN
-38027,44059,Memphis,TN,379,Memphis,TN
-38028,44059,Memphis,TN,379,Memphis,TN
-38029,44059,Memphis,TN,379,Memphis,TN
-38030,44020,Dyersburg,TN,379,Memphis,TN
-38034,44037,Jackson,TN,374,Jackson,TN
-38036,44059,Memphis,TN,379,Memphis,TN
-38037,44004,Brownsville,TN,379,Memphis,TN
-38039,44059,Memphis,TN,379,Memphis,TN
-38040,44072,Ripley,TN,379,Memphis,TN
-38041,44059,Memphis,TN,379,Memphis,TN
-38042,44059,Memphis,TN,379,Memphis,TN
-38044,44037,Jackson,TN,374,Jackson,TN
-38045,44059,Memphis,TN,379,Memphis,TN
-38046,44059,Memphis,TN,379,Memphis,TN
-38047,44020,Dyersburg,TN,379,Memphis,TN
-38048,44059,Memphis,TN,379,Memphis,TN
-38049,44059,Memphis,TN,379,Memphis,TN
-38050,44037,Jackson,TN,374,Jackson,TN
-38052,44059,Memphis,TN,379,Memphis,TN
-38053,44059,Memphis,TN,379,Memphis,TN
-38054,44059,Memphis,TN,379,Memphis,TN
-38055,44059,Memphis,TN,379,Memphis,TN
-38057,44059,Memphis,TN,379,Memphis,TN
-38058,44059,Memphis,TN,379,Memphis,TN
-38059,44020,Dyersburg,TN,379,Memphis,TN
-38060,44059,Memphis,TN,379,Memphis,TN
-38061,44059,Memphis,TN,379,Memphis,TN
-38063,44072,Ripley,TN,379,Memphis,TN
-38066,44059,Memphis,TN,379,Memphis,TN
-38067,44059,Memphis,TN,379,Memphis,TN
-38068,44059,Memphis,TN,379,Memphis,TN
-38069,44004,Brownsville,TN,379,Memphis,TN
-38070,44020,Dyersburg,TN,379,Memphis,TN
-38071,44059,Memphis,TN,379,Memphis,TN
-38075,44059,Memphis,TN,379,Memphis,TN
-38076,44059,Memphis,TN,379,Memphis,TN
-38077,44020,Dyersburg,TN,379,Memphis,TN
-38079,44089,Union City,TN,379,Memphis,TN
-38080,44020,Dyersburg,TN,379,Memphis,TN
-38083,44059,Memphis,TN,379,Memphis,TN
-38088,44059,Memphis,TN,379,Memphis,TN
-38101,44059,Memphis,TN,379,Memphis,TN
-38103,44059,Memphis,TN,379,Memphis,TN
-38104,44059,Memphis,TN,379,Memphis,TN
-38105,44059,Memphis,TN,379,Memphis,TN
-38106,44059,Memphis,TN,379,Memphis,TN
-38107,44059,Memphis,TN,379,Memphis,TN
-38108,44059,Memphis,TN,379,Memphis,TN
-38109,44059,Memphis,TN,379,Memphis,TN
-38111,44059,Memphis,TN,379,Memphis,TN
-38112,44059,Memphis,TN,379,Memphis,TN
-38113,44059,Memphis,TN,379,Memphis,TN
-38114,44059,Memphis,TN,379,Memphis,TN
-38115,44059,Memphis,TN,379,Memphis,TN
-38116,44059,Memphis,TN,379,Memphis,TN
-38117,44059,Memphis,TN,379,Memphis,TN
-38118,44059,Memphis,TN,379,Memphis,TN
-38119,44059,Memphis,TN,379,Memphis,TN
-38120,44059,Memphis,TN,379,Memphis,TN
-38122,44059,Memphis,TN,379,Memphis,TN
-38124,44059,Memphis,TN,379,Memphis,TN
-38125,44059,Memphis,TN,379,Memphis,TN
-38126,44059,Memphis,TN,379,Memphis,TN
-38127,44059,Memphis,TN,379,Memphis,TN
-38128,44059,Memphis,TN,379,Memphis,TN
-38130,44059,Memphis,TN,379,Memphis,TN
-38131,44059,Memphis,TN,379,Memphis,TN
-38132,44059,Memphis,TN,379,Memphis,TN
-38133,44059,Memphis,TN,379,Memphis,TN
-38134,44059,Memphis,TN,379,Memphis,TN
-38135,44059,Memphis,TN,379,Memphis,TN
-38136,44059,Memphis,TN,379,Memphis,TN
-38137,44059,Memphis,TN,379,Memphis,TN
-38138,44059,Memphis,TN,379,Memphis,TN
-38139,44059,Memphis,TN,379,Memphis,TN
-38141,44059,Memphis,TN,379,Memphis,TN
-38145,44059,Memphis,TN,379,Memphis,TN
-38148,44059,Memphis,TN,379,Memphis,TN
-38150,44059,Memphis,TN,379,Memphis,TN
-38151,44059,Memphis,TN,379,Memphis,TN
-38152,44059,Memphis,TN,379,Memphis,TN
-38157,44059,Memphis,TN,379,Memphis,TN
-38159,44059,Memphis,TN,379,Memphis,TN
-38161,44059,Memphis,TN,379,Memphis,TN
-38163,44059,Memphis,TN,379,Memphis,TN
-38166,44059,Memphis,TN,379,Memphis,TN
-38167,44059,Memphis,TN,379,Memphis,TN
-38168,44059,Memphis,TN,379,Memphis,TN
-38173,44059,Memphis,TN,379,Memphis,TN
-38174,44059,Memphis,TN,379,Memphis,TN
-38175,44059,Memphis,TN,379,Memphis,TN
-38177,44059,Memphis,TN,379,Memphis,TN
-38181,44059,Memphis,TN,379,Memphis,TN
-38182,44059,Memphis,TN,379,Memphis,TN
-38183,44059,Memphis,TN,379,Memphis,TN
-38184,44059,Memphis,TN,379,Memphis,TN
-38186,44059,Memphis,TN,379,Memphis,TN
-38187,44059,Memphis,TN,379,Memphis,TN
-38188,44059,Memphis,TN,379,Memphis,TN
-38190,44059,Memphis,TN,379,Memphis,TN
-38193,44059,Memphis,TN,379,Memphis,TN
-38194,44059,Memphis,TN,379,Memphis,TN
-38197,44059,Memphis,TN,379,Memphis,TN
-38201,44057,McKenzie,TN,374,Jackson,TN
-38220,44037,Jackson,TN,374,Jackson,TN
-38221,44067,Paris,TN,374,Jackson,TN
-38222,44067,Paris,TN,374,Jackson,TN
-38223,44067,Paris,TN,374,Jackson,TN
-38224,44067,Paris,TN,374,Jackson,TN
-38225,44055,Martin,TN,374,Jackson,TN
-38226,44055,Martin,TN,374,Jackson,TN
-38229,44057,McKenzie,TN,374,Jackson,TN
-38230,44055,Martin,TN,374,Jackson,TN
-38231,44067,Paris,TN,374,Jackson,TN
-38232,44089,Union City,TN,379,Memphis,TN
-38233,44089,Union City,TN,379,Memphis,TN
-38235,44037,Jackson,TN,374,Jackson,TN
-38236,44067,Paris,TN,374,Jackson,TN
-38237,44055,Martin,TN,374,Jackson,TN
-38238,44055,Martin,TN,374,Jackson,TN
-38240,44089,Union City,TN,379,Memphis,TN
-38241,44055,Martin,TN,374,Jackson,TN
-38242,44067,Paris,TN,374,Jackson,TN
-38251,18063,Murray,KY,208,Paducah,KY
-38253,44089,Union City,TN,379,Memphis,TN
-38254,44089,Union City,TN,379,Memphis,TN
-38255,44055,Martin,TN,374,Jackson,TN
-38256,44067,Paris,TN,374,Jackson,TN
-38257,18025,Fulton,KY,208,Paducah,KY
-38258,44036,Huntingdon,TN,374,Jackson,TN
-38259,44089,Union City,TN,379,Memphis,TN
-38260,44089,Union City,TN,379,Memphis,TN
-38261,44089,Union City,TN,379,Memphis,TN
-38271,44089,Union City,TN,379,Memphis,TN
-38281,44089,Union City,TN,379,Memphis,TN
-38301,44037,Jackson,TN,374,Jackson,TN
-38302,44037,Jackson,TN,374,Jackson,TN
-38303,44037,Jackson,TN,374,Jackson,TN
-38305,44037,Jackson,TN,374,Jackson,TN
-38308,44037,Jackson,TN,374,Jackson,TN
-38310,44076,Selmer,TN,379,Memphis,TN
-38311,44068,Parsons,TN,374,Jackson,TN
-38313,44037,Jackson,TN,374,Jackson,TN
-38314,44037,Jackson,TN,374,Jackson,TN
-38315,44037,Jackson,TN,374,Jackson,TN
-38316,44037,Jackson,TN,374,Jackson,TN
-38317,44036,Huntingdon,TN,374,Jackson,TN
-38318,44036,Huntingdon,TN,374,Jackson,TN
-38320,44005,Camden,TN,380,Nashville,TN
-38321,44036,Huntingdon,TN,374,Jackson,TN
-38324,44036,Huntingdon,TN,374,Jackson,TN
-38326,44075,Savannah,TN,379,Memphis,TN
-38327,44075,Savannah,TN,379,Memphis,TN
-38328,44068,Parsons,TN,374,Jackson,TN
-38329,44068,Parsons,TN,374,Jackson,TN
-38330,44037,Jackson,TN,374,Jackson,TN
-38331,44037,Jackson,TN,374,Jackson,TN
-38332,44037,Jackson,TN,374,Jackson,TN
-38333,44005,Camden,TN,380,Nashville,TN
-38334,44037,Jackson,TN,374,Jackson,TN
-38336,44037,Jackson,TN,374,Jackson,TN
-38337,44037,Jackson,TN,374,Jackson,TN
-38338,44037,Jackson,TN,374,Jackson,TN
-38339,25022,Corinth,MS,379,Memphis,TN
-38340,44037,Jackson,TN,374,Jackson,TN
-38341,44005,Camden,TN,380,Nashville,TN
-38342,44036,Huntingdon,TN,374,Jackson,TN
-38343,44037,Jackson,TN,374,Jackson,TN
-38344,44036,Huntingdon,TN,374,Jackson,TN
-38345,44049,Lexington,TN,374,Jackson,TN
-38346,44037,Jackson,TN,374,Jackson,TN
-38347,44037,Jackson,TN,374,Jackson,TN
-38348,44037,Jackson,TN,374,Jackson,TN
-38351,44049,Lexington,TN,374,Jackson,TN
-38352,44049,Lexington,TN,374,Jackson,TN
-38355,44037,Jackson,TN,374,Jackson,TN
-38356,44037,Jackson,TN,374,Jackson,TN
-38357,25022,Corinth,MS,379,Memphis,TN
-38358,44060,Milan,TN,374,Jackson,TN
-38359,44037,Jackson,TN,374,Jackson,TN
-38361,44075,Savannah,TN,379,Memphis,TN
-38362,44037,Jackson,TN,374,Jackson,TN
-38363,44068,Parsons,TN,374,Jackson,TN
-38365,44075,Savannah,TN,379,Memphis,TN
-38366,44037,Jackson,TN,374,Jackson,TN
-38367,25022,Corinth,MS,379,Memphis,TN
-38368,44037,Jackson,TN,374,Jackson,TN
-38369,44037,Jackson,TN,374,Jackson,TN
-38370,44075,Savannah,TN,379,Memphis,TN
-38371,44037,Jackson,TN,374,Jackson,TN
-38372,44075,Savannah,TN,379,Memphis,TN
-38374,44068,Parsons,TN,374,Jackson,TN
-38375,44076,Selmer,TN,379,Memphis,TN
-38376,44076,Selmer,TN,379,Memphis,TN
-38377,44037,Jackson,TN,374,Jackson,TN
-38378,44037,Jackson,TN,374,Jackson,TN
-38379,44076,Selmer,TN,379,Memphis,TN
-38380,44068,Parsons,TN,374,Jackson,TN
-38381,44037,Jackson,TN,374,Jackson,TN
-38382,44037,Jackson,TN,374,Jackson,TN
-38387,44036,Huntingdon,TN,374,Jackson,TN
-38388,44049,Lexington,TN,374,Jackson,TN
-38389,44037,Jackson,TN,374,Jackson,TN
-38390,44036,Huntingdon,TN,374,Jackson,TN
-38391,44037,Jackson,TN,374,Jackson,TN
-38392,44037,Jackson,TN,374,Jackson,TN
-38393,25022,Corinth,MS,379,Memphis,TN
-38401,44012,Columbia,TN,380,Nashville,TN
-38402,44012,Columbia,TN,380,Nashville,TN
-38425,44050,Linden,TN,380,Nashville,TN
-38449,1051,Huntsville,AL,5,Huntsville,AL
-38450,44091,Waynesboro,TN,380,Nashville,TN
-38451,44012,Columbia,TN,380,Nashville,TN
-38452,1036,Florence,AL,1,Birmingham,AL
-38453,44025,Fayetteville,TN,5,Huntsville,AL
-38454,44012,Columbia,TN,380,Nashville,TN
-38455,1051,Huntsville,AL,5,Huntsville,AL
-38456,44046,Lawrenceburg,TN,380,Nashville,TN
-38457,44046,Lawrenceburg,TN,380,Nashville,TN
-38459,44025,Fayetteville,TN,5,Huntsville,AL
-38460,44071,Pulaski,TN,380,Nashville,TN
-38461,44012,Columbia,TN,380,Nashville,TN
-38462,44012,Columbia,TN,380,Nashville,TN
-38463,1036,Florence,AL,1,Birmingham,AL
-38464,44046,Lawrenceburg,TN,380,Nashville,TN
-38468,44046,Lawrenceburg,TN,380,Nashville,TN
-38469,44046,Lawrenceburg,TN,380,Nashville,TN
-38471,1036,Florence,AL,1,Birmingham,AL
-38472,44012,Columbia,TN,380,Nashville,TN
-38473,44071,Pulaski,TN,380,Nashville,TN
-38474,44012,Columbia,TN,380,Nashville,TN
-38475,44075,Savannah,TN,379,Memphis,TN
-38476,44012,Columbia,TN,380,Nashville,TN
-38477,44071,Pulaski,TN,380,Nashville,TN
-38478,44071,Pulaski,TN,380,Nashville,TN
-38481,1036,Florence,AL,1,Birmingham,AL
-38482,44012,Columbia,TN,380,Nashville,TN
-38483,44012,Columbia,TN,380,Nashville,TN
-38485,44091,Waynesboro,TN,380,Nashville,TN
-38486,44046,Lawrenceburg,TN,380,Nashville,TN
-38487,44012,Columbia,TN,380,Nashville,TN
-38488,1051,Huntsville,AL,5,Huntsville,AL
-38501,44013,Cookeville,TN,380,Nashville,TN
-38502,44013,Cookeville,TN,380,Nashville,TN
-38503,44013,Cookeville,TN,380,Nashville,TN
-38504,44038,Jamestown,TN,380,Nashville,TN
-38505,44013,Cookeville,TN,380,Nashville,TN
-38506,44013,Cookeville,TN,380,Nashville,TN
-38541,44051,Livingston,TN,380,Nashville,TN
-38542,44051,Livingston,TN,380,Nashville,TN
-38543,44051,Livingston,TN,380,Nashville,TN
-38544,44013,Cookeville,TN,380,Nashville,TN
-38545,44013,Cookeville,TN,380,Nashville,TN
-38547,44006,Carthage,TN,380,Nashville,TN
-38548,44006,Carthage,TN,380,Nashville,TN
-38549,44051,Livingston,TN,380,Nashville,TN
-38550,44058,McMinnville,TN,380,Nashville,TN
-38551,44007,Celina,TN,380,Nashville,TN
-38552,44006,Carthage,TN,380,Nashville,TN
-38553,44016,Crossville,TN,380,Nashville,TN
-38554,44051,Livingston,TN,380,Nashville,TN
-38555,44016,Crossville,TN,380,Nashville,TN
-38556,44038,Jamestown,TN,380,Nashville,TN
-38557,44016,Crossville,TN,380,Nashville,TN
-38558,44016,Crossville,TN,380,Nashville,TN
-38559,44083,Sparta,TN,380,Nashville,TN
-38560,44006,Carthage,TN,380,Nashville,TN
-38562,44027,Gainesboro,TN,380,Nashville,TN
-38563,44006,Carthage,TN,380,Nashville,TN
-38564,44027,Gainesboro,TN,380,Nashville,TN
-38565,44038,Jamestown,TN,380,Nashville,TN
-38567,44006,Carthage,TN,380,Nashville,TN
-38568,44051,Livingston,TN,380,Nashville,TN
-38569,44006,Carthage,TN,380,Nashville,TN
-38570,44051,Livingston,TN,380,Nashville,TN
-38571,44016,Crossville,TN,380,Nashville,TN
-38572,44016,Crossville,TN,380,Nashville,TN
-38573,44051,Livingston,TN,380,Nashville,TN
-38574,44016,Crossville,TN,380,Nashville,TN
-38575,44027,Gainesboro,TN,380,Nashville,TN
-38577,44051,Livingston,TN,380,Nashville,TN
-38578,44016,Crossville,TN,380,Nashville,TN
-38579,44083,Sparta,TN,380,Nashville,TN
-38580,44051,Livingston,TN,380,Nashville,TN
-38581,44058,McMinnville,TN,380,Nashville,TN
-38582,44013,Cookeville,TN,380,Nashville,TN
-38583,44083,Sparta,TN,380,Nashville,TN
-38585,44058,McMinnville,TN,380,Nashville,TN
-38587,44083,Sparta,TN,380,Nashville,TN
-38588,44027,Gainesboro,TN,380,Nashville,TN
-38589,44051,Livingston,TN,380,Nashville,TN
-38601,25063,Oxford,MS,261,Oxford,MS
-38602,44059,Memphis,TN,379,Memphis,TN
-38603,44059,Memphis,TN,379,Memphis,TN
-38606,25004,Batesville,MS,261,Oxford,MS
-38609,25052,Marks,MS,379,Memphis,TN
-38610,25075,Ripley,MS,379,Memphis,TN
-38611,44059,Memphis,TN,379,Memphis,TN
-38614,25017,Clarksdale,MS,379,Memphis,TN
-38617,25017,Clarksdale,MS,379,Memphis,TN
-38618,44059,Memphis,TN,379,Memphis,TN
-38619,44059,Memphis,TN,379,Memphis,TN
-38620,25063,Oxford,MS,261,Oxford,MS
-38621,44059,Memphis,TN,379,Memphis,TN
-38622,25017,Clarksdale,MS,379,Memphis,TN
-38623,44059,Memphis,TN,379,Memphis,TN
-38625,25060,New Albany,MS,262,Tupelo,MS
-38626,44059,Memphis,TN,379,Memphis,TN
-38627,25060,New Albany,MS,262,Tupelo,MS
-38628,44059,Memphis,TN,379,Memphis,TN
-38629,25075,Ripley,MS,379,Memphis,TN
-38630,25017,Clarksdale,MS,379,Memphis,TN
-38631,25017,Clarksdale,MS,379,Memphis,TN
-38632,44059,Memphis,TN,379,Memphis,TN
-38633,25060,New Albany,MS,262,Tupelo,MS
-38634,44059,Memphis,TN,379,Memphis,TN
-38635,44059,Memphis,TN,379,Memphis,TN
-38637,44059,Memphis,TN,379,Memphis,TN
-38638,44059,Memphis,TN,379,Memphis,TN
-38639,25017,Clarksdale,MS,379,Memphis,TN
-38641,44059,Memphis,TN,379,Memphis,TN
-38642,44059,Memphis,TN,379,Memphis,TN
-38643,25017,Clarksdale,MS,379,Memphis,TN
-38644,25017,Clarksdale,MS,379,Memphis,TN
-38645,25017,Clarksdale,MS,379,Memphis,TN
-38646,25052,Marks,MS,379,Memphis,TN
-38647,44059,Memphis,TN,379,Memphis,TN
-38649,44059,Memphis,TN,379,Memphis,TN
-38650,25060,New Albany,MS,262,Tupelo,MS
-38651,44059,Memphis,TN,379,Memphis,TN
-38652,25060,New Albany,MS,262,Tupelo,MS
-38654,44059,Memphis,TN,379,Memphis,TN
-38655,25063,Oxford,MS,261,Oxford,MS
-38658,25063,Oxford,MS,261,Oxford,MS
-38659,25060,New Albany,MS,262,Tupelo,MS
-38661,44059,Memphis,TN,379,Memphis,TN
-38663,25075,Ripley,MS,379,Memphis,TN
-38664,44059,Memphis,TN,379,Memphis,TN
-38665,44059,Memphis,TN,379,Memphis,TN
-38666,25004,Batesville,MS,261,Oxford,MS
-38668,44059,Memphis,TN,379,Memphis,TN
-38669,25017,Clarksdale,MS,379,Memphis,TN
-38670,44059,Memphis,TN,379,Memphis,TN
-38671,44059,Memphis,TN,379,Memphis,TN
-38672,44059,Memphis,TN,379,Memphis,TN
-38673,25063,Oxford,MS,261,Oxford,MS
-38674,25075,Ripley,MS,379,Memphis,TN
-38675,25063,Oxford,MS,261,Oxford,MS
-38676,44059,Memphis,TN,379,Memphis,TN
-38677,25063,Oxford,MS,261,Oxford,MS
-38679,44059,Memphis,TN,379,Memphis,TN
-38680,44059,Memphis,TN,379,Memphis,TN
-38683,25075,Ripley,MS,379,Memphis,TN
-38685,25063,Oxford,MS,261,Oxford,MS
-38686,44059,Memphis,TN,379,Memphis,TN
-38701,25029,Greenville,MS,379,Memphis,TN
-38702,25029,Greenville,MS,379,Memphis,TN
-38703,25029,Greenville,MS,379,Memphis,TN
-38704,25029,Greenville,MS,379,Memphis,TN
-38720,25017,Clarksdale,MS,379,Memphis,TN
-38721,25076,Rolling Fork,MS,259,Jackson,MS
-38722,25029,Greenville,MS,379,Memphis,TN
-38723,25029,Greenville,MS,379,Memphis,TN
-38725,25029,Greenville,MS,379,Memphis,TN
-38726,25018,Cleveland,MS,379,Memphis,TN
-38730,25018,Cleveland,MS,379,Memphis,TN
-38731,25029,Greenville,MS,379,Memphis,TN
-38732,25018,Cleveland,MS,379,Memphis,TN
-38733,25018,Cleveland,MS,379,Memphis,TN
-38736,25037,Indianola,MS,259,Jackson,MS
-38737,25077,Ruleville,MS,259,Jackson,MS
-38738,25077,Ruleville,MS,259,Jackson,MS
-38739,25017,Clarksdale,MS,379,Memphis,TN
-38740,25018,Cleveland,MS,379,Memphis,TN
-38744,25029,Greenville,MS,379,Memphis,TN
-38745,25076,Rolling Fork,MS,259,Jackson,MS
-38746,25018,Cleveland,MS,379,Memphis,TN
-38748,25029,Greenville,MS,379,Memphis,TN
-38749,25037,Indianola,MS,259,Jackson,MS
-38751,25037,Indianola,MS,259,Jackson,MS
-38753,25037,Indianola,MS,259,Jackson,MS
-38754,25007,Belzoni,MS,259,Jackson,MS
-38756,25029,Greenville,MS,379,Memphis,TN
-38759,25018,Cleveland,MS,379,Memphis,TN
-38760,25029,Greenville,MS,379,Memphis,TN
-38761,25037,Indianola,MS,259,Jackson,MS
-38762,25018,Cleveland,MS,379,Memphis,TN
-38764,25018,Cleveland,MS,379,Memphis,TN
-38765,25076,Rolling Fork,MS,259,Jackson,MS
-38767,25017,Clarksdale,MS,379,Memphis,TN
-38768,25077,Ruleville,MS,259,Jackson,MS
-38769,25018,Cleveland,MS,379,Memphis,TN
-38771,25077,Ruleville,MS,259,Jackson,MS
-38772,25029,Greenville,MS,379,Memphis,TN
-38773,25018,Cleveland,MS,379,Memphis,TN
-38774,25018,Cleveland,MS,379,Memphis,TN
-38776,25029,Greenville,MS,379,Memphis,TN
-38778,25037,Indianola,MS,259,Jackson,MS
-38780,25029,Greenville,MS,379,Memphis,TN
-38781,25018,Cleveland,MS,379,Memphis,TN
-38782,25029,Greenville,MS,379,Memphis,TN
-38801,25084,Tupelo,MS,262,Tupelo,MS
-38802,25084,Tupelo,MS,262,Tupelo,MS
-38803,25084,Tupelo,MS,262,Tupelo,MS
-38804,25084,Tupelo,MS,262,Tupelo,MS
-38820,25084,Tupelo,MS,262,Tupelo,MS
-38821,25003,Amory,MS,262,Tupelo,MS
-38824,25084,Tupelo,MS,262,Tupelo,MS
-38825,25003,Amory,MS,262,Tupelo,MS
-38826,25084,Tupelo,MS,262,Tupelo,MS
-38827,25084,Tupelo,MS,262,Tupelo,MS
-38828,25084,Tupelo,MS,262,Tupelo,MS
-38829,25009,Booneville,MS,262,Tupelo,MS
-38833,25038,Iuka,MS,1,Birmingham,AL
-38834,25022,Corinth,MS,379,Memphis,TN
-38835,25022,Corinth,MS,379,Memphis,TN
-38838,25084,Tupelo,MS,262,Tupelo,MS
-38839,25012,Calhoun City,MS,261,Oxford,MS
-38841,25084,Tupelo,MS,262,Tupelo,MS
-38843,25084,Tupelo,MS,262,Tupelo,MS
-38844,25003,Amory,MS,262,Tupelo,MS
-38846,25022,Corinth,MS,379,Memphis,TN
-38847,25084,Tupelo,MS,262,Tupelo,MS
-38848,25003,Amory,MS,262,Tupelo,MS
-38849,25084,Tupelo,MS,262,Tupelo,MS
-38850,25084,Tupelo,MS,262,Tupelo,MS
-38851,25036,Houston,MS,261,Oxford,MS
-38852,25038,Iuka,MS,1,Birmingham,AL
-38855,25084,Tupelo,MS,262,Tupelo,MS
-38856,25084,Tupelo,MS,262,Tupelo,MS
-38857,25084,Tupelo,MS,262,Tupelo,MS
-38858,25084,Tupelo,MS,262,Tupelo,MS
-38859,25084,Tupelo,MS,262,Tupelo,MS
-38860,25084,Tupelo,MS,262,Tupelo,MS
-38862,25084,Tupelo,MS,262,Tupelo,MS
-38863,25084,Tupelo,MS,262,Tupelo,MS
-38864,25084,Tupelo,MS,262,Tupelo,MS
-38865,25022,Corinth,MS,379,Memphis,TN
-38866,25084,Tupelo,MS,262,Tupelo,MS
-38868,25084,Tupelo,MS,262,Tupelo,MS
-38869,25084,Tupelo,MS,262,Tupelo,MS
-38870,25003,Amory,MS,262,Tupelo,MS
-38871,25084,Tupelo,MS,262,Tupelo,MS
-38873,25038,Iuka,MS,1,Birmingham,AL
-38874,25084,Tupelo,MS,262,Tupelo,MS
-38875,25036,Houston,MS,261,Oxford,MS
-38876,25084,Tupelo,MS,262,Tupelo,MS
-38877,25036,Houston,MS,261,Oxford,MS
-38878,25036,Houston,MS,261,Oxford,MS
-38879,25084,Tupelo,MS,262,Tupelo,MS
-38880,25084,Tupelo,MS,262,Tupelo,MS
-38901,25031,Grenada,MS,261,Oxford,MS
-38902,25031,Grenada,MS,261,Oxford,MS
-38913,25063,Oxford,MS,261,Oxford,MS
-38914,25012,Calhoun City,MS,261,Oxford,MS
-38915,25063,Oxford,MS,261,Oxford,MS
-38916,25012,Calhoun City,MS,261,Oxford,MS
-38917,25030,Greenwood,MS,259,Jackson,MS
-38920,25031,Grenada,MS,261,Oxford,MS
-38921,25016,Charleston,MS,261,Oxford,MS
-38922,25031,Grenada,MS,261,Oxford,MS
-38923,25030,Greenwood,MS,259,Jackson,MS
-38924,25030,Greenwood,MS,259,Jackson,MS
-38925,25031,Grenada,MS,261,Oxford,MS
-38926,25031,Grenada,MS,261,Oxford,MS
-38927,25063,Oxford,MS,261,Oxford,MS
-38928,25016,Charleston,MS,261,Oxford,MS
-38929,25031,Grenada,MS,261,Oxford,MS
-38930,25030,Greenwood,MS,259,Jackson,MS
-38935,25030,Greenwood,MS,259,Jackson,MS
-38940,25031,Grenada,MS,261,Oxford,MS
-38941,25030,Greenwood,MS,259,Jackson,MS
-38943,25030,Greenwood,MS,259,Jackson,MS
-38944,25030,Greenwood,MS,259,Jackson,MS
-38945,25030,Greenwood,MS,259,Jackson,MS
-38946,25030,Greenwood,MS,259,Jackson,MS
-38947,25030,Greenwood,MS,259,Jackson,MS
-38948,25063,Oxford,MS,261,Oxford,MS
-38949,25063,Oxford,MS,261,Oxford,MS
-38950,25030,Greenwood,MS,259,Jackson,MS
-38951,25063,Oxford,MS,261,Oxford,MS
-38952,25030,Greenwood,MS,259,Jackson,MS
-38953,25031,Grenada,MS,261,Oxford,MS
-38954,25030,Greenwood,MS,259,Jackson,MS
-38955,25012,Calhoun City,MS,261,Oxford,MS
-38957,25017,Clarksdale,MS,379,Memphis,TN
-38958,25016,Charleston,MS,261,Oxford,MS
-38959,25030,Greenwood,MS,259,Jackson,MS
-38960,25031,Grenada,MS,261,Oxford,MS
-38961,25031,Grenada,MS,261,Oxford,MS
-38962,25016,Charleston,MS,261,Oxford,MS
-38963,25017,Clarksdale,MS,379,Memphis,TN
-38964,25017,Clarksdale,MS,379,Memphis,TN
-38965,25063,Oxford,MS,261,Oxford,MS
-38966,25017,Clarksdale,MS,379,Memphis,TN
-38967,25093,Winona,MS,259,Jackson,MS
-39038,25007,Belzoni,MS,259,Jackson,MS
-39039,25039,Jackson,MS,259,Jackson,MS
-39040,25039,Jackson,MS,259,Jackson,MS
-39041,25039,Jackson,MS,259,Jackson,MS
-39042,25039,Jackson,MS,259,Jackson,MS
-39043,25039,Jackson,MS,259,Jackson,MS
-39044,25039,Jackson,MS,259,Jackson,MS
-39045,25039,Jackson,MS,259,Jackson,MS
-39046,25039,Jackson,MS,259,Jackson,MS
-39047,25039,Jackson,MS,259,Jackson,MS
-39051,25014,Carthage,MS,259,Jackson,MS
-39054,25076,Rolling Fork,MS,259,Jackson,MS
-39056,25039,Jackson,MS,259,Jackson,MS
-39057,25056,Meridian,MS,260,Meridian,MS
-39058,25039,Jackson,MS,259,Jackson,MS
-39059,25039,Jackson,MS,259,Jackson,MS
-39060,25039,Jackson,MS,259,Jackson,MS
-39061,25076,Rolling Fork,MS,259,Jackson,MS
-39062,25055,Mendenhall,MS,259,Jackson,MS
-39063,25039,Jackson,MS,259,Jackson,MS
-39066,25039,Jackson,MS,259,Jackson,MS
-39067,25041,Kosciusko,MS,259,Jackson,MS
-39069,25026,Fayette,MS,259,Jackson,MS
-39071,25039,Jackson,MS,259,Jackson,MS
-39073,25039,Jackson,MS,259,Jackson,MS
-39074,25039,Jackson,MS,259,Jackson,MS
-39077,25034,Hazlehurst,MS,259,Jackson,MS
-39078,25039,Jackson,MS,259,Jackson,MS
-39079,25039,Jackson,MS,259,Jackson,MS
-39080,25039,Jackson,MS,259,Jackson,MS
-39081,25026,Fayette,MS,259,Jackson,MS
-39082,25039,Jackson,MS,259,Jackson,MS
-39083,25034,Hazlehurst,MS,259,Jackson,MS
-39086,25070,Port Gibson,MS,259,Jackson,MS
-39087,25039,Jackson,MS,259,Jackson,MS
-39088,25094,Yazoo City,MS,259,Jackson,MS
-39090,25041,Kosciusko,MS,259,Jackson,MS
-39092,25027,Forest,MS,259,Jackson,MS
-39094,25039,Jackson,MS,259,Jackson,MS
-39095,25044,Lexington,MS,259,Jackson,MS
-39096,25026,Fayette,MS,259,Jackson,MS
-39097,25007,Belzoni,MS,259,Jackson,MS
-39098,25039,Jackson,MS,259,Jackson,MS
-39107,25041,Kosciusko,MS,259,Jackson,MS
-39108,25041,Kosciusko,MS,259,Jackson,MS
-39109,25039,Jackson,MS,259,Jackson,MS
-39110,25039,Jackson,MS,259,Jackson,MS
-39111,25050,Magee,MS,259,Jackson,MS
-39113,25076,Rolling Fork,MS,259,Jackson,MS
-39114,25055,Mendenhall,MS,259,Jackson,MS
-39115,25007,Belzoni,MS,259,Jackson,MS
-39116,25050,Magee,MS,259,Jackson,MS
-39117,25039,Jackson,MS,259,Jackson,MS
-39119,25050,Magee,MS,259,Jackson,MS
-39120,25059,Natchez,MS,259,Jackson,MS
-39121,25059,Natchez,MS,259,Jackson,MS
-39122,25059,Natchez,MS,259,Jackson,MS
-39130,25039,Jackson,MS,259,Jackson,MS
-39140,25039,Jackson,MS,259,Jackson,MS
-39144,25070,Port Gibson,MS,259,Jackson,MS
-39145,25039,Jackson,MS,259,Jackson,MS
-39146,25039,Jackson,MS,259,Jackson,MS
-39148,25039,Jackson,MS,259,Jackson,MS
-39149,25039,Jackson,MS,259,Jackson,MS
-39150,25070,Port Gibson,MS,259,Jackson,MS
-39151,25039,Jackson,MS,259,Jackson,MS
-39152,25027,Forest,MS,259,Jackson,MS
-39153,25039,Jackson,MS,259,Jackson,MS
-39154,25039,Jackson,MS,259,Jackson,MS
-39156,25087,Vicksburg,MS,259,Jackson,MS
-39157,25039,Jackson,MS,259,Jackson,MS
-39158,25039,Jackson,MS,259,Jackson,MS
-39159,25076,Rolling Fork,MS,259,Jackson,MS
-39160,25041,Kosciusko,MS,259,Jackson,MS
-39161,25039,Jackson,MS,259,Jackson,MS
-39162,25094,Yazoo City,MS,259,Jackson,MS
-39163,25039,Jackson,MS,259,Jackson,MS
-39165,25059,Natchez,MS,259,Jackson,MS
-39166,25007,Belzoni,MS,259,Jackson,MS
-39167,25039,Jackson,MS,259,Jackson,MS
-39168,25042,Laurel,MS,258,Hattiesburg,MS
-39169,25044,Lexington,MS,259,Jackson,MS
-39170,25039,Jackson,MS,259,Jackson,MS
-39171,25014,Carthage,MS,259,Jackson,MS
-39173,25039,Jackson,MS,259,Jackson,MS
-39174,25039,Jackson,MS,259,Jackson,MS
-39175,25039,Jackson,MS,259,Jackson,MS
-39176,25093,Winona,MS,259,Jackson,MS
-39177,25087,Vicksburg,MS,259,Jackson,MS
-39179,25039,Jackson,MS,259,Jackson,MS
-39180,25087,Vicksburg,MS,259,Jackson,MS
-39181,25087,Vicksburg,MS,259,Jackson,MS
-39182,25087,Vicksburg,MS,259,Jackson,MS
-39183,25087,Vicksburg,MS,259,Jackson,MS
-39189,25014,Carthage,MS,259,Jackson,MS
-39190,25059,Natchez,MS,259,Jackson,MS
-39191,25011,Brookhaven,MS,259,Jackson,MS
-39192,25039,Jackson,MS,259,Jackson,MS
-39193,25039,Jackson,MS,259,Jackson,MS
-39194,25094,Yazoo City,MS,259,Jackson,MS
-39201,25039,Jackson,MS,259,Jackson,MS
-39202,25039,Jackson,MS,259,Jackson,MS
-39203,25039,Jackson,MS,259,Jackson,MS
-39204,25039,Jackson,MS,259,Jackson,MS
-39205,25039,Jackson,MS,259,Jackson,MS
-39206,25039,Jackson,MS,259,Jackson,MS
-39207,25039,Jackson,MS,259,Jackson,MS
-39208,25039,Jackson,MS,259,Jackson,MS
-39209,25039,Jackson,MS,259,Jackson,MS
-39210,25039,Jackson,MS,259,Jackson,MS
-39211,25039,Jackson,MS,259,Jackson,MS
-39212,25039,Jackson,MS,259,Jackson,MS
-39213,25039,Jackson,MS,259,Jackson,MS
-39215,25039,Jackson,MS,259,Jackson,MS
-39216,25039,Jackson,MS,259,Jackson,MS
-39217,25039,Jackson,MS,259,Jackson,MS
-39218,25039,Jackson,MS,259,Jackson,MS
-39225,25039,Jackson,MS,259,Jackson,MS
-39232,25039,Jackson,MS,259,Jackson,MS
-39236,25039,Jackson,MS,259,Jackson,MS
-39250,25039,Jackson,MS,259,Jackson,MS
-39269,25039,Jackson,MS,259,Jackson,MS
-39271,25039,Jackson,MS,259,Jackson,MS
-39272,25039,Jackson,MS,259,Jackson,MS
-39282,25039,Jackson,MS,259,Jackson,MS
-39283,25039,Jackson,MS,259,Jackson,MS
-39284,25039,Jackson,MS,259,Jackson,MS
-39286,25039,Jackson,MS,259,Jackson,MS
-39288,25039,Jackson,MS,259,Jackson,MS
-39289,25039,Jackson,MS,259,Jackson,MS
-39296,25039,Jackson,MS,259,Jackson,MS
-39298,25039,Jackson,MS,259,Jackson,MS
-39301,25056,Meridian,MS,260,Meridian,MS
-39302,25056,Meridian,MS,260,Meridian,MS
-39303,25056,Meridian,MS,260,Meridian,MS
-39304,25056,Meridian,MS,260,Meridian,MS
-39305,25056,Meridian,MS,260,Meridian,MS
-39307,25056,Meridian,MS,260,Meridian,MS
-39309,25056,Meridian,MS,260,Meridian,MS
-39320,25056,Meridian,MS,260,Meridian,MS
-39322,25089,Waynesboro,MS,258,Hattiesburg,MS
-39323,25056,Meridian,MS,260,Meridian,MS
-39324,25089,Waynesboro,MS,258,Hattiesburg,MS
-39325,25056,Meridian,MS,260,Meridian,MS
-39326,25056,Meridian,MS,260,Meridian,MS
-39327,25056,Meridian,MS,260,Meridian,MS
-39328,25056,Meridian,MS,260,Meridian,MS
-39330,25056,Meridian,MS,260,Meridian,MS
-39332,25056,Meridian,MS,260,Meridian,MS
-39335,25056,Meridian,MS,260,Meridian,MS
-39336,25056,Meridian,MS,260,Meridian,MS
-39337,25056,Meridian,MS,260,Meridian,MS
-39338,25042,Laurel,MS,258,Hattiesburg,MS
-39339,25045,Louisville,MS,259,Jackson,MS
-39341,25048,Macon,MS,260,Meridian,MS
-39342,25056,Meridian,MS,260,Meridian,MS
-39345,25056,Meridian,MS,260,Meridian,MS
-39346,25045,Louisville,MS,259,Jackson,MS
-39347,25056,Meridian,MS,260,Meridian,MS
-39348,25042,Laurel,MS,258,Hattiesburg,MS
-39350,25056,Meridian,MS,260,Meridian,MS
-39352,25056,Meridian,MS,260,Meridian,MS
-39354,25056,Meridian,MS,260,Meridian,MS
-39355,25072,Quitman,MS,260,Meridian,MS
-39356,25056,Meridian,MS,260,Meridian,MS
-39358,25056,Meridian,MS,260,Meridian,MS
-39359,25039,Jackson,MS,259,Jackson,MS
-39360,25072,Quitman,MS,260,Meridian,MS
-39361,25048,Macon,MS,260,Meridian,MS
-39362,25089,Waynesboro,MS,258,Hattiesburg,MS
-39363,25056,Meridian,MS,260,Meridian,MS
-39364,25056,Meridian,MS,260,Meridian,MS
-39365,25056,Meridian,MS,260,Meridian,MS
-39366,25072,Quitman,MS,260,Meridian,MS
-39367,25089,Waynesboro,MS,258,Hattiesburg,MS
-39401,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39402,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39403,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39404,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39406,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39407,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39421,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39422,25042,Laurel,MS,258,Hattiesburg,MS
-39423,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39425,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39426,25066,Picayune,MS,220,Slidell,LA
-39427,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39428,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39429,25020,Columbia,MS,259,Jackson,MS
-39436,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39437,25042,Laurel,MS,258,Hattiesburg,MS
-39439,25042,Laurel,MS,258,Hattiesburg,MS
-39440,25042,Laurel,MS,258,Hattiesburg,MS
-39441,25042,Laurel,MS,258,Hattiesburg,MS
-39442,25042,Laurel,MS,258,Hattiesburg,MS
-39443,25042,Laurel,MS,258,Hattiesburg,MS
-39451,25046,Lucedale,MS,6,Mobile,AL
-39452,25046,Lucedale,MS,6,Mobile,AL
-39455,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39456,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39457,25066,Picayune,MS,220,Slidell,LA
-39459,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39460,25042,Laurel,MS,258,Hattiesburg,MS
-39461,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39462,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39463,25066,Picayune,MS,220,Slidell,LA
-39464,25042,Laurel,MS,258,Hattiesburg,MS
-39465,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39466,25066,Picayune,MS,220,Slidell,LA
-39470,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39474,25071,Prentiss,MS,259,Jackson,MS
-39475,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39476,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39477,25042,Laurel,MS,258,Hattiesburg,MS
-39478,25085,Tylertown,MS,259,Jackson,MS
-39479,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39480,25042,Laurel,MS,258,Hattiesburg,MS
-39481,25042,Laurel,MS,258,Hattiesburg,MS
-39482,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39483,25020,Columbia,MS,259,Jackson,MS
-39501,25032,Gulfport,MS,257,Gulfport,MS
-39502,25032,Gulfport,MS,257,Gulfport,MS
-39503,25032,Gulfport,MS,257,Gulfport,MS
-39505,25032,Gulfport,MS,257,Gulfport,MS
-39506,25032,Gulfport,MS,257,Gulfport,MS
-39507,25032,Gulfport,MS,257,Gulfport,MS
-39520,25006,Bay St. Louis,MS,220,Slidell,LA
-39521,25006,Bay St. Louis,MS,220,Slidell,LA
-39522,25006,Bay St. Louis,MS,220,Slidell,LA
-39525,25006,Bay St. Louis,MS,220,Slidell,LA
-39529,25006,Bay St. Louis,MS,220,Slidell,LA
-39530,25008,Biloxi,MS,257,Gulfport,MS
-39531,25008,Biloxi,MS,257,Gulfport,MS
-39532,25008,Biloxi,MS,257,Gulfport,MS
-39533,25008,Biloxi,MS,257,Gulfport,MS
-39534,25008,Biloxi,MS,257,Gulfport,MS
-39535,25008,Biloxi,MS,257,Gulfport,MS
-39540,25008,Biloxi,MS,257,Gulfport,MS
-39552,25064,Pascagoula,MS,6,Mobile,AL
-39553,25064,Pascagoula,MS,6,Mobile,AL
-39555,25064,Pascagoula,MS,6,Mobile,AL
-39556,25006,Bay St. Louis,MS,220,Slidell,LA
-39558,25006,Bay St. Louis,MS,220,Slidell,LA
-39560,25032,Gulfport,MS,257,Gulfport,MS
-39561,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39562,25064,Pascagoula,MS,6,Mobile,AL
-39563,25064,Pascagoula,MS,6,Mobile,AL
-39564,25064,Pascagoula,MS,6,Mobile,AL
-39565,25064,Pascagoula,MS,6,Mobile,AL
-39566,25064,Pascagoula,MS,6,Mobile,AL
-39567,25064,Pascagoula,MS,6,Mobile,AL
-39568,25064,Pascagoula,MS,6,Mobile,AL
-39569,25064,Pascagoula,MS,6,Mobile,AL
-39571,25032,Gulfport,MS,257,Gulfport,MS
-39572,25006,Bay St. Louis,MS,220,Slidell,LA
-39573,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39574,25032,Gulfport,MS,257,Gulfport,MS
-39576,25006,Bay St. Louis,MS,220,Slidell,LA
-39577,25033,Hattiesburg,MS,258,Hattiesburg,MS
-39581,25064,Pascagoula,MS,6,Mobile,AL
-39595,25064,Pascagoula,MS,6,Mobile,AL
-39601,25011,Brookhaven,MS,259,Jackson,MS
-39602,25011,Brookhaven,MS,259,Jackson,MS
-39603,25011,Brookhaven,MS,259,Jackson,MS
-39629,25011,Brookhaven,MS,259,Jackson,MS
-39630,25054,Meadville,MS,259,Jackson,MS
-39631,25015,Centreville,MS,210,Baton Rouge,LA
-39632,25051,Magnolia,MS,259,Jackson,MS
-39633,25015,Centreville,MS,210,Baton Rouge,LA
-39635,25053,McComb,MS,259,Jackson,MS
-39638,25015,Centreville,MS,210,Baton Rouge,LA
-39641,25057,Monticello,MS,259,Jackson,MS
-39643,25020,Columbia,MS,259,Jackson,MS
-39645,25015,Centreville,MS,210,Baton Rouge,LA
-39647,25054,Meadville,MS,259,Jackson,MS
-39648,25053,McComb,MS,259,Jackson,MS
-39649,25053,McComb,MS,259,Jackson,MS
-39652,25051,Magnolia,MS,259,Jackson,MS
-39653,25054,Meadville,MS,259,Jackson,MS
-39654,25057,Monticello,MS,259,Jackson,MS
-39656,25057,Monticello,MS,259,Jackson,MS
-39657,25053,McComb,MS,259,Jackson,MS
-39661,25059,Natchez,MS,259,Jackson,MS
-39662,25011,Brookhaven,MS,259,Jackson,MS
-39663,25057,Monticello,MS,259,Jackson,MS
-39664,25053,McComb,MS,259,Jackson,MS
-39665,25011,Brookhaven,MS,259,Jackson,MS
-39666,25053,McComb,MS,259,Jackson,MS
-39667,25085,Tylertown,MS,259,Jackson,MS
-39668,25011,Brookhaven,MS,259,Jackson,MS
-39669,25015,Centreville,MS,210,Baton Rouge,LA
-39701,25021,Columbus,MS,262,Tupelo,MS
-39702,25021,Columbus,MS,262,Tupelo,MS
-39703,25021,Columbus,MS,262,Tupelo,MS
-39704,25021,Columbus,MS,262,Tupelo,MS
-39705,25021,Columbus,MS,262,Tupelo,MS
-39710,25021,Columbus,MS,262,Tupelo,MS
-39730,25084,Tupelo,MS,262,Tupelo,MS
-39735,25002,Ackerman,MS,259,Jackson,MS
-39736,25021,Columbus,MS,262,Tupelo,MS
-39737,25025,Eupora,MS,262,Tupelo,MS
-39739,25048,Macon,MS,260,Meridian,MS
-39740,25021,Columbus,MS,262,Tupelo,MS
-39741,25090,West Point,MS,262,Tupelo,MS
-39743,25021,Columbus,MS,262,Tupelo,MS
-39744,25025,Eupora,MS,262,Tupelo,MS
-39745,25041,Kosciusko,MS,259,Jackson,MS
-39746,25084,Tupelo,MS,262,Tupelo,MS
-39747,25040,Kilmichael,MS,259,Jackson,MS
-39750,25025,Eupora,MS,262,Tupelo,MS
-39751,25036,Houston,MS,261,Oxford,MS
-39752,25025,Eupora,MS,262,Tupelo,MS
-39753,25021,Columbus,MS,262,Tupelo,MS
-39754,25090,West Point,MS,262,Tupelo,MS
-39755,25090,West Point,MS,262,Tupelo,MS
-39756,25090,West Point,MS,262,Tupelo,MS
-39759,25082,Starkville,MS,262,Tupelo,MS
-39760,25082,Starkville,MS,262,Tupelo,MS
-39762,25082,Starkville,MS,262,Tupelo,MS
-39766,25021,Columbus,MS,262,Tupelo,MS
-39767,25040,Kilmichael,MS,259,Jackson,MS
-39769,25082,Starkville,MS,262,Tupelo,MS
-39771,25025,Eupora,MS,262,Tupelo,MS
-39772,25002,Ackerman,MS,259,Jackson,MS
-39773,25090,West Point,MS,262,Tupelo,MS
-39776,25036,Houston,MS,261,Oxford,MS
-39813,11005,Arlington,GA,142,Albany,GA
-39815,11010,Bainbridge,GA,140,Tallahassee,FL
-39817,11010,Bainbridge,GA,140,Tallahassee,FL
-39818,11010,Bainbridge,GA,140,Tallahassee,FL
-39819,11010,Bainbridge,GA,140,Tallahassee,FL
-39823,11014,Blakely,GA,2,Dothan,AL
-39824,1026,Dothan,AL,2,Dothan,AL
-39825,11010,Bainbridge,GA,140,Tallahassee,FL
-39826,11002,Albany,GA,142,Albany,GA
-39827,11020,Cairo,GA,140,Tallahassee,FL
-39828,11020,Cairo,GA,140,Tallahassee,FL
-39829,11020,Cairo,GA,140,Tallahassee,FL
-39832,11045,Donalsonville,GA,2,Dothan,AL
-39834,11010,Bainbridge,GA,140,Tallahassee,FL
-39836,11038,Cuthbert,GA,146,Columbus,GA
-39837,11031,Colquitt,GA,140,Tallahassee,FL
-39840,11038,Cuthbert,GA,146,Columbus,GA
-39841,11014,Blakely,GA,2,Dothan,AL
-39842,11002,Albany,GA,142,Albany,GA
-39845,11045,Donalsonville,GA,2,Dothan,AL
-39846,11005,Arlington,GA,142,Albany,GA
-39851,1026,Dothan,AL,2,Dothan,AL
-39852,11010,Bainbridge,GA,140,Tallahassee,FL
-39854,11038,Cuthbert,GA,146,Columbus,GA
-39859,11045,Donalsonville,GA,2,Dothan,AL
-39861,11045,Donalsonville,GA,2,Dothan,AL
-39862,11002,Albany,GA,142,Albany,GA
-39866,11002,Albany,GA,142,Albany,GA
-39867,11038,Cuthbert,GA,146,Columbus,GA
-39870,11002,Albany,GA,142,Albany,GA
-39877,11095,Richland,GA,146,Columbus,GA
-39885,11002,Albany,GA,142,Albany,GA
-39886,11002,Albany,GA,142,Albany,GA
-39897,11020,Cairo,GA,140,Tallahassee,FL
-39901,11007,Atlanta,GA,144,Atlanta,GA
-40003,18078,Shelbyville,KY,205,Louisville,KY
-40004,18004,Bardstown,KY,205,Louisville,KY
-40006,18013,Carrollton,KY,205,Louisville,KY
-40007,18078,Shelbyville,KY,205,Louisville,KY
-40008,18004,Bardstown,KY,205,Louisville,KY
-40009,18043,Lebanon,KY,205,Louisville,KY
-40010,18041,La Grange,KY,205,Louisville,KY
-40011,18041,La Grange,KY,205,Louisville,KY
-40012,18049,Louisville,KY,205,Louisville,KY
-40013,18049,Louisville,KY,205,Louisville,KY
-40014,18049,Louisville,KY,205,Louisville,KY
-40018,18049,Louisville,KY,205,Louisville,KY
-40019,18078,Shelbyville,KY,205,Louisville,KY
-40020,18049,Louisville,KY,205,Louisville,KY
-40022,18049,Louisville,KY,205,Louisville,KY
-40023,18049,Louisville,KY,205,Louisville,KY
-40025,18049,Louisville,KY,205,Louisville,KY
-40026,18049,Louisville,KY,205,Louisville,KY
-40027,18049,Louisville,KY,205,Louisville,KY
-40031,18041,La Grange,KY,205,Louisville,KY
-40032,18041,La Grange,KY,205,Louisville,KY
-40033,18043,Lebanon,KY,205,Louisville,KY
-40036,18078,Shelbyville,KY,205,Louisville,KY
-40037,18043,Lebanon,KY,205,Louisville,KY
-40040,18043,Lebanon,KY,205,Louisville,KY
-40041,18049,Louisville,KY,205,Louisville,KY
-40045,15052,Madison,IN,205,Louisville,KY
-40046,18078,Shelbyville,KY,205,Louisville,KY
-40047,18049,Louisville,KY,205,Louisville,KY
-40048,18004,Bardstown,KY,205,Louisville,KY
-40049,18043,Lebanon,KY,205,Louisville,KY
-40050,18041,La Grange,KY,205,Louisville,KY
-40051,18019,Elizabethtown,KY,205,Louisville,KY
-40052,18019,Elizabethtown,KY,205,Louisville,KY
-40055,18041,La Grange,KY,205,Louisville,KY
-40056,18049,Louisville,KY,205,Louisville,KY
-40057,18078,Shelbyville,KY,205,Louisville,KY
-40058,18041,La Grange,KY,205,Louisville,KY
-40059,18049,Louisville,KY,205,Louisville,KY
-40060,18043,Lebanon,KY,205,Louisville,KY
-40061,18043,Lebanon,KY,205,Louisville,KY
-40062,18043,Lebanon,KY,205,Louisville,KY
-40063,18043,Lebanon,KY,205,Louisville,KY
-40065,18078,Shelbyville,KY,205,Louisville,KY
-40066,18078,Shelbyville,KY,205,Louisville,KY
-40067,18049,Louisville,KY,205,Louisville,KY
-40068,18041,La Grange,KY,205,Louisville,KY
-40069,18043,Lebanon,KY,205,Louisville,KY
-40070,18041,La Grange,KY,205,Louisville,KY
-40071,18049,Louisville,KY,205,Louisville,KY
-40075,18041,La Grange,KY,205,Louisville,KY
-40076,18078,Shelbyville,KY,205,Louisville,KY
-40077,18041,La Grange,KY,205,Louisville,KY
-40078,18043,Lebanon,KY,205,Louisville,KY
-40104,18049,Louisville,KY,205,Louisville,KY
-40107,18019,Elizabethtown,KY,205,Louisville,KY
-40108,18049,Louisville,KY,205,Louisville,KY
-40109,18049,Louisville,KY,205,Louisville,KY
-40110,18049,Louisville,KY,205,Louisville,KY
-40111,18030,Hardinsburg,KY,205,Louisville,KY
-40115,18019,Elizabethtown,KY,205,Louisville,KY
-40117,18019,Elizabethtown,KY,205,Louisville,KY
-40118,18049,Louisville,KY,205,Louisville,KY
-40119,18044,Leitchfield,KY,205,Louisville,KY
-40121,18019,Elizabethtown,KY,205,Louisville,KY
-40122,18019,Elizabethtown,KY,205,Louisville,KY
-40129,18049,Louisville,KY,205,Louisville,KY
-40140,18019,Elizabethtown,KY,205,Louisville,KY
-40142,18019,Elizabethtown,KY,205,Louisville,KY
-40143,18030,Hardinsburg,KY,205,Louisville,KY
-40144,18030,Hardinsburg,KY,205,Louisville,KY
-40145,18044,Leitchfield,KY,205,Louisville,KY
-40146,18030,Hardinsburg,KY,205,Louisville,KY
-40150,18049,Louisville,KY,205,Louisville,KY
-40152,18044,Leitchfield,KY,205,Louisville,KY
-40153,18044,Leitchfield,KY,205,Louisville,KY
-40155,18049,Louisville,KY,205,Louisville,KY
-40157,18049,Louisville,KY,205,Louisville,KY
-40159,18019,Elizabethtown,KY,205,Louisville,KY
-40160,18019,Elizabethtown,KY,205,Louisville,KY
-40161,18049,Louisville,KY,205,Louisville,KY
-40162,18019,Elizabethtown,KY,205,Louisville,KY
-40165,18049,Louisville,KY,205,Louisville,KY
-40166,18049,Louisville,KY,205,Louisville,KY
-40170,18049,Louisville,KY,205,Louisville,KY
-40171,18049,Louisville,KY,205,Louisville,KY
-40175,18019,Elizabethtown,KY,205,Louisville,KY
-40176,18030,Hardinsburg,KY,205,Louisville,KY
-40177,18049,Louisville,KY,205,Louisville,KY
-40178,18030,Hardinsburg,KY,205,Louisville,KY
-40201,18049,Louisville,KY,205,Louisville,KY
-40202,18049,Louisville,KY,205,Louisville,KY
-40203,18049,Louisville,KY,205,Louisville,KY
-40204,18049,Louisville,KY,205,Louisville,KY
-40205,18049,Louisville,KY,205,Louisville,KY
-40206,18049,Louisville,KY,205,Louisville,KY
-40207,18049,Louisville,KY,205,Louisville,KY
-40208,18049,Louisville,KY,205,Louisville,KY
-40209,18049,Louisville,KY,205,Louisville,KY
-40210,18049,Louisville,KY,205,Louisville,KY
-40211,18049,Louisville,KY,205,Louisville,KY
-40212,18049,Louisville,KY,205,Louisville,KY
-40213,18049,Louisville,KY,205,Louisville,KY
-40214,18049,Louisville,KY,205,Louisville,KY
-40215,18049,Louisville,KY,205,Louisville,KY
-40216,18049,Louisville,KY,205,Louisville,KY
-40217,18049,Louisville,KY,205,Louisville,KY
-40218,18049,Louisville,KY,205,Louisville,KY
-40219,18049,Louisville,KY,205,Louisville,KY
-40220,18049,Louisville,KY,205,Louisville,KY
-40221,18049,Louisville,KY,205,Louisville,KY
-40222,18049,Louisville,KY,205,Louisville,KY
-40223,18049,Louisville,KY,205,Louisville,KY
-40224,18049,Louisville,KY,205,Louisville,KY
-40225,18049,Louisville,KY,205,Louisville,KY
-40228,18049,Louisville,KY,205,Louisville,KY
-40229,18049,Louisville,KY,205,Louisville,KY
-40231,18049,Louisville,KY,205,Louisville,KY
-40232,18049,Louisville,KY,205,Louisville,KY
-40233,18049,Louisville,KY,205,Louisville,KY
-40241,18049,Louisville,KY,205,Louisville,KY
-40242,18049,Louisville,KY,205,Louisville,KY
-40243,18049,Louisville,KY,205,Louisville,KY
-40245,18049,Louisville,KY,205,Louisville,KY
-40250,18049,Louisville,KY,205,Louisville,KY
-40251,18049,Louisville,KY,205,Louisville,KY
-40252,18049,Louisville,KY,205,Louisville,KY
-40253,18049,Louisville,KY,205,Louisville,KY
-40255,18049,Louisville,KY,205,Louisville,KY
-40256,18049,Louisville,KY,205,Louisville,KY
-40257,18049,Louisville,KY,205,Louisville,KY
-40258,18049,Louisville,KY,205,Louisville,KY
-40259,18049,Louisville,KY,205,Louisville,KY
-40261,18049,Louisville,KY,205,Louisville,KY
-40266,18049,Louisville,KY,205,Louisville,KY
-40268,18049,Louisville,KY,205,Louisville,KY
-40269,18049,Louisville,KY,205,Louisville,KY
-40270,18049,Louisville,KY,205,Louisville,KY
-40272,18049,Louisville,KY,205,Louisville,KY
-40280,18049,Louisville,KY,205,Louisville,KY
-40281,18049,Louisville,KY,205,Louisville,KY
-40282,18049,Louisville,KY,205,Louisville,KY
-40283,18049,Louisville,KY,205,Louisville,KY
-40285,18049,Louisville,KY,205,Louisville,KY
-40287,18049,Louisville,KY,205,Louisville,KY
-40289,18049,Louisville,KY,205,Louisville,KY
-40290,18049,Louisville,KY,205,Louisville,KY
-40291,18049,Louisville,KY,205,Louisville,KY
-40292,18049,Louisville,KY,205,Louisville,KY
-40293,18049,Louisville,KY,205,Louisville,KY
-40294,18049,Louisville,KY,205,Louisville,KY
-40295,18049,Louisville,KY,205,Louisville,KY
-40296,18049,Louisville,KY,205,Louisville,KY
-40297,18049,Louisville,KY,205,Louisville,KY
-40298,18049,Louisville,KY,205,Louisville,KY
-40299,18049,Louisville,KY,205,Louisville,KY
-40310,18032,Harrodsburg,KY,204,Lexington,KY
-40311,18012,Carlisle,KY,204,Lexington,KY
-40312,18087,Winchester,KY,204,Lexington,KY
-40313,18059,Morehead,KY,204,Lexington,KY
-40316,18059,Morehead,KY,204,Lexington,KY
-40317,18059,Morehead,KY,204,Lexington,KY
-40319,18059,Morehead,KY,204,Lexington,KY
-40322,18059,Morehead,KY,204,Lexington,KY
-40324,18026,Georgetown,KY,204,Lexington,KY
-40328,18018,Danville,KY,204,Lexington,KY
-40330,18032,Harrodsburg,KY,204,Lexington,KY
-40334,18061,Mount Sterling,KY,204,Lexington,KY
-40336,18039,Irvine,KY,204,Lexington,KY
-40337,18061,Mount Sterling,KY,204,Lexington,KY
-40339,18045,Lexington,KY,204,Lexington,KY
-40340,18045,Lexington,KY,204,Lexington,KY
-40342,18023,Frankfort,KY,204,Lexington,KY
-40346,18059,Morehead,KY,204,Lexington,KY
-40347,18083,Versailles,KY,204,Lexington,KY
-40348,18068,Paris,KY,204,Lexington,KY
-40350,18012,Carlisle,KY,204,Lexington,KY
-40351,18059,Morehead,KY,204,Lexington,KY
-40353,18061,Mount Sterling,KY,204,Lexington,KY
-40355,18065,Owenton,KY,204,Lexington,KY
-40356,18045,Lexington,KY,204,Lexington,KY
-40357,18068,Paris,KY,204,Lexington,KY
-40358,18059,Morehead,KY,204,Lexington,KY
-40359,18065,Owenton,KY,204,Lexington,KY
-40360,18059,Morehead,KY,204,Lexington,KY
-40361,18068,Paris,KY,204,Lexington,KY
-40362,18068,Paris,KY,204,Lexington,KY
-40363,18065,Owenton,KY,204,Lexington,KY
-40366,18059,Morehead,KY,204,Lexington,KY
-40370,18026,Georgetown,KY,204,Lexington,KY
-40371,18059,Morehead,KY,204,Lexington,KY
-40372,18032,Harrodsburg,KY,204,Lexington,KY
-40374,18061,Mount Sterling,KY,204,Lexington,KY
-40376,18087,Winchester,KY,204,Lexington,KY
-40379,18026,Georgetown,KY,204,Lexington,KY
-40380,18087,Winchester,KY,204,Lexington,KY
-40383,18083,Versailles,KY,204,Lexington,KY
-40384,18083,Versailles,KY,204,Lexington,KY
-40385,18073,Richmond,KY,204,Lexington,KY
-40387,18059,Morehead,KY,204,Lexington,KY
-40390,18045,Lexington,KY,204,Lexington,KY
-40391,18087,Winchester,KY,204,Lexington,KY
-40392,18087,Winchester,KY,204,Lexington,KY
-40402,18047,London,KY,204,Lexington,KY
-40403,18006,Berea,KY,204,Lexington,KY
-40404,18006,Berea,KY,204,Lexington,KY
-40405,18006,Berea,KY,204,Lexington,KY
-40409,18062,Mount Vernon,KY,204,Lexington,KY
-40410,18042,Lancaster,KY,204,Lexington,KY
-40419,18081,Stanford,KY,204,Lexington,KY
-40422,18018,Danville,KY,204,Lexington,KY
-40423,18018,Danville,KY,204,Lexington,KY
-40434,18006,Berea,KY,204,Lexington,KY
-40437,18018,Danville,KY,204,Lexington,KY
-40440,18018,Danville,KY,204,Lexington,KY
-40442,18081,Stanford,KY,204,Lexington,KY
-40444,18042,Lancaster,KY,204,Lexington,KY
-40445,18062,Mount Vernon,KY,204,Lexington,KY
-40447,18006,Berea,KY,204,Lexington,KY
-40448,18081,Stanford,KY,204,Lexington,KY
-40452,18018,Danville,KY,204,Lexington,KY
-40456,18062,Mount Vernon,KY,204,Lexington,KY
-40460,18062,Mount Vernon,KY,204,Lexington,KY
-40461,18073,Richmond,KY,204,Lexington,KY
-40464,18018,Danville,KY,204,Lexington,KY
-40468,18018,Danville,KY,204,Lexington,KY
-40472,18039,Irvine,KY,204,Lexington,KY
-40473,18006,Berea,KY,204,Lexington,KY
-40475,18073,Richmond,KY,204,Lexington,KY
-40476,18073,Richmond,KY,204,Lexington,KY
-40481,18006,Berea,KY,204,Lexington,KY
-40484,18081,Stanford,KY,204,Lexington,KY
-40486,18047,London,KY,204,Lexington,KY
-40488,18006,Berea,KY,204,Lexington,KY
-40489,18081,Stanford,KY,204,Lexington,KY
-40492,18006,Berea,KY,204,Lexington,KY
-40502,18045,Lexington,KY,204,Lexington,KY
-40503,18045,Lexington,KY,204,Lexington,KY
-40504,18045,Lexington,KY,204,Lexington,KY
-40505,18045,Lexington,KY,204,Lexington,KY
-40506,18045,Lexington,KY,204,Lexington,KY
-40507,18045,Lexington,KY,204,Lexington,KY
-40508,18045,Lexington,KY,204,Lexington,KY
-40509,18045,Lexington,KY,204,Lexington,KY
-40510,18045,Lexington,KY,204,Lexington,KY
-40511,18045,Lexington,KY,204,Lexington,KY
-40512,18045,Lexington,KY,204,Lexington,KY
-40513,18045,Lexington,KY,204,Lexington,KY
-40514,18045,Lexington,KY,204,Lexington,KY
-40515,18045,Lexington,KY,204,Lexington,KY
-40516,18045,Lexington,KY,204,Lexington,KY
-40517,18045,Lexington,KY,204,Lexington,KY
-40522,18045,Lexington,KY,204,Lexington,KY
-40523,18045,Lexington,KY,204,Lexington,KY
-40524,18045,Lexington,KY,204,Lexington,KY
-40526,18045,Lexington,KY,204,Lexington,KY
-40533,18045,Lexington,KY,204,Lexington,KY
-40536,18045,Lexington,KY,204,Lexington,KY
-40544,18045,Lexington,KY,204,Lexington,KY
-40546,18045,Lexington,KY,204,Lexington,KY
-40550,18045,Lexington,KY,204,Lexington,KY
-40555,18045,Lexington,KY,204,Lexington,KY
-40574,18045,Lexington,KY,204,Lexington,KY
-40575,18045,Lexington,KY,204,Lexington,KY
-40576,18045,Lexington,KY,204,Lexington,KY
-40577,18045,Lexington,KY,204,Lexington,KY
-40578,18045,Lexington,KY,204,Lexington,KY
-40579,18045,Lexington,KY,204,Lexington,KY
-40580,18045,Lexington,KY,204,Lexington,KY
-40581,18045,Lexington,KY,204,Lexington,KY
-40582,18045,Lexington,KY,204,Lexington,KY
-40583,18045,Lexington,KY,204,Lexington,KY
-40588,18045,Lexington,KY,204,Lexington,KY
-40591,18045,Lexington,KY,204,Lexington,KY
-40598,18045,Lexington,KY,204,Lexington,KY
-40601,18023,Frankfort,KY,204,Lexington,KY
-40602,18023,Frankfort,KY,204,Lexington,KY
-40603,18023,Frankfort,KY,204,Lexington,KY
-40604,18023,Frankfort,KY,204,Lexington,KY
-40618,18023,Frankfort,KY,204,Lexington,KY
-40619,18023,Frankfort,KY,204,Lexington,KY
-40620,18023,Frankfort,KY,204,Lexington,KY
-40621,18023,Frankfort,KY,204,Lexington,KY
-40622,18023,Frankfort,KY,204,Lexington,KY
-40701,18015,Corbin,KY,204,Lexington,KY
-40702,18015,Corbin,KY,204,Lexington,KY
-40724,18047,London,KY,204,Lexington,KY
-40729,18047,London,KY,204,Lexington,KY
-40730,18015,Corbin,KY,204,Lexington,KY
-40734,18015,Corbin,KY,204,Lexington,KY
-40737,18015,Corbin,KY,204,Lexington,KY
-40740,18015,Corbin,KY,204,Lexington,KY
-40741,18047,London,KY,204,Lexington,KY
-40742,18047,London,KY,204,Lexington,KY
-40743,18047,London,KY,204,Lexington,KY
-40744,18015,Corbin,KY,204,Lexington,KY
-40745,18047,London,KY,204,Lexington,KY
-40750,18047,London,KY,204,Lexington,KY
-40755,18047,London,KY,204,Lexington,KY
-40759,18015,Corbin,KY,204,Lexington,KY
-40763,18015,Corbin,KY,204,Lexington,KY
-40769,18015,Corbin,KY,204,Lexington,KY
-40771,18015,Corbin,KY,204,Lexington,KY
-40801,18031,Harlan,KY,204,Lexington,KY
-40803,18038,Hyden,KY,204,Lexington,KY
-40806,18031,Harlan,KY,204,Lexington,KY
-40807,18031,Harlan,KY,204,Lexington,KY
-40808,18031,Harlan,KY,204,Lexington,KY
-40810,18031,Harlan,KY,204,Lexington,KY
-40813,18070,Pineville,KY,377,Knoxville,TN
-40815,18031,Harlan,KY,204,Lexington,KY
-40816,18038,Hyden,KY,204,Lexington,KY
-40818,18031,Harlan,KY,204,Lexington,KY
-40819,18031,Harlan,KY,204,Lexington,KY
-40820,18031,Harlan,KY,204,Lexington,KY
-40823,18031,Harlan,KY,204,Lexington,KY
-40824,18031,Harlan,KY,204,Lexington,KY
-40826,18085,Whitesburg,KY,204,Lexington,KY
-40827,18038,Hyden,KY,204,Lexington,KY
-40828,18031,Harlan,KY,204,Lexington,KY
-40829,18031,Harlan,KY,204,Lexington,KY
-40830,18031,Harlan,KY,204,Lexington,KY
-40831,18031,Harlan,KY,204,Lexington,KY
-40840,18038,Hyden,KY,204,Lexington,KY
-40843,49005,Big Stone Gap,VA,376,Kingsport,TN
-40844,18038,Hyden,KY,204,Lexington,KY
-40845,18070,Pineville,KY,377,Knoxville,TN
-40847,18031,Harlan,KY,204,Lexington,KY
-40849,18031,Harlan,KY,204,Lexington,KY
-40854,18031,Harlan,KY,204,Lexington,KY
-40855,18031,Harlan,KY,204,Lexington,KY
-40856,18070,Pineville,KY,377,Knoxville,TN
-40858,18038,Hyden,KY,204,Lexington,KY
-40862,18085,Whitesburg,KY,204,Lexington,KY
-40863,18070,Pineville,KY,377,Knoxville,TN
-40865,18031,Harlan,KY,204,Lexington,KY
-40868,18038,Hyden,KY,204,Lexington,KY
-40870,18031,Harlan,KY,204,Lexington,KY
-40873,18031,Harlan,KY,204,Lexington,KY
-40874,18038,Hyden,KY,204,Lexington,KY
-40902,18070,Pineville,KY,377,Knoxville,TN
-40903,18003,Barbourville,KY,204,Lexington,KY
-40906,18003,Barbourville,KY,204,Lexington,KY
-40913,18070,Pineville,KY,377,Knoxville,TN
-40914,18051,Manchester,KY,204,Lexington,KY
-40915,18003,Barbourville,KY,204,Lexington,KY
-40921,18003,Barbourville,KY,204,Lexington,KY
-40923,18003,Barbourville,KY,204,Lexington,KY
-40927,18031,Harlan,KY,204,Lexington,KY
-40930,18070,Pineville,KY,377,Knoxville,TN
-40932,18051,Manchester,KY,204,Lexington,KY
-40935,18003,Barbourville,KY,204,Lexington,KY
-40939,18070,Pineville,KY,377,Knoxville,TN
-40940,18057,Middlesboro,KY,377,Knoxville,TN
-40941,18051,Manchester,KY,204,Lexington,KY
-40943,18003,Barbourville,KY,204,Lexington,KY
-40944,18051,Manchester,KY,204,Lexington,KY
-40946,18003,Barbourville,KY,204,Lexington,KY
-40949,18003,Barbourville,KY,204,Lexington,KY
-40951,18051,Manchester,KY,204,Lexington,KY
-40953,18003,Barbourville,KY,204,Lexington,KY
-40955,18070,Pineville,KY,377,Knoxville,TN
-40958,18070,Pineville,KY,377,Knoxville,TN
-40962,18051,Manchester,KY,204,Lexington,KY
-40964,18031,Harlan,KY,204,Lexington,KY
-40965,18057,Middlesboro,KY,377,Knoxville,TN
-40972,18051,Manchester,KY,204,Lexington,KY
-40977,18070,Pineville,KY,377,Knoxville,TN
-40979,18051,Manchester,KY,204,Lexington,KY
-40981,18034,Hazard,KY,204,Lexington,KY
-40982,18003,Barbourville,KY,204,Lexington,KY
-40983,18051,Manchester,KY,204,Lexington,KY
-40988,18070,Pineville,KY,377,Knoxville,TN
-40995,18070,Pineville,KY,377,Knoxville,TN
-40997,18003,Barbourville,KY,204,Lexington,KY
-41001,18022,Fort Thomas,KY,203,Covington,KY
-41002,18055,Maysville,KY,204,Lexington,KY
-41003,18017,Cynthiana,KY,204,Lexington,KY
-41004,18055,Maysville,KY,204,Lexington,KY
-41005,18021,Florence,KY,203,Covington,KY
-41006,18022,Fort Thomas,KY,203,Covington,KY
-41007,18022,Fort Thomas,KY,203,Covington,KY
-41008,18013,Carrollton,KY,205,Louisville,KY
-41010,18086,Williamstown,KY,203,Covington,KY
-41011,18016,Covington,KY,203,Covington,KY
-41012,18016,Covington,KY,203,Covington,KY
-41014,18016,Covington,KY,203,Covington,KY
-41015,18016,Covington,KY,203,Covington,KY
-41016,18016,Covington,KY,203,Covington,KY
-41017,18016,Covington,KY,203,Covington,KY
-41018,18016,Covington,KY,203,Covington,KY
-41019,18016,Covington,KY,203,Covington,KY
-41021,18021,Florence,KY,203,Covington,KY
-41022,18021,Florence,KY,203,Covington,KY
-41025,18021,Florence,KY,203,Covington,KY
-41030,18021,Florence,KY,203,Covington,KY
-41031,18017,Cynthiana,KY,204,Lexington,KY
-41033,18016,Covington,KY,203,Covington,KY
-41034,18055,Maysville,KY,204,Lexington,KY
-41035,18016,Covington,KY,203,Covington,KY
-41037,18020,Flemingsburg,KY,204,Lexington,KY
-41039,18020,Flemingsburg,KY,204,Lexington,KY
-41040,18022,Fort Thomas,KY,203,Covington,KY
-41041,18020,Flemingsburg,KY,204,Lexington,KY
-41042,18021,Florence,KY,203,Covington,KY
-41043,18022,Fort Thomas,KY,203,Covington,KY
-41044,18055,Maysville,KY,204,Lexington,KY
-41045,18013,Carrollton,KY,205,Louisville,KY
-41046,18016,Covington,KY,203,Covington,KY
-41048,18021,Florence,KY,203,Covington,KY
-41049,18020,Flemingsburg,KY,204,Lexington,KY
-41051,18016,Covington,KY,203,Covington,KY
-41052,18086,Williamstown,KY,203,Covington,KY
-41053,18016,Covington,KY,203,Covington,KY
-41054,18086,Williamstown,KY,203,Covington,KY
-41055,18055,Maysville,KY,204,Lexington,KY
-41056,18055,Maysville,KY,204,Lexington,KY
-41059,18022,Fort Thomas,KY,203,Covington,KY
-41061,18055,Maysville,KY,204,Lexington,KY
-41062,18055,Maysville,KY,204,Lexington,KY
-41063,18016,Covington,KY,203,Covington,KY
-41064,18017,Cynthiana,KY,204,Lexington,KY
-41071,18022,Fort Thomas,KY,203,Covington,KY
-41072,18022,Fort Thomas,KY,203,Covington,KY
-41073,18022,Fort Thomas,KY,203,Covington,KY
-41074,18022,Fort Thomas,KY,203,Covington,KY
-41075,18022,Fort Thomas,KY,203,Covington,KY
-41076,18022,Fort Thomas,KY,203,Covington,KY
-41080,18021,Florence,KY,203,Covington,KY
-41081,18020,Flemingsburg,KY,204,Lexington,KY
-41083,18021,Florence,KY,203,Covington,KY
-41085,18022,Fort Thomas,KY,203,Covington,KY
-41086,18065,Owenton,KY,204,Lexington,KY
-41091,18021,Florence,KY,203,Covington,KY
-41092,18021,Florence,KY,203,Covington,KY
-41093,18020,Flemingsburg,KY,204,Lexington,KY
-41094,18016,Covington,KY,203,Covington,KY
-41095,18021,Florence,KY,203,Covington,KY
-41096,18055,Maysville,KY,204,Lexington,KY
-41097,18086,Williamstown,KY,203,Covington,KY
-41098,18065,Owenton,KY,204,Lexington,KY
-41099,18022,Fort Thomas,KY,203,Covington,KY
-41101,18002,Ashland,KY,444,Huntington,WV
-41102,18002,Ashland,KY,444,Huntington,WV
-41105,18002,Ashland,KY,444,Huntington,WV
-41114,18002,Ashland,KY,444,Huntington,WV
-41121,18002,Ashland,KY,444,Huntington,WV
-41124,18048,Louisa,KY,444,Huntington,WV
-41128,18059,Morehead,KY,204,Lexington,KY
-41129,18002,Ashland,KY,444,Huntington,WV
-41132,18002,Ashland,KY,444,Huntington,WV
-41135,18059,Morehead,KY,204,Lexington,KY
-41139,18002,Ashland,KY,444,Huntington,WV
-41141,36093,Portsmouth,OH,329,Columbus,OH
-41142,18002,Ashland,KY,444,Huntington,WV
-41143,18002,Ashland,KY,444,Huntington,WV
-41144,18002,Ashland,KY,444,Huntington,WV
-41146,18002,Ashland,KY,444,Huntington,WV
-41149,18059,Morehead,KY,204,Lexington,KY
-41159,18048,Louisa,KY,444,Huntington,WV
-41160,18048,Louisa,KY,444,Huntington,WV
-41164,18059,Morehead,KY,204,Lexington,KY
-41166,36093,Portsmouth,OH,329,Columbus,OH
-41168,18002,Ashland,KY,444,Huntington,WV
-41169,18002,Ashland,KY,444,Huntington,WV
-41171,18059,Morehead,KY,204,Lexington,KY
-41173,18059,Morehead,KY,204,Lexington,KY
-41174,36093,Portsmouth,OH,329,Columbus,OH
-41175,36093,Portsmouth,OH,329,Columbus,OH
-41179,36093,Portsmouth,OH,329,Columbus,OH
-41180,18002,Ashland,KY,444,Huntington,WV
-41181,18002,Ashland,KY,444,Huntington,WV
-41183,18002,Ashland,KY,444,Huntington,WV
-41189,18055,Maysville,KY,204,Lexington,KY
-41201,18048,Louisa,KY,444,Huntington,WV
-41203,18071,Prestonsburg,KY,204,Lexington,KY
-41204,18071,Prestonsburg,KY,204,Lexington,KY
-41214,18071,Prestonsburg,KY,204,Lexington,KY
-41216,18071,Prestonsburg,KY,204,Lexington,KY
-41219,18067,Paintsville,KY,204,Lexington,KY
-41222,18071,Prestonsburg,KY,204,Lexington,KY
-41224,18071,Prestonsburg,KY,204,Lexington,KY
-41226,18048,Louisa,KY,444,Huntington,WV
-41230,18048,Louisa,KY,444,Huntington,WV
-41231,51045,Williamson,WV,443,Charleston,WV
-41232,18048,Louisa,KY,444,Huntington,WV
-41234,18071,Prestonsburg,KY,204,Lexington,KY
-41238,18067,Paintsville,KY,204,Lexington,KY
-41240,18067,Paintsville,KY,204,Lexington,KY
-41250,18071,Prestonsburg,KY,204,Lexington,KY
-41254,18071,Prestonsburg,KY,204,Lexington,KY
-41255,18067,Paintsville,KY,204,Lexington,KY
-41256,18067,Paintsville,KY,204,Lexington,KY
-41257,18071,Prestonsburg,KY,204,Lexington,KY
-41260,18071,Prestonsburg,KY,204,Lexington,KY
-41262,18071,Prestonsburg,KY,204,Lexington,KY
-41263,18067,Paintsville,KY,204,Lexington,KY
-41264,18048,Louisa,KY,444,Huntington,WV
-41265,18071,Prestonsburg,KY,204,Lexington,KY
-41267,18071,Prestonsburg,KY,204,Lexington,KY
-41268,18071,Prestonsburg,KY,204,Lexington,KY
-41271,18071,Prestonsburg,KY,204,Lexington,KY
-41274,18067,Paintsville,KY,204,Lexington,KY
-41301,18089,Jackson,KY,204,Lexington,KY
-41310,18089,Jackson,KY,204,Lexington,KY
-41311,18089,Jackson,KY,204,Lexington,KY
-41314,18089,Jackson,KY,204,Lexington,KY
-41317,18089,Jackson,KY,204,Lexington,KY
-41332,18084,West Liberty,KY,204,Lexington,KY
-41339,18089,Jackson,KY,204,Lexington,KY
-41347,18089,Jackson,KY,204,Lexington,KY
-41348,18089,Jackson,KY,204,Lexington,KY
-41351,18051,Manchester,KY,204,Lexington,KY
-41352,18084,West Liberty,KY,204,Lexington,KY
-41360,18089,Jackson,KY,204,Lexington,KY
-41364,18089,Jackson,KY,204,Lexington,KY
-41365,18089,Jackson,KY,204,Lexington,KY
-41366,18089,Jackson,KY,204,Lexington,KY
-41367,18034,Hazard,KY,204,Lexington,KY
-41368,18089,Jackson,KY,204,Lexington,KY
-41385,18089,Jackson,KY,204,Lexington,KY
-41386,18089,Jackson,KY,204,Lexington,KY
-41390,18089,Jackson,KY,204,Lexington,KY
-41397,18089,Jackson,KY,204,Lexington,KY
-41408,18084,West Liberty,KY,204,Lexington,KY
-41413,18084,West Liberty,KY,204,Lexington,KY
-41421,18084,West Liberty,KY,204,Lexington,KY
-41425,18084,West Liberty,KY,204,Lexington,KY
-41426,18067,Paintsville,KY,204,Lexington,KY
-41451,18084,West Liberty,KY,204,Lexington,KY
-41464,18071,Prestonsburg,KY,204,Lexington,KY
-41465,18067,Paintsville,KY,204,Lexington,KY
-41472,18084,West Liberty,KY,204,Lexington,KY
-41477,18084,West Liberty,KY,204,Lexington,KY
-41501,18069,Pikeville,KY,204,Lexington,KY
-41502,18069,Pikeville,KY,204,Lexington,KY
-41503,18080,South Williamson,KY,204,Lexington,KY
-41512,18069,Pikeville,KY,204,Lexington,KY
-41513,18069,Pikeville,KY,204,Lexington,KY
-41514,18080,South Williamson,KY,204,Lexington,KY
-41517,18040,Jenkins,KY,376,Kingsport,TN
-41519,18080,South Williamson,KY,204,Lexington,KY
-41520,18040,Jenkins,KY,376,Kingsport,TN
-41522,18069,Pikeville,KY,204,Lexington,KY
-41524,18069,Pikeville,KY,204,Lexington,KY
-41526,18069,Pikeville,KY,204,Lexington,KY
-41527,18080,South Williamson,KY,204,Lexington,KY
-41528,18080,South Williamson,KY,204,Lexington,KY
-41531,18080,South Williamson,KY,204,Lexington,KY
-41534,18069,Pikeville,KY,204,Lexington,KY
-41535,18080,South Williamson,KY,204,Lexington,KY
-41537,18040,Jenkins,KY,376,Kingsport,TN
-41538,18069,Pikeville,KY,204,Lexington,KY
-41539,18069,Pikeville,KY,204,Lexington,KY
-41540,18069,Pikeville,KY,204,Lexington,KY
-41542,18069,Pikeville,KY,204,Lexington,KY
-41543,18080,South Williamson,KY,204,Lexington,KY
-41544,18080,South Williamson,KY,204,Lexington,KY
-41547,18080,South Williamson,KY,204,Lexington,KY
-41548,49021,Grundy,VA,376,Kingsport,TN
-41549,18069,Pikeville,KY,204,Lexington,KY
-41553,18069,Pikeville,KY,204,Lexington,KY
-41554,18069,Pikeville,KY,204,Lexington,KY
-41555,18080,South Williamson,KY,204,Lexington,KY
-41557,18069,Pikeville,KY,204,Lexington,KY
-41558,18080,South Williamson,KY,204,Lexington,KY
-41559,18069,Pikeville,KY,204,Lexington,KY
-41560,18069,Pikeville,KY,204,Lexington,KY
-41561,18069,Pikeville,KY,204,Lexington,KY
-41562,18069,Pikeville,KY,204,Lexington,KY
-41563,18069,Pikeville,KY,204,Lexington,KY
-41564,18069,Pikeville,KY,204,Lexington,KY
-41566,49021,Grundy,VA,376,Kingsport,TN
-41567,18080,South Williamson,KY,204,Lexington,KY
-41568,18080,South Williamson,KY,204,Lexington,KY
-41571,18069,Pikeville,KY,204,Lexington,KY
-41572,18069,Pikeville,KY,204,Lexington,KY
-41601,18071,Prestonsburg,KY,204,Lexington,KY
-41602,18071,Prestonsburg,KY,204,Lexington,KY
-41603,18071,Prestonsburg,KY,204,Lexington,KY
-41604,18056,McDowell,KY,204,Lexington,KY
-41605,18071,Prestonsburg,KY,204,Lexington,KY
-41606,18056,McDowell,KY,204,Lexington,KY
-41607,18071,Prestonsburg,KY,204,Lexington,KY
-41612,18056,McDowell,KY,204,Lexington,KY
-41615,18071,Prestonsburg,KY,204,Lexington,KY
-41616,18071,Prestonsburg,KY,204,Lexington,KY
-41619,18056,McDowell,KY,204,Lexington,KY
-41621,18071,Prestonsburg,KY,204,Lexington,KY
-41622,18071,Prestonsburg,KY,204,Lexington,KY
-41630,18071,Prestonsburg,KY,204,Lexington,KY
-41631,18071,Prestonsburg,KY,204,Lexington,KY
-41632,18071,Prestonsburg,KY,204,Lexington,KY
-41635,18071,Prestonsburg,KY,204,Lexington,KY
-41636,18056,McDowell,KY,204,Lexington,KY
-41640,18071,Prestonsburg,KY,204,Lexington,KY
-41642,18071,Prestonsburg,KY,204,Lexington,KY
-41643,18071,Prestonsburg,KY,204,Lexington,KY
-41645,18071,Prestonsburg,KY,204,Lexington,KY
-41647,18056,McDowell,KY,204,Lexington,KY
-41649,18071,Prestonsburg,KY,204,Lexington,KY
-41650,18056,McDowell,KY,204,Lexington,KY
-41651,18056,McDowell,KY,204,Lexington,KY
-41653,18071,Prestonsburg,KY,204,Lexington,KY
-41655,18071,Prestonsburg,KY,204,Lexington,KY
-41659,18071,Prestonsburg,KY,204,Lexington,KY
-41660,18056,McDowell,KY,204,Lexington,KY
-41663,18071,Prestonsburg,KY,204,Lexington,KY
-41666,18056,McDowell,KY,204,Lexington,KY
-41667,18056,McDowell,KY,204,Lexington,KY
-41669,18056,McDowell,KY,204,Lexington,KY
-41701,18034,Hazard,KY,204,Lexington,KY
-41702,18034,Hazard,KY,204,Lexington,KY
-41712,18034,Hazard,KY,204,Lexington,KY
-41713,18034,Hazard,KY,204,Lexington,KY
-41714,18038,Hyden,KY,204,Lexington,KY
-41719,18034,Hazard,KY,204,Lexington,KY
-41721,18034,Hazard,KY,204,Lexington,KY
-41722,18034,Hazard,KY,204,Lexington,KY
-41723,18034,Hazard,KY,204,Lexington,KY
-41725,18034,Hazard,KY,204,Lexington,KY
-41727,18034,Hazard,KY,204,Lexington,KY
-41729,18034,Hazard,KY,204,Lexington,KY
-41731,18034,Hazard,KY,204,Lexington,KY
-41735,18034,Hazard,KY,204,Lexington,KY
-41736,18034,Hazard,KY,204,Lexington,KY
-41739,18034,Hazard,KY,204,Lexington,KY
-41740,18034,Hazard,KY,204,Lexington,KY
-41743,18034,Hazard,KY,204,Lexington,KY
-41745,18034,Hazard,KY,204,Lexington,KY
-41746,18034,Hazard,KY,204,Lexington,KY
-41749,18038,Hyden,KY,204,Lexington,KY
-41751,18034,Hazard,KY,204,Lexington,KY
-41754,18034,Hazard,KY,204,Lexington,KY
-41759,18034,Hazard,KY,204,Lexington,KY
-41760,18034,Hazard,KY,204,Lexington,KY
-41762,18038,Hyden,KY,204,Lexington,KY
-41763,18034,Hazard,KY,204,Lexington,KY
-41764,18034,Hazard,KY,204,Lexington,KY
-41766,18038,Hyden,KY,204,Lexington,KY
-41772,18034,Hazard,KY,204,Lexington,KY
-41773,18034,Hazard,KY,204,Lexington,KY
-41774,18034,Hazard,KY,204,Lexington,KY
-41775,18038,Hyden,KY,204,Lexington,KY
-41776,18038,Hyden,KY,204,Lexington,KY
-41777,18038,Hyden,KY,204,Lexington,KY
-41778,18034,Hazard,KY,204,Lexington,KY
-41804,18085,Whitesburg,KY,204,Lexington,KY
-41810,18085,Whitesburg,KY,204,Lexington,KY
-41812,18085,Whitesburg,KY,204,Lexington,KY
-41815,18085,Whitesburg,KY,204,Lexington,KY
-41817,18034,Hazard,KY,204,Lexington,KY
-41819,18031,Harlan,KY,204,Lexington,KY
-41821,18085,Whitesburg,KY,204,Lexington,KY
-41822,18034,Hazard,KY,204,Lexington,KY
-41824,18085,Whitesburg,KY,204,Lexington,KY
-41825,18085,Whitesburg,KY,204,Lexington,KY
-41826,18085,Whitesburg,KY,204,Lexington,KY
-41828,18034,Hazard,KY,204,Lexington,KY
-41831,18034,Hazard,KY,204,Lexington,KY
-41832,18085,Whitesburg,KY,204,Lexington,KY
-41833,18085,Whitesburg,KY,204,Lexington,KY
-41834,18034,Hazard,KY,204,Lexington,KY
-41835,18085,Whitesburg,KY,204,Lexington,KY
-41836,18034,Hazard,KY,204,Lexington,KY
-41837,18085,Whitesburg,KY,204,Lexington,KY
-41838,18085,Whitesburg,KY,204,Lexington,KY
-41839,18034,Hazard,KY,204,Lexington,KY
-41840,18085,Whitesburg,KY,204,Lexington,KY
-41843,18085,Whitesburg,KY,204,Lexington,KY
-41844,18034,Hazard,KY,204,Lexington,KY
-41845,18085,Whitesburg,KY,204,Lexington,KY
-41847,18034,Hazard,KY,204,Lexington,KY
-41848,18085,Whitesburg,KY,204,Lexington,KY
-41849,18085,Whitesburg,KY,204,Lexington,KY
-41855,18085,Whitesburg,KY,204,Lexington,KY
-41858,18085,Whitesburg,KY,204,Lexington,KY
-41859,18034,Hazard,KY,204,Lexington,KY
-41861,18034,Hazard,KY,204,Lexington,KY
-41862,18034,Hazard,KY,204,Lexington,KY
-42001,18066,Paducah,KY,208,Paducah,KY
-42002,18066,Paducah,KY,208,Paducah,KY
-42003,18066,Paducah,KY,208,Paducah,KY
-42020,18063,Murray,KY,208,Paducah,KY
-42021,18066,Paducah,KY,208,Paducah,KY
-42022,18066,Paducah,KY,208,Paducah,KY
-42023,18066,Paducah,KY,208,Paducah,KY
-42024,18066,Paducah,KY,208,Paducah,KY
-42025,18066,Paducah,KY,208,Paducah,KY
-42027,18066,Paducah,KY,208,Paducah,KY
-42028,18076,Salem,KY,208,Paducah,KY
-42029,18066,Paducah,KY,208,Paducah,KY
-42031,18066,Paducah,KY,208,Paducah,KY
-42032,18066,Paducah,KY,208,Paducah,KY
-42033,18052,Marion,KY,208,Paducah,KY
-42035,18066,Paducah,KY,208,Paducah,KY
-42036,18063,Murray,KY,208,Paducah,KY
-42037,18052,Marion,KY,208,Paducah,KY
-42038,18066,Paducah,KY,208,Paducah,KY
-42039,18066,Paducah,KY,208,Paducah,KY
-42040,18063,Murray,KY,208,Paducah,KY
-42041,18025,Fulton,KY,208,Paducah,KY
-42044,18066,Paducah,KY,208,Paducah,KY
-42045,18066,Paducah,KY,208,Paducah,KY
-42047,18076,Salem,KY,208,Paducah,KY
-42048,18063,Murray,KY,208,Paducah,KY
-42049,18063,Murray,KY,208,Paducah,KY
-42050,44089,Union City,TN,379,Memphis,TN
-42051,18066,Paducah,KY,208,Paducah,KY
-42053,18066,Paducah,KY,208,Paducah,KY
-42054,18063,Murray,KY,208,Paducah,KY
-42055,18066,Paducah,KY,208,Paducah,KY
-42056,18066,Paducah,KY,208,Paducah,KY
-42058,18066,Paducah,KY,208,Paducah,KY
-42060,18066,Paducah,KY,208,Paducah,KY
-42061,18066,Paducah,KY,208,Paducah,KY
-42063,18054,Mayfield,KY,208,Paducah,KY
-42064,18052,Marion,KY,208,Paducah,KY
-42066,18054,Mayfield,KY,208,Paducah,KY
-42069,18066,Paducah,KY,208,Paducah,KY
-42070,18066,Paducah,KY,208,Paducah,KY
-42071,18063,Murray,KY,208,Paducah,KY
-42076,18063,Murray,KY,208,Paducah,KY
-42078,18052,Marion,KY,208,Paducah,KY
-42079,18054,Mayfield,KY,208,Paducah,KY
-42081,18076,Salem,KY,208,Paducah,KY
-42082,18066,Paducah,KY,208,Paducah,KY
-42083,18066,Paducah,KY,208,Paducah,KY
-42085,18066,Paducah,KY,208,Paducah,KY
-42086,18066,Paducah,KY,208,Paducah,KY
-42087,18066,Paducah,KY,208,Paducah,KY
-42088,18054,Mayfield,KY,208,Paducah,KY
-42101,18007,Bowling Green,KY,380,Nashville,TN
-42102,18007,Bowling Green,KY,380,Nashville,TN
-42103,18007,Bowling Green,KY,380,Nashville,TN
-42104,18007,Bowling Green,KY,380,Nashville,TN
-42120,18007,Bowling Green,KY,380,Nashville,TN
-42122,18007,Bowling Green,KY,380,Nashville,TN
-42123,18027,Glasgow,KY,205,Louisville,KY
-42124,18027,Glasgow,KY,205,Louisville,KY
-42127,18027,Glasgow,KY,205,Louisville,KY
-42128,18007,Bowling Green,KY,380,Nashville,TN
-42129,18027,Glasgow,KY,205,Louisville,KY
-42130,18027,Glasgow,KY,205,Louisville,KY
-42131,18027,Glasgow,KY,205,Louisville,KY
-42133,18027,Glasgow,KY,205,Louisville,KY
-42134,18024,Franklin,KY,380,Nashville,TN
-42135,18024,Franklin,KY,380,Nashville,TN
-42140,18082,Tompkinsville,KY,205,Louisville,KY
-42141,18027,Glasgow,KY,205,Louisville,KY
-42142,18027,Glasgow,KY,205,Louisville,KY
-42151,18082,Tompkinsville,KY,205,Louisville,KY
-42152,18027,Glasgow,KY,205,Louisville,KY
-42153,18007,Bowling Green,KY,380,Nashville,TN
-42154,18027,Glasgow,KY,205,Louisville,KY
-42156,18027,Glasgow,KY,205,Louisville,KY
-42157,18027,Glasgow,KY,205,Louisville,KY
-42159,18007,Bowling Green,KY,380,Nashville,TN
-42160,18027,Glasgow,KY,205,Louisville,KY
-42163,18007,Bowling Green,KY,380,Nashville,TN
-42164,18007,Bowling Green,KY,380,Nashville,TN
-42166,18027,Glasgow,KY,205,Louisville,KY
-42167,18082,Tompkinsville,KY,205,Louisville,KY
-42170,18007,Bowling Green,KY,380,Nashville,TN
-42171,18007,Bowling Green,KY,380,Nashville,TN
-42201,18044,Leitchfield,KY,205,Louisville,KY
-42202,18075,Russellville,KY,380,Nashville,TN
-42204,18075,Russellville,KY,380,Nashville,TN
-42206,18007,Bowling Green,KY,380,Nashville,TN
-42207,18007,Bowling Green,KY,380,Nashville,TN
-42210,18007,Bowling Green,KY,380,Nashville,TN
-42211,18009,Cadiz,KY,208,Paducah,KY
-42214,18027,Glasgow,KY,205,Louisville,KY
-42215,18036,Hopkinsville,KY,380,Nashville,TN
-42216,18036,Hopkinsville,KY,380,Nashville,TN
-42217,18036,Hopkinsville,KY,380,Nashville,TN
-42219,18007,Bowling Green,KY,380,Nashville,TN
-42220,18036,Hopkinsville,KY,380,Nashville,TN
-42221,18036,Hopkinsville,KY,380,Nashville,TN
-42223,44010,Clarksville,TN,380,Nashville,TN
-42232,18036,Hopkinsville,KY,380,Nashville,TN
-42234,44010,Clarksville,TN,380,Nashville,TN
-42236,18036,Hopkinsville,KY,380,Nashville,TN
-42240,18036,Hopkinsville,KY,380,Nashville,TN
-42241,18036,Hopkinsville,KY,380,Nashville,TN
-42252,18007,Bowling Green,KY,380,Nashville,TN
-42254,18036,Hopkinsville,KY,380,Nashville,TN
-42256,18075,Russellville,KY,380,Nashville,TN
-42259,18007,Bowling Green,KY,380,Nashville,TN
-42261,18007,Bowling Green,KY,380,Nashville,TN
-42262,18036,Hopkinsville,KY,380,Nashville,TN
-42265,18075,Russellville,KY,380,Nashville,TN
-42266,18036,Hopkinsville,KY,380,Nashville,TN
-42273,18007,Bowling Green,KY,380,Nashville,TN
-42274,18007,Bowling Green,KY,380,Nashville,TN
-42275,18007,Bowling Green,KY,380,Nashville,TN
-42276,18075,Russellville,KY,380,Nashville,TN
-42280,18075,Russellville,KY,380,Nashville,TN
-42285,18007,Bowling Green,KY,380,Nashville,TN
-42286,18036,Hopkinsville,KY,380,Nashville,TN
-42288,18007,Bowling Green,KY,380,Nashville,TN
-42301,18064,Owensboro,KY,207,Owensboro,KY
-42302,18064,Owensboro,KY,207,Owensboro,KY
-42303,18064,Owensboro,KY,207,Owensboro,KY
-42304,18064,Owensboro,KY,207,Owensboro,KY
-42320,18033,Hartford,KY,207,Owensboro,KY
-42321,18029,Greenville,KY,380,Nashville,TN
-42322,18064,Owensboro,KY,207,Owensboro,KY
-42323,18029,Greenville,KY,380,Nashville,TN
-42324,18029,Greenville,KY,380,Nashville,TN
-42325,18050,Madisonville,KY,208,Paducah,KY
-42326,18029,Greenville,KY,380,Nashville,TN
-42327,18064,Owensboro,KY,207,Owensboro,KY
-42328,18033,Hartford,KY,207,Owensboro,KY
-42330,18029,Greenville,KY,380,Nashville,TN
-42332,18029,Greenville,KY,380,Nashville,TN
-42333,18033,Hartford,KY,207,Owensboro,KY
-42334,18064,Owensboro,KY,207,Owensboro,KY
-42337,18029,Greenville,KY,380,Nashville,TN
-42338,18064,Owensboro,KY,207,Owensboro,KY
-42339,18029,Greenville,KY,380,Nashville,TN
-42343,18064,Owensboro,KY,207,Owensboro,KY
-42344,18029,Greenville,KY,380,Nashville,TN
-42345,18029,Greenville,KY,380,Nashville,TN
-42347,18033,Hartford,KY,207,Owensboro,KY
-42348,18064,Owensboro,KY,207,Owensboro,KY
-42349,18033,Hartford,KY,207,Owensboro,KY
-42350,18064,Owensboro,KY,207,Owensboro,KY
-42351,18064,Owensboro,KY,207,Owensboro,KY
-42352,18064,Owensboro,KY,207,Owensboro,KY
-42354,18033,Hartford,KY,207,Owensboro,KY
-42355,18064,Owensboro,KY,207,Owensboro,KY
-42356,18064,Owensboro,KY,207,Owensboro,KY
-42361,18033,Hartford,KY,207,Owensboro,KY
-42364,18064,Owensboro,KY,207,Owensboro,KY
-42366,18064,Owensboro,KY,207,Owensboro,KY
-42367,18029,Greenville,KY,380,Nashville,TN
-42368,18064,Owensboro,KY,207,Owensboro,KY
-42369,18033,Hartford,KY,207,Owensboro,KY
-42370,18033,Hartford,KY,207,Owensboro,KY
-42371,18064,Owensboro,KY,207,Owensboro,KY
-42372,18050,Madisonville,KY,208,Paducah,KY
-42374,18029,Greenville,KY,380,Nashville,TN
-42376,18064,Owensboro,KY,207,Owensboro,KY
-42377,18064,Owensboro,KY,207,Owensboro,KY
-42378,18064,Owensboro,KY,207,Owensboro,KY
-42402,18035,Henderson,KY,179,Evansville,IN
-42404,18035,Henderson,KY,179,Evansville,IN
-42406,18035,Henderson,KY,179,Evansville,IN
-42408,18050,Madisonville,KY,208,Paducah,KY
-42409,18035,Henderson,KY,179,Evansville,IN
-42410,18050,Madisonville,KY,208,Paducah,KY
-42411,18052,Marion,KY,208,Paducah,KY
-42413,18050,Madisonville,KY,208,Paducah,KY
-42419,18035,Henderson,KY,179,Evansville,IN
-42420,18035,Henderson,KY,179,Evansville,IN
-42431,18050,Madisonville,KY,208,Paducah,KY
-42436,18050,Madisonville,KY,208,Paducah,KY
-42437,18060,Morganfield,KY,179,Evansville,IN
-42440,18050,Madisonville,KY,208,Paducah,KY
-42441,18050,Madisonville,KY,208,Paducah,KY
-42442,18050,Madisonville,KY,208,Paducah,KY
-42444,18060,Morganfield,KY,179,Evansville,IN
-42445,18072,Princeton,KY,208,Paducah,KY
-42450,18050,Madisonville,KY,208,Paducah,KY
-42451,18035,Henderson,KY,179,Evansville,IN
-42452,18035,Henderson,KY,179,Evansville,IN
-42453,18050,Madisonville,KY,208,Paducah,KY
-42455,18035,Henderson,KY,179,Evansville,IN
-42456,18035,Henderson,KY,179,Evansville,IN
-42457,18035,Henderson,KY,179,Evansville,IN
-42458,18035,Henderson,KY,179,Evansville,IN
-42459,18060,Morganfield,KY,179,Evansville,IN
-42460,18060,Morganfield,KY,179,Evansville,IN
-42461,18035,Henderson,KY,179,Evansville,IN
-42462,18035,Henderson,KY,179,Evansville,IN
-42463,18035,Henderson,KY,179,Evansville,IN
-42464,18050,Madisonville,KY,208,Paducah,KY
-42501,18079,Somerset,KY,204,Lexington,KY
-42502,18079,Somerset,KY,204,Lexington,KY
-42503,18079,Somerset,KY,204,Lexington,KY
-42516,18079,Somerset,KY,204,Lexington,KY
-42518,18079,Somerset,KY,204,Lexington,KY
-42519,18079,Somerset,KY,204,Lexington,KY
-42528,18074,Russell Springs,KY,205,Louisville,KY
-42533,18079,Somerset,KY,204,Lexington,KY
-42539,18018,Danville,KY,204,Lexington,KY
-42541,18018,Danville,KY,204,Lexington,KY
-42544,18079,Somerset,KY,204,Lexington,KY
-42553,18079,Somerset,KY,204,Lexington,KY
-42558,18079,Somerset,KY,204,Lexington,KY
-42564,18079,Somerset,KY,204,Lexington,KY
-42565,18074,Russell Springs,KY,205,Louisville,KY
-42566,18081,Stanford,KY,204,Lexington,KY
-42567,18079,Somerset,KY,204,Lexington,KY
-42602,18001,Albany,KY,205,Louisville,KY
-42603,18058,Monticello,KY,204,Lexington,KY
-42629,18074,Russell Springs,KY,205,Louisville,KY
-42631,18079,Somerset,KY,204,Lexington,KY
-42633,18058,Monticello,KY,204,Lexington,KY
-42634,18079,Somerset,KY,204,Lexington,KY
-42635,18079,Somerset,KY,204,Lexington,KY
-42638,18079,Somerset,KY,204,Lexington,KY
-42642,18074,Russell Springs,KY,205,Louisville,KY
-42647,18079,Somerset,KY,204,Lexington,KY
-42649,18079,Somerset,KY,204,Lexington,KY
-42653,18079,Somerset,KY,204,Lexington,KY
-42701,18019,Elizabethtown,KY,205,Louisville,KY
-42702,18019,Elizabethtown,KY,205,Louisville,KY
-42712,18044,Leitchfield,KY,205,Louisville,KY
-42713,18019,Elizabethtown,KY,205,Louisville,KY
-42715,18008,Burkesville,KY,205,Louisville,KY
-42716,18019,Elizabethtown,KY,205,Louisville,KY
-42717,18008,Burkesville,KY,205,Louisville,KY
-42718,18011,Campbellsville,KY,205,Louisville,KY
-42719,18011,Campbellsville,KY,205,Louisville,KY
-42720,18014,Columbia,KY,205,Louisville,KY
-42721,18044,Leitchfield,KY,205,Louisville,KY
-42722,18027,Glasgow,KY,205,Louisville,KY
-42724,18019,Elizabethtown,KY,205,Louisville,KY
-42726,18044,Leitchfield,KY,205,Louisville,KY
-42728,18014,Columbia,KY,205,Louisville,KY
-42729,18019,Elizabethtown,KY,205,Louisville,KY
-42732,18019,Elizabethtown,KY,205,Louisville,KY
-42733,18011,Campbellsville,KY,205,Louisville,KY
-42740,18019,Elizabethtown,KY,205,Louisville,KY
-42741,18014,Columbia,KY,205,Louisville,KY
-42742,18014,Columbia,KY,205,Louisville,KY
-42743,18028,Greensburg,KY,205,Louisville,KY
-42746,18027,Glasgow,KY,205,Louisville,KY
-42748,18019,Elizabethtown,KY,205,Louisville,KY
-42749,18027,Glasgow,KY,205,Louisville,KY
-42753,18011,Campbellsville,KY,205,Louisville,KY
-42754,18044,Leitchfield,KY,205,Louisville,KY
-42755,18044,Leitchfield,KY,205,Louisville,KY
-42757,18019,Elizabethtown,KY,205,Louisville,KY
-42758,18011,Campbellsville,KY,205,Louisville,KY
-42759,18008,Burkesville,KY,205,Louisville,KY
-42762,18044,Leitchfield,KY,205,Louisville,KY
-42764,18019,Elizabethtown,KY,205,Louisville,KY
-42765,18019,Elizabethtown,KY,205,Louisville,KY
-42776,18019,Elizabethtown,KY,205,Louisville,KY
-42782,18028,Greensburg,KY,205,Louisville,KY
-42784,18019,Elizabethtown,KY,205,Louisville,KY
-42788,18019,Elizabethtown,KY,205,Louisville,KY
-43001,36027,Columbus,OH,329,Columbus,OH
-43002,36027,Columbus,OH,329,Columbus,OH
-43003,36034,Delaware,OH,329,Columbus,OH
-43004,36027,Columbus,OH,329,Columbus,OH
-43005,36077,Mount Vernon,OH,329,Columbus,OH
-43006,36077,Mount Vernon,OH,329,Columbus,OH
-43007,36068,Marysville,OH,329,Columbus,OH
-43008,36080,Newark,OH,329,Columbus,OH
-43009,36107,Urbana,OH,330,Dayton,OH
-43010,36107,Urbana,OH,330,Dayton,OH
-43011,36077,Mount Vernon,OH,329,Columbus,OH
-43013,36027,Columbus,OH,329,Columbus,OH
-43014,36075,Millersburg,OH,326,Canton,OH
-43015,36034,Delaware,OH,329,Columbus,OH
-43016,36027,Columbus,OH,329,Columbus,OH
-43017,36027,Columbus,OH,329,Columbus,OH
-43018,36027,Columbus,OH,329,Columbus,OH
-43019,36077,Mount Vernon,OH,329,Columbus,OH
-43021,36027,Columbus,OH,329,Columbus,OH
-43022,36077,Mount Vernon,OH,329,Columbus,OH
-43023,36080,Newark,OH,329,Columbus,OH
-43025,36080,Newark,OH,329,Columbus,OH
-43026,36027,Columbus,OH,329,Columbus,OH
-43027,36077,Mount Vernon,OH,329,Columbus,OH
-43028,36077,Mount Vernon,OH,329,Columbus,OH
-43029,36068,Marysville,OH,329,Columbus,OH
-43030,36080,Newark,OH,329,Columbus,OH
-43031,36027,Columbus,OH,329,Columbus,OH
-43032,36034,Delaware,OH,329,Columbus,OH
-43033,36027,Columbus,OH,329,Columbus,OH
-43035,36027,Columbus,OH,329,Columbus,OH
-43036,36034,Delaware,OH,329,Columbus,OH
-43037,36077,Mount Vernon,OH,329,Columbus,OH
-43040,36068,Marysville,OH,329,Columbus,OH
-43041,36068,Marysville,OH,329,Columbus,OH
-43044,36107,Urbana,OH,330,Dayton,OH
-43045,36068,Marysville,OH,329,Columbus,OH
-43046,36057,Lancaster,OH,329,Columbus,OH
-43047,36107,Urbana,OH,330,Dayton,OH
-43048,36077,Mount Vernon,OH,329,Columbus,OH
-43050,36077,Mount Vernon,OH,329,Columbus,OH
-43054,36027,Columbus,OH,329,Columbus,OH
-43055,36080,Newark,OH,329,Columbus,OH
-43056,36080,Newark,OH,329,Columbus,OH
-43058,36080,Newark,OH,329,Columbus,OH
-43060,36068,Marysville,OH,329,Columbus,OH
-43061,36034,Delaware,OH,329,Columbus,OH
-43062,36027,Columbus,OH,329,Columbus,OH
-43064,36027,Columbus,OH,329,Columbus,OH
-43065,36027,Columbus,OH,329,Columbus,OH
-43066,36034,Delaware,OH,329,Columbus,OH
-43067,36012,Bellefontaine,OH,329,Columbus,OH
-43068,36027,Columbus,OH,329,Columbus,OH
-43069,36027,Columbus,OH,329,Columbus,OH
-43070,36107,Urbana,OH,330,Dayton,OH
-43071,36080,Newark,OH,329,Columbus,OH
-43072,36090,Piqua,OH,330,Dayton,OH
-43073,36027,Columbus,OH,329,Columbus,OH
-43074,36027,Columbus,OH,329,Columbus,OH
-43076,36080,Newark,OH,329,Columbus,OH
-43077,36027,Columbus,OH,329,Columbus,OH
-43078,36107,Urbana,OH,330,Dayton,OH
-43080,36077,Mount Vernon,OH,329,Columbus,OH
-43081,36027,Columbus,OH,329,Columbus,OH
-43082,36027,Columbus,OH,329,Columbus,OH
-43083,36107,Urbana,OH,330,Dayton,OH
-43084,36107,Urbana,OH,330,Dayton,OH
-43085,36027,Columbus,OH,329,Columbus,OH
-43086,36027,Columbus,OH,329,Columbus,OH
-43093,36080,Newark,OH,329,Columbus,OH
-43101,36027,Columbus,OH,329,Columbus,OH
-43102,36057,Lancaster,OH,329,Columbus,OH
-43103,36027,Columbus,OH,329,Columbus,OH
-43105,36057,Lancaster,OH,329,Columbus,OH
-43106,36112,Washington Court House,OH,329,Columbus,OH
-43107,36057,Lancaster,OH,329,Columbus,OH
-43109,36027,Columbus,OH,329,Columbus,OH
-43110,36027,Columbus,OH,329,Columbus,OH
-43111,36079,Nelsonville,OH,329,Columbus,OH
-43112,36027,Columbus,OH,329,Columbus,OH
-43113,36024,Circleville,OH,329,Columbus,OH
-43115,36022,Chillicothe,OH,329,Columbus,OH
-43116,36027,Columbus,OH,329,Columbus,OH
-43117,36027,Columbus,OH,329,Columbus,OH
-43119,36027,Columbus,OH,329,Columbus,OH
-43123,36027,Columbus,OH,329,Columbus,OH
-43125,36027,Columbus,OH,329,Columbus,OH
-43126,36027,Columbus,OH,329,Columbus,OH
-43127,36060,Logan,OH,329,Columbus,OH
-43128,36112,Washington Court House,OH,329,Columbus,OH
-43130,36057,Lancaster,OH,329,Columbus,OH
-43135,36027,Columbus,OH,329,Columbus,OH
-43136,36027,Columbus,OH,329,Columbus,OH
-43137,36027,Columbus,OH,329,Columbus,OH
-43138,36060,Logan,OH,329,Columbus,OH
-43140,36061,London,OH,329,Columbus,OH
-43142,36112,Washington Court House,OH,329,Columbus,OH
-43143,36027,Columbus,OH,329,Columbus,OH
-43144,36079,Nelsonville,OH,329,Columbus,OH
-43145,36027,Columbus,OH,329,Columbus,OH
-43146,36027,Columbus,OH,329,Columbus,OH
-43147,36027,Columbus,OH,329,Columbus,OH
-43148,36057,Lancaster,OH,329,Columbus,OH
-43149,36027,Columbus,OH,329,Columbus,OH
-43150,36057,Lancaster,OH,329,Columbus,OH
-43151,36061,London,OH,329,Columbus,OH
-43152,36060,Logan,OH,329,Columbus,OH
-43153,36099,Springfield,OH,330,Dayton,OH
-43154,36027,Columbus,OH,329,Columbus,OH
-43155,36057,Lancaster,OH,329,Columbus,OH
-43156,36027,Columbus,OH,329,Columbus,OH
-43157,36057,Lancaster,OH,329,Columbus,OH
-43158,36079,Nelsonville,OH,329,Columbus,OH
-43160,36112,Washington Court House,OH,329,Columbus,OH
-43162,36027,Columbus,OH,329,Columbus,OH
-43164,36027,Columbus,OH,329,Columbus,OH
-43194,36027,Columbus,OH,329,Columbus,OH
-43195,36027,Columbus,OH,329,Columbus,OH
-43199,36027,Columbus,OH,329,Columbus,OH
-43201,36027,Columbus,OH,329,Columbus,OH
-43202,36027,Columbus,OH,329,Columbus,OH
-43203,36027,Columbus,OH,329,Columbus,OH
-43204,36027,Columbus,OH,329,Columbus,OH
-43205,36027,Columbus,OH,329,Columbus,OH
-43206,36027,Columbus,OH,329,Columbus,OH
-43207,36027,Columbus,OH,329,Columbus,OH
-43209,36027,Columbus,OH,329,Columbus,OH
-43210,36027,Columbus,OH,329,Columbus,OH
-43211,36027,Columbus,OH,329,Columbus,OH
-43212,36027,Columbus,OH,329,Columbus,OH
-43213,36027,Columbus,OH,329,Columbus,OH
-43214,36027,Columbus,OH,329,Columbus,OH
-43215,36027,Columbus,OH,329,Columbus,OH
-43216,36027,Columbus,OH,329,Columbus,OH
-43217,36027,Columbus,OH,329,Columbus,OH
-43218,36027,Columbus,OH,329,Columbus,OH
-43219,36027,Columbus,OH,329,Columbus,OH
-43220,36027,Columbus,OH,329,Columbus,OH
-43221,36027,Columbus,OH,329,Columbus,OH
-43222,36027,Columbus,OH,329,Columbus,OH
-43223,36027,Columbus,OH,329,Columbus,OH
-43224,36027,Columbus,OH,329,Columbus,OH
-43226,36027,Columbus,OH,329,Columbus,OH
-43227,36027,Columbus,OH,329,Columbus,OH
-43228,36027,Columbus,OH,329,Columbus,OH
-43229,36027,Columbus,OH,329,Columbus,OH
-43230,36027,Columbus,OH,329,Columbus,OH
-43231,36027,Columbus,OH,329,Columbus,OH
-43232,36027,Columbus,OH,329,Columbus,OH
-43234,36027,Columbus,OH,329,Columbus,OH
-43235,36027,Columbus,OH,329,Columbus,OH
-43236,36027,Columbus,OH,329,Columbus,OH
-43240,36027,Columbus,OH,329,Columbus,OH
-43251,36027,Columbus,OH,329,Columbus,OH
-43260,36027,Columbus,OH,329,Columbus,OH
-43266,36027,Columbus,OH,329,Columbus,OH
-43268,36027,Columbus,OH,329,Columbus,OH
-43270,36027,Columbus,OH,329,Columbus,OH
-43271,36027,Columbus,OH,329,Columbus,OH
-43272,36027,Columbus,OH,329,Columbus,OH
-43279,36027,Columbus,OH,329,Columbus,OH
-43287,36027,Columbus,OH,329,Columbus,OH
-43291,36027,Columbus,OH,329,Columbus,OH
-43301,36066,Marion,OH,329,Columbus,OH
-43302,36066,Marion,OH,329,Columbus,OH
-43310,36054,Kenton,OH,329,Columbus,OH
-43311,36012,Bellefontaine,OH,329,Columbus,OH
-43314,36066,Marion,OH,329,Columbus,OH
-43315,36076,Mount Gilead,OH,329,Columbus,OH
-43316,36040,Findlay,OH,334,Toledo,OH
-43317,36077,Mount Vernon,OH,329,Columbus,OH
-43318,36012,Bellefontaine,OH,329,Columbus,OH
-43319,36012,Bellefontaine,OH,329,Columbus,OH
-43320,36066,Marion,OH,329,Columbus,OH
-43321,36076,Mount Gilead,OH,329,Columbus,OH
-43322,36066,Marion,OH,329,Columbus,OH
-43323,36066,Marion,OH,329,Columbus,OH
-43324,36012,Bellefontaine,OH,329,Columbus,OH
-43325,36043,Galion,OH,329,Columbus,OH
-43326,36054,Kenton,OH,329,Columbus,OH
-43330,36106,Upper Sandusky,OH,329,Columbus,OH
-43331,36012,Bellefontaine,OH,329,Columbus,OH
-43332,36066,Marion,OH,329,Columbus,OH
-43333,36012,Bellefontaine,OH,329,Columbus,OH
-43334,36027,Columbus,OH,329,Columbus,OH
-43335,36066,Marion,OH,329,Columbus,OH
-43336,36012,Bellefontaine,OH,329,Columbus,OH
-43337,36066,Marion,OH,329,Columbus,OH
-43338,36076,Mount Gilead,OH,329,Columbus,OH
-43340,36054,Kenton,OH,329,Columbus,OH
-43341,36066,Marion,OH,329,Columbus,OH
-43342,36066,Marion,OH,329,Columbus,OH
-43343,36098,Sidney,OH,330,Dayton,OH
-43344,36066,Marion,OH,329,Columbus,OH
-43345,36054,Kenton,OH,329,Columbus,OH
-43346,36058,Lima,OH,330,Dayton,OH
-43347,36012,Bellefontaine,OH,329,Columbus,OH
-43348,36012,Bellefontaine,OH,329,Columbus,OH
-43349,36077,Mount Vernon,OH,329,Columbus,OH
-43350,36077,Mount Vernon,OH,329,Columbus,OH
-43351,36106,Upper Sandusky,OH,329,Columbus,OH
-43356,36066,Marion,OH,329,Columbus,OH
-43357,36012,Bellefontaine,OH,329,Columbus,OH
-43358,36012,Bellefontaine,OH,329,Columbus,OH
-43359,36106,Upper Sandusky,OH,329,Columbus,OH
-43360,36012,Bellefontaine,OH,329,Columbus,OH
-43402,36015,Bowling Green,OH,334,Toledo,OH
-43403,36015,Bowling Green,OH,334,Toledo,OH
-43406,36015,Bowling Green,OH,334,Toledo,OH
-43407,36042,Fremont,OH,334,Toledo,OH
-43408,36084,Oregon,OH,334,Toledo,OH
-43410,36013,Bellevue,OH,328,Cleveland,OH
-43412,36084,Oregon,OH,334,Toledo,OH
-43413,36015,Bowling Green,OH,334,Toledo,OH
-43414,36015,Bowling Green,OH,334,Toledo,OH
-43416,36084,Oregon,OH,334,Toledo,OH
-43420,36042,Fremont,OH,334,Toledo,OH
-43430,36084,Oregon,OH,334,Toledo,OH
-43431,36042,Fremont,OH,334,Toledo,OH
-43432,36092,Port Clinton,OH,334,Toledo,OH
-43433,36092,Port Clinton,OH,334,Toledo,OH
-43434,36084,Oregon,OH,334,Toledo,OH
-43435,36042,Fremont,OH,334,Toledo,OH
-43436,36096,Sandusky,OH,328,Cleveland,OH
-43437,36015,Bowling Green,OH,334,Toledo,OH
-43438,36096,Sandusky,OH,328,Cleveland,OH
-43439,36092,Port Clinton,OH,334,Toledo,OH
-43440,36092,Port Clinton,OH,334,Toledo,OH
-43441,36070,Maumee,OH,334,Toledo,OH
-43442,36042,Fremont,OH,334,Toledo,OH
-43443,36084,Oregon,OH,334,Toledo,OH
-43445,36084,Oregon,OH,334,Toledo,OH
-43446,36096,Sandusky,OH,328,Cleveland,OH
-43447,36084,Oregon,OH,334,Toledo,OH
-43449,36092,Port Clinton,OH,334,Toledo,OH
-43450,36015,Bowling Green,OH,334,Toledo,OH
-43451,36015,Bowling Green,OH,334,Toledo,OH
-43452,36092,Port Clinton,OH,334,Toledo,OH
-43456,36096,Sandusky,OH,328,Cleveland,OH
-43457,36041,Fostoria,OH,334,Toledo,OH
-43458,36092,Port Clinton,OH,334,Toledo,OH
-43460,36104,Toledo,OH,334,Toledo,OH
-43462,36015,Bowling Green,OH,334,Toledo,OH
-43463,36070,Maumee,OH,334,Toledo,OH
-43464,36096,Sandusky,OH,328,Cleveland,OH
-43465,36084,Oregon,OH,334,Toledo,OH
-43466,36015,Bowling Green,OH,334,Toledo,OH
-43467,36041,Fostoria,OH,334,Toledo,OH
-43468,36084,Oregon,OH,334,Toledo,OH
-43469,36084,Oregon,OH,334,Toledo,OH
-43501,36016,Bryan,OH,180,Fort Wayne,IN
-43502,36113,Wauseon,OH,334,Toledo,OH
-43504,36102,Sylvania,OH,334,Toledo,OH
-43505,36016,Bryan,OH,180,Fort Wayne,IN
-43506,36016,Bryan,OH,180,Fort Wayne,IN
-43510,36078,Napoleon,OH,334,Toledo,OH
-43511,36015,Bowling Green,OH,334,Toledo,OH
-43512,36033,Defiance,OH,180,Fort Wayne,IN
-43515,36113,Wauseon,OH,334,Toledo,OH
-43516,36015,Bowling Green,OH,334,Toledo,OH
-43517,36016,Bryan,OH,180,Fort Wayne,IN
-43518,36016,Bryan,OH,180,Fort Wayne,IN
-43519,36033,Defiance,OH,180,Fort Wayne,IN
-43520,36016,Bryan,OH,180,Fort Wayne,IN
-43521,36113,Wauseon,OH,334,Toledo,OH
-43522,36070,Maumee,OH,334,Toledo,OH
-43523,36078,Napoleon,OH,334,Toledo,OH
-43524,36033,Defiance,OH,180,Fort Wayne,IN
-43525,36015,Bowling Green,OH,334,Toledo,OH
-43526,36051,Hicksville,OH,180,Fort Wayne,IN
-43527,36033,Defiance,OH,180,Fort Wayne,IN
-43528,36104,Toledo,OH,334,Toledo,OH
-43529,36015,Bowling Green,OH,334,Toledo,OH
-43530,36033,Defiance,OH,180,Fort Wayne,IN
-43531,36016,Bryan,OH,180,Fort Wayne,IN
-43532,36078,Napoleon,OH,334,Toledo,OH
-43533,36113,Wauseon,OH,334,Toledo,OH
-43534,36015,Bowling Green,OH,334,Toledo,OH
-43535,36078,Napoleon,OH,334,Toledo,OH
-43536,36051,Hicksville,OH,180,Fort Wayne,IN
-43537,36070,Maumee,OH,334,Toledo,OH
-43540,36102,Sylvania,OH,334,Toledo,OH
-43541,36015,Bowling Green,OH,334,Toledo,OH
-43542,36070,Maumee,OH,334,Toledo,OH
-43543,36016,Bryan,OH,180,Fort Wayne,IN
-43545,36078,Napoleon,OH,334,Toledo,OH
-43547,36070,Maumee,OH,334,Toledo,OH
-43548,36033,Defiance,OH,180,Fort Wayne,IN
-43549,36016,Bryan,OH,180,Fort Wayne,IN
-43550,36078,Napoleon,OH,334,Toledo,OH
-43551,36070,Maumee,OH,334,Toledo,OH
-43552,36070,Maumee,OH,334,Toledo,OH
-43553,36113,Wauseon,OH,334,Toledo,OH
-43554,36016,Bryan,OH,180,Fort Wayne,IN
-43555,36078,Napoleon,OH,334,Toledo,OH
-43556,36016,Bryan,OH,180,Fort Wayne,IN
-43557,36016,Bryan,OH,180,Fort Wayne,IN
-43558,36070,Maumee,OH,334,Toledo,OH
-43560,36102,Sylvania,OH,334,Toledo,OH
-43565,36015,Bowling Green,OH,334,Toledo,OH
-43566,36070,Maumee,OH,334,Toledo,OH
-43567,36113,Wauseon,OH,334,Toledo,OH
-43569,36015,Bowling Green,OH,334,Toledo,OH
-43570,36016,Bryan,OH,180,Fort Wayne,IN
-43571,36070,Maumee,OH,334,Toledo,OH
-43601,36104,Toledo,OH,334,Toledo,OH
-43603,36104,Toledo,OH,334,Toledo,OH
-43604,36104,Toledo,OH,334,Toledo,OH
-43605,36084,Oregon,OH,334,Toledo,OH
-43606,36104,Toledo,OH,334,Toledo,OH
-43607,36104,Toledo,OH,334,Toledo,OH
-43608,36104,Toledo,OH,334,Toledo,OH
-43609,36104,Toledo,OH,334,Toledo,OH
-43610,36104,Toledo,OH,334,Toledo,OH
-43611,36104,Toledo,OH,334,Toledo,OH
-43612,36104,Toledo,OH,334,Toledo,OH
-43613,36104,Toledo,OH,334,Toledo,OH
-43614,36104,Toledo,OH,334,Toledo,OH
-43615,36104,Toledo,OH,334,Toledo,OH
-43616,36084,Oregon,OH,334,Toledo,OH
-43617,36104,Toledo,OH,334,Toledo,OH
-43619,36084,Oregon,OH,334,Toledo,OH
-43620,36104,Toledo,OH,334,Toledo,OH
-43623,36104,Toledo,OH,334,Toledo,OH
-43635,36104,Toledo,OH,334,Toledo,OH
-43652,36104,Toledo,OH,334,Toledo,OH
-43654,36084,Oregon,OH,334,Toledo,OH
-43656,36104,Toledo,OH,334,Toledo,OH
-43657,36104,Toledo,OH,334,Toledo,OH
-43659,36104,Toledo,OH,334,Toledo,OH
-43660,36104,Toledo,OH,334,Toledo,OH
-43661,36104,Toledo,OH,334,Toledo,OH
-43666,36104,Toledo,OH,334,Toledo,OH
-43667,36104,Toledo,OH,334,Toledo,OH
-43681,36104,Toledo,OH,334,Toledo,OH
-43682,36104,Toledo,OH,334,Toledo,OH
-43697,36104,Toledo,OH,334,Toledo,OH
-43699,36104,Toledo,OH,334,Toledo,OH
-43701,36124,Zanesville,OH,329,Columbus,OH
-43702,36124,Zanesville,OH,329,Columbus,OH
-43711,36124,Zanesville,OH,329,Columbus,OH
-43713,36008,Barnesville,OH,329,Columbus,OH
-43716,36008,Barnesville,OH,329,Columbus,OH
-43717,36019,Cambridge,OH,329,Columbus,OH
-43718,51044,Wheeling,WV,357,Pittsburgh,PA
-43719,36008,Barnesville,OH,329,Columbus,OH
-43720,36124,Zanesville,OH,329,Columbus,OH
-43721,36080,Newark,OH,329,Columbus,OH
-43722,36019,Cambridge,OH,329,Columbus,OH
-43723,36019,Cambridge,OH,329,Columbus,OH
-43724,36019,Cambridge,OH,329,Columbus,OH
-43725,36019,Cambridge,OH,329,Columbus,OH
-43727,36124,Zanesville,OH,329,Columbus,OH
-43728,36065,Marietta,OH,329,Columbus,OH
-43730,36124,Zanesville,OH,329,Columbus,OH
-43731,36124,Zanesville,OH,329,Columbus,OH
-43732,36124,Zanesville,OH,329,Columbus,OH
-43733,36019,Cambridge,OH,329,Columbus,OH
-43734,36124,Zanesville,OH,329,Columbus,OH
-43735,36124,Zanesville,OH,329,Columbus,OH
-43736,36008,Barnesville,OH,329,Columbus,OH
-43738,36124,Zanesville,OH,329,Columbus,OH
-43739,36124,Zanesville,OH,329,Columbus,OH
-43740,36080,Newark,OH,329,Columbus,OH
-43746,36124,Zanesville,OH,329,Columbus,OH
-43747,36008,Barnesville,OH,329,Columbus,OH
-43748,36124,Zanesville,OH,329,Columbus,OH
-43749,36019,Cambridge,OH,329,Columbus,OH
-43750,36019,Cambridge,OH,329,Columbus,OH
-43752,36008,Barnesville,OH,329,Columbus,OH
-43754,36008,Barnesville,OH,329,Columbus,OH
-43755,36019,Cambridge,OH,329,Columbus,OH
-43756,36124,Zanesville,OH,329,Columbus,OH
-43757,36008,Barnesville,OH,329,Columbus,OH
-43758,36124,Zanesville,OH,329,Columbus,OH
-43759,36008,Barnesville,OH,329,Columbus,OH
-43760,36124,Zanesville,OH,329,Columbus,OH
-43761,36124,Zanesville,OH,329,Columbus,OH
-43762,36124,Zanesville,OH,329,Columbus,OH
-43764,36124,Zanesville,OH,329,Columbus,OH
-43766,36060,Logan,OH,329,Columbus,OH
-43767,36124,Zanesville,OH,329,Columbus,OH
-43768,36019,Cambridge,OH,329,Columbus,OH
-43771,36124,Zanesville,OH,329,Columbus,OH
-43772,36019,Cambridge,OH,329,Columbus,OH
-43773,36008,Barnesville,OH,329,Columbus,OH
-43777,36124,Zanesville,OH,329,Columbus,OH
-43778,36019,Cambridge,OH,329,Columbus,OH
-43779,36019,Cambridge,OH,329,Columbus,OH
-43780,36019,Cambridge,OH,329,Columbus,OH
-43782,36124,Zanesville,OH,329,Columbus,OH
-43783,36124,Zanesville,OH,329,Columbus,OH
-43786,36019,Cambridge,OH,329,Columbus,OH
-43787,36124,Zanesville,OH,329,Columbus,OH
-43788,36019,Cambridge,OH,329,Columbus,OH
-43791,36124,Zanesville,OH,329,Columbus,OH
-43793,36008,Barnesville,OH,329,Columbus,OH
-43802,36124,Zanesville,OH,329,Columbus,OH
-43803,36019,Cambridge,OH,329,Columbus,OH
-43804,36029,Coshocton,OH,329,Columbus,OH
-43805,36029,Coshocton,OH,329,Columbus,OH
-43811,36029,Coshocton,OH,329,Columbus,OH
-43812,36029,Coshocton,OH,329,Columbus,OH
-43821,36124,Zanesville,OH,329,Columbus,OH
-43822,36124,Zanesville,OH,329,Columbus,OH
-43824,36029,Coshocton,OH,329,Columbus,OH
-43828,36029,Coshocton,OH,329,Columbus,OH
-43830,36124,Zanesville,OH,329,Columbus,OH
-43832,36019,Cambridge,OH,329,Columbus,OH
-43836,36029,Coshocton,OH,329,Columbus,OH
-43837,36035,Dennison,OH,326,Canton,OH
-43840,36036,Dover,OH,326,Canton,OH
-43842,36124,Zanesville,OH,329,Columbus,OH
-43843,36077,Mount Vernon,OH,329,Columbus,OH
-43844,36029,Coshocton,OH,329,Columbus,OH
-43845,36029,Coshocton,OH,329,Columbus,OH
-43901,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43902,36008,Barnesville,OH,329,Columbus,OH
-43903,36101,Steubenville,OH,357,Pittsburgh,PA
-43905,51044,Wheeling,WV,357,Pittsburgh,PA
-43906,36011,Bellaire,OH,357,Pittsburgh,PA
-43907,36018,Cadiz,OH,357,Pittsburgh,PA
-43908,36101,Steubenville,OH,357,Pittsburgh,PA
-43909,51044,Wheeling,WV,357,Pittsburgh,PA
-43910,36101,Steubenville,OH,357,Pittsburgh,PA
-43912,51044,Wheeling,WV,357,Pittsburgh,PA
-43913,36101,Steubenville,OH,357,Pittsburgh,PA
-43914,36011,Bellaire,OH,357,Pittsburgh,PA
-43915,36011,Bellaire,OH,357,Pittsburgh,PA
-43916,51044,Wheeling,WV,357,Pittsburgh,PA
-43917,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43920,36037,East Liverpool,OH,357,Pittsburgh,PA
-43925,36101,Steubenville,OH,357,Pittsburgh,PA
-43926,36101,Steubenville,OH,357,Pittsburgh,PA
-43927,51044,Wheeling,WV,357,Pittsburgh,PA
-43928,51044,Wheeling,WV,357,Pittsburgh,PA
-43930,36037,East Liverpool,OH,357,Pittsburgh,PA
-43931,51025,New Martinsville,WV,357,Pittsburgh,PA
-43932,36037,East Liverpool,OH,357,Pittsburgh,PA
-43933,36011,Bellaire,OH,357,Pittsburgh,PA
-43934,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43935,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43937,51044,Wheeling,WV,357,Pittsburgh,PA
-43938,36101,Steubenville,OH,357,Pittsburgh,PA
-43939,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43940,36011,Bellaire,OH,357,Pittsburgh,PA
-43941,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43942,36011,Bellaire,OH,357,Pittsburgh,PA
-43943,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43944,36101,Steubenville,OH,357,Pittsburgh,PA
-43945,36037,East Liverpool,OH,357,Pittsburgh,PA
-43946,51025,New Martinsville,WV,357,Pittsburgh,PA
-43947,36011,Bellaire,OH,357,Pittsburgh,PA
-43948,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43950,51044,Wheeling,WV,357,Pittsburgh,PA
-43951,51044,Wheeling,WV,357,Pittsburgh,PA
-43952,36101,Steubenville,OH,357,Pittsburgh,PA
-43953,36101,Steubenville,OH,357,Pittsburgh,PA
-43961,36101,Steubenville,OH,357,Pittsburgh,PA
-43962,36037,East Liverpool,OH,357,Pittsburgh,PA
-43963,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43964,36101,Steubenville,OH,357,Pittsburgh,PA
-43967,51044,Wheeling,WV,357,Pittsburgh,PA
-43968,36037,East Liverpool,OH,357,Pittsburgh,PA
-43970,36101,Steubenville,OH,357,Pittsburgh,PA
-43971,36067,Martins Ferry,OH,357,Pittsburgh,PA
-43972,51044,Wheeling,WV,357,Pittsburgh,PA
-43973,36019,Cambridge,OH,329,Columbus,OH
-43974,36018,Cadiz,OH,357,Pittsburgh,PA
-43976,36101,Steubenville,OH,357,Pittsburgh,PA
-43977,51044,Wheeling,WV,357,Pittsburgh,PA
-43981,36018,Cadiz,OH,357,Pittsburgh,PA
-43983,36008,Barnesville,OH,329,Columbus,OH
-43984,36018,Cadiz,OH,357,Pittsburgh,PA
-43985,51044,Wheeling,WV,357,Pittsburgh,PA
-43986,36018,Cadiz,OH,357,Pittsburgh,PA
-43988,36018,Cadiz,OH,357,Pittsburgh,PA
-44001,36062,Lorain,OH,331,Elyria,OH
-44003,36110,Warren,OH,335,Youngstown,OH
-44004,36005,Ashtabula,OH,328,Cleveland,OH
-44005,36005,Ashtabula,OH,328,Cleveland,OH
-44010,36005,Ashtabula,OH,328,Cleveland,OH
-44011,36118,Westlake,OH,328,Cleveland,OH
-44012,36062,Lorain,OH,331,Elyria,OH
-44017,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44021,36021,Chardon,OH,328,Cleveland,OH
-44022,36025,Cleveland,OH,328,Cleveland,OH
-44023,36025,Cleveland,OH,328,Cleveland,OH
-44024,36021,Chardon,OH,328,Cleveland,OH
-44026,36071,Mayfield Heights,OH,328,Cleveland,OH
-44028,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44030,36028,Conneaut,OH,351,Erie,PA
-44032,36005,Ashtabula,OH,328,Cleveland,OH
-44033,36021,Chardon,OH,328,Cleveland,OH
-44035,36038,Elyria,OH,331,Elyria,OH
-44036,36038,Elyria,OH,331,Elyria,OH
-44039,36038,Elyria,OH,331,Elyria,OH
-44040,36071,Mayfield Heights,OH,328,Cleveland,OH
-44041,36046,Geneva,OH,328,Cleveland,OH
-44044,36038,Elyria,OH,331,Elyria,OH
-44045,36087,Painesville,OH,328,Cleveland,OH
-44046,36021,Chardon,OH,328,Cleveland,OH
-44047,36005,Ashtabula,OH,328,Cleveland,OH
-44048,36005,Ashtabula,OH,328,Cleveland,OH
-44049,36083,Oberlin,OH,328,Cleveland,OH
-44050,36038,Elyria,OH,331,Elyria,OH
-44052,36062,Lorain,OH,331,Elyria,OH
-44053,36062,Lorain,OH,331,Elyria,OH
-44054,36062,Lorain,OH,331,Elyria,OH
-44055,36062,Lorain,OH,331,Elyria,OH
-44056,36025,Cleveland,OH,328,Cleveland,OH
-44057,36087,Painesville,OH,328,Cleveland,OH
-44060,36087,Painesville,OH,328,Cleveland,OH
-44061,36087,Painesville,OH,328,Cleveland,OH
-44062,36021,Chardon,OH,328,Cleveland,OH
-44064,36021,Chardon,OH,328,Cleveland,OH
-44065,36021,Chardon,OH,328,Cleveland,OH
-44067,36025,Cleveland,OH,328,Cleveland,OH
-44068,36028,Conneaut,OH,351,Erie,PA
-44070,36025,Cleveland,OH,328,Cleveland,OH
-44072,36071,Mayfield Heights,OH,328,Cleveland,OH
-44073,36071,Mayfield Heights,OH,328,Cleveland,OH
-44074,36083,Oberlin,OH,328,Cleveland,OH
-44076,36110,Warren,OH,335,Youngstown,OH
-44077,36087,Painesville,OH,328,Cleveland,OH
-44080,36094,Ravenna,OH,325,Akron,OH
-44081,36087,Painesville,OH,328,Cleveland,OH
-44082,36028,Conneaut,OH,351,Erie,PA
-44084,36046,Geneva,OH,328,Cleveland,OH
-44085,36110,Warren,OH,335,Youngstown,OH
-44086,36021,Chardon,OH,328,Cleveland,OH
-44087,36025,Cleveland,OH,328,Cleveland,OH
-44088,36046,Geneva,OH,328,Cleveland,OH
-44089,36062,Lorain,OH,331,Elyria,OH
-44090,36083,Oberlin,OH,328,Cleveland,OH
-44092,36025,Cleveland,OH,328,Cleveland,OH
-44093,36110,Warren,OH,335,Youngstown,OH
-44094,36087,Painesville,OH,328,Cleveland,OH
-44095,36087,Painesville,OH,328,Cleveland,OH
-44096,36087,Painesville,OH,328,Cleveland,OH
-44097,36087,Painesville,OH,328,Cleveland,OH
-44099,36021,Chardon,OH,328,Cleveland,OH
-44101,36025,Cleveland,OH,328,Cleveland,OH
-44102,36025,Cleveland,OH,328,Cleveland,OH
-44103,36025,Cleveland,OH,328,Cleveland,OH
-44104,36025,Cleveland,OH,328,Cleveland,OH
-44105,36025,Cleveland,OH,328,Cleveland,OH
-44106,36025,Cleveland,OH,328,Cleveland,OH
-44107,36056,Lakewood,OH,328,Cleveland,OH
-44108,36025,Cleveland,OH,328,Cleveland,OH
-44109,36025,Cleveland,OH,328,Cleveland,OH
-44110,36025,Cleveland,OH,328,Cleveland,OH
-44111,36025,Cleveland,OH,328,Cleveland,OH
-44112,36025,Cleveland,OH,328,Cleveland,OH
-44113,36025,Cleveland,OH,328,Cleveland,OH
-44114,36025,Cleveland,OH,328,Cleveland,OH
-44115,36025,Cleveland,OH,328,Cleveland,OH
-44116,36025,Cleveland,OH,328,Cleveland,OH
-44117,36039,Euclid,OH,328,Cleveland,OH
-44118,36025,Cleveland,OH,328,Cleveland,OH
-44119,36039,Euclid,OH,328,Cleveland,OH
-44120,36025,Cleveland,OH,328,Cleveland,OH
-44121,36025,Cleveland,OH,328,Cleveland,OH
-44122,36025,Cleveland,OH,328,Cleveland,OH
-44123,36039,Euclid,OH,328,Cleveland,OH
-44124,36071,Mayfield Heights,OH,328,Cleveland,OH
-44125,36045,Garfield Heights,OH,328,Cleveland,OH
-44126,36025,Cleveland,OH,328,Cleveland,OH
-44127,36025,Cleveland,OH,328,Cleveland,OH
-44128,36025,Cleveland,OH,328,Cleveland,OH
-44129,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44130,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44131,36025,Cleveland,OH,328,Cleveland,OH
-44132,36039,Euclid,OH,328,Cleveland,OH
-44133,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44134,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44135,36025,Cleveland,OH,328,Cleveland,OH
-44136,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44137,36045,Garfield Heights,OH,328,Cleveland,OH
-44138,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44139,36025,Cleveland,OH,328,Cleveland,OH
-44140,36118,Westlake,OH,328,Cleveland,OH
-44141,36025,Cleveland,OH,328,Cleveland,OH
-44142,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44143,36025,Cleveland,OH,328,Cleveland,OH
-44144,36025,Cleveland,OH,328,Cleveland,OH
-44145,36118,Westlake,OH,328,Cleveland,OH
-44146,36010,Bedford,OH,328,Cleveland,OH
-44147,36025,Cleveland,OH,328,Cleveland,OH
-44149,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44181,36025,Cleveland,OH,328,Cleveland,OH
-44188,36025,Cleveland,OH,328,Cleveland,OH
-44190,36025,Cleveland,OH,328,Cleveland,OH
-44191,36025,Cleveland,OH,328,Cleveland,OH
-44192,36025,Cleveland,OH,328,Cleveland,OH
-44193,36025,Cleveland,OH,328,Cleveland,OH
-44194,36025,Cleveland,OH,328,Cleveland,OH
-44195,36025,Cleveland,OH,328,Cleveland,OH
-44197,36025,Cleveland,OH,328,Cleveland,OH
-44198,36025,Cleveland,OH,328,Cleveland,OH
-44199,36025,Cleveland,OH,328,Cleveland,OH
-44201,36094,Ravenna,OH,325,Akron,OH
-44202,36025,Cleveland,OH,328,Cleveland,OH
-44203,36007,Barberton,OH,325,Akron,OH
-44210,36001,Akron,OH,325,Akron,OH
-44211,36094,Ravenna,OH,325,Akron,OH
-44212,36088,Parma/Middleburg Heights,OH,328,Cleveland,OH
-44214,36121,Wooster,OH,326,Canton,OH
-44215,36072,Medina,OH,328,Cleveland,OH
-44216,36007,Barberton,OH,325,Akron,OH
-44217,36121,Wooster,OH,326,Canton,OH
-44221,36001,Akron,OH,325,Akron,OH
-44222,36001,Akron,OH,325,Akron,OH
-44223,36001,Akron,OH,325,Akron,OH
-44224,36001,Akron,OH,325,Akron,OH
-44230,36007,Barberton,OH,325,Akron,OH
-44231,36094,Ravenna,OH,325,Akron,OH
-44232,36020,Canton,OH,326,Canton,OH
-44233,36072,Medina,OH,328,Cleveland,OH
-44234,36094,Ravenna,OH,325,Akron,OH
-44235,36059,Lodi,OH,328,Cleveland,OH
-44236,36001,Akron,OH,325,Akron,OH
-44237,36001,Akron,OH,325,Akron,OH
-44240,36094,Ravenna,OH,325,Akron,OH
-44241,36094,Ravenna,OH,325,Akron,OH
-44242,36094,Ravenna,OH,325,Akron,OH
-44243,36094,Ravenna,OH,325,Akron,OH
-44250,36001,Akron,OH,325,Akron,OH
-44251,36121,Wooster,OH,326,Canton,OH
-44253,36072,Medina,OH,328,Cleveland,OH
-44254,36059,Lodi,OH,328,Cleveland,OH
-44255,36094,Ravenna,OH,325,Akron,OH
-44256,36072,Medina,OH,328,Cleveland,OH
-44258,36072,Medina,OH,328,Cleveland,OH
-44260,36001,Akron,OH,325,Akron,OH
-44262,36001,Akron,OH,325,Akron,OH
-44264,36001,Akron,OH,325,Akron,OH
-44265,36094,Ravenna,OH,325,Akron,OH
-44266,36094,Ravenna,OH,325,Akron,OH
-44270,36109,Wadsworth,OH,325,Akron,OH
-44272,36094,Ravenna,OH,325,Akron,OH
-44273,36109,Wadsworth,OH,325,Akron,OH
-44274,36109,Wadsworth,OH,325,Akron,OH
-44275,36059,Lodi,OH,328,Cleveland,OH
-44276,36109,Wadsworth,OH,325,Akron,OH
-44278,36001,Akron,OH,325,Akron,OH
-44280,36072,Medina,OH,328,Cleveland,OH
-44281,36109,Wadsworth,OH,325,Akron,OH
-44282,36109,Wadsworth,OH,325,Akron,OH
-44285,36094,Ravenna,OH,325,Akron,OH
-44286,36001,Akron,OH,325,Akron,OH
-44287,36121,Wooster,OH,326,Canton,OH
-44288,36094,Ravenna,OH,325,Akron,OH
-44301,36001,Akron,OH,325,Akron,OH
-44302,36001,Akron,OH,325,Akron,OH
-44303,36001,Akron,OH,325,Akron,OH
-44304,36001,Akron,OH,325,Akron,OH
-44305,36001,Akron,OH,325,Akron,OH
-44306,36001,Akron,OH,325,Akron,OH
-44307,36001,Akron,OH,325,Akron,OH
-44308,36001,Akron,OH,325,Akron,OH
-44309,36001,Akron,OH,325,Akron,OH
-44310,36001,Akron,OH,325,Akron,OH
-44311,36001,Akron,OH,325,Akron,OH
-44312,36001,Akron,OH,325,Akron,OH
-44313,36001,Akron,OH,325,Akron,OH
-44314,36001,Akron,OH,325,Akron,OH
-44315,36001,Akron,OH,325,Akron,OH
-44316,36001,Akron,OH,325,Akron,OH
-44317,36001,Akron,OH,325,Akron,OH
-44319,36001,Akron,OH,325,Akron,OH
-44320,36001,Akron,OH,325,Akron,OH
-44321,36001,Akron,OH,325,Akron,OH
-44325,36001,Akron,OH,325,Akron,OH
-44326,36001,Akron,OH,325,Akron,OH
-44328,36001,Akron,OH,325,Akron,OH
-44333,36001,Akron,OH,325,Akron,OH
-44334,36001,Akron,OH,325,Akron,OH
-44372,36001,Akron,OH,325,Akron,OH
-44396,36001,Akron,OH,325,Akron,OH
-44398,36001,Akron,OH,325,Akron,OH
-44401,36123,Youngstown,OH,335,Youngstown,OH
-44402,36110,Warren,OH,335,Youngstown,OH
-44403,36123,Youngstown,OH,335,Youngstown,OH
-44404,36110,Warren,OH,335,Youngstown,OH
-44405,36123,Youngstown,OH,335,Youngstown,OH
-44406,36123,Youngstown,OH,335,Youngstown,OH
-44408,36095,Salem,OH,335,Youngstown,OH
-44410,36110,Warren,OH,335,Youngstown,OH
-44411,36094,Ravenna,OH,325,Akron,OH
-44412,36094,Ravenna,OH,325,Akron,OH
-44413,36095,Salem,OH,335,Youngstown,OH
-44415,36095,Salem,OH,335,Youngstown,OH
-44416,36123,Youngstown,OH,335,Youngstown,OH
-44417,36110,Warren,OH,335,Youngstown,OH
-44418,36110,Warren,OH,335,Youngstown,OH
-44420,36123,Youngstown,OH,335,Youngstown,OH
-44422,36123,Youngstown,OH,335,Youngstown,OH
-44423,36095,Salem,OH,335,Youngstown,OH
-44424,36110,Warren,OH,335,Youngstown,OH
-44425,36123,Youngstown,OH,335,Youngstown,OH
-44427,36095,Salem,OH,335,Youngstown,OH
-44428,36110,Warren,OH,335,Youngstown,OH
-44429,36123,Youngstown,OH,335,Youngstown,OH
-44430,36110,Warren,OH,335,Youngstown,OH
-44431,36095,Salem,OH,335,Youngstown,OH
-44432,36095,Salem,OH,335,Youngstown,OH
-44436,36123,Youngstown,OH,335,Youngstown,OH
-44437,36123,Youngstown,OH,335,Youngstown,OH
-44438,36123,Youngstown,OH,335,Youngstown,OH
-44439,36021,Chardon,OH,328,Cleveland,OH
-44440,36110,Warren,OH,335,Youngstown,OH
-44441,36095,Salem,OH,335,Youngstown,OH
-44442,36123,Youngstown,OH,335,Youngstown,OH
-44443,36123,Youngstown,OH,335,Youngstown,OH
-44444,36110,Warren,OH,335,Youngstown,OH
-44445,36095,Salem,OH,335,Youngstown,OH
-44446,36110,Warren,OH,335,Youngstown,OH
-44449,36094,Ravenna,OH,325,Akron,OH
-44450,36110,Warren,OH,335,Youngstown,OH
-44451,36123,Youngstown,OH,335,Youngstown,OH
-44452,36123,Youngstown,OH,335,Youngstown,OH
-44453,39047,Greenville,PA,351,Erie,PA
-44454,36123,Youngstown,OH,335,Youngstown,OH
-44455,36095,Salem,OH,335,Youngstown,OH
-44460,36095,Salem,OH,335,Youngstown,OH
-44470,36110,Warren,OH,335,Youngstown,OH
-44471,36123,Youngstown,OH,335,Youngstown,OH
-44473,36110,Warren,OH,335,Youngstown,OH
-44481,36110,Warren,OH,335,Youngstown,OH
-44482,36110,Warren,OH,335,Youngstown,OH
-44483,36110,Warren,OH,335,Youngstown,OH
-44484,36110,Warren,OH,335,Youngstown,OH
-44485,36110,Warren,OH,335,Youngstown,OH
-44486,36110,Warren,OH,335,Youngstown,OH
-44490,36095,Salem,OH,335,Youngstown,OH
-44491,36094,Ravenna,OH,325,Akron,OH
-44492,36095,Salem,OH,335,Youngstown,OH
-44493,36095,Salem,OH,335,Youngstown,OH
-44501,36123,Youngstown,OH,335,Youngstown,OH
-44502,36123,Youngstown,OH,335,Youngstown,OH
-44503,36123,Youngstown,OH,335,Youngstown,OH
-44504,36123,Youngstown,OH,335,Youngstown,OH
-44505,36123,Youngstown,OH,335,Youngstown,OH
-44506,36123,Youngstown,OH,335,Youngstown,OH
-44507,36123,Youngstown,OH,335,Youngstown,OH
-44509,36123,Youngstown,OH,335,Youngstown,OH
-44510,36123,Youngstown,OH,335,Youngstown,OH
-44511,36123,Youngstown,OH,335,Youngstown,OH
-44512,36123,Youngstown,OH,335,Youngstown,OH
-44513,36123,Youngstown,OH,335,Youngstown,OH
-44514,36123,Youngstown,OH,335,Youngstown,OH
-44515,36123,Youngstown,OH,335,Youngstown,OH
-44555,36123,Youngstown,OH,335,Youngstown,OH
-44601,36002,Alliance,OH,326,Canton,OH
-44606,36121,Wooster,OH,326,Canton,OH
-44607,36095,Salem,OH,335,Youngstown,OH
-44608,36069,Massillon,OH,326,Canton,OH
-44609,36002,Alliance,OH,326,Canton,OH
-44610,36075,Millersburg,OH,326,Canton,OH
-44611,36075,Millersburg,OH,326,Canton,OH
-44612,36020,Canton,OH,326,Canton,OH
-44613,36069,Massillon,OH,326,Canton,OH
-44614,36069,Massillon,OH,326,Canton,OH
-44615,36020,Canton,OH,326,Canton,OH
-44617,36075,Millersburg,OH,326,Canton,OH
-44618,36069,Massillon,OH,326,Canton,OH
-44619,36002,Alliance,OH,326,Canton,OH
-44620,36020,Canton,OH,326,Canton,OH
-44621,36035,Dennison,OH,326,Canton,OH
-44622,36036,Dover,OH,326,Canton,OH
-44624,36069,Massillon,OH,326,Canton,OH
-44625,36020,Canton,OH,326,Canton,OH
-44626,36020,Canton,OH,326,Canton,OH
-44627,36121,Wooster,OH,326,Canton,OH
-44628,36075,Millersburg,OH,326,Canton,OH
-44629,36035,Dennison,OH,326,Canton,OH
-44630,36020,Canton,OH,326,Canton,OH
-44632,36020,Canton,OH,326,Canton,OH
-44633,36075,Millersburg,OH,326,Canton,OH
-44634,36002,Alliance,OH,326,Canton,OH
-44636,36069,Massillon,OH,326,Canton,OH
-44637,36075,Millersburg,OH,326,Canton,OH
-44638,36121,Wooster,OH,326,Canton,OH
-44639,36020,Canton,OH,326,Canton,OH
-44640,36002,Alliance,OH,326,Canton,OH
-44641,36020,Canton,OH,326,Canton,OH
-44643,36020,Canton,OH,326,Canton,OH
-44644,36020,Canton,OH,326,Canton,OH
-44645,36085,Orrville,OH,326,Canton,OH
-44646,36069,Massillon,OH,326,Canton,OH
-44647,36069,Massillon,OH,326,Canton,OH
-44648,36069,Massillon,OH,326,Canton,OH
-44650,36002,Alliance,OH,326,Canton,OH
-44651,36020,Canton,OH,326,Canton,OH
-44652,36020,Canton,OH,326,Canton,OH
-44653,36036,Dover,OH,326,Canton,OH
-44654,36075,Millersburg,OH,326,Canton,OH
-44656,36036,Dover,OH,326,Canton,OH
-44657,36020,Canton,OH,326,Canton,OH
-44659,36069,Massillon,OH,326,Canton,OH
-44660,36075,Millersburg,OH,326,Canton,OH
-44661,36121,Wooster,OH,326,Canton,OH
-44662,36069,Massillon,OH,326,Canton,OH
-44663,36036,Dover,OH,326,Canton,OH
-44665,36002,Alliance,OH,326,Canton,OH
-44666,36069,Massillon,OH,326,Canton,OH
-44667,36085,Orrville,OH,326,Canton,OH
-44669,36020,Canton,OH,326,Canton,OH
-44670,36020,Canton,OH,326,Canton,OH
-44671,36020,Canton,OH,326,Canton,OH
-44672,36002,Alliance,OH,326,Canton,OH
-44675,36036,Dover,OH,326,Canton,OH
-44676,36121,Wooster,OH,326,Canton,OH
-44677,36121,Wooster,OH,326,Canton,OH
-44678,36036,Dover,OH,326,Canton,OH
-44679,36035,Dennison,OH,326,Canton,OH
-44680,36036,Dover,OH,326,Canton,OH
-44681,36036,Dover,OH,326,Canton,OH
-44682,36035,Dennison,OH,326,Canton,OH
-44683,36035,Dennison,OH,326,Canton,OH
-44685,36001,Akron,OH,325,Akron,OH
-44687,36036,Dover,OH,326,Canton,OH
-44688,36020,Canton,OH,326,Canton,OH
-44689,36069,Massillon,OH,326,Canton,OH
-44690,36075,Millersburg,OH,326,Canton,OH
-44691,36121,Wooster,OH,326,Canton,OH
-44693,36035,Dennison,OH,326,Canton,OH
-44695,36020,Canton,OH,326,Canton,OH
-44697,36020,Canton,OH,326,Canton,OH
-44699,36035,Dennison,OH,326,Canton,OH
-44701,36020,Canton,OH,326,Canton,OH
-44702,36020,Canton,OH,326,Canton,OH
-44703,36020,Canton,OH,326,Canton,OH
-44704,36020,Canton,OH,326,Canton,OH
-44705,36020,Canton,OH,326,Canton,OH
-44706,36020,Canton,OH,326,Canton,OH
-44707,36020,Canton,OH,326,Canton,OH
-44708,36020,Canton,OH,326,Canton,OH
-44709,36020,Canton,OH,326,Canton,OH
-44710,36020,Canton,OH,326,Canton,OH
-44711,36020,Canton,OH,326,Canton,OH
-44714,36020,Canton,OH,326,Canton,OH
-44718,36020,Canton,OH,326,Canton,OH
-44720,36020,Canton,OH,326,Canton,OH
-44721,36020,Canton,OH,326,Canton,OH
-44730,36020,Canton,OH,326,Canton,OH
-44735,36020,Canton,OH,326,Canton,OH
-44750,36020,Canton,OH,326,Canton,OH
-44767,36020,Canton,OH,326,Canton,OH
-44799,36020,Canton,OH,326,Canton,OH
-44802,36040,Findlay,OH,334,Toledo,OH
-44804,36040,Findlay,OH,334,Toledo,OH
-44805,36004,Ashland,OH,329,Columbus,OH
-44807,36119,Willard,OH,329,Columbus,OH
-44809,36103,Tiffin,OH,334,Toledo,OH
-44811,36013,Bellevue,OH,328,Cleveland,OH
-44813,36064,Mansfield,OH,329,Columbus,OH
-44814,36096,Sandusky,OH,328,Cleveland,OH
-44815,36103,Tiffin,OH,334,Toledo,OH
-44816,36081,Norwalk,OH,328,Cleveland,OH
-44817,36040,Findlay,OH,334,Toledo,OH
-44818,36103,Tiffin,OH,334,Toledo,OH
-44820,36017,Bucyrus,OH,329,Columbus,OH
-44822,36064,Mansfield,OH,329,Columbus,OH
-44824,36096,Sandusky,OH,328,Cleveland,OH
-44825,36103,Tiffin,OH,334,Toledo,OH
-44826,36081,Norwalk,OH,328,Cleveland,OH
-44827,36043,Galion,OH,329,Columbus,OH
-44828,36013,Bellevue,OH,328,Cleveland,OH
-44830,36041,Fostoria,OH,334,Toledo,OH
-44833,36043,Galion,OH,329,Columbus,OH
-44836,36042,Fremont,OH,334,Toledo,OH
-44837,36081,Norwalk,OH,328,Cleveland,OH
-44838,36004,Ashland,OH,329,Columbus,OH
-44839,36096,Sandusky,OH,328,Cleveland,OH
-44840,36004,Ashland,OH,329,Columbus,OH
-44841,36103,Tiffin,OH,334,Toledo,OH
-44842,36063,Loudonville,OH,329,Columbus,OH
-44843,36064,Mansfield,OH,329,Columbus,OH
-44844,36103,Tiffin,OH,334,Toledo,OH
-44845,36103,Tiffin,OH,334,Toledo,OH
-44846,36096,Sandusky,OH,328,Cleveland,OH
-44847,36081,Norwalk,OH,328,Cleveland,OH
-44848,36004,Ashland,OH,329,Columbus,OH
-44849,36066,Marion,OH,329,Columbus,OH
-44850,36119,Willard,OH,329,Columbus,OH
-44851,36081,Norwalk,OH,328,Cleveland,OH
-44853,36040,Findlay,OH,334,Toledo,OH
-44854,36017,Bucyrus,OH,329,Columbus,OH
-44855,36081,Norwalk,OH,328,Cleveland,OH
-44856,36043,Galion,OH,329,Columbus,OH
-44857,36081,Norwalk,OH,328,Cleveland,OH
-44859,36004,Ashland,OH,329,Columbus,OH
-44860,36066,Marion,OH,329,Columbus,OH
-44861,36042,Fremont,OH,334,Toledo,OH
-44862,36064,Mansfield,OH,329,Columbus,OH
-44864,36064,Mansfield,OH,329,Columbus,OH
-44865,36119,Willard,OH,329,Columbus,OH
-44866,36004,Ashland,OH,329,Columbus,OH
-44867,36103,Tiffin,OH,334,Toledo,OH
-44870,36096,Sandusky,OH,328,Cleveland,OH
-44871,36096,Sandusky,OH,328,Cleveland,OH
-44874,36004,Ashland,OH,329,Columbus,OH
-44875,36097,Shelby,OH,329,Columbus,OH
-44878,36064,Mansfield,OH,329,Columbus,OH
-44880,36004,Ashland,OH,329,Columbus,OH
-44881,36017,Bucyrus,OH,329,Columbus,OH
-44882,36106,Upper Sandusky,OH,329,Columbus,OH
-44883,36103,Tiffin,OH,334,Toledo,OH
-44887,36097,Shelby,OH,329,Columbus,OH
-44888,36119,Willard,OH,329,Columbus,OH
-44889,36081,Norwalk,OH,328,Cleveland,OH
-44890,36119,Willard,OH,329,Columbus,OH
-44901,36064,Mansfield,OH,329,Columbus,OH
-44902,36064,Mansfield,OH,329,Columbus,OH
-44903,36064,Mansfield,OH,329,Columbus,OH
-44904,36064,Mansfield,OH,329,Columbus,OH
-44905,36064,Mansfield,OH,329,Columbus,OH
-44906,36064,Mansfield,OH,329,Columbus,OH
-44907,36064,Mansfield,OH,329,Columbus,OH
-45001,36023,Cincinnati,OH,327,Cincinnati,OH
-45002,36023,Cincinnati,OH,327,Cincinnati,OH
-45003,36086,Oxford,OH,327,Cincinnati,OH
-45004,36086,Oxford,OH,327,Cincinnati,OH
-45005,36074,Middletown,OH,332,Kettering,OH
-45011,36050,Hamilton,OH,327,Cincinnati,OH
-45012,36050,Hamilton,OH,327,Cincinnati,OH
-45013,36050,Hamilton,OH,327,Cincinnati,OH
-45014,36050,Hamilton,OH,327,Cincinnati,OH
-45015,36050,Hamilton,OH,327,Cincinnati,OH
-45018,36050,Hamilton,OH,327,Cincinnati,OH
-45030,36023,Cincinnati,OH,327,Cincinnati,OH
-45032,36055,Kettering,OH,332,Kettering,OH
-45033,36023,Cincinnati,OH,327,Cincinnati,OH
-45034,36023,Cincinnati,OH,327,Cincinnati,OH
-45036,36023,Cincinnati,OH,327,Cincinnati,OH
-45039,36023,Cincinnati,OH,327,Cincinnati,OH
-45040,36023,Cincinnati,OH,327,Cincinnati,OH
-45041,36023,Cincinnati,OH,327,Cincinnati,OH
-45042,36074,Middletown,OH,332,Kettering,OH
-45044,36074,Middletown,OH,332,Kettering,OH
-45050,36074,Middletown,OH,332,Kettering,OH
-45051,36023,Cincinnati,OH,327,Cincinnati,OH
-45052,36023,Cincinnati,OH,327,Cincinnati,OH
-45053,36050,Hamilton,OH,327,Cincinnati,OH
-45054,36023,Cincinnati,OH,327,Cincinnati,OH
-45055,36050,Hamilton,OH,327,Cincinnati,OH
-45056,36086,Oxford,OH,327,Cincinnati,OH
-45061,36050,Hamilton,OH,327,Cincinnati,OH
-45062,36050,Hamilton,OH,327,Cincinnati,OH
-45063,36050,Hamilton,OH,327,Cincinnati,OH
-45064,36050,Hamilton,OH,327,Cincinnati,OH
-45065,36023,Cincinnati,OH,327,Cincinnati,OH
-45066,36055,Kettering,OH,332,Kettering,OH
-45067,36074,Middletown,OH,332,Kettering,OH
-45068,36055,Kettering,OH,332,Kettering,OH
-45069,36023,Cincinnati,OH,327,Cincinnati,OH
-45070,36086,Oxford,OH,327,Cincinnati,OH
-45071,36023,Cincinnati,OH,327,Cincinnati,OH
-45101,18055,Maysville,KY,204,Lexington,KY
-45102,36023,Cincinnati,OH,327,Cincinnati,OH
-45103,36009,Batavia,OH,327,Cincinnati,OH
-45105,36116,West Union,OH,327,Cincinnati,OH
-45106,36009,Batavia,OH,327,Cincinnati,OH
-45107,36120,Wilmington,OH,327,Cincinnati,OH
-45111,36023,Cincinnati,OH,327,Cincinnati,OH
-45112,36009,Batavia,OH,327,Cincinnati,OH
-45113,36120,Wilmington,OH,327,Cincinnati,OH
-45114,36120,Wilmington,OH,327,Cincinnati,OH
-45115,36047,Georgetown,OH,327,Cincinnati,OH
-45118,36023,Cincinnati,OH,327,Cincinnati,OH
-45119,36009,Batavia,OH,327,Cincinnati,OH
-45120,36009,Batavia,OH,327,Cincinnati,OH
-45121,36047,Georgetown,OH,327,Cincinnati,OH
-45122,36023,Cincinnati,OH,327,Cincinnati,OH
-45123,36048,Greenfield,OH,329,Columbus,OH
-45130,36009,Batavia,OH,327,Cincinnati,OH
-45131,36047,Georgetown,OH,327,Cincinnati,OH
-45132,36120,Wilmington,OH,327,Cincinnati,OH
-45133,36052,Hillsboro,OH,327,Cincinnati,OH
-45135,36120,Wilmington,OH,327,Cincinnati,OH
-45140,36023,Cincinnati,OH,327,Cincinnati,OH
-45142,36120,Wilmington,OH,327,Cincinnati,OH
-45144,36116,West Union,OH,327,Cincinnati,OH
-45146,36120,Wilmington,OH,327,Cincinnati,OH
-45147,36023,Cincinnati,OH,327,Cincinnati,OH
-45148,36120,Wilmington,OH,327,Cincinnati,OH
-45150,36023,Cincinnati,OH,327,Cincinnati,OH
-45152,36023,Cincinnati,OH,327,Cincinnati,OH
-45153,36023,Cincinnati,OH,327,Cincinnati,OH
-45154,36047,Georgetown,OH,327,Cincinnati,OH
-45155,36052,Hillsboro,OH,327,Cincinnati,OH
-45156,36023,Cincinnati,OH,327,Cincinnati,OH
-45157,36023,Cincinnati,OH,327,Cincinnati,OH
-45158,36023,Cincinnati,OH,327,Cincinnati,OH
-45159,36120,Wilmington,OH,327,Cincinnati,OH
-45160,36009,Batavia,OH,327,Cincinnati,OH
-45162,36023,Cincinnati,OH,327,Cincinnati,OH
-45164,36120,Wilmington,OH,327,Cincinnati,OH
-45166,36120,Wilmington,OH,327,Cincinnati,OH
-45167,36047,Georgetown,OH,327,Cincinnati,OH
-45168,36047,Georgetown,OH,327,Cincinnati,OH
-45169,36120,Wilmington,OH,327,Cincinnati,OH
-45171,36047,Georgetown,OH,327,Cincinnati,OH
-45172,36052,Hillsboro,OH,327,Cincinnati,OH
-45174,36023,Cincinnati,OH,327,Cincinnati,OH
-45176,36047,Georgetown,OH,327,Cincinnati,OH
-45177,36120,Wilmington,OH,327,Cincinnati,OH
-45201,36023,Cincinnati,OH,327,Cincinnati,OH
-45202,36023,Cincinnati,OH,327,Cincinnati,OH
-45203,36023,Cincinnati,OH,327,Cincinnati,OH
-45204,36023,Cincinnati,OH,327,Cincinnati,OH
-45205,36023,Cincinnati,OH,327,Cincinnati,OH
-45206,36023,Cincinnati,OH,327,Cincinnati,OH
-45207,36023,Cincinnati,OH,327,Cincinnati,OH
-45208,36023,Cincinnati,OH,327,Cincinnati,OH
-45209,36023,Cincinnati,OH,327,Cincinnati,OH
-45211,36023,Cincinnati,OH,327,Cincinnati,OH
-45212,36023,Cincinnati,OH,327,Cincinnati,OH
-45213,36023,Cincinnati,OH,327,Cincinnati,OH
-45214,36023,Cincinnati,OH,327,Cincinnati,OH
-45215,36023,Cincinnati,OH,327,Cincinnati,OH
-45216,36023,Cincinnati,OH,327,Cincinnati,OH
-45217,36023,Cincinnati,OH,327,Cincinnati,OH
-45218,36023,Cincinnati,OH,327,Cincinnati,OH
-45219,36023,Cincinnati,OH,327,Cincinnati,OH
-45220,36023,Cincinnati,OH,327,Cincinnati,OH
-45221,36023,Cincinnati,OH,327,Cincinnati,OH
-45222,36023,Cincinnati,OH,327,Cincinnati,OH
-45223,36023,Cincinnati,OH,327,Cincinnati,OH
-45224,36023,Cincinnati,OH,327,Cincinnati,OH
-45225,36023,Cincinnati,OH,327,Cincinnati,OH
-45226,36023,Cincinnati,OH,327,Cincinnati,OH
-45227,36023,Cincinnati,OH,327,Cincinnati,OH
-45229,36023,Cincinnati,OH,327,Cincinnati,OH
-45230,36023,Cincinnati,OH,327,Cincinnati,OH
-45231,36023,Cincinnati,OH,327,Cincinnati,OH
-45232,36023,Cincinnati,OH,327,Cincinnati,OH
-45233,36023,Cincinnati,OH,327,Cincinnati,OH
-45234,36023,Cincinnati,OH,327,Cincinnati,OH
-45235,36023,Cincinnati,OH,327,Cincinnati,OH
-45236,36023,Cincinnati,OH,327,Cincinnati,OH
-45237,36023,Cincinnati,OH,327,Cincinnati,OH
-45238,36023,Cincinnati,OH,327,Cincinnati,OH
-45239,36023,Cincinnati,OH,327,Cincinnati,OH
-45240,36023,Cincinnati,OH,327,Cincinnati,OH
-45241,36023,Cincinnati,OH,327,Cincinnati,OH
-45242,36023,Cincinnati,OH,327,Cincinnati,OH
-45243,36023,Cincinnati,OH,327,Cincinnati,OH
-45244,36023,Cincinnati,OH,327,Cincinnati,OH
-45245,36023,Cincinnati,OH,327,Cincinnati,OH
-45246,36023,Cincinnati,OH,327,Cincinnati,OH
-45247,36023,Cincinnati,OH,327,Cincinnati,OH
-45248,36023,Cincinnati,OH,327,Cincinnati,OH
-45249,36023,Cincinnati,OH,327,Cincinnati,OH
-45250,36023,Cincinnati,OH,327,Cincinnati,OH
-45251,36023,Cincinnati,OH,327,Cincinnati,OH
-45252,36023,Cincinnati,OH,327,Cincinnati,OH
-45253,36023,Cincinnati,OH,327,Cincinnati,OH
-45254,36023,Cincinnati,OH,327,Cincinnati,OH
-45255,36023,Cincinnati,OH,327,Cincinnati,OH
-45258,36023,Cincinnati,OH,327,Cincinnati,OH
-45262,36023,Cincinnati,OH,327,Cincinnati,OH
-45263,36023,Cincinnati,OH,327,Cincinnati,OH
-45264,36023,Cincinnati,OH,327,Cincinnati,OH
-45267,36023,Cincinnati,OH,327,Cincinnati,OH
-45268,36023,Cincinnati,OH,327,Cincinnati,OH
-45269,36023,Cincinnati,OH,327,Cincinnati,OH
-45270,36023,Cincinnati,OH,327,Cincinnati,OH
-45271,36023,Cincinnati,OH,327,Cincinnati,OH
-45273,36023,Cincinnati,OH,327,Cincinnati,OH
-45274,36023,Cincinnati,OH,327,Cincinnati,OH
-45275,18021,Florence,KY,203,Covington,KY
-45277,18016,Covington,KY,203,Covington,KY
-45280,36023,Cincinnati,OH,327,Cincinnati,OH
-45296,36023,Cincinnati,OH,327,Cincinnati,OH
-45298,18016,Covington,KY,203,Covington,KY
-45299,36023,Cincinnati,OH,327,Cincinnati,OH
-45301,36032,Dayton,OH,330,Dayton,OH
-45302,36098,Sidney,OH,330,Dayton,OH
-45303,36049,Greenville,OH,330,Dayton,OH
-45304,36049,Greenville,OH,330,Dayton,OH
-45305,36055,Kettering,OH,332,Kettering,OH
-45306,36058,Lima,OH,330,Dayton,OH
-45307,36122,Xenia,OH,332,Kettering,OH
-45308,36090,Piqua,OH,330,Dayton,OH
-45309,36032,Dayton,OH,330,Dayton,OH
-45310,36026,Coldwater,OH,330,Dayton,OH
-45311,36086,Oxford,OH,327,Cincinnati,OH
-45312,36105,Troy,OH,330,Dayton,OH
-45314,36122,Xenia,OH,332,Kettering,OH
-45315,36032,Dayton,OH,330,Dayton,OH
-45316,36122,Xenia,OH,332,Kettering,OH
-45317,36090,Piqua,OH,330,Dayton,OH
-45318,36090,Piqua,OH,330,Dayton,OH
-45319,36032,Dayton,OH,330,Dayton,OH
-45320,36032,Dayton,OH,330,Dayton,OH
-45321,36032,Dayton,OH,330,Dayton,OH
-45322,36032,Dayton,OH,330,Dayton,OH
-45323,36099,Springfield,OH,330,Dayton,OH
-45324,36032,Dayton,OH,330,Dayton,OH
-45325,36032,Dayton,OH,330,Dayton,OH
-45326,36090,Piqua,OH,330,Dayton,OH
-45327,36055,Kettering,OH,332,Kettering,OH
-45328,36090,Piqua,OH,330,Dayton,OH
-45330,36032,Dayton,OH,330,Dayton,OH
-45331,36049,Greenville,OH,330,Dayton,OH
-45332,36049,Greenville,OH,330,Dayton,OH
-45333,36090,Piqua,OH,330,Dayton,OH
-45334,36098,Sidney,OH,330,Dayton,OH
-45335,36122,Xenia,OH,332,Kettering,OH
-45336,36098,Sidney,OH,330,Dayton,OH
-45337,36032,Dayton,OH,330,Dayton,OH
-45338,36032,Dayton,OH,330,Dayton,OH
-45339,36105,Troy,OH,330,Dayton,OH
-45340,36098,Sidney,OH,330,Dayton,OH
-45341,36032,Dayton,OH,330,Dayton,OH
-45342,36055,Kettering,OH,332,Kettering,OH
-45343,36055,Kettering,OH,332,Kettering,OH
-45344,36032,Dayton,OH,330,Dayton,OH
-45345,36032,Dayton,OH,330,Dayton,OH
-45346,36049,Greenville,OH,330,Dayton,OH
-45347,15070,Richmond,IN,183,Indianapolis,IN
-45348,36026,Coldwater,OH,330,Dayton,OH
-45349,36099,Springfield,OH,330,Dayton,OH
-45350,36049,Greenville,OH,330,Dayton,OH
-45351,36100,St. Marys,OH,330,Dayton,OH
-45352,36049,Greenville,OH,330,Dayton,OH
-45353,36098,Sidney,OH,330,Dayton,OH
-45354,36032,Dayton,OH,330,Dayton,OH
-45356,36090,Piqua,OH,330,Dayton,OH
-45358,36049,Greenville,OH,330,Dayton,OH
-45359,36105,Troy,OH,330,Dayton,OH
-45360,36098,Sidney,OH,330,Dayton,OH
-45361,36032,Dayton,OH,330,Dayton,OH
-45362,36049,Greenville,OH,330,Dayton,OH
-45363,36090,Piqua,OH,330,Dayton,OH
-45365,36098,Sidney,OH,330,Dayton,OH
-45367,36098,Sidney,OH,330,Dayton,OH
-45368,36099,Springfield,OH,330,Dayton,OH
-45369,36099,Springfield,OH,330,Dayton,OH
-45370,36055,Kettering,OH,332,Kettering,OH
-45371,36105,Troy,OH,330,Dayton,OH
-45372,36099,Springfield,OH,330,Dayton,OH
-45373,36105,Troy,OH,330,Dayton,OH
-45374,36105,Troy,OH,330,Dayton,OH
-45377,36032,Dayton,OH,330,Dayton,OH
-45378,36032,Dayton,OH,330,Dayton,OH
-45380,36049,Greenville,OH,330,Dayton,OH
-45381,36032,Dayton,OH,330,Dayton,OH
-45382,36032,Dayton,OH,330,Dayton,OH
-45383,36032,Dayton,OH,330,Dayton,OH
-45384,36122,Xenia,OH,332,Kettering,OH
-45385,36122,Xenia,OH,332,Kettering,OH
-45387,36122,Xenia,OH,332,Kettering,OH
-45388,36100,St. Marys,OH,330,Dayton,OH
-45389,36090,Piqua,OH,330,Dayton,OH
-45390,15057,Muncie,IN,185,Muncie,IN
-45401,36032,Dayton,OH,330,Dayton,OH
-45402,36032,Dayton,OH,330,Dayton,OH
-45403,36032,Dayton,OH,330,Dayton,OH
-45404,36032,Dayton,OH,330,Dayton,OH
-45405,36032,Dayton,OH,330,Dayton,OH
-45406,36032,Dayton,OH,330,Dayton,OH
-45409,36032,Dayton,OH,330,Dayton,OH
-45410,36032,Dayton,OH,330,Dayton,OH
-45412,36032,Dayton,OH,330,Dayton,OH
-45413,36032,Dayton,OH,330,Dayton,OH
-45414,36032,Dayton,OH,330,Dayton,OH
-45415,36032,Dayton,OH,330,Dayton,OH
-45416,36032,Dayton,OH,330,Dayton,OH
-45417,36032,Dayton,OH,330,Dayton,OH
-45419,36055,Kettering,OH,332,Kettering,OH
-45420,36032,Dayton,OH,330,Dayton,OH
-45422,36032,Dayton,OH,330,Dayton,OH
-45423,36032,Dayton,OH,330,Dayton,OH
-45424,36032,Dayton,OH,330,Dayton,OH
-45426,36032,Dayton,OH,330,Dayton,OH
-45428,36032,Dayton,OH,330,Dayton,OH
-45429,36055,Kettering,OH,332,Kettering,OH
-45430,36032,Dayton,OH,330,Dayton,OH
-45431,36032,Dayton,OH,330,Dayton,OH
-45432,36032,Dayton,OH,330,Dayton,OH
-45433,36032,Dayton,OH,330,Dayton,OH
-45434,36032,Dayton,OH,330,Dayton,OH
-45435,36032,Dayton,OH,330,Dayton,OH
-45437,36032,Dayton,OH,330,Dayton,OH
-45439,36055,Kettering,OH,332,Kettering,OH
-45440,36055,Kettering,OH,332,Kettering,OH
-45441,36055,Kettering,OH,332,Kettering,OH
-45448,36055,Kettering,OH,332,Kettering,OH
-45449,36055,Kettering,OH,332,Kettering,OH
-45458,36055,Kettering,OH,332,Kettering,OH
-45459,36055,Kettering,OH,332,Kettering,OH
-45469,36032,Dayton,OH,330,Dayton,OH
-45470,36055,Kettering,OH,332,Kettering,OH
-45475,36055,Kettering,OH,332,Kettering,OH
-45479,36032,Dayton,OH,330,Dayton,OH
-45481,36032,Dayton,OH,330,Dayton,OH
-45482,36032,Dayton,OH,330,Dayton,OH
-45490,36032,Dayton,OH,330,Dayton,OH
-45501,36099,Springfield,OH,330,Dayton,OH
-45502,36099,Springfield,OH,330,Dayton,OH
-45503,36099,Springfield,OH,330,Dayton,OH
-45504,36099,Springfield,OH,330,Dayton,OH
-45505,36099,Springfield,OH,330,Dayton,OH
-45506,36099,Springfield,OH,330,Dayton,OH
-45601,36022,Chillicothe,OH,329,Columbus,OH
-45612,36022,Chillicothe,OH,329,Columbus,OH
-45613,36114,Waverly,OH,329,Columbus,OH
-45614,36044,Gallipolis,OH,329,Columbus,OH
-45616,36093,Portsmouth,OH,329,Columbus,OH
-45617,36022,Chillicothe,OH,329,Columbus,OH
-45618,36009,Batavia,OH,327,Cincinnati,OH
-45619,51014,Huntington,WV,444,Huntington,WV
-45620,36044,Gallipolis,OH,329,Columbus,OH
-45621,36044,Gallipolis,OH,329,Columbus,OH
-45622,36060,Logan,OH,329,Columbus,OH
-45623,36044,Gallipolis,OH,329,Columbus,OH
-45624,36022,Chillicothe,OH,329,Columbus,OH
-45628,36022,Chillicothe,OH,329,Columbus,OH
-45629,36093,Portsmouth,OH,329,Columbus,OH
-45630,36093,Portsmouth,OH,329,Columbus,OH
-45631,36044,Gallipolis,OH,329,Columbus,OH
-45633,36022,Chillicothe,OH,329,Columbus,OH
-45634,36044,Gallipolis,OH,329,Columbus,OH
-45636,36093,Portsmouth,OH,329,Columbus,OH
-45638,36053,Ironton,OH,444,Huntington,WV
-45640,36044,Gallipolis,OH,329,Columbus,OH
-45642,36114,Waverly,OH,329,Columbus,OH
-45643,36044,Gallipolis,OH,329,Columbus,OH
-45644,36022,Chillicothe,OH,329,Columbus,OH
-45645,36053,Ironton,OH,444,Huntington,WV
-45646,36116,West Union,OH,327,Cincinnati,OH
-45647,36022,Chillicothe,OH,329,Columbus,OH
-45648,36093,Portsmouth,OH,329,Columbus,OH
-45650,36116,West Union,OH,327,Cincinnati,OH
-45651,36022,Chillicothe,OH,329,Columbus,OH
-45652,36093,Portsmouth,OH,329,Columbus,OH
-45653,36093,Portsmouth,OH,329,Columbus,OH
-45654,36060,Logan,OH,329,Columbus,OH
-45656,36044,Gallipolis,OH,329,Columbus,OH
-45657,36093,Portsmouth,OH,329,Columbus,OH
-45658,36044,Gallipolis,OH,329,Columbus,OH
-45659,36053,Ironton,OH,444,Huntington,WV
-45660,36116,West Union,OH,327,Cincinnati,OH
-45661,36114,Waverly,OH,329,Columbus,OH
-45662,36093,Portsmouth,OH,329,Columbus,OH
-45663,36093,Portsmouth,OH,329,Columbus,OH
-45669,51014,Huntington,WV,444,Huntington,WV
-45671,36093,Portsmouth,OH,329,Columbus,OH
-45672,36022,Chillicothe,OH,329,Columbus,OH
-45673,36022,Chillicothe,OH,329,Columbus,OH
-45674,36044,Gallipolis,OH,329,Columbus,OH
-45675,36053,Ironton,OH,444,Huntington,WV
-45677,36093,Portsmouth,OH,329,Columbus,OH
-45678,51014,Huntington,WV,444,Huntington,WV
-45679,36009,Batavia,OH,327,Cincinnati,OH
-45680,51014,Huntington,WV,444,Huntington,WV
-45681,36048,Greenfield,OH,329,Columbus,OH
-45682,36093,Portsmouth,OH,329,Columbus,OH
-45683,36114,Waverly,OH,329,Columbus,OH
-45684,36093,Portsmouth,OH,329,Columbus,OH
-45685,36044,Gallipolis,OH,329,Columbus,OH
-45686,36044,Gallipolis,OH,329,Columbus,OH
-45687,36093,Portsmouth,OH,329,Columbus,OH
-45688,36053,Ironton,OH,444,Huntington,WV
-45690,36114,Waverly,OH,329,Columbus,OH
-45692,36044,Gallipolis,OH,329,Columbus,OH
-45693,36116,West Union,OH,327,Cincinnati,OH
-45694,36093,Portsmouth,OH,329,Columbus,OH
-45695,36044,Gallipolis,OH,329,Columbus,OH
-45696,36053,Ironton,OH,444,Huntington,WV
-45697,36009,Batavia,OH,327,Cincinnati,OH
-45698,36022,Chillicothe,OH,329,Columbus,OH
-45699,36093,Portsmouth,OH,329,Columbus,OH
-45701,36006,Athens,OH,329,Columbus,OH
-45710,36006,Athens,OH,329,Columbus,OH
-45711,36006,Athens,OH,329,Columbus,OH
-45712,36065,Marietta,OH,329,Columbus,OH
-45713,36065,Marietta,OH,329,Columbus,OH
-45714,51027,Parkersburg,WV,443,Charleston,WV
-45715,36065,Marietta,OH,329,Columbus,OH
-45716,36079,Nelsonville,OH,329,Columbus,OH
-45717,36006,Athens,OH,329,Columbus,OH
-45719,36006,Athens,OH,329,Columbus,OH
-45720,51027,Parkersburg,WV,443,Charleston,WV
-45721,36065,Marietta,OH,329,Columbus,OH
-45723,51027,Parkersburg,WV,443,Charleston,WV
-45724,36065,Marietta,OH,329,Columbus,OH
-45727,36065,Marietta,OH,329,Columbus,OH
-45729,36065,Marietta,OH,329,Columbus,OH
-45732,36079,Nelsonville,OH,329,Columbus,OH
-45734,36065,Marietta,OH,329,Columbus,OH
-45735,51027,Parkersburg,WV,443,Charleston,WV
-45739,51027,Parkersburg,WV,443,Charleston,WV
-45740,36079,Nelsonville,OH,329,Columbus,OH
-45741,36044,Gallipolis,OH,329,Columbus,OH
-45742,51027,Parkersburg,WV,443,Charleston,WV
-45743,51027,Parkersburg,WV,443,Charleston,WV
-45744,36065,Marietta,OH,329,Columbus,OH
-45745,36065,Marietta,OH,329,Columbus,OH
-45746,36065,Marietta,OH,329,Columbus,OH
-45750,36065,Marietta,OH,329,Columbus,OH
-45760,36044,Gallipolis,OH,329,Columbus,OH
-45761,36006,Athens,OH,329,Columbus,OH
-45764,36079,Nelsonville,OH,329,Columbus,OH
-45766,36006,Athens,OH,329,Columbus,OH
-45767,36065,Marietta,OH,329,Columbus,OH
-45768,36065,Marietta,OH,329,Columbus,OH
-45769,36091,Pomeroy,OH,329,Columbus,OH
-45770,36091,Pomeroy,OH,329,Columbus,OH
-45771,36091,Pomeroy,OH,329,Columbus,OH
-45772,51027,Parkersburg,WV,443,Charleston,WV
-45773,36065,Marietta,OH,329,Columbus,OH
-45775,36091,Pomeroy,OH,329,Columbus,OH
-45776,36091,Pomeroy,OH,329,Columbus,OH
-45777,36006,Athens,OH,329,Columbus,OH
-45778,36006,Athens,OH,329,Columbus,OH
-45779,36091,Pomeroy,OH,329,Columbus,OH
-45780,36006,Athens,OH,329,Columbus,OH
-45782,36079,Nelsonville,OH,329,Columbus,OH
-45783,51027,Parkersburg,WV,443,Charleston,WV
-45784,36065,Marietta,OH,329,Columbus,OH
-45786,36065,Marietta,OH,329,Columbus,OH
-45787,36065,Marietta,OH,329,Columbus,OH
-45788,36065,Marietta,OH,329,Columbus,OH
-45789,36065,Marietta,OH,329,Columbus,OH
-45801,36058,Lima,OH,330,Dayton,OH
-45802,36058,Lima,OH,330,Dayton,OH
-45804,36058,Lima,OH,330,Dayton,OH
-45805,36058,Lima,OH,330,Dayton,OH
-45806,36058,Lima,OH,330,Dayton,OH
-45807,36058,Lima,OH,330,Dayton,OH
-45808,36058,Lima,OH,330,Dayton,OH
-45809,36058,Lima,OH,330,Dayton,OH
-45810,36058,Lima,OH,330,Dayton,OH
-45812,36058,Lima,OH,330,Dayton,OH
-45813,36089,Paulding,OH,180,Fort Wayne,IN
-45814,36040,Findlay,OH,334,Toledo,OH
-45815,36058,Lima,OH,330,Dayton,OH
-45816,36040,Findlay,OH,334,Toledo,OH
-45817,36014,Bluffton,OH,330,Dayton,OH
-45819,36058,Lima,OH,330,Dayton,OH
-45820,36058,Lima,OH,330,Dayton,OH
-45821,36089,Paulding,OH,180,Fort Wayne,IN
-45822,36026,Coldwater,OH,330,Dayton,OH
-45826,36026,Coldwater,OH,330,Dayton,OH
-45827,36058,Lima,OH,330,Dayton,OH
-45828,36026,Coldwater,OH,330,Dayton,OH
-45830,36058,Lima,OH,330,Dayton,OH
-45831,36058,Lima,OH,330,Dayton,OH
-45832,36108,Van Wert,OH,180,Fort Wayne,IN
-45833,36058,Lima,OH,330,Dayton,OH
-45835,36058,Lima,OH,330,Dayton,OH
-45836,36054,Kenton,OH,329,Columbus,OH
-45837,36058,Lima,OH,330,Dayton,OH
-45838,36058,Lima,OH,330,Dayton,OH
-45839,36040,Findlay,OH,334,Toledo,OH
-45840,36040,Findlay,OH,334,Toledo,OH
-45841,36040,Findlay,OH,334,Toledo,OH
-45843,36054,Kenton,OH,329,Columbus,OH
-45844,36058,Lima,OH,330,Dayton,OH
-45845,36100,St. Marys,OH,330,Dayton,OH
-45846,36026,Coldwater,OH,330,Dayton,OH
-45848,36058,Lima,OH,330,Dayton,OH
-45849,36033,Defiance,OH,180,Fort Wayne,IN
-45850,36058,Lima,OH,330,Dayton,OH
-45851,36108,Van Wert,OH,180,Fort Wayne,IN
-45853,36058,Lima,OH,330,Dayton,OH
-45854,36058,Lima,OH,330,Dayton,OH
-45855,36089,Paulding,OH,180,Fort Wayne,IN
-45856,36058,Lima,OH,330,Dayton,OH
-45858,36040,Findlay,OH,334,Toledo,OH
-45859,36058,Lima,OH,330,Dayton,OH
-45860,36026,Coldwater,OH,330,Dayton,OH
-45861,36033,Defiance,OH,180,Fort Wayne,IN
-45862,36026,Coldwater,OH,330,Dayton,OH
-45863,36108,Van Wert,OH,180,Fort Wayne,IN
-45864,36058,Lima,OH,330,Dayton,OH
-45865,36100,St. Marys,OH,330,Dayton,OH
-45866,36026,Coldwater,OH,330,Dayton,OH
-45867,36040,Findlay,OH,334,Toledo,OH
-45868,36040,Findlay,OH,334,Toledo,OH
-45869,36100,St. Marys,OH,330,Dayton,OH
-45870,36012,Bellefontaine,OH,329,Columbus,OH
-45871,36100,St. Marys,OH,330,Dayton,OH
-45872,36015,Bowling Green,OH,334,Toledo,OH
-45873,36033,Defiance,OH,180,Fort Wayne,IN
-45874,36108,Van Wert,OH,180,Fort Wayne,IN
-45875,36058,Lima,OH,330,Dayton,OH
-45876,36058,Lima,OH,330,Dayton,OH
-45877,36014,Bluffton,OH,330,Dayton,OH
-45879,36089,Paulding,OH,180,Fort Wayne,IN
-45880,36089,Paulding,OH,180,Fort Wayne,IN
-45881,36040,Findlay,OH,334,Toledo,OH
-45882,36108,Van Wert,OH,180,Fort Wayne,IN
-45883,36026,Coldwater,OH,330,Dayton,OH
-45884,36058,Lima,OH,330,Dayton,OH
-45885,36100,St. Marys,OH,330,Dayton,OH
-45886,36108,Van Wert,OH,180,Fort Wayne,IN
-45887,36058,Lima,OH,330,Dayton,OH
-45888,36058,Lima,OH,330,Dayton,OH
-45889,36040,Findlay,OH,334,Toledo,OH
-45890,36040,Findlay,OH,334,Toledo,OH
-45891,36108,Van Wert,OH,180,Fort Wayne,IN
-45893,36058,Lima,OH,330,Dayton,OH
-45894,36058,Lima,OH,330,Dayton,OH
-45895,36058,Lima,OH,330,Dayton,OH
-45896,36058,Lima,OH,330,Dayton,OH
-45897,36040,Findlay,OH,334,Toledo,OH
-45898,36108,Van Wert,OH,180,Fort Wayne,IN
-45899,36108,Van Wert,OH,180,Fort Wayne,IN
-45999,18016,Covington,KY,203,Covington,KY
-46001,15001,Anderson,IN,183,Indianapolis,IN
-46011,15001,Anderson,IN,183,Indianapolis,IN
-46012,15001,Anderson,IN,183,Indianapolis,IN
-46013,15001,Anderson,IN,183,Indianapolis,IN
-46014,15001,Anderson,IN,183,Indianapolis,IN
-46015,15001,Anderson,IN,183,Indianapolis,IN
-46016,15001,Anderson,IN,183,Indianapolis,IN
-46017,15001,Anderson,IN,183,Indianapolis,IN
-46018,15001,Anderson,IN,183,Indianapolis,IN
-46030,15061,Noblesville,IN,183,Indianapolis,IN
-46031,15061,Noblesville,IN,183,Indianapolis,IN
-46032,15039,Indianapolis,IN,183,Indianapolis,IN
-46033,15039,Indianapolis,IN,183,Indianapolis,IN
-46034,15061,Noblesville,IN,183,Indianapolis,IN
-46035,15045,Lafayette,IN,184,Lafayette,IN
-46036,15025,Elwood,IN,183,Indianapolis,IN
-46037,15001,Anderson,IN,183,Indianapolis,IN
-46038,15039,Indianapolis,IN,183,Indianapolis,IN
-46039,15044,Kokomo,IN,183,Indianapolis,IN
-46040,15001,Anderson,IN,183,Indianapolis,IN
-46041,15028,Frankfort,IN,183,Indianapolis,IN
-46044,15001,Anderson,IN,183,Indianapolis,IN
-46045,15080,Tipton,IN,183,Indianapolis,IN
-46047,15025,Elwood,IN,183,Indianapolis,IN
-46048,15001,Anderson,IN,183,Indianapolis,IN
-46049,15080,Tipton,IN,183,Indianapolis,IN
-46050,15028,Frankfort,IN,183,Indianapolis,IN
-46051,15001,Anderson,IN,183,Indianapolis,IN
-46052,15049,Lebanon,IN,183,Indianapolis,IN
-46055,15039,Indianapolis,IN,183,Indianapolis,IN
-46056,15001,Anderson,IN,183,Indianapolis,IN
-46057,15028,Frankfort,IN,183,Indianapolis,IN
-46058,15045,Lafayette,IN,184,Lafayette,IN
-46060,15061,Noblesville,IN,183,Indianapolis,IN
-46061,15061,Noblesville,IN,183,Indianapolis,IN
-46062,15061,Noblesville,IN,183,Indianapolis,IN
-46063,15001,Anderson,IN,183,Indianapolis,IN
-46064,15001,Anderson,IN,183,Indianapolis,IN
-46065,15045,Lafayette,IN,184,Lafayette,IN
-46067,15028,Frankfort,IN,183,Indianapolis,IN
-46068,15044,Kokomo,IN,183,Indianapolis,IN
-46069,15061,Noblesville,IN,183,Indianapolis,IN
-46070,15001,Anderson,IN,183,Indianapolis,IN
-46071,15049,Lebanon,IN,183,Indianapolis,IN
-46072,15080,Tipton,IN,183,Indianapolis,IN
-46074,15061,Noblesville,IN,183,Indianapolis,IN
-46075,15039,Indianapolis,IN,183,Indianapolis,IN
-46076,15080,Tipton,IN,183,Indianapolis,IN
-46077,15039,Indianapolis,IN,183,Indianapolis,IN
-46082,15039,Indianapolis,IN,183,Indianapolis,IN
-46085,15039,Indianapolis,IN,183,Indianapolis,IN
-46102,15049,Lebanon,IN,183,Indianapolis,IN
-46103,15020,Danville,IN,183,Indianapolis,IN
-46104,15072,Rushville,IN,183,Indianapolis,IN
-46105,15020,Danville,IN,183,Indianapolis,IN
-46106,15039,Indianapolis,IN,183,Indianapolis,IN
-46107,15006,Beech Grove,IN,183,Indianapolis,IN
-46110,15006,Beech Grove,IN,183,Indianapolis,IN
-46111,15039,Indianapolis,IN,183,Indianapolis,IN
-46112,15039,Indianapolis,IN,183,Indianapolis,IN
-46113,15039,Indianapolis,IN,183,Indianapolis,IN
-46115,15033,Greenfield,IN,183,Indianapolis,IN
-46117,15033,Greenfield,IN,183,Indianapolis,IN
-46118,15020,Danville,IN,183,Indianapolis,IN
-46120,15032,Greencastle,IN,183,Indianapolis,IN
-46121,15020,Danville,IN,183,Indianapolis,IN
-46122,15020,Danville,IN,183,Indianapolis,IN
-46123,15020,Danville,IN,183,Indianapolis,IN
-46124,15029,Franklin,IN,183,Indianapolis,IN
-46125,15054,Martinsville,IN,183,Indianapolis,IN
-46126,15006,Beech Grove,IN,183,Indianapolis,IN
-46127,15072,Rushville,IN,183,Indianapolis,IN
-46128,15032,Greencastle,IN,183,Indianapolis,IN
-46129,15033,Greenfield,IN,183,Indianapolis,IN
-46130,15033,Greenfield,IN,183,Indianapolis,IN
-46131,15029,Franklin,IN,183,Indianapolis,IN
-46133,15072,Rushville,IN,183,Indianapolis,IN
-46135,15032,Greencastle,IN,183,Indianapolis,IN
-46140,15033,Greenfield,IN,183,Indianapolis,IN
-46142,15039,Indianapolis,IN,183,Indianapolis,IN
-46143,15039,Indianapolis,IN,183,Indianapolis,IN
-46144,15033,Greenfield,IN,183,Indianapolis,IN
-46146,15075,Shelbyville,IN,183,Indianapolis,IN
-46147,15049,Lebanon,IN,183,Indianapolis,IN
-46148,15033,Greenfield,IN,183,Indianapolis,IN
-46149,15020,Danville,IN,183,Indianapolis,IN
-46150,15075,Shelbyville,IN,183,Indianapolis,IN
-46151,15054,Martinsville,IN,183,Indianapolis,IN
-46154,15033,Greenfield,IN,183,Indianapolis,IN
-46155,15072,Rushville,IN,183,Indianapolis,IN
-46156,15072,Rushville,IN,183,Indianapolis,IN
-46157,15054,Martinsville,IN,183,Indianapolis,IN
-46158,15039,Indianapolis,IN,183,Indianapolis,IN
-46160,15029,Franklin,IN,183,Indianapolis,IN
-46161,15033,Greenfield,IN,183,Indianapolis,IN
-46162,15039,Indianapolis,IN,183,Indianapolis,IN
-46163,15039,Indianapolis,IN,183,Indianapolis,IN
-46164,15029,Franklin,IN,183,Indianapolis,IN
-46165,15020,Danville,IN,183,Indianapolis,IN
-46166,15054,Martinsville,IN,183,Indianapolis,IN
-46167,15039,Indianapolis,IN,183,Indianapolis,IN
-46168,15020,Danville,IN,183,Indianapolis,IN
-46170,15032,Greencastle,IN,183,Indianapolis,IN
-46171,15032,Greencastle,IN,183,Indianapolis,IN
-46172,15020,Danville,IN,183,Indianapolis,IN
-46173,15072,Rushville,IN,183,Indianapolis,IN
-46175,15018,Crawfordsville,IN,183,Indianapolis,IN
-46176,15075,Shelbyville,IN,183,Indianapolis,IN
-46180,15054,Martinsville,IN,183,Indianapolis,IN
-46181,15029,Franklin,IN,183,Indianapolis,IN
-46182,15075,Shelbyville,IN,183,Indianapolis,IN
-46183,15039,Indianapolis,IN,183,Indianapolis,IN
-46184,15029,Franklin,IN,183,Indianapolis,IN
-46186,15033,Greenfield,IN,183,Indianapolis,IN
-46201,15039,Indianapolis,IN,183,Indianapolis,IN
-46202,15039,Indianapolis,IN,183,Indianapolis,IN
-46203,15006,Beech Grove,IN,183,Indianapolis,IN
-46204,15039,Indianapolis,IN,183,Indianapolis,IN
-46205,15039,Indianapolis,IN,183,Indianapolis,IN
-46206,15006,Beech Grove,IN,183,Indianapolis,IN
-46207,15006,Beech Grove,IN,183,Indianapolis,IN
-46208,15039,Indianapolis,IN,183,Indianapolis,IN
-46209,15006,Beech Grove,IN,183,Indianapolis,IN
-46213,15039,Indianapolis,IN,183,Indianapolis,IN
-46214,15039,Indianapolis,IN,183,Indianapolis,IN
-46216,15039,Indianapolis,IN,183,Indianapolis,IN
-46217,15006,Beech Grove,IN,183,Indianapolis,IN
-46218,15039,Indianapolis,IN,183,Indianapolis,IN
-46219,15039,Indianapolis,IN,183,Indianapolis,IN
-46220,15039,Indianapolis,IN,183,Indianapolis,IN
-46221,15039,Indianapolis,IN,183,Indianapolis,IN
-46222,15039,Indianapolis,IN,183,Indianapolis,IN
-46224,15039,Indianapolis,IN,183,Indianapolis,IN
-46225,15006,Beech Grove,IN,183,Indianapolis,IN
-46226,15039,Indianapolis,IN,183,Indianapolis,IN
-46227,15006,Beech Grove,IN,183,Indianapolis,IN
-46228,15039,Indianapolis,IN,183,Indianapolis,IN
-46229,15039,Indianapolis,IN,183,Indianapolis,IN
-46230,15039,Indianapolis,IN,183,Indianapolis,IN
-46231,15039,Indianapolis,IN,183,Indianapolis,IN
-46234,15039,Indianapolis,IN,183,Indianapolis,IN
-46235,15039,Indianapolis,IN,183,Indianapolis,IN
-46236,15039,Indianapolis,IN,183,Indianapolis,IN
-46237,15006,Beech Grove,IN,183,Indianapolis,IN
-46239,15039,Indianapolis,IN,183,Indianapolis,IN
-46240,15039,Indianapolis,IN,183,Indianapolis,IN
-46241,15039,Indianapolis,IN,183,Indianapolis,IN
-46242,15039,Indianapolis,IN,183,Indianapolis,IN
-46244,15039,Indianapolis,IN,183,Indianapolis,IN
-46247,15006,Beech Grove,IN,183,Indianapolis,IN
-46249,15039,Indianapolis,IN,183,Indianapolis,IN
-46250,15039,Indianapolis,IN,183,Indianapolis,IN
-46251,15039,Indianapolis,IN,183,Indianapolis,IN
-46253,15039,Indianapolis,IN,183,Indianapolis,IN
-46254,15039,Indianapolis,IN,183,Indianapolis,IN
-46255,15039,Indianapolis,IN,183,Indianapolis,IN
-46256,15039,Indianapolis,IN,183,Indianapolis,IN
-46259,15006,Beech Grove,IN,183,Indianapolis,IN
-46260,15039,Indianapolis,IN,183,Indianapolis,IN
-46262,15039,Indianapolis,IN,183,Indianapolis,IN
-46268,15039,Indianapolis,IN,183,Indianapolis,IN
-46277,15039,Indianapolis,IN,183,Indianapolis,IN
-46278,15039,Indianapolis,IN,183,Indianapolis,IN
-46280,15039,Indianapolis,IN,183,Indianapolis,IN
-46282,15039,Indianapolis,IN,183,Indianapolis,IN
-46283,15039,Indianapolis,IN,183,Indianapolis,IN
-46285,15039,Indianapolis,IN,183,Indianapolis,IN
-46288,15039,Indianapolis,IN,183,Indianapolis,IN
-46290,15039,Indianapolis,IN,183,Indianapolis,IN
-46298,15039,Indianapolis,IN,183,Indianapolis,IN
-46301,15055,Michigan City,IN,181,Gary,IN
-46302,15082,Valparaiso,IN,181,Gary,IN
-46303,15019,Crown Point,IN,181,Gary,IN
-46304,15082,Valparaiso,IN,181,Gary,IN
-46307,15019,Crown Point,IN,181,Gary,IN
-46308,15019,Crown Point,IN,181,Gary,IN
-46310,15019,Crown Point,IN,181,Gary,IN
-46311,15022,Dyer,IN,186,Munster,IN
-46312,15023,East Chicago,IN,186,Munster,IN
-46319,15058,Munster,IN,186,Munster,IN
-46320,15035,Hammond,IN,186,Munster,IN
-46321,15058,Munster,IN,186,Munster,IN
-46322,15058,Munster,IN,186,Munster,IN
-46323,15058,Munster,IN,186,Munster,IN
-46324,15058,Munster,IN,186,Munster,IN
-46325,15035,Hammond,IN,186,Munster,IN
-46327,15035,Hammond,IN,186,Munster,IN
-46340,15047,Laporte,IN,187,South Bend,IN
-46341,15082,Valparaiso,IN,181,Gary,IN
-46342,15030,Gary,IN,181,Gary,IN
-46345,15047,Laporte,IN,187,South Bend,IN
-46346,15047,Laporte,IN,187,South Bend,IN
-46347,15082,Valparaiso,IN,181,Gary,IN
-46348,15082,Valparaiso,IN,181,Gary,IN
-46349,15019,Crown Point,IN,181,Gary,IN
-46350,15047,Laporte,IN,187,South Bend,IN
-46352,15047,Laporte,IN,187,South Bend,IN
-46355,15019,Crown Point,IN,181,Gary,IN
-46356,15019,Crown Point,IN,181,Gary,IN
-46360,15055,Michigan City,IN,181,Gary,IN
-46361,15055,Michigan City,IN,181,Gary,IN
-46365,15076,South Bend,IN,187,South Bend,IN
-46366,15043,Knox,IN,181,Gary,IN
-46368,15030,Gary,IN,181,Gary,IN
-46371,15047,Laporte,IN,187,South Bend,IN
-46372,15019,Crown Point,IN,181,Gary,IN
-46373,15022,Dyer,IN,186,Munster,IN
-46374,15043,Knox,IN,181,Gary,IN
-46375,15022,Dyer,IN,186,Munster,IN
-46376,15019,Crown Point,IN,181,Gary,IN
-46377,15019,Crown Point,IN,181,Gary,IN
-46379,15019,Crown Point,IN,181,Gary,IN
-46380,15082,Valparaiso,IN,181,Gary,IN
-46381,15019,Crown Point,IN,181,Gary,IN
-46382,15047,Laporte,IN,187,South Bend,IN
-46383,15082,Valparaiso,IN,181,Gary,IN
-46384,15082,Valparaiso,IN,181,Gary,IN
-46385,15082,Valparaiso,IN,181,Gary,IN
-46390,15047,Laporte,IN,187,South Bend,IN
-46391,15047,Laporte,IN,187,South Bend,IN
-46392,15082,Valparaiso,IN,181,Gary,IN
-46393,15082,Valparaiso,IN,181,Gary,IN
-46394,15035,Hammond,IN,186,Munster,IN
-46401,15030,Gary,IN,181,Gary,IN
-46402,15030,Gary,IN,181,Gary,IN
-46403,15030,Gary,IN,181,Gary,IN
-46404,15030,Gary,IN,181,Gary,IN
-46405,15030,Gary,IN,181,Gary,IN
-46406,15030,Gary,IN,181,Gary,IN
-46407,15030,Gary,IN,181,Gary,IN
-46408,15030,Gary,IN,181,Gary,IN
-46409,15030,Gary,IN,181,Gary,IN
-46410,15030,Gary,IN,181,Gary,IN
-46411,15030,Gary,IN,181,Gary,IN
-46501,15071,Rochester,IN,187,South Bend,IN
-46502,15085,Warsaw,IN,180,Fort Wayne,IN
-46504,15066,Plymouth,IN,187,South Bend,IN
-46506,15011,Bremen,IN,187,South Bend,IN
-46507,15024,Elkhart,IN,187,South Bend,IN
-46508,15085,Warsaw,IN,180,Fort Wayne,IN
-46510,15085,Warsaw,IN,180,Fort Wayne,IN
-46511,15066,Plymouth,IN,187,South Bend,IN
-46513,15066,Plymouth,IN,187,South Bend,IN
-46514,15024,Elkhart,IN,187,South Bend,IN
-46515,15024,Elkhart,IN,187,South Bend,IN
-46516,15024,Elkhart,IN,187,South Bend,IN
-46517,15024,Elkhart,IN,187,South Bend,IN
-46524,15085,Warsaw,IN,180,Fort Wayne,IN
-46526,15031,Goshen,IN,187,South Bend,IN
-46527,15031,Goshen,IN,187,South Bend,IN
-46528,15031,Goshen,IN,187,South Bend,IN
-46530,15076,South Bend,IN,187,South Bend,IN
-46531,15047,Laporte,IN,187,South Bend,IN
-46532,15047,Laporte,IN,187,South Bend,IN
-46534,15043,Knox,IN,181,Gary,IN
-46536,15076,South Bend,IN,187,South Bend,IN
-46537,15011,Bremen,IN,187,South Bend,IN
-46538,15085,Warsaw,IN,180,Fort Wayne,IN
-46539,15085,Warsaw,IN,180,Fort Wayne,IN
-46540,15031,Goshen,IN,187,South Bend,IN
-46542,15031,Goshen,IN,187,South Bend,IN
-46543,15031,Goshen,IN,187,South Bend,IN
-46544,15091,Mishawaka,IN,187,South Bend,IN
-46545,15076,South Bend,IN,187,South Bend,IN
-46546,15091,Mishawaka,IN,187,South Bend,IN
-46550,15024,Elkhart,IN,187,South Bend,IN
-46552,15076,South Bend,IN,187,South Bend,IN
-46553,15031,Goshen,IN,187,South Bend,IN
-46554,15076,South Bend,IN,187,South Bend,IN
-46555,15085,Warsaw,IN,180,Fort Wayne,IN
-46556,15076,South Bend,IN,187,South Bend,IN
-46561,15076,South Bend,IN,187,South Bend,IN
-46562,15014,Columbia City,IN,180,Fort Wayne,IN
-46563,15066,Plymouth,IN,187,South Bend,IN
-46565,15031,Goshen,IN,187,South Bend,IN
-46567,15031,Goshen,IN,187,South Bend,IN
-46570,15066,Plymouth,IN,187,South Bend,IN
-46571,15046,Lagrange,IN,180,Fort Wayne,IN
-46572,15076,South Bend,IN,187,South Bend,IN
-46573,15024,Elkhart,IN,187,South Bend,IN
-46574,15076,South Bend,IN,187,South Bend,IN
-46580,15085,Warsaw,IN,180,Fort Wayne,IN
-46581,15085,Warsaw,IN,180,Fort Wayne,IN
-46582,15085,Warsaw,IN,180,Fort Wayne,IN
-46590,15085,Warsaw,IN,180,Fort Wayne,IN
-46595,15011,Bremen,IN,187,South Bend,IN
-46601,15076,South Bend,IN,187,South Bend,IN
-46613,15076,South Bend,IN,187,South Bend,IN
-46614,15076,South Bend,IN,187,South Bend,IN
-46615,15076,South Bend,IN,187,South Bend,IN
-46616,15076,South Bend,IN,187,South Bend,IN
-46617,15076,South Bend,IN,187,South Bend,IN
-46619,15076,South Bend,IN,187,South Bend,IN
-46624,15076,South Bend,IN,187,South Bend,IN
-46626,15076,South Bend,IN,187,South Bend,IN
-46628,15076,South Bend,IN,187,South Bend,IN
-46634,15076,South Bend,IN,187,South Bend,IN
-46635,15076,South Bend,IN,187,South Bend,IN
-46637,15076,South Bend,IN,187,South Bend,IN
-46660,15076,South Bend,IN,187,South Bend,IN
-46680,15076,South Bend,IN,187,South Bend,IN
-46699,15076,South Bend,IN,187,South Bend,IN
-46701,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46702,15038,Huntington,IN,180,Fort Wayne,IN
-46703,15002,Angola,IN,180,Fort Wayne,IN
-46704,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46705,15003,Auburn,IN,180,Fort Wayne,IN
-46706,15003,Auburn,IN,180,Fort Wayne,IN
-46710,15042,Kendallville,IN,180,Fort Wayne,IN
-46711,15021,Decatur,IN,180,Fort Wayne,IN
-46713,15038,Huntington,IN,180,Fort Wayne,IN
-46714,15008,Bluffton,IN,180,Fort Wayne,IN
-46721,15003,Auburn,IN,180,Fort Wayne,IN
-46723,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46725,15014,Columbia City,IN,180,Fort Wayne,IN
-46730,15003,Auburn,IN,180,Fort Wayne,IN
-46731,15008,Bluffton,IN,180,Fort Wayne,IN
-46732,15031,Goshen,IN,187,South Bend,IN
-46733,15021,Decatur,IN,180,Fort Wayne,IN
-46737,15002,Angola,IN,180,Fort Wayne,IN
-46738,15003,Auburn,IN,180,Fort Wayne,IN
-46740,15021,Decatur,IN,180,Fort Wayne,IN
-46741,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46742,15002,Angola,IN,180,Fort Wayne,IN
-46743,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46745,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46746,15046,Lagrange,IN,180,Fort Wayne,IN
-46747,15003,Auburn,IN,180,Fort Wayne,IN
-46748,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46750,15038,Huntington,IN,180,Fort Wayne,IN
-46755,15042,Kendallville,IN,180,Fort Wayne,IN
-46759,15008,Bluffton,IN,180,Fort Wayne,IN
-46760,15031,Goshen,IN,187,South Bend,IN
-46761,15046,Lagrange,IN,180,Fort Wayne,IN
-46763,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46764,15014,Columbia City,IN,180,Fort Wayne,IN
-46765,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46766,15008,Bluffton,IN,180,Fort Wayne,IN
-46767,15031,Goshen,IN,187,South Bend,IN
-46769,15021,Decatur,IN,180,Fort Wayne,IN
-46770,15008,Bluffton,IN,180,Fort Wayne,IN
-46771,15046,Lagrange,IN,180,Fort Wayne,IN
-46772,15021,Decatur,IN,180,Fort Wayne,IN
-46773,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46774,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46776,15002,Angola,IN,180,Fort Wayne,IN
-46777,15008,Bluffton,IN,180,Fort Wayne,IN
-46778,15036,Hartford City,IN,185,Muncie,IN
-46779,15002,Angola,IN,180,Fort Wayne,IN
-46780,15021,Decatur,IN,180,Fort Wayne,IN
-46781,15008,Bluffton,IN,180,Fort Wayne,IN
-46782,15021,Decatur,IN,180,Fort Wayne,IN
-46783,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46784,15042,Kendallville,IN,180,Fort Wayne,IN
-46785,15003,Auburn,IN,180,Fort Wayne,IN
-46786,15046,Lagrange,IN,180,Fort Wayne,IN
-46787,15014,Columbia City,IN,180,Fort Wayne,IN
-46788,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46789,15046,Lagrange,IN,180,Fort Wayne,IN
-46791,15008,Bluffton,IN,180,Fort Wayne,IN
-46792,15053,Marion,IN,183,Indianapolis,IN
-46793,15003,Auburn,IN,180,Fort Wayne,IN
-46794,15042,Kendallville,IN,180,Fort Wayne,IN
-46795,15046,Lagrange,IN,180,Fort Wayne,IN
-46796,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46797,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46798,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46799,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46801,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46802,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46803,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46804,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46805,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46806,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46807,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46808,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46809,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46814,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46815,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46816,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46818,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46819,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46825,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46835,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46845,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46850,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46851,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46852,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46853,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46854,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46855,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46856,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46857,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46858,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46859,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46860,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46861,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46862,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46863,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46864,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46865,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46866,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46867,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46868,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46869,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46885,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46895,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46896,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46897,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46898,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46899,15027,Fort Wayne,IN,180,Fort Wayne,IN
-46901,15044,Kokomo,IN,183,Indianapolis,IN
-46902,15044,Kokomo,IN,183,Indianapolis,IN
-46903,15044,Kokomo,IN,183,Indianapolis,IN
-46904,15044,Kokomo,IN,183,Indianapolis,IN
-46910,15071,Rochester,IN,187,South Bend,IN
-46911,15044,Kokomo,IN,183,Indianapolis,IN
-46912,15071,Rochester,IN,187,South Bend,IN
-46913,15044,Kokomo,IN,183,Indianapolis,IN
-46914,15044,Kokomo,IN,183,Indianapolis,IN
-46915,15044,Kokomo,IN,183,Indianapolis,IN
-46916,15051,Logansport,IN,183,Indianapolis,IN
-46917,15045,Lafayette,IN,184,Lafayette,IN
-46919,15053,Marion,IN,183,Indianapolis,IN
-46920,15044,Kokomo,IN,183,Indianapolis,IN
-46921,15065,Peru,IN,183,Indianapolis,IN
-46922,15071,Rochester,IN,187,South Bend,IN
-46923,15045,Lafayette,IN,184,Lafayette,IN
-46926,15065,Peru,IN,183,Indianapolis,IN
-46928,15053,Marion,IN,183,Indianapolis,IN
-46929,15045,Lafayette,IN,184,Lafayette,IN
-46930,15053,Marion,IN,183,Indianapolis,IN
-46931,15071,Rochester,IN,187,South Bend,IN
-46932,15044,Kokomo,IN,183,Indianapolis,IN
-46933,15053,Marion,IN,183,Indianapolis,IN
-46935,15088,Winamac,IN,183,Indianapolis,IN
-46936,15044,Kokomo,IN,183,Indianapolis,IN
-46937,15044,Kokomo,IN,183,Indianapolis,IN
-46938,15053,Marion,IN,183,Indianapolis,IN
-46939,15088,Winamac,IN,183,Indianapolis,IN
-46940,15053,Marion,IN,183,Indianapolis,IN
-46941,15084,Wabash,IN,180,Fort Wayne,IN
-46942,15051,Logansport,IN,183,Indianapolis,IN
-46943,15084,Wabash,IN,180,Fort Wayne,IN
-46945,15071,Rochester,IN,187,South Bend,IN
-46946,15084,Wabash,IN,180,Fort Wayne,IN
-46947,15051,Logansport,IN,183,Indianapolis,IN
-46950,15051,Logansport,IN,183,Indianapolis,IN
-46951,15071,Rochester,IN,187,South Bend,IN
-46952,15053,Marion,IN,183,Indianapolis,IN
-46953,15053,Marion,IN,183,Indianapolis,IN
-46957,15053,Marion,IN,183,Indianapolis,IN
-46958,15065,Peru,IN,183,Indianapolis,IN
-46959,15044,Kokomo,IN,183,Indianapolis,IN
-46960,15088,Winamac,IN,183,Indianapolis,IN
-46961,15051,Logansport,IN,183,Indianapolis,IN
-46962,15084,Wabash,IN,180,Fort Wayne,IN
-46965,15044,Kokomo,IN,183,Indianapolis,IN
-46967,15044,Kokomo,IN,183,Indianapolis,IN
-46968,15043,Knox,IN,181,Gary,IN
-46970,15065,Peru,IN,183,Indianapolis,IN
-46971,15065,Peru,IN,183,Indianapolis,IN
-46974,15084,Wabash,IN,180,Fort Wayne,IN
-46975,15071,Rochester,IN,187,South Bend,IN
-46977,15051,Logansport,IN,183,Indianapolis,IN
-46978,15051,Logansport,IN,183,Indianapolis,IN
-46979,15044,Kokomo,IN,183,Indianapolis,IN
-46980,15084,Wabash,IN,180,Fort Wayne,IN
-46982,15085,Warsaw,IN,180,Fort Wayne,IN
-46984,15084,Wabash,IN,180,Fort Wayne,IN
-46985,15088,Winamac,IN,183,Indianapolis,IN
-46986,15053,Marion,IN,183,Indianapolis,IN
-46987,15053,Marion,IN,183,Indianapolis,IN
-46988,15051,Logansport,IN,183,Indianapolis,IN
-46989,15053,Marion,IN,183,Indianapolis,IN
-46990,15084,Wabash,IN,180,Fort Wayne,IN
-46991,15053,Marion,IN,183,Indianapolis,IN
-46992,15084,Wabash,IN,180,Fort Wayne,IN
-46994,15044,Kokomo,IN,183,Indianapolis,IN
-46995,15044,Kokomo,IN,183,Indianapolis,IN
-46996,15088,Winamac,IN,183,Indianapolis,IN
-46998,15044,Kokomo,IN,183,Indianapolis,IN
-47001,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47003,15070,Richmond,IN,183,Indianapolis,IN
-47006,15004,Batesville,IN,327,Cincinnati,OH
-47010,36086,Oxford,OH,327,Cincinnati,OH
-47011,15052,Madison,IN,205,Louisville,KY
-47012,36086,Oxford,OH,327,Cincinnati,OH
-47016,36023,Cincinnati,OH,327,Cincinnati,OH
-47017,15052,Madison,IN,205,Louisville,KY
-47018,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47019,15052,Madison,IN,205,Louisville,KY
-47020,15052,Madison,IN,205,Louisville,KY
-47021,15052,Madison,IN,205,Louisville,KY
-47022,36023,Cincinnati,OH,327,Cincinnati,OH
-47023,15052,Madison,IN,205,Louisville,KY
-47024,15016,Connersville,IN,183,Indianapolis,IN
-47025,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47030,15004,Batesville,IN,327,Cincinnati,OH
-47031,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47032,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47033,15004,Batesville,IN,327,Cincinnati,OH
-47034,15004,Batesville,IN,327,Cincinnati,OH
-47035,36023,Cincinnati,OH,327,Cincinnati,OH
-47036,15004,Batesville,IN,327,Cincinnati,OH
-47037,15004,Batesville,IN,327,Cincinnati,OH
-47038,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47039,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47040,15048,Lawrenceburg,IN,327,Cincinnati,OH
-47041,15004,Batesville,IN,327,Cincinnati,OH
-47042,15052,Madison,IN,205,Louisville,KY
-47043,15052,Madison,IN,205,Louisville,KY
-47060,36023,Cincinnati,OH,327,Cincinnati,OH
-47102,15093,Scottsburg,IN,205,Louisville,KY
-47104,15012,Charlestown,IN,205,Louisville,KY
-47106,15059,New Albany,IN,205,Louisville,KY
-47107,15017,Corydon,IN,205,Louisville,KY
-47108,15073,Salem,IN,205,Louisville,KY
-47110,15017,Corydon,IN,205,Louisville,KY
-47111,15012,Charlestown,IN,205,Louisville,KY
-47112,15017,Corydon,IN,205,Louisville,KY
-47114,15017,Corydon,IN,205,Louisville,KY
-47115,15017,Corydon,IN,205,Louisville,KY
-47116,15037,Huntingburg,IN,179,Evansville,IN
-47117,15059,New Albany,IN,205,Louisville,KY
-47118,15037,Huntingburg,IN,179,Evansville,IN
-47119,15059,New Albany,IN,205,Louisville,KY
-47120,15073,Salem,IN,205,Louisville,KY
-47122,15059,New Albany,IN,205,Louisville,KY
-47123,15017,Corydon,IN,205,Louisville,KY
-47124,15059,New Albany,IN,205,Louisville,KY
-47125,15073,Salem,IN,205,Louisville,KY
-47126,15041,Jeffersonville,IN,205,Louisville,KY
-47129,15041,Jeffersonville,IN,205,Louisville,KY
-47130,15041,Jeffersonville,IN,205,Louisville,KY
-47131,15041,Jeffersonville,IN,205,Louisville,KY
-47132,15041,Jeffersonville,IN,205,Louisville,KY
-47133,15041,Jeffersonville,IN,205,Louisville,KY
-47134,15041,Jeffersonville,IN,205,Louisville,KY
-47135,15017,Corydon,IN,205,Louisville,KY
-47136,15059,New Albany,IN,205,Louisville,KY
-47137,15017,Corydon,IN,205,Louisville,KY
-47138,15052,Madison,IN,205,Louisville,KY
-47140,15017,Corydon,IN,205,Louisville,KY
-47141,15041,Jeffersonville,IN,205,Louisville,KY
-47142,15017,Corydon,IN,205,Louisville,KY
-47143,15041,Jeffersonville,IN,205,Louisville,KY
-47144,15041,Jeffersonville,IN,205,Louisville,KY
-47145,15017,Corydon,IN,205,Louisville,KY
-47146,15059,New Albany,IN,205,Louisville,KY
-47147,15012,Charlestown,IN,205,Louisville,KY
-47150,15059,New Albany,IN,205,Louisville,KY
-47151,15059,New Albany,IN,205,Louisville,KY
-47160,15017,Corydon,IN,205,Louisville,KY
-47161,15017,Corydon,IN,205,Louisville,KY
-47162,15012,Charlestown,IN,205,Louisville,KY
-47163,15041,Jeffersonville,IN,205,Louisville,KY
-47164,15017,Corydon,IN,205,Louisville,KY
-47165,15073,Salem,IN,205,Louisville,KY
-47166,15017,Corydon,IN,205,Louisville,KY
-47167,15073,Salem,IN,205,Louisville,KY
-47170,15093,Scottsburg,IN,205,Louisville,KY
-47172,15041,Jeffersonville,IN,205,Louisville,KY
-47174,15017,Corydon,IN,205,Louisville,KY
-47175,15037,Huntingburg,IN,179,Evansville,IN
-47177,15041,Jeffersonville,IN,205,Louisville,KY
-47190,15041,Jeffersonville,IN,205,Louisville,KY
-47199,15041,Jeffersonville,IN,205,Louisville,KY
-47201,15015,Columbus,IN,183,Indianapolis,IN
-47202,15015,Columbus,IN,183,Indianapolis,IN
-47203,15015,Columbus,IN,183,Indianapolis,IN
-47220,15074,Seymour,IN,183,Indianapolis,IN
-47223,15062,North Vernon,IN,183,Indianapolis,IN
-47224,15052,Madison,IN,205,Louisville,KY
-47225,15034,Greensburg,IN,183,Indianapolis,IN
-47226,15015,Columbus,IN,183,Indianapolis,IN
-47227,15062,North Vernon,IN,183,Indianapolis,IN
-47228,15074,Seymour,IN,183,Indianapolis,IN
-47229,15074,Seymour,IN,183,Indianapolis,IN
-47230,15052,Madison,IN,205,Louisville,KY
-47231,15052,Madison,IN,205,Louisville,KY
-47232,15015,Columbus,IN,183,Indianapolis,IN
-47234,15075,Shelbyville,IN,183,Indianapolis,IN
-47235,15074,Seymour,IN,183,Indianapolis,IN
-47236,15015,Columbus,IN,183,Indianapolis,IN
-47240,15034,Greensburg,IN,183,Indianapolis,IN
-47243,15052,Madison,IN,205,Louisville,KY
-47244,15034,Greensburg,IN,183,Indianapolis,IN
-47245,15062,North Vernon,IN,183,Indianapolis,IN
-47246,15015,Columbus,IN,183,Indianapolis,IN
-47247,15015,Columbus,IN,183,Indianapolis,IN
-47249,15074,Seymour,IN,183,Indianapolis,IN
-47250,15052,Madison,IN,205,Louisville,KY
-47260,15074,Seymour,IN,183,Indianapolis,IN
-47263,15034,Greensburg,IN,183,Indianapolis,IN
-47264,15074,Seymour,IN,183,Indianapolis,IN
-47265,15062,North Vernon,IN,183,Indianapolis,IN
-47270,15074,Seymour,IN,183,Indianapolis,IN
-47272,15075,Shelbyville,IN,183,Indianapolis,IN
-47273,15015,Columbus,IN,183,Indianapolis,IN
-47274,15074,Seymour,IN,183,Indianapolis,IN
-47280,15015,Columbus,IN,183,Indianapolis,IN
-47281,15074,Seymour,IN,183,Indianapolis,IN
-47282,15062,North Vernon,IN,183,Indianapolis,IN
-47283,15015,Columbus,IN,183,Indianapolis,IN
-47302,15057,Muncie,IN,185,Muncie,IN
-47303,15057,Muncie,IN,185,Muncie,IN
-47304,15057,Muncie,IN,185,Muncie,IN
-47305,15057,Muncie,IN,185,Muncie,IN
-47306,15057,Muncie,IN,185,Muncie,IN
-47307,15057,Muncie,IN,185,Muncie,IN
-47308,15057,Muncie,IN,185,Muncie,IN
-47320,15057,Muncie,IN,185,Muncie,IN
-47322,15016,Connersville,IN,183,Indianapolis,IN
-47324,15070,Richmond,IN,183,Indianapolis,IN
-47325,15070,Richmond,IN,183,Indianapolis,IN
-47326,15067,Portland,IN,180,Fort Wayne,IN
-47327,15070,Richmond,IN,183,Indianapolis,IN
-47330,15070,Richmond,IN,183,Indianapolis,IN
-47331,15016,Connersville,IN,183,Indianapolis,IN
-47334,15057,Muncie,IN,185,Muncie,IN
-47335,15070,Richmond,IN,183,Indianapolis,IN
-47336,15057,Muncie,IN,185,Muncie,IN
-47337,15060,New Castle,IN,183,Indianapolis,IN
-47338,15057,Muncie,IN,185,Muncie,IN
-47339,15070,Richmond,IN,183,Indianapolis,IN
-47340,15057,Muncie,IN,185,Muncie,IN
-47341,15070,Richmond,IN,183,Indianapolis,IN
-47342,15057,Muncie,IN,185,Muncie,IN
-47344,15033,Greenfield,IN,183,Indianapolis,IN
-47345,15070,Richmond,IN,183,Indianapolis,IN
-47346,15070,Richmond,IN,183,Indianapolis,IN
-47348,15036,Hartford City,IN,185,Muncie,IN
-47351,15033,Greenfield,IN,183,Indianapolis,IN
-47352,15060,New Castle,IN,183,Indianapolis,IN
-47353,15070,Richmond,IN,183,Indianapolis,IN
-47354,15057,Muncie,IN,185,Muncie,IN
-47355,15070,Richmond,IN,183,Indianapolis,IN
-47356,15001,Anderson,IN,183,Indianapolis,IN
-47357,15070,Richmond,IN,183,Indianapolis,IN
-47358,15057,Muncie,IN,185,Muncie,IN
-47359,15036,Hartford City,IN,185,Muncie,IN
-47360,15060,New Castle,IN,183,Indianapolis,IN
-47361,15057,Muncie,IN,185,Muncie,IN
-47362,15060,New Castle,IN,183,Indianapolis,IN
-47366,15060,New Castle,IN,183,Indianapolis,IN
-47367,15057,Muncie,IN,185,Muncie,IN
-47368,15057,Muncie,IN,185,Muncie,IN
-47369,15067,Portland,IN,180,Fort Wayne,IN
-47370,15070,Richmond,IN,183,Indianapolis,IN
-47371,15067,Portland,IN,180,Fort Wayne,IN
-47373,15057,Muncie,IN,185,Muncie,IN
-47374,15070,Richmond,IN,183,Indianapolis,IN
-47375,15070,Richmond,IN,183,Indianapolis,IN
-47380,15057,Muncie,IN,185,Muncie,IN
-47381,15067,Portland,IN,180,Fort Wayne,IN
-47382,15057,Muncie,IN,185,Muncie,IN
-47383,15057,Muncie,IN,185,Muncie,IN
-47384,15033,Greenfield,IN,183,Indianapolis,IN
-47385,15060,New Castle,IN,183,Indianapolis,IN
-47386,15057,Muncie,IN,185,Muncie,IN
-47387,15060,New Castle,IN,183,Indianapolis,IN
-47388,15060,New Castle,IN,183,Indianapolis,IN
-47390,15057,Muncie,IN,185,Muncie,IN
-47392,15070,Richmond,IN,183,Indianapolis,IN
-47393,15070,Richmond,IN,183,Indianapolis,IN
-47394,15089,Winchester,IN,185,Muncie,IN
-47396,15057,Muncie,IN,185,Muncie,IN
-47401,15007,Bloomington,IN,183,Indianapolis,IN
-47402,15007,Bloomington,IN,183,Indianapolis,IN
-47403,15007,Bloomington,IN,183,Indianapolis,IN
-47404,15007,Bloomington,IN,183,Indianapolis,IN
-47405,15007,Bloomington,IN,183,Indianapolis,IN
-47406,15007,Bloomington,IN,183,Indianapolis,IN
-47407,15007,Bloomington,IN,183,Indianapolis,IN
-47408,15007,Bloomington,IN,183,Indianapolis,IN
-47420,15005,Bedford,IN,183,Indianapolis,IN
-47421,15005,Bedford,IN,183,Indianapolis,IN
-47424,15007,Bloomington,IN,183,Indianapolis,IN
-47426,15007,Bloomington,IN,183,Indianapolis,IN
-47427,15079,Terre Haute,IN,188,Terre Haute,IN
-47429,15007,Bloomington,IN,183,Indianapolis,IN
-47431,15007,Bloomington,IN,183,Indianapolis,IN
-47432,15064,Paoli,IN,205,Louisville,KY
-47433,15007,Bloomington,IN,183,Indianapolis,IN
-47434,15007,Bloomington,IN,183,Indianapolis,IN
-47435,15007,Bloomington,IN,183,Indianapolis,IN
-47436,15005,Bedford,IN,183,Indianapolis,IN
-47437,15005,Bedford,IN,183,Indianapolis,IN
-47438,15079,Terre Haute,IN,188,Terre Haute,IN
-47441,15050,Linton,IN,183,Indianapolis,IN
-47443,15050,Linton,IN,183,Indianapolis,IN
-47445,15079,Terre Haute,IN,188,Terre Haute,IN
-47446,15005,Bedford,IN,183,Indianapolis,IN
-47448,15007,Bloomington,IN,183,Indianapolis,IN
-47449,15007,Bloomington,IN,183,Indianapolis,IN
-47451,15005,Bedford,IN,183,Indianapolis,IN
-47452,15005,Bedford,IN,183,Indianapolis,IN
-47453,15007,Bloomington,IN,183,Indianapolis,IN
-47454,15064,Paoli,IN,205,Louisville,KY
-47455,15079,Terre Haute,IN,188,Terre Haute,IN
-47456,15032,Greencastle,IN,183,Indianapolis,IN
-47457,15007,Bloomington,IN,183,Indianapolis,IN
-47458,15007,Bloomington,IN,183,Indianapolis,IN
-47459,15007,Bloomington,IN,183,Indianapolis,IN
-47460,15007,Bloomington,IN,183,Indianapolis,IN
-47462,15005,Bedford,IN,183,Indianapolis,IN
-47463,15007,Bloomington,IN,183,Indianapolis,IN
-47464,15007,Bloomington,IN,183,Indianapolis,IN
-47465,15050,Linton,IN,183,Indianapolis,IN
-47467,15005,Bedford,IN,183,Indianapolis,IN
-47468,15007,Bloomington,IN,183,Indianapolis,IN
-47469,15064,Paoli,IN,205,Louisville,KY
-47470,15005,Bedford,IN,183,Indianapolis,IN
-47471,15050,Linton,IN,183,Indianapolis,IN
-47501,15086,Washington,IN,179,Evansville,IN
-47512,15083,Vincennes,IN,179,Evansville,IN
-47513,15037,Huntingburg,IN,179,Evansville,IN
-47514,15078,Tell City,IN,179,Evansville,IN
-47515,15078,Tell City,IN,179,Evansville,IN
-47516,15083,Vincennes,IN,179,Evansville,IN
-47519,15086,Washington,IN,179,Evansville,IN
-47520,15078,Tell City,IN,179,Evansville,IN
-47521,15040,Jasper,IN,179,Evansville,IN
-47522,15086,Washington,IN,179,Evansville,IN
-47523,15037,Huntingburg,IN,179,Evansville,IN
-47524,15083,Vincennes,IN,179,Evansville,IN
-47525,15078,Tell City,IN,179,Evansville,IN
-47527,15040,Jasper,IN,179,Evansville,IN
-47528,15083,Vincennes,IN,179,Evansville,IN
-47529,15086,Washington,IN,179,Evansville,IN
-47531,15037,Huntingburg,IN,179,Evansville,IN
-47532,15037,Huntingburg,IN,179,Evansville,IN
-47535,15083,Vincennes,IN,179,Evansville,IN
-47536,15037,Huntingburg,IN,179,Evansville,IN
-47537,15026,Evansville,IN,179,Evansville,IN
-47541,15037,Huntingburg,IN,179,Evansville,IN
-47542,15037,Huntingburg,IN,179,Evansville,IN
-47545,15040,Jasper,IN,179,Evansville,IN
-47546,15040,Jasper,IN,179,Evansville,IN
-47547,15040,Jasper,IN,179,Evansville,IN
-47549,15040,Jasper,IN,179,Evansville,IN
-47550,15037,Huntingburg,IN,179,Evansville,IN
-47551,15078,Tell City,IN,179,Evansville,IN
-47552,15037,Huntingburg,IN,179,Evansville,IN
-47553,15040,Jasper,IN,179,Evansville,IN
-47556,15037,Huntingburg,IN,179,Evansville,IN
-47557,15083,Vincennes,IN,179,Evansville,IN
-47558,15086,Washington,IN,179,Evansville,IN
-47561,15083,Vincennes,IN,179,Evansville,IN
-47562,15086,Washington,IN,179,Evansville,IN
-47564,15040,Jasper,IN,179,Evansville,IN
-47567,15083,Vincennes,IN,179,Evansville,IN
-47568,15086,Washington,IN,179,Evansville,IN
-47573,15083,Vincennes,IN,179,Evansville,IN
-47574,15078,Tell City,IN,179,Evansville,IN
-47575,15040,Jasper,IN,179,Evansville,IN
-47576,15078,Tell City,IN,179,Evansville,IN
-47577,15037,Huntingburg,IN,179,Evansville,IN
-47578,15083,Vincennes,IN,179,Evansville,IN
-47579,15037,Huntingburg,IN,179,Evansville,IN
-47580,15040,Jasper,IN,179,Evansville,IN
-47581,15005,Bedford,IN,183,Indianapolis,IN
-47584,15026,Evansville,IN,179,Evansville,IN
-47585,15037,Huntingburg,IN,179,Evansville,IN
-47586,15078,Tell City,IN,179,Evansville,IN
-47588,15078,Tell City,IN,179,Evansville,IN
-47590,15040,Jasper,IN,179,Evansville,IN
-47591,15083,Vincennes,IN,179,Evansville,IN
-47596,15083,Vincennes,IN,179,Evansville,IN
-47597,15083,Vincennes,IN,179,Evansville,IN
-47598,15026,Evansville,IN,179,Evansville,IN
-47601,15009,Boonville,IN,179,Evansville,IN
-47610,15026,Evansville,IN,179,Evansville,IN
-47611,15026,Evansville,IN,179,Evansville,IN
-47612,15026,Evansville,IN,179,Evansville,IN
-47613,15026,Evansville,IN,179,Evansville,IN
-47615,18064,Owensboro,KY,207,Owensboro,KY
-47616,15026,Evansville,IN,179,Evansville,IN
-47617,15026,Evansville,IN,179,Evansville,IN
-47618,15026,Evansville,IN,179,Evansville,IN
-47619,15026,Evansville,IN,179,Evansville,IN
-47620,15026,Evansville,IN,179,Evansville,IN
-47629,15026,Evansville,IN,179,Evansville,IN
-47630,15026,Evansville,IN,179,Evansville,IN
-47631,15026,Evansville,IN,179,Evansville,IN
-47633,15026,Evansville,IN,179,Evansville,IN
-47634,15026,Evansville,IN,179,Evansville,IN
-47635,18064,Owensboro,KY,207,Owensboro,KY
-47637,15009,Boonville,IN,179,Evansville,IN
-47638,15026,Evansville,IN,179,Evansville,IN
-47639,15026,Evansville,IN,179,Evansville,IN
-47640,15068,Princeton,IN,179,Evansville,IN
-47647,15026,Evansville,IN,179,Evansville,IN
-47648,15026,Evansville,IN,179,Evansville,IN
-47649,15026,Evansville,IN,179,Evansville,IN
-47654,15026,Evansville,IN,179,Evansville,IN
-47660,15026,Evansville,IN,179,Evansville,IN
-47665,15026,Evansville,IN,179,Evansville,IN
-47666,15068,Princeton,IN,179,Evansville,IN
-47670,15068,Princeton,IN,179,Evansville,IN
-47683,15026,Evansville,IN,179,Evansville,IN
-47701,15026,Evansville,IN,179,Evansville,IN
-47702,15026,Evansville,IN,179,Evansville,IN
-47703,15026,Evansville,IN,179,Evansville,IN
-47704,15026,Evansville,IN,179,Evansville,IN
-47705,15026,Evansville,IN,179,Evansville,IN
-47706,15026,Evansville,IN,179,Evansville,IN
-47708,15026,Evansville,IN,179,Evansville,IN
-47710,15026,Evansville,IN,179,Evansville,IN
-47711,15026,Evansville,IN,179,Evansville,IN
-47712,15026,Evansville,IN,179,Evansville,IN
-47713,15026,Evansville,IN,179,Evansville,IN
-47714,15026,Evansville,IN,179,Evansville,IN
-47715,15026,Evansville,IN,179,Evansville,IN
-47716,15026,Evansville,IN,179,Evansville,IN
-47719,15026,Evansville,IN,179,Evansville,IN
-47720,15026,Evansville,IN,179,Evansville,IN
-47721,15026,Evansville,IN,179,Evansville,IN
-47722,15026,Evansville,IN,179,Evansville,IN
-47724,15026,Evansville,IN,179,Evansville,IN
-47725,15026,Evansville,IN,179,Evansville,IN
-47728,15026,Evansville,IN,179,Evansville,IN
-47730,15026,Evansville,IN,179,Evansville,IN
-47731,15026,Evansville,IN,179,Evansville,IN
-47732,15026,Evansville,IN,179,Evansville,IN
-47733,15026,Evansville,IN,179,Evansville,IN
-47734,15026,Evansville,IN,179,Evansville,IN
-47735,15026,Evansville,IN,179,Evansville,IN
-47736,15026,Evansville,IN,179,Evansville,IN
-47737,15026,Evansville,IN,179,Evansville,IN
-47740,15026,Evansville,IN,179,Evansville,IN
-47747,15026,Evansville,IN,179,Evansville,IN
-47750,15026,Evansville,IN,179,Evansville,IN
-47801,15079,Terre Haute,IN,188,Terre Haute,IN
-47802,15079,Terre Haute,IN,188,Terre Haute,IN
-47803,15079,Terre Haute,IN,188,Terre Haute,IN
-47804,15079,Terre Haute,IN,188,Terre Haute,IN
-47805,15079,Terre Haute,IN,188,Terre Haute,IN
-47807,15079,Terre Haute,IN,188,Terre Haute,IN
-47808,15079,Terre Haute,IN,188,Terre Haute,IN
-47809,15079,Terre Haute,IN,188,Terre Haute,IN
-47831,15013,Clinton,IN,188,Terre Haute,IN
-47832,15013,Clinton,IN,188,Terre Haute,IN
-47833,15010,Brazil,IN,183,Indianapolis,IN
-47834,15010,Brazil,IN,183,Indianapolis,IN
-47836,15079,Terre Haute,IN,188,Terre Haute,IN
-47837,15010,Brazil,IN,183,Indianapolis,IN
-47838,15077,Sullivan,IN,188,Terre Haute,IN
-47840,15079,Terre Haute,IN,188,Terre Haute,IN
-47841,15079,Terre Haute,IN,188,Terre Haute,IN
-47842,15013,Clinton,IN,188,Terre Haute,IN
-47845,15079,Terre Haute,IN,188,Terre Haute,IN
-47846,15010,Brazil,IN,183,Indianapolis,IN
-47847,15013,Clinton,IN,188,Terre Haute,IN
-47848,15077,Sullivan,IN,188,Terre Haute,IN
-47849,15079,Terre Haute,IN,188,Terre Haute,IN
-47850,15077,Sullivan,IN,188,Terre Haute,IN
-47851,15079,Terre Haute,IN,188,Terre Haute,IN
-47852,15077,Sullivan,IN,188,Terre Haute,IN
-47853,15010,Brazil,IN,183,Indianapolis,IN
-47854,15013,Clinton,IN,188,Terre Haute,IN
-47855,15077,Sullivan,IN,188,Terre Haute,IN
-47857,15010,Brazil,IN,183,Indianapolis,IN
-47858,15079,Terre Haute,IN,188,Terre Haute,IN
-47859,15013,Clinton,IN,188,Terre Haute,IN
-47860,15013,Clinton,IN,188,Terre Haute,IN
-47861,15077,Sullivan,IN,188,Terre Haute,IN
-47862,15013,Clinton,IN,188,Terre Haute,IN
-47863,15079,Terre Haute,IN,188,Terre Haute,IN
-47865,15077,Sullivan,IN,188,Terre Haute,IN
-47866,15079,Terre Haute,IN,188,Terre Haute,IN
-47868,15032,Greencastle,IN,183,Indianapolis,IN
-47869,15079,Terre Haute,IN,188,Terre Haute,IN
-47870,15079,Terre Haute,IN,188,Terre Haute,IN
-47871,15079,Terre Haute,IN,188,Terre Haute,IN
-47872,15013,Clinton,IN,188,Terre Haute,IN
-47874,15079,Terre Haute,IN,188,Terre Haute,IN
-47875,15013,Clinton,IN,188,Terre Haute,IN
-47876,15079,Terre Haute,IN,188,Terre Haute,IN
-47878,15079,Terre Haute,IN,188,Terre Haute,IN
-47879,15077,Sullivan,IN,188,Terre Haute,IN
-47880,15079,Terre Haute,IN,188,Terre Haute,IN
-47881,15010,Brazil,IN,183,Indianapolis,IN
-47882,15077,Sullivan,IN,188,Terre Haute,IN
-47884,15013,Clinton,IN,188,Terre Haute,IN
-47885,15079,Terre Haute,IN,188,Terre Haute,IN
-47901,15045,Lafayette,IN,184,Lafayette,IN
-47902,15045,Lafayette,IN,184,Lafayette,IN
-47903,15045,Lafayette,IN,184,Lafayette,IN
-47904,15045,Lafayette,IN,184,Lafayette,IN
-47905,15045,Lafayette,IN,184,Lafayette,IN
-47906,15045,Lafayette,IN,184,Lafayette,IN
-47907,15045,Lafayette,IN,184,Lafayette,IN
-47909,15045,Lafayette,IN,184,Lafayette,IN
-47916,15018,Crawfordsville,IN,183,Indianapolis,IN
-47917,15045,Lafayette,IN,184,Lafayette,IN
-47918,15045,Lafayette,IN,184,Lafayette,IN
-47920,15045,Lafayette,IN,184,Lafayette,IN
-47921,15045,Lafayette,IN,184,Lafayette,IN
-47922,15069,Rensselaer,IN,184,Lafayette,IN
-47923,15045,Lafayette,IN,184,Lafayette,IN
-47924,15045,Lafayette,IN,184,Lafayette,IN
-47925,15056,Monticello,IN,183,Indianapolis,IN
-47926,15051,Logansport,IN,183,Indianapolis,IN
-47928,15013,Clinton,IN,188,Terre Haute,IN
-47929,15045,Lafayette,IN,184,Lafayette,IN
-47930,15045,Lafayette,IN,184,Lafayette,IN
-47932,14027,Danville,IL,173,Urbana,IL
-47933,15018,Crawfordsville,IN,183,Indianapolis,IN
-47940,15018,Crawfordsville,IN,183,Indianapolis,IN
-47941,15045,Lafayette,IN,184,Lafayette,IN
-47942,15045,Lafayette,IN,184,Lafayette,IN
-47943,15069,Rensselaer,IN,184,Lafayette,IN
-47944,15045,Lafayette,IN,184,Lafayette,IN
-47946,15088,Winamac,IN,183,Indianapolis,IN
-47948,15045,Lafayette,IN,184,Lafayette,IN
-47949,15018,Crawfordsville,IN,183,Indianapolis,IN
-47950,15056,Monticello,IN,183,Indianapolis,IN
-47951,14138,Watseka,IL,173,Urbana,IL
-47952,14027,Danville,IL,173,Urbana,IL
-47954,15018,Crawfordsville,IN,183,Indianapolis,IN
-47955,15018,Crawfordsville,IN,183,Indianapolis,IN
-47957,15088,Winamac,IN,183,Indianapolis,IN
-47958,15018,Crawfordsville,IN,183,Indianapolis,IN
-47959,15056,Monticello,IN,183,Indianapolis,IN
-47960,15056,Monticello,IN,183,Indianapolis,IN
-47962,15045,Lafayette,IN,184,Lafayette,IN
-47963,15069,Rensselaer,IN,184,Lafayette,IN
-47964,15069,Rensselaer,IN,184,Lafayette,IN
-47965,15018,Crawfordsville,IN,183,Indianapolis,IN
-47966,15013,Clinton,IN,188,Terre Haute,IN
-47967,15045,Lafayette,IN,184,Lafayette,IN
-47968,15049,Lebanon,IN,183,Indianapolis,IN
-47969,15045,Lafayette,IN,184,Lafayette,IN
-47970,15045,Lafayette,IN,184,Lafayette,IN
-47971,15045,Lafayette,IN,184,Lafayette,IN
-47974,14027,Danville,IL,173,Urbana,IL
-47975,15045,Lafayette,IN,184,Lafayette,IN
-47977,15045,Lafayette,IN,184,Lafayette,IN
-47978,15069,Rensselaer,IN,184,Lafayette,IN
-47980,15045,Lafayette,IN,184,Lafayette,IN
-47981,15045,Lafayette,IN,184,Lafayette,IN
-47982,15087,Williamsport,IN,184,Lafayette,IN
-47983,15045,Lafayette,IN,184,Lafayette,IN
-47986,15045,Lafayette,IN,184,Lafayette,IN
-47987,14027,Danville,IL,173,Urbana,IL
-47988,15018,Crawfordsville,IN,183,Indianapolis,IN
-47989,15018,Crawfordsville,IN,183,Indianapolis,IN
-47990,15018,Crawfordsville,IN,183,Indianapolis,IN
-47991,15087,Williamsport,IN,184,Lafayette,IN
-47992,15045,Lafayette,IN,184,Lafayette,IN
-47993,15087,Williamsport,IN,184,Lafayette,IN
-47994,15018,Crawfordsville,IN,183,Indianapolis,IN
-47995,15045,Lafayette,IN,184,Lafayette,IN
-47996,15045,Lafayette,IN,184,Lafayette,IN
-47997,15056,Monticello,IN,183,Indianapolis,IN
-48001,23106,St. Clair,MI,234,Detroit,MI
-48002,23092,Port Huron,MI,234,Detroit,MI
-48003,23063,Lapeer,MI,235,Flint,MI
-48004,23078,Mount Clemens,MI,234,Detroit,MI
-48005,23078,Mount Clemens,MI,234,Detroit,MI
-48006,23092,Port Huron,MI,234,Detroit,MI
-48007,23097,Royal Oak,MI,245,Royal Oak,MI
-48009,23097,Royal Oak,MI,245,Royal Oak,MI
-48012,23097,Royal Oak,MI,245,Royal Oak,MI
-48014,23092,Port Huron,MI,234,Detroit,MI
-48015,23119,Warren,MI,234,Detroit,MI
-48017,23097,Royal Oak,MI,245,Royal Oak,MI
-48021,23026,Detroit,MI,234,Detroit,MI
-48022,23092,Port Huron,MI,234,Detroit,MI
-48023,23078,Mount Clemens,MI,234,Detroit,MI
-48025,23097,Royal Oak,MI,245,Royal Oak,MI
-48026,23078,Mount Clemens,MI,234,Detroit,MI
-48027,23092,Port Huron,MI,234,Detroit,MI
-48028,23106,St. Clair,MI,234,Detroit,MI
-48030,23068,Madison Heights,MI,245,Royal Oak,MI
-48032,23092,Port Huron,MI,234,Detroit,MI
-48033,23105,Southfield,MI,245,Royal Oak,MI
-48034,23105,Southfield,MI,245,Royal Oak,MI
-48035,23078,Mount Clemens,MI,234,Detroit,MI
-48036,23078,Mount Clemens,MI,234,Detroit,MI
-48037,23105,Southfield,MI,245,Royal Oak,MI
-48038,23078,Mount Clemens,MI,234,Detroit,MI
-48039,23106,St. Clair,MI,234,Detroit,MI
-48040,23092,Port Huron,MI,234,Detroit,MI
-48041,23092,Port Huron,MI,234,Detroit,MI
-48042,23078,Mount Clemens,MI,234,Detroit,MI
-48043,23078,Mount Clemens,MI,234,Detroit,MI
-48044,23078,Mount Clemens,MI,234,Detroit,MI
-48045,23078,Mount Clemens,MI,234,Detroit,MI
-48046,23078,Mount Clemens,MI,234,Detroit,MI
-48047,23078,Mount Clemens,MI,234,Detroit,MI
-48048,23078,Mount Clemens,MI,234,Detroit,MI
-48049,23092,Port Huron,MI,234,Detroit,MI
-48050,23078,Mount Clemens,MI,234,Detroit,MI
-48051,23078,Mount Clemens,MI,234,Detroit,MI
-48054,23106,St. Clair,MI,234,Detroit,MI
-48059,23092,Port Huron,MI,234,Detroit,MI
-48060,23092,Port Huron,MI,234,Detroit,MI
-48061,23092,Port Huron,MI,234,Detroit,MI
-48062,23078,Mount Clemens,MI,234,Detroit,MI
-48063,23092,Port Huron,MI,234,Detroit,MI
-48064,23078,Mount Clemens,MI,234,Detroit,MI
-48065,23078,Mount Clemens,MI,234,Detroit,MI
-48066,23119,Warren,MI,234,Detroit,MI
-48067,23097,Royal Oak,MI,245,Royal Oak,MI
-48068,23097,Royal Oak,MI,245,Royal Oak,MI
-48069,23097,Royal Oak,MI,245,Royal Oak,MI
-48070,23097,Royal Oak,MI,245,Royal Oak,MI
-48071,23068,Madison Heights,MI,245,Royal Oak,MI
-48072,23097,Royal Oak,MI,245,Royal Oak,MI
-48073,23097,Royal Oak,MI,245,Royal Oak,MI
-48074,23092,Port Huron,MI,234,Detroit,MI
-48075,23105,Southfield,MI,245,Royal Oak,MI
-48076,23097,Royal Oak,MI,245,Royal Oak,MI
-48079,23092,Port Huron,MI,234,Detroit,MI
-48080,23026,Detroit,MI,234,Detroit,MI
-48081,23026,Detroit,MI,234,Detroit,MI
-48082,23026,Detroit,MI,234,Detroit,MI
-48083,23118,Troy,MI,245,Royal Oak,MI
-48084,23097,Royal Oak,MI,245,Royal Oak,MI
-48085,23118,Troy,MI,245,Royal Oak,MI
-48086,23105,Southfield,MI,245,Royal Oak,MI
-48088,23119,Warren,MI,234,Detroit,MI
-48089,23119,Warren,MI,234,Detroit,MI
-48090,23119,Warren,MI,234,Detroit,MI
-48091,23119,Warren,MI,234,Detroit,MI
-48092,23119,Warren,MI,234,Detroit,MI
-48093,23119,Warren,MI,234,Detroit,MI
-48094,23078,Mount Clemens,MI,234,Detroit,MI
-48095,23078,Mount Clemens,MI,234,Detroit,MI
-48096,23078,Mount Clemens,MI,234,Detroit,MI
-48097,23092,Port Huron,MI,234,Detroit,MI
-48098,23118,Troy,MI,245,Royal Oak,MI
-48099,23097,Royal Oak,MI,245,Royal Oak,MI
-48101,23024,Dearborn,MI,233,Dearborn,MI
-48103,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48104,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48105,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48106,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48107,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48108,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48109,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48110,23076,Monroe,MI,334,Toledo,OH
-48111,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48112,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48113,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48114,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48115,23099,Saline,MI,232,Ann Arbor,MI
-48116,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48117,23076,Monroe,MI,334,Toledo,OH
-48118,23020,Chelsea,MI,232,Ann Arbor,MI
-48120,23024,Dearborn,MI,233,Dearborn,MI
-48121,23024,Dearborn,MI,233,Dearborn,MI
-48122,23024,Dearborn,MI,233,Dearborn,MI
-48123,23024,Dearborn,MI,233,Dearborn,MI
-48124,23024,Dearborn,MI,233,Dearborn,MI
-48125,23024,Dearborn,MI,233,Dearborn,MI
-48126,23024,Dearborn,MI,233,Dearborn,MI
-48127,23034,Garden City,MI,233,Dearborn,MI
-48128,23024,Dearborn,MI,233,Dearborn,MI
-48130,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48131,23076,Monroe,MI,334,Toledo,OH
-48133,36104,Toledo,OH,334,Toledo,OH
-48134,23117,Trenton,MI,233,Dearborn,MI
-48135,23034,Garden City,MI,233,Dearborn,MI
-48136,23034,Garden City,MI,233,Dearborn,MI
-48137,23020,Chelsea,MI,232,Ann Arbor,MI
-48138,23117,Trenton,MI,233,Dearborn,MI
-48139,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48140,36104,Toledo,OH,334,Toledo,OH
-48141,23121,Wayne,MI,232,Ann Arbor,MI
-48143,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48144,36104,Toledo,OH,334,Toledo,OH
-48145,23076,Monroe,MI,334,Toledo,OH
-48146,23124,Wyandotte,MI,233,Dearborn,MI
-48150,23066,Livonia,MI,232,Ann Arbor,MI
-48151,23066,Livonia,MI,232,Ann Arbor,MI
-48152,23066,Livonia,MI,232,Ann Arbor,MI
-48153,23066,Livonia,MI,232,Ann Arbor,MI
-48154,23066,Livonia,MI,232,Ann Arbor,MI
-48157,36104,Toledo,OH,334,Toledo,OH
-48158,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48159,23076,Monroe,MI,334,Toledo,OH
-48160,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48161,23076,Monroe,MI,334,Toledo,OH
-48162,23076,Monroe,MI,334,Toledo,OH
-48164,23117,Trenton,MI,233,Dearborn,MI
-48165,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48166,23076,Monroe,MI,334,Toledo,OH
-48167,23066,Livonia,MI,232,Ann Arbor,MI
-48168,23066,Livonia,MI,232,Ann Arbor,MI
-48169,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48170,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48173,23117,Trenton,MI,233,Dearborn,MI
-48174,23121,Wayne,MI,232,Ann Arbor,MI
-48175,23066,Livonia,MI,232,Ann Arbor,MI
-48176,23099,Saline,MI,232,Ann Arbor,MI
-48177,36104,Toledo,OH,334,Toledo,OH
-48178,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48179,23117,Trenton,MI,233,Dearborn,MI
-48180,23113,Taylor,MI,233,Dearborn,MI
-48182,36104,Toledo,OH,334,Toledo,OH
-48183,23117,Trenton,MI,233,Dearborn,MI
-48184,23121,Wayne,MI,232,Ann Arbor,MI
-48185,23121,Wayne,MI,232,Ann Arbor,MI
-48186,23121,Wayne,MI,232,Ann Arbor,MI
-48187,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48188,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48189,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48190,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48191,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48192,23124,Wyandotte,MI,233,Dearborn,MI
-48193,23124,Wyandotte,MI,233,Dearborn,MI
-48195,23124,Wyandotte,MI,233,Dearborn,MI
-48197,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48198,23007,Ann Arbor,MI,232,Ann Arbor,MI
-48201,23026,Detroit,MI,234,Detroit,MI
-48202,23026,Detroit,MI,234,Detroit,MI
-48203,23026,Detroit,MI,234,Detroit,MI
-48204,23026,Detroit,MI,234,Detroit,MI
-48205,23026,Detroit,MI,234,Detroit,MI
-48206,23026,Detroit,MI,234,Detroit,MI
-48207,23026,Detroit,MI,234,Detroit,MI
-48208,23026,Detroit,MI,234,Detroit,MI
-48209,23026,Detroit,MI,234,Detroit,MI
-48210,23026,Detroit,MI,234,Detroit,MI
-48211,23026,Detroit,MI,234,Detroit,MI
-48212,23026,Detroit,MI,234,Detroit,MI
-48213,23026,Detroit,MI,234,Detroit,MI
-48214,23026,Detroit,MI,234,Detroit,MI
-48215,23026,Detroit,MI,234,Detroit,MI
-48216,23026,Detroit,MI,234,Detroit,MI
-48217,23026,Detroit,MI,234,Detroit,MI
-48218,23124,Wyandotte,MI,233,Dearborn,MI
-48219,23026,Detroit,MI,234,Detroit,MI
-48220,23097,Royal Oak,MI,245,Royal Oak,MI
-48221,23026,Detroit,MI,234,Detroit,MI
-48222,23026,Detroit,MI,234,Detroit,MI
-48223,23026,Detroit,MI,234,Detroit,MI
-48224,23026,Detroit,MI,234,Detroit,MI
-48225,23026,Detroit,MI,234,Detroit,MI
-48226,23026,Detroit,MI,234,Detroit,MI
-48227,23026,Detroit,MI,234,Detroit,MI
-48228,23026,Detroit,MI,234,Detroit,MI
-48229,23124,Wyandotte,MI,233,Dearborn,MI
-48230,23042,Grosse Pointe,MI,234,Detroit,MI
-48231,23026,Detroit,MI,234,Detroit,MI
-48232,23026,Detroit,MI,234,Detroit,MI
-48233,23026,Detroit,MI,234,Detroit,MI
-48234,23026,Detroit,MI,234,Detroit,MI
-48235,23026,Detroit,MI,234,Detroit,MI
-48236,23042,Grosse Pointe,MI,234,Detroit,MI
-48237,23097,Royal Oak,MI,245,Royal Oak,MI
-48238,23026,Detroit,MI,234,Detroit,MI
-48239,23066,Livonia,MI,232,Ann Arbor,MI
-48240,23030,Farmington Hills,MI,232,Ann Arbor,MI
-48242,23121,Wayne,MI,232,Ann Arbor,MI
-48243,23026,Detroit,MI,234,Detroit,MI
-48244,23026,Detroit,MI,234,Detroit,MI
-48255,23026,Detroit,MI,234,Detroit,MI
-48260,23026,Detroit,MI,234,Detroit,MI
-48264,23026,Detroit,MI,234,Detroit,MI
-48265,23026,Detroit,MI,234,Detroit,MI
-48266,23026,Detroit,MI,234,Detroit,MI
-48267,23026,Detroit,MI,234,Detroit,MI
-48268,23026,Detroit,MI,234,Detroit,MI
-48269,23026,Detroit,MI,234,Detroit,MI
-48272,23026,Detroit,MI,234,Detroit,MI
-48275,23026,Detroit,MI,234,Detroit,MI
-48277,23026,Detroit,MI,234,Detroit,MI
-48278,23026,Detroit,MI,234,Detroit,MI
-48279,23026,Detroit,MI,234,Detroit,MI
-48288,23026,Detroit,MI,234,Detroit,MI
-48301,23097,Royal Oak,MI,245,Royal Oak,MI
-48302,23091,Pontiac,MI,244,Pontiac,MI
-48303,23091,Pontiac,MI,244,Pontiac,MI
-48304,23091,Pontiac,MI,244,Pontiac,MI
-48306,23095,Rochester,MI,245,Royal Oak,MI
-48307,23095,Rochester,MI,245,Royal Oak,MI
-48308,23095,Rochester,MI,245,Royal Oak,MI
-48309,23095,Rochester,MI,245,Royal Oak,MI
-48310,23118,Troy,MI,245,Royal Oak,MI
-48311,23119,Warren,MI,234,Detroit,MI
-48312,23119,Warren,MI,234,Detroit,MI
-48313,23078,Mount Clemens,MI,234,Detroit,MI
-48314,23118,Troy,MI,245,Royal Oak,MI
-48315,23078,Mount Clemens,MI,234,Detroit,MI
-48316,23095,Rochester,MI,245,Royal Oak,MI
-48317,23078,Mount Clemens,MI,234,Detroit,MI
-48318,23078,Mount Clemens,MI,234,Detroit,MI
-48320,23091,Pontiac,MI,244,Pontiac,MI
-48321,23091,Pontiac,MI,244,Pontiac,MI
-48322,23097,Royal Oak,MI,245,Royal Oak,MI
-48323,23097,Royal Oak,MI,245,Royal Oak,MI
-48324,23091,Pontiac,MI,244,Pontiac,MI
-48325,23097,Royal Oak,MI,245,Royal Oak,MI
-48326,23091,Pontiac,MI,244,Pontiac,MI
-48327,23091,Pontiac,MI,244,Pontiac,MI
-48328,23091,Pontiac,MI,244,Pontiac,MI
-48329,23091,Pontiac,MI,244,Pontiac,MI
-48330,23091,Pontiac,MI,244,Pontiac,MI
-48331,23097,Royal Oak,MI,245,Royal Oak,MI
-48332,23030,Farmington Hills,MI,232,Ann Arbor,MI
-48333,23097,Royal Oak,MI,245,Royal Oak,MI
-48334,23097,Royal Oak,MI,245,Royal Oak,MI
-48335,23030,Farmington Hills,MI,232,Ann Arbor,MI
-48336,23030,Farmington Hills,MI,232,Ann Arbor,MI
-48340,23091,Pontiac,MI,244,Pontiac,MI
-48341,23091,Pontiac,MI,244,Pontiac,MI
-48342,23091,Pontiac,MI,244,Pontiac,MI
-48343,23091,Pontiac,MI,244,Pontiac,MI
-48346,23091,Pontiac,MI,244,Pontiac,MI
-48347,23091,Pontiac,MI,244,Pontiac,MI
-48348,23091,Pontiac,MI,244,Pontiac,MI
-48350,23091,Pontiac,MI,244,Pontiac,MI
-48353,23051,Howell,MI,232,Ann Arbor,MI
-48356,23075,Milford,MI,244,Pontiac,MI
-48357,23075,Milford,MI,244,Pontiac,MI
-48359,23091,Pontiac,MI,244,Pontiac,MI
-48360,23091,Pontiac,MI,244,Pontiac,MI
-48361,23091,Pontiac,MI,244,Pontiac,MI
-48362,23091,Pontiac,MI,244,Pontiac,MI
-48363,23095,Rochester,MI,245,Royal Oak,MI
-48366,23095,Rochester,MI,245,Royal Oak,MI
-48367,23095,Rochester,MI,245,Royal Oak,MI
-48370,23095,Rochester,MI,245,Royal Oak,MI
-48371,23091,Pontiac,MI,244,Pontiac,MI
-48374,23030,Farmington Hills,MI,232,Ann Arbor,MI
-48375,23030,Farmington Hills,MI,232,Ann Arbor,MI
-48376,23030,Farmington Hills,MI,232,Ann Arbor,MI
-48377,23075,Milford,MI,244,Pontiac,MI
-48380,23075,Milford,MI,244,Pontiac,MI
-48381,23075,Milford,MI,244,Pontiac,MI
-48382,23075,Milford,MI,244,Pontiac,MI
-48383,23075,Milford,MI,244,Pontiac,MI
-48386,23091,Pontiac,MI,244,Pontiac,MI
-48387,23091,Pontiac,MI,244,Pontiac,MI
-48390,23075,Milford,MI,244,Pontiac,MI
-48393,23075,Milford,MI,244,Pontiac,MI
-48397,23119,Warren,MI,234,Detroit,MI
-48401,23092,Port Huron,MI,234,Detroit,MI
-48410,23100,Sandusky,MI,246,Saginaw,MI
-48411,23031,Flint,MI,235,Flint,MI
-48412,23063,Lapeer,MI,235,Flint,MI
-48413,23008,Bad Axe,MI,246,Saginaw,MI
-48414,23086,Owosso,MI,239,Lansing,MI
-48415,23098,Saginaw,MI,246,Saginaw,MI
-48416,23063,Lapeer,MI,235,Flint,MI
-48417,23098,Saginaw,MI,246,Saginaw,MI
-48418,23031,Flint,MI,235,Flint,MI
-48419,23092,Port Huron,MI,234,Detroit,MI
-48420,23031,Flint,MI,235,Flint,MI
-48421,23063,Lapeer,MI,235,Flint,MI
-48422,23092,Port Huron,MI,234,Detroit,MI
-48423,23031,Flint,MI,235,Flint,MI
-48426,23016,Cass City,MI,246,Saginaw,MI
-48427,23025,Deckerville,MI,246,Saginaw,MI
-48428,23063,Lapeer,MI,235,Flint,MI
-48429,23086,Owosso,MI,239,Lansing,MI
-48430,23031,Flint,MI,235,Flint,MI
-48432,23008,Bad Axe,MI,246,Saginaw,MI
-48433,23031,Flint,MI,235,Flint,MI
-48434,23025,Deckerville,MI,246,Saginaw,MI
-48435,23063,Lapeer,MI,235,Flint,MI
-48436,23031,Flint,MI,235,Flint,MI
-48437,23031,Flint,MI,235,Flint,MI
-48438,23031,Flint,MI,235,Flint,MI
-48439,23031,Flint,MI,235,Flint,MI
-48440,23063,Lapeer,MI,235,Flint,MI
-48441,23045,Harbor Beach,MI,246,Saginaw,MI
-48442,23031,Flint,MI,235,Flint,MI
-48444,23063,Lapeer,MI,235,Flint,MI
-48445,23008,Bad Axe,MI,246,Saginaw,MI
-48446,23063,Lapeer,MI,235,Flint,MI
-48449,23031,Flint,MI,235,Flint,MI
-48450,23092,Port Huron,MI,234,Detroit,MI
-48451,23031,Flint,MI,235,Flint,MI
-48453,23071,Marlette,MI,246,Saginaw,MI
-48454,23092,Port Huron,MI,234,Detroit,MI
-48455,23063,Lapeer,MI,235,Flint,MI
-48456,23025,Deckerville,MI,246,Saginaw,MI
-48457,23031,Flint,MI,235,Flint,MI
-48458,23031,Flint,MI,235,Flint,MI
-48460,23031,Flint,MI,235,Flint,MI
-48461,23063,Lapeer,MI,235,Flint,MI
-48462,23091,Pontiac,MI,244,Pontiac,MI
-48463,23031,Flint,MI,235,Flint,MI
-48464,23031,Flint,MI,235,Flint,MI
-48465,23025,Deckerville,MI,246,Saginaw,MI
-48466,23092,Port Huron,MI,234,Detroit,MI
-48467,23008,Bad Axe,MI,246,Saginaw,MI
-48468,23045,Harbor Beach,MI,246,Saginaw,MI
-48469,23092,Port Huron,MI,234,Detroit,MI
-48470,23025,Deckerville,MI,246,Saginaw,MI
-48471,23100,Sandusky,MI,246,Saginaw,MI
-48472,23100,Sandusky,MI,246,Saginaw,MI
-48473,23031,Flint,MI,235,Flint,MI
-48475,23008,Bad Axe,MI,246,Saginaw,MI
-48476,23086,Owosso,MI,239,Lansing,MI
-48480,23031,Flint,MI,235,Flint,MI
-48501,23031,Flint,MI,235,Flint,MI
-48502,23031,Flint,MI,235,Flint,MI
-48503,23031,Flint,MI,235,Flint,MI
-48504,23031,Flint,MI,235,Flint,MI
-48505,23031,Flint,MI,235,Flint,MI
-48506,23031,Flint,MI,235,Flint,MI
-48507,23031,Flint,MI,235,Flint,MI
-48509,23031,Flint,MI,235,Flint,MI
-48519,23031,Flint,MI,235,Flint,MI
-48529,23031,Flint,MI,235,Flint,MI
-48531,23031,Flint,MI,235,Flint,MI
-48532,23031,Flint,MI,235,Flint,MI
-48550,23031,Flint,MI,235,Flint,MI
-48551,23031,Flint,MI,235,Flint,MI
-48552,23031,Flint,MI,235,Flint,MI
-48553,23031,Flint,MI,235,Flint,MI
-48554,23031,Flint,MI,235,Flint,MI
-48555,23031,Flint,MI,235,Flint,MI
-48556,23031,Flint,MI,235,Flint,MI
-48557,23031,Flint,MI,235,Flint,MI
-48601,23098,Saginaw,MI,246,Saginaw,MI
-48602,23098,Saginaw,MI,246,Saginaw,MI
-48603,23098,Saginaw,MI,246,Saginaw,MI
-48604,23098,Saginaw,MI,246,Saginaw,MI
-48605,23098,Saginaw,MI,246,Saginaw,MI
-48606,23098,Saginaw,MI,246,Saginaw,MI
-48607,23098,Saginaw,MI,246,Saginaw,MI
-48608,23098,Saginaw,MI,246,Saginaw,MI
-48609,23098,Saginaw,MI,246,Saginaw,MI
-48610,23122,West Branch,MI,246,Saginaw,MI
-48611,23010,Bay City,MI,246,Saginaw,MI
-48612,23074,Midland,MI,246,Saginaw,MI
-48613,23010,Bay City,MI,246,Saginaw,MI
-48614,23098,Saginaw,MI,246,Saginaw,MI
-48615,23005,Alma,MI,239,Lansing,MI
-48616,23098,Saginaw,MI,246,Saginaw,MI
-48617,23021,Clare,MI,239,Lansing,MI
-48618,23074,Midland,MI,246,Saginaw,MI
-48619,23122,West Branch,MI,246,Saginaw,MI
-48620,23074,Midland,MI,246,Saginaw,MI
-48621,23122,West Branch,MI,246,Saginaw,MI
-48622,23021,Clare,MI,239,Lansing,MI
-48623,23098,Saginaw,MI,246,Saginaw,MI
-48624,23036,Gladwin,MI,246,Saginaw,MI
-48625,23021,Clare,MI,239,Lansing,MI
-48626,23098,Saginaw,MI,246,Saginaw,MI
-48627,23040,Grayling,MI,249,Traverse City,MI
-48628,23074,Midland,MI,246,Saginaw,MI
-48629,23040,Grayling,MI,249,Traverse City,MI
-48630,23040,Grayling,MI,249,Traverse City,MI
-48631,23010,Bay City,MI,246,Saginaw,MI
-48632,23021,Clare,MI,239,Lansing,MI
-48633,23021,Clare,MI,239,Lansing,MI
-48634,23010,Bay City,MI,246,Saginaw,MI
-48635,23112,Tawas City,MI,246,Saginaw,MI
-48636,23122,West Branch,MI,246,Saginaw,MI
-48637,23098,Saginaw,MI,246,Saginaw,MI
-48638,23098,Saginaw,MI,246,Saginaw,MI
-48640,23074,Midland,MI,246,Saginaw,MI
-48641,23074,Midland,MI,246,Saginaw,MI
-48642,23074,Midland,MI,246,Saginaw,MI
-48647,23122,West Branch,MI,246,Saginaw,MI
-48649,23086,Owosso,MI,239,Lansing,MI
-48650,23010,Bay City,MI,246,Saginaw,MI
-48651,23040,Grayling,MI,249,Traverse City,MI
-48652,23010,Bay City,MI,246,Saginaw,MI
-48653,23040,Grayling,MI,249,Traverse City,MI
-48654,23122,West Branch,MI,246,Saginaw,MI
-48655,23098,Saginaw,MI,246,Saginaw,MI
-48656,23122,West Branch,MI,246,Saginaw,MI
-48657,23074,Midland,MI,246,Saginaw,MI
-48658,23110,Standish,MI,246,Saginaw,MI
-48659,23110,Standish,MI,246,Saginaw,MI
-48661,23122,West Branch,MI,246,Saginaw,MI
-48662,23005,Alma,MI,239,Lansing,MI
-48663,23098,Saginaw,MI,246,Saginaw,MI
-48667,23074,Midland,MI,246,Saginaw,MI
-48670,23074,Midland,MI,246,Saginaw,MI
-48674,23074,Midland,MI,246,Saginaw,MI
-48686,23074,Midland,MI,246,Saginaw,MI
-48701,23010,Bay City,MI,246,Saginaw,MI
-48703,23112,Tawas City,MI,246,Saginaw,MI
-48705,23006,Alpena,MI,246,Saginaw,MI
-48706,23010,Bay City,MI,246,Saginaw,MI
-48707,23010,Bay City,MI,246,Saginaw,MI
-48708,23010,Bay City,MI,246,Saginaw,MI
-48710,23010,Bay City,MI,246,Saginaw,MI
-48720,23089,Pigeon,MI,246,Saginaw,MI
-48721,23006,Alpena,MI,246,Saginaw,MI
-48722,23098,Saginaw,MI,246,Saginaw,MI
-48723,23014,Caro,MI,246,Saginaw,MI
-48724,23098,Saginaw,MI,246,Saginaw,MI
-48725,23089,Pigeon,MI,246,Saginaw,MI
-48726,23016,Cass City,MI,246,Saginaw,MI
-48727,23071,Marlette,MI,246,Saginaw,MI
-48728,23122,West Branch,MI,246,Saginaw,MI
-48729,23016,Cass City,MI,246,Saginaw,MI
-48730,23112,Tawas City,MI,246,Saginaw,MI
-48731,23008,Bad Axe,MI,246,Saginaw,MI
-48732,23010,Bay City,MI,246,Saginaw,MI
-48733,23010,Bay City,MI,246,Saginaw,MI
-48734,23098,Saginaw,MI,246,Saginaw,MI
-48735,23016,Cass City,MI,246,Saginaw,MI
-48737,23112,Tawas City,MI,246,Saginaw,MI
-48738,23112,Tawas City,MI,246,Saginaw,MI
-48739,23112,Tawas City,MI,246,Saginaw,MI
-48740,23006,Alpena,MI,246,Saginaw,MI
-48741,23098,Saginaw,MI,246,Saginaw,MI
-48742,23006,Alpena,MI,246,Saginaw,MI
-48743,23112,Tawas City,MI,246,Saginaw,MI
-48744,23098,Saginaw,MI,246,Saginaw,MI
-48745,23006,Alpena,MI,246,Saginaw,MI
-48746,23031,Flint,MI,235,Flint,MI
-48747,23010,Bay City,MI,246,Saginaw,MI
-48748,23112,Tawas City,MI,246,Saginaw,MI
-48749,23110,Standish,MI,246,Saginaw,MI
-48750,23112,Tawas City,MI,246,Saginaw,MI
-48754,23008,Bad Axe,MI,246,Saginaw,MI
-48755,23089,Pigeon,MI,246,Saginaw,MI
-48756,23122,West Branch,MI,246,Saginaw,MI
-48757,23098,Saginaw,MI,246,Saginaw,MI
-48758,23098,Saginaw,MI,246,Saginaw,MI
-48759,23010,Bay City,MI,246,Saginaw,MI
-48760,23071,Marlette,MI,246,Saginaw,MI
-48761,23112,Tawas City,MI,246,Saginaw,MI
-48762,23006,Alpena,MI,246,Saginaw,MI
-48763,23112,Tawas City,MI,246,Saginaw,MI
-48764,23112,Tawas City,MI,246,Saginaw,MI
-48765,23112,Tawas City,MI,246,Saginaw,MI
-48766,23110,Standish,MI,246,Saginaw,MI
-48767,23010,Bay City,MI,246,Saginaw,MI
-48768,23098,Saginaw,MI,246,Saginaw,MI
-48770,23112,Tawas City,MI,246,Saginaw,MI
-48787,23098,Saginaw,MI,246,Saginaw,MI
-48801,23005,Alma,MI,239,Lansing,MI
-48804,23079,Mount Pleasant,MI,239,Lansing,MI
-48805,23062,Lansing,MI,239,Lansing,MI
-48806,23015,Carson City,MI,239,Lansing,MI
-48807,23015,Carson City,MI,239,Lansing,MI
-48808,23062,Lansing,MI,239,Lansing,MI
-48809,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48811,23015,Carson City,MI,239,Lansing,MI
-48812,23005,Alma,MI,239,Lansing,MI
-48813,23018,Charlotte,MI,239,Lansing,MI
-48815,23047,Hastings,MI,236,Grand Rapids,MI
-48816,23051,Howell,MI,232,Ann Arbor,MI
-48817,23086,Owosso,MI,239,Lansing,MI
-48818,23015,Carson City,MI,239,Lansing,MI
-48819,23062,Lansing,MI,239,Lansing,MI
-48820,23062,Lansing,MI,239,Lansing,MI
-48821,23062,Lansing,MI,239,Lansing,MI
-48822,23062,Lansing,MI,239,Lansing,MI
-48823,23062,Lansing,MI,239,Lansing,MI
-48824,23062,Lansing,MI,239,Lansing,MI
-48825,23062,Lansing,MI,239,Lansing,MI
-48826,23062,Lansing,MI,239,Lansing,MI
-48827,23062,Lansing,MI,239,Lansing,MI
-48829,23005,Alma,MI,239,Lansing,MI
-48830,23005,Alma,MI,239,Lansing,MI
-48831,23086,Owosso,MI,239,Lansing,MI
-48832,23005,Alma,MI,239,Lansing,MI
-48833,23108,St. Johns,MI,239,Lansing,MI
-48834,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48835,23062,Lansing,MI,239,Lansing,MI
-48836,23051,Howell,MI,232,Ann Arbor,MI
-48837,23062,Lansing,MI,239,Lansing,MI
-48838,23041,Greenville,MI,236,Grand Rapids,MI
-48840,23062,Lansing,MI,239,Lansing,MI
-48841,23086,Owosso,MI,239,Lansing,MI
-48842,23062,Lansing,MI,239,Lansing,MI
-48843,23051,Howell,MI,232,Ann Arbor,MI
-48844,23051,Howell,MI,232,Ann Arbor,MI
-48845,23015,Carson City,MI,239,Lansing,MI
-48846,23052,Ionia,MI,236,Grand Rapids,MI
-48847,23005,Alma,MI,239,Lansing,MI
-48848,23062,Lansing,MI,239,Lansing,MI
-48849,23047,Hastings,MI,236,Grand Rapids,MI
-48850,23061,Lakeview,MI,236,Grand Rapids,MI
-48851,23052,Ionia,MI,236,Grand Rapids,MI
-48852,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48853,23108,St. Johns,MI,239,Lansing,MI
-48854,23062,Lansing,MI,239,Lansing,MI
-48855,23051,Howell,MI,232,Ann Arbor,MI
-48856,23015,Carson City,MI,239,Lansing,MI
-48857,23086,Owosso,MI,239,Lansing,MI
-48858,23079,Mount Pleasant,MI,239,Lansing,MI
-48859,23079,Mount Pleasant,MI,239,Lansing,MI
-48860,23052,Ionia,MI,236,Grand Rapids,MI
-48861,23062,Lansing,MI,239,Lansing,MI
-48862,23005,Alma,MI,239,Lansing,MI
-48864,23062,Lansing,MI,239,Lansing,MI
-48865,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48866,23086,Owosso,MI,239,Lansing,MI
-48867,23086,Owosso,MI,239,Lansing,MI
-48870,23052,Ionia,MI,236,Grand Rapids,MI
-48871,23015,Carson City,MI,239,Lansing,MI
-48872,23062,Lansing,MI,239,Lansing,MI
-48873,23062,Lansing,MI,239,Lansing,MI
-48874,23015,Carson City,MI,239,Lansing,MI
-48875,23062,Lansing,MI,239,Lansing,MI
-48876,23062,Lansing,MI,239,Lansing,MI
-48877,23005,Alma,MI,239,Lansing,MI
-48878,23079,Mount Pleasant,MI,239,Lansing,MI
-48879,23108,St. Johns,MI,239,Lansing,MI
-48880,23005,Alma,MI,239,Lansing,MI
-48881,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48882,23062,Lansing,MI,239,Lansing,MI
-48883,23005,Alma,MI,239,Lansing,MI
-48884,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48885,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48886,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48887,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48888,23039,Grand Rapids,MI,236,Grand Rapids,MI
-48889,23015,Carson City,MI,239,Lansing,MI
-48890,23062,Lansing,MI,239,Lansing,MI
-48891,23005,Alma,MI,239,Lansing,MI
-48892,23062,Lansing,MI,239,Lansing,MI
-48893,23021,Clare,MI,239,Lansing,MI
-48894,23062,Lansing,MI,239,Lansing,MI
-48895,23062,Lansing,MI,239,Lansing,MI
-48896,23005,Alma,MI,239,Lansing,MI
-48897,23047,Hastings,MI,236,Grand Rapids,MI
-48901,23062,Lansing,MI,239,Lansing,MI
-48906,23062,Lansing,MI,239,Lansing,MI
-48908,23062,Lansing,MI,239,Lansing,MI
-48909,23062,Lansing,MI,239,Lansing,MI
-48910,23062,Lansing,MI,239,Lansing,MI
-48911,23062,Lansing,MI,239,Lansing,MI
-48912,23062,Lansing,MI,239,Lansing,MI
-48913,23062,Lansing,MI,239,Lansing,MI
-48915,23062,Lansing,MI,239,Lansing,MI
-48916,23062,Lansing,MI,239,Lansing,MI
-48917,23062,Lansing,MI,239,Lansing,MI
-48918,23062,Lansing,MI,239,Lansing,MI
-48919,23062,Lansing,MI,239,Lansing,MI
-48922,23062,Lansing,MI,239,Lansing,MI
-48924,23062,Lansing,MI,239,Lansing,MI
-48929,23062,Lansing,MI,239,Lansing,MI
-48930,23062,Lansing,MI,239,Lansing,MI
-48933,23062,Lansing,MI,239,Lansing,MI
-48937,23062,Lansing,MI,239,Lansing,MI
-48951,23062,Lansing,MI,239,Lansing,MI
-48956,23062,Lansing,MI,239,Lansing,MI
-48980,23062,Lansing,MI,239,Lansing,MI
-49001,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49002,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49003,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49004,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49005,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49006,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49007,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49008,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49009,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49010,23004,Allegan,MI,238,Kalamazoo,MI
-49011,23009,Battle Creek,MI,238,Kalamazoo,MI
-49012,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49013,23104,South Haven,MI,248,St. Joseph,MI
-49014,23009,Battle Creek,MI,238,Kalamazoo,MI
-49015,23009,Battle Creek,MI,238,Kalamazoo,MI
-49016,23009,Battle Creek,MI,238,Kalamazoo,MI
-49017,23009,Battle Creek,MI,238,Kalamazoo,MI
-49018,23009,Battle Creek,MI,238,Kalamazoo,MI
-49019,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49020,23009,Battle Creek,MI,238,Kalamazoo,MI
-49021,23009,Battle Creek,MI,238,Kalamazoo,MI
-49022,23109,St. Joseph,MI,248,St. Joseph,MI
-49023,23109,St. Joseph,MI,248,St. Joseph,MI
-49024,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49026,23004,Allegan,MI,238,Kalamazoo,MI
-49027,23104,South Haven,MI,248,St. Joseph,MI
-49028,23022,Coldwater,MI,238,Kalamazoo,MI
-49029,23009,Battle Creek,MI,238,Kalamazoo,MI
-49030,23111,Sturgis,MI,238,Kalamazoo,MI
-49031,23083,Niles,MI,187,South Bend,IN
-49032,23115,Three Rivers,MI,238,Kalamazoo,MI
-49033,23009,Battle Creek,MI,238,Kalamazoo,MI
-49034,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49035,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49036,23022,Coldwater,MI,238,Kalamazoo,MI
-49037,23009,Battle Creek,MI,238,Kalamazoo,MI
-49038,23109,St. Joseph,MI,248,St. Joseph,MI
-49039,23109,St. Joseph,MI,248,St. Joseph,MI
-49040,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49041,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49042,23115,Three Rivers,MI,238,Kalamazoo,MI
-49043,23120,Watervliet,MI,248,St. Joseph,MI
-49045,23087,Paw Paw,MI,238,Kalamazoo,MI
-49046,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49047,23027,Dowagiac,MI,238,Kalamazoo,MI
-49048,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49050,23009,Battle Creek,MI,238,Kalamazoo,MI
-49051,23009,Battle Creek,MI,238,Kalamazoo,MI
-49052,23009,Battle Creek,MI,238,Kalamazoo,MI
-49053,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49055,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49056,23104,South Haven,MI,248,St. Joseph,MI
-49057,23120,Watervliet,MI,248,St. Joseph,MI
-49058,23047,Hastings,MI,236,Grand Rapids,MI
-49060,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49061,23115,Three Rivers,MI,238,Kalamazoo,MI
-49062,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49063,23104,South Haven,MI,248,St. Joseph,MI
-49064,23087,Paw Paw,MI,238,Kalamazoo,MI
-49065,23087,Paw Paw,MI,238,Kalamazoo,MI
-49066,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49067,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49068,23073,Marshall,MI,238,Kalamazoo,MI
-49070,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49071,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49072,23115,Three Rivers,MI,238,Kalamazoo,MI
-49073,23047,Hastings,MI,236,Grand Rapids,MI
-49074,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49075,23115,Three Rivers,MI,238,Kalamazoo,MI
-49076,23018,Charlotte,MI,239,Lansing,MI
-49077,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49078,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49079,23087,Paw Paw,MI,238,Kalamazoo,MI
-49080,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49081,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49082,23022,Coldwater,MI,238,Kalamazoo,MI
-49083,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49084,23109,St. Joseph,MI,248,St. Joseph,MI
-49085,23109,St. Joseph,MI,248,St. Joseph,MI
-49087,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49088,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49089,23009,Battle Creek,MI,238,Kalamazoo,MI
-49090,23104,South Haven,MI,248,St. Joseph,MI
-49091,23111,Sturgis,MI,238,Kalamazoo,MI
-49092,23073,Marshall,MI,238,Kalamazoo,MI
-49093,23115,Three Rivers,MI,238,Kalamazoo,MI
-49094,23022,Coldwater,MI,238,Kalamazoo,MI
-49095,23083,Niles,MI,187,South Bend,IN
-49096,23018,Charlotte,MI,239,Lansing,MI
-49097,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49098,23120,Watervliet,MI,248,St. Joseph,MI
-49099,23111,Sturgis,MI,238,Kalamazoo,MI
-49101,23109,St. Joseph,MI,248,St. Joseph,MI
-49102,23011,Berrien Center,MI,248,St. Joseph,MI
-49103,23109,St. Joseph,MI,248,St. Joseph,MI
-49104,23109,St. Joseph,MI,248,St. Joseph,MI
-49106,23109,St. Joseph,MI,248,St. Joseph,MI
-49107,23083,Niles,MI,187,South Bend,IN
-49111,23109,St. Joseph,MI,248,St. Joseph,MI
-49112,15076,South Bend,IN,187,South Bend,IN
-49113,23083,Niles,MI,187,South Bend,IN
-49115,23109,St. Joseph,MI,248,St. Joseph,MI
-49116,23109,St. Joseph,MI,248,St. Joseph,MI
-49117,15055,Michigan City,IN,181,Gary,IN
-49119,23109,St. Joseph,MI,248,St. Joseph,MI
-49120,23083,Niles,MI,187,South Bend,IN
-49125,23109,St. Joseph,MI,248,St. Joseph,MI
-49126,23109,St. Joseph,MI,248,St. Joseph,MI
-49127,23109,St. Joseph,MI,248,St. Joseph,MI
-49128,15055,Michigan City,IN,181,Gary,IN
-49129,15055,Michigan City,IN,181,Gary,IN
-49130,15024,Elkhart,IN,187,South Bend,IN
-49201,23057,Jackson,MI,232,Ann Arbor,MI
-49202,23057,Jackson,MI,232,Ann Arbor,MI
-49203,23057,Jackson,MI,232,Ann Arbor,MI
-49204,23057,Jackson,MI,232,Ann Arbor,MI
-49220,23057,Jackson,MI,232,Ann Arbor,MI
-49221,23002,Adrian,MI,232,Ann Arbor,MI
-49224,23003,Albion,MI,238,Kalamazoo,MI
-49227,23049,Hillsdale,MI,238,Kalamazoo,MI
-49228,36102,Sylvania,OH,334,Toledo,OH
-49229,23114,Tecumseh,MI,232,Ann Arbor,MI
-49230,23057,Jackson,MI,232,Ann Arbor,MI
-49232,23049,Hillsdale,MI,238,Kalamazoo,MI
-49233,23057,Jackson,MI,232,Ann Arbor,MI
-49234,23057,Jackson,MI,232,Ann Arbor,MI
-49235,23002,Adrian,MI,232,Ann Arbor,MI
-49236,23114,Tecumseh,MI,232,Ann Arbor,MI
-49237,23057,Jackson,MI,232,Ann Arbor,MI
-49238,36102,Sylvania,OH,334,Toledo,OH
-49239,23049,Hillsdale,MI,238,Kalamazoo,MI
-49240,23057,Jackson,MI,232,Ann Arbor,MI
-49241,23057,Jackson,MI,232,Ann Arbor,MI
-49242,23049,Hillsdale,MI,238,Kalamazoo,MI
-49245,23073,Marshall,MI,238,Kalamazoo,MI
-49246,23057,Jackson,MI,232,Ann Arbor,MI
-49247,23002,Adrian,MI,232,Ann Arbor,MI
-49248,23002,Adrian,MI,232,Ann Arbor,MI
-49249,23057,Jackson,MI,232,Ann Arbor,MI
-49250,23049,Hillsdale,MI,238,Kalamazoo,MI
-49251,23062,Lansing,MI,239,Lansing,MI
-49252,23022,Coldwater,MI,238,Kalamazoo,MI
-49253,23002,Adrian,MI,232,Ann Arbor,MI
-49254,23057,Jackson,MI,232,Ann Arbor,MI
-49255,23049,Hillsdale,MI,238,Kalamazoo,MI
-49256,23002,Adrian,MI,232,Ann Arbor,MI
-49257,23057,Jackson,MI,232,Ann Arbor,MI
-49258,23022,Coldwater,MI,238,Kalamazoo,MI
-49259,23057,Jackson,MI,232,Ann Arbor,MI
-49261,23057,Jackson,MI,232,Ann Arbor,MI
-49262,23049,Hillsdale,MI,238,Kalamazoo,MI
-49263,23057,Jackson,MI,232,Ann Arbor,MI
-49264,23062,Lansing,MI,239,Lansing,MI
-49265,23002,Adrian,MI,232,Ann Arbor,MI
-49266,23049,Hillsdale,MI,238,Kalamazoo,MI
-49267,36102,Sylvania,OH,334,Toledo,OH
-49268,23002,Adrian,MI,232,Ann Arbor,MI
-49269,23057,Jackson,MI,232,Ann Arbor,MI
-49270,36104,Toledo,OH,334,Toledo,OH
-49271,23049,Hillsdale,MI,238,Kalamazoo,MI
-49272,23057,Jackson,MI,232,Ann Arbor,MI
-49274,23049,Hillsdale,MI,238,Kalamazoo,MI
-49276,36102,Sylvania,OH,334,Toledo,OH
-49277,23057,Jackson,MI,232,Ann Arbor,MI
-49279,23002,Adrian,MI,232,Ann Arbor,MI
-49281,23057,Jackson,MI,232,Ann Arbor,MI
-49282,23057,Jackson,MI,232,Ann Arbor,MI
-49283,23057,Jackson,MI,232,Ann Arbor,MI
-49284,23062,Lansing,MI,239,Lansing,MI
-49285,23020,Chelsea,MI,232,Ann Arbor,MI
-49286,23114,Tecumseh,MI,232,Ann Arbor,MI
-49287,23114,Tecumseh,MI,232,Ann Arbor,MI
-49288,23002,Adrian,MI,232,Ann Arbor,MI
-49289,23002,Adrian,MI,232,Ann Arbor,MI
-49301,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49302,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49303,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49304,23094,Reed City,MI,236,Grand Rapids,MI
-49305,23012,Big Rapids,MI,236,Grand Rapids,MI
-49306,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49307,23012,Big Rapids,MI,236,Grand Rapids,MI
-49309,23033,Fremont,MI,236,Grand Rapids,MI
-49310,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49311,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49312,23033,Fremont,MI,236,Grand Rapids,MI
-49314,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49315,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49316,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49317,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49318,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49319,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49320,23012,Big Rapids,MI,236,Grand Rapids,MI
-49321,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49322,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49323,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49325,23047,Hastings,MI,236,Grand Rapids,MI
-49326,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49327,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49328,23004,Allegan,MI,238,Kalamazoo,MI
-49329,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49330,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49331,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49332,23079,Mount Pleasant,MI,239,Lansing,MI
-49333,23047,Hastings,MI,236,Grand Rapids,MI
-49335,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49336,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49337,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49338,23012,Big Rapids,MI,236,Grand Rapids,MI
-49339,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49340,23079,Mount Pleasant,MI,239,Lansing,MI
-49341,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49342,23012,Big Rapids,MI,236,Grand Rapids,MI
-49343,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49344,23058,Kalamazoo,MI,238,Kalamazoo,MI
-49345,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49346,23012,Big Rapids,MI,236,Grand Rapids,MI
-49347,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49348,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49349,23033,Fremont,MI,236,Grand Rapids,MI
-49351,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49355,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49356,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49357,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49401,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49402,23094,Reed City,MI,236,Grand Rapids,MI
-49403,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49404,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49405,23067,Ludington,MI,242,Muskegon,MI
-49406,23050,Holland,MI,236,Grand Rapids,MI
-49408,23050,Holland,MI,236,Grand Rapids,MI
-49409,23038,Grand Haven,MI,242,Muskegon,MI
-49410,23069,Manistee,MI,249,Traverse City,MI
-49411,23067,Ludington,MI,242,Muskegon,MI
-49412,23033,Fremont,MI,236,Grand Rapids,MI
-49413,23033,Fremont,MI,236,Grand Rapids,MI
-49415,23081,Muskegon,MI,242,Muskegon,MI
-49416,23050,Holland,MI,236,Grand Rapids,MI
-49417,23038,Grand Haven,MI,242,Muskegon,MI
-49418,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49419,23050,Holland,MI,236,Grand Rapids,MI
-49420,23081,Muskegon,MI,242,Muskegon,MI
-49421,23033,Fremont,MI,236,Grand Rapids,MI
-49422,23050,Holland,MI,236,Grand Rapids,MI
-49423,23050,Holland,MI,236,Grand Rapids,MI
-49424,23050,Holland,MI,236,Grand Rapids,MI
-49425,23081,Muskegon,MI,242,Muskegon,MI
-49426,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49427,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49428,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49429,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49430,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49431,23067,Ludington,MI,242,Muskegon,MI
-49434,23050,Holland,MI,236,Grand Rapids,MI
-49435,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49436,23081,Muskegon,MI,242,Muskegon,MI
-49437,23081,Muskegon,MI,242,Muskegon,MI
-49440,23081,Muskegon,MI,242,Muskegon,MI
-49441,23081,Muskegon,MI,242,Muskegon,MI
-49442,23081,Muskegon,MI,242,Muskegon,MI
-49443,23081,Muskegon,MI,242,Muskegon,MI
-49444,23081,Muskegon,MI,242,Muskegon,MI
-49445,23081,Muskegon,MI,242,Muskegon,MI
-49446,23081,Muskegon,MI,242,Muskegon,MI
-49448,23038,Grand Haven,MI,242,Muskegon,MI
-49449,23067,Ludington,MI,242,Muskegon,MI
-49450,23004,Allegan,MI,238,Kalamazoo,MI
-49451,23081,Muskegon,MI,242,Muskegon,MI
-49452,23081,Muskegon,MI,242,Muskegon,MI
-49453,23050,Holland,MI,236,Grand Rapids,MI
-49454,23067,Ludington,MI,242,Muskegon,MI
-49455,23081,Muskegon,MI,242,Muskegon,MI
-49456,23038,Grand Haven,MI,242,Muskegon,MI
-49457,23081,Muskegon,MI,242,Muskegon,MI
-49458,23067,Ludington,MI,242,Muskegon,MI
-49459,23081,Muskegon,MI,242,Muskegon,MI
-49460,23050,Holland,MI,236,Grand Rapids,MI
-49461,23081,Muskegon,MI,242,Muskegon,MI
-49463,23081,Muskegon,MI,242,Muskegon,MI
-49464,23127,Zeeland,MI,236,Grand Rapids,MI
-49468,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49501,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49502,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49503,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49504,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49505,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49506,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49507,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49508,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49509,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49510,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49512,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49514,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49515,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49516,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49518,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49519,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49523,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49525,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49528,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49530,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49534,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49544,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49546,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49548,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49555,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49560,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49588,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49599,23039,Grand Rapids,MI,236,Grand Rapids,MI
-49601,23013,Cadillac,MI,236,Grand Rapids,MI
-49610,23116,Traverse City,MI,249,Traverse City,MI
-49611,23116,Traverse City,MI,249,Traverse City,MI
-49612,23116,Traverse City,MI,249,Traverse City,MI
-49613,23116,Traverse City,MI,249,Traverse City,MI
-49614,23116,Traverse City,MI,249,Traverse City,MI
-49615,23116,Traverse City,MI,249,Traverse City,MI
-49616,23116,Traverse City,MI,249,Traverse City,MI
-49617,23116,Traverse City,MI,249,Traverse City,MI
-49618,23013,Cadillac,MI,236,Grand Rapids,MI
-49619,23069,Manistee,MI,249,Traverse City,MI
-49620,23116,Traverse City,MI,249,Traverse City,MI
-49621,23116,Traverse City,MI,249,Traverse City,MI
-49622,23116,Traverse City,MI,249,Traverse City,MI
-49623,23094,Reed City,MI,236,Grand Rapids,MI
-49625,23116,Traverse City,MI,249,Traverse City,MI
-49626,23069,Manistee,MI,249,Traverse City,MI
-49627,23116,Traverse City,MI,249,Traverse City,MI
-49628,23032,Frankfort,MI,249,Traverse City,MI
-49629,23116,Traverse City,MI,249,Traverse City,MI
-49630,23116,Traverse City,MI,249,Traverse City,MI
-49631,23094,Reed City,MI,236,Grand Rapids,MI
-49632,23013,Cadillac,MI,236,Grand Rapids,MI
-49633,23116,Traverse City,MI,249,Traverse City,MI
-49634,23069,Manistee,MI,249,Traverse City,MI
-49635,23032,Frankfort,MI,249,Traverse City,MI
-49636,23116,Traverse City,MI,249,Traverse City,MI
-49637,23116,Traverse City,MI,249,Traverse City,MI
-49638,23013,Cadillac,MI,236,Grand Rapids,MI
-49639,23094,Reed City,MI,236,Grand Rapids,MI
-49640,23116,Traverse City,MI,249,Traverse City,MI
-49642,23094,Reed City,MI,236,Grand Rapids,MI
-49643,23116,Traverse City,MI,249,Traverse City,MI
-49644,23069,Manistee,MI,249,Traverse City,MI
-49645,23069,Manistee,MI,249,Traverse City,MI
-49646,23116,Traverse City,MI,249,Traverse City,MI
-49648,23116,Traverse City,MI,249,Traverse City,MI
-49649,23116,Traverse City,MI,249,Traverse City,MI
-49650,23116,Traverse City,MI,249,Traverse City,MI
-49651,23013,Cadillac,MI,236,Grand Rapids,MI
-49653,23116,Traverse City,MI,249,Traverse City,MI
-49654,23116,Traverse City,MI,249,Traverse City,MI
-49655,23013,Cadillac,MI,236,Grand Rapids,MI
-49656,23013,Cadillac,MI,236,Grand Rapids,MI
-49657,23013,Cadillac,MI,236,Grand Rapids,MI
-49659,23116,Traverse City,MI,249,Traverse City,MI
-49660,23069,Manistee,MI,249,Traverse City,MI
-49663,23013,Cadillac,MI,236,Grand Rapids,MI
-49664,23116,Traverse City,MI,249,Traverse City,MI
-49665,23013,Cadillac,MI,236,Grand Rapids,MI
-49666,23116,Traverse City,MI,249,Traverse City,MI
-49667,23013,Cadillac,MI,236,Grand Rapids,MI
-49668,23116,Traverse City,MI,249,Traverse City,MI
-49670,23084,Northport,MI,249,Traverse City,MI
-49673,23116,Traverse City,MI,249,Traverse City,MI
-49674,23084,Northport,MI,249,Traverse City,MI
-49675,23069,Manistee,MI,249,Traverse City,MI
-49676,23116,Traverse City,MI,249,Traverse City,MI
-49677,23094,Reed City,MI,236,Grand Rapids,MI
-49679,23013,Cadillac,MI,236,Grand Rapids,MI
-49680,23116,Traverse City,MI,249,Traverse City,MI
-49682,23116,Traverse City,MI,249,Traverse City,MI
-49683,23116,Traverse City,MI,249,Traverse City,MI
-49684,23116,Traverse City,MI,249,Traverse City,MI
-49685,23116,Traverse City,MI,249,Traverse City,MI
-49686,23116,Traverse City,MI,249,Traverse City,MI
-49688,23013,Cadillac,MI,236,Grand Rapids,MI
-49689,23069,Manistee,MI,249,Traverse City,MI
-49690,23116,Traverse City,MI,249,Traverse City,MI
-49696,23116,Traverse City,MI,249,Traverse City,MI
-49701,23019,Cheboygan,MI,243,Petoskey,MI
-49705,23088,Petoskey,MI,243,Petoskey,MI
-49706,23088,Petoskey,MI,243,Petoskey,MI
-49707,23006,Alpena,MI,246,Saginaw,MI
-49709,23035,Gaylord,MI,243,Petoskey,MI
-49710,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49711,23017,Charlevoix,MI,243,Petoskey,MI
-49712,23088,Petoskey,MI,243,Petoskey,MI
-49713,23088,Petoskey,MI,243,Petoskey,MI
-49715,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49716,23088,Petoskey,MI,243,Petoskey,MI
-49717,23088,Petoskey,MI,243,Petoskey,MI
-49718,23019,Cheboygan,MI,243,Petoskey,MI
-49719,23088,Petoskey,MI,243,Petoskey,MI
-49720,23017,Charlevoix,MI,243,Petoskey,MI
-49721,23019,Cheboygan,MI,243,Petoskey,MI
-49722,23088,Petoskey,MI,243,Petoskey,MI
-49723,23088,Petoskey,MI,243,Petoskey,MI
-49724,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49725,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49726,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49727,23017,Charlevoix,MI,243,Petoskey,MI
-49728,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49729,23017,Charlevoix,MI,243,Petoskey,MI
-49730,23088,Petoskey,MI,243,Petoskey,MI
-49733,23040,Grayling,MI,249,Traverse City,MI
-49734,23035,Gaylord,MI,243,Petoskey,MI
-49735,23035,Gaylord,MI,243,Petoskey,MI
-49736,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49737,23088,Petoskey,MI,243,Petoskey,MI
-49738,23040,Grayling,MI,249,Traverse City,MI
-49739,23040,Grayling,MI,249,Traverse City,MI
-49740,23088,Petoskey,MI,243,Petoskey,MI
-49743,23088,Petoskey,MI,243,Petoskey,MI
-49744,23006,Alpena,MI,246,Saginaw,MI
-49745,23088,Petoskey,MI,243,Petoskey,MI
-49746,23006,Alpena,MI,246,Saginaw,MI
-49747,23006,Alpena,MI,246,Saginaw,MI
-49748,23082,Newberry,MI,240,Marquette,MI
-49749,23088,Petoskey,MI,243,Petoskey,MI
-49751,23035,Gaylord,MI,243,Petoskey,MI
-49752,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49753,23006,Alpena,MI,246,Saginaw,MI
-49755,23088,Petoskey,MI,243,Petoskey,MI
-49756,23035,Gaylord,MI,243,Petoskey,MI
-49757,23088,Petoskey,MI,243,Petoskey,MI
-49759,23088,Petoskey,MI,243,Petoskey,MI
-49760,23088,Petoskey,MI,243,Petoskey,MI
-49761,23019,Cheboygan,MI,243,Petoskey,MI
-49762,23088,Petoskey,MI,243,Petoskey,MI
-49764,23088,Petoskey,MI,243,Petoskey,MI
-49765,23088,Petoskey,MI,243,Petoskey,MI
-49766,23006,Alpena,MI,246,Saginaw,MI
-49768,23082,Newberry,MI,240,Marquette,MI
-49769,23088,Petoskey,MI,243,Petoskey,MI
-49770,23088,Petoskey,MI,243,Petoskey,MI
-49774,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49775,23019,Cheboygan,MI,243,Petoskey,MI
-49776,23006,Alpena,MI,246,Saginaw,MI
-49777,23006,Alpena,MI,246,Saginaw,MI
-49779,23088,Petoskey,MI,243,Petoskey,MI
-49780,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49781,23088,Petoskey,MI,243,Petoskey,MI
-49782,23017,Charlevoix,MI,243,Petoskey,MI
-49783,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49784,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49785,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49786,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49788,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49791,23019,Cheboygan,MI,243,Petoskey,MI
-49792,23088,Petoskey,MI,243,Petoskey,MI
-49793,23101,Sault Ste Marie,MI,243,Petoskey,MI
-49795,23035,Gaylord,MI,243,Petoskey,MI
-49796,23088,Petoskey,MI,243,Petoskey,MI
-49797,23040,Grayling,MI,249,Traverse City,MI
-49799,23088,Petoskey,MI,243,Petoskey,MI
-49801,23053,Iron Mountain,MI,447,Green Bay,WI
-49802,23053,Iron Mountain,MI,447,Green Bay,WI
-49805,23064,Laurium,MI,240,Marquette,MI
-49806,23080,Munising,MI,240,Marquette,MI
-49807,23029,Escanaba,MI,240,Marquette,MI
-49808,23072,Marquette,MI,240,Marquette,MI
-49812,52050,Marinette,WI,447,Green Bay,WI
-49814,23072,Marquette,MI,240,Marquette,MI
-49815,23053,Iron Mountain,MI,447,Green Bay,WI
-49816,23072,Marquette,MI,240,Marquette,MI
-49817,23070,Manistique,MI,240,Marquette,MI
-49818,23029,Escanaba,MI,240,Marquette,MI
-49819,23072,Marquette,MI,240,Marquette,MI
-49820,23070,Manistique,MI,240,Marquette,MI
-49821,52050,Marinette,WI,447,Green Bay,WI
-49822,23072,Marquette,MI,240,Marquette,MI
-49825,23072,Marquette,MI,240,Marquette,MI
-49826,23072,Marquette,MI,240,Marquette,MI
-49827,23088,Petoskey,MI,243,Petoskey,MI
-49829,23029,Escanaba,MI,240,Marquette,MI
-49831,23053,Iron Mountain,MI,447,Green Bay,WI
-49833,23072,Marquette,MI,240,Marquette,MI
-49834,23053,Iron Mountain,MI,447,Green Bay,WI
-49835,23070,Manistique,MI,240,Marquette,MI
-49836,23070,Manistique,MI,240,Marquette,MI
-49837,23029,Escanaba,MI,240,Marquette,MI
-49838,23070,Manistique,MI,240,Marquette,MI
-49839,23080,Munising,MI,240,Marquette,MI
-49840,23070,Manistique,MI,240,Marquette,MI
-49841,23072,Marquette,MI,240,Marquette,MI
-49845,23029,Escanaba,MI,240,Marquette,MI
-49847,23053,Iron Mountain,MI,447,Green Bay,WI
-49848,52050,Marinette,WI,447,Green Bay,WI
-49849,23056,Ishpeming,MI,240,Marquette,MI
-49852,23053,Iron Mountain,MI,447,Green Bay,WI
-49853,23082,Newberry,MI,240,Marquette,MI
-49854,23070,Manistique,MI,240,Marquette,MI
-49855,23072,Marquette,MI,240,Marquette,MI
-49858,52050,Marinette,WI,447,Green Bay,WI
-49861,23072,Marquette,MI,240,Marquette,MI
-49862,23080,Munising,MI,240,Marquette,MI
-49863,52050,Marinette,WI,447,Green Bay,WI
-49864,23029,Escanaba,MI,240,Marquette,MI
-49865,23056,Ishpeming,MI,240,Marquette,MI
-49866,23072,Marquette,MI,240,Marquette,MI
-49868,23082,Newberry,MI,240,Marquette,MI
-49870,23053,Iron Mountain,MI,447,Green Bay,WI
-49871,23072,Marquette,MI,240,Marquette,MI
-49872,23072,Marquette,MI,240,Marquette,MI
-49873,23029,Escanaba,MI,240,Marquette,MI
-49874,23029,Escanaba,MI,240,Marquette,MI
-49876,23053,Iron Mountain,MI,447,Green Bay,WI
-49877,23053,Iron Mountain,MI,447,Green Bay,WI
-49878,23029,Escanaba,MI,240,Marquette,MI
-49879,23072,Marquette,MI,240,Marquette,MI
-49880,23072,Marquette,MI,240,Marquette,MI
-49881,23053,Iron Mountain,MI,447,Green Bay,WI
-49883,23082,Newberry,MI,240,Marquette,MI
-49884,23072,Marquette,MI,240,Marquette,MI
-49885,23072,Marquette,MI,240,Marquette,MI
-49886,23029,Escanaba,MI,240,Marquette,MI
-49887,52050,Marinette,WI,447,Green Bay,WI
-49891,23072,Marquette,MI,240,Marquette,MI
-49892,23053,Iron Mountain,MI,447,Green Bay,WI
-49893,52050,Marinette,WI,447,Green Bay,WI
-49894,23029,Escanaba,MI,240,Marquette,MI
-49895,23072,Marquette,MI,240,Marquette,MI
-49896,23029,Escanaba,MI,240,Marquette,MI
-49901,23064,Laurium,MI,240,Marquette,MI
-49902,23023,Crystal Falls,MI,240,Marquette,MI
-49903,23023,Crystal Falls,MI,240,Marquette,MI
-49905,23044,Hancock,MI,240,Marquette,MI
-49908,23060,L'anse,MI,240,Marquette,MI
-49910,23055,Ironwood,MI,250,Duluth,MN
-49911,23055,Ironwood,MI,250,Duluth,MN
-49912,52070,Phelps,WI,456,Wausau,WI
-49913,23064,Laurium,MI,240,Marquette,MI
-49915,23054,Iron River,MI,240,Marquette,MI
-49916,23044,Hancock,MI,240,Marquette,MI
-49917,23064,Laurium,MI,240,Marquette,MI
-49918,23064,Laurium,MI,240,Marquette,MI
-49919,23060,L'anse,MI,240,Marquette,MI
-49920,23023,Crystal Falls,MI,240,Marquette,MI
-49921,23044,Hancock,MI,240,Marquette,MI
-49922,23044,Hancock,MI,240,Marquette,MI
-49925,23055,Ironwood,MI,250,Duluth,MN
-49927,23054,Iron River,MI,240,Marquette,MI
-49929,23085,Ontonagon,MI,240,Marquette,MI
-49930,23044,Hancock,MI,240,Marquette,MI
-49931,23044,Hancock,MI,240,Marquette,MI
-49934,23064,Laurium,MI,240,Marquette,MI
-49935,23054,Iron River,MI,240,Marquette,MI
-49938,23055,Ironwood,MI,250,Duluth,MN
-49942,23064,Laurium,MI,240,Marquette,MI
-49945,23064,Laurium,MI,240,Marquette,MI
-49946,23060,L'anse,MI,240,Marquette,MI
-49947,23055,Ironwood,MI,250,Duluth,MN
-49948,23060,L'anse,MI,240,Marquette,MI
-49950,23064,Laurium,MI,240,Marquette,MI
-49952,23060,L'anse,MI,240,Marquette,MI
-49953,23085,Ontonagon,MI,240,Marquette,MI
-49955,23044,Hancock,MI,240,Marquette,MI
-49958,23060,L'anse,MI,240,Marquette,MI
-49959,23055,Ironwood,MI,250,Duluth,MN
-49960,23085,Ontonagon,MI,240,Marquette,MI
-49961,23060,L'anse,MI,240,Marquette,MI
-49962,23060,L'anse,MI,240,Marquette,MI
-49963,23044,Hancock,MI,240,Marquette,MI
-49964,23054,Iron River,MI,240,Marquette,MI
-49965,23044,Hancock,MI,240,Marquette,MI
-49967,23060,L'anse,MI,240,Marquette,MI
-49968,23055,Ironwood,MI,250,Duluth,MN
-49969,52070,Phelps,WI,456,Wausau,WI
-49970,23060,L'anse,MI,240,Marquette,MI
-49971,23085,Ontonagon,MI,240,Marquette,MI
-50001,16031,Des Moines,IA,192,Des Moines,IA
-50002,16031,Des Moines,IA,192,Des Moines,IA
-50003,16031,Des Moines,IA,192,Des Moines,IA
-50005,16067,Marshalltown,IA,192,Des Moines,IA
-50006,16055,Iowa Falls,IA,192,Des Moines,IA
-50007,16031,Des Moines,IA,192,Des Moines,IA
-50008,16023,Corydon,IA,192,Des Moines,IA
-50009,16031,Des Moines,IA,192,Des Moines,IA
-50010,16003,Ames,IA,192,Des Moines,IA
-50011,16003,Ames,IA,192,Des Moines,IA
-50012,16003,Ames,IA,192,Des Moines,IA
-50013,16003,Ames,IA,192,Des Moines,IA
-50014,16003,Ames,IA,192,Des Moines,IA
-50020,16005,Atlantic,IA,278,Omaha,NE
-50021,16031,Des Moines,IA,192,Des Moines,IA
-50022,16005,Atlantic,IA,278,Omaha,NE
-50023,16031,Des Moines,IA,192,Des Moines,IA
-50025,16006,Audubon,IA,192,Des Moines,IA
-50026,16031,Des Moines,IA,192,Des Moines,IA
-50027,16082,Oskaloosa,IA,192,Des Moines,IA
-50028,16031,Des Moines,IA,192,Des Moines,IA
-50029,16031,Des Moines,IA,192,Des Moines,IA
-50031,16009,Boone,IA,192,Des Moines,IA
-50032,16031,Des Moines,IA,192,Des Moines,IA
-50033,16031,Des Moines,IA,192,Des Moines,IA
-50034,16109,Webster City,IA,192,Des Moines,IA
-50035,16031,Des Moines,IA,192,Des Moines,IA
-50036,16009,Boone,IA,192,Des Moines,IA
-50037,16009,Boone,IA,192,Des Moines,IA
-50038,16031,Des Moines,IA,192,Des Moines,IA
-50039,16085,Perry,IA,192,Des Moines,IA
-50040,16009,Boone,IA,192,Des Moines,IA
-50041,16055,Iowa Falls,IA,192,Des Moines,IA
-50042,16006,Audubon,IA,192,Des Moines,IA
-50043,16055,Iowa Falls,IA,192,Des Moines,IA
-50044,16059,Knoxville,IA,192,Des Moines,IA
-50046,16031,Des Moines,IA,192,Des Moines,IA
-50047,16031,Des Moines,IA,192,Des Moines,IA
-50048,16031,Des Moines,IA,192,Des Moines,IA
-50049,16031,Des Moines,IA,192,Des Moines,IA
-50050,16056,Jefferson,IA,192,Des Moines,IA
-50051,16067,Marshalltown,IA,192,Des Moines,IA
-50052,16023,Corydon,IA,192,Des Moines,IA
-50054,16031,Des Moines,IA,192,Des Moines,IA
-50055,16003,Ames,IA,192,Des Moines,IA
-50056,16003,Ames,IA,192,Des Moines,IA
-50057,16059,Knoxville,IA,192,Des Moines,IA
-50058,16012,Carroll,IA,192,Des Moines,IA
-50059,16031,Des Moines,IA,192,Des Moines,IA
-50060,16023,Corydon,IA,192,Des Moines,IA
-50061,16031,Des Moines,IA,192,Des Moines,IA
-50062,16031,Des Moines,IA,192,Des Moines,IA
-50063,16031,Des Moines,IA,192,Des Moines,IA
-50064,16009,Boone,IA,192,Des Moines,IA
-50065,16062,Leon,IA,192,Des Moines,IA
-50066,16031,Des Moines,IA,192,Des Moines,IA
-50067,16062,Leon,IA,192,Des Moines,IA
-50068,16031,Des Moines,IA,192,Des Moines,IA
-50069,16031,Des Moines,IA,192,Des Moines,IA
-50070,16031,Des Moines,IA,192,Des Moines,IA
-50071,16068,Mason City,IA,195,Mason City,IA
-50072,16031,Des Moines,IA,192,Des Moines,IA
-50073,16031,Des Moines,IA,192,Des Moines,IA
-50074,16031,Des Moines,IA,192,Des Moines,IA
-50075,16003,Ames,IA,192,Des Moines,IA
-50076,16006,Audubon,IA,192,Des Moines,IA
-50078,16042,Grinnell,IA,192,Des Moines,IA
-50099,16009,Boone,IA,192,Des Moines,IA
-50101,16068,Mason City,IA,195,Mason City,IA
-50102,16003,Ames,IA,192,Des Moines,IA
-50103,16031,Des Moines,IA,192,Des Moines,IA
-50104,16054,Iowa City,IA,194,Iowa City,IA
-50105,16003,Ames,IA,192,Des Moines,IA
-50106,16042,Grinnell,IA,192,Des Moines,IA
-50107,16056,Jefferson,IA,192,Des Moines,IA
-50108,16031,Des Moines,IA,192,Des Moines,IA
-50109,16031,Des Moines,IA,192,Des Moines,IA
-50110,16006,Audubon,IA,192,Des Moines,IA
-50111,16031,Des Moines,IA,192,Des Moines,IA
-50112,16042,Grinnell,IA,192,Des Moines,IA
-50115,16044,Guthrie Center,IA,192,Des Moines,IA
-50116,16059,Knoxville,IA,192,Des Moines,IA
-50117,16006,Audubon,IA,192,Des Moines,IA
-50118,16031,Des Moines,IA,192,Des Moines,IA
-50119,16084,Pella,IA,192,Des Moines,IA
-50120,16067,Marshalltown,IA,192,Des Moines,IA
-50122,16003,Ames,IA,192,Des Moines,IA
-50123,16031,Des Moines,IA,192,Des Moines,IA
-50124,16031,Des Moines,IA,192,Des Moines,IA
-50125,16031,Des Moines,IA,192,Des Moines,IA
-50126,16055,Iowa Falls,IA,192,Des Moines,IA
-50127,16031,Des Moines,IA,192,Des Moines,IA
-50128,16031,Des Moines,IA,192,Des Moines,IA
-50129,16056,Jefferson,IA,192,Des Moines,IA
-50130,16003,Ames,IA,192,Des Moines,IA
-50131,16031,Des Moines,IA,192,Des Moines,IA
-50132,16109,Webster City,IA,192,Des Moines,IA
-50133,16031,Des Moines,IA,192,Des Moines,IA
-50134,16003,Ames,IA,192,Des Moines,IA
-50135,16042,Grinnell,IA,192,Des Moines,IA
-50136,16054,Iowa City,IA,194,Iowa City,IA
-50137,16076,Newton,IA,192,Des Moines,IA
-50138,16059,Knoxville,IA,192,Des Moines,IA
-50139,16031,Des Moines,IA,192,Des Moines,IA
-50140,16062,Leon,IA,192,Des Moines,IA
-50141,16076,Newton,IA,192,Des Moines,IA
-50142,16067,Marshalltown,IA,192,Des Moines,IA
-50143,16084,Pella,IA,192,Des Moines,IA
-50144,16062,Leon,IA,192,Des Moines,IA
-50145,16031,Des Moines,IA,192,Des Moines,IA
-50146,16031,Des Moines,IA,192,Des Moines,IA
-50147,16023,Corydon,IA,192,Des Moines,IA
-50148,16067,Marshalltown,IA,192,Des Moines,IA
-50149,16031,Des Moines,IA,192,Des Moines,IA
-50150,16031,Des Moines,IA,192,Des Moines,IA
-50151,16031,Des Moines,IA,192,Des Moines,IA
-50152,16031,Des Moines,IA,192,Des Moines,IA
-50153,16042,Grinnell,IA,192,Des Moines,IA
-50154,16003,Ames,IA,192,Des Moines,IA
-50155,16031,Des Moines,IA,192,Des Moines,IA
-50156,16031,Des Moines,IA,192,Des Moines,IA
-50157,16042,Grinnell,IA,192,Des Moines,IA
-50158,16067,Marshalltown,IA,192,Des Moines,IA
-50160,16031,Des Moines,IA,192,Des Moines,IA
-50161,16031,Des Moines,IA,192,Des Moines,IA
-50162,16067,Marshalltown,IA,192,Des Moines,IA
-50163,16059,Knoxville,IA,192,Des Moines,IA
-50164,16031,Des Moines,IA,192,Des Moines,IA
-50165,16031,Des Moines,IA,192,Des Moines,IA
-50166,16031,Des Moines,IA,192,Des Moines,IA
-50167,16031,Des Moines,IA,192,Des Moines,IA
-50168,16031,Des Moines,IA,192,Des Moines,IA
-50169,16031,Des Moines,IA,192,Des Moines,IA
-50170,16031,Des Moines,IA,192,Des Moines,IA
-50171,16042,Grinnell,IA,192,Des Moines,IA
-50173,16067,Marshalltown,IA,192,Des Moines,IA
-50174,16081,Osceola,IA,192,Des Moines,IA
-50201,16003,Ames,IA,192,Des Moines,IA
-50206,16003,Ames,IA,192,Des Moines,IA
-50207,16042,Grinnell,IA,192,Des Moines,IA
-50208,16076,Newton,IA,192,Des Moines,IA
-50210,16031,Des Moines,IA,192,Des Moines,IA
-50211,16031,Des Moines,IA,192,Des Moines,IA
-50212,16009,Boone,IA,192,Des Moines,IA
-50213,16081,Osceola,IA,192,Des Moines,IA
-50214,16084,Pella,IA,192,Des Moines,IA
-50216,16031,Des Moines,IA,192,Des Moines,IA
-50217,16056,Jefferson,IA,192,Des Moines,IA
-50218,16031,Des Moines,IA,192,Des Moines,IA
-50219,16084,Pella,IA,192,Des Moines,IA
-50220,16085,Perry,IA,192,Des Moines,IA
-50222,16031,Des Moines,IA,192,Des Moines,IA
-50223,16009,Boone,IA,192,Des Moines,IA
-50225,16031,Des Moines,IA,192,Des Moines,IA
-50226,16031,Des Moines,IA,192,Des Moines,IA
-50227,16055,Iowa Falls,IA,192,Des Moines,IA
-50228,16031,Des Moines,IA,192,Des Moines,IA
-50229,16031,Des Moines,IA,192,Des Moines,IA
-50230,16003,Ames,IA,192,Des Moines,IA
-50231,16003,Ames,IA,192,Des Moines,IA
-50232,16031,Des Moines,IA,192,Des Moines,IA
-50233,16031,Des Moines,IA,192,Des Moines,IA
-50234,16067,Marshalltown,IA,192,Des Moines,IA
-50235,16031,Des Moines,IA,192,Des Moines,IA
-50236,16003,Ames,IA,192,Des Moines,IA
-50237,16031,Des Moines,IA,192,Des Moines,IA
-50238,16031,Des Moines,IA,192,Des Moines,IA
-50239,16003,Ames,IA,192,Des Moines,IA
-50240,16031,Des Moines,IA,192,Des Moines,IA
-50241,16031,Des Moines,IA,192,Des Moines,IA
-50242,16042,Grinnell,IA,192,Des Moines,IA
-50243,16031,Des Moines,IA,192,Des Moines,IA
-50244,16031,Des Moines,IA,192,Des Moines,IA
-50246,16003,Ames,IA,192,Des Moines,IA
-50247,16067,Marshalltown,IA,192,Des Moines,IA
-50248,16003,Ames,IA,192,Des Moines,IA
-50249,16009,Boone,IA,192,Des Moines,IA
-50250,16031,Des Moines,IA,192,Des Moines,IA
-50251,16031,Des Moines,IA,192,Des Moines,IA
-50252,16031,Des Moines,IA,192,Des Moines,IA
-50254,16031,Des Moines,IA,192,Des Moines,IA
-50255,16054,Iowa City,IA,194,Iowa City,IA
-50256,16082,Oskaloosa,IA,192,Des Moines,IA
-50257,16031,Des Moines,IA,192,Des Moines,IA
-50258,16067,Marshalltown,IA,192,Des Moines,IA
-50259,16067,Marshalltown,IA,192,Des Moines,IA
-50261,16031,Des Moines,IA,192,Des Moines,IA
-50262,16031,Des Moines,IA,192,Des Moines,IA
-50263,16031,Des Moines,IA,192,Des Moines,IA
-50264,16031,Des Moines,IA,192,Des Moines,IA
-50265,16031,Des Moines,IA,192,Des Moines,IA
-50266,16031,Des Moines,IA,192,Des Moines,IA
-50268,16054,Iowa City,IA,194,Iowa City,IA
-50269,16067,Marshalltown,IA,192,Des Moines,IA
-50271,16109,Webster City,IA,192,Des Moines,IA
-50272,16031,Des Moines,IA,192,Des Moines,IA
-50273,16031,Des Moines,IA,192,Des Moines,IA
-50274,16005,Atlantic,IA,278,Omaha,NE
-50275,16031,Des Moines,IA,192,Des Moines,IA
-50276,16031,Des Moines,IA,192,Des Moines,IA
-50277,16031,Des Moines,IA,192,Des Moines,IA
-50278,16003,Ames,IA,192,Des Moines,IA
-50301,16031,Des Moines,IA,192,Des Moines,IA
-50302,16031,Des Moines,IA,192,Des Moines,IA
-50303,16031,Des Moines,IA,192,Des Moines,IA
-50304,16031,Des Moines,IA,192,Des Moines,IA
-50305,16031,Des Moines,IA,192,Des Moines,IA
-50306,16031,Des Moines,IA,192,Des Moines,IA
-50307,16031,Des Moines,IA,192,Des Moines,IA
-50308,16031,Des Moines,IA,192,Des Moines,IA
-50309,16031,Des Moines,IA,192,Des Moines,IA
-50310,16031,Des Moines,IA,192,Des Moines,IA
-50311,16031,Des Moines,IA,192,Des Moines,IA
-50312,16031,Des Moines,IA,192,Des Moines,IA
-50313,16031,Des Moines,IA,192,Des Moines,IA
-50314,16031,Des Moines,IA,192,Des Moines,IA
-50315,16031,Des Moines,IA,192,Des Moines,IA
-50316,16031,Des Moines,IA,192,Des Moines,IA
-50317,16031,Des Moines,IA,192,Des Moines,IA
-50318,16031,Des Moines,IA,192,Des Moines,IA
-50319,16031,Des Moines,IA,192,Des Moines,IA
-50320,16031,Des Moines,IA,192,Des Moines,IA
-50321,16031,Des Moines,IA,192,Des Moines,IA
-50322,16031,Des Moines,IA,192,Des Moines,IA
-50323,16031,Des Moines,IA,192,Des Moines,IA
-50324,16031,Des Moines,IA,192,Des Moines,IA
-50325,16031,Des Moines,IA,192,Des Moines,IA
-50327,16031,Des Moines,IA,192,Des Moines,IA
-50328,16031,Des Moines,IA,192,Des Moines,IA
-50329,16031,Des Moines,IA,192,Des Moines,IA
-50330,16031,Des Moines,IA,192,Des Moines,IA
-50331,16031,Des Moines,IA,192,Des Moines,IA
-50332,16031,Des Moines,IA,192,Des Moines,IA
-50333,16031,Des Moines,IA,192,Des Moines,IA
-50334,16031,Des Moines,IA,192,Des Moines,IA
-50335,16031,Des Moines,IA,192,Des Moines,IA
-50336,16031,Des Moines,IA,192,Des Moines,IA
-50339,16031,Des Moines,IA,192,Des Moines,IA
-50340,16031,Des Moines,IA,192,Des Moines,IA
-50359,16031,Des Moines,IA,192,Des Moines,IA
-50360,16031,Des Moines,IA,192,Des Moines,IA
-50361,16031,Des Moines,IA,192,Des Moines,IA
-50362,16031,Des Moines,IA,192,Des Moines,IA
-50363,16031,Des Moines,IA,192,Des Moines,IA
-50364,16031,Des Moines,IA,192,Des Moines,IA
-50367,16031,Des Moines,IA,192,Des Moines,IA
-50368,16031,Des Moines,IA,192,Des Moines,IA
-50369,16031,Des Moines,IA,192,Des Moines,IA
-50380,16031,Des Moines,IA,192,Des Moines,IA
-50381,16031,Des Moines,IA,192,Des Moines,IA
-50391,16031,Des Moines,IA,192,Des Moines,IA
-50392,16031,Des Moines,IA,192,Des Moines,IA
-50393,16031,Des Moines,IA,192,Des Moines,IA
-50394,16031,Des Moines,IA,192,Des Moines,IA
-50395,16031,Des Moines,IA,192,Des Moines,IA
-50396,16031,Des Moines,IA,192,Des Moines,IA
-50398,16031,Des Moines,IA,192,Des Moines,IA
-50401,16068,Mason City,IA,195,Mason City,IA
-50402,16068,Mason City,IA,195,Mason City,IA
-50420,16068,Mason City,IA,195,Mason City,IA
-50421,16068,Mason City,IA,195,Mason City,IA
-50423,16010,Britt,IA,195,Mason City,IA
-50424,16068,Mason City,IA,195,Mason City,IA
-50426,16080,Osage,IA,195,Mason City,IA
-50427,16068,Mason City,IA,195,Mason City,IA
-50428,16068,Mason City,IA,195,Mason City,IA
-50430,16068,Mason City,IA,195,Mason City,IA
-50431,16068,Mason City,IA,195,Mason City,IA
-50432,16068,Mason City,IA,195,Mason City,IA
-50433,16068,Mason City,IA,195,Mason City,IA
-50434,16068,Mason City,IA,195,Mason City,IA
-50435,16017,Charles City,IA,253,Rochester,MN
-50436,16068,Mason City,IA,195,Mason City,IA
-50438,16068,Mason City,IA,195,Mason City,IA
-50439,16068,Mason City,IA,195,Mason City,IA
-50440,16068,Mason City,IA,195,Mason City,IA
-50441,16047,Hampton,IA,195,Mason City,IA
-50444,16068,Mason City,IA,195,Mason City,IA
-50446,16068,Mason City,IA,195,Mason City,IA
-50447,16068,Mason City,IA,195,Mason City,IA
-50448,16068,Mason City,IA,195,Mason City,IA
-50449,16068,Mason City,IA,195,Mason City,IA
-50450,16068,Mason City,IA,195,Mason City,IA
-50451,24016,Blue Earth,MN,251,Minneapolis,MN
-50452,16068,Mason City,IA,195,Mason City,IA
-50453,16068,Mason City,IA,195,Mason City,IA
-50454,16080,Osage,IA,195,Mason City,IA
-50455,16080,Osage,IA,195,Mason City,IA
-50456,16068,Mason City,IA,195,Mason City,IA
-50457,16068,Mason City,IA,195,Mason City,IA
-50458,16068,Mason City,IA,195,Mason City,IA
-50459,16068,Mason City,IA,195,Mason City,IA
-50460,16080,Osage,IA,195,Mason City,IA
-50461,16080,Osage,IA,195,Mason City,IA
-50464,16068,Mason City,IA,195,Mason City,IA
-50465,24016,Blue Earth,MN,251,Minneapolis,MN
-50466,16080,Osage,IA,195,Mason City,IA
-50467,16068,Mason City,IA,195,Mason City,IA
-50468,16068,Mason City,IA,195,Mason City,IA
-50469,16068,Mason City,IA,195,Mason City,IA
-50470,16068,Mason City,IA,195,Mason City,IA
-50471,16068,Mason City,IA,195,Mason City,IA
-50472,16080,Osage,IA,195,Mason City,IA
-50473,16068,Mason City,IA,195,Mason City,IA
-50475,16068,Mason City,IA,195,Mason City,IA
-50476,16080,Osage,IA,195,Mason City,IA
-50477,16068,Mason City,IA,195,Mason City,IA
-50478,16068,Mason City,IA,195,Mason City,IA
-50479,16068,Mason City,IA,195,Mason City,IA
-50480,16068,Mason City,IA,195,Mason City,IA
-50481,16080,Osage,IA,195,Mason City,IA
-50482,16068,Mason City,IA,195,Mason City,IA
-50483,16068,Mason City,IA,195,Mason City,IA
-50484,16068,Mason City,IA,195,Mason City,IA
-50501,16039,Fort Dodge,IA,192,Des Moines,IA
-50510,16101,Storm Lake,IA,196,Sioux City,IA
-50511,16002,Algona,IA,195,Mason City,IA
-50514,24037,Fairmont,MN,251,Minneapolis,MN
-50515,16035,Emmetsburg,IA,195,Mason City,IA
-50516,16039,Fort Dodge,IA,192,Des Moines,IA
-50517,16002,Algona,IA,195,Mason City,IA
-50518,16039,Fort Dodge,IA,192,Des Moines,IA
-50519,16039,Fort Dodge,IA,192,Des Moines,IA
-50520,16051,Humboldt,IA,192,Des Moines,IA
-50521,16039,Fort Dodge,IA,192,Des Moines,IA
-50522,16002,Algona,IA,195,Mason City,IA
-50523,16039,Fort Dodge,IA,192,Des Moines,IA
-50524,16039,Fort Dodge,IA,192,Des Moines,IA
-50525,16020,Clarion,IA,195,Mason City,IA
-50526,16020,Clarion,IA,195,Mason City,IA
-50527,16035,Emmetsburg,IA,195,Mason City,IA
-50528,16035,Emmetsburg,IA,195,Mason City,IA
-50529,16051,Humboldt,IA,192,Des Moines,IA
-50530,16039,Fort Dodge,IA,192,Des Moines,IA
-50531,16036,Estherville,IA,371,Sioux Falls,SD
-50532,16109,Webster City,IA,192,Des Moines,IA
-50533,16039,Fort Dodge,IA,192,Des Moines,IA
-50535,16101,Storm Lake,IA,196,Sioux City,IA
-50536,16035,Emmetsburg,IA,195,Mason City,IA
-50538,16060,Lake City,IA,192,Des Moines,IA
-50539,16036,Estherville,IA,371,Sioux Falls,SD
-50540,16101,Storm Lake,IA,196,Sioux City,IA
-50541,16039,Fort Dodge,IA,192,Des Moines,IA
-50542,16020,Clarion,IA,195,Mason City,IA
-50543,16060,Lake City,IA,192,Des Moines,IA
-50544,16039,Fort Dodge,IA,192,Des Moines,IA
-50545,16039,Fort Dodge,IA,192,Des Moines,IA
-50546,16086,Pocahontas,IA,192,Des Moines,IA
-50548,16051,Humboldt,IA,192,Des Moines,IA
-50551,16060,Lake City,IA,192,Des Moines,IA
-50552,16060,Lake City,IA,192,Des Moines,IA
-50554,16086,Pocahontas,IA,192,Des Moines,IA
-50556,24016,Blue Earth,MN,251,Minneapolis,MN
-50557,16039,Fort Dodge,IA,192,Des Moines,IA
-50558,16039,Fort Dodge,IA,192,Des Moines,IA
-50559,16002,Algona,IA,195,Mason City,IA
-50560,16068,Mason City,IA,195,Mason City,IA
-50561,16092,Sac City,IA,196,Sioux City,IA
-50562,16035,Emmetsburg,IA,195,Mason City,IA
-50563,16039,Fort Dodge,IA,192,Des Moines,IA
-50565,16099,Spencer,IA,371,Sioux Falls,SD
-50566,16039,Fort Dodge,IA,192,Des Moines,IA
-50567,16092,Sac City,IA,196,Sioux City,IA
-50568,16101,Storm Lake,IA,196,Sioux City,IA
-50569,16039,Fort Dodge,IA,192,Des Moines,IA
-50570,16039,Fort Dodge,IA,192,Des Moines,IA
-50571,16086,Pocahontas,IA,192,Des Moines,IA
-50573,16035,Emmetsburg,IA,195,Mason City,IA
-50574,16086,Pocahontas,IA,192,Des Moines,IA
-50575,16060,Lake City,IA,192,Des Moines,IA
-50576,16101,Storm Lake,IA,196,Sioux City,IA
-50577,16039,Fort Dodge,IA,192,Des Moines,IA
-50578,16036,Estherville,IA,371,Sioux Falls,SD
-50579,16060,Lake City,IA,192,Des Moines,IA
-50581,16039,Fort Dodge,IA,192,Des Moines,IA
-50582,16051,Humboldt,IA,192,Des Moines,IA
-50583,16092,Sac City,IA,196,Sioux City,IA
-50585,16099,Spencer,IA,371,Sioux Falls,SD
-50586,16060,Lake City,IA,192,Des Moines,IA
-50588,16101,Storm Lake,IA,196,Sioux City,IA
-50590,16036,Estherville,IA,371,Sioux Falls,SD
-50591,16039,Fort Dodge,IA,192,Des Moines,IA
-50592,16101,Storm Lake,IA,196,Sioux City,IA
-50593,16101,Storm Lake,IA,196,Sioux City,IA
-50594,16039,Fort Dodge,IA,192,Des Moines,IA
-50595,16109,Webster City,IA,192,Des Moines,IA
-50597,16035,Emmetsburg,IA,195,Mason City,IA
-50598,16002,Algona,IA,195,Mason City,IA
-50599,16109,Webster City,IA,192,Des Moines,IA
-50601,16106,Waterloo,IA,197,Waterloo,IA
-50602,16106,Waterloo,IA,197,Waterloo,IA
-50603,16075,New Hampton,IA,253,Rochester,MN
-50604,16106,Waterloo,IA,197,Waterloo,IA
-50605,16068,Mason City,IA,195,Mason City,IA
-50606,16077,Oelwein,IA,197,Waterloo,IA
-50607,16077,Oelwein,IA,197,Waterloo,IA
-50608,16106,Waterloo,IA,197,Waterloo,IA
-50609,16067,Marshalltown,IA,192,Des Moines,IA
-50611,16068,Mason City,IA,195,Mason City,IA
-50612,16106,Waterloo,IA,197,Waterloo,IA
-50613,16013,Cedar Falls,IA,197,Waterloo,IA
-50614,16013,Cedar Falls,IA,197,Waterloo,IA
-50616,16017,Charles City,IA,253,Rochester,MN
-50619,16108,Waverly,IA,197,Waterloo,IA
-50620,16017,Charles City,IA,253,Rochester,MN
-50621,16067,Marshalltown,IA,192,Des Moines,IA
-50622,16106,Waterloo,IA,197,Waterloo,IA
-50623,16106,Waterloo,IA,197,Waterloo,IA
-50624,16013,Cedar Falls,IA,197,Waterloo,IA
-50625,16068,Mason City,IA,195,Mason City,IA
-50626,16106,Waterloo,IA,197,Waterloo,IA
-50627,16033,Eldora,IA,192,Des Moines,IA
-50628,16075,New Hampton,IA,253,Rochester,MN
-50629,16106,Waterloo,IA,197,Waterloo,IA
-50630,16075,New Hampton,IA,253,Rochester,MN
-50631,16106,Waterloo,IA,197,Waterloo,IA
-50632,16067,Marshalltown,IA,192,Des Moines,IA
-50633,16047,Hampton,IA,195,Mason City,IA
-50634,16106,Waterloo,IA,197,Waterloo,IA
-50635,16067,Marshalltown,IA,192,Des Moines,IA
-50636,16068,Mason City,IA,195,Mason City,IA
-50638,16106,Waterloo,IA,197,Waterloo,IA
-50641,16077,Oelwein,IA,197,Waterloo,IA
-50642,16106,Waterloo,IA,197,Waterloo,IA
-50643,16106,Waterloo,IA,197,Waterloo,IA
-50644,16053,Independence,IA,197,Waterloo,IA
-50645,16017,Charles City,IA,253,Rochester,MN
-50647,16106,Waterloo,IA,197,Waterloo,IA
-50648,16106,Waterloo,IA,197,Waterloo,IA
-50649,16068,Mason City,IA,195,Mason City,IA
-50650,16063,Manchester,IA,190,Cedar Rapids,IA
-50651,16106,Waterloo,IA,197,Waterloo,IA
-50652,16067,Marshalltown,IA,192,Des Moines,IA
-50653,16068,Mason City,IA,195,Mason City,IA
-50654,16063,Manchester,IA,190,Cedar Rapids,IA
-50655,16110,West Union,IA,448,La Crosse,WI
-50657,16106,Waterloo,IA,197,Waterloo,IA
-50658,16017,Charles City,IA,253,Rochester,MN
-50659,16075,New Hampton,IA,253,Rochester,MN
-50660,16106,Waterloo,IA,197,Waterloo,IA
-50661,16075,New Hampton,IA,253,Rochester,MN
-50662,16077,Oelwein,IA,197,Waterloo,IA
-50664,16077,Oelwein,IA,197,Waterloo,IA
-50665,16106,Waterloo,IA,197,Waterloo,IA
-50666,16108,Waverly,IA,197,Waterloo,IA
-50667,16106,Waterloo,IA,197,Waterloo,IA
-50668,16106,Waterloo,IA,197,Waterloo,IA
-50669,16106,Waterloo,IA,197,Waterloo,IA
-50670,16108,Waverly,IA,197,Waterloo,IA
-50671,16077,Oelwein,IA,197,Waterloo,IA
-50672,16106,Waterloo,IA,197,Waterloo,IA
-50673,16106,Waterloo,IA,197,Waterloo,IA
-50674,16103,Sumner,IA,197,Waterloo,IA
-50675,16106,Waterloo,IA,197,Waterloo,IA
-50676,16106,Waterloo,IA,197,Waterloo,IA
-50677,16108,Waverly,IA,197,Waterloo,IA
-50680,16106,Waterloo,IA,197,Waterloo,IA
-50681,16106,Waterloo,IA,197,Waterloo,IA
-50682,16053,Independence,IA,197,Waterloo,IA
-50701,16106,Waterloo,IA,197,Waterloo,IA
-50702,16106,Waterloo,IA,197,Waterloo,IA
-50703,16106,Waterloo,IA,197,Waterloo,IA
-50704,16106,Waterloo,IA,197,Waterloo,IA
-50707,16106,Waterloo,IA,197,Waterloo,IA
-50801,16026,Creston,IA,192,Des Moines,IA
-50830,16026,Creston,IA,192,Des Moines,IA
-50831,16031,Des Moines,IA,192,Des Moines,IA
-50833,16022,Corning,IA,192,Des Moines,IA
-50835,16031,Des Moines,IA,192,Des Moines,IA
-50836,16031,Des Moines,IA,192,Des Moines,IA
-50837,16005,Atlantic,IA,278,Omaha,NE
-50839,16089,Red Oak,IA,278,Omaha,NE
-50840,16031,Des Moines,IA,192,Des Moines,IA
-50841,16022,Corning,IA,192,Des Moines,IA
-50842,16026,Creston,IA,192,Des Moines,IA
-50843,16005,Atlantic,IA,278,Omaha,NE
-50845,16031,Des Moines,IA,192,Des Moines,IA
-50846,16041,Greenfield,IA,192,Des Moines,IA
-50847,16089,Red Oak,IA,278,Omaha,NE
-50848,16022,Corning,IA,192,Des Moines,IA
-50849,16041,Greenfield,IA,192,Des Moines,IA
-50851,16022,Corning,IA,192,Des Moines,IA
-50853,16005,Atlantic,IA,278,Omaha,NE
-50854,16031,Des Moines,IA,192,Des Moines,IA
-50857,16089,Red Oak,IA,278,Omaha,NE
-50858,16026,Creston,IA,192,Des Moines,IA
-50859,16041,Greenfield,IA,192,Des Moines,IA
-50860,16031,Des Moines,IA,192,Des Moines,IA
-50861,16031,Des Moines,IA,192,Des Moines,IA
-50862,16031,Des Moines,IA,192,Des Moines,IA
-50863,16031,Des Moines,IA,192,Des Moines,IA
-50864,16089,Red Oak,IA,278,Omaha,NE
-50936,16031,Des Moines,IA,192,Des Moines,IA
-50940,16031,Des Moines,IA,192,Des Moines,IA
-50947,16031,Des Moines,IA,192,Des Moines,IA
-50950,16031,Des Moines,IA,192,Des Moines,IA
-50980,16031,Des Moines,IA,192,Des Moines,IA
-50981,16031,Des Moines,IA,192,Des Moines,IA
-50982,16031,Des Moines,IA,192,Des Moines,IA
-50983,16031,Des Moines,IA,192,Des Moines,IA
-51001,16098,Sioux City,IA,196,Sioux City,IA
-51002,16101,Storm Lake,IA,196,Sioux City,IA
-51003,16079,Orange City,IA,196,Sioux City,IA
-51004,16098,Sioux City,IA,196,Sioux City,IA
-51005,16018,Cherokee,IA,196,Sioux City,IA
-51006,16052,Ida Grove,IA,196,Sioux City,IA
-51007,16098,Sioux City,IA,196,Sioux City,IA
-51008,16061,Le Mars,IA,196,Sioux City,IA
-51009,16018,Cherokee,IA,196,Sioux City,IA
-51010,16078,Onawa,IA,278,Omaha,NE
-51011,16050,Hawarden,IA,371,Sioux Falls,SD
-51012,16018,Cherokee,IA,196,Sioux City,IA
-51014,16018,Cherokee,IA,196,Sioux City,IA
-51015,16098,Sioux City,IA,196,Sioux City,IA
-51016,16098,Sioux City,IA,196,Sioux City,IA
-51018,16098,Sioux City,IA,196,Sioux City,IA
-51019,16098,Sioux City,IA,196,Sioux City,IA
-51020,16101,Storm Lake,IA,196,Sioux City,IA
-51022,16079,Orange City,IA,196,Sioux City,IA
-51023,16050,Hawarden,IA,371,Sioux Falls,SD
-51024,16098,Sioux City,IA,196,Sioux City,IA
-51025,16098,Sioux City,IA,196,Sioux City,IA
-51026,16098,Sioux City,IA,196,Sioux City,IA
-51027,16098,Sioux City,IA,196,Sioux City,IA
-51028,16098,Sioux City,IA,196,Sioux City,IA
-51029,16018,Cherokee,IA,196,Sioux City,IA
-51030,16098,Sioux City,IA,196,Sioux City,IA
-51031,16061,Le Mars,IA,196,Sioux City,IA
-51033,16099,Spencer,IA,371,Sioux Falls,SD
-51034,16098,Sioux City,IA,196,Sioux City,IA
-51035,16061,Le Mars,IA,196,Sioux City,IA
-51036,16079,Orange City,IA,196,Sioux City,IA
-51037,16018,Cherokee,IA,196,Sioux City,IA
-51038,16098,Sioux City,IA,196,Sioux City,IA
-51039,16098,Sioux City,IA,196,Sioux City,IA
-51040,16078,Onawa,IA,278,Omaha,NE
-51041,16079,Orange City,IA,196,Sioux City,IA
-51044,16098,Sioux City,IA,196,Sioux City,IA
-51045,16061,Le Mars,IA,196,Sioux City,IA
-51046,16088,Primghar,IA,196,Sioux City,IA
-51047,16099,Spencer,IA,371,Sioux Falls,SD
-51048,16018,Cherokee,IA,196,Sioux City,IA
-51049,16018,Cherokee,IA,196,Sioux City,IA
-51050,16061,Le Mars,IA,196,Sioux City,IA
-51051,16078,Onawa,IA,278,Omaha,NE
-51052,16098,Sioux City,IA,196,Sioux City,IA
-51053,16101,Storm Lake,IA,196,Sioux City,IA
-51054,16098,Sioux City,IA,196,Sioux City,IA
-51055,16078,Onawa,IA,278,Omaha,NE
-51056,16098,Sioux City,IA,196,Sioux City,IA
-51058,16088,Primghar,IA,196,Sioux City,IA
-51060,16078,Onawa,IA,278,Omaha,NE
-51061,16098,Sioux City,IA,196,Sioux City,IA
-51062,16098,Sioux City,IA,196,Sioux City,IA
-51063,16078,Onawa,IA,278,Omaha,NE
-51101,16098,Sioux City,IA,196,Sioux City,IA
-51102,16098,Sioux City,IA,196,Sioux City,IA
-51103,16098,Sioux City,IA,196,Sioux City,IA
-51104,16098,Sioux City,IA,196,Sioux City,IA
-51105,16098,Sioux City,IA,196,Sioux City,IA
-51106,16098,Sioux City,IA,196,Sioux City,IA
-51108,16098,Sioux City,IA,196,Sioux City,IA
-51109,16098,Sioux City,IA,196,Sioux City,IA
-51111,16098,Sioux City,IA,196,Sioux City,IA
-51201,16093,Sheldon,IA,196,Sioux City,IA
-51230,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51231,16088,Primghar,IA,196,Sioux City,IA
-51232,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51234,16093,Sheldon,IA,196,Sioux City,IA
-51235,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51237,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51238,16079,Orange City,IA,196,Sioux City,IA
-51239,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51240,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51241,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51242,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51243,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51244,16093,Sheldon,IA,196,Sioux City,IA
-51245,16088,Primghar,IA,196,Sioux City,IA
-51246,43039,Sioux Falls,SD,371,Sioux Falls,SD
-51247,16091,Rock Valley,IA,371,Sioux Falls,SD
-51248,16093,Sheldon,IA,196,Sioux City,IA
-51249,16095,Sibley,IA,371,Sioux Falls,SD
-51250,16097,Sioux Center,IA,196,Sioux City,IA
-51301,16099,Spencer,IA,371,Sioux Falls,SD
-51331,16100,Spirit Lake,IA,371,Sioux Falls,SD
-51333,16099,Spencer,IA,371,Sioux Falls,SD
-51334,16036,Estherville,IA,371,Sioux Falls,SD
-51338,16099,Spencer,IA,371,Sioux Falls,SD
-51340,16099,Spencer,IA,371,Sioux Falls,SD
-51341,16099,Spencer,IA,371,Sioux Falls,SD
-51342,16036,Estherville,IA,371,Sioux Falls,SD
-51343,16099,Spencer,IA,371,Sioux Falls,SD
-51345,16095,Sibley,IA,371,Sioux Falls,SD
-51346,16099,Spencer,IA,371,Sioux Falls,SD
-51347,16100,Spirit Lake,IA,371,Sioux Falls,SD
-51350,16095,Sibley,IA,371,Sioux Falls,SD
-51351,16100,Spirit Lake,IA,371,Sioux Falls,SD
-51354,16095,Sibley,IA,371,Sioux Falls,SD
-51355,16100,Spirit Lake,IA,371,Sioux Falls,SD
-51357,16099,Spencer,IA,371,Sioux Falls,SD
-51358,16099,Spencer,IA,371,Sioux Falls,SD
-51360,16100,Spirit Lake,IA,371,Sioux Falls,SD
-51363,16100,Spirit Lake,IA,371,Sioux Falls,SD
-51364,16099,Spencer,IA,371,Sioux Falls,SD
-51365,16036,Estherville,IA,371,Sioux Falls,SD
-51366,16099,Spencer,IA,371,Sioux Falls,SD
-51401,16012,Carroll,IA,192,Des Moines,IA
-51430,16012,Carroll,IA,192,Des Moines,IA
-51431,16052,Ida Grove,IA,196,Sioux City,IA
-51432,16064,Manning,IA,278,Omaha,NE
-51433,16060,Lake City,IA,192,Des Moines,IA
-51436,16012,Carroll,IA,192,Des Moines,IA
-51439,16030,Denison,IA,278,Omaha,NE
-51440,16012,Carroll,IA,192,Des Moines,IA
-51441,16030,Denison,IA,278,Omaha,NE
-51442,16030,Denison,IA,278,Omaha,NE
-51443,16012,Carroll,IA,192,Des Moines,IA
-51444,16012,Carroll,IA,192,Des Moines,IA
-51445,16052,Ida Grove,IA,196,Sioux City,IA
-51446,16048,Harlan,IA,278,Omaha,NE
-51447,16048,Harlan,IA,278,Omaha,NE
-51448,16030,Denison,IA,278,Omaha,NE
-51449,16060,Lake City,IA,192,Des Moines,IA
-51450,16060,Lake City,IA,192,Des Moines,IA
-51451,16060,Lake City,IA,192,Des Moines,IA
-51452,16012,Carroll,IA,192,Des Moines,IA
-51453,16060,Lake City,IA,192,Des Moines,IA
-51454,16064,Manning,IA,278,Omaha,NE
-51455,16064,Manning,IA,278,Omaha,NE
-51458,16052,Ida Grove,IA,196,Sioux City,IA
-51459,16012,Carroll,IA,192,Des Moines,IA
-51460,16030,Denison,IA,278,Omaha,NE
-51461,16030,Denison,IA,278,Omaha,NE
-51462,16056,Jefferson,IA,192,Des Moines,IA
-51463,16012,Carroll,IA,192,Des Moines,IA
-51465,16030,Denison,IA,278,Omaha,NE
-51466,16060,Lake City,IA,192,Des Moines,IA
-51467,16012,Carroll,IA,192,Des Moines,IA
-51501,16024,Council Bluffs,IA,278,Omaha,NE
-51502,16024,Council Bluffs,IA,278,Omaha,NE
-51503,16024,Council Bluffs,IA,278,Omaha,NE
-51510,28056,Omaha,NE,278,Omaha,NE
-51520,16030,Denison,IA,278,Omaha,NE
-51521,16048,Harlan,IA,278,Omaha,NE
-51523,16078,Onawa,IA,278,Omaha,NE
-51525,16024,Council Bluffs,IA,278,Omaha,NE
-51526,16024,Council Bluffs,IA,278,Omaha,NE
-51527,16048,Harlan,IA,278,Omaha,NE
-51528,16030,Denison,IA,278,Omaha,NE
-51529,16069,Missouri Valley,IA,278,Omaha,NE
-51530,16048,Harlan,IA,278,Omaha,NE
-51531,16048,Harlan,IA,278,Omaha,NE
-51532,16089,Red Oak,IA,278,Omaha,NE
-51533,16089,Red Oak,IA,278,Omaha,NE
-51534,16024,Council Bluffs,IA,278,Omaha,NE
-51535,16005,Atlantic,IA,278,Omaha,NE
-51536,16024,Council Bluffs,IA,278,Omaha,NE
-51537,16048,Harlan,IA,278,Omaha,NE
-51540,16089,Red Oak,IA,278,Omaha,NE
-51541,16089,Red Oak,IA,278,Omaha,NE
-51542,16024,Council Bluffs,IA,278,Omaha,NE
-51543,16048,Harlan,IA,278,Omaha,NE
-51544,16005,Atlantic,IA,278,Omaha,NE
-51545,16078,Onawa,IA,278,Omaha,NE
-51546,16069,Missouri Valley,IA,278,Omaha,NE
-51548,16024,Council Bluffs,IA,278,Omaha,NE
-51549,16024,Council Bluffs,IA,278,Omaha,NE
-51550,16069,Missouri Valley,IA,278,Omaha,NE
-51551,16024,Council Bluffs,IA,278,Omaha,NE
-51552,16005,Atlantic,IA,278,Omaha,NE
-51553,16024,Council Bluffs,IA,278,Omaha,NE
-51554,16024,Council Bluffs,IA,278,Omaha,NE
-51555,16069,Missouri Valley,IA,278,Omaha,NE
-51556,16069,Missouri Valley,IA,278,Omaha,NE
-51557,16069,Missouri Valley,IA,278,Omaha,NE
-51558,16078,Onawa,IA,278,Omaha,NE
-51559,16024,Council Bluffs,IA,278,Omaha,NE
-51560,16024,Council Bluffs,IA,278,Omaha,NE
-51561,16024,Council Bluffs,IA,278,Omaha,NE
-51562,16048,Harlan,IA,278,Omaha,NE
-51563,16024,Council Bluffs,IA,278,Omaha,NE
-51564,16069,Missouri Valley,IA,278,Omaha,NE
-51565,16024,Council Bluffs,IA,278,Omaha,NE
-51566,16089,Red Oak,IA,278,Omaha,NE
-51570,16024,Council Bluffs,IA,278,Omaha,NE
-51571,16024,Council Bluffs,IA,278,Omaha,NE
-51572,16078,Onawa,IA,278,Omaha,NE
-51573,16089,Red Oak,IA,278,Omaha,NE
-51575,16024,Council Bluffs,IA,278,Omaha,NE
-51576,16024,Council Bluffs,IA,278,Omaha,NE
-51577,16005,Atlantic,IA,278,Omaha,NE
-51578,16048,Harlan,IA,278,Omaha,NE
-51579,16069,Missouri Valley,IA,278,Omaha,NE
-51591,16089,Red Oak,IA,278,Omaha,NE
-51593,16048,Harlan,IA,278,Omaha,NE
-51601,16094,Shenandoah,IA,278,Omaha,NE
-51603,16094,Shenandoah,IA,278,Omaha,NE
-51630,16094,Shenandoah,IA,278,Omaha,NE
-51631,16019,Clarinda,IA,278,Omaha,NE
-51632,16019,Clarinda,IA,278,Omaha,NE
-51636,16094,Shenandoah,IA,278,Omaha,NE
-51637,16019,Clarinda,IA,278,Omaha,NE
-51638,16094,Shenandoah,IA,278,Omaha,NE
-51639,16094,Shenandoah,IA,278,Omaha,NE
-51640,16046,Hamburg,IA,278,Omaha,NE
-51645,16094,Shenandoah,IA,278,Omaha,NE
-51646,16019,Clarinda,IA,278,Omaha,NE
-51647,16094,Shenandoah,IA,278,Omaha,NE
-51648,16046,Hamburg,IA,278,Omaha,NE
-51649,16046,Hamburg,IA,278,Omaha,NE
-51650,16046,Hamburg,IA,278,Omaha,NE
-51651,16019,Clarinda,IA,278,Omaha,NE
-51652,16046,Hamburg,IA,278,Omaha,NE
-51653,16046,Hamburg,IA,278,Omaha,NE
-51654,16046,Hamburg,IA,278,Omaha,NE
-51656,16019,Clarinda,IA,278,Omaha,NE
-52001,16032,Dubuque,IA,193,Dubuque,IA
-52002,16032,Dubuque,IA,193,Dubuque,IA
-52003,16032,Dubuque,IA,193,Dubuque,IA
-52004,16032,Dubuque,IA,193,Dubuque,IA
-52030,16032,Dubuque,IA,193,Dubuque,IA
-52031,16032,Dubuque,IA,193,Dubuque,IA
-52032,16032,Dubuque,IA,193,Dubuque,IA
-52033,16032,Dubuque,IA,193,Dubuque,IA
-52035,16032,Dubuque,IA,193,Dubuque,IA
-52036,16063,Manchester,IA,190,Cedar Rapids,IA
-52037,16065,Maquoketa,IA,191,Davenport,IA
-52038,16063,Manchester,IA,190,Cedar Rapids,IA
-52039,16032,Dubuque,IA,193,Dubuque,IA
-52040,16032,Dubuque,IA,193,Dubuque,IA
-52041,16063,Manchester,IA,190,Cedar Rapids,IA
-52042,16063,Manchester,IA,190,Cedar Rapids,IA
-52043,16034,Elkader,IA,190,Cedar Rapids,IA
-52044,16045,Guttenberg,IA,193,Dubuque,IA
-52045,16032,Dubuque,IA,193,Dubuque,IA
-52046,16032,Dubuque,IA,193,Dubuque,IA
-52047,52075,Prairie Du Chien,WI,448,La Crosse,WI
-52048,16045,Guttenberg,IA,193,Dubuque,IA
-52049,16045,Guttenberg,IA,193,Dubuque,IA
-52050,16063,Manchester,IA,190,Cedar Rapids,IA
-52052,16045,Guttenberg,IA,193,Dubuque,IA
-52053,16032,Dubuque,IA,193,Dubuque,IA
-52054,16032,Dubuque,IA,193,Dubuque,IA
-52056,16032,Dubuque,IA,193,Dubuque,IA
-52057,16063,Manchester,IA,190,Cedar Rapids,IA
-52060,16065,Maquoketa,IA,191,Davenport,IA
-52064,16021,Clinton,IA,191,Davenport,IA
-52065,16032,Dubuque,IA,193,Dubuque,IA
-52066,16045,Guttenberg,IA,193,Dubuque,IA
-52068,16032,Dubuque,IA,193,Dubuque,IA
-52069,16021,Clinton,IA,191,Davenport,IA
-52070,16021,Clinton,IA,191,Davenport,IA
-52071,16032,Dubuque,IA,193,Dubuque,IA
-52072,16034,Elkader,IA,190,Cedar Rapids,IA
-52073,16032,Dubuque,IA,193,Dubuque,IA
-52074,16032,Dubuque,IA,193,Dubuque,IA
-52075,16032,Dubuque,IA,193,Dubuque,IA
-52076,16063,Manchester,IA,190,Cedar Rapids,IA
-52077,16034,Elkader,IA,190,Cedar Rapids,IA
-52078,16032,Dubuque,IA,193,Dubuque,IA
-52079,16032,Dubuque,IA,193,Dubuque,IA
-52099,16032,Dubuque,IA,193,Dubuque,IA
-52101,16029,Decorah,IA,448,La Crosse,WI
-52132,16029,Decorah,IA,448,La Crosse,WI
-52133,16110,West Union,IA,448,La Crosse,WI
-52134,24101,Rochester,MN,253,Rochester,MN
-52135,16110,West Union,IA,448,La Crosse,WI
-52136,16025,Cresco,IA,253,Rochester,MN
-52140,52045,La Crosse,WI,448,La Crosse,WI
-52141,16110,West Union,IA,448,La Crosse,WI
-52142,16110,West Union,IA,448,La Crosse,WI
-52144,16029,Decorah,IA,448,La Crosse,WI
-52146,52045,La Crosse,WI,448,La Crosse,WI
-52147,16110,West Union,IA,448,La Crosse,WI
-52149,16029,Decorah,IA,448,La Crosse,WI
-52151,52045,La Crosse,WI,448,La Crosse,WI
-52154,16075,New Hampton,IA,253,Rochester,MN
-52155,16025,Cresco,IA,253,Rochester,MN
-52156,52045,La Crosse,WI,448,La Crosse,WI
-52157,52075,Prairie Du Chien,WI,448,La Crosse,WI
-52158,52075,Prairie Du Chien,WI,448,La Crosse,WI
-52159,52045,La Crosse,WI,448,La Crosse,WI
-52160,52045,La Crosse,WI,448,La Crosse,WI
-52161,16029,Decorah,IA,448,La Crosse,WI
-52162,52045,La Crosse,WI,448,La Crosse,WI
-52163,16025,Cresco,IA,253,Rochester,MN
-52164,16110,West Union,IA,448,La Crosse,WI
-52165,16029,Decorah,IA,448,La Crosse,WI
-52166,16110,West Union,IA,448,La Crosse,WI
-52168,16029,Decorah,IA,448,La Crosse,WI
-52169,16110,West Union,IA,448,La Crosse,WI
-52170,52045,La Crosse,WI,448,La Crosse,WI
-52171,16075,New Hampton,IA,253,Rochester,MN
-52172,16107,Waukon,IA,448,La Crosse,WI
-52175,16110,West Union,IA,448,La Crosse,WI
-52201,16054,Iowa City,IA,194,Iowa City,IA
-52202,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52203,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52204,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52205,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52206,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52207,16065,Maquoketa,IA,191,Davenport,IA
-52208,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52209,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52210,16106,Waterloo,IA,197,Waterloo,IA
-52211,16042,Grinnell,IA,192,Des Moines,IA
-52212,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52213,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52214,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52215,16067,Marshalltown,IA,192,Des Moines,IA
-52216,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52217,16106,Waterloo,IA,197,Waterloo,IA
-52218,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52219,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52220,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52221,16042,Grinnell,IA,192,Des Moines,IA
-52222,16042,Grinnell,IA,192,Des Moines,IA
-52223,16063,Manchester,IA,190,Cedar Rapids,IA
-52224,16106,Waterloo,IA,197,Waterloo,IA
-52225,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52227,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52228,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52229,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52231,16054,Iowa City,IA,194,Iowa City,IA
-52232,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52233,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52235,16054,Iowa City,IA,194,Iowa City,IA
-52236,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52237,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52240,16054,Iowa City,IA,194,Iowa City,IA
-52241,16054,Iowa City,IA,194,Iowa City,IA
-52242,16054,Iowa City,IA,194,Iowa City,IA
-52243,16054,Iowa City,IA,194,Iowa City,IA
-52244,16054,Iowa City,IA,194,Iowa City,IA
-52245,16054,Iowa City,IA,194,Iowa City,IA
-52246,16054,Iowa City,IA,194,Iowa City,IA
-52247,16054,Iowa City,IA,194,Iowa City,IA
-52248,16054,Iowa City,IA,194,Iowa City,IA
-52249,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52251,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52252,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52253,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52254,16065,Maquoketa,IA,191,Davenport,IA
-52255,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52257,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52301,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52302,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52305,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52306,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52307,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52308,16054,Iowa City,IA,194,Iowa City,IA
-52309,16065,Maquoketa,IA,191,Davenport,IA
-52310,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52312,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52313,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52314,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52315,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52316,16054,Iowa City,IA,194,Iowa City,IA
-52317,16054,Iowa City,IA,194,Iowa City,IA
-52318,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52320,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52321,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52322,16054,Iowa City,IA,194,Iowa City,IA
-52323,16065,Maquoketa,IA,191,Davenport,IA
-52324,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52325,16054,Iowa City,IA,194,Iowa City,IA
-52326,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52327,16054,Iowa City,IA,194,Iowa City,IA
-52328,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52329,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52330,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52332,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52333,16054,Iowa City,IA,194,Iowa City,IA
-52334,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52335,16054,Iowa City,IA,194,Iowa City,IA
-52336,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52337,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52338,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52339,16067,Marshalltown,IA,192,Des Moines,IA
-52340,16054,Iowa City,IA,194,Iowa City,IA
-52341,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52342,16067,Marshalltown,IA,192,Des Moines,IA
-52344,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52345,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52346,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52347,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52348,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52349,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52351,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52352,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52353,16105,Washington,IA,194,Iowa City,IA
-52354,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52355,16054,Iowa City,IA,194,Iowa City,IA
-52356,16054,Iowa City,IA,194,Iowa City,IA
-52358,16054,Iowa City,IA,194,Iowa City,IA
-52359,16054,Iowa City,IA,194,Iowa City,IA
-52361,16054,Iowa City,IA,194,Iowa City,IA
-52362,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52401,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52402,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52403,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52404,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52405,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52406,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52407,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52408,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52409,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52410,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52411,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52497,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52498,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52499,16014,Cedar Rapids,IA,190,Cedar Rapids,IA
-52501,16083,Ottumwa,IA,194,Iowa City,IA
-52530,16083,Ottumwa,IA,194,Iowa City,IA
-52531,16001,Albia,IA,192,Des Moines,IA
-52533,16037,Fairfield,IA,194,Iowa City,IA
-52534,16082,Oskaloosa,IA,192,Des Moines,IA
-52535,16037,Fairfield,IA,194,Iowa City,IA
-52536,16083,Ottumwa,IA,194,Iowa City,IA
-52537,16008,Bloomfield,IA,192,Des Moines,IA
-52540,16105,Washington,IA,194,Iowa City,IA
-52542,16058,Keosauqua,IA,194,Iowa City,IA
-52543,16082,Oskaloosa,IA,192,Des Moines,IA
-52544,16015,Centerville,IA,192,Des Moines,IA
-52548,16083,Ottumwa,IA,194,Iowa City,IA
-52549,16015,Centerville,IA,192,Des Moines,IA
-52550,16083,Ottumwa,IA,194,Iowa City,IA
-52551,16058,Keosauqua,IA,194,Iowa City,IA
-52552,16008,Bloomfield,IA,192,Des Moines,IA
-52553,16083,Ottumwa,IA,194,Iowa City,IA
-52554,16083,Ottumwa,IA,194,Iowa City,IA
-52555,16015,Centerville,IA,192,Des Moines,IA
-52556,16037,Fairfield,IA,194,Iowa City,IA
-52557,16037,Fairfield,IA,194,Iowa City,IA
-52560,16008,Bloomfield,IA,192,Des Moines,IA
-52561,16082,Oskaloosa,IA,192,Des Moines,IA
-52562,16054,Iowa City,IA,194,Iowa City,IA
-52563,16083,Ottumwa,IA,194,Iowa City,IA
-52565,16058,Keosauqua,IA,194,Iowa City,IA
-52566,16083,Ottumwa,IA,194,Iowa City,IA
-52567,16037,Fairfield,IA,194,Iowa City,IA
-52568,16083,Ottumwa,IA,194,Iowa City,IA
-52569,16031,Des Moines,IA,192,Des Moines,IA
-52570,16008,Bloomfield,IA,192,Des Moines,IA
-52571,16015,Centerville,IA,192,Des Moines,IA
-52572,16015,Centerville,IA,192,Des Moines,IA
-52573,16058,Keosauqua,IA,194,Iowa City,IA
-52574,16015,Centerville,IA,192,Des Moines,IA
-52576,16037,Fairfield,IA,194,Iowa City,IA
-52577,16082,Oskaloosa,IA,192,Des Moines,IA
-52580,16037,Fairfield,IA,194,Iowa City,IA
-52581,16015,Centerville,IA,192,Des Moines,IA
-52583,16023,Corydon,IA,192,Des Moines,IA
-52584,16008,Bloomfield,IA,192,Des Moines,IA
-52585,16037,Fairfield,IA,194,Iowa City,IA
-52586,16082,Oskaloosa,IA,192,Des Moines,IA
-52588,16058,Keosauqua,IA,194,Iowa City,IA
-52590,16023,Corydon,IA,192,Des Moines,IA
-52591,16054,Iowa City,IA,194,Iowa City,IA
-52593,16015,Centerville,IA,192,Des Moines,IA
-52594,16008,Bloomfield,IA,192,Des Moines,IA
-52595,16082,Oskaloosa,IA,192,Des Moines,IA
-52601,16011,Burlington,IA,191,Davenport,IA
-52619,16057,Keokuk,IA,194,Iowa City,IA
-52620,16058,Keosauqua,IA,194,Iowa City,IA
-52621,16054,Iowa City,IA,194,Iowa City,IA
-52623,16011,Burlington,IA,191,Davenport,IA
-52624,16040,Fort Madison,IA,194,Iowa City,IA
-52625,16040,Fort Madison,IA,194,Iowa City,IA
-52626,16058,Keosauqua,IA,194,Iowa City,IA
-52627,16040,Fort Madison,IA,194,Iowa City,IA
-52630,16054,Iowa City,IA,194,Iowa City,IA
-52631,16040,Fort Madison,IA,194,Iowa City,IA
-52632,16057,Keokuk,IA,194,Iowa City,IA
-52635,16037,Fairfield,IA,194,Iowa City,IA
-52637,16011,Burlington,IA,191,Davenport,IA
-52638,16011,Burlington,IA,191,Davenport,IA
-52639,16057,Keokuk,IA,194,Iowa City,IA
-52640,16011,Burlington,IA,191,Davenport,IA
-52641,16072,Mount Pleasant,IA,194,Iowa City,IA
-52642,16072,Mount Pleasant,IA,194,Iowa City,IA
-52644,16011,Burlington,IA,191,Davenport,IA
-52645,16011,Burlington,IA,191,Davenport,IA
-52646,16011,Burlington,IA,191,Davenport,IA
-52647,16072,Mount Pleasant,IA,194,Iowa City,IA
-52648,16040,Fort Madison,IA,194,Iowa City,IA
-52649,16072,Mount Pleasant,IA,194,Iowa City,IA
-52650,16011,Burlington,IA,191,Davenport,IA
-52651,16058,Keosauqua,IA,194,Iowa City,IA
-52652,16072,Mount Pleasant,IA,194,Iowa City,IA
-52653,16011,Burlington,IA,191,Davenport,IA
-52654,16054,Iowa City,IA,194,Iowa City,IA
-52655,16011,Burlington,IA,191,Davenport,IA
-52656,16040,Fort Madison,IA,194,Iowa City,IA
-52657,16040,Fort Madison,IA,194,Iowa City,IA
-52658,16011,Burlington,IA,191,Davenport,IA
-52659,16054,Iowa City,IA,194,Iowa City,IA
-52660,16011,Burlington,IA,191,Davenport,IA
-52701,16021,Clinton,IA,191,Davenport,IA
-52720,16054,Iowa City,IA,194,Iowa City,IA
-52721,16027,Davenport,IA,191,Davenport,IA
-52722,16027,Davenport,IA,191,Davenport,IA
-52726,16027,Davenport,IA,191,Davenport,IA
-52727,16021,Clinton,IA,191,Davenport,IA
-52728,16027,Davenport,IA,191,Davenport,IA
-52729,16027,Davenport,IA,191,Davenport,IA
-52730,16021,Clinton,IA,191,Davenport,IA
-52731,16021,Clinton,IA,191,Davenport,IA
-52732,16021,Clinton,IA,191,Davenport,IA
-52733,16021,Clinton,IA,191,Davenport,IA
-52734,16021,Clinton,IA,191,Davenport,IA
-52736,16021,Clinton,IA,191,Davenport,IA
-52737,16054,Iowa City,IA,194,Iowa City,IA
-52738,16054,Iowa City,IA,194,Iowa City,IA
-52739,16054,Iowa City,IA,194,Iowa City,IA
-52742,16027,Davenport,IA,191,Davenport,IA
-52745,16027,Davenport,IA,191,Davenport,IA
-52746,16027,Davenport,IA,191,Davenport,IA
-52747,16027,Davenport,IA,191,Davenport,IA
-52748,16027,Davenport,IA,191,Davenport,IA
-52749,16073,Muscatine,IA,194,Iowa City,IA
-52750,16021,Clinton,IA,191,Davenport,IA
-52751,16027,Davenport,IA,191,Davenport,IA
-52752,16073,Muscatine,IA,194,Iowa City,IA
-52753,16027,Davenport,IA,191,Davenport,IA
-52754,16073,Muscatine,IA,194,Iowa City,IA
-52755,16054,Iowa City,IA,194,Iowa City,IA
-52756,16027,Davenport,IA,191,Davenport,IA
-52757,16027,Davenport,IA,191,Davenport,IA
-52758,16027,Davenport,IA,191,Davenport,IA
-52759,16073,Muscatine,IA,194,Iowa City,IA
-52760,16054,Iowa City,IA,194,Iowa City,IA
-52761,16073,Muscatine,IA,194,Iowa City,IA
-52765,16027,Davenport,IA,191,Davenport,IA
-52766,16054,Iowa City,IA,194,Iowa City,IA
-52767,16027,Davenport,IA,191,Davenport,IA
-52768,16027,Davenport,IA,191,Davenport,IA
-52769,16027,Davenport,IA,191,Davenport,IA
-52771,16021,Clinton,IA,191,Davenport,IA
-52772,16054,Iowa City,IA,194,Iowa City,IA
-52773,16027,Davenport,IA,191,Davenport,IA
-52774,16027,Davenport,IA,191,Davenport,IA
-52776,16054,Iowa City,IA,194,Iowa City,IA
-52777,16027,Davenport,IA,191,Davenport,IA
-52778,16054,Iowa City,IA,194,Iowa City,IA
-52801,16027,Davenport,IA,191,Davenport,IA
-52802,16027,Davenport,IA,191,Davenport,IA
-52803,16027,Davenport,IA,191,Davenport,IA
-52804,16027,Davenport,IA,191,Davenport,IA
-52805,16027,Davenport,IA,191,Davenport,IA
-52806,16027,Davenport,IA,191,Davenport,IA
-52807,16027,Davenport,IA,191,Davenport,IA
-52808,16027,Davenport,IA,191,Davenport,IA
-52809,16027,Davenport,IA,191,Davenport,IA
-53001,52085,Sheboygan,WI,451,Milwaukee,WI
-53002,52104,West Bend,WI,451,Milwaukee,WI
-53003,52063,Oconomowoc,WI,451,Milwaukee,WI
-53004,52073,Port Washington,WI,451,Milwaukee,WI
-53005,52015,Brookfield,WI,451,Milwaukee,WI
-53006,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53007,52057,Milwaukee,WI,451,Milwaukee,WI
-53008,52015,Brookfield,WI,451,Milwaukee,WI
-53010,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53011,52072,Plymouth,WI,451,Milwaukee,WI
-53012,52057,Milwaukee,WI,451,Milwaukee,WI
-53013,52085,Sheboygan,WI,451,Milwaukee,WI
-53014,52017,Chilton,WI,446,Appleton,WI
-53015,52085,Sheboygan,WI,451,Milwaukee,WI
-53016,52009,Beaver Dam,WI,449,Madison,WI
-53017,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53018,52099,Waukesha,WI,451,Milwaukee,WI
-53019,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53020,52085,Sheboygan,WI,451,Milwaukee,WI
-53021,52073,Port Washington,WI,451,Milwaukee,WI
-53022,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53023,52072,Plymouth,WI,451,Milwaukee,WI
-53024,52073,Port Washington,WI,451,Milwaukee,WI
-53026,52072,Plymouth,WI,451,Milwaukee,WI
-53027,52036,Hartford,WI,451,Milwaukee,WI
-53029,52099,Waukesha,WI,451,Milwaukee,WI
-53031,52085,Sheboygan,WI,451,Milwaukee,WI
-53032,52009,Beaver Dam,WI,449,Madison,WI
-53033,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53034,52009,Beaver Dam,WI,449,Madison,WI
-53035,52036,Hartford,WI,451,Milwaukee,WI
-53036,52063,Oconomowoc,WI,451,Milwaukee,WI
-53037,52104,West Bend,WI,451,Milwaukee,WI
-53038,52031,Fort Atkinson,WI,449,Madison,WI
-53039,52009,Beaver Dam,WI,449,Madison,WI
-53040,52104,West Bend,WI,451,Milwaukee,WI
-53042,52085,Sheboygan,WI,451,Milwaukee,WI
-53044,52085,Sheboygan,WI,451,Milwaukee,WI
-53045,52015,Brookfield,WI,451,Milwaukee,WI
-53046,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53047,52098,Watertown,WI,449,Madison,WI
-53048,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53049,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53050,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53051,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53052,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53056,52099,Waukesha,WI,451,Milwaukee,WI
-53057,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53058,52063,Oconomowoc,WI,451,Milwaukee,WI
-53059,52036,Hartford,WI,451,Milwaukee,WI
-53060,52104,West Bend,WI,451,Milwaukee,WI
-53061,52017,Chilton,WI,446,Appleton,WI
-53062,52017,Chilton,WI,446,Appleton,WI
-53063,52049,Manitowoc,WI,447,Green Bay,WI
-53064,52099,Waukesha,WI,451,Milwaukee,WI
-53065,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53066,52063,Oconomowoc,WI,451,Milwaukee,WI
-53069,52063,Oconomowoc,WI,451,Milwaukee,WI
-53070,52085,Sheboygan,WI,451,Milwaukee,WI
-53072,52099,Waukesha,WI,451,Milwaukee,WI
-53073,52072,Plymouth,WI,451,Milwaukee,WI
-53074,52073,Port Washington,WI,451,Milwaukee,WI
-53075,52085,Sheboygan,WI,451,Milwaukee,WI
-53076,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53078,52036,Hartford,WI,451,Milwaukee,WI
-53079,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53080,52073,Port Washington,WI,451,Milwaukee,WI
-53081,52085,Sheboygan,WI,451,Milwaukee,WI
-53082,52085,Sheboygan,WI,451,Milwaukee,WI
-53083,52085,Sheboygan,WI,451,Milwaukee,WI
-53085,52085,Sheboygan,WI,451,Milwaukee,WI
-53086,52036,Hartford,WI,451,Milwaukee,WI
-53088,52003,Appleton,WI,446,Appleton,WI
-53089,52054,Menomonee Falls,WI,451,Milwaukee,WI
-53090,52104,West Bend,WI,451,Milwaukee,WI
-53091,52030,Fond Du Lac,WI,451,Milwaukee,WI
-53092,52057,Milwaukee,WI,451,Milwaukee,WI
-53093,52085,Sheboygan,WI,451,Milwaukee,WI
-53094,52098,Watertown,WI,449,Madison,WI
-53095,52104,West Bend,WI,451,Milwaukee,WI
-53097,52057,Milwaukee,WI,451,Milwaukee,WI
-53098,52098,Watertown,WI,449,Madison,WI
-53099,52036,Hartford,WI,451,Milwaukee,WI
-53101,52016,Burlington,WI,451,Milwaukee,WI
-53102,52043,Kenosha,WI,451,Milwaukee,WI
-53103,52099,Waukesha,WI,451,Milwaukee,WI
-53104,52043,Kenosha,WI,451,Milwaukee,WI
-53105,52016,Burlington,WI,451,Milwaukee,WI
-53108,52077,Racine,WI,451,Milwaukee,WI
-53109,52043,Kenosha,WI,451,Milwaukee,WI
-53110,52021,Cudahy,WI,451,Milwaukee,WI
-53114,52029,Elkhorn,WI,451,Milwaukee,WI
-53115,52029,Elkhorn,WI,451,Milwaukee,WI
-53118,52063,Oconomowoc,WI,451,Milwaukee,WI
-53119,52099,Waukesha,WI,451,Milwaukee,WI
-53120,52099,Waukesha,WI,451,Milwaukee,WI
-53121,52029,Elkhorn,WI,451,Milwaukee,WI
-53122,52057,Milwaukee,WI,451,Milwaukee,WI
-53125,52029,Elkhorn,WI,451,Milwaukee,WI
-53126,52077,Racine,WI,451,Milwaukee,WI
-53127,52099,Waukesha,WI,451,Milwaukee,WI
-53128,52016,Burlington,WI,451,Milwaukee,WI
-53129,52057,Milwaukee,WI,451,Milwaukee,WI
-53130,52057,Milwaukee,WI,451,Milwaukee,WI
-53132,52057,Milwaukee,WI,451,Milwaukee,WI
-53137,52031,Fort Atkinson,WI,449,Madison,WI
-53138,52016,Burlington,WI,451,Milwaukee,WI
-53139,52077,Racine,WI,451,Milwaukee,WI
-53140,52043,Kenosha,WI,451,Milwaukee,WI
-53141,52043,Kenosha,WI,451,Milwaukee,WI
-53142,52043,Kenosha,WI,451,Milwaukee,WI
-53143,52043,Kenosha,WI,451,Milwaukee,WI
-53144,52043,Kenosha,WI,451,Milwaukee,WI
-53146,52099,Waukesha,WI,451,Milwaukee,WI
-53147,52029,Elkhorn,WI,451,Milwaukee,WI
-53148,52016,Burlington,WI,451,Milwaukee,WI
-53149,52099,Waukesha,WI,451,Milwaukee,WI
-53150,52099,Waukesha,WI,451,Milwaukee,WI
-53151,52103,West Allis,WI,451,Milwaukee,WI
-53152,52016,Burlington,WI,451,Milwaukee,WI
-53153,52099,Waukesha,WI,451,Milwaukee,WI
-53154,52021,Cudahy,WI,451,Milwaukee,WI
-53156,52031,Fort Atkinson,WI,449,Madison,WI
-53157,52016,Burlington,WI,451,Milwaukee,WI
-53158,52043,Kenosha,WI,451,Milwaukee,WI
-53159,52016,Burlington,WI,451,Milwaukee,WI
-53167,52016,Burlington,WI,451,Milwaukee,WI
-53168,52043,Kenosha,WI,451,Milwaukee,WI
-53170,52043,Kenosha,WI,451,Milwaukee,WI
-53171,52043,Kenosha,WI,451,Milwaukee,WI
-53172,52021,Cudahy,WI,451,Milwaukee,WI
-53176,52029,Elkhorn,WI,451,Milwaukee,WI
-53177,52077,Racine,WI,451,Milwaukee,WI
-53178,52063,Oconomowoc,WI,451,Milwaukee,WI
-53179,52043,Kenosha,WI,451,Milwaukee,WI
-53181,52016,Burlington,WI,451,Milwaukee,WI
-53182,52077,Racine,WI,451,Milwaukee,WI
-53183,52099,Waukesha,WI,451,Milwaukee,WI
-53184,52029,Elkhorn,WI,451,Milwaukee,WI
-53185,52016,Burlington,WI,451,Milwaukee,WI
-53186,52099,Waukesha,WI,451,Milwaukee,WI
-53187,52099,Waukesha,WI,451,Milwaukee,WI
-53188,52099,Waukesha,WI,451,Milwaukee,WI
-53189,52099,Waukesha,WI,451,Milwaukee,WI
-53190,52031,Fort Atkinson,WI,449,Madison,WI
-53191,52029,Elkhorn,WI,451,Milwaukee,WI
-53192,52043,Kenosha,WI,451,Milwaukee,WI
-53194,52043,Kenosha,WI,451,Milwaukee,WI
-53195,52029,Elkhorn,WI,451,Milwaukee,WI
-53201,52057,Milwaukee,WI,451,Milwaukee,WI
-53202,52057,Milwaukee,WI,451,Milwaukee,WI
-53203,52057,Milwaukee,WI,451,Milwaukee,WI
-53204,52057,Milwaukee,WI,451,Milwaukee,WI
-53205,52057,Milwaukee,WI,451,Milwaukee,WI
-53206,52057,Milwaukee,WI,451,Milwaukee,WI
-53207,52057,Milwaukee,WI,451,Milwaukee,WI
-53208,52057,Milwaukee,WI,451,Milwaukee,WI
-53209,52057,Milwaukee,WI,451,Milwaukee,WI
-53210,52057,Milwaukee,WI,451,Milwaukee,WI
-53211,52057,Milwaukee,WI,451,Milwaukee,WI
-53212,52057,Milwaukee,WI,451,Milwaukee,WI
-53213,52057,Milwaukee,WI,451,Milwaukee,WI
-53214,52103,West Allis,WI,451,Milwaukee,WI
-53215,52057,Milwaukee,WI,451,Milwaukee,WI
-53216,52057,Milwaukee,WI,451,Milwaukee,WI
-53217,52057,Milwaukee,WI,451,Milwaukee,WI
-53218,52057,Milwaukee,WI,451,Milwaukee,WI
-53219,52057,Milwaukee,WI,451,Milwaukee,WI
-53220,52057,Milwaukee,WI,451,Milwaukee,WI
-53221,52057,Milwaukee,WI,451,Milwaukee,WI
-53222,52057,Milwaukee,WI,451,Milwaukee,WI
-53223,52057,Milwaukee,WI,451,Milwaukee,WI
-53224,52057,Milwaukee,WI,451,Milwaukee,WI
-53225,52057,Milwaukee,WI,451,Milwaukee,WI
-53226,52057,Milwaukee,WI,451,Milwaukee,WI
-53227,52103,West Allis,WI,451,Milwaukee,WI
-53228,52057,Milwaukee,WI,451,Milwaukee,WI
-53233,52057,Milwaukee,WI,451,Milwaukee,WI
-53234,52057,Milwaukee,WI,451,Milwaukee,WI
-53235,52057,Milwaukee,WI,451,Milwaukee,WI
-53237,52057,Milwaukee,WI,451,Milwaukee,WI
-53259,52057,Milwaukee,WI,451,Milwaukee,WI
-53263,52057,Milwaukee,WI,451,Milwaukee,WI
-53274,52057,Milwaukee,WI,451,Milwaukee,WI
-53278,52057,Milwaukee,WI,451,Milwaukee,WI
-53288,52057,Milwaukee,WI,451,Milwaukee,WI
-53290,52057,Milwaukee,WI,451,Milwaukee,WI
-53293,52057,Milwaukee,WI,451,Milwaukee,WI
-53295,52103,West Allis,WI,451,Milwaukee,WI
-53401,52077,Racine,WI,451,Milwaukee,WI
-53402,52077,Racine,WI,451,Milwaukee,WI
-53403,52077,Racine,WI,451,Milwaukee,WI
-53404,52077,Racine,WI,451,Milwaukee,WI
-53405,52077,Racine,WI,451,Milwaukee,WI
-53406,52077,Racine,WI,451,Milwaukee,WI
-53407,52077,Racine,WI,451,Milwaukee,WI
-53408,52077,Racine,WI,451,Milwaukee,WI
-53501,52010,Beloit,WI,449,Madison,WI
-53502,52058,Monroe,WI,449,Madison,WI
-53503,52048,Madison,WI,449,Madison,WI
-53504,52058,Monroe,WI,449,Madison,WI
-53505,52031,Fort Atkinson,WI,449,Madison,WI
-53506,52081,Richland Center,WI,449,Madison,WI
-53507,52048,Madison,WI,449,Madison,WI
-53508,52048,Madison,WI,449,Madison,WI
-53510,52071,Platteville,WI,193,Dubuque,IA
-53511,52010,Beloit,WI,449,Madison,WI
-53512,52010,Beloit,WI,449,Madison,WI
-53515,52048,Madison,WI,449,Madison,WI
-53516,52058,Monroe,WI,449,Madison,WI
-53517,52048,Madison,WI,449,Madison,WI
-53518,52014,Boscobel,WI,449,Madison,WI
-53520,52058,Monroe,WI,449,Madison,WI
-53521,52048,Madison,WI,449,Madison,WI
-53522,52058,Monroe,WI,449,Madison,WI
-53523,52031,Fort Atkinson,WI,449,Madison,WI
-53525,52010,Beloit,WI,449,Madison,WI
-53526,52024,Dodgeville,WI,449,Madison,WI
-53527,52048,Madison,WI,449,Madison,WI
-53528,52048,Madison,WI,449,Madison,WI
-53529,52048,Madison,WI,449,Madison,WI
-53530,52023,Darlington,WI,449,Madison,WI
-53531,52048,Madison,WI,449,Madison,WI
-53532,52048,Madison,WI,449,Madison,WI
-53533,52024,Dodgeville,WI,449,Madison,WI
-53534,52028,Edgerton,WI,449,Madison,WI
-53535,52024,Dodgeville,WI,449,Madison,WI
-53536,52092,Stoughton,WI,449,Madison,WI
-53537,52041,Janesville,WI,449,Madison,WI
-53538,52031,Fort Atkinson,WI,449,Madison,WI
-53540,52081,Richland Center,WI,449,Madison,WI
-53541,52058,Monroe,WI,449,Madison,WI
-53542,52041,Janesville,WI,449,Madison,WI
-53543,52024,Dodgeville,WI,449,Madison,WI
-53544,52024,Dodgeville,WI,449,Madison,WI
-53545,52041,Janesville,WI,449,Madison,WI
-53546,52041,Janesville,WI,449,Madison,WI
-53547,52041,Janesville,WI,449,Madison,WI
-53548,52041,Janesville,WI,449,Madison,WI
-53549,52031,Fort Atkinson,WI,449,Madison,WI
-53550,52058,Monroe,WI,449,Madison,WI
-53551,52031,Fort Atkinson,WI,449,Madison,WI
-53553,52024,Dodgeville,WI,449,Madison,WI
-53554,52024,Dodgeville,WI,449,Madison,WI
-53555,52076,Prairie Du Sac,WI,449,Madison,WI
-53556,52081,Richland Center,WI,449,Madison,WI
-53557,52009,Beaver Dam,WI,449,Madison,WI
-53558,52048,Madison,WI,449,Madison,WI
-53559,52048,Madison,WI,449,Madison,WI
-53560,52076,Prairie Du Sac,WI,449,Madison,WI
-53561,52076,Prairie Du Sac,WI,449,Madison,WI
-53562,52048,Madison,WI,449,Madison,WI
-53563,52041,Janesville,WI,449,Madison,WI
-53565,52024,Dodgeville,WI,449,Madison,WI
-53566,52058,Monroe,WI,449,Madison,WI
-53569,52024,Dodgeville,WI,449,Madison,WI
-53570,52058,Monroe,WI,449,Madison,WI
-53571,52048,Madison,WI,449,Madison,WI
-53572,52048,Madison,WI,449,Madison,WI
-53573,52081,Richland Center,WI,449,Madison,WI
-53574,52058,Monroe,WI,449,Madison,WI
-53575,52048,Madison,WI,449,Madison,WI
-53576,52041,Janesville,WI,449,Madison,WI
-53577,52076,Prairie Du Sac,WI,449,Madison,WI
-53578,52076,Prairie Du Sac,WI,449,Madison,WI
-53579,52009,Beaver Dam,WI,449,Madison,WI
-53580,52024,Dodgeville,WI,449,Madison,WI
-53581,52081,Richland Center,WI,449,Madison,WI
-53582,52024,Dodgeville,WI,449,Madison,WI
-53583,52076,Prairie Du Sac,WI,449,Madison,WI
-53584,52081,Richland Center,WI,449,Madison,WI
-53585,52029,Elkhorn,WI,451,Milwaukee,WI
-53586,52023,Darlington,WI,449,Madison,WI
-53587,52058,Monroe,WI,449,Madison,WI
-53588,52048,Madison,WI,449,Madison,WI
-53589,52092,Stoughton,WI,449,Madison,WI
-53590,52048,Madison,WI,449,Madison,WI
-53593,52048,Madison,WI,449,Madison,WI
-53594,52048,Madison,WI,449,Madison,WI
-53595,52024,Dodgeville,WI,449,Madison,WI
-53596,52048,Madison,WI,449,Madison,WI
-53597,52048,Madison,WI,449,Madison,WI
-53598,52048,Madison,WI,449,Madison,WI
-53599,52058,Monroe,WI,449,Madison,WI
-53701,52048,Madison,WI,449,Madison,WI
-53702,52048,Madison,WI,449,Madison,WI
-53703,52048,Madison,WI,449,Madison,WI
-53704,52048,Madison,WI,449,Madison,WI
-53705,52048,Madison,WI,449,Madison,WI
-53706,52048,Madison,WI,449,Madison,WI
-53707,52048,Madison,WI,449,Madison,WI
-53708,52048,Madison,WI,449,Madison,WI
-53711,52048,Madison,WI,449,Madison,WI
-53713,52048,Madison,WI,449,Madison,WI
-53714,52048,Madison,WI,449,Madison,WI
-53715,52048,Madison,WI,449,Madison,WI
-53716,52048,Madison,WI,449,Madison,WI
-53717,52048,Madison,WI,449,Madison,WI
-53718,52048,Madison,WI,449,Madison,WI
-53719,52048,Madison,WI,449,Madison,WI
-53725,52048,Madison,WI,449,Madison,WI
-53726,52048,Madison,WI,449,Madison,WI
-53744,52048,Madison,WI,449,Madison,WI
-53774,52048,Madison,WI,449,Madison,WI
-53777,52048,Madison,WI,449,Madison,WI
-53782,52048,Madison,WI,449,Madison,WI
-53783,52048,Madison,WI,449,Madison,WI
-53784,52048,Madison,WI,449,Madison,WI
-53785,52048,Madison,WI,449,Madison,WI
-53786,52048,Madison,WI,449,Madison,WI
-53788,52048,Madison,WI,449,Madison,WI
-53789,52048,Madison,WI,449,Madison,WI
-53790,52048,Madison,WI,449,Madison,WI
-53791,52048,Madison,WI,449,Madison,WI
-53792,52048,Madison,WI,449,Madison,WI
-53793,52048,Madison,WI,449,Madison,WI
-53794,52048,Madison,WI,449,Madison,WI
-53801,52075,Prairie Du Chien,WI,448,La Crosse,WI
-53802,52075,Prairie Du Chien,WI,448,La Crosse,WI
-53803,16032,Dubuque,IA,193,Dubuque,IA
-53804,52075,Prairie Du Chien,WI,448,La Crosse,WI
-53805,52014,Boscobel,WI,449,Madison,WI
-53806,16032,Dubuque,IA,193,Dubuque,IA
-53807,16032,Dubuque,IA,193,Dubuque,IA
-53808,16032,Dubuque,IA,193,Dubuque,IA
-53809,52047,Lancaster,WI,449,Madison,WI
-53810,16032,Dubuque,IA,193,Dubuque,IA
-53811,16032,Dubuque,IA,193,Dubuque,IA
-53812,16032,Dubuque,IA,193,Dubuque,IA
-53813,52047,Lancaster,WI,449,Madison,WI
-53816,52047,Lancaster,WI,449,Madison,WI
-53817,52075,Prairie Du Chien,WI,448,La Crosse,WI
-53818,52071,Platteville,WI,193,Dubuque,IA
-53820,16032,Dubuque,IA,193,Dubuque,IA
-53821,52075,Prairie Du Chien,WI,448,La Crosse,WI
-53824,16032,Dubuque,IA,193,Dubuque,IA
-53825,52047,Lancaster,WI,449,Madison,WI
-53826,52075,Prairie Du Chien,WI,448,La Crosse,WI
-53827,52014,Boscobel,WI,449,Madison,WI
-53901,52074,Portage,WI,449,Madison,WI
-53910,52033,Friendship,WI,449,Madison,WI
-53911,52048,Madison,WI,449,Madison,WI
-53913,52007,Baraboo,WI,449,Madison,WI
-53916,52009,Beaver Dam,WI,449,Madison,WI
-53919,52101,Waupun,WI,452,Neenah,WI
-53920,52074,Portage,WI,449,Madison,WI
-53922,52009,Beaver Dam,WI,449,Madison,WI
-53923,52009,Beaver Dam,WI,449,Madison,WI
-53924,52078,Reedsburg,WI,449,Madison,WI
-53925,52020,Columbus,WI,449,Madison,WI
-53926,52074,Portage,WI,449,Madison,WI
-53928,52020,Columbus,WI,449,Madison,WI
-53929,52038,Hillsboro,WI,449,Madison,WI
-53930,52074,Portage,WI,449,Madison,WI
-53931,52101,Waupun,WI,452,Neenah,WI
-53932,52020,Columbus,WI,449,Madison,WI
-53933,52009,Beaver Dam,WI,449,Madison,WI
-53934,52033,Friendship,WI,449,Madison,WI
-53935,52009,Beaver Dam,WI,449,Madison,WI
-53936,52033,Friendship,WI,449,Madison,WI
-53937,52078,Reedsburg,WI,449,Madison,WI
-53939,52011,Berlin,WI,452,Neenah,WI
-53940,52007,Baraboo,WI,449,Madison,WI
-53941,52078,Reedsburg,WI,449,Madison,WI
-53942,52078,Reedsburg,WI,449,Madison,WI
-53943,52078,Reedsburg,WI,449,Madison,WI
-53944,52052,Mauston,WI,449,Madison,WI
-53946,52011,Berlin,WI,452,Neenah,WI
-53947,52011,Berlin,WI,452,Neenah,WI
-53948,52052,Mauston,WI,449,Madison,WI
-53949,52011,Berlin,WI,452,Neenah,WI
-53950,52052,Mauston,WI,449,Madison,WI
-53951,52007,Baraboo,WI,449,Madison,WI
-53952,52074,Portage,WI,449,Madison,WI
-53953,52011,Berlin,WI,452,Neenah,WI
-53954,52074,Portage,WI,449,Madison,WI
-53955,52048,Madison,WI,449,Madison,WI
-53956,52009,Beaver Dam,WI,449,Madison,WI
-53957,52009,Beaver Dam,WI,449,Madison,WI
-53958,52078,Reedsburg,WI,449,Madison,WI
-53959,52078,Reedsburg,WI,449,Madison,WI
-53960,52020,Columbus,WI,449,Madison,WI
-53961,52007,Baraboo,WI,449,Madison,WI
-53962,52038,Hillsboro,WI,449,Madison,WI
-53963,52101,Waupun,WI,452,Neenah,WI
-53964,52074,Portage,WI,449,Madison,WI
-53965,52007,Baraboo,WI,449,Madison,WI
-53968,52038,Hillsboro,WI,449,Madison,WI
-53969,52074,Portage,WI,449,Madison,WI
-54001,52001,Amery,WI,256,St. Paul,MN
-54002,52006,Baldwin,WI,256,St. Paul,MN
-54003,52055,Menomonie,WI,251,Minneapolis,MN
-54004,52001,Amery,WI,256,St. Paul,MN
-54005,52001,Amery,WI,256,St. Paul,MN
-54006,52089,St. Croix Falls,WI,256,St. Paul,MN
-54007,52001,Amery,WI,256,St. Paul,MN
-54009,52089,St. Croix Falls,WI,256,St. Paul,MN
-54011,52083,River Falls,WI,256,St. Paul,MN
-54013,52055,Menomonie,WI,251,Minneapolis,MN
-54014,24098,Red Wing,MN,253,Rochester,MN
-54015,52006,Baldwin,WI,256,St. Paul,MN
-54016,52039,Hudson,WI,256,St. Paul,MN
-54017,52062,New Richmond,WI,256,St. Paul,MN
-54020,52066,Osceola,WI,256,St. Paul,MN
-54021,24052,Hastings,MN,256,St. Paul,MN
-54022,52083,River Falls,WI,256,St. Paul,MN
-54023,52039,Hudson,WI,256,St. Paul,MN
-54024,52089,St. Croix Falls,WI,256,St. Paul,MN
-54025,52062,New Richmond,WI,256,St. Paul,MN
-54026,52062,New Richmond,WI,256,St. Paul,MN
-54027,52006,Baldwin,WI,256,St. Paul,MN
-54028,52006,Baldwin,WI,256,St. Paul,MN
-54082,24120,Stillwater,MN,256,St. Paul,MN
-54101,52035,Green Bay,WI,447,Green Bay,WI
-54102,23053,Iron Mountain,MI,447,Green Bay,WI
-54103,23053,Iron Mountain,MI,447,Green Bay,WI
-54104,52050,Marinette,WI,447,Green Bay,WI
-54106,52003,Appleton,WI,446,Appleton,WI
-54107,52084,Shawano,WI,446,Appleton,WI
-54110,52003,Appleton,WI,446,Appleton,WI
-54111,52084,Shawano,WI,446,Appleton,WI
-54112,52035,Green Bay,WI,447,Green Bay,WI
-54113,52003,Appleton,WI,446,Appleton,WI
-54114,52050,Marinette,WI,447,Green Bay,WI
-54115,52035,Green Bay,WI,447,Green Bay,WI
-54119,23053,Iron Mountain,MI,447,Green Bay,WI
-54120,23053,Iron Mountain,MI,447,Green Bay,WI
-54121,23053,Iron Mountain,MI,447,Green Bay,WI
-54123,52003,Appleton,WI,446,Appleton,WI
-54124,52065,Oconto Falls,WI,447,Green Bay,WI
-54125,23053,Iron Mountain,MI,447,Green Bay,WI
-54126,52035,Green Bay,WI,447,Green Bay,WI
-54127,52084,Shawano,WI,446,Appleton,WI
-54128,52084,Shawano,WI,446,Appleton,WI
-54129,52003,Appleton,WI,446,Appleton,WI
-54130,52003,Appleton,WI,446,Appleton,WI
-54131,52003,Appleton,WI,446,Appleton,WI
-54135,52084,Shawano,WI,446,Appleton,WI
-54136,52003,Appleton,WI,446,Appleton,WI
-54137,52035,Green Bay,WI,447,Green Bay,WI
-54138,52035,Green Bay,WI,447,Green Bay,WI
-54139,52035,Green Bay,WI,447,Green Bay,WI
-54140,52003,Appleton,WI,446,Appleton,WI
-54141,52035,Green Bay,WI,447,Green Bay,WI
-54143,52050,Marinette,WI,447,Green Bay,WI
-54149,52035,Green Bay,WI,447,Green Bay,WI
-54150,52002,Antigo,WI,446,Appleton,WI
-54151,23053,Iron Mountain,MI,447,Green Bay,WI
-54152,52035,Green Bay,WI,447,Green Bay,WI
-54153,52035,Green Bay,WI,447,Green Bay,WI
-54154,52065,Oconto Falls,WI,447,Green Bay,WI
-54155,52035,Green Bay,WI,447,Green Bay,WI
-54156,23053,Iron Mountain,MI,447,Green Bay,WI
-54157,52050,Marinette,WI,447,Green Bay,WI
-54159,52050,Marinette,WI,447,Green Bay,WI
-54160,52003,Appleton,WI,446,Appleton,WI
-54161,52035,Green Bay,WI,447,Green Bay,WI
-54162,52035,Green Bay,WI,447,Green Bay,WI
-54165,52035,Green Bay,WI,447,Green Bay,WI
-54166,52084,Shawano,WI,446,Appleton,WI
-54169,52059,Neenah,WI,452,Neenah,WI
-54170,52003,Appleton,WI,446,Appleton,WI
-54171,52035,Green Bay,WI,447,Green Bay,WI
-54173,52035,Green Bay,WI,447,Green Bay,WI
-54174,52065,Oconto Falls,WI,447,Green Bay,WI
-54175,52002,Antigo,WI,446,Appleton,WI
-54177,52050,Marinette,WI,447,Green Bay,WI
-54180,52035,Green Bay,WI,447,Green Bay,WI
-54201,52035,Green Bay,WI,447,Green Bay,WI
-54202,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54204,52035,Green Bay,WI,447,Green Bay,WI
-54205,52035,Green Bay,WI,447,Green Bay,WI
-54207,52017,Chilton,WI,446,Appleton,WI
-54208,52035,Green Bay,WI,447,Green Bay,WI
-54209,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54210,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54211,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54212,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54213,52035,Green Bay,WI,447,Green Bay,WI
-54214,52049,Manitowoc,WI,447,Green Bay,WI
-54215,52049,Manitowoc,WI,447,Green Bay,WI
-54216,52044,Kewaunee,WI,447,Green Bay,WI
-54217,52035,Green Bay,WI,447,Green Bay,WI
-54220,52049,Manitowoc,WI,447,Green Bay,WI
-54221,52049,Manitowoc,WI,447,Green Bay,WI
-54226,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54227,52035,Green Bay,WI,447,Green Bay,WI
-54228,52096,Two Rivers,WI,447,Green Bay,WI
-54229,52035,Green Bay,WI,447,Green Bay,WI
-54230,52049,Manitowoc,WI,447,Green Bay,WI
-54232,52049,Manitowoc,WI,447,Green Bay,WI
-54234,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54235,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54240,52035,Green Bay,WI,447,Green Bay,WI
-54241,52096,Two Rivers,WI,447,Green Bay,WI
-54245,52049,Manitowoc,WI,447,Green Bay,WI
-54246,52093,Sturgeon Bay,WI,447,Green Bay,WI
-54247,52049,Manitowoc,WI,447,Green Bay,WI
-54301,52035,Green Bay,WI,447,Green Bay,WI
-54302,52035,Green Bay,WI,447,Green Bay,WI
-54303,52035,Green Bay,WI,447,Green Bay,WI
-54304,52035,Green Bay,WI,447,Green Bay,WI
-54305,52035,Green Bay,WI,447,Green Bay,WI
-54306,52035,Green Bay,WI,447,Green Bay,WI
-54307,52035,Green Bay,WI,447,Green Bay,WI
-54308,52035,Green Bay,WI,447,Green Bay,WI
-54311,52035,Green Bay,WI,447,Green Bay,WI
-54313,52035,Green Bay,WI,447,Green Bay,WI
-54324,52035,Green Bay,WI,447,Green Bay,WI
-54344,52035,Green Bay,WI,447,Green Bay,WI
-54401,52102,Wausau,WI,456,Wausau,WI
-54402,52102,Wausau,WI,456,Wausau,WI
-54403,52102,Wausau,WI,456,Wausau,WI
-54404,52051,Marshfield,WI,450,Marshfield,WI
-54405,52051,Marshfield,WI,450,Marshfield,WI
-54406,52091,Stevens Point,WI,450,Marshfield,WI
-54407,52091,Stevens Point,WI,450,Marshfield,WI
-54408,52002,Antigo,WI,446,Appleton,WI
-54409,52002,Antigo,WI,446,Appleton,WI
-54410,52051,Marshfield,WI,450,Marshfield,WI
-54411,52051,Marshfield,WI,450,Marshfield,WI
-54412,52051,Marshfield,WI,450,Marshfield,WI
-54413,52051,Marshfield,WI,450,Marshfield,WI
-54414,52102,Wausau,WI,456,Wausau,WI
-54415,52051,Marshfield,WI,450,Marshfield,WI
-54416,52002,Antigo,WI,446,Appleton,WI
-54417,52102,Wausau,WI,456,Wausau,WI
-54418,52002,Antigo,WI,446,Appleton,WI
-54420,52051,Marshfield,WI,450,Marshfield,WI
-54421,52051,Marshfield,WI,450,Marshfield,WI
-54422,52051,Marshfield,WI,450,Marshfield,WI
-54423,52091,Stevens Point,WI,450,Marshfield,WI
-54424,52002,Antigo,WI,446,Appleton,WI
-54425,52051,Marshfield,WI,450,Marshfield,WI
-54426,52051,Marshfield,WI,450,Marshfield,WI
-54427,52102,Wausau,WI,456,Wausau,WI
-54428,52002,Antigo,WI,446,Appleton,WI
-54429,52102,Wausau,WI,456,Wausau,WI
-54430,52002,Antigo,WI,446,Appleton,WI
-54433,52053,Medford,WI,450,Marshfield,WI
-54435,52056,Merrill,WI,456,Wausau,WI
-54436,52051,Marshfield,WI,450,Marshfield,WI
-54437,52051,Marshfield,WI,450,Marshfield,WI
-54440,52102,Wausau,WI,456,Wausau,WI
-54441,52051,Marshfield,WI,450,Marshfield,WI
-54442,52056,Merrill,WI,456,Wausau,WI
-54443,52091,Stevens Point,WI,450,Marshfield,WI
-54446,52051,Marshfield,WI,450,Marshfield,WI
-54447,52090,Stanley,WI,450,Marshfield,WI
-54448,52102,Wausau,WI,456,Wausau,WI
-54449,52051,Marshfield,WI,450,Marshfield,WI
-54450,52002,Antigo,WI,446,Appleton,WI
-54451,52053,Medford,WI,450,Marshfield,WI
-54452,52056,Merrill,WI,456,Wausau,WI
-54454,52051,Marshfield,WI,450,Marshfield,WI
-54455,52102,Wausau,WI,456,Wausau,WI
-54456,52060,Neillsville,WI,450,Marshfield,WI
-54457,52107,Wisconsin Rapids,WI,450,Marshfield,WI
-54458,52091,Stevens Point,WI,450,Marshfield,WI
-54459,52051,Marshfield,WI,450,Marshfield,WI
-54460,52051,Marshfield,WI,450,Marshfield,WI
-54462,52002,Antigo,WI,446,Appleton,WI
-54463,52079,Rhinelander,WI,456,Wausau,WI
-54464,52002,Antigo,WI,446,Appleton,WI
-54465,52079,Rhinelander,WI,456,Wausau,WI
-54466,52051,Marshfield,WI,450,Marshfield,WI
-54467,52091,Stevens Point,WI,450,Marshfield,WI
-54469,52107,Wisconsin Rapids,WI,450,Marshfield,WI
-54470,52051,Marshfield,WI,450,Marshfield,WI
-54471,52102,Wausau,WI,456,Wausau,WI
-54472,52051,Marshfield,WI,450,Marshfield,WI
-54473,52091,Stevens Point,WI,450,Marshfield,WI
-54474,52102,Wausau,WI,456,Wausau,WI
-54475,52107,Wisconsin Rapids,WI,450,Marshfield,WI
-54476,52102,Wausau,WI,456,Wausau,WI
-54479,52051,Marshfield,WI,450,Marshfield,WI
-54480,52051,Marshfield,WI,450,Marshfield,WI
-54481,52091,Stevens Point,WI,450,Marshfield,WI
-54482,52091,Stevens Point,WI,450,Marshfield,WI
-54484,52051,Marshfield,WI,450,Marshfield,WI
-54485,52002,Antigo,WI,446,Appleton,WI
-54486,52084,Shawano,WI,446,Appleton,WI
-54487,52079,Rhinelander,WI,456,Wausau,WI
-54488,52051,Marshfield,WI,450,Marshfield,WI
-54489,52051,Marshfield,WI,450,Marshfield,WI
-54490,52053,Medford,WI,450,Marshfield,WI
-54491,52002,Antigo,WI,446,Appleton,WI
-54492,52091,Stevens Point,WI,450,Marshfield,WI
-54493,52051,Marshfield,WI,450,Marshfield,WI
-54494,52107,Wisconsin Rapids,WI,450,Marshfield,WI
-54495,52107,Wisconsin Rapids,WI,450,Marshfield,WI
-54498,52051,Marshfield,WI,450,Marshfield,WI
-54499,52102,Wausau,WI,456,Wausau,WI
-54501,52079,Rhinelander,WI,456,Wausau,WI
-54511,52079,Rhinelander,WI,456,Wausau,WI
-54512,52108,Woodruff,WI,450,Marshfield,WI
-54513,52079,Rhinelander,WI,456,Wausau,WI
-54514,52069,Park Falls,WI,450,Marshfield,WI
-54515,52053,Medford,WI,450,Marshfield,WI
-54517,52005,Ashland,WI,250,Duluth,MN
-54519,52026,Eagle River,WI,456,Wausau,WI
-54520,52079,Rhinelander,WI,456,Wausau,WI
-54521,52026,Eagle River,WI,456,Wausau,WI
-54524,52069,Park Falls,WI,450,Marshfield,WI
-54525,23055,Ironwood,MI,250,Duluth,MN
-54526,52046,Ladysmith,WI,450,Marshfield,WI
-54527,52069,Park Falls,WI,450,Marshfield,WI
-54529,52079,Rhinelander,WI,456,Wausau,WI
-54530,52046,Ladysmith,WI,450,Marshfield,WI
-54531,52108,Woodruff,WI,450,Marshfield,WI
-54532,52079,Rhinelander,WI,456,Wausau,WI
-54534,23055,Ironwood,MI,250,Duluth,MN
-54536,23055,Ironwood,MI,250,Duluth,MN
-54537,52069,Park Falls,WI,450,Marshfield,WI
-54538,52108,Woodruff,WI,450,Marshfield,WI
-54539,52108,Woodruff,WI,450,Marshfield,WI
-54540,52070,Phelps,WI,456,Wausau,WI
-54541,52079,Rhinelander,WI,456,Wausau,WI
-54542,23054,Iron River,MI,240,Marquette,MI
-54543,52079,Rhinelander,WI,456,Wausau,WI
-54545,52108,Woodruff,WI,450,Marshfield,WI
-54546,52005,Ashland,WI,250,Duluth,MN
-54547,52108,Woodruff,WI,450,Marshfield,WI
-54548,52108,Woodruff,WI,450,Marshfield,WI
-54550,23055,Ironwood,MI,250,Duluth,MN
-54552,52069,Park Falls,WI,450,Marshfield,WI
-54554,52070,Phelps,WI,456,Wausau,WI
-54555,52069,Park Falls,WI,450,Marshfield,WI
-54556,52053,Medford,WI,450,Marshfield,WI
-54557,52108,Woodruff,WI,450,Marshfield,WI
-54558,52108,Woodruff,WI,450,Marshfield,WI
-54559,52005,Ashland,WI,250,Duluth,MN
-54560,52108,Woodruff,WI,450,Marshfield,WI
-54561,52026,Eagle River,WI,456,Wausau,WI
-54562,52079,Rhinelander,WI,456,Wausau,WI
-54563,52046,Ladysmith,WI,450,Marshfield,WI
-54564,52079,Rhinelander,WI,456,Wausau,WI
-54565,23055,Ironwood,MI,250,Duluth,MN
-54566,52079,Rhinelander,WI,456,Wausau,WI
-54568,52108,Woodruff,WI,450,Marshfield,WI
-54601,52045,La Crosse,WI,448,La Crosse,WI
-54602,52045,La Crosse,WI,448,La Crosse,WI
-54603,52045,La Crosse,WI,448,La Crosse,WI
-54610,24127,Wabasha,MN,253,Rochester,MN
-54611,52012,Black River Falls,WI,450,Marshfield,WI
-54612,52004,Arcadia,WI,448,La Crosse,WI
-54613,52033,Friendship,WI,449,Madison,WI
-54614,52045,La Crosse,WI,448,La Crosse,WI
-54615,52012,Black River Falls,WI,450,Marshfield,WI
-54616,52105,Whitehall,WI,448,La Crosse,WI
-54618,52052,Mauston,WI,449,Madison,WI
-54619,52045,La Crosse,WI,448,La Crosse,WI
-54620,52045,La Crosse,WI,448,La Crosse,WI
-54621,52045,La Crosse,WI,448,La Crosse,WI
-54622,24137,Winona,MN,448,La Crosse,WI
-54623,52097,Viroqua,WI,448,La Crosse,WI
-54624,52045,La Crosse,WI,448,La Crosse,WI
-54625,52045,La Crosse,WI,448,La Crosse,WI
-54626,52075,Prairie Du Chien,WI,448,La Crosse,WI
-54627,52045,La Crosse,WI,448,La Crosse,WI
-54628,52045,La Crosse,WI,448,La Crosse,WI
-54629,24137,Winona,MN,448,La Crosse,WI
-54630,52045,La Crosse,WI,448,La Crosse,WI
-54631,52097,Viroqua,WI,448,La Crosse,WI
-54632,52045,La Crosse,WI,448,La Crosse,WI
-54634,52038,Hillsboro,WI,449,Madison,WI
-54635,52012,Black River Falls,WI,450,Marshfield,WI
-54636,52045,La Crosse,WI,448,La Crosse,WI
-54637,52052,Mauston,WI,449,Madison,WI
-54638,52038,Hillsboro,WI,449,Madison,WI
-54639,52097,Viroqua,WI,448,La Crosse,WI
-54641,52095,Tomah,WI,448,La Crosse,WI
-54642,52045,La Crosse,WI,448,La Crosse,WI
-54643,52012,Black River Falls,WI,450,Marshfield,WI
-54644,52045,La Crosse,WI,448,La Crosse,WI
-54645,52097,Viroqua,WI,448,La Crosse,WI
-54646,52052,Mauston,WI,449,Madison,WI
-54648,52045,La Crosse,WI,448,La Crosse,WI
-54649,52095,Tomah,WI,448,La Crosse,WI
-54650,52045,La Crosse,WI,448,La Crosse,WI
-54651,52045,La Crosse,WI,448,La Crosse,WI
-54652,52097,Viroqua,WI,448,La Crosse,WI
-54653,52045,La Crosse,WI,448,La Crosse,WI
-54654,52097,Viroqua,WI,448,La Crosse,WI
-54655,52097,Viroqua,WI,448,La Crosse,WI
-54656,52045,La Crosse,WI,448,La Crosse,WI
-54657,52075,Prairie Du Chien,WI,448,La Crosse,WI
-54658,52045,La Crosse,WI,448,La Crosse,WI
-54659,52012,Black River Falls,WI,450,Marshfield,WI
-54660,52095,Tomah,WI,448,La Crosse,WI
-54661,52045,La Crosse,WI,448,La Crosse,WI
-54662,52095,Tomah,WI,448,La Crosse,WI
-54664,52097,Viroqua,WI,448,La Crosse,WI
-54665,52097,Viroqua,WI,448,La Crosse,WI
-54666,52095,Tomah,WI,448,La Crosse,WI
-54667,52097,Viroqua,WI,448,La Crosse,WI
-54669,52045,La Crosse,WI,448,La Crosse,WI
-54670,52045,La Crosse,WI,448,La Crosse,WI
-54701,52027,Eau Claire,WI,251,Minneapolis,MN
-54702,52027,Eau Claire,WI,251,Minneapolis,MN
-54703,52027,Eau Claire,WI,251,Minneapolis,MN
-54720,52027,Eau Claire,WI,251,Minneapolis,MN
-54721,52025,Durand,WI,253,Rochester,MN
-54722,52018,Chippewa Falls,WI,450,Marshfield,WI
-54723,24098,Red Wing,MN,253,Rochester,MN
-54724,52013,Bloomer,WI,251,Minneapolis,MN
-54725,52055,Menomonie,WI,251,Minneapolis,MN
-54726,52018,Chippewa Falls,WI,450,Marshfield,WI
-54727,52018,Chippewa Falls,WI,450,Marshfield,WI
-54728,52008,Barron,WI,251,Minneapolis,MN
-54729,52018,Chippewa Falls,WI,450,Marshfield,WI
-54730,52027,Eau Claire,WI,251,Minneapolis,MN
-54731,52046,Ladysmith,WI,450,Marshfield,WI
-54732,52018,Chippewa Falls,WI,450,Marshfield,WI
-54733,52008,Barron,WI,251,Minneapolis,MN
-54734,52055,Menomonie,WI,251,Minneapolis,MN
-54735,52055,Menomonie,WI,251,Minneapolis,MN
-54736,52025,Durand,WI,253,Rochester,MN
-54737,52025,Durand,WI,253,Rochester,MN
-54738,52027,Eau Claire,WI,251,Minneapolis,MN
-54739,52027,Eau Claire,WI,251,Minneapolis,MN
-54740,52055,Menomonie,WI,251,Minneapolis,MN
-54741,52027,Eau Claire,WI,251,Minneapolis,MN
-54742,52027,Eau Claire,WI,251,Minneapolis,MN
-54743,52027,Eau Claire,WI,251,Minneapolis,MN
-54745,52018,Chippewa Falls,WI,450,Marshfield,WI
-54746,52051,Marshfield,WI,450,Marshfield,WI
-54747,52105,Whitehall,WI,448,La Crosse,WI
-54748,52018,Chippewa Falls,WI,450,Marshfield,WI
-54749,52055,Menomonie,WI,251,Minneapolis,MN
-54750,24098,Red Wing,MN,253,Rochester,MN
-54751,52055,Menomonie,WI,251,Minneapolis,MN
-54754,52012,Black River Falls,WI,450,Marshfield,WI
-54755,52027,Eau Claire,WI,251,Minneapolis,MN
-54756,24127,Wabasha,MN,253,Rochester,MN
-54757,52013,Bloomer,WI,251,Minneapolis,MN
-54758,52027,Eau Claire,WI,251,Minneapolis,MN
-54759,52025,Durand,WI,253,Rochester,MN
-54760,52105,Whitehall,WI,448,La Crosse,WI
-54761,52025,Durand,WI,253,Rochester,MN
-54762,52008,Barron,WI,251,Minneapolis,MN
-54763,52008,Barron,WI,251,Minneapolis,MN
-54764,52027,Eau Claire,WI,251,Minneapolis,MN
-54765,52008,Barron,WI,251,Minneapolis,MN
-54766,52046,Ladysmith,WI,450,Marshfield,WI
-54767,52055,Menomonie,WI,251,Minneapolis,MN
-54768,52090,Stanley,WI,450,Marshfield,WI
-54769,24098,Red Wing,MN,253,Rochester,MN
-54770,52027,Eau Claire,WI,251,Minneapolis,MN
-54771,52090,Stanley,WI,450,Marshfield,WI
-54772,52055,Menomonie,WI,251,Minneapolis,MN
-54773,52105,Whitehall,WI,448,La Crosse,WI
-54774,52018,Chippewa Falls,WI,450,Marshfield,WI
-54801,52088,Spooner,WI,251,Minneapolis,MN
-54805,52022,Cumberland,WI,251,Minneapolis,MN
-54806,52005,Ashland,WI,250,Duluth,MN
-54810,52089,St. Croix Falls,WI,256,St. Paul,MN
-54812,52008,Barron,WI,251,Minneapolis,MN
-54813,52086,Shell Lake,WI,251,Minneapolis,MN
-54814,52005,Ashland,WI,250,Duluth,MN
-54816,52005,Ashland,WI,250,Duluth,MN
-54817,52080,Rice Lake,WI,450,Marshfield,WI
-54819,52046,Ladysmith,WI,450,Marshfield,WI
-54820,24033,Duluth,MN,250,Duluth,MN
-54821,52005,Ashland,WI,250,Duluth,MN
-54822,52080,Rice Lake,WI,450,Marshfield,WI
-54824,52089,St. Croix Falls,WI,256,St. Paul,MN
-54826,52022,Cumberland,WI,251,Minneapolis,MN
-54827,52005,Ashland,WI,250,Duluth,MN
-54828,52037,Hayward,WI,250,Duluth,MN
-54829,52022,Cumberland,WI,251,Minneapolis,MN
-54830,52034,Grantsburg,WI,251,Minneapolis,MN
-54832,52005,Ashland,WI,250,Duluth,MN
-54835,52080,Rice Lake,WI,450,Marshfield,WI
-54836,24033,Duluth,MN,250,Duluth,MN
-54837,52086,Shell Lake,WI,251,Minneapolis,MN
-54838,24033,Duluth,MN,250,Duluth,MN
-54839,52005,Ashland,WI,250,Duluth,MN
-54840,52034,Grantsburg,WI,251,Minneapolis,MN
-54841,52080,Rice Lake,WI,450,Marshfield,WI
-54842,24033,Duluth,MN,250,Duluth,MN
-54843,52037,Hayward,WI,250,Duluth,MN
-54844,52005,Ashland,WI,250,Duluth,MN
-54845,52086,Shell Lake,WI,251,Minneapolis,MN
-54846,52005,Ashland,WI,250,Duluth,MN
-54847,52005,Ashland,WI,250,Duluth,MN
-54848,52046,Ladysmith,WI,450,Marshfield,WI
-54849,24033,Duluth,MN,250,Duluth,MN
-54850,52005,Ashland,WI,250,Duluth,MN
-54853,52089,St. Croix Falls,WI,256,St. Paul,MN
-54854,24033,Duluth,MN,250,Duluth,MN
-54855,52005,Ashland,WI,250,Duluth,MN
-54856,52005,Ashland,WI,250,Duluth,MN
-54857,52080,Rice Lake,WI,450,Marshfield,WI
-54858,52089,St. Croix Falls,WI,256,St. Paul,MN
-54859,52088,Spooner,WI,251,Minneapolis,MN
-54861,52005,Ashland,WI,250,Duluth,MN
-54862,52046,Ladysmith,WI,450,Marshfield,WI
-54864,24033,Duluth,MN,250,Duluth,MN
-54865,52005,Ashland,WI,250,Duluth,MN
-54867,52080,Rice Lake,WI,450,Marshfield,WI
-54868,52080,Rice Lake,WI,450,Marshfield,WI
-54870,52080,Rice Lake,WI,450,Marshfield,WI
-54871,52086,Shell Lake,WI,251,Minneapolis,MN
-54872,52086,Shell Lake,WI,251,Minneapolis,MN
-54873,24033,Duluth,MN,250,Duluth,MN
-54874,24033,Duluth,MN,250,Duluth,MN
-54875,52088,Spooner,WI,251,Minneapolis,MN
-54876,52037,Hayward,WI,250,Duluth,MN
-54880,24033,Duluth,MN,250,Duluth,MN
-54888,52088,Spooner,WI,251,Minneapolis,MN
-54889,52022,Cumberland,WI,251,Minneapolis,MN
-54890,24033,Duluth,MN,250,Duluth,MN
-54891,52005,Ashland,WI,250,Duluth,MN
-54893,52034,Grantsburg,WI,251,Minneapolis,MN
-54895,52080,Rice Lake,WI,450,Marshfield,WI
-54896,52046,Ladysmith,WI,450,Marshfield,WI
-54901,52067,Oshkosh,WI,452,Neenah,WI
-54902,52067,Oshkosh,WI,452,Neenah,WI
-54903,52067,Oshkosh,WI,452,Neenah,WI
-54904,52067,Oshkosh,WI,452,Neenah,WI
-54906,52067,Oshkosh,WI,452,Neenah,WI
-54909,52091,Stevens Point,WI,450,Marshfield,WI
-54911,52003,Appleton,WI,446,Appleton,WI
-54912,52003,Appleton,WI,446,Appleton,WI
-54913,52003,Appleton,WI,446,Appleton,WI
-54914,52003,Appleton,WI,446,Appleton,WI
-54915,52003,Appleton,WI,446,Appleton,WI
-54919,52003,Appleton,WI,446,Appleton,WI
-54921,52091,Stevens Point,WI,450,Marshfield,WI
-54922,52061,New London,WI,446,Appleton,WI
-54923,52011,Berlin,WI,452,Neenah,WI
-54926,52084,Shawano,WI,446,Appleton,WI
-54927,52067,Oshkosh,WI,452,Neenah,WI
-54928,52084,Shawano,WI,446,Appleton,WI
-54929,52003,Appleton,WI,446,Appleton,WI
-54930,52091,Stevens Point,WI,450,Marshfield,WI
-54931,52003,Appleton,WI,446,Appleton,WI
-54932,52030,Fond Du Lac,WI,451,Milwaukee,WI
-54933,52003,Appleton,WI,446,Appleton,WI
-54935,52030,Fond Du Lac,WI,451,Milwaukee,WI
-54936,52030,Fond Du Lac,WI,451,Milwaukee,WI
-54937,52030,Fond Du Lac,WI,451,Milwaukee,WI
-54940,52003,Appleton,WI,446,Appleton,WI
-54941,52011,Berlin,WI,452,Neenah,WI
-54942,52003,Appleton,WI,446,Appleton,WI
-54943,52091,Stevens Point,WI,450,Marshfield,WI
-54944,52003,Appleton,WI,446,Appleton,WI
-54945,52100,Waupaca,WI,446,Appleton,WI
-54946,52100,Waupaca,WI,446,Appleton,WI
-54947,52059,Neenah,WI,452,Neenah,WI
-54948,52003,Appleton,WI,446,Appleton,WI
-54949,52061,New London,WI,446,Appleton,WI
-54950,52003,Appleton,WI,446,Appleton,WI
-54952,52059,Neenah,WI,452,Neenah,WI
-54956,52059,Neenah,WI,452,Neenah,WI
-54957,52059,Neenah,WI,452,Neenah,WI
-54960,52011,Berlin,WI,452,Neenah,WI
-54961,52061,New London,WI,446,Appleton,WI
-54962,52100,Waupaca,WI,446,Appleton,WI
-54963,52067,Oshkosh,WI,452,Neenah,WI
-54964,52067,Oshkosh,WI,452,Neenah,WI
-54965,52011,Berlin,WI,452,Neenah,WI
-54966,52091,Stevens Point,WI,450,Marshfield,WI
-54967,52011,Berlin,WI,452,Neenah,WI
-54968,52011,Berlin,WI,452,Neenah,WI
-54969,52003,Appleton,WI,446,Appleton,WI
-54970,52011,Berlin,WI,452,Neenah,WI
-54971,52082,Ripon,WI,452,Neenah,WI
-54974,52030,Fond Du Lac,WI,451,Milwaukee,WI
-54976,52011,Berlin,WI,452,Neenah,WI
-54977,52100,Waupaca,WI,446,Appleton,WI
-54978,52084,Shawano,WI,446,Appleton,WI
-54979,52030,Fond Du Lac,WI,451,Milwaukee,WI
-54980,52067,Oshkosh,WI,452,Neenah,WI
-54981,52100,Waupaca,WI,446,Appleton,WI
-54982,52011,Berlin,WI,452,Neenah,WI
-54983,52100,Waupaca,WI,446,Appleton,WI
-54984,52106,Wild Rose,WI,452,Neenah,WI
-54985,52067,Oshkosh,WI,452,Neenah,WI
-54986,52067,Oshkosh,WI,452,Neenah,WI
-54990,52100,Waupaca,WI,446,Appleton,WI
-55001,24116,St. Paul,MN,256,St. Paul,MN
-55003,24120,Stillwater,MN,256,St. Paul,MN
-55005,24076,Minneapolis,MN,251,Minneapolis,MN
-55006,24021,Cambridge,MN,251,Minneapolis,MN
-55007,24081,Mora,MN,251,Minneapolis,MN
-55008,24021,Cambridge,MN,251,Minneapolis,MN
-55009,24023,Cannon Falls,MN,253,Rochester,MN
-55010,24039,Farmington,MN,256,St. Paul,MN
-55011,24076,Minneapolis,MN,251,Minneapolis,MN
-55012,24024,Chisago City,MN,256,St. Paul,MN
-55013,24024,Chisago City,MN,256,St. Paul,MN
-55014,24076,Minneapolis,MN,251,Minneapolis,MN
-55016,24116,St. Paul,MN,256,St. Paul,MN
-55017,24097,Princeton,MN,251,Minneapolis,MN
-55018,24086,Northfield,MN,251,Minneapolis,MN
-55019,24086,Northfield,MN,251,Minneapolis,MN
-55020,24086,Northfield,MN,251,Minneapolis,MN
-55021,24038,Faribault,MN,251,Minneapolis,MN
-55024,24039,Farmington,MN,256,St. Paul,MN
-55025,24041,Forest Lake,MN,256,St. Paul,MN
-55026,24098,Red Wing,MN,253,Rochester,MN
-55027,24101,Rochester,MN,253,Rochester,MN
-55029,24021,Cambridge,MN,251,Minneapolis,MN
-55030,24103,Rush City,MN,251,Minneapolis,MN
-55031,24052,Hastings,MN,256,St. Paul,MN
-55032,24021,Cambridge,MN,251,Minneapolis,MN
-55033,24052,Hastings,MN,256,St. Paul,MN
-55036,24103,Rush City,MN,251,Minneapolis,MN
-55037,24081,Mora,MN,251,Minneapolis,MN
-55038,24116,St. Paul,MN,256,St. Paul,MN
-55040,24021,Cambridge,MN,251,Minneapolis,MN
-55041,24061,Lake City,MN,253,Rochester,MN
-55042,24116,St. Paul,MN,256,St. Paul,MN
-55043,24116,St. Paul,MN,256,St. Paul,MN
-55044,24020,Burnsville,MN,251,Minneapolis,MN
-55045,24024,Chisago City,MN,256,St. Paul,MN
-55046,24084,New Prague,MN,251,Minneapolis,MN
-55047,24116,St. Paul,MN,256,St. Paul,MN
-55049,24090,Owatonna,MN,253,Rochester,MN
-55051,24081,Mora,MN,251,Minneapolis,MN
-55052,24038,Faribault,MN,251,Minneapolis,MN
-55053,24038,Faribault,MN,251,Minneapolis,MN
-55054,24086,Northfield,MN,251,Minneapolis,MN
-55055,24116,St. Paul,MN,256,St. Paul,MN
-55056,24024,Chisago City,MN,256,St. Paul,MN
-55057,24086,Northfield,MN,251,Minneapolis,MN
-55060,24090,Owatonna,MN,253,Rochester,MN
-55063,24103,Rush City,MN,251,Minneapolis,MN
-55065,24023,Cannon Falls,MN,253,Rochester,MN
-55066,24098,Red Wing,MN,253,Rochester,MN
-55067,24103,Rush City,MN,251,Minneapolis,MN
-55068,24020,Burnsville,MN,251,Minneapolis,MN
-55069,24103,Rush City,MN,251,Minneapolis,MN
-55070,24076,Minneapolis,MN,251,Minneapolis,MN
-55071,24116,St. Paul,MN,256,St. Paul,MN
-55072,24104,Sandstone,MN,251,Minneapolis,MN
-55073,24116,St. Paul,MN,256,St. Paul,MN
-55074,52089,St. Croix Falls,WI,256,St. Paul,MN
-55075,24116,St. Paul,MN,256,St. Paul,MN
-55076,24116,St. Paul,MN,256,St. Paul,MN
-55077,24116,St. Paul,MN,256,St. Paul,MN
-55078,24024,Chisago City,MN,256,St. Paul,MN
-55079,24024,Chisago City,MN,256,St. Paul,MN
-55080,24021,Cambridge,MN,251,Minneapolis,MN
-55082,24120,Stillwater,MN,256,St. Paul,MN
-55083,24120,Stillwater,MN,256,St. Paul,MN
-55084,52089,St. Croix Falls,WI,256,St. Paul,MN
-55085,24052,Hastings,MN,256,St. Paul,MN
-55087,24038,Faribault,MN,251,Minneapolis,MN
-55088,24086,Northfield,MN,251,Minneapolis,MN
-55089,24098,Red Wing,MN,253,Rochester,MN
-55090,24072,Maplewood,MN,256,St. Paul,MN
-55092,24024,Chisago City,MN,256,St. Paul,MN
-55101,24116,St. Paul,MN,256,St. Paul,MN
-55102,24116,St. Paul,MN,256,St. Paul,MN
-55103,24116,St. Paul,MN,256,St. Paul,MN
-55104,24116,St. Paul,MN,256,St. Paul,MN
-55105,24116,St. Paul,MN,256,St. Paul,MN
-55106,24116,St. Paul,MN,256,St. Paul,MN
-55107,24116,St. Paul,MN,256,St. Paul,MN
-55108,24116,St. Paul,MN,256,St. Paul,MN
-55109,24072,Maplewood,MN,256,St. Paul,MN
-55110,24072,Maplewood,MN,256,St. Paul,MN
-55111,24076,Minneapolis,MN,251,Minneapolis,MN
-55112,24076,Minneapolis,MN,251,Minneapolis,MN
-55113,24116,St. Paul,MN,256,St. Paul,MN
-55114,24116,St. Paul,MN,256,St. Paul,MN
-55115,24072,Maplewood,MN,256,St. Paul,MN
-55116,24116,St. Paul,MN,256,St. Paul,MN
-55117,24116,St. Paul,MN,256,St. Paul,MN
-55118,24116,St. Paul,MN,256,St. Paul,MN
-55119,24116,St. Paul,MN,256,St. Paul,MN
-55120,24116,St. Paul,MN,256,St. Paul,MN
-55121,24076,Minneapolis,MN,251,Minneapolis,MN
-55122,24076,Minneapolis,MN,251,Minneapolis,MN
-55123,24116,St. Paul,MN,256,St. Paul,MN
-55124,24020,Burnsville,MN,251,Minneapolis,MN
-55125,24116,St. Paul,MN,256,St. Paul,MN
-55126,24116,St. Paul,MN,256,St. Paul,MN
-55127,24116,St. Paul,MN,256,St. Paul,MN
-55128,24072,Maplewood,MN,256,St. Paul,MN
-55129,24116,St. Paul,MN,256,St. Paul,MN
-55130,24116,St. Paul,MN,256,St. Paul,MN
-55131,24116,St. Paul,MN,256,St. Paul,MN
-55133,24116,St. Paul,MN,256,St. Paul,MN
-55144,24116,St. Paul,MN,256,St. Paul,MN
-55145,24116,St. Paul,MN,256,St. Paul,MN
-55146,24116,St. Paul,MN,256,St. Paul,MN
-55150,24116,St. Paul,MN,256,St. Paul,MN
-55155,24116,St. Paul,MN,256,St. Paul,MN
-55164,24116,St. Paul,MN,256,St. Paul,MN
-55165,24116,St. Paul,MN,256,St. Paul,MN
-55170,24116,St. Paul,MN,256,St. Paul,MN
-55175,24116,St. Paul,MN,256,St. Paul,MN
-55301,24076,Minneapolis,MN,251,Minneapolis,MN
-55302,24019,Buffalo,MN,251,Minneapolis,MN
-55303,24076,Minneapolis,MN,251,Minneapolis,MN
-55304,24076,Minneapolis,MN,251,Minneapolis,MN
-55305,24115,St. Louis Park,MN,251,Minneapolis,MN
-55306,24020,Burnsville,MN,251,Minneapolis,MN
-55307,24008,Arlington,MN,251,Minneapolis,MN
-55308,24113,St. Cloud,MN,254,St. Cloud,MN
-55309,24078,Monticello,MN,251,Minneapolis,MN
-55310,24087,Olivia,MN,251,Minneapolis,MN
-55311,24076,Minneapolis,MN,251,Minneapolis,MN
-55312,24043,Glencoe,MN,251,Minneapolis,MN
-55313,24019,Buffalo,MN,251,Minneapolis,MN
-55314,24056,Hutchinson,MN,251,Minneapolis,MN
-55315,24106,Shakopee,MN,251,Minneapolis,MN
-55316,24076,Minneapolis,MN,251,Minneapolis,MN
-55317,24076,Minneapolis,MN,251,Minneapolis,MN
-55318,24106,Shakopee,MN,251,Minneapolis,MN
-55319,24113,St. Cloud,MN,254,St. Cloud,MN
-55320,24113,St. Cloud,MN,254,St. Cloud,MN
-55321,24064,Litchfield,MN,251,Minneapolis,MN
-55322,24128,Waconia,MN,251,Minneapolis,MN
-55323,24076,Minneapolis,MN,251,Minneapolis,MN
-55324,24056,Hutchinson,MN,251,Minneapolis,MN
-55325,24056,Hutchinson,MN,251,Minneapolis,MN
-55327,24076,Minneapolis,MN,251,Minneapolis,MN
-55328,24128,Waconia,MN,251,Minneapolis,MN
-55329,24093,Paynesville,MN,254,St. Cloud,MN
-55330,24076,Minneapolis,MN,251,Minneapolis,MN
-55331,24115,St. Louis Park,MN,251,Minneapolis,MN
-55332,24085,New Ulm,MN,251,Minneapolis,MN
-55333,24099,Redwood Falls,MN,251,Minneapolis,MN
-55334,24008,Arlington,MN,251,Minneapolis,MN
-55335,24085,New Ulm,MN,251,Minneapolis,MN
-55336,24043,Glencoe,MN,251,Minneapolis,MN
-55337,24020,Burnsville,MN,251,Minneapolis,MN
-55338,24128,Waconia,MN,251,Minneapolis,MN
-55339,24128,Waconia,MN,251,Minneapolis,MN
-55340,24076,Minneapolis,MN,251,Minneapolis,MN
-55341,24076,Minneapolis,MN,251,Minneapolis,MN
-55342,24087,Olivia,MN,251,Minneapolis,MN
-55343,24115,St. Louis Park,MN,251,Minneapolis,MN
-55344,24076,Minneapolis,MN,251,Minneapolis,MN
-55345,24115,St. Louis Park,MN,251,Minneapolis,MN
-55346,24076,Minneapolis,MN,251,Minneapolis,MN
-55347,24076,Minneapolis,MN,251,Minneapolis,MN
-55349,24128,Waconia,MN,251,Minneapolis,MN
-55350,24056,Hutchinson,MN,251,Minneapolis,MN
-55352,24106,Shakopee,MN,251,Minneapolis,MN
-55353,24113,St. Cloud,MN,254,St. Cloud,MN
-55354,24043,Glencoe,MN,251,Minneapolis,MN
-55355,24064,Litchfield,MN,251,Minneapolis,MN
-55356,24076,Minneapolis,MN,251,Minneapolis,MN
-55357,24128,Waconia,MN,251,Minneapolis,MN
-55358,24019,Buffalo,MN,251,Minneapolis,MN
-55359,24128,Waconia,MN,251,Minneapolis,MN
-55360,24128,Waconia,MN,251,Minneapolis,MN
-55361,24115,St. Louis Park,MN,251,Minneapolis,MN
-55362,24078,Monticello,MN,251,Minneapolis,MN
-55363,24128,Waconia,MN,251,Minneapolis,MN
-55364,24128,Waconia,MN,251,Minneapolis,MN
-55366,24043,Glencoe,MN,251,Minneapolis,MN
-55367,24128,Waconia,MN,251,Minneapolis,MN
-55368,24128,Waconia,MN,251,Minneapolis,MN
-55369,24076,Minneapolis,MN,251,Minneapolis,MN
-55370,24043,Glencoe,MN,251,Minneapolis,MN
-55371,24097,Princeton,MN,251,Minneapolis,MN
-55372,24106,Shakopee,MN,251,Minneapolis,MN
-55373,24019,Buffalo,MN,251,Minneapolis,MN
-55374,24076,Minneapolis,MN,251,Minneapolis,MN
-55375,24128,Waconia,MN,251,Minneapolis,MN
-55376,24076,Minneapolis,MN,251,Minneapolis,MN
-55377,24113,St. Cloud,MN,254,St. Cloud,MN
-55378,24076,Minneapolis,MN,251,Minneapolis,MN
-55379,24106,Shakopee,MN,251,Minneapolis,MN
-55381,24056,Hutchinson,MN,251,Minneapolis,MN
-55382,24113,St. Cloud,MN,254,St. Cloud,MN
-55384,24128,Waconia,MN,251,Minneapolis,MN
-55385,24043,Glencoe,MN,251,Minneapolis,MN
-55386,24128,Waconia,MN,251,Minneapolis,MN
-55387,24128,Waconia,MN,251,Minneapolis,MN
-55388,24128,Waconia,MN,251,Minneapolis,MN
-55389,24113,St. Cloud,MN,254,St. Cloud,MN
-55390,24128,Waconia,MN,251,Minneapolis,MN
-55391,24115,St. Louis Park,MN,251,Minneapolis,MN
-55392,24115,St. Louis Park,MN,251,Minneapolis,MN
-55395,24128,Waconia,MN,251,Minneapolis,MN
-55396,24008,Arlington,MN,251,Minneapolis,MN
-55397,24128,Waconia,MN,251,Minneapolis,MN
-55398,24097,Princeton,MN,251,Minneapolis,MN
-55401,24076,Minneapolis,MN,251,Minneapolis,MN
-55402,24076,Minneapolis,MN,251,Minneapolis,MN
-55403,24076,Minneapolis,MN,251,Minneapolis,MN
-55404,24076,Minneapolis,MN,251,Minneapolis,MN
-55405,24076,Minneapolis,MN,251,Minneapolis,MN
-55406,24076,Minneapolis,MN,251,Minneapolis,MN
-55407,24076,Minneapolis,MN,251,Minneapolis,MN
-55408,24076,Minneapolis,MN,251,Minneapolis,MN
-55409,24076,Minneapolis,MN,251,Minneapolis,MN
-55410,24076,Minneapolis,MN,251,Minneapolis,MN
-55411,24076,Minneapolis,MN,251,Minneapolis,MN
-55412,24076,Minneapolis,MN,251,Minneapolis,MN
-55413,24076,Minneapolis,MN,251,Minneapolis,MN
-55414,24076,Minneapolis,MN,251,Minneapolis,MN
-55415,24076,Minneapolis,MN,251,Minneapolis,MN
-55416,24076,Minneapolis,MN,251,Minneapolis,MN
-55417,24076,Minneapolis,MN,251,Minneapolis,MN
-55418,24076,Minneapolis,MN,251,Minneapolis,MN
-55419,24076,Minneapolis,MN,251,Minneapolis,MN
-55420,24076,Minneapolis,MN,251,Minneapolis,MN
-55421,24076,Minneapolis,MN,251,Minneapolis,MN
-55422,24100,Robbinsdale,MN,251,Minneapolis,MN
-55423,24076,Minneapolis,MN,251,Minneapolis,MN
-55424,24076,Minneapolis,MN,251,Minneapolis,MN
-55425,24076,Minneapolis,MN,251,Minneapolis,MN
-55426,24115,St. Louis Park,MN,251,Minneapolis,MN
-55427,24100,Robbinsdale,MN,251,Minneapolis,MN
-55428,24100,Robbinsdale,MN,251,Minneapolis,MN
-55429,24100,Robbinsdale,MN,251,Minneapolis,MN
-55430,24076,Minneapolis,MN,251,Minneapolis,MN
-55431,24076,Minneapolis,MN,251,Minneapolis,MN
-55432,24076,Minneapolis,MN,251,Minneapolis,MN
-55433,24076,Minneapolis,MN,251,Minneapolis,MN
-55434,24076,Minneapolis,MN,251,Minneapolis,MN
-55435,24076,Minneapolis,MN,251,Minneapolis,MN
-55436,24076,Minneapolis,MN,251,Minneapolis,MN
-55437,24076,Minneapolis,MN,251,Minneapolis,MN
-55438,24076,Minneapolis,MN,251,Minneapolis,MN
-55439,24076,Minneapolis,MN,251,Minneapolis,MN
-55440,24076,Minneapolis,MN,251,Minneapolis,MN
-55441,24076,Minneapolis,MN,251,Minneapolis,MN
-55442,24100,Robbinsdale,MN,251,Minneapolis,MN
-55443,24076,Minneapolis,MN,251,Minneapolis,MN
-55444,24076,Minneapolis,MN,251,Minneapolis,MN
-55445,24076,Minneapolis,MN,251,Minneapolis,MN
-55446,24076,Minneapolis,MN,251,Minneapolis,MN
-55447,24115,St. Louis Park,MN,251,Minneapolis,MN
-55448,24076,Minneapolis,MN,251,Minneapolis,MN
-55449,24076,Minneapolis,MN,251,Minneapolis,MN
-55450,24076,Minneapolis,MN,251,Minneapolis,MN
-55454,24076,Minneapolis,MN,251,Minneapolis,MN
-55455,24076,Minneapolis,MN,251,Minneapolis,MN
-55458,24076,Minneapolis,MN,251,Minneapolis,MN
-55459,24076,Minneapolis,MN,251,Minneapolis,MN
-55460,24076,Minneapolis,MN,251,Minneapolis,MN
-55467,24076,Minneapolis,MN,251,Minneapolis,MN
-55470,24076,Minneapolis,MN,251,Minneapolis,MN
-55472,24076,Minneapolis,MN,251,Minneapolis,MN
-55474,24076,Minneapolis,MN,251,Minneapolis,MN
-55478,24076,Minneapolis,MN,251,Minneapolis,MN
-55479,24076,Minneapolis,MN,251,Minneapolis,MN
-55480,24076,Minneapolis,MN,251,Minneapolis,MN
-55483,24076,Minneapolis,MN,251,Minneapolis,MN
-55484,24076,Minneapolis,MN,251,Minneapolis,MN
-55485,24076,Minneapolis,MN,251,Minneapolis,MN
-55486,24076,Minneapolis,MN,251,Minneapolis,MN
-55487,24076,Minneapolis,MN,251,Minneapolis,MN
-55488,24076,Minneapolis,MN,251,Minneapolis,MN
-55554,24128,Waconia,MN,251,Minneapolis,MN
-55569,24076,Minneapolis,MN,251,Minneapolis,MN
-55572,24128,Waconia,MN,251,Minneapolis,MN
-55573,24128,Waconia,MN,251,Minneapolis,MN
-55575,24128,Waconia,MN,251,Minneapolis,MN
-55577,24128,Waconia,MN,251,Minneapolis,MN
-55592,24128,Waconia,MN,251,Minneapolis,MN
-55593,24128,Waconia,MN,251,Minneapolis,MN
-55599,24076,Minneapolis,MN,251,Minneapolis,MN
-55601,24033,Duluth,MN,250,Duluth,MN
-55602,24033,Duluth,MN,250,Duluth,MN
-55603,24033,Duluth,MN,250,Duluth,MN
-55604,24046,Grand Marais,MN,250,Duluth,MN
-55605,24046,Grand Marais,MN,250,Duluth,MN
-55606,24033,Duluth,MN,250,Duluth,MN
-55607,24035,Ely,MN,250,Duluth,MN
-55609,24124,Two Harbors,MN,250,Duluth,MN
-55612,24046,Grand Marais,MN,250,Duluth,MN
-55613,24033,Duluth,MN,250,Duluth,MN
-55614,24033,Duluth,MN,250,Duluth,MN
-55615,24033,Duluth,MN,250,Duluth,MN
-55616,24124,Two Harbors,MN,250,Duluth,MN
-55702,24033,Duluth,MN,250,Duluth,MN
-55703,24027,Cook,MN,250,Duluth,MN
-55704,24080,Moose Lake,MN,250,Duluth,MN
-55705,24009,Aurora,MN,250,Duluth,MN
-55706,24033,Duluth,MN,250,Duluth,MN
-55707,24033,Duluth,MN,250,Duluth,MN
-55708,24126,Virginia,MN,250,Duluth,MN
-55709,24047,Grand Rapids,MN,251,Minneapolis,MN
-55710,24126,Virginia,MN,250,Duluth,MN
-55711,24033,Duluth,MN,250,Duluth,MN
-55712,24080,Moose Lake,MN,250,Duluth,MN
-55713,24055,Hibbing,MN,251,Minneapolis,MN
-55716,24047,Grand Rapids,MN,251,Minneapolis,MN
-55717,24033,Duluth,MN,250,Duluth,MN
-55718,24025,Cloquet,MN,250,Duluth,MN
-55719,24055,Hibbing,MN,251,Minneapolis,MN
-55720,24025,Cloquet,MN,250,Duluth,MN
-55721,24047,Grand Rapids,MN,251,Minneapolis,MN
-55722,24047,Grand Rapids,MN,251,Minneapolis,MN
-55723,24027,Cook,MN,250,Duluth,MN
-55724,24033,Duluth,MN,250,Duluth,MN
-55725,24055,Hibbing,MN,251,Minneapolis,MN
-55726,24033,Duluth,MN,250,Duluth,MN
-55730,24047,Grand Rapids,MN,251,Minneapolis,MN
-55731,24035,Ely,MN,250,Duluth,MN
-55732,24126,Virginia,MN,250,Duluth,MN
-55733,24033,Duluth,MN,250,Duluth,MN
-55734,24126,Virginia,MN,250,Duluth,MN
-55735,24080,Moose Lake,MN,250,Duluth,MN
-55736,24033,Duluth,MN,250,Duluth,MN
-55738,24126,Virginia,MN,250,Duluth,MN
-55741,24126,Virginia,MN,250,Duluth,MN
-55742,24047,Grand Rapids,MN,251,Minneapolis,MN
-55744,24047,Grand Rapids,MN,251,Minneapolis,MN
-55745,24047,Grand Rapids,MN,251,Minneapolis,MN
-55746,24055,Hibbing,MN,251,Minneapolis,MN
-55748,24047,Grand Rapids,MN,251,Minneapolis,MN
-55749,24080,Moose Lake,MN,250,Duluth,MN
-55750,24009,Aurora,MN,250,Duluth,MN
-55751,24126,Virginia,MN,250,Duluth,MN
-55752,24047,Grand Rapids,MN,251,Minneapolis,MN
-55753,24055,Hibbing,MN,251,Minneapolis,MN
-55756,24080,Moose Lake,MN,250,Duluth,MN
-55757,24033,Duluth,MN,250,Duluth,MN
-55758,24126,Virginia,MN,250,Duluth,MN
-55760,24003,Aitkin,MN,251,Minneapolis,MN
-55763,24033,Duluth,MN,250,Duluth,MN
-55764,24047,Grand Rapids,MN,251,Minneapolis,MN
-55765,24033,Duluth,MN,250,Duluth,MN
-55766,24033,Duluth,MN,250,Duluth,MN
-55767,24080,Moose Lake,MN,250,Duluth,MN
-55768,24126,Virginia,MN,250,Duluth,MN
-55769,24055,Hibbing,MN,251,Minneapolis,MN
-55771,24027,Cook,MN,250,Duluth,MN
-55772,24057,International Falls,MN,251,Minneapolis,MN
-55775,24047,Grand Rapids,MN,251,Minneapolis,MN
-55777,24126,Virginia,MN,250,Duluth,MN
-55779,24033,Duluth,MN,250,Duluth,MN
-55780,24025,Cloquet,MN,250,Duluth,MN
-55781,24055,Hibbing,MN,251,Minneapolis,MN
-55782,24126,Virginia,MN,250,Duluth,MN
-55783,24080,Moose Lake,MN,250,Duluth,MN
-55784,24047,Grand Rapids,MN,251,Minneapolis,MN
-55785,24047,Grand Rapids,MN,251,Minneapolis,MN
-55786,24047,Grand Rapids,MN,251,Minneapolis,MN
-55787,24033,Duluth,MN,250,Duluth,MN
-55790,24126,Virginia,MN,250,Duluth,MN
-55791,24033,Duluth,MN,250,Duluth,MN
-55792,24126,Virginia,MN,250,Duluth,MN
-55793,24047,Grand Rapids,MN,251,Minneapolis,MN
-55795,24080,Moose Lake,MN,250,Duluth,MN
-55796,24035,Ely,MN,250,Duluth,MN
-55797,24033,Duluth,MN,250,Duluth,MN
-55798,24033,Duluth,MN,250,Duluth,MN
-55801,24033,Duluth,MN,250,Duluth,MN
-55802,24033,Duluth,MN,250,Duluth,MN
-55803,24033,Duluth,MN,250,Duluth,MN
-55804,24033,Duluth,MN,250,Duluth,MN
-55805,24033,Duluth,MN,250,Duluth,MN
-55806,24033,Duluth,MN,250,Duluth,MN
-55807,24033,Duluth,MN,250,Duluth,MN
-55808,24033,Duluth,MN,250,Duluth,MN
-55810,24033,Duluth,MN,250,Duluth,MN
-55811,24033,Duluth,MN,250,Duluth,MN
-55812,24033,Duluth,MN,250,Duluth,MN
-55814,24033,Duluth,MN,250,Duluth,MN
-55815,24033,Duluth,MN,250,Duluth,MN
-55816,24033,Duluth,MN,250,Duluth,MN
-55901,24101,Rochester,MN,253,Rochester,MN
-55902,24101,Rochester,MN,253,Rochester,MN
-55903,24101,Rochester,MN,253,Rochester,MN
-55904,24101,Rochester,MN,253,Rochester,MN
-55905,24101,Rochester,MN,253,Rochester,MN
-55906,24101,Rochester,MN,253,Rochester,MN
-55909,24101,Rochester,MN,253,Rochester,MN
-55910,24101,Rochester,MN,253,Rochester,MN
-55912,24010,Austin,MN,253,Rochester,MN
-55917,24101,Rochester,MN,253,Rochester,MN
-55918,24010,Austin,MN,253,Rochester,MN
-55919,52045,La Crosse,WI,448,La Crosse,WI
-55920,24101,Rochester,MN,253,Rochester,MN
-55921,52045,La Crosse,WI,448,La Crosse,WI
-55922,52045,La Crosse,WI,448,La Crosse,WI
-55923,24101,Rochester,MN,253,Rochester,MN
-55924,24101,Rochester,MN,253,Rochester,MN
-55925,52045,La Crosse,WI,448,La Crosse,WI
-55926,24101,Rochester,MN,253,Rochester,MN
-55927,24101,Rochester,MN,253,Rochester,MN
-55929,24101,Rochester,MN,253,Rochester,MN
-55931,52045,La Crosse,WI,448,La Crosse,WI
-55932,24101,Rochester,MN,253,Rochester,MN
-55933,24101,Rochester,MN,253,Rochester,MN
-55934,24101,Rochester,MN,253,Rochester,MN
-55935,24101,Rochester,MN,253,Rochester,MN
-55936,24101,Rochester,MN,253,Rochester,MN
-55939,24101,Rochester,MN,253,Rochester,MN
-55940,24101,Rochester,MN,253,Rochester,MN
-55941,52045,La Crosse,WI,448,La Crosse,WI
-55942,24137,Winona,MN,448,La Crosse,WI
-55943,52045,La Crosse,WI,448,La Crosse,WI
-55944,24101,Rochester,MN,253,Rochester,MN
-55945,24101,Rochester,MN,253,Rochester,MN
-55946,24038,Faribault,MN,251,Minneapolis,MN
-55947,52045,La Crosse,WI,448,La Crosse,WI
-55949,52045,La Crosse,WI,448,La Crosse,WI
-55950,24010,Austin,MN,253,Rochester,MN
-55951,24101,Rochester,MN,253,Rochester,MN
-55952,24137,Winona,MN,448,La Crosse,WI
-55953,24010,Austin,MN,253,Rochester,MN
-55954,52045,La Crosse,WI,448,La Crosse,WI
-55955,24101,Rochester,MN,253,Rochester,MN
-55956,24101,Rochester,MN,253,Rochester,MN
-55957,24101,Rochester,MN,253,Rochester,MN
-55959,24137,Winona,MN,448,La Crosse,WI
-55960,24101,Rochester,MN,253,Rochester,MN
-55961,24101,Rochester,MN,253,Rochester,MN
-55962,52045,La Crosse,WI,448,La Crosse,WI
-55963,24101,Rochester,MN,253,Rochester,MN
-55964,24101,Rochester,MN,253,Rochester,MN
-55965,24101,Rochester,MN,253,Rochester,MN
-55967,24101,Rochester,MN,253,Rochester,MN
-55968,24127,Wabasha,MN,253,Rochester,MN
-55969,24101,Rochester,MN,253,Rochester,MN
-55970,24101,Rochester,MN,253,Rochester,MN
-55971,52045,La Crosse,WI,448,La Crosse,WI
-55972,24101,Rochester,MN,253,Rochester,MN
-55973,24101,Rochester,MN,253,Rochester,MN
-55974,52045,La Crosse,WI,448,La Crosse,WI
-55975,24101,Rochester,MN,253,Rochester,MN
-55976,24101,Rochester,MN,253,Rochester,MN
-55977,24101,Rochester,MN,253,Rochester,MN
-55979,24101,Rochester,MN,253,Rochester,MN
-55981,24127,Wabasha,MN,253,Rochester,MN
-55982,24101,Rochester,MN,253,Rochester,MN
-55983,24101,Rochester,MN,253,Rochester,MN
-55985,24101,Rochester,MN,253,Rochester,MN
-55987,24137,Winona,MN,448,La Crosse,WI
-55988,24137,Winona,MN,448,La Crosse,WI
-55990,24101,Rochester,MN,253,Rochester,MN
-55991,24101,Rochester,MN,253,Rochester,MN
-55992,24101,Rochester,MN,253,Rochester,MN
-56001,24071,Mankato,MN,251,Minneapolis,MN
-56002,24071,Mankato,MN,251,Minneapolis,MN
-56003,24071,Mankato,MN,251,Minneapolis,MN
-56007,24005,Albert Lea,MN,253,Rochester,MN
-56009,24005,Albert Lea,MN,253,Rochester,MN
-56010,24071,Mankato,MN,251,Minneapolis,MN
-56011,24084,New Prague,MN,251,Minneapolis,MN
-56013,24016,Blue Earth,MN,251,Minneapolis,MN
-56014,24005,Albert Lea,MN,253,Rochester,MN
-56016,24005,Albert Lea,MN,253,Rochester,MN
-56017,24117,St. Peter,MN,251,Minneapolis,MN
-56019,24112,Springfield,MN,251,Minneapolis,MN
-56020,24005,Albert Lea,MN,253,Rochester,MN
-56021,24085,New Ulm,MN,251,Minneapolis,MN
-56022,24108,Sleepy Eye,MN,251,Minneapolis,MN
-56023,24016,Blue Earth,MN,251,Minneapolis,MN
-56024,24071,Mankato,MN,251,Minneapolis,MN
-56025,24016,Blue Earth,MN,251,Minneapolis,MN
-56026,24005,Albert Lea,MN,253,Rochester,MN
-56027,24016,Blue Earth,MN,251,Minneapolis,MN
-56028,24071,Mankato,MN,251,Minneapolis,MN
-56029,24005,Albert Lea,MN,253,Rochester,MN
-56030,24085,New Ulm,MN,251,Minneapolis,MN
-56031,24037,Fairmont,MN,251,Minneapolis,MN
-56032,24005,Albert Lea,MN,253,Rochester,MN
-56033,24016,Blue Earth,MN,251,Minneapolis,MN
-56034,24071,Mankato,MN,251,Minneapolis,MN
-56035,24005,Albert Lea,MN,253,Rochester,MN
-56036,24005,Albert Lea,MN,253,Rochester,MN
-56037,24071,Mankato,MN,251,Minneapolis,MN
-56039,24037,Fairmont,MN,251,Minneapolis,MN
-56041,24085,New Ulm,MN,251,Minneapolis,MN
-56042,24005,Albert Lea,MN,253,Rochester,MN
-56043,24005,Albert Lea,MN,253,Rochester,MN
-56044,24084,New Prague,MN,251,Minneapolis,MN
-56045,24005,Albert Lea,MN,253,Rochester,MN
-56046,24090,Owatonna,MN,253,Rochester,MN
-56047,24016,Blue Earth,MN,251,Minneapolis,MN
-56048,24071,Mankato,MN,251,Minneapolis,MN
-56050,24117,St. Peter,MN,251,Minneapolis,MN
-56051,24005,Albert Lea,MN,253,Rochester,MN
-56052,24084,New Prague,MN,251,Minneapolis,MN
-56054,24085,New Ulm,MN,251,Minneapolis,MN
-56055,24071,Mankato,MN,251,Minneapolis,MN
-56056,24114,St. James,MN,251,Minneapolis,MN
-56057,24084,New Prague,MN,251,Minneapolis,MN
-56058,24063,Le Sueur,MN,251,Minneapolis,MN
-56060,24068,Madelia,MN,251,Minneapolis,MN
-56062,24068,Madelia,MN,251,Minneapolis,MN
-56063,24071,Mankato,MN,251,Minneapolis,MN
-56065,24071,Mankato,MN,251,Minneapolis,MN
-56068,24071,Mankato,MN,251,Minneapolis,MN
-56069,24084,New Prague,MN,251,Minneapolis,MN
-56071,24084,New Prague,MN,251,Minneapolis,MN
-56072,24005,Albert Lea,MN,253,Rochester,MN
-56073,24085,New Ulm,MN,251,Minneapolis,MN
-56074,24071,Mankato,MN,251,Minneapolis,MN
-56075,24037,Fairmont,MN,251,Minneapolis,MN
-56078,24071,Mankato,MN,251,Minneapolis,MN
-56080,24071,Mankato,MN,251,Minneapolis,MN
-56081,24114,St. James,MN,251,Minneapolis,MN
-56082,24117,St. Peter,MN,251,Minneapolis,MN
-56083,24112,Springfield,MN,251,Minneapolis,MN
-56084,24085,New Ulm,MN,251,Minneapolis,MN
-56085,24108,Sleepy Eye,MN,251,Minneapolis,MN
-56087,24112,Springfield,MN,251,Minneapolis,MN
-56088,24037,Fairmont,MN,251,Minneapolis,MN
-56089,24005,Albert Lea,MN,253,Rochester,MN
-56090,24071,Mankato,MN,251,Minneapolis,MN
-56091,24071,Mankato,MN,251,Minneapolis,MN
-56093,24131,Waseca,MN,251,Minneapolis,MN
-56096,24038,Faribault,MN,251,Minneapolis,MN
-56097,24005,Albert Lea,MN,253,Rochester,MN
-56098,24016,Blue Earth,MN,251,Minneapolis,MN
-56101,24136,Windom,MN,371,Sioux Falls,SD
-56110,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56111,24059,Jackson,MN,371,Sioux Falls,SD
-56113,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56114,24107,Slayton,MN,371,Sioux Falls,SD
-56115,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56116,24067,Luverne,MN,371,Sioux Falls,SD
-56117,24138,Worthington,MN,371,Sioux Falls,SD
-56118,24136,Windom,MN,371,Sioux Falls,SD
-56119,24138,Worthington,MN,371,Sioux Falls,SD
-56120,24136,Windom,MN,371,Sioux Falls,SD
-56121,24037,Fairmont,MN,251,Minneapolis,MN
-56122,24107,Slayton,MN,371,Sioux Falls,SD
-56123,24107,Slayton,MN,371,Sioux Falls,SD
-56125,24133,Westbrook,MN,371,Sioux Falls,SD
-56127,16036,Estherville,IA,371,Sioux Falls,SD
-56128,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56129,24067,Luverne,MN,371,Sioux Falls,SD
-56131,24138,Worthington,MN,371,Sioux Falls,SD
-56132,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56134,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56136,24053,Hendricks,MN,371,Sioux Falls,SD
-56137,24136,Windom,MN,371,Sioux Falls,SD
-56138,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56139,24096,Pipestone,MN,371,Sioux Falls,SD
-56140,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56141,24107,Slayton,MN,371,Sioux Falls,SD
-56142,24058,Ivanhoe,MN,371,Sioux Falls,SD
-56143,24059,Jackson,MN,371,Sioux Falls,SD
-56144,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56145,24136,Windom,MN,371,Sioux Falls,SD
-56146,24067,Luverne,MN,371,Sioux Falls,SD
-56147,24067,Luverne,MN,371,Sioux Falls,SD
-56149,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56150,24062,Lakefield,MN,371,Sioux Falls,SD
-56151,24107,Slayton,MN,371,Sioux Falls,SD
-56152,24112,Springfield,MN,251,Minneapolis,MN
-56153,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56155,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56156,24067,Luverne,MN,371,Sioux Falls,SD
-56157,24073,Marshall,MN,371,Sioux Falls,SD
-56158,24067,Luverne,MN,371,Sioux Falls,SD
-56159,24136,Windom,MN,371,Sioux Falls,SD
-56160,24136,Windom,MN,371,Sioux Falls,SD
-56161,24138,Worthington,MN,371,Sioux Falls,SD
-56162,24037,Fairmont,MN,251,Minneapolis,MN
-56164,24096,Pipestone,MN,371,Sioux Falls,SD
-56165,24138,Worthington,MN,371,Sioux Falls,SD
-56166,24112,Springfield,MN,251,Minneapolis,MN
-56167,24138,Worthington,MN,371,Sioux Falls,SD
-56168,24138,Worthington,MN,371,Sioux Falls,SD
-56169,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56170,24125,Tyler,MN,371,Sioux Falls,SD
-56171,24037,Fairmont,MN,251,Minneapolis,MN
-56172,24107,Slayton,MN,371,Sioux Falls,SD
-56173,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56174,24133,Westbrook,MN,371,Sioux Falls,SD
-56175,24122,Tracy,MN,371,Sioux Falls,SD
-56176,24037,Fairmont,MN,251,Minneapolis,MN
-56178,24125,Tyler,MN,371,Sioux Falls,SD
-56180,24122,Tracy,MN,371,Sioux Falls,SD
-56181,24037,Fairmont,MN,251,Minneapolis,MN
-56183,24133,Westbrook,MN,371,Sioux Falls,SD
-56185,24138,Worthington,MN,371,Sioux Falls,SD
-56186,43039,Sioux Falls,SD,371,Sioux Falls,SD
-56187,24138,Worthington,MN,371,Sioux Falls,SD
-56201,24135,Willmar,MN,251,Minneapolis,MN
-56207,24082,Morris,MN,251,Minneapolis,MN
-56208,24007,Appleton,MN,251,Minneapolis,MN
-56209,24135,Willmar,MN,251,Minneapolis,MN
-56210,24045,Graceville,MN,251,Minneapolis,MN
-56211,24134,Wheaton,MN,251,Minneapolis,MN
-56212,24089,Ortonville,MN,371,Sioux Falls,SD
-56214,24099,Redwood Falls,MN,251,Minneapolis,MN
-56215,24014,Benson,MN,254,St. Cloud,MN
-56216,24135,Willmar,MN,251,Minneapolis,MN
-56218,24077,Montevideo,MN,251,Minneapolis,MN
-56219,43040,Sisseton,SD,322,Fargo/Moorhead MN,ND
-56220,24022,Canby,MN,371,Sioux Falls,SD
-56221,24082,Morris,MN,251,Minneapolis,MN
-56222,24135,Willmar,MN,251,Minneapolis,MN
-56223,24077,Montevideo,MN,251,Minneapolis,MN
-56224,24099,Redwood Falls,MN,251,Minneapolis,MN
-56225,24089,Ortonville,MN,371,Sioux Falls,SD
-56226,24014,Benson,MN,254,St. Cloud,MN
-56227,24007,Appleton,MN,251,Minneapolis,MN
-56228,24056,Hutchinson,MN,251,Minneapolis,MN
-56229,24048,Granite Falls,MN,251,Minneapolis,MN
-56230,24087,Olivia,MN,251,Minneapolis,MN
-56231,24014,Benson,MN,254,St. Cloud,MN
-56232,24030,Dawson,MN,251,Minneapolis,MN
-56235,24082,Morris,MN,251,Minneapolis,MN
-56236,24134,Wheaton,MN,251,Minneapolis,MN
-56237,24048,Granite Falls,MN,251,Minneapolis,MN
-56239,24073,Marshall,MN,371,Sioux Falls,SD
-56240,24045,Graceville,MN,251,Minneapolis,MN
-56241,24048,Granite Falls,MN,251,Minneapolis,MN
-56243,24064,Litchfield,MN,251,Minneapolis,MN
-56244,24082,Morris,MN,251,Minneapolis,MN
-56245,24048,Granite Falls,MN,251,Minneapolis,MN
-56248,24082,Morris,MN,251,Minneapolis,MN
-56249,24007,Appleton,MN,251,Minneapolis,MN
-56251,24135,Willmar,MN,251,Minneapolis,MN
-56252,24135,Willmar,MN,251,Minneapolis,MN
-56253,24135,Willmar,MN,251,Minneapolis,MN
-56255,24099,Redwood Falls,MN,251,Minneapolis,MN
-56256,24069,Madison,MN,371,Sioux Falls,SD
-56257,24069,Madison,MN,371,Sioux Falls,SD
-56258,24073,Marshall,MN,371,Sioux Falls,SD
-56260,24048,Granite Falls,MN,251,Minneapolis,MN
-56262,24077,Montevideo,MN,251,Minneapolis,MN
-56263,24073,Marshall,MN,371,Sioux Falls,SD
-56264,24073,Marshall,MN,371,Sioux Falls,SD
-56265,24077,Montevideo,MN,251,Minneapolis,MN
-56266,24108,Sleepy Eye,MN,251,Minneapolis,MN
-56267,24082,Morris,MN,251,Minneapolis,MN
-56270,24099,Redwood Falls,MN,251,Minneapolis,MN
-56271,24135,Willmar,MN,251,Minneapolis,MN
-56273,24135,Willmar,MN,251,Minneapolis,MN
-56274,24134,Wheaton,MN,251,Minneapolis,MN
-56276,24089,Ortonville,MN,371,Sioux Falls,SD
-56277,24087,Olivia,MN,251,Minneapolis,MN
-56278,24089,Ortonville,MN,371,Sioux Falls,SD
-56279,24135,Willmar,MN,251,Minneapolis,MN
-56280,24022,Canby,MN,371,Sioux Falls,SD
-56281,24135,Willmar,MN,251,Minneapolis,MN
-56282,24135,Willmar,MN,251,Minneapolis,MN
-56283,24099,Redwood Falls,MN,251,Minneapolis,MN
-56284,24087,Olivia,MN,251,Minneapolis,MN
-56285,24048,Granite Falls,MN,251,Minneapolis,MN
-56287,24099,Redwood Falls,MN,251,Minneapolis,MN
-56288,24135,Willmar,MN,251,Minneapolis,MN
-56289,24135,Willmar,MN,251,Minneapolis,MN
-56291,24022,Canby,MN,371,Sioux Falls,SD
-56292,24099,Redwood Falls,MN,251,Minneapolis,MN
-56293,24099,Redwood Falls,MN,251,Minneapolis,MN
-56294,24112,Springfield,MN,251,Minneapolis,MN
-56295,24077,Montevideo,MN,251,Minneapolis,MN
-56296,24134,Wheaton,MN,251,Minneapolis,MN
-56297,24048,Granite Falls,MN,251,Minneapolis,MN
-56301,24113,St. Cloud,MN,254,St. Cloud,MN
-56302,24113,St. Cloud,MN,254,St. Cloud,MN
-56303,24113,St. Cloud,MN,254,St. Cloud,MN
-56304,24113,St. Cloud,MN,254,St. Cloud,MN
-56307,24113,St. Cloud,MN,254,St. Cloud,MN
-56308,24006,Alexandria,MN,251,Minneapolis,MN
-56309,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56310,24113,St. Cloud,MN,254,St. Cloud,MN
-56311,24034,Elbow Lake,MN,322,Fargo/Moorhead MN,ND
-56312,24135,Willmar,MN,251,Minneapolis,MN
-56313,24097,Princeton,MN,251,Minneapolis,MN
-56314,24065,Little Falls,MN,251,Minneapolis,MN
-56315,24006,Alexandria,MN,251,Minneapolis,MN
-56316,24044,Glenwood,MN,254,St. Cloud,MN
-56317,24065,Little Falls,MN,251,Minneapolis,MN
-56318,24065,Little Falls,MN,251,Minneapolis,MN
-56319,24006,Alexandria,MN,251,Minneapolis,MN
-56320,24113,St. Cloud,MN,254,St. Cloud,MN
-56321,24113,St. Cloud,MN,254,St. Cloud,MN
-56323,24082,Morris,MN,251,Minneapolis,MN
-56324,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56325,24135,Willmar,MN,251,Minneapolis,MN
-56326,24006,Alexandria,MN,251,Minneapolis,MN
-56327,24119,Starbuck,MN,254,St. Cloud,MN
-56328,24065,Little Falls,MN,251,Minneapolis,MN
-56329,24113,St. Cloud,MN,254,St. Cloud,MN
-56330,24097,Princeton,MN,251,Minneapolis,MN
-56331,24113,St. Cloud,MN,254,St. Cloud,MN
-56332,24006,Alexandria,MN,251,Minneapolis,MN
-56333,24113,St. Cloud,MN,254,St. Cloud,MN
-56334,24044,Glenwood,MN,254,St. Cloud,MN
-56335,24074,Melrose,MN,254,St. Cloud,MN
-56336,24113,St. Cloud,MN,254,St. Cloud,MN
-56338,24065,Little Falls,MN,251,Minneapolis,MN
-56339,24006,Alexandria,MN,251,Minneapolis,MN
-56340,24113,St. Cloud,MN,254,St. Cloud,MN
-56341,24119,Starbuck,MN,254,St. Cloud,MN
-56342,24088,Onamia,MN,251,Minneapolis,MN
-56343,24006,Alexandria,MN,251,Minneapolis,MN
-56344,24065,Little Falls,MN,251,Minneapolis,MN
-56345,24065,Little Falls,MN,251,Minneapolis,MN
-56347,24066,Long Prairie,MN,254,St. Cloud,MN
-56349,24119,Starbuck,MN,254,St. Cloud,MN
-56350,24081,Mora,MN,251,Minneapolis,MN
-56352,24074,Melrose,MN,254,St. Cloud,MN
-56353,24097,Princeton,MN,251,Minneapolis,MN
-56354,24006,Alexandria,MN,251,Minneapolis,MN
-56355,24006,Alexandria,MN,251,Minneapolis,MN
-56356,24113,St. Cloud,MN,254,St. Cloud,MN
-56357,24113,St. Cloud,MN,254,St. Cloud,MN
-56358,24081,Mora,MN,251,Minneapolis,MN
-56359,24088,Onamia,MN,251,Minneapolis,MN
-56360,24006,Alexandria,MN,251,Minneapolis,MN
-56361,24006,Alexandria,MN,251,Minneapolis,MN
-56362,24093,Paynesville,MN,254,St. Cloud,MN
-56363,24097,Princeton,MN,251,Minneapolis,MN
-56364,24065,Little Falls,MN,251,Minneapolis,MN
-56367,24113,St. Cloud,MN,254,St. Cloud,MN
-56368,24113,St. Cloud,MN,254,St. Cloud,MN
-56369,24113,St. Cloud,MN,254,St. Cloud,MN
-56371,24093,Paynesville,MN,254,St. Cloud,MN
-56372,24113,St. Cloud,MN,254,St. Cloud,MN
-56373,24065,Little Falls,MN,251,Minneapolis,MN
-56374,24113,St. Cloud,MN,254,St. Cloud,MN
-56375,24113,St. Cloud,MN,254,St. Cloud,MN
-56376,24093,Paynesville,MN,254,St. Cloud,MN
-56377,24113,St. Cloud,MN,254,St. Cloud,MN
-56378,24105,Sauk Centre,MN,254,St. Cloud,MN
-56379,24113,St. Cloud,MN,254,St. Cloud,MN
-56381,24119,Starbuck,MN,254,St. Cloud,MN
-56382,24065,Little Falls,MN,251,Minneapolis,MN
-56384,24065,Little Falls,MN,251,Minneapolis,MN
-56385,24044,Glenwood,MN,254,St. Cloud,MN
-56386,24088,Onamia,MN,251,Minneapolis,MN
-56387,24113,St. Cloud,MN,254,St. Cloud,MN
-56388,24113,St. Cloud,MN,254,St. Cloud,MN
-56389,24006,Alexandria,MN,251,Minneapolis,MN
-56393,24113,St. Cloud,MN,254,St. Cloud,MN
-56395,24113,St. Cloud,MN,254,St. Cloud,MN
-56396,24113,St. Cloud,MN,254,St. Cloud,MN
-56397,24113,St. Cloud,MN,254,St. Cloud,MN
-56398,24113,St. Cloud,MN,254,St. Cloud,MN
-56399,24113,St. Cloud,MN,254,St. Cloud,MN
-56401,24017,Brainerd,MN,251,Minneapolis,MN
-56425,24017,Brainerd,MN,251,Minneapolis,MN
-56431,24003,Aitkin,MN,251,Minneapolis,MN
-56433,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56434,24129,Wadena,MN,251,Minneapolis,MN
-56435,24017,Brainerd,MN,251,Minneapolis,MN
-56436,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56437,24129,Wadena,MN,251,Minneapolis,MN
-56438,24118,Staples,MN,254,St. Cloud,MN
-56440,24066,Long Prairie,MN,254,St. Cloud,MN
-56441,24029,Crosby,MN,251,Minneapolis,MN
-56442,24017,Brainerd,MN,251,Minneapolis,MN
-56443,24065,Little Falls,MN,251,Minneapolis,MN
-56444,24029,Crosby,MN,251,Minneapolis,MN
-56446,24006,Alexandria,MN,251,Minneapolis,MN
-56447,24029,Crosby,MN,251,Minneapolis,MN
-56448,24017,Brainerd,MN,251,Minneapolis,MN
-56449,24065,Little Falls,MN,251,Minneapolis,MN
-56450,24017,Brainerd,MN,251,Minneapolis,MN
-56452,24017,Brainerd,MN,251,Minneapolis,MN
-56453,24129,Wadena,MN,251,Minneapolis,MN
-56455,24029,Crosby,MN,251,Minneapolis,MN
-56456,24017,Brainerd,MN,251,Minneapolis,MN
-56458,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56459,24017,Brainerd,MN,251,Minneapolis,MN
-56461,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56464,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56465,24029,Crosby,MN,251,Minneapolis,MN
-56466,24118,Staples,MN,254,St. Cloud,MN
-56467,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56468,24017,Brainerd,MN,251,Minneapolis,MN
-56469,24003,Aitkin,MN,251,Minneapolis,MN
-56470,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56472,24017,Brainerd,MN,251,Minneapolis,MN
-56473,24017,Brainerd,MN,251,Minneapolis,MN
-56474,24017,Brainerd,MN,251,Minneapolis,MN
-56475,24065,Little Falls,MN,251,Minneapolis,MN
-56477,24129,Wadena,MN,251,Minneapolis,MN
-56479,24118,Staples,MN,254,St. Cloud,MN
-56481,24129,Wadena,MN,251,Minneapolis,MN
-56482,24129,Wadena,MN,251,Minneapolis,MN
-56484,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56501,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56502,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56510,24001,Ada,MN,322,Fargo/Moorhead MN,ND
-56511,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56514,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56515,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56516,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56517,24028,Crookston,MN,323,Grand Forks,ND
-56518,24129,Wadena,MN,251,Minneapolis,MN
-56519,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56520,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-56521,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56522,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-56523,24028,Crookston,MN,323,Grand Forks,ND
-56524,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56525,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56527,24129,Wadena,MN,251,Minneapolis,MN
-56528,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56529,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56531,24034,Elbow Lake,MN,322,Fargo/Moorhead MN,ND
-56533,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56534,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56535,24028,Crookston,MN,323,Grand Forks,ND
-56536,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56537,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56538,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56540,24028,Crookston,MN,323,Grand Forks,ND
-56541,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56542,24042,Fosston,MN,322,Fargo/Moorhead MN,ND
-56543,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-56544,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56545,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56546,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56547,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56548,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56549,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56550,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56551,24129,Wadena,MN,251,Minneapolis,MN
-56552,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56553,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-56554,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56556,24042,Fosston,MN,322,Fargo/Moorhead MN,ND
-56557,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56560,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56561,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56562,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56563,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56565,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56566,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56567,24095,Perham,MN,322,Fargo/Moorhead MN,ND
-56568,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56569,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56570,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56571,24095,Perham,MN,322,Fargo/Moorhead MN,ND
-56572,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56573,24095,Perham,MN,322,Fargo/Moorhead MN,ND
-56574,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56575,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56576,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56577,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56578,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56579,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56580,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56581,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56583,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-56584,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56585,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56586,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56587,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56588,24006,Alexandria,MN,251,Minneapolis,MN
-56589,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56590,24040,Fergus Falls,MN,322,Fargo/Moorhead MN,ND
-56591,24032,Detroit Lakes,MN,322,Fargo/Moorhead MN,ND
-56592,24042,Fosston,MN,322,Fargo/Moorhead MN,ND
-56593,24091,Park Rapids,MN,322,Fargo/Moorhead MN,ND
-56594,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-56601,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56619,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56621,24011,Bagley,MN,322,Fargo/Moorhead MN,ND
-56623,24012,Baudette,MN,323,Grand Forks,ND
-56626,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56627,24015,Bigfork,MN,251,Minneapolis,MN
-56628,24015,Bigfork,MN,251,Minneapolis,MN
-56629,24012,Baudette,MN,323,Grand Forks,ND
-56630,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56631,24031,Deer River,MN,251,Minneapolis,MN
-56633,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56634,24011,Bagley,MN,322,Fargo/Moorhead MN,ND
-56636,24031,Deer River,MN,251,Minneapolis,MN
-56637,24031,Deer River,MN,251,Minneapolis,MN
-56639,24015,Bigfork,MN,251,Minneapolis,MN
-56641,24031,Deer River,MN,251,Minneapolis,MN
-56644,24011,Bagley,MN,322,Fargo/Moorhead MN,ND
-56646,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56647,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56649,24057,International Falls,MN,251,Minneapolis,MN
-56650,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56651,24042,Fosston,MN,322,Fargo/Moorhead MN,ND
-56652,24011,Bagley,MN,322,Fargo/Moorhead MN,ND
-56653,24057,International Falls,MN,251,Minneapolis,MN
-56654,24057,International Falls,MN,251,Minneapolis,MN
-56655,24017,Brainerd,MN,251,Minneapolis,MN
-56657,24015,Bigfork,MN,251,Minneapolis,MN
-56658,24015,Bigfork,MN,251,Minneapolis,MN
-56659,24015,Bigfork,MN,251,Minneapolis,MN
-56660,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56661,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56662,24029,Crosby,MN,251,Minneapolis,MN
-56663,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56666,24141,Redlake,MN,322,Fargo/Moorhead MN,ND
-56667,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56668,24057,International Falls,MN,251,Minneapolis,MN
-56669,24057,International Falls,MN,251,Minneapolis,MN
-56670,24141,Redlake,MN,322,Fargo/Moorhead MN,ND
-56671,24141,Redlake,MN,322,Fargo/Moorhead MN,ND
-56672,24031,Deer River,MN,251,Minneapolis,MN
-56673,24012,Baudette,MN,323,Grand Forks,ND
-56676,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56678,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56679,24057,International Falls,MN,251,Minneapolis,MN
-56680,24015,Bigfork,MN,251,Minneapolis,MN
-56681,24031,Deer River,MN,251,Minneapolis,MN
-56683,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56684,24042,Fosston,MN,322,Fargo/Moorhead MN,ND
-56685,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56686,24012,Baudette,MN,323,Grand Forks,ND
-56687,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56688,24013,Bemidji,MN,322,Fargo/Moorhead MN,ND
-56701,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56710,35017,Grand Forks,ND,323,Grand Forks,ND
-56711,24102,Roseau,MN,323,Grand Forks,ND
-56713,24130,Warren,MN,323,Grand Forks,ND
-56714,24102,Roseau,MN,323,Grand Forks,ND
-56715,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56716,24028,Crookston,MN,323,Grand Forks,ND
-56720,35017,Grand Forks,ND,323,Grand Forks,ND
-56721,35017,Grand Forks,ND,323,Grand Forks,ND
-56722,24028,Crookston,MN,323,Grand Forks,ND
-56723,35017,Grand Forks,ND,323,Grand Forks,ND
-56724,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56725,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56726,24102,Roseau,MN,323,Grand Forks,ND
-56727,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56728,24050,Hallock,MN,323,Grand Forks,ND
-56729,24060,Karlstad,MN,323,Grand Forks,ND
-56731,24050,Hallock,MN,323,Grand Forks,ND
-56732,24060,Karlstad,MN,323,Grand Forks,ND
-56733,35017,Grand Forks,ND,323,Grand Forks,ND
-56734,24060,Karlstad,MN,323,Grand Forks,ND
-56735,24050,Hallock,MN,323,Grand Forks,ND
-56736,24028,Crookston,MN,323,Grand Forks,ND
-56737,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56738,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56740,24050,Hallock,MN,323,Grand Forks,ND
-56741,24102,Roseau,MN,323,Grand Forks,ND
-56742,24042,Fosston,MN,322,Fargo/Moorhead MN,ND
-56744,35017,Grand Forks,ND,323,Grand Forks,ND
-56748,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56750,24028,Crookston,MN,323,Grand Forks,ND
-56751,24102,Roseau,MN,323,Grand Forks,ND
-56754,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56755,24050,Hallock,MN,323,Grand Forks,ND
-56756,24102,Roseau,MN,323,Grand Forks,ND
-56757,24130,Warren,MN,323,Grand Forks,ND
-56758,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56759,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56760,24121,Thief River Falls,MN,322,Fargo/Moorhead MN,ND
-56761,24102,Roseau,MN,323,Grand Forks,ND
-56762,24130,Warren,MN,323,Grand Forks,ND
-56763,24102,Roseau,MN,323,Grand Forks,ND
-56901,9001,Washington,DC,113,Washington,DC
-56902,9001,Washington,DC,113,Washington,DC
-56904,9001,Washington,DC,113,Washington,DC
-56908,9001,Washington,DC,113,Washington,DC
-56915,9001,Washington,DC,113,Washington,DC
-56920,9001,Washington,DC,113,Washington,DC
-56933,9001,Washington,DC,113,Washington,DC
-56935,9001,Washington,DC,113,Washington,DC
-56944,9001,Washington,DC,113,Washington,DC
-56945,9001,Washington,DC,113,Washington,DC
-56950,9001,Washington,DC,113,Washington,DC
-56965,9001,Washington,DC,113,Washington,DC
-56966,9001,Washington,DC,113,Washington,DC
-56967,9001,Washington,DC,113,Washington,DC
-56968,9001,Washington,DC,113,Washington,DC
-56969,9001,Washington,DC,113,Washington,DC
-56970,9001,Washington,DC,113,Washington,DC
-56972,9001,Washington,DC,113,Washington,DC
-56998,9001,Washington,DC,113,Washington,DC
-56999,9001,Washington,DC,113,Washington,DC
-57001,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57002,43006,Brookings,SD,371,Sioux Falls,SD
-57003,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57004,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57005,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57006,43006,Brookings,SD,371,Sioux Falls,SD
-57007,43006,Brookings,SD,371,Sioux Falls,SD
-57010,16098,Sioux City,IA,196,Sioux City,IA
-57012,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57013,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57014,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57015,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57016,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57017,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57018,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57020,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57021,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57022,43014,Dell Rapids,SD,371,Sioux Falls,SD
-57024,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57025,16098,Sioux City,IA,196,Sioux City,IA
-57026,43006,Brookings,SD,371,Sioux Falls,SD
-57027,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57028,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57029,43019,Freeman,SD,371,Sioux Falls,SD
-57030,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57031,43051,Yankton,SD,371,Sioux Falls,SD
-57032,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57033,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57034,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57035,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57036,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57037,43051,Yankton,SD,371,Sioux Falls,SD
-57038,16098,Sioux City,IA,196,Sioux City,IA
-57039,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57040,43051,Yankton,SD,371,Sioux Falls,SD
-57041,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57042,43026,Madison,SD,371,Sioux Falls,SD
-57043,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57045,43051,Yankton,SD,371,Sioux Falls,SD
-57046,43051,Yankton,SD,371,Sioux Falls,SD
-57047,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57048,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57049,16098,Sioux City,IA,196,Sioux City,IA
-57050,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57051,43026,Madison,SD,371,Sioux Falls,SD
-57052,43019,Freeman,SD,371,Sioux Falls,SD
-57053,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57054,43026,Madison,SD,371,Sioux Falls,SD
-57055,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57057,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57058,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57059,43038,Scotland,SD,371,Sioux Falls,SD
-57061,43006,Brookings,SD,371,Sioux Falls,SD
-57062,43043,Tyndall,SD,371,Sioux Falls,SD
-57063,43051,Yankton,SD,371,Sioux Falls,SD
-57064,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57065,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57066,43043,Tyndall,SD,371,Sioux Falls,SD
-57067,43051,Yankton,SD,371,Sioux Falls,SD
-57068,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57069,43044,Vermillion,SD,371,Sioux Falls,SD
-57070,43045,Viborg,SD,371,Sioux Falls,SD
-57071,43006,Brookings,SD,371,Sioux Falls,SD
-57072,43051,Yankton,SD,371,Sioux Falls,SD
-57073,43051,Yankton,SD,371,Sioux Falls,SD
-57075,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57076,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57077,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57078,43051,Yankton,SD,371,Sioux Falls,SD
-57101,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57103,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57104,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57105,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57106,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57107,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57108,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57109,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57110,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57117,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57118,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57186,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57193,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57197,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57198,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57201,43047,Watertown,SD,371,Sioux Falls,SD
-57212,43006,Brookings,SD,371,Sioux Falls,SD
-57213,24053,Hendricks,MN,371,Sioux Falls,SD
-57214,43006,Brookings,SD,371,Sioux Falls,SD
-57216,24089,Ortonville,MN,371,Sioux Falls,SD
-57217,43047,Watertown,SD,371,Sioux Falls,SD
-57218,24053,Hendricks,MN,371,Sioux Falls,SD
-57219,43048,Webster,SD,371,Sioux Falls,SD
-57220,43006,Brookings,SD,371,Sioux Falls,SD
-57221,43047,Watertown,SD,371,Sioux Falls,SD
-57223,43047,Watertown,SD,371,Sioux Falls,SD
-57224,43040,Sisseton,SD,322,Fargo/Moorhead MN,ND
-57225,43047,Watertown,SD,371,Sioux Falls,SD
-57226,43010,Clear Lake,SD,371,Sioux Falls,SD
-57227,24089,Ortonville,MN,371,Sioux Falls,SD
-57231,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57232,43048,Webster,SD,371,Sioux Falls,SD
-57233,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57234,43006,Brookings,SD,371,Sioux Falls,SD
-57235,43047,Watertown,SD,371,Sioux Falls,SD
-57236,43047,Watertown,SD,371,Sioux Falls,SD
-57237,43010,Clear Lake,SD,371,Sioux Falls,SD
-57238,43047,Watertown,SD,371,Sioux Falls,SD
-57239,43048,Webster,SD,371,Sioux Falls,SD
-57241,43047,Watertown,SD,371,Sioux Falls,SD
-57242,43047,Watertown,SD,371,Sioux Falls,SD
-57243,43047,Watertown,SD,371,Sioux Falls,SD
-57245,43047,Watertown,SD,371,Sioux Falls,SD
-57246,43047,Watertown,SD,371,Sioux Falls,SD
-57247,43005,Britton,SD,322,Fargo/Moorhead MN,ND
-57248,43047,Watertown,SD,371,Sioux Falls,SD
-57249,43006,Brookings,SD,371,Sioux Falls,SD
-57251,43047,Watertown,SD,371,Sioux Falls,SD
-57252,43028,Milbank,SD,371,Sioux Falls,SD
-57255,43040,Sisseton,SD,322,Fargo/Moorhead MN,ND
-57256,43048,Webster,SD,371,Sioux Falls,SD
-57257,43040,Sisseton,SD,322,Fargo/Moorhead MN,ND
-57258,43047,Watertown,SD,371,Sioux Falls,SD
-57259,43047,Watertown,SD,371,Sioux Falls,SD
-57260,24134,Wheaton,MN,251,Minneapolis,MN
-57261,43048,Webster,SD,371,Sioux Falls,SD
-57262,43040,Sisseton,SD,322,Fargo/Moorhead MN,ND
-57263,43047,Watertown,SD,371,Sioux Falls,SD
-57264,43047,Watertown,SD,371,Sioux Falls,SD
-57265,43047,Watertown,SD,371,Sioux Falls,SD
-57266,43047,Watertown,SD,371,Sioux Falls,SD
-57268,43006,Brookings,SD,371,Sioux Falls,SD
-57269,43047,Watertown,SD,371,Sioux Falls,SD
-57270,43040,Sisseton,SD,322,Fargo/Moorhead MN,ND
-57271,43047,Watertown,SD,371,Sioux Falls,SD
-57272,43047,Watertown,SD,371,Sioux Falls,SD
-57273,43048,Webster,SD,371,Sioux Falls,SD
-57274,43048,Webster,SD,371,Sioux Falls,SD
-57276,43006,Brookings,SD,371,Sioux Falls,SD
-57278,43047,Watertown,SD,371,Sioux Falls,SD
-57279,43047,Watertown,SD,371,Sioux Falls,SD
-57301,43030,Mitchell,SD,371,Sioux Falls,SD
-57311,43030,Mitchell,SD,371,Sioux Falls,SD
-57312,43024,Huron,SD,371,Sioux Falls,SD
-57313,43002,Armour,SD,371,Sioux Falls,SD
-57314,43030,Mitchell,SD,371,Sioux Falls,SD
-57315,43043,Tyndall,SD,371,Sioux Falls,SD
-57317,43021,Gregory,SD,371,Sioux Falls,SD
-57319,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57321,43030,Mitchell,SD,371,Sioux Falls,SD
-57322,43024,Huron,SD,371,Sioux Falls,SD
-57323,43030,Mitchell,SD,371,Sioux Falls,SD
-57324,43024,Huron,SD,371,Sioux Falls,SD
-57325,43009,Chamberlain,SD,371,Sioux Falls,SD
-57326,43009,Chamberlain,SD,371,Sioux Falls,SD
-57328,43002,Armour,SD,371,Sioux Falls,SD
-57329,43046,Wagner,SD,371,Sioux Falls,SD
-57330,43032,Parkston,SD,371,Sioux Falls,SD
-57331,43032,Parkston,SD,371,Sioux Falls,SD
-57332,43030,Mitchell,SD,371,Sioux Falls,SD
-57334,43030,Mitchell,SD,371,Sioux Falls,SD
-57335,43021,Gregory,SD,371,Sioux Falls,SD
-57337,43030,Mitchell,SD,371,Sioux Falls,SD
-57339,43009,Chamberlain,SD,371,Sioux Falls,SD
-57340,43030,Mitchell,SD,371,Sioux Falls,SD
-57341,43029,Miller,SD,371,Sioux Falls,SD
-57342,43035,Platte,SD,371,Sioux Falls,SD
-57344,43002,Armour,SD,371,Sioux Falls,SD
-57345,43029,Miller,SD,371,Sioux Falls,SD
-57346,43029,Miller,SD,371,Sioux Falls,SD
-57348,43024,Huron,SD,371,Sioux Falls,SD
-57349,43039,Sioux Falls,SD,371,Sioux Falls,SD
-57350,43024,Huron,SD,371,Sioux Falls,SD
-57353,43024,Huron,SD,371,Sioux Falls,SD
-57354,43038,Scotland,SD,371,Sioux Falls,SD
-57355,43030,Mitchell,SD,371,Sioux Falls,SD
-57356,43046,Wagner,SD,371,Sioux Falls,SD
-57358,43030,Mitchell,SD,371,Sioux Falls,SD
-57359,43030,Mitchell,SD,371,Sioux Falls,SD
-57361,43046,Wagner,SD,371,Sioux Falls,SD
-57362,43029,Miller,SD,371,Sioux Falls,SD
-57363,43030,Mitchell,SD,371,Sioux Falls,SD
-57364,43030,Mitchell,SD,371,Sioux Falls,SD
-57365,43009,Chamberlain,SD,371,Sioux Falls,SD
-57366,43032,Parkston,SD,371,Sioux Falls,SD
-57367,43046,Wagner,SD,371,Sioux Falls,SD
-57368,43030,Mitchell,SD,371,Sioux Falls,SD
-57369,43035,Platte,SD,371,Sioux Falls,SD
-57370,43009,Chamberlain,SD,371,Sioux Falls,SD
-57371,43029,Miller,SD,371,Sioux Falls,SD
-57373,43029,Miller,SD,371,Sioux Falls,SD
-57374,43030,Mitchell,SD,371,Sioux Falls,SD
-57375,43030,Mitchell,SD,371,Sioux Falls,SD
-57376,43032,Parkston,SD,371,Sioux Falls,SD
-57379,43024,Huron,SD,371,Sioux Falls,SD
-57380,43046,Wagner,SD,371,Sioux Falls,SD
-57381,43024,Huron,SD,371,Sioux Falls,SD
-57382,43049,Wessington Springs,SD,371,Sioux Falls,SD
-57383,43030,Mitchell,SD,371,Sioux Falls,SD
-57384,43024,Huron,SD,371,Sioux Falls,SD
-57385,43030,Mitchell,SD,371,Sioux Falls,SD
-57386,43024,Huron,SD,371,Sioux Falls,SD
-57399,43024,Huron,SD,371,Sioux Falls,SD
-57401,43001,Aberdeen,SD,371,Sioux Falls,SD
-57402,43001,Aberdeen,SD,371,Sioux Falls,SD
-57420,43031,Mobridge,SD,321,Bismarck,ND
-57421,43001,Aberdeen,SD,371,Sioux Falls,SD
-57422,43001,Aberdeen,SD,371,Sioux Falls,SD
-57424,43001,Aberdeen,SD,371,Sioux Falls,SD
-57426,43001,Aberdeen,SD,371,Sioux Falls,SD
-57427,43001,Aberdeen,SD,371,Sioux Falls,SD
-57428,43004,Bowdle,SD,321,Bismarck,ND
-57429,43001,Aberdeen,SD,371,Sioux Falls,SD
-57430,43005,Britton,SD,322,Fargo/Moorhead MN,ND
-57432,43001,Aberdeen,SD,371,Sioux Falls,SD
-57433,43001,Aberdeen,SD,371,Sioux Falls,SD
-57434,43001,Aberdeen,SD,371,Sioux Falls,SD
-57435,43001,Aberdeen,SD,371,Sioux Falls,SD
-57436,43001,Aberdeen,SD,371,Sioux Falls,SD
-57437,43016,Eureka,SD,321,Bismarck,ND
-57438,43017,Faulkton,SD,371,Sioux Falls,SD
-57439,43001,Aberdeen,SD,371,Sioux Falls,SD
-57440,43001,Aberdeen,SD,371,Sioux Falls,SD
-57441,43001,Aberdeen,SD,371,Sioux Falls,SD
-57442,43020,Gettysburg,SD,371,Sioux Falls,SD
-57445,43001,Aberdeen,SD,371,Sioux Falls,SD
-57446,43001,Aberdeen,SD,371,Sioux Falls,SD
-57448,43016,Eureka,SD,321,Bismarck,ND
-57449,43001,Aberdeen,SD,371,Sioux Falls,SD
-57450,43031,Mobridge,SD,321,Bismarck,ND
-57451,43001,Aberdeen,SD,371,Sioux Falls,SD
-57452,43031,Mobridge,SD,321,Bismarck,ND
-57454,43005,Britton,SD,322,Fargo/Moorhead MN,ND
-57455,43020,Gettysburg,SD,371,Sioux Falls,SD
-57456,43001,Aberdeen,SD,371,Sioux Falls,SD
-57457,43016,Eureka,SD,321,Bismarck,ND
-57460,43001,Aberdeen,SD,371,Sioux Falls,SD
-57461,43001,Aberdeen,SD,371,Sioux Falls,SD
-57465,43001,Aberdeen,SD,371,Sioux Falls,SD
-57466,43001,Aberdeen,SD,371,Sioux Falls,SD
-57467,43017,Faulkton,SD,371,Sioux Falls,SD
-57468,43001,Aberdeen,SD,371,Sioux Falls,SD
-57469,43037,Redfield,SD,371,Sioux Falls,SD
-57470,43001,Aberdeen,SD,371,Sioux Falls,SD
-57471,43001,Aberdeen,SD,371,Sioux Falls,SD
-57472,43031,Mobridge,SD,321,Bismarck,ND
-57473,43001,Aberdeen,SD,371,Sioux Falls,SD
-57474,43001,Aberdeen,SD,371,Sioux Falls,SD
-57475,43023,Hoven,SD,321,Bismarck,ND
-57476,43001,Aberdeen,SD,371,Sioux Falls,SD
-57477,43001,Aberdeen,SD,371,Sioux Falls,SD
-57479,43001,Aberdeen,SD,371,Sioux Falls,SD
-57481,43001,Aberdeen,SD,371,Sioux Falls,SD
-57501,43034,Pierre,SD,371,Sioux Falls,SD
-57520,43034,Pierre,SD,371,Sioux Falls,SD
-57521,43036,Rapid City,SD,370,Rapid City,SD
-57522,43034,Pierre,SD,371,Sioux Falls,SD
-57523,43007,Burke,SD,371,Sioux Falls,SD
-57528,43021,Gregory,SD,371,Sioux Falls,SD
-57529,43021,Gregory,SD,371,Sioux Falls,SD
-57531,43034,Pierre,SD,371,Sioux Falls,SD
-57532,43034,Pierre,SD,371,Sioux Falls,SD
-57533,43021,Gregory,SD,371,Sioux Falls,SD
-57534,43021,Gregory,SD,371,Sioux Falls,SD
-57536,43034,Pierre,SD,371,Sioux Falls,SD
-57537,43034,Pierre,SD,371,Sioux Falls,SD
-57538,43021,Gregory,SD,371,Sioux Falls,SD
-57540,43029,Miller,SD,371,Sioux Falls,SD
-57541,43050,Winner,SD,371,Sioux Falls,SD
-57543,43036,Rapid City,SD,370,Rapid City,SD
-57544,43009,Chamberlain,SD,371,Sioux Falls,SD
-57547,43036,Rapid City,SD,370,Rapid City,SD
-57548,43009,Chamberlain,SD,371,Sioux Falls,SD
-57551,43027,Martin,SD,370,Rapid City,SD
-57552,43033,Philip,SD,371,Sioux Falls,SD
-57553,43036,Rapid City,SD,370,Rapid City,SD
-57555,43054,Rosebud,SD,371,Sioux Falls,SD
-57559,43034,Pierre,SD,371,Sioux Falls,SD
-57560,43036,Rapid City,SD,370,Rapid City,SD
-57562,43036,Rapid City,SD,370,Rapid City,SD
-57563,43054,Rosebud,SD,371,Sioux Falls,SD
-57564,43034,Pierre,SD,371,Sioux Falls,SD
-57566,43054,Rosebud,SD,371,Sioux Falls,SD
-57567,43033,Philip,SD,371,Sioux Falls,SD
-57568,43009,Chamberlain,SD,371,Sioux Falls,SD
-57569,43009,Chamberlain,SD,371,Sioux Falls,SD
-57570,43054,Rosebud,SD,371,Sioux Falls,SD
-57571,43007,Burke,SD,371,Sioux Falls,SD
-57572,43054,Rosebud,SD,371,Sioux Falls,SD
-57574,43027,Martin,SD,370,Rapid City,SD
-57576,43034,Pierre,SD,371,Sioux Falls,SD
-57577,43036,Rapid City,SD,370,Rapid City,SD
-57579,43050,Winner,SD,371,Sioux Falls,SD
-57580,43050,Winner,SD,371,Sioux Falls,SD
-57584,43050,Winner,SD,371,Sioux Falls,SD
-57585,43050,Winner,SD,371,Sioux Falls,SD
-57601,43031,Mobridge,SD,321,Bismarck,ND
-57620,35021,Hettinger,ND,321,Bismarck,ND
-57621,43031,Mobridge,SD,321,Bismarck,ND
-57622,43036,Rapid City,SD,370,Rapid City,SD
-57623,43036,Rapid City,SD,370,Rapid City,SD
-57625,43052,Eagle Butte,SD,321,Bismarck,ND
-57626,43036,Rapid City,SD,370,Rapid City,SD
-57630,43031,Mobridge,SD,321,Bismarck,ND
-57631,43031,Mobridge,SD,321,Bismarck,ND
-57632,35026,Linton,ND,321,Bismarck,ND
-57633,43052,Eagle Butte,SD,321,Bismarck,ND
-57634,35021,Hettinger,ND,321,Bismarck,ND
-57636,43052,Eagle Butte,SD,321,Bismarck,ND
-57638,35021,Hettinger,ND,321,Bismarck,ND
-57639,43031,Mobridge,SD,321,Bismarck,ND
-57640,35021,Hettinger,ND,321,Bismarck,ND
-57641,35021,Hettinger,ND,321,Bismarck,ND
-57642,43031,Mobridge,SD,321,Bismarck,ND
-57644,35021,Hettinger,ND,321,Bismarck,ND
-57645,35021,Hettinger,ND,321,Bismarck,ND
-57646,43031,Mobridge,SD,321,Bismarck,ND
-57648,35026,Linton,ND,321,Bismarck,ND
-57649,35021,Hettinger,ND,321,Bismarck,ND
-57650,35021,Hettinger,ND,321,Bismarck,ND
-57651,35021,Hettinger,ND,321,Bismarck,ND
-57652,43036,Rapid City,SD,370,Rapid City,SD
-57656,43031,Mobridge,SD,321,Bismarck,ND
-57657,43031,Mobridge,SD,321,Bismarck,ND
-57658,43031,Mobridge,SD,321,Bismarck,ND
-57659,43031,Mobridge,SD,321,Bismarck,ND
-57660,35002,Bismarck,ND,321,Bismarck,ND
-57661,43036,Rapid City,SD,370,Rapid City,SD
-57701,43036,Rapid City,SD,370,Rapid City,SD
-57702,43036,Rapid City,SD,370,Rapid City,SD
-57703,43036,Rapid City,SD,370,Rapid City,SD
-57706,43036,Rapid City,SD,370,Rapid City,SD
-57709,43036,Rapid City,SD,370,Rapid City,SD
-57714,43027,Martin,SD,370,Rapid City,SD
-57716,28032,Gordon,NE,370,Rapid City,SD
-57717,43003,Belle Fourche,SD,370,Rapid City,SD
-57718,43036,Rapid City,SD,370,Rapid City,SD
-57719,43036,Rapid City,SD,370,Rapid City,SD
-57720,43003,Belle Fourche,SD,370,Rapid City,SD
-57722,43036,Rapid City,SD,370,Rapid City,SD
-57724,43003,Belle Fourche,SD,370,Rapid City,SD
-57725,43036,Rapid City,SD,370,Rapid City,SD
-57730,43036,Rapid City,SD,370,Rapid City,SD
-57732,43013,Deadwood,SD,370,Rapid City,SD
-57735,43036,Rapid City,SD,370,Rapid City,SD
-57737,43036,Rapid City,SD,370,Rapid City,SD
-57738,43036,Rapid City,SD,370,Rapid City,SD
-57741,43042,Sturgis,SD,370,Rapid City,SD
-57744,43036,Rapid City,SD,370,Rapid City,SD
-57745,43036,Rapid City,SD,370,Rapid City,SD
-57747,43036,Rapid City,SD,370,Rapid City,SD
-57748,43036,Rapid City,SD,370,Rapid City,SD
-57750,43036,Rapid City,SD,370,Rapid City,SD
-57751,43036,Rapid City,SD,370,Rapid City,SD
-57752,43036,Rapid City,SD,370,Rapid City,SD
-57754,43013,Deadwood,SD,370,Rapid City,SD
-57755,35021,Hettinger,ND,321,Bismarck,ND
-57756,43036,Rapid City,SD,370,Rapid City,SD
-57758,43036,Rapid City,SD,370,Rapid City,SD
-57759,43013,Deadwood,SD,370,Rapid City,SD
-57760,43036,Rapid City,SD,370,Rapid City,SD
-57761,43036,Rapid City,SD,370,Rapid City,SD
-57762,43041,Spearfish,SD,370,Rapid City,SD
-57763,43036,Rapid City,SD,370,Rapid City,SD
-57764,43053,Pine Ridge,SD,370,Rapid City,SD
-57766,43036,Rapid City,SD,370,Rapid City,SD
-57767,43036,Rapid City,SD,370,Rapid City,SD
-57769,43036,Rapid City,SD,370,Rapid City,SD
-57770,43053,Pine Ridge,SD,370,Rapid City,SD
-57772,43036,Rapid City,SD,370,Rapid City,SD
-57773,43036,Rapid City,SD,370,Rapid City,SD
-57775,43036,Rapid City,SD,370,Rapid City,SD
-57776,43003,Belle Fourche,SD,370,Rapid City,SD
-57779,43041,Spearfish,SD,370,Rapid City,SD
-57780,43036,Rapid City,SD,370,Rapid City,SD
-57782,43036,Rapid City,SD,370,Rapid City,SD
-57783,43041,Spearfish,SD,370,Rapid City,SD
-57785,43042,Sturgis,SD,370,Rapid City,SD
-57787,43036,Rapid City,SD,370,Rapid City,SD
-57788,43042,Sturgis,SD,370,Rapid City,SD
-57790,43036,Rapid City,SD,370,Rapid City,SD
-57791,43036,Rapid City,SD,370,Rapid City,SD
-57792,43036,Rapid City,SD,370,Rapid City,SD
-57793,43042,Sturgis,SD,370,Rapid City,SD
-57794,43053,Pine Ridge,SD,370,Rapid City,SD
-57799,43041,Spearfish,SD,370,Rapid City,SD
-58001,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58002,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58004,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58005,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58006,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58007,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58008,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58009,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58011,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58012,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58013,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58015,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58016,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58017,35035,Oakes,ND,322,Fargo/Moorhead MN,ND
-58018,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58021,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58027,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58029,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58030,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58031,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58032,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58033,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58035,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58036,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58038,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58040,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58041,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58042,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58043,43005,Britton,SD,322,Fargo/Moorhead MN,ND
-58045,35022,Hillsboro,ND,322,Fargo/Moorhead MN,ND
-58046,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58047,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58048,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58049,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58051,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58052,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58053,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58054,35027,Lisbon,ND,322,Fargo/Moorhead MN,ND
-58056,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58057,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58058,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58059,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58060,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58061,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58062,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58063,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58064,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58065,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58067,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58068,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58069,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58071,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58072,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58074,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58075,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58076,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58077,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58078,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58079,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58081,24018,Breckenridge,MN,322,Fargo/Moorhead MN,ND
-58102,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58103,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58104,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58105,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58106,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58107,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58108,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58109,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58121,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58122,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58124,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58125,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58126,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58201,35017,Grand Forks,ND,323,Grand Forks,ND
-58202,35017,Grand Forks,ND,323,Grand Forks,ND
-58203,35017,Grand Forks,ND,323,Grand Forks,ND
-58204,35017,Grand Forks,ND,323,Grand Forks,ND
-58205,35017,Grand Forks,ND,323,Grand Forks,ND
-58206,35017,Grand Forks,ND,323,Grand Forks,ND
-58207,35017,Grand Forks,ND,323,Grand Forks,ND
-58208,35017,Grand Forks,ND,323,Grand Forks,ND
-58210,35017,Grand Forks,ND,323,Grand Forks,ND
-58212,35034,Northwood,ND,323,Grand Forks,ND
-58214,35017,Grand Forks,ND,323,Grand Forks,ND
-58216,35007,Cavalier,ND,323,Grand Forks,ND
-58218,35017,Grand Forks,ND,323,Grand Forks,ND
-58219,35022,Hillsboro,ND,322,Fargo/Moorhead MN,ND
-58220,35007,Cavalier,ND,323,Grand Forks,ND
-58222,35007,Cavalier,ND,323,Grand Forks,ND
-58223,35022,Hillsboro,ND,322,Fargo/Moorhead MN,ND
-58224,35017,Grand Forks,ND,323,Grand Forks,ND
-58225,35017,Grand Forks,ND,323,Grand Forks,ND
-58227,35036,Park River,ND,323,Grand Forks,ND
-58228,35017,Grand Forks,ND,323,Grand Forks,ND
-58229,35025,Langdon,ND,323,Grand Forks,ND
-58230,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58231,35017,Grand Forks,ND,323,Grand Forks,ND
-58233,35017,Grand Forks,ND,323,Grand Forks,ND
-58235,35017,Grand Forks,ND,323,Grand Forks,ND
-58236,35017,Grand Forks,ND,323,Grand Forks,ND
-58237,35017,Grand Forks,ND,323,Grand Forks,ND
-58238,35007,Cavalier,ND,323,Grand Forks,ND
-58239,35025,Langdon,ND,323,Grand Forks,ND
-58240,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58241,35007,Cavalier,ND,323,Grand Forks,ND
-58243,35007,Cavalier,ND,323,Grand Forks,ND
-58244,35017,Grand Forks,ND,323,Grand Forks,ND
-58249,35025,Langdon,ND,323,Grand Forks,ND
-58250,35017,Grand Forks,ND,323,Grand Forks,ND
-58251,35017,Grand Forks,ND,323,Grand Forks,ND
-58254,35030,McVille,ND,323,Grand Forks,ND
-58255,35025,Langdon,ND,323,Grand Forks,ND
-58256,35017,Grand Forks,ND,323,Grand Forks,ND
-58257,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58258,35017,Grand Forks,ND,323,Grand Forks,ND
-58259,35017,Grand Forks,ND,323,Grand Forks,ND
-58260,35007,Cavalier,ND,323,Grand Forks,ND
-58261,35017,Grand Forks,ND,323,Grand Forks,ND
-58262,35007,Cavalier,ND,323,Grand Forks,ND
-58265,35007,Cavalier,ND,323,Grand Forks,ND
-58266,35017,Grand Forks,ND,323,Grand Forks,ND
-58267,35034,Northwood,ND,323,Grand Forks,ND
-58269,35025,Langdon,ND,323,Grand Forks,ND
-58270,35036,Park River,ND,323,Grand Forks,ND
-58271,35007,Cavalier,ND,323,Grand Forks,ND
-58272,35017,Grand Forks,ND,323,Grand Forks,ND
-58273,35036,Park River,ND,323,Grand Forks,ND
-58274,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58275,35017,Grand Forks,ND,323,Grand Forks,ND
-58276,35017,Grand Forks,ND,323,Grand Forks,ND
-58277,35029,Mayville,ND,322,Fargo/Moorhead MN,ND
-58278,35017,Grand Forks,ND,323,Grand Forks,ND
-58281,35025,Langdon,ND,323,Grand Forks,ND
-58282,35007,Cavalier,ND,323,Grand Forks,ND
-58301,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58310,35038,Rolla,ND,323,Grand Forks,ND
-58311,35025,Langdon,ND,323,Grand Forks,ND
-58313,35039,Rugby,ND,324,Minot,ND
-58316,35038,Rolla,ND,323,Grand Forks,ND
-58317,35005,Cando,ND,323,Grand Forks,ND
-58318,35003,Bottineau,ND,324,Minot,ND
-58321,35017,Grand Forks,ND,323,Grand Forks,ND
-58323,35025,Langdon,ND,323,Grand Forks,ND
-58324,35005,Cando,ND,323,Grand Forks,ND
-58325,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58327,35017,Grand Forks,ND,323,Grand Forks,ND
-58329,35031,Minot,ND,324,Minot,ND
-58330,35025,Langdon,ND,323,Grand Forks,ND
-58331,35005,Cando,ND,323,Grand Forks,ND
-58332,35039,Rugby,ND,324,Minot,ND
-58335,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58338,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58339,35038,Rolla,ND,323,Grand Forks,ND
-58341,35019,Harvey,ND,321,Bismarck,ND
-58343,35039,Rugby,ND,324,Minot,ND
-58344,35017,Grand Forks,ND,323,Grand Forks,ND
-58345,35017,Grand Forks,ND,323,Grand Forks,ND
-58346,35039,Rugby,ND,324,Minot,ND
-58348,35039,Rugby,ND,324,Minot,ND
-58351,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58352,35025,Langdon,ND,323,Grand Forks,ND
-58353,35038,Rolla,ND,323,Grand Forks,ND
-58355,35025,Langdon,ND,323,Grand Forks,ND
-58356,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58357,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58361,35030,McVille,ND,323,Grand Forks,ND
-58362,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58363,35038,Rolla,ND,323,Grand Forks,ND
-58365,35038,Rolla,ND,323,Grand Forks,ND
-58366,35038,Rolla,ND,323,Grand Forks,ND
-58367,35038,Rolla,ND,323,Grand Forks,ND
-58368,35039,Rugby,ND,324,Minot,ND
-58369,35038,Rolla,ND,323,Grand Forks,ND
-58370,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58372,35038,Rolla,ND,323,Grand Forks,ND
-58374,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58377,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58379,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58380,35030,McVille,ND,323,Grand Forks,ND
-58381,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58382,35010,Devils Lake,ND,322,Fargo/Moorhead MN,ND
-58384,35031,Minot,ND,324,Minot,ND
-58385,35039,Rugby,ND,324,Minot,ND
-58386,35039,Rugby,ND,324,Minot,ND
-58401,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58402,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58405,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58413,35001,Ashley,ND,321,Bismarck,ND
-58415,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58416,35008,Cooperstown,ND,322,Fargo/Moorhead MN,ND
-58418,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58420,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58421,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58422,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58423,35002,Bismarck,ND,321,Bismarck,ND
-58424,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58425,35008,Cooperstown,ND,322,Fargo/Moorhead MN,ND
-58426,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58428,35002,Bismarck,ND,321,Bismarck,ND
-58429,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58430,35002,Bismarck,ND,321,Bismarck,ND
-58431,35035,Oakes,ND,322,Fargo/Moorhead MN,ND
-58433,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58436,43001,Aberdeen,SD,371,Sioux Falls,SD
-58438,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58439,43001,Aberdeen,SD,371,Sioux Falls,SD
-58440,35046,Wishek,ND,321,Bismarck,ND
-58441,35035,Oakes,ND,322,Fargo/Moorhead MN,ND
-58442,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58443,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58444,35002,Bismarck,ND,321,Bismarck,ND
-58445,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58448,35008,Cooperstown,ND,322,Fargo/Moorhead MN,ND
-58451,35002,Bismarck,ND,321,Bismarck,ND
-58452,35008,Cooperstown,ND,322,Fargo/Moorhead MN,ND
-58454,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58455,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58456,35046,Wishek,ND,321,Bismarck,ND
-58458,35035,Oakes,ND,322,Fargo/Moorhead MN,ND
-58460,35046,Wishek,ND,321,Bismarck,ND
-58461,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58463,35002,Bismarck,ND,321,Bismarck,ND
-58464,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58466,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58467,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58472,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58474,35035,Oakes,ND,322,Fargo/Moorhead MN,ND
-58475,35002,Bismarck,ND,321,Bismarck,ND
-58476,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58477,35002,Bismarck,ND,321,Bismarck,ND
-58478,35002,Bismarck,ND,321,Bismarck,ND
-58479,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58480,35043,Valley City,ND,322,Fargo/Moorhead MN,ND
-58481,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58482,35002,Bismarck,ND,321,Bismarck,ND
-58483,35002,Bismarck,ND,321,Bismarck,ND
-58484,35008,Cooperstown,ND,322,Fargo/Moorhead MN,ND
-58486,35006,Carrington,ND,322,Fargo/Moorhead MN,ND
-58487,35002,Bismarck,ND,321,Bismarck,ND
-58488,35002,Bismarck,ND,321,Bismarck,ND
-58490,35014,Fargo/Moorhead MN,ND,322,Fargo/Moorhead MN,ND
-58492,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58494,35002,Bismarck,ND,321,Bismarck,ND
-58495,35046,Wishek,ND,321,Bismarck,ND
-58496,35002,Bismarck,ND,321,Bismarck,ND
-58497,35023,Jamestown,ND,322,Fargo/Moorhead MN,ND
-58501,35002,Bismarck,ND,321,Bismarck,ND
-58502,35002,Bismarck,ND,321,Bismarck,ND
-58503,35002,Bismarck,ND,321,Bismarck,ND
-58504,35002,Bismarck,ND,321,Bismarck,ND
-58505,35002,Bismarck,ND,321,Bismarck,ND
-58506,35002,Bismarck,ND,321,Bismarck,ND
-58507,35002,Bismarck,ND,321,Bismarck,ND
-58520,35002,Bismarck,ND,321,Bismarck,ND
-58521,35002,Bismarck,ND,321,Bismarck,ND
-58523,35020,Hazen,ND,321,Bismarck,ND
-58524,35002,Bismarck,ND,321,Bismarck,ND
-58528,35002,Bismarck,ND,321,Bismarck,ND
-58529,35012,Elgin,ND,321,Bismarck,ND
-58530,35002,Bismarck,ND,321,Bismarck,ND
-58531,35002,Bismarck,ND,321,Bismarck,ND
-58532,35002,Bismarck,ND,321,Bismarck,ND
-58533,35012,Elgin,ND,321,Bismarck,ND
-58535,35002,Bismarck,ND,321,Bismarck,ND
-58538,35002,Bismarck,ND,321,Bismarck,ND
-58540,35031,Minot,ND,324,Minot,ND
-58541,35020,Hazen,ND,321,Bismarck,ND
-58542,35026,Linton,ND,321,Bismarck,ND
-58544,35002,Bismarck,ND,321,Bismarck,ND
-58545,35020,Hazen,ND,321,Bismarck,ND
-58549,35002,Bismarck,ND,321,Bismarck,ND
-58552,35026,Linton,ND,321,Bismarck,ND
-58554,35002,Bismarck,ND,321,Bismarck,ND
-58558,35002,Bismarck,ND,321,Bismarck,ND
-58559,35002,Bismarck,ND,321,Bismarck,ND
-58560,35002,Bismarck,ND,321,Bismarck,ND
-58561,35046,Wishek,ND,321,Bismarck,ND
-58562,35012,Elgin,ND,321,Bismarck,ND
-58563,35002,Bismarck,ND,321,Bismarck,ND
-58564,35002,Bismarck,ND,321,Bismarck,ND
-58565,35002,Bismarck,ND,321,Bismarck,ND
-58566,35002,Bismarck,ND,321,Bismarck,ND
-58568,35002,Bismarck,ND,321,Bismarck,ND
-58569,35002,Bismarck,ND,321,Bismarck,ND
-58570,35002,Bismarck,ND,321,Bismarck,ND
-58571,35002,Bismarck,ND,321,Bismarck,ND
-58572,35002,Bismarck,ND,321,Bismarck,ND
-58573,35026,Linton,ND,321,Bismarck,ND
-58575,35042,Turtle Lake,ND,321,Bismarck,ND
-58576,35002,Bismarck,ND,321,Bismarck,ND
-58577,35002,Bismarck,ND,321,Bismarck,ND
-58579,35002,Bismarck,ND,321,Bismarck,ND
-58580,35020,Hazen,ND,321,Bismarck,ND
-58581,35026,Linton,ND,321,Bismarck,ND
-58601,35011,Dickinson,ND,321,Bismarck,ND
-58602,35011,Dickinson,ND,321,Bismarck,ND
-58620,35021,Hettinger,ND,321,Bismarck,ND
-58621,35011,Dickinson,ND,321,Bismarck,ND
-58622,35011,Dickinson,ND,321,Bismarck,ND
-58623,35004,Bowman,ND,321,Bismarck,ND
-58625,35020,Hazen,ND,321,Bismarck,ND
-58626,35011,Dickinson,ND,321,Bismarck,ND
-58627,35011,Dickinson,ND,321,Bismarck,ND
-58630,35011,Dickinson,ND,321,Bismarck,ND
-58631,35002,Bismarck,ND,321,Bismarck,ND
-58632,35011,Dickinson,ND,321,Bismarck,ND
-58634,35044,Watford City,ND,321,Bismarck,ND
-58636,35011,Dickinson,ND,321,Bismarck,ND
-58638,35002,Bismarck,ND,321,Bismarck,ND
-58639,35021,Hettinger,ND,321,Bismarck,ND
-58640,35011,Dickinson,ND,321,Bismarck,ND
-58641,35011,Dickinson,ND,321,Bismarck,ND
-58642,35011,Dickinson,ND,321,Bismarck,ND
-58643,35021,Hettinger,ND,321,Bismarck,ND
-58644,35011,Dickinson,ND,321,Bismarck,ND
-58645,35011,Dickinson,ND,321,Bismarck,ND
-58646,35021,Hettinger,ND,321,Bismarck,ND
-58647,35021,Hettinger,ND,321,Bismarck,ND
-58649,35021,Hettinger,ND,321,Bismarck,ND
-58650,35021,Hettinger,ND,321,Bismarck,ND
-58651,35021,Hettinger,ND,321,Bismarck,ND
-58652,35002,Bismarck,ND,321,Bismarck,ND
-58653,35021,Hettinger,ND,321,Bismarck,ND
-58654,35011,Dickinson,ND,321,Bismarck,ND
-58655,35011,Dickinson,ND,321,Bismarck,ND
-58656,35011,Dickinson,ND,321,Bismarck,ND
-58701,35031,Minot,ND,324,Minot,ND
-58702,35031,Minot,ND,324,Minot,ND
-58703,35031,Minot,ND,324,Minot,ND
-58704,35031,Minot,ND,324,Minot,ND
-58705,35031,Minot,ND,324,Minot,ND
-58707,35031,Minot,ND,324,Minot,ND
-58710,35031,Minot,ND,324,Minot,ND
-58711,35031,Minot,ND,324,Minot,ND
-58712,35031,Minot,ND,324,Minot,ND
-58713,35031,Minot,ND,324,Minot,ND
-58716,35031,Minot,ND,324,Minot,ND
-58718,35031,Minot,ND,324,Minot,ND
-58721,35031,Minot,ND,324,Minot,ND
-58722,35031,Minot,ND,324,Minot,ND
-58723,35031,Minot,ND,324,Minot,ND
-58725,35031,Minot,ND,324,Minot,ND
-58727,35041,Tioga,ND,324,Minot,ND
-58730,35009,Crosby,ND,324,Minot,ND
-58731,35031,Minot,ND,324,Minot,ND
-58733,35031,Minot,ND,324,Minot,ND
-58734,35031,Minot,ND,324,Minot,ND
-58735,35031,Minot,ND,324,Minot,ND
-58736,35031,Minot,ND,324,Minot,ND
-58737,35031,Minot,ND,324,Minot,ND
-58740,35031,Minot,ND,324,Minot,ND
-58741,35031,Minot,ND,324,Minot,ND
-58744,35031,Minot,ND,324,Minot,ND
-58746,35031,Minot,ND,324,Minot,ND
-58748,35003,Bottineau,ND,324,Minot,ND
-58750,35031,Minot,ND,324,Minot,ND
-58752,35031,Minot,ND,324,Minot,ND
-58755,35041,Tioga,ND,324,Minot,ND
-58756,35031,Minot,ND,324,Minot,ND
-58757,35044,Watford City,ND,321,Bismarck,ND
-58758,35019,Harvey,ND,321,Bismarck,ND
-58759,35031,Minot,ND,324,Minot,ND
-58760,35031,Minot,ND,324,Minot,ND
-58761,35031,Minot,ND,324,Minot,ND
-58762,35031,Minot,ND,324,Minot,ND
-58763,35031,Minot,ND,324,Minot,ND
-58765,35009,Crosby,ND,324,Minot,ND
-58768,35031,Minot,ND,324,Minot,ND
-58769,35031,Minot,ND,324,Minot,ND
-58770,35031,Minot,ND,324,Minot,ND
-58771,35031,Minot,ND,324,Minot,ND
-58772,35031,Minot,ND,324,Minot,ND
-58773,35041,Tioga,ND,324,Minot,ND
-58775,35031,Minot,ND,324,Minot,ND
-58776,35040,Stanley,ND,324,Minot,ND
-58778,35031,Minot,ND,324,Minot,ND
-58779,35031,Minot,ND,324,Minot,ND
-58781,35031,Minot,ND,324,Minot,ND
-58782,35031,Minot,ND,324,Minot,ND
-58783,35031,Minot,ND,324,Minot,ND
-58784,35040,Stanley,ND,324,Minot,ND
-58785,35031,Minot,ND,324,Minot,ND
-58787,35031,Minot,ND,324,Minot,ND
-58788,35031,Minot,ND,324,Minot,ND
-58789,35031,Minot,ND,324,Minot,ND
-58790,35031,Minot,ND,324,Minot,ND
-58792,35031,Minot,ND,324,Minot,ND
-58793,35031,Minot,ND,324,Minot,ND
-58794,35040,Stanley,ND,324,Minot,ND
-58795,35045,Williston,ND,324,Minot,ND
-58801,35045,Williston,ND,324,Minot,ND
-58802,35045,Williston,ND,324,Minot,ND
-58803,35045,Williston,ND,324,Minot,ND
-58830,35045,Williston,ND,324,Minot,ND
-58831,35045,Williston,ND,324,Minot,ND
-58833,35045,Williston,ND,324,Minot,ND
-58835,35044,Watford City,ND,321,Bismarck,ND
-58838,27046,Sidney,MT,274,Billings,MT
-58843,35045,Williston,ND,324,Minot,ND
-58844,35045,Williston,ND,324,Minot,ND
-58845,35045,Williston,ND,324,Minot,ND
-58847,35044,Watford City,ND,321,Bismarck,ND
-58849,35041,Tioga,ND,324,Minot,ND
-58852,35041,Tioga,ND,324,Minot,ND
-58853,35045,Williston,ND,324,Minot,ND
-58854,35044,Watford City,ND,321,Bismarck,ND
-58856,35045,Williston,ND,324,Minot,ND
-59001,27005,Billings,MT,274,Billings,MT
-59002,27005,Billings,MT,274,Billings,MT
-59003,27005,Billings,MT,274,Billings,MT
-59004,27005,Billings,MT,274,Billings,MT
-59006,27005,Billings,MT,274,Billings,MT
-59007,27040,Red Lodge,MT,274,Billings,MT
-59008,27040,Red Lodge,MT,274,Billings,MT
-59010,27005,Billings,MT,274,Billings,MT
-59011,27005,Billings,MT,274,Billings,MT
-59012,27005,Billings,MT,274,Billings,MT
-59013,27005,Billings,MT,274,Billings,MT
-59014,27005,Billings,MT,274,Billings,MT
-59015,27005,Billings,MT,274,Billings,MT
-59016,27005,Billings,MT,274,Billings,MT
-59018,27031,Livingston,MT,274,Billings,MT
-59019,27005,Billings,MT,274,Billings,MT
-59020,27031,Livingston,MT,274,Billings,MT
-59022,27024,Hardin,MT,274,Billings,MT
-59024,27005,Billings,MT,274,Billings,MT
-59025,53021,Sheridan,WY,274,Billings,MT
-59026,27005,Billings,MT,274,Billings,MT
-59027,27031,Livingston,MT,274,Billings,MT
-59028,27005,Billings,MT,274,Billings,MT
-59029,27005,Billings,MT,274,Billings,MT
-59030,27031,Livingston,MT,274,Billings,MT
-59031,27024,Hardin,MT,274,Billings,MT
-59032,27029,Lewistown,MT,274,Billings,MT
-59033,27005,Billings,MT,274,Billings,MT
-59034,27024,Hardin,MT,274,Billings,MT
-59035,27005,Billings,MT,274,Billings,MT
-59036,27005,Billings,MT,274,Billings,MT
-59037,27005,Billings,MT,274,Billings,MT
-59038,27005,Billings,MT,274,Billings,MT
-59039,27005,Billings,MT,274,Billings,MT
-59041,27005,Billings,MT,274,Billings,MT
-59043,27005,Billings,MT,274,Billings,MT
-59044,27005,Billings,MT,274,Billings,MT
-59046,27005,Billings,MT,274,Billings,MT
-59047,27031,Livingston,MT,274,Billings,MT
-59050,27005,Billings,MT,274,Billings,MT
-59052,27005,Billings,MT,274,Billings,MT
-59053,27005,Billings,MT,274,Billings,MT
-59054,27005,Billings,MT,274,Billings,MT
-59055,27031,Livingston,MT,274,Billings,MT
-59057,27005,Billings,MT,274,Billings,MT
-59058,27029,Lewistown,MT,274,Billings,MT
-59059,27005,Billings,MT,274,Billings,MT
-59061,27005,Billings,MT,274,Billings,MT
-59062,53021,Sheridan,WY,274,Billings,MT
-59063,27005,Billings,MT,274,Billings,MT
-59064,27005,Billings,MT,274,Billings,MT
-59065,27031,Livingston,MT,274,Billings,MT
-59066,27005,Billings,MT,274,Billings,MT
-59067,27005,Billings,MT,274,Billings,MT
-59068,27040,Red Lodge,MT,274,Billings,MT
-59069,27005,Billings,MT,274,Billings,MT
-59070,27005,Billings,MT,274,Billings,MT
-59071,27040,Red Lodge,MT,274,Billings,MT
-59072,27005,Billings,MT,274,Billings,MT
-59073,27005,Billings,MT,274,Billings,MT
-59074,27005,Billings,MT,274,Billings,MT
-59075,27024,Hardin,MT,274,Billings,MT
-59076,27005,Billings,MT,274,Billings,MT
-59077,27029,Lewistown,MT,274,Billings,MT
-59078,27005,Billings,MT,274,Billings,MT
-59079,27005,Billings,MT,274,Billings,MT
-59081,27031,Livingston,MT,274,Billings,MT
-59082,27031,Livingston,MT,274,Billings,MT
-59083,27005,Billings,MT,274,Billings,MT
-59084,27029,Lewistown,MT,274,Billings,MT
-59085,27005,Billings,MT,274,Billings,MT
-59086,27031,Livingston,MT,274,Billings,MT
-59087,27029,Lewistown,MT,274,Billings,MT
-59088,27005,Billings,MT,274,Billings,MT
-59089,27005,Billings,MT,274,Billings,MT
-59101,27005,Billings,MT,274,Billings,MT
-59102,27005,Billings,MT,274,Billings,MT
-59103,27005,Billings,MT,274,Billings,MT
-59104,27005,Billings,MT,274,Billings,MT
-59105,27005,Billings,MT,274,Billings,MT
-59106,27005,Billings,MT,274,Billings,MT
-59107,27005,Billings,MT,274,Billings,MT
-59108,27005,Billings,MT,274,Billings,MT
-59111,27005,Billings,MT,274,Billings,MT
-59112,27005,Billings,MT,274,Billings,MT
-59114,27005,Billings,MT,274,Billings,MT
-59115,27005,Billings,MT,274,Billings,MT
-59116,27005,Billings,MT,274,Billings,MT
-59117,27005,Billings,MT,274,Billings,MT
-59201,27053,Wolf Point,MT,274,Billings,MT
-59211,27037,Plentywood,MT,274,Billings,MT
-59212,35045,Williston,ND,324,Minot,ND
-59213,27039,Poplar,MT,274,Billings,MT
-59214,27033,Miles City,MT,274,Billings,MT
-59215,27046,Sidney,MT,274,Billings,MT
-59217,27046,Sidney,MT,274,Billings,MT
-59218,35045,Williston,ND,324,Minot,ND
-59219,27037,Plentywood,MT,274,Billings,MT
-59221,27046,Sidney,MT,274,Billings,MT
-59222,27037,Plentywood,MT,274,Billings,MT
-59223,27020,Glasgow,MT,274,Billings,MT
-59225,27053,Wolf Point,MT,274,Billings,MT
-59226,35045,Williston,ND,324,Minot,ND
-59230,27020,Glasgow,MT,274,Billings,MT
-59231,27020,Glasgow,MT,274,Billings,MT
-59240,27020,Glasgow,MT,274,Billings,MT
-59241,27020,Glasgow,MT,274,Billings,MT
-59242,27037,Plentywood,MT,274,Billings,MT
-59243,27046,Sidney,MT,274,Billings,MT
-59244,27020,Glasgow,MT,274,Billings,MT
-59247,27037,Plentywood,MT,274,Billings,MT
-59248,27020,Glasgow,MT,274,Billings,MT
-59250,27020,Glasgow,MT,274,Billings,MT
-59252,27037,Plentywood,MT,274,Billings,MT
-59253,27037,Plentywood,MT,274,Billings,MT
-59254,27037,Plentywood,MT,274,Billings,MT
-59255,27039,Poplar,MT,274,Billings,MT
-59256,27037,Plentywood,MT,274,Billings,MT
-59257,27037,Plentywood,MT,274,Billings,MT
-59258,27037,Plentywood,MT,274,Billings,MT
-59259,27046,Sidney,MT,274,Billings,MT
-59260,27020,Glasgow,MT,274,Billings,MT
-59261,27032,Malta,MT,275,Great Falls,MT
-59262,27046,Sidney,MT,274,Billings,MT
-59263,27043,Scobey,MT,274,Billings,MT
-59270,27046,Sidney,MT,274,Billings,MT
-59273,27020,Glasgow,MT,274,Billings,MT
-59274,27053,Wolf Point,MT,274,Billings,MT
-59275,27037,Plentywood,MT,274,Billings,MT
-59276,27037,Plentywood,MT,274,Billings,MT
-59301,27033,Miles City,MT,274,Billings,MT
-59311,43041,Spearfish,SD,370,Rapid City,SD
-59312,27033,Miles City,MT,274,Billings,MT
-59313,27002,Baker,MT,274,Billings,MT
-59314,53008,Gillette,WY,274,Billings,MT
-59315,27021,Glendive,MT,274,Billings,MT
-59316,43041,Spearfish,SD,370,Rapid City,SD
-59317,27033,Miles City,MT,274,Billings,MT
-59318,27033,Miles City,MT,274,Billings,MT
-59319,43041,Spearfish,SD,370,Rapid City,SD
-59322,27033,Miles City,MT,274,Billings,MT
-59323,27005,Billings,MT,274,Billings,MT
-59324,27002,Baker,MT,274,Billings,MT
-59326,27021,Glendive,MT,274,Billings,MT
-59327,27005,Billings,MT,274,Billings,MT
-59330,27021,Glendive,MT,274,Billings,MT
-59332,43041,Spearfish,SD,370,Rapid City,SD
-59333,27005,Billings,MT,274,Billings,MT
-59336,27033,Miles City,MT,274,Billings,MT
-59337,27033,Miles City,MT,274,Billings,MT
-59338,27033,Miles City,MT,274,Billings,MT
-59339,27021,Glendive,MT,274,Billings,MT
-59341,27021,Glendive,MT,274,Billings,MT
-59343,27033,Miles City,MT,274,Billings,MT
-59344,27002,Baker,MT,274,Billings,MT
-59345,27033,Miles City,MT,274,Billings,MT
-59347,27005,Billings,MT,274,Billings,MT
-59349,27033,Miles City,MT,274,Billings,MT
-59351,27033,Miles City,MT,274,Billings,MT
-59353,27021,Glendive,MT,274,Billings,MT
-59354,27002,Baker,MT,274,Billings,MT
-59401,27022,Great Falls,MT,275,Great Falls,MT
-59402,27022,Great Falls,MT,275,Great Falls,MT
-59403,27022,Great Falls,MT,275,Great Falls,MT
-59404,27022,Great Falls,MT,275,Great Falls,MT
-59405,27022,Great Falls,MT,275,Great Falls,MT
-59406,27022,Great Falls,MT,275,Great Falls,MT
-59410,27022,Great Falls,MT,275,Great Falls,MT
-59411,27054,Browning,MT,275,Great Falls,MT
-59412,27022,Great Falls,MT,275,Great Falls,MT
-59414,27022,Great Falls,MT,275,Great Falls,MT
-59416,27022,Great Falls,MT,275,Great Falls,MT
-59417,27054,Browning,MT,275,Great Falls,MT
-59418,27029,Lewistown,MT,274,Billings,MT
-59419,27022,Great Falls,MT,275,Great Falls,MT
-59420,27022,Great Falls,MT,275,Great Falls,MT
-59421,27022,Great Falls,MT,275,Great Falls,MT
-59422,27022,Great Falls,MT,275,Great Falls,MT
-59424,27022,Great Falls,MT,275,Great Falls,MT
-59425,27012,Conrad,MT,275,Great Falls,MT
-59427,27014,Cut Bank/Browning,MT,275,Great Falls,MT
-59430,27029,Lewistown,MT,274,Billings,MT
-59432,27012,Conrad,MT,275,Great Falls,MT
-59433,27022,Great Falls,MT,275,Great Falls,MT
-59434,27054,Browning,MT,275,Great Falls,MT
-59435,27044,Shelby,MT,275,Great Falls,MT
-59436,27022,Great Falls,MT,275,Great Falls,MT
-59440,27022,Great Falls,MT,275,Great Falls,MT
-59441,27029,Lewistown,MT,274,Billings,MT
-59442,27022,Great Falls,MT,275,Great Falls,MT
-59443,27022,Great Falls,MT,275,Great Falls,MT
-59444,27044,Shelby,MT,275,Great Falls,MT
-59446,27022,Great Falls,MT,275,Great Falls,MT
-59447,27022,Great Falls,MT,275,Great Falls,MT
-59448,27054,Browning,MT,275,Great Falls,MT
-59450,27022,Great Falls,MT,275,Great Falls,MT
-59451,27029,Lewistown,MT,274,Billings,MT
-59452,27029,Lewistown,MT,274,Billings,MT
-59453,27005,Billings,MT,274,Billings,MT
-59454,27044,Shelby,MT,275,Great Falls,MT
-59456,27044,Shelby,MT,275,Great Falls,MT
-59457,27029,Lewistown,MT,274,Billings,MT
-59460,27022,Great Falls,MT,275,Great Falls,MT
-59461,27008,Chester,MT,275,Great Falls,MT
-59462,27029,Lewistown,MT,274,Billings,MT
-59463,27022,Great Falls,MT,275,Great Falls,MT
-59464,27029,Lewistown,MT,274,Billings,MT
-59465,27022,Great Falls,MT,275,Great Falls,MT
-59466,27044,Shelby,MT,275,Great Falls,MT
-59467,27022,Great Falls,MT,275,Great Falls,MT
-59468,27022,Great Falls,MT,275,Great Falls,MT
-59469,27022,Great Falls,MT,275,Great Falls,MT
-59471,27029,Lewistown,MT,274,Billings,MT
-59472,27022,Great Falls,MT,275,Great Falls,MT
-59474,27044,Shelby,MT,275,Great Falls,MT
-59477,27022,Great Falls,MT,275,Great Falls,MT
-59479,27022,Great Falls,MT,275,Great Falls,MT
-59480,27022,Great Falls,MT,275,Great Falls,MT
-59482,27044,Shelby,MT,275,Great Falls,MT
-59483,27022,Great Falls,MT,275,Great Falls,MT
-59484,27044,Shelby,MT,275,Great Falls,MT
-59485,27022,Great Falls,MT,275,Great Falls,MT
-59486,27012,Conrad,MT,275,Great Falls,MT
-59487,27022,Great Falls,MT,275,Great Falls,MT
-59489,27029,Lewistown,MT,274,Billings,MT
-59501,27026,Havre,MT,275,Great Falls,MT
-59520,27022,Great Falls,MT,275,Great Falls,MT
-59521,27022,Great Falls,MT,275,Great Falls,MT
-59522,27008,Chester,MT,275,Great Falls,MT
-59523,27026,Havre,MT,275,Great Falls,MT
-59524,27026,Havre,MT,275,Great Falls,MT
-59525,27026,Havre,MT,275,Great Falls,MT
-59526,27026,Havre,MT,275,Great Falls,MT
-59527,27026,Havre,MT,275,Great Falls,MT
-59528,27026,Havre,MT,275,Great Falls,MT
-59529,27026,Havre,MT,275,Great Falls,MT
-59530,27008,Chester,MT,275,Great Falls,MT
-59531,27008,Chester,MT,275,Great Falls,MT
-59532,27026,Havre,MT,275,Great Falls,MT
-59535,27029,Lewistown,MT,274,Billings,MT
-59537,27032,Malta,MT,275,Great Falls,MT
-59538,27032,Malta,MT,275,Great Falls,MT
-59540,27008,Chester,MT,275,Great Falls,MT
-59542,27026,Havre,MT,275,Great Falls,MT
-59544,27020,Glasgow,MT,274,Billings,MT
-59545,27008,Chester,MT,275,Great Falls,MT
-59546,27026,Havre,MT,275,Great Falls,MT
-59547,27026,Havre,MT,275,Great Falls,MT
-59601,27027,Helena,MT,274,Billings,MT
-59602,27027,Helena,MT,274,Billings,MT
-59604,27027,Helena,MT,274,Billings,MT
-59620,27027,Helena,MT,274,Billings,MT
-59623,27027,Helena,MT,274,Billings,MT
-59624,27027,Helena,MT,274,Billings,MT
-59625,27027,Helena,MT,274,Billings,MT
-59626,27027,Helena,MT,274,Billings,MT
-59631,27027,Helena,MT,274,Billings,MT
-59632,27027,Helena,MT,274,Billings,MT
-59633,27027,Helena,MT,274,Billings,MT
-59634,27027,Helena,MT,274,Billings,MT
-59635,27027,Helena,MT,274,Billings,MT
-59636,27027,Helena,MT,274,Billings,MT
-59638,27027,Helena,MT,274,Billings,MT
-59639,27022,Great Falls,MT,275,Great Falls,MT
-59640,27027,Helena,MT,274,Billings,MT
-59641,27049,Townsend,MT,274,Billings,MT
-59642,27051,White Sulphur Springs,MT,274,Billings,MT
-59643,27049,Townsend,MT,274,Billings,MT
-59644,27049,Townsend,MT,274,Billings,MT
-59645,27051,White Sulphur Springs,MT,274,Billings,MT
-59647,27027,Helena,MT,274,Billings,MT
-59648,27022,Great Falls,MT,275,Great Falls,MT
-59701,27007,Butte,MT,276,Missoula,MT
-59702,27007,Butte,MT,276,Missoula,MT
-59703,27007,Butte,MT,276,Missoula,MT
-59707,27007,Butte,MT,276,Missoula,MT
-59710,27045,Sheridan,MT,276,Missoula,MT
-59711,27001,Anaconda,MT,276,Missoula,MT
-59713,27027,Helena,MT,274,Billings,MT
-59714,27006,Bozeman,MT,274,Billings,MT
-59715,27006,Bozeman,MT,274,Billings,MT
-59716,27006,Bozeman,MT,274,Billings,MT
-59717,27006,Bozeman,MT,274,Billings,MT
-59718,27006,Bozeman,MT,274,Billings,MT
-59719,27006,Bozeman,MT,274,Billings,MT
-59720,27006,Bozeman,MT,274,Billings,MT
-59721,27007,Butte,MT,276,Missoula,MT
-59722,27015,Deer Lodge,MT,276,Missoula,MT
-59724,27016,Dillon,MT,276,Missoula,MT
-59725,27016,Dillon,MT,276,Missoula,MT
-59727,27007,Butte,MT,276,Missoula,MT
-59728,27027,Helena,MT,274,Billings,MT
-59729,27017,Ennis,MT,274,Billings,MT
-59730,27006,Bozeman,MT,274,Billings,MT
-59731,27027,Helena,MT,274,Billings,MT
-59732,27016,Dillon,MT,276,Missoula,MT
-59733,27034,Missoula,MT,276,Missoula,MT
-59735,27017,Ennis,MT,274,Billings,MT
-59736,27016,Dillon,MT,276,Missoula,MT
-59739,27016,Dillon,MT,276,Missoula,MT
-59740,27017,Ennis,MT,274,Billings,MT
-59741,27006,Bozeman,MT,274,Billings,MT
-59743,27007,Butte,MT,276,Missoula,MT
-59745,27017,Ennis,MT,274,Billings,MT
-59746,27016,Dillon,MT,276,Missoula,MT
-59747,27017,Ennis,MT,274,Billings,MT
-59748,27007,Butte,MT,276,Missoula,MT
-59749,27045,Sheridan,MT,276,Missoula,MT
-59750,27007,Butte,MT,276,Missoula,MT
-59751,27007,Butte,MT,276,Missoula,MT
-59752,27006,Bozeman,MT,274,Billings,MT
-59754,27016,Dillon,MT,276,Missoula,MT
-59755,27045,Sheridan,MT,276,Missoula,MT
-59756,27015,Deer Lodge,MT,276,Missoula,MT
-59758,27006,Bozeman,MT,274,Billings,MT
-59759,27007,Butte,MT,276,Missoula,MT
-59760,27006,Bozeman,MT,274,Billings,MT
-59761,27007,Butte,MT,276,Missoula,MT
-59762,27007,Butte,MT,276,Missoula,MT
-59771,27006,Bozeman,MT,274,Billings,MT
-59772,27006,Bozeman,MT,274,Billings,MT
-59801,27034,Missoula,MT,276,Missoula,MT
-59802,27034,Missoula,MT,276,Missoula,MT
-59803,27034,Missoula,MT,276,Missoula,MT
-59804,27034,Missoula,MT,276,Missoula,MT
-59806,27034,Missoula,MT,276,Missoula,MT
-59807,27034,Missoula,MT,276,Missoula,MT
-59808,27034,Missoula,MT,276,Missoula,MT
-59812,27034,Missoula,MT,276,Missoula,MT
-59820,27034,Missoula,MT,276,Missoula,MT
-59821,27034,Missoula,MT,276,Missoula,MT
-59823,27034,Missoula,MT,276,Missoula,MT
-59824,27041,Ronan,MT,276,Missoula,MT
-59825,27034,Missoula,MT,276,Missoula,MT
-59826,27034,Missoula,MT,276,Missoula,MT
-59827,27023,Hamilton,MT,276,Missoula,MT
-59828,27023,Hamilton,MT,276,Missoula,MT
-59829,27023,Hamilton,MT,276,Missoula,MT
-59830,27047,Superior,MT,276,Missoula,MT
-59831,27034,Missoula,MT,276,Missoula,MT
-59832,27034,Missoula,MT,276,Missoula,MT
-59833,27034,Missoula,MT,276,Missoula,MT
-59834,27034,Missoula,MT,276,Missoula,MT
-59835,27023,Hamilton,MT,276,Missoula,MT
-59837,27034,Missoula,MT,276,Missoula,MT
-59840,27023,Hamilton,MT,276,Missoula,MT
-59841,27023,Hamilton,MT,276,Missoula,MT
-59842,27047,Superior,MT,276,Missoula,MT
-59843,27034,Missoula,MT,276,Missoula,MT
-59844,13033,Sandpoint,ID,440,Spokane,WA
-59845,27036,Plains,MT,276,Missoula,MT
-59846,27034,Missoula,MT,276,Missoula,MT
-59847,27034,Missoula,MT,276,Missoula,MT
-59848,27038,Polson,MT,276,Missoula,MT
-59851,27034,Missoula,MT,276,Missoula,MT
-59853,13033,Sandpoint,ID,440,Spokane,WA
-59854,27034,Missoula,MT,276,Missoula,MT
-59855,27041,Ronan,MT,276,Missoula,MT
-59856,27036,Plains,MT,276,Missoula,MT
-59858,27034,Missoula,MT,276,Missoula,MT
-59859,27036,Plains,MT,276,Missoula,MT
-59860,27038,Polson,MT,276,Missoula,MT
-59863,27034,Missoula,MT,276,Missoula,MT
-59864,27041,Ronan,MT,276,Missoula,MT
-59865,27034,Missoula,MT,276,Missoula,MT
-59866,27047,Superior,MT,276,Missoula,MT
-59867,27047,Superior,MT,276,Missoula,MT
-59868,27034,Missoula,MT,276,Missoula,MT
-59870,27034,Missoula,MT,276,Missoula,MT
-59871,27023,Hamilton,MT,276,Missoula,MT
-59872,27047,Superior,MT,276,Missoula,MT
-59873,27036,Plains,MT,276,Missoula,MT
-59874,27036,Plains,MT,276,Missoula,MT
-59875,27023,Hamilton,MT,276,Missoula,MT
-59901,27028,Kalispell,MT,276,Missoula,MT
-59903,27028,Kalispell,MT,276,Missoula,MT
-59904,27028,Kalispell,MT,276,Missoula,MT
-59910,27038,Polson,MT,276,Missoula,MT
-59911,27028,Kalispell,MT,276,Missoula,MT
-59912,27052,Whitefish,MT,276,Missoula,MT
-59913,27028,Kalispell,MT,276,Missoula,MT
-59914,27038,Polson,MT,276,Missoula,MT
-59915,27038,Polson,MT,276,Missoula,MT
-59916,27028,Kalispell,MT,276,Missoula,MT
-59917,27028,Kalispell,MT,276,Missoula,MT
-59918,27028,Kalispell,MT,276,Missoula,MT
-59919,27028,Kalispell,MT,276,Missoula,MT
-59920,27028,Kalispell,MT,276,Missoula,MT
-59921,27028,Kalispell,MT,276,Missoula,MT
-59922,27028,Kalispell,MT,276,Missoula,MT
-59923,27030,Libby,MT,276,Missoula,MT
-59925,27028,Kalispell,MT,276,Missoula,MT
-59926,27028,Kalispell,MT,276,Missoula,MT
-59927,27052,Whitefish,MT,276,Missoula,MT
-59928,27028,Kalispell,MT,276,Missoula,MT
-59929,27038,Polson,MT,276,Missoula,MT
-59930,27028,Kalispell,MT,276,Missoula,MT
-59931,27028,Kalispell,MT,276,Missoula,MT
-59932,27028,Kalispell,MT,276,Missoula,MT
-59933,27028,Kalispell,MT,276,Missoula,MT
-59934,27028,Kalispell,MT,276,Missoula,MT
-59935,27030,Libby,MT,276,Missoula,MT
-59936,27028,Kalispell,MT,276,Missoula,MT
-59937,27052,Whitefish,MT,276,Missoula,MT
-60002,14139,Waukegan,IL,451,Milwaukee,WI
-60004,14004,Arlington Heights,IL,161,Evanston,IL
-60005,14004,Arlington Heights,IL,161,Evanston,IL
-60006,14004,Arlington Heights,IL,161,Evanston,IL
-60007,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60008,14004,Arlington Heights,IL,161,Evanston,IL
-60009,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60010,14006,Barrington,IL,158,Elgin,IL
-60011,14006,Barrington,IL,158,Elgin,IL
-60012,14082,McHenry,IL,158,Elgin,IL
-60013,14006,Barrington,IL,158,Elgin,IL
-60014,14037,Elgin,IL,158,Elgin,IL
-60015,14060,Highland Park,IL,161,Evanston,IL
-60016,14104,Park Ridge,IL,161,Evanston,IL
-60017,14104,Park Ridge,IL,161,Evanston,IL
-60018,14104,Park Ridge,IL,161,Evanston,IL
-60019,14104,Park Ridge,IL,161,Evanston,IL
-60020,14082,McHenry,IL,158,Elgin,IL
-60021,14006,Barrington,IL,158,Elgin,IL
-60022,14060,Highland Park,IL,161,Evanston,IL
-60025,14040,Evanston,IL,161,Evanston,IL
-60026,14040,Evanston,IL,161,Evanston,IL
-60029,14104,Park Ridge,IL,161,Evanston,IL
-60030,14074,Libertyville,IL,451,Milwaukee,WI
-60031,14139,Waukegan,IL,451,Milwaukee,WI
-60033,14054,Harvard,IL,171,Rockford,IL
-60034,14143,Woodstock,IL,171,Rockford,IL
-60035,14060,Highland Park,IL,161,Evanston,IL
-60037,14060,Highland Park,IL,161,Evanston,IL
-60038,14004,Arlington Heights,IL,161,Evanston,IL
-60039,14037,Elgin,IL,158,Elgin,IL
-60040,14060,Highland Park,IL,161,Evanston,IL
-60041,14082,McHenry,IL,158,Elgin,IL
-60042,14082,McHenry,IL,158,Elgin,IL
-60043,14040,Evanston,IL,161,Evanston,IL
-60044,14072,Lake Forest,IL,161,Evanston,IL
-60045,14072,Lake Forest,IL,161,Evanston,IL
-60046,14139,Waukegan,IL,451,Milwaukee,WI
-60047,14006,Barrington,IL,158,Elgin,IL
-60048,14074,Libertyville,IL,451,Milwaukee,WI
-60050,14082,McHenry,IL,158,Elgin,IL
-60051,14082,McHenry,IL,158,Elgin,IL
-60053,14104,Park Ridge,IL,161,Evanston,IL
-60055,14004,Arlington Heights,IL,161,Evanston,IL
-60056,14004,Arlington Heights,IL,161,Evanston,IL
-60060,14074,Libertyville,IL,451,Milwaukee,WI
-60061,14074,Libertyville,IL,451,Milwaukee,WI
-60062,14040,Evanston,IL,161,Evanston,IL
-60064,14139,Waukegan,IL,451,Milwaukee,WI
-60065,14040,Evanston,IL,161,Evanston,IL
-60067,14004,Arlington Heights,IL,161,Evanston,IL
-60068,14104,Park Ridge,IL,161,Evanston,IL
-60069,14060,Highland Park,IL,161,Evanston,IL
-60070,14004,Arlington Heights,IL,161,Evanston,IL
-60071,14082,McHenry,IL,158,Elgin,IL
-60072,14082,McHenry,IL,158,Elgin,IL
-60073,14074,Libertyville,IL,451,Milwaukee,WI
-60074,14004,Arlington Heights,IL,161,Evanston,IL
-60075,14139,Waukegan,IL,451,Milwaukee,WI
-60076,14125,Skokie,IL,161,Evanston,IL
-60077,14125,Skokie,IL,161,Evanston,IL
-60078,14004,Arlington Heights,IL,161,Evanston,IL
-60079,14139,Waukegan,IL,451,Milwaukee,WI
-60081,14082,McHenry,IL,158,Elgin,IL
-60082,14040,Evanston,IL,161,Evanston,IL
-60083,14139,Waukegan,IL,451,Milwaukee,WI
-60084,14006,Barrington,IL,158,Elgin,IL
-60085,14139,Waukegan,IL,451,Milwaukee,WI
-60086,14072,Lake Forest,IL,161,Evanston,IL
-60087,14139,Waukegan,IL,451,Milwaukee,WI
-60088,14139,Waukegan,IL,451,Milwaukee,WI
-60089,14004,Arlington Heights,IL,161,Evanston,IL
-60090,14004,Arlington Heights,IL,161,Evanston,IL
-60091,14040,Evanston,IL,161,Evanston,IL
-60093,14040,Evanston,IL,161,Evanston,IL
-60094,14004,Arlington Heights,IL,161,Evanston,IL
-60095,14004,Arlington Heights,IL,161,Evanston,IL
-60096,14139,Waukegan,IL,451,Milwaukee,WI
-60097,14082,McHenry,IL,158,Elgin,IL
-60098,14143,Woodstock,IL,171,Rockford,IL
-60099,14139,Waukegan,IL,451,Milwaukee,WI
-60101,14039,Elmhurst,IL,166,Melrose Park,IL
-60102,14037,Elgin,IL,158,Elgin,IL
-60103,14037,Elgin,IL,158,Elgin,IL
-60104,14084,Melrose Park,IL,166,Melrose Park,IL
-60105,14039,Elmhurst,IL,166,Melrose Park,IL
-60106,14039,Elmhurst,IL,166,Melrose Park,IL
-60107,14063,Hoffman Estates,IL,158,Elgin,IL
-60108,14050,Glendale Heights,IL,166,Melrose Park,IL
-60109,14037,Elgin,IL,158,Elgin,IL
-60110,14037,Elgin,IL,158,Elgin,IL
-60111,14117,Rockford,IL,171,Rockford,IL
-60112,14028,De Kalb,IL,171,Rockford,IL
-60113,14115,Rochelle,IL,171,Rockford,IL
-60115,14028,De Kalb,IL,171,Rockford,IL
-60116,14050,Glendale Heights,IL,166,Melrose Park,IL
-60117,14050,Glendale Heights,IL,166,Melrose Park,IL
-60118,14037,Elgin,IL,158,Elgin,IL
-60119,14147,Geneva,IL,166,Melrose Park,IL
-60120,14037,Elgin,IL,158,Elgin,IL
-60121,14037,Elgin,IL,158,Elgin,IL
-60122,14050,Glendale Heights,IL,166,Melrose Park,IL
-60123,14037,Elgin,IL,158,Elgin,IL
-60124,14037,Elgin,IL,158,Elgin,IL
-60126,14039,Elmhurst,IL,166,Melrose Park,IL
-60128,14050,Glendale Heights,IL,166,Melrose Park,IL
-60129,14117,Rockford,IL,171,Rockford,IL
-60130,14098,Oak Park,IL,166,Melrose Park,IL
-60131,14084,Melrose Park,IL,166,Melrose Park,IL
-60132,14050,Glendale Heights,IL,166,Melrose Park,IL
-60133,14037,Elgin,IL,158,Elgin,IL
-60134,14147,Geneva,IL,166,Melrose Park,IL
-60135,14117,Rockford,IL,171,Rockford,IL
-60136,14037,Elgin,IL,158,Elgin,IL
-60137,14141,Winfield,IL,166,Melrose Park,IL
-60138,14141,Winfield,IL,166,Melrose Park,IL
-60139,14050,Glendale Heights,IL,166,Melrose Park,IL
-60140,14037,Elgin,IL,158,Elgin,IL
-60141,14084,Melrose Park,IL,166,Melrose Park,IL
-60142,14037,Elgin,IL,158,Elgin,IL
-60143,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60144,14147,Geneva,IL,166,Melrose Park,IL
-60145,14117,Rockford,IL,171,Rockford,IL
-60146,14117,Rockford,IL,171,Rockford,IL
-60147,14147,Geneva,IL,166,Melrose Park,IL
-60148,14039,Elmhurst,IL,166,Melrose Park,IL
-60150,14028,De Kalb,IL,171,Rockford,IL
-60151,14028,De Kalb,IL,171,Rockford,IL
-60152,14008,Belvidere,IL,171,Rockford,IL
-60153,14084,Melrose Park,IL,166,Melrose Park,IL
-60154,14071,La Grange,IL,166,Melrose Park,IL
-60155,14084,Melrose Park,IL,166,Melrose Park,IL
-60156,14037,Elgin,IL,158,Elgin,IL
-60157,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60159,14004,Arlington Heights,IL,161,Evanston,IL
-60160,14084,Melrose Park,IL,166,Melrose Park,IL
-60161,14084,Melrose Park,IL,166,Melrose Park,IL
-60162,14039,Elmhurst,IL,166,Melrose Park,IL
-60163,14039,Elmhurst,IL,166,Melrose Park,IL
-60164,14039,Elmhurst,IL,166,Melrose Park,IL
-60165,14084,Melrose Park,IL,166,Melrose Park,IL
-60168,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60169,14063,Hoffman Estates,IL,158,Elgin,IL
-60171,14084,Melrose Park,IL,166,Melrose Park,IL
-60172,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60173,14004,Arlington Heights,IL,161,Evanston,IL
-60174,14147,Geneva,IL,166,Melrose Park,IL
-60175,14147,Geneva,IL,166,Melrose Park,IL
-60176,14084,Melrose Park,IL,166,Melrose Park,IL
-60177,14037,Elgin,IL,158,Elgin,IL
-60178,14028,De Kalb,IL,171,Rockford,IL
-60179,14037,Elgin,IL,158,Elgin,IL
-60180,14008,Belvidere,IL,171,Rockford,IL
-60181,14039,Elmhurst,IL,166,Melrose Park,IL
-60183,14147,Geneva,IL,166,Melrose Park,IL
-60184,14141,Winfield,IL,166,Melrose Park,IL
-60185,14141,Winfield,IL,166,Melrose Park,IL
-60186,14141,Winfield,IL,166,Melrose Park,IL
-60187,14141,Winfield,IL,166,Melrose Park,IL
-60188,14141,Winfield,IL,166,Melrose Park,IL
-60189,14141,Winfield,IL,166,Melrose Park,IL
-60190,14141,Winfield,IL,166,Melrose Park,IL
-60191,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60192,14006,Barrington,IL,158,Elgin,IL
-60193,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60194,14063,Hoffman Estates,IL,158,Elgin,IL
-60195,14063,Hoffman Estates,IL,158,Elgin,IL
-60196,14004,Arlington Heights,IL,161,Evanston,IL
-60197,14050,Glendale Heights,IL,166,Melrose Park,IL
-60199,14050,Glendale Heights,IL,166,Melrose Park,IL
-60201,14040,Evanston,IL,161,Evanston,IL
-60202,14040,Evanston,IL,161,Evanston,IL
-60203,14040,Evanston,IL,161,Evanston,IL
-60204,14040,Evanston,IL,161,Evanston,IL
-60208,14040,Evanston,IL,161,Evanston,IL
-60301,14098,Oak Park,IL,166,Melrose Park,IL
-60302,14098,Oak Park,IL,166,Melrose Park,IL
-60303,14098,Oak Park,IL,166,Melrose Park,IL
-60304,14098,Oak Park,IL,166,Melrose Park,IL
-60305,14098,Oak Park,IL,166,Melrose Park,IL
-60399,14038,Elk Grove Village,IL,166,Melrose Park,IL
-60401,14024,Chicago Heights,IL,155,Blue Island,IL
-60402,14010,Berwyn,IL,166,Melrose Park,IL
-60403,14068,Joliet,IL,164,Joliet,IL
-60404,14068,Joliet,IL,164,Joliet,IL
-60406,14012,Blue Island,IL,155,Blue Island,IL
-60407,14068,Joliet,IL,164,Joliet,IL
-60408,14068,Joliet,IL,164,Joliet,IL
-60409,15035,Hammond,IN,186,Munster,IN
-60410,14068,Joliet,IL,164,Joliet,IL
-60411,14024,Chicago Heights,IL,155,Blue Island,IL
-60412,14024,Chicago Heights,IL,155,Blue Island,IL
-60415,14097,Oak Lawn,IL,155,Blue Island,IL
-60416,14090,Morris,IL,164,Joliet,IL
-60417,14024,Chicago Heights,IL,155,Blue Island,IL
-60418,14012,Blue Island,IL,155,Blue Island,IL
-60419,14055,Harvey,IL,155,Blue Island,IL
-60420,14132,Streator,IL,170,Peoria,IL
-60421,14068,Joliet,IL,164,Joliet,IL
-60422,14057,Hazel Crest,IL,155,Blue Island,IL
-60423,14068,Joliet,IL,164,Joliet,IL
-60424,14090,Morris,IL,164,Joliet,IL
-60425,14024,Chicago Heights,IL,155,Blue Island,IL
-60426,14055,Harvey,IL,155,Blue Island,IL
-60428,14055,Harvey,IL,155,Blue Island,IL
-60429,14057,Hazel Crest,IL,155,Blue Island,IL
-60430,14057,Hazel Crest,IL,155,Blue Island,IL
-60431,14068,Joliet,IL,164,Joliet,IL
-60432,14068,Joliet,IL,164,Joliet,IL
-60433,14068,Joliet,IL,164,Joliet,IL
-60434,14068,Joliet,IL,164,Joliet,IL
-60435,14068,Joliet,IL,164,Joliet,IL
-60436,14068,Joliet,IL,164,Joliet,IL
-60437,14132,Streator,IL,170,Peoria,IL
-60438,15058,Munster,IN,186,Munster,IN
-60439,14068,Joliet,IL,164,Joliet,IL
-60440,14095,Naperville,IL,163,Hinsdale,IL
-60441,14068,Joliet,IL,164,Joliet,IL
-60442,14068,Joliet,IL,164,Joliet,IL
-60443,14057,Hazel Crest,IL,155,Blue Island,IL
-60444,14090,Morris,IL,164,Joliet,IL
-60445,14012,Blue Island,IL,155,Blue Island,IL
-60446,14068,Joliet,IL,164,Joliet,IL
-60447,14068,Joliet,IL,164,Joliet,IL
-60448,14068,Joliet,IL,164,Joliet,IL
-60449,14068,Joliet,IL,164,Joliet,IL
-60450,14090,Morris,IL,164,Joliet,IL
-60451,14068,Joliet,IL,164,Joliet,IL
-60452,14057,Hazel Crest,IL,155,Blue Island,IL
-60453,14097,Oak Lawn,IL,155,Blue Island,IL
-60454,14097,Oak Lawn,IL,155,Blue Island,IL
-60455,14097,Oak Lawn,IL,155,Blue Island,IL
-60456,14097,Oak Lawn,IL,155,Blue Island,IL
-60457,14097,Oak Lawn,IL,155,Blue Island,IL
-60458,14071,La Grange,IL,166,Melrose Park,IL
-60459,14097,Oak Lawn,IL,155,Blue Island,IL
-60460,14110,Pontiac,IL,175,Bloomington,IL
-60461,14024,Chicago Heights,IL,155,Blue Island,IL
-60462,14101,Palos Heights,IL,155,Blue Island,IL
-60463,14101,Palos Heights,IL,155,Blue Island,IL
-60464,14101,Palos Heights,IL,155,Blue Island,IL
-60465,14101,Palos Heights,IL,155,Blue Island,IL
-60466,14024,Chicago Heights,IL,155,Blue Island,IL
-60467,14101,Palos Heights,IL,155,Blue Island,IL
-60468,14069,Kankakee,IL,164,Joliet,IL
-60469,14055,Harvey,IL,155,Blue Island,IL
-60470,14132,Streator,IL,170,Peoria,IL
-60471,14057,Hazel Crest,IL,155,Blue Island,IL
-60472,14012,Blue Island,IL,155,Blue Island,IL
-60473,14055,Harvey,IL,155,Blue Island,IL
-60474,14090,Morris,IL,164,Joliet,IL
-60475,14024,Chicago Heights,IL,155,Blue Island,IL
-60476,14055,Harvey,IL,155,Blue Island,IL
-60477,14101,Palos Heights,IL,155,Blue Island,IL
-60478,14057,Hazel Crest,IL,155,Blue Island,IL
-60479,14090,Morris,IL,164,Joliet,IL
-60480,14071,La Grange,IL,166,Melrose Park,IL
-60481,14068,Joliet,IL,164,Joliet,IL
-60482,14101,Palos Heights,IL,155,Blue Island,IL
-60484,14024,Chicago Heights,IL,155,Blue Island,IL
-60487,14101,Palos Heights,IL,155,Blue Island,IL
-60490,14095,Naperville,IL,163,Hinsdale,IL
-60491,14068,Joliet,IL,164,Joliet,IL
-60499,14010,Berwyn,IL,166,Melrose Park,IL
-60501,14071,La Grange,IL,166,Melrose Park,IL
-60502,14005,Aurora,IL,154,Aurora,IL
-60503,14095,Naperville,IL,163,Hinsdale,IL
-60504,14005,Aurora,IL,154,Aurora,IL
-60505,14005,Aurora,IL,154,Aurora,IL
-60506,14005,Aurora,IL,154,Aurora,IL
-60507,14005,Aurora,IL,154,Aurora,IL
-60510,14147,Geneva,IL,166,Melrose Park,IL
-60511,14005,Aurora,IL,154,Aurora,IL
-60512,14005,Aurora,IL,154,Aurora,IL
-60513,14071,La Grange,IL,166,Melrose Park,IL
-60514,14062,Hinsdale,IL,163,Hinsdale,IL
-60515,14032,Downers Grove,IL,163,Hinsdale,IL
-60516,14032,Downers Grove,IL,163,Hinsdale,IL
-60517,14032,Downers Grove,IL,163,Hinsdale,IL
-60518,14085,Mendota,IL,171,Rockford,IL
-60519,14005,Aurora,IL,154,Aurora,IL
-60520,14005,Aurora,IL,154,Aurora,IL
-60521,14062,Hinsdale,IL,163,Hinsdale,IL
-60522,14062,Hinsdale,IL,163,Hinsdale,IL
-60523,14062,Hinsdale,IL,163,Hinsdale,IL
-60525,14071,La Grange,IL,166,Melrose Park,IL
-60526,14071,La Grange,IL,166,Melrose Park,IL
-60527,14062,Hinsdale,IL,163,Hinsdale,IL
-60530,14028,De Kalb,IL,171,Rockford,IL
-60531,14121,Sandwich,IL,154,Aurora,IL
-60532,14095,Naperville,IL,163,Hinsdale,IL
-60534,14010,Berwyn,IL,166,Melrose Park,IL
-60536,14090,Morris,IL,164,Joliet,IL
-60537,14121,Sandwich,IL,154,Aurora,IL
-60538,14005,Aurora,IL,154,Aurora,IL
-60539,14005,Aurora,IL,154,Aurora,IL
-60540,14095,Naperville,IL,163,Hinsdale,IL
-60541,14090,Morris,IL,164,Joliet,IL
-60542,14147,Geneva,IL,166,Melrose Park,IL
-60543,14005,Aurora,IL,154,Aurora,IL
-60544,14068,Joliet,IL,164,Joliet,IL
-60545,14005,Aurora,IL,154,Aurora,IL
-60546,14010,Berwyn,IL,166,Melrose Park,IL
-60548,14121,Sandwich,IL,154,Aurora,IL
-60549,14100,Ottawa,IL,170,Peoria,IL
-60550,14028,De Kalb,IL,171,Rockford,IL
-60551,14121,Sandwich,IL,154,Aurora,IL
-60552,14121,Sandwich,IL,154,Aurora,IL
-60553,14115,Rochelle,IL,171,Rockford,IL
-60554,14005,Aurora,IL,154,Aurora,IL
-60555,14141,Winfield,IL,166,Melrose Park,IL
-60556,14028,De Kalb,IL,171,Rockford,IL
-60557,14100,Ottawa,IL,170,Peoria,IL
-60558,14071,La Grange,IL,166,Melrose Park,IL
-60559,14062,Hinsdale,IL,163,Hinsdale,IL
-60560,14005,Aurora,IL,154,Aurora,IL
-60561,14062,Hinsdale,IL,163,Hinsdale,IL
-60563,14095,Naperville,IL,163,Hinsdale,IL
-60564,14095,Naperville,IL,163,Hinsdale,IL
-60565,14095,Naperville,IL,163,Hinsdale,IL
-60566,14095,Naperville,IL,163,Hinsdale,IL
-60567,14095,Naperville,IL,163,Hinsdale,IL
-60568,14005,Aurora,IL,154,Aurora,IL
-60569,14095,Naperville,IL,163,Hinsdale,IL
-60572,14005,Aurora,IL,154,Aurora,IL
-60585,14095,Naperville,IL,163,Hinsdale,IL
-60586,14068,Joliet,IL,164,Joliet,IL
-60598,14005,Aurora,IL,154,Aurora,IL
-60599,14005,Aurora,IL,154,Aurora,IL
-60601,14023,Chicago,IL,156,Chicago,IL
-60602,14023,Chicago,IL,156,Chicago,IL
-60603,14023,Chicago,IL,156,Chicago,IL
-60604,14023,Chicago,IL,156,Chicago,IL
-60605,14023,Chicago,IL,156,Chicago,IL
-60606,14023,Chicago,IL,156,Chicago,IL
-60607,14023,Chicago,IL,156,Chicago,IL
-60608,14023,Chicago,IL,156,Chicago,IL
-60609,14023,Chicago,IL,156,Chicago,IL
-60610,14023,Chicago,IL,156,Chicago,IL
-60611,14023,Chicago,IL,156,Chicago,IL
-60612,14023,Chicago,IL,156,Chicago,IL
-60613,14023,Chicago,IL,156,Chicago,IL
-60614,14023,Chicago,IL,156,Chicago,IL
-60615,14023,Chicago,IL,156,Chicago,IL
-60616,14023,Chicago,IL,156,Chicago,IL
-60617,14023,Chicago,IL,156,Chicago,IL
-60618,14023,Chicago,IL,156,Chicago,IL
-60619,14023,Chicago,IL,156,Chicago,IL
-60620,14023,Chicago,IL,156,Chicago,IL
-60621,14023,Chicago,IL,156,Chicago,IL
-60622,14023,Chicago,IL,156,Chicago,IL
-60623,14023,Chicago,IL,156,Chicago,IL
-60624,14023,Chicago,IL,156,Chicago,IL
-60625,14023,Chicago,IL,156,Chicago,IL
-60626,14023,Chicago,IL,156,Chicago,IL
-60628,14023,Chicago,IL,156,Chicago,IL
-60629,14023,Chicago,IL,156,Chicago,IL
-60630,14023,Chicago,IL,156,Chicago,IL
-60631,14023,Chicago,IL,156,Chicago,IL
-60632,14023,Chicago,IL,156,Chicago,IL
-60633,15035,Hammond,IN,186,Munster,IN
-60634,14023,Chicago,IL,156,Chicago,IL
-60636,14023,Chicago,IL,156,Chicago,IL
-60637,14023,Chicago,IL,156,Chicago,IL
-60638,14010,Berwyn,IL,166,Melrose Park,IL
-60639,14023,Chicago,IL,156,Chicago,IL
-60640,14023,Chicago,IL,156,Chicago,IL
-60641,14023,Chicago,IL,156,Chicago,IL
-60642,14023,Chicago,IL,156,Chicago,IL
-60643,14023,Chicago,IL,156,Chicago,IL
-60644,14023,Chicago,IL,156,Chicago,IL
-60645,14023,Chicago,IL,156,Chicago,IL
-60646,14023,Chicago,IL,156,Chicago,IL
-60647,14023,Chicago,IL,156,Chicago,IL
-60649,14023,Chicago,IL,156,Chicago,IL
-60651,14023,Chicago,IL,156,Chicago,IL
-60652,14097,Oak Lawn,IL,155,Blue Island,IL
-60653,14023,Chicago,IL,156,Chicago,IL
-60654,14023,Chicago,IL,156,Chicago,IL
-60655,14097,Oak Lawn,IL,155,Blue Island,IL
-60656,14023,Chicago,IL,156,Chicago,IL
-60657,14023,Chicago,IL,156,Chicago,IL
-60659,14023,Chicago,IL,156,Chicago,IL
-60660,14023,Chicago,IL,156,Chicago,IL
-60661,14023,Chicago,IL,156,Chicago,IL
-60664,14023,Chicago,IL,156,Chicago,IL
-60666,14084,Melrose Park,IL,166,Melrose Park,IL
-60668,14023,Chicago,IL,156,Chicago,IL
-60669,14023,Chicago,IL,156,Chicago,IL
-60670,14023,Chicago,IL,156,Chicago,IL
-60673,14023,Chicago,IL,156,Chicago,IL
-60674,14023,Chicago,IL,156,Chicago,IL
-60675,14023,Chicago,IL,156,Chicago,IL
-60677,14023,Chicago,IL,156,Chicago,IL
-60678,14023,Chicago,IL,156,Chicago,IL
-60680,14023,Chicago,IL,156,Chicago,IL
-60681,14023,Chicago,IL,156,Chicago,IL
-60682,14023,Chicago,IL,156,Chicago,IL
-60684,14023,Chicago,IL,156,Chicago,IL
-60685,14023,Chicago,IL,156,Chicago,IL
-60686,14023,Chicago,IL,156,Chicago,IL
-60687,14023,Chicago,IL,156,Chicago,IL
-60688,14084,Melrose Park,IL,166,Melrose Park,IL
-60689,14023,Chicago,IL,156,Chicago,IL
-60690,14023,Chicago,IL,156,Chicago,IL
-60691,14023,Chicago,IL,156,Chicago,IL
-60693,14023,Chicago,IL,156,Chicago,IL
-60694,14023,Chicago,IL,156,Chicago,IL
-60695,14023,Chicago,IL,156,Chicago,IL
-60696,14023,Chicago,IL,156,Chicago,IL
-60697,14023,Chicago,IL,156,Chicago,IL
-60699,14023,Chicago,IL,156,Chicago,IL
-60701,14084,Melrose Park,IL,166,Melrose Park,IL
-60706,14023,Chicago,IL,156,Chicago,IL
-60707,14084,Melrose Park,IL,166,Melrose Park,IL
-60712,14023,Chicago,IL,156,Chicago,IL
-60714,14104,Park Ridge,IL,161,Evanston,IL
-60803,14097,Oak Lawn,IL,155,Blue Island,IL
-60804,14010,Berwyn,IL,166,Melrose Park,IL
-60805,14097,Oak Lawn,IL,155,Blue Island,IL
-60827,14055,Harvey,IL,155,Blue Island,IL
-60901,14069,Kankakee,IL,164,Joliet,IL
-60910,14069,Kankakee,IL,164,Joliet,IL
-60911,14069,Kankakee,IL,164,Joliet,IL
-60912,14069,Kankakee,IL,164,Joliet,IL
-60913,14069,Kankakee,IL,164,Joliet,IL
-60914,14069,Kankakee,IL,164,Joliet,IL
-60915,14069,Kankakee,IL,164,Joliet,IL
-60917,14069,Kankakee,IL,164,Joliet,IL
-60918,14136,Urbana,IL,173,Urbana,IL
-60919,14069,Kankakee,IL,164,Joliet,IL
-60920,14132,Streator,IL,170,Peoria,IL
-60921,14110,Pontiac,IL,175,Bloomington,IL
-60922,14069,Kankakee,IL,164,Joliet,IL
-60924,14136,Urbana,IL,173,Urbana,IL
-60926,14136,Urbana,IL,173,Urbana,IL
-60927,14069,Kankakee,IL,164,Joliet,IL
-60928,14138,Watseka,IL,173,Urbana,IL
-60929,14110,Pontiac,IL,175,Bloomington,IL
-60930,14138,Watseka,IL,173,Urbana,IL
-60931,14138,Watseka,IL,173,Urbana,IL
-60932,14136,Urbana,IL,173,Urbana,IL
-60933,14049,Gibson City,IL,173,Urbana,IL
-60934,14110,Pontiac,IL,175,Bloomington,IL
-60935,14069,Kankakee,IL,164,Joliet,IL
-60936,14049,Gibson City,IL,173,Urbana,IL
-60938,14138,Watseka,IL,173,Urbana,IL
-60939,14136,Urbana,IL,173,Urbana,IL
-60940,14069,Kankakee,IL,164,Joliet,IL
-60941,14069,Kankakee,IL,164,Joliet,IL
-60942,14064,Hoopeston,IL,173,Urbana,IL
-60944,14069,Kankakee,IL,164,Joliet,IL
-60945,14138,Watseka,IL,173,Urbana,IL
-60946,14069,Kankakee,IL,164,Joliet,IL
-60948,14136,Urbana,IL,173,Urbana,IL
-60949,14136,Urbana,IL,173,Urbana,IL
-60950,14069,Kankakee,IL,164,Joliet,IL
-60951,14069,Kankakee,IL,164,Joliet,IL
-60952,14049,Gibson City,IL,173,Urbana,IL
-60953,14138,Watseka,IL,173,Urbana,IL
-60954,14069,Kankakee,IL,164,Joliet,IL
-60955,14138,Watseka,IL,173,Urbana,IL
-60956,14069,Kankakee,IL,164,Joliet,IL
-60957,14136,Urbana,IL,173,Urbana,IL
-60958,14069,Kankakee,IL,164,Joliet,IL
-60959,14136,Urbana,IL,173,Urbana,IL
-60960,14136,Urbana,IL,173,Urbana,IL
-60961,14069,Kankakee,IL,164,Joliet,IL
-60962,14049,Gibson City,IL,173,Urbana,IL
-60963,14027,Danville,IL,173,Urbana,IL
-60964,14069,Kankakee,IL,164,Joliet,IL
-60966,14138,Watseka,IL,173,Urbana,IL
-60967,14138,Watseka,IL,173,Urbana,IL
-60968,14136,Urbana,IL,173,Urbana,IL
-60969,14069,Kankakee,IL,164,Joliet,IL
-60970,14138,Watseka,IL,173,Urbana,IL
-60973,14138,Watseka,IL,173,Urbana,IL
-60974,14138,Watseka,IL,173,Urbana,IL
-61001,14045,Freeport,IL,171,Rockford,IL
-61006,14115,Rochelle,IL,171,Rockford,IL
-61007,14045,Freeport,IL,171,Rockford,IL
-61008,14008,Belvidere,IL,171,Rockford,IL
-61010,14117,Rockford,IL,171,Rockford,IL
-61011,14117,Rockford,IL,171,Rockford,IL
-61012,14008,Belvidere,IL,171,Rockford,IL
-61013,14045,Freeport,IL,171,Rockford,IL
-61014,14045,Freeport,IL,171,Rockford,IL
-61015,14117,Rockford,IL,171,Rockford,IL
-61016,14117,Rockford,IL,171,Rockford,IL
-61018,14045,Freeport,IL,171,Rockford,IL
-61019,14117,Rockford,IL,171,Rockford,IL
-61020,14117,Rockford,IL,171,Rockford,IL
-61021,14031,Dixon,IL,171,Rockford,IL
-61024,14117,Rockford,IL,171,Rockford,IL
-61025,16032,Dubuque,IA,193,Dubuque,IA
-61027,14045,Freeport,IL,171,Rockford,IL
-61028,16032,Dubuque,IA,193,Dubuque,IA
-61030,14045,Freeport,IL,171,Rockford,IL
-61031,14115,Rochelle,IL,171,Rockford,IL
-61032,14045,Freeport,IL,171,Rockford,IL
-61036,16032,Dubuque,IA,193,Dubuque,IA
-61037,14131,Sterling,IL,171,Rockford,IL
-61038,14008,Belvidere,IL,171,Rockford,IL
-61039,14045,Freeport,IL,171,Rockford,IL
-61041,16032,Dubuque,IA,193,Dubuque,IA
-61042,14031,Dixon,IL,171,Rockford,IL
-61043,14117,Rockford,IL,171,Rockford,IL
-61044,14045,Freeport,IL,171,Rockford,IL
-61046,14045,Freeport,IL,171,Rockford,IL
-61047,14117,Rockford,IL,171,Rockford,IL
-61048,14045,Freeport,IL,171,Rockford,IL
-61049,14117,Rockford,IL,171,Rockford,IL
-61050,52058,Monroe,WI,449,Madison,WI
-61051,14131,Sterling,IL,171,Rockford,IL
-61052,14117,Rockford,IL,171,Rockford,IL
-61053,14045,Freeport,IL,171,Rockford,IL
-61054,14117,Rockford,IL,171,Rockford,IL
-61057,14031,Dixon,IL,171,Rockford,IL
-61059,14045,Freeport,IL,171,Rockford,IL
-61060,52058,Monroe,WI,449,Madison,WI
-61061,14117,Rockford,IL,171,Rockford,IL
-61062,14045,Freeport,IL,171,Rockford,IL
-61063,14117,Rockford,IL,171,Rockford,IL
-61064,14031,Dixon,IL,171,Rockford,IL
-61065,14117,Rockford,IL,171,Rockford,IL
-61067,14045,Freeport,IL,171,Rockford,IL
-61068,14115,Rochelle,IL,171,Rockford,IL
-61070,14045,Freeport,IL,171,Rockford,IL
-61071,14131,Sterling,IL,171,Rockford,IL
-61072,14117,Rockford,IL,171,Rockford,IL
-61073,14117,Rockford,IL,171,Rockford,IL
-61074,16021,Clinton,IA,191,Davenport,IA
-61075,16032,Dubuque,IA,193,Dubuque,IA
-61077,14117,Rockford,IL,171,Rockford,IL
-61078,14045,Freeport,IL,171,Rockford,IL
-61079,14117,Rockford,IL,171,Rockford,IL
-61080,52010,Beloit,WI,449,Madison,WI
-61081,14131,Sterling,IL,171,Rockford,IL
-61084,14117,Rockford,IL,171,Rockford,IL
-61085,14045,Freeport,IL,171,Rockford,IL
-61087,14045,Freeport,IL,171,Rockford,IL
-61088,14117,Rockford,IL,171,Rockford,IL
-61089,52058,Monroe,WI,449,Madison,WI
-61091,14031,Dixon,IL,171,Rockford,IL
-61101,14117,Rockford,IL,171,Rockford,IL
-61102,14117,Rockford,IL,171,Rockford,IL
-61103,14117,Rockford,IL,171,Rockford,IL
-61104,14117,Rockford,IL,171,Rockford,IL
-61105,14117,Rockford,IL,171,Rockford,IL
-61106,14117,Rockford,IL,171,Rockford,IL
-61107,14117,Rockford,IL,171,Rockford,IL
-61108,14117,Rockford,IL,171,Rockford,IL
-61109,14117,Rockford,IL,171,Rockford,IL
-61110,14117,Rockford,IL,171,Rockford,IL
-61111,14117,Rockford,IL,171,Rockford,IL
-61112,14117,Rockford,IL,171,Rockford,IL
-61114,14117,Rockford,IL,171,Rockford,IL
-61115,14117,Rockford,IL,171,Rockford,IL
-61125,14117,Rockford,IL,171,Rockford,IL
-61126,14117,Rockford,IL,171,Rockford,IL
-61130,14117,Rockford,IL,171,Rockford,IL
-61131,14117,Rockford,IL,171,Rockford,IL
-61132,14117,Rockford,IL,171,Rockford,IL
-61201,14116,Rock Island,IL,191,Davenport,IA
-61204,14116,Rock Island,IL,191,Davenport,IA
-61230,16021,Clinton,IA,191,Davenport,IA
-61231,14001,Aledo,IL,191,Davenport,IA
-61232,14116,Rock Island,IL,191,Davenport,IA
-61233,14116,Rock Island,IL,191,Davenport,IA
-61234,14048,Geneseo,IL,191,Davenport,IA
-61235,14048,Geneseo,IL,191,Davenport,IA
-61236,14124,Silvis,IL,191,Davenport,IA
-61237,16073,Muscatine,IA,194,Iowa City,IA
-61238,14048,Geneseo,IL,191,Davenport,IA
-61239,14124,Silvis,IL,191,Davenport,IA
-61240,14116,Rock Island,IL,191,Davenport,IA
-61241,14124,Silvis,IL,191,Davenport,IA
-61242,14124,Silvis,IL,191,Davenport,IA
-61243,14131,Sterling,IL,171,Rockford,IL
-61244,14124,Silvis,IL,191,Davenport,IA
-61250,14124,Silvis,IL,191,Davenport,IA
-61251,16021,Clinton,IA,191,Davenport,IA
-61252,16021,Clinton,IA,191,Davenport,IA
-61254,14048,Geneseo,IL,191,Davenport,IA
-61256,14124,Silvis,IL,191,Davenport,IA
-61257,14124,Silvis,IL,191,Davenport,IA
-61258,14131,Sterling,IL,171,Rockford,IL
-61259,16073,Muscatine,IA,194,Iowa City,IA
-61260,14001,Aledo,IL,191,Davenport,IA
-61261,14131,Sterling,IL,171,Rockford,IL
-61262,14116,Rock Island,IL,191,Davenport,IA
-61263,14001,Aledo,IL,191,Davenport,IA
-61264,14116,Rock Island,IL,191,Davenport,IA
-61265,14116,Rock Island,IL,191,Davenport,IA
-61266,14116,Rock Island,IL,191,Davenport,IA
-61270,14131,Sterling,IL,171,Rockford,IL
-61272,14001,Aledo,IL,191,Davenport,IA
-61273,14116,Rock Island,IL,191,Davenport,IA
-61274,14048,Geneseo,IL,191,Davenport,IA
-61275,14124,Silvis,IL,191,Davenport,IA
-61276,14001,Aledo,IL,191,Davenport,IA
-61277,14131,Sterling,IL,171,Rockford,IL
-61278,14124,Silvis,IL,191,Davenport,IA
-61279,14116,Rock Island,IL,191,Davenport,IA
-61281,14116,Rock Island,IL,191,Davenport,IA
-61282,14124,Silvis,IL,191,Davenport,IA
-61283,14131,Sterling,IL,171,Rockford,IL
-61284,14116,Rock Island,IL,191,Davenport,IA
-61285,16021,Clinton,IA,191,Davenport,IA
-61299,14116,Rock Island,IL,191,Davenport,IA
-61301,14107,Peru,IL,170,Peoria,IL
-61310,14085,Mendota,IL,171,Rockford,IL
-61311,14132,Streator,IL,170,Peoria,IL
-61312,14127,Spring Valley,IL,170,Peoria,IL
-61313,14132,Streator,IL,170,Peoria,IL
-61314,14111,Princeton,IL,171,Rockford,IL
-61315,14111,Princeton,IL,171,Rockford,IL
-61316,14107,Peru,IL,170,Peoria,IL
-61317,14127,Spring Valley,IL,170,Peoria,IL
-61318,14085,Mendota,IL,171,Rockford,IL
-61319,14132,Streator,IL,170,Peoria,IL
-61320,14127,Spring Valley,IL,170,Peoria,IL
-61321,14132,Streator,IL,170,Peoria,IL
-61322,14111,Princeton,IL,171,Rockford,IL
-61323,14111,Princeton,IL,171,Rockford,IL
-61324,14031,Dixon,IL,171,Rockford,IL
-61325,14132,Streator,IL,170,Peoria,IL
-61326,14127,Spring Valley,IL,170,Peoria,IL
-61327,14127,Spring Valley,IL,170,Peoria,IL
-61328,14111,Princeton,IL,171,Rockford,IL
-61329,14127,Spring Valley,IL,170,Peoria,IL
-61330,14085,Mendota,IL,171,Rockford,IL
-61331,14085,Mendota,IL,171,Rockford,IL
-61332,14132,Streator,IL,170,Peoria,IL
-61333,14132,Streator,IL,170,Peoria,IL
-61334,14132,Streator,IL,170,Peoria,IL
-61335,14127,Spring Valley,IL,170,Peoria,IL
-61336,14127,Spring Valley,IL,170,Peoria,IL
-61337,14111,Princeton,IL,171,Rockford,IL
-61338,14111,Princeton,IL,171,Rockford,IL
-61340,14127,Spring Valley,IL,170,Peoria,IL
-61341,14100,Ottawa,IL,170,Peoria,IL
-61342,14085,Mendota,IL,171,Rockford,IL
-61344,14111,Princeton,IL,171,Rockford,IL
-61345,14070,Kewanee,IL,170,Peoria,IL
-61346,14131,Sterling,IL,171,Rockford,IL
-61348,14107,Peru,IL,170,Peoria,IL
-61349,14111,Princeton,IL,171,Rockford,IL
-61350,14100,Ottawa,IL,170,Peoria,IL
-61353,14085,Mendota,IL,171,Rockford,IL
-61354,14107,Peru,IL,170,Peoria,IL
-61356,14111,Princeton,IL,171,Rockford,IL
-61358,14132,Streator,IL,170,Peoria,IL
-61359,14111,Princeton,IL,171,Rockford,IL
-61360,14090,Morris,IL,164,Joliet,IL
-61361,14111,Princeton,IL,171,Rockford,IL
-61362,14127,Spring Valley,IL,170,Peoria,IL
-61363,14127,Spring Valley,IL,170,Peoria,IL
-61364,14132,Streator,IL,170,Peoria,IL
-61367,14085,Mendota,IL,171,Rockford,IL
-61368,14111,Princeton,IL,171,Rockford,IL
-61369,14132,Streator,IL,170,Peoria,IL
-61370,14107,Peru,IL,170,Peoria,IL
-61371,14085,Mendota,IL,171,Rockford,IL
-61372,14085,Mendota,IL,171,Rockford,IL
-61373,14107,Peru,IL,170,Peoria,IL
-61374,14085,Mendota,IL,171,Rockford,IL
-61375,14106,Peoria,IL,170,Peoria,IL
-61376,14111,Princeton,IL,171,Rockford,IL
-61377,14132,Streator,IL,170,Peoria,IL
-61378,14085,Mendota,IL,171,Rockford,IL
-61379,14111,Princeton,IL,171,Rockford,IL
-61401,14047,Galesburg,IL,170,Peoria,IL
-61402,14047,Galesburg,IL,170,Peoria,IL
-61410,14047,Galesburg,IL,170,Peoria,IL
-61411,14077,Macomb,IL,172,Springfield,IL
-61412,14047,Galesburg,IL,170,Peoria,IL
-61413,14047,Galesburg,IL,170,Peoria,IL
-61414,14047,Galesburg,IL,170,Peoria,IL
-61415,14047,Galesburg,IL,170,Peoria,IL
-61416,14077,Macomb,IL,172,Springfield,IL
-61417,14047,Galesburg,IL,170,Peoria,IL
-61418,16011,Burlington,IA,191,Davenport,IA
-61419,14047,Galesburg,IL,170,Peoria,IL
-61420,14077,Macomb,IL,172,Springfield,IL
-61421,14106,Peoria,IL,170,Peoria,IL
-61422,14077,Macomb,IL,172,Springfield,IL
-61423,14047,Galesburg,IL,170,Peoria,IL
-61424,14106,Peoria,IL,170,Peoria,IL
-61425,16011,Burlington,IA,191,Davenport,IA
-61426,14106,Peoria,IL,170,Peoria,IL
-61427,14014,Canton,IL,170,Peoria,IL
-61428,14047,Galesburg,IL,170,Peoria,IL
-61430,14047,Galesburg,IL,170,Peoria,IL
-61431,14014,Canton,IL,170,Peoria,IL
-61432,14014,Canton,IL,170,Peoria,IL
-61433,14014,Canton,IL,170,Peoria,IL
-61434,14047,Galesburg,IL,170,Peoria,IL
-61435,14088,Monmouth,IL,170,Peoria,IL
-61436,14047,Galesburg,IL,170,Peoria,IL
-61437,16011,Burlington,IA,191,Davenport,IA
-61438,14077,Macomb,IL,172,Springfield,IL
-61439,14047,Galesburg,IL,170,Peoria,IL
-61440,14077,Macomb,IL,172,Springfield,IL
-61441,14077,Macomb,IL,172,Springfield,IL
-61442,14001,Aledo,IL,191,Davenport,IA
-61443,14070,Kewanee,IL,170,Peoria,IL
-61447,14088,Monmouth,IL,170,Peoria,IL
-61448,14047,Galesburg,IL,170,Peoria,IL
-61449,14070,Kewanee,IL,170,Peoria,IL
-61450,14077,Macomb,IL,172,Springfield,IL
-61451,14047,Galesburg,IL,170,Peoria,IL
-61452,14119,Rushville,IL,172,Springfield,IL
-61453,14088,Monmouth,IL,170,Peoria,IL
-61454,16011,Burlington,IA,191,Davenport,IA
-61455,14077,Macomb,IL,172,Springfield,IL
-61458,14047,Galesburg,IL,170,Peoria,IL
-61459,14077,Macomb,IL,172,Springfield,IL
-61460,16011,Burlington,IA,191,Davenport,IA
-61462,14088,Monmouth,IL,170,Peoria,IL
-61465,14047,Galesburg,IL,170,Peoria,IL
-61466,14047,Galesburg,IL,170,Peoria,IL
-61467,14047,Galesburg,IL,170,Peoria,IL
-61468,14116,Rock Island,IL,191,Davenport,IA
-61469,14088,Monmouth,IL,170,Peoria,IL
-61470,14077,Macomb,IL,172,Springfield,IL
-61471,14077,Macomb,IL,172,Springfield,IL
-61472,14047,Galesburg,IL,170,Peoria,IL
-61473,14088,Monmouth,IL,170,Peoria,IL
-61474,14047,Galesburg,IL,170,Peoria,IL
-61475,14077,Macomb,IL,172,Springfield,IL
-61476,14001,Aledo,IL,191,Davenport,IA
-61477,14014,Canton,IL,170,Peoria,IL
-61478,16011,Burlington,IA,191,Davenport,IA
-61479,14106,Peoria,IL,170,Peoria,IL
-61480,16011,Burlington,IA,191,Davenport,IA
-61482,14077,Macomb,IL,172,Springfield,IL
-61483,14070,Kewanee,IL,170,Peoria,IL
-61484,14077,Macomb,IL,172,Springfield,IL
-61485,14047,Galesburg,IL,170,Peoria,IL
-61486,14116,Rock Island,IL,191,Davenport,IA
-61488,14047,Galesburg,IL,170,Peoria,IL
-61489,14047,Galesburg,IL,170,Peoria,IL
-61490,14047,Galesburg,IL,170,Peoria,IL
-61491,14106,Peoria,IL,170,Peoria,IL
-61501,14119,Rushville,IL,172,Springfield,IL
-61516,14146,Eureka,IL,170,Peoria,IL
-61517,14106,Peoria,IL,170,Peoria,IL
-61519,14014,Canton,IL,170,Peoria,IL
-61520,14014,Canton,IL,170,Peoria,IL
-61523,14106,Peoria,IL,170,Peoria,IL
-61524,14014,Canton,IL,170,Peoria,IL
-61525,14106,Peoria,IL,170,Peoria,IL
-61526,14106,Peoria,IL,170,Peoria,IL
-61528,14106,Peoria,IL,170,Peoria,IL
-61529,14106,Peoria,IL,170,Peoria,IL
-61530,14146,Eureka,IL,170,Peoria,IL
-61531,14106,Peoria,IL,170,Peoria,IL
-61532,14105,Pekin,IL,170,Peoria,IL
-61533,14106,Peoria,IL,170,Peoria,IL
-61534,14105,Pekin,IL,170,Peoria,IL
-61535,14105,Pekin,IL,170,Peoria,IL
-61536,14106,Peoria,IL,170,Peoria,IL
-61537,14106,Peoria,IL,170,Peoria,IL
-61539,14106,Peoria,IL,170,Peoria,IL
-61540,14106,Peoria,IL,170,Peoria,IL
-61541,14106,Peoria,IL,170,Peoria,IL
-61542,14014,Canton,IL,170,Peoria,IL
-61543,14014,Canton,IL,170,Peoria,IL
-61544,14047,Galesburg,IL,170,Peoria,IL
-61545,14106,Peoria,IL,170,Peoria,IL
-61546,14105,Pekin,IL,170,Peoria,IL
-61547,14106,Peoria,IL,170,Peoria,IL
-61548,14106,Peoria,IL,170,Peoria,IL
-61550,14106,Peoria,IL,170,Peoria,IL
-61552,14106,Peoria,IL,170,Peoria,IL
-61553,14106,Peoria,IL,170,Peoria,IL
-61554,14105,Pekin,IL,170,Peoria,IL
-61555,14105,Pekin,IL,170,Peoria,IL
-61558,14105,Pekin,IL,170,Peoria,IL
-61559,14106,Peoria,IL,170,Peoria,IL
-61560,14111,Princeton,IL,171,Rockford,IL
-61561,14106,Peoria,IL,170,Peoria,IL
-61562,14106,Peoria,IL,170,Peoria,IL
-61563,14014,Canton,IL,170,Peoria,IL
-61564,14105,Pekin,IL,170,Peoria,IL
-61565,14106,Peoria,IL,170,Peoria,IL
-61567,14056,Havana,IL,172,Springfield,IL
-61568,14105,Pekin,IL,170,Peoria,IL
-61569,14106,Peoria,IL,170,Peoria,IL
-61570,14106,Peoria,IL,170,Peoria,IL
-61571,14106,Peoria,IL,170,Peoria,IL
-61572,14106,Peoria,IL,170,Peoria,IL
-61601,14106,Peoria,IL,170,Peoria,IL
-61602,14106,Peoria,IL,170,Peoria,IL
-61603,14106,Peoria,IL,170,Peoria,IL
-61604,14106,Peoria,IL,170,Peoria,IL
-61605,14106,Peoria,IL,170,Peoria,IL
-61606,14106,Peoria,IL,170,Peoria,IL
-61607,14106,Peoria,IL,170,Peoria,IL
-61610,14106,Peoria,IL,170,Peoria,IL
-61611,14106,Peoria,IL,170,Peoria,IL
-61612,14106,Peoria,IL,170,Peoria,IL
-61613,14106,Peoria,IL,170,Peoria,IL
-61614,14106,Peoria,IL,170,Peoria,IL
-61615,14106,Peoria,IL,170,Peoria,IL
-61616,14106,Peoria,IL,170,Peoria,IL
-61625,14106,Peoria,IL,170,Peoria,IL
-61629,14106,Peoria,IL,170,Peoria,IL
-61630,14106,Peoria,IL,170,Peoria,IL
-61633,14106,Peoria,IL,170,Peoria,IL
-61634,14106,Peoria,IL,170,Peoria,IL
-61635,14106,Peoria,IL,170,Peoria,IL
-61636,14106,Peoria,IL,170,Peoria,IL
-61637,14106,Peoria,IL,170,Peoria,IL
-61638,14106,Peoria,IL,170,Peoria,IL
-61639,14106,Peoria,IL,170,Peoria,IL
-61641,14106,Peoria,IL,170,Peoria,IL
-61643,14106,Peoria,IL,170,Peoria,IL
-61650,14106,Peoria,IL,170,Peoria,IL
-61651,14106,Peoria,IL,170,Peoria,IL
-61652,14106,Peoria,IL,170,Peoria,IL
-61653,14106,Peoria,IL,170,Peoria,IL
-61654,14106,Peoria,IL,170,Peoria,IL
-61655,14106,Peoria,IL,170,Peoria,IL
-61656,14106,Peoria,IL,170,Peoria,IL
-61701,14011,Bloomington,IL,175,Bloomington,IL
-61702,14011,Bloomington,IL,175,Bloomington,IL
-61704,14011,Bloomington,IL,175,Bloomington,IL
-61705,14011,Bloomington,IL,175,Bloomington,IL
-61709,14011,Bloomington,IL,175,Bloomington,IL
-61710,14011,Bloomington,IL,175,Bloomington,IL
-61720,14049,Gibson City,IL,173,Urbana,IL
-61721,14065,Hopedale,IL,170,Peoria,IL
-61722,14011,Bloomington,IL,175,Bloomington,IL
-61723,14011,Bloomington,IL,175,Bloomington,IL
-61724,14049,Gibson City,IL,173,Urbana,IL
-61725,14011,Bloomington,IL,175,Bloomington,IL
-61726,14011,Bloomington,IL,175,Bloomington,IL
-61727,14026,Clinton,IL,172,Springfield,IL
-61728,14011,Bloomington,IL,175,Bloomington,IL
-61729,14106,Peoria,IL,170,Peoria,IL
-61730,14011,Bloomington,IL,175,Bloomington,IL
-61731,14011,Bloomington,IL,175,Bloomington,IL
-61732,14011,Bloomington,IL,175,Bloomington,IL
-61733,14106,Peoria,IL,170,Peoria,IL
-61734,14065,Hopedale,IL,170,Peoria,IL
-61735,14136,Urbana,IL,173,Urbana,IL
-61736,14011,Bloomington,IL,175,Bloomington,IL
-61737,14011,Bloomington,IL,175,Bloomington,IL
-61738,14011,Bloomington,IL,175,Bloomington,IL
-61739,14110,Pontiac,IL,175,Bloomington,IL
-61740,14110,Pontiac,IL,175,Bloomington,IL
-61741,14110,Pontiac,IL,175,Bloomington,IL
-61742,14106,Peoria,IL,170,Peoria,IL
-61743,14110,Pontiac,IL,175,Bloomington,IL
-61744,14011,Bloomington,IL,175,Bloomington,IL
-61745,14011,Bloomington,IL,175,Bloomington,IL
-61747,14065,Hopedale,IL,170,Peoria,IL
-61748,14011,Bloomington,IL,175,Bloomington,IL
-61749,14026,Clinton,IL,172,Springfield,IL
-61750,14026,Clinton,IL,172,Springfield,IL
-61751,14075,Lincoln,IL,172,Springfield,IL
-61752,14011,Bloomington,IL,175,Bloomington,IL
-61753,14011,Bloomington,IL,175,Bloomington,IL
-61754,14011,Bloomington,IL,175,Bloomington,IL
-61755,14106,Peoria,IL,170,Peoria,IL
-61756,14029,Decatur,IL,172,Springfield,IL
-61758,14011,Bloomington,IL,175,Bloomington,IL
-61759,14065,Hopedale,IL,170,Peoria,IL
-61760,14132,Streator,IL,170,Peoria,IL
-61761,14011,Bloomington,IL,175,Bloomington,IL
-61764,14110,Pontiac,IL,175,Bloomington,IL
-61769,14110,Pontiac,IL,175,Bloomington,IL
-61770,14049,Gibson City,IL,173,Urbana,IL
-61771,14146,Eureka,IL,170,Peoria,IL
-61772,14011,Bloomington,IL,175,Bloomington,IL
-61773,14049,Gibson City,IL,173,Urbana,IL
-61774,14011,Bloomington,IL,175,Bloomington,IL
-61775,14049,Gibson City,IL,173,Urbana,IL
-61776,14011,Bloomington,IL,175,Bloomington,IL
-61777,14026,Clinton,IL,172,Springfield,IL
-61778,14011,Bloomington,IL,175,Bloomington,IL
-61790,14011,Bloomington,IL,175,Bloomington,IL
-61791,14011,Bloomington,IL,175,Bloomington,IL
-61799,14011,Bloomington,IL,175,Bloomington,IL
-61801,14136,Urbana,IL,173,Urbana,IL
-61802,14136,Urbana,IL,173,Urbana,IL
-61803,14136,Urbana,IL,173,Urbana,IL
-61810,14136,Urbana,IL,173,Urbana,IL
-61811,14027,Danville,IL,173,Urbana,IL
-61812,14027,Danville,IL,173,Urbana,IL
-61813,14089,Monticello,IL,173,Urbana,IL
-61814,14027,Danville,IL,173,Urbana,IL
-61815,14136,Urbana,IL,173,Urbana,IL
-61816,14136,Urbana,IL,173,Urbana,IL
-61817,14027,Danville,IL,173,Urbana,IL
-61818,14029,Decatur,IL,172,Springfield,IL
-61820,14136,Urbana,IL,173,Urbana,IL
-61821,14136,Urbana,IL,173,Urbana,IL
-61822,14136,Urbana,IL,173,Urbana,IL
-61824,14136,Urbana,IL,173,Urbana,IL
-61825,14136,Urbana,IL,173,Urbana,IL
-61826,14136,Urbana,IL,173,Urbana,IL
-61830,14089,Monticello,IL,173,Urbana,IL
-61831,14027,Danville,IL,173,Urbana,IL
-61832,14027,Danville,IL,173,Urbana,IL
-61833,14027,Danville,IL,173,Urbana,IL
-61834,14027,Danville,IL,173,Urbana,IL
-61839,14136,Urbana,IL,173,Urbana,IL
-61840,14136,Urbana,IL,173,Urbana,IL
-61841,14027,Danville,IL,173,Urbana,IL
-61842,14136,Urbana,IL,173,Urbana,IL
-61843,14136,Urbana,IL,173,Urbana,IL
-61844,14027,Danville,IL,173,Urbana,IL
-61845,14136,Urbana,IL,173,Urbana,IL
-61846,14027,Danville,IL,173,Urbana,IL
-61847,14136,Urbana,IL,173,Urbana,IL
-61848,14027,Danville,IL,173,Urbana,IL
-61849,14136,Urbana,IL,173,Urbana,IL
-61850,14027,Danville,IL,173,Urbana,IL
-61851,14136,Urbana,IL,173,Urbana,IL
-61852,14136,Urbana,IL,173,Urbana,IL
-61853,14136,Urbana,IL,173,Urbana,IL
-61854,14136,Urbana,IL,173,Urbana,IL
-61855,14089,Monticello,IL,173,Urbana,IL
-61856,14089,Monticello,IL,173,Urbana,IL
-61857,14027,Danville,IL,173,Urbana,IL
-61858,14027,Danville,IL,173,Urbana,IL
-61859,14136,Urbana,IL,173,Urbana,IL
-61862,14136,Urbana,IL,173,Urbana,IL
-61863,14136,Urbana,IL,173,Urbana,IL
-61864,14136,Urbana,IL,173,Urbana,IL
-61865,14027,Danville,IL,173,Urbana,IL
-61866,14136,Urbana,IL,173,Urbana,IL
-61870,14027,Danville,IL,173,Urbana,IL
-61871,14136,Urbana,IL,173,Urbana,IL
-61872,14136,Urbana,IL,173,Urbana,IL
-61873,14136,Urbana,IL,173,Urbana,IL
-61874,14136,Urbana,IL,173,Urbana,IL
-61875,14136,Urbana,IL,173,Urbana,IL
-61876,14027,Danville,IL,173,Urbana,IL
-61877,14136,Urbana,IL,173,Urbana,IL
-61878,14136,Urbana,IL,173,Urbana,IL
-61880,14136,Urbana,IL,173,Urbana,IL
-61882,14136,Urbana,IL,173,Urbana,IL
-61883,14027,Danville,IL,173,Urbana,IL
-61884,14136,Urbana,IL,173,Urbana,IL
-61910,14080,Mattoon,IL,173,Urbana,IL
-61911,14029,Decatur,IL,172,Springfield,IL
-61912,14080,Mattoon,IL,173,Urbana,IL
-61913,14029,Decatur,IL,172,Springfield,IL
-61914,14029,Decatur,IL,172,Springfield,IL
-61917,14136,Urbana,IL,173,Urbana,IL
-61919,14136,Urbana,IL,173,Urbana,IL
-61920,14080,Mattoon,IL,173,Urbana,IL
-61924,14027,Danville,IL,173,Urbana,IL
-61925,14029,Decatur,IL,172,Springfield,IL
-61928,14080,Mattoon,IL,173,Urbana,IL
-61929,14029,Decatur,IL,172,Springfield,IL
-61930,14080,Mattoon,IL,173,Urbana,IL
-61931,14080,Mattoon,IL,173,Urbana,IL
-61932,14027,Danville,IL,173,Urbana,IL
-61933,14103,Paris,IL,173,Urbana,IL
-61936,14029,Decatur,IL,172,Springfield,IL
-61937,14029,Decatur,IL,172,Springfield,IL
-61938,14080,Mattoon,IL,173,Urbana,IL
-61940,14103,Paris,IL,173,Urbana,IL
-61941,14136,Urbana,IL,173,Urbana,IL
-61942,14136,Urbana,IL,173,Urbana,IL
-61943,14080,Mattoon,IL,173,Urbana,IL
-61944,14103,Paris,IL,173,Urbana,IL
-61949,14103,Paris,IL,173,Urbana,IL
-61951,14029,Decatur,IL,172,Springfield,IL
-61953,14136,Urbana,IL,173,Urbana,IL
-61955,14103,Paris,IL,173,Urbana,IL
-61956,14136,Urbana,IL,173,Urbana,IL
-61957,14123,Shelbyville,IL,172,Springfield,IL
-62001,14059,Highland,IL,273,St. Louis,MO
-62002,14002,Alton,IL,273,St. Louis,MO
-62006,14067,Jerseyville,IL,273,St. Louis,MO
-62009,14076,Litchfield,IL,172,Springfield,IL
-62010,14002,Alton,IL,273,St. Louis,MO
-62011,14061,Hillsboro,IL,172,Springfield,IL
-62012,14002,Alton,IL,273,St. Louis,MO
-62013,14067,Jerseyville,IL,273,St. Louis,MO
-62014,14002,Alton,IL,273,St. Louis,MO
-62015,14061,Hillsboro,IL,172,Springfield,IL
-62016,14018,Carrollton,IL,172,Springfield,IL
-62017,14061,Hillsboro,IL,172,Springfield,IL
-62018,14002,Alton,IL,273,St. Louis,MO
-62019,14061,Hillsboro,IL,172,Springfield,IL
-62021,14002,Alton,IL,273,St. Louis,MO
-62022,14002,Alton,IL,273,St. Louis,MO
-62023,14076,Litchfield,IL,172,Springfield,IL
-62024,14002,Alton,IL,273,St. Louis,MO
-62025,14079,Maryville,IL,273,St. Louis,MO
-62026,14079,Maryville,IL,273,St. Louis,MO
-62027,14018,Carrollton,IL,172,Springfield,IL
-62028,14002,Alton,IL,273,St. Louis,MO
-62030,14067,Jerseyville,IL,273,St. Louis,MO
-62031,14067,Jerseyville,IL,273,St. Louis,MO
-62032,14061,Hillsboro,IL,172,Springfield,IL
-62033,14076,Litchfield,IL,172,Springfield,IL
-62034,14079,Maryville,IL,273,St. Louis,MO
-62035,14002,Alton,IL,273,St. Louis,MO
-62036,14067,Jerseyville,IL,273,St. Louis,MO
-62037,14002,Alton,IL,273,St. Louis,MO
-62040,14051,Granite City,IL,273,St. Louis,MO
-62044,14066,Jacksonville,IL,172,Springfield,IL
-62045,14067,Jerseyville,IL,273,St. Louis,MO
-62046,14079,Maryville,IL,273,St. Louis,MO
-62047,14067,Jerseyville,IL,273,St. Louis,MO
-62048,14002,Alton,IL,273,St. Louis,MO
-62049,14061,Hillsboro,IL,172,Springfield,IL
-62050,14066,Jacksonville,IL,172,Springfield,IL
-62051,14061,Hillsboro,IL,172,Springfield,IL
-62052,14067,Jerseyville,IL,273,St. Louis,MO
-62053,14067,Jerseyville,IL,273,St. Louis,MO
-62054,14067,Jerseyville,IL,273,St. Louis,MO
-62056,14076,Litchfield,IL,172,Springfield,IL
-62058,14130,Staunton,IL,273,St. Louis,MO
-62059,14007,Belleville,IL,273,St. Louis,MO
-62060,14051,Granite City,IL,273,St. Louis,MO
-62061,14059,Highland,IL,273,St. Louis,MO
-62062,14079,Maryville,IL,273,St. Louis,MO
-62063,14002,Alton,IL,273,St. Louis,MO
-62065,14067,Jerseyville,IL,273,St. Louis,MO
-62067,14002,Alton,IL,273,St. Louis,MO
-62069,14076,Litchfield,IL,172,Springfield,IL
-62070,14109,Pittsfield,IL,172,Springfield,IL
-62071,14007,Belleville,IL,273,St. Louis,MO
-62074,14130,Staunton,IL,273,St. Louis,MO
-62075,14061,Hillsboro,IL,172,Springfield,IL
-62076,14061,Hillsboro,IL,172,Springfield,IL
-62077,14061,Hillsboro,IL,172,Springfield,IL
-62078,14066,Jacksonville,IL,172,Springfield,IL
-62079,14002,Alton,IL,273,St. Louis,MO
-62080,14137,Vandalia,IL,172,Springfield,IL
-62081,14066,Jacksonville,IL,172,Springfield,IL
-62082,14066,Jacksonville,IL,172,Springfield,IL
-62083,14102,Pana,IL,172,Springfield,IL
-62084,14002,Alton,IL,273,St. Louis,MO
-62085,14076,Litchfield,IL,172,Springfield,IL
-62086,14052,Greenville,IL,273,St. Louis,MO
-62087,14002,Alton,IL,273,St. Louis,MO
-62088,14130,Staunton,IL,273,St. Louis,MO
-62089,14061,Hillsboro,IL,172,Springfield,IL
-62090,14051,Granite City,IL,273,St. Louis,MO
-62091,14076,Litchfield,IL,172,Springfield,IL
-62092,14066,Jacksonville,IL,172,Springfield,IL
-62093,14076,Litchfield,IL,172,Springfield,IL
-62094,14061,Hillsboro,IL,172,Springfield,IL
-62095,14002,Alton,IL,273,St. Louis,MO
-62097,14130,Staunton,IL,273,St. Louis,MO
-62098,14066,Jacksonville,IL,172,Springfield,IL
-62201,14007,Belleville,IL,273,St. Louis,MO
-62202,14007,Belleville,IL,273,St. Louis,MO
-62203,14007,Belleville,IL,273,St. Louis,MO
-62204,14007,Belleville,IL,273,St. Louis,MO
-62205,14007,Belleville,IL,273,St. Louis,MO
-62206,14007,Belleville,IL,273,St. Louis,MO
-62207,14007,Belleville,IL,273,St. Louis,MO
-62208,14007,Belleville,IL,273,St. Louis,MO
-62214,14096,Nashville,IL,273,St. Louis,MO
-62215,14013,Breese,IL,273,St. Louis,MO
-62216,14013,Breese,IL,273,St. Louis,MO
-62217,14113,Red Bud,IL,273,St. Louis,MO
-62218,14013,Breese,IL,273,St. Louis,MO
-62219,14013,Breese,IL,273,St. Louis,MO
-62220,14007,Belleville,IL,273,St. Louis,MO
-62221,14007,Belleville,IL,273,St. Louis,MO
-62222,14007,Belleville,IL,273,St. Louis,MO
-62223,14007,Belleville,IL,273,St. Louis,MO
-62225,14007,Belleville,IL,273,St. Louis,MO
-62226,14007,Belleville,IL,273,St. Louis,MO
-62230,14013,Breese,IL,273,St. Louis,MO
-62231,14013,Breese,IL,273,St. Louis,MO
-62232,14007,Belleville,IL,273,St. Louis,MO
-62233,14022,Chester,IL,273,St. Louis,MO
-62234,14079,Maryville,IL,273,St. Louis,MO
-62236,14007,Belleville,IL,273,St. Louis,MO
-62237,14126,Sparta,IL,273,St. Louis,MO
-62238,14108,Pinckneyville,IL,273,St. Louis,MO
-62239,14007,Belleville,IL,273,St. Louis,MO
-62240,14007,Belleville,IL,273,St. Louis,MO
-62241,14022,Chester,IL,273,St. Louis,MO
-62242,14113,Red Bud,IL,273,St. Louis,MO
-62243,14007,Belleville,IL,273,St. Louis,MO
-62244,14113,Red Bud,IL,273,St. Louis,MO
-62245,14013,Breese,IL,273,St. Louis,MO
-62246,14052,Greenville,IL,273,St. Louis,MO
-62248,14007,Belleville,IL,273,St. Louis,MO
-62249,14059,Highland,IL,273,St. Louis,MO
-62250,14020,Centralia,IL,273,St. Louis,MO
-62252,14013,Breese,IL,273,St. Louis,MO
-62253,14052,Greenville,IL,273,St. Louis,MO
-62254,14007,Belleville,IL,273,St. Louis,MO
-62255,14007,Belleville,IL,273,St. Louis,MO
-62256,14113,Red Bud,IL,273,St. Louis,MO
-62257,14007,Belleville,IL,273,St. Louis,MO
-62258,14007,Belleville,IL,273,St. Louis,MO
-62259,14022,Chester,IL,273,St. Louis,MO
-62260,14007,Belleville,IL,273,St. Louis,MO
-62261,14113,Red Bud,IL,273,St. Louis,MO
-62262,14052,Greenville,IL,273,St. Louis,MO
-62263,14096,Nashville,IL,273,St. Louis,MO
-62264,14007,Belleville,IL,273,St. Louis,MO
-62265,14007,Belleville,IL,273,St. Louis,MO
-62266,14007,Belleville,IL,273,St. Louis,MO
-62268,14096,Nashville,IL,273,St. Louis,MO
-62269,14007,Belleville,IL,273,St. Louis,MO
-62271,14096,Nashville,IL,273,St. Louis,MO
-62272,14022,Chester,IL,273,St. Louis,MO
-62273,14059,Highland,IL,273,St. Louis,MO
-62274,14108,Pinckneyville,IL,273,St. Louis,MO
-62275,14059,Highland,IL,273,St. Louis,MO
-62277,14113,Red Bud,IL,273,St. Louis,MO
-62278,14113,Red Bud,IL,273,St. Louis,MO
-62279,14113,Red Bud,IL,273,St. Louis,MO
-62280,14022,Chester,IL,273,St. Louis,MO
-62281,14079,Maryville,IL,273,St. Louis,MO
-62282,14007,Belleville,IL,273,St. Louis,MO
-62284,14052,Greenville,IL,273,St. Louis,MO
-62285,14007,Belleville,IL,273,St. Louis,MO
-62286,14126,Sparta,IL,273,St. Louis,MO
-62288,14022,Chester,IL,273,St. Louis,MO
-62289,14007,Belleville,IL,273,St. Louis,MO
-62292,14126,Sparta,IL,273,St. Louis,MO
-62293,14013,Breese,IL,273,St. Louis,MO
-62294,14079,Maryville,IL,273,St. Louis,MO
-62295,14113,Red Bud,IL,273,St. Louis,MO
-62297,14126,Sparta,IL,273,St. Louis,MO
-62298,14113,Red Bud,IL,273,St. Louis,MO
-62301,14112,Quincy,IL,172,Springfield,IL
-62305,14112,Quincy,IL,172,Springfield,IL
-62306,14112,Quincy,IL,172,Springfield,IL
-62311,14112,Quincy,IL,172,Springfield,IL
-62312,14112,Quincy,IL,172,Springfield,IL
-62313,14019,Carthage,IL,172,Springfield,IL
-62314,14112,Quincy,IL,172,Springfield,IL
-62316,14112,Quincy,IL,172,Springfield,IL
-62319,14119,Rushville,IL,172,Springfield,IL
-62320,14112,Quincy,IL,172,Springfield,IL
-62321,14019,Carthage,IL,172,Springfield,IL
-62323,14066,Jacksonville,IL,172,Springfield,IL
-62324,14112,Quincy,IL,172,Springfield,IL
-62325,14112,Quincy,IL,172,Springfield,IL
-62326,14077,Macomb,IL,172,Springfield,IL
-62329,14019,Carthage,IL,172,Springfield,IL
-62330,14019,Carthage,IL,172,Springfield,IL
-62334,14019,Carthage,IL,172,Springfield,IL
-62336,14019,Carthage,IL,172,Springfield,IL
-62338,14112,Quincy,IL,172,Springfield,IL
-62339,14112,Quincy,IL,172,Springfield,IL
-62340,14109,Pittsfield,IL,172,Springfield,IL
-62341,14019,Carthage,IL,172,Springfield,IL
-62343,26033,Hannibal,MO,264,Columbia,MO
-62344,14077,Macomb,IL,172,Springfield,IL
-62345,14112,Quincy,IL,172,Springfield,IL
-62346,14112,Quincy,IL,172,Springfield,IL
-62347,14112,Quincy,IL,172,Springfield,IL
-62348,14112,Quincy,IL,172,Springfield,IL
-62349,14112,Quincy,IL,172,Springfield,IL
-62351,14112,Quincy,IL,172,Springfield,IL
-62352,14109,Pittsfield,IL,172,Springfield,IL
-62353,14112,Quincy,IL,172,Springfield,IL
-62354,14019,Carthage,IL,172,Springfield,IL
-62355,14109,Pittsfield,IL,172,Springfield,IL
-62356,14112,Quincy,IL,172,Springfield,IL
-62357,14109,Pittsfield,IL,172,Springfield,IL
-62358,14019,Carthage,IL,172,Springfield,IL
-62359,14112,Quincy,IL,172,Springfield,IL
-62360,14112,Quincy,IL,172,Springfield,IL
-62361,14109,Pittsfield,IL,172,Springfield,IL
-62362,14109,Pittsfield,IL,172,Springfield,IL
-62363,14109,Pittsfield,IL,172,Springfield,IL
-62365,14112,Quincy,IL,172,Springfield,IL
-62366,14109,Pittsfield,IL,172,Springfield,IL
-62367,14077,Macomb,IL,172,Springfield,IL
-62370,14109,Pittsfield,IL,172,Springfield,IL
-62373,14019,Carthage,IL,172,Springfield,IL
-62374,14077,Macomb,IL,172,Springfield,IL
-62375,14112,Quincy,IL,172,Springfield,IL
-62376,14112,Quincy,IL,172,Springfield,IL
-62378,14128,Springfield,IL,172,Springfield,IL
-62379,14112,Quincy,IL,172,Springfield,IL
-62380,14019,Carthage,IL,172,Springfield,IL
-62401,14035,Effingham,IL,172,Springfield,IL
-62410,14092,Mount Carmel,IL,179,Evansville,IN
-62411,14035,Effingham,IL,172,Springfield,IL
-62413,14114,Robinson,IL,179,Evansville,IN
-62414,14035,Effingham,IL,172,Springfield,IL
-62417,14073,Lawrenceville,IL,179,Evansville,IN
-62418,14137,Vandalia,IL,172,Springfield,IL
-62419,14099,Olney,IL,179,Evansville,IN
-62420,14080,Mattoon,IL,173,Urbana,IL
-62421,14099,Olney,IL,179,Evansville,IN
-62422,14123,Shelbyville,IL,172,Springfield,IL
-62423,15079,Terre Haute,IN,188,Terre Haute,IN
-62424,14035,Effingham,IL,172,Springfield,IL
-62425,14099,Olney,IL,179,Evansville,IN
-62426,14035,Effingham,IL,172,Springfield,IL
-62427,15083,Vincennes,IN,179,Evansville,IN
-62428,14035,Effingham,IL,172,Springfield,IL
-62431,14123,Shelbyville,IL,172,Springfield,IL
-62432,14080,Mattoon,IL,173,Urbana,IL
-62433,14114,Robinson,IL,179,Evansville,IN
-62434,14044,Flora,IL,172,Springfield,IL
-62436,14035,Effingham,IL,172,Springfield,IL
-62438,14123,Shelbyville,IL,172,Springfield,IL
-62439,14073,Lawrenceville,IL,179,Evansville,IN
-62440,14080,Mattoon,IL,173,Urbana,IL
-62441,15079,Terre Haute,IN,188,Terre Haute,IN
-62442,15079,Terre Haute,IN,188,Terre Haute,IN
-62443,14035,Effingham,IL,172,Springfield,IL
-62444,14035,Effingham,IL,172,Springfield,IL
-62445,14035,Effingham,IL,172,Springfield,IL
-62446,14099,Olney,IL,179,Evansville,IN
-62447,14080,Mattoon,IL,173,Urbana,IL
-62448,14035,Effingham,IL,172,Springfield,IL
-62449,14114,Robinson,IL,179,Evansville,IN
-62450,14099,Olney,IL,179,Evansville,IN
-62451,14114,Robinson,IL,179,Evansville,IN
-62452,14099,Olney,IL,179,Evansville,IN
-62454,14114,Robinson,IL,179,Evansville,IN
-62458,14035,Effingham,IL,172,Springfield,IL
-62459,14114,Robinson,IL,179,Evansville,IN
-62460,15083,Vincennes,IN,179,Evansville,IN
-62461,14035,Effingham,IL,172,Springfield,IL
-62462,14035,Effingham,IL,172,Springfield,IL
-62463,14035,Effingham,IL,172,Springfield,IL
-62464,14114,Robinson,IL,179,Evansville,IN
-62465,14123,Shelbyville,IL,172,Springfield,IL
-62466,14073,Lawrenceville,IL,179,Evansville,IN
-62467,14035,Effingham,IL,172,Springfield,IL
-62468,14080,Mattoon,IL,173,Urbana,IL
-62469,14080,Mattoon,IL,173,Urbana,IL
-62471,14137,Vandalia,IL,172,Springfield,IL
-62473,14035,Effingham,IL,172,Springfield,IL
-62474,14080,Mattoon,IL,173,Urbana,IL
-62475,14099,Olney,IL,179,Evansville,IN
-62476,14099,Olney,IL,179,Evansville,IN
-62477,15079,Terre Haute,IN,188,Terre Haute,IN
-62478,15079,Terre Haute,IN,188,Terre Haute,IN
-62479,14035,Effingham,IL,172,Springfield,IL
-62480,14114,Robinson,IL,179,Evansville,IN
-62481,14080,Mattoon,IL,173,Urbana,IL
-62501,14029,Decatur,IL,172,Springfield,IL
-62510,14029,Decatur,IL,172,Springfield,IL
-62512,14128,Springfield,IL,172,Springfield,IL
-62513,14029,Decatur,IL,172,Springfield,IL
-62514,14029,Decatur,IL,172,Springfield,IL
-62515,14128,Springfield,IL,172,Springfield,IL
-62517,14134,Taylorville,IL,172,Springfield,IL
-62518,14128,Springfield,IL,172,Springfield,IL
-62519,14128,Springfield,IL,172,Springfield,IL
-62520,14128,Springfield,IL,172,Springfield,IL
-62521,14029,Decatur,IL,172,Springfield,IL
-62522,14029,Decatur,IL,172,Springfield,IL
-62523,14029,Decatur,IL,172,Springfield,IL
-62524,14029,Decatur,IL,172,Springfield,IL
-62525,14029,Decatur,IL,172,Springfield,IL
-62526,14029,Decatur,IL,172,Springfield,IL
-62530,14128,Springfield,IL,172,Springfield,IL
-62531,14128,Springfield,IL,172,Springfield,IL
-62532,14029,Decatur,IL,172,Springfield,IL
-62533,14128,Springfield,IL,172,Springfield,IL
-62534,14123,Shelbyville,IL,172,Springfield,IL
-62535,14029,Decatur,IL,172,Springfield,IL
-62536,14128,Springfield,IL,172,Springfield,IL
-62537,14029,Decatur,IL,172,Springfield,IL
-62538,14061,Hillsboro,IL,172,Springfield,IL
-62539,14128,Springfield,IL,172,Springfield,IL
-62540,14134,Taylorville,IL,172,Springfield,IL
-62541,14128,Springfield,IL,172,Springfield,IL
-62543,14029,Decatur,IL,172,Springfield,IL
-62544,14029,Decatur,IL,172,Springfield,IL
-62545,14128,Springfield,IL,172,Springfield,IL
-62546,14134,Taylorville,IL,172,Springfield,IL
-62547,14128,Springfield,IL,172,Springfield,IL
-62548,14128,Springfield,IL,172,Springfield,IL
-62549,14029,Decatur,IL,172,Springfield,IL
-62550,14029,Decatur,IL,172,Springfield,IL
-62551,14029,Decatur,IL,172,Springfield,IL
-62553,14102,Pana,IL,172,Springfield,IL
-62554,14029,Decatur,IL,172,Springfield,IL
-62555,14134,Taylorville,IL,172,Springfield,IL
-62556,14134,Taylorville,IL,172,Springfield,IL
-62557,14102,Pana,IL,172,Springfield,IL
-62558,14128,Springfield,IL,172,Springfield,IL
-62560,14061,Hillsboro,IL,172,Springfield,IL
-62561,14128,Springfield,IL,172,Springfield,IL
-62563,14128,Springfield,IL,172,Springfield,IL
-62565,14123,Shelbyville,IL,172,Springfield,IL
-62567,14134,Taylorville,IL,172,Springfield,IL
-62568,14134,Taylorville,IL,172,Springfield,IL
-62570,14134,Taylorville,IL,172,Springfield,IL
-62571,14123,Shelbyville,IL,172,Springfield,IL
-62572,14128,Springfield,IL,172,Springfield,IL
-62573,14029,Decatur,IL,172,Springfield,IL
-62601,14066,Jacksonville,IL,172,Springfield,IL
-62610,14066,Jacksonville,IL,172,Springfield,IL
-62611,14066,Jacksonville,IL,172,Springfield,IL
-62612,14128,Springfield,IL,172,Springfield,IL
-62613,14128,Springfield,IL,172,Springfield,IL
-62615,14128,Springfield,IL,172,Springfield,IL
-62617,14056,Havana,IL,172,Springfield,IL
-62618,14128,Springfield,IL,172,Springfield,IL
-62621,14066,Jacksonville,IL,172,Springfield,IL
-62622,14128,Springfield,IL,172,Springfield,IL
-62624,14119,Rushville,IL,172,Springfield,IL
-62625,14128,Springfield,IL,172,Springfield,IL
-62626,14016,Carlinville,IL,172,Springfield,IL
-62627,14128,Springfield,IL,172,Springfield,IL
-62628,14066,Jacksonville,IL,172,Springfield,IL
-62629,14128,Springfield,IL,172,Springfield,IL
-62630,14016,Carlinville,IL,172,Springfield,IL
-62631,14066,Jacksonville,IL,172,Springfield,IL
-62633,14128,Springfield,IL,172,Springfield,IL
-62634,14128,Springfield,IL,172,Springfield,IL
-62635,14075,Lincoln,IL,172,Springfield,IL
-62638,14066,Jacksonville,IL,172,Springfield,IL
-62639,14128,Springfield,IL,172,Springfield,IL
-62640,14128,Springfield,IL,172,Springfield,IL
-62642,14128,Springfield,IL,172,Springfield,IL
-62643,14075,Lincoln,IL,172,Springfield,IL
-62644,14056,Havana,IL,172,Springfield,IL
-62649,14016,Carlinville,IL,172,Springfield,IL
-62650,14066,Jacksonville,IL,172,Springfield,IL
-62651,14066,Jacksonville,IL,172,Springfield,IL
-62655,14128,Springfield,IL,172,Springfield,IL
-62656,14075,Lincoln,IL,172,Springfield,IL
-62659,14128,Springfield,IL,172,Springfield,IL
-62660,14066,Jacksonville,IL,172,Springfield,IL
-62661,14128,Springfield,IL,172,Springfield,IL
-62662,14128,Springfield,IL,172,Springfield,IL
-62663,14066,Jacksonville,IL,172,Springfield,IL
-62664,14128,Springfield,IL,172,Springfield,IL
-62665,14066,Jacksonville,IL,172,Springfield,IL
-62666,14128,Springfield,IL,172,Springfield,IL
-62667,14128,Springfield,IL,172,Springfield,IL
-62668,14066,Jacksonville,IL,172,Springfield,IL
-62670,14128,Springfield,IL,172,Springfield,IL
-62671,14075,Lincoln,IL,172,Springfield,IL
-62672,14128,Springfield,IL,172,Springfield,IL
-62673,14128,Springfield,IL,172,Springfield,IL
-62674,14016,Carlinville,IL,172,Springfield,IL
-62675,14128,Springfield,IL,172,Springfield,IL
-62677,14128,Springfield,IL,172,Springfield,IL
-62681,14119,Rushville,IL,172,Springfield,IL
-62682,14105,Pekin,IL,170,Peoria,IL
-62683,14128,Springfield,IL,172,Springfield,IL
-62684,14128,Springfield,IL,172,Springfield,IL
-62685,14016,Carlinville,IL,172,Springfield,IL
-62688,14128,Springfield,IL,172,Springfield,IL
-62689,14128,Springfield,IL,172,Springfield,IL
-62690,14128,Springfield,IL,172,Springfield,IL
-62691,14128,Springfield,IL,172,Springfield,IL
-62692,14128,Springfield,IL,172,Springfield,IL
-62693,14128,Springfield,IL,172,Springfield,IL
-62694,14066,Jacksonville,IL,172,Springfield,IL
-62695,14066,Jacksonville,IL,172,Springfield,IL
-62701,14128,Springfield,IL,172,Springfield,IL
-62702,14128,Springfield,IL,172,Springfield,IL
-62703,14128,Springfield,IL,172,Springfield,IL
-62704,14128,Springfield,IL,172,Springfield,IL
-62705,14128,Springfield,IL,172,Springfield,IL
-62706,14128,Springfield,IL,172,Springfield,IL
-62707,14128,Springfield,IL,172,Springfield,IL
-62708,14128,Springfield,IL,172,Springfield,IL
-62711,14128,Springfield,IL,172,Springfield,IL
-62712,14128,Springfield,IL,172,Springfield,IL
-62715,14128,Springfield,IL,172,Springfield,IL
-62716,14128,Springfield,IL,172,Springfield,IL
-62719,14128,Springfield,IL,172,Springfield,IL
-62722,14128,Springfield,IL,172,Springfield,IL
-62723,14128,Springfield,IL,172,Springfield,IL
-62726,14128,Springfield,IL,172,Springfield,IL
-62736,14128,Springfield,IL,172,Springfield,IL
-62739,14128,Springfield,IL,172,Springfield,IL
-62756,14128,Springfield,IL,172,Springfield,IL
-62757,14128,Springfield,IL,172,Springfield,IL
-62761,14128,Springfield,IL,172,Springfield,IL
-62762,14128,Springfield,IL,172,Springfield,IL
-62763,14128,Springfield,IL,172,Springfield,IL
-62764,14128,Springfield,IL,172,Springfield,IL
-62765,14128,Springfield,IL,172,Springfield,IL
-62766,14128,Springfield,IL,172,Springfield,IL
-62767,14128,Springfield,IL,172,Springfield,IL
-62769,14128,Springfield,IL,172,Springfield,IL
-62776,14128,Springfield,IL,172,Springfield,IL
-62777,14128,Springfield,IL,172,Springfield,IL
-62781,14128,Springfield,IL,172,Springfield,IL
-62786,14128,Springfield,IL,172,Springfield,IL
-62791,14128,Springfield,IL,172,Springfield,IL
-62794,14128,Springfield,IL,172,Springfield,IL
-62796,14128,Springfield,IL,172,Springfield,IL
-62801,14020,Centralia,IL,273,St. Louis,MO
-62803,14020,Centralia,IL,273,St. Louis,MO
-62806,15026,Evansville,IN,179,Evansville,IN
-62807,14120,Salem,IL,273,St. Louis,MO
-62808,14020,Centralia,IL,273,St. Louis,MO
-62809,14093,Mount Vernon,IL,273,St. Louis,MO
-62810,14093,Mount Vernon,IL,273,St. Louis,MO
-62811,14092,Mount Carmel,IL,179,Evansville,IN
-62812,14009,Benton,IL,273,St. Louis,MO
-62814,14093,Mount Vernon,IL,273,St. Louis,MO
-62815,14099,Olney,IL,179,Evansville,IN
-62816,14093,Mount Vernon,IL,273,St. Louis,MO
-62817,14083,McLeansboro,IL,179,Evansville,IN
-62818,14092,Mount Carmel,IL,179,Evansville,IN
-62819,14009,Benton,IL,273,St. Louis,MO
-62820,14043,Fairfield,IL,179,Evansville,IN
-62821,14017,Carmi,IL,179,Evansville,IN
-62822,14058,Herrin,IL,273,St. Louis,MO
-62823,14043,Fairfield,IL,179,Evansville,IN
-62824,14044,Flora,IL,172,Springfield,IL
-62825,14058,Herrin,IL,273,St. Louis,MO
-62827,15026,Evansville,IN,179,Evansville,IN
-62828,14083,McLeansboro,IL,179,Evansville,IN
-62829,14083,McLeansboro,IL,179,Evansville,IN
-62830,14093,Mount Vernon,IL,273,St. Louis,MO
-62831,14096,Nashville,IL,273,St. Louis,MO
-62832,14033,Du Quoin,IL,273,St. Louis,MO
-62833,14043,Fairfield,IL,179,Evansville,IN
-62834,14017,Carmi,IL,179,Evansville,IN
-62835,15026,Evansville,IN,179,Evansville,IN
-62836,14093,Mount Vernon,IL,273,St. Louis,MO
-62837,14043,Fairfield,IL,179,Evansville,IN
-62838,14035,Effingham,IL,172,Springfield,IL
-62839,14044,Flora,IL,172,Springfield,IL
-62840,14140,West Frankfort,IL,273,St. Louis,MO
-62841,14058,Herrin,IL,273,St. Louis,MO
-62842,14043,Fairfield,IL,179,Evansville,IN
-62843,14043,Fairfield,IL,179,Evansville,IN
-62844,15026,Evansville,IN,179,Evansville,IN
-62846,14093,Mount Vernon,IL,273,St. Louis,MO
-62848,14020,Centralia,IL,273,St. Louis,MO
-62849,14120,Salem,IL,273,St. Louis,MO
-62850,14093,Mount Vernon,IL,273,St. Louis,MO
-62851,14093,Mount Vernon,IL,273,St. Louis,MO
-62852,14092,Mount Carmel,IL,179,Evansville,IN
-62853,14020,Centralia,IL,273,St. Louis,MO
-62854,14120,Salem,IL,273,St. Louis,MO
-62856,14009,Benton,IL,273,St. Louis,MO
-62858,14035,Effingham,IL,172,Springfield,IL
-62859,14083,McLeansboro,IL,179,Evansville,IN
-62860,14083,McLeansboro,IL,179,Evansville,IN
-62861,14017,Carmi,IL,179,Evansville,IN
-62862,14043,Fairfield,IL,179,Evansville,IN
-62863,14092,Mount Carmel,IL,179,Evansville,IN
-62864,14093,Mount Vernon,IL,273,St. Louis,MO
-62865,14058,Herrin,IL,273,St. Louis,MO
-62866,14093,Mount Vernon,IL,273,St. Louis,MO
-62867,15026,Evansville,IN,179,Evansville,IN
-62868,14099,Olney,IL,179,Evansville,IN
-62869,15026,Evansville,IN,179,Evansville,IN
-62870,14020,Centralia,IL,273,St. Louis,MO
-62871,15026,Evansville,IN,179,Evansville,IN
-62872,14093,Mount Vernon,IL,273,St. Louis,MO
-62874,14140,West Frankfort,IL,273,St. Louis,MO
-62875,14020,Centralia,IL,273,St. Louis,MO
-62876,14096,Nashville,IL,273,St. Louis,MO
-62877,14020,Centralia,IL,273,St. Louis,MO
-62878,14044,Flora,IL,172,Springfield,IL
-62879,14035,Effingham,IL,172,Springfield,IL
-62880,14035,Effingham,IL,172,Springfield,IL
-62881,14120,Salem,IL,273,St. Louis,MO
-62882,14020,Centralia,IL,273,St. Louis,MO
-62883,14093,Mount Vernon,IL,273,St. Louis,MO
-62884,14093,Mount Vernon,IL,273,St. Louis,MO
-62885,14137,Vandalia,IL,172,Springfield,IL
-62886,14093,Mount Vernon,IL,273,St. Louis,MO
-62887,14083,McLeansboro,IL,179,Evansville,IN
-62888,14108,Pinckneyville,IL,273,St. Louis,MO
-62889,14093,Mount Vernon,IL,273,St. Louis,MO
-62890,14140,West Frankfort,IL,273,St. Louis,MO
-62891,14058,Herrin,IL,273,St. Louis,MO
-62892,14020,Centralia,IL,273,St. Louis,MO
-62893,14093,Mount Vernon,IL,273,St. Louis,MO
-62894,14093,Mount Vernon,IL,273,St. Louis,MO
-62895,14093,Mount Vernon,IL,273,St. Louis,MO
-62896,14140,West Frankfort,IL,273,St. Louis,MO
-62897,14093,Mount Vernon,IL,273,St. Louis,MO
-62898,14093,Mount Vernon,IL,273,St. Louis,MO
-62899,14044,Flora,IL,172,Springfield,IL
-62901,14015,Carbondale,IL,273,St. Louis,MO
-62902,14015,Carbondale,IL,273,St. Louis,MO
-62903,14015,Carbondale,IL,273,St. Louis,MO
-62905,14003,Anna,IL,263,Cape Girardeau,MO
-62906,14003,Anna,IL,263,Cape Girardeau,MO
-62907,14094,Murphysboro,IL,263,Cape Girardeau,MO
-62908,18066,Paducah,KY,208,Paducah,KY
-62909,14003,Anna,IL,263,Cape Girardeau,MO
-62910,18066,Paducah,KY,208,Paducah,KY
-62912,14003,Anna,IL,263,Cape Girardeau,MO
-62914,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62915,14058,Herrin,IL,273,St. Louis,MO
-62916,14022,Chester,IL,273,St. Louis,MO
-62917,14053,Harrisburg,IL,179,Evansville,IN
-62918,14058,Herrin,IL,273,St. Louis,MO
-62919,14118,Rosiclare,IL,179,Evansville,IN
-62920,14003,Anna,IL,263,Cape Girardeau,MO
-62921,14058,Herrin,IL,273,St. Louis,MO
-62922,14078,Marion,IL,208,Paducah,KY
-62923,14003,Anna,IL,263,Cape Girardeau,MO
-62924,14015,Carbondale,IL,273,St. Louis,MO
-62926,14003,Anna,IL,263,Cape Girardeau,MO
-62927,14015,Carbondale,IL,273,St. Louis,MO
-62928,18066,Paducah,KY,208,Paducah,KY
-62930,14036,Eldorado,IL,179,Evansville,IN
-62931,14118,Rosiclare,IL,179,Evansville,IN
-62932,14015,Carbondale,IL,273,St. Louis,MO
-62933,14058,Herrin,IL,273,St. Louis,MO
-62934,14036,Eldorado,IL,179,Evansville,IN
-62935,14053,Harrisburg,IL,179,Evansville,IN
-62938,18066,Paducah,KY,208,Paducah,KY
-62939,14078,Marion,IL,208,Paducah,KY
-62940,14094,Murphysboro,IL,263,Cape Girardeau,MO
-62941,18066,Paducah,KY,208,Paducah,KY
-62942,14094,Murphysboro,IL,263,Cape Girardeau,MO
-62943,14086,Metropolis,IL,208,Paducah,KY
-62946,14053,Harrisburg,IL,179,Evansville,IN
-62947,14118,Rosiclare,IL,179,Evansville,IN
-62948,14058,Herrin,IL,273,St. Louis,MO
-62949,14058,Herrin,IL,273,St. Louis,MO
-62950,14094,Murphysboro,IL,263,Cape Girardeau,MO
-62951,14058,Herrin,IL,273,St. Louis,MO
-62952,14003,Anna,IL,263,Cape Girardeau,MO
-62953,14086,Metropolis,IL,208,Paducah,KY
-62954,14036,Eldorado,IL,179,Evansville,IN
-62955,14118,Rosiclare,IL,179,Evansville,IN
-62956,18066,Paducah,KY,208,Paducah,KY
-62957,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62958,14015,Carbondale,IL,273,St. Louis,MO
-62959,14078,Marion,IL,208,Paducah,KY
-62960,14086,Metropolis,IL,208,Paducah,KY
-62961,14003,Anna,IL,263,Cape Girardeau,MO
-62962,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62963,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62964,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62965,14053,Harrisburg,IL,179,Evansville,IN
-62966,14094,Murphysboro,IL,263,Cape Girardeau,MO
-62967,14053,Harrisburg,IL,179,Evansville,IN
-62969,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62970,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62972,14053,Harrisburg,IL,179,Evansville,IN
-62973,14003,Anna,IL,263,Cape Girardeau,MO
-62974,14078,Marion,IL,208,Paducah,KY
-62975,14094,Murphysboro,IL,263,Cape Girardeau,MO
-62976,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62977,14036,Eldorado,IL,179,Evansville,IN
-62979,14036,Eldorado,IL,179,Evansville,IN
-62982,14118,Rosiclare,IL,179,Evansville,IN
-62983,14058,Herrin,IL,273,St. Louis,MO
-62984,14036,Eldorado,IL,179,Evansville,IN
-62985,18066,Paducah,KY,208,Paducah,KY
-62987,14053,Harrisburg,IL,179,Evansville,IN
-62988,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62990,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62992,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62993,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62994,14094,Murphysboro,IL,263,Cape Girardeau,MO
-62995,18066,Paducah,KY,208,Paducah,KY
-62996,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62997,14022,Chester,IL,273,St. Louis,MO
-62998,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-62999,14058,Herrin,IL,273,St. Louis,MO
-63005,26082,St. Louis,MO,273,St. Louis,MO
-63006,26082,St. Louis,MO,273,St. Louis,MO
-63010,26082,St. Louis,MO,273,St. Louis,MO
-63011,26082,St. Louis,MO,273,St. Louis,MO
-63012,26082,St. Louis,MO,273,St. Louis,MO
-63013,26082,St. Louis,MO,273,St. Louis,MO
-63014,26082,St. Louis,MO,273,St. Louis,MO
-63015,26082,St. Louis,MO,273,St. Louis,MO
-63016,26082,St. Louis,MO,273,St. Louis,MO
-63017,26082,St. Louis,MO,273,St. Louis,MO
-63019,26022,Crystal City,MO,273,St. Louis,MO
-63020,26022,Crystal City,MO,273,St. Louis,MO
-63021,26082,St. Louis,MO,273,St. Louis,MO
-63022,26082,St. Louis,MO,273,St. Louis,MO
-63023,26082,St. Louis,MO,273,St. Louis,MO
-63024,26082,St. Louis,MO,273,St. Louis,MO
-63025,26082,St. Louis,MO,273,St. Louis,MO
-63026,26082,St. Louis,MO,273,St. Louis,MO
-63028,26022,Crystal City,MO,273,St. Louis,MO
-63030,26022,Crystal City,MO,273,St. Louis,MO
-63031,26082,St. Louis,MO,273,St. Louis,MO
-63032,26082,St. Louis,MO,273,St. Louis,MO
-63033,26082,St. Louis,MO,273,St. Louis,MO
-63034,26082,St. Louis,MO,273,St. Louis,MO
-63036,26029,Farmington,MO,273,St. Louis,MO
-63037,26082,St. Louis,MO,273,St. Louis,MO
-63038,26082,St. Louis,MO,273,St. Louis,MO
-63039,26082,St. Louis,MO,273,St. Louis,MO
-63040,26082,St. Louis,MO,273,St. Louis,MO
-63041,26082,St. Louis,MO,273,St. Louis,MO
-63042,26082,St. Louis,MO,273,St. Louis,MO
-63043,26082,St. Louis,MO,273,St. Louis,MO
-63044,26082,St. Louis,MO,273,St. Louis,MO
-63045,26082,St. Louis,MO,273,St. Louis,MO
-63047,26022,Crystal City,MO,273,St. Louis,MO
-63048,26022,Crystal City,MO,273,St. Louis,MO
-63049,26082,St. Louis,MO,273,St. Louis,MO
-63050,26082,St. Louis,MO,273,St. Louis,MO
-63051,26082,St. Louis,MO,273,St. Louis,MO
-63052,26082,St. Louis,MO,273,St. Louis,MO
-63053,26082,St. Louis,MO,273,St. Louis,MO
-63055,26082,St. Louis,MO,273,St. Louis,MO
-63056,26082,St. Louis,MO,273,St. Louis,MO
-63057,26082,St. Louis,MO,273,St. Louis,MO
-63060,26082,St. Louis,MO,273,St. Louis,MO
-63061,26082,St. Louis,MO,273,St. Louis,MO
-63065,26082,St. Louis,MO,273,St. Louis,MO
-63066,26082,St. Louis,MO,273,St. Louis,MO
-63068,26082,St. Louis,MO,273,St. Louis,MO
-63069,26082,St. Louis,MO,273,St. Louis,MO
-63070,26022,Crystal City,MO,273,St. Louis,MO
-63071,26022,Crystal City,MO,273,St. Louis,MO
-63072,26082,St. Louis,MO,273,St. Louis,MO
-63073,26082,St. Louis,MO,273,St. Louis,MO
-63074,26082,St. Louis,MO,273,St. Louis,MO
-63077,26082,St. Louis,MO,273,St. Louis,MO
-63079,26082,St. Louis,MO,273,St. Louis,MO
-63080,26082,St. Louis,MO,273,St. Louis,MO
-63084,26082,St. Louis,MO,273,St. Louis,MO
-63087,26029,Farmington,MO,273,St. Louis,MO
-63088,26082,St. Louis,MO,273,St. Louis,MO
-63089,26082,St. Louis,MO,273,St. Louis,MO
-63090,26082,St. Louis,MO,273,St. Louis,MO
-63091,26082,St. Louis,MO,273,St. Louis,MO
-63099,26082,St. Louis,MO,273,St. Louis,MO
-63101,26082,St. Louis,MO,273,St. Louis,MO
-63102,26082,St. Louis,MO,273,St. Louis,MO
-63103,26082,St. Louis,MO,273,St. Louis,MO
-63104,26082,St. Louis,MO,273,St. Louis,MO
-63105,26082,St. Louis,MO,273,St. Louis,MO
-63106,26082,St. Louis,MO,273,St. Louis,MO
-63107,26082,St. Louis,MO,273,St. Louis,MO
-63108,26082,St. Louis,MO,273,St. Louis,MO
-63109,26082,St. Louis,MO,273,St. Louis,MO
-63110,26082,St. Louis,MO,273,St. Louis,MO
-63111,26082,St. Louis,MO,273,St. Louis,MO
-63112,26082,St. Louis,MO,273,St. Louis,MO
-63113,26082,St. Louis,MO,273,St. Louis,MO
-63114,26082,St. Louis,MO,273,St. Louis,MO
-63115,26082,St. Louis,MO,273,St. Louis,MO
-63116,26082,St. Louis,MO,273,St. Louis,MO
-63117,26082,St. Louis,MO,273,St. Louis,MO
-63118,26082,St. Louis,MO,273,St. Louis,MO
-63119,26082,St. Louis,MO,273,St. Louis,MO
-63120,26082,St. Louis,MO,273,St. Louis,MO
-63121,26082,St. Louis,MO,273,St. Louis,MO
-63122,26082,St. Louis,MO,273,St. Louis,MO
-63123,26082,St. Louis,MO,273,St. Louis,MO
-63124,26082,St. Louis,MO,273,St. Louis,MO
-63125,26082,St. Louis,MO,273,St. Louis,MO
-63126,26082,St. Louis,MO,273,St. Louis,MO
-63127,26082,St. Louis,MO,273,St. Louis,MO
-63128,26082,St. Louis,MO,273,St. Louis,MO
-63129,26082,St. Louis,MO,273,St. Louis,MO
-63130,26082,St. Louis,MO,273,St. Louis,MO
-63131,26082,St. Louis,MO,273,St. Louis,MO
-63132,26082,St. Louis,MO,273,St. Louis,MO
-63133,26082,St. Louis,MO,273,St. Louis,MO
-63134,26082,St. Louis,MO,273,St. Louis,MO
-63135,26082,St. Louis,MO,273,St. Louis,MO
-63136,26082,St. Louis,MO,273,St. Louis,MO
-63137,26082,St. Louis,MO,273,St. Louis,MO
-63138,26082,St. Louis,MO,273,St. Louis,MO
-63139,26082,St. Louis,MO,273,St. Louis,MO
-63140,26082,St. Louis,MO,273,St. Louis,MO
-63141,26082,St. Louis,MO,273,St. Louis,MO
-63143,26082,St. Louis,MO,273,St. Louis,MO
-63144,26082,St. Louis,MO,273,St. Louis,MO
-63145,26082,St. Louis,MO,273,St. Louis,MO
-63146,26082,St. Louis,MO,273,St. Louis,MO
-63147,26082,St. Louis,MO,273,St. Louis,MO
-63150,26082,St. Louis,MO,273,St. Louis,MO
-63151,26082,St. Louis,MO,273,St. Louis,MO
-63155,26082,St. Louis,MO,273,St. Louis,MO
-63156,26082,St. Louis,MO,273,St. Louis,MO
-63157,26082,St. Louis,MO,273,St. Louis,MO
-63158,26082,St. Louis,MO,273,St. Louis,MO
-63160,26082,St. Louis,MO,273,St. Louis,MO
-63163,26082,St. Louis,MO,273,St. Louis,MO
-63164,26082,St. Louis,MO,273,St. Louis,MO
-63166,26082,St. Louis,MO,273,St. Louis,MO
-63167,26082,St. Louis,MO,273,St. Louis,MO
-63169,26082,St. Louis,MO,273,St. Louis,MO
-63171,26082,St. Louis,MO,273,St. Louis,MO
-63177,26082,St. Louis,MO,273,St. Louis,MO
-63178,26082,St. Louis,MO,273,St. Louis,MO
-63179,26082,St. Louis,MO,273,St. Louis,MO
-63180,26082,St. Louis,MO,273,St. Louis,MO
-63182,26082,St. Louis,MO,273,St. Louis,MO
-63188,26082,St. Louis,MO,273,St. Louis,MO
-63195,26082,St. Louis,MO,273,St. Louis,MO
-63197,26082,St. Louis,MO,273,St. Louis,MO
-63199,26082,St. Louis,MO,273,St. Louis,MO
-63301,26080,St. Charles,MO,273,St. Louis,MO
-63302,26080,St. Charles,MO,273,St. Louis,MO
-63303,26080,St. Charles,MO,273,St. Louis,MO
-63304,26082,St. Louis,MO,273,St. Louis,MO
-63330,26052,Louisiana,MO,273,St. Louis,MO
-63332,26082,St. Louis,MO,273,St. Louis,MO
-63333,26059,Mexico,MO,264,Columbia,MO
-63334,26052,Louisiana,MO,273,St. Louis,MO
-63336,26052,Louisiana,MO,273,St. Louis,MO
-63338,26082,St. Louis,MO,273,St. Louis,MO
-63339,26052,Louisiana,MO,273,St. Louis,MO
-63341,26082,St. Louis,MO,273,St. Louis,MO
-63342,26082,St. Louis,MO,273,St. Louis,MO
-63343,26089,Troy,MO,273,St. Louis,MO
-63344,26089,Troy,MO,273,St. Louis,MO
-63345,26059,Mexico,MO,264,Columbia,MO
-63346,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63347,26089,Troy,MO,273,St. Louis,MO
-63348,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63349,26089,Troy,MO,273,St. Louis,MO
-63350,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63351,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63352,26059,Mexico,MO,264,Columbia,MO
-63353,26052,Louisiana,MO,273,St. Louis,MO
-63357,26082,St. Louis,MO,273,St. Louis,MO
-63359,26059,Mexico,MO,264,Columbia,MO
-63361,26021,Columbia,MO,264,Columbia,MO
-63362,26089,Troy,MO,273,St. Louis,MO
-63363,26021,Columbia,MO,264,Columbia,MO
-63365,26082,St. Louis,MO,273,St. Louis,MO
-63366,26080,St. Charles,MO,273,St. Louis,MO
-63367,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63368,26080,St. Charles,MO,273,St. Louis,MO
-63369,26080,St. Charles,MO,273,St. Louis,MO
-63370,26089,Troy,MO,273,St. Louis,MO
-63373,26080,St. Charles,MO,273,St. Louis,MO
-63376,26082,St. Louis,MO,273,St. Louis,MO
-63377,26089,Troy,MO,273,St. Louis,MO
-63378,26082,St. Louis,MO,273,St. Louis,MO
-63379,26089,Troy,MO,273,St. Louis,MO
-63380,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63381,26089,Troy,MO,273,St. Louis,MO
-63382,26059,Mexico,MO,264,Columbia,MO
-63383,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63384,26059,Mexico,MO,264,Columbia,MO
-63385,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63386,26082,St. Louis,MO,273,St. Louis,MO
-63387,26089,Troy,MO,273,St. Louis,MO
-63388,26021,Columbia,MO,264,Columbia,MO
-63389,26089,Troy,MO,273,St. Louis,MO
-63390,26045,Lake Saint Louis,MO,273,St. Louis,MO
-63401,26033,Hannibal,MO,264,Columbia,MO
-63430,16057,Keokuk,IA,194,Iowa City,IA
-63431,26021,Columbia,MO,264,Columbia,MO
-63432,26058,Memphis,MO,192,Des Moines,IA
-63433,26033,Hannibal,MO,264,Columbia,MO
-63434,26043,Kirksville,MO,264,Columbia,MO
-63435,14112,Quincy,IL,172,Springfield,IL
-63436,26033,Hannibal,MO,264,Columbia,MO
-63437,26021,Columbia,MO,264,Columbia,MO
-63438,14112,Quincy,IL,172,Springfield,IL
-63439,14112,Quincy,IL,172,Springfield,IL
-63440,14112,Quincy,IL,172,Springfield,IL
-63441,26033,Hannibal,MO,264,Columbia,MO
-63442,26058,Memphis,MO,192,Des Moines,IA
-63443,26033,Hannibal,MO,264,Columbia,MO
-63445,16057,Keokuk,IA,194,Iowa City,IA
-63446,26043,Kirksville,MO,264,Columbia,MO
-63447,14112,Quincy,IL,172,Springfield,IL
-63448,14112,Quincy,IL,172,Springfield,IL
-63450,26021,Columbia,MO,264,Columbia,MO
-63451,26043,Kirksville,MO,264,Columbia,MO
-63452,14112,Quincy,IL,172,Springfield,IL
-63453,16057,Keokuk,IA,194,Iowa City,IA
-63454,14112,Quincy,IL,172,Springfield,IL
-63456,26033,Hannibal,MO,264,Columbia,MO
-63457,14112,Quincy,IL,172,Springfield,IL
-63458,26043,Kirksville,MO,264,Columbia,MO
-63459,26033,Hannibal,MO,264,Columbia,MO
-63460,26043,Kirksville,MO,264,Columbia,MO
-63461,26033,Hannibal,MO,264,Columbia,MO
-63462,26059,Mexico,MO,264,Columbia,MO
-63463,14112,Quincy,IL,172,Springfield,IL
-63465,16057,Keokuk,IA,194,Iowa City,IA
-63466,16057,Keokuk,IA,194,Iowa City,IA
-63467,26033,Hannibal,MO,264,Columbia,MO
-63468,26059,Mexico,MO,264,Columbia,MO
-63469,14112,Quincy,IL,172,Springfield,IL
-63471,14112,Quincy,IL,172,Springfield,IL
-63472,16057,Keokuk,IA,194,Iowa City,IA
-63473,16057,Keokuk,IA,194,Iowa City,IA
-63474,16057,Keokuk,IA,194,Iowa City,IA
-63501,26043,Kirksville,MO,264,Columbia,MO
-63530,26021,Columbia,MO,264,Columbia,MO
-63531,26043,Kirksville,MO,264,Columbia,MO
-63532,26053,Macon,MO,264,Columbia,MO
-63533,26043,Kirksville,MO,264,Columbia,MO
-63534,26021,Columbia,MO,264,Columbia,MO
-63535,16015,Centerville,IA,192,Des Moines,IA
-63536,26043,Kirksville,MO,264,Columbia,MO
-63537,26043,Kirksville,MO,264,Columbia,MO
-63538,26043,Kirksville,MO,264,Columbia,MO
-63539,26021,Columbia,MO,264,Columbia,MO
-63540,26043,Kirksville,MO,264,Columbia,MO
-63541,26043,Kirksville,MO,264,Columbia,MO
-63543,26058,Memphis,MO,192,Des Moines,IA
-63544,26043,Kirksville,MO,264,Columbia,MO
-63545,26043,Kirksville,MO,264,Columbia,MO
-63546,26043,Kirksville,MO,264,Columbia,MO
-63547,26043,Kirksville,MO,264,Columbia,MO
-63548,26043,Kirksville,MO,264,Columbia,MO
-63549,26043,Kirksville,MO,264,Columbia,MO
-63551,26043,Kirksville,MO,264,Columbia,MO
-63552,26053,Macon,MO,264,Columbia,MO
-63555,26058,Memphis,MO,192,Des Moines,IA
-63556,26060,Milan,MO,264,Columbia,MO
-63557,26021,Columbia,MO,264,Columbia,MO
-63558,26021,Columbia,MO,264,Columbia,MO
-63559,26043,Kirksville,MO,264,Columbia,MO
-63560,26043,Kirksville,MO,264,Columbia,MO
-63561,26043,Kirksville,MO,264,Columbia,MO
-63563,26043,Kirksville,MO,264,Columbia,MO
-63565,26090,Unionville,MO,264,Columbia,MO
-63566,26043,Kirksville,MO,264,Columbia,MO
-63567,26043,Kirksville,MO,264,Columbia,MO
-63601,26029,Farmington,MO,273,St. Louis,MO
-63620,26070,Pilot Knob,MO,273,St. Louis,MO
-63621,26070,Pilot Knob,MO,273,St. Louis,MO
-63622,26029,Farmington,MO,273,St. Louis,MO
-63623,26070,Pilot Knob,MO,273,St. Louis,MO
-63624,26029,Farmington,MO,273,St. Louis,MO
-63625,26070,Pilot Knob,MO,273,St. Louis,MO
-63626,26022,Crystal City,MO,273,St. Louis,MO
-63627,26084,Ste. Genevieve,MO,273,St. Louis,MO
-63628,26029,Farmington,MO,273,St. Louis,MO
-63629,26075,Salem,MO,273,St. Louis,MO
-63630,26072,Potosi,MO,273,St. Louis,MO
-63631,26029,Farmington,MO,273,St. Louis,MO
-63632,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63633,26026,Ellington,MO,273,St. Louis,MO
-63636,26071,Poplar Bluff,MO,273,St. Louis,MO
-63637,26029,Farmington,MO,273,St. Louis,MO
-63638,26026,Ellington,MO,273,St. Louis,MO
-63640,26029,Farmington,MO,273,St. Louis,MO
-63645,26031,Fredericktown,MO,273,St. Louis,MO
-63648,26029,Farmington,MO,273,St. Louis,MO
-63650,26070,Pilot Knob,MO,273,St. Louis,MO
-63651,26029,Farmington,MO,273,St. Louis,MO
-63653,26029,Farmington,MO,273,St. Louis,MO
-63654,26070,Pilot Knob,MO,273,St. Louis,MO
-63655,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63656,26070,Pilot Knob,MO,273,St. Louis,MO
-63660,26029,Farmington,MO,273,St. Louis,MO
-63662,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63663,26070,Pilot Knob,MO,273,St. Louis,MO
-63664,26072,Potosi,MO,273,St. Louis,MO
-63665,26070,Pilot Knob,MO,273,St. Louis,MO
-63666,26026,Ellington,MO,273,St. Louis,MO
-63670,26084,Ste. Genevieve,MO,273,St. Louis,MO
-63673,26084,Ste. Genevieve,MO,273,St. Louis,MO
-63674,26072,Potosi,MO,273,St. Louis,MO
-63675,26070,Pilot Knob,MO,273,St. Louis,MO
-63701,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63702,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63703,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63730,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63732,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63735,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63736,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63737,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63738,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63739,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63740,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63742,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63743,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63744,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63745,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63746,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63747,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63748,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63750,26071,Poplar Bluff,MO,273,St. Louis,MO
-63751,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63752,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63755,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63758,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63760,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63763,26071,Poplar Bluff,MO,273,St. Louis,MO
-63764,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63766,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63767,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63769,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63770,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63771,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63774,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63775,26069,Perryville,MO,263,Cape Girardeau,MO
-63776,26069,Perryville,MO,263,Cape Girardeau,MO
-63779,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63780,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63781,26069,Perryville,MO,263,Cape Girardeau,MO
-63782,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63783,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63784,26077,Sikeston,MO,263,Cape Girardeau,MO
-63785,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63787,26013,Cape Girardeau,MO,263,Cape Girardeau,MO
-63801,26077,Sikeston,MO,263,Cape Girardeau,MO
-63820,26077,Sikeston,MO,263,Cape Girardeau,MO
-63821,4057,Paragould,AR,18,Jonesboro,AR
-63822,26071,Poplar Bluff,MO,273,St. Louis,MO
-63823,26077,Sikeston,MO,263,Cape Girardeau,MO
-63824,26077,Sikeston,MO,263,Cape Girardeau,MO
-63825,26023,Dexter,MO,263,Cape Girardeau,MO
-63826,4007,Blytheville,AR,379,Memphis,TN
-63827,26042,Kennett,MO,18,Jonesboro,AR
-63828,26077,Sikeston,MO,263,Cape Girardeau,MO
-63829,4057,Paragould,AR,18,Jonesboro,AR
-63830,26035,Hayti,MO,263,Cape Girardeau,MO
-63833,26071,Poplar Bluff,MO,273,St. Louis,MO
-63834,26077,Sikeston,MO,263,Cape Girardeau,MO
-63837,26071,Poplar Bluff,MO,273,St. Louis,MO
-63839,4007,Blytheville,AR,379,Memphis,TN
-63840,26042,Kennett,MO,18,Jonesboro,AR
-63841,26023,Dexter,MO,263,Cape Girardeau,MO
-63845,26077,Sikeston,MO,263,Cape Girardeau,MO
-63846,26023,Dexter,MO,263,Cape Girardeau,MO
-63847,26071,Poplar Bluff,MO,273,St. Louis,MO
-63848,26042,Kennett,MO,18,Jonesboro,AR
-63849,26042,Kennett,MO,18,Jonesboro,AR
-63850,26023,Dexter,MO,263,Cape Girardeau,MO
-63851,26035,Hayti,MO,263,Cape Girardeau,MO
-63852,26042,Kennett,MO,18,Jonesboro,AR
-63853,4007,Blytheville,AR,379,Memphis,TN
-63855,26042,Kennett,MO,18,Jonesboro,AR
-63857,26042,Kennett,MO,18,Jonesboro,AR
-63860,26077,Sikeston,MO,263,Cape Girardeau,MO
-63862,26077,Sikeston,MO,263,Cape Girardeau,MO
-63863,26071,Poplar Bluff,MO,273,St. Louis,MO
-63866,26077,Sikeston,MO,263,Cape Girardeau,MO
-63867,26077,Sikeston,MO,263,Cape Girardeau,MO
-63868,26077,Sikeston,MO,263,Cape Girardeau,MO
-63869,26077,Sikeston,MO,263,Cape Girardeau,MO
-63870,26071,Poplar Bluff,MO,273,St. Louis,MO
-63873,26077,Sikeston,MO,263,Cape Girardeau,MO
-63874,26071,Poplar Bluff,MO,273,St. Louis,MO
-63875,26042,Kennett,MO,18,Jonesboro,AR
-63876,26042,Kennett,MO,18,Jonesboro,AR
-63877,4007,Blytheville,AR,379,Memphis,TN
-63878,26077,Sikeston,MO,263,Cape Girardeau,MO
-63879,26035,Hayti,MO,263,Cape Girardeau,MO
-63880,26042,Kennett,MO,18,Jonesboro,AR
-63881,26077,Sikeston,MO,263,Cape Girardeau,MO
-63882,26077,Sikeston,MO,263,Cape Girardeau,MO
-63901,26071,Poplar Bluff,MO,273,St. Louis,MO
-63902,26071,Poplar Bluff,MO,273,St. Louis,MO
-63931,26071,Poplar Bluff,MO,273,St. Louis,MO
-63932,26071,Poplar Bluff,MO,273,St. Louis,MO
-63933,26071,Poplar Bluff,MO,273,St. Louis,MO
-63934,26071,Poplar Bluff,MO,273,St. Louis,MO
-63935,26071,Poplar Bluff,MO,273,St. Louis,MO
-63936,26071,Poplar Bluff,MO,273,St. Louis,MO
-63937,26071,Poplar Bluff,MO,273,St. Louis,MO
-63939,26071,Poplar Bluff,MO,273,St. Louis,MO
-63940,26071,Poplar Bluff,MO,273,St. Louis,MO
-63941,26071,Poplar Bluff,MO,273,St. Louis,MO
-63942,26071,Poplar Bluff,MO,273,St. Louis,MO
-63943,26071,Poplar Bluff,MO,273,St. Louis,MO
-63944,26071,Poplar Bluff,MO,273,St. Louis,MO
-63945,26071,Poplar Bluff,MO,273,St. Louis,MO
-63950,26071,Poplar Bluff,MO,273,St. Louis,MO
-63951,26071,Poplar Bluff,MO,273,St. Louis,MO
-63952,26071,Poplar Bluff,MO,273,St. Louis,MO
-63953,26071,Poplar Bluff,MO,273,St. Louis,MO
-63954,26071,Poplar Bluff,MO,273,St. Louis,MO
-63955,26071,Poplar Bluff,MO,273,St. Louis,MO
-63956,26071,Poplar Bluff,MO,273,St. Louis,MO
-63957,26071,Poplar Bluff,MO,273,St. Louis,MO
-63960,26071,Poplar Bluff,MO,273,St. Louis,MO
-63961,26071,Poplar Bluff,MO,273,St. Louis,MO
-63962,26071,Poplar Bluff,MO,273,St. Louis,MO
-63964,26071,Poplar Bluff,MO,273,St. Louis,MO
-63965,26071,Poplar Bluff,MO,273,St. Louis,MO
-63966,26071,Poplar Bluff,MO,273,St. Louis,MO
-63967,26071,Poplar Bluff,MO,273,St. Louis,MO
-64001,26049,Lexington,MO,268,Kansas City,MO
-64002,26048,Lees Summit,MO,268,Kansas City,MO
-64011,26005,Blue Springs,MO,268,Kansas City,MO
-64012,26041,Kansas City,MO,268,Kansas City,MO
-64013,26005,Blue Springs,MO,268,Kansas City,MO
-64014,26005,Blue Springs,MO,268,Kansas City,MO
-64015,26005,Blue Springs,MO,268,Kansas City,MO
-64016,26038,Independence,MO,268,Kansas City,MO
-64017,26073,Richmond,MO,268,Kansas City,MO
-64018,26066,North Kansas City,MO,268,Kansas City,MO
-64019,26091,Warrensburg,MO,268,Kansas City,MO
-64020,26091,Warrensburg,MO,268,Kansas City,MO
-64021,26049,Lexington,MO,268,Kansas City,MO
-64022,26049,Lexington,MO,268,Kansas City,MO
-64024,26027,Excelsior Springs,MO,268,Kansas City,MO
-64028,26066,North Kansas City,MO,268,Kansas City,MO
-64029,26005,Blue Springs,MO,268,Kansas City,MO
-64030,26041,Kansas City,MO,268,Kansas City,MO
-64034,26048,Lees Summit,MO,268,Kansas City,MO
-64035,26073,Richmond,MO,268,Kansas City,MO
-64036,26073,Richmond,MO,268,Kansas City,MO
-64037,26049,Lexington,MO,268,Kansas City,MO
-64040,26041,Kansas City,MO,268,Kansas City,MO
-64048,26050,Liberty,MO,268,Kansas City,MO
-64050,26038,Independence,MO,268,Kansas City,MO
-64051,26038,Independence,MO,268,Kansas City,MO
-64052,26038,Independence,MO,268,Kansas City,MO
-64053,26038,Independence,MO,268,Kansas City,MO
-64054,26038,Independence,MO,268,Kansas City,MO
-64055,26038,Independence,MO,268,Kansas City,MO
-64056,26038,Independence,MO,268,Kansas City,MO
-64057,26038,Independence,MO,268,Kansas City,MO
-64058,26038,Independence,MO,268,Kansas City,MO
-64060,26050,Liberty,MO,268,Kansas City,MO
-64061,26041,Kansas City,MO,268,Kansas City,MO
-64062,26027,Excelsior Springs,MO,268,Kansas City,MO
-64063,26048,Lees Summit,MO,268,Kansas City,MO
-64064,26041,Kansas City,MO,268,Kansas City,MO
-64065,26041,Kansas City,MO,268,Kansas City,MO
-64066,26038,Independence,MO,268,Kansas City,MO
-64067,26049,Lexington,MO,268,Kansas City,MO
-64068,26050,Liberty,MO,268,Kansas City,MO
-64069,26050,Liberty,MO,268,Kansas City,MO
-64070,26041,Kansas City,MO,268,Kansas City,MO
-64071,26005,Blue Springs,MO,268,Kansas City,MO
-64072,26027,Excelsior Springs,MO,268,Kansas City,MO
-64073,26027,Excelsior Springs,MO,268,Kansas City,MO
-64074,26005,Blue Springs,MO,268,Kansas City,MO
-64075,26005,Blue Springs,MO,268,Kansas City,MO
-64076,26005,Blue Springs,MO,268,Kansas City,MO
-64077,26073,Richmond,MO,268,Kansas City,MO
-64078,26041,Kansas City,MO,268,Kansas City,MO
-64079,26066,North Kansas City,MO,268,Kansas City,MO
-64080,26041,Kansas City,MO,268,Kansas City,MO
-64081,26048,Lees Summit,MO,268,Kansas City,MO
-64082,26041,Kansas City,MO,268,Kansas City,MO
-64083,26041,Kansas City,MO,268,Kansas City,MO
-64084,26073,Richmond,MO,268,Kansas City,MO
-64085,26073,Richmond,MO,268,Kansas City,MO
-64086,26048,Lees Summit,MO,268,Kansas City,MO
-64088,26038,Independence,MO,268,Kansas City,MO
-64089,26078,Smithville,MO,268,Kansas City,MO
-64090,26041,Kansas City,MO,268,Kansas City,MO
-64092,26066,North Kansas City,MO,268,Kansas City,MO
-64093,26091,Warrensburg,MO,268,Kansas City,MO
-64096,26049,Lexington,MO,268,Kansas City,MO
-64097,26049,Lexington,MO,268,Kansas City,MO
-64098,26066,North Kansas City,MO,268,Kansas City,MO
-64101,26041,Kansas City,MO,268,Kansas City,MO
-64102,26041,Kansas City,MO,268,Kansas City,MO
-64105,26041,Kansas City,MO,268,Kansas City,MO
-64106,26041,Kansas City,MO,268,Kansas City,MO
-64108,26041,Kansas City,MO,268,Kansas City,MO
-64109,26041,Kansas City,MO,268,Kansas City,MO
-64110,26041,Kansas City,MO,268,Kansas City,MO
-64111,26041,Kansas City,MO,268,Kansas City,MO
-64112,26041,Kansas City,MO,268,Kansas City,MO
-64113,26041,Kansas City,MO,268,Kansas City,MO
-64114,26041,Kansas City,MO,268,Kansas City,MO
-64116,26066,North Kansas City,MO,268,Kansas City,MO
-64117,26066,North Kansas City,MO,268,Kansas City,MO
-64118,26066,North Kansas City,MO,268,Kansas City,MO
-64119,26066,North Kansas City,MO,268,Kansas City,MO
-64120,26066,North Kansas City,MO,268,Kansas City,MO
-64121,26041,Kansas City,MO,268,Kansas City,MO
-64123,26041,Kansas City,MO,268,Kansas City,MO
-64124,26041,Kansas City,MO,268,Kansas City,MO
-64125,26041,Kansas City,MO,268,Kansas City,MO
-64126,26041,Kansas City,MO,268,Kansas City,MO
-64127,26041,Kansas City,MO,268,Kansas City,MO
-64128,26041,Kansas City,MO,268,Kansas City,MO
-64129,26041,Kansas City,MO,268,Kansas City,MO
-64130,26041,Kansas City,MO,268,Kansas City,MO
-64131,26041,Kansas City,MO,268,Kansas City,MO
-64132,26041,Kansas City,MO,268,Kansas City,MO
-64133,26041,Kansas City,MO,268,Kansas City,MO
-64134,26041,Kansas City,MO,268,Kansas City,MO
-64136,26041,Kansas City,MO,268,Kansas City,MO
-64137,26041,Kansas City,MO,268,Kansas City,MO
-64138,26041,Kansas City,MO,268,Kansas City,MO
-64139,26041,Kansas City,MO,268,Kansas City,MO
-64141,26041,Kansas City,MO,268,Kansas City,MO
-64144,26066,North Kansas City,MO,268,Kansas City,MO
-64145,26041,Kansas City,MO,268,Kansas City,MO
-64146,26041,Kansas City,MO,268,Kansas City,MO
-64147,26041,Kansas City,MO,268,Kansas City,MO
-64148,26041,Kansas City,MO,268,Kansas City,MO
-64149,26041,Kansas City,MO,268,Kansas City,MO
-64150,26066,North Kansas City,MO,268,Kansas City,MO
-64151,26066,North Kansas City,MO,268,Kansas City,MO
-64152,26066,North Kansas City,MO,268,Kansas City,MO
-64153,26066,North Kansas City,MO,268,Kansas City,MO
-64154,26066,North Kansas City,MO,268,Kansas City,MO
-64155,26066,North Kansas City,MO,268,Kansas City,MO
-64156,26066,North Kansas City,MO,268,Kansas City,MO
-64157,26050,Liberty,MO,268,Kansas City,MO
-64158,26050,Liberty,MO,268,Kansas City,MO
-64161,26066,North Kansas City,MO,268,Kansas City,MO
-64162,26066,North Kansas City,MO,268,Kansas City,MO
-64163,26078,Smithville,MO,268,Kansas City,MO
-64164,26078,Smithville,MO,268,Kansas City,MO
-64165,26066,North Kansas City,MO,268,Kansas City,MO
-64166,26066,North Kansas City,MO,268,Kansas City,MO
-64167,26050,Liberty,MO,268,Kansas City,MO
-64168,26066,North Kansas City,MO,268,Kansas City,MO
-64170,26041,Kansas City,MO,268,Kansas City,MO
-64171,26041,Kansas City,MO,268,Kansas City,MO
-64179,26041,Kansas City,MO,268,Kansas City,MO
-64180,26041,Kansas City,MO,268,Kansas City,MO
-64184,26041,Kansas City,MO,268,Kansas City,MO
-64187,26041,Kansas City,MO,268,Kansas City,MO
-64188,26066,North Kansas City,MO,268,Kansas City,MO
-64190,26066,North Kansas City,MO,268,Kansas City,MO
-64191,26041,Kansas City,MO,268,Kansas City,MO
-64195,26066,North Kansas City,MO,268,Kansas City,MO
-64196,26041,Kansas City,MO,268,Kansas City,MO
-64197,26041,Kansas City,MO,268,Kansas City,MO
-64198,26041,Kansas City,MO,268,Kansas City,MO
-64199,26041,Kansas City,MO,268,Kansas City,MO
-64401,26081,St. Joseph,MO,268,Kansas City,MO
-64402,26001,Albany,MO,268,Kansas City,MO
-64420,26001,Albany,MO,268,Kansas City,MO
-64421,26081,St. Joseph,MO,268,Kansas City,MO
-64422,26081,St. Joseph,MO,268,Kansas City,MO
-64423,26057,Maryville,MO,268,Kansas City,MO
-64424,26004,Bethany,MO,268,Kansas City,MO
-64426,26004,Bethany,MO,268,Kansas City,MO
-64427,26081,St. Joseph,MO,268,Kansas City,MO
-64428,26057,Maryville,MO,268,Kansas City,MO
-64429,26012,Cameron,MO,268,Kansas City,MO
-64430,26081,St. Joseph,MO,268,Kansas City,MO
-64431,26057,Maryville,MO,268,Kansas City,MO
-64432,26057,Maryville,MO,268,Kansas City,MO
-64433,26081,St. Joseph,MO,268,Kansas City,MO
-64434,26057,Maryville,MO,268,Kansas City,MO
-64436,26081,St. Joseph,MO,268,Kansas City,MO
-64437,26028,Fairfax,MO,278,Omaha,NE
-64438,26001,Albany,MO,268,Kansas City,MO
-64439,26081,St. Joseph,MO,268,Kansas City,MO
-64440,26081,St. Joseph,MO,268,Kansas City,MO
-64441,26001,Albany,MO,268,Kansas City,MO
-64442,26081,St. Joseph,MO,268,Kansas City,MO
-64443,26081,St. Joseph,MO,268,Kansas City,MO
-64444,26078,Smithville,MO,268,Kansas City,MO
-64445,16094,Shenandoah,IA,278,Omaha,NE
-64446,26028,Fairfax,MO,278,Omaha,NE
-64448,26081,St. Joseph,MO,268,Kansas City,MO
-64449,26081,St. Joseph,MO,268,Kansas City,MO
-64451,26081,St. Joseph,MO,268,Kansas City,MO
-64453,26001,Albany,MO,268,Kansas City,MO
-64454,26081,St. Joseph,MO,268,Kansas City,MO
-64455,26081,St. Joseph,MO,268,Kansas City,MO
-64456,26001,Albany,MO,268,Kansas City,MO
-64457,26081,St. Joseph,MO,268,Kansas City,MO
-64458,26001,Albany,MO,268,Kansas City,MO
-64459,26081,St. Joseph,MO,268,Kansas City,MO
-64461,26057,Maryville,MO,268,Kansas City,MO
-64463,26081,St. Joseph,MO,268,Kansas City,MO
-64465,26050,Liberty,MO,268,Kansas City,MO
-64466,26081,St. Joseph,MO,268,Kansas City,MO
-64467,26081,St. Joseph,MO,268,Kansas City,MO
-64468,26057,Maryville,MO,268,Kansas City,MO
-64469,26081,St. Joseph,MO,268,Kansas City,MO
-64470,26081,St. Joseph,MO,268,Kansas City,MO
-64471,26081,St. Joseph,MO,268,Kansas City,MO
-64473,26081,St. Joseph,MO,268,Kansas City,MO
-64474,26081,St. Joseph,MO,268,Kansas City,MO
-64475,26057,Maryville,MO,268,Kansas City,MO
-64476,26057,Maryville,MO,268,Kansas City,MO
-64477,26078,Smithville,MO,268,Kansas City,MO
-64479,26057,Maryville,MO,268,Kansas City,MO
-64480,26081,St. Joseph,MO,268,Kansas City,MO
-64481,26004,Bethany,MO,268,Kansas City,MO
-64482,26028,Fairfax,MO,278,Omaha,NE
-64483,26081,St. Joseph,MO,268,Kansas City,MO
-64484,17005,Atchison,KS,268,Kansas City,MO
-64485,26081,St. Joseph,MO,268,Kansas City,MO
-64486,26057,Maryville,MO,268,Kansas City,MO
-64487,26057,Maryville,MO,268,Kansas City,MO
-64489,26081,St. Joseph,MO,268,Kansas City,MO
-64490,26081,St. Joseph,MO,268,Kansas City,MO
-64491,26028,Fairfax,MO,278,Omaha,NE
-64492,26078,Smithville,MO,268,Kansas City,MO
-64493,26050,Liberty,MO,268,Kansas City,MO
-64494,26081,St. Joseph,MO,268,Kansas City,MO
-64496,26028,Fairfax,MO,278,Omaha,NE
-64497,26012,Cameron,MO,268,Kansas City,MO
-64498,26028,Fairfax,MO,278,Omaha,NE
-64499,26001,Albany,MO,268,Kansas City,MO
-64501,26081,St. Joseph,MO,268,Kansas City,MO
-64502,26081,St. Joseph,MO,268,Kansas City,MO
-64503,26081,St. Joseph,MO,268,Kansas City,MO
-64504,26081,St. Joseph,MO,268,Kansas City,MO
-64505,26081,St. Joseph,MO,268,Kansas City,MO
-64506,26081,St. Joseph,MO,268,Kansas City,MO
-64507,26081,St. Joseph,MO,268,Kansas City,MO
-64508,26081,St. Joseph,MO,268,Kansas City,MO
-64601,26019,Chillicothe,MO,268,Kansas City,MO
-64620,26050,Liberty,MO,268,Kansas City,MO
-64622,26019,Chillicothe,MO,268,Kansas City,MO
-64623,26014,Carrollton,MO,268,Kansas City,MO
-64624,26050,Liberty,MO,268,Kansas City,MO
-64625,26019,Chillicothe,MO,268,Kansas City,MO
-64628,26010,Brookfield,MO,264,Columbia,MO
-64630,26010,Brookfield,MO,264,Columbia,MO
-64631,26010,Brookfield,MO,264,Columbia,MO
-64632,26004,Bethany,MO,268,Kansas City,MO
-64633,26014,Carrollton,MO,268,Kansas City,MO
-64635,26019,Chillicothe,MO,268,Kansas City,MO
-64636,26004,Bethany,MO,268,Kansas City,MO
-64637,26050,Liberty,MO,268,Kansas City,MO
-64638,26019,Chillicothe,MO,268,Kansas City,MO
-64639,26021,Columbia,MO,264,Columbia,MO
-64640,26050,Liberty,MO,268,Kansas City,MO
-64641,26088,Trenton,MO,268,Kansas City,MO
-64642,26004,Bethany,MO,268,Kansas City,MO
-64643,26019,Chillicothe,MO,268,Kansas City,MO
-64644,26050,Liberty,MO,268,Kansas City,MO
-64645,26088,Trenton,MO,268,Kansas City,MO
-64646,26060,Milan,MO,264,Columbia,MO
-64647,26050,Liberty,MO,268,Kansas City,MO
-64648,26088,Trenton,MO,268,Kansas City,MO
-64649,26050,Liberty,MO,268,Kansas City,MO
-64650,26050,Liberty,MO,268,Kansas City,MO
-64651,26010,Brookfield,MO,264,Columbia,MO
-64652,26088,Trenton,MO,268,Kansas City,MO
-64653,26010,Brookfield,MO,264,Columbia,MO
-64654,26019,Chillicothe,MO,268,Kansas City,MO
-64655,16023,Corydon,IA,192,Des Moines,IA
-64656,26019,Chillicothe,MO,268,Kansas City,MO
-64657,26001,Albany,MO,268,Kansas City,MO
-64658,26010,Brookfield,MO,264,Columbia,MO
-64659,26019,Chillicothe,MO,268,Kansas City,MO
-64660,26010,Brookfield,MO,264,Columbia,MO
-64661,16023,Corydon,IA,192,Des Moines,IA
-64664,26019,Chillicothe,MO,268,Kansas City,MO
-64667,26043,Kirksville,MO,264,Columbia,MO
-64668,26073,Richmond,MO,268,Kansas City,MO
-64670,26081,St. Joseph,MO,268,Kansas City,MO
-64671,26073,Richmond,MO,268,Kansas City,MO
-64672,16023,Corydon,IA,192,Des Moines,IA
-64673,26088,Trenton,MO,268,Kansas City,MO
-64674,26010,Brookfield,MO,264,Columbia,MO
-64676,26010,Brookfield,MO,264,Columbia,MO
-64679,26088,Trenton,MO,268,Kansas City,MO
-64680,26073,Richmond,MO,268,Kansas City,MO
-64681,26010,Brookfield,MO,264,Columbia,MO
-64682,26019,Chillicothe,MO,268,Kansas City,MO
-64683,26088,Trenton,MO,268,Kansas City,MO
-64686,26019,Chillicothe,MO,268,Kansas City,MO
-64688,26019,Chillicothe,MO,268,Kansas City,MO
-64689,26012,Cameron,MO,268,Kansas City,MO
-64701,26034,Harrisonville,MO,268,Kansas City,MO
-64720,26011,Butler,MO,268,Kansas City,MO
-64722,26011,Butler,MO,268,Kansas City,MO
-64723,26011,Butler,MO,268,Kansas City,MO
-64724,26002,Appleton City,MO,268,Kansas City,MO
-64725,26041,Kansas City,MO,268,Kansas City,MO
-64726,26020,Clinton,MO,268,Kansas City,MO
-64728,26065,Nevada,MO,267,Joplin,MO
-64730,26011,Butler,MO,268,Kansas City,MO
-64733,26091,Warrensburg,MO,268,Kansas City,MO
-64734,26041,Kansas City,MO,268,Kansas City,MO
-64735,26020,Clinton,MO,268,Kansas City,MO
-64738,26068,Osceola,MO,268,Kansas City,MO
-64739,26020,Clinton,MO,268,Kansas City,MO
-64740,26020,Clinton,MO,268,Kansas City,MO
-64741,17031,Fort Scott,KS,267,Joplin,MO
-64742,26041,Kansas City,MO,268,Kansas City,MO
-64743,26034,Harrisonville,MO,268,Kansas City,MO
-64744,26025,El Dorado Springs,MO,270,Springfield,MO
-64745,17031,Fort Scott,KS,267,Joplin,MO
-64746,26041,Kansas City,MO,268,Kansas City,MO
-64747,26034,Harrisonville,MO,268,Kansas City,MO
-64748,26079,Springfield,MO,270,Springfield,MO
-64750,26025,El Dorado Springs,MO,270,Springfield,MO
-64752,17031,Fort Scott,KS,267,Joplin,MO
-64755,26015,Carthage,MO,267,Joplin,MO
-64756,26046,Lamar,MO,267,Joplin,MO
-64759,26046,Lamar,MO,267,Joplin,MO
-64761,26020,Clinton,MO,268,Kansas City,MO
-64762,26040,Joplin,MO,267,Joplin,MO
-64763,26068,Osceola,MO,268,Kansas City,MO
-64765,26065,Nevada,MO,267,Joplin,MO
-64766,26046,Lamar,MO,267,Joplin,MO
-64767,26065,Nevada,MO,267,Joplin,MO
-64769,17096,Pittsburg,KS,267,Joplin,MO
-64770,26020,Clinton,MO,268,Kansas City,MO
-64771,26065,Nevada,MO,267,Joplin,MO
-64772,26065,Nevada,MO,267,Joplin,MO
-64776,26068,Osceola,MO,268,Kansas City,MO
-64778,26065,Nevada,MO,267,Joplin,MO
-64779,26011,Butler,MO,268,Kansas City,MO
-64780,26011,Butler,MO,268,Kansas City,MO
-64781,26068,Osceola,MO,268,Kansas City,MO
-64783,26025,El Dorado Springs,MO,270,Springfield,MO
-64784,26065,Nevada,MO,267,Joplin,MO
-64788,26020,Clinton,MO,268,Kansas City,MO
-64790,26065,Nevada,MO,267,Joplin,MO
-64801,26040,Joplin,MO,267,Joplin,MO
-64802,26040,Joplin,MO,267,Joplin,MO
-64803,26040,Joplin,MO,267,Joplin,MO
-64804,26040,Joplin,MO,267,Joplin,MO
-64830,26040,Joplin,MO,267,Joplin,MO
-64831,26040,Joplin,MO,267,Joplin,MO
-64832,26040,Joplin,MO,267,Joplin,MO
-64833,26040,Joplin,MO,267,Joplin,MO
-64834,26040,Joplin,MO,267,Joplin,MO
-64835,26040,Joplin,MO,267,Joplin,MO
-64836,26015,Carthage,MO,267,Joplin,MO
-64840,26040,Joplin,MO,267,Joplin,MO
-64841,26040,Joplin,MO,267,Joplin,MO
-64842,26064,Neosho,MO,267,Joplin,MO
-64843,26040,Joplin,MO,267,Joplin,MO
-64844,26040,Joplin,MO,267,Joplin,MO
-64847,4030,Gravette,AR,21,Springdale,AR
-64848,26079,Springfield,MO,270,Springfield,MO
-64849,26040,Joplin,MO,267,Joplin,MO
-64850,26064,Neosho,MO,267,Joplin,MO
-64853,26064,Neosho,MO,267,Joplin,MO
-64854,4030,Gravette,AR,21,Springdale,AR
-64855,26040,Joplin,MO,267,Joplin,MO
-64856,26064,Neosho,MO,267,Joplin,MO
-64857,26040,Joplin,MO,267,Joplin,MO
-64858,26040,Joplin,MO,267,Joplin,MO
-64859,26040,Joplin,MO,267,Joplin,MO
-64861,26064,Neosho,MO,267,Joplin,MO
-64862,26040,Joplin,MO,267,Joplin,MO
-64863,4030,Gravette,AR,21,Springdale,AR
-64864,26040,Joplin,MO,267,Joplin,MO
-64865,26040,Joplin,MO,267,Joplin,MO
-64866,26064,Neosho,MO,267,Joplin,MO
-64867,26064,Neosho,MO,267,Joplin,MO
-64868,37037,Grove,OK,267,Joplin,MO
-64870,26040,Joplin,MO,267,Joplin,MO
-64873,26040,Joplin,MO,267,Joplin,MO
-64874,26064,Neosho,MO,267,Joplin,MO
-64999,26041,Kansas City,MO,268,Kansas City,MO
-65001,26039,Jefferson City,MO,264,Columbia,MO
-65010,26021,Columbia,MO,264,Columbia,MO
-65011,26039,Jefferson City,MO,264,Columbia,MO
-65013,26039,Jefferson City,MO,264,Columbia,MO
-65014,26039,Jefferson City,MO,264,Columbia,MO
-65016,26039,Jefferson City,MO,264,Columbia,MO
-65017,26067,Osage Beach,MO,264,Columbia,MO
-65018,26039,Jefferson City,MO,264,Columbia,MO
-65020,26067,Osage Beach,MO,264,Columbia,MO
-65023,26039,Jefferson City,MO,264,Columbia,MO
-65024,26039,Jefferson City,MO,264,Columbia,MO
-65025,26039,Jefferson City,MO,264,Columbia,MO
-65026,26039,Jefferson City,MO,264,Columbia,MO
-65032,26039,Jefferson City,MO,264,Columbia,MO
-65034,26039,Jefferson City,MO,264,Columbia,MO
-65035,26039,Jefferson City,MO,264,Columbia,MO
-65036,26036,Hermann,MO,264,Columbia,MO
-65037,26039,Jefferson City,MO,264,Columbia,MO
-65038,26039,Jefferson City,MO,264,Columbia,MO
-65039,26021,Columbia,MO,264,Columbia,MO
-65040,26039,Jefferson City,MO,264,Columbia,MO
-65041,26036,Hermann,MO,264,Columbia,MO
-65042,26039,Jefferson City,MO,264,Columbia,MO
-65043,26039,Jefferson City,MO,264,Columbia,MO
-65046,26039,Jefferson City,MO,264,Columbia,MO
-65047,26039,Jefferson City,MO,264,Columbia,MO
-65048,26039,Jefferson City,MO,264,Columbia,MO
-65049,26067,Osage Beach,MO,264,Columbia,MO
-65050,26039,Jefferson City,MO,264,Columbia,MO
-65051,26039,Jefferson City,MO,264,Columbia,MO
-65052,26067,Osage Beach,MO,264,Columbia,MO
-65053,26039,Jefferson City,MO,264,Columbia,MO
-65054,26039,Jefferson City,MO,264,Columbia,MO
-65055,26039,Jefferson City,MO,264,Columbia,MO
-65058,26039,Jefferson City,MO,264,Columbia,MO
-65059,26039,Jefferson City,MO,264,Columbia,MO
-65061,26039,Jefferson City,MO,264,Columbia,MO
-65062,26082,St. Louis,MO,273,St. Louis,MO
-65063,26039,Jefferson City,MO,264,Columbia,MO
-65064,26039,Jefferson City,MO,264,Columbia,MO
-65065,26067,Osage Beach,MO,264,Columbia,MO
-65066,26082,St. Louis,MO,273,St. Louis,MO
-65067,26021,Columbia,MO,264,Columbia,MO
-65068,26021,Columbia,MO,264,Columbia,MO
-65069,26021,Columbia,MO,264,Columbia,MO
-65072,26039,Jefferson City,MO,264,Columbia,MO
-65074,26039,Jefferson City,MO,264,Columbia,MO
-65075,26039,Jefferson City,MO,264,Columbia,MO
-65076,26039,Jefferson City,MO,264,Columbia,MO
-65077,26021,Columbia,MO,264,Columbia,MO
-65078,26039,Jefferson City,MO,264,Columbia,MO
-65079,26067,Osage Beach,MO,264,Columbia,MO
-65080,26039,Jefferson City,MO,264,Columbia,MO
-65081,26039,Jefferson City,MO,264,Columbia,MO
-65082,26039,Jefferson City,MO,264,Columbia,MO
-65083,26039,Jefferson City,MO,264,Columbia,MO
-65084,26039,Jefferson City,MO,264,Columbia,MO
-65085,26039,Jefferson City,MO,264,Columbia,MO
-65101,26039,Jefferson City,MO,264,Columbia,MO
-65102,26039,Jefferson City,MO,264,Columbia,MO
-65103,26039,Jefferson City,MO,264,Columbia,MO
-65104,26039,Jefferson City,MO,264,Columbia,MO
-65105,26039,Jefferson City,MO,264,Columbia,MO
-65106,26039,Jefferson City,MO,264,Columbia,MO
-65107,26039,Jefferson City,MO,264,Columbia,MO
-65108,26039,Jefferson City,MO,264,Columbia,MO
-65109,26039,Jefferson City,MO,264,Columbia,MO
-65110,26039,Jefferson City,MO,264,Columbia,MO
-65111,26039,Jefferson City,MO,264,Columbia,MO
-65201,26021,Columbia,MO,264,Columbia,MO
-65202,26021,Columbia,MO,264,Columbia,MO
-65203,26021,Columbia,MO,264,Columbia,MO
-65205,26021,Columbia,MO,264,Columbia,MO
-65211,26021,Columbia,MO,264,Columbia,MO
-65212,26021,Columbia,MO,264,Columbia,MO
-65215,26021,Columbia,MO,264,Columbia,MO
-65216,26021,Columbia,MO,264,Columbia,MO
-65217,26021,Columbia,MO,264,Columbia,MO
-65218,26021,Columbia,MO,264,Columbia,MO
-65230,26021,Columbia,MO,264,Columbia,MO
-65231,26059,Mexico,MO,264,Columbia,MO
-65232,26059,Mexico,MO,264,Columbia,MO
-65233,26021,Columbia,MO,264,Columbia,MO
-65236,26021,Columbia,MO,264,Columbia,MO
-65237,26021,Columbia,MO,264,Columbia,MO
-65239,26021,Columbia,MO,264,Columbia,MO
-65240,26021,Columbia,MO,264,Columbia,MO
-65243,26021,Columbia,MO,264,Columbia,MO
-65244,26021,Columbia,MO,264,Columbia,MO
-65246,26021,Columbia,MO,264,Columbia,MO
-65247,26021,Columbia,MO,264,Columbia,MO
-65248,26021,Columbia,MO,264,Columbia,MO
-65250,26021,Columbia,MO,264,Columbia,MO
-65251,26021,Columbia,MO,264,Columbia,MO
-65254,26021,Columbia,MO,264,Columbia,MO
-65255,26021,Columbia,MO,264,Columbia,MO
-65256,26021,Columbia,MO,264,Columbia,MO
-65257,26021,Columbia,MO,264,Columbia,MO
-65258,26021,Columbia,MO,264,Columbia,MO
-65259,26021,Columbia,MO,264,Columbia,MO
-65260,26021,Columbia,MO,264,Columbia,MO
-65261,26021,Columbia,MO,264,Columbia,MO
-65262,26021,Columbia,MO,264,Columbia,MO
-65263,26021,Columbia,MO,264,Columbia,MO
-65264,26059,Mexico,MO,264,Columbia,MO
-65265,26059,Mexico,MO,264,Columbia,MO
-65270,26021,Columbia,MO,264,Columbia,MO
-65274,26021,Columbia,MO,264,Columbia,MO
-65275,26059,Mexico,MO,264,Columbia,MO
-65276,26021,Columbia,MO,264,Columbia,MO
-65278,26021,Columbia,MO,264,Columbia,MO
-65279,26021,Columbia,MO,264,Columbia,MO
-65280,26059,Mexico,MO,264,Columbia,MO
-65281,26021,Columbia,MO,264,Columbia,MO
-65282,26059,Mexico,MO,264,Columbia,MO
-65283,26059,Mexico,MO,264,Columbia,MO
-65284,26021,Columbia,MO,264,Columbia,MO
-65285,26059,Mexico,MO,264,Columbia,MO
-65286,26021,Columbia,MO,264,Columbia,MO
-65287,26021,Columbia,MO,264,Columbia,MO
-65299,26021,Columbia,MO,264,Columbia,MO
-65301,26076,Sedalia,MO,264,Columbia,MO
-65302,26076,Sedalia,MO,264,Columbia,MO
-65305,26091,Warrensburg,MO,268,Kansas City,MO
-65320,26056,Marshall,MO,264,Columbia,MO
-65321,26056,Marshall,MO,264,Columbia,MO
-65322,26021,Columbia,MO,264,Columbia,MO
-65323,26020,Clinton,MO,268,Kansas City,MO
-65324,26067,Osage Beach,MO,264,Columbia,MO
-65325,26076,Sedalia,MO,264,Columbia,MO
-65326,26020,Clinton,MO,268,Kansas City,MO
-65327,26056,Marshall,MO,264,Columbia,MO
-65329,26076,Sedalia,MO,264,Columbia,MO
-65330,26056,Marshall,MO,264,Columbia,MO
-65332,26076,Sedalia,MO,264,Columbia,MO
-65333,26076,Sedalia,MO,264,Columbia,MO
-65334,26076,Sedalia,MO,264,Columbia,MO
-65335,26076,Sedalia,MO,264,Columbia,MO
-65336,26091,Warrensburg,MO,268,Kansas City,MO
-65337,26076,Sedalia,MO,264,Columbia,MO
-65338,26020,Clinton,MO,268,Kansas City,MO
-65339,26056,Marshall,MO,264,Columbia,MO
-65340,26056,Marshall,MO,264,Columbia,MO
-65344,26056,Marshall,MO,264,Columbia,MO
-65345,26076,Sedalia,MO,264,Columbia,MO
-65347,26021,Columbia,MO,264,Columbia,MO
-65348,26076,Sedalia,MO,264,Columbia,MO
-65349,26056,Marshall,MO,264,Columbia,MO
-65350,26076,Sedalia,MO,264,Columbia,MO
-65351,26056,Marshall,MO,264,Columbia,MO
-65354,26076,Sedalia,MO,264,Columbia,MO
-65355,26020,Clinton,MO,268,Kansas City,MO
-65360,26020,Clinton,MO,268,Kansas City,MO
-65401,26074,Rolla,MO,273,St. Louis,MO
-65402,26074,Rolla,MO,273,St. Louis,MO
-65409,26074,Rolla,MO,273,St. Louis,MO
-65436,26037,Houston,MO,270,Springfield,MO
-65438,26079,Springfield,MO,270,Springfield,MO
-65439,26075,Salem,MO,273,St. Louis,MO
-65440,26075,Salem,MO,273,St. Louis,MO
-65441,26082,St. Louis,MO,273,St. Louis,MO
-65443,26039,Jefferson City,MO,264,Columbia,MO
-65444,26037,Houston,MO,270,Springfield,MO
-65446,26074,Rolla,MO,273,St. Louis,MO
-65449,26074,Rolla,MO,273,St. Louis,MO
-65452,26074,Rolla,MO,273,St. Louis,MO
-65453,26074,Rolla,MO,273,St. Louis,MO
-65456,26074,Rolla,MO,273,St. Louis,MO
-65457,26074,Rolla,MO,273,St. Louis,MO
-65459,26074,Rolla,MO,273,St. Louis,MO
-65461,26074,Rolla,MO,273,St. Louis,MO
-65462,26074,Rolla,MO,273,St. Louis,MO
-65463,26079,Springfield,MO,270,Springfield,MO
-65464,26037,Houston,MO,270,Springfield,MO
-65466,26079,Springfield,MO,270,Springfield,MO
-65468,26079,Springfield,MO,270,Springfield,MO
-65470,26079,Springfield,MO,270,Springfield,MO
-65473,26074,Rolla,MO,273,St. Louis,MO
-65479,26079,Springfield,MO,270,Springfield,MO
-65483,26037,Houston,MO,270,Springfield,MO
-65484,26079,Springfield,MO,270,Springfield,MO
-65486,26039,Jefferson City,MO,264,Columbia,MO
-65501,26075,Salem,MO,273,St. Louis,MO
-65529,26074,Rolla,MO,273,St. Louis,MO
-65532,26074,Rolla,MO,273,St. Louis,MO
-65534,26074,Rolla,MO,273,St. Louis,MO
-65535,26074,Rolla,MO,273,St. Louis,MO
-65536,26079,Springfield,MO,270,Springfield,MO
-65541,26074,Rolla,MO,273,St. Louis,MO
-65542,26037,Houston,MO,270,Springfield,MO
-65543,26079,Springfield,MO,270,Springfield,MO
-65546,26079,Springfield,MO,270,Springfield,MO
-65548,26079,Springfield,MO,270,Springfield,MO
-65550,26074,Rolla,MO,273,St. Louis,MO
-65552,26037,Houston,MO,270,Springfield,MO
-65555,26037,Houston,MO,270,Springfield,MO
-65556,26079,Springfield,MO,270,Springfield,MO
-65557,26037,Houston,MO,270,Springfield,MO
-65559,26074,Rolla,MO,273,St. Louis,MO
-65560,26075,Salem,MO,273,St. Louis,MO
-65564,26037,Houston,MO,270,Springfield,MO
-65565,26074,Rolla,MO,273,St. Louis,MO
-65566,26074,Rolla,MO,273,St. Louis,MO
-65567,26079,Springfield,MO,270,Springfield,MO
-65570,26037,Houston,MO,270,Springfield,MO
-65571,26079,Springfield,MO,270,Springfield,MO
-65580,26074,Rolla,MO,273,St. Louis,MO
-65582,26039,Jefferson City,MO,264,Columbia,MO
-65583,26074,Rolla,MO,273,St. Louis,MO
-65584,26074,Rolla,MO,273,St. Louis,MO
-65586,26074,Rolla,MO,273,St. Louis,MO
-65588,26079,Springfield,MO,270,Springfield,MO
-65589,26079,Springfield,MO,270,Springfield,MO
-65590,26079,Springfield,MO,270,Springfield,MO
-65591,26067,Osage Beach,MO,264,Columbia,MO
-65601,26079,Springfield,MO,270,Springfield,MO
-65603,26079,Springfield,MO,270,Springfield,MO
-65604,26079,Springfield,MO,270,Springfield,MO
-65605,26003,Aurora,MO,270,Springfield,MO
-65606,26093,West Plains,MO,270,Springfield,MO
-65607,26006,Bolivar,MO,270,Springfield,MO
-65608,26079,Springfield,MO,270,Springfield,MO
-65609,26093,West Plains,MO,270,Springfield,MO
-65610,26079,Springfield,MO,270,Springfield,MO
-65611,26009,Branson,MO,270,Springfield,MO
-65612,26079,Springfield,MO,270,Springfield,MO
-65613,26006,Bolivar,MO,270,Springfield,MO
-65614,26079,Springfield,MO,270,Springfield,MO
-65615,26009,Branson,MO,270,Springfield,MO
-65616,26009,Branson,MO,270,Springfield,MO
-65617,26079,Springfield,MO,270,Springfield,MO
-65618,26079,Springfield,MO,270,Springfield,MO
-65619,26079,Springfield,MO,270,Springfield,MO
-65620,26079,Springfield,MO,270,Springfield,MO
-65622,26079,Springfield,MO,270,Springfield,MO
-65623,26079,Springfield,MO,270,Springfield,MO
-65624,26079,Springfield,MO,270,Springfield,MO
-65625,26079,Springfield,MO,270,Springfield,MO
-65626,26093,West Plains,MO,270,Springfield,MO
-65627,26079,Springfield,MO,270,Springfield,MO
-65629,26079,Springfield,MO,270,Springfield,MO
-65630,26079,Springfield,MO,270,Springfield,MO
-65631,26079,Springfield,MO,270,Springfield,MO
-65632,26079,Springfield,MO,270,Springfield,MO
-65633,26079,Springfield,MO,270,Springfield,MO
-65634,26079,Springfield,MO,270,Springfield,MO
-65635,26079,Springfield,MO,270,Springfield,MO
-65636,26079,Springfield,MO,270,Springfield,MO
-65637,26093,West Plains,MO,270,Springfield,MO
-65638,26079,Springfield,MO,270,Springfield,MO
-65640,26006,Bolivar,MO,270,Springfield,MO
-65641,26079,Springfield,MO,270,Springfield,MO
-65644,26079,Springfield,MO,270,Springfield,MO
-65645,26079,Springfield,MO,270,Springfield,MO
-65646,26079,Springfield,MO,270,Springfield,MO
-65647,26079,Springfield,MO,270,Springfield,MO
-65648,26079,Springfield,MO,270,Springfield,MO
-65649,26079,Springfield,MO,270,Springfield,MO
-65650,26006,Bolivar,MO,270,Springfield,MO
-65652,26079,Springfield,MO,270,Springfield,MO
-65653,26009,Branson,MO,270,Springfield,MO
-65654,26079,Springfield,MO,270,Springfield,MO
-65655,4049,Mountain Home,AR,270,Springfield,MO
-65656,26079,Springfield,MO,270,Springfield,MO
-65657,26079,Springfield,MO,270,Springfield,MO
-65658,26079,Springfield,MO,270,Springfield,MO
-65660,26079,Springfield,MO,270,Springfield,MO
-65661,26079,Springfield,MO,270,Springfield,MO
-65662,26079,Springfield,MO,270,Springfield,MO
-65663,26079,Springfield,MO,270,Springfield,MO
-65664,26079,Springfield,MO,270,Springfield,MO
-65666,4049,Mountain Home,AR,270,Springfield,MO
-65667,26079,Springfield,MO,270,Springfield,MO
-65668,26006,Bolivar,MO,270,Springfield,MO
-65669,26079,Springfield,MO,270,Springfield,MO
-65672,26009,Branson,MO,270,Springfield,MO
-65673,26009,Branson,MO,270,Springfield,MO
-65674,26006,Bolivar,MO,270,Springfield,MO
-65675,26079,Springfield,MO,270,Springfield,MO
-65676,4049,Mountain Home,AR,270,Springfield,MO
-65679,26009,Branson,MO,270,Springfield,MO
-65680,26009,Branson,MO,270,Springfield,MO
-65681,26079,Springfield,MO,270,Springfield,MO
-65682,26079,Springfield,MO,270,Springfield,MO
-65685,26079,Springfield,MO,270,Springfield,MO
-65686,26079,Springfield,MO,270,Springfield,MO
-65688,26093,West Plains,MO,270,Springfield,MO
-65689,26079,Springfield,MO,270,Springfield,MO
-65690,26093,West Plains,MO,270,Springfield,MO
-65692,26093,West Plains,MO,270,Springfield,MO
-65702,26079,Springfield,MO,270,Springfield,MO
-65704,26079,Springfield,MO,270,Springfield,MO
-65705,26079,Springfield,MO,270,Springfield,MO
-65706,26079,Springfield,MO,270,Springfield,MO
-65707,26079,Springfield,MO,270,Springfield,MO
-65708,26079,Springfield,MO,270,Springfield,MO
-65710,26079,Springfield,MO,270,Springfield,MO
-65711,26079,Springfield,MO,270,Springfield,MO
-65712,26079,Springfield,MO,270,Springfield,MO
-65713,26079,Springfield,MO,270,Springfield,MO
-65714,26079,Springfield,MO,270,Springfield,MO
-65715,26079,Springfield,MO,270,Springfield,MO
-65717,26079,Springfield,MO,270,Springfield,MO
-65720,26079,Springfield,MO,270,Springfield,MO
-65721,26079,Springfield,MO,270,Springfield,MO
-65722,26079,Springfield,MO,270,Springfield,MO
-65723,26079,Springfield,MO,270,Springfield,MO
-65724,26079,Springfield,MO,270,Springfield,MO
-65725,26079,Springfield,MO,270,Springfield,MO
-65726,26009,Branson,MO,270,Springfield,MO
-65727,26079,Springfield,MO,270,Springfield,MO
-65728,26079,Springfield,MO,270,Springfield,MO
-65729,4049,Mountain Home,AR,270,Springfield,MO
-65730,26064,Neosho,MO,267,Joplin,MO
-65731,26009,Branson,MO,270,Springfield,MO
-65732,26079,Springfield,MO,270,Springfield,MO
-65733,26079,Springfield,MO,270,Springfield,MO
-65734,26079,Springfield,MO,270,Springfield,MO
-65735,26068,Osceola,MO,268,Kansas City,MO
-65737,26079,Springfield,MO,270,Springfield,MO
-65738,26079,Springfield,MO,270,Springfield,MO
-65739,26009,Branson,MO,270,Springfield,MO
-65740,26009,Branson,MO,270,Springfield,MO
-65741,26079,Springfield,MO,270,Springfield,MO
-65742,26079,Springfield,MO,270,Springfield,MO
-65744,26009,Branson,MO,270,Springfield,MO
-65745,4063,Rogers,AR,21,Springdale,AR
-65746,26079,Springfield,MO,270,Springfield,MO
-65747,26009,Branson,MO,270,Springfield,MO
-65752,26079,Springfield,MO,270,Springfield,MO
-65753,26079,Springfield,MO,270,Springfield,MO
-65754,26079,Springfield,MO,270,Springfield,MO
-65755,26079,Springfield,MO,270,Springfield,MO
-65756,26079,Springfield,MO,270,Springfield,MO
-65757,26079,Springfield,MO,270,Springfield,MO
-65759,26009,Branson,MO,270,Springfield,MO
-65760,4049,Mountain Home,AR,270,Springfield,MO
-65761,4049,Mountain Home,AR,270,Springfield,MO
-65762,26079,Springfield,MO,270,Springfield,MO
-65764,26079,Springfield,MO,270,Springfield,MO
-65765,26079,Springfield,MO,270,Springfield,MO
-65766,26093,West Plains,MO,270,Springfield,MO
-65767,26079,Springfield,MO,270,Springfield,MO
-65768,26079,Springfield,MO,270,Springfield,MO
-65769,26003,Aurora,MO,270,Springfield,MO
-65770,26079,Springfield,MO,270,Springfield,MO
-65771,26009,Branson,MO,270,Springfield,MO
-65772,26079,Springfield,MO,270,Springfield,MO
-65773,26079,Springfield,MO,270,Springfield,MO
-65774,26068,Osceola,MO,268,Kansas City,MO
-65775,26093,West Plains,MO,270,Springfield,MO
-65777,26093,West Plains,MO,270,Springfield,MO
-65778,26093,West Plains,MO,270,Springfield,MO
-65779,26006,Bolivar,MO,270,Springfield,MO
-65781,26079,Springfield,MO,270,Springfield,MO
-65783,26079,Springfield,MO,270,Springfield,MO
-65784,26093,West Plains,MO,270,Springfield,MO
-65785,26006,Bolivar,MO,270,Springfield,MO
-65786,26067,Osage Beach,MO,264,Columbia,MO
-65787,26067,Osage Beach,MO,264,Columbia,MO
-65788,26093,West Plains,MO,270,Springfield,MO
-65789,26093,West Plains,MO,270,Springfield,MO
-65790,26093,West Plains,MO,270,Springfield,MO
-65791,26093,West Plains,MO,270,Springfield,MO
-65793,26093,West Plains,MO,270,Springfield,MO
-65801,26079,Springfield,MO,270,Springfield,MO
-65802,26079,Springfield,MO,270,Springfield,MO
-65803,26079,Springfield,MO,270,Springfield,MO
-65804,26079,Springfield,MO,270,Springfield,MO
-65805,26079,Springfield,MO,270,Springfield,MO
-65806,26079,Springfield,MO,270,Springfield,MO
-65807,26079,Springfield,MO,270,Springfield,MO
-65808,26079,Springfield,MO,270,Springfield,MO
-65809,26079,Springfield,MO,270,Springfield,MO
-65810,26079,Springfield,MO,270,Springfield,MO
-65814,26079,Springfield,MO,270,Springfield,MO
-65817,26079,Springfield,MO,270,Springfield,MO
-65890,26079,Springfield,MO,270,Springfield,MO
-65897,26079,Springfield,MO,270,Springfield,MO
-65898,26079,Springfield,MO,270,Springfield,MO
-65899,26079,Springfield,MO,270,Springfield,MO
-66002,17005,Atchison,KS,268,Kansas City,MO
-66006,17064,Lawrence,KS,268,Kansas City,MO
-66007,17058,Kansas City,KS,268,Kansas City,MO
-66008,17005,Atchison,KS,268,Kansas City,MO
-66010,17031,Fort Scott,KS,267,Joplin,MO
-66012,17058,Kansas City,KS,268,Kansas City,MO
-66013,26041,Kansas City,MO,268,Kansas City,MO
-66014,17087,Olathe,KS,268,Kansas City,MO
-66015,17054,Iola,KS,201,Wichita,KS
-66016,17005,Atchison,KS,268,Kansas City,MO
-66017,26081,St. Joseph,MO,268,Kansas City,MO
-66018,17087,Olathe,KS,268,Kansas City,MO
-66020,17065,Leavenworth,KS,268,Kansas City,MO
-66021,17087,Olathe,KS,268,Kansas City,MO
-66023,17005,Atchison,KS,268,Kansas City,MO
-66024,26081,St. Joseph,MO,268,Kansas City,MO
-66025,17064,Lawrence,KS,268,Kansas City,MO
-66026,17087,Olathe,KS,268,Kansas City,MO
-66027,17065,Leavenworth,KS,268,Kansas City,MO
-66030,17087,Olathe,KS,268,Kansas City,MO
-66031,17087,Olathe,KS,268,Kansas City,MO
-66032,17034,Garnett,KS,268,Kansas City,MO
-66033,17034,Garnett,KS,268,Kansas City,MO
-66035,17044,Hiawatha,KS,200,Topeka,KS
-66036,17087,Olathe,KS,268,Kansas City,MO
-66039,17054,Iola,KS,201,Wichita,KS
-66040,17087,Olathe,KS,268,Kansas City,MO
-66041,17005,Atchison,KS,268,Kansas City,MO
-66042,17087,Olathe,KS,268,Kansas City,MO
-66043,17065,Leavenworth,KS,268,Kansas City,MO
-66044,17064,Lawrence,KS,268,Kansas City,MO
-66045,17064,Lawrence,KS,268,Kansas City,MO
-66046,17064,Lawrence,KS,268,Kansas City,MO
-66047,17064,Lawrence,KS,268,Kansas City,MO
-66048,17065,Leavenworth,KS,268,Kansas City,MO
-66049,17064,Lawrence,KS,268,Kansas City,MO
-66050,17115,Topeka,KS,200,Topeka,KS
-66051,17087,Olathe,KS,268,Kansas City,MO
-66052,17058,Kansas City,KS,268,Kansas City,MO
-66053,17087,Olathe,KS,268,Kansas City,MO
-66054,17064,Lawrence,KS,268,Kansas City,MO
-66056,17031,Fort Scott,KS,267,Joplin,MO
-66058,17005,Atchison,KS,268,Kansas City,MO
-66060,17115,Topeka,KS,200,Topeka,KS
-66061,17087,Olathe,KS,268,Kansas City,MO
-66062,17087,Olathe,KS,268,Kansas City,MO
-66063,17087,Olathe,KS,268,Kansas City,MO
-66064,17087,Olathe,KS,268,Kansas City,MO
-66066,17064,Lawrence,KS,268,Kansas City,MO
-66067,17091,Ottawa,KS,268,Kansas City,MO
-66070,17115,Topeka,KS,200,Topeka,KS
-66071,17087,Olathe,KS,268,Kansas City,MO
-66072,17087,Olathe,KS,268,Kansas City,MO
-66073,17115,Topeka,KS,200,Topeka,KS
-66075,17031,Fort Scott,KS,267,Joplin,MO
-66076,17091,Ottawa,KS,268,Kansas City,MO
-66078,17091,Ottawa,KS,268,Kansas City,MO
-66079,17087,Olathe,KS,268,Kansas City,MO
-66080,17034,Garnett,KS,268,Kansas City,MO
-66083,17087,Olathe,KS,268,Kansas City,MO
-66085,26041,Kansas City,MO,268,Kansas City,MO
-66086,17058,Kansas City,KS,268,Kansas City,MO
-66087,26081,St. Joseph,MO,268,Kansas City,MO
-66088,17115,Topeka,KS,200,Topeka,KS
-66090,26081,St. Joseph,MO,268,Kansas City,MO
-66091,17034,Garnett,KS,268,Kansas City,MO
-66092,17087,Olathe,KS,268,Kansas City,MO
-66093,17054,Iola,KS,201,Wichita,KS
-66094,17044,Hiawatha,KS,200,Topeka,KS
-66095,17091,Ottawa,KS,268,Kansas City,MO
-66097,17124,Winchester,KS,200,Topeka,KS
-66101,17058,Kansas City,KS,268,Kansas City,MO
-66102,17058,Kansas City,KS,268,Kansas City,MO
-66103,17058,Kansas City,KS,268,Kansas City,MO
-66104,17058,Kansas City,KS,268,Kansas City,MO
-66105,17058,Kansas City,KS,268,Kansas City,MO
-66106,17058,Kansas City,KS,268,Kansas City,MO
-66109,17058,Kansas City,KS,268,Kansas City,MO
-66110,17058,Kansas City,KS,268,Kansas City,MO
-66111,17058,Kansas City,KS,268,Kansas City,MO
-66112,17058,Kansas City,KS,268,Kansas City,MO
-66113,17058,Kansas City,KS,268,Kansas City,MO
-66115,17058,Kansas City,KS,268,Kansas City,MO
-66117,17058,Kansas City,KS,268,Kansas City,MO
-66118,26041,Kansas City,MO,268,Kansas City,MO
-66119,17058,Kansas City,KS,268,Kansas City,MO
-66160,17058,Kansas City,KS,268,Kansas City,MO
-66201,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66202,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66203,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66204,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66205,26041,Kansas City,MO,268,Kansas City,MO
-66206,26041,Kansas City,MO,268,Kansas City,MO
-66207,26041,Kansas City,MO,268,Kansas City,MO
-66208,26041,Kansas City,MO,268,Kansas City,MO
-66209,26041,Kansas City,MO,268,Kansas City,MO
-66210,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66211,26041,Kansas City,MO,268,Kansas City,MO
-66212,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66213,26041,Kansas City,MO,268,Kansas City,MO
-66214,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66215,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66216,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66217,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66218,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66219,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66220,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66221,17087,Olathe,KS,268,Kansas City,MO
-66222,26041,Kansas City,MO,268,Kansas City,MO
-66223,26041,Kansas City,MO,268,Kansas City,MO
-66224,26041,Kansas City,MO,268,Kansas City,MO
-66225,26041,Kansas City,MO,268,Kansas City,MO
-66226,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66227,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66250,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66251,26041,Kansas City,MO,268,Kansas City,MO
-66276,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66282,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66283,26041,Kansas City,MO,268,Kansas City,MO
-66285,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66286,17108,Shawnee Mission/Overland,KS,268,Kansas City,MO
-66401,17115,Topeka,KS,200,Topeka,KS
-66402,17115,Topeka,KS,200,Topeka,KS
-66403,17107,Seneca,KS,200,Topeka,KS
-66404,17107,Seneca,KS,200,Topeka,KS
-66406,17074,Marysville,KS,277,Lincoln,NE
-66407,17115,Topeka,KS,200,Topeka,KS
-66408,17102,Sabetha,KS,200,Topeka,KS
-66409,17115,Topeka,KS,200,Topeka,KS
-66411,17074,Marysville,KS,277,Lincoln,NE
-66412,17074,Marysville,KS,277,Lincoln,NE
-66413,17115,Topeka,KS,200,Topeka,KS
-66414,17115,Topeka,KS,200,Topeka,KS
-66415,17088,Onaga,KS,200,Topeka,KS
-66416,17088,Onaga,KS,200,Topeka,KS
-66417,17107,Seneca,KS,200,Topeka,KS
-66418,17115,Topeka,KS,200,Topeka,KS
-66419,17115,Topeka,KS,200,Topeka,KS
-66420,17115,Topeka,KS,200,Topeka,KS
-66422,17088,Onaga,KS,200,Topeka,KS
-66423,17115,Topeka,KS,200,Topeka,KS
-66424,17044,Hiawatha,KS,200,Topeka,KS
-66425,17102,Sabetha,KS,200,Topeka,KS
-66426,17122,Westmoreland,KS,200,Topeka,KS
-66427,17122,Westmoreland,KS,200,Topeka,KS
-66428,17115,Topeka,KS,200,Topeka,KS
-66429,17115,Topeka,KS,200,Topeka,KS
-66431,17115,Topeka,KS,200,Topeka,KS
-66432,17088,Onaga,KS,200,Topeka,KS
-66434,17044,Hiawatha,KS,200,Topeka,KS
-66436,17115,Topeka,KS,200,Topeka,KS
-66438,17074,Marysville,KS,277,Lincoln,NE
-66439,17049,Horton,KS,268,Kansas City,MO
-66440,17115,Topeka,KS,200,Topeka,KS
-66441,17057,Junction City,KS,200,Topeka,KS
-66442,17057,Junction City,KS,200,Topeka,KS
-66449,17071,Manhattan,KS,200,Topeka,KS
-66451,17115,Topeka,KS,200,Topeka,KS
-66501,17115,Topeka,KS,200,Topeka,KS
-66502,17071,Manhattan,KS,200,Topeka,KS
-66503,17071,Manhattan,KS,200,Topeka,KS
-66505,17071,Manhattan,KS,200,Topeka,KS
-66506,17071,Manhattan,KS,200,Topeka,KS
-66507,17115,Topeka,KS,200,Topeka,KS
-66508,17074,Marysville,KS,277,Lincoln,NE
-66509,17115,Topeka,KS,200,Topeka,KS
-66510,17115,Topeka,KS,200,Topeka,KS
-66512,17115,Topeka,KS,200,Topeka,KS
-66514,17057,Junction City,KS,200,Topeka,KS
-66515,17102,Sabetha,KS,200,Topeka,KS
-66516,17115,Topeka,KS,200,Topeka,KS
-66517,17071,Manhattan,KS,200,Topeka,KS
-66518,17074,Marysville,KS,277,Lincoln,NE
-66520,17071,Manhattan,KS,200,Topeka,KS
-66521,17088,Onaga,KS,200,Topeka,KS
-66522,17102,Sabetha,KS,200,Topeka,KS
-66523,17115,Topeka,KS,200,Topeka,KS
-66524,17115,Topeka,KS,200,Topeka,KS
-66526,17115,Topeka,KS,200,Topeka,KS
-66527,17115,Topeka,KS,200,Topeka,KS
-66528,17115,Topeka,KS,200,Topeka,KS
-66531,17071,Manhattan,KS,200,Topeka,KS
-66532,17044,Hiawatha,KS,200,Topeka,KS
-66533,17115,Topeka,KS,200,Topeka,KS
-66534,17102,Sabetha,KS,200,Topeka,KS
-66535,17071,Manhattan,KS,200,Topeka,KS
-66536,17115,Topeka,KS,200,Topeka,KS
-66537,17115,Topeka,KS,200,Topeka,KS
-66538,17107,Seneca,KS,200,Topeka,KS
-66539,17115,Topeka,KS,200,Topeka,KS
-66540,17088,Onaga,KS,200,Topeka,KS
-66541,17107,Seneca,KS,200,Topeka,KS
-66542,17115,Topeka,KS,200,Topeka,KS
-66543,17115,Topeka,KS,200,Topeka,KS
-66544,17088,Onaga,KS,200,Topeka,KS
-66546,17115,Topeka,KS,200,Topeka,KS
-66547,17119,Wamego,KS,200,Topeka,KS
-66548,17074,Marysville,KS,277,Lincoln,NE
-66549,17122,Westmoreland,KS,200,Topeka,KS
-66550,17115,Topeka,KS,200,Topeka,KS
-66552,17115,Topeka,KS,200,Topeka,KS
-66554,17071,Manhattan,KS,200,Topeka,KS
-66601,17115,Topeka,KS,200,Topeka,KS
-66603,17115,Topeka,KS,200,Topeka,KS
-66604,17115,Topeka,KS,200,Topeka,KS
-66605,17115,Topeka,KS,200,Topeka,KS
-66606,17115,Topeka,KS,200,Topeka,KS
-66607,17115,Topeka,KS,200,Topeka,KS
-66608,17115,Topeka,KS,200,Topeka,KS
-66609,17115,Topeka,KS,200,Topeka,KS
-66610,17115,Topeka,KS,200,Topeka,KS
-66611,17115,Topeka,KS,200,Topeka,KS
-66612,17115,Topeka,KS,200,Topeka,KS
-66614,17115,Topeka,KS,200,Topeka,KS
-66615,17115,Topeka,KS,200,Topeka,KS
-66616,17115,Topeka,KS,200,Topeka,KS
-66617,17115,Topeka,KS,200,Topeka,KS
-66618,17115,Topeka,KS,200,Topeka,KS
-66619,17115,Topeka,KS,200,Topeka,KS
-66620,17115,Topeka,KS,200,Topeka,KS
-66621,17115,Topeka,KS,200,Topeka,KS
-66622,17115,Topeka,KS,200,Topeka,KS
-66624,17115,Topeka,KS,200,Topeka,KS
-66625,17115,Topeka,KS,200,Topeka,KS
-66626,17115,Topeka,KS,200,Topeka,KS
-66629,17115,Topeka,KS,200,Topeka,KS
-66630,17115,Topeka,KS,200,Topeka,KS
-66636,17115,Topeka,KS,200,Topeka,KS
-66647,17115,Topeka,KS,200,Topeka,KS
-66667,17115,Topeka,KS,200,Topeka,KS
-66675,17115,Topeka,KS,200,Topeka,KS
-66683,17115,Topeka,KS,200,Topeka,KS
-66699,17115,Topeka,KS,200,Topeka,KS
-66701,17031,Fort Scott,KS,267,Joplin,MO
-66710,17032,Fredonia,KS,201,Wichita,KS
-66711,17031,Fort Scott,KS,267,Joplin,MO
-66712,17096,Pittsburg,KS,267,Joplin,MO
-66713,26040,Joplin,MO,267,Joplin,MO
-66714,17015,Chanute,KS,201,Wichita,KS
-66716,17031,Fort Scott,KS,267,Joplin,MO
-66717,17015,Chanute,KS,201,Wichita,KS
-66720,17015,Chanute,KS,201,Wichita,KS
-66724,17096,Pittsburg,KS,267,Joplin,MO
-66725,26040,Joplin,MO,267,Joplin,MO
-66728,26040,Joplin,MO,267,Joplin,MO
-66732,17031,Fort Scott,KS,267,Joplin,MO
-66733,17094,Parsons,KS,201,Wichita,KS
-66734,17035,Girard,KS,267,Joplin,MO
-66735,17096,Pittsburg,KS,267,Joplin,MO
-66736,17032,Fredonia,KS,201,Wichita,KS
-66738,17031,Fort Scott,KS,267,Joplin,MO
-66739,26040,Joplin,MO,267,Joplin,MO
-66740,17094,Parsons,KS,201,Wichita,KS
-66741,17031,Fort Scott,KS,267,Joplin,MO
-66742,17054,Iola,KS,201,Wichita,KS
-66743,17035,Girard,KS,267,Joplin,MO
-66746,17035,Girard,KS,267,Joplin,MO
-66748,17015,Chanute,KS,201,Wichita,KS
-66749,17054,Iola,KS,201,Wichita,KS
-66751,17054,Iola,KS,201,Wichita,KS
-66753,17096,Pittsburg,KS,267,Joplin,MO
-66754,17031,Fort Scott,KS,267,Joplin,MO
-66755,17054,Iola,KS,201,Wichita,KS
-66756,17096,Pittsburg,KS,267,Joplin,MO
-66757,17081,Neodesha,KS,201,Wichita,KS
-66758,17054,Iola,KS,201,Wichita,KS
-66760,17096,Pittsburg,KS,267,Joplin,MO
-66761,17054,Iola,KS,201,Wichita,KS
-66762,17096,Pittsburg,KS,267,Joplin,MO
-66763,17096,Pittsburg,KS,267,Joplin,MO
-66767,17031,Fort Scott,KS,267,Joplin,MO
-66769,17031,Fort Scott,KS,267,Joplin,MO
-66770,26040,Joplin,MO,267,Joplin,MO
-66771,17094,Parsons,KS,201,Wichita,KS
-66772,17015,Chanute,KS,201,Wichita,KS
-66773,26040,Joplin,MO,267,Joplin,MO
-66775,17015,Chanute,KS,201,Wichita,KS
-66776,17094,Parsons,KS,201,Wichita,KS
-66777,17030,Eureka,KS,201,Wichita,KS
-66778,26040,Joplin,MO,267,Joplin,MO
-66779,17031,Fort Scott,KS,267,Joplin,MO
-66780,17094,Parsons,KS,201,Wichita,KS
-66781,17096,Pittsburg,KS,267,Joplin,MO
-66782,26040,Joplin,MO,267,Joplin,MO
-66783,17054,Iola,KS,201,Wichita,KS
-66801,17029,Emporia,KS,200,Topeka,KS
-66830,17029,Emporia,KS,200,Topeka,KS
-66833,17029,Emporia,KS,200,Topeka,KS
-66834,17022,Council Grove,KS,200,Topeka,KS
-66835,17029,Emporia,KS,200,Topeka,KS
-66838,17043,Herington,KS,201,Wichita,KS
-66839,17012,Burlington,KS,200,Topeka,KS
-66840,17083,Newton,KS,201,Wichita,KS
-66842,17025,El Dorado,KS,201,Wichita,KS
-66843,17029,Emporia,KS,200,Topeka,KS
-66845,17029,Emporia,KS,200,Topeka,KS
-66846,17022,Council Grove,KS,200,Topeka,KS
-66849,17022,Council Grove,KS,200,Topeka,KS
-66850,17029,Emporia,KS,200,Topeka,KS
-66851,17073,Marion,KS,201,Wichita,KS
-66852,17029,Emporia,KS,200,Topeka,KS
-66853,17030,Eureka,KS,201,Wichita,KS
-66854,17029,Emporia,KS,200,Topeka,KS
-66855,17029,Emporia,KS,200,Topeka,KS
-66856,17029,Emporia,KS,200,Topeka,KS
-66857,17012,Burlington,KS,200,Topeka,KS
-66858,17073,Marion,KS,201,Wichita,KS
-66859,17043,Herington,KS,201,Wichita,KS
-66860,17029,Emporia,KS,200,Topeka,KS
-66861,17073,Marion,KS,201,Wichita,KS
-66862,17029,Emporia,KS,200,Topeka,KS
-66863,17030,Eureka,KS,201,Wichita,KS
-66864,17029,Emporia,KS,200,Topeka,KS
-66865,17029,Emporia,KS,200,Topeka,KS
-66866,17083,Newton,KS,201,Wichita,KS
-66868,17029,Emporia,KS,200,Topeka,KS
-66869,17029,Emporia,KS,200,Topeka,KS
-66870,17030,Eureka,KS,201,Wichita,KS
-66871,17029,Emporia,KS,200,Topeka,KS
-66872,17022,Council Grove,KS,200,Topeka,KS
-66873,17022,Council Grove,KS,200,Topeka,KS
-66901,17021,Concordia,KS,201,Wichita,KS
-66930,17021,Concordia,KS,201,Wichita,KS
-66932,17109,Smith Center,KS,201,Wichita,KS
-66933,17074,Marysville,KS,277,Lincoln,NE
-66935,17010,Belleville,KS,201,Wichita,KS
-66936,28072,Superior,NE,277,Lincoln,NE
-66937,17016,Clay Center,KS,200,Topeka,KS
-66938,17021,Concordia,KS,201,Wichita,KS
-66939,17010,Belleville,KS,201,Wichita,KS
-66940,17010,Belleville,KS,201,Wichita,KS
-66941,17109,Smith Center,KS,201,Wichita,KS
-66942,17010,Belleville,KS,201,Wichita,KS
-66943,17074,Marysville,KS,277,Lincoln,NE
-66944,17010,Belleville,KS,201,Wichita,KS
-66945,17040,Hanover,KS,277,Lincoln,NE
-66946,28024,Fairbury,NE,277,Lincoln,NE
-66948,17021,Concordia,KS,201,Wichita,KS
-66949,17011,Beloit,KS,201,Wichita,KS
-66951,17109,Smith Center,KS,201,Wichita,KS
-66952,17109,Smith Center,KS,201,Wichita,KS
-66953,17016,Clay Center,KS,200,Topeka,KS
-66955,28024,Fairbury,NE,277,Lincoln,NE
-66956,17011,Beloit,KS,201,Wichita,KS
-66958,17120,Washington,KS,277,Lincoln,NE
-66959,17010,Belleville,KS,201,Wichita,KS
-66960,17010,Belleville,KS,201,Wichita,KS
-66961,17010,Belleville,KS,201,Wichita,KS
-66962,17016,Clay Center,KS,200,Topeka,KS
-66963,17011,Beloit,KS,201,Wichita,KS
-66964,17010,Belleville,KS,201,Wichita,KS
-66966,17010,Belleville,KS,201,Wichita,KS
-66967,17109,Smith Center,KS,201,Wichita,KS
-66968,17120,Washington,KS,277,Lincoln,NE
-66970,28072,Superior,NE,277,Lincoln,NE
-67001,17123,Wichita,KS,201,Wichita,KS
-67002,17123,Wichita,KS,201,Wichita,KS
-67003,17002,Anthony,KS,201,Wichita,KS
-67004,17123,Wichita,KS,201,Wichita,KS
-67005,17003,Arkansas City,KS,201,Wichita,KS
-67008,17123,Wichita,KS,201,Wichita,KS
-67009,17041,Harper,KS,201,Wichita,KS
-67010,17123,Wichita,KS,201,Wichita,KS
-67012,17025,El Dorado,KS,201,Wichita,KS
-67013,17123,Wichita,KS,201,Wichita,KS
-67016,17123,Wichita,KS,201,Wichita,KS
-67017,17123,Wichita,KS,201,Wichita,KS
-67018,17002,Anthony,KS,201,Wichita,KS
-67019,17125,Winfield,KS,201,Wichita,KS
-67020,17039,Halstead,KS,201,Wichita,KS
-67021,17098,Pratt,KS,201,Wichita,KS
-67022,17013,Caldwell,KS,201,Wichita,KS
-67023,17125,Winfield,KS,201,Wichita,KS
-67024,17014,Cedar Vale,KS,201,Wichita,KS
-67025,17123,Wichita,KS,201,Wichita,KS
-67026,17123,Wichita,KS,201,Wichita,KS
-67028,17098,Pratt,KS,201,Wichita,KS
-67029,17019,Coldwater,KS,201,Wichita,KS
-67030,17123,Wichita,KS,201,Wichita,KS
-67031,17123,Wichita,KS,201,Wichita,KS
-67035,17098,Pratt,KS,201,Wichita,KS
-67036,17123,Wichita,KS,201,Wichita,KS
-67037,17123,Wichita,KS,201,Wichita,KS
-67038,17125,Winfield,KS,201,Wichita,KS
-67039,17123,Wichita,KS,201,Wichita,KS
-67041,17083,Newton,KS,201,Wichita,KS
-67042,17025,El Dorado,KS,201,Wichita,KS
-67045,17030,Eureka,KS,201,Wichita,KS
-67047,17032,Fredonia,KS,201,Wichita,KS
-67049,17123,Wichita,KS,201,Wichita,KS
-67050,17123,Wichita,KS,201,Wichita,KS
-67051,17003,Arkansas City,KS,201,Wichita,KS
-67052,17123,Wichita,KS,201,Wichita,KS
-67053,17083,Newton,KS,201,Wichita,KS
-67054,17038,Greensburg,KS,201,Wichita,KS
-67055,17123,Wichita,KS,201,Wichita,KS
-67056,17039,Halstead,KS,201,Wichita,KS
-67057,17061,Kiowa,KS,201,Wichita,KS
-67058,17041,Harper,KS,201,Wichita,KS
-67059,17038,Greensburg,KS,201,Wichita,KS
-67060,17123,Wichita,KS,201,Wichita,KS
-67061,17061,Kiowa,KS,201,Wichita,KS
-67062,17083,Newton,KS,201,Wichita,KS
-67063,17046,Hillsboro,KS,201,Wichita,KS
-67065,17077,Medicine Lodge,KS,201,Wichita,KS
-67066,17098,Pratt,KS,201,Wichita,KS
-67067,17123,Wichita,KS,201,Wichita,KS
-67068,17059,Kingman,KS,201,Wichita,KS
-67070,17061,Kiowa,KS,201,Wichita,KS
-67071,17077,Medicine Lodge,KS,201,Wichita,KS
-67072,17025,El Dorado,KS,201,Wichita,KS
-67073,17046,Hillsboro,KS,201,Wichita,KS
-67074,17025,El Dorado,KS,201,Wichita,KS
-67101,17123,Wichita,KS,201,Wichita,KS
-67102,17003,Arkansas City,KS,201,Wichita,KS
-67103,17123,Wichita,KS,201,Wichita,KS
-67104,17077,Medicine Lodge,KS,201,Wichita,KS
-67105,17123,Wichita,KS,201,Wichita,KS
-67106,17123,Wichita,KS,201,Wichita,KS
-67107,17080,Moundridge,KS,201,Wichita,KS
-67108,17123,Wichita,KS,201,Wichita,KS
-67109,17038,Greensburg,KS,201,Wichita,KS
-67110,17123,Wichita,KS,201,Wichita,KS
-67111,17059,Kingman,KS,201,Wichita,KS
-67112,17077,Medicine Lodge,KS,201,Wichita,KS
-67114,17083,Newton,KS,201,Wichita,KS
-67117,17083,Newton,KS,201,Wichita,KS
-67118,17123,Wichita,KS,201,Wichita,KS
-67119,17121,Wellington,KS,201,Wichita,KS
-67120,17123,Wichita,KS,201,Wichita,KS
-67122,17030,Eureka,KS,201,Wichita,KS
-67123,17025,El Dorado,KS,201,Wichita,KS
-67124,17098,Pratt,KS,201,Wichita,KS
-67127,17019,Coldwater,KS,201,Wichita,KS
-67131,17123,Wichita,KS,201,Wichita,KS
-67132,17025,El Dorado,KS,201,Wichita,KS
-67133,17123,Wichita,KS,201,Wichita,KS
-67134,17098,Pratt,KS,201,Wichita,KS
-67135,17123,Wichita,KS,201,Wichita,KS
-67137,17030,Eureka,KS,201,Wichita,KS
-67138,17077,Medicine Lodge,KS,201,Wichita,KS
-67140,17121,Wellington,KS,201,Wichita,KS
-67142,17059,Kingman,KS,201,Wichita,KS
-67143,17077,Medicine Lodge,KS,201,Wichita,KS
-67144,17123,Wichita,KS,201,Wichita,KS
-67146,17123,Wichita,KS,201,Wichita,KS
-67147,17123,Wichita,KS,201,Wichita,KS
-67149,17123,Wichita,KS,201,Wichita,KS
-67150,17002,Anthony,KS,201,Wichita,KS
-67151,17083,Newton,KS,201,Wichita,KS
-67152,17121,Wellington,KS,201,Wichita,KS
-67154,17083,Newton,KS,201,Wichita,KS
-67155,17019,Coldwater,KS,201,Wichita,KS
-67156,17125,Winfield,KS,201,Wichita,KS
-67159,17059,Kingman,KS,201,Wichita,KS
-67201,17123,Wichita,KS,201,Wichita,KS
-67202,17123,Wichita,KS,201,Wichita,KS
-67203,17123,Wichita,KS,201,Wichita,KS
-67204,17123,Wichita,KS,201,Wichita,KS
-67205,17123,Wichita,KS,201,Wichita,KS
-67206,17123,Wichita,KS,201,Wichita,KS
-67207,17123,Wichita,KS,201,Wichita,KS
-67208,17123,Wichita,KS,201,Wichita,KS
-67209,17123,Wichita,KS,201,Wichita,KS
-67210,17123,Wichita,KS,201,Wichita,KS
-67211,17123,Wichita,KS,201,Wichita,KS
-67212,17123,Wichita,KS,201,Wichita,KS
-67213,17123,Wichita,KS,201,Wichita,KS
-67214,17123,Wichita,KS,201,Wichita,KS
-67215,17123,Wichita,KS,201,Wichita,KS
-67216,17123,Wichita,KS,201,Wichita,KS
-67217,17123,Wichita,KS,201,Wichita,KS
-67218,17123,Wichita,KS,201,Wichita,KS
-67219,17123,Wichita,KS,201,Wichita,KS
-67220,17123,Wichita,KS,201,Wichita,KS
-67221,17123,Wichita,KS,201,Wichita,KS
-67223,17123,Wichita,KS,201,Wichita,KS
-67226,17123,Wichita,KS,201,Wichita,KS
-67227,17123,Wichita,KS,201,Wichita,KS
-67228,17123,Wichita,KS,201,Wichita,KS
-67230,17123,Wichita,KS,201,Wichita,KS
-67232,17123,Wichita,KS,201,Wichita,KS
-67235,17123,Wichita,KS,201,Wichita,KS
-67260,17123,Wichita,KS,201,Wichita,KS
-67275,17123,Wichita,KS,201,Wichita,KS
-67276,17123,Wichita,KS,201,Wichita,KS
-67277,17123,Wichita,KS,201,Wichita,KS
-67278,17123,Wichita,KS,201,Wichita,KS
-67301,17053,Independence,KS,201,Wichita,KS
-67330,17094,Parsons,KS,201,Wichita,KS
-67332,17094,Parsons,KS,201,Wichita,KS
-67333,37008,Bartlesville,OK,340,Tulsa,OK
-67334,17106,Sedan,KS,340,Tulsa,OK
-67335,17053,Independence,KS,201,Wichita,KS
-67336,26040,Joplin,MO,267,Joplin,MO
-67337,17017,Coffeyville,KS,340,Tulsa,OK
-67340,17017,Coffeyville,KS,340,Tulsa,OK
-67341,17094,Parsons,KS,201,Wichita,KS
-67342,17017,Coffeyville,KS,340,Tulsa,OK
-67344,17053,Independence,KS,201,Wichita,KS
-67345,17053,Independence,KS,201,Wichita,KS
-67346,17125,Winfield,KS,201,Wichita,KS
-67347,37008,Bartlesville,OK,340,Tulsa,OK
-67349,17030,Eureka,KS,201,Wichita,KS
-67351,17017,Coffeyville,KS,340,Tulsa,OK
-67352,17053,Independence,KS,201,Wichita,KS
-67353,17053,Independence,KS,201,Wichita,KS
-67354,17094,Parsons,KS,201,Wichita,KS
-67355,37008,Bartlesville,OK,340,Tulsa,OK
-67356,17094,Parsons,KS,201,Wichita,KS
-67357,17094,Parsons,KS,201,Wichita,KS
-67360,17106,Sedan,KS,340,Tulsa,OK
-67361,17106,Sedan,KS,340,Tulsa,OK
-67363,17053,Independence,KS,201,Wichita,KS
-67364,37008,Bartlesville,OK,340,Tulsa,OK
-67401,17103,Salina,KS,201,Wichita,KS
-67402,17103,Salina,KS,201,Wichita,KS
-67410,17001,Abilene,KS,200,Topeka,KS
-67416,17103,Salina,KS,201,Wichita,KS
-67417,17021,Concordia,KS,201,Wichita,KS
-67418,17078,Minneapolis,KS,201,Wichita,KS
-67420,17011,Beloit,KS,201,Wichita,KS
-67422,17103,Salina,KS,201,Wichita,KS
-67423,17103,Salina,KS,201,Wichita,KS
-67425,17103,Salina,KS,201,Wichita,KS
-67427,17037,Great Bend,KS,201,Wichita,KS
-67428,17075,McPherson,KS,201,Wichita,KS
-67430,17011,Beloit,KS,201,Wichita,KS
-67431,17001,Abilene,KS,200,Topeka,KS
-67432,17016,Clay Center,KS,200,Topeka,KS
-67436,17078,Minneapolis,KS,201,Wichita,KS
-67437,17011,Beloit,KS,201,Wichita,KS
-67438,17046,Hillsboro,KS,201,Wichita,KS
-67439,17028,Ellsworth,KS,201,Wichita,KS
-67441,17001,Abilene,KS,200,Topeka,KS
-67442,17103,Salina,KS,201,Wichita,KS
-67443,17075,McPherson,KS,201,Wichita,KS
-67444,17028,Ellsworth,KS,201,Wichita,KS
-67445,17021,Concordia,KS,201,Wichita,KS
-67446,17011,Beloit,KS,201,Wichita,KS
-67447,17016,Clay Center,KS,200,Topeka,KS
-67448,17103,Salina,KS,201,Wichita,KS
-67449,17043,Herington,KS,201,Wichita,KS
-67450,17028,Ellsworth,KS,201,Wichita,KS
-67451,17043,Herington,KS,201,Wichita,KS
-67452,17011,Beloit,KS,201,Wichita,KS
-67454,17028,Ellsworth,KS,201,Wichita,KS
-67455,17068,Lincoln,KS,201,Wichita,KS
-67456,17069,Lindsborg,KS,201,Wichita,KS
-67457,17070,Lyons,KS,201,Wichita,KS
-67458,17103,Salina,KS,201,Wichita,KS
-67459,17028,Ellsworth,KS,201,Wichita,KS
-67460,17075,McPherson,KS,201,Wichita,KS
-67464,17069,Lindsborg,KS,201,Wichita,KS
-67466,17078,Minneapolis,KS,201,Wichita,KS
-67467,17078,Minneapolis,KS,201,Wichita,KS
-67468,17016,Clay Center,KS,200,Topeka,KS
-67470,17103,Salina,KS,201,Wichita,KS
-67473,17089,Osborne,KS,201,Wichita,KS
-67474,17109,Smith Center,KS,201,Wichita,KS
-67475,17043,Herington,KS,201,Wichita,KS
-67476,17075,McPherson,KS,201,Wichita,KS
-67478,17011,Beloit,KS,201,Wichita,KS
-67480,17103,Salina,KS,201,Wichita,KS
-67481,17068,Lincoln,KS,201,Wichita,KS
-67482,17001,Abilene,KS,200,Topeka,KS
-67483,17046,Hillsboro,KS,201,Wichita,KS
-67484,17103,Salina,KS,201,Wichita,KS
-67485,17011,Beloit,KS,201,Wichita,KS
-67487,17016,Clay Center,KS,200,Topeka,KS
-67490,17028,Ellsworth,KS,201,Wichita,KS
-67491,17075,McPherson,KS,201,Wichita,KS
-67492,17043,Herington,KS,201,Wichita,KS
-67501,17052,Hutchinson,KS,201,Wichita,KS
-67502,17052,Hutchinson,KS,201,Wichita,KS
-67504,17052,Hutchinson,KS,201,Wichita,KS
-67505,17052,Hutchinson,KS,201,Wichita,KS
-67510,17052,Hutchinson,KS,201,Wichita,KS
-67511,17037,Great Bend,KS,201,Wichita,KS
-67512,17052,Hutchinson,KS,201,Wichita,KS
-67513,17062,La Crosse,KS,201,Wichita,KS
-67514,17052,Hutchinson,KS,201,Wichita,KS
-67515,17100,Ransom,KS,201,Wichita,KS
-67516,17082,Ness City,KS,201,Wichita,KS
-67518,17082,Ness City,KS,201,Wichita,KS
-67519,17037,Great Bend,KS,201,Wichita,KS
-67520,17062,La Crosse,KS,201,Wichita,KS
-67521,17100,Ransom,KS,201,Wichita,KS
-67522,17052,Hutchinson,KS,201,Wichita,KS
-67523,17037,Great Bend,KS,201,Wichita,KS
-67524,17070,Lyons,KS,201,Wichita,KS
-67525,17037,Great Bend,KS,201,Wichita,KS
-67526,17027,Ellinwood,KS,201,Wichita,KS
-67529,17037,Great Bend,KS,201,Wichita,KS
-67530,17037,Great Bend,KS,201,Wichita,KS
-67543,17052,Hutchinson,KS,201,Wichita,KS
-67544,17047,Hoisington,KS,201,Wichita,KS
-67545,17052,Hutchinson,KS,201,Wichita,KS
-67546,17052,Hutchinson,KS,201,Wichita,KS
-67547,17060,Kinsley,KS,201,Wichita,KS
-67548,17062,La Crosse,KS,201,Wichita,KS
-67550,17037,Great Bend,KS,201,Wichita,KS
-67552,17060,Kinsley,KS,201,Wichita,KS
-67553,17042,Hays,KS,201,Wichita,KS
-67554,17070,Lyons,KS,201,Wichita,KS
-67556,17042,Hays,KS,201,Wichita,KS
-67557,17113,Stafford,KS,201,Wichita,KS
-67559,17062,La Crosse,KS,201,Wichita,KS
-67560,17082,Ness City,KS,201,Wichita,KS
-67561,17052,Hutchinson,KS,201,Wichita,KS
-67563,17060,Kinsley,KS,201,Wichita,KS
-67564,17047,Hoisington,KS,201,Wichita,KS
-67565,17047,Hoisington,KS,201,Wichita,KS
-67566,17052,Hutchinson,KS,201,Wichita,KS
-67567,17037,Great Bend,KS,201,Wichita,KS
-67568,17052,Hutchinson,KS,201,Wichita,KS
-67570,17052,Hutchinson,KS,201,Wichita,KS
-67572,17100,Ransom,KS,201,Wichita,KS
-67573,17052,Hutchinson,KS,201,Wichita,KS
-67574,17037,Great Bend,KS,201,Wichita,KS
-67575,17062,La Crosse,KS,201,Wichita,KS
-67576,17113,Stafford,KS,201,Wichita,KS
-67578,17113,Stafford,KS,201,Wichita,KS
-67579,17070,Lyons,KS,201,Wichita,KS
-67581,17052,Hutchinson,KS,201,Wichita,KS
-67583,17052,Hutchinson,KS,201,Wichita,KS
-67584,17100,Ransom,KS,201,Wichita,KS
-67585,17052,Hutchinson,KS,201,Wichita,KS
-67601,17042,Hays,KS,201,Wichita,KS
-67621,17095,Phillipsburg,KS,201,Wichita,KS
-67622,17084,Norton,KS,201,Wichita,KS
-67623,17042,Hays,KS,201,Wichita,KS
-67625,17045,Hill City,KS,201,Wichita,KS
-67626,17101,Russell,KS,201,Wichita,KS
-67627,17042,Hays,KS,201,Wichita,KS
-67628,17109,Smith Center,KS,201,Wichita,KS
-67629,17045,Hill City,KS,201,Wichita,KS
-67631,17099,Quinter,KS,201,Wichita,KS
-67632,17045,Hill City,KS,201,Wichita,KS
-67634,17028,Ellsworth,KS,201,Wichita,KS
-67635,17086,Oberlin,KS,103,Denver,CO
-67637,17042,Hays,KS,201,Wichita,KS
-67638,17109,Smith Center,KS,201,Wichita,KS
-67639,17095,Phillipsburg,KS,201,Wichita,KS
-67640,17042,Hays,KS,201,Wichita,KS
-67642,17045,Hill City,KS,201,Wichita,KS
-67643,17086,Oberlin,KS,103,Denver,CO
-67644,17095,Phillipsburg,KS,201,Wichita,KS
-67645,17045,Hill City,KS,201,Wichita,KS
-67646,17095,Phillipsburg,KS,201,Wichita,KS
-67647,28004,Alma,NE,277,Lincoln,NE
-67648,17028,Ellsworth,KS,201,Wichita,KS
-67649,17101,Russell,KS,201,Wichita,KS
-67650,17045,Hill City,KS,201,Wichita,KS
-67651,17042,Hays,KS,201,Wichita,KS
-67653,17086,Oberlin,KS,103,Denver,CO
-67654,17084,Norton,KS,201,Wichita,KS
-67656,17118,Wakeeney,KS,201,Wichita,KS
-67657,17045,Hill City,KS,201,Wichita,KS
-67658,17101,Russell,KS,201,Wichita,KS
-67659,17045,Hill City,KS,201,Wichita,KS
-67660,17042,Hays,KS,201,Wichita,KS
-67661,17095,Phillipsburg,KS,201,Wichita,KS
-67663,17097,Plainville,KS,201,Wichita,KS
-67664,17084,Norton,KS,201,Wichita,KS
-67665,17101,Russell,KS,201,Wichita,KS
-67667,17042,Hays,KS,201,Wichita,KS
-67669,17042,Hays,KS,201,Wichita,KS
-67671,17042,Hays,KS,201,Wichita,KS
-67672,17118,Wakeeney,KS,201,Wichita,KS
-67673,17101,Russell,KS,201,Wichita,KS
-67674,17042,Hays,KS,201,Wichita,KS
-67675,17042,Hays,KS,201,Wichita,KS
-67701,17018,Colby,KS,103,Denver,CO
-67730,17007,Atwood,KS,103,Denver,CO
-67731,17111,St. Francis,KS,103,Denver,CO
-67732,17018,Colby,KS,103,Denver,CO
-67733,17036,Goodland,KS,103,Denver,CO
-67734,17018,Colby,KS,103,Denver,CO
-67735,17036,Goodland,KS,103,Denver,CO
-67736,17099,Quinter,KS,201,Wichita,KS
-67737,17099,Quinter,KS,201,Wichita,KS
-67738,17099,Quinter,KS,201,Wichita,KS
-67739,17086,Oberlin,KS,103,Denver,CO
-67740,17050,Hoxie,KS,201,Wichita,KS
-67741,17036,Goodland,KS,103,Denver,CO
-67743,17018,Colby,KS,103,Denver,CO
-67744,17086,Oberlin,KS,103,Denver,CO
-67745,17007,Atwood,KS,103,Denver,CO
-67747,17018,Colby,KS,103,Denver,CO
-67748,17085,Oakley,KS,201,Wichita,KS
-67749,17086,Oberlin,KS,103,Denver,CO
-67751,17099,Quinter,KS,201,Wichita,KS
-67752,17099,Quinter,KS,201,Wichita,KS
-67753,17018,Colby,KS,103,Denver,CO
-67756,17111,St. Francis,KS,103,Denver,CO
-67757,17050,Hoxie,KS,201,Wichita,KS
-67758,17116,Tribune,KS,201,Wichita,KS
-67761,17116,Tribune,KS,201,Wichita,KS
-67762,6010,Cheyenne Wells,CO,102,Colorado Springs,CO
-67764,17018,Colby,KS,103,Denver,CO
-67801,17024,Dodge City,KS,201,Wichita,KS
-67831,17004,Ashland,KS,201,Wichita,KS
-67834,17079,Minneola,KS,201,Wichita,KS
-67835,17024,Dodge City,KS,201,Wichita,KS
-67836,17114,Syracuse,KS,201,Wichita,KS
-67837,17024,Dodge City,KS,201,Wichita,KS
-67838,17063,Lakin,KS,201,Wichita,KS
-67839,17023,Dighton,KS,201,Wichita,KS
-67840,17079,Minneola,KS,201,Wichita,KS
-67841,17024,Dodge City,KS,201,Wichita,KS
-67842,17079,Minneola,KS,201,Wichita,KS
-67843,17024,Dodge City,KS,201,Wichita,KS
-67844,17079,Minneola,KS,201,Wichita,KS
-67846,17033,Garden City,KS,201,Wichita,KS
-67849,17055,Jetmore,KS,201,Wichita,KS
-67850,17105,Scott City,KS,201,Wichita,KS
-67851,17033,Garden City,KS,201,Wichita,KS
-67853,17024,Dodge City,KS,201,Wichita,KS
-67854,17055,Jetmore,KS,201,Wichita,KS
-67855,17056,Johnson,KS,201,Wichita,KS
-67857,17114,Syracuse,KS,201,Wichita,KS
-67859,17067,Liberal,KS,201,Wichita,KS
-67860,17063,Lakin,KS,201,Wichita,KS
-67861,17066,Leoti,KS,201,Wichita,KS
-67862,17056,Johnson,KS,201,Wichita,KS
-67863,17105,Scott City,KS,201,Wichita,KS
-67864,17076,Meade,KS,201,Wichita,KS
-67865,17079,Minneola,KS,201,Wichita,KS
-67867,17024,Dodge City,KS,201,Wichita,KS
-67868,17033,Garden City,KS,201,Wichita,KS
-67869,17076,Meade,KS,201,Wichita,KS
-67870,17104,Satanta,KS,201,Wichita,KS
-67871,17105,Scott City,KS,201,Wichita,KS
-67876,17024,Dodge City,KS,201,Wichita,KS
-67877,17104,Satanta,KS,201,Wichita,KS
-67878,17114,Syracuse,KS,201,Wichita,KS
-67879,17116,Tribune,KS,201,Wichita,KS
-67880,17117,Ulysses,KS,201,Wichita,KS
-67882,17024,Dodge City,KS,201,Wichita,KS
-67901,17067,Liberal,KS,201,Wichita,KS
-67905,17067,Liberal,KS,201,Wichita,KS
-67950,17026,Elkhart,KS,383,Amarillo,TX
-67951,17051,Hugoton,KS,201,Wichita,KS
-67952,17067,Liberal,KS,201,Wichita,KS
-67953,17026,Elkhart,KS,383,Amarillo,TX
-67954,17026,Elkhart,KS,383,Amarillo,TX
-68001,28023,David City,NE,277,Lincoln,NE
-68002,28011,Blair,NE,278,Omaha,NE
-68003,28045,Lincoln,NE,277,Lincoln,NE
-68004,28063,Pender,NE,196,Sioux City,IA
-68005,28056,Omaha,NE,278,Omaha,NE
-68007,28056,Omaha,NE,278,Omaha,NE
-68008,28011,Blair,NE,278,Omaha,NE
-68010,28056,Omaha,NE,278,Omaha,NE
-68014,28023,David City,NE,277,Lincoln,NE
-68015,28027,Fremont,NE,278,Omaha,NE
-68016,28056,Omaha,NE,278,Omaha,NE
-68017,28045,Lincoln,NE,277,Lincoln,NE
-68018,28027,Fremont,NE,278,Omaha,NE
-68019,28054,Oakland,NE,278,Omaha,NE
-68020,16078,Onawa,IA,278,Omaha,NE
-68022,28056,Omaha,NE,278,Omaha,NE
-68023,28056,Omaha,NE,278,Omaha,NE
-68025,28027,Fremont,NE,278,Omaha,NE
-68026,28027,Fremont,NE,278,Omaha,NE
-68028,28056,Omaha,NE,278,Omaha,NE
-68029,28011,Blair,NE,278,Omaha,NE
-68030,16098,Sioux City,IA,196,Sioux City,IA
-68031,28027,Fremont,NE,278,Omaha,NE
-68033,28077,Wahoo,NE,278,Omaha,NE
-68034,28011,Blair,NE,278,Omaha,NE
-68036,28023,David City,NE,277,Lincoln,NE
-68037,28056,Omaha,NE,278,Omaha,NE
-68038,28054,Oakland,NE,278,Omaha,NE
-68039,16098,Sioux City,IA,196,Sioux City,IA
-68040,28027,Fremont,NE,278,Omaha,NE
-68041,28056,Omaha,NE,278,Omaha,NE
-68042,28045,Lincoln,NE,277,Lincoln,NE
-68044,28027,Fremont,NE,278,Omaha,NE
-68045,28054,Oakland,NE,278,Omaha,NE
-68046,28056,Omaha,NE,278,Omaha,NE
-68047,28063,Pender,NE,196,Sioux City,IA
-68048,28056,Omaha,NE,278,Omaha,NE
-68050,28023,David City,NE,277,Lincoln,NE
-68055,28063,Pender,NE,196,Sioux City,IA
-68056,28056,Omaha,NE,278,Omaha,NE
-68057,28027,Fremont,NE,278,Omaha,NE
-68058,28056,Omaha,NE,278,Omaha,NE
-68059,28056,Omaha,NE,278,Omaha,NE
-68061,28011,Blair,NE,278,Omaha,NE
-68062,28063,Pender,NE,196,Sioux City,IA
-68063,28027,Fremont,NE,278,Omaha,NE
-68064,28056,Omaha,NE,278,Omaha,NE
-68065,28045,Lincoln,NE,277,Lincoln,NE
-68066,28077,Wahoo,NE,278,Omaha,NE
-68067,28063,Pender,NE,196,Sioux City,IA
-68068,28027,Fremont,NE,278,Omaha,NE
-68069,28056,Omaha,NE,278,Omaha,NE
-68070,28045,Lincoln,NE,277,Lincoln,NE
-68071,16098,Sioux City,IA,196,Sioux City,IA
-68072,28027,Fremont,NE,278,Omaha,NE
-68073,28056,Omaha,NE,278,Omaha,NE
-68101,28056,Omaha,NE,278,Omaha,NE
-68102,28056,Omaha,NE,278,Omaha,NE
-68103,28056,Omaha,NE,278,Omaha,NE
-68104,28056,Omaha,NE,278,Omaha,NE
-68105,28056,Omaha,NE,278,Omaha,NE
-68106,28056,Omaha,NE,278,Omaha,NE
-68107,28056,Omaha,NE,278,Omaha,NE
-68108,28056,Omaha,NE,278,Omaha,NE
-68109,28056,Omaha,NE,278,Omaha,NE
-68110,28056,Omaha,NE,278,Omaha,NE
-68111,28056,Omaha,NE,278,Omaha,NE
-68112,28056,Omaha,NE,278,Omaha,NE
-68113,28056,Omaha,NE,278,Omaha,NE
-68114,28056,Omaha,NE,278,Omaha,NE
-68116,28056,Omaha,NE,278,Omaha,NE
-68117,28056,Omaha,NE,278,Omaha,NE
-68118,28056,Omaha,NE,278,Omaha,NE
-68119,28056,Omaha,NE,278,Omaha,NE
-68122,28056,Omaha,NE,278,Omaha,NE
-68123,28056,Omaha,NE,278,Omaha,NE
-68124,28056,Omaha,NE,278,Omaha,NE
-68127,28056,Omaha,NE,278,Omaha,NE
-68128,28056,Omaha,NE,278,Omaha,NE
-68130,28056,Omaha,NE,278,Omaha,NE
-68131,28056,Omaha,NE,278,Omaha,NE
-68132,28056,Omaha,NE,278,Omaha,NE
-68133,28056,Omaha,NE,278,Omaha,NE
-68134,28056,Omaha,NE,278,Omaha,NE
-68135,28056,Omaha,NE,278,Omaha,NE
-68136,28056,Omaha,NE,278,Omaha,NE
-68137,28056,Omaha,NE,278,Omaha,NE
-68138,28056,Omaha,NE,278,Omaha,NE
-68139,28056,Omaha,NE,278,Omaha,NE
-68142,28056,Omaha,NE,278,Omaha,NE
-68144,28056,Omaha,NE,278,Omaha,NE
-68145,28056,Omaha,NE,278,Omaha,NE
-68147,28056,Omaha,NE,278,Omaha,NE
-68152,28056,Omaha,NE,278,Omaha,NE
-68154,28056,Omaha,NE,278,Omaha,NE
-68157,28056,Omaha,NE,278,Omaha,NE
-68164,28056,Omaha,NE,278,Omaha,NE
-68172,28056,Omaha,NE,278,Omaha,NE
-68175,28056,Omaha,NE,278,Omaha,NE
-68176,28056,Omaha,NE,278,Omaha,NE
-68178,28056,Omaha,NE,278,Omaha,NE
-68179,28056,Omaha,NE,278,Omaha,NE
-68180,28056,Omaha,NE,278,Omaha,NE
-68182,28056,Omaha,NE,278,Omaha,NE
-68183,28056,Omaha,NE,278,Omaha,NE
-68197,28056,Omaha,NE,278,Omaha,NE
-68198,28056,Omaha,NE,278,Omaha,NE
-68301,28045,Lincoln,NE,277,Lincoln,NE
-68303,28024,Fairbury,NE,277,Lincoln,NE
-68304,28045,Lincoln,NE,277,Lincoln,NE
-68305,28006,Auburn,NE,278,Omaha,NE
-68307,28056,Omaha,NE,278,Omaha,NE
-68309,28009,Beatrice,NE,277,Lincoln,NE
-68310,28009,Beatrice,NE,277,Lincoln,NE
-68313,28045,Lincoln,NE,277,Lincoln,NE
-68314,28069,Seward,NE,277,Lincoln,NE
-68315,28037,Hebron,NE,277,Lincoln,NE
-68316,28080,York,NE,277,Lincoln,NE
-68317,28045,Lincoln,NE,277,Lincoln,NE
-68318,28009,Beatrice,NE,277,Lincoln,NE
-68319,28080,York,NE,277,Lincoln,NE
-68320,28006,Auburn,NE,278,Omaha,NE
-68321,28006,Auburn,NE,278,Omaha,NE
-68322,28037,Hebron,NE,277,Lincoln,NE
-68323,28062,Pawnee City,NE,277,Lincoln,NE
-68324,28045,Lincoln,NE,277,Lincoln,NE
-68325,17010,Belleville,KS,201,Wichita,KS
-68326,28037,Hebron,NE,277,Lincoln,NE
-68327,17010,Belleville,KS,201,Wichita,KS
-68328,28045,Lincoln,NE,277,Lincoln,NE
-68329,28074,Tecumseh,NE,277,Lincoln,NE
-68330,28045,Lincoln,NE,277,Lincoln,NE
-68331,28045,Lincoln,NE,277,Lincoln,NE
-68332,28074,Tecumseh,NE,277,Lincoln,NE
-68333,28022,Crete,NE,277,Lincoln,NE
-68335,28037,Hebron,NE,277,Lincoln,NE
-68336,28045,Lincoln,NE,277,Lincoln,NE
-68337,28040,Humboldt,NE,277,Lincoln,NE
-68338,28024,Fairbury,NE,277,Lincoln,NE
-68339,28045,Lincoln,NE,277,Lincoln,NE
-68340,28037,Hebron,NE,277,Lincoln,NE
-68341,28045,Lincoln,NE,277,Lincoln,NE
-68342,28009,Beatrice,NE,277,Lincoln,NE
-68343,28045,Lincoln,NE,277,Lincoln,NE
-68344,28045,Lincoln,NE,277,Lincoln,NE
-68345,28062,Pawnee City,NE,277,Lincoln,NE
-68346,28049,Nebraska City,NE,278,Omaha,NE
-68347,28045,Lincoln,NE,277,Lincoln,NE
-68348,28074,Tecumseh,NE,277,Lincoln,NE
-68349,28045,Lincoln,NE,277,Lincoln,NE
-68350,28024,Fairbury,NE,277,Lincoln,NE
-68351,28045,Lincoln,NE,277,Lincoln,NE
-68352,28024,Fairbury,NE,277,Lincoln,NE
-68354,28045,Lincoln,NE,277,Lincoln,NE
-68355,28025,Falls City,NE,278,Omaha,NE
-68357,28009,Beatrice,NE,277,Lincoln,NE
-68358,28045,Lincoln,NE,277,Lincoln,NE
-68359,28045,Lincoln,NE,277,Lincoln,NE
-68360,28069,Seward,NE,277,Lincoln,NE
-68361,28030,Geneva,NE,277,Lincoln,NE
-68362,28037,Hebron,NE,277,Lincoln,NE
-68364,28045,Lincoln,NE,277,Lincoln,NE
-68365,28030,Geneva,NE,277,Lincoln,NE
-68366,28045,Lincoln,NE,277,Lincoln,NE
-68367,28080,York,NE,277,Lincoln,NE
-68368,28045,Lincoln,NE,277,Lincoln,NE
-68370,28037,Hebron,NE,277,Lincoln,NE
-68371,28038,Henderson,NE,277,Lincoln,NE
-68372,28045,Lincoln,NE,277,Lincoln,NE
-68375,28037,Hebron,NE,277,Lincoln,NE
-68376,28040,Humboldt,NE,277,Lincoln,NE
-68377,28024,Fairbury,NE,277,Lincoln,NE
-68378,28006,Auburn,NE,278,Omaha,NE
-68379,28049,Nebraska City,NE,278,Omaha,NE
-68380,28009,Beatrice,NE,277,Lincoln,NE
-68381,28009,Beatrice,NE,277,Lincoln,NE
-68382,28049,Nebraska City,NE,278,Omaha,NE
-68401,28045,Lincoln,NE,277,Lincoln,NE
-68402,28045,Lincoln,NE,277,Lincoln,NE
-68403,28045,Lincoln,NE,277,Lincoln,NE
-68404,28045,Lincoln,NE,277,Lincoln,NE
-68405,28045,Lincoln,NE,277,Lincoln,NE
-68406,28045,Lincoln,NE,277,Lincoln,NE
-68407,28045,Lincoln,NE,277,Lincoln,NE
-68409,28056,Omaha,NE,278,Omaha,NE
-68410,28049,Nebraska City,NE,278,Omaha,NE
-68413,28056,Omaha,NE,278,Omaha,NE
-68414,28006,Auburn,NE,278,Omaha,NE
-68415,28009,Beatrice,NE,277,Lincoln,NE
-68416,28030,Geneva,NE,277,Lincoln,NE
-68417,28073,Syracuse,NE,277,Lincoln,NE
-68418,28045,Lincoln,NE,277,Lincoln,NE
-68419,28045,Lincoln,NE,277,Lincoln,NE
-68420,28062,Pawnee City,NE,277,Lincoln,NE
-68421,28006,Auburn,NE,278,Omaha,NE
-68422,28009,Beatrice,NE,277,Lincoln,NE
-68423,28045,Lincoln,NE,277,Lincoln,NE
-68424,28009,Beatrice,NE,277,Lincoln,NE
-68428,28045,Lincoln,NE,277,Lincoln,NE
-68429,28024,Fairbury,NE,277,Lincoln,NE
-68430,28045,Lincoln,NE,277,Lincoln,NE
-68431,28025,Falls City,NE,278,Omaha,NE
-68433,28025,Falls City,NE,278,Omaha,NE
-68434,28069,Seward,NE,277,Lincoln,NE
-68436,28030,Geneva,NE,277,Lincoln,NE
-68437,28025,Falls City,NE,278,Omaha,NE
-68438,28045,Lincoln,NE,277,Lincoln,NE
-68439,28045,Lincoln,NE,277,Lincoln,NE
-68440,28024,Fairbury,NE,277,Lincoln,NE
-68441,28074,Tecumseh,NE,277,Lincoln,NE
-68442,28025,Falls City,NE,278,Omaha,NE
-68443,28074,Tecumseh,NE,277,Lincoln,NE
-68444,28030,Geneva,NE,277,Lincoln,NE
-68445,28045,Lincoln,NE,277,Lincoln,NE
-68446,28073,Syracuse,NE,277,Lincoln,NE
-68447,28062,Pawnee City,NE,277,Lincoln,NE
-68448,28049,Nebraska City,NE,278,Omaha,NE
-68450,28074,Tecumseh,NE,277,Lincoln,NE
-68452,28030,Geneva,NE,277,Lincoln,NE
-68453,28045,Lincoln,NE,277,Lincoln,NE
-68454,28073,Syracuse,NE,277,Lincoln,NE
-68455,28056,Omaha,NE,278,Omaha,NE
-68456,28045,Lincoln,NE,277,Lincoln,NE
-68457,28025,Falls City,NE,278,Omaha,NE
-68458,28009,Beatrice,NE,277,Lincoln,NE
-68460,28080,York,NE,277,Lincoln,NE
-68461,28045,Lincoln,NE,277,Lincoln,NE
-68462,28045,Lincoln,NE,277,Lincoln,NE
-68463,28045,Lincoln,NE,277,Lincoln,NE
-68464,28024,Fairbury,NE,277,Lincoln,NE
-68465,28045,Lincoln,NE,277,Lincoln,NE
-68466,28009,Beatrice,NE,277,Lincoln,NE
-68467,28080,York,NE,277,Lincoln,NE
-68501,28045,Lincoln,NE,277,Lincoln,NE
-68502,28045,Lincoln,NE,277,Lincoln,NE
-68503,28045,Lincoln,NE,277,Lincoln,NE
-68504,28045,Lincoln,NE,277,Lincoln,NE
-68505,28045,Lincoln,NE,277,Lincoln,NE
-68506,28045,Lincoln,NE,277,Lincoln,NE
-68507,28045,Lincoln,NE,277,Lincoln,NE
-68508,28045,Lincoln,NE,277,Lincoln,NE
-68509,28045,Lincoln,NE,277,Lincoln,NE
-68510,28045,Lincoln,NE,277,Lincoln,NE
-68512,28045,Lincoln,NE,277,Lincoln,NE
-68514,28045,Lincoln,NE,277,Lincoln,NE
-68516,28045,Lincoln,NE,277,Lincoln,NE
-68517,28045,Lincoln,NE,277,Lincoln,NE
-68520,28045,Lincoln,NE,277,Lincoln,NE
-68521,28045,Lincoln,NE,277,Lincoln,NE
-68522,28045,Lincoln,NE,277,Lincoln,NE
-68523,28045,Lincoln,NE,277,Lincoln,NE
-68524,28045,Lincoln,NE,277,Lincoln,NE
-68526,28045,Lincoln,NE,277,Lincoln,NE
-68527,28045,Lincoln,NE,277,Lincoln,NE
-68528,28045,Lincoln,NE,277,Lincoln,NE
-68529,28045,Lincoln,NE,277,Lincoln,NE
-68531,28045,Lincoln,NE,277,Lincoln,NE
-68532,28045,Lincoln,NE,277,Lincoln,NE
-68542,28045,Lincoln,NE,277,Lincoln,NE
-68544,28045,Lincoln,NE,277,Lincoln,NE
-68583,28045,Lincoln,NE,277,Lincoln,NE
-68588,28045,Lincoln,NE,277,Lincoln,NE
-68601,28018,Columbus,NE,278,Omaha,NE
-68602,28018,Columbus,NE,278,Omaha,NE
-68620,28002,Albion,NE,278,Omaha,NE
-68621,28027,Fremont,NE,278,Omaha,NE
-68622,28053,O'Neill,NE,278,Omaha,NE
-68623,28034,Grand Island,NE,278,Omaha,NE
-68624,28023,David City,NE,277,Lincoln,NE
-68626,28023,David City,NE,277,Lincoln,NE
-68627,28002,Albion,NE,278,Omaha,NE
-68628,28016,Central City,NE,278,Omaha,NE
-68629,28067,Schuyler,NE,278,Omaha,NE
-68631,28018,Columbus,NE,278,Omaha,NE
-68632,28023,David City,NE,277,Lincoln,NE
-68633,28027,Fremont,NE,278,Omaha,NE
-68634,28018,Columbus,NE,278,Omaha,NE
-68635,28023,David City,NE,277,Lincoln,NE
-68636,28050,Neligh,NE,278,Omaha,NE
-68637,28057,Ord,NE,278,Omaha,NE
-68638,28034,Grand Island,NE,278,Omaha,NE
-68640,28031,Genoa,NE,278,Omaha,NE
-68641,28027,Fremont,NE,278,Omaha,NE
-68642,28018,Columbus,NE,278,Omaha,NE
-68643,28018,Columbus,NE,278,Omaha,NE
-68644,28002,Albion,NE,278,Omaha,NE
-68647,28018,Columbus,NE,278,Omaha,NE
-68648,28027,Fremont,NE,278,Omaha,NE
-68649,28027,Fremont,NE,278,Omaha,NE
-68651,28058,Osceola,NE,278,Omaha,NE
-68652,28002,Albion,NE,278,Omaha,NE
-68653,28018,Columbus,NE,278,Omaha,NE
-68654,28080,York,NE,277,Lincoln,NE
-68655,28034,Grand Island,NE,278,Omaha,NE
-68658,28023,David City,NE,277,Lincoln,NE
-68659,28067,Schuyler,NE,278,Omaha,NE
-68660,28002,Albion,NE,278,Omaha,NE
-68661,28067,Schuyler,NE,278,Omaha,NE
-68662,28058,Osceola,NE,278,Omaha,NE
-68663,28018,Columbus,NE,278,Omaha,NE
-68664,28027,Fremont,NE,278,Omaha,NE
-68665,28034,Grand Island,NE,278,Omaha,NE
-68666,28058,Osceola,NE,278,Omaha,NE
-68667,28023,David City,NE,277,Lincoln,NE
-68669,28023,David City,NE,277,Lincoln,NE
-68701,28051,Norfolk,NE,278,Omaha,NE
-68702,28051,Norfolk,NE,278,Omaha,NE
-68710,16098,Sioux City,IA,196,Sioux City,IA
-68711,28053,O'Neill,NE,278,Omaha,NE
-68713,28005,Atkinson,NE,278,Omaha,NE
-68714,28008,Bassett,NE,278,Omaha,NE
-68715,28051,Norfolk,NE,278,Omaha,NE
-68716,28079,West Point,NE,278,Omaha,NE
-68717,28078,Wayne,NE,196,Sioux City,IA
-68718,43051,Yankton,SD,371,Sioux Falls,SD
-68719,28046,Lynch,NE,278,Omaha,NE
-68720,28064,Plainview,NE,278,Omaha,NE
-68722,28046,Lynch,NE,278,Omaha,NE
-68723,28078,Wayne,NE,196,Sioux City,IA
-68724,28021,Creighton,NE,278,Omaha,NE
-68725,28053,O'Neill,NE,278,Omaha,NE
-68726,28050,Neligh,NE,278,Omaha,NE
-68727,28060,Osmond,NE,278,Omaha,NE
-68728,28078,Wayne,NE,196,Sioux City,IA
-68729,28021,Creighton,NE,278,Omaha,NE
-68730,43051,Yankton,SD,371,Sioux Falls,SD
-68731,16098,Sioux City,IA,196,Sioux City,IA
-68732,28078,Wayne,NE,196,Sioux City,IA
-68733,16098,Sioux City,IA,196,Sioux City,IA
-68734,28053,O'Neill,NE,278,Omaha,NE
-68735,28053,O'Neill,NE,278,Omaha,NE
-68736,43051,Yankton,SD,371,Sioux Falls,SD
-68738,28051,Norfolk,NE,278,Omaha,NE
-68739,43051,Yankton,SD,371,Sioux Falls,SD
-68740,28051,Norfolk,NE,278,Omaha,NE
-68741,16098,Sioux City,IA,196,Sioux City,IA
-68742,28053,O'Neill,NE,278,Omaha,NE
-68743,16098,Sioux City,IA,196,Sioux City,IA
-68745,28078,Wayne,NE,196,Sioux City,IA
-68746,28046,Lynch,NE,278,Omaha,NE
-68747,28060,Osmond,NE,278,Omaha,NE
-68748,28051,Norfolk,NE,278,Omaha,NE
-68749,28060,Osmond,NE,278,Omaha,NE
-68751,16098,Sioux City,IA,196,Sioux City,IA
-68752,28051,Norfolk,NE,278,Omaha,NE
-68753,43021,Gregory,SD,371,Sioux Falls,SD
-68755,43021,Gregory,SD,371,Sioux Falls,SD
-68756,28050,Neligh,NE,278,Omaha,NE
-68757,16098,Sioux City,IA,196,Sioux City,IA
-68758,28002,Albion,NE,278,Omaha,NE
-68759,28005,Atkinson,NE,278,Omaha,NE
-68760,28046,Lynch,NE,278,Omaha,NE
-68761,28050,Neligh,NE,278,Omaha,NE
-68763,28053,O'Neill,NE,278,Omaha,NE
-68764,28050,Neligh,NE,278,Omaha,NE
-68765,28060,Osmond,NE,278,Omaha,NE
-68766,28053,O'Neill,NE,278,Omaha,NE
-68767,28051,Norfolk,NE,278,Omaha,NE
-68768,28051,Norfolk,NE,278,Omaha,NE
-68769,28064,Plainview,NE,278,Omaha,NE
-68770,16098,Sioux City,IA,196,Sioux City,IA
-68771,28060,Osmond,NE,278,Omaha,NE
-68773,28050,Neligh,NE,278,Omaha,NE
-68774,43051,Yankton,SD,371,Sioux Falls,SD
-68776,16098,Sioux City,IA,196,Sioux City,IA
-68777,28046,Lynch,NE,278,Omaha,NE
-68778,28001,Ainsworth,NE,278,Omaha,NE
-68779,28051,Norfolk,NE,278,Omaha,NE
-68780,28005,Atkinson,NE,278,Omaha,NE
-68781,28050,Neligh,NE,278,Omaha,NE
-68783,28021,Creighton,NE,278,Omaha,NE
-68784,28078,Wayne,NE,196,Sioux City,IA
-68785,16098,Sioux City,IA,196,Sioux City,IA
-68786,28060,Osmond,NE,278,Omaha,NE
-68787,28078,Wayne,NE,196,Sioux City,IA
-68788,28079,West Point,NE,278,Omaha,NE
-68789,28021,Creighton,NE,278,Omaha,NE
-68790,28051,Norfolk,NE,278,Omaha,NE
-68791,28079,West Point,NE,278,Omaha,NE
-68792,43051,Yankton,SD,371,Sioux Falls,SD
-68801,28034,Grand Island,NE,278,Omaha,NE
-68802,28034,Grand Island,NE,278,Omaha,NE
-68803,28034,Grand Island,NE,278,Omaha,NE
-68810,28034,Grand Island,NE,278,Omaha,NE
-68812,28042,Kearney,NE,278,Omaha,NE
-68813,28013,Broken Bow,NE,277,Lincoln,NE
-68814,28013,Broken Bow,NE,277,Lincoln,NE
-68815,28013,Broken Bow,NE,277,Lincoln,NE
-68816,28016,Central City,NE,278,Omaha,NE
-68817,28034,Grand Island,NE,278,Omaha,NE
-68818,28007,Aurora,NE,277,Lincoln,NE
-68820,28034,Grand Island,NE,278,Omaha,NE
-68821,28066,Sargent,NE,278,Omaha,NE
-68822,28013,Broken Bow,NE,277,Lincoln,NE
-68823,28057,Ord,NE,278,Omaha,NE
-68824,28034,Grand Island,NE,278,Omaha,NE
-68825,28014,Callaway,NE,277,Lincoln,NE
-68826,28016,Central City,NE,278,Omaha,NE
-68827,28034,Grand Island,NE,278,Omaha,NE
-68828,28066,Sargent,NE,278,Omaha,NE
-68831,28071,St. Paul,NE,278,Omaha,NE
-68832,28034,Grand Island,NE,278,Omaha,NE
-68833,28013,Broken Bow,NE,277,Lincoln,NE
-68834,28044,Lexington,NE,277,Lincoln,NE
-68835,28071,St. Paul,NE,278,Omaha,NE
-68836,28042,Kearney,NE,278,Omaha,NE
-68837,28057,Ord,NE,278,Omaha,NE
-68838,28071,St. Paul,NE,278,Omaha,NE
-68840,28042,Kearney,NE,278,Omaha,NE
-68841,28007,Aurora,NE,277,Lincoln,NE
-68842,28034,Grand Island,NE,278,Omaha,NE
-68843,28007,Aurora,NE,277,Lincoln,NE
-68844,28042,Kearney,NE,278,Omaha,NE
-68845,28042,Kearney,NE,278,Omaha,NE
-68846,28016,Central City,NE,278,Omaha,NE
-68847,28042,Kearney,NE,278,Omaha,NE
-68848,28042,Kearney,NE,278,Omaha,NE
-68849,28042,Kearney,NE,278,Omaha,NE
-68850,28044,Lexington,NE,277,Lincoln,NE
-68852,28042,Kearney,NE,278,Omaha,NE
-68853,28034,Grand Island,NE,278,Omaha,NE
-68854,28007,Aurora,NE,277,Lincoln,NE
-68855,28042,Kearney,NE,278,Omaha,NE
-68856,28013,Broken Bow,NE,277,Lincoln,NE
-68858,28042,Kearney,NE,278,Omaha,NE
-68859,28057,Ord,NE,278,Omaha,NE
-68860,28014,Callaway,NE,277,Lincoln,NE
-68861,28042,Kearney,NE,278,Omaha,NE
-68862,28057,Ord,NE,278,Omaha,NE
-68863,28044,Lexington,NE,277,Lincoln,NE
-68864,28034,Grand Island,NE,278,Omaha,NE
-68865,28034,Grand Island,NE,278,Omaha,NE
-68866,28042,Kearney,NE,278,Omaha,NE
-68869,28042,Kearney,NE,278,Omaha,NE
-68870,28042,Kearney,NE,278,Omaha,NE
-68871,28034,Grand Island,NE,278,Omaha,NE
-68872,28034,Grand Island,NE,278,Omaha,NE
-68873,28071,St. Paul,NE,278,Omaha,NE
-68874,28066,Sargent,NE,278,Omaha,NE
-68875,28034,Grand Island,NE,278,Omaha,NE
-68876,28042,Kearney,NE,278,Omaha,NE
-68878,28042,Kearney,NE,278,Omaha,NE
-68879,28066,Sargent,NE,278,Omaha,NE
-68881,28013,Broken Bow,NE,277,Lincoln,NE
-68882,28071,St. Paul,NE,278,Omaha,NE
-68883,28034,Grand Island,NE,278,Omaha,NE
-68901,28036,Hastings,NE,277,Lincoln,NE
-68902,28036,Hastings,NE,277,Lincoln,NE
-68920,28004,Alma,NE,277,Lincoln,NE
-68922,28015,Cambridge,NE,277,Lincoln,NE
-68923,28039,Holdrege,NE,277,Lincoln,NE
-68924,28042,Kearney,NE,278,Omaha,NE
-68925,28036,Hastings,NE,277,Lincoln,NE
-68926,28039,Holdrege,NE,277,Lincoln,NE
-68927,28039,Holdrege,NE,277,Lincoln,NE
-68928,28036,Hastings,NE,277,Lincoln,NE
-68929,28026,Franklin,NE,277,Lincoln,NE
-68930,28036,Hastings,NE,277,Lincoln,NE
-68932,28048,Minden,NE,278,Omaha,NE
-68933,28036,Hastings,NE,277,Lincoln,NE
-68934,28036,Hastings,NE,277,Lincoln,NE
-68935,28036,Hastings,NE,277,Lincoln,NE
-68936,28039,Holdrege,NE,277,Lincoln,NE
-68937,28039,Holdrege,NE,277,Lincoln,NE
-68938,28036,Hastings,NE,277,Lincoln,NE
-68939,28026,Franklin,NE,277,Lincoln,NE
-68940,28039,Holdrege,NE,277,Lincoln,NE
-68941,28036,Hastings,NE,277,Lincoln,NE
-68942,28072,Superior,NE,277,Lincoln,NE
-68943,28072,Superior,NE,277,Lincoln,NE
-68944,28036,Hastings,NE,277,Lincoln,NE
-68945,28036,Hastings,NE,277,Lincoln,NE
-68946,28039,Holdrege,NE,277,Lincoln,NE
-68947,28042,Kearney,NE,278,Omaha,NE
-68948,28015,Cambridge,NE,277,Lincoln,NE
-68949,28039,Holdrege,NE,277,Lincoln,NE
-68950,28036,Hastings,NE,277,Lincoln,NE
-68952,28026,Franklin,NE,277,Lincoln,NE
-68954,28036,Hastings,NE,277,Lincoln,NE
-68955,28036,Hastings,NE,277,Lincoln,NE
-68956,28036,Hastings,NE,277,Lincoln,NE
-68957,28036,Hastings,NE,277,Lincoln,NE
-68958,28039,Holdrege,NE,277,Lincoln,NE
-68959,28048,Minden,NE,278,Omaha,NE
-68960,28026,Franklin,NE,277,Lincoln,NE
-68961,28072,Superior,NE,277,Lincoln,NE
-68964,28036,Hastings,NE,277,Lincoln,NE
-68966,28004,Alma,NE,277,Lincoln,NE
-68967,28039,Holdrege,NE,277,Lincoln,NE
-68969,28039,Holdrege,NE,277,Lincoln,NE
-68970,28065,Red Cloud,NE,277,Lincoln,NE
-68971,28004,Alma,NE,277,Lincoln,NE
-68972,28026,Franklin,NE,277,Lincoln,NE
-68973,28036,Hastings,NE,277,Lincoln,NE
-68974,28072,Superior,NE,277,Lincoln,NE
-68975,28036,Hastings,NE,277,Lincoln,NE
-68976,28039,Holdrege,NE,277,Lincoln,NE
-68977,28004,Alma,NE,277,Lincoln,NE
-68978,28072,Superior,NE,277,Lincoln,NE
-68979,28036,Hastings,NE,277,Lincoln,NE
-68980,28036,Hastings,NE,277,Lincoln,NE
-68981,28042,Kearney,NE,278,Omaha,NE
-68982,28042,Kearney,NE,278,Omaha,NE
-69001,28047,McCook,NE,103,Denver,CO
-69020,28015,Cambridge,NE,277,Lincoln,NE
-69021,28010,Benkelman,NE,103,Denver,CO
-69022,28015,Cambridge,NE,277,Lincoln,NE
-69023,28041,Imperial,NE,103,Denver,CO
-69024,28047,McCook,NE,103,Denver,CO
-69025,28047,McCook,NE,103,Denver,CO
-69026,28047,McCook,NE,103,Denver,CO
-69027,28041,Imperial,NE,103,Denver,CO
-69028,28044,Lexington,NE,277,Lincoln,NE
-69029,28052,North Platte,NE,277,Lincoln,NE
-69030,6054,Wray,CO,106,Greeley,CO
-69032,28052,North Platte,NE,277,Lincoln,NE
-69033,28041,Imperial,NE,103,Denver,CO
-69034,28015,Cambridge,NE,277,Lincoln,NE
-69036,17086,Oberlin,KS,103,Denver,CO
-69037,28010,Benkelman,NE,103,Denver,CO
-69038,28047,McCook,NE,103,Denver,CO
-69039,28052,North Platte,NE,277,Lincoln,NE
-69040,28041,Imperial,NE,103,Denver,CO
-69041,28041,Imperial,NE,103,Denver,CO
-69042,28015,Cambridge,NE,277,Lincoln,NE
-69043,28047,McCook,NE,103,Denver,CO
-69044,28047,McCook,NE,103,Denver,CO
-69045,28041,Imperial,NE,103,Denver,CO
-69046,28015,Cambridge,NE,277,Lincoln,NE
-69101,28052,North Platte,NE,277,Lincoln,NE
-69103,28052,North Platte,NE,277,Lincoln,NE
-69120,28014,Callaway,NE,277,Lincoln,NE
-69121,28055,Ogallala,NE,103,Denver,CO
-69122,28055,Ogallala,NE,103,Denver,CO
-69123,28052,North Platte,NE,277,Lincoln,NE
-69125,28068,Scottsbluff,NE,103,Denver,CO
-69127,28055,Ogallala,NE,103,Denver,CO
-69128,28043,Kimball,NE,104,Fort Collins,CO
-69129,28070,Sidney,NE,103,Denver,CO
-69130,28019,Cozad,NE,277,Lincoln,NE
-69131,28070,Sidney,NE,103,Denver,CO
-69132,28052,North Platte,NE,277,Lincoln,NE
-69133,28043,Kimball,NE,104,Fort Collins,CO
-69134,28035,Grant,NE,103,Denver,CO
-69135,28001,Ainsworth,NE,278,Omaha,NE
-69138,28033,Gothenburg,NE,277,Lincoln,NE
-69140,28035,Grant,NE,103,Denver,CO
-69141,28070,Sidney,NE,103,Denver,CO
-69142,28013,Broken Bow,NE,277,Lincoln,NE
-69143,28052,North Platte,NE,277,Lincoln,NE
-69144,28055,Ogallala,NE,103,Denver,CO
-69145,28043,Kimball,NE,104,Fort Collins,CO
-69146,28055,Ogallala,NE,103,Denver,CO
-69147,28055,Ogallala,NE,103,Denver,CO
-69148,28068,Scottsbluff,NE,103,Denver,CO
-69149,28070,Sidney,NE,103,Denver,CO
-69150,28035,Grant,NE,103,Denver,CO
-69151,28052,North Platte,NE,277,Lincoln,NE
-69152,28052,North Platte,NE,277,Lincoln,NE
-69153,28055,Ogallala,NE,103,Denver,CO
-69154,28059,Oshkosh,NE,103,Denver,CO
-69155,28055,Ogallala,NE,103,Denver,CO
-69156,28070,Sidney,NE,103,Denver,CO
-69157,28013,Broken Bow,NE,277,Lincoln,NE
-69160,28070,Sidney,NE,103,Denver,CO
-69161,28052,North Platte,NE,277,Lincoln,NE
-69162,28070,Sidney,NE,103,Denver,CO
-69163,28052,North Platte,NE,277,Lincoln,NE
-69165,28052,North Platte,NE,277,Lincoln,NE
-69166,28052,North Platte,NE,277,Lincoln,NE
-69167,28052,North Platte,NE,277,Lincoln,NE
-69168,28035,Grant,NE,103,Denver,CO
-69169,28035,Grant,NE,103,Denver,CO
-69170,28052,North Platte,NE,277,Lincoln,NE
-69171,28019,Cozad,NE,277,Lincoln,NE
-69190,28059,Oshkosh,NE,103,Denver,CO
-69201,28076,Valentine,NE,277,Lincoln,NE
-69210,28001,Ainsworth,NE,278,Omaha,NE
-69211,28076,Valentine,NE,277,Lincoln,NE
-69212,28076,Valentine,NE,277,Lincoln,NE
-69214,28001,Ainsworth,NE,278,Omaha,NE
-69216,28076,Valentine,NE,277,Lincoln,NE
-69217,28001,Ainsworth,NE,278,Omaha,NE
-69218,28032,Gordon,NE,370,Rapid City,SD
-69219,28076,Valentine,NE,277,Lincoln,NE
-69220,28076,Valentine,NE,277,Lincoln,NE
-69221,28076,Valentine,NE,277,Lincoln,NE
-69301,28003,Alliance,NE,103,Denver,CO
-69331,28068,Scottsbluff,NE,103,Denver,CO
-69333,28059,Oshkosh,NE,103,Denver,CO
-69334,28068,Scottsbluff,NE,103,Denver,CO
-69335,28059,Oshkosh,NE,103,Denver,CO
-69336,28068,Scottsbluff,NE,103,Denver,CO
-69337,28017,Chadron,NE,370,Rapid City,SD
-69339,28020,Crawford,NE,370,Rapid City,SD
-69340,28059,Oshkosh,NE,103,Denver,CO
-69341,28068,Scottsbluff,NE,103,Denver,CO
-69343,28032,Gordon,NE,370,Rapid City,SD
-69345,28068,Scottsbluff,NE,103,Denver,CO
-69346,28068,Scottsbluff,NE,103,Denver,CO
-69347,28017,Chadron,NE,370,Rapid City,SD
-69348,28003,Alliance,NE,103,Denver,CO
-69350,28052,North Platte,NE,277,Lincoln,NE
-69351,28003,Alliance,NE,103,Denver,CO
-69352,28068,Scottsbluff,NE,103,Denver,CO
-69353,28068,Scottsbluff,NE,103,Denver,CO
-69354,28068,Scottsbluff,NE,103,Denver,CO
-69355,28068,Scottsbluff,NE,103,Denver,CO
-69356,28068,Scottsbluff,NE,103,Denver,CO
-69357,28068,Scottsbluff,NE,103,Denver,CO
-69358,28068,Scottsbluff,NE,103,Denver,CO
-69360,28032,Gordon,NE,370,Rapid City,SD
-69361,28068,Scottsbluff,NE,103,Denver,CO
-69363,28068,Scottsbluff,NE,103,Denver,CO
-69365,28032,Gordon,NE,370,Rapid City,SD
-69366,28052,North Platte,NE,277,Lincoln,NE
-69367,28017,Chadron,NE,370,Rapid City,SD
-70001,19059,Metairie,LA,216,Metairie,LA
-70002,19059,Metairie,LA,216,Metairie,LA
-70003,19059,Metairie,LA,216,Metairie,LA
-70004,19059,Metairie,LA,216,Metairie,LA
-70005,19059,Metairie,LA,216,Metairie,LA
-70006,19059,Metairie,LA,216,Metairie,LA
-70009,19059,Metairie,LA,216,Metairie,LA
-70010,19059,Metairie,LA,216,Metairie,LA
-70011,19059,Metairie,LA,216,Metairie,LA
-70030,19051,Luling,LA,218,New Orleans,LA
-70031,19051,Luling,LA,218,New Orleans,LA
-70032,19014,Chalmette,LA,218,New Orleans,LA
-70033,19059,Metairie,LA,216,Metairie,LA
-70036,19057,Marrero,LA,218,New Orleans,LA
-70037,19066,New Orleans,LA,218,New Orleans,LA
-70038,19066,New Orleans,LA,218,New Orleans,LA
-70039,19051,Luling,LA,218,New Orleans,LA
-70040,19066,New Orleans,LA,218,New Orleans,LA
-70041,19066,New Orleans,LA,218,New Orleans,LA
-70043,19014,Chalmette,LA,218,New Orleans,LA
-70044,19014,Chalmette,LA,218,New Orleans,LA
-70047,19059,Metairie,LA,216,Metairie,LA
-70049,19051,Luling,LA,218,New Orleans,LA
-70050,19066,New Orleans,LA,218,New Orleans,LA
-70051,19049,Laplace,LA,216,Metairie,LA
-70052,19052,Lutcher,LA,216,Metairie,LA
-70053,19057,Marrero,LA,218,New Orleans,LA
-70054,19057,Marrero,LA,218,New Orleans,LA
-70055,19059,Metairie,LA,216,Metairie,LA
-70056,19066,New Orleans,LA,218,New Orleans,LA
-70057,19051,Luling,LA,218,New Orleans,LA
-70058,19057,Marrero,LA,218,New Orleans,LA
-70059,19057,Marrero,LA,218,New Orleans,LA
-70060,19059,Metairie,LA,216,Metairie,LA
-70062,19059,Metairie,LA,216,Metairie,LA
-70063,19059,Metairie,LA,216,Metairie,LA
-70064,19059,Metairie,LA,216,Metairie,LA
-70065,19059,Metairie,LA,216,Metairie,LA
-70067,19057,Marrero,LA,218,New Orleans,LA
-70068,19049,Laplace,LA,216,Metairie,LA
-70069,19049,Laplace,LA,216,Metairie,LA
-70070,19051,Luling,LA,218,New Orleans,LA
-70071,19052,Lutcher,LA,216,Metairie,LA
-70072,19057,Marrero,LA,218,New Orleans,LA
-70073,19057,Marrero,LA,218,New Orleans,LA
-70075,19014,Chalmette,LA,218,New Orleans,LA
-70076,19049,Laplace,LA,216,Metairie,LA
-70078,19059,Metairie,LA,216,Metairie,LA
-70079,19049,Laplace,LA,216,Metairie,LA
-70080,19051,Luling,LA,218,New Orleans,LA
-70081,19066,New Orleans,LA,218,New Orleans,LA
-70082,19066,New Orleans,LA,218,New Orleans,LA
-70083,19066,New Orleans,LA,218,New Orleans,LA
-70084,19049,Laplace,LA,216,Metairie,LA
-70085,19014,Chalmette,LA,218,New Orleans,LA
-70086,19086,Thibodaux,LA,212,Houma,LA
-70087,19059,Metairie,LA,216,Metairie,LA
-70090,19086,Thibodaux,LA,212,Houma,LA
-70091,19066,New Orleans,LA,218,New Orleans,LA
-70092,19014,Chalmette,LA,218,New Orleans,LA
-70093,19066,New Orleans,LA,218,New Orleans,LA
-70094,19057,Marrero,LA,218,New Orleans,LA
-70096,19057,Marrero,LA,218,New Orleans,LA
-70097,19059,Metairie,LA,216,Metairie,LA
-70112,19066,New Orleans,LA,218,New Orleans,LA
-70113,19066,New Orleans,LA,218,New Orleans,LA
-70114,19066,New Orleans,LA,218,New Orleans,LA
-70115,19066,New Orleans,LA,218,New Orleans,LA
-70116,19066,New Orleans,LA,218,New Orleans,LA
-70117,19066,New Orleans,LA,218,New Orleans,LA
-70118,19066,New Orleans,LA,218,New Orleans,LA
-70119,19066,New Orleans,LA,218,New Orleans,LA
-70121,19066,New Orleans,LA,218,New Orleans,LA
-70122,19066,New Orleans,LA,218,New Orleans,LA
-70123,19066,New Orleans,LA,218,New Orleans,LA
-70124,19066,New Orleans,LA,218,New Orleans,LA
-70125,19066,New Orleans,LA,218,New Orleans,LA
-70126,19066,New Orleans,LA,218,New Orleans,LA
-70127,19066,New Orleans,LA,218,New Orleans,LA
-70128,19066,New Orleans,LA,218,New Orleans,LA
-70129,19066,New Orleans,LA,218,New Orleans,LA
-70130,19066,New Orleans,LA,218,New Orleans,LA
-70131,19066,New Orleans,LA,218,New Orleans,LA
-70139,19066,New Orleans,LA,218,New Orleans,LA
-70141,19066,New Orleans,LA,218,New Orleans,LA
-70142,19066,New Orleans,LA,218,New Orleans,LA
-70143,19066,New Orleans,LA,218,New Orleans,LA
-70145,19066,New Orleans,LA,218,New Orleans,LA
-70146,19066,New Orleans,LA,218,New Orleans,LA
-70148,19066,New Orleans,LA,218,New Orleans,LA
-70150,19066,New Orleans,LA,218,New Orleans,LA
-70151,19066,New Orleans,LA,218,New Orleans,LA
-70152,19066,New Orleans,LA,218,New Orleans,LA
-70153,19066,New Orleans,LA,218,New Orleans,LA
-70154,19066,New Orleans,LA,218,New Orleans,LA
-70156,19066,New Orleans,LA,218,New Orleans,LA
-70157,19066,New Orleans,LA,218,New Orleans,LA
-70158,19066,New Orleans,LA,218,New Orleans,LA
-70159,19066,New Orleans,LA,218,New Orleans,LA
-70160,19066,New Orleans,LA,218,New Orleans,LA
-70161,19066,New Orleans,LA,218,New Orleans,LA
-70162,19066,New Orleans,LA,218,New Orleans,LA
-70163,19066,New Orleans,LA,218,New Orleans,LA
-70164,19066,New Orleans,LA,218,New Orleans,LA
-70165,19066,New Orleans,LA,218,New Orleans,LA
-70166,19066,New Orleans,LA,218,New Orleans,LA
-70167,19066,New Orleans,LA,218,New Orleans,LA
-70170,19066,New Orleans,LA,218,New Orleans,LA
-70172,19066,New Orleans,LA,218,New Orleans,LA
-70174,19066,New Orleans,LA,218,New Orleans,LA
-70175,19066,New Orleans,LA,218,New Orleans,LA
-70176,19066,New Orleans,LA,218,New Orleans,LA
-70177,19066,New Orleans,LA,218,New Orleans,LA
-70178,19066,New Orleans,LA,218,New Orleans,LA
-70179,19066,New Orleans,LA,218,New Orleans,LA
-70181,19066,New Orleans,LA,218,New Orleans,LA
-70182,19066,New Orleans,LA,218,New Orleans,LA
-70183,19066,New Orleans,LA,218,New Orleans,LA
-70184,19066,New Orleans,LA,218,New Orleans,LA
-70185,19066,New Orleans,LA,218,New Orleans,LA
-70186,19066,New Orleans,LA,218,New Orleans,LA
-70187,19066,New Orleans,LA,218,New Orleans,LA
-70189,19066,New Orleans,LA,218,New Orleans,LA
-70190,19066,New Orleans,LA,218,New Orleans,LA
-70195,19066,New Orleans,LA,218,New Orleans,LA
-70301,19086,Thibodaux,LA,212,Houma,LA
-70302,19086,Thibodaux,LA,212,Houma,LA
-70310,19086,Thibodaux,LA,212,Houma,LA
-70339,19062,Morgan City,LA,212,Houma,LA
-70340,19062,Morgan City,LA,212,Houma,LA
-70341,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70342,19062,Morgan City,LA,212,Houma,LA
-70343,19036,Houma,LA,212,Houma,LA
-70344,19036,Houma,LA,212,Houma,LA
-70345,19029,Galliano,LA,212,Houma,LA
-70346,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70352,19086,Thibodaux,LA,212,Houma,LA
-70353,19036,Houma,LA,212,Houma,LA
-70354,19029,Galliano,LA,212,Houma,LA
-70355,19075,Raceland,LA,212,Houma,LA
-70356,19036,Houma,LA,212,Houma,LA
-70357,19029,Galliano,LA,212,Houma,LA
-70358,19029,Galliano,LA,212,Houma,LA
-70359,19036,Houma,LA,212,Houma,LA
-70360,19036,Houma,LA,212,Houma,LA
-70361,19036,Houma,LA,212,Houma,LA
-70363,19036,Houma,LA,212,Houma,LA
-70364,19036,Houma,LA,212,Houma,LA
-70371,19086,Thibodaux,LA,212,Houma,LA
-70372,19086,Thibodaux,LA,212,Houma,LA
-70373,19029,Galliano,LA,212,Houma,LA
-70374,19075,Raceland,LA,212,Houma,LA
-70375,19075,Raceland,LA,212,Houma,LA
-70377,19036,Houma,LA,212,Houma,LA
-70380,19062,Morgan City,LA,212,Houma,LA
-70381,19062,Morgan City,LA,212,Houma,LA
-70390,19063,Napoleonville,LA,212,Houma,LA
-70391,19063,Napoleonville,LA,212,Houma,LA
-70392,19062,Morgan City,LA,212,Houma,LA
-70393,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70394,19075,Raceland,LA,212,Houma,LA
-70395,19086,Thibodaux,LA,212,Houma,LA
-70397,19036,Houma,LA,212,Houma,LA
-70401,19033,Hammond,LA,210,Baton Rouge,LA
-70402,19033,Hammond,LA,210,Baton Rouge,LA
-70403,19033,Hammond,LA,210,Baton Rouge,LA
-70404,19033,Hammond,LA,210,Baton Rouge,LA
-70420,19018,Covington,LA,216,Metairie,LA
-70421,19033,Hammond,LA,210,Baton Rouge,LA
-70422,19003,Amite,LA,210,Baton Rouge,LA
-70426,19009,Bogalusa,LA,216,Metairie,LA
-70427,19009,Bogalusa,LA,216,Metairie,LA
-70429,19009,Bogalusa,LA,216,Metairie,LA
-70431,19018,Covington,LA,216,Metairie,LA
-70433,19018,Covington,LA,216,Metairie,LA
-70434,19018,Covington,LA,216,Metairie,LA
-70435,19018,Covington,LA,216,Metairie,LA
-70436,19033,Hammond,LA,210,Baton Rouge,LA
-70437,19018,Covington,LA,216,Metairie,LA
-70438,19028,Franklinton,LA,216,Metairie,LA
-70441,19031,Greensburg,LA,210,Baton Rouge,LA
-70442,19033,Hammond,LA,210,Baton Rouge,LA
-70443,19033,Hammond,LA,210,Baton Rouge,LA
-70444,19033,Hammond,LA,210,Baton Rouge,LA
-70445,19081,Slidell,LA,220,Slidell,LA
-70446,19033,Hammond,LA,210,Baton Rouge,LA
-70447,19018,Covington,LA,216,Metairie,LA
-70448,19018,Covington,LA,216,Metairie,LA
-70449,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70450,19028,Franklinton,LA,216,Metairie,LA
-70451,19033,Hammond,LA,210,Baton Rouge,LA
-70452,19081,Slidell,LA,220,Slidell,LA
-70453,19003,Amite,LA,210,Baton Rouge,LA
-70454,19033,Hammond,LA,210,Baton Rouge,LA
-70455,19033,Hammond,LA,210,Baton Rouge,LA
-70456,19003,Amite,LA,210,Baton Rouge,LA
-70457,19018,Covington,LA,216,Metairie,LA
-70458,19081,Slidell,LA,220,Slidell,LA
-70459,19081,Slidell,LA,220,Slidell,LA
-70460,19081,Slidell,LA,220,Slidell,LA
-70461,19081,Slidell,LA,220,Slidell,LA
-70462,19033,Hammond,LA,210,Baton Rouge,LA
-70463,19018,Covington,LA,216,Metairie,LA
-70464,19018,Covington,LA,216,Metairie,LA
-70465,19033,Hammond,LA,210,Baton Rouge,LA
-70466,19033,Hammond,LA,210,Baton Rouge,LA
-70467,19009,Bogalusa,LA,216,Metairie,LA
-70469,19081,Slidell,LA,220,Slidell,LA
-70470,19018,Covington,LA,216,Metairie,LA
-70471,19018,Covington,LA,216,Metairie,LA
-70501,19046,Lafayette,LA,213,Lafayette,LA
-70502,19046,Lafayette,LA,213,Lafayette,LA
-70503,19046,Lafayette,LA,213,Lafayette,LA
-70504,19046,Lafayette,LA,213,Lafayette,LA
-70505,19046,Lafayette,LA,213,Lafayette,LA
-70506,19046,Lafayette,LA,213,Lafayette,LA
-70507,19046,Lafayette,LA,213,Lafayette,LA
-70508,19046,Lafayette,LA,213,Lafayette,LA
-70509,19046,Lafayette,LA,213,Lafayette,LA
-70510,19001,Abbeville,LA,213,Lafayette,LA
-70511,19001,Abbeville,LA,213,Lafayette,LA
-70512,19046,Lafayette,LA,213,Lafayette,LA
-70513,19065,New Iberia,LA,213,Lafayette,LA
-70514,19027,Franklin,LA,213,Lafayette,LA
-70515,19024,Eunice,LA,213,Lafayette,LA
-70516,19046,Lafayette,LA,213,Lafayette,LA
-70517,19046,Lafayette,LA,213,Lafayette,LA
-70518,19046,Lafayette,LA,213,Lafayette,LA
-70519,19046,Lafayette,LA,213,Lafayette,LA
-70520,19046,Lafayette,LA,213,Lafayette,LA
-70521,19046,Lafayette,LA,213,Lafayette,LA
-70522,19027,Franklin,LA,213,Lafayette,LA
-70523,19065,New Iberia,LA,213,Lafayette,LA
-70524,19024,Eunice,LA,213,Lafayette,LA
-70525,19046,Lafayette,LA,213,Lafayette,LA
-70526,19019,Crowley,LA,213,Lafayette,LA
-70527,19019,Crowley,LA,213,Lafayette,LA
-70528,19001,Abbeville,LA,213,Lafayette,LA
-70529,19046,Lafayette,LA,213,Lafayette,LA
-70531,19019,Crowley,LA,213,Lafayette,LA
-70532,19053,Mamou,LA,213,Lafayette,LA
-70533,19001,Abbeville,LA,213,Lafayette,LA
-70534,19019,Crowley,LA,213,Lafayette,LA
-70535,19024,Eunice,LA,213,Lafayette,LA
-70537,19019,Crowley,LA,213,Lafayette,LA
-70538,19027,Franklin,LA,213,Lafayette,LA
-70540,19027,Franklin,LA,213,Lafayette,LA
-70541,19071,Opelousas,LA,213,Lafayette,LA
-70542,19042,Kaplan,LA,213,Lafayette,LA
-70543,19019,Crowley,LA,213,Lafayette,LA
-70544,19065,New Iberia,LA,213,Lafayette,LA
-70546,19040,Jennings,LA,213,Lafayette,LA
-70548,19042,Kaplan,LA,213,Lafayette,LA
-70549,19040,Jennings,LA,213,Lafayette,LA
-70550,19071,Opelousas,LA,213,Lafayette,LA
-70551,19071,Opelousas,LA,213,Lafayette,LA
-70552,19065,New Iberia,LA,213,Lafayette,LA
-70554,19053,Mamou,LA,213,Lafayette,LA
-70555,19046,Lafayette,LA,213,Lafayette,LA
-70556,19019,Crowley,LA,213,Lafayette,LA
-70558,19046,Lafayette,LA,213,Lafayette,LA
-70559,19019,Crowley,LA,213,Lafayette,LA
-70560,19065,New Iberia,LA,213,Lafayette,LA
-70562,19065,New Iberia,LA,213,Lafayette,LA
-70563,19065,New Iberia,LA,213,Lafayette,LA
-70569,19065,New Iberia,LA,213,Lafayette,LA
-70570,19071,Opelousas,LA,213,Lafayette,LA
-70571,19071,Opelousas,LA,213,Lafayette,LA
-70575,19001,Abbeville,LA,213,Lafayette,LA
-70576,19002,Alexandria,LA,209,Alexandria,LA
-70577,19071,Opelousas,LA,213,Lafayette,LA
-70578,19046,Lafayette,LA,213,Lafayette,LA
-70580,19053,Mamou,LA,213,Lafayette,LA
-70581,19047,Lake Charles,LA,214,Lake Charles,LA
-70582,19046,Lafayette,LA,213,Lafayette,LA
-70583,19046,Lafayette,LA,213,Lafayette,LA
-70584,19046,Lafayette,LA,213,Lafayette,LA
-70585,19002,Alexandria,LA,209,Alexandria,LA
-70586,19087,Ville Platte,LA,213,Lafayette,LA
-70589,19071,Opelousas,LA,213,Lafayette,LA
-70591,19047,Lake Charles,LA,214,Lake Charles,LA
-70592,19046,Lafayette,LA,213,Lafayette,LA
-70593,19046,Lafayette,LA,213,Lafayette,LA
-70596,19046,Lafayette,LA,213,Lafayette,LA
-70598,19046,Lafayette,LA,213,Lafayette,LA
-70601,19047,Lake Charles,LA,214,Lake Charles,LA
-70602,19047,Lake Charles,LA,214,Lake Charles,LA
-70605,19047,Lake Charles,LA,214,Lake Charles,LA
-70606,19047,Lake Charles,LA,214,Lake Charles,LA
-70607,19047,Lake Charles,LA,214,Lake Charles,LA
-70609,19047,Lake Charles,LA,214,Lake Charles,LA
-70611,19047,Lake Charles,LA,214,Lake Charles,LA
-70612,19047,Lake Charles,LA,214,Lake Charles,LA
-70615,19047,Lake Charles,LA,214,Lake Charles,LA
-70616,19047,Lake Charles,LA,214,Lake Charles,LA
-70629,19047,Lake Charles,LA,214,Lake Charles,LA
-70630,19047,Lake Charles,LA,214,Lake Charles,LA
-70631,19047,Lake Charles,LA,214,Lake Charles,LA
-70632,19047,Lake Charles,LA,214,Lake Charles,LA
-70633,19020,De Quincy,LA,214,Lake Charles,LA
-70634,19021,De Ridder,LA,214,Lake Charles,LA
-70637,19047,Lake Charles,LA,214,Lake Charles,LA
-70638,19069,Oakdale,LA,209,Alexandria,LA
-70639,19021,De Ridder,LA,214,Lake Charles,LA
-70640,19047,Lake Charles,LA,214,Lake Charles,LA
-70643,19047,Lake Charles,LA,214,Lake Charles,LA
-70644,19047,Lake Charles,LA,214,Lake Charles,LA
-70645,19084,Sulphur,LA,214,Lake Charles,LA
-70646,19047,Lake Charles,LA,214,Lake Charles,LA
-70647,19047,Lake Charles,LA,214,Lake Charles,LA
-70648,19047,Lake Charles,LA,214,Lake Charles,LA
-70650,19047,Lake Charles,LA,214,Lake Charles,LA
-70651,19047,Lake Charles,LA,214,Lake Charles,LA
-70652,19047,Lake Charles,LA,214,Lake Charles,LA
-70653,19058,Merryville,LA,214,Lake Charles,LA
-70654,19047,Lake Charles,LA,214,Lake Charles,LA
-70655,19069,Oakdale,LA,209,Alexandria,LA
-70656,19002,Alexandria,LA,209,Alexandria,LA
-70657,19047,Lake Charles,LA,214,Lake Charles,LA
-70658,19047,Lake Charles,LA,214,Lake Charles,LA
-70659,19021,De Ridder,LA,214,Lake Charles,LA
-70660,19020,De Quincy,LA,214,Lake Charles,LA
-70661,19084,Sulphur,LA,214,Lake Charles,LA
-70662,19021,De Ridder,LA,214,Lake Charles,LA
-70663,19084,Sulphur,LA,214,Lake Charles,LA
-70664,19084,Sulphur,LA,214,Lake Charles,LA
-70665,19084,Sulphur,LA,214,Lake Charles,LA
-70668,19084,Sulphur,LA,214,Lake Charles,LA
-70669,19047,Lake Charles,LA,214,Lake Charles,LA
-70704,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70706,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70707,19030,Gonzales,LA,210,Baton Rouge,LA
-70710,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70711,19033,Hammond,LA,210,Baton Rouge,LA
-70712,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70714,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70715,19067,New Roads,LA,210,Baton Rouge,LA
-70718,19030,Gonzales,LA,210,Baton Rouge,LA
-70719,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70721,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70722,19093,Zachary,LA,210,Baton Rouge,LA
-70723,19030,Gonzales,LA,210,Baton Rouge,LA
-70725,19030,Gonzales,LA,210,Baton Rouge,LA
-70726,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70727,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70728,19030,Gonzales,LA,210,Baton Rouge,LA
-70729,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70730,19093,Zachary,LA,210,Baton Rouge,LA
-70732,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70733,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70734,19030,Gonzales,LA,210,Baton Rouge,LA
-70736,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70737,19030,Gonzales,LA,210,Baton Rouge,LA
-70738,19030,Gonzales,LA,210,Baton Rouge,LA
-70739,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70740,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70743,19052,Lutcher,LA,216,Metairie,LA
-70744,19033,Hammond,LA,210,Baton Rouge,LA
-70747,19067,New Roads,LA,210,Baton Rouge,LA
-70748,19093,Zachary,LA,210,Baton Rouge,LA
-70749,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70750,19071,Opelousas,LA,213,Lafayette,LA
-70752,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70753,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70754,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70755,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70756,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70757,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70759,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70760,19067,New Roads,LA,210,Baton Rouge,LA
-70761,19093,Zachary,LA,210,Baton Rouge,LA
-70762,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70763,19052,Lutcher,LA,216,Metairie,LA
-70764,19073,Plaquemine,LA,210,Baton Rouge,LA
-70765,19073,Plaquemine,LA,210,Baton Rouge,LA
-70767,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70769,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70770,19093,Zachary,LA,210,Baton Rouge,LA
-70772,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70773,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70774,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70775,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70776,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70777,19093,Zachary,LA,210,Baton Rouge,LA
-70778,19030,Gonzales,LA,210,Baton Rouge,LA
-70780,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70782,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70783,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70784,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70785,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70786,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70787,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70788,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70789,19093,Zachary,LA,210,Baton Rouge,LA
-70791,19093,Zachary,LA,210,Baton Rouge,LA
-70792,19052,Lutcher,LA,216,Metairie,LA
-70801,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70802,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70803,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70804,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70805,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70806,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70807,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70808,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70809,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70810,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70811,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70812,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70813,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70814,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70815,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70816,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70817,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70818,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70819,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70820,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70821,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70822,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70823,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70825,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70826,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70827,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70831,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70833,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70835,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70836,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70837,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70873,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70874,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70879,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70884,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70891,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70892,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70893,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70894,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70895,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70896,19007,Baton Rouge,LA,210,Baton Rouge,LA
-70898,19007,Baton Rouge,LA,210,Baton Rouge,LA
-71001,19078,Ruston,LA,219,Shreveport,LA
-71002,19080,Shreveport,LA,219,Shreveport,LA
-71003,19035,Homer,LA,219,Shreveport,LA
-71004,19080,Shreveport,LA,219,Shreveport,LA
-71006,19080,Shreveport,LA,219,Shreveport,LA
-71007,19080,Shreveport,LA,219,Shreveport,LA
-71008,19080,Shreveport,LA,219,Shreveport,LA
-71009,19080,Shreveport,LA,219,Shreveport,LA
-71016,19080,Shreveport,LA,219,Shreveport,LA
-71018,19082,Springhill,LA,219,Shreveport,LA
-71019,19080,Shreveport,LA,219,Shreveport,LA
-71021,19082,Springhill,LA,219,Shreveport,LA
-71023,19080,Shreveport,LA,219,Shreveport,LA
-71024,19060,Minden,LA,219,Shreveport,LA
-71027,19080,Shreveport,LA,219,Shreveport,LA
-71028,19080,Shreveport,LA,219,Shreveport,LA
-71029,19080,Shreveport,LA,219,Shreveport,LA
-71030,19080,Shreveport,LA,219,Shreveport,LA
-71031,19091,Winnfield,LA,219,Shreveport,LA
-71032,19054,Mansfield,LA,219,Shreveport,LA
-71033,19080,Shreveport,LA,219,Shreveport,LA
-71034,19080,Shreveport,LA,219,Shreveport,LA
-71037,19080,Shreveport,LA,219,Shreveport,LA
-71038,19035,Homer,LA,219,Shreveport,LA
-71039,19080,Shreveport,LA,219,Shreveport,LA
-71040,19035,Homer,LA,219,Shreveport,LA
-71043,19088,Vivian,LA,219,Shreveport,LA
-71044,19088,Vivian,LA,219,Shreveport,LA
-71045,19080,Shreveport,LA,219,Shreveport,LA
-71046,19080,Shreveport,LA,219,Shreveport,LA
-71047,19080,Shreveport,LA,219,Shreveport,LA
-71048,19035,Homer,LA,219,Shreveport,LA
-71049,19080,Shreveport,LA,219,Shreveport,LA
-71050,19080,Shreveport,LA,219,Shreveport,LA
-71051,19080,Shreveport,LA,219,Shreveport,LA
-71052,19054,Mansfield,LA,219,Shreveport,LA
-71055,19060,Minden,LA,219,Shreveport,LA
-71058,19060,Minden,LA,219,Shreveport,LA
-71060,19080,Shreveport,LA,219,Shreveport,LA
-71061,19080,Shreveport,LA,219,Shreveport,LA
-71063,19080,Shreveport,LA,219,Shreveport,LA
-71064,19080,Shreveport,LA,219,Shreveport,LA
-71065,19080,Shreveport,LA,219,Shreveport,LA
-71066,19064,Natchitoches,LA,219,Shreveport,LA
-71067,19080,Shreveport,LA,219,Shreveport,LA
-71068,19080,Shreveport,LA,219,Shreveport,LA
-71069,19088,Vivian,LA,219,Shreveport,LA
-71070,19078,Ruston,LA,219,Shreveport,LA
-71071,19082,Springhill,LA,219,Shreveport,LA
-71072,19060,Minden,LA,219,Shreveport,LA
-71073,19080,Shreveport,LA,219,Shreveport,LA
-71075,19082,Springhill,LA,219,Shreveport,LA
-71078,19080,Shreveport,LA,219,Shreveport,LA
-71079,19035,Homer,LA,219,Shreveport,LA
-71080,19080,Shreveport,LA,219,Shreveport,LA
-71082,19088,Vivian,LA,219,Shreveport,LA
-71101,19080,Shreveport,LA,219,Shreveport,LA
-71102,19080,Shreveport,LA,219,Shreveport,LA
-71103,19080,Shreveport,LA,219,Shreveport,LA
-71104,19080,Shreveport,LA,219,Shreveport,LA
-71105,19080,Shreveport,LA,219,Shreveport,LA
-71106,19080,Shreveport,LA,219,Shreveport,LA
-71107,19080,Shreveport,LA,219,Shreveport,LA
-71108,19080,Shreveport,LA,219,Shreveport,LA
-71109,19080,Shreveport,LA,219,Shreveport,LA
-71110,19080,Shreveport,LA,219,Shreveport,LA
-71111,19080,Shreveport,LA,219,Shreveport,LA
-71112,19080,Shreveport,LA,219,Shreveport,LA
-71113,19080,Shreveport,LA,219,Shreveport,LA
-71115,19080,Shreveport,LA,219,Shreveport,LA
-71118,19080,Shreveport,LA,219,Shreveport,LA
-71119,19080,Shreveport,LA,219,Shreveport,LA
-71120,19080,Shreveport,LA,219,Shreveport,LA
-71129,19080,Shreveport,LA,219,Shreveport,LA
-71130,19080,Shreveport,LA,219,Shreveport,LA
-71133,19080,Shreveport,LA,219,Shreveport,LA
-71134,19080,Shreveport,LA,219,Shreveport,LA
-71135,19080,Shreveport,LA,219,Shreveport,LA
-71136,19080,Shreveport,LA,219,Shreveport,LA
-71137,19080,Shreveport,LA,219,Shreveport,LA
-71138,19080,Shreveport,LA,219,Shreveport,LA
-71148,19080,Shreveport,LA,219,Shreveport,LA
-71149,19080,Shreveport,LA,219,Shreveport,LA
-71150,19080,Shreveport,LA,219,Shreveport,LA
-71151,19080,Shreveport,LA,219,Shreveport,LA
-71152,19080,Shreveport,LA,219,Shreveport,LA
-71153,19080,Shreveport,LA,219,Shreveport,LA
-71154,19080,Shreveport,LA,219,Shreveport,LA
-71156,19080,Shreveport,LA,219,Shreveport,LA
-71161,19080,Shreveport,LA,219,Shreveport,LA
-71162,19080,Shreveport,LA,219,Shreveport,LA
-71163,19080,Shreveport,LA,219,Shreveport,LA
-71164,19080,Shreveport,LA,219,Shreveport,LA
-71165,19080,Shreveport,LA,219,Shreveport,LA
-71166,19080,Shreveport,LA,219,Shreveport,LA
-71171,19080,Shreveport,LA,219,Shreveport,LA
-71172,19080,Shreveport,LA,219,Shreveport,LA
-71201,19061,Monroe,LA,217,Monroe,LA
-71202,19061,Monroe,LA,217,Monroe,LA
-71203,19061,Monroe,LA,217,Monroe,LA
-71207,19061,Monroe,LA,217,Monroe,LA
-71209,19061,Monroe,LA,217,Monroe,LA
-71210,19061,Monroe,LA,217,Monroe,LA
-71211,19061,Monroe,LA,217,Monroe,LA
-71212,19061,Monroe,LA,217,Monroe,LA
-71213,19061,Monroe,LA,217,Monroe,LA
-71217,19061,Monroe,LA,217,Monroe,LA
-71218,19077,Rayville,LA,217,Monroe,LA
-71219,19092,Winnsboro,LA,217,Monroe,LA
-71220,19006,Bastrop,LA,217,Monroe,LA
-71221,19006,Bastrop,LA,217,Monroe,LA
-71222,19008,Bernice,LA,219,Shreveport,LA
-71223,19006,Bastrop,LA,217,Monroe,LA
-71225,19090,West Monroe,LA,217,Monroe,LA
-71226,19078,Ruston,LA,219,Shreveport,LA
-71227,19078,Ruston,LA,219,Shreveport,LA
-71229,19006,Bastrop,LA,217,Monroe,LA
-71230,19092,Winnsboro,LA,217,Monroe,LA
-71232,19022,Delhi,LA,217,Monroe,LA
-71233,19085,Tallulah,LA,259,Jackson,MS
-71234,19090,West Monroe,LA,217,Monroe,LA
-71235,19078,Ruston,LA,219,Shreveport,LA
-71237,19022,Delhi,LA,217,Monroe,LA
-71238,19090,West Monroe,LA,217,Monroe,LA
-71240,19061,Monroe,LA,217,Monroe,LA
-71241,19061,Monroe,LA,217,Monroe,LA
-71242,19061,Monroe,LA,217,Monroe,LA
-71243,19092,Winnsboro,LA,217,Monroe,LA
-71245,19078,Ruston,LA,219,Shreveport,LA
-71247,19078,Ruston,LA,219,Shreveport,LA
-71249,19092,Winnsboro,LA,217,Monroe,LA
-71250,19006,Bastrop,LA,217,Monroe,LA
-71251,19078,Ruston,LA,219,Shreveport,LA
-71253,19061,Monroe,LA,217,Monroe,LA
-71254,19061,Monroe,LA,217,Monroe,LA
-71256,19008,Bernice,LA,219,Shreveport,LA
-71259,19077,Rayville,LA,217,Monroe,LA
-71260,19061,Monroe,LA,217,Monroe,LA
-71261,19061,Monroe,LA,217,Monroe,LA
-71263,19061,Monroe,LA,217,Monroe,LA
-71264,19061,Monroe,LA,217,Monroe,LA
-71266,19022,Delhi,LA,217,Monroe,LA
-71268,19078,Ruston,LA,219,Shreveport,LA
-71269,19077,Rayville,LA,217,Monroe,LA
-71270,19078,Ruston,LA,219,Shreveport,LA
-71272,19078,Ruston,LA,219,Shreveport,LA
-71273,19078,Ruston,LA,219,Shreveport,LA
-71275,19078,Ruston,LA,219,Shreveport,LA
-71276,25087,Vicksburg,MS,259,Jackson,MS
-71277,19008,Bernice,LA,219,Shreveport,LA
-71279,19077,Rayville,LA,217,Monroe,LA
-71280,19061,Monroe,LA,217,Monroe,LA
-71281,19061,Monroe,LA,217,Monroe,LA
-71282,19085,Tallulah,LA,259,Jackson,MS
-71284,19085,Tallulah,LA,259,Jackson,MS
-71286,19022,Delhi,LA,217,Monroe,LA
-71291,19090,West Monroe,LA,217,Monroe,LA
-71292,19090,West Monroe,LA,217,Monroe,LA
-71294,19090,West Monroe,LA,217,Monroe,LA
-71295,19092,Winnsboro,LA,217,Monroe,LA
-71301,19002,Alexandria,LA,209,Alexandria,LA
-71302,19002,Alexandria,LA,209,Alexandria,LA
-71303,19002,Alexandria,LA,209,Alexandria,LA
-71306,19002,Alexandria,LA,209,Alexandria,LA
-71307,19002,Alexandria,LA,209,Alexandria,LA
-71309,19002,Alexandria,LA,209,Alexandria,LA
-71315,19002,Alexandria,LA,209,Alexandria,LA
-71316,19002,Alexandria,LA,209,Alexandria,LA
-71320,19002,Alexandria,LA,209,Alexandria,LA
-71322,19012,Bunkie,LA,209,Alexandria,LA
-71323,19002,Alexandria,LA,209,Alexandria,LA
-71324,19092,Winnsboro,LA,217,Monroe,LA
-71325,19002,Alexandria,LA,209,Alexandria,LA
-71326,19026,Ferriday,LA,209,Alexandria,LA
-71327,19002,Alexandria,LA,209,Alexandria,LA
-71328,19002,Alexandria,LA,209,Alexandria,LA
-71329,19002,Alexandria,LA,209,Alexandria,LA
-71330,19002,Alexandria,LA,209,Alexandria,LA
-71331,19002,Alexandria,LA,209,Alexandria,LA
-71333,19012,Bunkie,LA,209,Alexandria,LA
-71334,19026,Ferriday,LA,209,Alexandria,LA
-71336,19092,Winnsboro,LA,217,Monroe,LA
-71339,19002,Alexandria,LA,209,Alexandria,LA
-71340,19039,Jena,LA,209,Alexandria,LA
-71341,19002,Alexandria,LA,209,Alexandria,LA
-71342,19039,Jena,LA,209,Alexandria,LA
-71343,19002,Alexandria,LA,209,Alexandria,LA
-71345,19071,Opelousas,LA,213,Lafayette,LA
-71346,19002,Alexandria,LA,209,Alexandria,LA
-71348,19002,Alexandria,LA,209,Alexandria,LA
-71350,19002,Alexandria,LA,209,Alexandria,LA
-71351,19002,Alexandria,LA,209,Alexandria,LA
-71353,19071,Opelousas,LA,213,Lafayette,LA
-71354,25059,Natchez,MS,259,Jackson,MS
-71355,19002,Alexandria,LA,209,Alexandria,LA
-71356,19012,Bunkie,LA,209,Alexandria,LA
-71357,19092,Winnsboro,LA,217,Monroe,LA
-71358,19071,Opelousas,LA,213,Lafayette,LA
-71359,19002,Alexandria,LA,209,Alexandria,LA
-71360,19002,Alexandria,LA,209,Alexandria,LA
-71361,19002,Alexandria,LA,209,Alexandria,LA
-71362,19002,Alexandria,LA,209,Alexandria,LA
-71363,19039,Jena,LA,209,Alexandria,LA
-71365,19002,Alexandria,LA,209,Alexandria,LA
-71366,19026,Ferriday,LA,209,Alexandria,LA
-71367,19002,Alexandria,LA,209,Alexandria,LA
-71368,19026,Ferriday,LA,209,Alexandria,LA
-71369,19002,Alexandria,LA,209,Alexandria,LA
-71371,19039,Jena,LA,209,Alexandria,LA
-71373,25059,Natchez,MS,259,Jackson,MS
-71375,19026,Ferriday,LA,209,Alexandria,LA
-71377,19026,Ferriday,LA,209,Alexandria,LA
-71378,19092,Winnsboro,LA,217,Monroe,LA
-71401,19039,Jena,LA,209,Alexandria,LA
-71403,19050,Leesville,LA,209,Alexandria,LA
-71404,19091,Winnfield,LA,219,Shreveport,LA
-71405,19002,Alexandria,LA,209,Alexandria,LA
-71406,19055,Many,LA,219,Shreveport,LA
-71407,19002,Alexandria,LA,209,Alexandria,LA
-71409,19002,Alexandria,LA,209,Alexandria,LA
-71410,19091,Winnfield,LA,219,Shreveport,LA
-71411,19064,Natchitoches,LA,219,Shreveport,LA
-71414,19064,Natchitoches,LA,219,Shreveport,LA
-71415,19016,Columbia,LA,217,Monroe,LA
-71416,19002,Alexandria,LA,209,Alexandria,LA
-71417,19002,Alexandria,LA,209,Alexandria,LA
-71418,19016,Columbia,LA,217,Monroe,LA
-71419,19080,Shreveport,LA,219,Shreveport,LA
-71422,19091,Winnfield,LA,219,Shreveport,LA
-71423,19002,Alexandria,LA,209,Alexandria,LA
-71424,19002,Alexandria,LA,209,Alexandria,LA
-71425,19039,Jena,LA,209,Alexandria,LA
-71426,19055,Many,LA,219,Shreveport,LA
-71427,19002,Alexandria,LA,209,Alexandria,LA
-71428,19064,Natchitoches,LA,219,Shreveport,LA
-71429,19080,Shreveport,LA,219,Shreveport,LA
-71430,19002,Alexandria,LA,209,Alexandria,LA
-71431,19002,Alexandria,LA,209,Alexandria,LA
-71432,19002,Alexandria,LA,209,Alexandria,LA
-71433,19002,Alexandria,LA,209,Alexandria,LA
-71434,19064,Natchitoches,LA,219,Shreveport,LA
-71435,19016,Columbia,LA,217,Monroe,LA
-71438,19002,Alexandria,LA,209,Alexandria,LA
-71439,19050,Leesville,LA,209,Alexandria,LA
-71440,19091,Winnfield,LA,219,Shreveport,LA
-71441,19016,Columbia,LA,217,Monroe,LA
-71443,19050,Leesville,LA,209,Alexandria,LA
-71446,19050,Leesville,LA,209,Alexandria,LA
-71447,19002,Alexandria,LA,209,Alexandria,LA
-71448,19002,Alexandria,LA,209,Alexandria,LA
-71449,19080,Shreveport,LA,219,Shreveport,LA
-71450,19080,Shreveport,LA,219,Shreveport,LA
-71452,19064,Natchitoches,LA,219,Shreveport,LA
-71454,19002,Alexandria,LA,209,Alexandria,LA
-71455,19064,Natchitoches,LA,219,Shreveport,LA
-71456,19064,Natchitoches,LA,219,Shreveport,LA
-71457,19064,Natchitoches,LA,219,Shreveport,LA
-71458,19064,Natchitoches,LA,219,Shreveport,LA
-71459,19021,De Ridder,LA,214,Lake Charles,LA
-71460,19080,Shreveport,LA,219,Shreveport,LA
-71461,19050,Leesville,LA,209,Alexandria,LA
-71462,19080,Shreveport,LA,219,Shreveport,LA
-71463,19069,Oakdale,LA,209,Alexandria,LA
-71465,19070,Olla,LA,209,Alexandria,LA
-71466,19002,Alexandria,LA,209,Alexandria,LA
-71467,19002,Alexandria,LA,209,Alexandria,LA
-71468,19064,Natchitoches,LA,219,Shreveport,LA
-71469,19064,Natchitoches,LA,219,Shreveport,LA
-71471,19064,Natchitoches,LA,219,Shreveport,LA
-71472,19002,Alexandria,LA,209,Alexandria,LA
-71473,19091,Winnfield,LA,219,Shreveport,LA
-71474,19050,Leesville,LA,209,Alexandria,LA
-71475,19050,Leesville,LA,209,Alexandria,LA
-71477,19002,Alexandria,LA,209,Alexandria,LA
-71479,19070,Olla,LA,209,Alexandria,LA
-71480,19070,Olla,LA,209,Alexandria,LA
-71483,19091,Winnfield,LA,219,Shreveport,LA
-71485,19002,Alexandria,LA,209,Alexandria,LA
-71486,19080,Shreveport,LA,219,Shreveport,LA
-71496,19050,Leesville,LA,209,Alexandria,LA
-71497,19064,Natchitoches,LA,219,Shreveport,LA
-71601,4060,Pine Bluff,AR,19,Little Rock,AR
-71602,4060,Pine Bluff,AR,19,Little Rock,AR
-71603,4060,Pine Bluff,AR,19,Little Rock,AR
-71611,4060,Pine Bluff,AR,19,Little Rock,AR
-71612,4060,Pine Bluff,AR,19,Little Rock,AR
-71613,4060,Pine Bluff,AR,19,Little Rock,AR
-71630,4045,McGehee,AR,19,Little Rock,AR
-71631,4074,Warren,AR,19,Little Rock,AR
-71635,4017,Crossett,AR,19,Little Rock,AR
-71638,4045,McGehee,AR,19,Little Rock,AR
-71639,4023,Dumas,AR,19,Little Rock,AR
-71640,4040,Lake Village,AR,19,Little Rock,AR
-71642,4017,Crossett,AR,19,Little Rock,AR
-71643,4060,Pine Bluff,AR,19,Little Rock,AR
-71644,4060,Pine Bluff,AR,19,Little Rock,AR
-71646,4017,Crossett,AR,19,Little Rock,AR
-71647,4074,Warren,AR,19,Little Rock,AR
-71651,4074,Warren,AR,19,Little Rock,AR
-71652,4027,Fordyce,AR,19,Little Rock,AR
-71653,4040,Lake Village,AR,19,Little Rock,AR
-71654,4045,McGehee,AR,19,Little Rock,AR
-71655,4047,Monticello,AR,19,Little Rock,AR
-71656,4047,Monticello,AR,19,Little Rock,AR
-71657,4047,Monticello,AR,19,Little Rock,AR
-71658,4040,Lake Village,AR,19,Little Rock,AR
-71659,4060,Pine Bluff,AR,19,Little Rock,AR
-71660,4074,Warren,AR,19,Little Rock,AR
-71661,4040,Lake Village,AR,19,Little Rock,AR
-71662,4023,Dumas,AR,19,Little Rock,AR
-71663,4040,Lake Village,AR,19,Little Rock,AR
-71665,4060,Pine Bluff,AR,19,Little Rock,AR
-71666,4045,McGehee,AR,19,Little Rock,AR
-71667,4060,Pine Bluff,AR,19,Little Rock,AR
-71670,4045,McGehee,AR,19,Little Rock,AR
-71671,4074,Warren,AR,19,Little Rock,AR
-71674,4023,Dumas,AR,19,Little Rock,AR
-71675,4047,Monticello,AR,19,Little Rock,AR
-71676,4040,Lake Village,AR,19,Little Rock,AR
-71677,4023,Dumas,AR,19,Little Rock,AR
-71678,4060,Pine Bluff,AR,19,Little Rock,AR
-71701,4011,Camden,AR,19,Little Rock,AR
-71711,4011,Camden,AR,19,Little Rock,AR
-71720,4011,Camden,AR,19,Little Rock,AR
-71721,4001,Arkadelphia,AR,19,Little Rock,AR
-71722,4062,Prescott,AR,22,Texarkana,AR
-71724,4024,El Dorado,AR,19,Little Rock,AR
-71725,4027,Fordyce,AR,19,Little Rock,AR
-71726,4011,Camden,AR,19,Little Rock,AR
-71728,4001,Arkadelphia,AR,19,Little Rock,AR
-71730,4024,El Dorado,AR,19,Little Rock,AR
-71731,4024,El Dorado,AR,19,Little Rock,AR
-71740,4042,Magnolia,AR,19,Little Rock,AR
-71742,4027,Fordyce,AR,19,Little Rock,AR
-71743,4001,Arkadelphia,AR,19,Little Rock,AR
-71744,4024,El Dorado,AR,19,Little Rock,AR
-71745,4024,El Dorado,AR,19,Little Rock,AR
-71747,4024,El Dorado,AR,19,Little Rock,AR
-71748,4027,Fordyce,AR,19,Little Rock,AR
-71749,4024,El Dorado,AR,19,Little Rock,AR
-71750,4024,El Dorado,AR,19,Little Rock,AR
-71751,4024,El Dorado,AR,19,Little Rock,AR
-71752,4042,Magnolia,AR,19,Little Rock,AR
-71753,4042,Magnolia,AR,19,Little Rock,AR
-71754,4042,Magnolia,AR,19,Little Rock,AR
-71758,4024,El Dorado,AR,19,Little Rock,AR
-71759,4024,El Dorado,AR,19,Little Rock,AR
-71762,4024,El Dorado,AR,19,Little Rock,AR
-71763,4001,Arkadelphia,AR,19,Little Rock,AR
-71764,4011,Camden,AR,19,Little Rock,AR
-71765,4024,El Dorado,AR,19,Little Rock,AR
-71766,4027,Fordyce,AR,19,Little Rock,AR
-71770,4042,Magnolia,AR,19,Little Rock,AR
-71772,4001,Arkadelphia,AR,19,Little Rock,AR
-71801,4034,Hope,AR,22,Texarkana,AR
-71802,4034,Hope,AR,22,Texarkana,AR
-71820,4002,Ashdown,AR,22,Texarkana,AR
-71822,4002,Ashdown,AR,22,Texarkana,AR
-71823,4020,De Queen,AR,22,Texarkana,AR
-71825,4034,Hope,AR,22,Texarkana,AR
-71826,4070,Texarkana,AR,22,Texarkana,AR
-71827,4042,Magnolia,AR,19,Little Rock,AR
-71828,4034,Hope,AR,22,Texarkana,AR
-71831,4052,Nashville,AR,22,Texarkana,AR
-71832,4020,De Queen,AR,22,Texarkana,AR
-71833,4052,Nashville,AR,22,Texarkana,AR
-71834,4070,Texarkana,AR,22,Texarkana,AR
-71835,4034,Hope,AR,22,Texarkana,AR
-71836,45253,Texarkana,TX,22,Texarkana,AR
-71837,4070,Texarkana,AR,22,Texarkana,AR
-71838,4034,Hope,AR,22,Texarkana,AR
-71839,4070,Texarkana,AR,22,Texarkana,AR
-71840,4070,Texarkana,AR,22,Texarkana,AR
-71841,4020,De Queen,AR,22,Texarkana,AR
-71842,4020,De Queen,AR,22,Texarkana,AR
-71845,4070,Texarkana,AR,22,Texarkana,AR
-71846,4020,De Queen,AR,22,Texarkana,AR
-71847,4034,Hope,AR,22,Texarkana,AR
-71851,4052,Nashville,AR,22,Texarkana,AR
-71852,4052,Nashville,AR,22,Texarkana,AR
-71853,45253,Texarkana,TX,22,Texarkana,AR
-71854,4070,Texarkana,AR,22,Texarkana,AR
-71855,4052,Nashville,AR,22,Texarkana,AR
-71857,4062,Prescott,AR,22,Texarkana,AR
-71858,4034,Hope,AR,22,Texarkana,AR
-71859,4052,Nashville,AR,22,Texarkana,AR
-71860,4042,Magnolia,AR,19,Little Rock,AR
-71861,19082,Springhill,LA,219,Shreveport,LA
-71862,4034,Hope,AR,22,Texarkana,AR
-71864,4034,Hope,AR,22,Texarkana,AR
-71865,4002,Ashdown,AR,22,Texarkana,AR
-71866,4002,Ashdown,AR,22,Texarkana,AR
-71901,4035,Hot Springs,AR,19,Little Rock,AR
-71902,4035,Hot Springs,AR,19,Little Rock,AR
-71903,4035,Hot Springs,AR,19,Little Rock,AR
-71909,4035,Hot Springs,AR,19,Little Rock,AR
-71910,4035,Hot Springs,AR,19,Little Rock,AR
-71913,4035,Hot Springs,AR,19,Little Rock,AR
-71914,4035,Hot Springs,AR,19,Little Rock,AR
-71920,4035,Hot Springs,AR,19,Little Rock,AR
-71921,4035,Hot Springs,AR,19,Little Rock,AR
-71922,4051,Murfreesboro,AR,19,Little Rock,AR
-71923,4001,Arkadelphia,AR,19,Little Rock,AR
-71929,4035,Hot Springs,AR,19,Little Rock,AR
-71932,4046,Mena,AR,16,Fort Smith,AR
-71933,4035,Hot Springs,AR,19,Little Rock,AR
-71935,4035,Hot Springs,AR,19,Little Rock,AR
-71937,4046,Mena,AR,16,Fort Smith,AR
-71940,4051,Murfreesboro,AR,19,Little Rock,AR
-71941,4043,Malvern,AR,19,Little Rock,AR
-71942,4043,Malvern,AR,19,Little Rock,AR
-71943,4035,Hot Springs,AR,19,Little Rock,AR
-71944,4020,De Queen,AR,22,Texarkana,AR
-71945,4046,Mena,AR,16,Fort Smith,AR
-71949,4035,Hot Springs,AR,19,Little Rock,AR
-71950,4051,Murfreesboro,AR,19,Little Rock,AR
-71952,4035,Hot Springs,AR,19,Little Rock,AR
-71953,4046,Mena,AR,16,Fort Smith,AR
-71956,4035,Hot Springs,AR,19,Little Rock,AR
-71957,4035,Hot Springs,AR,19,Little Rock,AR
-71958,4051,Murfreesboro,AR,19,Little Rock,AR
-71959,4052,Nashville,AR,22,Texarkana,AR
-71960,4035,Hot Springs,AR,19,Little Rock,AR
-71961,4035,Hot Springs,AR,19,Little Rock,AR
-71962,4001,Arkadelphia,AR,19,Little Rock,AR
-71964,4035,Hot Springs,AR,19,Little Rock,AR
-71965,4035,Hot Springs,AR,19,Little Rock,AR
-71966,4035,Hot Springs,AR,19,Little Rock,AR
-71968,4035,Hot Springs,AR,19,Little Rock,AR
-71969,4035,Hot Springs,AR,19,Little Rock,AR
-71970,4035,Hot Springs,AR,19,Little Rock,AR
-71971,4052,Nashville,AR,22,Texarkana,AR
-71972,4046,Mena,AR,16,Fort Smith,AR
-71973,4020,De Queen,AR,22,Texarkana,AR
-71998,4001,Arkadelphia,AR,19,Little Rock,AR
-71999,4001,Arkadelphia,AR,19,Little Rock,AR
-72001,4048,Morrilton,AR,19,Little Rock,AR
-72002,4041,Little Rock,AR,19,Little Rock,AR
-72003,4069,Stuttgart,AR,19,Little Rock,AR
-72004,4060,Pine Bluff,AR,19,Little Rock,AR
-72005,4053,Newport,AR,19,Little Rock,AR
-72006,4066,Searcy,AR,19,Little Rock,AR
-72007,4038,Jacksonville,AR,19,Little Rock,AR
-72010,4066,Searcy,AR,19,Little Rock,AR
-72011,4004,Benton,AR,19,Little Rock,AR
-72012,4066,Searcy,AR,19,Little Rock,AR
-72013,4041,Little Rock,AR,19,Little Rock,AR
-72014,4053,Newport,AR,19,Little Rock,AR
-72015,4004,Benton,AR,19,Little Rock,AR
-72016,4041,Little Rock,AR,19,Little Rock,AR
-72017,4041,Little Rock,AR,19,Little Rock,AR
-72018,4004,Benton,AR,19,Little Rock,AR
-72019,4004,Benton,AR,19,Little Rock,AR
-72020,4066,Searcy,AR,19,Little Rock,AR
-72021,4069,Stuttgart,AR,19,Little Rock,AR
-72022,4004,Benton,AR,19,Little Rock,AR
-72023,4038,Jacksonville,AR,19,Little Rock,AR
-72024,4041,Little Rock,AR,19,Little Rock,AR
-72025,4041,Little Rock,AR,19,Little Rock,AR
-72026,4069,Stuttgart,AR,19,Little Rock,AR
-72027,4041,Little Rock,AR,19,Little Rock,AR
-72028,4041,Little Rock,AR,19,Little Rock,AR
-72029,4069,Stuttgart,AR,19,Little Rock,AR
-72030,4041,Little Rock,AR,19,Little Rock,AR
-72031,4041,Little Rock,AR,19,Little Rock,AR
-72032,4015,Conway,AR,19,Little Rock,AR
-72033,4015,Conway,AR,19,Little Rock,AR
-72034,4015,Conway,AR,19,Little Rock,AR
-72035,4015,Conway,AR,19,Little Rock,AR
-72036,4066,Searcy,AR,19,Little Rock,AR
-72037,4041,Little Rock,AR,19,Little Rock,AR
-72038,4069,Stuttgart,AR,19,Little Rock,AR
-72039,4041,Little Rock,AR,19,Little Rock,AR
-72040,4066,Searcy,AR,19,Little Rock,AR
-72041,4041,Little Rock,AR,19,Little Rock,AR
-72042,4021,De Witt,AR,19,Little Rock,AR
-72043,4053,Newport,AR,19,Little Rock,AR
-72044,4041,Little Rock,AR,19,Little Rock,AR
-72045,4066,Searcy,AR,19,Little Rock,AR
-72046,4041,Little Rock,AR,19,Little Rock,AR
-72047,4015,Conway,AR,19,Little Rock,AR
-72048,4021,De Witt,AR,19,Little Rock,AR
-72051,4050,Mountain View,AR,19,Little Rock,AR
-72052,4066,Searcy,AR,19,Little Rock,AR
-72053,4041,Little Rock,AR,19,Little Rock,AR
-72055,4021,De Witt,AR,19,Little Rock,AR
-72057,4060,Pine Bluff,AR,19,Little Rock,AR
-72058,4015,Conway,AR,19,Little Rock,AR
-72059,4066,Searcy,AR,19,Little Rock,AR
-72060,4066,Searcy,AR,19,Little Rock,AR
-72061,4015,Conway,AR,19,Little Rock,AR
-72063,4048,Morrilton,AR,19,Little Rock,AR
-72064,4041,Little Rock,AR,19,Little Rock,AR
-72065,4004,Benton,AR,19,Little Rock,AR
-72066,4041,Little Rock,AR,19,Little Rock,AR
-72067,4041,Little Rock,AR,19,Little Rock,AR
-72068,4066,Searcy,AR,19,Little Rock,AR
-72069,4069,Stuttgart,AR,19,Little Rock,AR
-72070,4041,Little Rock,AR,19,Little Rock,AR
-72072,4041,Little Rock,AR,19,Little Rock,AR
-72073,4069,Stuttgart,AR,19,Little Rock,AR
-72074,4066,Searcy,AR,19,Little Rock,AR
-72075,4053,Newport,AR,19,Little Rock,AR
-72076,4038,Jacksonville,AR,19,Little Rock,AR
-72078,4038,Jacksonville,AR,19,Little Rock,AR
-72079,4041,Little Rock,AR,19,Little Rock,AR
-72080,4041,Little Rock,AR,19,Little Rock,AR
-72081,4066,Searcy,AR,19,Little Rock,AR
-72082,4066,Searcy,AR,19,Little Rock,AR
-72083,4041,Little Rock,AR,19,Little Rock,AR
-72084,4043,Malvern,AR,19,Little Rock,AR
-72085,4066,Searcy,AR,19,Little Rock,AR
-72086,4041,Little Rock,AR,19,Little Rock,AR
-72087,4004,Benton,AR,19,Little Rock,AR
-72088,4041,Little Rock,AR,19,Little Rock,AR
-72089,4004,Benton,AR,19,Little Rock,AR
-72099,4038,Jacksonville,AR,19,Little Rock,AR
-72101,4066,Searcy,AR,19,Little Rock,AR
-72102,4066,Searcy,AR,19,Little Rock,AR
-72103,4041,Little Rock,AR,19,Little Rock,AR
-72104,4043,Malvern,AR,19,Little Rock,AR
-72106,4015,Conway,AR,19,Little Rock,AR
-72107,4048,Morrilton,AR,19,Little Rock,AR
-72108,4069,Stuttgart,AR,19,Little Rock,AR
-72110,4048,Morrilton,AR,19,Little Rock,AR
-72111,4015,Conway,AR,19,Little Rock,AR
-72112,4053,Newport,AR,19,Little Rock,AR
-72113,4041,Little Rock,AR,19,Little Rock,AR
-72114,4054,North Little Rock,AR,19,Little Rock,AR
-72115,4054,North Little Rock,AR,19,Little Rock,AR
-72116,4054,North Little Rock,AR,19,Little Rock,AR
-72117,4054,North Little Rock,AR,19,Little Rock,AR
-72118,4054,North Little Rock,AR,19,Little Rock,AR
-72119,4054,North Little Rock,AR,19,Little Rock,AR
-72120,4054,North Little Rock,AR,19,Little Rock,AR
-72121,4066,Searcy,AR,19,Little Rock,AR
-72122,4041,Little Rock,AR,19,Little Rock,AR
-72123,4066,Searcy,AR,19,Little Rock,AR
-72124,4054,North Little Rock,AR,19,Little Rock,AR
-72125,4048,Morrilton,AR,19,Little Rock,AR
-72126,4041,Little Rock,AR,19,Little Rock,AR
-72127,4048,Morrilton,AR,19,Little Rock,AR
-72128,4043,Malvern,AR,19,Little Rock,AR
-72129,4041,Little Rock,AR,19,Little Rock,AR
-72130,4032,Heber Springs,AR,19,Little Rock,AR
-72131,4066,Searcy,AR,19,Little Rock,AR
-72132,4041,Little Rock,AR,19,Little Rock,AR
-72133,4069,Stuttgart,AR,19,Little Rock,AR
-72134,4069,Stuttgart,AR,19,Little Rock,AR
-72135,4041,Little Rock,AR,19,Little Rock,AR
-72136,4066,Searcy,AR,19,Little Rock,AR
-72137,4066,Searcy,AR,19,Little Rock,AR
-72139,4066,Searcy,AR,19,Little Rock,AR
-72140,4021,De Witt,AR,19,Little Rock,AR
-72141,4041,Little Rock,AR,19,Little Rock,AR
-72142,4041,Little Rock,AR,19,Little Rock,AR
-72143,4066,Searcy,AR,19,Little Rock,AR
-72145,4066,Searcy,AR,19,Little Rock,AR
-72149,4066,Searcy,AR,19,Little Rock,AR
-72150,4041,Little Rock,AR,19,Little Rock,AR
-72152,4060,Pine Bluff,AR,19,Little Rock,AR
-72153,4041,Little Rock,AR,19,Little Rock,AR
-72156,4048,Morrilton,AR,19,Little Rock,AR
-72157,4048,Morrilton,AR,19,Little Rock,AR
-72158,4004,Benton,AR,19,Little Rock,AR
-72160,4069,Stuttgart,AR,19,Little Rock,AR
-72164,4041,Little Rock,AR,19,Little Rock,AR
-72165,4053,Newport,AR,19,Little Rock,AR
-72166,4021,De Witt,AR,19,Little Rock,AR
-72167,4004,Benton,AR,19,Little Rock,AR
-72168,4041,Little Rock,AR,19,Little Rock,AR
-72169,4053,Newport,AR,19,Little Rock,AR
-72170,4069,Stuttgart,AR,19,Little Rock,AR
-72173,4015,Conway,AR,19,Little Rock,AR
-72175,4060,Pine Bluff,AR,19,Little Rock,AR
-72176,4038,Jacksonville,AR,19,Little Rock,AR
-72178,4066,Searcy,AR,19,Little Rock,AR
-72179,4066,Searcy,AR,19,Little Rock,AR
-72180,4041,Little Rock,AR,19,Little Rock,AR
-72181,4015,Conway,AR,19,Little Rock,AR
-72182,4060,Pine Bluff,AR,19,Little Rock,AR
-72183,4041,Little Rock,AR,19,Little Rock,AR
-72190,4054,North Little Rock,AR,19,Little Rock,AR
-72199,4054,North Little Rock,AR,19,Little Rock,AR
-72201,4041,Little Rock,AR,19,Little Rock,AR
-72202,4041,Little Rock,AR,19,Little Rock,AR
-72203,4041,Little Rock,AR,19,Little Rock,AR
-72204,4041,Little Rock,AR,19,Little Rock,AR
-72205,4041,Little Rock,AR,19,Little Rock,AR
-72206,4041,Little Rock,AR,19,Little Rock,AR
-72207,4041,Little Rock,AR,19,Little Rock,AR
-72209,4041,Little Rock,AR,19,Little Rock,AR
-72210,4041,Little Rock,AR,19,Little Rock,AR
-72211,4041,Little Rock,AR,19,Little Rock,AR
-72212,4041,Little Rock,AR,19,Little Rock,AR
-72214,4041,Little Rock,AR,19,Little Rock,AR
-72215,4041,Little Rock,AR,19,Little Rock,AR
-72216,4041,Little Rock,AR,19,Little Rock,AR
-72217,4041,Little Rock,AR,19,Little Rock,AR
-72219,4041,Little Rock,AR,19,Little Rock,AR
-72221,4041,Little Rock,AR,19,Little Rock,AR
-72222,4041,Little Rock,AR,19,Little Rock,AR
-72223,4041,Little Rock,AR,19,Little Rock,AR
-72225,4041,Little Rock,AR,19,Little Rock,AR
-72227,4041,Little Rock,AR,19,Little Rock,AR
-72231,4054,North Little Rock,AR,19,Little Rock,AR
-72255,4041,Little Rock,AR,19,Little Rock,AR
-72260,4041,Little Rock,AR,19,Little Rock,AR
-72295,4041,Little Rock,AR,19,Little Rock,AR
-72301,4075,West Memphis,AR,379,Memphis,TN
-72303,4075,West Memphis,AR,379,Memphis,TN
-72310,44059,Memphis,TN,379,Memphis,TN
-72311,4028,Forrest City,AR,379,Memphis,TN
-72312,4033,Helena,AR,379,Memphis,TN
-72313,4055,Osceola,AR,379,Memphis,TN
-72315,4007,Blytheville,AR,379,Memphis,TN
-72316,4007,Blytheville,AR,379,Memphis,TN
-72319,4007,Blytheville,AR,379,Memphis,TN
-72320,4028,Forrest City,AR,379,Memphis,TN
-72321,4055,Osceola,AR,379,Memphis,TN
-72322,4076,Wynne,AR,379,Memphis,TN
-72324,4076,Wynne,AR,379,Memphis,TN
-72325,4075,West Memphis,AR,379,Memphis,TN
-72326,4076,Wynne,AR,379,Memphis,TN
-72327,4075,West Memphis,AR,379,Memphis,TN
-72328,4033,Helena,AR,379,Memphis,TN
-72329,44059,Memphis,TN,379,Memphis,TN
-72330,4055,Osceola,AR,379,Memphis,TN
-72331,4075,West Memphis,AR,379,Memphis,TN
-72332,4075,West Memphis,AR,379,Memphis,TN
-72333,4033,Helena,AR,379,Memphis,TN
-72335,4028,Forrest City,AR,379,Memphis,TN
-72336,4028,Forrest City,AR,379,Memphis,TN
-72338,4055,Osceola,AR,379,Memphis,TN
-72339,4075,West Memphis,AR,379,Memphis,TN
-72340,4028,Forrest City,AR,379,Memphis,TN
-72341,4028,Forrest City,AR,379,Memphis,TN
-72342,4033,Helena,AR,379,Memphis,TN
-72346,4075,West Memphis,AR,379,Memphis,TN
-72347,4039,Jonesboro,AR,18,Jonesboro,AR
-72348,4075,West Memphis,AR,379,Memphis,TN
-72350,4055,Osceola,AR,379,Memphis,TN
-72351,4055,Osceola,AR,379,Memphis,TN
-72352,4033,Helena,AR,379,Memphis,TN
-72353,4033,Helena,AR,379,Memphis,TN
-72354,4039,Jonesboro,AR,18,Jonesboro,AR
-72355,4033,Helena,AR,379,Memphis,TN
-72358,4055,Osceola,AR,379,Memphis,TN
-72359,4028,Forrest City,AR,379,Memphis,TN
-72360,4028,Forrest City,AR,379,Memphis,TN
-72364,4075,West Memphis,AR,379,Memphis,TN
-72365,4039,Jonesboro,AR,18,Jonesboro,AR
-72366,4033,Helena,AR,379,Memphis,TN
-72367,4033,Helena,AR,379,Memphis,TN
-72368,4028,Forrest City,AR,379,Memphis,TN
-72369,4033,Helena,AR,379,Memphis,TN
-72370,4055,Osceola,AR,379,Memphis,TN
-72372,4028,Forrest City,AR,379,Memphis,TN
-72373,4075,West Memphis,AR,379,Memphis,TN
-72374,4033,Helena,AR,379,Memphis,TN
-72376,4075,West Memphis,AR,379,Memphis,TN
-72377,4039,Jonesboro,AR,18,Jonesboro,AR
-72379,4033,Helena,AR,379,Memphis,TN
-72383,4033,Helena,AR,379,Memphis,TN
-72384,4075,West Memphis,AR,379,Memphis,TN
-72386,4075,West Memphis,AR,379,Memphis,TN
-72387,4076,Wynne,AR,379,Memphis,TN
-72389,4033,Helena,AR,379,Memphis,TN
-72390,4033,Helena,AR,379,Memphis,TN
-72391,4055,Osceola,AR,379,Memphis,TN
-72392,4028,Forrest City,AR,379,Memphis,TN
-72394,4075,West Memphis,AR,379,Memphis,TN
-72395,4055,Osceola,AR,379,Memphis,TN
-72396,4076,Wynne,AR,379,Memphis,TN
-72401,4039,Jonesboro,AR,18,Jonesboro,AR
-72402,4039,Jonesboro,AR,18,Jonesboro,AR
-72403,4039,Jonesboro,AR,18,Jonesboro,AR
-72404,4039,Jonesboro,AR,18,Jonesboro,AR
-72410,4039,Jonesboro,AR,18,Jonesboro,AR
-72411,4039,Jonesboro,AR,18,Jonesboro,AR
-72412,4057,Paragould,AR,18,Jonesboro,AR
-72413,4061,Pocahontas,AR,18,Jonesboro,AR
-72414,4039,Jonesboro,AR,18,Jonesboro,AR
-72415,4039,Jonesboro,AR,18,Jonesboro,AR
-72416,4039,Jonesboro,AR,18,Jonesboro,AR
-72417,4039,Jonesboro,AR,18,Jonesboro,AR
-72419,4039,Jonesboro,AR,18,Jonesboro,AR
-72421,4039,Jonesboro,AR,18,Jonesboro,AR
-72422,26071,Poplar Bluff,MO,273,St. Louis,MO
-72424,26071,Poplar Bluff,MO,273,St. Louis,MO
-72425,4039,Jonesboro,AR,18,Jonesboro,AR
-72426,4007,Blytheville,AR,379,Memphis,TN
-72427,4039,Jonesboro,AR,18,Jonesboro,AR
-72428,4055,Osceola,AR,379,Memphis,TN
-72429,4039,Jonesboro,AR,18,Jonesboro,AR
-72430,4059,Piggott,AR,18,Jonesboro,AR
-72431,4053,Newport,AR,19,Little Rock,AR
-72432,4039,Jonesboro,AR,18,Jonesboro,AR
-72433,4039,Jonesboro,AR,18,Jonesboro,AR
-72434,4039,Jonesboro,AR,18,Jonesboro,AR
-72435,4057,Paragould,AR,18,Jonesboro,AR
-72436,4057,Paragould,AR,18,Jonesboro,AR
-72437,4039,Jonesboro,AR,18,Jonesboro,AR
-72438,4039,Jonesboro,AR,18,Jonesboro,AR
-72440,4039,Jonesboro,AR,18,Jonesboro,AR
-72441,4059,Piggott,AR,18,Jonesboro,AR
-72442,4039,Jonesboro,AR,18,Jonesboro,AR
-72443,4057,Paragould,AR,18,Jonesboro,AR
-72444,4061,Pocahontas,AR,18,Jonesboro,AR
-72445,4039,Jonesboro,AR,18,Jonesboro,AR
-72447,4039,Jonesboro,AR,18,Jonesboro,AR
-72449,4061,Pocahontas,AR,18,Jonesboro,AR
-72450,4057,Paragould,AR,18,Jonesboro,AR
-72451,4057,Paragould,AR,18,Jonesboro,AR
-72453,4057,Paragould,AR,18,Jonesboro,AR
-72454,4059,Piggott,AR,18,Jonesboro,AR
-72455,4061,Pocahontas,AR,18,Jonesboro,AR
-72456,4059,Piggott,AR,18,Jonesboro,AR
-72457,4039,Jonesboro,AR,18,Jonesboro,AR
-72458,4039,Jonesboro,AR,18,Jonesboro,AR
-72459,4012,Cherokee Village,AR,19,Little Rock,AR
-72460,4039,Jonesboro,AR,18,Jonesboro,AR
-72461,4057,Paragould,AR,18,Jonesboro,AR
-72462,4061,Pocahontas,AR,18,Jonesboro,AR
-72464,4059,Piggott,AR,18,Jonesboro,AR
-72465,4039,Jonesboro,AR,18,Jonesboro,AR
-72466,4039,Jonesboro,AR,18,Jonesboro,AR
-72467,4039,Jonesboro,AR,18,Jonesboro,AR
-72469,4003,Batesville,AR,19,Little Rock,AR
-72470,26071,Poplar Bluff,MO,273,St. Louis,MO
-72471,4053,Newport,AR,19,Little Rock,AR
-72472,4039,Jonesboro,AR,18,Jonesboro,AR
-72473,4053,Newport,AR,19,Little Rock,AR
-72474,4057,Paragould,AR,18,Jonesboro,AR
-72475,4039,Jonesboro,AR,18,Jonesboro,AR
-72476,4039,Jonesboro,AR,18,Jonesboro,AR
-72478,4061,Pocahontas,AR,18,Jonesboro,AR
-72479,4039,Jonesboro,AR,18,Jonesboro,AR
-72482,4039,Jonesboro,AR,18,Jonesboro,AR
-72501,4003,Batesville,AR,19,Little Rock,AR
-72503,4003,Batesville,AR,19,Little Rock,AR
-72512,4010,Calico Rock,AR,19,Little Rock,AR
-72513,26093,West Plains,MO,270,Springfield,MO
-72515,4010,Calico Rock,AR,19,Little Rock,AR
-72517,4010,Calico Rock,AR,19,Little Rock,AR
-72519,4010,Calico Rock,AR,19,Little Rock,AR
-72520,4065,Salem,AR,19,Little Rock,AR
-72521,4003,Batesville,AR,19,Little Rock,AR
-72522,4003,Batesville,AR,19,Little Rock,AR
-72523,4003,Batesville,AR,19,Little Rock,AR
-72524,4003,Batesville,AR,19,Little Rock,AR
-72525,4012,Cherokee Village,AR,19,Little Rock,AR
-72526,4003,Batesville,AR,19,Little Rock,AR
-72527,4003,Batesville,AR,19,Little Rock,AR
-72528,4010,Calico Rock,AR,19,Little Rock,AR
-72529,4012,Cherokee Village,AR,19,Little Rock,AR
-72530,4032,Heber Springs,AR,19,Little Rock,AR
-72531,4049,Mountain Home,AR,270,Springfield,MO
-72532,4003,Batesville,AR,19,Little Rock,AR
-72533,4050,Mountain View,AR,19,Little Rock,AR
-72534,4003,Batesville,AR,19,Little Rock,AR
-72536,4010,Calico Rock,AR,19,Little Rock,AR
-72537,4049,Mountain Home,AR,270,Springfield,MO
-72538,4049,Mountain Home,AR,270,Springfield,MO
-72539,26093,West Plains,MO,270,Springfield,MO
-72540,4003,Batesville,AR,19,Little Rock,AR
-72542,4012,Cherokee Village,AR,19,Little Rock,AR
-72543,4032,Heber Springs,AR,19,Little Rock,AR
-72544,4049,Mountain Home,AR,270,Springfield,MO
-72545,4032,Heber Springs,AR,19,Little Rock,AR
-72546,4032,Heber Springs,AR,19,Little Rock,AR
-72550,4003,Batesville,AR,19,Little Rock,AR
-72553,4003,Batesville,AR,19,Little Rock,AR
-72554,26093,West Plains,MO,270,Springfield,MO
-72555,4003,Batesville,AR,19,Little Rock,AR
-72556,4003,Batesville,AR,19,Little Rock,AR
-72560,4050,Mountain View,AR,19,Little Rock,AR
-72561,4003,Batesville,AR,19,Little Rock,AR
-72562,4003,Batesville,AR,19,Little Rock,AR
-72564,4053,Newport,AR,19,Little Rock,AR
-72565,4065,Salem,AR,19,Little Rock,AR
-72566,4010,Calico Rock,AR,19,Little Rock,AR
-72567,4003,Batesville,AR,19,Little Rock,AR
-72568,4066,Searcy,AR,19,Little Rock,AR
-72569,4003,Batesville,AR,19,Little Rock,AR
-72571,4003,Batesville,AR,19,Little Rock,AR
-72572,4003,Batesville,AR,19,Little Rock,AR
-72573,4003,Batesville,AR,19,Little Rock,AR
-72575,4003,Batesville,AR,19,Little Rock,AR
-72576,4065,Salem,AR,19,Little Rock,AR
-72577,4003,Batesville,AR,19,Little Rock,AR
-72578,4049,Mountain Home,AR,270,Springfield,MO
-72579,4003,Batesville,AR,19,Little Rock,AR
-72581,4066,Searcy,AR,19,Little Rock,AR
-72583,4049,Mountain Home,AR,270,Springfield,MO
-72584,4010,Calico Rock,AR,19,Little Rock,AR
-72585,4010,Calico Rock,AR,19,Little Rock,AR
-72587,4010,Calico Rock,AR,19,Little Rock,AR
-72601,4031,Harrison,AR,21,Springdale,AR
-72602,4031,Harrison,AR,21,Springdale,AR
-72611,4006,Berryville,AR,21,Springdale,AR
-72613,4025,Eureka Springs,AR,270,Springfield,MO
-72615,4031,Harrison,AR,21,Springdale,AR
-72616,4006,Berryville,AR,21,Springdale,AR
-72617,4050,Mountain View,AR,19,Little Rock,AR
-72619,4049,Mountain Home,AR,270,Springfield,MO
-72623,4049,Mountain Home,AR,270,Springfield,MO
-72624,4031,Harrison,AR,21,Springdale,AR
-72626,4049,Mountain Home,AR,270,Springfield,MO
-72628,4031,Harrison,AR,21,Springdale,AR
-72629,4041,Little Rock,AR,19,Little Rock,AR
-72630,4031,Harrison,AR,21,Springdale,AR
-72631,4025,Eureka Springs,AR,270,Springfield,MO
-72632,4025,Eureka Springs,AR,270,Springfield,MO
-72633,4031,Harrison,AR,21,Springdale,AR
-72634,4049,Mountain Home,AR,270,Springfield,MO
-72635,4049,Mountain Home,AR,270,Springfield,MO
-72636,4031,Harrison,AR,21,Springdale,AR
-72638,4006,Berryville,AR,21,Springdale,AR
-72639,4049,Mountain Home,AR,270,Springfield,MO
-72640,4031,Harrison,AR,21,Springdale,AR
-72641,4031,Harrison,AR,21,Springdale,AR
-72642,4049,Mountain Home,AR,270,Springfield,MO
-72643,4031,Harrison,AR,21,Springdale,AR
-72644,4031,Harrison,AR,21,Springdale,AR
-72645,4041,Little Rock,AR,19,Little Rock,AR
-72648,4031,Harrison,AR,21,Springdale,AR
-72650,4031,Harrison,AR,21,Springdale,AR
-72651,4049,Mountain Home,AR,270,Springfield,MO
-72653,4049,Mountain Home,AR,270,Springfield,MO
-72654,4049,Mountain Home,AR,270,Springfield,MO
-72655,4031,Harrison,AR,21,Springdale,AR
-72657,4050,Mountain View,AR,19,Little Rock,AR
-72658,4049,Mountain Home,AR,270,Springfield,MO
-72659,4049,Mountain Home,AR,270,Springfield,MO
-72660,4006,Berryville,AR,21,Springdale,AR
-72661,4049,Mountain Home,AR,270,Springfield,MO
-72662,4031,Harrison,AR,21,Springdale,AR
-72663,4050,Mountain View,AR,19,Little Rock,AR
-72666,4031,Harrison,AR,21,Springdale,AR
-72668,4031,Harrison,AR,21,Springdale,AR
-72669,4031,Harrison,AR,21,Springdale,AR
-72670,4031,Harrison,AR,21,Springdale,AR
-72672,4049,Mountain Home,AR,270,Springfield,MO
-72675,4031,Harrison,AR,21,Springdale,AR
-72677,4049,Mountain Home,AR,270,Springfield,MO
-72679,4041,Little Rock,AR,19,Little Rock,AR
-72680,4050,Mountain View,AR,19,Little Rock,AR
-72682,4049,Mountain Home,AR,270,Springfield,MO
-72683,4031,Harrison,AR,21,Springdale,AR
-72685,4031,Harrison,AR,21,Springdale,AR
-72686,4031,Harrison,AR,21,Springdale,AR
-72687,4049,Mountain Home,AR,270,Springfield,MO
-72701,4026,Fayetteville,AR,21,Springdale,AR
-72702,4026,Fayetteville,AR,21,Springdale,AR
-72703,4026,Fayetteville,AR,21,Springdale,AR
-72704,4026,Fayetteville,AR,21,Springdale,AR
-72711,4063,Rogers,AR,21,Springdale,AR
-72712,4005,Bentonville,AR,21,Springdale,AR
-72713,4005,Bentonville,AR,21,Springdale,AR
-72714,4005,Bentonville,AR,21,Springdale,AR
-72715,4005,Bentonville,AR,21,Springdale,AR
-72716,4005,Bentonville,AR,21,Springdale,AR
-72717,4026,Fayetteville,AR,21,Springdale,AR
-72718,4068,Springdale,AR,21,Springdale,AR
-72719,4005,Bentonville,AR,21,Springdale,AR
-72721,4026,Fayetteville,AR,21,Springdale,AR
-72722,4030,Gravette,AR,21,Springdale,AR
-72727,4026,Fayetteville,AR,21,Springdale,AR
-72728,4068,Springdale,AR,21,Springdale,AR
-72729,4026,Fayetteville,AR,21,Springdale,AR
-72730,4026,Fayetteville,AR,21,Springdale,AR
-72732,4063,Rogers,AR,21,Springdale,AR
-72733,4063,Rogers,AR,21,Springdale,AR
-72734,4067,Siloam Springs,AR,21,Springdale,AR
-72735,4026,Fayetteville,AR,21,Springdale,AR
-72736,4030,Gravette,AR,21,Springdale,AR
-72737,4026,Fayetteville,AR,21,Springdale,AR
-72738,4068,Springdale,AR,21,Springdale,AR
-72739,4005,Bentonville,AR,21,Springdale,AR
-72740,4068,Springdale,AR,21,Springdale,AR
-72741,4026,Fayetteville,AR,21,Springdale,AR
-72742,4068,Springdale,AR,21,Springdale,AR
-72744,4026,Fayetteville,AR,21,Springdale,AR
-72745,4068,Springdale,AR,21,Springdale,AR
-72747,4030,Gravette,AR,21,Springdale,AR
-72749,4026,Fayetteville,AR,21,Springdale,AR
-72751,4063,Rogers,AR,21,Springdale,AR
-72752,4026,Fayetteville,AR,21,Springdale,AR
-72753,4026,Fayetteville,AR,21,Springdale,AR
-72756,4063,Rogers,AR,21,Springdale,AR
-72757,4063,Rogers,AR,21,Springdale,AR
-72758,4063,Rogers,AR,21,Springdale,AR
-72760,4026,Fayetteville,AR,21,Springdale,AR
-72761,4067,Siloam Springs,AR,21,Springdale,AR
-72762,4068,Springdale,AR,21,Springdale,AR
-72764,4068,Springdale,AR,21,Springdale,AR
-72765,4068,Springdale,AR,21,Springdale,AR
-72766,4068,Springdale,AR,21,Springdale,AR
-72768,4030,Gravette,AR,21,Springdale,AR
-72769,4026,Fayetteville,AR,21,Springdale,AR
-72770,4068,Springdale,AR,21,Springdale,AR
-72773,4026,Fayetteville,AR,21,Springdale,AR
-72774,4026,Fayetteville,AR,21,Springdale,AR
-72776,4026,Fayetteville,AR,21,Springdale,AR
-72801,4064,Russellville,AR,19,Little Rock,AR
-72802,4064,Russellville,AR,19,Little Rock,AR
-72811,4064,Russellville,AR,19,Little Rock,AR
-72812,4064,Russellville,AR,19,Little Rock,AR
-72820,4056,Ozark,AR,16,Fort Smith,AR
-72821,4056,Ozark,AR,16,Fort Smith,AR
-72823,4064,Russellville,AR,19,Little Rock,AR
-72824,4018,Danville,AR,19,Little Rock,AR
-72826,4029,Fort Smith,AR,16,Fort Smith,AR
-72827,4018,Danville,AR,19,Little Rock,AR
-72828,4018,Danville,AR,19,Little Rock,AR
-72829,4019,Dardanelle,AR,19,Little Rock,AR
-72830,4013,Clarksville,AR,19,Little Rock,AR
-72832,4013,Clarksville,AR,19,Little Rock,AR
-72833,4018,Danville,AR,19,Little Rock,AR
-72834,4019,Dardanelle,AR,19,Little Rock,AR
-72835,4019,Dardanelle,AR,19,Little Rock,AR
-72837,4064,Russellville,AR,19,Little Rock,AR
-72838,4018,Danville,AR,19,Little Rock,AR
-72839,4013,Clarksville,AR,19,Little Rock,AR
-72840,4013,Clarksville,AR,19,Little Rock,AR
-72841,4072,Waldron,AR,16,Fort Smith,AR
-72842,4018,Danville,AR,19,Little Rock,AR
-72843,4064,Russellville,AR,19,Little Rock,AR
-72845,4013,Clarksville,AR,19,Little Rock,AR
-72846,4013,Clarksville,AR,19,Little Rock,AR
-72847,4064,Russellville,AR,19,Little Rock,AR
-72851,4029,Fort Smith,AR,16,Fort Smith,AR
-72852,4013,Clarksville,AR,19,Little Rock,AR
-72853,4018,Danville,AR,19,Little Rock,AR
-72854,4013,Clarksville,AR,19,Little Rock,AR
-72855,4029,Fort Smith,AR,16,Fort Smith,AR
-72856,4064,Russellville,AR,19,Little Rock,AR
-72857,4018,Danville,AR,19,Little Rock,AR
-72858,4064,Russellville,AR,19,Little Rock,AR
-72860,4018,Danville,AR,19,Little Rock,AR
-72863,4029,Fort Smith,AR,16,Fort Smith,AR
-72865,4029,Fort Smith,AR,16,Fort Smith,AR
-72901,4029,Fort Smith,AR,16,Fort Smith,AR
-72902,4029,Fort Smith,AR,16,Fort Smith,AR
-72903,4029,Fort Smith,AR,16,Fort Smith,AR
-72904,4029,Fort Smith,AR,16,Fort Smith,AR
-72905,4029,Fort Smith,AR,16,Fort Smith,AR
-72906,4029,Fort Smith,AR,16,Fort Smith,AR
-72908,4029,Fort Smith,AR,16,Fort Smith,AR
-72913,4029,Fort Smith,AR,16,Fort Smith,AR
-72914,4029,Fort Smith,AR,16,Fort Smith,AR
-72916,4029,Fort Smith,AR,16,Fort Smith,AR
-72917,4029,Fort Smith,AR,16,Fort Smith,AR
-72918,4029,Fort Smith,AR,16,Fort Smith,AR
-72919,4029,Fort Smith,AR,16,Fort Smith,AR
-72921,4029,Fort Smith,AR,16,Fort Smith,AR
-72923,4029,Fort Smith,AR,16,Fort Smith,AR
-72926,4072,Waldron,AR,16,Fort Smith,AR
-72927,4008,Booneville,AR,16,Fort Smith,AR
-72928,4029,Fort Smith,AR,16,Fort Smith,AR
-72930,4029,Fort Smith,AR,16,Fort Smith,AR
-72932,4029,Fort Smith,AR,16,Fort Smith,AR
-72933,4029,Fort Smith,AR,16,Fort Smith,AR
-72934,4029,Fort Smith,AR,16,Fort Smith,AR
-72935,4029,Fort Smith,AR,16,Fort Smith,AR
-72936,4029,Fort Smith,AR,16,Fort Smith,AR
-72937,4029,Fort Smith,AR,16,Fort Smith,AR
-72938,4029,Fort Smith,AR,16,Fort Smith,AR
-72940,4029,Fort Smith,AR,16,Fort Smith,AR
-72941,4029,Fort Smith,AR,16,Fort Smith,AR
-72943,4029,Fort Smith,AR,16,Fort Smith,AR
-72944,4029,Fort Smith,AR,16,Fort Smith,AR
-72945,4029,Fort Smith,AR,16,Fort Smith,AR
-72946,4029,Fort Smith,AR,16,Fort Smith,AR
-72947,4029,Fort Smith,AR,16,Fort Smith,AR
-72948,4029,Fort Smith,AR,16,Fort Smith,AR
-72949,4056,Ozark,AR,16,Fort Smith,AR
-72950,4072,Waldron,AR,16,Fort Smith,AR
-72951,4029,Fort Smith,AR,16,Fort Smith,AR
-72952,4029,Fort Smith,AR,16,Fort Smith,AR
-72955,4029,Fort Smith,AR,16,Fort Smith,AR
-72956,4029,Fort Smith,AR,16,Fort Smith,AR
-72957,4029,Fort Smith,AR,16,Fort Smith,AR
-72958,4072,Waldron,AR,16,Fort Smith,AR
-72959,4026,Fayetteville,AR,21,Springdale,AR
-73001,37019,Chickasha,OK,339,Oklahoma City,OK
-73002,37019,Chickasha,OK,339,Oklahoma City,OK
-73003,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73004,37019,Chickasha,OK,339,Oklahoma City,OK
-73005,37004,Anadarko,OK,336,Lawton,OK
-73006,37049,Lawton,OK,336,Lawton,OK
-73007,37029,Edmond,OK,339,Oklahoma City,OK
-73008,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73009,37019,Chickasha,OK,339,Oklahoma City,OK
-73010,37059,Norman,OK,339,Oklahoma City,OK
-73011,37019,Chickasha,OK,339,Oklahoma City,OK
-73012,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73013,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73014,37030,El Reno,OK,339,Oklahoma City,OK
-73015,37016,Carnegie,OK,336,Lawton,OK
-73016,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73017,37019,Chickasha,OK,339,Oklahoma City,OK
-73018,37019,Chickasha,OK,339,Oklahoma City,OK
-73019,37059,Norman,OK,339,Oklahoma City,OK
-73020,37056,Midwest City,OK,339,Oklahoma City,OK
-73021,37093,Weatherford,OK,339,Oklahoma City,OK
-73022,37030,El Reno,OK,339,Oklahoma City,OK
-73023,37019,Chickasha,OK,339,Oklahoma City,OK
-73024,37022,Clinton,OK,339,Oklahoma City,OK
-73025,37038,Guthrie,OK,339,Oklahoma City,OK
-73026,37059,Norman,OK,339,Oklahoma City,OK
-73027,37082,Stillwater,OK,340,Tulsa,OK
-73028,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73029,37019,Chickasha,OK,339,Oklahoma City,OK
-73030,37006,Ardmore,OK,339,Oklahoma City,OK
-73031,37059,Norman,OK,339,Oklahoma City,OK
-73032,37006,Ardmore,OK,339,Oklahoma City,OK
-73033,37093,Weatherford,OK,339,Oklahoma City,OK
-73034,37029,Edmond,OK,339,Oklahoma City,OK
-73036,37030,El Reno,OK,339,Oklahoma City,OK
-73038,37019,Chickasha,OK,339,Oklahoma City,OK
-73039,37006,Ardmore,OK,339,Oklahoma City,OK
-73040,37030,El Reno,OK,339,Oklahoma City,OK
-73041,37042,Hobart,OK,339,Oklahoma City,OK
-73042,37019,Chickasha,OK,339,Oklahoma City,OK
-73043,37091,Watonga,OK,339,Oklahoma City,OK
-73044,37038,Guthrie,OK,339,Oklahoma City,OK
-73045,37056,Midwest City,OK,339,Oklahoma City,OK
-73047,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73048,37093,Weatherford,OK,339,Oklahoma City,OK
-73049,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73050,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73051,37059,Norman,OK,339,Oklahoma City,OK
-73052,37050,Lindsay,OK,339,Oklahoma City,OK
-73053,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73054,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73055,37027,Duncan,OK,336,Lawton,OK
-73056,37032,Enid,OK,339,Oklahoma City,OK
-73057,37073,Purcell,OK,339,Oklahoma City,OK
-73058,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73059,37019,Chickasha,OK,339,Oklahoma City,OK
-73061,37082,Stillwater,OK,340,Tulsa,OK
-73062,37016,Carnegie,OK,336,Lawton,OK
-73063,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73064,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73065,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73066,37056,Midwest City,OK,339,Oklahoma City,OK
-73067,37019,Chickasha,OK,339,Oklahoma City,OK
-73068,37059,Norman,OK,339,Oklahoma City,OK
-73069,37059,Norman,OK,339,Oklahoma City,OK
-73070,37059,Norman,OK,339,Oklahoma City,OK
-73071,37059,Norman,OK,339,Oklahoma City,OK
-73072,37059,Norman,OK,339,Oklahoma City,OK
-73073,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73074,37065,Pauls Valley,OK,339,Oklahoma City,OK
-73075,37065,Pauls Valley,OK,339,Oklahoma City,OK
-73077,37068,Perry,OK,339,Oklahoma City,OK
-73078,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73079,37019,Chickasha,OK,339,Oklahoma City,OK
-73080,37073,Purcell,OK,339,Oklahoma City,OK
-73082,37019,Chickasha,OK,339,Oklahoma City,OK
-73083,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73084,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73085,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73086,37084,Sulphur,OK,339,Oklahoma City,OK
-73089,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73090,37030,El Reno,OK,339,Oklahoma City,OK
-73092,37019,Chickasha,OK,339,Oklahoma City,OK
-73093,37059,Norman,OK,339,Oklahoma City,OK
-73095,37073,Purcell,OK,339,Oklahoma City,OK
-73096,37093,Weatherford,OK,339,Oklahoma City,OK
-73097,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73098,37065,Pauls Valley,OK,339,Oklahoma City,OK
-73099,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73101,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73102,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73103,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73104,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73105,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73106,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73107,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73108,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73109,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73110,37056,Midwest City,OK,339,Oklahoma City,OK
-73111,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73112,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73113,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73114,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73115,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73116,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73117,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73118,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73119,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73120,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73121,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73122,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73123,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73124,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73125,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73126,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73127,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73128,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73129,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73130,37056,Midwest City,OK,339,Oklahoma City,OK
-73131,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73132,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73134,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73135,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73136,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73137,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73139,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73140,37056,Midwest City,OK,339,Oklahoma City,OK
-73141,37056,Midwest City,OK,339,Oklahoma City,OK
-73142,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73143,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73144,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73145,37056,Midwest City,OK,339,Oklahoma City,OK
-73146,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73147,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73148,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73149,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73150,37056,Midwest City,OK,339,Oklahoma City,OK
-73151,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73152,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73153,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73154,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73155,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73156,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73157,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73159,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73160,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73162,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73163,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73164,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73165,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73167,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73169,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73170,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73172,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73173,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73178,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73179,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73184,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73189,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73190,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73194,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73195,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73196,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73301,45016,Austin,TX,385,Austin,TX
-73344,45016,Austin,TX,385,Austin,TX
-73401,37006,Ardmore,OK,339,Oklahoma City,OK
-73402,37006,Ardmore,OK,339,Oklahoma City,OK
-73403,37006,Ardmore,OK,339,Oklahoma City,OK
-73425,37027,Duncan,OK,336,Lawton,OK
-73430,37053,Marietta,OK,339,Oklahoma City,OK
-73432,37087,Tishomingo,OK,339,Oklahoma City,OK
-73433,37065,Pauls Valley,OK,339,Oklahoma City,OK
-73434,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73435,37006,Ardmore,OK,339,Oklahoma City,OK
-73436,37006,Ardmore,OK,339,Oklahoma City,OK
-73437,37006,Ardmore,OK,339,Oklahoma City,OK
-73438,37006,Ardmore,OK,339,Oklahoma City,OK
-73439,37051,Madill,OK,339,Oklahoma City,OK
-73440,37051,Madill,OK,339,Oklahoma City,OK
-73441,37053,Marietta,OK,339,Oklahoma City,OK
-73442,37027,Duncan,OK,336,Lawton,OK
-73443,37006,Ardmore,OK,339,Oklahoma City,OK
-73444,37065,Pauls Valley,OK,339,Oklahoma City,OK
-73446,37051,Madill,OK,339,Oklahoma City,OK
-73447,37006,Ardmore,OK,339,Oklahoma City,OK
-73448,37053,Marietta,OK,339,Oklahoma City,OK
-73449,37028,Durant,OK,391,Dallas,TX
-73450,37087,Tishomingo,OK,339,Oklahoma City,OK
-73453,37006,Ardmore,OK,339,Oklahoma City,OK
-73455,37087,Tishomingo,OK,339,Oklahoma City,OK
-73456,37006,Ardmore,OK,339,Oklahoma City,OK
-73458,37006,Ardmore,OK,339,Oklahoma City,OK
-73459,37053,Marietta,OK,339,Oklahoma City,OK
-73460,37087,Tishomingo,OK,339,Oklahoma City,OK
-73461,37087,Tishomingo,OK,339,Oklahoma City,OK
-73463,37006,Ardmore,OK,339,Oklahoma City,OK
-73481,37006,Ardmore,OK,339,Oklahoma City,OK
-73487,37065,Pauls Valley,OK,339,Oklahoma City,OK
-73488,37065,Pauls Valley,OK,339,Oklahoma City,OK
-73491,37027,Duncan,OK,336,Lawton,OK
-73501,37049,Lawton,OK,336,Lawton,OK
-73502,37049,Lawton,OK,336,Lawton,OK
-73503,37049,Lawton,OK,336,Lawton,OK
-73505,37049,Lawton,OK,336,Lawton,OK
-73506,37049,Lawton,OK,336,Lawton,OK
-73507,37049,Lawton,OK,336,Lawton,OK
-73520,37092,Waurika,OK,336,Lawton,OK
-73521,37002,Altus,OK,339,Oklahoma City,OK
-73522,37002,Altus,OK,339,Oklahoma City,OK
-73523,37002,Altus,OK,339,Oklahoma City,OK
-73526,37002,Altus,OK,339,Oklahoma City,OK
-73527,37049,Lawton,OK,336,Lawton,OK
-73528,37049,Lawton,OK,336,Lawton,OK
-73529,37027,Duncan,OK,336,Lawton,OK
-73530,37036,Frederick,OK,336,Lawton,OK
-73531,45276,Wichita Falls,TX,420,Wichita Falls,TX
-73532,37002,Altus,OK,339,Oklahoma City,OK
-73533,37027,Duncan,OK,336,Lawton,OK
-73534,37027,Duncan,OK,336,Lawton,OK
-73536,37027,Duncan,OK,336,Lawton,OK
-73537,37002,Altus,OK,339,Oklahoma City,OK
-73538,37049,Lawton,OK,336,Lawton,OK
-73539,37002,Altus,OK,339,Oklahoma City,OK
-73540,37049,Lawton,OK,336,Lawton,OK
-73541,37049,Lawton,OK,336,Lawton,OK
-73542,37036,Frederick,OK,336,Lawton,OK
-73543,37049,Lawton,OK,336,Lawton,OK
-73544,37044,Hollis,OK,339,Oklahoma City,OK
-73546,37049,Lawton,OK,336,Lawton,OK
-73547,37042,Hobart,OK,339,Oklahoma City,OK
-73548,37092,Waurika,OK,336,Lawton,OK
-73549,37002,Altus,OK,339,Oklahoma City,OK
-73550,37044,Hollis,OK,339,Oklahoma City,OK
-73551,37049,Lawton,OK,336,Lawton,OK
-73552,37049,Lawton,OK,336,Lawton,OK
-73553,37049,Lawton,OK,336,Lawton,OK
-73554,37052,Mangum,OK,339,Oklahoma City,OK
-73555,37036,Frederick,OK,336,Lawton,OK
-73556,37002,Altus,OK,339,Oklahoma City,OK
-73557,37049,Lawton,OK,336,Lawton,OK
-73558,37049,Lawton,OK,336,Lawton,OK
-73559,37002,Altus,OK,339,Oklahoma City,OK
-73560,37002,Altus,OK,339,Oklahoma City,OK
-73561,45197,Nocona,TX,391,Dallas,TX
-73562,45276,Wichita Falls,TX,420,Wichita Falls,TX
-73564,37042,Hobart,OK,339,Oklahoma City,OK
-73565,37092,Waurika,OK,336,Lawton,OK
-73566,37049,Lawton,OK,336,Lawton,OK
-73567,37049,Lawton,OK,336,Lawton,OK
-73568,37049,Lawton,OK,336,Lawton,OK
-73569,45197,Nocona,TX,391,Dallas,TX
-73570,37002,Altus,OK,339,Oklahoma City,OK
-73571,37052,Mangum,OK,339,Oklahoma City,OK
-73572,37049,Lawton,OK,336,Lawton,OK
-73573,37092,Waurika,OK,336,Lawton,OK
-73601,37022,Clinton,OK,339,Oklahoma City,OK
-73620,37022,Clinton,OK,339,Oklahoma City,OK
-73622,37024,Cordell,OK,339,Oklahoma City,OK
-73624,37022,Clinton,OK,339,Oklahoma City,OK
-73625,37022,Clinton,OK,339,Oklahoma City,OK
-73626,37031,Elk City,OK,339,Oklahoma City,OK
-73627,37076,Sayre,OK,339,Oklahoma City,OK
-73628,37018,Cheyenne,OK,339,Oklahoma City,OK
-73632,37024,Cordell,OK,339,Oklahoma City,OK
-73638,37018,Cheyenne,OK,339,Oklahoma City,OK
-73639,37022,Clinton,OK,339,Oklahoma City,OK
-73641,37024,Cordell,OK,339,Oklahoma City,OK
-73642,37018,Cheyenne,OK,339,Oklahoma City,OK
-73644,37031,Elk City,OK,339,Oklahoma City,OK
-73645,37076,Sayre,OK,339,Oklahoma City,OK
-73646,37091,Watonga,OK,339,Oklahoma City,OK
-73647,37022,Clinton,OK,339,Oklahoma City,OK
-73648,37031,Elk City,OK,339,Oklahoma City,OK
-73650,37031,Elk City,OK,339,Oklahoma City,OK
-73651,37042,Hobart,OK,339,Oklahoma City,OK
-73654,37031,Elk City,OK,339,Oklahoma City,OK
-73655,37042,Hobart,OK,339,Oklahoma City,OK
-73658,37062,Okeene,OK,339,Oklahoma City,OK
-73659,37022,Clinton,OK,339,Oklahoma City,OK
-73660,37018,Cheyenne,OK,339,Oklahoma City,OK
-73661,37042,Hobart,OK,339,Oklahoma City,OK
-73662,37076,Sayre,OK,339,Oklahoma City,OK
-73663,37077,Seiling,OK,339,Oklahoma City,OK
-73664,37042,Hobart,OK,339,Oklahoma City,OK
-73666,37076,Sayre,OK,339,Oklahoma City,OK
-73667,37077,Seiling,OK,339,Oklahoma City,OK
-73668,37076,Sayre,OK,339,Oklahoma City,OK
-73669,37063,Oklahoma City,OK,339,Oklahoma City,OK
-73673,37052,Mangum,OK,339,Oklahoma City,OK
-73701,37032,Enid,OK,339,Oklahoma City,OK
-73702,37032,Enid,OK,339,Oklahoma City,OK
-73703,37032,Enid,OK,339,Oklahoma City,OK
-73705,37032,Enid,OK,339,Oklahoma City,OK
-73706,37032,Enid,OK,339,Oklahoma City,OK
-73716,37032,Enid,OK,339,Oklahoma City,OK
-73717,37003,Alva,OK,339,Oklahoma City,OK
-73718,37032,Enid,OK,339,Oklahoma City,OK
-73719,17061,Kiowa,KS,201,Wichita,KS
-73720,37032,Enid,OK,339,Oklahoma City,OK
-73722,37032,Enid,OK,339,Oklahoma City,OK
-73724,37062,Okeene,OK,339,Oklahoma City,OK
-73726,37032,Enid,OK,339,Oklahoma City,OK
-73727,37032,Enid,OK,339,Oklahoma City,OK
-73728,37032,Enid,OK,339,Oklahoma City,OK
-73729,37032,Enid,OK,339,Oklahoma City,OK
-73730,37032,Enid,OK,339,Oklahoma City,OK
-73731,37003,Alva,OK,339,Oklahoma City,OK
-73733,37032,Enid,OK,339,Oklahoma City,OK
-73734,37048,Kingfisher,OK,339,Oklahoma City,OK
-73735,37032,Enid,OK,339,Oklahoma City,OK
-73736,37032,Enid,OK,339,Oklahoma City,OK
-73737,37035,Fairview,OK,339,Oklahoma City,OK
-73738,37032,Enid,OK,339,Oklahoma City,OK
-73739,37032,Enid,OK,339,Oklahoma City,OK
-73741,37032,Enid,OK,339,Oklahoma City,OK
-73742,37032,Enid,OK,339,Oklahoma City,OK
-73743,37032,Enid,OK,339,Oklahoma City,OK
-73744,37062,Okeene,OK,339,Oklahoma City,OK
-73746,37003,Alva,OK,339,Oklahoma City,OK
-73747,37032,Enid,OK,339,Oklahoma City,OK
-73749,37032,Enid,OK,339,Oklahoma City,OK
-73750,37048,Kingfisher,OK,339,Oklahoma City,OK
-73753,37032,Enid,OK,339,Oklahoma City,OK
-73754,37032,Enid,OK,339,Oklahoma City,OK
-73755,37062,Okeene,OK,339,Oklahoma City,OK
-73756,37048,Kingfisher,OK,339,Oklahoma City,OK
-73757,37068,Perry,OK,339,Oklahoma City,OK
-73758,17002,Anthony,KS,201,Wichita,KS
-73759,37032,Enid,OK,339,Oklahoma City,OK
-73760,37032,Enid,OK,339,Oklahoma City,OK
-73761,37032,Enid,OK,339,Oklahoma City,OK
-73762,37030,El Reno,OK,339,Oklahoma City,OK
-73763,37062,Okeene,OK,339,Oklahoma City,OK
-73764,37048,Kingfisher,OK,339,Oklahoma City,OK
-73766,37032,Enid,OK,339,Oklahoma City,OK
-73768,37032,Enid,OK,339,Oklahoma City,OK
-73770,37062,Okeene,OK,339,Oklahoma City,OK
-73771,37032,Enid,OK,339,Oklahoma City,OK
-73772,37091,Watonga,OK,339,Oklahoma City,OK
-73773,37032,Enid,OK,339,Oklahoma City,OK
-73801,37097,Woodward,OK,339,Oklahoma City,OK
-73802,37097,Woodward,OK,339,Oklahoma City,OK
-73832,37079,Shattuck,OK,339,Oklahoma City,OK
-73834,37015,Buffalo,OK,339,Oklahoma City,OK
-73835,37077,Seiling,OK,339,Oklahoma City,OK
-73838,37077,Seiling,OK,339,Oklahoma City,OK
-73840,37097,Woodward,OK,339,Oklahoma City,OK
-73841,37097,Woodward,OK,339,Oklahoma City,OK
-73842,37003,Alva,OK,339,Oklahoma City,OK
-73843,37079,Shattuck,OK,339,Oklahoma City,OK
-73844,37097,Woodward,OK,339,Oklahoma City,OK
-73848,37097,Woodward,OK,339,Oklahoma City,OK
-73851,37097,Woodward,OK,339,Oklahoma City,OK
-73852,37097,Woodward,OK,339,Oklahoma City,OK
-73853,37097,Woodward,OK,339,Oklahoma City,OK
-73855,37097,Woodward,OK,339,Oklahoma City,OK
-73857,37097,Woodward,OK,339,Oklahoma City,OK
-73858,37079,Shattuck,OK,339,Oklahoma City,OK
-73859,37077,Seiling,OK,339,Oklahoma City,OK
-73860,37003,Alva,OK,339,Oklahoma City,OK
-73901,17067,Liberal,KS,201,Wichita,KS
-73931,45208,Perryton,TX,383,Amarillo,TX
-73932,37009,Beaver,OK,339,Oklahoma City,OK
-73933,45006,Amarillo,TX,383,Amarillo,TX
-73937,45006,Amarillo,TX,383,Amarillo,TX
-73938,37009,Beaver,OK,339,Oklahoma City,OK
-73939,37039,Guymon,OK,383,Amarillo,TX
-73942,37039,Guymon,OK,383,Amarillo,TX
-73944,37039,Guymon,OK,383,Amarillo,TX
-73945,17067,Liberal,KS,201,Wichita,KS
-73946,45006,Amarillo,TX,383,Amarillo,TX
-73947,17026,Elkhart,KS,383,Amarillo,TX
-73949,37039,Guymon,OK,383,Amarillo,TX
-73950,17067,Liberal,KS,201,Wichita,KS
-73951,17067,Liberal,KS,201,Wichita,KS
-73960,45078,Dumas,TX,383,Amarillo,TX
-74001,37008,Bartlesville,OK,340,Tulsa,OK
-74002,37008,Bartlesville,OK,340,Tulsa,OK
-74003,37008,Bartlesville,OK,340,Tulsa,OK
-74004,37008,Bartlesville,OK,340,Tulsa,OK
-74005,37008,Bartlesville,OK,340,Tulsa,OK
-74006,37008,Bartlesville,OK,340,Tulsa,OK
-74008,37088,Tulsa,OK,340,Tulsa,OK
-74010,37088,Tulsa,OK,340,Tulsa,OK
-74011,37088,Tulsa,OK,340,Tulsa,OK
-74012,37088,Tulsa,OK,340,Tulsa,OK
-74013,37088,Tulsa,OK,340,Tulsa,OK
-74014,37088,Tulsa,OK,340,Tulsa,OK
-74015,37088,Tulsa,OK,340,Tulsa,OK
-74016,37020,Claremore,OK,340,Tulsa,OK
-74017,37020,Claremore,OK,340,Tulsa,OK
-74018,37020,Claremore,OK,340,Tulsa,OK
-74019,37020,Claremore,OK,340,Tulsa,OK
-74020,37088,Tulsa,OK,340,Tulsa,OK
-74021,37088,Tulsa,OK,340,Tulsa,OK
-74022,37008,Bartlesville,OK,340,Tulsa,OK
-74023,37025,Cushing,OK,340,Tulsa,OK
-74026,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74027,37008,Bartlesville,OK,340,Tulsa,OK
-74028,37088,Tulsa,OK,340,Tulsa,OK
-74029,37008,Bartlesville,OK,340,Tulsa,OK
-74030,37026,Drumright,OK,340,Tulsa,OK
-74031,37020,Claremore,OK,340,Tulsa,OK
-74032,37082,Stillwater,OK,340,Tulsa,OK
-74033,37088,Tulsa,OK,340,Tulsa,OK
-74034,37088,Tulsa,OK,340,Tulsa,OK
-74035,37088,Tulsa,OK,340,Tulsa,OK
-74036,37088,Tulsa,OK,340,Tulsa,OK
-74037,37088,Tulsa,OK,340,Tulsa,OK
-74038,37026,Drumright,OK,340,Tulsa,OK
-74039,37088,Tulsa,OK,340,Tulsa,OK
-74041,37088,Tulsa,OK,340,Tulsa,OK
-74042,17017,Coffeyville,KS,340,Tulsa,OK
-74043,37088,Tulsa,OK,340,Tulsa,OK
-74044,37088,Tulsa,OK,340,Tulsa,OK
-74045,37088,Tulsa,OK,340,Tulsa,OK
-74046,37088,Tulsa,OK,340,Tulsa,OK
-74047,37088,Tulsa,OK,340,Tulsa,OK
-74048,37008,Bartlesville,OK,340,Tulsa,OK
-74050,37088,Tulsa,OK,340,Tulsa,OK
-74051,37008,Bartlesville,OK,340,Tulsa,OK
-74052,37026,Drumright,OK,340,Tulsa,OK
-74053,37020,Claremore,OK,340,Tulsa,OK
-74054,37088,Tulsa,OK,340,Tulsa,OK
-74055,37088,Tulsa,OK,340,Tulsa,OK
-74056,37066,Pawhuska,OK,340,Tulsa,OK
-74058,37067,Pawnee,OK,340,Tulsa,OK
-74059,37082,Stillwater,OK,340,Tulsa,OK
-74060,37088,Tulsa,OK,340,Tulsa,OK
-74061,37008,Bartlesville,OK,340,Tulsa,OK
-74062,37082,Stillwater,OK,340,Tulsa,OK
-74063,37088,Tulsa,OK,340,Tulsa,OK
-74066,37075,Sapulpa,OK,340,Tulsa,OK
-74067,37075,Sapulpa,OK,340,Tulsa,OK
-74068,37026,Drumright,OK,340,Tulsa,OK
-74070,37088,Tulsa,OK,340,Tulsa,OK
-74071,37088,Tulsa,OK,340,Tulsa,OK
-74072,17017,Coffeyville,KS,340,Tulsa,OK
-74073,37088,Tulsa,OK,340,Tulsa,OK
-74074,37082,Stillwater,OK,340,Tulsa,OK
-74075,37082,Stillwater,OK,340,Tulsa,OK
-74076,37082,Stillwater,OK,340,Tulsa,OK
-74077,37082,Stillwater,OK,340,Tulsa,OK
-74078,37082,Stillwater,OK,340,Tulsa,OK
-74079,37083,Stroud,OK,339,Oklahoma City,OK
-74080,37088,Tulsa,OK,340,Tulsa,OK
-74081,37088,Tulsa,OK,340,Tulsa,OK
-74082,37088,Tulsa,OK,340,Tulsa,OK
-74083,37008,Bartlesville,OK,340,Tulsa,OK
-74084,37066,Pawhuska,OK,340,Tulsa,OK
-74085,37082,Stillwater,OK,340,Tulsa,OK
-74101,37088,Tulsa,OK,340,Tulsa,OK
-74102,37088,Tulsa,OK,340,Tulsa,OK
-74103,37088,Tulsa,OK,340,Tulsa,OK
-74104,37088,Tulsa,OK,340,Tulsa,OK
-74105,37088,Tulsa,OK,340,Tulsa,OK
-74106,37088,Tulsa,OK,340,Tulsa,OK
-74107,37088,Tulsa,OK,340,Tulsa,OK
-74108,37088,Tulsa,OK,340,Tulsa,OK
-74110,37088,Tulsa,OK,340,Tulsa,OK
-74112,37088,Tulsa,OK,340,Tulsa,OK
-74114,37088,Tulsa,OK,340,Tulsa,OK
-74115,37088,Tulsa,OK,340,Tulsa,OK
-74116,37088,Tulsa,OK,340,Tulsa,OK
-74117,37088,Tulsa,OK,340,Tulsa,OK
-74119,37088,Tulsa,OK,340,Tulsa,OK
-74120,37088,Tulsa,OK,340,Tulsa,OK
-74121,37088,Tulsa,OK,340,Tulsa,OK
-74126,37088,Tulsa,OK,340,Tulsa,OK
-74127,37088,Tulsa,OK,340,Tulsa,OK
-74128,37088,Tulsa,OK,340,Tulsa,OK
-74129,37088,Tulsa,OK,340,Tulsa,OK
-74130,37088,Tulsa,OK,340,Tulsa,OK
-74131,37088,Tulsa,OK,340,Tulsa,OK
-74132,37088,Tulsa,OK,340,Tulsa,OK
-74133,37088,Tulsa,OK,340,Tulsa,OK
-74134,37088,Tulsa,OK,340,Tulsa,OK
-74135,37088,Tulsa,OK,340,Tulsa,OK
-74136,37088,Tulsa,OK,340,Tulsa,OK
-74137,37088,Tulsa,OK,340,Tulsa,OK
-74141,37088,Tulsa,OK,340,Tulsa,OK
-74145,37088,Tulsa,OK,340,Tulsa,OK
-74146,37088,Tulsa,OK,340,Tulsa,OK
-74147,37088,Tulsa,OK,340,Tulsa,OK
-74148,37088,Tulsa,OK,340,Tulsa,OK
-74149,37088,Tulsa,OK,340,Tulsa,OK
-74150,37088,Tulsa,OK,340,Tulsa,OK
-74152,37088,Tulsa,OK,340,Tulsa,OK
-74153,37088,Tulsa,OK,340,Tulsa,OK
-74155,37088,Tulsa,OK,340,Tulsa,OK
-74156,37088,Tulsa,OK,340,Tulsa,OK
-74157,37088,Tulsa,OK,340,Tulsa,OK
-74158,37088,Tulsa,OK,340,Tulsa,OK
-74159,37088,Tulsa,OK,340,Tulsa,OK
-74169,37088,Tulsa,OK,340,Tulsa,OK
-74170,37088,Tulsa,OK,340,Tulsa,OK
-74171,37088,Tulsa,OK,340,Tulsa,OK
-74172,37088,Tulsa,OK,340,Tulsa,OK
-74182,37088,Tulsa,OK,340,Tulsa,OK
-74186,37088,Tulsa,OK,340,Tulsa,OK
-74187,37088,Tulsa,OK,340,Tulsa,OK
-74192,37088,Tulsa,OK,340,Tulsa,OK
-74193,37088,Tulsa,OK,340,Tulsa,OK
-74301,37089,Vinita,OK,340,Tulsa,OK
-74330,37072,Pryor,OK,340,Tulsa,OK
-74331,37037,Grove,OK,267,Joplin,MO
-74332,37088,Tulsa,OK,340,Tulsa,OK
-74333,37055,Miami,OK,267,Joplin,MO
-74335,37055,Miami,OK,267,Joplin,MO
-74337,37088,Tulsa,OK,340,Tulsa,OK
-74338,4067,Siloam Springs,AR,21,Springdale,AR
-74339,37055,Miami,OK,267,Joplin,MO
-74340,37088,Tulsa,OK,340,Tulsa,OK
-74342,37037,Grove,OK,267,Joplin,MO
-74343,37055,Miami,OK,267,Joplin,MO
-74344,37037,Grove,OK,267,Joplin,MO
-74345,37037,Grove,OK,267,Joplin,MO
-74346,37037,Grove,OK,267,Joplin,MO
-74347,4067,Siloam Springs,AR,21,Springdale,AR
-74349,37089,Vinita,OK,340,Tulsa,OK
-74350,37088,Tulsa,OK,340,Tulsa,OK
-74352,37088,Tulsa,OK,340,Tulsa,OK
-74354,37055,Miami,OK,267,Joplin,MO
-74355,37055,Miami,OK,267,Joplin,MO
-74358,37055,Miami,OK,267,Joplin,MO
-74359,37088,Tulsa,OK,340,Tulsa,OK
-74360,37055,Miami,OK,267,Joplin,MO
-74361,37072,Pryor,OK,340,Tulsa,OK
-74362,37072,Pryor,OK,340,Tulsa,OK
-74363,37055,Miami,OK,267,Joplin,MO
-74364,37088,Tulsa,OK,340,Tulsa,OK
-74365,37088,Tulsa,OK,340,Tulsa,OK
-74366,37088,Tulsa,OK,340,Tulsa,OK
-74367,37088,Tulsa,OK,340,Tulsa,OK
-74368,4067,Siloam Springs,AR,21,Springdale,AR
-74369,37055,Miami,OK,267,Joplin,MO
-74370,26040,Joplin,MO,267,Joplin,MO
-74401,37058,Muskogee,OK,340,Tulsa,OK
-74402,37058,Muskogee,OK,340,Tulsa,OK
-74403,37058,Muskogee,OK,340,Tulsa,OK
-74421,37088,Tulsa,OK,340,Tulsa,OK
-74422,37064,Okmulgee,OK,340,Tulsa,OK
-74423,37058,Muskogee,OK,340,Tulsa,OK
-74425,37054,McAlester,OK,340,Tulsa,OK
-74426,37058,Muskogee,OK,340,Tulsa,OK
-74427,37085,Tahlequah,OK,340,Tulsa,OK
-74428,37058,Muskogee,OK,340,Tulsa,OK
-74429,37088,Tulsa,OK,340,Tulsa,OK
-74430,37054,McAlester,OK,340,Tulsa,OK
-74431,37088,Tulsa,OK,340,Tulsa,OK
-74432,37033,Eufaula,OK,340,Tulsa,OK
-74434,37058,Muskogee,OK,340,Tulsa,OK
-74435,37058,Muskogee,OK,340,Tulsa,OK
-74436,37088,Tulsa,OK,340,Tulsa,OK
-74437,37088,Tulsa,OK,340,Tulsa,OK
-74438,37058,Muskogee,OK,340,Tulsa,OK
-74439,37058,Muskogee,OK,340,Tulsa,OK
-74440,37081,Stigler,OK,16,Fort Smith,AR
-74441,37085,Tahlequah,OK,340,Tulsa,OK
-74442,37054,McAlester,OK,340,Tulsa,OK
-74444,37088,Tulsa,OK,340,Tulsa,OK
-74445,37064,Okmulgee,OK,340,Tulsa,OK
-74446,37090,Wagoner,OK,340,Tulsa,OK
-74447,37064,Okmulgee,OK,340,Tulsa,OK
-74450,37058,Muskogee,OK,340,Tulsa,OK
-74451,37085,Tahlequah,OK,340,Tulsa,OK
-74452,37088,Tulsa,OK,340,Tulsa,OK
-74454,37058,Muskogee,OK,340,Tulsa,OK
-74455,37058,Muskogee,OK,340,Tulsa,OK
-74456,37064,Okmulgee,OK,340,Tulsa,OK
-74457,37085,Tahlequah,OK,340,Tulsa,OK
-74458,37058,Muskogee,OK,340,Tulsa,OK
-74459,37058,Muskogee,OK,340,Tulsa,OK
-74460,37088,Tulsa,OK,340,Tulsa,OK
-74461,37033,Eufaula,OK,340,Tulsa,OK
-74462,37081,Stigler,OK,16,Fort Smith,AR
-74463,37058,Muskogee,OK,340,Tulsa,OK
-74464,37085,Tahlequah,OK,340,Tulsa,OK
-74465,37085,Tahlequah,OK,340,Tulsa,OK
-74467,37090,Wagoner,OK,340,Tulsa,OK
-74468,37058,Muskogee,OK,340,Tulsa,OK
-74469,37058,Muskogee,OK,340,Tulsa,OK
-74470,37058,Muskogee,OK,340,Tulsa,OK
-74471,37085,Tahlequah,OK,340,Tulsa,OK
-74472,37081,Stigler,OK,16,Fort Smith,AR
-74477,37090,Wagoner,OK,340,Tulsa,OK
-74501,37054,McAlester,OK,340,Tulsa,OK
-74502,37054,McAlester,OK,340,Tulsa,OK
-74521,37054,McAlester,OK,340,Tulsa,OK
-74522,37054,McAlester,OK,340,Tulsa,OK
-74523,37005,Antlers,OK,339,Oklahoma City,OK
-74525,37007,Atoka,OK,339,Oklahoma City,OK
-74528,37054,McAlester,OK,340,Tulsa,OK
-74529,37081,Stigler,OK,16,Fort Smith,AR
-74530,37087,Tishomingo,OK,339,Oklahoma City,OK
-74531,37001,Ada,OK,339,Oklahoma City,OK
-74533,37028,Durant,OK,391,Dallas,TX
-74534,37023,Coalgate,OK,340,Tulsa,OK
-74535,37001,Ada,OK,339,Oklahoma City,OK
-74536,37005,Antlers,OK,339,Oklahoma City,OK
-74538,37023,Coalgate,OK,340,Tulsa,OK
-74540,37054,McAlester,OK,340,Tulsa,OK
-74543,37005,Antlers,OK,339,Oklahoma City,OK
-74545,37096,Wilburton,OK,16,Fort Smith,AR
-74546,37054,McAlester,OK,340,Tulsa,OK
-74547,37054,McAlester,OK,340,Tulsa,OK
-74549,37070,Poteau,OK,16,Fort Smith,AR
-74552,37081,Stigler,OK,16,Fort Smith,AR
-74553,37054,McAlester,OK,340,Tulsa,OK
-74554,37054,McAlester,OK,340,Tulsa,OK
-74555,37007,Atoka,OK,339,Oklahoma City,OK
-74556,37023,Coalgate,OK,340,Tulsa,OK
-74557,37005,Antlers,OK,339,Oklahoma City,OK
-74558,37005,Antlers,OK,339,Oklahoma City,OK
-74559,4029,Fort Smith,AR,16,Fort Smith,AR
-74560,37054,McAlester,OK,340,Tulsa,OK
-74561,37081,Stigler,OK,16,Fort Smith,AR
-74562,37005,Antlers,OK,339,Oklahoma City,OK
-74563,4029,Fort Smith,AR,16,Fort Smith,AR
-74565,37054,McAlester,OK,340,Tulsa,OK
-74567,37005,Antlers,OK,339,Oklahoma City,OK
-74569,37007,Atoka,OK,339,Oklahoma City,OK
-74570,37054,McAlester,OK,340,Tulsa,OK
-74571,37070,Poteau,OK,16,Fort Smith,AR
-74572,37001,Ada,OK,339,Oklahoma City,OK
-74574,37054,McAlester,OK,340,Tulsa,OK
-74576,37054,McAlester,OK,340,Tulsa,OK
-74577,37070,Poteau,OK,16,Fort Smith,AR
-74578,37096,Wilburton,OK,16,Fort Smith,AR
-74601,37069,Ponca City,OK,339,Oklahoma City,OK
-74602,37069,Ponca City,OK,339,Oklahoma City,OK
-74604,37069,Ponca City,OK,339,Oklahoma City,OK
-74630,37032,Enid,OK,339,Oklahoma City,OK
-74631,37011,Blackwell,OK,339,Oklahoma City,OK
-74632,37011,Blackwell,OK,339,Oklahoma City,OK
-74633,37034,Fairfax,OK,340,Tulsa,OK
-74636,37011,Blackwell,OK,339,Oklahoma City,OK
-74637,37034,Fairfax,OK,340,Tulsa,OK
-74640,37032,Enid,OK,339,Oklahoma City,OK
-74641,37069,Ponca City,OK,339,Oklahoma City,OK
-74643,37032,Enid,OK,339,Oklahoma City,OK
-74644,37069,Ponca City,OK,339,Oklahoma City,OK
-74646,37011,Blackwell,OK,339,Oklahoma City,OK
-74647,37069,Ponca City,OK,339,Oklahoma City,OK
-74650,37034,Fairfax,OK,340,Tulsa,OK
-74651,37082,Stillwater,OK,340,Tulsa,OK
-74652,37034,Fairfax,OK,340,Tulsa,OK
-74653,37069,Ponca City,OK,339,Oklahoma City,OK
-74701,37028,Durant,OK,391,Dallas,TX
-74702,37028,Durant,OK,391,Dallas,TX
-74720,45072,Denison,TX,391,Dallas,TX
-74721,37028,Durant,OK,391,Dallas,TX
-74722,37047,Idabel,OK,22,Texarkana,AR
-74723,37028,Durant,OK,391,Dallas,TX
-74724,37047,Idabel,OK,22,Texarkana,AR
-74726,37028,Durant,OK,391,Dallas,TX
-74727,37028,Durant,OK,391,Dallas,TX
-74728,37047,Idabel,OK,22,Texarkana,AR
-74729,37028,Durant,OK,391,Dallas,TX
-74730,37028,Durant,OK,391,Dallas,TX
-74731,45072,Denison,TX,391,Dallas,TX
-74733,45072,Denison,TX,391,Dallas,TX
-74734,4020,De Queen,AR,22,Texarkana,AR
-74735,45204,Paris,TX,391,Dallas,TX
-74736,45204,Paris,TX,391,Dallas,TX
-74737,37047,Idabel,OK,22,Texarkana,AR
-74738,45204,Paris,TX,391,Dallas,TX
-74740,37047,Idabel,OK,22,Texarkana,AR
-74741,45072,Denison,TX,391,Dallas,TX
-74743,45204,Paris,TX,391,Dallas,TX
-74745,37047,Idabel,OK,22,Texarkana,AR
-74747,45072,Denison,TX,391,Dallas,TX
-74748,37028,Durant,OK,391,Dallas,TX
-74750,45204,Paris,TX,391,Dallas,TX
-74752,37047,Idabel,OK,22,Texarkana,AR
-74753,45072,Denison,TX,391,Dallas,TX
-74754,45204,Paris,TX,391,Dallas,TX
-74755,45204,Paris,TX,391,Dallas,TX
-74756,45204,Paris,TX,391,Dallas,TX
-74759,45204,Paris,TX,391,Dallas,TX
-74760,45204,Paris,TX,391,Dallas,TX
-74761,45204,Paris,TX,391,Dallas,TX
-74764,45204,Paris,TX,391,Dallas,TX
-74766,37047,Idabel,OK,22,Texarkana,AR
-74801,37080,Shawnee,OK,339,Oklahoma City,OK
-74802,37080,Shawnee,OK,339,Oklahoma City,OK
-74804,37080,Shawnee,OK,339,Oklahoma City,OK
-74818,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74820,37001,Ada,OK,339,Oklahoma City,OK
-74821,37001,Ada,OK,339,Oklahoma City,OK
-74824,37082,Stillwater,OK,340,Tulsa,OK
-74825,37001,Ada,OK,339,Oklahoma City,OK
-74826,37080,Shawnee,OK,339,Oklahoma City,OK
-74827,37001,Ada,OK,339,Oklahoma City,OK
-74829,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74830,37080,Shawnee,OK,339,Oklahoma City,OK
-74831,37073,Purcell,OK,339,Oklahoma City,OK
-74832,37082,Stillwater,OK,340,Tulsa,OK
-74833,37088,Tulsa,OK,340,Tulsa,OK
-74834,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74836,37087,Tishomingo,OK,339,Oklahoma City,OK
-74837,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74839,37088,Tulsa,OK,340,Tulsa,OK
-74840,37080,Shawnee,OK,339,Oklahoma City,OK
-74842,37001,Ada,OK,339,Oklahoma City,OK
-74843,37001,Ada,OK,339,Oklahoma City,OK
-74844,37001,Ada,OK,339,Oklahoma City,OK
-74845,37088,Tulsa,OK,340,Tulsa,OK
-74848,37043,Holdenville,OK,339,Oklahoma City,OK
-74849,37001,Ada,OK,339,Oklahoma City,OK
-74850,37043,Holdenville,OK,339,Oklahoma City,OK
-74851,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74852,37080,Shawnee,OK,339,Oklahoma City,OK
-74854,37080,Shawnee,OK,339,Oklahoma City,OK
-74855,37080,Shawnee,OK,339,Oklahoma City,OK
-74856,37087,Tishomingo,OK,339,Oklahoma City,OK
-74857,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74859,37088,Tulsa,OK,340,Tulsa,OK
-74860,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74864,37071,Prague,OK,339,Oklahoma City,OK
-74865,37001,Ada,OK,339,Oklahoma City,OK
-74866,37080,Shawnee,OK,339,Oklahoma City,OK
-74867,37001,Ada,OK,339,Oklahoma City,OK
-74868,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74869,37071,Prague,OK,339,Oklahoma City,OK
-74871,37001,Ada,OK,339,Oklahoma City,OK
-74872,37001,Ada,OK,339,Oklahoma City,OK
-74873,37080,Shawnee,OK,339,Oklahoma City,OK
-74875,37082,Stillwater,OK,340,Tulsa,OK
-74878,37059,Norman,OK,339,Oklahoma City,OK
-74880,37088,Tulsa,OK,340,Tulsa,OK
-74881,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74883,37094,Wetumka,OK,339,Oklahoma City,OK
-74884,37063,Oklahoma City,OK,339,Oklahoma City,OK
-74901,4029,Fort Smith,AR,16,Fort Smith,AR
-74902,4029,Fort Smith,AR,16,Fort Smith,AR
-74930,4029,Fort Smith,AR,16,Fort Smith,AR
-74931,37101,Stilwell,OK,340,Tulsa,OK
-74932,4029,Fort Smith,AR,16,Fort Smith,AR
-74935,37070,Poteau,OK,16,Fort Smith,AR
-74936,4029,Fort Smith,AR,16,Fort Smith,AR
-74937,37070,Poteau,OK,16,Fort Smith,AR
-74939,37070,Poteau,OK,16,Fort Smith,AR
-74940,37070,Poteau,OK,16,Fort Smith,AR
-74941,4029,Fort Smith,AR,16,Fort Smith,AR
-74942,37070,Poteau,OK,16,Fort Smith,AR
-74943,4029,Fort Smith,AR,16,Fort Smith,AR
-74944,4029,Fort Smith,AR,16,Fort Smith,AR
-74945,37074,Sallisaw,OK,16,Fort Smith,AR
-74946,4029,Fort Smith,AR,16,Fort Smith,AR
-74947,37070,Poteau,OK,16,Fort Smith,AR
-74948,4029,Fort Smith,AR,16,Fort Smith,AR
-74949,37070,Poteau,OK,16,Fort Smith,AR
-74951,4029,Fort Smith,AR,16,Fort Smith,AR
-74953,37070,Poteau,OK,16,Fort Smith,AR
-74954,4029,Fort Smith,AR,16,Fort Smith,AR
-74955,37074,Sallisaw,OK,16,Fort Smith,AR
-74956,4029,Fort Smith,AR,16,Fort Smith,AR
-74957,37070,Poteau,OK,16,Fort Smith,AR
-74959,4029,Fort Smith,AR,16,Fort Smith,AR
-74960,37101,Stilwell,OK,340,Tulsa,OK
-74962,37074,Sallisaw,OK,16,Fort Smith,AR
-74963,4046,Mena,AR,16,Fort Smith,AR
-74964,4067,Siloam Springs,AR,21,Springdale,AR
-74965,4067,Siloam Springs,AR,21,Springdale,AR
-74966,37070,Poteau,OK,16,Fort Smith,AR
-75001,45068,Dallas,TX,391,Dallas,TX
-75002,45211,Plano,TX,391,Dallas,TX
-75006,45068,Dallas,TX,391,Dallas,TX
-75007,45068,Dallas,TX,391,Dallas,TX
-75009,45177,McKinney,TX,391,Dallas,TX
-75010,45068,Dallas,TX,391,Dallas,TX
-75011,45068,Dallas,TX,391,Dallas,TX
-75013,45211,Plano,TX,391,Dallas,TX
-75014,45068,Dallas,TX,391,Dallas,TX
-75015,45136,Irving,TX,391,Dallas,TX
-75016,45136,Irving,TX,391,Dallas,TX
-75017,45136,Irving,TX,391,Dallas,TX
-75019,45068,Dallas,TX,391,Dallas,TX
-75020,45072,Denison,TX,391,Dallas,TX
-75021,45072,Denison,TX,391,Dallas,TX
-75022,45158,Lewisville,TX,391,Dallas,TX
-75023,45211,Plano,TX,391,Dallas,TX
-75024,45211,Plano,TX,391,Dallas,TX
-75025,45211,Plano,TX,391,Dallas,TX
-75026,45211,Plano,TX,391,Dallas,TX
-75027,45158,Lewisville,TX,391,Dallas,TX
-75028,45158,Lewisville,TX,391,Dallas,TX
-75029,45158,Lewisville,TX,391,Dallas,TX
-75030,45226,Rowlett,TX,391,Dallas,TX
-75032,45226,Rowlett,TX,391,Dallas,TX
-75033,45177,McKinney,TX,391,Dallas,TX
-75034,45177,McKinney,TX,391,Dallas,TX
-75035,45177,McKinney,TX,391,Dallas,TX
-75036,45177,McKinney,TX,391,Dallas,TX
-75038,45136,Irving,TX,391,Dallas,TX
-75039,45068,Dallas,TX,391,Dallas,TX
-75040,45100,Garland,TX,391,Dallas,TX
-75041,45100,Garland,TX,391,Dallas,TX
-75042,45100,Garland,TX,391,Dallas,TX
-75043,45068,Dallas,TX,391,Dallas,TX
-75044,45068,Dallas,TX,391,Dallas,TX
-75045,45068,Dallas,TX,391,Dallas,TX
-75046,45100,Garland,TX,391,Dallas,TX
-75047,45100,Garland,TX,391,Dallas,TX
-75048,45068,Dallas,TX,391,Dallas,TX
-75049,45068,Dallas,TX,391,Dallas,TX
-75050,45112,Grand Prairie,TX,391,Dallas,TX
-75051,45112,Grand Prairie,TX,391,Dallas,TX
-75052,45012,Arlington,TX,394,Fort Worth,TX
-75053,45112,Grand Prairie,TX,391,Dallas,TX
-75054,45012,Arlington,TX,394,Fort Worth,TX
-75056,45068,Dallas,TX,391,Dallas,TX
-75057,45158,Lewisville,TX,391,Dallas,TX
-75058,45237,Sherman,TX,391,Dallas,TX
-75059,45112,Grand Prairie,TX,391,Dallas,TX
-75060,45136,Irving,TX,391,Dallas,TX
-75061,45136,Irving,TX,391,Dallas,TX
-75062,45136,Irving,TX,391,Dallas,TX
-75063,45068,Dallas,TX,391,Dallas,TX
-75064,45136,Irving,TX,391,Dallas,TX
-75065,45073,Denton,TX,391,Dallas,TX
-75067,45158,Lewisville,TX,391,Dallas,TX
-75068,45073,Denton,TX,391,Dallas,TX
-75069,45177,McKinney,TX,391,Dallas,TX
-75070,45177,McKinney,TX,391,Dallas,TX
-75071,45177,McKinney,TX,391,Dallas,TX
-75072,45177,McKinney,TX,391,Dallas,TX
-75074,45211,Plano,TX,391,Dallas,TX
-75075,45211,Plano,TX,391,Dallas,TX
-75076,45072,Denison,TX,391,Dallas,TX
-75077,45158,Lewisville,TX,391,Dallas,TX
-75078,45177,McKinney,TX,391,Dallas,TX
-75080,45068,Dallas,TX,391,Dallas,TX
-75081,45068,Dallas,TX,391,Dallas,TX
-75082,45068,Dallas,TX,391,Dallas,TX
-75083,45068,Dallas,TX,391,Dallas,TX
-75085,45068,Dallas,TX,391,Dallas,TX
-75086,45211,Plano,TX,391,Dallas,TX
-75087,45226,Rowlett,TX,391,Dallas,TX
-75088,45226,Rowlett,TX,391,Dallas,TX
-75089,45226,Rowlett,TX,391,Dallas,TX
-75090,45237,Sherman,TX,391,Dallas,TX
-75091,45237,Sherman,TX,391,Dallas,TX
-75092,45237,Sherman,TX,391,Dallas,TX
-75093,45211,Plano,TX,391,Dallas,TX
-75094,45211,Plano,TX,391,Dallas,TX
-75097,45177,McKinney,TX,391,Dallas,TX
-75098,45281,Wylie,TX,391,Dallas,TX
-75099,45068,Dallas,TX,391,Dallas,TX
-75101,45266,Waxahachie,TX,391,Dallas,TX
-75102,45062,Corsicana,TX,391,Dallas,TX
-75103,45260,Tyler,TX,416,Tyler,TX
-75104,45068,Dallas,TX,391,Dallas,TX
-75105,45062,Corsicana,TX,391,Dallas,TX
-75106,45068,Dallas,TX,391,Dallas,TX
-75109,45062,Corsicana,TX,391,Dallas,TX
-75110,45062,Corsicana,TX,391,Dallas,TX
-75114,45143,Kaufman,TX,391,Dallas,TX
-75115,45068,Dallas,TX,391,Dallas,TX
-75116,45068,Dallas,TX,391,Dallas,TX
-75117,45252,Terrell,TX,391,Dallas,TX
-75118,45252,Terrell,TX,391,Dallas,TX
-75119,45089,Ennis,TX,391,Dallas,TX
-75120,45089,Ennis,TX,391,Dallas,TX
-75121,45281,Wylie,TX,391,Dallas,TX
-75123,45068,Dallas,TX,391,Dallas,TX
-75124,45014,Athens,TX,391,Dallas,TX
-75125,45068,Dallas,TX,391,Dallas,TX
-75126,45068,Dallas,TX,391,Dallas,TX
-75127,45260,Tyler,TX,416,Tyler,TX
-75132,45226,Rowlett,TX,391,Dallas,TX
-75134,45068,Dallas,TX,391,Dallas,TX
-75135,45115,Greenville,TX,391,Dallas,TX
-75137,45068,Dallas,TX,391,Dallas,TX
-75138,45068,Dallas,TX,391,Dallas,TX
-75140,45260,Tyler,TX,416,Tyler,TX
-75141,45068,Dallas,TX,391,Dallas,TX
-75142,45143,Kaufman,TX,391,Dallas,TX
-75143,45143,Kaufman,TX,391,Dallas,TX
-75144,45062,Corsicana,TX,391,Dallas,TX
-75146,45155,Lancaster,TX,391,Dallas,TX
-75147,45014,Athens,TX,391,Dallas,TX
-75148,45014,Athens,TX,391,Dallas,TX
-75149,45068,Dallas,TX,391,Dallas,TX
-75150,45068,Dallas,TX,391,Dallas,TX
-75151,45062,Corsicana,TX,391,Dallas,TX
-75152,45266,Waxahachie,TX,391,Dallas,TX
-75153,45062,Corsicana,TX,391,Dallas,TX
-75154,45068,Dallas,TX,391,Dallas,TX
-75155,45062,Corsicana,TX,391,Dallas,TX
-75156,45014,Athens,TX,391,Dallas,TX
-75157,45143,Kaufman,TX,391,Dallas,TX
-75158,45143,Kaufman,TX,391,Dallas,TX
-75159,45068,Dallas,TX,391,Dallas,TX
-75160,45252,Terrell,TX,391,Dallas,TX
-75161,45252,Terrell,TX,391,Dallas,TX
-75163,45014,Athens,TX,391,Dallas,TX
-75164,45281,Wylie,TX,391,Dallas,TX
-75165,45266,Waxahachie,TX,391,Dallas,TX
-75166,45281,Wylie,TX,391,Dallas,TX
-75167,45266,Waxahachie,TX,391,Dallas,TX
-75168,45266,Waxahachie,TX,391,Dallas,TX
-75169,45252,Terrell,TX,391,Dallas,TX
-75172,45155,Lancaster,TX,391,Dallas,TX
-75173,45281,Wylie,TX,391,Dallas,TX
-75180,45068,Dallas,TX,391,Dallas,TX
-75181,45068,Dallas,TX,391,Dallas,TX
-75182,45068,Dallas,TX,391,Dallas,TX
-75185,45068,Dallas,TX,391,Dallas,TX
-75187,45068,Dallas,TX,391,Dallas,TX
-75189,45226,Rowlett,TX,391,Dallas,TX
-75201,45068,Dallas,TX,391,Dallas,TX
-75202,45068,Dallas,TX,391,Dallas,TX
-75203,45068,Dallas,TX,391,Dallas,TX
-75204,45068,Dallas,TX,391,Dallas,TX
-75205,45068,Dallas,TX,391,Dallas,TX
-75206,45068,Dallas,TX,391,Dallas,TX
-75207,45068,Dallas,TX,391,Dallas,TX
-75208,45068,Dallas,TX,391,Dallas,TX
-75209,45068,Dallas,TX,391,Dallas,TX
-75210,45068,Dallas,TX,391,Dallas,TX
-75211,45068,Dallas,TX,391,Dallas,TX
-75212,45068,Dallas,TX,391,Dallas,TX
-75214,45068,Dallas,TX,391,Dallas,TX
-75215,45068,Dallas,TX,391,Dallas,TX
-75216,45068,Dallas,TX,391,Dallas,TX
-75217,45068,Dallas,TX,391,Dallas,TX
-75218,45068,Dallas,TX,391,Dallas,TX
-75219,45068,Dallas,TX,391,Dallas,TX
-75220,45068,Dallas,TX,391,Dallas,TX
-75221,45068,Dallas,TX,391,Dallas,TX
-75222,45068,Dallas,TX,391,Dallas,TX
-75223,45068,Dallas,TX,391,Dallas,TX
-75224,45068,Dallas,TX,391,Dallas,TX
-75225,45068,Dallas,TX,391,Dallas,TX
-75226,45068,Dallas,TX,391,Dallas,TX
-75227,45068,Dallas,TX,391,Dallas,TX
-75228,45068,Dallas,TX,391,Dallas,TX
-75229,45068,Dallas,TX,391,Dallas,TX
-75230,45068,Dallas,TX,391,Dallas,TX
-75231,45068,Dallas,TX,391,Dallas,TX
-75232,45068,Dallas,TX,391,Dallas,TX
-75233,45068,Dallas,TX,391,Dallas,TX
-75234,45068,Dallas,TX,391,Dallas,TX
-75235,45068,Dallas,TX,391,Dallas,TX
-75236,45068,Dallas,TX,391,Dallas,TX
-75237,45068,Dallas,TX,391,Dallas,TX
-75238,45068,Dallas,TX,391,Dallas,TX
-75240,45068,Dallas,TX,391,Dallas,TX
-75241,45068,Dallas,TX,391,Dallas,TX
-75242,45068,Dallas,TX,391,Dallas,TX
-75243,45068,Dallas,TX,391,Dallas,TX
-75244,45068,Dallas,TX,391,Dallas,TX
-75246,45068,Dallas,TX,391,Dallas,TX
-75247,45068,Dallas,TX,391,Dallas,TX
-75248,45068,Dallas,TX,391,Dallas,TX
-75249,45068,Dallas,TX,391,Dallas,TX
-75250,45068,Dallas,TX,391,Dallas,TX
-75251,45068,Dallas,TX,391,Dallas,TX
-75252,45068,Dallas,TX,391,Dallas,TX
-75253,45068,Dallas,TX,391,Dallas,TX
-75254,45068,Dallas,TX,391,Dallas,TX
-75260,45068,Dallas,TX,391,Dallas,TX
-75261,45022,Bedford,TX,394,Fort Worth,TX
-75262,45068,Dallas,TX,391,Dallas,TX
-75263,45068,Dallas,TX,391,Dallas,TX
-75264,45068,Dallas,TX,391,Dallas,TX
-75265,45068,Dallas,TX,391,Dallas,TX
-75266,45068,Dallas,TX,391,Dallas,TX
-75267,45068,Dallas,TX,391,Dallas,TX
-75270,45068,Dallas,TX,391,Dallas,TX
-75275,45068,Dallas,TX,391,Dallas,TX
-75277,45068,Dallas,TX,391,Dallas,TX
-75283,45068,Dallas,TX,391,Dallas,TX
-75284,45068,Dallas,TX,391,Dallas,TX
-75285,45068,Dallas,TX,391,Dallas,TX
-75287,45068,Dallas,TX,391,Dallas,TX
-75301,45068,Dallas,TX,391,Dallas,TX
-75303,45068,Dallas,TX,391,Dallas,TX
-75312,45068,Dallas,TX,391,Dallas,TX
-75313,45068,Dallas,TX,391,Dallas,TX
-75315,45068,Dallas,TX,391,Dallas,TX
-75320,45068,Dallas,TX,391,Dallas,TX
-75326,45068,Dallas,TX,391,Dallas,TX
-75336,45068,Dallas,TX,391,Dallas,TX
-75339,45068,Dallas,TX,391,Dallas,TX
-75342,45068,Dallas,TX,391,Dallas,TX
-75354,45068,Dallas,TX,391,Dallas,TX
-75355,45068,Dallas,TX,391,Dallas,TX
-75356,45068,Dallas,TX,391,Dallas,TX
-75357,45068,Dallas,TX,391,Dallas,TX
-75358,45068,Dallas,TX,391,Dallas,TX
-75359,45068,Dallas,TX,391,Dallas,TX
-75360,45068,Dallas,TX,391,Dallas,TX
-75367,45068,Dallas,TX,391,Dallas,TX
-75368,45068,Dallas,TX,391,Dallas,TX
-75370,45068,Dallas,TX,391,Dallas,TX
-75371,45068,Dallas,TX,391,Dallas,TX
-75372,45068,Dallas,TX,391,Dallas,TX
-75373,45068,Dallas,TX,391,Dallas,TX
-75374,45068,Dallas,TX,391,Dallas,TX
-75376,45068,Dallas,TX,391,Dallas,TX
-75378,45068,Dallas,TX,391,Dallas,TX
-75379,45068,Dallas,TX,391,Dallas,TX
-75380,45068,Dallas,TX,391,Dallas,TX
-75381,45068,Dallas,TX,391,Dallas,TX
-75382,45068,Dallas,TX,391,Dallas,TX
-75389,45100,Garland,TX,391,Dallas,TX
-75390,45068,Dallas,TX,391,Dallas,TX
-75391,45068,Dallas,TX,391,Dallas,TX
-75392,45068,Dallas,TX,391,Dallas,TX
-75393,45068,Dallas,TX,391,Dallas,TX
-75394,45068,Dallas,TX,391,Dallas,TX
-75395,45068,Dallas,TX,391,Dallas,TX
-75397,45068,Dallas,TX,391,Dallas,TX
-75398,45068,Dallas,TX,391,Dallas,TX
-75401,45115,Greenville,TX,391,Dallas,TX
-75402,45115,Greenville,TX,391,Dallas,TX
-75403,45115,Greenville,TX,391,Dallas,TX
-75404,45115,Greenville,TX,391,Dallas,TX
-75407,45177,McKinney,TX,391,Dallas,TX
-75409,45177,McKinney,TX,391,Dallas,TX
-75410,45260,Tyler,TX,416,Tyler,TX
-75411,45204,Paris,TX,391,Dallas,TX
-75412,45051,Clarksville,TX,391,Dallas,TX
-75413,45237,Sherman,TX,391,Dallas,TX
-75414,45237,Sherman,TX,391,Dallas,TX
-75415,45204,Paris,TX,391,Dallas,TX
-75416,45204,Paris,TX,391,Dallas,TX
-75417,45204,Paris,TX,391,Dallas,TX
-75418,45027,Bonham,TX,391,Dallas,TX
-75420,45246,Sulphur Springs,TX,391,Dallas,TX
-75421,45204,Paris,TX,391,Dallas,TX
-75422,45115,Greenville,TX,391,Dallas,TX
-75423,45115,Greenville,TX,391,Dallas,TX
-75424,45177,McKinney,TX,391,Dallas,TX
-75425,45204,Paris,TX,391,Dallas,TX
-75426,45051,Clarksville,TX,391,Dallas,TX
-75428,45115,Greenville,TX,391,Dallas,TX
-75429,45115,Greenville,TX,391,Dallas,TX
-75431,45246,Sulphur Springs,TX,391,Dallas,TX
-75432,45204,Paris,TX,391,Dallas,TX
-75433,45246,Sulphur Springs,TX,391,Dallas,TX
-75434,45204,Paris,TX,391,Dallas,TX
-75435,45204,Paris,TX,391,Dallas,TX
-75436,45204,Paris,TX,391,Dallas,TX
-75437,45246,Sulphur Springs,TX,391,Dallas,TX
-75438,45027,Bonham,TX,391,Dallas,TX
-75439,45237,Sherman,TX,391,Dallas,TX
-75440,45260,Tyler,TX,416,Tyler,TX
-75441,45204,Paris,TX,391,Dallas,TX
-75442,45177,McKinney,TX,391,Dallas,TX
-75443,45237,Sherman,TX,391,Dallas,TX
-75444,45260,Tyler,TX,416,Tyler,TX
-75446,45204,Paris,TX,391,Dallas,TX
-75447,45027,Bonham,TX,391,Dallas,TX
-75448,45204,Paris,TX,391,Dallas,TX
-75449,45115,Greenville,TX,391,Dallas,TX
-75450,45204,Paris,TX,391,Dallas,TX
-75451,45209,Pittsburg,TX,416,Tyler,TX
-75452,45237,Sherman,TX,391,Dallas,TX
-75453,45115,Greenville,TX,391,Dallas,TX
-75454,45177,McKinney,TX,391,Dallas,TX
-75455,45187,Mount Pleasant,TX,416,Tyler,TX
-75456,45187,Mount Pleasant,TX,416,Tyler,TX
-75457,45188,Mount Vernon,TX,416,Tyler,TX
-75458,45115,Greenville,TX,391,Dallas,TX
-75459,45237,Sherman,TX,391,Dallas,TX
-75460,45204,Paris,TX,391,Dallas,TX
-75461,45204,Paris,TX,391,Dallas,TX
-75462,45204,Paris,TX,391,Dallas,TX
-75468,45204,Paris,TX,391,Dallas,TX
-75469,45204,Paris,TX,391,Dallas,TX
-75470,45204,Paris,TX,391,Dallas,TX
-75471,45246,Sulphur Springs,TX,391,Dallas,TX
-75472,45115,Greenville,TX,391,Dallas,TX
-75473,45204,Paris,TX,391,Dallas,TX
-75474,45115,Greenville,TX,391,Dallas,TX
-75475,45027,Bonham,TX,391,Dallas,TX
-75476,45027,Bonham,TX,391,Dallas,TX
-75477,45204,Paris,TX,391,Dallas,TX
-75478,45246,Sulphur Springs,TX,391,Dallas,TX
-75479,45237,Sherman,TX,391,Dallas,TX
-75480,45278,Winnsboro,TX,416,Tyler,TX
-75481,45246,Sulphur Springs,TX,391,Dallas,TX
-75482,45246,Sulphur Springs,TX,391,Dallas,TX
-75483,45246,Sulphur Springs,TX,391,Dallas,TX
-75485,45177,McKinney,TX,391,Dallas,TX
-75486,45204,Paris,TX,391,Dallas,TX
-75487,45188,Mount Vernon,TX,416,Tyler,TX
-75488,45027,Bonham,TX,391,Dallas,TX
-75489,45237,Sherman,TX,391,Dallas,TX
-75490,45237,Sherman,TX,391,Dallas,TX
-75491,45237,Sherman,TX,391,Dallas,TX
-75492,45027,Bonham,TX,391,Dallas,TX
-75493,45187,Mount Pleasant,TX,416,Tyler,TX
-75494,45278,Winnsboro,TX,416,Tyler,TX
-75495,45237,Sherman,TX,391,Dallas,TX
-75496,45115,Greenville,TX,391,Dallas,TX
-75497,45216,Quitman,TX,416,Tyler,TX
-75501,45253,Texarkana,TX,22,Texarkana,AR
-75503,45253,Texarkana,TX,22,Texarkana,AR
-75504,45253,Texarkana,TX,22,Texarkana,AR
-75505,45253,Texarkana,TX,22,Texarkana,AR
-75507,45253,Texarkana,TX,22,Texarkana,AR
-75550,45051,Clarksville,TX,391,Dallas,TX
-75551,45015,Atlanta,TX,22,Texarkana,AR
-75554,45051,Clarksville,TX,391,Dallas,TX
-75555,45015,Atlanta,TX,22,Texarkana,AR
-75556,45015,Atlanta,TX,22,Texarkana,AR
-75558,45187,Mount Pleasant,TX,416,Tyler,TX
-75559,45253,Texarkana,TX,22,Texarkana,AR
-75560,45015,Atlanta,TX,22,Texarkana,AR
-75561,45253,Texarkana,TX,22,Texarkana,AR
-75562,45160,Linden,TX,399,Longview,TX
-75563,45160,Linden,TX,399,Longview,TX
-75564,45167,Longview,TX,399,Longview,TX
-75565,45015,Atlanta,TX,22,Texarkana,AR
-75566,45160,Linden,TX,399,Longview,TX
-75567,45253,Texarkana,TX,22,Texarkana,AR
-75568,45187,Mount Pleasant,TX,416,Tyler,TX
-75569,45253,Texarkana,TX,22,Texarkana,AR
-75570,45253,Texarkana,TX,22,Texarkana,AR
-75571,45187,Mount Pleasant,TX,416,Tyler,TX
-75572,45015,Atlanta,TX,22,Texarkana,AR
-75573,45253,Texarkana,TX,22,Texarkana,AR
-75574,45253,Texarkana,TX,22,Texarkana,AR
-75599,45253,Texarkana,TX,22,Texarkana,AR
-75601,45167,Longview,TX,399,Longview,TX
-75602,45167,Longview,TX,399,Longview,TX
-75603,45167,Longview,TX,399,Longview,TX
-75604,45167,Longview,TX,399,Longview,TX
-75605,45167,Longview,TX,399,Longview,TX
-75606,45167,Longview,TX,399,Longview,TX
-75607,45167,Longview,TX,399,Longview,TX
-75608,45167,Longview,TX,399,Longview,TX
-75615,45167,Longview,TX,399,Longview,TX
-75630,45160,Linden,TX,399,Longview,TX
-75631,45045,Carthage,TX,219,Shreveport,LA
-75633,45045,Carthage,TX,219,Shreveport,LA
-75636,45167,Longview,TX,399,Longview,TX
-75637,45045,Carthage,TX,219,Shreveport,LA
-75638,45167,Longview,TX,399,Longview,TX
-75639,19080,Shreveport,LA,219,Shreveport,LA
-75640,45167,Longview,TX,399,Longview,TX
-75641,45167,Longview,TX,399,Longview,TX
-75642,19080,Shreveport,LA,219,Shreveport,LA
-75643,45045,Carthage,TX,219,Shreveport,LA
-75644,45104,Gilmer,TX,416,Tyler,TX
-75645,45167,Longview,TX,399,Longview,TX
-75647,45167,Longview,TX,399,Longview,TX
-75650,45167,Longview,TX,399,Longview,TX
-75651,45167,Longview,TX,399,Longview,TX
-75652,45125,Henderson,TX,416,Tyler,TX
-75653,45125,Henderson,TX,416,Tyler,TX
-75654,45125,Henderson,TX,416,Tyler,TX
-75656,45160,Linden,TX,399,Longview,TX
-75657,45167,Longview,TX,399,Longview,TX
-75658,45125,Henderson,TX,416,Tyler,TX
-75659,19080,Shreveport,LA,219,Shreveport,LA
-75660,45167,Longview,TX,399,Longview,TX
-75661,45174,Marshall,TX,219,Shreveport,LA
-75662,45147,Kilgore,TX,399,Longview,TX
-75663,45147,Kilgore,TX,399,Longview,TX
-75666,45147,Kilgore,TX,399,Longview,TX
-75667,45125,Henderson,TX,416,Tyler,TX
-75668,45167,Longview,TX,399,Longview,TX
-75669,45045,Carthage,TX,219,Shreveport,LA
-75670,45174,Marshall,TX,219,Shreveport,LA
-75671,45174,Marshall,TX,219,Shreveport,LA
-75672,45174,Marshall,TX,219,Shreveport,LA
-75680,45125,Henderson,TX,416,Tyler,TX
-75681,45191,Nacogdoches,TX,397,Houston,TX
-75682,45260,Tyler,TX,416,Tyler,TX
-75683,45167,Longview,TX,399,Longview,TX
-75684,45260,Tyler,TX,416,Tyler,TX
-75685,19080,Shreveport,LA,219,Shreveport,LA
-75686,45209,Pittsburg,TX,416,Tyler,TX
-75687,45125,Henderson,TX,416,Tyler,TX
-75688,19080,Shreveport,LA,219,Shreveport,LA
-75689,45125,Henderson,TX,416,Tyler,TX
-75691,45167,Longview,TX,399,Longview,TX
-75692,19080,Shreveport,LA,219,Shreveport,LA
-75693,45167,Longview,TX,399,Longview,TX
-75694,45167,Longview,TX,399,Longview,TX
-75701,45260,Tyler,TX,416,Tyler,TX
-75702,45260,Tyler,TX,416,Tyler,TX
-75703,45260,Tyler,TX,416,Tyler,TX
-75704,45260,Tyler,TX,416,Tyler,TX
-75705,45260,Tyler,TX,416,Tyler,TX
-75706,45260,Tyler,TX,416,Tyler,TX
-75707,45260,Tyler,TX,416,Tyler,TX
-75708,45260,Tyler,TX,416,Tyler,TX
-75709,45260,Tyler,TX,416,Tyler,TX
-75710,45260,Tyler,TX,416,Tyler,TX
-75711,45260,Tyler,TX,416,Tyler,TX
-75712,45260,Tyler,TX,416,Tyler,TX
-75713,45260,Tyler,TX,416,Tyler,TX
-75750,45260,Tyler,TX,416,Tyler,TX
-75751,45014,Athens,TX,391,Dallas,TX
-75752,45014,Athens,TX,391,Dallas,TX
-75754,45260,Tyler,TX,416,Tyler,TX
-75755,45260,Tyler,TX,416,Tyler,TX
-75756,45260,Tyler,TX,416,Tyler,TX
-75757,45260,Tyler,TX,416,Tyler,TX
-75758,45260,Tyler,TX,416,Tyler,TX
-75759,45138,Jacksonville,TX,416,Tyler,TX
-75760,45191,Nacogdoches,TX,397,Houston,TX
-75762,45260,Tyler,TX,416,Tyler,TX
-75763,45260,Tyler,TX,416,Tyler,TX
-75764,45138,Jacksonville,TX,416,Tyler,TX
-75765,45260,Tyler,TX,416,Tyler,TX
-75766,45138,Jacksonville,TX,416,Tyler,TX
-75770,45014,Athens,TX,391,Dallas,TX
-75771,45260,Tyler,TX,416,Tyler,TX
-75772,45138,Jacksonville,TX,416,Tyler,TX
-75773,45260,Tyler,TX,416,Tyler,TX
-75778,45260,Tyler,TX,416,Tyler,TX
-75779,45202,Palestine,TX,416,Tyler,TX
-75780,45260,Tyler,TX,416,Tyler,TX
-75782,45014,Athens,TX,391,Dallas,TX
-75783,45216,Quitman,TX,416,Tyler,TX
-75784,45125,Henderson,TX,416,Tyler,TX
-75785,45138,Jacksonville,TX,416,Tyler,TX
-75788,45191,Nacogdoches,TX,397,Houston,TX
-75789,45260,Tyler,TX,416,Tyler,TX
-75790,45260,Tyler,TX,416,Tyler,TX
-75791,45260,Tyler,TX,416,Tyler,TX
-75792,45260,Tyler,TX,416,Tyler,TX
-75797,45260,Tyler,TX,416,Tyler,TX
-75798,45260,Tyler,TX,416,Tyler,TX
-75799,45260,Tyler,TX,416,Tyler,TX
-75801,45202,Palestine,TX,416,Tyler,TX
-75802,45202,Palestine,TX,416,Tyler,TX
-75803,45202,Palestine,TX,416,Tyler,TX
-75831,45202,Palestine,TX,416,Tyler,TX
-75832,45202,Palestine,TX,416,Tyler,TX
-75833,45171,Madisonville,TX,388,Bryan,TX
-75834,45169,Lufkin,TX,397,Houston,TX
-75835,45064,Crockett,TX,416,Tyler,TX
-75838,45180,Mexia,TX,418,Waco,TX
-75839,45202,Palestine,TX,416,Tyler,TX
-75840,45090,Fairfield,TX,418,Waco,TX
-75844,45202,Palestine,TX,416,Tyler,TX
-75845,45169,Lufkin,TX,397,Houston,TX
-75846,45202,Palestine,TX,416,Tyler,TX
-75847,45169,Lufkin,TX,397,Houston,TX
-75848,45062,Corsicana,TX,391,Dallas,TX
-75849,45064,Crockett,TX,416,Tyler,TX
-75850,45171,Madisonville,TX,388,Bryan,TX
-75851,45064,Crockett,TX,416,Tyler,TX
-75852,45171,Madisonville,TX,388,Bryan,TX
-75853,45202,Palestine,TX,416,Tyler,TX
-75855,45202,Palestine,TX,416,Tyler,TX
-75856,45169,Lufkin,TX,397,Houston,TX
-75858,45169,Lufkin,TX,397,Houston,TX
-75859,45062,Corsicana,TX,391,Dallas,TX
-75860,45180,Mexia,TX,418,Waco,TX
-75861,45202,Palestine,TX,416,Tyler,TX
-75862,45258,Trinity,TX,397,Houston,TX
-75865,45169,Lufkin,TX,397,Houston,TX
-75880,45202,Palestine,TX,416,Tyler,TX
-75882,45202,Palestine,TX,416,Tyler,TX
-75884,45202,Palestine,TX,416,Tyler,TX
-75886,45202,Palestine,TX,416,Tyler,TX
-75901,45169,Lufkin,TX,397,Houston,TX
-75902,45169,Lufkin,TX,397,Houston,TX
-75903,45169,Lufkin,TX,397,Houston,TX
-75904,45169,Lufkin,TX,397,Houston,TX
-75915,45169,Lufkin,TX,397,Houston,TX
-75925,45191,Nacogdoches,TX,397,Houston,TX
-75926,45169,Lufkin,TX,397,Houston,TX
-75928,19058,Merryville,LA,214,Lake Charles,LA
-75929,45169,Lufkin,TX,397,Houston,TX
-75930,45191,Nacogdoches,TX,397,Houston,TX
-75931,45139,Jasper,TX,386,Beaumont,TX
-75932,45139,Jasper,TX,386,Beaumont,TX
-75933,45021,Beaumont,TX,386,Beaumont,TX
-75934,45169,Lufkin,TX,397,Houston,TX
-75935,45191,Nacogdoches,TX,397,Houston,TX
-75936,45280,Woodville,TX,386,Beaumont,TX
-75937,45191,Nacogdoches,TX,397,Houston,TX
-75938,45280,Woodville,TX,386,Beaumont,TX
-75939,45169,Lufkin,TX,397,Houston,TX
-75941,45169,Lufkin,TX,397,Houston,TX
-75942,45280,Woodville,TX,386,Beaumont,TX
-75943,45191,Nacogdoches,TX,397,Houston,TX
-75944,45191,Nacogdoches,TX,397,Houston,TX
-75946,45191,Nacogdoches,TX,397,Houston,TX
-75948,45124,Hemphill,TX,397,Houston,TX
-75949,45169,Lufkin,TX,397,Houston,TX
-75951,45139,Jasper,TX,386,Beaumont,TX
-75954,19080,Shreveport,LA,219,Shreveport,LA
-75956,45021,Beaumont,TX,386,Beaumont,TX
-75958,45191,Nacogdoches,TX,397,Houston,TX
-75959,45191,Nacogdoches,TX,397,Houston,TX
-75960,45169,Lufkin,TX,397,Houston,TX
-75961,45191,Nacogdoches,TX,397,Houston,TX
-75962,45191,Nacogdoches,TX,397,Houston,TX
-75963,45191,Nacogdoches,TX,397,Houston,TX
-75964,45191,Nacogdoches,TX,397,Houston,TX
-75965,45191,Nacogdoches,TX,397,Houston,TX
-75966,45139,Jasper,TX,386,Beaumont,TX
-75968,45191,Nacogdoches,TX,397,Houston,TX
-75969,45169,Lufkin,TX,397,Houston,TX
-75972,45191,Nacogdoches,TX,397,Houston,TX
-75973,45191,Nacogdoches,TX,397,Houston,TX
-75974,45191,Nacogdoches,TX,397,Houston,TX
-75975,45191,Nacogdoches,TX,397,Houston,TX
-75976,45169,Lufkin,TX,397,Houston,TX
-75977,45139,Jasper,TX,386,Beaumont,TX
-75978,45191,Nacogdoches,TX,397,Houston,TX
-75979,45280,Woodville,TX,386,Beaumont,TX
-75980,45169,Lufkin,TX,397,Houston,TX
-75990,45280,Woodville,TX,386,Beaumont,TX
-76001,45012,Arlington,TX,394,Fort Worth,TX
-76002,45012,Arlington,TX,394,Fort Worth,TX
-76003,45012,Arlington,TX,394,Fort Worth,TX
-76004,45012,Arlington,TX,394,Fort Worth,TX
-76005,45012,Arlington,TX,394,Fort Worth,TX
-76006,45012,Arlington,TX,394,Fort Worth,TX
-76007,45012,Arlington,TX,394,Fort Worth,TX
-76008,45095,Fort Worth,TX,394,Fort Worth,TX
-76009,45095,Fort Worth,TX,394,Fort Worth,TX
-76010,45012,Arlington,TX,394,Fort Worth,TX
-76011,45012,Arlington,TX,394,Fort Worth,TX
-76012,45012,Arlington,TX,394,Fort Worth,TX
-76013,45012,Arlington,TX,394,Fort Worth,TX
-76014,45012,Arlington,TX,394,Fort Worth,TX
-76015,45012,Arlington,TX,394,Fort Worth,TX
-76016,45012,Arlington,TX,394,Fort Worth,TX
-76017,45012,Arlington,TX,394,Fort Worth,TX
-76018,45012,Arlington,TX,394,Fort Worth,TX
-76019,45012,Arlington,TX,394,Fort Worth,TX
-76020,45017,Azle,TX,394,Fort Worth,TX
-76021,45022,Bedford,TX,394,Fort Worth,TX
-76022,45022,Bedford,TX,394,Fort Worth,TX
-76023,45095,Fort Worth,TX,394,Fort Worth,TX
-76028,45095,Fort Worth,TX,394,Fort Worth,TX
-76031,45052,Cleburne,TX,394,Fort Worth,TX
-76033,45052,Cleburne,TX,394,Fort Worth,TX
-76034,45022,Bedford,TX,394,Fort Worth,TX
-76035,45095,Fort Worth,TX,394,Fort Worth,TX
-76036,45095,Fort Worth,TX,394,Fort Worth,TX
-76039,45022,Bedford,TX,394,Fort Worth,TX
-76040,45022,Bedford,TX,394,Fort Worth,TX
-76041,45266,Waxahachie,TX,391,Dallas,TX
-76043,45106,Glen Rose,TX,394,Fort Worth,TX
-76044,45095,Fort Worth,TX,394,Fort Worth,TX
-76048,45111,Granbury,TX,394,Fort Worth,TX
-76049,45111,Granbury,TX,394,Fort Worth,TX
-76050,45052,Cleburne,TX,394,Fort Worth,TX
-76051,45114,Grapevine,TX,391,Dallas,TX
-76052,45095,Fort Worth,TX,394,Fort Worth,TX
-76053,45022,Bedford,TX,394,Fort Worth,TX
-76054,45022,Bedford,TX,394,Fort Worth,TX
-76055,45129,Hillsboro,TX,418,Waco,TX
-76058,45095,Fort Worth,TX,394,Fort Worth,TX
-76059,45095,Fort Worth,TX,394,Fort Worth,TX
-76060,45095,Fort Worth,TX,394,Fort Worth,TX
-76061,45095,Fort Worth,TX,394,Fort Worth,TX
-76063,45012,Arlington,TX,394,Fort Worth,TX
-76064,45266,Waxahachie,TX,391,Dallas,TX
-76065,45266,Waxahachie,TX,391,Dallas,TX
-76066,45267,Weatherford,TX,394,Fort Worth,TX
-76067,45182,Mineral Wells,TX,394,Fort Worth,TX
-76068,45182,Mineral Wells,TX,394,Fort Worth,TX
-76070,45052,Cleburne,TX,394,Fort Worth,TX
-76071,45095,Fort Worth,TX,394,Fort Worth,TX
-76073,45095,Fort Worth,TX,394,Fort Worth,TX
-76077,45106,Glen Rose,TX,394,Fort Worth,TX
-76078,45095,Fort Worth,TX,394,Fort Worth,TX
-76082,45017,Azle,TX,394,Fort Worth,TX
-76084,45266,Waxahachie,TX,391,Dallas,TX
-76085,45267,Weatherford,TX,394,Fort Worth,TX
-76086,45267,Weatherford,TX,394,Fort Worth,TX
-76087,45267,Weatherford,TX,394,Fort Worth,TX
-76088,45182,Mineral Wells,TX,394,Fort Worth,TX
-76092,45114,Grapevine,TX,391,Dallas,TX
-76093,45052,Cleburne,TX,394,Fort Worth,TX
-76094,45012,Arlington,TX,394,Fort Worth,TX
-76095,45022,Bedford,TX,394,Fort Worth,TX
-76096,45012,Arlington,TX,394,Fort Worth,TX
-76097,45095,Fort Worth,TX,394,Fort Worth,TX
-76098,45017,Azle,TX,394,Fort Worth,TX
-76099,45114,Grapevine,TX,391,Dallas,TX
-76101,45095,Fort Worth,TX,394,Fort Worth,TX
-76102,45095,Fort Worth,TX,394,Fort Worth,TX
-76103,45095,Fort Worth,TX,394,Fort Worth,TX
-76104,45095,Fort Worth,TX,394,Fort Worth,TX
-76105,45095,Fort Worth,TX,394,Fort Worth,TX
-76106,45095,Fort Worth,TX,394,Fort Worth,TX
-76107,45095,Fort Worth,TX,394,Fort Worth,TX
-76108,45095,Fort Worth,TX,394,Fort Worth,TX
-76109,45095,Fort Worth,TX,394,Fort Worth,TX
-76110,45095,Fort Worth,TX,394,Fort Worth,TX
-76111,45095,Fort Worth,TX,394,Fort Worth,TX
-76112,45095,Fort Worth,TX,394,Fort Worth,TX
-76113,45095,Fort Worth,TX,394,Fort Worth,TX
-76114,45095,Fort Worth,TX,394,Fort Worth,TX
-76115,45095,Fort Worth,TX,394,Fort Worth,TX
-76116,45095,Fort Worth,TX,394,Fort Worth,TX
-76117,45095,Fort Worth,TX,394,Fort Worth,TX
-76118,45095,Fort Worth,TX,394,Fort Worth,TX
-76119,45095,Fort Worth,TX,394,Fort Worth,TX
-76120,45095,Fort Worth,TX,394,Fort Worth,TX
-76121,45095,Fort Worth,TX,394,Fort Worth,TX
-76122,45095,Fort Worth,TX,394,Fort Worth,TX
-76123,45095,Fort Worth,TX,394,Fort Worth,TX
-76124,45095,Fort Worth,TX,394,Fort Worth,TX
-76126,45095,Fort Worth,TX,394,Fort Worth,TX
-76127,45095,Fort Worth,TX,394,Fort Worth,TX
-76129,45095,Fort Worth,TX,394,Fort Worth,TX
-76130,45095,Fort Worth,TX,394,Fort Worth,TX
-76131,45095,Fort Worth,TX,394,Fort Worth,TX
-76132,45095,Fort Worth,TX,394,Fort Worth,TX
-76133,45095,Fort Worth,TX,394,Fort Worth,TX
-76134,45095,Fort Worth,TX,394,Fort Worth,TX
-76135,45095,Fort Worth,TX,394,Fort Worth,TX
-76136,45095,Fort Worth,TX,394,Fort Worth,TX
-76137,45095,Fort Worth,TX,394,Fort Worth,TX
-76140,45095,Fort Worth,TX,394,Fort Worth,TX
-76147,45095,Fort Worth,TX,394,Fort Worth,TX
-76148,45095,Fort Worth,TX,394,Fort Worth,TX
-76150,45095,Fort Worth,TX,394,Fort Worth,TX
-76155,45112,Grand Prairie,TX,391,Dallas,TX
-76161,45095,Fort Worth,TX,394,Fort Worth,TX
-76162,45095,Fort Worth,TX,394,Fort Worth,TX
-76163,45095,Fort Worth,TX,394,Fort Worth,TX
-76164,45095,Fort Worth,TX,394,Fort Worth,TX
-76166,45095,Fort Worth,TX,394,Fort Worth,TX
-76177,45095,Fort Worth,TX,394,Fort Worth,TX
-76179,45095,Fort Worth,TX,394,Fort Worth,TX
-76180,45095,Fort Worth,TX,394,Fort Worth,TX
-76181,45095,Fort Worth,TX,394,Fort Worth,TX
-76182,45095,Fort Worth,TX,394,Fort Worth,TX
-76185,45095,Fort Worth,TX,394,Fort Worth,TX
-76190,45095,Fort Worth,TX,394,Fort Worth,TX
-76191,45095,Fort Worth,TX,394,Fort Worth,TX
-76192,45095,Fort Worth,TX,394,Fort Worth,TX
-76193,45095,Fort Worth,TX,394,Fort Worth,TX
-76195,45095,Fort Worth,TX,394,Fort Worth,TX
-76196,45095,Fort Worth,TX,394,Fort Worth,TX
-76197,45095,Fort Worth,TX,394,Fort Worth,TX
-76198,45095,Fort Worth,TX,394,Fort Worth,TX
-76199,45095,Fort Worth,TX,394,Fort Worth,TX
-76201,45073,Denton,TX,391,Dallas,TX
-76202,45073,Denton,TX,391,Dallas,TX
-76203,45073,Denton,TX,391,Dallas,TX
-76204,45073,Denton,TX,391,Dallas,TX
-76205,45073,Denton,TX,391,Dallas,TX
-76206,45073,Denton,TX,391,Dallas,TX
-76207,45073,Denton,TX,391,Dallas,TX
-76208,45073,Denton,TX,391,Dallas,TX
-76209,45073,Denton,TX,391,Dallas,TX
-76210,45073,Denton,TX,391,Dallas,TX
-76225,45070,Decatur,TX,391,Dallas,TX
-76226,45073,Denton,TX,391,Dallas,TX
-76227,45073,Denton,TX,391,Dallas,TX
-76228,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76230,45028,Bowie,TX,420,Wichita Falls,TX
-76233,45237,Sherman,TX,391,Dallas,TX
-76234,45070,Decatur,TX,391,Dallas,TX
-76238,45073,Denton,TX,391,Dallas,TX
-76239,45073,Denton,TX,391,Dallas,TX
-76240,45098,Gainesville,TX,391,Dallas,TX
-76241,45098,Gainesville,TX,391,Dallas,TX
-76244,45095,Fort Worth,TX,394,Fort Worth,TX
-76245,45237,Sherman,TX,391,Dallas,TX
-76246,45070,Decatur,TX,391,Dallas,TX
-76247,45073,Denton,TX,391,Dallas,TX
-76248,45095,Fort Worth,TX,394,Fort Worth,TX
-76249,45073,Denton,TX,391,Dallas,TX
-76250,45098,Gainesville,TX,391,Dallas,TX
-76251,45028,Bowie,TX,420,Wichita Falls,TX
-76252,45189,Muenster,TX,391,Dallas,TX
-76253,45189,Muenster,TX,391,Dallas,TX
-76255,45197,Nocona,TX,391,Dallas,TX
-76258,45073,Denton,TX,391,Dallas,TX
-76259,45073,Denton,TX,391,Dallas,TX
-76261,45197,Nocona,TX,391,Dallas,TX
-76262,45114,Grapevine,TX,391,Dallas,TX
-76263,45073,Denton,TX,391,Dallas,TX
-76264,45237,Sherman,TX,391,Dallas,TX
-76265,45197,Nocona,TX,391,Dallas,TX
-76266,45073,Denton,TX,391,Dallas,TX
-76267,45070,Decatur,TX,391,Dallas,TX
-76268,45237,Sherman,TX,391,Dallas,TX
-76270,45070,Decatur,TX,391,Dallas,TX
-76271,45237,Sherman,TX,391,Dallas,TX
-76272,45073,Denton,TX,391,Dallas,TX
-76273,45237,Sherman,TX,391,Dallas,TX
-76301,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76302,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76305,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76306,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76307,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76308,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76309,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76310,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76311,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76351,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76352,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76354,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76357,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76360,45088,Electra,TX,420,Wichita Falls,TX
-76363,45235,Seymour,TX,420,Wichita Falls,TX
-76364,45263,Vernon,TX,420,Wichita Falls,TX
-76365,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76366,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76367,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76369,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76370,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76371,45235,Seymour,TX,420,Wichita Falls,TX
-76372,45110,Graham,TX,394,Fort Worth,TX
-76373,45263,Vernon,TX,420,Wichita Falls,TX
-76374,45199,Olney,TX,420,Wichita Falls,TX
-76377,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76379,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76380,45235,Seymour,TX,420,Wichita Falls,TX
-76384,45263,Vernon,TX,420,Wichita Falls,TX
-76385,45263,Vernon,TX,420,Wichita Falls,TX
-76388,45123,Haskell,TX,382,Abilene,TX
-76389,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76401,45245,Stephenville,TX,394,Fort Worth,TX
-76402,45245,Stephenville,TX,394,Fort Worth,TX
-76424,45030,Breckenridge,TX,382,Abilene,TX
-76426,45070,Decatur,TX,391,Dallas,TX
-76427,45110,Graham,TX,394,Fort Worth,TX
-76429,45030,Breckenridge,TX,382,Abilene,TX
-76430,45001,Abilene,TX,382,Abilene,TX
-76431,45070,Decatur,TX,391,Dallas,TX
-76432,45035,Brownwood,TX,382,Abilene,TX
-76433,45245,Stephenville,TX,394,Fort Worth,TX
-76435,45081,Eastland,TX,382,Abilene,TX
-76436,45069,De Leon,TX,382,Abilene,TX
-76437,45081,Eastland,TX,382,Abilene,TX
-76439,45267,Weatherford,TX,394,Fort Worth,TX
-76442,45059,Comanche,TX,382,Abilene,TX
-76443,45001,Abilene,TX,382,Abilene,TX
-76444,45069,De Leon,TX,382,Abilene,TX
-76445,45245,Stephenville,TX,394,Fort Worth,TX
-76446,45245,Stephenville,TX,394,Fort Worth,TX
-76448,45081,Eastland,TX,382,Abilene,TX
-76449,45182,Mineral Wells,TX,394,Fort Worth,TX
-76450,45110,Graham,TX,394,Fort Worth,TX
-76452,45069,De Leon,TX,382,Abilene,TX
-76453,45245,Stephenville,TX,394,Fort Worth,TX
-76454,45069,De Leon,TX,382,Abilene,TX
-76455,45069,De Leon,TX,382,Abilene,TX
-76457,45245,Stephenville,TX,394,Fort Worth,TX
-76458,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76459,45199,Olney,TX,420,Wichita Falls,TX
-76460,45199,Olney,TX,420,Wichita Falls,TX
-76461,45245,Stephenville,TX,394,Fort Worth,TX
-76462,45111,Granbury,TX,394,Fort Worth,TX
-76463,45245,Stephenville,TX,394,Fort Worth,TX
-76464,45001,Abilene,TX,382,Abilene,TX
-76465,45245,Stephenville,TX,394,Fort Worth,TX
-76466,45081,Eastland,TX,382,Abilene,TX
-76467,45111,Granbury,TX,394,Fort Worth,TX
-76468,45069,De Leon,TX,382,Abilene,TX
-76469,45001,Abilene,TX,382,Abilene,TX
-76470,45081,Eastland,TX,382,Abilene,TX
-76471,45035,Brownwood,TX,382,Abilene,TX
-76472,45182,Mineral Wells,TX,394,Fort Worth,TX
-76474,45059,Comanche,TX,382,Abilene,TX
-76475,45245,Stephenville,TX,394,Fort Worth,TX
-76476,45111,Granbury,TX,394,Fort Worth,TX
-76481,45110,Graham,TX,394,Fort Worth,TX
-76483,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76484,45182,Mineral Wells,TX,394,Fort Worth,TX
-76485,45182,Mineral Wells,TX,394,Fort Worth,TX
-76486,45182,Mineral Wells,TX,394,Fort Worth,TX
-76487,45267,Weatherford,TX,394,Fort Worth,TX
-76490,45182,Mineral Wells,TX,394,Fort Worth,TX
-76491,45276,Wichita Falls,TX,420,Wichita Falls,TX
-76501,45251,Temple,TX,413,Temple,TX
-76502,45251,Temple,TX,413,Temple,TX
-76503,45251,Temple,TX,413,Temple,TX
-76504,45251,Temple,TX,413,Temple,TX
-76508,45251,Temple,TX,413,Temple,TX
-76511,45251,Temple,TX,413,Temple,TX
-76513,45251,Temple,TX,413,Temple,TX
-76518,45251,Temple,TX,413,Temple,TX
-76519,45251,Temple,TX,413,Temple,TX
-76520,45040,Cameron,TX,413,Temple,TX
-76522,45148,Killeen,TX,413,Temple,TX
-76523,45251,Temple,TX,413,Temple,TX
-76524,45265,Waco,TX,418,Waco,TX
-76525,45120,Hamilton,TX,418,Waco,TX
-76526,45251,Temple,TX,413,Temple,TX
-76527,45102,Georgetown,TX,385,Austin,TX
-76528,45101,Gatesville,TX,413,Temple,TX
-76530,45250,Taylor,TX,413,Temple,TX
-76531,45120,Hamilton,TX,418,Waco,TX
-76533,45251,Temple,TX,413,Temple,TX
-76534,45251,Temple,TX,413,Temple,TX
-76537,45102,Georgetown,TX,385,Austin,TX
-76538,45251,Temple,TX,413,Temple,TX
-76539,45148,Killeen,TX,413,Temple,TX
-76540,45148,Killeen,TX,413,Temple,TX
-76541,45148,Killeen,TX,413,Temple,TX
-76542,45148,Killeen,TX,413,Temple,TX
-76543,45148,Killeen,TX,413,Temple,TX
-76544,45148,Killeen,TX,413,Temple,TX
-76547,45148,Killeen,TX,413,Temple,TX
-76548,45148,Killeen,TX,413,Temple,TX
-76549,45148,Killeen,TX,413,Temple,TX
-76550,45148,Killeen,TX,413,Temple,TX
-76554,45251,Temple,TX,413,Temple,TX
-76556,45223,Rockdale,TX,413,Temple,TX
-76557,45251,Temple,TX,413,Temple,TX
-76558,45101,Gatesville,TX,413,Temple,TX
-76559,45148,Killeen,TX,413,Temple,TX
-76561,45251,Temple,TX,413,Temple,TX
-76564,45251,Temple,TX,413,Temple,TX
-76565,45120,Hamilton,TX,418,Waco,TX
-76566,45120,Hamilton,TX,418,Waco,TX
-76567,45223,Rockdale,TX,413,Temple,TX
-76569,45251,Temple,TX,413,Temple,TX
-76570,45251,Temple,TX,413,Temple,TX
-76571,45251,Temple,TX,413,Temple,TX
-76573,45250,Taylor,TX,413,Temple,TX
-76574,45250,Taylor,TX,413,Temple,TX
-76577,45250,Taylor,TX,413,Temple,TX
-76578,45250,Taylor,TX,413,Temple,TX
-76579,45251,Temple,TX,413,Temple,TX
-76596,45101,Gatesville,TX,413,Temple,TX
-76597,45101,Gatesville,TX,413,Temple,TX
-76598,45101,Gatesville,TX,413,Temple,TX
-76599,45101,Gatesville,TX,413,Temple,TX
-76621,45265,Waco,TX,418,Waco,TX
-76622,45265,Waco,TX,418,Waco,TX
-76623,45266,Waxahachie,TX,391,Dallas,TX
-76624,45265,Waco,TX,418,Waco,TX
-76626,45062,Corsicana,TX,391,Dallas,TX
-76627,45052,Cleburne,TX,394,Fort Worth,TX
-76628,45129,Hillsboro,TX,418,Waco,TX
-76629,45036,Bryan,TX,388,Bryan,TX
-76630,45265,Waco,TX,418,Waco,TX
-76631,45129,Hillsboro,TX,418,Waco,TX
-76632,45265,Waco,TX,418,Waco,TX
-76633,45265,Waco,TX,418,Waco,TX
-76634,45054,Clifton,TX,418,Waco,TX
-76635,45265,Waco,TX,418,Waco,TX
-76636,45052,Cleburne,TX,394,Fort Worth,TX
-76637,45054,Clifton,TX,418,Waco,TX
-76638,45265,Waco,TX,418,Waco,TX
-76639,45062,Corsicana,TX,391,Dallas,TX
-76640,45265,Waco,TX,418,Waco,TX
-76641,45062,Corsicana,TX,391,Dallas,TX
-76642,45116,Groesbeck,TX,418,Waco,TX
-76643,45265,Waco,TX,418,Waco,TX
-76644,45054,Clifton,TX,418,Waco,TX
-76645,45129,Hillsboro,TX,418,Waco,TX
-76648,45265,Waco,TX,418,Waco,TX
-76649,45054,Clifton,TX,418,Waco,TX
-76650,45129,Hillsboro,TX,418,Waco,TX
-76651,45266,Waxahachie,TX,391,Dallas,TX
-76652,45052,Cleburne,TX,394,Fort Worth,TX
-76653,45265,Waco,TX,418,Waco,TX
-76654,45265,Waco,TX,418,Waco,TX
-76655,45265,Waco,TX,418,Waco,TX
-76656,45251,Temple,TX,413,Temple,TX
-76657,45265,Waco,TX,418,Waco,TX
-76660,45129,Hillsboro,TX,418,Waco,TX
-76661,45173,Marlin,TX,418,Waco,TX
-76664,45265,Waco,TX,418,Waco,TX
-76665,45054,Clifton,TX,418,Waco,TX
-76666,45129,Hillsboro,TX,418,Waco,TX
-76667,45180,Mexia,TX,418,Waco,TX
-76670,45266,Waxahachie,TX,391,Dallas,TX
-76671,45054,Clifton,TX,418,Waco,TX
-76673,45265,Waco,TX,418,Waco,TX
-76676,45265,Waco,TX,418,Waco,TX
-76678,45265,Waco,TX,418,Waco,TX
-76679,45062,Corsicana,TX,391,Dallas,TX
-76680,45265,Waco,TX,418,Waco,TX
-76681,45062,Corsicana,TX,391,Dallas,TX
-76682,45265,Waco,TX,418,Waco,TX
-76684,45265,Waco,TX,418,Waco,TX
-76685,45265,Waco,TX,418,Waco,TX
-76686,45180,Mexia,TX,418,Waco,TX
-76687,45265,Waco,TX,418,Waco,TX
-76689,45054,Clifton,TX,418,Waco,TX
-76690,45054,Clifton,TX,418,Waco,TX
-76691,45265,Waco,TX,418,Waco,TX
-76692,45275,Whitney,TX,418,Waco,TX
-76693,45180,Mexia,TX,418,Waco,TX
-76701,45265,Waco,TX,418,Waco,TX
-76702,45265,Waco,TX,418,Waco,TX
-76703,45265,Waco,TX,418,Waco,TX
-76704,45265,Waco,TX,418,Waco,TX
-76705,45265,Waco,TX,418,Waco,TX
-76706,45265,Waco,TX,418,Waco,TX
-76707,45265,Waco,TX,418,Waco,TX
-76708,45265,Waco,TX,418,Waco,TX
-76710,45265,Waco,TX,418,Waco,TX
-76711,45265,Waco,TX,418,Waco,TX
-76712,45265,Waco,TX,418,Waco,TX
-76714,45265,Waco,TX,418,Waco,TX
-76715,45265,Waco,TX,418,Waco,TX
-76716,45265,Waco,TX,418,Waco,TX
-76797,45265,Waco,TX,418,Waco,TX
-76798,45265,Waco,TX,418,Waco,TX
-76799,45265,Waco,TX,418,Waco,TX
-76801,45035,Brownwood,TX,382,Abilene,TX
-76802,45035,Brownwood,TX,382,Abilene,TX
-76803,45035,Brownwood,TX,382,Abilene,TX
-76804,45035,Brownwood,TX,382,Abilene,TX
-76820,45096,Fredericksburg,TX,412,San Antonio,TX
-76821,45228,San Angelo,TX,411,San Angelo,TX
-76823,45035,Brownwood,TX,382,Abilene,TX
-76824,45148,Killeen,TX,413,Temple,TX
-76825,45029,Brady,TX,411,San Angelo,TX
-76827,45035,Brownwood,TX,382,Abilene,TX
-76828,45035,Brownwood,TX,382,Abilene,TX
-76831,45096,Fredericksburg,TX,412,San Antonio,TX
-76832,45035,Brownwood,TX,382,Abilene,TX
-76834,45055,Coleman,TX,382,Abilene,TX
-76836,45228,San Angelo,TX,411,San Angelo,TX
-76837,45228,San Angelo,TX,411,San Angelo,TX
-76841,45228,San Angelo,TX,411,San Angelo,TX
-76842,45096,Fredericksburg,TX,412,San Antonio,TX
-76844,45035,Brownwood,TX,382,Abilene,TX
-76845,45055,Coleman,TX,382,Abilene,TX
-76848,45228,San Angelo,TX,411,San Angelo,TX
-76849,45141,Junction,TX,412,San Antonio,TX
-76852,45228,San Angelo,TX,411,San Angelo,TX
-76853,45148,Killeen,TX,413,Temple,TX
-76854,45141,Junction,TX,412,San Antonio,TX
-76855,45228,San Angelo,TX,411,San Angelo,TX
-76856,45096,Fredericksburg,TX,412,San Antonio,TX
-76857,45035,Brownwood,TX,382,Abilene,TX
-76858,45228,San Angelo,TX,411,San Angelo,TX
-76859,45228,San Angelo,TX,411,San Angelo,TX
-76861,45228,San Angelo,TX,411,San Angelo,TX
-76862,45228,San Angelo,TX,411,San Angelo,TX
-76864,45035,Brownwood,TX,382,Abilene,TX
-76865,45228,San Angelo,TX,411,San Angelo,TX
-76866,45228,San Angelo,TX,411,San Angelo,TX
-76869,45163,Llano,TX,385,Austin,TX
-76870,45035,Brownwood,TX,382,Abilene,TX
-76871,45035,Brownwood,TX,382,Abilene,TX
-76872,45029,Brady,TX,411,San Angelo,TX
-76873,45035,Brownwood,TX,382,Abilene,TX
-76874,45241,Sonora,TX,411,San Angelo,TX
-76875,45228,San Angelo,TX,411,San Angelo,TX
-76877,45035,Brownwood,TX,382,Abilene,TX
-76878,45035,Brownwood,TX,382,Abilene,TX
-76880,45035,Brownwood,TX,382,Abilene,TX
-76882,45228,San Angelo,TX,411,San Angelo,TX
-76883,45141,Junction,TX,412,San Antonio,TX
-76884,45055,Coleman,TX,382,Abilene,TX
-76885,45163,Llano,TX,385,Austin,TX
-76886,45228,San Angelo,TX,411,San Angelo,TX
-76887,45029,Brady,TX,411,San Angelo,TX
-76888,45055,Coleman,TX,382,Abilene,TX
-76890,45035,Brownwood,TX,382,Abilene,TX
-76901,45228,San Angelo,TX,411,San Angelo,TX
-76902,45228,San Angelo,TX,411,San Angelo,TX
-76903,45228,San Angelo,TX,411,San Angelo,TX
-76904,45228,San Angelo,TX,411,San Angelo,TX
-76905,45228,San Angelo,TX,411,San Angelo,TX
-76906,45228,San Angelo,TX,411,San Angelo,TX
-76908,45228,San Angelo,TX,411,San Angelo,TX
-76909,45228,San Angelo,TX,411,San Angelo,TX
-76930,45228,San Angelo,TX,411,San Angelo,TX
-76932,45228,San Angelo,TX,411,San Angelo,TX
-76933,45228,San Angelo,TX,411,San Angelo,TX
-76934,45228,San Angelo,TX,411,San Angelo,TX
-76935,45228,San Angelo,TX,411,San Angelo,TX
-76936,45228,San Angelo,TX,411,San Angelo,TX
-76937,45228,San Angelo,TX,411,San Angelo,TX
-76939,45228,San Angelo,TX,411,San Angelo,TX
-76940,45228,San Angelo,TX,411,San Angelo,TX
-76941,45228,San Angelo,TX,411,San Angelo,TX
-76943,45228,San Angelo,TX,411,San Angelo,TX
-76945,45228,San Angelo,TX,411,San Angelo,TX
-76949,45228,San Angelo,TX,411,San Angelo,TX
-76950,45241,Sonora,TX,411,San Angelo,TX
-76951,45228,San Angelo,TX,411,San Angelo,TX
-76953,45228,San Angelo,TX,411,San Angelo,TX
-76955,45228,San Angelo,TX,411,San Angelo,TX
-76957,45228,San Angelo,TX,411,San Angelo,TX
-76958,45228,San Angelo,TX,411,San Angelo,TX
-77001,45131,Houston,TX,397,Houston,TX
-77002,45131,Houston,TX,397,Houston,TX
-77003,45131,Houston,TX,397,Houston,TX
-77004,45131,Houston,TX,397,Houston,TX
-77005,45131,Houston,TX,397,Houston,TX
-77006,45131,Houston,TX,397,Houston,TX
-77007,45131,Houston,TX,397,Houston,TX
-77008,45131,Houston,TX,397,Houston,TX
-77009,45131,Houston,TX,397,Houston,TX
-77010,45131,Houston,TX,397,Houston,TX
-77011,45131,Houston,TX,397,Houston,TX
-77012,45131,Houston,TX,397,Houston,TX
-77013,45131,Houston,TX,397,Houston,TX
-77014,45131,Houston,TX,397,Houston,TX
-77015,45131,Houston,TX,397,Houston,TX
-77016,45131,Houston,TX,397,Houston,TX
-77017,45131,Houston,TX,397,Houston,TX
-77018,45131,Houston,TX,397,Houston,TX
-77019,45131,Houston,TX,397,Houston,TX
-77020,45131,Houston,TX,397,Houston,TX
-77021,45131,Houston,TX,397,Houston,TX
-77022,45131,Houston,TX,397,Houston,TX
-77023,45131,Houston,TX,397,Houston,TX
-77024,45131,Houston,TX,397,Houston,TX
-77025,45131,Houston,TX,397,Houston,TX
-77026,45131,Houston,TX,397,Houston,TX
-77027,45131,Houston,TX,397,Houston,TX
-77028,45131,Houston,TX,397,Houston,TX
-77029,45131,Houston,TX,397,Houston,TX
-77030,45131,Houston,TX,397,Houston,TX
-77031,45131,Houston,TX,397,Houston,TX
-77032,45131,Houston,TX,397,Houston,TX
-77033,45131,Houston,TX,397,Houston,TX
-77034,45131,Houston,TX,397,Houston,TX
-77035,45131,Houston,TX,397,Houston,TX
-77036,45131,Houston,TX,397,Houston,TX
-77037,45131,Houston,TX,397,Houston,TX
-77038,45131,Houston,TX,397,Houston,TX
-77039,45131,Houston,TX,397,Houston,TX
-77040,45131,Houston,TX,397,Houston,TX
-77041,45131,Houston,TX,397,Houston,TX
-77042,45131,Houston,TX,397,Houston,TX
-77043,45131,Houston,TX,397,Houston,TX
-77044,45131,Houston,TX,397,Houston,TX
-77045,45131,Houston,TX,397,Houston,TX
-77046,45131,Houston,TX,397,Houston,TX
-77047,45131,Houston,TX,397,Houston,TX
-77048,45131,Houston,TX,397,Houston,TX
-77049,45131,Houston,TX,397,Houston,TX
-77050,45131,Houston,TX,397,Houston,TX
-77051,45131,Houston,TX,397,Houston,TX
-77052,45131,Houston,TX,397,Houston,TX
-77053,45131,Houston,TX,397,Houston,TX
-77054,45131,Houston,TX,397,Houston,TX
-77055,45131,Houston,TX,397,Houston,TX
-77056,45131,Houston,TX,397,Houston,TX
-77057,45131,Houston,TX,397,Houston,TX
-77058,45268,Webster,TX,397,Houston,TX
-77059,45268,Webster,TX,397,Houston,TX
-77060,45131,Houston,TX,397,Houston,TX
-77061,45131,Houston,TX,397,Houston,TX
-77062,45268,Webster,TX,397,Houston,TX
-77063,45131,Houston,TX,397,Houston,TX
-77064,45131,Houston,TX,397,Houston,TX
-77065,45131,Houston,TX,397,Houston,TX
-77066,45131,Houston,TX,397,Houston,TX
-77067,45131,Houston,TX,397,Houston,TX
-77068,45131,Houston,TX,397,Houston,TX
-77069,45131,Houston,TX,397,Houston,TX
-77070,45131,Houston,TX,397,Houston,TX
-77071,45131,Houston,TX,397,Houston,TX
-77072,45131,Houston,TX,397,Houston,TX
-77073,45131,Houston,TX,397,Houston,TX
-77074,45131,Houston,TX,397,Houston,TX
-77075,45131,Houston,TX,397,Houston,TX
-77076,45131,Houston,TX,397,Houston,TX
-77077,45131,Houston,TX,397,Houston,TX
-77078,45131,Houston,TX,397,Houston,TX
-77079,45131,Houston,TX,397,Houston,TX
-77080,45131,Houston,TX,397,Houston,TX
-77081,45131,Houston,TX,397,Houston,TX
-77082,45131,Houston,TX,397,Houston,TX
-77083,45131,Houston,TX,397,Houston,TX
-77084,45131,Houston,TX,397,Houston,TX
-77085,45131,Houston,TX,397,Houston,TX
-77086,45131,Houston,TX,397,Houston,TX
-77087,45131,Houston,TX,397,Houston,TX
-77088,45131,Houston,TX,397,Houston,TX
-77089,45131,Houston,TX,397,Houston,TX
-77090,45131,Houston,TX,397,Houston,TX
-77091,45131,Houston,TX,397,Houston,TX
-77092,45131,Houston,TX,397,Houston,TX
-77093,45131,Houston,TX,397,Houston,TX
-77094,45131,Houston,TX,397,Houston,TX
-77095,45131,Houston,TX,397,Houston,TX
-77096,45131,Houston,TX,397,Houston,TX
-77098,45131,Houston,TX,397,Houston,TX
-77099,45131,Houston,TX,397,Houston,TX
-77201,45131,Houston,TX,397,Houston,TX
-77202,45131,Houston,TX,397,Houston,TX
-77203,45131,Houston,TX,397,Houston,TX
-77204,45131,Houston,TX,397,Houston,TX
-77205,45133,Humble,TX,397,Houston,TX
-77206,45131,Houston,TX,397,Houston,TX
-77207,45131,Houston,TX,397,Houston,TX
-77208,45131,Houston,TX,397,Houston,TX
-77209,45131,Houston,TX,397,Houston,TX
-77210,45131,Houston,TX,397,Houston,TX
-77212,45131,Houston,TX,397,Houston,TX
-77213,45131,Houston,TX,397,Houston,TX
-77215,45131,Houston,TX,397,Houston,TX
-77216,45131,Houston,TX,397,Houston,TX
-77217,45131,Houston,TX,397,Houston,TX
-77218,45131,Houston,TX,397,Houston,TX
-77219,45131,Houston,TX,397,Houston,TX
-77220,45131,Houston,TX,397,Houston,TX
-77221,45131,Houston,TX,397,Houston,TX
-77222,45131,Houston,TX,397,Houston,TX
-77223,45131,Houston,TX,397,Houston,TX
-77224,45131,Houston,TX,397,Houston,TX
-77225,45131,Houston,TX,397,Houston,TX
-77226,45131,Houston,TX,397,Houston,TX
-77227,45131,Houston,TX,397,Houston,TX
-77228,45131,Houston,TX,397,Houston,TX
-77229,45131,Houston,TX,397,Houston,TX
-77230,45131,Houston,TX,397,Houston,TX
-77231,45131,Houston,TX,397,Houston,TX
-77233,45131,Houston,TX,397,Houston,TX
-77234,45131,Houston,TX,397,Houston,TX
-77235,45131,Houston,TX,397,Houston,TX
-77236,45131,Houston,TX,397,Houston,TX
-77237,45131,Houston,TX,397,Houston,TX
-77238,45131,Houston,TX,397,Houston,TX
-77240,45131,Houston,TX,397,Houston,TX
-77241,45131,Houston,TX,397,Houston,TX
-77242,45131,Houston,TX,397,Houston,TX
-77243,45131,Houston,TX,397,Houston,TX
-77244,45131,Houston,TX,397,Houston,TX
-77245,45131,Houston,TX,397,Houston,TX
-77248,45131,Houston,TX,397,Houston,TX
-77249,45131,Houston,TX,397,Houston,TX
-77251,45131,Houston,TX,397,Houston,TX
-77252,45131,Houston,TX,397,Houston,TX
-77253,45131,Houston,TX,397,Houston,TX
-77254,45131,Houston,TX,397,Houston,TX
-77255,45131,Houston,TX,397,Houston,TX
-77256,45131,Houston,TX,397,Houston,TX
-77257,45131,Houston,TX,397,Houston,TX
-77258,45268,Webster,TX,397,Houston,TX
-77259,45268,Webster,TX,397,Houston,TX
-77261,45131,Houston,TX,397,Houston,TX
-77262,45131,Houston,TX,397,Houston,TX
-77263,45131,Houston,TX,397,Houston,TX
-77265,45131,Houston,TX,397,Houston,TX
-77266,45131,Houston,TX,397,Houston,TX
-77267,45131,Houston,TX,397,Houston,TX
-77268,45131,Houston,TX,397,Houston,TX
-77269,45131,Houston,TX,397,Houston,TX
-77270,45131,Houston,TX,397,Houston,TX
-77271,45131,Houston,TX,397,Houston,TX
-77272,45131,Houston,TX,397,Houston,TX
-77273,45131,Houston,TX,397,Houston,TX
-77274,45131,Houston,TX,397,Houston,TX
-77275,45131,Houston,TX,397,Houston,TX
-77277,45131,Houston,TX,397,Houston,TX
-77279,45131,Houston,TX,397,Houston,TX
-77280,45131,Houston,TX,397,Houston,TX
-77282,45131,Houston,TX,397,Houston,TX
-77284,45131,Houston,TX,397,Houston,TX
-77287,45131,Houston,TX,397,Houston,TX
-77288,45131,Houston,TX,397,Houston,TX
-77289,45268,Webster,TX,397,Houston,TX
-77290,45131,Houston,TX,397,Houston,TX
-77291,45131,Houston,TX,397,Houston,TX
-77292,45131,Houston,TX,397,Houston,TX
-77293,45131,Houston,TX,397,Houston,TX
-77297,45131,Houston,TX,397,Houston,TX
-77299,45131,Houston,TX,397,Houston,TX
-77301,45060,Conroe,TX,397,Houston,TX
-77302,45131,Houston,TX,397,Houston,TX
-77303,45060,Conroe,TX,397,Houston,TX
-77304,45060,Conroe,TX,397,Houston,TX
-77305,45060,Conroe,TX,397,Houston,TX
-77306,45060,Conroe,TX,397,Houston,TX
-77315,45131,Houston,TX,397,Houston,TX
-77316,45060,Conroe,TX,397,Houston,TX
-77318,45060,Conroe,TX,397,Houston,TX
-77320,45134,Huntsville,TX,397,Houston,TX
-77325,45131,Houston,TX,397,Houston,TX
-77326,45169,Lufkin,TX,397,Houston,TX
-77327,45053,Cleveland,TX,397,Houston,TX
-77328,45053,Cleveland,TX,397,Houston,TX
-77331,45053,Cleveland,TX,397,Houston,TX
-77332,45169,Lufkin,TX,397,Houston,TX
-77333,45060,Conroe,TX,397,Houston,TX
-77334,45134,Huntsville,TX,397,Houston,TX
-77335,45169,Lufkin,TX,397,Houston,TX
-77336,45133,Humble,TX,397,Houston,TX
-77337,45257,Tomball,TX,397,Houston,TX
-77338,45133,Humble,TX,397,Houston,TX
-77339,45131,Houston,TX,397,Houston,TX
-77340,45134,Huntsville,TX,397,Houston,TX
-77341,45134,Huntsville,TX,397,Houston,TX
-77342,45134,Huntsville,TX,397,Houston,TX
-77343,45134,Huntsville,TX,397,Houston,TX
-77344,45134,Huntsville,TX,397,Houston,TX
-77345,45131,Houston,TX,397,Houston,TX
-77346,45133,Humble,TX,397,Houston,TX
-77347,45133,Humble,TX,397,Houston,TX
-77348,45134,Huntsville,TX,397,Houston,TX
-77349,45134,Huntsville,TX,397,Houston,TX
-77350,45169,Lufkin,TX,397,Houston,TX
-77351,45169,Lufkin,TX,397,Houston,TX
-77353,45257,Tomball,TX,397,Houston,TX
-77354,45257,Tomball,TX,397,Houston,TX
-77355,45257,Tomball,TX,397,Houston,TX
-77356,45060,Conroe,TX,397,Houston,TX
-77357,45133,Humble,TX,397,Houston,TX
-77358,45134,Huntsville,TX,397,Houston,TX
-77359,45134,Huntsville,TX,397,Houston,TX
-77360,45169,Lufkin,TX,397,Houston,TX
-77362,45257,Tomball,TX,397,Houston,TX
-77363,45257,Tomball,TX,397,Houston,TX
-77364,45134,Huntsville,TX,397,Houston,TX
-77365,45131,Houston,TX,397,Houston,TX
-77367,45134,Huntsville,TX,397,Houston,TX
-77368,45053,Cleveland,TX,397,Houston,TX
-77369,45053,Cleveland,TX,397,Houston,TX
-77371,45053,Cleveland,TX,397,Houston,TX
-77372,45133,Humble,TX,397,Houston,TX
-77373,45131,Houston,TX,397,Houston,TX
-77374,45021,Beaumont,TX,386,Beaumont,TX
-77375,45257,Tomball,TX,397,Houston,TX
-77376,45021,Beaumont,TX,386,Beaumont,TX
-77377,45257,Tomball,TX,397,Houston,TX
-77378,45060,Conroe,TX,397,Houston,TX
-77379,45131,Houston,TX,397,Houston,TX
-77380,45131,Houston,TX,397,Houston,TX
-77381,45131,Houston,TX,397,Houston,TX
-77382,45257,Tomball,TX,397,Houston,TX
-77383,45131,Houston,TX,397,Houston,TX
-77384,45060,Conroe,TX,397,Houston,TX
-77385,45131,Houston,TX,397,Houston,TX
-77386,45131,Houston,TX,397,Houston,TX
-77387,45131,Houston,TX,397,Houston,TX
-77388,45131,Houston,TX,397,Houston,TX
-77389,45131,Houston,TX,397,Houston,TX
-77391,45131,Houston,TX,397,Houston,TX
-77393,45131,Houston,TX,397,Houston,TX
-77396,45133,Humble,TX,397,Houston,TX
-77399,45169,Lufkin,TX,397,Houston,TX
-77401,45131,Houston,TX,397,Houston,TX
-77402,45131,Houston,TX,397,Houston,TX
-77404,45019,Bay City,TX,397,Houston,TX
-77406,45221,Richmond,TX,397,Houston,TX
-77407,45221,Richmond,TX,397,Houston,TX
-77410,45131,Houston,TX,397,Houston,TX
-77411,45131,Houston,TX,397,Houston,TX
-77412,45079,Eagle Lake,TX,397,Houston,TX
-77413,45131,Houston,TX,397,Houston,TX
-77414,45019,Bay City,TX,397,Houston,TX
-77415,45019,Bay City,TX,397,Houston,TX
-77417,45221,Richmond,TX,397,Houston,TX
-77418,45024,Bellville,TX,397,Houston,TX
-77419,45019,Bay City,TX,397,Houston,TX
-77420,45273,Wharton,TX,397,Houston,TX
-77422,45152,Lake Jackson,TX,397,Houston,TX
-77423,45131,Houston,TX,397,Houston,TX
-77426,45031,Brenham,TX,397,Houston,TX
-77428,45201,Palacios,TX,397,Houston,TX
-77429,45131,Houston,TX,397,Houston,TX
-77430,45131,Houston,TX,397,Houston,TX
-77431,45131,Houston,TX,397,Houston,TX
-77432,45085,El Campo,TX,397,Houston,TX
-77433,45131,Houston,TX,397,Houston,TX
-77434,45079,Eagle Lake,TX,397,Houston,TX
-77435,45273,Wharton,TX,397,Houston,TX
-77436,45273,Wharton,TX,397,Houston,TX
-77437,45085,El Campo,TX,397,Houston,TX
-77440,45019,Bay City,TX,397,Houston,TX
-77441,45221,Richmond,TX,397,Houston,TX
-77442,45079,Eagle Lake,TX,397,Houston,TX
-77443,45273,Wharton,TX,397,Houston,TX
-77444,45221,Richmond,TX,397,Houston,TX
-77445,45131,Houston,TX,397,Houston,TX
-77446,45257,Tomball,TX,397,Houston,TX
-77447,45257,Tomball,TX,397,Houston,TX
-77448,45273,Wharton,TX,397,Houston,TX
-77449,45131,Houston,TX,397,Houston,TX
-77450,45131,Houston,TX,397,Houston,TX
-77451,45221,Richmond,TX,397,Houston,TX
-77452,45024,Bellville,TX,397,Houston,TX
-77453,45273,Wharton,TX,397,Houston,TX
-77454,45273,Wharton,TX,397,Houston,TX
-77455,45085,El Campo,TX,397,Houston,TX
-77456,45019,Bay City,TX,397,Houston,TX
-77457,45019,Bay City,TX,397,Houston,TX
-77458,45019,Bay City,TX,397,Houston,TX
-77459,45131,Houston,TX,397,Houston,TX
-77460,45079,Eagle Lake,TX,397,Houston,TX
-77461,45221,Richmond,TX,397,Houston,TX
-77463,45131,Houston,TX,397,Houston,TX
-77464,45221,Richmond,TX,397,Houston,TX
-77465,45201,Palacios,TX,397,Houston,TX
-77466,45131,Houston,TX,397,Houston,TX
-77467,45085,El Campo,TX,397,Houston,TX
-77468,45273,Wharton,TX,397,Houston,TX
-77469,45221,Richmond,TX,397,Houston,TX
-77470,45079,Eagle Lake,TX,397,Houston,TX
-77471,45221,Richmond,TX,397,Houston,TX
-77473,45131,Houston,TX,397,Houston,TX
-77474,45131,Houston,TX,397,Houston,TX
-77475,45269,Weimar,TX,397,Houston,TX
-77476,45131,Houston,TX,397,Houston,TX
-77477,45131,Houston,TX,397,Houston,TX
-77478,45131,Houston,TX,397,Houston,TX
-77479,45131,Houston,TX,397,Houston,TX
-77480,45131,Houston,TX,397,Houston,TX
-77481,45221,Richmond,TX,397,Houston,TX
-77482,45019,Bay City,TX,397,Houston,TX
-77483,45019,Bay City,TX,397,Houston,TX
-77484,45257,Tomball,TX,397,Houston,TX
-77485,45131,Houston,TX,397,Houston,TX
-77486,45131,Houston,TX,397,Houston,TX
-77487,45131,Houston,TX,397,Houston,TX
-77488,45273,Wharton,TX,397,Houston,TX
-77489,45131,Houston,TX,397,Houston,TX
-77491,45131,Houston,TX,397,Houston,TX
-77492,45131,Houston,TX,397,Houston,TX
-77493,45131,Houston,TX,397,Houston,TX
-77494,45142,Katy,TX,397,Houston,TX
-77496,45131,Houston,TX,397,Houston,TX
-77497,45131,Houston,TX,397,Houston,TX
-77498,45131,Houston,TX,397,Houston,TX
-77501,45205,Pasadena,TX,397,Houston,TX
-77502,45205,Pasadena,TX,397,Houston,TX
-77503,45205,Pasadena,TX,397,Houston,TX
-77504,45205,Pasadena,TX,397,Houston,TX
-77505,45205,Pasadena,TX,397,Houston,TX
-77506,45205,Pasadena,TX,397,Houston,TX
-77507,45205,Pasadena,TX,397,Houston,TX
-77508,45205,Pasadena,TX,397,Houston,TX
-77510,45254,Texas City,TX,397,Houston,TX
-77511,45005,Alvin,TX,397,Houston,TX
-77512,45005,Alvin,TX,397,Houston,TX
-77514,45007,Anahuac,TX,397,Houston,TX
-77515,45009,Angleton,TX,397,Houston,TX
-77516,45009,Angleton,TX,397,Houston,TX
-77517,45268,Webster,TX,397,Houston,TX
-77518,45268,Webster,TX,397,Houston,TX
-77519,45021,Beaumont,TX,386,Beaumont,TX
-77520,45020,Baytown,TX,397,Houston,TX
-77521,45020,Baytown,TX,397,Houston,TX
-77522,45020,Baytown,TX,397,Houston,TX
-77523,45020,Baytown,TX,397,Houston,TX
-77530,45131,Houston,TX,397,Houston,TX
-77531,45152,Lake Jackson,TX,397,Houston,TX
-77532,45020,Baytown,TX,397,Houston,TX
-77533,45021,Beaumont,TX,386,Beaumont,TX
-77534,45009,Angleton,TX,397,Houston,TX
-77535,45020,Baytown,TX,397,Houston,TX
-77536,45205,Pasadena,TX,397,Houston,TX
-77538,45021,Beaumont,TX,386,Beaumont,TX
-77539,45268,Webster,TX,397,Houston,TX
-77541,45152,Lake Jackson,TX,397,Houston,TX
-77542,45152,Lake Jackson,TX,397,Houston,TX
-77545,45131,Houston,TX,397,Houston,TX
-77546,45268,Webster,TX,397,Houston,TX
-77547,45131,Houston,TX,397,Houston,TX
-77549,45268,Webster,TX,397,Houston,TX
-77550,45099,Galveston,TX,397,Houston,TX
-77551,45099,Galveston,TX,397,Houston,TX
-77552,45099,Galveston,TX,397,Houston,TX
-77553,45099,Galveston,TX,397,Houston,TX
-77554,45099,Galveston,TX,397,Houston,TX
-77555,45099,Galveston,TX,397,Houston,TX
-77560,45020,Baytown,TX,397,Houston,TX
-77561,45159,Liberty,TX,397,Houston,TX
-77562,45020,Baytown,TX,397,Houston,TX
-77563,45254,Texas City,TX,397,Houston,TX
-77564,45021,Beaumont,TX,386,Beaumont,TX
-77565,45268,Webster,TX,397,Houston,TX
-77566,45152,Lake Jackson,TX,397,Houston,TX
-77568,45254,Texas City,TX,397,Houston,TX
-77571,45205,Pasadena,TX,397,Houston,TX
-77572,45205,Pasadena,TX,397,Houston,TX
-77573,45268,Webster,TX,397,Houston,TX
-77574,45268,Webster,TX,397,Houston,TX
-77575,45159,Liberty,TX,397,Houston,TX
-77577,45005,Alvin,TX,397,Houston,TX
-77578,45131,Houston,TX,397,Houston,TX
-77580,45020,Baytown,TX,397,Houston,TX
-77581,45131,Houston,TX,397,Houston,TX
-77582,45159,Liberty,TX,397,Houston,TX
-77583,45131,Houston,TX,397,Houston,TX
-77584,45131,Houston,TX,397,Houston,TX
-77585,45021,Beaumont,TX,386,Beaumont,TX
-77586,45268,Webster,TX,397,Houston,TX
-77587,45205,Pasadena,TX,397,Houston,TX
-77588,45131,Houston,TX,397,Houston,TX
-77590,45254,Texas City,TX,397,Houston,TX
-77591,45254,Texas City,TX,397,Houston,TX
-77592,45254,Texas City,TX,397,Houston,TX
-77597,45020,Baytown,TX,397,Houston,TX
-77598,45268,Webster,TX,397,Houston,TX
-77611,45212,Port Arthur,TX,386,Beaumont,TX
-77612,45021,Beaumont,TX,386,Beaumont,TX
-77613,45021,Beaumont,TX,386,Beaumont,TX
-77614,45200,Orange,TX,386,Beaumont,TX
-77615,45021,Beaumont,TX,386,Beaumont,TX
-77616,45021,Beaumont,TX,386,Beaumont,TX
-77617,45099,Galveston,TX,397,Houston,TX
-77619,45212,Port Arthur,TX,386,Beaumont,TX
-77622,45277,Winnie,TX,386,Beaumont,TX
-77623,45099,Galveston,TX,397,Houston,TX
-77624,45021,Beaumont,TX,386,Beaumont,TX
-77625,45021,Beaumont,TX,386,Beaumont,TX
-77626,45200,Orange,TX,386,Beaumont,TX
-77627,45212,Port Arthur,TX,386,Beaumont,TX
-77629,45021,Beaumont,TX,386,Beaumont,TX
-77630,45200,Orange,TX,386,Beaumont,TX
-77631,45200,Orange,TX,386,Beaumont,TX
-77632,45200,Orange,TX,386,Beaumont,TX
-77639,45212,Port Arthur,TX,386,Beaumont,TX
-77640,45212,Port Arthur,TX,386,Beaumont,TX
-77641,45212,Port Arthur,TX,386,Beaumont,TX
-77642,45212,Port Arthur,TX,386,Beaumont,TX
-77643,45212,Port Arthur,TX,386,Beaumont,TX
-77650,45099,Galveston,TX,397,Houston,TX
-77651,45212,Port Arthur,TX,386,Beaumont,TX
-77655,45212,Port Arthur,TX,386,Beaumont,TX
-77656,45021,Beaumont,TX,386,Beaumont,TX
-77657,45021,Beaumont,TX,386,Beaumont,TX
-77659,45021,Beaumont,TX,386,Beaumont,TX
-77660,45021,Beaumont,TX,386,Beaumont,TX
-77661,45007,Anahuac,TX,397,Houston,TX
-77662,45021,Beaumont,TX,386,Beaumont,TX
-77663,45021,Beaumont,TX,386,Beaumont,TX
-77664,45021,Beaumont,TX,386,Beaumont,TX
-77665,45007,Anahuac,TX,397,Houston,TX
-77670,45021,Beaumont,TX,386,Beaumont,TX
-77701,45021,Beaumont,TX,386,Beaumont,TX
-77702,45021,Beaumont,TX,386,Beaumont,TX
-77703,45021,Beaumont,TX,386,Beaumont,TX
-77704,45021,Beaumont,TX,386,Beaumont,TX
-77705,45021,Beaumont,TX,386,Beaumont,TX
-77706,45021,Beaumont,TX,386,Beaumont,TX
-77707,45021,Beaumont,TX,386,Beaumont,TX
-77708,45021,Beaumont,TX,386,Beaumont,TX
-77710,45021,Beaumont,TX,386,Beaumont,TX
-77713,45021,Beaumont,TX,386,Beaumont,TX
-77720,45021,Beaumont,TX,386,Beaumont,TX
-77725,45021,Beaumont,TX,386,Beaumont,TX
-77726,45021,Beaumont,TX,386,Beaumont,TX
-77801,45036,Bryan,TX,388,Bryan,TX
-77802,45036,Bryan,TX,388,Bryan,TX
-77803,45036,Bryan,TX,388,Bryan,TX
-77805,45036,Bryan,TX,388,Bryan,TX
-77806,45036,Bryan,TX,388,Bryan,TX
-77807,45036,Bryan,TX,388,Bryan,TX
-77808,45036,Bryan,TX,388,Bryan,TX
-77830,45194,Navasota,TX,388,Bryan,TX
-77831,45134,Huntsville,TX,397,Houston,TX
-77833,45031,Brenham,TX,397,Houston,TX
-77834,45031,Brenham,TX,397,Houston,TX
-77835,45031,Brenham,TX,397,Houston,TX
-77836,45039,Caldwell,TX,388,Bryan,TX
-77837,45036,Bryan,TX,388,Bryan,TX
-77838,45039,Caldwell,TX,388,Bryan,TX
-77840,45036,Bryan,TX,388,Bryan,TX
-77841,45036,Bryan,TX,388,Bryan,TX
-77842,45036,Bryan,TX,388,Bryan,TX
-77843,45036,Bryan,TX,388,Bryan,TX
-77844,45036,Bryan,TX,388,Bryan,TX
-77845,45036,Bryan,TX,388,Bryan,TX
-77850,45036,Bryan,TX,388,Bryan,TX
-77852,45039,Caldwell,TX,388,Bryan,TX
-77853,45016,Austin,TX,385,Austin,TX
-77855,45036,Bryan,TX,388,Bryan,TX
-77856,45036,Bryan,TX,388,Bryan,TX
-77857,45223,Rockdale,TX,413,Temple,TX
-77859,45036,Bryan,TX,388,Bryan,TX
-77861,45171,Madisonville,TX,388,Bryan,TX
-77862,45036,Bryan,TX,388,Bryan,TX
-77863,45036,Bryan,TX,388,Bryan,TX
-77864,45171,Madisonville,TX,388,Bryan,TX
-77865,45036,Bryan,TX,388,Bryan,TX
-77866,45036,Bryan,TX,388,Bryan,TX
-77867,45036,Bryan,TX,388,Bryan,TX
-77868,45194,Navasota,TX,388,Bryan,TX
-77870,45036,Bryan,TX,388,Bryan,TX
-77871,45036,Bryan,TX,388,Bryan,TX
-77872,45171,Madisonville,TX,388,Bryan,TX
-77873,45060,Conroe,TX,397,Houston,TX
-77875,45194,Navasota,TX,388,Bryan,TX
-77876,45194,Navasota,TX,388,Bryan,TX
-77878,45036,Bryan,TX,388,Bryan,TX
-77879,45036,Bryan,TX,388,Bryan,TX
-77880,45031,Brenham,TX,397,Houston,TX
-77881,45036,Bryan,TX,388,Bryan,TX
-77882,45036,Bryan,TX,388,Bryan,TX
-77901,45264,Victoria,TX,417,Victoria,TX
-77902,45264,Victoria,TX,417,Victoria,TX
-77903,45264,Victoria,TX,417,Victoria,TX
-77904,45264,Victoria,TX,417,Victoria,TX
-77905,45264,Victoria,TX,417,Victoria,TX
-77950,45264,Victoria,TX,417,Victoria,TX
-77951,45264,Victoria,TX,417,Victoria,TX
-77954,45066,Cuero,TX,417,Victoria,TX
-77957,45264,Victoria,TX,417,Victoria,TX
-77960,45264,Victoria,TX,417,Victoria,TX
-77961,45264,Victoria,TX,417,Victoria,TX
-77962,45264,Victoria,TX,417,Victoria,TX
-77963,45264,Victoria,TX,417,Victoria,TX
-77964,45119,Hallettsville,TX,397,Houston,TX
-77967,45264,Victoria,TX,417,Victoria,TX
-77968,45264,Victoria,TX,417,Victoria,TX
-77969,45264,Victoria,TX,417,Victoria,TX
-77970,45264,Victoria,TX,417,Victoria,TX
-77971,45264,Victoria,TX,417,Victoria,TX
-77973,45264,Victoria,TX,417,Victoria,TX
-77974,45066,Cuero,TX,417,Victoria,TX
-77975,45119,Hallettsville,TX,397,Houston,TX
-77976,45264,Victoria,TX,417,Victoria,TX
-77977,45264,Victoria,TX,417,Victoria,TX
-77978,45213,Port Lavaca,TX,397,Houston,TX
-77979,45213,Port Lavaca,TX,397,Houston,TX
-77982,45213,Port Lavaca,TX,397,Houston,TX
-77983,45264,Victoria,TX,417,Victoria,TX
-77984,45264,Victoria,TX,417,Victoria,TX
-77986,45119,Hallettsville,TX,397,Houston,TX
-77987,45264,Victoria,TX,417,Victoria,TX
-77988,45264,Victoria,TX,417,Victoria,TX
-77989,45066,Cuero,TX,417,Victoria,TX
-77990,45264,Victoria,TX,417,Victoria,TX
-77991,45264,Victoria,TX,417,Victoria,TX
-77993,45264,Victoria,TX,417,Victoria,TX
-77994,45066,Cuero,TX,417,Victoria,TX
-77995,45264,Victoria,TX,417,Victoria,TX
-78001,45229,San Antonio,TX,412,San Antonio,TX
-78002,45229,San Antonio,TX,412,San Antonio,TX
-78003,45229,San Antonio,TX,412,San Antonio,TX
-78004,45229,San Antonio,TX,412,San Antonio,TX
-78005,45229,San Antonio,TX,412,San Antonio,TX
-78006,45229,San Antonio,TX,412,San Antonio,TX
-78007,45229,San Antonio,TX,412,San Antonio,TX
-78008,45140,Jourdanton,TX,412,San Antonio,TX
-78009,45229,San Antonio,TX,412,San Antonio,TX
-78010,45146,Kerrville,TX,412,San Antonio,TX
-78011,45140,Jourdanton,TX,412,San Antonio,TX
-78012,45229,San Antonio,TX,412,San Antonio,TX
-78013,45146,Kerrville,TX,412,San Antonio,TX
-78014,45229,San Antonio,TX,412,San Antonio,TX
-78015,45229,San Antonio,TX,412,San Antonio,TX
-78016,45229,San Antonio,TX,412,San Antonio,TX
-78017,45229,San Antonio,TX,412,San Antonio,TX
-78019,45156,Laredo,TX,412,San Antonio,TX
-78021,45229,San Antonio,TX,412,San Antonio,TX
-78022,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78023,45229,San Antonio,TX,412,San Antonio,TX
-78024,45146,Kerrville,TX,412,San Antonio,TX
-78025,45146,Kerrville,TX,412,San Antonio,TX
-78026,45140,Jourdanton,TX,412,San Antonio,TX
-78027,45229,San Antonio,TX,412,San Antonio,TX
-78028,45146,Kerrville,TX,412,San Antonio,TX
-78029,45146,Kerrville,TX,412,San Antonio,TX
-78039,45229,San Antonio,TX,412,San Antonio,TX
-78040,45156,Laredo,TX,412,San Antonio,TX
-78041,45156,Laredo,TX,412,San Antonio,TX
-78042,45156,Laredo,TX,412,San Antonio,TX
-78043,45156,Laredo,TX,412,San Antonio,TX
-78044,45156,Laredo,TX,412,San Antonio,TX
-78045,45156,Laredo,TX,412,San Antonio,TX
-78046,45156,Laredo,TX,412,San Antonio,TX
-78050,45140,Jourdanton,TX,412,San Antonio,TX
-78052,45229,San Antonio,TX,412,San Antonio,TX
-78054,45229,San Antonio,TX,412,San Antonio,TX
-78055,45146,Kerrville,TX,412,San Antonio,TX
-78056,45229,San Antonio,TX,412,San Antonio,TX
-78057,45229,San Antonio,TX,412,San Antonio,TX
-78058,45146,Kerrville,TX,412,San Antonio,TX
-78059,45229,San Antonio,TX,412,San Antonio,TX
-78060,45023,Beeville,TX,390,Corpus Christi,TX
-78061,45229,San Antonio,TX,412,San Antonio,TX
-78062,45229,San Antonio,TX,412,San Antonio,TX
-78063,45229,San Antonio,TX,412,San Antonio,TX
-78064,45140,Jourdanton,TX,412,San Antonio,TX
-78065,45229,San Antonio,TX,412,San Antonio,TX
-78066,45229,San Antonio,TX,412,San Antonio,TX
-78067,45156,Laredo,TX,412,San Antonio,TX
-78069,45229,San Antonio,TX,412,San Antonio,TX
-78070,45229,San Antonio,TX,412,San Antonio,TX
-78071,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78072,45229,San Antonio,TX,412,San Antonio,TX
-78073,45229,San Antonio,TX,412,San Antonio,TX
-78074,45146,Kerrville,TX,412,San Antonio,TX
-78075,45140,Jourdanton,TX,412,San Antonio,TX
-78076,45156,Laredo,TX,412,San Antonio,TX
-78101,45229,San Antonio,TX,412,San Antonio,TX
-78102,45023,Beeville,TX,390,Corpus Christi,TX
-78104,45023,Beeville,TX,390,Corpus Christi,TX
-78107,45264,Victoria,TX,417,Victoria,TX
-78108,45229,San Antonio,TX,412,San Antonio,TX
-78109,45229,San Antonio,TX,412,San Antonio,TX
-78111,45229,San Antonio,TX,412,San Antonio,TX
-78112,45229,San Antonio,TX,412,San Antonio,TX
-78113,45229,San Antonio,TX,412,San Antonio,TX
-78114,45229,San Antonio,TX,412,San Antonio,TX
-78115,45233,Seguin,TX,412,San Antonio,TX
-78116,45229,San Antonio,TX,412,San Antonio,TX
-78117,45229,San Antonio,TX,412,San Antonio,TX
-78118,45229,San Antonio,TX,412,San Antonio,TX
-78119,45144,Kenedy,TX,412,San Antonio,TX
-78121,45229,San Antonio,TX,412,San Antonio,TX
-78122,45233,Seguin,TX,412,San Antonio,TX
-78123,45233,Seguin,TX,412,San Antonio,TX
-78124,45229,San Antonio,TX,412,San Antonio,TX
-78125,45023,Beeville,TX,390,Corpus Christi,TX
-78130,45196,New Braunfels,TX,412,San Antonio,TX
-78131,45196,New Braunfels,TX,412,San Antonio,TX
-78132,45196,New Braunfels,TX,412,San Antonio,TX
-78133,45196,New Braunfels,TX,412,San Antonio,TX
-78135,45196,New Braunfels,TX,412,San Antonio,TX
-78140,45233,Seguin,TX,412,San Antonio,TX
-78141,45066,Cuero,TX,417,Victoria,TX
-78142,45023,Beeville,TX,390,Corpus Christi,TX
-78143,45233,Seguin,TX,412,San Antonio,TX
-78144,45229,San Antonio,TX,412,San Antonio,TX
-78145,45023,Beeville,TX,390,Corpus Christi,TX
-78146,45023,Beeville,TX,390,Corpus Christi,TX
-78147,45229,San Antonio,TX,412,San Antonio,TX
-78148,45229,San Antonio,TX,412,San Antonio,TX
-78150,45229,San Antonio,TX,412,San Antonio,TX
-78151,45144,Kenedy,TX,412,San Antonio,TX
-78152,45229,San Antonio,TX,412,San Antonio,TX
-78154,45229,San Antonio,TX,412,San Antonio,TX
-78155,45233,Seguin,TX,412,San Antonio,TX
-78156,45233,Seguin,TX,412,San Antonio,TX
-78159,45066,Cuero,TX,417,Victoria,TX
-78160,45233,Seguin,TX,412,San Antonio,TX
-78161,45229,San Antonio,TX,412,San Antonio,TX
-78162,45023,Beeville,TX,390,Corpus Christi,TX
-78163,45229,San Antonio,TX,412,San Antonio,TX
-78164,45066,Cuero,TX,417,Victoria,TX
-78201,45229,San Antonio,TX,412,San Antonio,TX
-78202,45229,San Antonio,TX,412,San Antonio,TX
-78203,45229,San Antonio,TX,412,San Antonio,TX
-78204,45229,San Antonio,TX,412,San Antonio,TX
-78205,45229,San Antonio,TX,412,San Antonio,TX
-78206,45229,San Antonio,TX,412,San Antonio,TX
-78207,45229,San Antonio,TX,412,San Antonio,TX
-78208,45229,San Antonio,TX,412,San Antonio,TX
-78209,45229,San Antonio,TX,412,San Antonio,TX
-78210,45229,San Antonio,TX,412,San Antonio,TX
-78211,45229,San Antonio,TX,412,San Antonio,TX
-78212,45229,San Antonio,TX,412,San Antonio,TX
-78213,45229,San Antonio,TX,412,San Antonio,TX
-78214,45229,San Antonio,TX,412,San Antonio,TX
-78215,45229,San Antonio,TX,412,San Antonio,TX
-78216,45229,San Antonio,TX,412,San Antonio,TX
-78217,45229,San Antonio,TX,412,San Antonio,TX
-78218,45229,San Antonio,TX,412,San Antonio,TX
-78219,45229,San Antonio,TX,412,San Antonio,TX
-78220,45229,San Antonio,TX,412,San Antonio,TX
-78221,45229,San Antonio,TX,412,San Antonio,TX
-78222,45229,San Antonio,TX,412,San Antonio,TX
-78223,45229,San Antonio,TX,412,San Antonio,TX
-78224,45229,San Antonio,TX,412,San Antonio,TX
-78225,45229,San Antonio,TX,412,San Antonio,TX
-78226,45229,San Antonio,TX,412,San Antonio,TX
-78227,45229,San Antonio,TX,412,San Antonio,TX
-78228,45229,San Antonio,TX,412,San Antonio,TX
-78229,45229,San Antonio,TX,412,San Antonio,TX
-78230,45229,San Antonio,TX,412,San Antonio,TX
-78231,45229,San Antonio,TX,412,San Antonio,TX
-78232,45229,San Antonio,TX,412,San Antonio,TX
-78233,45229,San Antonio,TX,412,San Antonio,TX
-78234,45229,San Antonio,TX,412,San Antonio,TX
-78235,45229,San Antonio,TX,412,San Antonio,TX
-78236,45229,San Antonio,TX,412,San Antonio,TX
-78237,45229,San Antonio,TX,412,San Antonio,TX
-78238,45229,San Antonio,TX,412,San Antonio,TX
-78239,45229,San Antonio,TX,412,San Antonio,TX
-78240,45229,San Antonio,TX,412,San Antonio,TX
-78241,45229,San Antonio,TX,412,San Antonio,TX
-78242,45229,San Antonio,TX,412,San Antonio,TX
-78243,45229,San Antonio,TX,412,San Antonio,TX
-78244,45229,San Antonio,TX,412,San Antonio,TX
-78245,45229,San Antonio,TX,412,San Antonio,TX
-78246,45229,San Antonio,TX,412,San Antonio,TX
-78247,45229,San Antonio,TX,412,San Antonio,TX
-78248,45229,San Antonio,TX,412,San Antonio,TX
-78249,45229,San Antonio,TX,412,San Antonio,TX
-78250,45229,San Antonio,TX,412,San Antonio,TX
-78251,45229,San Antonio,TX,412,San Antonio,TX
-78252,45229,San Antonio,TX,412,San Antonio,TX
-78253,45229,San Antonio,TX,412,San Antonio,TX
-78254,45229,San Antonio,TX,412,San Antonio,TX
-78255,45229,San Antonio,TX,412,San Antonio,TX
-78256,45229,San Antonio,TX,412,San Antonio,TX
-78257,45229,San Antonio,TX,412,San Antonio,TX
-78258,45229,San Antonio,TX,412,San Antonio,TX
-78259,45229,San Antonio,TX,412,San Antonio,TX
-78260,45229,San Antonio,TX,412,San Antonio,TX
-78261,45229,San Antonio,TX,412,San Antonio,TX
-78263,45229,San Antonio,TX,412,San Antonio,TX
-78264,45229,San Antonio,TX,412,San Antonio,TX
-78265,45229,San Antonio,TX,412,San Antonio,TX
-78266,45229,San Antonio,TX,412,San Antonio,TX
-78268,45229,San Antonio,TX,412,San Antonio,TX
-78269,45229,San Antonio,TX,412,San Antonio,TX
-78270,45229,San Antonio,TX,412,San Antonio,TX
-78278,45229,San Antonio,TX,412,San Antonio,TX
-78279,45229,San Antonio,TX,412,San Antonio,TX
-78280,45229,San Antonio,TX,412,San Antonio,TX
-78283,45229,San Antonio,TX,412,San Antonio,TX
-78284,45229,San Antonio,TX,412,San Antonio,TX
-78285,45229,San Antonio,TX,412,San Antonio,TX
-78288,45229,San Antonio,TX,412,San Antonio,TX
-78289,45229,San Antonio,TX,412,San Antonio,TX
-78291,45229,San Antonio,TX,412,San Antonio,TX
-78292,45229,San Antonio,TX,412,San Antonio,TX
-78293,45229,San Antonio,TX,412,San Antonio,TX
-78294,45229,San Antonio,TX,412,San Antonio,TX
-78295,45229,San Antonio,TX,412,San Antonio,TX
-78296,45229,San Antonio,TX,412,San Antonio,TX
-78297,45229,San Antonio,TX,412,San Antonio,TX
-78298,45229,San Antonio,TX,412,San Antonio,TX
-78299,45229,San Antonio,TX,412,San Antonio,TX
-78330,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78332,45003,Alice,TX,390,Corpus Christi,TX
-78333,45003,Alice,TX,390,Corpus Christi,TX
-78335,45011,Aransas Pass,TX,390,Corpus Christi,TX
-78336,45011,Aransas Pass,TX,390,Corpus Christi,TX
-78338,45149,Kingsville,TX,390,Corpus Christi,TX
-78339,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78340,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78341,45003,Alice,TX,390,Corpus Christi,TX
-78342,45003,Alice,TX,390,Corpus Christi,TX
-78343,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78344,45156,Laredo,TX,412,San Antonio,TX
-78347,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78349,45003,Alice,TX,390,Corpus Christi,TX
-78350,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78351,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78352,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78353,45091,Falfurrias,TX,390,Corpus Christi,TX
-78355,45091,Falfurrias,TX,390,Corpus Christi,TX
-78357,45003,Alice,TX,390,Corpus Christi,TX
-78358,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78359,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78360,45156,Laredo,TX,412,San Antonio,TX
-78361,45156,Laredo,TX,412,San Antonio,TX
-78362,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78363,45149,Kingsville,TX,390,Corpus Christi,TX
-78364,45149,Kingsville,TX,390,Corpus Christi,TX
-78368,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78369,45156,Laredo,TX,412,San Antonio,TX
-78370,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78371,45156,Laredo,TX,412,San Antonio,TX
-78372,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78373,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78374,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78375,45149,Kingsville,TX,390,Corpus Christi,TX
-78376,45003,Alice,TX,390,Corpus Christi,TX
-78377,45219,Refugio,TX,417,Victoria,TX
-78379,45149,Kingsville,TX,390,Corpus Christi,TX
-78380,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78381,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78382,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78383,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78384,45003,Alice,TX,390,Corpus Christi,TX
-78385,45149,Kingsville,TX,390,Corpus Christi,TX
-78387,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78389,45023,Beeville,TX,390,Corpus Christi,TX
-78390,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78391,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78393,45219,Refugio,TX,417,Victoria,TX
-78401,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78402,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78403,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78404,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78405,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78406,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78407,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78408,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78409,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78410,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78411,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78412,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78413,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78414,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78415,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78416,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78417,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78418,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78419,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78426,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78427,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78460,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78463,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78465,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78466,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78467,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78468,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78469,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78472,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78480,45061,Corpus Christi,TX,390,Corpus Christi,TX
-78501,45175,McAllen,TX,402,McAllen,TX
-78502,45175,McAllen,TX,402,McAllen,TX
-78503,45175,McAllen,TX,402,McAllen,TX
-78504,45175,McAllen,TX,402,McAllen,TX
-78505,45175,McAllen,TX,402,McAllen,TX
-78516,45175,McAllen,TX,402,McAllen,TX
-78520,45034,Brownsville,TX,396,Harlingen,TX
-78521,45034,Brownsville,TX,396,Harlingen,TX
-78522,45034,Brownsville,TX,396,Harlingen,TX
-78523,45034,Brownsville,TX,396,Harlingen,TX
-78526,45034,Brownsville,TX,396,Harlingen,TX
-78535,45122,Harlingen,TX,396,Harlingen,TX
-78536,45175,McAllen,TX,402,McAllen,TX
-78537,45271,Weslaco,TX,396,Harlingen,TX
-78538,45271,Weslaco,TX,396,Harlingen,TX
-78539,45083,Edinburg,TX,402,McAllen,TX
-78540,45083,Edinburg,TX,402,McAllen,TX
-78541,45083,Edinburg,TX,402,McAllen,TX
-78542,45083,Edinburg,TX,402,McAllen,TX
-78543,45271,Weslaco,TX,396,Harlingen,TX
-78545,45175,McAllen,TX,402,McAllen,TX
-78547,45175,McAllen,TX,402,McAllen,TX
-78548,45175,McAllen,TX,402,McAllen,TX
-78549,45083,Edinburg,TX,402,McAllen,TX
-78550,45122,Harlingen,TX,396,Harlingen,TX
-78551,45122,Harlingen,TX,396,Harlingen,TX
-78552,45122,Harlingen,TX,396,Harlingen,TX
-78553,45122,Harlingen,TX,396,Harlingen,TX
-78557,45175,McAllen,TX,402,McAllen,TX
-78558,45083,Edinburg,TX,402,McAllen,TX
-78559,45122,Harlingen,TX,396,Harlingen,TX
-78560,45175,McAllen,TX,402,McAllen,TX
-78561,45122,Harlingen,TX,396,Harlingen,TX
-78562,45271,Weslaco,TX,396,Harlingen,TX
-78563,45083,Edinburg,TX,402,McAllen,TX
-78564,45156,Laredo,TX,412,San Antonio,TX
-78565,45175,McAllen,TX,402,McAllen,TX
-78566,45122,Harlingen,TX,396,Harlingen,TX
-78567,45122,Harlingen,TX,396,Harlingen,TX
-78568,45122,Harlingen,TX,396,Harlingen,TX
-78569,45122,Harlingen,TX,396,Harlingen,TX
-78570,45271,Weslaco,TX,396,Harlingen,TX
-78572,45175,McAllen,TX,402,McAllen,TX
-78573,45175,McAllen,TX,402,McAllen,TX
-78574,45175,McAllen,TX,402,McAllen,TX
-78575,45034,Brownsville,TX,396,Harlingen,TX
-78576,45175,McAllen,TX,402,McAllen,TX
-78577,45175,McAllen,TX,402,McAllen,TX
-78578,45122,Harlingen,TX,396,Harlingen,TX
-78579,45271,Weslaco,TX,396,Harlingen,TX
-78580,45122,Harlingen,TX,396,Harlingen,TX
-78582,45175,McAllen,TX,402,McAllen,TX
-78583,45122,Harlingen,TX,396,Harlingen,TX
-78584,45175,McAllen,TX,402,McAllen,TX
-78585,45175,McAllen,TX,402,McAllen,TX
-78586,45122,Harlingen,TX,396,Harlingen,TX
-78588,45175,McAllen,TX,402,McAllen,TX
-78589,45175,McAllen,TX,402,McAllen,TX
-78590,45122,Harlingen,TX,396,Harlingen,TX
-78591,45175,McAllen,TX,402,McAllen,TX
-78592,45122,Harlingen,TX,396,Harlingen,TX
-78593,45122,Harlingen,TX,396,Harlingen,TX
-78594,45122,Harlingen,TX,396,Harlingen,TX
-78595,45175,McAllen,TX,402,McAllen,TX
-78596,45271,Weslaco,TX,396,Harlingen,TX
-78597,45122,Harlingen,TX,396,Harlingen,TX
-78598,45122,Harlingen,TX,396,Harlingen,TX
-78599,45271,Weslaco,TX,396,Harlingen,TX
-78602,45016,Austin,TX,385,Austin,TX
-78604,45109,Gonzales,TX,412,San Antonio,TX
-78605,45102,Georgetown,TX,385,Austin,TX
-78606,45096,Fredericksburg,TX,412,San Antonio,TX
-78607,45163,Llano,TX,385,Austin,TX
-78608,45148,Killeen,TX,413,Temple,TX
-78609,45163,Llano,TX,385,Austin,TX
-78610,45016,Austin,TX,385,Austin,TX
-78611,45038,Burnet,TX,385,Austin,TX
-78612,45016,Austin,TX,385,Austin,TX
-78613,45016,Austin,TX,385,Austin,TX
-78614,45109,Gonzales,TX,412,San Antonio,TX
-78615,45250,Taylor,TX,413,Temple,TX
-78616,45016,Austin,TX,385,Austin,TX
-78617,45016,Austin,TX,385,Austin,TX
-78618,45096,Fredericksburg,TX,412,San Antonio,TX
-78619,45016,Austin,TX,385,Austin,TX
-78620,45016,Austin,TX,385,Austin,TX
-78621,45016,Austin,TX,385,Austin,TX
-78622,45232,San Marcos,TX,385,Austin,TX
-78623,45196,New Braunfels,TX,412,San Antonio,TX
-78624,45096,Fredericksburg,TX,412,San Antonio,TX
-78626,45250,Taylor,TX,413,Temple,TX
-78627,45102,Georgetown,TX,385,Austin,TX
-78628,45102,Georgetown,TX,385,Austin,TX
-78629,45109,Gonzales,TX,412,San Antonio,TX
-78630,45016,Austin,TX,385,Austin,TX
-78631,45096,Fredericksburg,TX,412,San Antonio,TX
-78632,45170,Luling,TX,385,Austin,TX
-78633,45102,Georgetown,TX,385,Austin,TX
-78634,45250,Taylor,TX,413,Temple,TX
-78635,45096,Fredericksburg,TX,412,San Antonio,TX
-78636,45096,Fredericksburg,TX,412,San Antonio,TX
-78638,45233,Seguin,TX,412,San Antonio,TX
-78639,45163,Llano,TX,385,Austin,TX
-78640,45016,Austin,TX,385,Austin,TX
-78641,45016,Austin,TX,385,Austin,TX
-78642,45102,Georgetown,TX,385,Austin,TX
-78643,45163,Llano,TX,385,Austin,TX
-78644,45016,Austin,TX,385,Austin,TX
-78645,45016,Austin,TX,385,Austin,TX
-78646,45016,Austin,TX,385,Austin,TX
-78648,45170,Luling,TX,385,Austin,TX
-78650,45016,Austin,TX,385,Austin,TX
-78651,45225,Round Rock,TX,385,Austin,TX
-78652,45016,Austin,TX,385,Austin,TX
-78653,45016,Austin,TX,385,Austin,TX
-78654,45016,Austin,TX,385,Austin,TX
-78655,45232,San Marcos,TX,385,Austin,TX
-78656,45232,San Marcos,TX,385,Austin,TX
-78657,45016,Austin,TX,385,Austin,TX
-78658,45109,Gonzales,TX,412,San Antonio,TX
-78659,45016,Austin,TX,385,Austin,TX
-78660,45016,Austin,TX,385,Austin,TX
-78661,45232,San Marcos,TX,385,Austin,TX
-78662,45016,Austin,TX,385,Austin,TX
-78663,45096,Fredericksburg,TX,412,San Antonio,TX
-78664,45225,Round Rock,TX,385,Austin,TX
-78665,45225,Round Rock,TX,385,Austin,TX
-78666,45232,San Marcos,TX,385,Austin,TX
-78667,45232,San Marcos,TX,385,Austin,TX
-78669,45016,Austin,TX,385,Austin,TX
-78670,45232,San Marcos,TX,385,Austin,TX
-78671,45096,Fredericksburg,TX,412,San Antonio,TX
-78672,45163,Llano,TX,385,Austin,TX
-78673,45102,Georgetown,TX,385,Austin,TX
-78674,45102,Georgetown,TX,385,Austin,TX
-78675,45096,Fredericksburg,TX,412,San Antonio,TX
-78676,45016,Austin,TX,385,Austin,TX
-78677,45109,Gonzales,TX,412,San Antonio,TX
-78680,45225,Round Rock,TX,385,Austin,TX
-78681,45225,Round Rock,TX,385,Austin,TX
-78682,45225,Round Rock,TX,385,Austin,TX
-78683,45225,Round Rock,TX,385,Austin,TX
-78691,45016,Austin,TX,385,Austin,TX
-78701,45016,Austin,TX,385,Austin,TX
-78702,45016,Austin,TX,385,Austin,TX
-78703,45016,Austin,TX,385,Austin,TX
-78704,45016,Austin,TX,385,Austin,TX
-78705,45016,Austin,TX,385,Austin,TX
-78708,45016,Austin,TX,385,Austin,TX
-78709,45016,Austin,TX,385,Austin,TX
-78710,45016,Austin,TX,385,Austin,TX
-78711,45016,Austin,TX,385,Austin,TX
-78712,45016,Austin,TX,385,Austin,TX
-78713,45016,Austin,TX,385,Austin,TX
-78714,45016,Austin,TX,385,Austin,TX
-78715,45016,Austin,TX,385,Austin,TX
-78716,45016,Austin,TX,385,Austin,TX
-78717,45225,Round Rock,TX,385,Austin,TX
-78718,45016,Austin,TX,385,Austin,TX
-78719,45016,Austin,TX,385,Austin,TX
-78720,45016,Austin,TX,385,Austin,TX
-78721,45016,Austin,TX,385,Austin,TX
-78722,45016,Austin,TX,385,Austin,TX
-78723,45016,Austin,TX,385,Austin,TX
-78724,45016,Austin,TX,385,Austin,TX
-78725,45016,Austin,TX,385,Austin,TX
-78726,45016,Austin,TX,385,Austin,TX
-78727,45016,Austin,TX,385,Austin,TX
-78728,45016,Austin,TX,385,Austin,TX
-78729,45016,Austin,TX,385,Austin,TX
-78730,45016,Austin,TX,385,Austin,TX
-78731,45016,Austin,TX,385,Austin,TX
-78732,45016,Austin,TX,385,Austin,TX
-78733,45016,Austin,TX,385,Austin,TX
-78734,45016,Austin,TX,385,Austin,TX
-78735,45016,Austin,TX,385,Austin,TX
-78736,45016,Austin,TX,385,Austin,TX
-78737,45016,Austin,TX,385,Austin,TX
-78738,45016,Austin,TX,385,Austin,TX
-78739,45016,Austin,TX,385,Austin,TX
-78741,45016,Austin,TX,385,Austin,TX
-78742,45016,Austin,TX,385,Austin,TX
-78744,45016,Austin,TX,385,Austin,TX
-78745,45016,Austin,TX,385,Austin,TX
-78746,45016,Austin,TX,385,Austin,TX
-78747,45016,Austin,TX,385,Austin,TX
-78748,45016,Austin,TX,385,Austin,TX
-78749,45016,Austin,TX,385,Austin,TX
-78750,45016,Austin,TX,385,Austin,TX
-78751,45016,Austin,TX,385,Austin,TX
-78752,45016,Austin,TX,385,Austin,TX
-78753,45016,Austin,TX,385,Austin,TX
-78754,45016,Austin,TX,385,Austin,TX
-78755,45016,Austin,TX,385,Austin,TX
-78756,45016,Austin,TX,385,Austin,TX
-78757,45016,Austin,TX,385,Austin,TX
-78758,45016,Austin,TX,385,Austin,TX
-78759,45016,Austin,TX,385,Austin,TX
-78760,45016,Austin,TX,385,Austin,TX
-78761,45016,Austin,TX,385,Austin,TX
-78762,45016,Austin,TX,385,Austin,TX
-78763,45016,Austin,TX,385,Austin,TX
-78764,45016,Austin,TX,385,Austin,TX
-78765,45016,Austin,TX,385,Austin,TX
-78766,45016,Austin,TX,385,Austin,TX
-78767,45016,Austin,TX,385,Austin,TX
-78768,45016,Austin,TX,385,Austin,TX
-78772,45016,Austin,TX,385,Austin,TX
-78773,45016,Austin,TX,385,Austin,TX
-78774,45016,Austin,TX,385,Austin,TX
-78778,45016,Austin,TX,385,Austin,TX
-78779,45016,Austin,TX,385,Austin,TX
-78783,45016,Austin,TX,385,Austin,TX
-78799,45016,Austin,TX,385,Austin,TX
-78801,45261,Uvalde,TX,412,San Antonio,TX
-78802,45261,Uvalde,TX,412,San Antonio,TX
-78827,45043,Carrizo Springs,TX,412,San Antonio,TX
-78828,45146,Kerrville,TX,412,San Antonio,TX
-78829,45261,Uvalde,TX,412,San Antonio,TX
-78830,45229,San Antonio,TX,412,San Antonio,TX
-78832,45071,Del Rio,TX,412,San Antonio,TX
-78833,45146,Kerrville,TX,412,San Antonio,TX
-78834,45043,Carrizo Springs,TX,412,San Antonio,TX
-78836,45043,Carrizo Springs,TX,412,San Antonio,TX
-78837,45071,Del Rio,TX,412,San Antonio,TX
-78838,45146,Kerrville,TX,412,San Antonio,TX
-78839,45043,Carrizo Springs,TX,412,San Antonio,TX
-78840,45071,Del Rio,TX,412,San Antonio,TX
-78841,45071,Del Rio,TX,412,San Antonio,TX
-78842,45071,Del Rio,TX,412,San Antonio,TX
-78843,45071,Del Rio,TX,412,San Antonio,TX
-78847,45071,Del Rio,TX,412,San Antonio,TX
-78850,45229,San Antonio,TX,412,San Antonio,TX
-78851,45094,Fort Stockton,TX,406,Odessa,TX
-78852,45080,Eagle Pass,TX,412,San Antonio,TX
-78853,45080,Eagle Pass,TX,412,San Antonio,TX
-78860,45080,Eagle Pass,TX,412,San Antonio,TX
-78861,45229,San Antonio,TX,412,San Antonio,TX
-78870,45261,Uvalde,TX,412,San Antonio,TX
-78871,45071,Del Rio,TX,412,San Antonio,TX
-78872,45261,Uvalde,TX,412,San Antonio,TX
-78873,45146,Kerrville,TX,412,San Antonio,TX
-78877,45080,Eagle Pass,TX,412,San Antonio,TX
-78879,45146,Kerrville,TX,412,San Antonio,TX
-78880,45146,Kerrville,TX,412,San Antonio,TX
-78881,45229,San Antonio,TX,412,San Antonio,TX
-78883,45146,Kerrville,TX,412,San Antonio,TX
-78884,45146,Kerrville,TX,412,San Antonio,TX
-78885,45146,Kerrville,TX,412,San Antonio,TX
-78886,45229,San Antonio,TX,412,San Antonio,TX
-78931,45031,Brenham,TX,397,Houston,TX
-78932,45151,La Grange,TX,397,Houston,TX
-78933,45131,Houston,TX,397,Houston,TX
-78934,45058,Columbus,TX,397,Houston,TX
-78935,45058,Columbus,TX,397,Houston,TX
-78938,45151,La Grange,TX,397,Houston,TX
-78940,45151,La Grange,TX,397,Houston,TX
-78941,45269,Weimar,TX,397,Houston,TX
-78942,45016,Austin,TX,385,Austin,TX
-78943,45058,Columbus,TX,397,Houston,TX
-78944,45031,Brenham,TX,397,Houston,TX
-78945,45151,La Grange,TX,397,Houston,TX
-78946,45151,La Grange,TX,397,Houston,TX
-78947,45223,Rockdale,TX,413,Temple,TX
-78948,45016,Austin,TX,385,Austin,TX
-78949,45151,La Grange,TX,397,Houston,TX
-78950,45031,Brenham,TX,397,Houston,TX
-78951,45269,Weimar,TX,397,Houston,TX
-78952,45151,La Grange,TX,397,Houston,TX
-78953,45016,Austin,TX,385,Austin,TX
-78954,45151,La Grange,TX,397,Houston,TX
-78956,45269,Weimar,TX,397,Houston,TX
-78957,45016,Austin,TX,385,Austin,TX
-78959,45109,Gonzales,TX,412,San Antonio,TX
-78960,45151,La Grange,TX,397,Houston,TX
-78961,45151,La Grange,TX,397,Houston,TX
-78962,45269,Weimar,TX,397,Houston,TX
-78963,45151,La Grange,TX,397,Houston,TX
-79001,45006,Amarillo,TX,383,Amarillo,TX
-79002,45006,Amarillo,TX,383,Amarillo,TX
-79003,45274,Wheeler,TX,383,Amarillo,TX
-79005,45208,Perryton,TX,383,Amarillo,TX
-79007,45006,Amarillo,TX,383,Amarillo,TX
-79008,45006,Amarillo,TX,383,Amarillo,TX
-79009,45168,Lubbock,TX,400,Lubbock,TX
-79010,45006,Amarillo,TX,383,Amarillo,TX
-79011,45274,Wheeler,TX,383,Amarillo,TX
-79012,45006,Amarillo,TX,383,Amarillo,TX
-79013,45078,Dumas,TX,383,Amarillo,TX
-79014,45041,Canadian,TX,383,Amarillo,TX
-79015,45042,Canyon,TX,383,Amarillo,TX
-79016,45042,Canyon,TX,383,Amarillo,TX
-79018,45006,Amarillo,TX,383,Amarillo,TX
-79019,45006,Amarillo,TX,383,Amarillo,TX
-79021,45168,Lubbock,TX,400,Lubbock,TX
-79022,45006,Amarillo,TX,383,Amarillo,TX
-79024,37079,Shattuck,OK,339,Oklahoma City,OK
-79025,45006,Amarillo,TX,383,Amarillo,TX
-79027,45076,Dimmitt,TX,400,Lubbock,TX
-79029,45078,Dumas,TX,383,Amarillo,TX
-79031,45168,Lubbock,TX,400,Lubbock,TX
-79032,45168,Lubbock,TX,400,Lubbock,TX
-79033,45208,Perryton,TX,383,Amarillo,TX
-79034,37079,Shattuck,OK,339,Oklahoma City,OK
-79035,45097,Friona,TX,383,Amarillo,TX
-79036,45006,Amarillo,TX,383,Amarillo,TX
-79039,45006,Amarillo,TX,383,Amarillo,TX
-79040,45006,Amarillo,TX,383,Amarillo,TX
-79041,45168,Lubbock,TX,400,Lubbock,TX
-79042,45006,Amarillo,TX,383,Amarillo,TX
-79043,45076,Dimmitt,TX,400,Lubbock,TX
-79044,45006,Amarillo,TX,383,Amarillo,TX
-79045,45006,Amarillo,TX,383,Amarillo,TX
-79046,37079,Shattuck,OK,339,Oklahoma City,OK
-79051,45006,Amarillo,TX,383,Amarillo,TX
-79052,45168,Lubbock,TX,400,Lubbock,TX
-79053,45168,Lubbock,TX,400,Lubbock,TX
-79054,45203,Pampa,TX,383,Amarillo,TX
-79056,45208,Perryton,TX,383,Amarillo,TX
-79057,45006,Amarillo,TX,383,Amarillo,TX
-79058,45078,Dumas,TX,383,Amarillo,TX
-79059,45203,Pampa,TX,383,Amarillo,TX
-79061,45274,Wheeler,TX,383,Amarillo,TX
-79062,45006,Amarillo,TX,383,Amarillo,TX
-79063,45076,Dimmitt,TX,400,Lubbock,TX
-79064,45168,Lubbock,TX,400,Lubbock,TX
-79065,45203,Pampa,TX,383,Amarillo,TX
-79066,45203,Pampa,TX,383,Amarillo,TX
-79068,45006,Amarillo,TX,383,Amarillo,TX
-79070,45208,Perryton,TX,383,Amarillo,TX
-79072,45168,Lubbock,TX,400,Lubbock,TX
-79073,45168,Lubbock,TX,400,Lubbock,TX
-79077,45270,Wellington,TX,383,Amarillo,TX
-79078,45006,Amarillo,TX,383,Amarillo,TX
-79079,45236,Shamrock,TX,383,Amarillo,TX
-79080,45203,Pampa,TX,383,Amarillo,TX
-79081,45006,Amarillo,TX,383,Amarillo,TX
-79082,45168,Lubbock,TX,400,Lubbock,TX
-79083,45006,Amarillo,TX,383,Amarillo,TX
-79084,45078,Dumas,TX,383,Amarillo,TX
-79085,45006,Amarillo,TX,383,Amarillo,TX
-79086,45078,Dumas,TX,383,Amarillo,TX
-79087,45006,Amarillo,TX,383,Amarillo,TX
-79088,45006,Amarillo,TX,383,Amarillo,TX
-79091,45042,Canyon,TX,383,Amarillo,TX
-79092,45006,Amarillo,TX,383,Amarillo,TX
-79093,45208,Perryton,TX,383,Amarillo,TX
-79094,45006,Amarillo,TX,383,Amarillo,TX
-79095,45270,Wellington,TX,383,Amarillo,TX
-79096,45274,Wheeler,TX,383,Amarillo,TX
-79097,45203,Pampa,TX,383,Amarillo,TX
-79098,45006,Amarillo,TX,383,Amarillo,TX
-79101,45006,Amarillo,TX,383,Amarillo,TX
-79102,45006,Amarillo,TX,383,Amarillo,TX
-79103,45006,Amarillo,TX,383,Amarillo,TX
-79104,45006,Amarillo,TX,383,Amarillo,TX
-79105,45006,Amarillo,TX,383,Amarillo,TX
-79106,45006,Amarillo,TX,383,Amarillo,TX
-79107,45006,Amarillo,TX,383,Amarillo,TX
-79108,45006,Amarillo,TX,383,Amarillo,TX
-79109,45006,Amarillo,TX,383,Amarillo,TX
-79110,45006,Amarillo,TX,383,Amarillo,TX
-79111,45006,Amarillo,TX,383,Amarillo,TX
-79114,45006,Amarillo,TX,383,Amarillo,TX
-79116,45006,Amarillo,TX,383,Amarillo,TX
-79117,45006,Amarillo,TX,383,Amarillo,TX
-79118,45006,Amarillo,TX,383,Amarillo,TX
-79119,45006,Amarillo,TX,383,Amarillo,TX
-79120,45006,Amarillo,TX,383,Amarillo,TX
-79121,45006,Amarillo,TX,383,Amarillo,TX
-79124,45006,Amarillo,TX,383,Amarillo,TX
-79159,45006,Amarillo,TX,383,Amarillo,TX
-79166,45006,Amarillo,TX,383,Amarillo,TX
-79168,45006,Amarillo,TX,383,Amarillo,TX
-79172,45006,Amarillo,TX,383,Amarillo,TX
-79174,45006,Amarillo,TX,383,Amarillo,TX
-79178,45006,Amarillo,TX,383,Amarillo,TX
-79185,45006,Amarillo,TX,383,Amarillo,TX
-79189,45006,Amarillo,TX,383,Amarillo,TX
-79201,45048,Childress,TX,383,Amarillo,TX
-79220,45168,Lubbock,TX,400,Lubbock,TX
-79221,45168,Lubbock,TX,400,Lubbock,TX
-79223,45048,Childress,TX,383,Amarillo,TX
-79225,45049,Chillicothe,TX,420,Wichita Falls,TX
-79226,45006,Amarillo,TX,383,Amarillo,TX
-79227,45263,Vernon,TX,420,Wichita Falls,TX
-79229,45168,Lubbock,TX,400,Lubbock,TX
-79230,45270,Wellington,TX,383,Amarillo,TX
-79231,45168,Lubbock,TX,400,Lubbock,TX
-79233,45178,Memphis,TX,383,Amarillo,TX
-79234,45168,Lubbock,TX,400,Lubbock,TX
-79235,45168,Lubbock,TX,400,Lubbock,TX
-79236,45168,Lubbock,TX,400,Lubbock,TX
-79237,45006,Amarillo,TX,383,Amarillo,TX
-79239,45006,Amarillo,TX,383,Amarillo,TX
-79240,45006,Amarillo,TX,383,Amarillo,TX
-79241,45168,Lubbock,TX,400,Lubbock,TX
-79243,45065,Crosbyton,TX,400,Lubbock,TX
-79244,45168,Lubbock,TX,400,Lubbock,TX
-79245,45178,Memphis,TX,383,Amarillo,TX
-79247,45263,Vernon,TX,420,Wichita Falls,TX
-79248,45048,Childress,TX,383,Amarillo,TX
-79250,45168,Lubbock,TX,400,Lubbock,TX
-79251,45006,Amarillo,TX,383,Amarillo,TX
-79252,45215,Quanah,TX,420,Wichita Falls,TX
-79255,45168,Lubbock,TX,400,Lubbock,TX
-79256,45168,Lubbock,TX,400,Lubbock,TX
-79257,45168,Lubbock,TX,400,Lubbock,TX
-79258,45168,Lubbock,TX,400,Lubbock,TX
-79259,45006,Amarillo,TX,383,Amarillo,TX
-79261,45006,Amarillo,TX,383,Amarillo,TX
-79311,45168,Lubbock,TX,400,Lubbock,TX
-79312,45168,Lubbock,TX,400,Lubbock,TX
-79313,45168,Lubbock,TX,400,Lubbock,TX
-79314,45168,Lubbock,TX,400,Lubbock,TX
-79316,45168,Lubbock,TX,400,Lubbock,TX
-79322,45065,Crosbyton,TX,400,Lubbock,TX
-79323,45168,Lubbock,TX,400,Lubbock,TX
-79324,45168,Lubbock,TX,400,Lubbock,TX
-79325,32007,Clovis,NM,400,Lubbock,TX
-79326,45168,Lubbock,TX,400,Lubbock,TX
-79329,45168,Lubbock,TX,400,Lubbock,TX
-79330,45168,Lubbock,TX,400,Lubbock,TX
-79331,45168,Lubbock,TX,400,Lubbock,TX
-79336,45168,Lubbock,TX,400,Lubbock,TX
-79338,45168,Lubbock,TX,400,Lubbock,TX
-79339,45168,Lubbock,TX,400,Lubbock,TX
-79342,45168,Lubbock,TX,400,Lubbock,TX
-79343,45168,Lubbock,TX,400,Lubbock,TX
-79344,45168,Lubbock,TX,400,Lubbock,TX
-79345,45168,Lubbock,TX,400,Lubbock,TX
-79346,45168,Lubbock,TX,400,Lubbock,TX
-79347,45168,Lubbock,TX,400,Lubbock,TX
-79350,45168,Lubbock,TX,400,Lubbock,TX
-79351,45168,Lubbock,TX,400,Lubbock,TX
-79353,45168,Lubbock,TX,400,Lubbock,TX
-79355,45168,Lubbock,TX,400,Lubbock,TX
-79356,45168,Lubbock,TX,400,Lubbock,TX
-79357,45168,Lubbock,TX,400,Lubbock,TX
-79358,45168,Lubbock,TX,400,Lubbock,TX
-79359,45168,Lubbock,TX,400,Lubbock,TX
-79360,45168,Lubbock,TX,400,Lubbock,TX
-79363,45168,Lubbock,TX,400,Lubbock,TX
-79364,45168,Lubbock,TX,400,Lubbock,TX
-79366,45168,Lubbock,TX,400,Lubbock,TX
-79367,45168,Lubbock,TX,400,Lubbock,TX
-79369,45168,Lubbock,TX,400,Lubbock,TX
-79370,45168,Lubbock,TX,400,Lubbock,TX
-79371,45168,Lubbock,TX,400,Lubbock,TX
-79372,45168,Lubbock,TX,400,Lubbock,TX
-79373,45168,Lubbock,TX,400,Lubbock,TX
-79376,45168,Lubbock,TX,400,Lubbock,TX
-79377,45168,Lubbock,TX,400,Lubbock,TX
-79378,45168,Lubbock,TX,400,Lubbock,TX
-79379,45168,Lubbock,TX,400,Lubbock,TX
-79380,45168,Lubbock,TX,400,Lubbock,TX
-79381,45168,Lubbock,TX,400,Lubbock,TX
-79382,45168,Lubbock,TX,400,Lubbock,TX
-79383,45168,Lubbock,TX,400,Lubbock,TX
-79401,45168,Lubbock,TX,400,Lubbock,TX
-79402,45168,Lubbock,TX,400,Lubbock,TX
-79403,45168,Lubbock,TX,400,Lubbock,TX
-79404,45168,Lubbock,TX,400,Lubbock,TX
-79406,45168,Lubbock,TX,400,Lubbock,TX
-79407,45168,Lubbock,TX,400,Lubbock,TX
-79408,45168,Lubbock,TX,400,Lubbock,TX
-79409,45168,Lubbock,TX,400,Lubbock,TX
-79410,45168,Lubbock,TX,400,Lubbock,TX
-79411,45168,Lubbock,TX,400,Lubbock,TX
-79412,45168,Lubbock,TX,400,Lubbock,TX
-79413,45168,Lubbock,TX,400,Lubbock,TX
-79414,45168,Lubbock,TX,400,Lubbock,TX
-79415,45168,Lubbock,TX,400,Lubbock,TX
-79416,45168,Lubbock,TX,400,Lubbock,TX
-79423,45168,Lubbock,TX,400,Lubbock,TX
-79424,45168,Lubbock,TX,400,Lubbock,TX
-79430,45168,Lubbock,TX,400,Lubbock,TX
-79452,45168,Lubbock,TX,400,Lubbock,TX
-79453,45168,Lubbock,TX,400,Lubbock,TX
-79457,45168,Lubbock,TX,400,Lubbock,TX
-79464,45168,Lubbock,TX,400,Lubbock,TX
-79490,45168,Lubbock,TX,400,Lubbock,TX
-79491,45168,Lubbock,TX,400,Lubbock,TX
-79493,45168,Lubbock,TX,400,Lubbock,TX
-79499,45168,Lubbock,TX,400,Lubbock,TX
-79501,45010,Anson,TX,382,Abilene,TX
-79502,45013,Aspermont,TX,382,Abilene,TX
-79503,45001,Abilene,TX,382,Abilene,TX
-79504,45001,Abilene,TX,382,Abilene,TX
-79505,45235,Seymour,TX,420,Wichita Falls,TX
-79506,45228,San Angelo,TX,411,San Angelo,TX
-79508,45001,Abilene,TX,382,Abilene,TX
-79510,45001,Abilene,TX,382,Abilene,TX
-79511,45026,Big Spring,TX,400,Lubbock,TX
-79512,45057,Colorado City,TX,400,Lubbock,TX
-79516,45240,Snyder,TX,400,Lubbock,TX
-79517,45168,Lubbock,TX,400,Lubbock,TX
-79518,45168,Lubbock,TX,400,Lubbock,TX
-79519,45001,Abilene,TX,382,Abilene,TX
-79520,45121,Hamlin,TX,382,Abilene,TX
-79521,45123,Haskell,TX,382,Abilene,TX
-79525,45001,Abilene,TX,382,Abilene,TX
-79526,45240,Snyder,TX,400,Lubbock,TX
-79527,45168,Lubbock,TX,400,Lubbock,TX
-79528,45168,Lubbock,TX,400,Lubbock,TX
-79529,45150,Knox City,TX,420,Wichita Falls,TX
-79530,45001,Abilene,TX,382,Abilene,TX
-79532,45057,Colorado City,TX,400,Lubbock,TX
-79533,45001,Abilene,TX,382,Abilene,TX
-79534,45224,Rotan,TX,382,Abilene,TX
-79535,45248,Sweetwater,TX,382,Abilene,TX
-79536,45001,Abilene,TX,382,Abilene,TX
-79537,45248,Sweetwater,TX,382,Abilene,TX
-79538,45001,Abilene,TX,382,Abilene,TX
-79539,45123,Haskell,TX,382,Abilene,TX
-79540,45013,Aspermont,TX,382,Abilene,TX
-79541,45001,Abilene,TX,382,Abilene,TX
-79543,45224,Rotan,TX,382,Abilene,TX
-79544,45123,Haskell,TX,382,Abilene,TX
-79545,45248,Sweetwater,TX,382,Abilene,TX
-79546,45224,Rotan,TX,382,Abilene,TX
-79547,45123,Haskell,TX,382,Abilene,TX
-79548,45001,Abilene,TX,382,Abilene,TX
-79549,45240,Snyder,TX,400,Lubbock,TX
-79550,45240,Snyder,TX,400,Lubbock,TX
-79553,45001,Abilene,TX,382,Abilene,TX
-79556,45248,Sweetwater,TX,382,Abilene,TX
-79560,45248,Sweetwater,TX,382,Abilene,TX
-79561,45248,Sweetwater,TX,382,Abilene,TX
-79562,45001,Abilene,TX,382,Abilene,TX
-79563,45001,Abilene,TX,382,Abilene,TX
-79565,45057,Colorado City,TX,400,Lubbock,TX
-79566,45001,Abilene,TX,382,Abilene,TX
-79567,45279,Winters,TX,411,San Angelo,TX
-79601,45001,Abilene,TX,382,Abilene,TX
-79602,45001,Abilene,TX,382,Abilene,TX
-79603,45001,Abilene,TX,382,Abilene,TX
-79604,45001,Abilene,TX,382,Abilene,TX
-79605,45001,Abilene,TX,382,Abilene,TX
-79606,45001,Abilene,TX,382,Abilene,TX
-79607,45001,Abilene,TX,382,Abilene,TX
-79608,45001,Abilene,TX,382,Abilene,TX
-79697,45001,Abilene,TX,382,Abilene,TX
-79698,45001,Abilene,TX,382,Abilene,TX
-79699,45001,Abilene,TX,382,Abilene,TX
-79701,45181,Midland,TX,406,Odessa,TX
-79702,45181,Midland,TX,406,Odessa,TX
-79703,45181,Midland,TX,406,Odessa,TX
-79704,45181,Midland,TX,406,Odessa,TX
-79705,45181,Midland,TX,406,Odessa,TX
-79706,45181,Midland,TX,406,Odessa,TX
-79707,45181,Midland,TX,406,Odessa,TX
-79708,45181,Midland,TX,406,Odessa,TX
-79710,45181,Midland,TX,406,Odessa,TX
-79711,45181,Midland,TX,406,Odessa,TX
-79712,45181,Midland,TX,406,Odessa,TX
-79713,45168,Lubbock,TX,400,Lubbock,TX
-79714,45008,Andrews,TX,400,Lubbock,TX
-79718,45207,Pecos,TX,406,Odessa,TX
-79719,45207,Pecos,TX,406,Odessa,TX
-79720,45026,Big Spring,TX,400,Lubbock,TX
-79721,45026,Big Spring,TX,400,Lubbock,TX
-79730,45207,Pecos,TX,406,Odessa,TX
-79731,45198,Odessa,TX,406,Odessa,TX
-79733,45026,Big Spring,TX,400,Lubbock,TX
-79734,45004,Alpine,TX,406,Odessa,TX
-79735,45094,Fort Stockton,TX,406,Odessa,TX
-79738,45168,Lubbock,TX,400,Lubbock,TX
-79739,45026,Big Spring,TX,400,Lubbock,TX
-79740,45094,Fort Stockton,TX,406,Odessa,TX
-79741,45198,Odessa,TX,406,Odessa,TX
-79742,45185,Monahans,TX,406,Odessa,TX
-79743,45094,Fort Stockton,TX,406,Odessa,TX
-79744,45135,Iraan,TX,411,San Angelo,TX
-79745,45145,Kermit,TX,406,Odessa,TX
-79748,45026,Big Spring,TX,400,Lubbock,TX
-79749,45181,Midland,TX,406,Odessa,TX
-79752,45176,McCamey,TX,406,Odessa,TX
-79754,45207,Pecos,TX,406,Odessa,TX
-79755,45218,Rankin,TX,411,San Angelo,TX
-79756,45185,Monahans,TX,406,Odessa,TX
-79758,45198,Odessa,TX,406,Odessa,TX
-79759,45198,Odessa,TX,406,Odessa,TX
-79760,45198,Odessa,TX,406,Odessa,TX
-79761,45198,Odessa,TX,406,Odessa,TX
-79762,45198,Odessa,TX,406,Odessa,TX
-79763,45198,Odessa,TX,406,Odessa,TX
-79764,45198,Odessa,TX,406,Odessa,TX
-79765,45198,Odessa,TX,406,Odessa,TX
-79766,45198,Odessa,TX,406,Odessa,TX
-79768,45198,Odessa,TX,406,Odessa,TX
-79769,45198,Odessa,TX,406,Odessa,TX
-79770,45207,Pecos,TX,406,Odessa,TX
-79772,45207,Pecos,TX,406,Odessa,TX
-79776,45198,Odessa,TX,406,Odessa,TX
-79777,45185,Monahans,TX,406,Odessa,TX
-79778,45218,Rankin,TX,411,San Angelo,TX
-79780,45207,Pecos,TX,406,Odessa,TX
-79781,45135,Iraan,TX,411,San Angelo,TX
-79782,45181,Midland,TX,406,Odessa,TX
-79783,45181,Midland,TX,406,Odessa,TX
-79785,45207,Pecos,TX,406,Odessa,TX
-79786,45207,Pecos,TX,406,Odessa,TX
-79788,45185,Monahans,TX,406,Odessa,TX
-79789,45145,Kermit,TX,406,Odessa,TX
-79821,45086,El Paso,TX,393,El Paso,TX
-79830,45004,Alpine,TX,406,Odessa,TX
-79831,45004,Alpine,TX,406,Odessa,TX
-79832,45004,Alpine,TX,406,Odessa,TX
-79834,45004,Alpine,TX,406,Odessa,TX
-79835,45086,El Paso,TX,393,El Paso,TX
-79836,45086,El Paso,TX,393,El Paso,TX
-79837,45086,El Paso,TX,393,El Paso,TX
-79838,45086,El Paso,TX,393,El Paso,TX
-79839,45086,El Paso,TX,393,El Paso,TX
-79842,45004,Alpine,TX,406,Odessa,TX
-79843,45004,Alpine,TX,406,Odessa,TX
-79845,45004,Alpine,TX,406,Odessa,TX
-79846,45004,Alpine,TX,406,Odessa,TX
-79847,45086,El Paso,TX,393,El Paso,TX
-79848,45094,Fort Stockton,TX,406,Odessa,TX
-79849,45086,El Paso,TX,393,El Paso,TX
-79851,45086,El Paso,TX,393,El Paso,TX
-79852,45004,Alpine,TX,406,Odessa,TX
-79853,45086,El Paso,TX,393,El Paso,TX
-79854,45086,El Paso,TX,393,El Paso,TX
-79855,45086,El Paso,TX,393,El Paso,TX
-79901,45086,El Paso,TX,393,El Paso,TX
-79902,45086,El Paso,TX,393,El Paso,TX
-79903,45086,El Paso,TX,393,El Paso,TX
-79904,45086,El Paso,TX,393,El Paso,TX
-79905,45086,El Paso,TX,393,El Paso,TX
-79906,45086,El Paso,TX,393,El Paso,TX
-79907,45086,El Paso,TX,393,El Paso,TX
-79908,45086,El Paso,TX,393,El Paso,TX
-79910,45086,El Paso,TX,393,El Paso,TX
-79911,45086,El Paso,TX,393,El Paso,TX
-79912,45086,El Paso,TX,393,El Paso,TX
-79913,45086,El Paso,TX,393,El Paso,TX
-79914,45086,El Paso,TX,393,El Paso,TX
-79915,45086,El Paso,TX,393,El Paso,TX
-79916,45086,El Paso,TX,393,El Paso,TX
-79917,45086,El Paso,TX,393,El Paso,TX
-79918,45086,El Paso,TX,393,El Paso,TX
-79920,45086,El Paso,TX,393,El Paso,TX
-79922,45086,El Paso,TX,393,El Paso,TX
-79923,45086,El Paso,TX,393,El Paso,TX
-79924,45086,El Paso,TX,393,El Paso,TX
-79925,45086,El Paso,TX,393,El Paso,TX
-79926,45086,El Paso,TX,393,El Paso,TX
-79927,45086,El Paso,TX,393,El Paso,TX
-79928,45086,El Paso,TX,393,El Paso,TX
-79929,45086,El Paso,TX,393,El Paso,TX
-79930,45086,El Paso,TX,393,El Paso,TX
-79931,45086,El Paso,TX,393,El Paso,TX
-79932,45086,El Paso,TX,393,El Paso,TX
-79934,45086,El Paso,TX,393,El Paso,TX
-79935,45086,El Paso,TX,393,El Paso,TX
-79936,45086,El Paso,TX,393,El Paso,TX
-79937,45086,El Paso,TX,393,El Paso,TX
-79938,45086,El Paso,TX,393,El Paso,TX
-79940,45086,El Paso,TX,393,El Paso,TX
-79941,45086,El Paso,TX,393,El Paso,TX
-79942,45086,El Paso,TX,393,El Paso,TX
-79943,45086,El Paso,TX,393,El Paso,TX
-79944,45086,El Paso,TX,393,El Paso,TX
-79945,45086,El Paso,TX,393,El Paso,TX
-79946,45086,El Paso,TX,393,El Paso,TX
-79947,45086,El Paso,TX,393,El Paso,TX
-79948,45086,El Paso,TX,393,El Paso,TX
-79949,45086,El Paso,TX,393,El Paso,TX
-79950,45086,El Paso,TX,393,El Paso,TX
-79951,45086,El Paso,TX,393,El Paso,TX
-79952,45086,El Paso,TX,393,El Paso,TX
-79953,45086,El Paso,TX,393,El Paso,TX
-79954,45086,El Paso,TX,393,El Paso,TX
-79955,45086,El Paso,TX,393,El Paso,TX
-79958,45086,El Paso,TX,393,El Paso,TX
-79960,45086,El Paso,TX,393,El Paso,TX
-79961,45086,El Paso,TX,393,El Paso,TX
-79968,45086,El Paso,TX,393,El Paso,TX
-79976,45086,El Paso,TX,393,El Paso,TX
-79978,45086,El Paso,TX,393,El Paso,TX
-79980,45086,El Paso,TX,393,El Paso,TX
-79995,45086,El Paso,TX,393,El Paso,TX
-79996,45086,El Paso,TX,393,El Paso,TX
-79997,45086,El Paso,TX,393,El Paso,TX
-79998,45086,El Paso,TX,393,El Paso,TX
-79999,45086,El Paso,TX,393,El Paso,TX
-80001,6053,Wheat Ridge,CO,103,Denver,CO
-80002,6053,Wheat Ridge,CO,103,Denver,CO
-80003,6053,Wheat Ridge,CO,103,Denver,CO
-80004,6053,Wheat Ridge,CO,103,Denver,CO
-80005,6053,Wheat Ridge,CO,103,Denver,CO
-80006,6053,Wheat Ridge,CO,103,Denver,CO
-80007,6053,Wheat Ridge,CO,103,Denver,CO
-80010,6004,Aurora,CO,103,Denver,CO
-80011,6004,Aurora,CO,103,Denver,CO
-80012,6004,Aurora,CO,103,Denver,CO
-80013,6004,Aurora,CO,103,Denver,CO
-80014,6004,Aurora,CO,103,Denver,CO
-80015,6004,Aurora,CO,103,Denver,CO
-80016,6004,Aurora,CO,103,Denver,CO
-80017,6004,Aurora,CO,103,Denver,CO
-80018,6004,Aurora,CO,103,Denver,CO
-80019,6004,Aurora,CO,103,Denver,CO
-80020,6016,Denver,CO,103,Denver,CO
-80021,6016,Denver,CO,103,Denver,CO
-80022,6016,Denver,CO,103,Denver,CO
-80023,6016,Denver,CO,103,Denver,CO
-80024,6016,Denver,CO,103,Denver,CO
-80025,6005,Boulder,CO,101,Boulder,CO
-80026,6005,Boulder,CO,101,Boulder,CO
-80027,6005,Boulder,CO,101,Boulder,CO
-80030,6016,Denver,CO,103,Denver,CO
-80031,6016,Denver,CO,103,Denver,CO
-80033,6053,Wheat Ridge,CO,103,Denver,CO
-80034,6053,Wheat Ridge,CO,103,Denver,CO
-80035,6016,Denver,CO,103,Denver,CO
-80036,6016,Denver,CO,103,Denver,CO
-80037,6016,Denver,CO,103,Denver,CO
-80038,6016,Denver,CO,103,Denver,CO
-80040,6004,Aurora,CO,103,Denver,CO
-80041,6004,Aurora,CO,103,Denver,CO
-80042,6004,Aurora,CO,103,Denver,CO
-80044,6004,Aurora,CO,103,Denver,CO
-80045,6004,Aurora,CO,103,Denver,CO
-80046,6004,Aurora,CO,103,Denver,CO
-80047,6004,Aurora,CO,103,Denver,CO
-80101,6031,Hugo,CO,103,Denver,CO
-80102,6004,Aurora,CO,103,Denver,CO
-80103,6004,Aurora,CO,103,Denver,CO
-80104,6016,Denver,CO,103,Denver,CO
-80105,6004,Aurora,CO,103,Denver,CO
-80106,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80107,6016,Denver,CO,103,Denver,CO
-80108,6016,Denver,CO,103,Denver,CO
-80109,6016,Denver,CO,103,Denver,CO
-80110,6016,Denver,CO,103,Denver,CO
-80111,6016,Denver,CO,103,Denver,CO
-80112,6016,Denver,CO,103,Denver,CO
-80113,6016,Denver,CO,103,Denver,CO
-80116,6016,Denver,CO,103,Denver,CO
-80117,6004,Aurora,CO,103,Denver,CO
-80118,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80120,6016,Denver,CO,103,Denver,CO
-80121,6016,Denver,CO,103,Denver,CO
-80122,6016,Denver,CO,103,Denver,CO
-80123,6016,Denver,CO,103,Denver,CO
-80124,6016,Denver,CO,103,Denver,CO
-80125,6016,Denver,CO,103,Denver,CO
-80126,6016,Denver,CO,103,Denver,CO
-80127,6016,Denver,CO,103,Denver,CO
-80128,6016,Denver,CO,103,Denver,CO
-80129,6016,Denver,CO,103,Denver,CO
-80130,6016,Denver,CO,103,Denver,CO
-80131,6016,Denver,CO,103,Denver,CO
-80132,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80133,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80134,6016,Denver,CO,103,Denver,CO
-80135,6016,Denver,CO,103,Denver,CO
-80136,6004,Aurora,CO,103,Denver,CO
-80137,6004,Aurora,CO,103,Denver,CO
-80138,6016,Denver,CO,103,Denver,CO
-80150,6016,Denver,CO,103,Denver,CO
-80151,6016,Denver,CO,103,Denver,CO
-80155,6016,Denver,CO,103,Denver,CO
-80160,6016,Denver,CO,103,Denver,CO
-80161,6016,Denver,CO,103,Denver,CO
-80162,6016,Denver,CO,103,Denver,CO
-80163,6016,Denver,CO,103,Denver,CO
-80165,6016,Denver,CO,103,Denver,CO
-80166,6016,Denver,CO,103,Denver,CO
-80201,6016,Denver,CO,103,Denver,CO
-80202,6016,Denver,CO,103,Denver,CO
-80203,6016,Denver,CO,103,Denver,CO
-80204,6016,Denver,CO,103,Denver,CO
-80205,6016,Denver,CO,103,Denver,CO
-80206,6016,Denver,CO,103,Denver,CO
-80207,6016,Denver,CO,103,Denver,CO
-80208,6016,Denver,CO,103,Denver,CO
-80209,6016,Denver,CO,103,Denver,CO
-80210,6016,Denver,CO,103,Denver,CO
-80211,6016,Denver,CO,103,Denver,CO
-80212,6016,Denver,CO,103,Denver,CO
-80214,6016,Denver,CO,103,Denver,CO
-80215,6016,Denver,CO,103,Denver,CO
-80216,6016,Denver,CO,103,Denver,CO
-80217,6016,Denver,CO,103,Denver,CO
-80218,6016,Denver,CO,103,Denver,CO
-80219,6016,Denver,CO,103,Denver,CO
-80220,6016,Denver,CO,103,Denver,CO
-80221,6016,Denver,CO,103,Denver,CO
-80222,6016,Denver,CO,103,Denver,CO
-80223,6016,Denver,CO,103,Denver,CO
-80224,6016,Denver,CO,103,Denver,CO
-80225,6016,Denver,CO,103,Denver,CO
-80226,6016,Denver,CO,103,Denver,CO
-80227,6016,Denver,CO,103,Denver,CO
-80228,6016,Denver,CO,103,Denver,CO
-80229,6049,Thornton,CO,103,Denver,CO
-80230,6016,Denver,CO,103,Denver,CO
-80231,6016,Denver,CO,103,Denver,CO
-80232,6016,Denver,CO,103,Denver,CO
-80233,6049,Thornton,CO,103,Denver,CO
-80234,6016,Denver,CO,103,Denver,CO
-80235,6016,Denver,CO,103,Denver,CO
-80236,6016,Denver,CO,103,Denver,CO
-80237,6016,Denver,CO,103,Denver,CO
-80238,6016,Denver,CO,103,Denver,CO
-80239,6016,Denver,CO,103,Denver,CO
-80241,6049,Thornton,CO,103,Denver,CO
-80243,6016,Denver,CO,103,Denver,CO
-80244,6016,Denver,CO,103,Denver,CO
-80246,6016,Denver,CO,103,Denver,CO
-80247,6016,Denver,CO,103,Denver,CO
-80248,6016,Denver,CO,103,Denver,CO
-80249,6004,Aurora,CO,103,Denver,CO
-80250,6016,Denver,CO,103,Denver,CO
-80251,6004,Aurora,CO,103,Denver,CO
-80256,6016,Denver,CO,103,Denver,CO
-80257,6016,Denver,CO,103,Denver,CO
-80259,6016,Denver,CO,103,Denver,CO
-80260,6016,Denver,CO,103,Denver,CO
-80261,6016,Denver,CO,103,Denver,CO
-80262,6016,Denver,CO,103,Denver,CO
-80263,6016,Denver,CO,103,Denver,CO
-80264,6016,Denver,CO,103,Denver,CO
-80265,6016,Denver,CO,103,Denver,CO
-80266,6016,Denver,CO,103,Denver,CO
-80271,6016,Denver,CO,103,Denver,CO
-80273,6016,Denver,CO,103,Denver,CO
-80274,6016,Denver,CO,103,Denver,CO
-80281,6016,Denver,CO,103,Denver,CO
-80290,6016,Denver,CO,103,Denver,CO
-80291,6016,Denver,CO,103,Denver,CO
-80293,6016,Denver,CO,103,Denver,CO
-80294,6016,Denver,CO,103,Denver,CO
-80299,6016,Denver,CO,103,Denver,CO
-80301,6005,Boulder,CO,101,Boulder,CO
-80302,6005,Boulder,CO,101,Boulder,CO
-80303,6005,Boulder,CO,101,Boulder,CO
-80304,6005,Boulder,CO,101,Boulder,CO
-80305,6005,Boulder,CO,101,Boulder,CO
-80306,6005,Boulder,CO,101,Boulder,CO
-80307,6005,Boulder,CO,101,Boulder,CO
-80308,6005,Boulder,CO,101,Boulder,CO
-80309,6005,Boulder,CO,101,Boulder,CO
-80310,6005,Boulder,CO,101,Boulder,CO
-80314,6038,Longmont,CO,101,Boulder,CO
-80401,6053,Wheat Ridge,CO,103,Denver,CO
-80402,6053,Wheat Ridge,CO,103,Denver,CO
-80403,6053,Wheat Ridge,CO,103,Denver,CO
-80419,6053,Wheat Ridge,CO,103,Denver,CO
-80420,6016,Denver,CO,103,Denver,CO
-80421,6016,Denver,CO,103,Denver,CO
-80422,6053,Wheat Ridge,CO,103,Denver,CO
-80423,6016,Denver,CO,103,Denver,CO
-80424,6016,Denver,CO,103,Denver,CO
-80425,6016,Denver,CO,103,Denver,CO
-80426,6025,Glenwood Springs,CO,105,Grand Junction,CO
-80427,6053,Wheat Ridge,CO,103,Denver,CO
-80428,6047,Steamboat Springs,CO,103,Denver,CO
-80429,6037,Leadville,CO,103,Denver,CO
-80430,6033,Kremmling,CO,103,Denver,CO
-80432,6016,Denver,CO,103,Denver,CO
-80433,6016,Denver,CO,103,Denver,CO
-80434,53013,Laramie,WY,104,Fort Collins,CO
-80435,6016,Denver,CO,103,Denver,CO
-80436,6053,Wheat Ridge,CO,103,Denver,CO
-80437,6053,Wheat Ridge,CO,103,Denver,CO
-80438,6053,Wheat Ridge,CO,103,Denver,CO
-80439,6053,Wheat Ridge,CO,103,Denver,CO
-80440,6016,Denver,CO,103,Denver,CO
-80442,6016,Denver,CO,103,Denver,CO
-80443,6016,Denver,CO,103,Denver,CO
-80444,6053,Wheat Ridge,CO,103,Denver,CO
-80446,6016,Denver,CO,103,Denver,CO
-80447,6016,Denver,CO,103,Denver,CO
-80448,6016,Denver,CO,103,Denver,CO
-80449,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80451,6016,Denver,CO,103,Denver,CO
-80452,6053,Wheat Ridge,CO,103,Denver,CO
-80453,6053,Wheat Ridge,CO,103,Denver,CO
-80454,6053,Wheat Ridge,CO,103,Denver,CO
-80455,6005,Boulder,CO,101,Boulder,CO
-80456,6016,Denver,CO,103,Denver,CO
-80457,6053,Wheat Ridge,CO,103,Denver,CO
-80459,6033,Kremmling,CO,103,Denver,CO
-80461,6037,Leadville,CO,103,Denver,CO
-80463,6047,Steamboat Springs,CO,103,Denver,CO
-80465,6016,Denver,CO,103,Denver,CO
-80466,6005,Boulder,CO,101,Boulder,CO
-80467,6047,Steamboat Springs,CO,103,Denver,CO
-80468,6016,Denver,CO,103,Denver,CO
-80469,6047,Steamboat Springs,CO,103,Denver,CO
-80470,6016,Denver,CO,103,Denver,CO
-80471,6005,Boulder,CO,101,Boulder,CO
-80473,53013,Laramie,WY,104,Fort Collins,CO
-80474,6005,Boulder,CO,101,Boulder,CO
-80475,6016,Denver,CO,103,Denver,CO
-80476,6053,Wheat Ridge,CO,103,Denver,CO
-80477,6047,Steamboat Springs,CO,103,Denver,CO
-80478,6016,Denver,CO,103,Denver,CO
-80479,6047,Steamboat Springs,CO,103,Denver,CO
-80480,53013,Laramie,WY,104,Fort Collins,CO
-80481,6005,Boulder,CO,101,Boulder,CO
-80482,6016,Denver,CO,103,Denver,CO
-80483,6047,Steamboat Springs,CO,103,Denver,CO
-80487,6047,Steamboat Springs,CO,103,Denver,CO
-80488,6047,Steamboat Springs,CO,103,Denver,CO
-80497,6016,Denver,CO,103,Denver,CO
-80498,6016,Denver,CO,103,Denver,CO
-80501,6038,Longmont,CO,101,Boulder,CO
-80502,6038,Longmont,CO,101,Boulder,CO
-80503,6038,Longmont,CO,101,Boulder,CO
-80504,6038,Longmont,CO,101,Boulder,CO
-80510,6038,Longmont,CO,101,Boulder,CO
-80511,6020,Estes Park,CO,104,Fort Collins,CO
-80512,6022,Fort Collins,CO,104,Fort Collins,CO
-80513,6039,Loveland,CO,106,Greeley,CO
-80514,6006,Brighton,CO,103,Denver,CO
-80515,6039,Loveland,CO,106,Greeley,CO
-80516,6006,Brighton,CO,103,Denver,CO
-80517,6020,Estes Park,CO,104,Fort Collins,CO
-80520,6038,Longmont,CO,101,Boulder,CO
-80521,6022,Fort Collins,CO,104,Fort Collins,CO
-80522,6022,Fort Collins,CO,104,Fort Collins,CO
-80523,6022,Fort Collins,CO,104,Fort Collins,CO
-80524,6022,Fort Collins,CO,104,Fort Collins,CO
-80525,6022,Fort Collins,CO,104,Fort Collins,CO
-80526,6022,Fort Collins,CO,104,Fort Collins,CO
-80527,6022,Fort Collins,CO,104,Fort Collins,CO
-80528,6022,Fort Collins,CO,104,Fort Collins,CO
-80530,6006,Brighton,CO,103,Denver,CO
-80532,6020,Estes Park,CO,104,Fort Collins,CO
-80533,6038,Longmont,CO,101,Boulder,CO
-80534,6027,Greeley,CO,106,Greeley,CO
-80535,6022,Fort Collins,CO,104,Fort Collins,CO
-80536,6022,Fort Collins,CO,104,Fort Collins,CO
-80537,6039,Loveland,CO,106,Greeley,CO
-80538,6039,Loveland,CO,106,Greeley,CO
-80539,6039,Loveland,CO,106,Greeley,CO
-80540,6038,Longmont,CO,101,Boulder,CO
-80541,6039,Loveland,CO,106,Greeley,CO
-80542,6038,Longmont,CO,101,Boulder,CO
-80543,6027,Greeley,CO,106,Greeley,CO
-80544,6038,Longmont,CO,101,Boulder,CO
-80545,6022,Fort Collins,CO,104,Fort Collins,CO
-80546,6027,Greeley,CO,106,Greeley,CO
-80547,6022,Fort Collins,CO,104,Fort Collins,CO
-80549,6022,Fort Collins,CO,104,Fort Collins,CO
-80550,6027,Greeley,CO,106,Greeley,CO
-80551,6027,Greeley,CO,106,Greeley,CO
-80553,6022,Fort Collins,CO,104,Fort Collins,CO
-80601,6006,Brighton,CO,103,Denver,CO
-80602,6006,Brighton,CO,103,Denver,CO
-80603,6006,Brighton,CO,103,Denver,CO
-80610,6027,Greeley,CO,106,Greeley,CO
-80611,6027,Greeley,CO,106,Greeley,CO
-80612,6027,Greeley,CO,106,Greeley,CO
-80614,6049,Thornton,CO,103,Denver,CO
-80615,6027,Greeley,CO,106,Greeley,CO
-80620,6027,Greeley,CO,106,Greeley,CO
-80621,6006,Brighton,CO,103,Denver,CO
-80622,6027,Greeley,CO,106,Greeley,CO
-80623,6027,Greeley,CO,106,Greeley,CO
-80624,6027,Greeley,CO,106,Greeley,CO
-80631,6027,Greeley,CO,106,Greeley,CO
-80632,6027,Greeley,CO,106,Greeley,CO
-80633,6027,Greeley,CO,106,Greeley,CO
-80634,6027,Greeley,CO,106,Greeley,CO
-80638,6027,Greeley,CO,106,Greeley,CO
-80639,6027,Greeley,CO,106,Greeley,CO
-80640,6016,Denver,CO,103,Denver,CO
-80642,6006,Brighton,CO,103,Denver,CO
-80643,6027,Greeley,CO,106,Greeley,CO
-80644,6027,Greeley,CO,106,Greeley,CO
-80645,6027,Greeley,CO,106,Greeley,CO
-80646,6027,Greeley,CO,106,Greeley,CO
-80648,6027,Greeley,CO,106,Greeley,CO
-80649,6027,Greeley,CO,106,Greeley,CO
-80650,6027,Greeley,CO,106,Greeley,CO
-80651,6027,Greeley,CO,106,Greeley,CO
-80652,6027,Greeley,CO,106,Greeley,CO
-80653,6023,Fort Morgan,CO,106,Greeley,CO
-80654,6023,Fort Morgan,CO,106,Greeley,CO
-80701,6023,Fort Morgan,CO,106,Greeley,CO
-80705,6023,Fort Morgan,CO,106,Greeley,CO
-80720,6048,Sterling,CO,106,Greeley,CO
-80721,6030,Holyoke,CO,106,Greeley,CO
-80722,6048,Sterling,CO,106,Greeley,CO
-80723,6007,Brush,CO,106,Greeley,CO
-80726,6048,Sterling,CO,106,Greeley,CO
-80727,6054,Wray,CO,106,Greeley,CO
-80728,6048,Sterling,CO,106,Greeley,CO
-80729,6027,Greeley,CO,106,Greeley,CO
-80731,6029,Haxtun,CO,106,Greeley,CO
-80732,6027,Greeley,CO,106,Greeley,CO
-80733,6007,Brush,CO,106,Greeley,CO
-80734,6030,Holyoke,CO,106,Greeley,CO
-80735,6054,Wray,CO,106,Greeley,CO
-80736,6048,Sterling,CO,106,Greeley,CO
-80737,6032,Julesburg,CO,106,Greeley,CO
-80740,6023,Fort Morgan,CO,106,Greeley,CO
-80741,6048,Sterling,CO,106,Greeley,CO
-80742,6027,Greeley,CO,106,Greeley,CO
-80743,6048,Sterling,CO,106,Greeley,CO
-80744,6032,Julesburg,CO,106,Greeley,CO
-80745,6048,Sterling,CO,106,Greeley,CO
-80746,6029,Haxtun,CO,106,Greeley,CO
-80747,6048,Sterling,CO,106,Greeley,CO
-80749,6048,Sterling,CO,106,Greeley,CO
-80750,6007,Brush,CO,106,Greeley,CO
-80751,6048,Sterling,CO,106,Greeley,CO
-80754,6048,Sterling,CO,106,Greeley,CO
-80755,6054,Wray,CO,106,Greeley,CO
-80757,6023,Fort Morgan,CO,106,Greeley,CO
-80758,6054,Wray,CO,106,Greeley,CO
-80759,6055,Yuma,CO,106,Greeley,CO
-80801,6054,Wray,CO,106,Greeley,CO
-80802,6010,Cheyenne Wells,CO,102,Colorado Springs,CO
-80804,6031,Hugo,CO,103,Denver,CO
-80805,6008,Burlington,CO,103,Denver,CO
-80807,6008,Burlington,CO,103,Denver,CO
-80808,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80809,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80810,6010,Cheyenne Wells,CO,102,Colorado Springs,CO
-80812,6054,Wray,CO,106,Greeley,CO
-80813,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80814,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80815,6031,Hugo,CO,103,Denver,CO
-80816,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80817,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80818,6031,Hugo,CO,103,Denver,CO
-80819,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80820,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80821,6031,Hugo,CO,103,Denver,CO
-80822,6054,Wray,CO,106,Greeley,CO
-80823,6031,Hugo,CO,103,Denver,CO
-80824,6054,Wray,CO,106,Greeley,CO
-80825,6010,Cheyenne Wells,CO,102,Colorado Springs,CO
-80826,6031,Hugo,CO,103,Denver,CO
-80827,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80828,6031,Hugo,CO,103,Denver,CO
-80829,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80830,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80831,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80832,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80833,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80834,6008,Burlington,CO,103,Denver,CO
-80835,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80836,6008,Burlington,CO,103,Denver,CO
-80840,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80841,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80860,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80861,6008,Burlington,CO,103,Denver,CO
-80862,6010,Cheyenne Wells,CO,102,Colorado Springs,CO
-80863,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80864,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80866,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80901,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80902,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80903,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80904,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80905,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80906,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80907,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80908,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80909,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80910,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80911,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80912,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80913,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80914,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80915,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80916,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80917,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80918,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80919,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80920,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80921,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80922,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80923,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80924,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80925,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80926,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80927,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80928,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80929,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80930,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80931,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80932,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80933,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80934,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80935,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80936,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80937,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80938,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80939,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80941,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80942,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80946,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80947,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80949,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80950,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80951,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80960,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80962,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80970,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80977,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80995,6011,Colorado Springs,CO,102,Colorado Springs,CO
-80997,6011,Colorado Springs,CO,102,Colorado Springs,CO
-81001,6042,Pueblo,CO,107,Pueblo,CO
-81002,6042,Pueblo,CO,107,Pueblo,CO
-81003,6042,Pueblo,CO,107,Pueblo,CO
-81004,6042,Pueblo,CO,107,Pueblo,CO
-81005,6042,Pueblo,CO,107,Pueblo,CO
-81006,6042,Pueblo,CO,107,Pueblo,CO
-81007,6042,Pueblo,CO,107,Pueblo,CO
-81008,6042,Pueblo,CO,107,Pueblo,CO
-81009,6042,Pueblo,CO,107,Pueblo,CO
-81010,6042,Pueblo,CO,107,Pueblo,CO
-81011,6042,Pueblo,CO,107,Pueblo,CO
-81012,6042,Pueblo,CO,107,Pueblo,CO
-81019,6042,Pueblo,CO,107,Pueblo,CO
-81020,6050,Trinidad,CO,102,Colorado Springs,CO
-81021,6035,La Junta,CO,102,Colorado Springs,CO
-81022,6042,Pueblo,CO,107,Pueblo,CO
-81023,6042,Pueblo,CO,107,Pueblo,CO
-81024,6050,Trinidad,CO,102,Colorado Springs,CO
-81025,6042,Pueblo,CO,107,Pueblo,CO
-81027,6050,Trinidad,CO,102,Colorado Springs,CO
-81029,6046,Springfield,CO,102,Colorado Springs,CO
-81030,6035,La Junta,CO,102,Colorado Springs,CO
-81033,6035,La Junta,CO,102,Colorado Springs,CO
-81034,6035,La Junta,CO,102,Colorado Springs,CO
-81036,6018,Eads,CO,102,Colorado Springs,CO
-81038,6035,La Junta,CO,102,Colorado Springs,CO
-81039,6042,Pueblo,CO,107,Pueblo,CO
-81040,6052,Walsenburg,CO,107,Pueblo,CO
-81041,6036,Lamar,CO,102,Colorado Springs,CO
-81043,6036,Lamar,CO,102,Colorado Springs,CO
-81044,6036,Lamar,CO,102,Colorado Springs,CO
-81045,6011,Colorado Springs,CO,102,Colorado Springs,CO
-81046,6050,Trinidad,CO,102,Colorado Springs,CO
-81047,6036,Lamar,CO,102,Colorado Springs,CO
-81049,6035,La Junta,CO,102,Colorado Springs,CO
-81050,6035,La Junta,CO,102,Colorado Springs,CO
-81052,6036,Lamar,CO,102,Colorado Springs,CO
-81054,6035,La Junta,CO,102,Colorado Springs,CO
-81055,6052,Walsenburg,CO,107,Pueblo,CO
-81057,6036,Lamar,CO,102,Colorado Springs,CO
-81058,6035,La Junta,CO,102,Colorado Springs,CO
-81059,6042,Pueblo,CO,107,Pueblo,CO
-81062,6042,Pueblo,CO,107,Pueblo,CO
-81063,6035,La Junta,CO,102,Colorado Springs,CO
-81064,6046,Springfield,CO,102,Colorado Springs,CO
-81067,6035,La Junta,CO,102,Colorado Springs,CO
-81069,6042,Pueblo,CO,107,Pueblo,CO
-81071,17116,Tribune,KS,201,Wichita,KS
-81073,6046,Springfield,CO,102,Colorado Springs,CO
-81076,6035,La Junta,CO,102,Colorado Springs,CO
-81077,6035,La Junta,CO,102,Colorado Springs,CO
-81081,6050,Trinidad,CO,102,Colorado Springs,CO
-81082,6050,Trinidad,CO,102,Colorado Springs,CO
-81084,6046,Springfield,CO,102,Colorado Springs,CO
-81087,6046,Springfield,CO,102,Colorado Springs,CO
-81089,6052,Walsenburg,CO,107,Pueblo,CO
-81090,6046,Springfield,CO,102,Colorado Springs,CO
-81091,6050,Trinidad,CO,102,Colorado Springs,CO
-81092,6036,Lamar,CO,102,Colorado Springs,CO
-81101,6002,Alamosa,CO,102,Colorado Springs,CO
-81102,6002,Alamosa,CO,102,Colorado Springs,CO
-81120,6034,La Jara,CO,102,Colorado Springs,CO
-81121,6017,Durango,CO,293,Albuquerque,NM
-81122,6017,Durango,CO,293,Albuquerque,NM
-81123,6002,Alamosa,CO,102,Colorado Springs,CO
-81124,6034,La Jara,CO,102,Colorado Springs,CO
-81125,6002,Alamosa,CO,102,Colorado Springs,CO
-81126,6002,Alamosa,CO,102,Colorado Springs,CO
-81128,6017,Durango,CO,293,Albuquerque,NM
-81129,6034,La Jara,CO,102,Colorado Springs,CO
-81130,6002,Alamosa,CO,102,Colorado Springs,CO
-81131,6002,Alamosa,CO,102,Colorado Springs,CO
-81132,6002,Alamosa,CO,102,Colorado Springs,CO
-81133,6002,Alamosa,CO,102,Colorado Springs,CO
-81135,6002,Alamosa,CO,102,Colorado Springs,CO
-81136,6002,Alamosa,CO,102,Colorado Springs,CO
-81137,6017,Durango,CO,293,Albuquerque,NM
-81138,6002,Alamosa,CO,102,Colorado Springs,CO
-81140,6034,La Jara,CO,102,Colorado Springs,CO
-81141,6034,La Jara,CO,102,Colorado Springs,CO
-81143,6002,Alamosa,CO,102,Colorado Springs,CO
-81144,6002,Alamosa,CO,102,Colorado Springs,CO
-81146,6002,Alamosa,CO,102,Colorado Springs,CO
-81147,6017,Durango,CO,293,Albuquerque,NM
-81148,6034,La Jara,CO,102,Colorado Springs,CO
-81149,6045,Salida,CO,102,Colorado Springs,CO
-81151,6034,La Jara,CO,102,Colorado Springs,CO
-81152,6002,Alamosa,CO,102,Colorado Springs,CO
-81154,6002,Alamosa,CO,102,Colorado Springs,CO
-81155,6045,Salida,CO,102,Colorado Springs,CO
-81157,6017,Durango,CO,293,Albuquerque,NM
-81201,6045,Salida,CO,102,Colorado Springs,CO
-81210,6028,Gunnison,CO,105,Grand Junction,CO
-81211,6045,Salida,CO,102,Colorado Springs,CO
-81212,6009,Canon City,CO,102,Colorado Springs,CO
-81215,6009,Canon City,CO,102,Colorado Springs,CO
-81220,6041,Montrose,CO,105,Grand Junction,CO
-81221,6009,Canon City,CO,102,Colorado Springs,CO
-81222,6045,Salida,CO,102,Colorado Springs,CO
-81223,6045,Salida,CO,102,Colorado Springs,CO
-81224,6028,Gunnison,CO,105,Grand Junction,CO
-81225,6028,Gunnison,CO,105,Grand Junction,CO
-81226,6009,Canon City,CO,102,Colorado Springs,CO
-81227,6045,Salida,CO,102,Colorado Springs,CO
-81228,6016,Denver,CO,103,Denver,CO
-81230,6028,Gunnison,CO,105,Grand Junction,CO
-81231,6028,Gunnison,CO,105,Grand Junction,CO
-81232,6045,Salida,CO,102,Colorado Springs,CO
-81233,6045,Salida,CO,102,Colorado Springs,CO
-81235,6028,Gunnison,CO,105,Grand Junction,CO
-81236,6045,Salida,CO,102,Colorado Springs,CO
-81237,6028,Gunnison,CO,105,Grand Junction,CO
-81239,6028,Gunnison,CO,105,Grand Junction,CO
-81240,6009,Canon City,CO,102,Colorado Springs,CO
-81241,6028,Gunnison,CO,105,Grand Junction,CO
-81242,6045,Salida,CO,102,Colorado Springs,CO
-81243,6028,Gunnison,CO,105,Grand Junction,CO
-81244,6009,Canon City,CO,102,Colorado Springs,CO
-81248,6045,Salida,CO,102,Colorado Springs,CO
-81251,6016,Denver,CO,103,Denver,CO
-81252,6042,Pueblo,CO,107,Pueblo,CO
-81253,6042,Pueblo,CO,107,Pueblo,CO
-81290,6009,Canon City,CO,102,Colorado Springs,CO
-81301,6017,Durango,CO,293,Albuquerque,NM
-81302,6017,Durango,CO,293,Albuquerque,NM
-81303,6017,Durango,CO,293,Albuquerque,NM
-81320,6012,Cortez,CO,293,Albuquerque,NM
-81321,6012,Cortez,CO,293,Albuquerque,NM
-81323,6012,Cortez,CO,293,Albuquerque,NM
-81324,6012,Cortez,CO,293,Albuquerque,NM
-81325,6026,Grand Junction,CO,105,Grand Junction,CO
-81326,6017,Durango,CO,293,Albuquerque,NM
-81327,6012,Cortez,CO,293,Albuquerque,NM
-81328,6012,Cortez,CO,293,Albuquerque,NM
-81329,6017,Durango,CO,293,Albuquerque,NM
-81330,6012,Cortez,CO,293,Albuquerque,NM
-81331,6012,Cortez,CO,293,Albuquerque,NM
-81332,6012,Cortez,CO,293,Albuquerque,NM
-81334,6012,Cortez,CO,293,Albuquerque,NM
-81335,6012,Cortez,CO,293,Albuquerque,NM
-81401,6041,Montrose,CO,105,Grand Junction,CO
-81402,6041,Montrose,CO,105,Grand Junction,CO
-81403,6041,Montrose,CO,105,Grand Junction,CO
-81410,6015,Delta,CO,105,Grand Junction,CO
-81411,6026,Grand Junction,CO,105,Grand Junction,CO
-81413,6015,Delta,CO,105,Grand Junction,CO
-81414,6015,Delta,CO,105,Grand Junction,CO
-81415,6015,Delta,CO,105,Grand Junction,CO
-81416,6015,Delta,CO,105,Grand Junction,CO
-81418,6015,Delta,CO,105,Grand Junction,CO
-81419,6015,Delta,CO,105,Grand Junction,CO
-81420,6015,Delta,CO,105,Grand Junction,CO
-81422,6026,Grand Junction,CO,105,Grand Junction,CO
-81423,6041,Montrose,CO,105,Grand Junction,CO
-81424,6026,Grand Junction,CO,105,Grand Junction,CO
-81425,6041,Montrose,CO,105,Grand Junction,CO
-81426,6041,Montrose,CO,105,Grand Junction,CO
-81427,6041,Montrose,CO,105,Grand Junction,CO
-81428,6015,Delta,CO,105,Grand Junction,CO
-81429,6026,Grand Junction,CO,105,Grand Junction,CO
-81430,6041,Montrose,CO,105,Grand Junction,CO
-81431,6041,Montrose,CO,105,Grand Junction,CO
-81432,6041,Montrose,CO,105,Grand Junction,CO
-81433,6017,Durango,CO,293,Albuquerque,NM
-81434,6015,Delta,CO,105,Grand Junction,CO
-81435,6041,Montrose,CO,105,Grand Junction,CO
-81501,6026,Grand Junction,CO,105,Grand Junction,CO
-81502,6026,Grand Junction,CO,105,Grand Junction,CO
-81503,6026,Grand Junction,CO,105,Grand Junction,CO
-81504,6026,Grand Junction,CO,105,Grand Junction,CO
-81505,6026,Grand Junction,CO,105,Grand Junction,CO
-81506,6026,Grand Junction,CO,105,Grand Junction,CO
-81507,6026,Grand Junction,CO,105,Grand Junction,CO
-81520,6026,Grand Junction,CO,105,Grand Junction,CO
-81521,6026,Grand Junction,CO,105,Grand Junction,CO
-81522,6026,Grand Junction,CO,105,Grand Junction,CO
-81523,6026,Grand Junction,CO,105,Grand Junction,CO
-81524,6026,Grand Junction,CO,105,Grand Junction,CO
-81525,6026,Grand Junction,CO,105,Grand Junction,CO
-81526,6026,Grand Junction,CO,105,Grand Junction,CO
-81527,6026,Grand Junction,CO,105,Grand Junction,CO
-81601,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81602,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81610,6043,Rangely,CO,423,Salt Lake City,UT
-81611,6003,Aspen,CO,103,Denver,CO
-81612,6003,Aspen,CO,103,Denver,CO
-81615,6003,Aspen,CO,103,Denver,CO
-81620,6051,Vail,CO,103,Denver,CO
-81621,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81623,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81624,6026,Grand Junction,CO,105,Grand Junction,CO
-81625,6013,Craig,CO,103,Denver,CO
-81626,6013,Craig,CO,103,Denver,CO
-81630,6026,Grand Junction,CO,105,Grand Junction,CO
-81631,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81632,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81633,6043,Rangely,CO,423,Salt Lake City,UT
-81635,6026,Grand Junction,CO,105,Grand Junction,CO
-81636,6026,Grand Junction,CO,105,Grand Junction,CO
-81637,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81638,6013,Craig,CO,103,Denver,CO
-81639,6047,Steamboat Springs,CO,103,Denver,CO
-81640,6013,Craig,CO,103,Denver,CO
-81641,6040,Meeker,CO,105,Grand Junction,CO
-81642,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81643,6026,Grand Junction,CO,105,Grand Junction,CO
-81645,6051,Vail,CO,103,Denver,CO
-81646,6026,Grand Junction,CO,105,Grand Junction,CO
-81647,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81648,6043,Rangely,CO,423,Salt Lake City,UT
-81649,6051,Vail,CO,103,Denver,CO
-81650,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81652,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81653,6047,Steamboat Springs,CO,103,Denver,CO
-81654,6003,Aspen,CO,103,Denver,CO
-81655,6025,Glenwood Springs,CO,105,Grand Junction,CO
-81656,6003,Aspen,CO,103,Denver,CO
-81657,6051,Vail,CO,103,Denver,CO
-81658,6051,Vail,CO,103,Denver,CO
-82001,53004,Cheyenne,WY,104,Fort Collins,CO
-82002,53004,Cheyenne,WY,104,Fort Collins,CO
-82003,53004,Cheyenne,WY,104,Fort Collins,CO
-82005,53004,Cheyenne,WY,104,Fort Collins,CO
-82006,53004,Cheyenne,WY,104,Fort Collins,CO
-82007,53004,Cheyenne,WY,104,Fort Collins,CO
-82009,53004,Cheyenne,WY,104,Fort Collins,CO
-82010,53004,Cheyenne,WY,104,Fort Collins,CO
-82050,53004,Cheyenne,WY,104,Fort Collins,CO
-82051,53013,Laramie,WY,104,Fort Collins,CO
-82052,53013,Laramie,WY,104,Fort Collins,CO
-82053,53004,Cheyenne,WY,104,Fort Collins,CO
-82054,53004,Cheyenne,WY,104,Fort Collins,CO
-82055,53013,Laramie,WY,104,Fort Collins,CO
-82058,53013,Laramie,WY,104,Fort Collins,CO
-82059,53004,Cheyenne,WY,104,Fort Collins,CO
-82060,53004,Cheyenne,WY,104,Fort Collins,CO
-82061,53004,Cheyenne,WY,104,Fort Collins,CO
-82063,53013,Laramie,WY,104,Fort Collins,CO
-82070,53013,Laramie,WY,104,Fort Collins,CO
-82071,53013,Laramie,WY,104,Fort Collins,CO
-82072,53013,Laramie,WY,104,Fort Collins,CO
-82073,53013,Laramie,WY,104,Fort Collins,CO
-82081,53004,Cheyenne,WY,104,Fort Collins,CO
-82082,53004,Cheyenne,WY,104,Fort Collins,CO
-82083,53013,Laramie,WY,104,Fort Collins,CO
-82084,53004,Cheyenne,WY,104,Fort Collins,CO
-82190,27031,Livingston,MT,274,Billings,MT
-82201,53025,Wheatland,WY,457,Casper,WY
-82210,53025,Wheatland,WY,457,Casper,WY
-82212,53024,Torrington,WY,457,Casper,WY
-82213,53025,Wheatland,WY,457,Casper,WY
-82214,53025,Wheatland,WY,457,Casper,WY
-82215,53025,Wheatland,WY,457,Casper,WY
-82217,53024,Torrington,WY,457,Casper,WY
-82218,53024,Torrington,WY,457,Casper,WY
-82219,28068,Scottsbluff,NE,103,Denver,CO
-82221,53004,Cheyenne,WY,104,Fort Collins,CO
-82222,28068,Scottsbluff,NE,103,Denver,CO
-82223,53024,Torrington,WY,457,Casper,WY
-82224,53006,Douglas,WY,457,Casper,WY
-82225,53015,Lusk,WY,457,Casper,WY
-82227,53006,Douglas,WY,457,Casper,WY
-82229,53006,Douglas,WY,457,Casper,WY
-82240,53024,Torrington,WY,457,Casper,WY
-82242,28068,Scottsbluff,NE,103,Denver,CO
-82243,53024,Torrington,WY,457,Casper,WY
-82244,53024,Torrington,WY,457,Casper,WY
-82301,53018,Rawlins,WY,457,Casper,WY
-82310,53019,Riverton,WY,457,Casper,WY
-82321,6013,Craig,CO,103,Denver,CO
-82322,53018,Rawlins,WY,457,Casper,WY
-82323,6013,Craig,CO,103,Denver,CO
-82324,53018,Rawlins,WY,457,Casper,WY
-82325,53013,Laramie,WY,104,Fort Collins,CO
-82327,53018,Rawlins,WY,457,Casper,WY
-82329,53013,Laramie,WY,104,Fort Collins,CO
-82331,53018,Rawlins,WY,457,Casper,WY
-82332,6013,Craig,CO,103,Denver,CO
-82334,53018,Rawlins,WY,457,Casper,WY
-82335,53018,Rawlins,WY,457,Casper,WY
-82336,53018,Rawlins,WY,457,Casper,WY
-82401,53026,Worland,WY,274,Billings,MT
-82410,53026,Worland,WY,274,Billings,MT
-82411,53005,Cody,WY,274,Billings,MT
-82412,53014,Lovell,WY,274,Billings,MT
-82414,53005,Cody,WY,274,Billings,MT
-82420,53014,Lovell,WY,274,Billings,MT
-82421,53017,Powell,WY,274,Billings,MT
-82422,53005,Cody,WY,274,Billings,MT
-82423,53017,Powell,WY,274,Billings,MT
-82426,53005,Cody,WY,274,Billings,MT
-82428,53026,Worland,WY,274,Billings,MT
-82430,53023,Thermopolis,WY,457,Casper,WY
-82431,53014,Lovell,WY,274,Billings,MT
-82432,53026,Worland,WY,274,Billings,MT
-82433,53005,Cody,WY,274,Billings,MT
-82434,53005,Cody,WY,274,Billings,MT
-82435,53017,Powell,WY,274,Billings,MT
-82440,53017,Powell,WY,274,Billings,MT
-82441,53026,Worland,WY,274,Billings,MT
-82442,53026,Worland,WY,274,Billings,MT
-82443,53023,Thermopolis,WY,457,Casper,WY
-82450,53005,Cody,WY,274,Billings,MT
-82501,53019,Riverton,WY,457,Casper,WY
-82510,53019,Riverton,WY,457,Casper,WY
-82512,53019,Riverton,WY,457,Casper,WY
-82513,53019,Riverton,WY,457,Casper,WY
-82514,53012,Lander,WY,457,Casper,WY
-82515,53012,Lander,WY,457,Casper,WY
-82516,53019,Riverton,WY,457,Casper,WY
-82520,53012,Lander,WY,457,Casper,WY
-82523,53019,Riverton,WY,457,Casper,WY
-82524,53019,Riverton,WY,457,Casper,WY
-82601,53003,Casper,WY,457,Casper,WY
-82602,53003,Casper,WY,457,Casper,WY
-82604,53003,Casper,WY,457,Casper,WY
-82605,53003,Casper,WY,457,Casper,WY
-82609,53003,Casper,WY,457,Casper,WY
-82615,53018,Rawlins,WY,457,Casper,WY
-82620,53003,Casper,WY,457,Casper,WY
-82630,53003,Casper,WY,457,Casper,WY
-82633,53006,Douglas,WY,457,Casper,WY
-82635,53003,Casper,WY,457,Casper,WY
-82636,53003,Casper,WY,457,Casper,WY
-82637,53003,Casper,WY,457,Casper,WY
-82638,53003,Casper,WY,457,Casper,WY
-82639,53002,Buffalo,WY,457,Casper,WY
-82640,53002,Buffalo,WY,457,Casper,WY
-82642,53003,Casper,WY,457,Casper,WY
-82643,53003,Casper,WY,457,Casper,WY
-82644,53003,Casper,WY,457,Casper,WY
-82646,53003,Casper,WY,457,Casper,WY
-82648,53003,Casper,WY,457,Casper,WY
-82649,53019,Riverton,WY,457,Casper,WY
-82701,53016,Newcastle,WY,457,Casper,WY
-82710,43041,Spearfish,SD,370,Rapid City,SD
-82711,43041,Spearfish,SD,370,Rapid City,SD
-82712,43041,Spearfish,SD,370,Rapid City,SD
-82714,43041,Spearfish,SD,370,Rapid City,SD
-82715,53016,Newcastle,WY,457,Casper,WY
-82716,53008,Gillette,WY,274,Billings,MT
-82717,53008,Gillette,WY,274,Billings,MT
-82718,53008,Gillette,WY,274,Billings,MT
-82720,43041,Spearfish,SD,370,Rapid City,SD
-82721,53022,Sundance,WY,457,Casper,WY
-82723,53016,Newcastle,WY,457,Casper,WY
-82725,53008,Gillette,WY,274,Billings,MT
-82727,53008,Gillette,WY,274,Billings,MT
-82729,53022,Sundance,WY,457,Casper,WY
-82730,53016,Newcastle,WY,457,Casper,WY
-82731,53008,Gillette,WY,274,Billings,MT
-82732,53008,Gillette,WY,274,Billings,MT
-82801,53021,Sheridan,WY,274,Billings,MT
-82831,53021,Sheridan,WY,274,Billings,MT
-82832,53021,Sheridan,WY,274,Billings,MT
-82833,53021,Sheridan,WY,274,Billings,MT
-82834,53002,Buffalo,WY,457,Casper,WY
-82835,53002,Buffalo,WY,457,Casper,WY
-82836,53021,Sheridan,WY,274,Billings,MT
-82837,53002,Buffalo,WY,457,Casper,WY
-82838,53021,Sheridan,WY,274,Billings,MT
-82839,53021,Sheridan,WY,274,Billings,MT
-82840,53002,Buffalo,WY,457,Casper,WY
-82842,53021,Sheridan,WY,274,Billings,MT
-82844,53021,Sheridan,WY,274,Billings,MT
-82845,53021,Sheridan,WY,274,Billings,MT
-82901,53020,Rock Springs,WY,423,Salt Lake City,UT
-82902,53020,Rock Springs,WY,423,Salt Lake City,UT
-82922,53010,Jackson,WY,423,Salt Lake City,UT
-82923,53020,Rock Springs,WY,423,Salt Lake City,UT
-82925,53010,Jackson,WY,423,Salt Lake City,UT
-82929,53020,Rock Springs,WY,423,Salt Lake City,UT
-82930,53007,Evanston,WY,423,Salt Lake City,UT
-82931,53007,Evanston,WY,423,Salt Lake City,UT
-82932,53020,Rock Springs,WY,423,Salt Lake City,UT
-82933,53007,Evanston,WY,423,Salt Lake City,UT
-82934,53020,Rock Springs,WY,423,Salt Lake City,UT
-82935,53020,Rock Springs,WY,423,Salt Lake City,UT
-82936,53007,Evanston,WY,423,Salt Lake City,UT
-82937,53007,Evanston,WY,423,Salt Lake City,UT
-82938,53020,Rock Springs,WY,423,Salt Lake City,UT
-82939,53007,Evanston,WY,423,Salt Lake City,UT
-82941,53010,Jackson,WY,423,Salt Lake City,UT
-82942,53020,Rock Springs,WY,423,Salt Lake City,UT
-82943,53020,Rock Springs,WY,423,Salt Lake City,UT
-82944,53007,Evanston,WY,423,Salt Lake City,UT
-82945,53020,Rock Springs,WY,423,Salt Lake City,UT
-83001,53010,Jackson,WY,423,Salt Lake City,UT
-83002,53010,Jackson,WY,423,Salt Lake City,UT
-83011,53010,Jackson,WY,423,Salt Lake City,UT
-83012,53010,Jackson,WY,423,Salt Lake City,UT
-83013,53010,Jackson,WY,423,Salt Lake City,UT
-83014,53010,Jackson,WY,423,Salt Lake City,UT
-83025,53010,Jackson,WY,423,Salt Lake City,UT
-83101,53011,Kemmerer,WY,423,Salt Lake City,UT
-83110,53001,Afton,WY,423,Salt Lake City,UT
-83111,53001,Afton,WY,423,Salt Lake City,UT
-83112,53001,Afton,WY,423,Salt Lake City,UT
-83113,53010,Jackson,WY,423,Salt Lake City,UT
-83114,13023,Montpelier,ID,423,Salt Lake City,UT
-83115,53010,Jackson,WY,423,Salt Lake City,UT
-83116,53011,Kemmerer,WY,423,Salt Lake City,UT
-83118,53010,Jackson,WY,423,Salt Lake City,UT
-83119,53001,Afton,WY,423,Salt Lake City,UT
-83120,13035,Soda Springs,ID,423,Salt Lake City,UT
-83121,53011,Kemmerer,WY,423,Salt Lake City,UT
-83122,53001,Afton,WY,423,Salt Lake City,UT
-83123,53011,Kemmerer,WY,423,Salt Lake City,UT
-83124,53011,Kemmerer,WY,423,Salt Lake City,UT
-83126,53001,Afton,WY,423,Salt Lake City,UT
-83127,53001,Afton,WY,423,Salt Lake City,UT
-83128,53010,Jackson,WY,423,Salt Lake City,UT
-83201,13028,Pocatello,ID,423,Salt Lake City,UT
-83202,13028,Pocatello,ID,423,Salt Lake City,UT
-83203,13028,Pocatello,ID,423,Salt Lake City,UT
-83204,13028,Pocatello,ID,423,Salt Lake City,UT
-83205,13028,Pocatello,ID,423,Salt Lake City,UT
-83206,13028,Pocatello,ID,423,Salt Lake City,UT
-83209,13028,Pocatello,ID,423,Salt Lake City,UT
-83210,13028,Pocatello,ID,423,Salt Lake City,UT
-83211,13028,Pocatello,ID,423,Salt Lake City,UT
-83212,13028,Pocatello,ID,423,Salt Lake City,UT
-83213,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83214,13028,Pocatello,ID,423,Salt Lake City,UT
-83215,13003,Blackfoot,ID,152,Idaho Falls,ID
-83217,13028,Pocatello,ID,423,Salt Lake City,UT
-83218,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83220,13023,Montpelier,ID,423,Salt Lake City,UT
-83221,13003,Blackfoot,ID,152,Idaho Falls,ID
-83223,13023,Montpelier,ID,423,Salt Lake City,UT
-83226,13032,Salmon,ID,276,Missoula,MT
-83227,13032,Salmon,ID,276,Missoula,MT
-83228,13029,Preston,ID,423,Salt Lake City,UT
-83229,13032,Salmon,ID,276,Missoula,MT
-83230,13035,Soda Springs,ID,423,Salt Lake City,UT
-83232,13029,Preston,ID,423,Salt Lake City,UT
-83233,13023,Montpelier,ID,423,Salt Lake City,UT
-83234,13028,Pocatello,ID,423,Salt Lake City,UT
-83235,13032,Salmon,ID,276,Missoula,MT
-83236,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83237,46012,Logan,UT,423,Salt Lake City,UT
-83238,13023,Montpelier,ID,423,Salt Lake City,UT
-83239,13023,Montpelier,ID,423,Salt Lake City,UT
-83241,13035,Soda Springs,ID,423,Salt Lake City,UT
-83243,13028,Pocatello,ID,423,Salt Lake City,UT
-83244,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83245,13028,Pocatello,ID,423,Salt Lake City,UT
-83246,13028,Pocatello,ID,423,Salt Lake City,UT
-83250,13028,Pocatello,ID,423,Salt Lake City,UT
-83251,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83252,13021,Malad City,ID,423,Salt Lake City,UT
-83253,13032,Salmon,ID,276,Missoula,MT
-83254,13023,Montpelier,ID,423,Salt Lake City,UT
-83255,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83256,13003,Blackfoot,ID,152,Idaho Falls,ID
-83261,13023,Montpelier,ID,423,Salt Lake City,UT
-83262,13003,Blackfoot,ID,152,Idaho Falls,ID
-83263,13029,Preston,ID,423,Salt Lake City,UT
-83271,13028,Pocatello,ID,423,Salt Lake City,UT
-83272,13023,Montpelier,ID,423,Salt Lake City,UT
-83274,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83276,13035,Soda Springs,ID,423,Salt Lake City,UT
-83277,13028,Pocatello,ID,423,Salt Lake City,UT
-83278,13037,Sun Valley,ID,151,Boise,ID
-83281,13028,Pocatello,ID,423,Salt Lake City,UT
-83283,13029,Preston,ID,423,Salt Lake City,UT
-83285,13035,Soda Springs,ID,423,Salt Lake City,UT
-83286,13029,Preston,ID,423,Salt Lake City,UT
-83287,13023,Montpelier,ID,423,Salt Lake City,UT
-83301,13038,Twin Falls,ID,151,Boise,ID
-83302,13038,Twin Falls,ID,151,Boise,ID
-83303,13038,Twin Falls,ID,151,Boise,ID
-83311,13006,Burley,ID,423,Salt Lake City,UT
-83312,13006,Burley,ID,423,Salt Lake City,UT
-83313,13037,Sun Valley,ID,151,Boise,ID
-83314,13038,Twin Falls,ID,151,Boise,ID
-83316,13038,Twin Falls,ID,151,Boise,ID
-83318,13006,Burley,ID,423,Salt Lake City,UT
-83320,13037,Sun Valley,ID,151,Boise,ID
-83321,13038,Twin Falls,ID,151,Boise,ID
-83322,13037,Sun Valley,ID,151,Boise,ID
-83323,13006,Burley,ID,423,Salt Lake City,UT
-83324,13038,Twin Falls,ID,151,Boise,ID
-83325,13038,Twin Falls,ID,151,Boise,ID
-83327,13037,Sun Valley,ID,151,Boise,ID
-83328,13038,Twin Falls,ID,151,Boise,ID
-83330,13038,Twin Falls,ID,151,Boise,ID
-83332,13038,Twin Falls,ID,151,Boise,ID
-83333,13037,Sun Valley,ID,151,Boise,ID
-83334,13038,Twin Falls,ID,151,Boise,ID
-83335,13038,Twin Falls,ID,151,Boise,ID
-83336,13006,Burley,ID,423,Salt Lake City,UT
-83337,13037,Sun Valley,ID,151,Boise,ID
-83338,13038,Twin Falls,ID,151,Boise,ID
-83340,13037,Sun Valley,ID,151,Boise,ID
-83341,13038,Twin Falls,ID,151,Boise,ID
-83342,13006,Burley,ID,423,Salt Lake City,UT
-83343,13006,Burley,ID,423,Salt Lake City,UT
-83344,13038,Twin Falls,ID,151,Boise,ID
-83346,13006,Burley,ID,423,Salt Lake City,UT
-83347,13006,Burley,ID,423,Salt Lake City,UT
-83348,13037,Sun Valley,ID,151,Boise,ID
-83349,13038,Twin Falls,ID,151,Boise,ID
-83350,13031,Rupert,ID,423,Salt Lake City,UT
-83352,13038,Twin Falls,ID,151,Boise,ID
-83353,13037,Sun Valley,ID,151,Boise,ID
-83354,13037,Sun Valley,ID,151,Boise,ID
-83355,13038,Twin Falls,ID,151,Boise,ID
-83401,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83402,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83403,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83404,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83405,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83406,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83414,53010,Jackson,WY,423,Salt Lake City,UT
-83415,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83420,13030,Rexburg,ID,152,Idaho Falls,ID
-83421,13030,Rexburg,ID,152,Idaho Falls,ID
-83422,13012,Driggs,ID,152,Idaho Falls,ID
-83423,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83424,13012,Driggs,ID,152,Idaho Falls,ID
-83425,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83427,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83428,13012,Driggs,ID,152,Idaho Falls,ID
-83429,13030,Rexburg,ID,152,Idaho Falls,ID
-83431,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83433,13030,Rexburg,ID,152,Idaho Falls,ID
-83434,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83435,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83436,13030,Rexburg,ID,152,Idaho Falls,ID
-83438,13030,Rexburg,ID,152,Idaho Falls,ID
-83440,13030,Rexburg,ID,152,Idaho Falls,ID
-83441,13030,Rexburg,ID,152,Idaho Falls,ID
-83442,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83443,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83444,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83445,13030,Rexburg,ID,152,Idaho Falls,ID
-83446,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83448,13030,Rexburg,ID,152,Idaho Falls,ID
-83449,13012,Driggs,ID,152,Idaho Falls,ID
-83450,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83451,13030,Rexburg,ID,152,Idaho Falls,ID
-83452,13012,Driggs,ID,152,Idaho Falls,ID
-83454,13017,Idaho Falls,ID,152,Idaho Falls,ID
-83455,13012,Driggs,ID,152,Idaho Falls,ID
-83460,13030,Rexburg,ID,152,Idaho Falls,ID
-83462,13032,Salmon,ID,276,Missoula,MT
-83463,13032,Salmon,ID,276,Missoula,MT
-83464,13032,Salmon,ID,276,Missoula,MT
-83465,13032,Salmon,ID,276,Missoula,MT
-83466,13032,Salmon,ID,276,Missoula,MT
-83467,13032,Salmon,ID,276,Missoula,MT
-83468,13032,Salmon,ID,276,Missoula,MT
-83469,13032,Salmon,ID,276,Missoula,MT
-83501,13020,Lewiston,ID,440,Spokane,WA
-83520,13027,Orofino,ID,440,Spokane,WA
-83522,13010,Cottonwood,ID,440,Spokane,WA
-83523,13020,Lewiston,ID,440,Spokane,WA
-83524,13020,Lewiston,ID,440,Spokane,WA
-83525,13015,Grangeville,ID,440,Spokane,WA
-83526,13010,Cottonwood,ID,440,Spokane,WA
-83530,13015,Grangeville,ID,440,Spokane,WA
-83531,13015,Grangeville,ID,440,Spokane,WA
-83533,13010,Cottonwood,ID,440,Spokane,WA
-83535,13020,Lewiston,ID,440,Spokane,WA
-83536,13020,Lewiston,ID,440,Spokane,WA
-83537,13020,Lewiston,ID,440,Spokane,WA
-83539,13020,Lewiston,ID,440,Spokane,WA
-83540,13020,Lewiston,ID,440,Spokane,WA
-83541,13020,Lewiston,ID,440,Spokane,WA
-83542,13015,Grangeville,ID,440,Spokane,WA
-83543,13020,Lewiston,ID,440,Spokane,WA
-83544,13027,Orofino,ID,440,Spokane,WA
-83545,13020,Lewiston,ID,440,Spokane,WA
-83546,13027,Orofino,ID,440,Spokane,WA
-83547,13022,McCall,ID,151,Boise,ID
-83548,13020,Lewiston,ID,440,Spokane,WA
-83549,13022,McCall,ID,151,Boise,ID
-83552,13020,Lewiston,ID,440,Spokane,WA
-83553,13020,Lewiston,ID,440,Spokane,WA
-83554,13015,Grangeville,ID,440,Spokane,WA
-83555,13020,Lewiston,ID,440,Spokane,WA
-83602,13004,Boise,ID,151,Boise,ID
-83604,13025,Mountain Home,ID,151,Boise,ID
-83605,13007,Caldwell,ID,151,Boise,ID
-83606,13007,Caldwell,ID,151,Boise,ID
-83607,13007,Caldwell,ID,151,Boise,ID
-83610,13004,Boise,ID,151,Boise,ID
-83611,13004,Boise,ID,151,Boise,ID
-83612,13004,Boise,ID,151,Boise,ID
-83615,13004,Boise,ID,151,Boise,ID
-83616,13004,Boise,ID,151,Boise,ID
-83617,13004,Boise,ID,151,Boise,ID
-83619,38040,Ontario,OR,151,Boise,ID
-83622,13004,Boise,ID,151,Boise,ID
-83623,13025,Mountain Home,ID,151,Boise,ID
-83624,13025,Mountain Home,ID,151,Boise,ID
-83626,13007,Caldwell,ID,151,Boise,ID
-83627,13025,Mountain Home,ID,151,Boise,ID
-83628,13007,Caldwell,ID,151,Boise,ID
-83629,13004,Boise,ID,151,Boise,ID
-83630,13007,Caldwell,ID,151,Boise,ID
-83631,13004,Boise,ID,151,Boise,ID
-83632,13004,Boise,ID,151,Boise,ID
-83633,13025,Mountain Home,ID,151,Boise,ID
-83634,13004,Boise,ID,151,Boise,ID
-83635,13004,Boise,ID,151,Boise,ID
-83636,13004,Boise,ID,151,Boise,ID
-83637,13004,Boise,ID,151,Boise,ID
-83638,13022,McCall,ID,151,Boise,ID
-83639,13026,Nampa,ID,151,Boise,ID
-83641,13026,Nampa,ID,151,Boise,ID
-83642,13004,Boise,ID,151,Boise,ID
-83643,13004,Boise,ID,151,Boise,ID
-83644,13007,Caldwell,ID,151,Boise,ID
-83645,38040,Ontario,OR,151,Boise,ID
-83646,13004,Boise,ID,151,Boise,ID
-83647,13025,Mountain Home,ID,151,Boise,ID
-83648,13025,Mountain Home,ID,151,Boise,ID
-83650,13007,Caldwell,ID,151,Boise,ID
-83651,13026,Nampa,ID,151,Boise,ID
-83652,13026,Nampa,ID,151,Boise,ID
-83653,13026,Nampa,ID,151,Boise,ID
-83654,13022,McCall,ID,151,Boise,ID
-83655,38040,Ontario,OR,151,Boise,ID
-83656,13007,Caldwell,ID,151,Boise,ID
-83657,13004,Boise,ID,151,Boise,ID
-83660,13007,Caldwell,ID,151,Boise,ID
-83661,38040,Ontario,OR,151,Boise,ID
-83666,13004,Boise,ID,151,Boise,ID
-83669,13004,Boise,ID,151,Boise,ID
-83670,13004,Boise,ID,151,Boise,ID
-83671,13022,McCall,ID,151,Boise,ID
-83672,13039,Weiser,ID,151,Boise,ID
-83676,13007,Caldwell,ID,151,Boise,ID
-83677,13022,McCall,ID,151,Boise,ID
-83680,13004,Boise,ID,151,Boise,ID
-83686,13026,Nampa,ID,151,Boise,ID
-83687,13026,Nampa,ID,151,Boise,ID
-83701,13004,Boise,ID,151,Boise,ID
-83702,13004,Boise,ID,151,Boise,ID
-83703,13004,Boise,ID,151,Boise,ID
-83704,13004,Boise,ID,151,Boise,ID
-83705,13004,Boise,ID,151,Boise,ID
-83706,13004,Boise,ID,151,Boise,ID
-83707,13004,Boise,ID,151,Boise,ID
-83708,13004,Boise,ID,151,Boise,ID
-83709,13004,Boise,ID,151,Boise,ID
-83711,13004,Boise,ID,151,Boise,ID
-83712,13004,Boise,ID,151,Boise,ID
-83713,13004,Boise,ID,151,Boise,ID
-83714,13004,Boise,ID,151,Boise,ID
-83715,13004,Boise,ID,151,Boise,ID
-83716,13004,Boise,ID,151,Boise,ID
-83717,13004,Boise,ID,151,Boise,ID
-83719,13004,Boise,ID,151,Boise,ID
-83720,13004,Boise,ID,151,Boise,ID
-83722,13004,Boise,ID,151,Boise,ID
-83724,13004,Boise,ID,151,Boise,ID
-83725,13004,Boise,ID,151,Boise,ID
-83726,13004,Boise,ID,151,Boise,ID
-83728,13004,Boise,ID,151,Boise,ID
-83729,13004,Boise,ID,151,Boise,ID
-83732,13004,Boise,ID,151,Boise,ID
-83735,13004,Boise,ID,151,Boise,ID
-83756,13004,Boise,ID,151,Boise,ID
-83799,13004,Boise,ID,151,Boise,ID
-83801,13009,Coeur D'Alene,ID,440,Spokane,WA
-83802,13019,Kellogg,ID,440,Spokane,WA
-83803,13009,Coeur D'Alene,ID,440,Spokane,WA
-83804,13009,Coeur D'Alene,ID,440,Spokane,WA
-83805,13005,Bonners Ferry,ID,440,Spokane,WA
-83806,13024,Moscow,ID,440,Spokane,WA
-83808,13019,Kellogg,ID,440,Spokane,WA
-83809,13033,Sandpoint,ID,440,Spokane,WA
-83810,13009,Coeur D'Alene,ID,440,Spokane,WA
-83811,13033,Sandpoint,ID,440,Spokane,WA
-83812,13036,St. Maries,ID,440,Spokane,WA
-83813,13009,Coeur D'Alene,ID,440,Spokane,WA
-83814,13009,Coeur D'Alene,ID,440,Spokane,WA
-83815,13009,Coeur D'Alene,ID,440,Spokane,WA
-83816,13009,Coeur D'Alene,ID,440,Spokane,WA
-83821,50059,Spokane,WA,440,Spokane,WA
-83822,50059,Spokane,WA,440,Spokane,WA
-83823,13024,Moscow,ID,440,Spokane,WA
-83824,50059,Spokane,WA,440,Spokane,WA
-83825,13033,Sandpoint,ID,440,Spokane,WA
-83826,13005,Bonners Ferry,ID,440,Spokane,WA
-83827,13024,Moscow,ID,440,Spokane,WA
-83830,13036,St. Maries,ID,440,Spokane,WA
-83832,13024,Moscow,ID,440,Spokane,WA
-83833,13009,Coeur D'Alene,ID,440,Spokane,WA
-83834,13024,Moscow,ID,440,Spokane,WA
-83835,13009,Coeur D'Alene,ID,440,Spokane,WA
-83836,13033,Sandpoint,ID,440,Spokane,WA
-83837,13019,Kellogg,ID,440,Spokane,WA
-83839,13019,Kellogg,ID,440,Spokane,WA
-83840,13033,Sandpoint,ID,440,Spokane,WA
-83841,50059,Spokane,WA,440,Spokane,WA
-83842,13009,Coeur D'Alene,ID,440,Spokane,WA
-83843,13024,Moscow,ID,440,Spokane,WA
-83844,13024,Moscow,ID,440,Spokane,WA
-83845,13005,Bonners Ferry,ID,440,Spokane,WA
-83846,13019,Kellogg,ID,440,Spokane,WA
-83847,13033,Sandpoint,ID,440,Spokane,WA
-83848,50059,Spokane,WA,440,Spokane,WA
-83849,13019,Kellogg,ID,440,Spokane,WA
-83850,13009,Coeur D'Alene,ID,440,Spokane,WA
-83851,50059,Spokane,WA,440,Spokane,WA
-83852,13033,Sandpoint,ID,440,Spokane,WA
-83853,13005,Bonners Ferry,ID,440,Spokane,WA
-83854,13009,Coeur D'Alene,ID,440,Spokane,WA
-83855,13024,Moscow,ID,440,Spokane,WA
-83856,50059,Spokane,WA,440,Spokane,WA
-83857,13024,Moscow,ID,440,Spokane,WA
-83858,13009,Coeur D'Alene,ID,440,Spokane,WA
-83860,13033,Sandpoint,ID,440,Spokane,WA
-83861,13036,St. Maries,ID,440,Spokane,WA
-83864,13033,Sandpoint,ID,440,Spokane,WA
-83865,13033,Sandpoint,ID,440,Spokane,WA
-83866,13036,St. Maries,ID,440,Spokane,WA
-83867,13019,Kellogg,ID,440,Spokane,WA
-83868,13019,Kellogg,ID,440,Spokane,WA
-83869,50059,Spokane,WA,440,Spokane,WA
-83870,50059,Spokane,WA,440,Spokane,WA
-83871,13024,Moscow,ID,440,Spokane,WA
-83872,13024,Moscow,ID,440,Spokane,WA
-83873,13019,Kellogg,ID,440,Spokane,WA
-83874,13019,Kellogg,ID,440,Spokane,WA
-83876,50059,Spokane,WA,440,Spokane,WA
-83877,13009,Coeur D'Alene,ID,440,Spokane,WA
-84001,46027,Roosevelt,UT,423,Salt Lake City,UT
-84002,46027,Roosevelt,UT,423,Salt Lake City,UT
-84003,46001,American Fork,UT,422,Provo,UT
-84004,46001,American Fork,UT,422,Provo,UT
-84005,46023,Payson,UT,422,Provo,UT
-84006,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84007,46027,Roosevelt,UT,423,Salt Lake City,UT
-84008,46033,Vernal,UT,423,Salt Lake City,UT
-84009,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84010,46003,Bountiful,UT,423,Salt Lake City,UT
-84011,46003,Bountiful,UT,423,Salt Lake City,UT
-84013,46023,Payson,UT,422,Provo,UT
-84014,46003,Bountiful,UT,423,Salt Lake City,UT
-84015,46011,Layton,UT,421,Ogden,UT
-84016,46011,Layton,UT,421,Ogden,UT
-84017,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84018,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84020,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84021,46027,Roosevelt,UT,423,Salt Lake City,UT
-84022,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84023,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84024,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84025,46003,Bountiful,UT,423,Salt Lake City,UT
-84026,46027,Roosevelt,UT,423,Salt Lake City,UT
-84027,46027,Roosevelt,UT,423,Salt Lake City,UT
-84028,46012,Logan,UT,423,Salt Lake City,UT
-84029,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84031,46027,Roosevelt,UT,423,Salt Lake City,UT
-84032,46025,Provo,UT,422,Provo,UT
-84033,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84034,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84035,46033,Vernal,UT,423,Salt Lake City,UT
-84036,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84037,46011,Layton,UT,421,Ogden,UT
-84038,46012,Logan,UT,423,Salt Lake City,UT
-84039,46027,Roosevelt,UT,423,Salt Lake City,UT
-84040,46011,Layton,UT,421,Ogden,UT
-84041,46011,Layton,UT,421,Ogden,UT
-84042,46001,American Fork,UT,422,Provo,UT
-84043,46001,American Fork,UT,422,Provo,UT
-84044,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84045,46023,Payson,UT,422,Provo,UT
-84046,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84047,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84049,46025,Provo,UT,422,Provo,UT
-84050,46020,Ogden,UT,421,Ogden,UT
-84051,46027,Roosevelt,UT,423,Salt Lake City,UT
-84052,46027,Roosevelt,UT,423,Salt Lake City,UT
-84053,46027,Roosevelt,UT,423,Salt Lake City,UT
-84054,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84055,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84056,46011,Layton,UT,421,Ogden,UT
-84057,46025,Provo,UT,422,Provo,UT
-84058,46025,Provo,UT,422,Provo,UT
-84059,46025,Provo,UT,422,Provo,UT
-84060,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84061,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84062,46001,American Fork,UT,422,Provo,UT
-84063,46033,Vernal,UT,423,Salt Lake City,UT
-84064,53007,Evanston,WY,423,Salt Lake City,UT
-84065,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84066,46027,Roosevelt,UT,423,Salt Lake City,UT
-84067,46020,Ogden,UT,421,Ogden,UT
-84068,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84069,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84070,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84071,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84072,46027,Roosevelt,UT,423,Salt Lake City,UT
-84073,46027,Roosevelt,UT,423,Salt Lake City,UT
-84074,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84075,46011,Layton,UT,421,Ogden,UT
-84076,46027,Roosevelt,UT,423,Salt Lake City,UT
-84078,46033,Vernal,UT,423,Salt Lake City,UT
-84079,46033,Vernal,UT,423,Salt Lake City,UT
-84080,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84081,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84082,46025,Provo,UT,422,Provo,UT
-84083,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84084,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84085,46027,Roosevelt,UT,423,Salt Lake City,UT
-84086,53007,Evanston,WY,423,Salt Lake City,UT
-84087,46003,Bountiful,UT,423,Salt Lake City,UT
-84088,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84089,46011,Layton,UT,421,Ogden,UT
-84090,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84091,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84092,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84093,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84094,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84095,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84096,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84097,46025,Provo,UT,422,Provo,UT
-84098,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84101,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84102,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84103,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84104,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84105,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84106,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84107,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84108,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84109,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84110,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84111,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84112,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84113,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84114,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84115,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84116,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84117,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84118,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84119,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84120,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84121,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84122,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84123,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84124,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84125,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84126,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84127,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84128,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84129,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84130,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84131,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84132,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84133,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84134,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84138,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84139,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84141,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84143,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84145,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84147,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84148,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84150,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84151,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84152,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84157,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84158,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84165,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84170,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84171,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84180,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84184,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84190,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84199,46028,Salt Lake City,UT,423,Salt Lake City,UT
-84201,46020,Ogden,UT,421,Ogden,UT
-84244,46020,Ogden,UT,421,Ogden,UT
-84301,46004,Brigham City,UT,421,Ogden,UT
-84302,46004,Brigham City,UT,421,Ogden,UT
-84304,46012,Logan,UT,423,Salt Lake City,UT
-84305,46012,Logan,UT,423,Salt Lake City,UT
-84306,46012,Logan,UT,423,Salt Lake City,UT
-84307,46004,Brigham City,UT,421,Ogden,UT
-84308,46012,Logan,UT,423,Salt Lake City,UT
-84309,46012,Logan,UT,423,Salt Lake City,UT
-84310,46020,Ogden,UT,421,Ogden,UT
-84311,46020,Ogden,UT,421,Ogden,UT
-84312,46012,Logan,UT,423,Salt Lake City,UT
-84313,46020,Ogden,UT,421,Ogden,UT
-84314,46004,Brigham City,UT,421,Ogden,UT
-84315,46020,Ogden,UT,421,Ogden,UT
-84316,46032,Tremonton,UT,421,Ogden,UT
-84317,46020,Ogden,UT,421,Ogden,UT
-84318,46012,Logan,UT,423,Salt Lake City,UT
-84319,46012,Logan,UT,423,Salt Lake City,UT
-84320,46012,Logan,UT,423,Salt Lake City,UT
-84321,46012,Logan,UT,423,Salt Lake City,UT
-84322,46012,Logan,UT,423,Salt Lake City,UT
-84323,46012,Logan,UT,423,Salt Lake City,UT
-84324,46004,Brigham City,UT,421,Ogden,UT
-84325,46012,Logan,UT,423,Salt Lake City,UT
-84326,46012,Logan,UT,423,Salt Lake City,UT
-84327,46012,Logan,UT,423,Salt Lake City,UT
-84328,46012,Logan,UT,423,Salt Lake City,UT
-84329,46020,Ogden,UT,421,Ogden,UT
-84330,46032,Tremonton,UT,421,Ogden,UT
-84331,46032,Tremonton,UT,421,Ogden,UT
-84332,46012,Logan,UT,423,Salt Lake City,UT
-84333,46012,Logan,UT,423,Salt Lake City,UT
-84334,46012,Logan,UT,423,Salt Lake City,UT
-84335,46012,Logan,UT,423,Salt Lake City,UT
-84336,46032,Tremonton,UT,421,Ogden,UT
-84337,46032,Tremonton,UT,421,Ogden,UT
-84338,46012,Logan,UT,423,Salt Lake City,UT
-84339,46012,Logan,UT,423,Salt Lake City,UT
-84340,46004,Brigham City,UT,421,Ogden,UT
-84341,46012,Logan,UT,423,Salt Lake City,UT
-84401,46020,Ogden,UT,421,Ogden,UT
-84402,46020,Ogden,UT,421,Ogden,UT
-84403,46020,Ogden,UT,421,Ogden,UT
-84404,46020,Ogden,UT,421,Ogden,UT
-84405,46020,Ogden,UT,421,Ogden,UT
-84407,46020,Ogden,UT,421,Ogden,UT
-84408,46020,Ogden,UT,421,Ogden,UT
-84409,46020,Ogden,UT,421,Ogden,UT
-84412,46020,Ogden,UT,421,Ogden,UT
-84414,46020,Ogden,UT,421,Ogden,UT
-84415,46020,Ogden,UT,421,Ogden,UT
-84501,46024,Price,UT,423,Salt Lake City,UT
-84510,6012,Cortez,CO,293,Albuquerque,NM
-84511,46015,Monticello,UT,423,Salt Lake City,UT
-84512,46015,Monticello,UT,423,Salt Lake City,UT
-84513,46024,Price,UT,423,Salt Lake City,UT
-84515,6026,Grand Junction,CO,105,Grand Junction,CO
-84516,46024,Price,UT,423,Salt Lake City,UT
-84518,46024,Price,UT,423,Salt Lake City,UT
-84520,46024,Price,UT,423,Salt Lake City,UT
-84521,46024,Price,UT,423,Salt Lake City,UT
-84522,46024,Price,UT,423,Salt Lake City,UT
-84523,46024,Price,UT,423,Salt Lake City,UT
-84525,46024,Price,UT,423,Salt Lake City,UT
-84526,46024,Price,UT,423,Salt Lake City,UT
-84528,46024,Price,UT,423,Salt Lake City,UT
-84529,46024,Price,UT,423,Salt Lake City,UT
-84530,46015,Monticello,UT,423,Salt Lake City,UT
-84531,46015,Monticello,UT,423,Salt Lake City,UT
-84532,46014,Moab,UT,423,Salt Lake City,UT
-84533,46015,Monticello,UT,423,Salt Lake City,UT
-84534,6012,Cortez,CO,293,Albuquerque,NM
-84535,46015,Monticello,UT,423,Salt Lake City,UT
-84536,46016,Monument Valley,UT,423,Salt Lake City,UT
-84537,46024,Price,UT,423,Salt Lake City,UT
-84539,46024,Price,UT,423,Salt Lake City,UT
-84540,6026,Grand Junction,CO,105,Grand Junction,CO
-84542,46024,Price,UT,423,Salt Lake City,UT
-84601,46025,Provo,UT,422,Provo,UT
-84602,46025,Provo,UT,422,Provo,UT
-84603,46025,Provo,UT,422,Provo,UT
-84604,46025,Provo,UT,422,Provo,UT
-84605,46025,Provo,UT,422,Provo,UT
-84606,46025,Provo,UT,422,Provo,UT
-84620,46008,Gunnison,UT,422,Provo,UT
-84621,46008,Gunnison,UT,422,Provo,UT
-84622,46008,Gunnison,UT,422,Provo,UT
-84623,46017,Mount Pleasant,UT,422,Provo,UT
-84624,46006,Delta,UT,422,Provo,UT
-84626,46023,Payson,UT,422,Provo,UT
-84627,46017,Mount Pleasant,UT,422,Provo,UT
-84628,46023,Payson,UT,422,Provo,UT
-84629,46017,Mount Pleasant,UT,422,Provo,UT
-84630,46008,Gunnison,UT,422,Provo,UT
-84631,46007,Fillmore,UT,422,Provo,UT
-84632,46017,Mount Pleasant,UT,422,Provo,UT
-84633,46023,Payson,UT,422,Provo,UT
-84634,46008,Gunnison,UT,422,Provo,UT
-84635,46006,Delta,UT,422,Provo,UT
-84636,46007,Fillmore,UT,422,Provo,UT
-84637,46007,Fillmore,UT,422,Provo,UT
-84638,46006,Delta,UT,422,Provo,UT
-84639,46019,Nephi,UT,422,Provo,UT
-84640,46006,Delta,UT,422,Provo,UT
-84642,46008,Gunnison,UT,422,Provo,UT
-84643,46008,Gunnison,UT,422,Provo,UT
-84644,46007,Fillmore,UT,422,Provo,UT
-84645,46019,Nephi,UT,422,Provo,UT
-84646,46017,Mount Pleasant,UT,422,Provo,UT
-84647,46017,Mount Pleasant,UT,422,Provo,UT
-84648,46019,Nephi,UT,422,Provo,UT
-84649,46006,Delta,UT,422,Provo,UT
-84651,46023,Payson,UT,422,Provo,UT
-84652,46008,Gunnison,UT,422,Provo,UT
-84653,46023,Payson,UT,422,Provo,UT
-84654,46008,Gunnison,UT,422,Provo,UT
-84655,46023,Payson,UT,422,Provo,UT
-84656,46007,Fillmore,UT,422,Provo,UT
-84657,46026,Richfield,UT,423,Salt Lake City,UT
-84660,46023,Payson,UT,422,Provo,UT
-84662,46017,Mount Pleasant,UT,422,Provo,UT
-84663,46025,Provo,UT,422,Provo,UT
-84664,46025,Provo,UT,422,Provo,UT
-84665,46008,Gunnison,UT,422,Provo,UT
-84667,46017,Mount Pleasant,UT,422,Provo,UT
-84701,46026,Richfield,UT,423,Salt Lake City,UT
-84710,46030,St. George,UT,423,Salt Lake City,UT
-84711,46026,Richfield,UT,423,Salt Lake City,UT
-84712,46022,Panguitch,UT,423,Salt Lake City,UT
-84713,46002,Beaver,UT,422,Provo,UT
-84714,46030,St. George,UT,423,Salt Lake City,UT
-84715,46026,Richfield,UT,423,Salt Lake City,UT
-84716,46026,Richfield,UT,423,Salt Lake City,UT
-84718,46022,Panguitch,UT,423,Salt Lake City,UT
-84719,46030,St. George,UT,423,Salt Lake City,UT
-84720,46005,Cedar City,UT,423,Salt Lake City,UT
-84721,46005,Cedar City,UT,423,Salt Lake City,UT
-84722,46030,St. George,UT,423,Salt Lake City,UT
-84723,46022,Panguitch,UT,423,Salt Lake City,UT
-84724,46026,Richfield,UT,423,Salt Lake City,UT
-84725,46030,St. George,UT,423,Salt Lake City,UT
-84726,46022,Panguitch,UT,423,Salt Lake City,UT
-84728,46006,Delta,UT,422,Provo,UT
-84729,46030,St. George,UT,423,Salt Lake City,UT
-84730,46026,Richfield,UT,423,Salt Lake City,UT
-84731,46002,Beaver,UT,422,Provo,UT
-84732,46022,Panguitch,UT,423,Salt Lake City,UT
-84733,46030,St. George,UT,423,Salt Lake City,UT
-84734,46024,Price,UT,423,Salt Lake City,UT
-84735,46022,Panguitch,UT,423,Salt Lake City,UT
-84736,46022,Panguitch,UT,423,Salt Lake City,UT
-84737,46030,St. George,UT,423,Salt Lake City,UT
-84738,46030,St. George,UT,423,Salt Lake City,UT
-84739,46026,Richfield,UT,423,Salt Lake City,UT
-84740,46022,Panguitch,UT,423,Salt Lake City,UT
-84741,46010,Kanab,UT,423,Salt Lake City,UT
-84742,46005,Cedar City,UT,423,Salt Lake City,UT
-84743,46022,Panguitch,UT,423,Salt Lake City,UT
-84744,46026,Richfield,UT,423,Salt Lake City,UT
-84745,46030,St. George,UT,423,Salt Lake City,UT
-84746,46030,St. George,UT,423,Salt Lake City,UT
-84747,46026,Richfield,UT,423,Salt Lake City,UT
-84749,46026,Richfield,UT,423,Salt Lake City,UT
-84750,46026,Richfield,UT,423,Salt Lake City,UT
-84751,46013,Milford,UT,423,Salt Lake City,UT
-84752,46013,Milford,UT,423,Salt Lake City,UT
-84753,46030,St. George,UT,423,Salt Lake City,UT
-84754,46026,Richfield,UT,423,Salt Lake City,UT
-84755,46010,Kanab,UT,423,Salt Lake City,UT
-84756,46030,St. George,UT,423,Salt Lake City,UT
-84757,46030,St. George,UT,423,Salt Lake City,UT
-84758,46010,Kanab,UT,423,Salt Lake City,UT
-84759,46022,Panguitch,UT,423,Salt Lake City,UT
-84760,46005,Cedar City,UT,423,Salt Lake City,UT
-84761,46005,Cedar City,UT,423,Salt Lake City,UT
-84762,46030,St. George,UT,423,Salt Lake City,UT
-84763,46030,St. George,UT,423,Salt Lake City,UT
-84764,46022,Panguitch,UT,423,Salt Lake City,UT
-84765,46030,St. George,UT,423,Salt Lake City,UT
-84766,46026,Richfield,UT,423,Salt Lake City,UT
-84767,46030,St. George,UT,423,Salt Lake City,UT
-84770,46030,St. George,UT,423,Salt Lake City,UT
-84771,46030,St. George,UT,423,Salt Lake City,UT
-84772,46030,St. George,UT,423,Salt Lake City,UT
-84773,46026,Richfield,UT,423,Salt Lake City,UT
-84774,46030,St. George,UT,423,Salt Lake City,UT
-84775,46026,Richfield,UT,423,Salt Lake City,UT
-84776,46022,Panguitch,UT,423,Salt Lake City,UT
-84779,46030,St. George,UT,423,Salt Lake City,UT
-84780,46030,St. George,UT,423,Salt Lake City,UT
-84781,46030,St. George,UT,423,Salt Lake City,UT
-84782,46030,St. George,UT,423,Salt Lake City,UT
-84783,46030,St. George,UT,423,Salt Lake City,UT
-84784,46030,St. George,UT,423,Salt Lake City,UT
-84790,46030,St. George,UT,423,Salt Lake City,UT
-84791,46030,St. George,UT,423,Salt Lake City,UT
-85001,3022,Phoenix,AZ,12,Phoenix,AZ
-85002,3022,Phoenix,AZ,12,Phoenix,AZ
-85003,3022,Phoenix,AZ,12,Phoenix,AZ
-85004,3022,Phoenix,AZ,12,Phoenix,AZ
-85005,3022,Phoenix,AZ,12,Phoenix,AZ
-85006,3022,Phoenix,AZ,12,Phoenix,AZ
-85007,3022,Phoenix,AZ,12,Phoenix,AZ
-85008,3022,Phoenix,AZ,12,Phoenix,AZ
-85009,3022,Phoenix,AZ,12,Phoenix,AZ
-85010,3022,Phoenix,AZ,12,Phoenix,AZ
-85011,3022,Phoenix,AZ,12,Phoenix,AZ
-85012,3022,Phoenix,AZ,12,Phoenix,AZ
-85013,3022,Phoenix,AZ,12,Phoenix,AZ
-85014,3022,Phoenix,AZ,12,Phoenix,AZ
-85015,3022,Phoenix,AZ,12,Phoenix,AZ
-85016,3022,Phoenix,AZ,12,Phoenix,AZ
-85017,3022,Phoenix,AZ,12,Phoenix,AZ
-85018,3022,Phoenix,AZ,12,Phoenix,AZ
-85019,3022,Phoenix,AZ,12,Phoenix,AZ
-85020,3022,Phoenix,AZ,12,Phoenix,AZ
-85021,3022,Phoenix,AZ,12,Phoenix,AZ
-85022,3022,Phoenix,AZ,12,Phoenix,AZ
-85023,3022,Phoenix,AZ,12,Phoenix,AZ
-85024,3022,Phoenix,AZ,12,Phoenix,AZ
-85026,3022,Phoenix,AZ,12,Phoenix,AZ
-85027,3022,Phoenix,AZ,12,Phoenix,AZ
-85028,3022,Phoenix,AZ,12,Phoenix,AZ
-85029,3022,Phoenix,AZ,12,Phoenix,AZ
-85030,3022,Phoenix,AZ,12,Phoenix,AZ
-85031,3022,Phoenix,AZ,12,Phoenix,AZ
-85032,3022,Phoenix,AZ,12,Phoenix,AZ
-85033,3022,Phoenix,AZ,12,Phoenix,AZ
-85034,3022,Phoenix,AZ,12,Phoenix,AZ
-85035,3022,Phoenix,AZ,12,Phoenix,AZ
-85036,3022,Phoenix,AZ,12,Phoenix,AZ
-85037,3022,Phoenix,AZ,12,Phoenix,AZ
-85038,3022,Phoenix,AZ,12,Phoenix,AZ
-85039,3022,Phoenix,AZ,12,Phoenix,AZ
-85040,3022,Phoenix,AZ,12,Phoenix,AZ
-85041,3022,Phoenix,AZ,12,Phoenix,AZ
-85042,3022,Phoenix,AZ,12,Phoenix,AZ
-85043,3022,Phoenix,AZ,12,Phoenix,AZ
-85044,3016,Mesa,AZ,11,Mesa,AZ
-85045,3022,Phoenix,AZ,12,Phoenix,AZ
-85046,3022,Phoenix,AZ,12,Phoenix,AZ
-85048,3022,Phoenix,AZ,12,Phoenix,AZ
-85050,3022,Phoenix,AZ,12,Phoenix,AZ
-85051,3022,Phoenix,AZ,12,Phoenix,AZ
-85053,3022,Phoenix,AZ,12,Phoenix,AZ
-85054,3022,Phoenix,AZ,12,Phoenix,AZ
-85060,3022,Phoenix,AZ,12,Phoenix,AZ
-85061,3022,Phoenix,AZ,12,Phoenix,AZ
-85062,3022,Phoenix,AZ,12,Phoenix,AZ
-85063,3022,Phoenix,AZ,12,Phoenix,AZ
-85064,3022,Phoenix,AZ,12,Phoenix,AZ
-85065,3022,Phoenix,AZ,12,Phoenix,AZ
-85066,3022,Phoenix,AZ,12,Phoenix,AZ
-85067,3022,Phoenix,AZ,12,Phoenix,AZ
-85068,3022,Phoenix,AZ,12,Phoenix,AZ
-85069,3022,Phoenix,AZ,12,Phoenix,AZ
-85070,3022,Phoenix,AZ,12,Phoenix,AZ
-85071,3022,Phoenix,AZ,12,Phoenix,AZ
-85072,3022,Phoenix,AZ,12,Phoenix,AZ
-85073,3022,Phoenix,AZ,12,Phoenix,AZ
-85074,3022,Phoenix,AZ,12,Phoenix,AZ
-85075,3022,Phoenix,AZ,12,Phoenix,AZ
-85076,3016,Mesa,AZ,11,Mesa,AZ
-85078,3022,Phoenix,AZ,12,Phoenix,AZ
-85079,3022,Phoenix,AZ,12,Phoenix,AZ
-85080,3022,Phoenix,AZ,12,Phoenix,AZ
-85082,3022,Phoenix,AZ,12,Phoenix,AZ
-85083,3022,Phoenix,AZ,12,Phoenix,AZ
-85085,3022,Phoenix,AZ,12,Phoenix,AZ
-85086,3022,Phoenix,AZ,12,Phoenix,AZ
-85087,3022,Phoenix,AZ,12,Phoenix,AZ
-85117,3016,Mesa,AZ,11,Mesa,AZ
-85118,3016,Mesa,AZ,11,Mesa,AZ
-85119,3016,Mesa,AZ,11,Mesa,AZ
-85120,3016,Mesa,AZ,11,Mesa,AZ
-85121,3005,Chandler,AZ,11,Mesa,AZ
-85122,3004,Casa Grande,AZ,12,Phoenix,AZ
-85123,3004,Casa Grande,AZ,12,Phoenix,AZ
-85127,3005,Chandler,AZ,11,Mesa,AZ
-85128,3004,Casa Grande,AZ,12,Phoenix,AZ
-85130,3004,Casa Grande,AZ,12,Phoenix,AZ
-85131,3004,Casa Grande,AZ,12,Phoenix,AZ
-85132,3009,Florence,AZ,11,Mesa,AZ
-85135,3032,Tucson,AZ,15,Tucson,AZ
-85137,3032,Tucson,AZ,15,Tucson,AZ
-85138,3004,Casa Grande,AZ,12,Phoenix,AZ
-85139,3004,Casa Grande,AZ,12,Phoenix,AZ
-85140,3016,Mesa,AZ,11,Mesa,AZ
-85141,3009,Florence,AZ,11,Mesa,AZ
-85142,3016,Mesa,AZ,11,Mesa,AZ
-85143,3016,Mesa,AZ,11,Mesa,AZ
-85145,3004,Casa Grande,AZ,12,Phoenix,AZ
-85147,3005,Chandler,AZ,11,Mesa,AZ
-85172,3004,Casa Grande,AZ,12,Phoenix,AZ
-85173,3016,Mesa,AZ,11,Mesa,AZ
-85178,3016,Mesa,AZ,11,Mesa,AZ
-85190,3016,Mesa,AZ,11,Mesa,AZ
-85191,3009,Florence,AZ,11,Mesa,AZ
-85192,3032,Tucson,AZ,15,Tucson,AZ
-85193,3004,Casa Grande,AZ,12,Phoenix,AZ
-85194,3004,Casa Grande,AZ,12,Phoenix,AZ
-85201,3016,Mesa,AZ,11,Mesa,AZ
-85202,3016,Mesa,AZ,11,Mesa,AZ
-85203,3016,Mesa,AZ,11,Mesa,AZ
-85204,3016,Mesa,AZ,11,Mesa,AZ
-85205,3016,Mesa,AZ,11,Mesa,AZ
-85206,3016,Mesa,AZ,11,Mesa,AZ
-85207,3016,Mesa,AZ,11,Mesa,AZ
-85208,3016,Mesa,AZ,11,Mesa,AZ
-85209,3016,Mesa,AZ,11,Mesa,AZ
-85210,3016,Mesa,AZ,11,Mesa,AZ
-85211,3016,Mesa,AZ,11,Mesa,AZ
-85212,3016,Mesa,AZ,11,Mesa,AZ
-85213,3016,Mesa,AZ,11,Mesa,AZ
-85214,3016,Mesa,AZ,11,Mesa,AZ
-85215,3016,Mesa,AZ,11,Mesa,AZ
-85216,3016,Mesa,AZ,11,Mesa,AZ
-85224,3005,Chandler,AZ,11,Mesa,AZ
-85225,3005,Chandler,AZ,11,Mesa,AZ
-85226,3016,Mesa,AZ,11,Mesa,AZ
-85233,3016,Mesa,AZ,11,Mesa,AZ
-85234,3016,Mesa,AZ,11,Mesa,AZ
-85236,3016,Mesa,AZ,11,Mesa,AZ
-85244,3005,Chandler,AZ,11,Mesa,AZ
-85246,3005,Chandler,AZ,11,Mesa,AZ
-85248,3005,Chandler,AZ,11,Mesa,AZ
-85249,3005,Chandler,AZ,11,Mesa,AZ
-85250,3025,Scottsdale,AZ,12,Phoenix,AZ
-85251,3025,Scottsdale,AZ,12,Phoenix,AZ
-85252,3025,Scottsdale,AZ,12,Phoenix,AZ
-85253,3025,Scottsdale,AZ,12,Phoenix,AZ
-85254,3022,Phoenix,AZ,12,Phoenix,AZ
-85255,3025,Scottsdale,AZ,12,Phoenix,AZ
-85256,3025,Scottsdale,AZ,12,Phoenix,AZ
-85257,3025,Scottsdale,AZ,12,Phoenix,AZ
-85258,3025,Scottsdale,AZ,12,Phoenix,AZ
-85259,3025,Scottsdale,AZ,12,Phoenix,AZ
-85260,3025,Scottsdale,AZ,12,Phoenix,AZ
-85261,3025,Scottsdale,AZ,12,Phoenix,AZ
-85262,3025,Scottsdale,AZ,12,Phoenix,AZ
-85263,3025,Scottsdale,AZ,12,Phoenix,AZ
-85264,3025,Scottsdale,AZ,12,Phoenix,AZ
-85266,3022,Phoenix,AZ,12,Phoenix,AZ
-85267,3025,Scottsdale,AZ,12,Phoenix,AZ
-85268,3025,Scottsdale,AZ,12,Phoenix,AZ
-85269,3025,Scottsdale,AZ,12,Phoenix,AZ
-85271,3025,Scottsdale,AZ,12,Phoenix,AZ
-85274,3016,Mesa,AZ,11,Mesa,AZ
-85275,3016,Mesa,AZ,11,Mesa,AZ
-85277,3016,Mesa,AZ,11,Mesa,AZ
-85280,3016,Mesa,AZ,11,Mesa,AZ
-85281,3016,Mesa,AZ,11,Mesa,AZ
-85282,3016,Mesa,AZ,11,Mesa,AZ
-85283,3016,Mesa,AZ,11,Mesa,AZ
-85284,3016,Mesa,AZ,11,Mesa,AZ
-85285,3016,Mesa,AZ,11,Mesa,AZ
-85286,3005,Chandler,AZ,11,Mesa,AZ
-85287,3016,Mesa,AZ,11,Mesa,AZ
-85295,3016,Mesa,AZ,11,Mesa,AZ
-85296,3016,Mesa,AZ,11,Mesa,AZ
-85297,3016,Mesa,AZ,11,Mesa,AZ
-85298,3016,Mesa,AZ,11,Mesa,AZ
-85299,3016,Mesa,AZ,11,Mesa,AZ
-85301,3022,Phoenix,AZ,12,Phoenix,AZ
-85302,3022,Phoenix,AZ,12,Phoenix,AZ
-85303,3022,Phoenix,AZ,12,Phoenix,AZ
-85304,3022,Phoenix,AZ,12,Phoenix,AZ
-85305,3022,Phoenix,AZ,12,Phoenix,AZ
-85306,3022,Phoenix,AZ,12,Phoenix,AZ
-85307,3022,Phoenix,AZ,12,Phoenix,AZ
-85308,3022,Phoenix,AZ,12,Phoenix,AZ
-85309,3022,Phoenix,AZ,12,Phoenix,AZ
-85310,3022,Phoenix,AZ,12,Phoenix,AZ
-85311,3022,Phoenix,AZ,12,Phoenix,AZ
-85312,3022,Phoenix,AZ,12,Phoenix,AZ
-85318,3022,Phoenix,AZ,12,Phoenix,AZ
-85320,3033,Wickenburg,AZ,14,Sun City,AZ
-85321,3022,Phoenix,AZ,12,Phoenix,AZ
-85322,3022,Phoenix,AZ,12,Phoenix,AZ
-85323,3022,Phoenix,AZ,12,Phoenix,AZ
-85324,3022,Phoenix,AZ,12,Phoenix,AZ
-85325,3020,Parker,AZ,12,Phoenix,AZ
-85326,3022,Phoenix,AZ,12,Phoenix,AZ
-85327,3022,Phoenix,AZ,12,Phoenix,AZ
-85328,5023,Blythe,CA,12,Phoenix,AZ
-85329,3022,Phoenix,AZ,12,Phoenix,AZ
-85331,3022,Phoenix,AZ,12,Phoenix,AZ
-85332,3033,Wickenburg,AZ,14,Sun City,AZ
-85333,3037,Yuma,AZ,12,Phoenix,AZ
-85334,5023,Blythe,CA,12,Phoenix,AZ
-85335,3022,Phoenix,AZ,12,Phoenix,AZ
-85336,3037,Yuma,AZ,12,Phoenix,AZ
-85337,3022,Phoenix,AZ,12,Phoenix,AZ
-85338,3022,Phoenix,AZ,12,Phoenix,AZ
-85339,3022,Phoenix,AZ,12,Phoenix,AZ
-85340,3022,Phoenix,AZ,12,Phoenix,AZ
-85341,3032,Tucson,AZ,15,Tucson,AZ
-85342,3029,Sun City,AZ,14,Sun City,AZ
-85343,3022,Phoenix,AZ,12,Phoenix,AZ
-85344,3020,Parker,AZ,12,Phoenix,AZ
-85345,3029,Sun City,AZ,14,Sun City,AZ
-85346,3020,Parker,AZ,12,Phoenix,AZ
-85347,3037,Yuma,AZ,12,Phoenix,AZ
-85348,3020,Parker,AZ,12,Phoenix,AZ
-85349,3037,Yuma,AZ,12,Phoenix,AZ
-85350,3037,Yuma,AZ,12,Phoenix,AZ
-85351,3029,Sun City,AZ,14,Sun City,AZ
-85352,3037,Yuma,AZ,12,Phoenix,AZ
-85353,3022,Phoenix,AZ,12,Phoenix,AZ
-85354,3022,Phoenix,AZ,12,Phoenix,AZ
-85355,3022,Phoenix,AZ,12,Phoenix,AZ
-85356,3037,Yuma,AZ,12,Phoenix,AZ
-85357,3020,Parker,AZ,12,Phoenix,AZ
-85358,3033,Wickenburg,AZ,14,Sun City,AZ
-85359,3020,Parker,AZ,12,Phoenix,AZ
-85360,3015,Lake Havasu City,AZ,12,Phoenix,AZ
-85361,3029,Sun City,AZ,14,Sun City,AZ
-85362,3033,Wickenburg,AZ,14,Sun City,AZ
-85363,3029,Sun City,AZ,14,Sun City,AZ
-85364,3037,Yuma,AZ,12,Phoenix,AZ
-85365,3037,Yuma,AZ,12,Phoenix,AZ
-85366,3037,Yuma,AZ,12,Phoenix,AZ
-85367,3037,Yuma,AZ,12,Phoenix,AZ
-85369,3037,Yuma,AZ,12,Phoenix,AZ
-85371,3020,Parker,AZ,12,Phoenix,AZ
-85372,3029,Sun City,AZ,14,Sun City,AZ
-85373,3029,Sun City,AZ,14,Sun City,AZ
-85374,3029,Sun City,AZ,14,Sun City,AZ
-85375,3029,Sun City,AZ,14,Sun City,AZ
-85376,3029,Sun City,AZ,14,Sun City,AZ
-85377,3022,Phoenix,AZ,12,Phoenix,AZ
-85378,3029,Sun City,AZ,14,Sun City,AZ
-85379,3022,Phoenix,AZ,12,Phoenix,AZ
-85380,3029,Sun City,AZ,14,Sun City,AZ
-85381,3029,Sun City,AZ,14,Sun City,AZ
-85382,3029,Sun City,AZ,14,Sun City,AZ
-85383,3022,Phoenix,AZ,12,Phoenix,AZ
-85385,3029,Sun City,AZ,14,Sun City,AZ
-85387,3029,Sun City,AZ,14,Sun City,AZ
-85388,3022,Phoenix,AZ,12,Phoenix,AZ
-85390,3033,Wickenburg,AZ,14,Sun City,AZ
-85392,3022,Phoenix,AZ,12,Phoenix,AZ
-85395,3022,Phoenix,AZ,12,Phoenix,AZ
-85396,3022,Phoenix,AZ,12,Phoenix,AZ
-85501,3047,Claypool,AZ,12,Phoenix,AZ
-85502,3047,Claypool,AZ,12,Phoenix,AZ
-85530,3042,San Carlos,AZ,12,Phoenix,AZ
-85531,3024,Safford,AZ,15,Tucson,AZ
-85532,3047,Claypool,AZ,12,Phoenix,AZ
-85533,3032,Tucson,AZ,15,Tucson,AZ
-85534,3032,Tucson,AZ,15,Tucson,AZ
-85535,3024,Safford,AZ,15,Tucson,AZ
-85536,3024,Safford,AZ,15,Tucson,AZ
-85539,3047,Claypool,AZ,12,Phoenix,AZ
-85540,3032,Tucson,AZ,15,Tucson,AZ
-85541,3021,Payson,AZ,12,Phoenix,AZ
-85542,3042,San Carlos,AZ,12,Phoenix,AZ
-85543,3024,Safford,AZ,15,Tucson,AZ
-85544,3021,Payson,AZ,12,Phoenix,AZ
-85545,3047,Claypool,AZ,12,Phoenix,AZ
-85546,3024,Safford,AZ,15,Tucson,AZ
-85547,3021,Payson,AZ,12,Phoenix,AZ
-85548,3024,Safford,AZ,15,Tucson,AZ
-85550,3042,San Carlos,AZ,12,Phoenix,AZ
-85551,3024,Safford,AZ,15,Tucson,AZ
-85552,3024,Safford,AZ,15,Tucson,AZ
-85553,3021,Payson,AZ,12,Phoenix,AZ
-85554,3021,Payson,AZ,12,Phoenix,AZ
-85601,3032,Tucson,AZ,15,Tucson,AZ
-85602,3032,Tucson,AZ,15,Tucson,AZ
-85603,3002,Bisbee,AZ,15,Tucson,AZ
-85605,3032,Tucson,AZ,15,Tucson,AZ
-85606,3032,Tucson,AZ,15,Tucson,AZ
-85607,3007,Douglas,AZ,15,Tucson,AZ
-85608,3007,Douglas,AZ,15,Tucson,AZ
-85609,3032,Tucson,AZ,15,Tucson,AZ
-85610,3032,Tucson,AZ,15,Tucson,AZ
-85611,3032,Tucson,AZ,15,Tucson,AZ
-85613,3032,Tucson,AZ,15,Tucson,AZ
-85614,3032,Tucson,AZ,15,Tucson,AZ
-85615,3027,Sierra Vista,AZ,15,Tucson,AZ
-85616,3027,Sierra Vista,AZ,15,Tucson,AZ
-85617,3002,Bisbee,AZ,15,Tucson,AZ
-85618,3032,Tucson,AZ,15,Tucson,AZ
-85619,3032,Tucson,AZ,15,Tucson,AZ
-85620,3002,Bisbee,AZ,15,Tucson,AZ
-85621,3032,Tucson,AZ,15,Tucson,AZ
-85622,3032,Tucson,AZ,15,Tucson,AZ
-85623,3032,Tucson,AZ,15,Tucson,AZ
-85624,3032,Tucson,AZ,15,Tucson,AZ
-85625,3032,Tucson,AZ,15,Tucson,AZ
-85626,3007,Douglas,AZ,15,Tucson,AZ
-85627,3032,Tucson,AZ,15,Tucson,AZ
-85628,3032,Tucson,AZ,15,Tucson,AZ
-85629,3032,Tucson,AZ,15,Tucson,AZ
-85630,3032,Tucson,AZ,15,Tucson,AZ
-85631,3032,Tucson,AZ,15,Tucson,AZ
-85632,3032,Tucson,AZ,15,Tucson,AZ
-85633,3032,Tucson,AZ,15,Tucson,AZ
-85634,3032,Tucson,AZ,15,Tucson,AZ
-85635,3027,Sierra Vista,AZ,15,Tucson,AZ
-85636,3027,Sierra Vista,AZ,15,Tucson,AZ
-85637,3032,Tucson,AZ,15,Tucson,AZ
-85638,3027,Sierra Vista,AZ,15,Tucson,AZ
-85639,3032,Tucson,AZ,15,Tucson,AZ
-85640,3032,Tucson,AZ,15,Tucson,AZ
-85641,3032,Tucson,AZ,15,Tucson,AZ
-85643,3034,Willcox,AZ,15,Tucson,AZ
-85644,3034,Willcox,AZ,15,Tucson,AZ
-85645,3032,Tucson,AZ,15,Tucson,AZ
-85646,3032,Tucson,AZ,15,Tucson,AZ
-85648,3032,Tucson,AZ,15,Tucson,AZ
-85650,3027,Sierra Vista,AZ,15,Tucson,AZ
-85652,3032,Tucson,AZ,15,Tucson,AZ
-85653,3032,Tucson,AZ,15,Tucson,AZ
-85654,3032,Tucson,AZ,15,Tucson,AZ
-85655,3007,Douglas,AZ,15,Tucson,AZ
-85658,3032,Tucson,AZ,15,Tucson,AZ
-85670,3027,Sierra Vista,AZ,15,Tucson,AZ
-85671,3027,Sierra Vista,AZ,15,Tucson,AZ
-85701,3032,Tucson,AZ,15,Tucson,AZ
-85702,3032,Tucson,AZ,15,Tucson,AZ
-85703,3032,Tucson,AZ,15,Tucson,AZ
-85704,3032,Tucson,AZ,15,Tucson,AZ
-85705,3032,Tucson,AZ,15,Tucson,AZ
-85706,3032,Tucson,AZ,15,Tucson,AZ
-85707,3032,Tucson,AZ,15,Tucson,AZ
-85708,3032,Tucson,AZ,15,Tucson,AZ
-85709,3032,Tucson,AZ,15,Tucson,AZ
-85710,3032,Tucson,AZ,15,Tucson,AZ
-85711,3032,Tucson,AZ,15,Tucson,AZ
-85712,3032,Tucson,AZ,15,Tucson,AZ
-85713,3032,Tucson,AZ,15,Tucson,AZ
-85714,3032,Tucson,AZ,15,Tucson,AZ
-85715,3032,Tucson,AZ,15,Tucson,AZ
-85716,3032,Tucson,AZ,15,Tucson,AZ
-85717,3032,Tucson,AZ,15,Tucson,AZ
-85718,3032,Tucson,AZ,15,Tucson,AZ
-85719,3032,Tucson,AZ,15,Tucson,AZ
-85720,3032,Tucson,AZ,15,Tucson,AZ
-85721,3032,Tucson,AZ,15,Tucson,AZ
-85722,3032,Tucson,AZ,15,Tucson,AZ
-85723,3032,Tucson,AZ,15,Tucson,AZ
-85724,3032,Tucson,AZ,15,Tucson,AZ
-85725,3032,Tucson,AZ,15,Tucson,AZ
-85726,3032,Tucson,AZ,15,Tucson,AZ
-85728,3032,Tucson,AZ,15,Tucson,AZ
-85730,3032,Tucson,AZ,15,Tucson,AZ
-85731,3032,Tucson,AZ,15,Tucson,AZ
-85732,3032,Tucson,AZ,15,Tucson,AZ
-85733,3032,Tucson,AZ,15,Tucson,AZ
-85734,3032,Tucson,AZ,15,Tucson,AZ
-85735,3032,Tucson,AZ,15,Tucson,AZ
-85736,3032,Tucson,AZ,15,Tucson,AZ
-85737,3032,Tucson,AZ,15,Tucson,AZ
-85738,3032,Tucson,AZ,15,Tucson,AZ
-85739,3032,Tucson,AZ,15,Tucson,AZ
-85740,3032,Tucson,AZ,15,Tucson,AZ
-85741,3032,Tucson,AZ,15,Tucson,AZ
-85742,3032,Tucson,AZ,15,Tucson,AZ
-85743,3032,Tucson,AZ,15,Tucson,AZ
-85744,3032,Tucson,AZ,15,Tucson,AZ
-85745,3032,Tucson,AZ,15,Tucson,AZ
-85746,3032,Tucson,AZ,15,Tucson,AZ
-85747,3032,Tucson,AZ,15,Tucson,AZ
-85748,3032,Tucson,AZ,15,Tucson,AZ
-85749,3032,Tucson,AZ,15,Tucson,AZ
-85750,3032,Tucson,AZ,15,Tucson,AZ
-85751,3032,Tucson,AZ,15,Tucson,AZ
-85752,3032,Tucson,AZ,15,Tucson,AZ
-85754,3032,Tucson,AZ,15,Tucson,AZ
-85755,3032,Tucson,AZ,15,Tucson,AZ
-85756,3032,Tucson,AZ,15,Tucson,AZ
-85757,3032,Tucson,AZ,15,Tucson,AZ
-85775,3032,Tucson,AZ,15,Tucson,AZ
-85901,3026,Show Low,AZ,12,Phoenix,AZ
-85902,3026,Show Low,AZ,12,Phoenix,AZ
-85911,3026,Show Low,AZ,12,Phoenix,AZ
-85912,3026,Show Low,AZ,12,Phoenix,AZ
-85920,3028,Springerville,AZ,12,Phoenix,AZ
-85922,3032,Tucson,AZ,15,Tucson,AZ
-85923,3026,Show Low,AZ,12,Phoenix,AZ
-85924,3026,Show Low,AZ,12,Phoenix,AZ
-85925,3028,Springerville,AZ,12,Phoenix,AZ
-85926,3026,Show Low,AZ,12,Phoenix,AZ
-85927,3028,Springerville,AZ,12,Phoenix,AZ
-85928,3026,Show Low,AZ,12,Phoenix,AZ
-85929,3026,Show Low,AZ,12,Phoenix,AZ
-85930,3026,Show Low,AZ,12,Phoenix,AZ
-85931,3006,Cottonwood,AZ,12,Phoenix,AZ
-85932,3028,Springerville,AZ,12,Phoenix,AZ
-85933,3026,Show Low,AZ,12,Phoenix,AZ
-85934,3026,Show Low,AZ,12,Phoenix,AZ
-85935,3026,Show Low,AZ,12,Phoenix,AZ
-85936,3028,Springerville,AZ,12,Phoenix,AZ
-85937,3026,Show Low,AZ,12,Phoenix,AZ
-85938,3028,Springerville,AZ,12,Phoenix,AZ
-85939,3026,Show Low,AZ,12,Phoenix,AZ
-85940,3028,Springerville,AZ,12,Phoenix,AZ
-85941,3026,Show Low,AZ,12,Phoenix,AZ
-85942,3026,Show Low,AZ,12,Phoenix,AZ
-86001,3008,Flagstaff,AZ,12,Phoenix,AZ
-86002,3008,Flagstaff,AZ,12,Phoenix,AZ
-86003,3008,Flagstaff,AZ,12,Phoenix,AZ
-86004,3008,Flagstaff,AZ,12,Phoenix,AZ
-86005,3008,Flagstaff,AZ,12,Phoenix,AZ
-86011,3008,Flagstaff,AZ,12,Phoenix,AZ
-86015,3008,Flagstaff,AZ,12,Phoenix,AZ
-86016,3008,Flagstaff,AZ,12,Phoenix,AZ
-86017,3006,Cottonwood,AZ,12,Phoenix,AZ
-86018,3008,Flagstaff,AZ,12,Phoenix,AZ
-86020,3044,Tuba City,AZ,12,Phoenix,AZ
-86021,46030,St. George,UT,423,Salt Lake City,UT
-86022,46010,Kanab,UT,423,Salt Lake City,UT
-86023,3008,Flagstaff,AZ,12,Phoenix,AZ
-86024,3006,Cottonwood,AZ,12,Phoenix,AZ
-86025,3035,Winslow,AZ,12,Phoenix,AZ
-86028,3010,Ganado,AZ,293,Albuquerque,NM
-86029,3035,Winslow,AZ,12,Phoenix,AZ
-86030,3044,Tuba City,AZ,12,Phoenix,AZ
-86031,3035,Winslow,AZ,12,Phoenix,AZ
-86032,3035,Winslow,AZ,12,Phoenix,AZ
-86033,3044,Tuba City,AZ,12,Phoenix,AZ
-86034,3040,Keams Canyon,AZ,12,Phoenix,AZ
-86035,3035,Winslow,AZ,12,Phoenix,AZ
-86036,3019,Page,AZ,12,Phoenix,AZ
-86038,3008,Flagstaff,AZ,12,Phoenix,AZ
-86039,3044,Tuba City,AZ,12,Phoenix,AZ
-86040,3019,Page,AZ,12,Phoenix,AZ
-86042,3040,Keams Canyon,AZ,12,Phoenix,AZ
-86043,3040,Keams Canyon,AZ,12,Phoenix,AZ
-86044,3044,Tuba City,AZ,12,Phoenix,AZ
-86045,3044,Tuba City,AZ,12,Phoenix,AZ
-86046,3008,Flagstaff,AZ,12,Phoenix,AZ
-86047,3035,Winslow,AZ,12,Phoenix,AZ
-86052,46010,Kanab,UT,423,Salt Lake City,UT
-86053,3044,Tuba City,AZ,12,Phoenix,AZ
-86054,3044,Tuba City,AZ,12,Phoenix,AZ
-86301,3023,Prescott,AZ,12,Phoenix,AZ
-86302,3023,Prescott,AZ,12,Phoenix,AZ
-86303,3023,Prescott,AZ,12,Phoenix,AZ
-86304,3023,Prescott,AZ,12,Phoenix,AZ
-86305,3023,Prescott,AZ,12,Phoenix,AZ
-86312,3023,Prescott,AZ,12,Phoenix,AZ
-86313,3023,Prescott,AZ,12,Phoenix,AZ
-86314,3023,Prescott,AZ,12,Phoenix,AZ
-86315,3006,Cottonwood,AZ,12,Phoenix,AZ
-86320,3008,Flagstaff,AZ,12,Phoenix,AZ
-86321,3023,Prescott,AZ,12,Phoenix,AZ
-86322,3006,Cottonwood,AZ,12,Phoenix,AZ
-86323,3023,Prescott,AZ,12,Phoenix,AZ
-86324,3006,Cottonwood,AZ,12,Phoenix,AZ
-86325,3006,Cottonwood,AZ,12,Phoenix,AZ
-86326,3006,Cottonwood,AZ,12,Phoenix,AZ
-86327,3023,Prescott,AZ,12,Phoenix,AZ
-86329,3023,Prescott,AZ,12,Phoenix,AZ
-86331,3006,Cottonwood,AZ,12,Phoenix,AZ
-86332,3033,Wickenburg,AZ,14,Sun City,AZ
-86333,3023,Prescott,AZ,12,Phoenix,AZ
-86334,3023,Prescott,AZ,12,Phoenix,AZ
-86335,3006,Cottonwood,AZ,12,Phoenix,AZ
-86336,3006,Cottonwood,AZ,12,Phoenix,AZ
-86337,3008,Flagstaff,AZ,12,Phoenix,AZ
-86338,3023,Prescott,AZ,12,Phoenix,AZ
-86339,3006,Cottonwood,AZ,12,Phoenix,AZ
-86340,3006,Cottonwood,AZ,12,Phoenix,AZ
-86341,3006,Cottonwood,AZ,12,Phoenix,AZ
-86342,3006,Cottonwood,AZ,12,Phoenix,AZ
-86343,3022,Phoenix,AZ,12,Phoenix,AZ
-86351,3006,Cottonwood,AZ,12,Phoenix,AZ
-86401,3014,Kingman,AZ,12,Phoenix,AZ
-86402,3014,Kingman,AZ,12,Phoenix,AZ
-86403,3015,Lake Havasu City,AZ,12,Phoenix,AZ
-86404,3015,Lake Havasu City,AZ,12,Phoenix,AZ
-86405,3015,Lake Havasu City,AZ,12,Phoenix,AZ
-86406,3015,Lake Havasu City,AZ,12,Phoenix,AZ
-86409,3014,Kingman,AZ,12,Phoenix,AZ
-86411,3014,Kingman,AZ,12,Phoenix,AZ
-86412,3014,Kingman,AZ,12,Phoenix,AZ
-86413,3014,Kingman,AZ,12,Phoenix,AZ
-86426,3003,Bullhead City,AZ,279,Las Vegas,NV
-86427,3003,Bullhead City,AZ,279,Las Vegas,NV
-86429,3003,Bullhead City,AZ,279,Las Vegas,NV
-86430,3003,Bullhead City,AZ,279,Las Vegas,NV
-86431,3014,Kingman,AZ,12,Phoenix,AZ
-86432,46030,St. George,UT,423,Salt Lake City,UT
-86433,3003,Bullhead City,AZ,279,Las Vegas,NV
-86434,3014,Kingman,AZ,12,Phoenix,AZ
-86435,3014,Kingman,AZ,12,Phoenix,AZ
-86436,5152,Needles,CA,279,Las Vegas,NV
-86437,3014,Kingman,AZ,12,Phoenix,AZ
-86438,3003,Bullhead City,AZ,279,Las Vegas,NV
-86439,3003,Bullhead City,AZ,279,Las Vegas,NV
-86440,3003,Bullhead City,AZ,279,Las Vegas,NV
-86441,3014,Kingman,AZ,12,Phoenix,AZ
-86442,3003,Bullhead City,AZ,279,Las Vegas,NV
-86443,3014,Kingman,AZ,12,Phoenix,AZ
-86444,3014,Kingman,AZ,12,Phoenix,AZ
-86445,3014,Kingman,AZ,12,Phoenix,AZ
-86446,3003,Bullhead City,AZ,279,Las Vegas,NV
-86502,3010,Ganado,AZ,293,Albuquerque,NM
-86503,3038,Chinle,AZ,293,Albuquerque,NM
-86504,3010,Ganado,AZ,293,Albuquerque,NM
-86505,3010,Ganado,AZ,293,Albuquerque,NM
-86506,3010,Ganado,AZ,293,Albuquerque,NM
-86507,3038,Chinle,AZ,293,Albuquerque,NM
-86508,3010,Ganado,AZ,293,Albuquerque,NM
-86510,3038,Chinle,AZ,293,Albuquerque,NM
-86511,3010,Ganado,AZ,293,Albuquerque,NM
-86512,3010,Ganado,AZ,293,Albuquerque,NM
-86514,32033,Shiprock,NM,293,Albuquerque,NM
-86515,3010,Ganado,AZ,293,Albuquerque,NM
-86520,3038,Chinle,AZ,293,Albuquerque,NM
-86535,3044,Tuba City,AZ,12,Phoenix,AZ
-86538,3038,Chinle,AZ,293,Albuquerque,NM
-86540,3038,Chinle,AZ,293,Albuquerque,NM
-86544,32033,Shiprock,NM,293,Albuquerque,NM
-86545,32033,Shiprock,NM,293,Albuquerque,NM
-86547,3038,Chinle,AZ,293,Albuquerque,NM
-86556,3038,Chinle,AZ,293,Albuquerque,NM
-87001,32002,Albuquerque,NM,293,Albuquerque,NM
-87002,32002,Albuquerque,NM,293,Albuquerque,NM
-87004,32002,Albuquerque,NM,293,Albuquerque,NM
-87005,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87006,32002,Albuquerque,NM,293,Albuquerque,NM
-87007,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87008,32002,Albuquerque,NM,293,Albuquerque,NM
-87009,32002,Albuquerque,NM,293,Albuquerque,NM
-87010,32023,Santa Fe,NM,293,Albuquerque,NM
-87011,32026,Socorro,NM,293,Albuquerque,NM
-87012,32009,Espanola,NM,293,Albuquerque,NM
-87013,32002,Albuquerque,NM,293,Albuquerque,NM
-87014,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87015,32002,Albuquerque,NM,293,Albuquerque,NM
-87016,32002,Albuquerque,NM,293,Albuquerque,NM
-87017,32009,Espanola,NM,293,Albuquerque,NM
-87018,32002,Albuquerque,NM,293,Albuquerque,NM
-87020,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87021,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87022,32002,Albuquerque,NM,293,Albuquerque,NM
-87023,32002,Albuquerque,NM,293,Albuquerque,NM
-87024,32002,Albuquerque,NM,293,Albuquerque,NM
-87025,32002,Albuquerque,NM,293,Albuquerque,NM
-87026,32002,Albuquerque,NM,293,Albuquerque,NM
-87027,32002,Albuquerque,NM,293,Albuquerque,NM
-87028,32002,Albuquerque,NM,293,Albuquerque,NM
-87029,32002,Albuquerque,NM,293,Albuquerque,NM
-87031,32002,Albuquerque,NM,293,Albuquerque,NM
-87032,32002,Albuquerque,NM,293,Albuquerque,NM
-87034,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87035,32002,Albuquerque,NM,293,Albuquerque,NM
-87036,32002,Albuquerque,NM,293,Albuquerque,NM
-87037,32010,Farmington,NM,293,Albuquerque,NM
-87038,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87040,32002,Albuquerque,NM,293,Albuquerque,NM
-87041,32002,Albuquerque,NM,293,Albuquerque,NM
-87042,32002,Albuquerque,NM,293,Albuquerque,NM
-87043,32002,Albuquerque,NM,293,Albuquerque,NM
-87044,32002,Albuquerque,NM,293,Albuquerque,NM
-87045,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87046,32002,Albuquerque,NM,293,Albuquerque,NM
-87047,32002,Albuquerque,NM,293,Albuquerque,NM
-87048,32002,Albuquerque,NM,293,Albuquerque,NM
-87049,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87051,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87052,32023,Santa Fe,NM,293,Albuquerque,NM
-87053,32002,Albuquerque,NM,293,Albuquerque,NM
-87056,32002,Albuquerque,NM,293,Albuquerque,NM
-87059,32002,Albuquerque,NM,293,Albuquerque,NM
-87060,32002,Albuquerque,NM,293,Albuquerque,NM
-87061,32002,Albuquerque,NM,293,Albuquerque,NM
-87062,32002,Albuquerque,NM,293,Albuquerque,NM
-87063,32002,Albuquerque,NM,293,Albuquerque,NM
-87064,32009,Espanola,NM,293,Albuquerque,NM
-87068,32002,Albuquerque,NM,293,Albuquerque,NM
-87070,32002,Albuquerque,NM,293,Albuquerque,NM
-87072,32002,Albuquerque,NM,293,Albuquerque,NM
-87083,32002,Albuquerque,NM,293,Albuquerque,NM
-87101,32002,Albuquerque,NM,293,Albuquerque,NM
-87102,32002,Albuquerque,NM,293,Albuquerque,NM
-87103,32002,Albuquerque,NM,293,Albuquerque,NM
-87104,32002,Albuquerque,NM,293,Albuquerque,NM
-87105,32002,Albuquerque,NM,293,Albuquerque,NM
-87106,32002,Albuquerque,NM,293,Albuquerque,NM
-87107,32002,Albuquerque,NM,293,Albuquerque,NM
-87108,32002,Albuquerque,NM,293,Albuquerque,NM
-87109,32002,Albuquerque,NM,293,Albuquerque,NM
-87110,32002,Albuquerque,NM,293,Albuquerque,NM
-87111,32002,Albuquerque,NM,293,Albuquerque,NM
-87112,32002,Albuquerque,NM,293,Albuquerque,NM
-87113,32002,Albuquerque,NM,293,Albuquerque,NM
-87114,32002,Albuquerque,NM,293,Albuquerque,NM
-87115,32002,Albuquerque,NM,293,Albuquerque,NM
-87116,32002,Albuquerque,NM,293,Albuquerque,NM
-87117,32002,Albuquerque,NM,293,Albuquerque,NM
-87119,32002,Albuquerque,NM,293,Albuquerque,NM
-87120,32002,Albuquerque,NM,293,Albuquerque,NM
-87121,32002,Albuquerque,NM,293,Albuquerque,NM
-87122,32002,Albuquerque,NM,293,Albuquerque,NM
-87123,32002,Albuquerque,NM,293,Albuquerque,NM
-87124,32002,Albuquerque,NM,293,Albuquerque,NM
-87125,32002,Albuquerque,NM,293,Albuquerque,NM
-87131,32002,Albuquerque,NM,293,Albuquerque,NM
-87144,32002,Albuquerque,NM,293,Albuquerque,NM
-87151,32002,Albuquerque,NM,293,Albuquerque,NM
-87153,32002,Albuquerque,NM,293,Albuquerque,NM
-87154,32002,Albuquerque,NM,293,Albuquerque,NM
-87158,32002,Albuquerque,NM,293,Albuquerque,NM
-87174,32002,Albuquerque,NM,293,Albuquerque,NM
-87176,32002,Albuquerque,NM,293,Albuquerque,NM
-87181,32002,Albuquerque,NM,293,Albuquerque,NM
-87184,32002,Albuquerque,NM,293,Albuquerque,NM
-87185,32002,Albuquerque,NM,293,Albuquerque,NM
-87187,32002,Albuquerque,NM,293,Albuquerque,NM
-87190,32002,Albuquerque,NM,293,Albuquerque,NM
-87191,32002,Albuquerque,NM,293,Albuquerque,NM
-87192,32002,Albuquerque,NM,293,Albuquerque,NM
-87193,32002,Albuquerque,NM,293,Albuquerque,NM
-87194,32002,Albuquerque,NM,293,Albuquerque,NM
-87195,32002,Albuquerque,NM,293,Albuquerque,NM
-87196,32002,Albuquerque,NM,293,Albuquerque,NM
-87197,32002,Albuquerque,NM,293,Albuquerque,NM
-87198,32002,Albuquerque,NM,293,Albuquerque,NM
-87199,32002,Albuquerque,NM,293,Albuquerque,NM
-87301,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87302,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87305,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87310,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87311,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87312,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87313,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87315,32034,Zuni,NM,293,Albuquerque,NM
-87316,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87317,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87319,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87320,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87321,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87322,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87323,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87325,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87326,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87327,32034,Zuni,NM,293,Albuquerque,NM
-87328,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87347,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87357,32013,Grants/San Fidel,NM,293,Albuquerque,NM
-87364,32033,Shiprock,NM,293,Albuquerque,NM
-87365,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87375,32012,Gallup/Crownpoint,NM,293,Albuquerque,NM
-87401,32010,Farmington,NM,293,Albuquerque,NM
-87402,32010,Farmington,NM,293,Albuquerque,NM
-87410,32010,Farmington,NM,293,Albuquerque,NM
-87412,32010,Farmington,NM,293,Albuquerque,NM
-87413,32010,Farmington,NM,293,Albuquerque,NM
-87415,32010,Farmington,NM,293,Albuquerque,NM
-87416,32010,Farmington,NM,293,Albuquerque,NM
-87417,32010,Farmington,NM,293,Albuquerque,NM
-87418,32010,Farmington,NM,293,Albuquerque,NM
-87419,32010,Farmington,NM,293,Albuquerque,NM
-87420,32033,Shiprock,NM,293,Albuquerque,NM
-87421,32010,Farmington,NM,293,Albuquerque,NM
-87455,32033,Shiprock,NM,293,Albuquerque,NM
-87461,32033,Shiprock,NM,293,Albuquerque,NM
-87499,32010,Farmington,NM,293,Albuquerque,NM
-87501,32023,Santa Fe,NM,293,Albuquerque,NM
-87502,32023,Santa Fe,NM,293,Albuquerque,NM
-87503,32023,Santa Fe,NM,293,Albuquerque,NM
-87504,32023,Santa Fe,NM,293,Albuquerque,NM
-87505,32023,Santa Fe,NM,293,Albuquerque,NM
-87506,32023,Santa Fe,NM,293,Albuquerque,NM
-87507,32023,Santa Fe,NM,293,Albuquerque,NM
-87508,32023,Santa Fe,NM,293,Albuquerque,NM
-87509,32023,Santa Fe,NM,293,Albuquerque,NM
-87510,32009,Espanola,NM,293,Albuquerque,NM
-87511,32009,Espanola,NM,293,Albuquerque,NM
-87512,32027,Taos,NM,293,Albuquerque,NM
-87513,32027,Taos,NM,293,Albuquerque,NM
-87514,32027,Taos,NM,293,Albuquerque,NM
-87515,32009,Espanola,NM,293,Albuquerque,NM
-87516,32009,Espanola,NM,293,Albuquerque,NM
-87517,32009,Espanola,NM,293,Albuquerque,NM
-87518,32009,Espanola,NM,293,Albuquerque,NM
-87519,32027,Taos,NM,293,Albuquerque,NM
-87520,32009,Espanola,NM,293,Albuquerque,NM
-87521,32009,Espanola,NM,293,Albuquerque,NM
-87522,32023,Santa Fe,NM,293,Albuquerque,NM
-87523,32023,Santa Fe,NM,293,Albuquerque,NM
-87524,32027,Taos,NM,293,Albuquerque,NM
-87525,32027,Taos,NM,293,Albuquerque,NM
-87527,32009,Espanola,NM,293,Albuquerque,NM
-87528,32009,Espanola,NM,293,Albuquerque,NM
-87529,32027,Taos,NM,293,Albuquerque,NM
-87530,32009,Espanola,NM,293,Albuquerque,NM
-87531,32009,Espanola,NM,293,Albuquerque,NM
-87532,32009,Espanola,NM,293,Albuquerque,NM
-87533,32009,Espanola,NM,293,Albuquerque,NM
-87535,32023,Santa Fe,NM,293,Albuquerque,NM
-87537,32009,Espanola,NM,293,Albuquerque,NM
-87538,32016,Las Vegas,NM,293,Albuquerque,NM
-87539,32009,Espanola,NM,293,Albuquerque,NM
-87540,32023,Santa Fe,NM,293,Albuquerque,NM
-87543,32009,Espanola,NM,293,Albuquerque,NM
-87544,32017,Los Alamos,NM,293,Albuquerque,NM
-87545,32017,Los Alamos,NM,293,Albuquerque,NM
-87547,32017,Los Alamos,NM,293,Albuquerque,NM
-87548,32009,Espanola,NM,293,Albuquerque,NM
-87549,32009,Espanola,NM,293,Albuquerque,NM
-87551,32009,Espanola,NM,293,Albuquerque,NM
-87552,32023,Santa Fe,NM,293,Albuquerque,NM
-87553,32009,Espanola,NM,293,Albuquerque,NM
-87554,32009,Espanola,NM,293,Albuquerque,NM
-87556,32027,Taos,NM,293,Albuquerque,NM
-87557,32027,Taos,NM,293,Albuquerque,NM
-87558,32027,Taos,NM,293,Albuquerque,NM
-87560,32016,Las Vegas,NM,293,Albuquerque,NM
-87562,32023,Santa Fe,NM,293,Albuquerque,NM
-87564,32027,Taos,NM,293,Albuquerque,NM
-87565,32016,Las Vegas,NM,293,Albuquerque,NM
-87566,32009,Espanola,NM,293,Albuquerque,NM
-87567,32009,Espanola,NM,293,Albuquerque,NM
-87569,32016,Las Vegas,NM,293,Albuquerque,NM
-87571,32027,Taos,NM,293,Albuquerque,NM
-87573,32023,Santa Fe,NM,293,Albuquerque,NM
-87574,32023,Santa Fe,NM,293,Albuquerque,NM
-87575,32009,Espanola,NM,293,Albuquerque,NM
-87576,32009,Espanola,NM,293,Albuquerque,NM
-87577,32009,Espanola,NM,293,Albuquerque,NM
-87578,32023,Santa Fe,NM,293,Albuquerque,NM
-87579,32009,Espanola,NM,293,Albuquerque,NM
-87580,32027,Taos,NM,293,Albuquerque,NM
-87581,32009,Espanola,NM,293,Albuquerque,NM
-87582,32009,Espanola,NM,293,Albuquerque,NM
-87583,32016,Las Vegas,NM,293,Albuquerque,NM
-87592,32023,Santa Fe,NM,293,Albuquerque,NM
-87594,32023,Santa Fe,NM,293,Albuquerque,NM
-87654,32028,Truth or Consequences,NM,393,El Paso,TX
-87701,32016,Las Vegas,NM,293,Albuquerque,NM
-87710,32020,Raton,NM,293,Albuquerque,NM
-87711,32016,Las Vegas,NM,293,Albuquerque,NM
-87712,32016,Las Vegas,NM,293,Albuquerque,NM
-87713,32016,Las Vegas,NM,293,Albuquerque,NM
-87714,32020,Raton,NM,293,Albuquerque,NM
-87715,32016,Las Vegas,NM,293,Albuquerque,NM
-87718,32027,Taos,NM,293,Albuquerque,NM
-87722,32016,Las Vegas,NM,293,Albuquerque,NM
-87723,32016,Las Vegas,NM,293,Albuquerque,NM
-87724,32016,Las Vegas,NM,293,Albuquerque,NM
-87728,32020,Raton,NM,293,Albuquerque,NM
-87729,32020,Raton,NM,293,Albuquerque,NM
-87730,32020,Raton,NM,293,Albuquerque,NM
-87731,32016,Las Vegas,NM,293,Albuquerque,NM
-87732,32016,Las Vegas,NM,293,Albuquerque,NM
-87733,32029,Tucumcari,NM,383,Amarillo,TX
-87734,32016,Las Vegas,NM,293,Albuquerque,NM
-87735,32016,Las Vegas,NM,293,Albuquerque,NM
-87736,32016,Las Vegas,NM,293,Albuquerque,NM
-87740,32020,Raton,NM,293,Albuquerque,NM
-87742,32016,Las Vegas,NM,293,Albuquerque,NM
-87743,32016,Las Vegas,NM,293,Albuquerque,NM
-87745,32016,Las Vegas,NM,293,Albuquerque,NM
-87746,32016,Las Vegas,NM,293,Albuquerque,NM
-87747,32020,Raton,NM,293,Albuquerque,NM
-87749,32020,Raton,NM,293,Albuquerque,NM
-87750,32016,Las Vegas,NM,293,Albuquerque,NM
-87752,32016,Las Vegas,NM,293,Albuquerque,NM
-87753,32016,Las Vegas,NM,293,Albuquerque,NM
-87801,32026,Socorro,NM,293,Albuquerque,NM
-87820,32026,Socorro,NM,293,Albuquerque,NM
-87821,32026,Socorro,NM,293,Albuquerque,NM
-87823,32026,Socorro,NM,293,Albuquerque,NM
-87824,32025,Silver City,NM,293,Albuquerque,NM
-87825,32026,Socorro,NM,293,Albuquerque,NM
-87827,32026,Socorro,NM,293,Albuquerque,NM
-87828,32026,Socorro,NM,293,Albuquerque,NM
-87829,32026,Socorro,NM,293,Albuquerque,NM
-87830,32025,Silver City,NM,293,Albuquerque,NM
-87831,32026,Socorro,NM,293,Albuquerque,NM
-87832,32026,Socorro,NM,293,Albuquerque,NM
-87901,32028,Truth or Consequences,NM,393,El Paso,TX
-87930,32015,Las Cruces,NM,393,El Paso,TX
-87931,32028,Truth or Consequences,NM,393,El Paso,TX
-87933,32015,Las Cruces,NM,393,El Paso,TX
-87935,32028,Truth or Consequences,NM,393,El Paso,TX
-87936,32015,Las Cruces,NM,393,El Paso,TX
-87937,32015,Las Cruces,NM,393,El Paso,TX
-87939,32028,Truth or Consequences,NM,393,El Paso,TX
-87940,32015,Las Cruces,NM,393,El Paso,TX
-87941,32015,Las Cruces,NM,393,El Paso,TX
-87942,32028,Truth or Consequences,NM,393,El Paso,TX
-87943,32028,Truth or Consequences,NM,393,El Paso,TX
-88001,32015,Las Cruces,NM,393,El Paso,TX
-88002,32015,Las Cruces,NM,393,El Paso,TX
-88003,32015,Las Cruces,NM,393,El Paso,TX
-88004,32015,Las Cruces,NM,393,El Paso,TX
-88005,32015,Las Cruces,NM,393,El Paso,TX
-88006,32015,Las Cruces,NM,393,El Paso,TX
-88007,32015,Las Cruces,NM,393,El Paso,TX
-88008,45086,El Paso,TX,393,El Paso,TX
-88009,32025,Silver City,NM,293,Albuquerque,NM
-88011,32015,Las Cruces,NM,393,El Paso,TX
-88012,32015,Las Cruces,NM,393,El Paso,TX
-88013,32015,Las Cruces,NM,393,El Paso,TX
-88020,32025,Silver City,NM,293,Albuquerque,NM
-88021,45086,El Paso,TX,393,El Paso,TX
-88022,32025,Silver City,NM,293,Albuquerque,NM
-88023,32025,Silver City,NM,293,Albuquerque,NM
-88024,45086,El Paso,TX,393,El Paso,TX
-88025,32025,Silver City,NM,293,Albuquerque,NM
-88026,32025,Silver City,NM,293,Albuquerque,NM
-88027,45086,El Paso,TX,393,El Paso,TX
-88028,32025,Silver City,NM,293,Albuquerque,NM
-88029,32008,Deming,NM,393,El Paso,TX
-88030,32008,Deming,NM,393,El Paso,TX
-88031,32008,Deming,NM,393,El Paso,TX
-88032,32015,Las Cruces,NM,393,El Paso,TX
-88033,32015,Las Cruces,NM,393,El Paso,TX
-88034,32025,Silver City,NM,293,Albuquerque,NM
-88036,32025,Silver City,NM,293,Albuquerque,NM
-88038,32025,Silver City,NM,293,Albuquerque,NM
-88039,32025,Silver City,NM,293,Albuquerque,NM
-88040,32025,Silver City,NM,293,Albuquerque,NM
-88041,32025,Silver City,NM,293,Albuquerque,NM
-88042,32028,Truth or Consequences,NM,393,El Paso,TX
-88043,32025,Silver City,NM,293,Albuquerque,NM
-88044,45086,El Paso,TX,393,El Paso,TX
-88045,32025,Silver City,NM,293,Albuquerque,NM
-88046,32015,Las Cruces,NM,393,El Paso,TX
-88047,32015,Las Cruces,NM,393,El Paso,TX
-88048,32015,Las Cruces,NM,393,El Paso,TX
-88049,32025,Silver City,NM,293,Albuquerque,NM
-88051,32025,Silver City,NM,293,Albuquerque,NM
-88052,32015,Las Cruces,NM,393,El Paso,TX
-88053,32025,Silver City,NM,293,Albuquerque,NM
-88054,32015,Las Cruces,NM,393,El Paso,TX
-88055,32025,Silver City,NM,293,Albuquerque,NM
-88056,32025,Silver City,NM,293,Albuquerque,NM
-88058,45086,El Paso,TX,393,El Paso,TX
-88061,32025,Silver City,NM,293,Albuquerque,NM
-88062,32025,Silver City,NM,293,Albuquerque,NM
-88063,45086,El Paso,TX,393,El Paso,TX
-88065,32025,Silver City,NM,293,Albuquerque,NM
-88072,32015,Las Cruces,NM,393,El Paso,TX
-88081,45086,El Paso,TX,393,El Paso,TX
-88101,32007,Clovis,NM,400,Lubbock,TX
-88102,32007,Clovis,NM,400,Lubbock,TX
-88103,32007,Clovis,NM,400,Lubbock,TX
-88112,32007,Clovis,NM,400,Lubbock,TX
-88113,45168,Lubbock,TX,400,Lubbock,TX
-88114,45168,Lubbock,TX,400,Lubbock,TX
-88115,45168,Lubbock,TX,400,Lubbock,TX
-88116,45168,Lubbock,TX,400,Lubbock,TX
-88118,32019,Portales,NM,400,Lubbock,TX
-88119,32011,Fort Sumner,NM,293,Albuquerque,NM
-88120,32007,Clovis,NM,400,Lubbock,TX
-88121,32011,Fort Sumner,NM,293,Albuquerque,NM
-88122,45168,Lubbock,TX,400,Lubbock,TX
-88123,45168,Lubbock,TX,400,Lubbock,TX
-88124,32007,Clovis,NM,400,Lubbock,TX
-88125,45168,Lubbock,TX,400,Lubbock,TX
-88126,45168,Lubbock,TX,400,Lubbock,TX
-88130,32019,Portales,NM,400,Lubbock,TX
-88132,45168,Lubbock,TX,400,Lubbock,TX
-88133,32007,Clovis,NM,400,Lubbock,TX
-88134,32019,Portales,NM,400,Lubbock,TX
-88135,32007,Clovis,NM,400,Lubbock,TX
-88136,32002,Albuquerque,NM,293,Albuquerque,NM
-88201,32021,Roswell,NM,293,Albuquerque,NM
-88202,32021,Roswell,NM,293,Albuquerque,NM
-88203,32021,Roswell,NM,293,Albuquerque,NM
-88210,32003,Artesia,NM,293,Albuquerque,NM
-88211,32003,Artesia,NM,293,Albuquerque,NM
-88213,45168,Lubbock,TX,400,Lubbock,TX
-88220,32005,Carlsbad,NM,400,Lubbock,TX
-88221,32005,Carlsbad,NM,400,Lubbock,TX
-88230,32021,Roswell,NM,293,Albuquerque,NM
-88231,32014,Hobbs,NM,400,Lubbock,TX
-88232,32021,Roswell,NM,293,Albuquerque,NM
-88240,32014,Hobbs,NM,400,Lubbock,TX
-88241,32014,Hobbs,NM,400,Lubbock,TX
-88242,32014,Hobbs,NM,400,Lubbock,TX
-88244,32014,Hobbs,NM,400,Lubbock,TX
-88250,32003,Artesia,NM,293,Albuquerque,NM
-88252,32014,Hobbs,NM,400,Lubbock,TX
-88253,32003,Artesia,NM,293,Albuquerque,NM
-88254,32003,Artesia,NM,293,Albuquerque,NM
-88255,32003,Artesia,NM,293,Albuquerque,NM
-88256,32005,Carlsbad,NM,400,Lubbock,TX
-88260,45168,Lubbock,TX,400,Lubbock,TX
-88262,45168,Lubbock,TX,400,Lubbock,TX
-88263,32005,Carlsbad,NM,400,Lubbock,TX
-88264,32003,Artesia,NM,293,Albuquerque,NM
-88265,32014,Hobbs,NM,400,Lubbock,TX
-88267,45168,Lubbock,TX,400,Lubbock,TX
-88268,32005,Carlsbad,NM,400,Lubbock,TX
-88301,32022,Ruidoso,NM,293,Albuquerque,NM
-88310,32001,Alamogordo,NM,393,El Paso,TX
-88311,32001,Alamogordo,NM,393,El Paso,TX
-88312,32022,Ruidoso,NM,293,Albuquerque,NM
-88314,32001,Alamogordo,NM,393,El Paso,TX
-88316,32022,Ruidoso,NM,293,Albuquerque,NM
-88317,32001,Alamogordo,NM,393,El Paso,TX
-88318,32002,Albuquerque,NM,293,Albuquerque,NM
-88321,32002,Albuquerque,NM,293,Albuquerque,NM
-88323,32022,Ruidoso,NM,293,Albuquerque,NM
-88324,32022,Ruidoso,NM,293,Albuquerque,NM
-88325,32001,Alamogordo,NM,393,El Paso,TX
-88330,32001,Alamogordo,NM,393,El Paso,TX
-88336,32021,Roswell,NM,293,Albuquerque,NM
-88337,32001,Alamogordo,NM,393,El Paso,TX
-88338,32021,Roswell,NM,293,Albuquerque,NM
-88339,32001,Alamogordo,NM,393,El Paso,TX
-88340,32031,Mescalero,NM,293,Albuquerque,NM
-88341,32022,Ruidoso,NM,293,Albuquerque,NM
-88342,32001,Alamogordo,NM,393,El Paso,TX
-88343,32021,Roswell,NM,293,Albuquerque,NM
-88344,32001,Alamogordo,NM,393,El Paso,TX
-88345,32022,Ruidoso,NM,293,Albuquerque,NM
-88346,32022,Ruidoso,NM,293,Albuquerque,NM
-88347,32001,Alamogordo,NM,393,El Paso,TX
-88348,32021,Roswell,NM,293,Albuquerque,NM
-88349,32001,Alamogordo,NM,393,El Paso,TX
-88350,32001,Alamogordo,NM,393,El Paso,TX
-88351,32022,Ruidoso,NM,293,Albuquerque,NM
-88352,32001,Alamogordo,NM,393,El Paso,TX
-88353,32002,Albuquerque,NM,293,Albuquerque,NM
-88354,32001,Alamogordo,NM,393,El Paso,TX
-88355,32022,Ruidoso,NM,293,Albuquerque,NM
-88401,32029,Tucumcari,NM,383,Amarillo,TX
-88410,45006,Amarillo,TX,383,Amarillo,TX
-88411,32007,Clovis,NM,400,Lubbock,TX
-88414,32020,Raton,NM,293,Albuquerque,NM
-88415,32006,Clayton,NM,293,Albuquerque,NM
-88416,32016,Las Vegas,NM,293,Albuquerque,NM
-88417,32016,Las Vegas,NM,293,Albuquerque,NM
-88418,32020,Raton,NM,293,Albuquerque,NM
-88419,32020,Raton,NM,293,Albuquerque,NM
-88421,32016,Las Vegas,NM,293,Albuquerque,NM
-88422,32020,Raton,NM,293,Albuquerque,NM
-88424,32006,Clayton,NM,293,Albuquerque,NM
-88426,32029,Tucumcari,NM,383,Amarillo,TX
-88427,32007,Clovis,NM,400,Lubbock,TX
-88430,45006,Amarillo,TX,383,Amarillo,TX
-88431,32016,Las Vegas,NM,293,Albuquerque,NM
-88433,32029,Tucumcari,NM,383,Amarillo,TX
-88434,32007,Clovis,NM,400,Lubbock,TX
-88435,32024,Santa Rosa,NM,293,Albuquerque,NM
-88436,32006,Clayton,NM,293,Albuquerque,NM
-88439,32016,Las Vegas,NM,293,Albuquerque,NM
-88510,45086,El Paso,TX,393,El Paso,TX
-88511,45086,El Paso,TX,393,El Paso,TX
-88512,45086,El Paso,TX,393,El Paso,TX
-88513,45086,El Paso,TX,393,El Paso,TX
-88514,45086,El Paso,TX,393,El Paso,TX
-88515,45086,El Paso,TX,393,El Paso,TX
-88517,45086,El Paso,TX,393,El Paso,TX
-88518,45086,El Paso,TX,393,El Paso,TX
-88519,45086,El Paso,TX,393,El Paso,TX
-88520,45086,El Paso,TX,393,El Paso,TX
-88521,45086,El Paso,TX,393,El Paso,TX
-88523,45086,El Paso,TX,393,El Paso,TX
-88524,45086,El Paso,TX,393,El Paso,TX
-88525,45086,El Paso,TX,393,El Paso,TX
-88526,45086,El Paso,TX,393,El Paso,TX
-88527,45086,El Paso,TX,393,El Paso,TX
-88528,45086,El Paso,TX,393,El Paso,TX
-88529,45086,El Paso,TX,393,El Paso,TX
-88530,45086,El Paso,TX,393,El Paso,TX
-88531,45086,El Paso,TX,393,El Paso,TX
-88532,45086,El Paso,TX,393,El Paso,TX
-88533,45086,El Paso,TX,393,El Paso,TX
-88534,45086,El Paso,TX,393,El Paso,TX
-88535,45086,El Paso,TX,393,El Paso,TX
-88536,45086,El Paso,TX,393,El Paso,TX
-88538,45086,El Paso,TX,393,El Paso,TX
-88539,45086,El Paso,TX,393,El Paso,TX
-88540,45086,El Paso,TX,393,El Paso,TX
-88541,45086,El Paso,TX,393,El Paso,TX
-88542,45086,El Paso,TX,393,El Paso,TX
-88543,45086,El Paso,TX,393,El Paso,TX
-88544,45086,El Paso,TX,393,El Paso,TX
-88545,45086,El Paso,TX,393,El Paso,TX
-88546,45086,El Paso,TX,393,El Paso,TX
-88547,45086,El Paso,TX,393,El Paso,TX
-88548,45086,El Paso,TX,393,El Paso,TX
-88549,45086,El Paso,TX,393,El Paso,TX
-88550,45086,El Paso,TX,393,El Paso,TX
-88553,45086,El Paso,TX,393,El Paso,TX
-88554,45086,El Paso,TX,393,El Paso,TX
-88555,45086,El Paso,TX,393,El Paso,TX
-88556,45086,El Paso,TX,393,El Paso,TX
-88557,45086,El Paso,TX,393,El Paso,TX
-88558,45086,El Paso,TX,393,El Paso,TX
-88559,45086,El Paso,TX,393,El Paso,TX
-88560,45086,El Paso,TX,393,El Paso,TX
-88561,45086,El Paso,TX,393,El Paso,TX
-88562,45086,El Paso,TX,393,El Paso,TX
-88563,45086,El Paso,TX,393,El Paso,TX
-88565,45086,El Paso,TX,393,El Paso,TX
-88566,45086,El Paso,TX,393,El Paso,TX
-88567,45086,El Paso,TX,393,El Paso,TX
-88568,45086,El Paso,TX,393,El Paso,TX
-88569,45086,El Paso,TX,393,El Paso,TX
-88570,45086,El Paso,TX,393,El Paso,TX
-88571,45086,El Paso,TX,393,El Paso,TX
-88572,45086,El Paso,TX,393,El Paso,TX
-88573,45086,El Paso,TX,393,El Paso,TX
-88574,45086,El Paso,TX,393,El Paso,TX
-88575,45086,El Paso,TX,393,El Paso,TX
-88576,45086,El Paso,TX,393,El Paso,TX
-88577,45086,El Paso,TX,393,El Paso,TX
-88578,45086,El Paso,TX,393,El Paso,TX
-88579,45086,El Paso,TX,393,El Paso,TX
-88580,45086,El Paso,TX,393,El Paso,TX
-88581,45086,El Paso,TX,393,El Paso,TX
-88582,45086,El Paso,TX,393,El Paso,TX
-88583,45086,El Paso,TX,393,El Paso,TX
-88584,45086,El Paso,TX,393,El Paso,TX
-88585,45086,El Paso,TX,393,El Paso,TX
-88586,45086,El Paso,TX,393,El Paso,TX
-88587,45086,El Paso,TX,393,El Paso,TX
-88588,45086,El Paso,TX,393,El Paso,TX
-88589,45086,El Paso,TX,393,El Paso,TX
-88590,45086,El Paso,TX,393,El Paso,TX
-88595,45086,El Paso,TX,393,El Paso,TX
-88888,9001,Washington,DC,113,Washington,DC
-88901,29010,Las Vegas,NV,279,Las Vegas,NV
-88905,29010,Las Vegas,NV,279,Las Vegas,NV
-89001,29010,Las Vegas,NV,279,Las Vegas,NV
-89002,29008,Henderson,NV,279,Las Vegas,NV
-89003,29010,Las Vegas,NV,279,Las Vegas,NV
-89004,29010,Las Vegas,NV,279,Las Vegas,NV
-89005,29002,Boulder City,NV,279,Las Vegas,NV
-89006,29002,Boulder City,NV,279,Las Vegas,NV
-89007,29010,Las Vegas,NV,279,Las Vegas,NV
-89008,46030,St. George,UT,423,Salt Lake City,UT
-89009,29008,Henderson,NV,279,Las Vegas,NV
-89010,29015,Tonopah,NV,280,Reno,NV
-89011,29008,Henderson,NV,279,Las Vegas,NV
-89012,29010,Las Vegas,NV,279,Las Vegas,NV
-89013,29015,Tonopah,NV,280,Reno,NV
-89014,29010,Las Vegas,NV,279,Las Vegas,NV
-89015,29008,Henderson,NV,279,Las Vegas,NV
-89016,29010,Las Vegas,NV,279,Las Vegas,NV
-89017,29010,Las Vegas,NV,279,Las Vegas,NV
-89018,29010,Las Vegas,NV,279,Las Vegas,NV
-89019,29010,Las Vegas,NV,279,Las Vegas,NV
-89020,29010,Las Vegas,NV,279,Las Vegas,NV
-89021,29010,Las Vegas,NV,279,Las Vegas,NV
-89022,29015,Tonopah,NV,280,Reno,NV
-89023,29010,Las Vegas,NV,279,Las Vegas,NV
-89024,29010,Las Vegas,NV,279,Las Vegas,NV
-89025,29010,Las Vegas,NV,279,Las Vegas,NV
-89026,29010,Las Vegas,NV,279,Las Vegas,NV
-89027,29010,Las Vegas,NV,279,Las Vegas,NV
-89028,3003,Bullhead City,AZ,279,Las Vegas,NV
-89029,3003,Bullhead City,AZ,279,Las Vegas,NV
-89030,29010,Las Vegas,NV,279,Las Vegas,NV
-89031,29010,Las Vegas,NV,279,Las Vegas,NV
-89032,29010,Las Vegas,NV,279,Las Vegas,NV
-89033,29010,Las Vegas,NV,279,Las Vegas,NV
-89034,29010,Las Vegas,NV,279,Las Vegas,NV
-89036,29010,Las Vegas,NV,279,Las Vegas,NV
-89037,29010,Las Vegas,NV,279,Las Vegas,NV
-89039,3003,Bullhead City,AZ,279,Las Vegas,NV
-89040,29010,Las Vegas,NV,279,Las Vegas,NV
-89041,29010,Las Vegas,NV,279,Las Vegas,NV
-89042,46030,St. George,UT,423,Salt Lake City,UT
-89043,46030,St. George,UT,423,Salt Lake City,UT
-89044,29010,Las Vegas,NV,279,Las Vegas,NV
-89045,29015,Tonopah,NV,280,Reno,NV
-89046,29010,Las Vegas,NV,279,Las Vegas,NV
-89047,29015,Tonopah,NV,280,Reno,NV
-89048,29010,Las Vegas,NV,279,Las Vegas,NV
-89049,29015,Tonopah,NV,280,Reno,NV
-89052,29010,Las Vegas,NV,279,Las Vegas,NV
-89053,29010,Las Vegas,NV,279,Las Vegas,NV
-89054,29010,Las Vegas,NV,279,Las Vegas,NV
-89060,29010,Las Vegas,NV,279,Las Vegas,NV
-89061,29010,Las Vegas,NV,279,Las Vegas,NV
-89067,29010,Las Vegas,NV,279,Las Vegas,NV
-89070,29010,Las Vegas,NV,279,Las Vegas,NV
-89074,29010,Las Vegas,NV,279,Las Vegas,NV
-89077,29010,Las Vegas,NV,279,Las Vegas,NV
-89081,29010,Las Vegas,NV,279,Las Vegas,NV
-89084,29010,Las Vegas,NV,279,Las Vegas,NV
-89085,29010,Las Vegas,NV,279,Las Vegas,NV
-89086,29010,Las Vegas,NV,279,Las Vegas,NV
-89087,29010,Las Vegas,NV,279,Las Vegas,NV
-89101,29010,Las Vegas,NV,279,Las Vegas,NV
-89102,29010,Las Vegas,NV,279,Las Vegas,NV
-89103,29010,Las Vegas,NV,279,Las Vegas,NV
-89104,29010,Las Vegas,NV,279,Las Vegas,NV
-89105,29010,Las Vegas,NV,279,Las Vegas,NV
-89106,29010,Las Vegas,NV,279,Las Vegas,NV
-89107,29010,Las Vegas,NV,279,Las Vegas,NV
-89108,29010,Las Vegas,NV,279,Las Vegas,NV
-89109,29010,Las Vegas,NV,279,Las Vegas,NV
-89110,29010,Las Vegas,NV,279,Las Vegas,NV
-89111,29010,Las Vegas,NV,279,Las Vegas,NV
-89112,29010,Las Vegas,NV,279,Las Vegas,NV
-89113,29010,Las Vegas,NV,279,Las Vegas,NV
-89114,29010,Las Vegas,NV,279,Las Vegas,NV
-89115,29010,Las Vegas,NV,279,Las Vegas,NV
-89116,29010,Las Vegas,NV,279,Las Vegas,NV
-89117,29010,Las Vegas,NV,279,Las Vegas,NV
-89118,29010,Las Vegas,NV,279,Las Vegas,NV
-89119,29010,Las Vegas,NV,279,Las Vegas,NV
-89120,29010,Las Vegas,NV,279,Las Vegas,NV
-89121,29010,Las Vegas,NV,279,Las Vegas,NV
-89122,29010,Las Vegas,NV,279,Las Vegas,NV
-89123,29010,Las Vegas,NV,279,Las Vegas,NV
-89124,29010,Las Vegas,NV,279,Las Vegas,NV
-89125,29010,Las Vegas,NV,279,Las Vegas,NV
-89126,29010,Las Vegas,NV,279,Las Vegas,NV
-89127,29010,Las Vegas,NV,279,Las Vegas,NV
-89128,29010,Las Vegas,NV,279,Las Vegas,NV
-89129,29010,Las Vegas,NV,279,Las Vegas,NV
-89130,29010,Las Vegas,NV,279,Las Vegas,NV
-89131,29010,Las Vegas,NV,279,Las Vegas,NV
-89132,29010,Las Vegas,NV,279,Las Vegas,NV
-89133,29010,Las Vegas,NV,279,Las Vegas,NV
-89134,29010,Las Vegas,NV,279,Las Vegas,NV
-89135,29010,Las Vegas,NV,279,Las Vegas,NV
-89136,29010,Las Vegas,NV,279,Las Vegas,NV
-89137,29010,Las Vegas,NV,279,Las Vegas,NV
-89138,29010,Las Vegas,NV,279,Las Vegas,NV
-89139,29010,Las Vegas,NV,279,Las Vegas,NV
-89140,29010,Las Vegas,NV,279,Las Vegas,NV
-89141,29010,Las Vegas,NV,279,Las Vegas,NV
-89142,29010,Las Vegas,NV,279,Las Vegas,NV
-89143,29010,Las Vegas,NV,279,Las Vegas,NV
-89144,29010,Las Vegas,NV,279,Las Vegas,NV
-89145,29010,Las Vegas,NV,279,Las Vegas,NV
-89146,29010,Las Vegas,NV,279,Las Vegas,NV
-89147,29010,Las Vegas,NV,279,Las Vegas,NV
-89148,29010,Las Vegas,NV,279,Las Vegas,NV
-89149,29010,Las Vegas,NV,279,Las Vegas,NV
-89150,29010,Las Vegas,NV,279,Las Vegas,NV
-89151,29010,Las Vegas,NV,279,Las Vegas,NV
-89152,29010,Las Vegas,NV,279,Las Vegas,NV
-89153,29010,Las Vegas,NV,279,Las Vegas,NV
-89154,29010,Las Vegas,NV,279,Las Vegas,NV
-89155,29010,Las Vegas,NV,279,Las Vegas,NV
-89156,29010,Las Vegas,NV,279,Las Vegas,NV
-89157,29010,Las Vegas,NV,279,Las Vegas,NV
-89158,29010,Las Vegas,NV,279,Las Vegas,NV
-89159,29010,Las Vegas,NV,279,Las Vegas,NV
-89160,29010,Las Vegas,NV,279,Las Vegas,NV
-89161,29010,Las Vegas,NV,279,Las Vegas,NV
-89162,29010,Las Vegas,NV,279,Las Vegas,NV
-89163,29010,Las Vegas,NV,279,Las Vegas,NV
-89164,29010,Las Vegas,NV,279,Las Vegas,NV
-89165,29010,Las Vegas,NV,279,Las Vegas,NV
-89166,29010,Las Vegas,NV,279,Las Vegas,NV
-89169,29010,Las Vegas,NV,279,Las Vegas,NV
-89170,29010,Las Vegas,NV,279,Las Vegas,NV
-89173,29010,Las Vegas,NV,279,Las Vegas,NV
-89177,29010,Las Vegas,NV,279,Las Vegas,NV
-89178,29010,Las Vegas,NV,279,Las Vegas,NV
-89179,29010,Las Vegas,NV,279,Las Vegas,NV
-89180,29010,Las Vegas,NV,279,Las Vegas,NV
-89183,29010,Las Vegas,NV,279,Las Vegas,NV
-89185,29010,Las Vegas,NV,279,Las Vegas,NV
-89191,29010,Las Vegas,NV,279,Las Vegas,NV
-89193,29010,Las Vegas,NV,279,Las Vegas,NV
-89195,29010,Las Vegas,NV,279,Las Vegas,NV
-89199,29010,Las Vegas,NV,279,Las Vegas,NV
-89301,29005,Ely,NV,423,Salt Lake City,UT
-89310,29013,Reno,NV,280,Reno,NV
-89311,29005,Ely,NV,423,Salt Lake City,UT
-89314,29005,Ely,NV,423,Salt Lake City,UT
-89315,29005,Ely,NV,423,Salt Lake City,UT
-89316,29013,Reno,NV,280,Reno,NV
-89317,29005,Ely,NV,423,Salt Lake City,UT
-89318,29005,Ely,NV,423,Salt Lake City,UT
-89319,29005,Ely,NV,423,Salt Lake City,UT
-89402,29013,Reno,NV,280,Reno,NV
-89403,29003,Carson City,NV,280,Reno,NV
-89404,29016,Winnemucca,NV,280,Reno,NV
-89405,29013,Reno,NV,280,Reno,NV
-89406,29006,Fallon,NV,280,Reno,NV
-89407,29006,Fallon,NV,280,Reno,NV
-89408,29013,Reno,NV,280,Reno,NV
-89409,29006,Fallon,NV,280,Reno,NV
-89410,29003,Carson City,NV,280,Reno,NV
-89411,5235,South Lake Tahoe,CA,77,Sacramento,CA
-89412,29013,Reno,NV,280,Reno,NV
-89413,5235,South Lake Tahoe,CA,77,Sacramento,CA
-89414,29016,Winnemucca,NV,280,Reno,NV
-89415,29007,Hawthorne,NV,280,Reno,NV
-89418,29013,Reno,NV,280,Reno,NV
-89419,29013,Reno,NV,280,Reno,NV
-89420,29007,Hawthorne,NV,280,Reno,NV
-89421,29016,Winnemucca,NV,280,Reno,NV
-89422,29007,Hawthorne,NV,280,Reno,NV
-89423,29003,Carson City,NV,280,Reno,NV
-89424,29013,Reno,NV,280,Reno,NV
-89425,29016,Winnemucca,NV,280,Reno,NV
-89426,29016,Winnemucca,NV,280,Reno,NV
-89427,29006,Fallon,NV,280,Reno,NV
-89428,29003,Carson City,NV,280,Reno,NV
-89429,29013,Reno,NV,280,Reno,NV
-89430,29003,Carson City,NV,280,Reno,NV
-89431,29013,Reno,NV,280,Reno,NV
-89432,29013,Reno,NV,280,Reno,NV
-89433,29013,Reno,NV,280,Reno,NV
-89434,29013,Reno,NV,280,Reno,NV
-89435,29013,Reno,NV,280,Reno,NV
-89436,29013,Reno,NV,280,Reno,NV
-89437,29003,Carson City,NV,280,Reno,NV
-89438,29016,Winnemucca,NV,280,Reno,NV
-89439,29013,Reno,NV,280,Reno,NV
-89440,29003,Carson City,NV,280,Reno,NV
-89441,29013,Reno,NV,280,Reno,NV
-89442,29013,Reno,NV,280,Reno,NV
-89444,29003,Carson City,NV,280,Reno,NV
-89445,29016,Winnemucca,NV,280,Reno,NV
-89446,29016,Winnemucca,NV,280,Reno,NV
-89447,29013,Reno,NV,280,Reno,NV
-89448,5235,South Lake Tahoe,CA,77,Sacramento,CA
-89449,5235,South Lake Tahoe,CA,77,Sacramento,CA
-89450,29013,Reno,NV,280,Reno,NV
-89451,29013,Reno,NV,280,Reno,NV
-89452,29013,Reno,NV,280,Reno,NV
-89460,29003,Carson City,NV,280,Reno,NV
-89496,29006,Fallon,NV,280,Reno,NV
-89501,29013,Reno,NV,280,Reno,NV
-89502,29013,Reno,NV,280,Reno,NV
-89503,29013,Reno,NV,280,Reno,NV
-89504,29013,Reno,NV,280,Reno,NV
-89505,29013,Reno,NV,280,Reno,NV
-89506,29013,Reno,NV,280,Reno,NV
-89507,29013,Reno,NV,280,Reno,NV
-89508,29013,Reno,NV,280,Reno,NV
-89509,29013,Reno,NV,280,Reno,NV
-89510,29013,Reno,NV,280,Reno,NV
-89511,29013,Reno,NV,280,Reno,NV
-89512,29013,Reno,NV,280,Reno,NV
-89513,29013,Reno,NV,280,Reno,NV
-89515,29013,Reno,NV,280,Reno,NV
-89519,29013,Reno,NV,280,Reno,NV
-89520,29013,Reno,NV,280,Reno,NV
-89521,29013,Reno,NV,280,Reno,NV
-89523,29013,Reno,NV,280,Reno,NV
-89533,29013,Reno,NV,280,Reno,NV
-89555,29013,Reno,NV,280,Reno,NV
-89557,29013,Reno,NV,280,Reno,NV
-89570,29013,Reno,NV,280,Reno,NV
-89595,29013,Reno,NV,280,Reno,NV
-89599,29013,Reno,NV,280,Reno,NV
-89701,29003,Carson City,NV,280,Reno,NV
-89702,29003,Carson City,NV,280,Reno,NV
-89703,29003,Carson City,NV,280,Reno,NV
-89704,29003,Carson City,NV,280,Reno,NV
-89705,29003,Carson City,NV,280,Reno,NV
-89706,29003,Carson City,NV,280,Reno,NV
-89711,29003,Carson City,NV,280,Reno,NV
-89712,29003,Carson City,NV,280,Reno,NV
-89713,29003,Carson City,NV,280,Reno,NV
-89714,29003,Carson City,NV,280,Reno,NV
-89721,29003,Carson City,NV,280,Reno,NV
-89801,29004,Elko,NV,423,Salt Lake City,UT
-89802,29004,Elko,NV,423,Salt Lake City,UT
-89803,29004,Elko,NV,423,Salt Lake City,UT
-89815,29004,Elko,NV,423,Salt Lake City,UT
-89820,29001,Battle Mountain,NV,280,Reno,NV
-89821,29004,Elko,NV,423,Salt Lake City,UT
-89822,29004,Elko,NV,423,Salt Lake City,UT
-89823,29004,Elko,NV,423,Salt Lake City,UT
-89825,13038,Twin Falls,ID,151,Boise,ID
-89826,29004,Elko,NV,423,Salt Lake City,UT
-89828,29004,Elko,NV,423,Salt Lake City,UT
-89830,29004,Elko,NV,423,Salt Lake City,UT
-89831,29018,Owyhee,NV,151,Boise,ID
-89832,29018,Owyhee,NV,151,Boise,ID
-89833,29004,Elko,NV,423,Salt Lake City,UT
-89834,29018,Owyhee,NV,151,Boise,ID
-89835,29004,Elko,NV,423,Salt Lake City,UT
-89883,29004,Elko,NV,423,Salt Lake City,UT
-90001,5126,Los Angeles,CA,56,Los Angeles,CA
-90002,5130,Lynwood,CA,56,Los Angeles,CA
-90003,5126,Los Angeles,CA,56,Los Angeles,CA
-90004,5126,Los Angeles,CA,56,Los Angeles,CA
-90005,5126,Los Angeles,CA,56,Los Angeles,CA
-90006,5126,Los Angeles,CA,56,Los Angeles,CA
-90007,5126,Los Angeles,CA,56,Los Angeles,CA
-90008,5126,Los Angeles,CA,56,Los Angeles,CA
-90009,5103,Inglewood,CA,56,Los Angeles,CA
-90010,5126,Los Angeles,CA,56,Los Angeles,CA
-90011,5126,Los Angeles,CA,56,Los Angeles,CA
-90012,5126,Los Angeles,CA,56,Los Angeles,CA
-90013,5126,Los Angeles,CA,56,Los Angeles,CA
-90014,5126,Los Angeles,CA,56,Los Angeles,CA
-90015,5126,Los Angeles,CA,56,Los Angeles,CA
-90016,5126,Los Angeles,CA,56,Los Angeles,CA
-90017,5126,Los Angeles,CA,56,Los Angeles,CA
-90018,5126,Los Angeles,CA,56,Los Angeles,CA
-90019,5126,Los Angeles,CA,56,Los Angeles,CA
-90020,5126,Los Angeles,CA,56,Los Angeles,CA
-90021,5126,Los Angeles,CA,56,Los Angeles,CA
-90022,5126,Los Angeles,CA,56,Los Angeles,CA
-90023,5126,Los Angeles,CA,56,Los Angeles,CA
-90024,5126,Los Angeles,CA,56,Los Angeles,CA
-90025,5126,Los Angeles,CA,56,Los Angeles,CA
-90026,5126,Los Angeles,CA,56,Los Angeles,CA
-90027,5126,Los Angeles,CA,56,Los Angeles,CA
-90028,5126,Los Angeles,CA,56,Los Angeles,CA
-90029,5126,Los Angeles,CA,56,Los Angeles,CA
-90030,5126,Los Angeles,CA,56,Los Angeles,CA
-90031,5126,Los Angeles,CA,56,Los Angeles,CA
-90032,5126,Los Angeles,CA,56,Los Angeles,CA
-90033,5126,Los Angeles,CA,56,Los Angeles,CA
-90034,5126,Los Angeles,CA,56,Los Angeles,CA
-90035,5126,Los Angeles,CA,56,Los Angeles,CA
-90036,5126,Los Angeles,CA,56,Los Angeles,CA
-90037,5126,Los Angeles,CA,56,Los Angeles,CA
-90038,5126,Los Angeles,CA,56,Los Angeles,CA
-90039,5084,Glendale,CA,56,Los Angeles,CA
-90040,5144,Montebello,CA,56,Los Angeles,CA
-90041,5084,Glendale,CA,56,Los Angeles,CA
-90042,5084,Glendale,CA,56,Los Angeles,CA
-90043,5126,Los Angeles,CA,56,Los Angeles,CA
-90044,5126,Los Angeles,CA,56,Los Angeles,CA
-90045,5103,Inglewood,CA,56,Los Angeles,CA
-90046,5126,Los Angeles,CA,56,Los Angeles,CA
-90047,5103,Inglewood,CA,56,Los Angeles,CA
-90048,5126,Los Angeles,CA,56,Los Angeles,CA
-90049,5223,Santa Monica,CA,56,Los Angeles,CA
-90050,5084,Glendale,CA,56,Los Angeles,CA
-90051,5126,Los Angeles,CA,56,Los Angeles,CA
-90052,5126,Los Angeles,CA,56,Los Angeles,CA
-90053,5126,Los Angeles,CA,56,Los Angeles,CA
-90054,5126,Los Angeles,CA,56,Los Angeles,CA
-90055,5126,Los Angeles,CA,56,Los Angeles,CA
-90056,5126,Los Angeles,CA,56,Los Angeles,CA
-90057,5126,Los Angeles,CA,56,Los Angeles,CA
-90058,5126,Los Angeles,CA,56,Los Angeles,CA
-90059,5130,Lynwood,CA,56,Los Angeles,CA
-90060,5126,Los Angeles,CA,56,Los Angeles,CA
-90061,5126,Los Angeles,CA,56,Los Angeles,CA
-90062,5126,Los Angeles,CA,56,Los Angeles,CA
-90063,5126,Los Angeles,CA,56,Los Angeles,CA
-90064,5126,Los Angeles,CA,56,Los Angeles,CA
-90065,5084,Glendale,CA,56,Los Angeles,CA
-90066,5223,Santa Monica,CA,56,Los Angeles,CA
-90067,5126,Los Angeles,CA,56,Los Angeles,CA
-90068,5126,Los Angeles,CA,56,Los Angeles,CA
-90069,5126,Los Angeles,CA,56,Los Angeles,CA
-90070,5126,Los Angeles,CA,56,Los Angeles,CA
-90071,5126,Los Angeles,CA,56,Los Angeles,CA
-90072,5126,Los Angeles,CA,56,Los Angeles,CA
-90073,5223,Santa Monica,CA,56,Los Angeles,CA
-90074,5126,Los Angeles,CA,56,Los Angeles,CA
-90075,5126,Los Angeles,CA,56,Los Angeles,CA
-90076,5126,Los Angeles,CA,56,Los Angeles,CA
-90077,5126,Los Angeles,CA,56,Los Angeles,CA
-90078,5126,Los Angeles,CA,56,Los Angeles,CA
-90079,5126,Los Angeles,CA,56,Los Angeles,CA
-90080,5103,Inglewood,CA,56,Los Angeles,CA
-90081,5126,Los Angeles,CA,56,Los Angeles,CA
-90082,5126,Los Angeles,CA,56,Los Angeles,CA
-90083,5103,Inglewood,CA,56,Los Angeles,CA
-90084,5126,Los Angeles,CA,56,Los Angeles,CA
-90086,5126,Los Angeles,CA,56,Los Angeles,CA
-90087,5126,Los Angeles,CA,56,Los Angeles,CA
-90088,5126,Los Angeles,CA,56,Los Angeles,CA
-90089,5126,Los Angeles,CA,56,Los Angeles,CA
-90090,5126,Los Angeles,CA,56,Los Angeles,CA
-90091,5144,Montebello,CA,56,Los Angeles,CA
-90093,5126,Los Angeles,CA,56,Los Angeles,CA
-90094,5223,Santa Monica,CA,56,Los Angeles,CA
-90095,5126,Los Angeles,CA,56,Los Angeles,CA
-90096,5126,Los Angeles,CA,56,Los Angeles,CA
-90099,5126,Los Angeles,CA,56,Los Angeles,CA
-90134,5052,Culver City,CA,56,Los Angeles,CA
-90189,5103,Inglewood,CA,56,Los Angeles,CA
-90201,5059,Downey,CA,56,Los Angeles,CA
-90202,5059,Downey,CA,56,Los Angeles,CA
-90209,5126,Los Angeles,CA,56,Los Angeles,CA
-90210,5126,Los Angeles,CA,56,Los Angeles,CA
-90211,5126,Los Angeles,CA,56,Los Angeles,CA
-90212,5126,Los Angeles,CA,56,Los Angeles,CA
-90213,5126,Los Angeles,CA,56,Los Angeles,CA
-90220,5130,Lynwood,CA,56,Los Angeles,CA
-90221,5130,Lynwood,CA,56,Los Angeles,CA
-90222,5130,Lynwood,CA,56,Los Angeles,CA
-90223,5130,Lynwood,CA,56,Los Angeles,CA
-90224,5130,Lynwood,CA,56,Los Angeles,CA
-90230,5052,Culver City,CA,56,Los Angeles,CA
-90231,5052,Culver City,CA,56,Los Angeles,CA
-90232,5052,Culver City,CA,56,Los Angeles,CA
-90233,5052,Culver City,CA,56,Los Angeles,CA
-90239,5059,Downey,CA,56,Los Angeles,CA
-90240,5059,Downey,CA,56,Los Angeles,CA
-90241,5059,Downey,CA,56,Los Angeles,CA
-90242,5059,Downey,CA,56,Los Angeles,CA
-90245,5103,Inglewood,CA,56,Los Angeles,CA
-90247,5082,Gardena,CA,56,Los Angeles,CA
-90248,5092,Harbor City,CA,56,Los Angeles,CA
-90249,5248,Torrance,CA,56,Los Angeles,CA
-90250,5094,Hawthorne,CA,56,Los Angeles,CA
-90251,5094,Hawthorne,CA,56,Los Angeles,CA
-90254,5248,Torrance,CA,56,Los Angeles,CA
-90255,5130,Lynwood,CA,56,Los Angeles,CA
-90260,5248,Torrance,CA,56,Los Angeles,CA
-90261,5248,Torrance,CA,56,Los Angeles,CA
-90262,5130,Lynwood,CA,56,Los Angeles,CA
-90263,5223,Santa Monica,CA,56,Los Angeles,CA
-90264,5223,Santa Monica,CA,56,Los Angeles,CA
-90265,5223,Santa Monica,CA,56,Los Angeles,CA
-90266,5248,Torrance,CA,56,Los Angeles,CA
-90267,5248,Torrance,CA,56,Los Angeles,CA
-90270,5059,Downey,CA,56,Los Angeles,CA
-90272,5223,Santa Monica,CA,56,Los Angeles,CA
-90274,5248,Torrance,CA,56,Los Angeles,CA
-90275,5248,Torrance,CA,56,Los Angeles,CA
-90277,5248,Torrance,CA,56,Los Angeles,CA
-90278,5248,Torrance,CA,56,Los Angeles,CA
-90280,5059,Downey,CA,56,Los Angeles,CA
-90290,5223,Santa Monica,CA,56,Los Angeles,CA
-90291,5223,Santa Monica,CA,56,Los Angeles,CA
-90292,5223,Santa Monica,CA,56,Los Angeles,CA
-90293,5223,Santa Monica,CA,56,Los Angeles,CA
-90294,5223,Santa Monica,CA,56,Los Angeles,CA
-90295,5223,Santa Monica,CA,56,Los Angeles,CA
-90296,5223,Santa Monica,CA,56,Los Angeles,CA
-90301,5103,Inglewood,CA,56,Los Angeles,CA
-90302,5103,Inglewood,CA,56,Los Angeles,CA
-90303,5103,Inglewood,CA,56,Los Angeles,CA
-90304,5103,Inglewood,CA,56,Los Angeles,CA
-90305,5103,Inglewood,CA,56,Los Angeles,CA
-90306,5103,Inglewood,CA,56,Los Angeles,CA
-90307,5103,Inglewood,CA,56,Los Angeles,CA
-90308,5103,Inglewood,CA,56,Los Angeles,CA
-90309,5103,Inglewood,CA,56,Los Angeles,CA
-90310,5094,Hawthorne,CA,56,Los Angeles,CA
-90311,5223,Santa Monica,CA,56,Los Angeles,CA
-90312,5223,Santa Monica,CA,56,Los Angeles,CA
-90401,5223,Santa Monica,CA,56,Los Angeles,CA
-90402,5223,Santa Monica,CA,56,Los Angeles,CA
-90403,5223,Santa Monica,CA,56,Los Angeles,CA
-90404,5223,Santa Monica,CA,56,Los Angeles,CA
-90405,5223,Santa Monica,CA,56,Los Angeles,CA
-90406,5223,Santa Monica,CA,56,Los Angeles,CA
-90407,5223,Santa Monica,CA,56,Los Angeles,CA
-90408,5223,Santa Monica,CA,56,Los Angeles,CA
-90409,5223,Santa Monica,CA,56,Los Angeles,CA
-90410,5223,Santa Monica,CA,56,Los Angeles,CA
-90411,5223,Santa Monica,CA,56,Los Angeles,CA
-90501,5248,Torrance,CA,56,Los Angeles,CA
-90502,5248,Torrance,CA,56,Los Angeles,CA
-90503,5248,Torrance,CA,56,Los Angeles,CA
-90504,5248,Torrance,CA,56,Los Angeles,CA
-90505,5248,Torrance,CA,56,Los Angeles,CA
-90506,5248,Torrance,CA,56,Los Angeles,CA
-90507,5248,Torrance,CA,56,Los Angeles,CA
-90508,5248,Torrance,CA,56,Los Angeles,CA
-90509,5248,Torrance,CA,56,Los Angeles,CA
-90510,5248,Torrance,CA,56,Los Angeles,CA
-90601,5270,Whittier,CA,56,Los Angeles,CA
-90602,5270,Whittier,CA,56,Los Angeles,CA
-90603,5270,Whittier,CA,56,Los Angeles,CA
-90604,5270,Whittier,CA,56,Los Angeles,CA
-90605,5270,Whittier,CA,56,Los Angeles,CA
-90606,5270,Whittier,CA,56,Los Angeles,CA
-90607,5270,Whittier,CA,56,Los Angeles,CA
-90608,5270,Whittier,CA,56,Los Angeles,CA
-90609,5270,Whittier,CA,56,Los Angeles,CA
-90610,5270,Whittier,CA,56,Los Angeles,CA
-90620,5004,Anaheim,CA,23,Orange County,CA
-90621,5004,Anaheim,CA,23,Orange County,CA
-90622,5004,Anaheim,CA,23,Orange County,CA
-90623,5004,Anaheim,CA,23,Orange County,CA
-90624,5004,Anaheim,CA,23,Orange County,CA
-90630,5125,Los Alamitos,CA,23,Orange County,CA
-90631,5079,Fullerton,CA,23,Orange County,CA
-90632,5079,Fullerton,CA,23,Orange County,CA
-90633,5079,Fullerton,CA,23,Orange County,CA
-90637,5270,Whittier,CA,56,Los Angeles,CA
-90638,5270,Whittier,CA,56,Los Angeles,CA
-90639,5270,Whittier,CA,56,Los Angeles,CA
-90640,5144,Montebello,CA,56,Los Angeles,CA
-90650,5158,Norwalk,CA,56,Los Angeles,CA
-90651,5158,Norwalk,CA,56,Los Angeles,CA
-90652,5158,Norwalk,CA,56,Los Angeles,CA
-90660,5144,Montebello,CA,56,Los Angeles,CA
-90661,5144,Montebello,CA,56,Los Angeles,CA
-90662,5144,Montebello,CA,56,Los Angeles,CA
-90670,5270,Whittier,CA,56,Los Angeles,CA
-90671,5270,Whittier,CA,56,Los Angeles,CA
-90680,5004,Anaheim,CA,23,Orange County,CA
-90701,5019,Bellflower,CA,56,Los Angeles,CA
-90702,5019,Bellflower,CA,56,Los Angeles,CA
-90703,5019,Bellflower,CA,56,Los Angeles,CA
-90704,5013,Avalon,CA,56,Los Angeles,CA
-90706,5019,Bellflower,CA,56,Los Angeles,CA
-90707,5019,Bellflower,CA,56,Los Angeles,CA
-90710,5092,Harbor City,CA,56,Los Angeles,CA
-90711,5116,Lakewood,CA,56,Los Angeles,CA
-90712,5116,Lakewood,CA,56,Los Angeles,CA
-90713,5124,Long Beach,CA,56,Los Angeles,CA
-90714,5116,Lakewood,CA,56,Los Angeles,CA
-90715,5124,Long Beach,CA,56,Los Angeles,CA
-90716,5124,Long Beach,CA,56,Los Angeles,CA
-90717,5092,Harbor City,CA,56,Los Angeles,CA
-90720,5125,Los Alamitos,CA,23,Orange County,CA
-90721,5125,Los Alamitos,CA,23,Orange County,CA
-90723,5173,Paramount,CA,56,Los Angeles,CA
-90731,5215,San Pedro,CA,56,Los Angeles,CA
-90732,5215,San Pedro,CA,56,Los Angeles,CA
-90733,5215,San Pedro,CA,56,Los Angeles,CA
-90734,5215,San Pedro,CA,56,Los Angeles,CA
-90740,5125,Los Alamitos,CA,23,Orange County,CA
-90742,5100,Huntington Beach,CA,23,Orange County,CA
-90743,5100,Huntington Beach,CA,23,Orange County,CA
-90744,5092,Harbor City,CA,56,Los Angeles,CA
-90745,5092,Harbor City,CA,56,Los Angeles,CA
-90746,5092,Harbor City,CA,56,Los Angeles,CA
-90747,5092,Harbor City,CA,56,Los Angeles,CA
-90748,5092,Harbor City,CA,56,Los Angeles,CA
-90749,5092,Harbor City,CA,56,Los Angeles,CA
-90755,5124,Long Beach,CA,56,Los Angeles,CA
-90801,5124,Long Beach,CA,56,Los Angeles,CA
-90802,5124,Long Beach,CA,56,Los Angeles,CA
-90803,5124,Long Beach,CA,56,Los Angeles,CA
-90804,5124,Long Beach,CA,56,Los Angeles,CA
-90805,5124,Long Beach,CA,56,Los Angeles,CA
-90806,5124,Long Beach,CA,56,Los Angeles,CA
-90807,5124,Long Beach,CA,56,Los Angeles,CA
-90808,5124,Long Beach,CA,56,Los Angeles,CA
-90809,5124,Long Beach,CA,56,Los Angeles,CA
-90810,5124,Long Beach,CA,56,Los Angeles,CA
-90813,5124,Long Beach,CA,56,Los Angeles,CA
-90814,5124,Long Beach,CA,56,Los Angeles,CA
-90815,5124,Long Beach,CA,56,Los Angeles,CA
-90822,5124,Long Beach,CA,56,Los Angeles,CA
-90831,5124,Long Beach,CA,56,Los Angeles,CA
-90832,5124,Long Beach,CA,56,Los Angeles,CA
-90833,5124,Long Beach,CA,56,Los Angeles,CA
-90834,5124,Long Beach,CA,56,Los Angeles,CA
-90835,5124,Long Beach,CA,56,Los Angeles,CA
-90840,5124,Long Beach,CA,56,Los Angeles,CA
-90842,5124,Long Beach,CA,56,Los Angeles,CA
-90844,5124,Long Beach,CA,56,Los Angeles,CA
-90846,5124,Long Beach,CA,56,Los Angeles,CA
-90847,5124,Long Beach,CA,56,Los Angeles,CA
-90848,5124,Long Beach,CA,56,Los Angeles,CA
-90853,5124,Long Beach,CA,56,Los Angeles,CA
-90895,5124,Long Beach,CA,56,Los Angeles,CA
-90899,5124,Long Beach,CA,56,Los Angeles,CA
-91001,5174,Pasadena,CA,56,Los Angeles,CA
-91003,5174,Pasadena,CA,56,Los Angeles,CA
-91006,5007,Arcadia,CA,56,Los Angeles,CA
-91007,5007,Arcadia,CA,56,Los Angeles,CA
-91008,5060,Duarte,CA,56,Los Angeles,CA
-91009,5060,Duarte,CA,56,Los Angeles,CA
-91010,5060,Duarte,CA,56,Los Angeles,CA
-91011,5084,Glendale,CA,56,Los Angeles,CA
-91012,5084,Glendale,CA,56,Los Angeles,CA
-91016,5007,Arcadia,CA,56,Los Angeles,CA
-91017,5007,Arcadia,CA,56,Los Angeles,CA
-91020,5084,Glendale,CA,56,Los Angeles,CA
-91021,5084,Glendale,CA,56,Los Angeles,CA
-91023,5084,Glendale,CA,56,Los Angeles,CA
-91024,5007,Arcadia,CA,56,Los Angeles,CA
-91025,5007,Arcadia,CA,56,Los Angeles,CA
-91030,5174,Pasadena,CA,56,Los Angeles,CA
-91031,5174,Pasadena,CA,56,Los Angeles,CA
-91040,5084,Glendale,CA,56,Los Angeles,CA
-91041,5084,Glendale,CA,56,Los Angeles,CA
-91042,5084,Glendale,CA,56,Los Angeles,CA
-91043,5084,Glendale,CA,56,Los Angeles,CA
-91046,5084,Glendale,CA,56,Los Angeles,CA
-91066,5007,Arcadia,CA,56,Los Angeles,CA
-91077,5007,Arcadia,CA,56,Los Angeles,CA
-91101,5174,Pasadena,CA,56,Los Angeles,CA
-91102,5174,Pasadena,CA,56,Los Angeles,CA
-91103,5174,Pasadena,CA,56,Los Angeles,CA
-91104,5174,Pasadena,CA,56,Los Angeles,CA
-91105,5174,Pasadena,CA,56,Los Angeles,CA
-91106,5174,Pasadena,CA,56,Los Angeles,CA
-91107,5174,Pasadena,CA,56,Los Angeles,CA
-91108,5174,Pasadena,CA,56,Los Angeles,CA
-91109,5174,Pasadena,CA,56,Los Angeles,CA
-91110,5174,Pasadena,CA,56,Los Angeles,CA
-91114,5174,Pasadena,CA,56,Los Angeles,CA
-91115,5174,Pasadena,CA,56,Los Angeles,CA
-91116,5174,Pasadena,CA,56,Los Angeles,CA
-91117,5174,Pasadena,CA,56,Los Angeles,CA
-91118,5174,Pasadena,CA,56,Los Angeles,CA
-91121,5174,Pasadena,CA,56,Los Angeles,CA
-91123,5174,Pasadena,CA,56,Los Angeles,CA
-91124,5174,Pasadena,CA,56,Los Angeles,CA
-91125,5174,Pasadena,CA,56,Los Angeles,CA
-91126,5174,Pasadena,CA,56,Los Angeles,CA
-91129,5174,Pasadena,CA,56,Los Angeles,CA
-91182,5174,Pasadena,CA,56,Los Angeles,CA
-91184,5174,Pasadena,CA,56,Los Angeles,CA
-91185,5174,Pasadena,CA,56,Los Angeles,CA
-91188,5174,Pasadena,CA,56,Los Angeles,CA
-91189,5174,Pasadena,CA,56,Los Angeles,CA
-91199,5174,Pasadena,CA,56,Los Angeles,CA
-91201,5084,Glendale,CA,56,Los Angeles,CA
-91202,5084,Glendale,CA,56,Los Angeles,CA
-91203,5084,Glendale,CA,56,Los Angeles,CA
-91204,5084,Glendale,CA,56,Los Angeles,CA
-91205,5084,Glendale,CA,56,Los Angeles,CA
-91206,5084,Glendale,CA,56,Los Angeles,CA
-91207,5084,Glendale,CA,56,Los Angeles,CA
-91208,5084,Glendale,CA,56,Los Angeles,CA
-91209,5084,Glendale,CA,56,Los Angeles,CA
-91210,5084,Glendale,CA,56,Los Angeles,CA
-91214,5084,Glendale,CA,56,Los Angeles,CA
-91221,5084,Glendale,CA,56,Los Angeles,CA
-91222,5084,Glendale,CA,56,Los Angeles,CA
-91224,5084,Glendale,CA,56,Los Angeles,CA
-91225,5084,Glendale,CA,56,Los Angeles,CA
-91226,5084,Glendale,CA,56,Los Angeles,CA
-91301,5247,Thousand Oaks,CA,96,Ventura,CA
-91302,5032,Canoga Park,CA,56,Los Angeles,CA
-91303,5032,Canoga Park,CA,56,Los Angeles,CA
-91304,5032,Canoga Park,CA,56,Los Angeles,CA
-91305,5032,Canoga Park,CA,56,Los Angeles,CA
-91306,5032,Canoga Park,CA,56,Los Angeles,CA
-91307,5032,Canoga Park,CA,56,Los Angeles,CA
-91308,5032,Canoga Park,CA,56,Los Angeles,CA
-91309,5032,Canoga Park,CA,56,Los Angeles,CA
-91310,5256,Valencia,CA,56,Los Angeles,CA
-91311,5032,Canoga Park,CA,56,Los Angeles,CA
-91313,5032,Canoga Park,CA,56,Los Angeles,CA
-91316,5244,Tarzana,CA,56,Los Angeles,CA
-91319,5247,Thousand Oaks,CA,96,Ventura,CA
-91320,5247,Thousand Oaks,CA,96,Ventura,CA
-91321,5256,Valencia,CA,56,Los Angeles,CA
-91322,5256,Valencia,CA,56,Los Angeles,CA
-91324,5157,Northridge,CA,56,Los Angeles,CA
-91325,5157,Northridge,CA,56,Los Angeles,CA
-91326,5157,Northridge,CA,56,Los Angeles,CA
-91327,5157,Northridge,CA,56,Los Angeles,CA
-91328,5157,Northridge,CA,56,Los Angeles,CA
-91329,5157,Northridge,CA,56,Los Angeles,CA
-91330,5157,Northridge,CA,56,Los Angeles,CA
-91331,5171,Panorama City,CA,56,Los Angeles,CA
-91333,5171,Panorama City,CA,56,Los Angeles,CA
-91334,5171,Panorama City,CA,56,Los Angeles,CA
-91335,5157,Northridge,CA,56,Los Angeles,CA
-91337,5157,Northridge,CA,56,Los Angeles,CA
-91340,5139,Mission Hills,CA,56,Los Angeles,CA
-91341,5139,Mission Hills,CA,56,Los Angeles,CA
-91342,5139,Mission Hills,CA,56,Los Angeles,CA
-91343,5258,Van Nuys,CA,56,Los Angeles,CA
-91344,5086,Granada Hills,CA,56,Los Angeles,CA
-91345,5139,Mission Hills,CA,56,Los Angeles,CA
-91346,5139,Mission Hills,CA,56,Los Angeles,CA
-91350,5256,Valencia,CA,56,Los Angeles,CA
-91351,5256,Valencia,CA,56,Los Angeles,CA
-91352,5028,Burbank,CA,56,Los Angeles,CA
-91353,5028,Burbank,CA,56,Los Angeles,CA
-91354,5256,Valencia,CA,56,Los Angeles,CA
-91355,5256,Valencia,CA,56,Los Angeles,CA
-91356,5244,Tarzana,CA,56,Los Angeles,CA
-91357,5244,Tarzana,CA,56,Los Angeles,CA
-91358,5247,Thousand Oaks,CA,96,Ventura,CA
-91359,5247,Thousand Oaks,CA,96,Ventura,CA
-91360,5247,Thousand Oaks,CA,96,Ventura,CA
-91361,5247,Thousand Oaks,CA,96,Ventura,CA
-91362,5247,Thousand Oaks,CA,96,Ventura,CA
-91364,5032,Canoga Park,CA,56,Los Angeles,CA
-91365,5032,Canoga Park,CA,56,Los Angeles,CA
-91367,5032,Canoga Park,CA,56,Los Angeles,CA
-91371,5032,Canoga Park,CA,56,Los Angeles,CA
-91372,5032,Canoga Park,CA,56,Los Angeles,CA
-91376,5247,Thousand Oaks,CA,96,Ventura,CA
-91377,5247,Thousand Oaks,CA,96,Ventura,CA
-91380,5256,Valencia,CA,56,Los Angeles,CA
-91381,5256,Valencia,CA,56,Los Angeles,CA
-91382,5256,Valencia,CA,56,Los Angeles,CA
-91383,5256,Valencia,CA,56,Los Angeles,CA
-91384,5256,Valencia,CA,56,Los Angeles,CA
-91385,5256,Valencia,CA,56,Los Angeles,CA
-91386,5256,Valencia,CA,56,Los Angeles,CA
-91387,5256,Valencia,CA,56,Los Angeles,CA
-91390,5256,Valencia,CA,56,Los Angeles,CA
-91392,5139,Mission Hills,CA,56,Los Angeles,CA
-91393,5258,Van Nuys,CA,56,Los Angeles,CA
-91394,5086,Granada Hills,CA,56,Los Angeles,CA
-91395,5139,Mission Hills,CA,56,Los Angeles,CA
-91396,5032,Canoga Park,CA,56,Los Angeles,CA
-91401,5258,Van Nuys,CA,56,Los Angeles,CA
-91402,5171,Panorama City,CA,56,Los Angeles,CA
-91403,5258,Van Nuys,CA,56,Los Angeles,CA
-91404,5258,Van Nuys,CA,56,Los Angeles,CA
-91405,5258,Van Nuys,CA,56,Los Angeles,CA
-91406,5258,Van Nuys,CA,56,Los Angeles,CA
-91407,5258,Van Nuys,CA,56,Los Angeles,CA
-91408,5258,Van Nuys,CA,56,Los Angeles,CA
-91409,5258,Van Nuys,CA,56,Los Angeles,CA
-91410,5258,Van Nuys,CA,56,Los Angeles,CA
-91411,5258,Van Nuys,CA,56,Los Angeles,CA
-91412,5171,Panorama City,CA,56,Los Angeles,CA
-91413,5258,Van Nuys,CA,56,Los Angeles,CA
-91416,5244,Tarzana,CA,56,Los Angeles,CA
-91423,5028,Burbank,CA,56,Los Angeles,CA
-91426,5244,Tarzana,CA,56,Los Angeles,CA
-91436,5064,Encino,CA,56,Los Angeles,CA
-91470,5258,Van Nuys,CA,56,Los Angeles,CA
-91482,5258,Van Nuys,CA,56,Los Angeles,CA
-91495,5258,Van Nuys,CA,56,Los Angeles,CA
-91496,5258,Van Nuys,CA,56,Los Angeles,CA
-91499,5258,Van Nuys,CA,56,Los Angeles,CA
-91501,5028,Burbank,CA,56,Los Angeles,CA
-91502,5028,Burbank,CA,56,Los Angeles,CA
-91503,5028,Burbank,CA,56,Los Angeles,CA
-91504,5028,Burbank,CA,56,Los Angeles,CA
-91505,5028,Burbank,CA,56,Los Angeles,CA
-91506,5028,Burbank,CA,56,Los Angeles,CA
-91507,5028,Burbank,CA,56,Los Angeles,CA
-91508,5028,Burbank,CA,56,Los Angeles,CA
-91510,5028,Burbank,CA,56,Los Angeles,CA
-91521,5028,Burbank,CA,56,Los Angeles,CA
-91522,5028,Burbank,CA,56,Los Angeles,CA
-91523,5028,Burbank,CA,56,Los Angeles,CA
-91526,5028,Burbank,CA,56,Los Angeles,CA
-91601,5028,Burbank,CA,56,Los Angeles,CA
-91602,5028,Burbank,CA,56,Los Angeles,CA
-91603,5028,Burbank,CA,56,Los Angeles,CA
-91604,5028,Burbank,CA,56,Los Angeles,CA
-91605,5171,Panorama City,CA,56,Los Angeles,CA
-91606,5028,Burbank,CA,56,Los Angeles,CA
-91607,5028,Burbank,CA,56,Los Angeles,CA
-91608,5126,Los Angeles,CA,56,Los Angeles,CA
-91609,5028,Burbank,CA,56,Los Angeles,CA
-91610,5028,Burbank,CA,56,Los Angeles,CA
-91611,5028,Burbank,CA,56,Los Angeles,CA
-91612,5028,Burbank,CA,56,Los Angeles,CA
-91614,5028,Burbank,CA,56,Los Angeles,CA
-91615,5171,Panorama City,CA,56,Los Angeles,CA
-91616,5028,Burbank,CA,56,Los Angeles,CA
-91617,5028,Burbank,CA,56,Los Angeles,CA
-91618,5126,Los Angeles,CA,56,Los Angeles,CA
-91701,5254,Upland,CA,79,San Bernardino,CA
-91702,5085,Glendora,CA,56,Los Angeles,CA
-91706,5265,West Covina,CA,56,Los Angeles,CA
-91708,5038,Chino,CA,79,San Bernardino,CA
-91709,5038,Chino,CA,79,San Bernardino,CA
-91710,5038,Chino,CA,79,San Bernardino,CA
-91711,5183,Pomona,CA,56,Los Angeles,CA
-91714,5270,Whittier,CA,56,Los Angeles,CA
-91715,5270,Whittier,CA,56,Los Angeles,CA
-91716,5270,Whittier,CA,56,Los Angeles,CA
-91722,5050,Covina,CA,56,Los Angeles,CA
-91723,5050,Covina,CA,56,Los Angeles,CA
-91724,5050,Covina,CA,56,Los Angeles,CA
-91729,5254,Upland,CA,79,San Bernardino,CA
-91730,5254,Upland,CA,79,San Bernardino,CA
-91731,5007,Arcadia,CA,56,Los Angeles,CA
-91732,5007,Arcadia,CA,56,Los Angeles,CA
-91733,5233,South El Monte,CA,56,Los Angeles,CA
-91734,5007,Arcadia,CA,56,Los Angeles,CA
-91735,5007,Arcadia,CA,56,Los Angeles,CA
-91737,5254,Upland,CA,79,San Bernardino,CA
-91739,5254,Upland,CA,79,San Bernardino,CA
-91740,5085,Glendora,CA,56,Los Angeles,CA
-91741,5085,Glendora,CA,56,Los Angeles,CA
-91743,5254,Upland,CA,79,San Bernardino,CA
-91744,5265,West Covina,CA,56,Los Angeles,CA
-91745,5270,Whittier,CA,56,Los Angeles,CA
-91746,5265,West Covina,CA,56,Los Angeles,CA
-91747,5265,West Covina,CA,56,Los Angeles,CA
-91748,5270,Whittier,CA,56,Los Angeles,CA
-91749,5270,Whittier,CA,56,Los Angeles,CA
-91750,5183,Pomona,CA,56,Los Angeles,CA
-91752,5198,Riverside,CA,79,San Bernardino,CA
-91754,5146,Monterey Park,CA,56,Los Angeles,CA
-91755,5146,Monterey Park,CA,56,Los Angeles,CA
-91756,5146,Monterey Park,CA,56,Los Angeles,CA
-91758,5254,Upland,CA,79,San Bernardino,CA
-91759,5254,Upland,CA,79,San Bernardino,CA
-91761,5254,Upland,CA,79,San Bernardino,CA
-91762,5254,Upland,CA,79,San Bernardino,CA
-91763,5183,Pomona,CA,56,Los Angeles,CA
-91764,5254,Upland,CA,79,San Bernardino,CA
-91765,5183,Pomona,CA,56,Los Angeles,CA
-91766,5183,Pomona,CA,56,Los Angeles,CA
-91767,5183,Pomona,CA,56,Los Angeles,CA
-91768,5183,Pomona,CA,56,Los Angeles,CA
-91769,5183,Pomona,CA,56,Los Angeles,CA
-91770,5209,San Gabriel,CA,56,Los Angeles,CA
-91771,5209,San Gabriel,CA,56,Los Angeles,CA
-91772,5209,San Gabriel,CA,56,Los Angeles,CA
-91773,5206,San Dimas,CA,56,Los Angeles,CA
-91775,5209,San Gabriel,CA,56,Los Angeles,CA
-91776,5209,San Gabriel,CA,56,Los Angeles,CA
-91778,5209,San Gabriel,CA,56,Los Angeles,CA
-91780,5007,Arcadia,CA,56,Los Angeles,CA
-91784,5254,Upland,CA,79,San Bernardino,CA
-91785,5254,Upland,CA,79,San Bernardino,CA
-91786,5254,Upland,CA,79,San Bernardino,CA
-91788,5265,West Covina,CA,56,Los Angeles,CA
-91789,5265,West Covina,CA,56,Los Angeles,CA
-91790,5265,West Covina,CA,56,Los Angeles,CA
-91791,5050,Covina,CA,56,Los Angeles,CA
-91792,5265,West Covina,CA,56,Los Angeles,CA
-91793,5265,West Covina,CA,56,Los Angeles,CA
-91801,5209,San Gabriel,CA,56,Los Angeles,CA
-91802,5209,San Gabriel,CA,56,Los Angeles,CA
-91803,5209,San Gabriel,CA,56,Los Angeles,CA
-91804,5209,San Gabriel,CA,56,Los Angeles,CA
-91896,5209,San Gabriel,CA,56,Los Angeles,CA
-91899,5209,San Gabriel,CA,56,Los Angeles,CA
-91901,5109,La Mesa,CA,80,San Diego,CA
-91902,5040,Chula Vista,CA,80,San Diego,CA
-91903,5109,La Mesa,CA,80,San Diego,CA
-91905,5109,La Mesa,CA,80,San Diego,CA
-91906,5109,La Mesa,CA,80,San Diego,CA
-91908,5040,Chula Vista,CA,80,San Diego,CA
-91909,5040,Chula Vista,CA,80,San Diego,CA
-91910,5040,Chula Vista,CA,80,San Diego,CA
-91911,5040,Chula Vista,CA,80,San Diego,CA
-91912,5040,Chula Vista,CA,80,San Diego,CA
-91913,5040,Chula Vista,CA,80,San Diego,CA
-91914,5109,La Mesa,CA,80,San Diego,CA
-91915,5040,Chula Vista,CA,80,San Diego,CA
-91916,5109,La Mesa,CA,80,San Diego,CA
-91917,5109,La Mesa,CA,80,San Diego,CA
-91921,5040,Chula Vista,CA,80,San Diego,CA
-91931,5109,La Mesa,CA,80,San Diego,CA
-91932,5040,Chula Vista,CA,80,San Diego,CA
-91933,5040,Chula Vista,CA,80,San Diego,CA
-91934,5109,La Mesa,CA,80,San Diego,CA
-91935,5109,La Mesa,CA,80,San Diego,CA
-91941,5109,La Mesa,CA,80,San Diego,CA
-91942,5109,La Mesa,CA,80,San Diego,CA
-91943,5109,La Mesa,CA,80,San Diego,CA
-91944,5109,La Mesa,CA,80,San Diego,CA
-91945,5205,San Diego,CA,80,San Diego,CA
-91946,5205,San Diego,CA,80,San Diego,CA
-91948,5109,La Mesa,CA,80,San Diego,CA
-91950,5151,National City,CA,80,San Diego,CA
-91951,5151,National City,CA,80,San Diego,CA
-91962,5109,La Mesa,CA,80,San Diego,CA
-91963,5109,La Mesa,CA,80,San Diego,CA
-91976,5109,La Mesa,CA,80,San Diego,CA
-91977,5109,La Mesa,CA,80,San Diego,CA
-91978,5109,La Mesa,CA,80,San Diego,CA
-91979,5109,La Mesa,CA,80,San Diego,CA
-91980,5040,Chula Vista,CA,80,San Diego,CA
-91987,5040,Chula Vista,CA,80,San Diego,CA
-92003,5162,Oceanside,CA,80,San Diego,CA
-92004,5065,Escondido,CA,80,San Diego,CA
-92007,5063,Encinitas,CA,80,San Diego,CA
-92008,5162,Oceanside,CA,80,San Diego,CA
-92009,5063,Encinitas,CA,80,San Diego,CA
-92010,5162,Oceanside,CA,80,San Diego,CA
-92011,5063,Encinitas,CA,80,San Diego,CA
-92013,5063,Encinitas,CA,80,San Diego,CA
-92014,5108,La Jolla,CA,80,San Diego,CA
-92018,5162,Oceanside,CA,80,San Diego,CA
-92019,5109,La Mesa,CA,80,San Diego,CA
-92020,5109,La Mesa,CA,80,San Diego,CA
-92021,5109,La Mesa,CA,80,San Diego,CA
-92022,5109,La Mesa,CA,80,San Diego,CA
-92023,5063,Encinitas,CA,80,San Diego,CA
-92024,5063,Encinitas,CA,80,San Diego,CA
-92025,5065,Escondido,CA,80,San Diego,CA
-92026,5065,Escondido,CA,80,San Diego,CA
-92027,5065,Escondido,CA,80,San Diego,CA
-92028,5070,Fallbrook,CA,80,San Diego,CA
-92029,5065,Escondido,CA,80,San Diego,CA
-92030,5065,Escondido,CA,80,San Diego,CA
-92033,5065,Escondido,CA,80,San Diego,CA
-92036,5187,Poway,CA,80,San Diego,CA
-92037,5108,La Jolla,CA,80,San Diego,CA
-92038,5108,La Jolla,CA,80,San Diego,CA
-92039,5108,La Jolla,CA,80,San Diego,CA
-92040,5109,La Mesa,CA,80,San Diego,CA
-92046,5065,Escondido,CA,80,San Diego,CA
-92049,5162,Oceanside,CA,80,San Diego,CA
-92051,5162,Oceanside,CA,80,San Diego,CA
-92052,5162,Oceanside,CA,80,San Diego,CA
-92054,5162,Oceanside,CA,80,San Diego,CA
-92055,5204,San Clemente,CA,23,Orange County,CA
-92056,5162,Oceanside,CA,80,San Diego,CA
-92057,5162,Oceanside,CA,80,San Diego,CA
-92058,5162,Oceanside,CA,80,San Diego,CA
-92059,5065,Escondido,CA,80,San Diego,CA
-92060,5097,Hemet,CA,79,San Bernardino,CA
-92061,5065,Escondido,CA,80,San Diego,CA
-92064,5187,Poway,CA,80,San Diego,CA
-92065,5187,Poway,CA,80,San Diego,CA
-92066,5065,Escondido,CA,80,San Diego,CA
-92067,5108,La Jolla,CA,80,San Diego,CA
-92068,5162,Oceanside,CA,80,San Diego,CA
-92069,5162,Oceanside,CA,80,San Diego,CA
-92070,5065,Escondido,CA,80,San Diego,CA
-92071,5109,La Mesa,CA,80,San Diego,CA
-92072,5109,La Mesa,CA,80,San Diego,CA
-92074,5187,Poway,CA,80,San Diego,CA
-92075,5108,La Jolla,CA,80,San Diego,CA
-92078,5162,Oceanside,CA,80,San Diego,CA
-92079,5162,Oceanside,CA,80,San Diego,CA
-92081,5162,Oceanside,CA,80,San Diego,CA
-92082,5065,Escondido,CA,80,San Diego,CA
-92083,5162,Oceanside,CA,80,San Diego,CA
-92084,5162,Oceanside,CA,80,San Diego,CA
-92085,5162,Oceanside,CA,80,San Diego,CA
-92086,5065,Escondido,CA,80,San Diego,CA
-92088,5070,Fallbrook,CA,80,San Diego,CA
-92091,5108,La Jolla,CA,80,San Diego,CA
-92092,5108,La Jolla,CA,80,San Diego,CA
-92093,5108,La Jolla,CA,80,San Diego,CA
-92096,5162,Oceanside,CA,80,San Diego,CA
-92101,5205,San Diego,CA,80,San Diego,CA
-92102,5205,San Diego,CA,80,San Diego,CA
-92103,5205,San Diego,CA,80,San Diego,CA
-92104,5205,San Diego,CA,80,San Diego,CA
-92105,5205,San Diego,CA,80,San Diego,CA
-92106,5205,San Diego,CA,80,San Diego,CA
-92107,5205,San Diego,CA,80,San Diego,CA
-92108,5205,San Diego,CA,80,San Diego,CA
-92109,5205,San Diego,CA,80,San Diego,CA
-92110,5205,San Diego,CA,80,San Diego,CA
-92111,5205,San Diego,CA,80,San Diego,CA
-92112,5205,San Diego,CA,80,San Diego,CA
-92113,5205,San Diego,CA,80,San Diego,CA
-92114,5205,San Diego,CA,80,San Diego,CA
-92115,5205,San Diego,CA,80,San Diego,CA
-92116,5205,San Diego,CA,80,San Diego,CA
-92117,5205,San Diego,CA,80,San Diego,CA
-92118,5048,Coronado,CA,80,San Diego,CA
-92119,5205,San Diego,CA,80,San Diego,CA
-92120,5205,San Diego,CA,80,San Diego,CA
-92121,5108,La Jolla,CA,80,San Diego,CA
-92122,5108,La Jolla,CA,80,San Diego,CA
-92123,5205,San Diego,CA,80,San Diego,CA
-92124,5205,San Diego,CA,80,San Diego,CA
-92126,5205,San Diego,CA,80,San Diego,CA
-92127,5187,Poway,CA,80,San Diego,CA
-92128,5187,Poway,CA,80,San Diego,CA
-92129,5205,San Diego,CA,80,San Diego,CA
-92130,5108,La Jolla,CA,80,San Diego,CA
-92131,5205,San Diego,CA,80,San Diego,CA
-92132,5205,San Diego,CA,80,San Diego,CA
-92134,5205,San Diego,CA,80,San Diego,CA
-92135,5048,Coronado,CA,80,San Diego,CA
-92136,5205,San Diego,CA,80,San Diego,CA
-92137,5205,San Diego,CA,80,San Diego,CA
-92138,5205,San Diego,CA,80,San Diego,CA
-92139,5205,San Diego,CA,80,San Diego,CA
-92140,5205,San Diego,CA,80,San Diego,CA
-92142,5205,San Diego,CA,80,San Diego,CA
-92143,5040,Chula Vista,CA,80,San Diego,CA
-92145,5205,San Diego,CA,80,San Diego,CA
-92147,5205,San Diego,CA,80,San Diego,CA
-92149,5205,San Diego,CA,80,San Diego,CA
-92150,5187,Poway,CA,80,San Diego,CA
-92152,5205,San Diego,CA,80,San Diego,CA
-92153,5040,Chula Vista,CA,80,San Diego,CA
-92154,5040,Chula Vista,CA,80,San Diego,CA
-92155,5048,Coronado,CA,80,San Diego,CA
-92158,5109,La Mesa,CA,80,San Diego,CA
-92159,5205,San Diego,CA,80,San Diego,CA
-92160,5205,San Diego,CA,80,San Diego,CA
-92161,5108,La Jolla,CA,80,San Diego,CA
-92163,5205,San Diego,CA,80,San Diego,CA
-92165,5205,San Diego,CA,80,San Diego,CA
-92166,5205,San Diego,CA,80,San Diego,CA
-92167,5205,San Diego,CA,80,San Diego,CA
-92168,5205,San Diego,CA,80,San Diego,CA
-92169,5205,San Diego,CA,80,San Diego,CA
-92170,5205,San Diego,CA,80,San Diego,CA
-92171,5205,San Diego,CA,80,San Diego,CA
-92172,5205,San Diego,CA,80,San Diego,CA
-92173,5040,Chula Vista,CA,80,San Diego,CA
-92174,5205,San Diego,CA,80,San Diego,CA
-92175,5205,San Diego,CA,80,San Diego,CA
-92176,5205,San Diego,CA,80,San Diego,CA
-92177,5205,San Diego,CA,80,San Diego,CA
-92178,5048,Coronado,CA,80,San Diego,CA
-92179,5040,Chula Vista,CA,80,San Diego,CA
-92182,5205,San Diego,CA,80,San Diego,CA
-92186,5205,San Diego,CA,80,San Diego,CA
-92187,5205,San Diego,CA,80,San Diego,CA
-92191,5108,La Jolla,CA,80,San Diego,CA
-92192,5108,La Jolla,CA,80,San Diego,CA
-92193,5205,San Diego,CA,80,San Diego,CA
-92195,5205,San Diego,CA,80,San Diego,CA
-92196,5205,San Diego,CA,80,San Diego,CA
-92197,5187,Poway,CA,80,San Diego,CA
-92198,5187,Poway,CA,80,San Diego,CA
-92199,5187,Poway,CA,80,San Diego,CA
-92201,5102,Indio,CA,80,San Diego,CA
-92202,5102,Indio,CA,80,San Diego,CA
-92203,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92210,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92211,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92220,5017,Banning,CA,79,San Bernardino,CA
-92222,3037,Yuma,AZ,12,Phoenix,AZ
-92223,5017,Banning,CA,79,San Bernardino,CA
-92225,5023,Blythe,CA,12,Phoenix,AZ
-92226,5023,Blythe,CA,12,Phoenix,AZ
-92227,5024,Brawley,CA,80,San Diego,CA
-92230,5017,Banning,CA,79,San Bernardino,CA
-92231,5062,El Centro,CA,80,San Diego,CA
-92232,5062,El Centro,CA,80,San Diego,CA
-92233,5024,Brawley,CA,80,San Diego,CA
-92234,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92235,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92236,5102,Indio,CA,80,San Diego,CA
-92239,5102,Indio,CA,80,San Diego,CA
-92240,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92241,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92242,3020,Parker,AZ,12,Phoenix,AZ
-92243,5062,El Centro,CA,80,San Diego,CA
-92244,5062,El Centro,CA,80,San Diego,CA
-92247,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92248,5102,Indio,CA,80,San Diego,CA
-92249,5062,El Centro,CA,80,San Diego,CA
-92250,5062,El Centro,CA,80,San Diego,CA
-92251,5062,El Centro,CA,80,San Diego,CA
-92252,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92253,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92254,5102,Indio,CA,80,San Diego,CA
-92255,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92256,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92257,5024,Brawley,CA,80,San Diego,CA
-92258,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92259,5102,Indio,CA,80,San Diego,CA
-92260,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92261,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92262,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92263,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92264,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92266,3037,Yuma,AZ,12,Phoenix,AZ
-92267,3015,Lake Havasu City,AZ,12,Phoenix,AZ
-92268,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92270,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92273,5062,El Centro,CA,80,San Diego,CA
-92274,5102,Indio,CA,80,San Diego,CA
-92275,5102,Indio,CA,80,San Diego,CA
-92276,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92277,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92278,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92280,5152,Needles,CA,279,Las Vegas,NV
-92281,5024,Brawley,CA,80,San Diego,CA
-92282,5168,Palm Springs,CA,69,Palm Springs/Rancho Mira,CA
-92283,3037,Yuma,AZ,12,Phoenix,AZ
-92284,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92285,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92286,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92301,5260,Victorville,CA,79,San Bernardino,CA
-92304,5105,Joshua Tree,CA,69,Palm Springs/Rancho Mira,CA
-92305,5021,Big Bear Lake,CA,79,San Bernardino,CA
-92307,5006,Apple Valley,CA,79,San Bernardino,CA
-92308,5006,Apple Valley,CA,79,San Bernardino,CA
-92309,5018,Barstow,CA,79,San Bernardino,CA
-92310,5018,Barstow,CA,79,San Bernardino,CA
-92311,5018,Barstow,CA,79,San Bernardino,CA
-92312,5018,Barstow,CA,79,San Bernardino,CA
-92313,5121,Loma Linda,CA,79,San Bernardino,CA
-92314,5021,Big Bear Lake,CA,79,San Bernardino,CA
-92315,5021,Big Bear Lake,CA,79,San Bernardino,CA
-92316,5072,Fontana,CA,79,San Bernardino,CA
-92317,5203,San Bernardino,CA,79,San Bernardino,CA
-92318,5121,Loma Linda,CA,79,San Bernardino,CA
-92320,5192,Redlands,CA,79,San Bernardino,CA
-92321,5203,San Bernardino,CA,79,San Bernardino,CA
-92322,5203,San Bernardino,CA,79,San Bernardino,CA
-92323,29010,Las Vegas,NV,279,Las Vegas,NV
-92324,5121,Loma Linda,CA,79,San Bernardino,CA
-92325,5203,San Bernardino,CA,79,San Bernardino,CA
-92327,5018,Barstow,CA,79,San Bernardino,CA
-92328,29010,Las Vegas,NV,279,Las Vegas,NV
-92329,5260,Victorville,CA,79,San Bernardino,CA
-92331,5198,Riverside,CA,79,San Bernardino,CA
-92332,5152,Needles,CA,279,Las Vegas,NV
-92333,5021,Big Bear Lake,CA,79,San Bernardino,CA
-92334,5072,Fontana,CA,79,San Bernardino,CA
-92335,5072,Fontana,CA,79,San Bernardino,CA
-92336,5072,Fontana,CA,79,San Bernardino,CA
-92337,5198,Riverside,CA,79,San Bernardino,CA
-92338,5018,Barstow,CA,79,San Bernardino,CA
-92339,5192,Redlands,CA,79,San Bernardino,CA
-92340,5260,Victorville,CA,79,San Bernardino,CA
-92341,5021,Big Bear Lake,CA,79,San Bernardino,CA
-92342,5006,Apple Valley,CA,79,San Bernardino,CA
-92344,5260,Victorville,CA,79,San Bernardino,CA
-92345,5260,Victorville,CA,79,San Bernardino,CA
-92346,5203,San Bernardino,CA,79,San Bernardino,CA
-92347,5018,Barstow,CA,79,San Bernardino,CA
-92350,5121,Loma Linda,CA,79,San Bernardino,CA
-92352,5203,San Bernardino,CA,79,San Bernardino,CA
-92354,5121,Loma Linda,CA,79,San Bernardino,CA
-92356,5006,Apple Valley,CA,79,San Bernardino,CA
-92357,5121,Loma Linda,CA,79,San Bernardino,CA
-92358,5203,San Bernardino,CA,79,San Bernardino,CA
-92359,5192,Redlands,CA,79,San Bernardino,CA
-92363,5152,Needles,CA,279,Las Vegas,NV
-92364,29010,Las Vegas,NV,279,Las Vegas,NV
-92365,5018,Barstow,CA,79,San Bernardino,CA
-92366,29010,Las Vegas,NV,279,Las Vegas,NV
-92368,5260,Victorville,CA,79,San Bernardino,CA
-92369,5203,San Bernardino,CA,79,San Bernardino,CA
-92371,5260,Victorville,CA,79,San Bernardino,CA
-92372,5260,Victorville,CA,79,San Bernardino,CA
-92373,5192,Redlands,CA,79,San Bernardino,CA
-92374,5192,Redlands,CA,79,San Bernardino,CA
-92375,5192,Redlands,CA,79,San Bernardino,CA
-92376,5203,San Bernardino,CA,79,San Bernardino,CA
-92377,5203,San Bernardino,CA,79,San Bernardino,CA
-92378,5203,San Bernardino,CA,79,San Bernardino,CA
-92382,5021,Big Bear Lake,CA,79,San Bernardino,CA
-92384,29010,Las Vegas,NV,279,Las Vegas,NV
-92385,5203,San Bernardino,CA,79,San Bernardino,CA
-92386,5021,Big Bear Lake,CA,79,San Bernardino,CA
-92389,29010,Las Vegas,NV,279,Las Vegas,NV
-92391,5203,San Bernardino,CA,79,San Bernardino,CA
-92392,5260,Victorville,CA,79,San Bernardino,CA
-92393,5260,Victorville,CA,79,San Bernardino,CA
-92394,5260,Victorville,CA,79,San Bernardino,CA
-92395,5260,Victorville,CA,79,San Bernardino,CA
-92397,5260,Victorville,CA,79,San Bernardino,CA
-92398,5018,Barstow,CA,79,San Bernardino,CA
-92399,5192,Redlands,CA,79,San Bernardino,CA
-92401,5203,San Bernardino,CA,79,San Bernardino,CA
-92402,5203,San Bernardino,CA,79,San Bernardino,CA
-92403,5203,San Bernardino,CA,79,San Bernardino,CA
-92404,5203,San Bernardino,CA,79,San Bernardino,CA
-92405,5203,San Bernardino,CA,79,San Bernardino,CA
-92406,5203,San Bernardino,CA,79,San Bernardino,CA
-92407,5203,San Bernardino,CA,79,San Bernardino,CA
-92408,5203,San Bernardino,CA,79,San Bernardino,CA
-92410,5203,San Bernardino,CA,79,San Bernardino,CA
-92411,5203,San Bernardino,CA,79,San Bernardino,CA
-92413,5203,San Bernardino,CA,79,San Bernardino,CA
-92415,5203,San Bernardino,CA,79,San Bernardino,CA
-92418,5203,San Bernardino,CA,79,San Bernardino,CA
-92423,5203,San Bernardino,CA,79,San Bernardino,CA
-92427,5203,San Bernardino,CA,79,San Bernardino,CA
-92501,5198,Riverside,CA,79,San Bernardino,CA
-92502,5198,Riverside,CA,79,San Bernardino,CA
-92503,5198,Riverside,CA,79,San Bernardino,CA
-92504,5198,Riverside,CA,79,San Bernardino,CA
-92505,5198,Riverside,CA,79,San Bernardino,CA
-92506,5198,Riverside,CA,79,San Bernardino,CA
-92507,5198,Riverside,CA,79,San Bernardino,CA
-92508,5198,Riverside,CA,79,San Bernardino,CA
-92509,5198,Riverside,CA,79,San Bernardino,CA
-92513,5198,Riverside,CA,79,San Bernardino,CA
-92514,5198,Riverside,CA,79,San Bernardino,CA
-92516,5198,Riverside,CA,79,San Bernardino,CA
-92517,5198,Riverside,CA,79,San Bernardino,CA
-92518,5198,Riverside,CA,79,San Bernardino,CA
-92519,5198,Riverside,CA,79,San Bernardino,CA
-92521,5198,Riverside,CA,79,San Bernardino,CA
-92522,5198,Riverside,CA,79,San Bernardino,CA
-92530,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92531,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92532,5289,Sun City,CA,79,San Bernardino,CA
-92536,5097,Hemet,CA,79,San Bernardino,CA
-92539,5189,Rancho Mirage,CA,69,Palm Springs/Rancho Mira,CA
-92543,5097,Hemet,CA,79,San Bernardino,CA
-92544,5097,Hemet,CA,79,San Bernardino,CA
-92545,5097,Hemet,CA,79,San Bernardino,CA
-92546,5097,Hemet,CA,79,San Bernardino,CA
-92548,5097,Hemet,CA,79,San Bernardino,CA
-92549,5097,Hemet,CA,79,San Bernardino,CA
-92551,5198,Riverside,CA,79,San Bernardino,CA
-92552,5198,Riverside,CA,79,San Bernardino,CA
-92553,5198,Riverside,CA,79,San Bernardino,CA
-92554,5198,Riverside,CA,79,San Bernardino,CA
-92555,5198,Riverside,CA,79,San Bernardino,CA
-92556,5198,Riverside,CA,79,San Bernardino,CA
-92557,5198,Riverside,CA,79,San Bernardino,CA
-92561,5097,Hemet,CA,79,San Bernardino,CA
-92562,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92563,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92564,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92567,5198,Riverside,CA,79,San Bernardino,CA
-92570,5198,Riverside,CA,79,San Bernardino,CA
-92571,5198,Riverside,CA,79,San Bernardino,CA
-92572,5198,Riverside,CA,79,San Bernardino,CA
-92581,5097,Hemet,CA,79,San Bernardino,CA
-92582,5097,Hemet,CA,79,San Bernardino,CA
-92583,5097,Hemet,CA,79,San Bernardino,CA
-92584,5289,Sun City,CA,79,San Bernardino,CA
-92585,5289,Sun City,CA,79,San Bernardino,CA
-92586,5289,Sun City,CA,79,San Bernardino,CA
-92587,5289,Sun City,CA,79,San Bernardino,CA
-92589,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92590,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92591,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92592,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92593,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92595,5271,Wildomar/Murrieta,CA,80,San Diego,CA
-92596,5097,Hemet,CA,79,San Bernardino,CA
-92599,5198,Riverside,CA,79,San Bernardino,CA
-92602,5218,Santa Ana,CA,23,Orange County,CA
-92603,5155,Newport Beach,CA,23,Orange County,CA
-92604,5282,Irvine,CA,23,Orange County,CA
-92605,5100,Huntington Beach,CA,23,Orange County,CA
-92606,5282,Irvine,CA,23,Orange County,CA
-92607,5234,South Laguna,CA,23,Orange County,CA
-92609,5112,Laguna Hills,CA,23,Orange County,CA
-92610,5112,Laguna Hills,CA,23,Orange County,CA
-92612,5155,Newport Beach,CA,23,Orange County,CA
-92614,5282,Irvine,CA,23,Orange County,CA
-92615,5155,Newport Beach,CA,23,Orange County,CA
-92616,5155,Newport Beach,CA,23,Orange County,CA
-92617,5155,Newport Beach,CA,23,Orange County,CA
-92618,5282,Irvine,CA,23,Orange County,CA
-92619,5282,Irvine,CA,23,Orange County,CA
-92620,5282,Irvine,CA,23,Orange County,CA
-92623,5282,Irvine,CA,23,Orange County,CA
-92624,5204,San Clemente,CA,23,Orange County,CA
-92625,5155,Newport Beach,CA,23,Orange County,CA
-92626,5155,Newport Beach,CA,23,Orange County,CA
-92627,5155,Newport Beach,CA,23,Orange County,CA
-92628,5155,Newport Beach,CA,23,Orange County,CA
-92629,5234,South Laguna,CA,23,Orange County,CA
-92630,5112,Laguna Hills,CA,23,Orange County,CA
-92637,5112,Laguna Hills,CA,23,Orange County,CA
-92646,5155,Newport Beach,CA,23,Orange County,CA
-92647,5100,Huntington Beach,CA,23,Orange County,CA
-92648,5100,Huntington Beach,CA,23,Orange County,CA
-92649,5100,Huntington Beach,CA,23,Orange County,CA
-92650,5282,Irvine,CA,23,Orange County,CA
-92651,5234,South Laguna,CA,23,Orange County,CA
-92652,5234,South Laguna,CA,23,Orange County,CA
-92653,5112,Laguna Hills,CA,23,Orange County,CA
-92654,5112,Laguna Hills,CA,23,Orange County,CA
-92655,5075,Fountain Valley,CA,23,Orange County,CA
-92656,5112,Laguna Hills,CA,23,Orange County,CA
-92657,5155,Newport Beach,CA,23,Orange County,CA
-92658,5155,Newport Beach,CA,23,Orange County,CA
-92659,5155,Newport Beach,CA,23,Orange County,CA
-92660,5155,Newport Beach,CA,23,Orange County,CA
-92661,5155,Newport Beach,CA,23,Orange County,CA
-92662,5155,Newport Beach,CA,23,Orange County,CA
-92663,5155,Newport Beach,CA,23,Orange County,CA
-92672,5204,San Clemente,CA,23,Orange County,CA
-92673,5204,San Clemente,CA,23,Orange County,CA
-92674,5204,San Clemente,CA,23,Orange County,CA
-92675,5140,Mission Viejo,CA,23,Orange County,CA
-92676,5218,Santa Ana,CA,23,Orange County,CA
-92677,5234,South Laguna,CA,23,Orange County,CA
-92678,5218,Santa Ana,CA,23,Orange County,CA
-92679,5140,Mission Viejo,CA,23,Orange County,CA
-92683,5075,Fountain Valley,CA,23,Orange County,CA
-92684,5075,Fountain Valley,CA,23,Orange County,CA
-92685,5075,Fountain Valley,CA,23,Orange County,CA
-92688,5140,Mission Viejo,CA,23,Orange County,CA
-92690,5140,Mission Viejo,CA,23,Orange County,CA
-92691,5140,Mission Viejo,CA,23,Orange County,CA
-92692,5140,Mission Viejo,CA,23,Orange County,CA
-92693,5140,Mission Viejo,CA,23,Orange County,CA
-92694,5140,Mission Viejo,CA,23,Orange County,CA
-92697,5155,Newport Beach,CA,23,Orange County,CA
-92698,5112,Laguna Hills,CA,23,Orange County,CA
-92701,5218,Santa Ana,CA,23,Orange County,CA
-92702,5218,Santa Ana,CA,23,Orange County,CA
-92703,5218,Santa Ana,CA,23,Orange County,CA
-92704,5075,Fountain Valley,CA,23,Orange County,CA
-92705,5218,Santa Ana,CA,23,Orange County,CA
-92706,5165,Orange,CA,23,Orange County,CA
-92707,5218,Santa Ana,CA,23,Orange County,CA
-92708,5075,Fountain Valley,CA,23,Orange County,CA
-92711,5218,Santa Ana,CA,23,Orange County,CA
-92712,5218,Santa Ana,CA,23,Orange County,CA
-92728,5075,Fountain Valley,CA,23,Orange County,CA
-92735,5218,Santa Ana,CA,23,Orange County,CA
-92780,5218,Santa Ana,CA,23,Orange County,CA
-92781,5218,Santa Ana,CA,23,Orange County,CA
-92782,5218,Santa Ana,CA,23,Orange County,CA
-92799,5155,Newport Beach,CA,23,Orange County,CA
-92801,5004,Anaheim,CA,23,Orange County,CA
-92802,5004,Anaheim,CA,23,Orange County,CA
-92803,5004,Anaheim,CA,23,Orange County,CA
-92804,5004,Anaheim,CA,23,Orange County,CA
-92805,5004,Anaheim,CA,23,Orange County,CA
-92806,5004,Anaheim,CA,23,Orange County,CA
-92807,5004,Anaheim,CA,23,Orange County,CA
-92808,5004,Anaheim,CA,23,Orange County,CA
-92809,5004,Anaheim,CA,23,Orange County,CA
-92811,5079,Fullerton,CA,23,Orange County,CA
-92812,5004,Anaheim,CA,23,Orange County,CA
-92814,5004,Anaheim,CA,23,Orange County,CA
-92815,5004,Anaheim,CA,23,Orange County,CA
-92816,5004,Anaheim,CA,23,Orange County,CA
-92817,5004,Anaheim,CA,23,Orange County,CA
-92821,5079,Fullerton,CA,23,Orange County,CA
-92822,5079,Fullerton,CA,23,Orange County,CA
-92823,5079,Fullerton,CA,23,Orange County,CA
-92825,5004,Anaheim,CA,23,Orange County,CA
-92831,5079,Fullerton,CA,23,Orange County,CA
-92832,5079,Fullerton,CA,23,Orange County,CA
-92833,5079,Fullerton,CA,23,Orange County,CA
-92834,5079,Fullerton,CA,23,Orange County,CA
-92835,5079,Fullerton,CA,23,Orange County,CA
-92836,5079,Fullerton,CA,23,Orange County,CA
-92837,5079,Fullerton,CA,23,Orange County,CA
-92838,5079,Fullerton,CA,23,Orange County,CA
-92840,5081,Garden Grove,CA,23,Orange County,CA
-92841,5004,Anaheim,CA,23,Orange County,CA
-92842,5081,Garden Grove,CA,23,Orange County,CA
-92843,5081,Garden Grove,CA,23,Orange County,CA
-92844,5081,Garden Grove,CA,23,Orange County,CA
-92845,5004,Anaheim,CA,23,Orange County,CA
-92846,5004,Anaheim,CA,23,Orange County,CA
-92850,5004,Anaheim,CA,23,Orange County,CA
-92856,5165,Orange,CA,23,Orange County,CA
-92857,5165,Orange,CA,23,Orange County,CA
-92859,5165,Orange,CA,23,Orange County,CA
-92860,5047,Corona,CA,23,Orange County,CA
-92861,5165,Orange,CA,23,Orange County,CA
-92862,5165,Orange,CA,23,Orange County,CA
-92863,5165,Orange,CA,23,Orange County,CA
-92864,5165,Orange,CA,23,Orange County,CA
-92865,5165,Orange,CA,23,Orange County,CA
-92866,5165,Orange,CA,23,Orange County,CA
-92867,5165,Orange,CA,23,Orange County,CA
-92868,5165,Orange,CA,23,Orange County,CA
-92869,5165,Orange,CA,23,Orange County,CA
-92870,5079,Fullerton,CA,23,Orange County,CA
-92871,5079,Fullerton,CA,23,Orange County,CA
-92877,5047,Corona,CA,23,Orange County,CA
-92878,5047,Corona,CA,23,Orange County,CA
-92879,5047,Corona,CA,23,Orange County,CA
-92880,5047,Corona,CA,23,Orange County,CA
-92881,5047,Corona,CA,23,Orange County,CA
-92882,5047,Corona,CA,23,Orange County,CA
-92883,5047,Corona,CA,23,Orange County,CA
-92885,5079,Fullerton,CA,23,Orange County,CA
-92886,5079,Fullerton,CA,23,Orange County,CA
-92887,5079,Fullerton,CA,23,Orange County,CA
-92899,5004,Anaheim,CA,23,Orange County,CA
-93001,5259,Ventura,CA,96,Ventura,CA
-93002,5259,Ventura,CA,96,Ventura,CA
-93003,5259,Ventura,CA,96,Ventura,CA
-93004,5259,Ventura,CA,96,Ventura,CA
-93005,5259,Ventura,CA,96,Ventura,CA
-93006,5259,Ventura,CA,96,Ventura,CA
-93007,5259,Ventura,CA,96,Ventura,CA
-93009,5259,Ventura,CA,96,Ventura,CA
-93010,5031,Camarillo,CA,96,Ventura,CA
-93011,5031,Camarillo,CA,96,Ventura,CA
-93012,5031,Camarillo,CA,96,Ventura,CA
-93013,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93014,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93015,5224,Santa Paula,CA,96,Ventura,CA
-93016,5224,Santa Paula,CA,96,Ventura,CA
-93020,5247,Thousand Oaks,CA,96,Ventura,CA
-93021,5247,Thousand Oaks,CA,96,Ventura,CA
-93022,5259,Ventura,CA,96,Ventura,CA
-93023,5163,Ojai,CA,96,Ventura,CA
-93024,5163,Ojai,CA,96,Ventura,CA
-93030,5167,Oxnard,CA,96,Ventura,CA
-93031,5167,Oxnard,CA,96,Ventura,CA
-93032,5167,Oxnard,CA,96,Ventura,CA
-93033,5167,Oxnard,CA,96,Ventura,CA
-93034,5167,Oxnard,CA,96,Ventura,CA
-93035,5167,Oxnard,CA,96,Ventura,CA
-93036,5167,Oxnard,CA,96,Ventura,CA
-93040,5224,Santa Paula,CA,96,Ventura,CA
-93041,5167,Oxnard,CA,96,Ventura,CA
-93042,5031,Camarillo,CA,96,Ventura,CA
-93043,5167,Oxnard,CA,96,Ventura,CA
-93044,5167,Oxnard,CA,96,Ventura,CA
-93060,5224,Santa Paula,CA,96,Ventura,CA
-93061,5224,Santa Paula,CA,96,Ventura,CA
-93062,5229,Simi Valley,CA,96,Ventura,CA
-93063,5229,Simi Valley,CA,96,Ventura,CA
-93064,5229,Simi Valley,CA,96,Ventura,CA
-93065,5229,Simi Valley,CA,96,Ventura,CA
-93066,5031,Camarillo,CA,96,Ventura,CA
-93067,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93094,5229,Simi Valley,CA,96,Ventura,CA
-93099,5229,Simi Valley,CA,96,Ventura,CA
-93101,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93102,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93103,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93105,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93106,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93107,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93108,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93109,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93110,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93111,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93116,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93117,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93118,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93120,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93121,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93130,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93140,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93150,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93160,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93190,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93199,5219,Santa Barbara,CA,86,Santa Barbara,CA
-93201,5056,Delano,CA,25,Bakersfield,CA
-93202,5091,Hanford,CA,43,Fresno,CA
-93203,5015,Bakersfield,CA,25,Bakersfield,CA
-93204,5091,Hanford,CA,43,Fresno,CA
-93205,5114,Lake Isabella,CA,25,Bakersfield,CA
-93206,5015,Bakersfield,CA,25,Bakersfield,CA
-93207,5251,Tulare,CA,25,Bakersfield,CA
-93208,5185,Porterville,CA,25,Bakersfield,CA
-93210,5043,Coalinga,CA,43,Fresno,CA
-93212,5046,Corcoran,CA,43,Fresno,CA
-93215,5056,Delano,CA,25,Bakersfield,CA
-93216,5056,Delano,CA,25,Bakersfield,CA
-93218,5185,Porterville,CA,25,Bakersfield,CA
-93219,5056,Delano,CA,25,Bakersfield,CA
-93220,5015,Bakersfield,CA,25,Bakersfield,CA
-93221,5261,Visalia,CA,25,Bakersfield,CA
-93222,5256,Valencia,CA,56,Los Angeles,CA
-93223,5261,Visalia,CA,25,Bakersfield,CA
-93224,5015,Bakersfield,CA,25,Bakersfield,CA
-93225,5256,Valencia,CA,56,Los Angeles,CA
-93226,5015,Bakersfield,CA,25,Bakersfield,CA
-93227,5261,Visalia,CA,25,Bakersfield,CA
-93230,5091,Hanford,CA,43,Fresno,CA
-93232,5091,Hanford,CA,43,Fresno,CA
-93234,5091,Hanford,CA,43,Fresno,CA
-93235,5261,Visalia,CA,25,Bakersfield,CA
-93237,5261,Visalia,CA,25,Bakersfield,CA
-93238,5015,Bakersfield,CA,25,Bakersfield,CA
-93239,5091,Hanford,CA,43,Fresno,CA
-93240,5114,Lake Isabella,CA,25,Bakersfield,CA
-93241,5015,Bakersfield,CA,25,Bakersfield,CA
-93242,5091,Hanford,CA,43,Fresno,CA
-93243,5256,Valencia,CA,56,Los Angeles,CA
-93244,5261,Visalia,CA,25,Bakersfield,CA
-93245,5091,Hanford,CA,43,Fresno,CA
-93246,5091,Hanford,CA,43,Fresno,CA
-93247,5118,Lindsay,CA,25,Bakersfield,CA
-93249,5015,Bakersfield,CA,25,Bakersfield,CA
-93250,5056,Delano,CA,25,Bakersfield,CA
-93251,5015,Bakersfield,CA,25,Bakersfield,CA
-93252,5015,Bakersfield,CA,25,Bakersfield,CA
-93254,5222,Santa Maria,CA,86,Santa Barbara,CA
-93255,5114,Lake Isabella,CA,25,Bakersfield,CA
-93256,5251,Tulare,CA,25,Bakersfield,CA
-93257,5185,Porterville,CA,25,Bakersfield,CA
-93258,5185,Porterville,CA,25,Bakersfield,CA
-93260,5015,Bakersfield,CA,25,Bakersfield,CA
-93261,5056,Delano,CA,25,Bakersfield,CA
-93262,5261,Visalia,CA,25,Bakersfield,CA
-93263,5015,Bakersfield,CA,25,Bakersfield,CA
-93265,5185,Porterville,CA,25,Bakersfield,CA
-93266,5091,Hanford,CA,43,Fresno,CA
-93267,5118,Lindsay,CA,25,Bakersfield,CA
-93268,5015,Bakersfield,CA,25,Bakersfield,CA
-93270,5185,Porterville,CA,25,Bakersfield,CA
-93271,5261,Visalia,CA,25,Bakersfield,CA
-93272,5251,Tulare,CA,25,Bakersfield,CA
-93274,5251,Tulare,CA,25,Bakersfield,CA
-93275,5251,Tulare,CA,25,Bakersfield,CA
-93276,5015,Bakersfield,CA,25,Bakersfield,CA
-93277,5261,Visalia,CA,25,Bakersfield,CA
-93278,5261,Visalia,CA,25,Bakersfield,CA
-93279,5261,Visalia,CA,25,Bakersfield,CA
-93280,5015,Bakersfield,CA,25,Bakersfield,CA
-93282,5046,Corcoran,CA,43,Fresno,CA
-93283,5114,Lake Isabella,CA,25,Bakersfield,CA
-93285,5015,Bakersfield,CA,25,Bakersfield,CA
-93286,5261,Visalia,CA,25,Bakersfield,CA
-93287,5015,Bakersfield,CA,25,Bakersfield,CA
-93290,5261,Visalia,CA,25,Bakersfield,CA
-93291,5261,Visalia,CA,25,Bakersfield,CA
-93292,5261,Visalia,CA,25,Bakersfield,CA
-93301,5015,Bakersfield,CA,25,Bakersfield,CA
-93302,5015,Bakersfield,CA,25,Bakersfield,CA
-93303,5015,Bakersfield,CA,25,Bakersfield,CA
-93304,5015,Bakersfield,CA,25,Bakersfield,CA
-93305,5015,Bakersfield,CA,25,Bakersfield,CA
-93306,5015,Bakersfield,CA,25,Bakersfield,CA
-93307,5015,Bakersfield,CA,25,Bakersfield,CA
-93308,5015,Bakersfield,CA,25,Bakersfield,CA
-93309,5015,Bakersfield,CA,25,Bakersfield,CA
-93311,5015,Bakersfield,CA,25,Bakersfield,CA
-93312,5015,Bakersfield,CA,25,Bakersfield,CA
-93313,5015,Bakersfield,CA,25,Bakersfield,CA
-93314,5015,Bakersfield,CA,25,Bakersfield,CA
-93380,5015,Bakersfield,CA,25,Bakersfield,CA
-93383,5015,Bakersfield,CA,25,Bakersfield,CA
-93384,5015,Bakersfield,CA,25,Bakersfield,CA
-93385,5015,Bakersfield,CA,25,Bakersfield,CA
-93386,5015,Bakersfield,CA,25,Bakersfield,CA
-93387,5015,Bakersfield,CA,25,Bakersfield,CA
-93388,5015,Bakersfield,CA,25,Bakersfield,CA
-93389,5015,Bakersfield,CA,25,Bakersfield,CA
-93390,5015,Bakersfield,CA,25,Bakersfield,CA
-93401,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93402,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93403,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93405,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93406,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93407,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93408,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93409,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93410,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93412,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93420,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93421,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93422,5246,Templeton,CA,83,San Luis Obispo,CA
-93423,5246,Templeton,CA,83,San Luis Obispo,CA
-93424,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93426,5246,Templeton,CA,83,San Luis Obispo,CA
-93427,5230,Solvang,CA,86,Santa Barbara,CA
-93428,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93429,5222,Santa Maria,CA,86,Santa Barbara,CA
-93430,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93432,5246,Templeton,CA,83,San Luis Obispo,CA
-93433,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93434,5222,Santa Maria,CA,86,Santa Barbara,CA
-93435,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93436,5122,Lompoc,CA,86,Santa Barbara,CA
-93437,5122,Lompoc,CA,86,Santa Barbara,CA
-93438,5122,Lompoc,CA,86,Santa Barbara,CA
-93440,5122,Lompoc,CA,86,Santa Barbara,CA
-93441,5230,Solvang,CA,86,Santa Barbara,CA
-93442,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93443,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93444,5222,Santa Maria,CA,86,Santa Barbara,CA
-93445,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93446,5246,Templeton,CA,83,San Luis Obispo,CA
-93447,5246,Templeton,CA,83,San Luis Obispo,CA
-93448,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93449,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93450,5106,King City,CA,78,Salinas,CA
-93451,5246,Templeton,CA,83,San Luis Obispo,CA
-93452,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93453,5212,San Luis Obispo,CA,83,San Luis Obispo,CA
-93454,5222,Santa Maria,CA,86,Santa Barbara,CA
-93455,5222,Santa Maria,CA,86,Santa Barbara,CA
-93456,5222,Santa Maria,CA,86,Santa Barbara,CA
-93457,5222,Santa Maria,CA,86,Santa Barbara,CA
-93458,5222,Santa Maria,CA,86,Santa Barbara,CA
-93460,5230,Solvang,CA,86,Santa Barbara,CA
-93461,5246,Templeton,CA,83,San Luis Obispo,CA
-93463,5230,Solvang,CA,86,Santa Barbara,CA
-93464,5230,Solvang,CA,86,Santa Barbara,CA
-93465,5246,Templeton,CA,83,San Luis Obispo,CA
-93475,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93483,5009,Arroyo Grande,CA,83,San Luis Obispo,CA
-93501,5117,Lancaster,CA,56,Los Angeles,CA
-93502,5117,Lancaster,CA,56,Los Angeles,CA
-93504,5117,Lancaster,CA,56,Los Angeles,CA
-93505,5117,Lancaster,CA,56,Los Angeles,CA
-93510,5117,Lancaster,CA,56,Los Angeles,CA
-93512,5022,Bishop,CA,280,Reno,NV
-93513,5022,Bishop,CA,280,Reno,NV
-93514,5022,Bishop,CA,280,Reno,NV
-93515,5022,Bishop,CA,280,Reno,NV
-93516,5117,Lancaster,CA,56,Los Angeles,CA
-93517,29003,Carson City,NV,280,Reno,NV
-93518,5015,Bakersfield,CA,25,Bakersfield,CA
-93519,5117,Lancaster,CA,56,Los Angeles,CA
-93522,5197,Ridgecrest,CA,79,San Bernardino,CA
-93523,5117,Lancaster,CA,56,Los Angeles,CA
-93524,5117,Lancaster,CA,56,Los Angeles,CA
-93526,5022,Bishop,CA,280,Reno,NV
-93527,5197,Ridgecrest,CA,79,San Bernardino,CA
-93528,5197,Ridgecrest,CA,79,San Bernardino,CA
-93529,5132,Mammoth Lakes,CA,280,Reno,NV
-93530,5123,Lone Pine,CA,279,Las Vegas,NV
-93531,5015,Bakersfield,CA,25,Bakersfield,CA
-93532,5117,Lancaster,CA,56,Los Angeles,CA
-93534,5117,Lancaster,CA,56,Los Angeles,CA
-93535,5117,Lancaster,CA,56,Los Angeles,CA
-93536,5117,Lancaster,CA,56,Los Angeles,CA
-93539,5117,Lancaster,CA,56,Los Angeles,CA
-93541,5132,Mammoth Lakes,CA,280,Reno,NV
-93542,5197,Ridgecrest,CA,79,San Bernardino,CA
-93543,5117,Lancaster,CA,56,Los Angeles,CA
-93544,5117,Lancaster,CA,56,Los Angeles,CA
-93545,5123,Lone Pine,CA,279,Las Vegas,NV
-93546,5022,Bishop,CA,280,Reno,NV
-93549,5123,Lone Pine,CA,279,Las Vegas,NV
-93550,5117,Lancaster,CA,56,Los Angeles,CA
-93551,5117,Lancaster,CA,56,Los Angeles,CA
-93552,5117,Lancaster,CA,56,Los Angeles,CA
-93553,5117,Lancaster,CA,56,Los Angeles,CA
-93554,5197,Ridgecrest,CA,79,San Bernardino,CA
-93555,5197,Ridgecrest,CA,79,San Bernardino,CA
-93556,5197,Ridgecrest,CA,79,San Bernardino,CA
-93558,5197,Ridgecrest,CA,79,San Bernardino,CA
-93560,5117,Lancaster,CA,56,Los Angeles,CA
-93561,5015,Bakersfield,CA,25,Bakersfield,CA
-93562,5197,Ridgecrest,CA,79,San Bernardino,CA
-93563,5117,Lancaster,CA,56,Los Angeles,CA
-93581,5015,Bakersfield,CA,25,Bakersfield,CA
-93584,5117,Lancaster,CA,56,Los Angeles,CA
-93586,5117,Lancaster,CA,56,Los Angeles,CA
-93590,5117,Lancaster,CA,56,Los Angeles,CA
-93591,5117,Lancaster,CA,56,Los Angeles,CA
-93592,5197,Ridgecrest,CA,79,San Bernardino,CA
-93596,5117,Lancaster,CA,56,Los Angeles,CA
-93599,5117,Lancaster,CA,56,Los Angeles,CA
-93601,5078,Fresno,CA,43,Fresno,CA
-93602,5078,Fresno,CA,43,Fresno,CA
-93603,5261,Visalia,CA,25,Bakersfield,CA
-93604,5078,Fresno,CA,43,Fresno,CA
-93605,5078,Fresno,CA,43,Fresno,CA
-93606,5078,Fresno,CA,43,Fresno,CA
-93607,5078,Fresno,CA,43,Fresno,CA
-93608,5078,Fresno,CA,43,Fresno,CA
-93609,5078,Fresno,CA,43,Fresno,CA
-93610,5138,Merced,CA,58,Modesto,CA
-93611,5078,Fresno,CA,43,Fresno,CA
-93612,5078,Fresno,CA,43,Fresno,CA
-93613,5078,Fresno,CA,43,Fresno,CA
-93614,5078,Fresno,CA,43,Fresno,CA
-93615,5261,Visalia,CA,25,Bakersfield,CA
-93616,5078,Fresno,CA,43,Fresno,CA
-93618,5057,Dinuba,CA,43,Fresno,CA
-93619,5078,Fresno,CA,43,Fresno,CA
-93620,5138,Merced,CA,58,Modesto,CA
-93621,5078,Fresno,CA,43,Fresno,CA
-93622,5078,Fresno,CA,43,Fresno,CA
-93623,5078,Fresno,CA,43,Fresno,CA
-93624,5091,Hanford,CA,43,Fresno,CA
-93625,5078,Fresno,CA,43,Fresno,CA
-93626,5078,Fresno,CA,43,Fresno,CA
-93627,5078,Fresno,CA,43,Fresno,CA
-93628,5078,Fresno,CA,43,Fresno,CA
-93630,5078,Fresno,CA,43,Fresno,CA
-93631,5227,Selma,CA,43,Fresno,CA
-93633,5078,Fresno,CA,43,Fresno,CA
-93634,5078,Fresno,CA,43,Fresno,CA
-93635,5127,Los Banos,CA,58,Modesto,CA
-93636,5131,Madera,CA,43,Fresno,CA
-93637,5131,Madera,CA,43,Fresno,CA
-93638,5131,Madera,CA,43,Fresno,CA
-93639,5131,Madera,CA,43,Fresno,CA
-93640,5078,Fresno,CA,43,Fresno,CA
-93641,5078,Fresno,CA,43,Fresno,CA
-93642,5078,Fresno,CA,43,Fresno,CA
-93643,5078,Fresno,CA,43,Fresno,CA
-93644,5078,Fresno,CA,43,Fresno,CA
-93645,5078,Fresno,CA,43,Fresno,CA
-93646,5078,Fresno,CA,43,Fresno,CA
-93647,5261,Visalia,CA,25,Bakersfield,CA
-93648,5078,Fresno,CA,43,Fresno,CA
-93649,5078,Fresno,CA,43,Fresno,CA
-93650,5078,Fresno,CA,43,Fresno,CA
-93651,5078,Fresno,CA,43,Fresno,CA
-93652,5078,Fresno,CA,43,Fresno,CA
-93653,5078,Fresno,CA,43,Fresno,CA
-93654,5078,Fresno,CA,43,Fresno,CA
-93656,5091,Hanford,CA,43,Fresno,CA
-93657,5078,Fresno,CA,43,Fresno,CA
-93660,5078,Fresno,CA,43,Fresno,CA
-93661,5138,Merced,CA,58,Modesto,CA
-93662,5227,Selma,CA,43,Fresno,CA
-93664,5078,Fresno,CA,43,Fresno,CA
-93665,5138,Merced,CA,58,Modesto,CA
-93666,5057,Dinuba,CA,43,Fresno,CA
-93667,5078,Fresno,CA,43,Fresno,CA
-93668,5078,Fresno,CA,43,Fresno,CA
-93669,5078,Fresno,CA,43,Fresno,CA
-93670,5261,Visalia,CA,25,Bakersfield,CA
-93673,5227,Selma,CA,43,Fresno,CA
-93675,5078,Fresno,CA,43,Fresno,CA
-93701,5078,Fresno,CA,43,Fresno,CA
-93702,5078,Fresno,CA,43,Fresno,CA
-93703,5078,Fresno,CA,43,Fresno,CA
-93704,5078,Fresno,CA,43,Fresno,CA
-93705,5078,Fresno,CA,43,Fresno,CA
-93706,5078,Fresno,CA,43,Fresno,CA
-93707,5078,Fresno,CA,43,Fresno,CA
-93708,5078,Fresno,CA,43,Fresno,CA
-93709,5078,Fresno,CA,43,Fresno,CA
-93710,5078,Fresno,CA,43,Fresno,CA
-93711,5078,Fresno,CA,43,Fresno,CA
-93712,5078,Fresno,CA,43,Fresno,CA
-93714,5078,Fresno,CA,43,Fresno,CA
-93715,5078,Fresno,CA,43,Fresno,CA
-93716,5078,Fresno,CA,43,Fresno,CA
-93717,5078,Fresno,CA,43,Fresno,CA
-93718,5078,Fresno,CA,43,Fresno,CA
-93720,5078,Fresno,CA,43,Fresno,CA
-93721,5078,Fresno,CA,43,Fresno,CA
-93722,5078,Fresno,CA,43,Fresno,CA
-93723,5078,Fresno,CA,43,Fresno,CA
-93724,5078,Fresno,CA,43,Fresno,CA
-93725,5078,Fresno,CA,43,Fresno,CA
-93726,5078,Fresno,CA,43,Fresno,CA
-93727,5078,Fresno,CA,43,Fresno,CA
-93728,5078,Fresno,CA,43,Fresno,CA
-93729,5078,Fresno,CA,43,Fresno,CA
-93730,5078,Fresno,CA,43,Fresno,CA
-93737,5078,Fresno,CA,43,Fresno,CA
-93740,5078,Fresno,CA,43,Fresno,CA
-93741,5078,Fresno,CA,43,Fresno,CA
-93744,5078,Fresno,CA,43,Fresno,CA
-93745,5078,Fresno,CA,43,Fresno,CA
-93747,5078,Fresno,CA,43,Fresno,CA
-93750,5078,Fresno,CA,43,Fresno,CA
-93755,5078,Fresno,CA,43,Fresno,CA
-93760,5078,Fresno,CA,43,Fresno,CA
-93761,5078,Fresno,CA,43,Fresno,CA
-93764,5078,Fresno,CA,43,Fresno,CA
-93765,5078,Fresno,CA,43,Fresno,CA
-93771,5078,Fresno,CA,43,Fresno,CA
-93772,5078,Fresno,CA,43,Fresno,CA
-93773,5078,Fresno,CA,43,Fresno,CA
-93774,5078,Fresno,CA,43,Fresno,CA
-93775,5078,Fresno,CA,43,Fresno,CA
-93776,5078,Fresno,CA,43,Fresno,CA
-93777,5078,Fresno,CA,43,Fresno,CA
-93778,5078,Fresno,CA,43,Fresno,CA
-93779,5078,Fresno,CA,43,Fresno,CA
-93786,5078,Fresno,CA,43,Fresno,CA
-93790,5078,Fresno,CA,43,Fresno,CA
-93791,5078,Fresno,CA,43,Fresno,CA
-93792,5078,Fresno,CA,43,Fresno,CA
-93793,5078,Fresno,CA,43,Fresno,CA
-93794,5078,Fresno,CA,43,Fresno,CA
-93844,5078,Fresno,CA,43,Fresno,CA
-93888,5078,Fresno,CA,43,Fresno,CA
-93901,5201,Salinas,CA,78,Salinas,CA
-93902,5201,Salinas,CA,78,Salinas,CA
-93905,5201,Salinas,CA,78,Salinas,CA
-93906,5201,Salinas,CA,78,Salinas,CA
-93907,5201,Salinas,CA,78,Salinas,CA
-93908,5201,Salinas,CA,78,Salinas,CA
-93912,5201,Salinas,CA,78,Salinas,CA
-93915,5201,Salinas,CA,78,Salinas,CA
-93920,5145,Monterey,CA,78,Salinas,CA
-93921,5145,Monterey,CA,78,Salinas,CA
-93922,5145,Monterey,CA,78,Salinas,CA
-93923,5145,Monterey,CA,78,Salinas,CA
-93924,5145,Monterey,CA,78,Salinas,CA
-93925,5201,Salinas,CA,78,Salinas,CA
-93926,5201,Salinas,CA,78,Salinas,CA
-93927,5201,Salinas,CA,78,Salinas,CA
-93928,5106,King City,CA,78,Salinas,CA
-93930,5106,King City,CA,78,Salinas,CA
-93932,5106,King City,CA,78,Salinas,CA
-93933,5145,Monterey,CA,78,Salinas,CA
-93940,5145,Monterey,CA,78,Salinas,CA
-93942,5145,Monterey,CA,78,Salinas,CA
-93943,5145,Monterey,CA,78,Salinas,CA
-93944,5145,Monterey,CA,78,Salinas,CA
-93950,5145,Monterey,CA,78,Salinas,CA
-93953,5145,Monterey,CA,78,Salinas,CA
-93954,5106,King City,CA,78,Salinas,CA
-93955,5145,Monterey,CA,78,Salinas,CA
-93960,5201,Salinas,CA,78,Salinas,CA
-93962,5201,Salinas,CA,78,Salinas,CA
-94002,5194,Redwood City,CA,85,San Mateo County,CA
-94005,5236,South San Francisco,CA,85,San Mateo County,CA
-94010,5029,Burlingame,CA,85,San Mateo County,CA
-94011,5029,Burlingame,CA,85,San Mateo County,CA
-94014,5053,Daly City,CA,85,San Mateo County,CA
-94015,5053,Daly City,CA,85,San Mateo County,CA
-94016,5053,Daly City,CA,85,San Mateo County,CA
-94017,5053,Daly City,CA,85,San Mateo County,CA
-94018,5213,San Mateo,CA,85,San Mateo County,CA
-94019,5213,San Mateo,CA,85,San Mateo County,CA
-94020,5194,Redwood City,CA,85,San Mateo County,CA
-94021,5194,Redwood City,CA,85,San Mateo County,CA
-94022,5149,Mountain View,CA,82,San Jose,CA
-94023,5149,Mountain View,CA,82,San Jose,CA
-94024,5149,Mountain View,CA,82,San Jose,CA
-94025,5237,Stanford,CA,85,San Mateo County,CA
-94026,5237,Stanford,CA,85,San Mateo County,CA
-94027,5237,Stanford,CA,85,San Mateo County,CA
-94028,5237,Stanford,CA,85,San Mateo County,CA
-94030,5029,Burlingame,CA,85,San Mateo County,CA
-94035,5149,Mountain View,CA,82,San Jose,CA
-94037,5053,Daly City,CA,85,San Mateo County,CA
-94038,5053,Daly City,CA,85,San Mateo County,CA
-94039,5149,Mountain View,CA,82,San Jose,CA
-94040,5149,Mountain View,CA,82,San Jose,CA
-94041,5149,Mountain View,CA,82,San Jose,CA
-94042,5149,Mountain View,CA,82,San Jose,CA
-94043,5149,Mountain View,CA,82,San Jose,CA
-94044,5053,Daly City,CA,85,San Mateo County,CA
-94060,5194,Redwood City,CA,85,San Mateo County,CA
-94061,5194,Redwood City,CA,85,San Mateo County,CA
-94062,5194,Redwood City,CA,85,San Mateo County,CA
-94063,5194,Redwood City,CA,85,San Mateo County,CA
-94064,5194,Redwood City,CA,85,San Mateo County,CA
-94065,5194,Redwood City,CA,85,San Mateo County,CA
-94066,5029,Burlingame,CA,85,San Mateo County,CA
-94070,5194,Redwood City,CA,85,San Mateo County,CA
-94074,5194,Redwood City,CA,85,San Mateo County,CA
-94080,5236,South San Francisco,CA,85,San Mateo County,CA
-94083,5236,South San Francisco,CA,85,San Mateo County,CA
-94085,5149,Mountain View,CA,82,San Jose,CA
-94086,5149,Mountain View,CA,82,San Jose,CA
-94087,5149,Mountain View,CA,82,San Jose,CA
-94088,5149,Mountain View,CA,82,San Jose,CA
-94089,5149,Mountain View,CA,82,San Jose,CA
-94102,5208,San Francisco,CA,81,San Francisco,CA
-94103,5208,San Francisco,CA,81,San Francisco,CA
-94104,5208,San Francisco,CA,81,San Francisco,CA
-94105,5208,San Francisco,CA,81,San Francisco,CA
-94107,5208,San Francisco,CA,81,San Francisco,CA
-94108,5208,San Francisco,CA,81,San Francisco,CA
-94109,5208,San Francisco,CA,81,San Francisco,CA
-94110,5208,San Francisco,CA,81,San Francisco,CA
-94111,5208,San Francisco,CA,81,San Francisco,CA
-94112,5208,San Francisco,CA,81,San Francisco,CA
-94114,5208,San Francisco,CA,81,San Francisco,CA
-94115,5208,San Francisco,CA,81,San Francisco,CA
-94116,5208,San Francisco,CA,81,San Francisco,CA
-94117,5208,San Francisco,CA,81,San Francisco,CA
-94118,5208,San Francisco,CA,81,San Francisco,CA
-94119,5208,San Francisco,CA,81,San Francisco,CA
-94120,5208,San Francisco,CA,81,San Francisco,CA
-94121,5208,San Francisco,CA,81,San Francisco,CA
-94122,5208,San Francisco,CA,81,San Francisco,CA
-94123,5208,San Francisco,CA,81,San Francisco,CA
-94124,5208,San Francisco,CA,81,San Francisco,CA
-94125,5029,Burlingame,CA,85,San Mateo County,CA
-94126,5208,San Francisco,CA,81,San Francisco,CA
-94127,5208,San Francisco,CA,81,San Francisco,CA
-94128,5029,Burlingame,CA,85,San Mateo County,CA
-94129,5208,San Francisco,CA,81,San Francisco,CA
-94130,5208,San Francisco,CA,81,San Francisco,CA
-94131,5208,San Francisco,CA,81,San Francisco,CA
-94132,5208,San Francisco,CA,81,San Francisco,CA
-94133,5208,San Francisco,CA,81,San Francisco,CA
-94134,5208,San Francisco,CA,81,San Francisco,CA
-94137,5208,San Francisco,CA,81,San Francisco,CA
-94139,5208,San Francisco,CA,81,San Francisco,CA
-94140,5208,San Francisco,CA,81,San Francisco,CA
-94141,5208,San Francisco,CA,81,San Francisco,CA
-94142,5208,San Francisco,CA,81,San Francisco,CA
-94143,5208,San Francisco,CA,81,San Francisco,CA
-94144,5208,San Francisco,CA,81,San Francisco,CA
-94145,5208,San Francisco,CA,81,San Francisco,CA
-94146,5208,San Francisco,CA,81,San Francisco,CA
-94147,5208,San Francisco,CA,81,San Francisco,CA
-94151,5208,San Francisco,CA,81,San Francisco,CA
-94158,5208,San Francisco,CA,81,San Francisco,CA
-94159,5208,San Francisco,CA,81,San Francisco,CA
-94160,5208,San Francisco,CA,81,San Francisco,CA
-94161,5208,San Francisco,CA,81,San Francisco,CA
-94163,5208,San Francisco,CA,81,San Francisco,CA
-94164,5208,San Francisco,CA,81,San Francisco,CA
-94172,5208,San Francisco,CA,81,San Francisco,CA
-94177,5208,San Francisco,CA,81,San Francisco,CA
-94188,5208,San Francisco,CA,81,San Francisco,CA
-94203,5200,Sacramento,CA,77,Sacramento,CA
-94204,5200,Sacramento,CA,77,Sacramento,CA
-94205,5200,Sacramento,CA,77,Sacramento,CA
-94206,5200,Sacramento,CA,77,Sacramento,CA
-94207,5200,Sacramento,CA,77,Sacramento,CA
-94208,5200,Sacramento,CA,77,Sacramento,CA
-94209,5200,Sacramento,CA,77,Sacramento,CA
-94211,5200,Sacramento,CA,77,Sacramento,CA
-94229,5200,Sacramento,CA,77,Sacramento,CA
-94230,5200,Sacramento,CA,77,Sacramento,CA
-94232,5200,Sacramento,CA,77,Sacramento,CA
-94234,5200,Sacramento,CA,77,Sacramento,CA
-94235,5200,Sacramento,CA,77,Sacramento,CA
-94236,5200,Sacramento,CA,77,Sacramento,CA
-94237,5200,Sacramento,CA,77,Sacramento,CA
-94239,5200,Sacramento,CA,77,Sacramento,CA
-94240,5200,Sacramento,CA,77,Sacramento,CA
-94244,5200,Sacramento,CA,77,Sacramento,CA
-94245,5200,Sacramento,CA,77,Sacramento,CA
-94247,5200,Sacramento,CA,77,Sacramento,CA
-94248,5200,Sacramento,CA,77,Sacramento,CA
-94249,5200,Sacramento,CA,77,Sacramento,CA
-94250,5200,Sacramento,CA,77,Sacramento,CA
-94252,5200,Sacramento,CA,77,Sacramento,CA
-94254,5200,Sacramento,CA,77,Sacramento,CA
-94256,5200,Sacramento,CA,77,Sacramento,CA
-94257,5200,Sacramento,CA,77,Sacramento,CA
-94258,5200,Sacramento,CA,77,Sacramento,CA
-94259,5200,Sacramento,CA,77,Sacramento,CA
-94261,5200,Sacramento,CA,77,Sacramento,CA
-94262,5200,Sacramento,CA,77,Sacramento,CA
-94263,5200,Sacramento,CA,77,Sacramento,CA
-94267,5200,Sacramento,CA,77,Sacramento,CA
-94268,5200,Sacramento,CA,77,Sacramento,CA
-94269,5200,Sacramento,CA,77,Sacramento,CA
-94271,5200,Sacramento,CA,77,Sacramento,CA
-94273,5200,Sacramento,CA,77,Sacramento,CA
-94274,5200,Sacramento,CA,77,Sacramento,CA
-94277,5200,Sacramento,CA,77,Sacramento,CA
-94278,5200,Sacramento,CA,77,Sacramento,CA
-94279,5200,Sacramento,CA,77,Sacramento,CA
-94280,5200,Sacramento,CA,77,Sacramento,CA
-94282,5200,Sacramento,CA,77,Sacramento,CA
-94283,5200,Sacramento,CA,77,Sacramento,CA
-94284,5200,Sacramento,CA,77,Sacramento,CA
-94285,5200,Sacramento,CA,77,Sacramento,CA
-94287,5200,Sacramento,CA,77,Sacramento,CA
-94288,5200,Sacramento,CA,77,Sacramento,CA
-94289,5200,Sacramento,CA,77,Sacramento,CA
-94290,5200,Sacramento,CA,77,Sacramento,CA
-94291,5200,Sacramento,CA,77,Sacramento,CA
-94293,5200,Sacramento,CA,77,Sacramento,CA
-94294,5200,Sacramento,CA,77,Sacramento,CA
-94295,5200,Sacramento,CA,77,Sacramento,CA
-94296,5200,Sacramento,CA,77,Sacramento,CA
-94297,5200,Sacramento,CA,77,Sacramento,CA
-94298,5200,Sacramento,CA,77,Sacramento,CA
-94299,5200,Sacramento,CA,77,Sacramento,CA
-94301,5237,Stanford,CA,85,San Mateo County,CA
-94302,5237,Stanford,CA,85,San Mateo County,CA
-94303,5237,Stanford,CA,85,San Mateo County,CA
-94304,5237,Stanford,CA,85,San Mateo County,CA
-94305,5237,Stanford,CA,85,San Mateo County,CA
-94306,5237,Stanford,CA,85,San Mateo County,CA
-94309,5237,Stanford,CA,85,San Mateo County,CA
-94401,5213,San Mateo,CA,85,San Mateo County,CA
-94402,5213,San Mateo,CA,85,San Mateo County,CA
-94403,5213,San Mateo,CA,85,San Mateo County,CA
-94404,5213,San Mateo,CA,85,San Mateo County,CA
-94497,5213,San Mateo,CA,85,San Mateo County,CA
-94501,5001,Alameda,CA,65,Alameda County,CA
-94502,5161,Oakland,CA,65,Alameda County,CA
-94503,5257,Vallejo,CA,81,San Francisco,CA
-94505,5005,Antioch,CA,33,Contra Costa County,CA
-94506,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94507,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94508,5055,Deer Park,CA,62,Napa,CA
-94509,5005,Antioch,CA,33,Contra Costa County,CA
-94510,5257,Vallejo,CA,81,San Francisco,CA
-94511,5005,Antioch,CA,33,Contra Costa County,CA
-94512,5068,Fairfield,CA,33,Contra Costa County,CA
-94513,5005,Antioch,CA,33,Contra Costa County,CA
-94514,5005,Antioch,CA,33,Contra Costa County,CA
-94515,5055,Deer Park,CA,62,Napa,CA
-94516,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94517,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94518,5045,Concord,CA,33,Contra Costa County,CA
-94519,5045,Concord,CA,33,Contra Costa County,CA
-94520,5045,Concord,CA,33,Contra Costa County,CA
-94521,5045,Concord,CA,33,Contra Costa County,CA
-94522,5045,Concord,CA,33,Contra Costa County,CA
-94523,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94524,5045,Concord,CA,33,Contra Costa County,CA
-94525,5179,Pinole,CA,81,San Francisco,CA
-94526,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94527,5045,Concord,CA,33,Contra Costa County,CA
-94528,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94529,5045,Concord,CA,33,Contra Costa County,CA
-94530,5020,Berkeley,CA,65,Alameda County,CA
-94531,5005,Antioch,CA,33,Contra Costa County,CA
-94533,5068,Fairfield,CA,33,Contra Costa County,CA
-94534,5068,Fairfield,CA,33,Contra Costa County,CA
-94535,5068,Fairfield,CA,33,Contra Costa County,CA
-94536,5077,Fremont,CA,65,Alameda County,CA
-94537,5077,Fremont,CA,65,Alameda County,CA
-94538,5077,Fremont,CA,65,Alameda County,CA
-94539,5077,Fremont,CA,65,Alameda County,CA
-94540,5095,Hayward,CA,65,Alameda County,CA
-94541,5034,Castro Valley,CA,65,Alameda County,CA
-94542,5095,Hayward,CA,65,Alameda County,CA
-94543,5034,Castro Valley,CA,65,Alameda County,CA
-94544,5095,Hayward,CA,65,Alameda County,CA
-94545,5095,Hayward,CA,65,Alameda County,CA
-94546,5034,Castro Valley,CA,65,Alameda County,CA
-94547,5179,Pinole,CA,81,San Francisco,CA
-94548,5005,Antioch,CA,33,Contra Costa County,CA
-94549,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94550,5119,Livermore,CA,65,Alameda County,CA
-94551,5119,Livermore,CA,65,Alameda County,CA
-94552,5034,Castro Valley,CA,65,Alameda County,CA
-94553,5136,Martinez,CA,33,Contra Costa County,CA
-94555,5077,Fremont,CA,65,Alameda County,CA
-94556,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94557,5095,Hayward,CA,65,Alameda County,CA
-94558,5150,Napa,CA,62,Napa,CA
-94559,5150,Napa,CA,62,Napa,CA
-94560,5077,Fremont,CA,65,Alameda County,CA
-94561,5005,Antioch,CA,33,Contra Costa County,CA
-94562,5055,Deer Park,CA,62,Napa,CA
-94563,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94564,5179,Pinole,CA,81,San Francisco,CA
-94565,5180,Pittsburg,CA,33,Contra Costa County,CA
-94566,5287,Pleasanton,CA,65,Alameda County,CA
-94567,5055,Deer Park,CA,62,Napa,CA
-94568,5287,Pleasanton,CA,65,Alameda County,CA
-94569,5136,Martinez,CA,33,Contra Costa County,CA
-94570,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94571,5120,Lodi,CA,77,Sacramento,CA
-94572,5179,Pinole,CA,81,San Francisco,CA
-94573,5055,Deer Park,CA,62,Napa,CA
-94574,5055,Deer Park,CA,62,Napa,CA
-94575,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94576,5055,Deer Park,CA,62,Napa,CA
-94577,5211,San Leandro,CA,65,Alameda County,CA
-94578,5211,San Leandro,CA,65,Alameda County,CA
-94579,5211,San Leandro,CA,65,Alameda County,CA
-94580,5095,Hayward,CA,65,Alameda County,CA
-94581,5150,Napa,CA,62,Napa,CA
-94582,5288,San Ramon,CA,33,Contra Costa County,CA
-94583,5288,San Ramon,CA,33,Contra Costa County,CA
-94585,5068,Fairfield,CA,33,Contra Costa County,CA
-94586,5287,Pleasanton,CA,65,Alameda County,CA
-94587,5077,Fremont,CA,65,Alameda County,CA
-94588,5287,Pleasanton,CA,65,Alameda County,CA
-94589,5257,Vallejo,CA,81,San Francisco,CA
-94590,5257,Vallejo,CA,81,San Francisco,CA
-94591,5257,Vallejo,CA,81,San Francisco,CA
-94592,5257,Vallejo,CA,81,San Francisco,CA
-94595,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94596,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94597,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94598,5262,Walnut Creek,CA,33,Contra Costa County,CA
-94599,5150,Napa,CA,62,Napa,CA
-94601,5161,Oakland,CA,65,Alameda County,CA
-94602,5161,Oakland,CA,65,Alameda County,CA
-94603,5161,Oakland,CA,65,Alameda County,CA
-94604,5161,Oakland,CA,65,Alameda County,CA
-94605,5161,Oakland,CA,65,Alameda County,CA
-94606,5161,Oakland,CA,65,Alameda County,CA
-94607,5161,Oakland,CA,65,Alameda County,CA
-94608,5161,Oakland,CA,65,Alameda County,CA
-94609,5161,Oakland,CA,65,Alameda County,CA
-94610,5161,Oakland,CA,65,Alameda County,CA
-94611,5161,Oakland,CA,65,Alameda County,CA
-94612,5161,Oakland,CA,65,Alameda County,CA
-94613,5161,Oakland,CA,65,Alameda County,CA
-94614,5161,Oakland,CA,65,Alameda County,CA
-94615,5161,Oakland,CA,65,Alameda County,CA
-94617,5161,Oakland,CA,65,Alameda County,CA
-94618,5161,Oakland,CA,65,Alameda County,CA
-94619,5161,Oakland,CA,65,Alameda County,CA
-94620,5161,Oakland,CA,65,Alameda County,CA
-94621,5161,Oakland,CA,65,Alameda County,CA
-94622,5211,San Leandro,CA,65,Alameda County,CA
-94623,5161,Oakland,CA,65,Alameda County,CA
-94624,5161,Oakland,CA,65,Alameda County,CA
-94649,5161,Oakland,CA,65,Alameda County,CA
-94659,5161,Oakland,CA,65,Alameda County,CA
-94660,5161,Oakland,CA,65,Alameda County,CA
-94661,5161,Oakland,CA,65,Alameda County,CA
-94662,5161,Oakland,CA,65,Alameda County,CA
-94666,5161,Oakland,CA,65,Alameda County,CA
-94701,5020,Berkeley,CA,65,Alameda County,CA
-94702,5020,Berkeley,CA,65,Alameda County,CA
-94703,5020,Berkeley,CA,65,Alameda County,CA
-94704,5020,Berkeley,CA,65,Alameda County,CA
-94705,5020,Berkeley,CA,65,Alameda County,CA
-94706,5020,Berkeley,CA,65,Alameda County,CA
-94707,5020,Berkeley,CA,65,Alameda County,CA
-94708,5020,Berkeley,CA,65,Alameda County,CA
-94709,5020,Berkeley,CA,65,Alameda County,CA
-94710,5020,Berkeley,CA,65,Alameda County,CA
-94712,5020,Berkeley,CA,65,Alameda County,CA
-94720,5020,Berkeley,CA,65,Alameda County,CA
-94801,5214,San Pablo,CA,81,San Francisco,CA
-94802,5214,San Pablo,CA,81,San Francisco,CA
-94803,5179,Pinole,CA,81,San Francisco,CA
-94804,5214,San Pablo,CA,81,San Francisco,CA
-94805,5214,San Pablo,CA,81,San Francisco,CA
-94806,5214,San Pablo,CA,81,San Francisco,CA
-94807,5214,San Pablo,CA,81,San Francisco,CA
-94808,5214,San Pablo,CA,81,San Francisco,CA
-94820,5179,Pinole,CA,81,San Francisco,CA
-94850,5214,San Pablo,CA,81,San Francisco,CA
-94901,5088,Greenbrae,CA,81,San Francisco,CA
-94903,5088,Greenbrae,CA,81,San Francisco,CA
-94904,5088,Greenbrae,CA,81,San Francisco,CA
-94912,5088,Greenbrae,CA,81,San Francisco,CA
-94913,5088,Greenbrae,CA,81,San Francisco,CA
-94914,5088,Greenbrae,CA,81,San Francisco,CA
-94915,5088,Greenbrae,CA,81,San Francisco,CA
-94920,5088,Greenbrae,CA,81,San Francisco,CA
-94922,5226,Sebastopol,CA,89,Santa Rosa,CA
-94923,5226,Sebastopol,CA,89,Santa Rosa,CA
-94924,5088,Greenbrae,CA,81,San Francisco,CA
-94925,5088,Greenbrae,CA,81,San Francisco,CA
-94926,5225,Santa Rosa,CA,89,Santa Rosa,CA
-94927,5225,Santa Rosa,CA,89,Santa Rosa,CA
-94928,5225,Santa Rosa,CA,89,Santa Rosa,CA
-94929,5177,Petaluma,CA,89,Santa Rosa,CA
-94930,5088,Greenbrae,CA,81,San Francisco,CA
-94931,5225,Santa Rosa,CA,89,Santa Rosa,CA
-94933,5088,Greenbrae,CA,81,San Francisco,CA
-94937,5088,Greenbrae,CA,81,San Francisco,CA
-94938,5088,Greenbrae,CA,81,San Francisco,CA
-94939,5088,Greenbrae,CA,81,San Francisco,CA
-94940,5088,Greenbrae,CA,81,San Francisco,CA
-94941,5088,Greenbrae,CA,81,San Francisco,CA
-94942,5088,Greenbrae,CA,81,San Francisco,CA
-94945,5159,Novato,CA,81,San Francisco,CA
-94946,5088,Greenbrae,CA,81,San Francisco,CA
-94947,5159,Novato,CA,81,San Francisco,CA
-94948,5159,Novato,CA,81,San Francisco,CA
-94949,5159,Novato,CA,81,San Francisco,CA
-94950,5088,Greenbrae,CA,81,San Francisco,CA
-94951,5177,Petaluma,CA,89,Santa Rosa,CA
-94952,5177,Petaluma,CA,89,Santa Rosa,CA
-94953,5177,Petaluma,CA,89,Santa Rosa,CA
-94954,5177,Petaluma,CA,89,Santa Rosa,CA
-94955,5177,Petaluma,CA,89,Santa Rosa,CA
-94956,5088,Greenbrae,CA,81,San Francisco,CA
-94957,5088,Greenbrae,CA,81,San Francisco,CA
-94960,5088,Greenbrae,CA,81,San Francisco,CA
-94963,5088,Greenbrae,CA,81,San Francisco,CA
-94964,5088,Greenbrae,CA,81,San Francisco,CA
-94965,5088,Greenbrae,CA,81,San Francisco,CA
-94966,5088,Greenbrae,CA,81,San Francisco,CA
-94970,5088,Greenbrae,CA,81,San Francisco,CA
-94971,5177,Petaluma,CA,89,Santa Rosa,CA
-94972,5177,Petaluma,CA,89,Santa Rosa,CA
-94973,5088,Greenbrae,CA,81,San Francisco,CA
-94974,5088,Greenbrae,CA,81,San Francisco,CA
-94975,5177,Petaluma,CA,89,Santa Rosa,CA
-94976,5088,Greenbrae,CA,81,San Francisco,CA
-94977,5088,Greenbrae,CA,81,San Francisco,CA
-94978,5088,Greenbrae,CA,81,San Francisco,CA
-94979,5088,Greenbrae,CA,81,San Francisco,CA
-94998,5159,Novato,CA,81,San Francisco,CA
-94999,5177,Petaluma,CA,89,Santa Rosa,CA
-95001,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95002,5210,San Jose,CA,82,San Jose,CA
-95003,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95004,5263,Watsonville,CA,87,Santa Cruz,CA
-95005,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95006,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95007,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95008,5210,San Jose,CA,82,San Jose,CA
-95009,5210,San Jose,CA,82,San Jose,CA
-95010,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95011,5210,San Jose,CA,82,San Jose,CA
-95012,5201,Salinas,CA,78,Salinas,CA
-95013,5210,San Jose,CA,82,San Jose,CA
-95014,5149,Mountain View,CA,82,San Jose,CA
-95015,5149,Mountain View,CA,82,San Jose,CA
-95017,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95018,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95019,5263,Watsonville,CA,87,Santa Cruz,CA
-95020,5083,Gilroy,CA,82,San Jose,CA
-95021,5083,Gilroy,CA,82,San Jose,CA
-95023,5098,Hollister,CA,82,San Jose,CA
-95024,5098,Hollister,CA,82,San Jose,CA
-95026,5210,San Jose,CA,82,San Jose,CA
-95030,5210,San Jose,CA,82,San Jose,CA
-95031,5210,San Jose,CA,82,San Jose,CA
-95032,5210,San Jose,CA,82,San Jose,CA
-95033,5210,San Jose,CA,82,San Jose,CA
-95035,5210,San Jose,CA,82,San Jose,CA
-95036,5210,San Jose,CA,82,San Jose,CA
-95037,5285,Morgan Hill,CA,82,San Jose,CA
-95038,5285,Morgan Hill,CA,82,San Jose,CA
-95039,5201,Salinas,CA,78,Salinas,CA
-95041,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95042,5210,San Jose,CA,82,San Jose,CA
-95043,5098,Hollister,CA,82,San Jose,CA
-95044,5210,San Jose,CA,82,San Jose,CA
-95045,5098,Hollister,CA,82,San Jose,CA
-95046,5083,Gilroy,CA,82,San Jose,CA
-95050,5210,San Jose,CA,82,San Jose,CA
-95051,5210,San Jose,CA,82,San Jose,CA
-95052,5210,San Jose,CA,82,San Jose,CA
-95053,5210,San Jose,CA,82,San Jose,CA
-95054,5210,San Jose,CA,82,San Jose,CA
-95055,5210,San Jose,CA,82,San Jose,CA
-95056,5210,San Jose,CA,82,San Jose,CA
-95060,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95061,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95062,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95063,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95064,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95065,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95066,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95067,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95070,5210,San Jose,CA,82,San Jose,CA
-95071,5210,San Jose,CA,82,San Jose,CA
-95073,5221,Santa Cruz,CA,87,Santa Cruz,CA
-95075,5098,Hollister,CA,82,San Jose,CA
-95076,5263,Watsonville,CA,87,Santa Cruz,CA
-95077,5263,Watsonville,CA,87,Santa Cruz,CA
-95101,5210,San Jose,CA,82,San Jose,CA
-95103,5210,San Jose,CA,82,San Jose,CA
-95106,5210,San Jose,CA,82,San Jose,CA
-95108,5210,San Jose,CA,82,San Jose,CA
-95109,5210,San Jose,CA,82,San Jose,CA
-95110,5210,San Jose,CA,82,San Jose,CA
-95111,5210,San Jose,CA,82,San Jose,CA
-95112,5210,San Jose,CA,82,San Jose,CA
-95113,5210,San Jose,CA,82,San Jose,CA
-95115,5210,San Jose,CA,82,San Jose,CA
-95116,5210,San Jose,CA,82,San Jose,CA
-95117,5210,San Jose,CA,82,San Jose,CA
-95118,5210,San Jose,CA,82,San Jose,CA
-95119,5210,San Jose,CA,82,San Jose,CA
-95120,5210,San Jose,CA,82,San Jose,CA
-95121,5210,San Jose,CA,82,San Jose,CA
-95122,5210,San Jose,CA,82,San Jose,CA
-95123,5210,San Jose,CA,82,San Jose,CA
-95124,5210,San Jose,CA,82,San Jose,CA
-95125,5210,San Jose,CA,82,San Jose,CA
-95126,5210,San Jose,CA,82,San Jose,CA
-95127,5210,San Jose,CA,82,San Jose,CA
-95128,5210,San Jose,CA,82,San Jose,CA
-95129,5210,San Jose,CA,82,San Jose,CA
-95130,5210,San Jose,CA,82,San Jose,CA
-95131,5210,San Jose,CA,82,San Jose,CA
-95132,5210,San Jose,CA,82,San Jose,CA
-95133,5210,San Jose,CA,82,San Jose,CA
-95134,5210,San Jose,CA,82,San Jose,CA
-95135,5210,San Jose,CA,82,San Jose,CA
-95136,5210,San Jose,CA,82,San Jose,CA
-95138,5210,San Jose,CA,82,San Jose,CA
-95139,5210,San Jose,CA,82,San Jose,CA
-95140,5210,San Jose,CA,82,San Jose,CA
-95141,5285,Morgan Hill,CA,82,San Jose,CA
-95148,5210,San Jose,CA,82,San Jose,CA
-95150,5210,San Jose,CA,82,San Jose,CA
-95151,5210,San Jose,CA,82,San Jose,CA
-95152,5210,San Jose,CA,82,San Jose,CA
-95153,5210,San Jose,CA,82,San Jose,CA
-95154,5210,San Jose,CA,82,San Jose,CA
-95155,5210,San Jose,CA,82,San Jose,CA
-95156,5210,San Jose,CA,82,San Jose,CA
-95157,5210,San Jose,CA,82,San Jose,CA
-95158,5210,San Jose,CA,82,San Jose,CA
-95159,5210,San Jose,CA,82,San Jose,CA
-95160,5210,San Jose,CA,82,San Jose,CA
-95161,5210,San Jose,CA,82,San Jose,CA
-95164,5210,San Jose,CA,82,San Jose,CA
-95170,5210,San Jose,CA,82,San Jose,CA
-95172,5210,San Jose,CA,82,San Jose,CA
-95173,5210,San Jose,CA,82,San Jose,CA
-95190,5210,San Jose,CA,82,San Jose,CA
-95191,5210,San Jose,CA,82,San Jose,CA
-95192,5210,San Jose,CA,82,San Jose,CA
-95193,5210,San Jose,CA,82,San Jose,CA
-95194,5210,San Jose,CA,82,San Jose,CA
-95196,5210,San Jose,CA,82,San Jose,CA
-95201,5239,Stockton,CA,91,Stockton,CA
-95202,5239,Stockton,CA,91,Stockton,CA
-95203,5239,Stockton,CA,91,Stockton,CA
-95204,5239,Stockton,CA,91,Stockton,CA
-95205,5239,Stockton,CA,91,Stockton,CA
-95206,5239,Stockton,CA,91,Stockton,CA
-95207,5239,Stockton,CA,91,Stockton,CA
-95208,5239,Stockton,CA,91,Stockton,CA
-95209,5239,Stockton,CA,91,Stockton,CA
-95210,5239,Stockton,CA,91,Stockton,CA
-95211,5239,Stockton,CA,91,Stockton,CA
-95212,5239,Stockton,CA,91,Stockton,CA
-95213,5239,Stockton,CA,91,Stockton,CA
-95214,5239,Stockton,CA,91,Stockton,CA
-95215,5239,Stockton,CA,91,Stockton,CA
-95219,5239,Stockton,CA,91,Stockton,CA
-95220,5120,Lodi,CA,77,Sacramento,CA
-95221,5202,San Andreas,CA,91,Stockton,CA
-95222,5202,San Andreas,CA,91,Stockton,CA
-95223,5202,San Andreas,CA,91,Stockton,CA
-95224,5202,San Andreas,CA,91,Stockton,CA
-95225,5202,San Andreas,CA,91,Stockton,CA
-95226,5202,San Andreas,CA,91,Stockton,CA
-95227,5120,Lodi,CA,77,Sacramento,CA
-95228,5232,Sonora,CA,58,Modesto,CA
-95229,5202,San Andreas,CA,91,Stockton,CA
-95230,5141,Modesto,CA,58,Modesto,CA
-95231,5239,Stockton,CA,91,Stockton,CA
-95232,5104,Jackson,CA,77,Sacramento,CA
-95233,5202,San Andreas,CA,91,Stockton,CA
-95234,5239,Stockton,CA,91,Stockton,CA
-95236,5239,Stockton,CA,91,Stockton,CA
-95237,5120,Lodi,CA,77,Sacramento,CA
-95240,5120,Lodi,CA,77,Sacramento,CA
-95241,5120,Lodi,CA,77,Sacramento,CA
-95242,5120,Lodi,CA,77,Sacramento,CA
-95245,5202,San Andreas,CA,91,Stockton,CA
-95246,5202,San Andreas,CA,91,Stockton,CA
-95247,5202,San Andreas,CA,91,Stockton,CA
-95248,5202,San Andreas,CA,91,Stockton,CA
-95249,5202,San Andreas,CA,91,Stockton,CA
-95251,5202,San Andreas,CA,91,Stockton,CA
-95252,5202,San Andreas,CA,91,Stockton,CA
-95253,5120,Lodi,CA,77,Sacramento,CA
-95254,5202,San Andreas,CA,91,Stockton,CA
-95255,5104,Jackson,CA,77,Sacramento,CA
-95257,5202,San Andreas,CA,91,Stockton,CA
-95258,5120,Lodi,CA,77,Sacramento,CA
-95267,5239,Stockton,CA,91,Stockton,CA
-95269,5239,Stockton,CA,91,Stockton,CA
-95296,5239,Stockton,CA,91,Stockton,CA
-95297,5239,Stockton,CA,91,Stockton,CA
-95301,5138,Merced,CA,58,Modesto,CA
-95303,5252,Turlock,CA,58,Modesto,CA
-95304,5249,Tracy,CA,91,Stockton,CA
-95305,5232,Sonora,CA,58,Modesto,CA
-95306,5138,Merced,CA,58,Modesto,CA
-95307,5141,Modesto,CA,58,Modesto,CA
-95309,5232,Sonora,CA,58,Modesto,CA
-95310,5232,Sonora,CA,58,Modesto,CA
-95311,5232,Sonora,CA,58,Modesto,CA
-95312,5138,Merced,CA,58,Modesto,CA
-95313,5141,Modesto,CA,58,Modesto,CA
-95315,5252,Turlock,CA,58,Modesto,CA
-95316,5252,Turlock,CA,58,Modesto,CA
-95317,5138,Merced,CA,58,Modesto,CA
-95318,5138,Merced,CA,58,Modesto,CA
-95319,5141,Modesto,CA,58,Modesto,CA
-95320,5141,Modesto,CA,58,Modesto,CA
-95321,5232,Sonora,CA,58,Modesto,CA
-95322,5141,Modesto,CA,58,Modesto,CA
-95323,5141,Modesto,CA,58,Modesto,CA
-95324,5252,Turlock,CA,58,Modesto,CA
-95325,5138,Merced,CA,58,Modesto,CA
-95326,5141,Modesto,CA,58,Modesto,CA
-95327,5232,Sonora,CA,58,Modesto,CA
-95328,5141,Modesto,CA,58,Modesto,CA
-95329,5141,Modesto,CA,58,Modesto,CA
-95330,5133,Manteca,CA,91,Stockton,CA
-95333,5138,Merced,CA,58,Modesto,CA
-95334,5138,Merced,CA,58,Modesto,CA
-95335,5232,Sonora,CA,58,Modesto,CA
-95336,5133,Manteca,CA,91,Stockton,CA
-95337,5133,Manteca,CA,91,Stockton,CA
-95338,5138,Merced,CA,58,Modesto,CA
-95340,5138,Merced,CA,58,Modesto,CA
-95341,5138,Merced,CA,58,Modesto,CA
-95343,5138,Merced,CA,58,Modesto,CA
-95344,5138,Merced,CA,58,Modesto,CA
-95345,5138,Merced,CA,58,Modesto,CA
-95346,5232,Sonora,CA,58,Modesto,CA
-95347,5232,Sonora,CA,58,Modesto,CA
-95348,5138,Merced,CA,58,Modesto,CA
-95350,5141,Modesto,CA,58,Modesto,CA
-95351,5141,Modesto,CA,58,Modesto,CA
-95352,5141,Modesto,CA,58,Modesto,CA
-95353,5141,Modesto,CA,58,Modesto,CA
-95354,5141,Modesto,CA,58,Modesto,CA
-95355,5141,Modesto,CA,58,Modesto,CA
-95356,5141,Modesto,CA,58,Modesto,CA
-95357,5141,Modesto,CA,58,Modesto,CA
-95358,5141,Modesto,CA,58,Modesto,CA
-95360,5141,Modesto,CA,58,Modesto,CA
-95361,5160,Oakdale,CA,58,Modesto,CA
-95363,5141,Modesto,CA,58,Modesto,CA
-95364,5232,Sonora,CA,58,Modesto,CA
-95365,5138,Merced,CA,58,Modesto,CA
-95366,5141,Modesto,CA,58,Modesto,CA
-95367,5141,Modesto,CA,58,Modesto,CA
-95368,5141,Modesto,CA,58,Modesto,CA
-95369,5138,Merced,CA,58,Modesto,CA
-95370,5232,Sonora,CA,58,Modesto,CA
-95372,5232,Sonora,CA,58,Modesto,CA
-95373,5232,Sonora,CA,58,Modesto,CA
-95374,5252,Turlock,CA,58,Modesto,CA
-95375,5232,Sonora,CA,58,Modesto,CA
-95376,5249,Tracy,CA,91,Stockton,CA
-95377,5249,Tracy,CA,91,Stockton,CA
-95378,5249,Tracy,CA,91,Stockton,CA
-95379,5232,Sonora,CA,58,Modesto,CA
-95380,5252,Turlock,CA,58,Modesto,CA
-95381,5252,Turlock,CA,58,Modesto,CA
-95382,5252,Turlock,CA,58,Modesto,CA
-95383,5232,Sonora,CA,58,Modesto,CA
-95385,5141,Modesto,CA,58,Modesto,CA
-95386,5141,Modesto,CA,58,Modesto,CA
-95387,5141,Modesto,CA,58,Modesto,CA
-95388,5138,Merced,CA,58,Modesto,CA
-95389,5232,Sonora,CA,58,Modesto,CA
-95391,5249,Tracy,CA,91,Stockton,CA
-95397,5141,Modesto,CA,58,Modesto,CA
-95401,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95402,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95403,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95404,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95405,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95406,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95407,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95409,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95410,5073,Fort Bragg,CA,62,Napa,CA
-95412,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95415,5253,Ukiah,CA,62,Napa,CA
-95416,5231,Sonoma,CA,89,Santa Rosa,CA
-95417,5272,Willits,CA,62,Napa,CA
-95418,5253,Ukiah,CA,62,Napa,CA
-95419,5226,Sebastopol,CA,89,Santa Rosa,CA
-95420,5073,Fort Bragg,CA,62,Napa,CA
-95421,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95422,5041,Clearlake,CA,62,Napa,CA
-95423,5041,Clearlake,CA,62,Napa,CA
-95424,5041,Clearlake,CA,62,Napa,CA
-95425,5096,Healdsburg,CA,89,Santa Rosa,CA
-95426,5115,Lakeport,CA,62,Napa,CA
-95427,5073,Fort Bragg,CA,62,Napa,CA
-95428,5272,Willits,CA,62,Napa,CA
-95429,5272,Willits,CA,62,Napa,CA
-95430,5226,Sebastopol,CA,89,Santa Rosa,CA
-95431,5231,Sonoma,CA,89,Santa Rosa,CA
-95432,5253,Ukiah,CA,62,Napa,CA
-95433,5231,Sonoma,CA,89,Santa Rosa,CA
-95435,5115,Lakeport,CA,62,Napa,CA
-95436,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95437,5073,Fort Bragg,CA,62,Napa,CA
-95439,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95441,5096,Healdsburg,CA,89,Santa Rosa,CA
-95442,5231,Sonoma,CA,89,Santa Rosa,CA
-95443,5041,Clearlake,CA,62,Napa,CA
-95444,5226,Sebastopol,CA,89,Santa Rosa,CA
-95445,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95446,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95448,5096,Healdsburg,CA,89,Santa Rosa,CA
-95449,5253,Ukiah,CA,62,Napa,CA
-95450,5226,Sebastopol,CA,89,Santa Rosa,CA
-95451,5115,Lakeport,CA,62,Napa,CA
-95452,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95453,5115,Lakeport,CA,62,Napa,CA
-95454,5272,Willits,CA,62,Napa,CA
-95456,5073,Fort Bragg,CA,62,Napa,CA
-95457,5041,Clearlake,CA,62,Napa,CA
-95458,5115,Lakeport,CA,62,Napa,CA
-95459,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95460,5073,Fort Bragg,CA,62,Napa,CA
-95461,5055,Deer Park,CA,62,Napa,CA
-95462,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95463,5253,Ukiah,CA,62,Napa,CA
-95464,5115,Lakeport,CA,62,Napa,CA
-95465,5226,Sebastopol,CA,89,Santa Rosa,CA
-95466,5253,Ukiah,CA,62,Napa,CA
-95467,5041,Clearlake,CA,62,Napa,CA
-95468,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95469,5253,Ukiah,CA,62,Napa,CA
-95470,5253,Ukiah,CA,62,Napa,CA
-95471,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95472,5226,Sebastopol,CA,89,Santa Rosa,CA
-95473,5226,Sebastopol,CA,89,Santa Rosa,CA
-95476,5231,Sonoma,CA,89,Santa Rosa,CA
-95480,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95481,5253,Ukiah,CA,62,Napa,CA
-95482,5253,Ukiah,CA,62,Napa,CA
-95485,5115,Lakeport,CA,62,Napa,CA
-95486,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95487,5231,Sonoma,CA,89,Santa Rosa,CA
-95488,5073,Fort Bragg,CA,62,Napa,CA
-95490,5272,Willits,CA,62,Napa,CA
-95492,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95493,5115,Lakeport,CA,62,Napa,CA
-95494,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95497,5225,Santa Rosa,CA,89,Santa Rosa,CA
-95501,5066,Eureka,CA,73,Redding,CA
-95502,5066,Eureka,CA,73,Redding,CA
-95503,5066,Eureka,CA,73,Redding,CA
-95511,5074,Fortuna,CA,73,Redding,CA
-95514,5074,Fortuna,CA,73,Redding,CA
-95518,5008,Arcata,CA,73,Redding,CA
-95519,5008,Arcata,CA,73,Redding,CA
-95521,5008,Arcata,CA,73,Redding,CA
-95524,5066,Eureka,CA,73,Redding,CA
-95525,5008,Arcata,CA,73,Redding,CA
-95526,5074,Fortuna,CA,73,Redding,CA
-95527,5066,Eureka,CA,73,Redding,CA
-95528,5074,Fortuna,CA,73,Redding,CA
-95531,5051,Crescent City,CA,343,Medford,OR
-95532,5051,Crescent City,CA,343,Medford,OR
-95534,5066,Eureka,CA,73,Redding,CA
-95536,5074,Fortuna,CA,73,Redding,CA
-95537,5066,Eureka,CA,73,Redding,CA
-95538,5051,Crescent City,CA,343,Medford,OR
-95540,5074,Fortuna,CA,73,Redding,CA
-95542,5080,Garberville,CA,62,Napa,CA
-95543,5051,Crescent City,CA,343,Medford,OR
-95545,5080,Garberville,CA,62,Napa,CA
-95546,5066,Eureka,CA,73,Redding,CA
-95547,5074,Fortuna,CA,73,Redding,CA
-95548,5051,Crescent City,CA,343,Medford,OR
-95549,5066,Eureka,CA,73,Redding,CA
-95550,5066,Eureka,CA,73,Redding,CA
-95551,5074,Fortuna,CA,73,Redding,CA
-95552,5074,Fortuna,CA,73,Redding,CA
-95553,5080,Garberville,CA,62,Napa,CA
-95554,5080,Garberville,CA,62,Napa,CA
-95555,5008,Arcata,CA,73,Redding,CA
-95556,5066,Eureka,CA,73,Redding,CA
-95558,5074,Fortuna,CA,73,Redding,CA
-95559,5080,Garberville,CA,62,Napa,CA
-95560,5080,Garberville,CA,62,Napa,CA
-95562,5074,Fortuna,CA,73,Redding,CA
-95563,5066,Eureka,CA,73,Redding,CA
-95564,5066,Eureka,CA,73,Redding,CA
-95565,5074,Fortuna,CA,73,Redding,CA
-95567,5051,Crescent City,CA,343,Medford,OR
-95568,5066,Eureka,CA,73,Redding,CA
-95569,5074,Fortuna,CA,73,Redding,CA
-95570,5008,Arcata,CA,73,Redding,CA
-95571,5080,Garberville,CA,62,Napa,CA
-95573,5066,Eureka,CA,73,Redding,CA
-95585,5080,Garberville,CA,62,Napa,CA
-95587,5080,Garberville,CA,62,Napa,CA
-95589,5080,Garberville,CA,62,Napa,CA
-95595,5080,Garberville,CA,62,Napa,CA
-95601,5104,Jackson,CA,77,Sacramento,CA
-95602,5012,Auburn,CA,77,Sacramento,CA
-95603,5012,Auburn,CA,77,Sacramento,CA
-95604,5012,Auburn,CA,77,Sacramento,CA
-95605,5200,Sacramento,CA,77,Sacramento,CA
-95606,5274,Woodland,CA,77,Sacramento,CA
-95607,5274,Woodland,CA,77,Sacramento,CA
-95608,5033,Carmichael,CA,77,Sacramento,CA
-95609,5033,Carmichael,CA,77,Sacramento,CA
-95610,5033,Carmichael,CA,77,Sacramento,CA
-95611,5033,Carmichael,CA,77,Sacramento,CA
-95612,5200,Sacramento,CA,77,Sacramento,CA
-95613,5182,Placerville,CA,77,Sacramento,CA
-95614,5012,Auburn,CA,77,Sacramento,CA
-95615,5200,Sacramento,CA,77,Sacramento,CA
-95616,5054,Davis,CA,77,Sacramento,CA
-95617,5054,Davis,CA,77,Sacramento,CA
-95618,5054,Davis,CA,77,Sacramento,CA
-95619,5182,Placerville,CA,77,Sacramento,CA
-95620,5054,Davis,CA,77,Sacramento,CA
-95621,5033,Carmichael,CA,77,Sacramento,CA
-95623,5182,Placerville,CA,77,Sacramento,CA
-95624,5200,Sacramento,CA,77,Sacramento,CA
-95625,5255,Vacaville,CA,33,Contra Costa County,CA
-95626,5200,Sacramento,CA,77,Sacramento,CA
-95627,5274,Woodland,CA,77,Sacramento,CA
-95628,5033,Carmichael,CA,77,Sacramento,CA
-95629,5104,Jackson,CA,77,Sacramento,CA
-95630,5071,Folsom,CA,77,Sacramento,CA
-95631,5012,Auburn,CA,77,Sacramento,CA
-95632,5120,Lodi,CA,77,Sacramento,CA
-95633,5182,Placerville,CA,77,Sacramento,CA
-95634,5182,Placerville,CA,77,Sacramento,CA
-95635,5182,Placerville,CA,77,Sacramento,CA
-95636,5182,Placerville,CA,77,Sacramento,CA
-95637,5274,Woodland,CA,77,Sacramento,CA
-95638,5120,Lodi,CA,77,Sacramento,CA
-95639,5200,Sacramento,CA,77,Sacramento,CA
-95640,5104,Jackson,CA,77,Sacramento,CA
-95641,5120,Lodi,CA,77,Sacramento,CA
-95642,5104,Jackson,CA,77,Sacramento,CA
-95644,5104,Jackson,CA,77,Sacramento,CA
-95645,5274,Woodland,CA,77,Sacramento,CA
-95646,5104,Jackson,CA,77,Sacramento,CA
-95648,5199,Roseville,CA,77,Sacramento,CA
-95650,5199,Roseville,CA,77,Sacramento,CA
-95651,5200,Sacramento,CA,77,Sacramento,CA
-95652,5200,Sacramento,CA,77,Sacramento,CA
-95653,5274,Woodland,CA,77,Sacramento,CA
-95654,5104,Jackson,CA,77,Sacramento,CA
-95655,5200,Sacramento,CA,77,Sacramento,CA
-95656,5182,Placerville,CA,77,Sacramento,CA
-95658,5012,Auburn,CA,77,Sacramento,CA
-95659,5200,Sacramento,CA,77,Sacramento,CA
-95660,5033,Carmichael,CA,77,Sacramento,CA
-95661,5199,Roseville,CA,77,Sacramento,CA
-95662,5200,Sacramento,CA,77,Sacramento,CA
-95663,5199,Roseville,CA,77,Sacramento,CA
-95664,5012,Auburn,CA,77,Sacramento,CA
-95665,5104,Jackson,CA,77,Sacramento,CA
-95666,5104,Jackson,CA,77,Sacramento,CA
-95667,5182,Placerville,CA,77,Sacramento,CA
-95668,5200,Sacramento,CA,77,Sacramento,CA
-95669,5104,Jackson,CA,77,Sacramento,CA
-95670,5200,Sacramento,CA,77,Sacramento,CA
-95671,5071,Folsom,CA,77,Sacramento,CA
-95672,5200,Sacramento,CA,77,Sacramento,CA
-95673,5200,Sacramento,CA,77,Sacramento,CA
-95674,5137,Marysville,CA,77,Sacramento,CA
-95675,5104,Jackson,CA,77,Sacramento,CA
-95676,5274,Woodland,CA,77,Sacramento,CA
-95677,5199,Roseville,CA,77,Sacramento,CA
-95678,5199,Roseville,CA,77,Sacramento,CA
-95679,5274,Woodland,CA,77,Sacramento,CA
-95680,5200,Sacramento,CA,77,Sacramento,CA
-95681,5199,Roseville,CA,77,Sacramento,CA
-95682,5182,Placerville,CA,77,Sacramento,CA
-95683,5200,Sacramento,CA,77,Sacramento,CA
-95684,5182,Placerville,CA,77,Sacramento,CA
-95685,5104,Jackson,CA,77,Sacramento,CA
-95686,5120,Lodi,CA,77,Sacramento,CA
-95687,5255,Vacaville,CA,33,Contra Costa County,CA
-95688,5255,Vacaville,CA,33,Contra Costa County,CA
-95689,5104,Jackson,CA,77,Sacramento,CA
-95690,5200,Sacramento,CA,77,Sacramento,CA
-95691,5200,Sacramento,CA,77,Sacramento,CA
-95692,5137,Marysville,CA,77,Sacramento,CA
-95693,5200,Sacramento,CA,77,Sacramento,CA
-95694,5054,Davis,CA,77,Sacramento,CA
-95695,5274,Woodland,CA,77,Sacramento,CA
-95696,5255,Vacaville,CA,33,Contra Costa County,CA
-95697,5274,Woodland,CA,77,Sacramento,CA
-95698,5274,Woodland,CA,77,Sacramento,CA
-95699,5104,Jackson,CA,77,Sacramento,CA
-95701,5012,Auburn,CA,77,Sacramento,CA
-95703,5012,Auburn,CA,77,Sacramento,CA
-95709,5182,Placerville,CA,77,Sacramento,CA
-95712,5087,Grass Valley,CA,77,Sacramento,CA
-95713,5012,Auburn,CA,77,Sacramento,CA
-95714,5012,Auburn,CA,77,Sacramento,CA
-95715,5012,Auburn,CA,77,Sacramento,CA
-95717,5012,Auburn,CA,77,Sacramento,CA
-95720,5182,Placerville,CA,77,Sacramento,CA
-95721,5235,South Lake Tahoe,CA,77,Sacramento,CA
-95722,5012,Auburn,CA,77,Sacramento,CA
-95724,5250,Truckee,CA,280,Reno,NV
-95726,5182,Placerville,CA,77,Sacramento,CA
-95728,5250,Truckee,CA,280,Reno,NV
-95735,5235,South Lake Tahoe,CA,77,Sacramento,CA
-95736,5012,Auburn,CA,77,Sacramento,CA
-95741,5200,Sacramento,CA,77,Sacramento,CA
-95742,5071,Folsom,CA,77,Sacramento,CA
-95746,5199,Roseville,CA,77,Sacramento,CA
-95747,5199,Roseville,CA,77,Sacramento,CA
-95757,5200,Sacramento,CA,77,Sacramento,CA
-95758,5200,Sacramento,CA,77,Sacramento,CA
-95759,5200,Sacramento,CA,77,Sacramento,CA
-95762,5200,Sacramento,CA,77,Sacramento,CA
-95763,5071,Folsom,CA,77,Sacramento,CA
-95765,5199,Roseville,CA,77,Sacramento,CA
-95776,5274,Woodland,CA,77,Sacramento,CA
-95798,5200,Sacramento,CA,77,Sacramento,CA
-95799,5200,Sacramento,CA,77,Sacramento,CA
-95811,5200,Sacramento,CA,77,Sacramento,CA
-95812,5200,Sacramento,CA,77,Sacramento,CA
-95813,5200,Sacramento,CA,77,Sacramento,CA
-95814,5200,Sacramento,CA,77,Sacramento,CA
-95815,5200,Sacramento,CA,77,Sacramento,CA
-95816,5200,Sacramento,CA,77,Sacramento,CA
-95817,5200,Sacramento,CA,77,Sacramento,CA
-95818,5200,Sacramento,CA,77,Sacramento,CA
-95819,5200,Sacramento,CA,77,Sacramento,CA
-95820,5200,Sacramento,CA,77,Sacramento,CA
-95821,5200,Sacramento,CA,77,Sacramento,CA
-95822,5200,Sacramento,CA,77,Sacramento,CA
-95823,5200,Sacramento,CA,77,Sacramento,CA
-95824,5200,Sacramento,CA,77,Sacramento,CA
-95825,5200,Sacramento,CA,77,Sacramento,CA
-95826,5200,Sacramento,CA,77,Sacramento,CA
-95827,5200,Sacramento,CA,77,Sacramento,CA
-95828,5200,Sacramento,CA,77,Sacramento,CA
-95829,5200,Sacramento,CA,77,Sacramento,CA
-95830,5200,Sacramento,CA,77,Sacramento,CA
-95831,5200,Sacramento,CA,77,Sacramento,CA
-95832,5200,Sacramento,CA,77,Sacramento,CA
-95833,5200,Sacramento,CA,77,Sacramento,CA
-95834,5200,Sacramento,CA,77,Sacramento,CA
-95835,5200,Sacramento,CA,77,Sacramento,CA
-95836,5200,Sacramento,CA,77,Sacramento,CA
-95837,5200,Sacramento,CA,77,Sacramento,CA
-95838,5200,Sacramento,CA,77,Sacramento,CA
-95840,5200,Sacramento,CA,77,Sacramento,CA
-95841,5033,Carmichael,CA,77,Sacramento,CA
-95842,5033,Carmichael,CA,77,Sacramento,CA
-95843,5033,Carmichael,CA,77,Sacramento,CA
-95851,5200,Sacramento,CA,77,Sacramento,CA
-95852,5200,Sacramento,CA,77,Sacramento,CA
-95853,5200,Sacramento,CA,77,Sacramento,CA
-95860,5200,Sacramento,CA,77,Sacramento,CA
-95864,5200,Sacramento,CA,77,Sacramento,CA
-95865,5200,Sacramento,CA,77,Sacramento,CA
-95866,5200,Sacramento,CA,77,Sacramento,CA
-95867,5200,Sacramento,CA,77,Sacramento,CA
-95894,5200,Sacramento,CA,77,Sacramento,CA
-95899,5200,Sacramento,CA,77,Sacramento,CA
-95901,5137,Marysville,CA,77,Sacramento,CA
-95903,5137,Marysville,CA,77,Sacramento,CA
-95910,5087,Grass Valley,CA,77,Sacramento,CA
-95912,5274,Woodland,CA,77,Sacramento,CA
-95913,5037,Chico,CA,31,Chico,CA
-95914,5166,Oroville,CA,31,Chico,CA
-95915,5188,Quincy,CA,280,Reno,NV
-95916,5166,Oroville,CA,31,Chico,CA
-95917,5090,Gridley,CA,77,Sacramento,CA
-95918,5137,Marysville,CA,77,Sacramento,CA
-95919,5137,Marysville,CA,77,Sacramento,CA
-95920,5037,Chico,CA,31,Chico,CA
-95922,5087,Grass Valley,CA,77,Sacramento,CA
-95923,5036,Chester,CA,31,Chico,CA
-95924,5087,Grass Valley,CA,77,Sacramento,CA
-95925,5137,Marysville,CA,77,Sacramento,CA
-95926,5037,Chico,CA,31,Chico,CA
-95927,5037,Chico,CA,31,Chico,CA
-95928,5037,Chico,CA,31,Chico,CA
-95929,5037,Chico,CA,31,Chico,CA
-95930,5166,Oroville,CA,31,Chico,CA
-95932,5044,Colusa,CA,77,Sacramento,CA
-95934,5188,Quincy,CA,280,Reno,NV
-95935,5137,Marysville,CA,77,Sacramento,CA
-95936,5087,Grass Valley,CA,77,Sacramento,CA
-95937,5274,Woodland,CA,77,Sacramento,CA
-95938,5037,Chico,CA,31,Chico,CA
-95939,5037,Chico,CA,31,Chico,CA
-95940,5166,Oroville,CA,31,Chico,CA
-95941,5166,Oroville,CA,31,Chico,CA
-95942,5037,Chico,CA,31,Chico,CA
-95943,5037,Chico,CA,31,Chico,CA
-95944,5087,Grass Valley,CA,77,Sacramento,CA
-95945,5087,Grass Valley,CA,77,Sacramento,CA
-95946,5087,Grass Valley,CA,77,Sacramento,CA
-95947,5089,Greenville,CA,31,Chico,CA
-95948,5090,Gridley,CA,77,Sacramento,CA
-95949,5087,Grass Valley,CA,77,Sacramento,CA
-95950,5274,Woodland,CA,77,Sacramento,CA
-95951,5037,Chico,CA,31,Chico,CA
-95953,5278,Yuba City,CA,77,Sacramento,CA
-95954,5172,Paradise,CA,31,Chico,CA
-95955,5044,Colusa,CA,77,Sacramento,CA
-95956,5188,Quincy,CA,280,Reno,NV
-95957,5044,Colusa,CA,77,Sacramento,CA
-95958,5166,Oroville,CA,31,Chico,CA
-95959,5087,Grass Valley,CA,77,Sacramento,CA
-95960,5087,Grass Valley,CA,77,Sacramento,CA
-95961,5137,Marysville,CA,77,Sacramento,CA
-95962,5137,Marysville,CA,77,Sacramento,CA
-95963,5037,Chico,CA,31,Chico,CA
-95965,5166,Oroville,CA,31,Chico,CA
-95966,5166,Oroville,CA,31,Chico,CA
-95967,5172,Paradise,CA,31,Chico,CA
-95968,5166,Oroville,CA,31,Chico,CA
-95969,5172,Paradise,CA,31,Chico,CA
-95970,5037,Chico,CA,31,Chico,CA
-95971,5188,Quincy,CA,280,Reno,NV
-95972,5166,Oroville,CA,31,Chico,CA
-95973,5037,Chico,CA,31,Chico,CA
-95974,5166,Oroville,CA,31,Chico,CA
-95975,5087,Grass Valley,CA,77,Sacramento,CA
-95976,5037,Chico,CA,31,Chico,CA
-95977,5137,Marysville,CA,77,Sacramento,CA
-95978,5172,Paradise,CA,31,Chico,CA
-95979,5037,Chico,CA,31,Chico,CA
-95980,5188,Quincy,CA,280,Reno,NV
-95981,5166,Oroville,CA,31,Chico,CA
-95982,5278,Yuba City,CA,77,Sacramento,CA
-95983,5089,Greenville,CA,31,Chico,CA
-95984,5188,Quincy,CA,280,Reno,NV
-95986,5087,Grass Valley,CA,77,Sacramento,CA
-95987,5044,Colusa,CA,77,Sacramento,CA
-95988,5037,Chico,CA,31,Chico,CA
-95991,5278,Yuba City,CA,77,Sacramento,CA
-95992,5278,Yuba City,CA,77,Sacramento,CA
-95993,5278,Yuba City,CA,77,Sacramento,CA
-96001,5191,Redding,CA,73,Redding,CA
-96002,5191,Redding,CA,73,Redding,CA
-96003,5191,Redding,CA,73,Redding,CA
-96006,5069,Fall River Mills,CA,73,Redding,CA
-96007,5191,Redding,CA,73,Redding,CA
-96008,5191,Redding,CA,73,Redding,CA
-96009,5069,Fall River Mills,CA,73,Redding,CA
-96010,5191,Redding,CA,73,Redding,CA
-96011,5191,Redding,CA,73,Redding,CA
-96013,5069,Fall River Mills,CA,73,Redding,CA
-96014,5277,Yreka,CA,343,Medford,OR
-96015,38027,Klamath Falls,OR,343,Medford,OR
-96016,5191,Redding,CA,73,Redding,CA
-96017,5191,Redding,CA,73,Redding,CA
-96019,5191,Redding,CA,73,Redding,CA
-96020,5036,Chester,CA,31,Chico,CA
-96021,5037,Chico,CA,31,Chico,CA
-96022,5191,Redding,CA,73,Redding,CA
-96023,38027,Klamath Falls,OR,343,Medford,OR
-96024,5191,Redding,CA,73,Redding,CA
-96025,5148,Mount Shasta,CA,73,Redding,CA
-96027,5277,Yreka,CA,343,Medford,OR
-96028,5069,Fall River Mills,CA,73,Redding,CA
-96029,5190,Red Bluff,CA,31,Chico,CA
-96031,5277,Yreka,CA,343,Medford,OR
-96032,5277,Yreka,CA,343,Medford,OR
-96033,5191,Redding,CA,73,Redding,CA
-96034,5148,Mount Shasta,CA,73,Redding,CA
-96035,5190,Red Bluff,CA,31,Chico,CA
-96037,5277,Yreka,CA,343,Medford,OR
-96038,5277,Yreka,CA,343,Medford,OR
-96039,38034,Medford,OR,343,Medford,OR
-96040,5191,Redding,CA,73,Redding,CA
-96041,5191,Redding,CA,73,Redding,CA
-96044,5277,Yreka,CA,343,Medford,OR
-96046,5074,Fortuna,CA,73,Redding,CA
-96047,5191,Redding,CA,73,Redding,CA
-96048,5264,Weaverville,CA,73,Redding,CA
-96049,5191,Redding,CA,73,Redding,CA
-96050,5277,Yreka,CA,343,Medford,OR
-96051,5191,Redding,CA,73,Redding,CA
-96052,5191,Redding,CA,73,Redding,CA
-96054,38027,Klamath Falls,OR,343,Medford,OR
-96055,5037,Chico,CA,31,Chico,CA
-96056,5069,Fall River Mills,CA,73,Redding,CA
-96057,5148,Mount Shasta,CA,73,Redding,CA
-96058,38027,Klamath Falls,OR,343,Medford,OR
-96059,5191,Redding,CA,73,Redding,CA
-96061,5036,Chester,CA,31,Chico,CA
-96062,5191,Redding,CA,73,Redding,CA
-96063,5036,Chester,CA,31,Chico,CA
-96064,5277,Yreka,CA,343,Medford,OR
-96065,5191,Redding,CA,73,Redding,CA
-96067,5148,Mount Shasta,CA,73,Redding,CA
-96068,5069,Fall River Mills,CA,73,Redding,CA
-96069,5191,Redding,CA,73,Redding,CA
-96070,5191,Redding,CA,73,Redding,CA
-96071,5191,Redding,CA,73,Redding,CA
-96073,5191,Redding,CA,73,Redding,CA
-96074,5190,Red Bluff,CA,31,Chico,CA
-96075,5190,Red Bluff,CA,31,Chico,CA
-96076,5191,Redding,CA,73,Redding,CA
-96078,5190,Red Bluff,CA,31,Chico,CA
-96079,5191,Redding,CA,73,Redding,CA
-96080,5190,Red Bluff,CA,31,Chico,CA
-96084,5191,Redding,CA,73,Redding,CA
-96085,5277,Yreka,CA,343,Medford,OR
-96086,5277,Yreka,CA,343,Medford,OR
-96087,5191,Redding,CA,73,Redding,CA
-96088,5191,Redding,CA,73,Redding,CA
-96089,5191,Redding,CA,73,Redding,CA
-96090,5190,Red Bluff,CA,31,Chico,CA
-96091,5191,Redding,CA,73,Redding,CA
-96092,5037,Chico,CA,31,Chico,CA
-96093,5264,Weaverville,CA,73,Redding,CA
-96094,5148,Mount Shasta,CA,73,Redding,CA
-96095,5191,Redding,CA,73,Redding,CA
-96096,5191,Redding,CA,73,Redding,CA
-96097,5277,Yreka,CA,343,Medford,OR
-96099,5191,Redding,CA,73,Redding,CA
-96101,5003,Alturas,CA,280,Reno,NV
-96103,5186,Portola,CA,280,Reno,NV
-96104,5035,Cedarville,CA,280,Reno,NV
-96105,29013,Reno,NV,280,Reno,NV
-96106,5186,Portola,CA,280,Reno,NV
-96107,29003,Carson City,NV,280,Reno,NV
-96108,38027,Klamath Falls,OR,343,Medford,OR
-96109,29013,Reno,NV,280,Reno,NV
-96110,5035,Cedarville,CA,280,Reno,NV
-96111,29013,Reno,NV,280,Reno,NV
-96112,5035,Cedarville,CA,280,Reno,NV
-96113,29013,Reno,NV,280,Reno,NV
-96114,5241,Susanville,CA,280,Reno,NV
-96115,5035,Cedarville,CA,280,Reno,NV
-96116,5003,Alturas,CA,280,Reno,NV
-96117,5241,Susanville,CA,280,Reno,NV
-96118,29013,Reno,NV,280,Reno,NV
-96119,5241,Susanville,CA,280,Reno,NV
-96120,29003,Carson City,NV,280,Reno,NV
-96121,5241,Susanville,CA,280,Reno,NV
-96122,5186,Portola,CA,280,Reno,NV
-96123,5241,Susanville,CA,280,Reno,NV
-96124,5250,Truckee,CA,280,Reno,NV
-96125,5087,Grass Valley,CA,77,Sacramento,CA
-96126,5250,Truckee,CA,280,Reno,NV
-96127,5241,Susanville,CA,280,Reno,NV
-96128,5241,Susanville,CA,280,Reno,NV
-96129,5186,Portola,CA,280,Reno,NV
-96130,5241,Susanville,CA,280,Reno,NV
-96132,5241,Susanville,CA,280,Reno,NV
-96133,29003,Carson City,NV,280,Reno,NV
-96134,38027,Klamath Falls,OR,343,Medford,OR
-96135,29013,Reno,NV,280,Reno,NV
-96136,5241,Susanville,CA,280,Reno,NV
-96137,5036,Chester,CA,31,Chico,CA
-96140,5250,Truckee,CA,280,Reno,NV
-96141,5250,Truckee,CA,280,Reno,NV
-96142,5250,Truckee,CA,280,Reno,NV
-96143,5250,Truckee,CA,280,Reno,NV
-96145,5250,Truckee,CA,280,Reno,NV
-96146,5250,Truckee,CA,280,Reno,NV
-96148,5250,Truckee,CA,280,Reno,NV
-96150,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96151,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96152,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96154,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96155,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96156,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96157,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96158,5235,South Lake Tahoe,CA,77,Sacramento,CA
-96160,5250,Truckee,CA,280,Reno,NV
-96161,5250,Truckee,CA,280,Reno,NV
-96162,5250,Truckee,CA,280,Reno,NV
-96701,12003,Honolulu,HI,150,Honolulu,HI
-96703,12010,Lihue,HI,150,Honolulu,HI
-96704,12007,Kealakekua,HI,150,Honolulu,HI
-96705,12014,Waimea,HI,150,Honolulu,HI
-96706,12003,Honolulu,HI,150,Honolulu,HI
-96707,12003,Honolulu,HI,150,Honolulu,HI
-96708,12013,Wailuku,HI,150,Honolulu,HI
-96709,12003,Honolulu,HI,150,Honolulu,HI
-96710,12001,Hilo,HI,150,Honolulu,HI
-96712,12003,Honolulu,HI,150,Honolulu,HI
-96713,12013,Wailuku,HI,150,Honolulu,HI
-96714,12010,Lihue,HI,150,Honolulu,HI
-96715,12010,Lihue,HI,150,Honolulu,HI
-96716,12014,Waimea,HI,150,Honolulu,HI
-96717,12003,Honolulu,HI,150,Honolulu,HI
-96718,12001,Hilo,HI,150,Honolulu,HI
-96719,12008,Kohala,HI,150,Honolulu,HI
-96720,12001,Hilo,HI,150,Honolulu,HI
-96721,12001,Hilo,HI,150,Honolulu,HI
-96722,12010,Lihue,HI,150,Honolulu,HI
-96725,12007,Kealakekua,HI,150,Honolulu,HI
-96726,12007,Kealakekua,HI,150,Honolulu,HI
-96727,12001,Hilo,HI,150,Honolulu,HI
-96728,12001,Hilo,HI,150,Honolulu,HI
-96729,12003,Honolulu,HI,150,Honolulu,HI
-96730,12003,Honolulu,HI,150,Honolulu,HI
-96731,12003,Honolulu,HI,150,Honolulu,HI
-96732,12013,Wailuku,HI,150,Honolulu,HI
-96733,12013,Wailuku,HI,150,Honolulu,HI
-96734,12005,Kailua,HI,150,Honolulu,HI
-96737,12001,Hilo,HI,150,Honolulu,HI
-96738,12001,Hilo,HI,150,Honolulu,HI
-96739,12007,Kealakekua,HI,150,Honolulu,HI
-96740,12007,Kealakekua,HI,150,Honolulu,HI
-96741,12014,Waimea,HI,150,Honolulu,HI
-96742,12003,Honolulu,HI,150,Honolulu,HI
-96743,12001,Hilo,HI,150,Honolulu,HI
-96744,12003,Honolulu,HI,150,Honolulu,HI
-96745,12007,Kealakekua,HI,150,Honolulu,HI
-96746,12010,Lihue,HI,150,Honolulu,HI
-96747,12014,Waimea,HI,150,Honolulu,HI
-96748,12003,Honolulu,HI,150,Honolulu,HI
-96749,12001,Hilo,HI,150,Honolulu,HI
-96750,12007,Kealakekua,HI,150,Honolulu,HI
-96751,12010,Lihue,HI,150,Honolulu,HI
-96752,12014,Waimea,HI,150,Honolulu,HI
-96753,12013,Wailuku,HI,150,Honolulu,HI
-96754,12010,Lihue,HI,150,Honolulu,HI
-96755,12008,Kohala,HI,150,Honolulu,HI
-96756,12010,Lihue,HI,150,Honolulu,HI
-96757,12003,Honolulu,HI,150,Honolulu,HI
-96759,12003,Honolulu,HI,150,Honolulu,HI
-96760,12001,Hilo,HI,150,Honolulu,HI
-96761,12013,Wailuku,HI,150,Honolulu,HI
-96762,12003,Honolulu,HI,150,Honolulu,HI
-96763,12003,Honolulu,HI,150,Honolulu,HI
-96764,12001,Hilo,HI,150,Honolulu,HI
-96765,12010,Lihue,HI,150,Honolulu,HI
-96766,12010,Lihue,HI,150,Honolulu,HI
-96767,12013,Wailuku,HI,150,Honolulu,HI
-96768,12013,Wailuku,HI,150,Honolulu,HI
-96769,12014,Waimea,HI,150,Honolulu,HI
-96770,12003,Honolulu,HI,150,Honolulu,HI
-96771,12001,Hilo,HI,150,Honolulu,HI
-96772,12001,Hilo,HI,150,Honolulu,HI
-96773,12001,Hilo,HI,150,Honolulu,HI
-96774,12001,Hilo,HI,150,Honolulu,HI
-96776,12001,Hilo,HI,150,Honolulu,HI
-96777,12001,Hilo,HI,150,Honolulu,HI
-96778,12001,Hilo,HI,150,Honolulu,HI
-96779,12013,Wailuku,HI,150,Honolulu,HI
-96780,12001,Hilo,HI,150,Honolulu,HI
-96781,12001,Hilo,HI,150,Honolulu,HI
-96782,12003,Honolulu,HI,150,Honolulu,HI
-96783,12001,Hilo,HI,150,Honolulu,HI
-96784,12013,Wailuku,HI,150,Honolulu,HI
-96785,12001,Hilo,HI,150,Honolulu,HI
-96786,12012,Wahiawa,HI,150,Honolulu,HI
-96788,12013,Wailuku,HI,150,Honolulu,HI
-96789,12003,Honolulu,HI,150,Honolulu,HI
-96790,12013,Wailuku,HI,150,Honolulu,HI
-96791,12012,Wahiawa,HI,150,Honolulu,HI
-96792,12003,Honolulu,HI,150,Honolulu,HI
-96793,12013,Wailuku,HI,150,Honolulu,HI
-96795,12005,Kailua,HI,150,Honolulu,HI
-96796,12014,Waimea,HI,150,Honolulu,HI
-96797,12003,Honolulu,HI,150,Honolulu,HI
-96801,12003,Honolulu,HI,150,Honolulu,HI
-96802,12003,Honolulu,HI,150,Honolulu,HI
-96803,12003,Honolulu,HI,150,Honolulu,HI
-96804,12003,Honolulu,HI,150,Honolulu,HI
-96805,12003,Honolulu,HI,150,Honolulu,HI
-96806,12003,Honolulu,HI,150,Honolulu,HI
-96807,12003,Honolulu,HI,150,Honolulu,HI
-96808,12003,Honolulu,HI,150,Honolulu,HI
-96809,12003,Honolulu,HI,150,Honolulu,HI
-96810,12003,Honolulu,HI,150,Honolulu,HI
-96811,12003,Honolulu,HI,150,Honolulu,HI
-96812,12003,Honolulu,HI,150,Honolulu,HI
-96813,12003,Honolulu,HI,150,Honolulu,HI
-96814,12003,Honolulu,HI,150,Honolulu,HI
-96815,12003,Honolulu,HI,150,Honolulu,HI
-96816,12003,Honolulu,HI,150,Honolulu,HI
-96817,12003,Honolulu,HI,150,Honolulu,HI
-96818,12003,Honolulu,HI,150,Honolulu,HI
-96819,12003,Honolulu,HI,150,Honolulu,HI
-96820,12003,Honolulu,HI,150,Honolulu,HI
-96821,12003,Honolulu,HI,150,Honolulu,HI
-96822,12003,Honolulu,HI,150,Honolulu,HI
-96823,12003,Honolulu,HI,150,Honolulu,HI
-96824,12003,Honolulu,HI,150,Honolulu,HI
-96825,12003,Honolulu,HI,150,Honolulu,HI
-96826,12003,Honolulu,HI,150,Honolulu,HI
-96828,12003,Honolulu,HI,150,Honolulu,HI
-96830,12003,Honolulu,HI,150,Honolulu,HI
-96836,12003,Honolulu,HI,150,Honolulu,HI
-96837,12003,Honolulu,HI,150,Honolulu,HI
-96838,12003,Honolulu,HI,150,Honolulu,HI
-96839,12003,Honolulu,HI,150,Honolulu,HI
-96840,12003,Honolulu,HI,150,Honolulu,HI
-96841,12003,Honolulu,HI,150,Honolulu,HI
-96843,12003,Honolulu,HI,150,Honolulu,HI
-96844,12003,Honolulu,HI,150,Honolulu,HI
-96846,12003,Honolulu,HI,150,Honolulu,HI
-96847,12003,Honolulu,HI,150,Honolulu,HI
-96848,12003,Honolulu,HI,150,Honolulu,HI
-96849,12003,Honolulu,HI,150,Honolulu,HI
-96850,12003,Honolulu,HI,150,Honolulu,HI
-96853,12003,Honolulu,HI,150,Honolulu,HI
-96854,12012,Wahiawa,HI,150,Honolulu,HI
-96857,12012,Wahiawa,HI,150,Honolulu,HI
-96858,12003,Honolulu,HI,150,Honolulu,HI
-96859,12003,Honolulu,HI,150,Honolulu,HI
-96860,12003,Honolulu,HI,150,Honolulu,HI
-96861,12003,Honolulu,HI,150,Honolulu,HI
-96863,12005,Kailua,HI,150,Honolulu,HI
-96898,12003,Honolulu,HI,150,Honolulu,HI
-97001,38032,Madras,OR,341,Bend,OR
-97002,38056,Tualatin,OR,344,Portland,OR
-97003,38043,Portland,OR,344,Portland,OR
-97004,38041,Oregon City,OR,344,Portland,OR
-97005,38043,Portland,OR,344,Portland,OR
-97006,38043,Portland,OR,344,Portland,OR
-97007,38043,Portland,OR,344,Portland,OR
-97008,38043,Portland,OR,344,Portland,OR
-97009,38043,Portland,OR,344,Portland,OR
-97010,38043,Portland,OR,344,Portland,OR
-97011,38043,Portland,OR,344,Portland,OR
-97013,38041,Oregon City,OR,344,Portland,OR
-97014,38025,Hood River,OR,344,Portland,OR
-97015,38043,Portland,OR,344,Portland,OR
-97016,50031,Longview,WA,344,Portland,OR
-97017,38041,Oregon City,OR,344,Portland,OR
-97018,38043,Portland,OR,344,Portland,OR
-97019,38043,Portland,OR,344,Portland,OR
-97020,38056,Tualatin,OR,344,Portland,OR
-97021,38054,The Dalles,OR,344,Portland,OR
-97022,38043,Portland,OR,344,Portland,OR
-97023,38043,Portland,OR,344,Portland,OR
-97024,38043,Portland,OR,344,Portland,OR
-97026,38056,Tualatin,OR,344,Portland,OR
-97027,38041,Oregon City,OR,344,Portland,OR
-97028,38043,Portland,OR,344,Portland,OR
-97029,38054,The Dalles,OR,344,Portland,OR
-97030,38043,Portland,OR,344,Portland,OR
-97031,38025,Hood River,OR,344,Portland,OR
-97032,38056,Tualatin,OR,344,Portland,OR
-97033,38054,The Dalles,OR,344,Portland,OR
-97034,38043,Portland,OR,344,Portland,OR
-97035,38043,Portland,OR,344,Portland,OR
-97036,38043,Portland,OR,344,Portland,OR
-97037,38054,The Dalles,OR,344,Portland,OR
-97038,38041,Oregon City,OR,344,Portland,OR
-97039,38054,The Dalles,OR,344,Portland,OR
-97040,38054,The Dalles,OR,344,Portland,OR
-97041,38025,Hood River,OR,344,Portland,OR
-97042,38041,Oregon City,OR,344,Portland,OR
-97044,38025,Hood River,OR,344,Portland,OR
-97045,38041,Oregon City,OR,344,Portland,OR
-97048,50031,Longview,WA,344,Portland,OR
-97049,38043,Portland,OR,344,Portland,OR
-97050,38054,The Dalles,OR,344,Portland,OR
-97051,38043,Portland,OR,344,Portland,OR
-97053,38043,Portland,OR,344,Portland,OR
-97054,38043,Portland,OR,344,Portland,OR
-97055,38043,Portland,OR,344,Portland,OR
-97056,38043,Portland,OR,344,Portland,OR
-97057,38032,Madras,OR,341,Bend,OR
-97058,38054,The Dalles,OR,344,Portland,OR
-97060,38043,Portland,OR,344,Portland,OR
-97062,38056,Tualatin,OR,344,Portland,OR
-97063,38054,The Dalles,OR,344,Portland,OR
-97064,38043,Portland,OR,344,Portland,OR
-97065,38054,The Dalles,OR,344,Portland,OR
-97067,38043,Portland,OR,344,Portland,OR
-97068,38043,Portland,OR,344,Portland,OR
-97070,38056,Tualatin,OR,344,Portland,OR
-97071,38056,Tualatin,OR,344,Portland,OR
-97075,38043,Portland,OR,344,Portland,OR
-97076,38043,Portland,OR,344,Portland,OR
-97077,38043,Portland,OR,344,Portland,OR
-97078,38043,Portland,OR,344,Portland,OR
-97079,38043,Portland,OR,344,Portland,OR
-97080,38043,Portland,OR,344,Portland,OR
-97086,38043,Portland,OR,344,Portland,OR
-97089,38043,Portland,OR,344,Portland,OR
-97101,38033,McMinnville,OR,344,Portland,OR
-97102,38049,Seaside,OR,344,Portland,OR
-97103,38003,Astoria,OR,344,Portland,OR
-97106,38024,Hillsboro,OR,344,Portland,OR
-97107,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97108,38031,Lincoln City,OR,344,Portland,OR
-97109,38024,Hillsboro,OR,344,Portland,OR
-97110,38049,Seaside,OR,344,Portland,OR
-97111,38033,McMinnville,OR,344,Portland,OR
-97112,38031,Lincoln City,OR,344,Portland,OR
-97113,38024,Hillsboro,OR,344,Portland,OR
-97114,38033,McMinnville,OR,344,Portland,OR
-97115,38037,Newberg,OR,344,Portland,OR
-97116,38024,Hillsboro,OR,344,Portland,OR
-97117,38024,Hillsboro,OR,344,Portland,OR
-97118,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97119,38024,Hillsboro,OR,344,Portland,OR
-97121,38003,Astoria,OR,344,Portland,OR
-97122,38031,Lincoln City,OR,344,Portland,OR
-97123,38024,Hillsboro,OR,344,Portland,OR
-97124,38024,Hillsboro,OR,344,Portland,OR
-97125,38024,Hillsboro,OR,344,Portland,OR
-97127,38033,McMinnville,OR,344,Portland,OR
-97128,38033,McMinnville,OR,344,Portland,OR
-97129,38024,Hillsboro,OR,344,Portland,OR
-97130,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97131,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97132,38037,Newberg,OR,344,Portland,OR
-97133,38024,Hillsboro,OR,344,Portland,OR
-97134,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97135,38031,Lincoln City,OR,344,Portland,OR
-97136,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97137,38037,Newberg,OR,344,Portland,OR
-97138,38049,Seaside,OR,344,Portland,OR
-97140,38043,Portland,OR,344,Portland,OR
-97141,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97143,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97144,38024,Hillsboro,OR,344,Portland,OR
-97145,38049,Seaside,OR,344,Portland,OR
-97146,38003,Astoria,OR,344,Portland,OR
-97147,38055,Tillamook/Wheeler,OR,344,Portland,OR
-97148,38033,McMinnville,OR,344,Portland,OR
-97149,38031,Lincoln City,OR,344,Portland,OR
-97201,38043,Portland,OR,344,Portland,OR
-97202,38043,Portland,OR,344,Portland,OR
-97203,38043,Portland,OR,344,Portland,OR
-97204,38043,Portland,OR,344,Portland,OR
-97205,38043,Portland,OR,344,Portland,OR
-97206,38043,Portland,OR,344,Portland,OR
-97207,38043,Portland,OR,344,Portland,OR
-97208,38043,Portland,OR,344,Portland,OR
-97209,38043,Portland,OR,344,Portland,OR
-97210,38043,Portland,OR,344,Portland,OR
-97211,38043,Portland,OR,344,Portland,OR
-97212,38043,Portland,OR,344,Portland,OR
-97213,38043,Portland,OR,344,Portland,OR
-97214,38043,Portland,OR,344,Portland,OR
-97215,38043,Portland,OR,344,Portland,OR
-97216,38043,Portland,OR,344,Portland,OR
-97217,38043,Portland,OR,344,Portland,OR
-97218,38043,Portland,OR,344,Portland,OR
-97219,38043,Portland,OR,344,Portland,OR
-97220,38043,Portland,OR,344,Portland,OR
-97221,38043,Portland,OR,344,Portland,OR
-97222,38043,Portland,OR,344,Portland,OR
-97223,38043,Portland,OR,344,Portland,OR
-97224,38043,Portland,OR,344,Portland,OR
-97225,38043,Portland,OR,344,Portland,OR
-97227,38043,Portland,OR,344,Portland,OR
-97228,38043,Portland,OR,344,Portland,OR
-97229,38043,Portland,OR,344,Portland,OR
-97230,38043,Portland,OR,344,Portland,OR
-97231,38043,Portland,OR,344,Portland,OR
-97232,38043,Portland,OR,344,Portland,OR
-97233,38043,Portland,OR,344,Portland,OR
-97236,38043,Portland,OR,344,Portland,OR
-97238,38043,Portland,OR,344,Portland,OR
-97239,38043,Portland,OR,344,Portland,OR
-97240,38043,Portland,OR,344,Portland,OR
-97242,38043,Portland,OR,344,Portland,OR
-97250,38043,Portland,OR,344,Portland,OR
-97251,38043,Portland,OR,344,Portland,OR
-97252,38043,Portland,OR,344,Portland,OR
-97253,38043,Portland,OR,344,Portland,OR
-97254,38043,Portland,OR,344,Portland,OR
-97256,38043,Portland,OR,344,Portland,OR
-97258,38043,Portland,OR,344,Portland,OR
-97266,38043,Portland,OR,344,Portland,OR
-97267,38043,Portland,OR,344,Portland,OR
-97268,38043,Portland,OR,344,Portland,OR
-97269,38043,Portland,OR,344,Portland,OR
-97280,38043,Portland,OR,344,Portland,OR
-97281,38043,Portland,OR,344,Portland,OR
-97282,38043,Portland,OR,344,Portland,OR
-97283,38043,Portland,OR,344,Portland,OR
-97286,38043,Portland,OR,344,Portland,OR
-97290,38043,Portland,OR,344,Portland,OR
-97291,38043,Portland,OR,344,Portland,OR
-97292,38043,Portland,OR,344,Portland,OR
-97293,38043,Portland,OR,344,Portland,OR
-97294,38043,Portland,OR,344,Portland,OR
-97296,38043,Portland,OR,344,Portland,OR
-97298,38043,Portland,OR,344,Portland,OR
-97301,38048,Salem,OR,345,Salem,OR
-97302,38048,Salem,OR,345,Salem,OR
-97303,38048,Salem,OR,345,Salem,OR
-97304,38048,Salem,OR,345,Salem,OR
-97305,38048,Salem,OR,345,Salem,OR
-97306,38048,Salem,OR,345,Salem,OR
-97307,38048,Salem,OR,345,Salem,OR
-97308,38048,Salem,OR,345,Salem,OR
-97309,38048,Salem,OR,345,Salem,OR
-97310,38048,Salem,OR,345,Salem,OR
-97311,38048,Salem,OR,345,Salem,OR
-97312,38048,Salem,OR,345,Salem,OR
-97313,38048,Salem,OR,345,Salem,OR
-97314,38048,Salem,OR,345,Salem,OR
-97317,38048,Salem,OR,345,Salem,OR
-97321,38001,Albany,OR,342,Eugene,OR
-97322,38001,Albany,OR,342,Eugene,OR
-97324,38012,Corvallis,OR,342,Eugene,OR
-97325,38048,Salem,OR,345,Salem,OR
-97326,38012,Corvallis,OR,342,Eugene,OR
-97327,38030,Lebanon,OR,342,Eugene,OR
-97329,38030,Lebanon,OR,342,Eugene,OR
-97330,38012,Corvallis,OR,342,Eugene,OR
-97331,38012,Corvallis,OR,342,Eugene,OR
-97333,38012,Corvallis,OR,342,Eugene,OR
-97335,38030,Lebanon,OR,342,Eugene,OR
-97336,38030,Lebanon,OR,342,Eugene,OR
-97338,38014,Dallas,OR,345,Salem,OR
-97339,38012,Corvallis,OR,342,Eugene,OR
-97341,38031,Lincoln City,OR,344,Portland,OR
-97342,38048,Salem,OR,345,Salem,OR
-97343,38012,Corvallis,OR,342,Eugene,OR
-97344,38014,Dallas,OR,345,Salem,OR
-97345,38030,Lebanon,OR,342,Eugene,OR
-97346,38048,Salem,OR,345,Salem,OR
-97347,38033,McMinnville,OR,344,Portland,OR
-97348,38012,Corvallis,OR,342,Eugene,OR
-97350,38048,Salem,OR,345,Salem,OR
-97351,38048,Salem,OR,345,Salem,OR
-97352,38001,Albany,OR,342,Eugene,OR
-97355,38030,Lebanon,OR,342,Eugene,OR
-97357,38038,Newport,OR,344,Portland,OR
-97358,38030,Lebanon,OR,342,Eugene,OR
-97360,38048,Salem,OR,345,Salem,OR
-97361,38048,Salem,OR,345,Salem,OR
-97362,38050,Silverton,OR,344,Portland,OR
-97364,38031,Lincoln City,OR,344,Portland,OR
-97365,38038,Newport,OR,344,Portland,OR
-97366,38038,Newport,OR,344,Portland,OR
-97367,38031,Lincoln City,OR,344,Portland,OR
-97368,38031,Lincoln City,OR,344,Portland,OR
-97369,38038,Newport,OR,344,Portland,OR
-97370,38012,Corvallis,OR,342,Eugene,OR
-97371,38014,Dallas,OR,345,Salem,OR
-97373,38050,Silverton,OR,344,Portland,OR
-97374,38030,Lebanon,OR,342,Eugene,OR
-97375,38041,Oregon City,OR,344,Portland,OR
-97376,38038,Newport,OR,344,Portland,OR
-97377,38012,Corvallis,OR,342,Eugene,OR
-97378,38033,McMinnville,OR,344,Portland,OR
-97380,38038,Newport,OR,344,Portland,OR
-97381,38050,Silverton,OR,344,Portland,OR
-97383,38048,Salem,OR,345,Salem,OR
-97384,38048,Salem,OR,345,Salem,OR
-97385,38048,Salem,OR,345,Salem,OR
-97386,38030,Lebanon,OR,342,Eugene,OR
-97388,38031,Lincoln City,OR,344,Portland,OR
-97389,38001,Albany,OR,342,Eugene,OR
-97390,38038,Newport,OR,344,Portland,OR
-97391,38038,Newport,OR,344,Portland,OR
-97392,38048,Salem,OR,345,Salem,OR
-97394,38038,Newport,OR,344,Portland,OR
-97396,38033,McMinnville,OR,344,Portland,OR
-97401,38016,Eugene,OR,342,Eugene,OR
-97402,38016,Eugene,OR,342,Eugene,OR
-97403,38016,Eugene,OR,342,Eugene,OR
-97404,38016,Eugene,OR,342,Eugene,OR
-97405,38016,Eugene,OR,342,Eugene,OR
-97406,38019,Gold Beach,OR,343,Medford,OR
-97407,38010,Coos Bay,OR,342,Eugene,OR
-97408,38016,Eugene,OR,342,Eugene,OR
-97409,38016,Eugene,OR,342,Eugene,OR
-97410,38047,Roseburg,OR,342,Eugene,OR
-97411,38010,Coos Bay,OR,342,Eugene,OR
-97412,38016,Eugene,OR,342,Eugene,OR
-97413,38051,Springfield,OR,342,Eugene,OR
-97414,38010,Coos Bay,OR,342,Eugene,OR
-97415,5051,Crescent City,CA,343,Medford,OR
-97416,38047,Roseburg,OR,342,Eugene,OR
-97417,38047,Roseburg,OR,342,Eugene,OR
-97419,38016,Eugene,OR,342,Eugene,OR
-97420,38010,Coos Bay,OR,342,Eugene,OR
-97423,38010,Coos Bay,OR,342,Eugene,OR
-97424,38013,Cottage Grove,OR,342,Eugene,OR
-97426,38016,Eugene,OR,342,Eugene,OR
-97429,38047,Roseburg,OR,342,Eugene,OR
-97430,38016,Eugene,OR,342,Eugene,OR
-97431,38016,Eugene,OR,342,Eugene,OR
-97432,38047,Roseburg,OR,342,Eugene,OR
-97434,38013,Cottage Grove,OR,342,Eugene,OR
-97435,38013,Cottage Grove,OR,342,Eugene,OR
-97436,38047,Roseburg,OR,342,Eugene,OR
-97437,38016,Eugene,OR,342,Eugene,OR
-97438,38051,Springfield,OR,342,Eugene,OR
-97439,38017,Florence,OR,342,Eugene,OR
-97440,38016,Eugene,OR,342,Eugene,OR
-97441,38010,Coos Bay,OR,342,Eugene,OR
-97442,38020,Grants Pass,OR,343,Medford,OR
-97443,38047,Roseburg,OR,342,Eugene,OR
-97444,38019,Gold Beach,OR,343,Medford,OR
-97446,38016,Eugene,OR,342,Eugene,OR
-97447,38047,Roseburg,OR,342,Eugene,OR
-97448,38016,Eugene,OR,342,Eugene,OR
-97449,38010,Coos Bay,OR,342,Eugene,OR
-97450,38010,Coos Bay,OR,342,Eugene,OR
-97451,38016,Eugene,OR,342,Eugene,OR
-97452,38051,Springfield,OR,342,Eugene,OR
-97453,38017,Florence,OR,342,Eugene,OR
-97454,38016,Eugene,OR,342,Eugene,OR
-97455,38016,Eugene,OR,342,Eugene,OR
-97456,38012,Corvallis,OR,342,Eugene,OR
-97457,38047,Roseburg,OR,342,Eugene,OR
-97458,38010,Coos Bay,OR,342,Eugene,OR
-97459,38010,Coos Bay,OR,342,Eugene,OR
-97461,38016,Eugene,OR,342,Eugene,OR
-97462,38047,Roseburg,OR,342,Eugene,OR
-97463,38016,Eugene,OR,342,Eugene,OR
-97464,38019,Gold Beach,OR,343,Medford,OR
-97465,38010,Coos Bay,OR,342,Eugene,OR
-97466,38010,Coos Bay,OR,342,Eugene,OR
-97467,38010,Coos Bay,OR,342,Eugene,OR
-97469,38047,Roseburg,OR,342,Eugene,OR
-97470,38047,Roseburg,OR,342,Eugene,OR
-97471,38047,Roseburg,OR,342,Eugene,OR
-97473,38010,Coos Bay,OR,342,Eugene,OR
-97475,38051,Springfield,OR,342,Eugene,OR
-97476,38010,Coos Bay,OR,342,Eugene,OR
-97477,38051,Springfield,OR,342,Eugene,OR
-97478,38051,Springfield,OR,342,Eugene,OR
-97479,38047,Roseburg,OR,342,Eugene,OR
-97480,38017,Florence,OR,342,Eugene,OR
-97481,38047,Roseburg,OR,342,Eugene,OR
-97484,38047,Roseburg,OR,342,Eugene,OR
-97486,38047,Roseburg,OR,342,Eugene,OR
-97487,38016,Eugene,OR,342,Eugene,OR
-97488,38051,Springfield,OR,342,Eugene,OR
-97489,38051,Springfield,OR,342,Eugene,OR
-97490,38016,Eugene,OR,342,Eugene,OR
-97491,38019,Gold Beach,OR,343,Medford,OR
-97492,38051,Springfield,OR,342,Eugene,OR
-97493,38017,Florence,OR,342,Eugene,OR
-97494,38047,Roseburg,OR,342,Eugene,OR
-97495,38047,Roseburg,OR,342,Eugene,OR
-97496,38047,Roseburg,OR,342,Eugene,OR
-97497,38020,Grants Pass,OR,343,Medford,OR
-97498,38038,Newport,OR,344,Portland,OR
-97499,38047,Roseburg,OR,342,Eugene,OR
-97501,38034,Medford,OR,343,Medford,OR
-97502,38034,Medford,OR,343,Medford,OR
-97503,38034,Medford,OR,343,Medford,OR
-97504,38034,Medford,OR,343,Medford,OR
-97520,38002,Ashland,OR,343,Medford,OR
-97522,38034,Medford,OR,343,Medford,OR
-97523,38020,Grants Pass,OR,343,Medford,OR
-97524,38034,Medford,OR,343,Medford,OR
-97525,38034,Medford,OR,343,Medford,OR
-97526,38020,Grants Pass,OR,343,Medford,OR
-97527,38020,Grants Pass,OR,343,Medford,OR
-97528,38020,Grants Pass,OR,343,Medford,OR
-97530,38034,Medford,OR,343,Medford,OR
-97531,38020,Grants Pass,OR,343,Medford,OR
-97532,38020,Grants Pass,OR,343,Medford,OR
-97533,38020,Grants Pass,OR,343,Medford,OR
-97534,38020,Grants Pass,OR,343,Medford,OR
-97535,38034,Medford,OR,343,Medford,OR
-97536,38034,Medford,OR,343,Medford,OR
-97537,38020,Grants Pass,OR,343,Medford,OR
-97538,38020,Grants Pass,OR,343,Medford,OR
-97539,38034,Medford,OR,343,Medford,OR
-97540,38034,Medford,OR,343,Medford,OR
-97541,38034,Medford,OR,343,Medford,OR
-97543,38020,Grants Pass,OR,343,Medford,OR
-97544,38020,Grants Pass,OR,343,Medford,OR
-97601,38027,Klamath Falls,OR,343,Medford,OR
-97602,38027,Klamath Falls,OR,343,Medford,OR
-97603,38027,Klamath Falls,OR,343,Medford,OR
-97604,38006,Bend,OR,341,Bend,OR
-97620,38029,Lakeview,OR,343,Medford,OR
-97621,38027,Klamath Falls,OR,343,Medford,OR
-97622,38027,Klamath Falls,OR,343,Medford,OR
-97623,38027,Klamath Falls,OR,343,Medford,OR
-97624,38027,Klamath Falls,OR,343,Medford,OR
-97625,38027,Klamath Falls,OR,343,Medford,OR
-97626,38027,Klamath Falls,OR,343,Medford,OR
-97627,38027,Klamath Falls,OR,343,Medford,OR
-97630,38029,Lakeview,OR,343,Medford,OR
-97632,38027,Klamath Falls,OR,343,Medford,OR
-97633,38027,Klamath Falls,OR,343,Medford,OR
-97634,38027,Klamath Falls,OR,343,Medford,OR
-97635,38029,Lakeview,OR,343,Medford,OR
-97636,38029,Lakeview,OR,343,Medford,OR
-97637,38029,Lakeview,OR,343,Medford,OR
-97638,38006,Bend,OR,341,Bend,OR
-97639,38027,Klamath Falls,OR,343,Medford,OR
-97640,38029,Lakeview,OR,343,Medford,OR
-97641,38006,Bend,OR,341,Bend,OR
-97701,38006,Bend,OR,341,Bend,OR
-97702,38006,Bend,OR,341,Bend,OR
-97703,38006,Bend,OR,341,Bend,OR
-97707,38006,Bend,OR,341,Bend,OR
-97708,38006,Bend,OR,341,Bend,OR
-97709,38006,Bend,OR,341,Bend,OR
-97710,38007,Burns,OR,341,Bend,OR
-97711,38032,Madras,OR,341,Bend,OR
-97712,38006,Bend,OR,341,Bend,OR
-97720,38007,Burns,OR,341,Bend,OR
-97721,38007,Burns,OR,341,Bend,OR
-97722,38007,Burns,OR,341,Bend,OR
-97730,38006,Bend,OR,341,Bend,OR
-97731,38006,Bend,OR,341,Bend,OR
-97732,38007,Burns,OR,341,Bend,OR
-97733,38006,Bend,OR,341,Bend,OR
-97734,38006,Bend,OR,341,Bend,OR
-97735,38006,Bend,OR,341,Bend,OR
-97736,38007,Burns,OR,341,Bend,OR
-97737,38006,Bend,OR,341,Bend,OR
-97738,38007,Burns,OR,341,Bend,OR
-97739,38006,Bend,OR,341,Bend,OR
-97741,38032,Madras,OR,341,Bend,OR
-97750,38044,Prineville,OR,341,Bend,OR
-97751,38044,Prineville,OR,341,Bend,OR
-97752,38044,Prineville,OR,341,Bend,OR
-97753,38006,Bend,OR,341,Bend,OR
-97754,38044,Prineville,OR,341,Bend,OR
-97756,38045,Redmond,OR,341,Bend,OR
-97758,38007,Burns,OR,341,Bend,OR
-97759,38006,Bend,OR,341,Bend,OR
-97760,38006,Bend,OR,341,Bend,OR
-97761,38032,Madras,OR,341,Bend,OR
-97801,38042,Pendleton,OR,344,Portland,OR
-97810,38042,Pendleton,OR,344,Portland,OR
-97812,38054,The Dalles,OR,344,Portland,OR
-97813,50065,Walla Walla,WA,440,Spokane,WA
-97814,38004,Baker,OR,151,Boise,ID
-97817,38026,John Day,OR,341,Bend,OR
-97818,38023,Hermiston,OR,344,Portland,OR
-97819,38004,Baker,OR,151,Boise,ID
-97820,38026,John Day,OR,341,Bend,OR
-97823,38054,The Dalles,OR,344,Portland,OR
-97824,38028,La Grande,OR,344,Portland,OR
-97825,38026,John Day,OR,341,Bend,OR
-97826,38023,Hermiston,OR,344,Portland,OR
-97827,38028,La Grande,OR,344,Portland,OR
-97828,38015,Enterprise,OR,440,Spokane,WA
-97830,38054,The Dalles,OR,344,Portland,OR
-97833,38004,Baker,OR,151,Boise,ID
-97834,38004,Baker,OR,151,Boise,ID
-97835,38042,Pendleton,OR,344,Portland,OR
-97836,38022,Heppner,OR,344,Portland,OR
-97837,38004,Baker,OR,151,Boise,ID
-97838,38023,Hermiston,OR,344,Portland,OR
-97839,38022,Heppner,OR,344,Portland,OR
-97840,13004,Boise,ID,151,Boise,ID
-97841,38028,La Grande,OR,344,Portland,OR
-97842,38015,Enterprise,OR,440,Spokane,WA
-97843,38022,Heppner,OR,344,Portland,OR
-97844,38023,Hermiston,OR,344,Portland,OR
-97845,38026,John Day,OR,341,Bend,OR
-97846,38015,Enterprise,OR,440,Spokane,WA
-97848,38026,John Day,OR,341,Bend,OR
-97850,38028,La Grande,OR,344,Portland,OR
-97856,38026,John Day,OR,341,Bend,OR
-97857,38015,Enterprise,OR,440,Spokane,WA
-97859,38042,Pendleton,OR,344,Portland,OR
-97861,38054,The Dalles,OR,344,Portland,OR
-97862,50065,Walla Walla,WA,440,Spokane,WA
-97864,38026,John Day,OR,341,Bend,OR
-97865,38026,John Day,OR,341,Bend,OR
-97867,38004,Baker,OR,151,Boise,ID
-97868,38042,Pendleton,OR,344,Portland,OR
-97869,38026,John Day,OR,341,Bend,OR
-97870,38004,Baker,OR,151,Boise,ID
-97873,38026,John Day,OR,341,Bend,OR
-97874,38044,Prineville,OR,341,Bend,OR
-97875,38023,Hermiston,OR,344,Portland,OR
-97876,38028,La Grande,OR,344,Portland,OR
-97877,38004,Baker,OR,151,Boise,ID
-97880,38042,Pendleton,OR,344,Portland,OR
-97882,38023,Hermiston,OR,344,Portland,OR
-97883,38028,La Grande,OR,344,Portland,OR
-97884,38040,Ontario,OR,151,Boise,ID
-97885,38015,Enterprise,OR,440,Spokane,WA
-97886,50065,Walla Walla,WA,440,Spokane,WA
-97901,38040,Ontario,OR,151,Boise,ID
-97902,13007,Caldwell,ID,151,Boise,ID
-97903,38040,Ontario,OR,151,Boise,ID
-97904,38007,Burns,OR,341,Bend,OR
-97905,38040,Ontario,OR,151,Boise,ID
-97906,38040,Ontario,OR,151,Boise,ID
-97907,38040,Ontario,OR,151,Boise,ID
-97908,38040,Ontario,OR,151,Boise,ID
-97909,38040,Ontario,OR,151,Boise,ID
-97910,13007,Caldwell,ID,151,Boise,ID
-97911,38040,Ontario,OR,151,Boise,ID
-97913,38040,Ontario,OR,151,Boise,ID
-97914,38040,Ontario,OR,151,Boise,ID
-97917,38040,Ontario,OR,151,Boise,ID
-97918,38040,Ontario,OR,151,Boise,ID
-97920,38040,Ontario,OR,151,Boise,ID
-98001,50004,Auburn,WA,439,Seattle,WA
-98002,50004,Auburn,WA,439,Seattle,WA
-98003,50023,Federal Way,WA,439,Seattle,WA
-98004,50005,Bellevue,WA,439,Seattle,WA
-98005,50005,Bellevue,WA,439,Seattle,WA
-98006,50005,Bellevue,WA,439,Seattle,WA
-98007,50005,Bellevue,WA,439,Seattle,WA
-98008,50005,Bellevue,WA,439,Seattle,WA
-98009,50005,Bellevue,WA,439,Seattle,WA
-98010,50020,Enumclaw,WA,439,Seattle,WA
-98011,50054,Seattle,WA,439,Seattle,WA
-98012,50054,Seattle,WA,439,Seattle,WA
-98013,50054,Seattle,WA,439,Seattle,WA
-98014,50005,Bellevue,WA,439,Seattle,WA
-98015,50005,Bellevue,WA,439,Seattle,WA
-98019,50029,Kirkland,WA,439,Seattle,WA
-98020,50018,Edmonds,WA,439,Seattle,WA
-98021,50054,Seattle,WA,439,Seattle,WA
-98022,50020,Enumclaw,WA,439,Seattle,WA
-98023,50023,Federal Way,WA,439,Seattle,WA
-98024,50005,Bellevue,WA,439,Seattle,WA
-98025,50050,Renton,WA,439,Seattle,WA
-98026,50018,Edmonds,WA,439,Seattle,WA
-98027,50005,Bellevue,WA,439,Seattle,WA
-98028,50054,Seattle,WA,439,Seattle,WA
-98029,50005,Bellevue,WA,439,Seattle,WA
-98030,50050,Renton,WA,439,Seattle,WA
-98031,50050,Renton,WA,439,Seattle,WA
-98032,50054,Seattle,WA,439,Seattle,WA
-98033,50029,Kirkland,WA,439,Seattle,WA
-98034,50029,Kirkland,WA,439,Seattle,WA
-98035,50054,Seattle,WA,439,Seattle,WA
-98036,50018,Edmonds,WA,439,Seattle,WA
-98037,50018,Edmonds,WA,439,Seattle,WA
-98038,50050,Renton,WA,439,Seattle,WA
-98039,50005,Bellevue,WA,439,Seattle,WA
-98040,50054,Seattle,WA,439,Seattle,WA
-98041,50054,Seattle,WA,439,Seattle,WA
-98042,50050,Renton,WA,439,Seattle,WA
-98043,50018,Edmonds,WA,439,Seattle,WA
-98045,50005,Bellevue,WA,439,Seattle,WA
-98046,50018,Edmonds,WA,439,Seattle,WA
-98047,50004,Auburn,WA,439,Seattle,WA
-98050,50005,Bellevue,WA,439,Seattle,WA
-98051,50020,Enumclaw,WA,439,Seattle,WA
-98052,50029,Kirkland,WA,439,Seattle,WA
-98053,50005,Bellevue,WA,439,Seattle,WA
-98055,50050,Renton,WA,439,Seattle,WA
-98056,50050,Renton,WA,439,Seattle,WA
-98057,50050,Renton,WA,439,Seattle,WA
-98058,50050,Renton,WA,439,Seattle,WA
-98059,50050,Renton,WA,439,Seattle,WA
-98061,50054,Seattle,WA,439,Seattle,WA
-98062,50054,Seattle,WA,439,Seattle,WA
-98063,50023,Federal Way,WA,439,Seattle,WA
-98064,50050,Renton,WA,439,Seattle,WA
-98065,50005,Bellevue,WA,439,Seattle,WA
-98068,50005,Bellevue,WA,439,Seattle,WA
-98070,50054,Seattle,WA,439,Seattle,WA
-98071,50004,Auburn,WA,439,Seattle,WA
-98072,50029,Kirkland,WA,439,Seattle,WA
-98073,50029,Kirkland,WA,439,Seattle,WA
-98074,50005,Bellevue,WA,439,Seattle,WA
-98075,50005,Bellevue,WA,439,Seattle,WA
-98077,50029,Kirkland,WA,439,Seattle,WA
-98082,50054,Seattle,WA,439,Seattle,WA
-98083,50029,Kirkland,WA,439,Seattle,WA
-98087,50018,Edmonds,WA,439,Seattle,WA
-98089,50054,Seattle,WA,439,Seattle,WA
-98092,50020,Enumclaw,WA,439,Seattle,WA
-98093,50023,Federal Way,WA,439,Seattle,WA
-98101,50054,Seattle,WA,439,Seattle,WA
-98102,50054,Seattle,WA,439,Seattle,WA
-98103,50054,Seattle,WA,439,Seattle,WA
-98104,50054,Seattle,WA,439,Seattle,WA
-98105,50054,Seattle,WA,439,Seattle,WA
-98106,50054,Seattle,WA,439,Seattle,WA
-98107,50054,Seattle,WA,439,Seattle,WA
-98108,50054,Seattle,WA,439,Seattle,WA
-98109,50054,Seattle,WA,439,Seattle,WA
-98110,50054,Seattle,WA,439,Seattle,WA
-98111,50054,Seattle,WA,439,Seattle,WA
-98112,50054,Seattle,WA,439,Seattle,WA
-98113,50054,Seattle,WA,439,Seattle,WA
-98114,50054,Seattle,WA,439,Seattle,WA
-98115,50054,Seattle,WA,439,Seattle,WA
-98116,50054,Seattle,WA,439,Seattle,WA
-98117,50054,Seattle,WA,439,Seattle,WA
-98118,50054,Seattle,WA,439,Seattle,WA
-98119,50054,Seattle,WA,439,Seattle,WA
-98121,50054,Seattle,WA,439,Seattle,WA
-98122,50054,Seattle,WA,439,Seattle,WA
-98124,50054,Seattle,WA,439,Seattle,WA
-98125,50054,Seattle,WA,439,Seattle,WA
-98126,50054,Seattle,WA,439,Seattle,WA
-98127,50054,Seattle,WA,439,Seattle,WA
-98129,50054,Seattle,WA,439,Seattle,WA
-98131,50054,Seattle,WA,439,Seattle,WA
-98133,50054,Seattle,WA,439,Seattle,WA
-98134,50054,Seattle,WA,439,Seattle,WA
-98136,50054,Seattle,WA,439,Seattle,WA
-98138,50054,Seattle,WA,439,Seattle,WA
-98139,50054,Seattle,WA,439,Seattle,WA
-98141,50054,Seattle,WA,439,Seattle,WA
-98144,50054,Seattle,WA,439,Seattle,WA
-98145,50054,Seattle,WA,439,Seattle,WA
-98146,50054,Seattle,WA,439,Seattle,WA
-98148,50054,Seattle,WA,439,Seattle,WA
-98154,50054,Seattle,WA,439,Seattle,WA
-98155,50054,Seattle,WA,439,Seattle,WA
-98158,50054,Seattle,WA,439,Seattle,WA
-98160,50054,Seattle,WA,439,Seattle,WA
-98161,50054,Seattle,WA,439,Seattle,WA
-98164,50054,Seattle,WA,439,Seattle,WA
-98165,50054,Seattle,WA,439,Seattle,WA
-98166,50054,Seattle,WA,439,Seattle,WA
-98168,50054,Seattle,WA,439,Seattle,WA
-98170,50054,Seattle,WA,439,Seattle,WA
-98174,50054,Seattle,WA,439,Seattle,WA
-98175,50054,Seattle,WA,439,Seattle,WA
-98177,50054,Seattle,WA,439,Seattle,WA
-98178,50054,Seattle,WA,439,Seattle,WA
-98181,50054,Seattle,WA,439,Seattle,WA
-98185,50054,Seattle,WA,439,Seattle,WA
-98188,50054,Seattle,WA,439,Seattle,WA
-98190,50054,Seattle,WA,439,Seattle,WA
-98191,50054,Seattle,WA,439,Seattle,WA
-98194,50054,Seattle,WA,439,Seattle,WA
-98195,50054,Seattle,WA,439,Seattle,WA
-98198,50054,Seattle,WA,439,Seattle,WA
-98199,50054,Seattle,WA,439,Seattle,WA
-98201,50022,Everett,WA,437,Everett,WA
-98203,50022,Everett,WA,437,Everett,WA
-98204,50022,Everett,WA,437,Everett,WA
-98206,50022,Everett,WA,437,Everett,WA
-98207,50022,Everett,WA,437,Everett,WA
-98208,50022,Everett,WA,437,Everett,WA
-98213,50022,Everett,WA,437,Everett,WA
-98220,50006,Bellingham,WA,439,Seattle,WA
-98221,50002,Anacortes,WA,437,Everett,WA
-98222,50002,Anacortes,WA,437,Everett,WA
-98223,50003,Arlington,WA,437,Everett,WA
-98224,50033,Monroe,WA,437,Everett,WA
-98225,50006,Bellingham,WA,439,Seattle,WA
-98226,50006,Bellingham,WA,439,Seattle,WA
-98227,50006,Bellingham,WA,439,Seattle,WA
-98228,50006,Bellingham,WA,439,Seattle,WA
-98229,50006,Bellingham,WA,439,Seattle,WA
-98230,50006,Bellingham,WA,439,Seattle,WA
-98231,50006,Bellingham,WA,439,Seattle,WA
-98232,50036,Mount Vernon,WA,437,Everett,WA
-98233,50036,Mount Vernon,WA,437,Everett,WA
-98235,50036,Mount Vernon,WA,437,Everett,WA
-98236,50015,Coupeville,WA,437,Everett,WA
-98237,50036,Mount Vernon,WA,437,Everett,WA
-98238,50036,Mount Vernon,WA,437,Everett,WA
-98239,50015,Coupeville,WA,437,Everett,WA
-98240,50006,Bellingham,WA,439,Seattle,WA
-98241,50003,Arlington,WA,437,Everett,WA
-98243,50002,Anacortes,WA,437,Everett,WA
-98244,50006,Bellingham,WA,439,Seattle,WA
-98245,50002,Anacortes,WA,437,Everett,WA
-98247,50006,Bellingham,WA,439,Seattle,WA
-98248,50006,Bellingham,WA,439,Seattle,WA
-98249,50015,Coupeville,WA,437,Everett,WA
-98250,50002,Anacortes,WA,437,Everett,WA
-98251,50033,Monroe,WA,437,Everett,WA
-98252,50022,Everett,WA,437,Everett,WA
-98253,50015,Coupeville,WA,437,Everett,WA
-98255,50036,Mount Vernon,WA,437,Everett,WA
-98256,50033,Monroe,WA,437,Everett,WA
-98257,50036,Mount Vernon,WA,437,Everett,WA
-98258,50022,Everett,WA,437,Everett,WA
-98259,50003,Arlington,WA,437,Everett,WA
-98260,50015,Coupeville,WA,437,Everett,WA
-98261,50002,Anacortes,WA,437,Everett,WA
-98262,50006,Bellingham,WA,439,Seattle,WA
-98263,50036,Mount Vernon,WA,437,Everett,WA
-98264,50006,Bellingham,WA,439,Seattle,WA
-98266,50006,Bellingham,WA,439,Seattle,WA
-98267,50036,Mount Vernon,WA,437,Everett,WA
-98270,50022,Everett,WA,437,Everett,WA
-98271,50022,Everett,WA,437,Everett,WA
-98272,50033,Monroe,WA,437,Everett,WA
-98273,50036,Mount Vernon,WA,437,Everett,WA
-98274,50036,Mount Vernon,WA,437,Everett,WA
-98275,50022,Everett,WA,437,Everett,WA
-98276,50006,Bellingham,WA,439,Seattle,WA
-98277,50015,Coupeville,WA,437,Everett,WA
-98278,50015,Coupeville,WA,437,Everett,WA
-98279,50002,Anacortes,WA,437,Everett,WA
-98280,50002,Anacortes,WA,437,Everett,WA
-98281,50006,Bellingham,WA,439,Seattle,WA
-98282,50036,Mount Vernon,WA,437,Everett,WA
-98283,50036,Mount Vernon,WA,437,Everett,WA
-98284,50036,Mount Vernon,WA,437,Everett,WA
-98286,50002,Anacortes,WA,437,Everett,WA
-98287,50036,Mount Vernon,WA,437,Everett,WA
-98288,50033,Monroe,WA,437,Everett,WA
-98290,50022,Everett,WA,437,Everett,WA
-98291,50022,Everett,WA,437,Everett,WA
-98292,50036,Mount Vernon,WA,437,Everett,WA
-98293,50033,Monroe,WA,437,Everett,WA
-98294,50033,Monroe,WA,437,Everett,WA
-98295,50006,Bellingham,WA,439,Seattle,WA
-98296,50022,Everett,WA,437,Everett,WA
-98297,50002,Anacortes,WA,437,Everett,WA
-98303,50061,Tacoma,WA,441,Tacoma,WA
-98304,50048,Puyallup,WA,441,Tacoma,WA
-98305,50024,Forks,WA,439,Seattle,WA
-98310,50007,Bremerton,WA,439,Seattle,WA
-98311,50007,Bremerton,WA,439,Seattle,WA
-98312,50007,Bremerton,WA,439,Seattle,WA
-98314,50007,Bremerton,WA,439,Seattle,WA
-98315,50007,Bremerton,WA,439,Seattle,WA
-98320,50045,Port Townsend,WA,439,Seattle,WA
-98321,50048,Puyallup,WA,441,Tacoma,WA
-98322,50007,Bremerton,WA,439,Seattle,WA
-98323,50048,Puyallup,WA,441,Tacoma,WA
-98324,50044,Port Angeles,WA,439,Seattle,WA
-98325,50045,Port Townsend,WA,439,Seattle,WA
-98326,50044,Port Angeles,WA,439,Seattle,WA
-98327,50061,Tacoma,WA,441,Tacoma,WA
-98328,50048,Puyallup,WA,441,Tacoma,WA
-98329,50061,Tacoma,WA,441,Tacoma,WA
-98330,50048,Puyallup,WA,441,Tacoma,WA
-98331,50024,Forks,WA,439,Seattle,WA
-98332,50061,Tacoma,WA,441,Tacoma,WA
-98333,50061,Tacoma,WA,441,Tacoma,WA
-98335,50061,Tacoma,WA,441,Tacoma,WA
-98336,50034,Morton,WA,438,Olympia,WA
-98337,50007,Bremerton,WA,439,Seattle,WA
-98338,50048,Puyallup,WA,441,Tacoma,WA
-98339,50045,Port Townsend,WA,439,Seattle,WA
-98340,50007,Bremerton,WA,439,Seattle,WA
-98342,50007,Bremerton,WA,439,Seattle,WA
-98343,50044,Port Angeles,WA,439,Seattle,WA
-98344,50048,Puyallup,WA,441,Tacoma,WA
-98345,50007,Bremerton,WA,439,Seattle,WA
-98346,50007,Bremerton,WA,439,Seattle,WA
-98348,50048,Puyallup,WA,441,Tacoma,WA
-98349,50061,Tacoma,WA,441,Tacoma,WA
-98350,50024,Forks,WA,439,Seattle,WA
-98351,50061,Tacoma,WA,441,Tacoma,WA
-98352,50048,Puyallup,WA,441,Tacoma,WA
-98353,50007,Bremerton,WA,439,Seattle,WA
-98354,50061,Tacoma,WA,441,Tacoma,WA
-98355,50048,Puyallup,WA,441,Tacoma,WA
-98356,50034,Morton,WA,438,Olympia,WA
-98357,50044,Port Angeles,WA,439,Seattle,WA
-98358,50045,Port Townsend,WA,439,Seattle,WA
-98359,50061,Tacoma,WA,441,Tacoma,WA
-98360,50048,Puyallup,WA,441,Tacoma,WA
-98361,50034,Morton,WA,438,Olympia,WA
-98362,50044,Port Angeles,WA,439,Seattle,WA
-98363,50044,Port Angeles,WA,439,Seattle,WA
-98364,50007,Bremerton,WA,439,Seattle,WA
-98365,50045,Port Townsend,WA,439,Seattle,WA
-98366,50007,Bremerton,WA,439,Seattle,WA
-98367,50007,Bremerton,WA,439,Seattle,WA
-98368,50045,Port Townsend,WA,439,Seattle,WA
-98370,50007,Bremerton,WA,439,Seattle,WA
-98371,50048,Puyallup,WA,441,Tacoma,WA
-98372,50048,Puyallup,WA,441,Tacoma,WA
-98373,50048,Puyallup,WA,441,Tacoma,WA
-98374,50048,Puyallup,WA,441,Tacoma,WA
-98375,50048,Puyallup,WA,441,Tacoma,WA
-98376,50045,Port Townsend,WA,439,Seattle,WA
-98377,50034,Morton,WA,438,Olympia,WA
-98378,50007,Bremerton,WA,439,Seattle,WA
-98380,50007,Bremerton,WA,439,Seattle,WA
-98381,50044,Port Angeles,WA,439,Seattle,WA
-98382,50044,Port Angeles,WA,439,Seattle,WA
-98383,50007,Bremerton,WA,439,Seattle,WA
-98384,50007,Bremerton,WA,439,Seattle,WA
-98385,50048,Puyallup,WA,441,Tacoma,WA
-98386,50007,Bremerton,WA,439,Seattle,WA
-98387,50061,Tacoma,WA,441,Tacoma,WA
-98388,50061,Tacoma,WA,441,Tacoma,WA
-98390,50048,Puyallup,WA,441,Tacoma,WA
-98391,50048,Puyallup,WA,441,Tacoma,WA
-98392,50007,Bremerton,WA,439,Seattle,WA
-98393,50007,Bremerton,WA,439,Seattle,WA
-98394,50061,Tacoma,WA,441,Tacoma,WA
-98395,50061,Tacoma,WA,441,Tacoma,WA
-98396,50048,Puyallup,WA,441,Tacoma,WA
-98397,50048,Puyallup,WA,441,Tacoma,WA
-98398,50048,Puyallup,WA,441,Tacoma,WA
-98401,50061,Tacoma,WA,441,Tacoma,WA
-98402,50061,Tacoma,WA,441,Tacoma,WA
-98403,50061,Tacoma,WA,441,Tacoma,WA
-98404,50061,Tacoma,WA,441,Tacoma,WA
-98405,50061,Tacoma,WA,441,Tacoma,WA
-98406,50061,Tacoma,WA,441,Tacoma,WA
-98407,50061,Tacoma,WA,441,Tacoma,WA
-98408,50061,Tacoma,WA,441,Tacoma,WA
-98409,50061,Tacoma,WA,441,Tacoma,WA
-98411,50061,Tacoma,WA,441,Tacoma,WA
-98412,50061,Tacoma,WA,441,Tacoma,WA
-98413,50061,Tacoma,WA,441,Tacoma,WA
-98415,50061,Tacoma,WA,441,Tacoma,WA
-98416,50061,Tacoma,WA,441,Tacoma,WA
-98417,50061,Tacoma,WA,441,Tacoma,WA
-98418,50061,Tacoma,WA,441,Tacoma,WA
-98419,50061,Tacoma,WA,441,Tacoma,WA
-98421,50061,Tacoma,WA,441,Tacoma,WA
-98422,50061,Tacoma,WA,441,Tacoma,WA
-98424,50061,Tacoma,WA,441,Tacoma,WA
-98430,50061,Tacoma,WA,441,Tacoma,WA
-98431,50061,Tacoma,WA,441,Tacoma,WA
-98433,50061,Tacoma,WA,441,Tacoma,WA
-98438,50061,Tacoma,WA,441,Tacoma,WA
-98439,50061,Tacoma,WA,441,Tacoma,WA
-98443,50061,Tacoma,WA,441,Tacoma,WA
-98444,50061,Tacoma,WA,441,Tacoma,WA
-98445,50061,Tacoma,WA,441,Tacoma,WA
-98446,50048,Puyallup,WA,441,Tacoma,WA
-98447,50061,Tacoma,WA,441,Tacoma,WA
-98448,50061,Tacoma,WA,441,Tacoma,WA
-98464,50061,Tacoma,WA,441,Tacoma,WA
-98465,50061,Tacoma,WA,441,Tacoma,WA
-98466,50061,Tacoma,WA,441,Tacoma,WA
-98467,50061,Tacoma,WA,441,Tacoma,WA
-98471,50061,Tacoma,WA,441,Tacoma,WA
-98481,50061,Tacoma,WA,441,Tacoma,WA
-98490,50061,Tacoma,WA,441,Tacoma,WA
-98493,50061,Tacoma,WA,441,Tacoma,WA
-98496,50061,Tacoma,WA,441,Tacoma,WA
-98497,50061,Tacoma,WA,441,Tacoma,WA
-98498,50061,Tacoma,WA,441,Tacoma,WA
-98499,50061,Tacoma,WA,441,Tacoma,WA
-98501,50039,Olympia,WA,438,Olympia,WA
-98502,50039,Olympia,WA,438,Olympia,WA
-98503,50039,Olympia,WA,438,Olympia,WA
-98504,50039,Olympia,WA,438,Olympia,WA
-98505,50039,Olympia,WA,438,Olympia,WA
-98506,50039,Olympia,WA,438,Olympia,WA
-98507,50039,Olympia,WA,438,Olympia,WA
-98508,50039,Olympia,WA,438,Olympia,WA
-98509,50039,Olympia,WA,438,Olympia,WA
-98511,50039,Olympia,WA,438,Olympia,WA
-98512,50039,Olympia,WA,438,Olympia,WA
-98513,50039,Olympia,WA,438,Olympia,WA
-98516,50039,Olympia,WA,438,Olympia,WA
-98520,50001,Aberdeen,WA,439,Seattle,WA
-98522,50009,Centralia,WA,438,Olympia,WA
-98524,50007,Bremerton,WA,439,Seattle,WA
-98526,50001,Aberdeen,WA,439,Seattle,WA
-98527,50058,South Bend,WA,438,Olympia,WA
-98528,50007,Bremerton,WA,439,Seattle,WA
-98530,50039,Olympia,WA,438,Olympia,WA
-98531,50009,Centralia,WA,438,Olympia,WA
-98532,50009,Centralia,WA,438,Olympia,WA
-98533,50009,Centralia,WA,438,Olympia,WA
-98535,50001,Aberdeen,WA,439,Seattle,WA
-98536,50001,Aberdeen,WA,439,Seattle,WA
-98537,50001,Aberdeen,WA,439,Seattle,WA
-98538,50009,Centralia,WA,438,Olympia,WA
-98539,50009,Centralia,WA,438,Olympia,WA
-98540,50039,Olympia,WA,438,Olympia,WA
-98541,50039,Olympia,WA,438,Olympia,WA
-98542,50009,Centralia,WA,438,Olympia,WA
-98544,50009,Centralia,WA,438,Olympia,WA
-98546,50007,Bremerton,WA,439,Seattle,WA
-98547,50001,Aberdeen,WA,439,Seattle,WA
-98548,50056,Shelton,WA,438,Olympia,WA
-98550,50001,Aberdeen,WA,439,Seattle,WA
-98552,50001,Aberdeen,WA,439,Seattle,WA
-98554,50058,South Bend,WA,438,Olympia,WA
-98555,50056,Shelton,WA,438,Olympia,WA
-98556,50039,Olympia,WA,438,Olympia,WA
-98557,50039,Olympia,WA,438,Olympia,WA
-98558,50061,Tacoma,WA,441,Tacoma,WA
-98559,50039,Olympia,WA,438,Olympia,WA
-98560,50056,Shelton,WA,438,Olympia,WA
-98561,50058,South Bend,WA,438,Olympia,WA
-98562,50001,Aberdeen,WA,439,Seattle,WA
-98563,50001,Aberdeen,WA,439,Seattle,WA
-98564,50009,Centralia,WA,438,Olympia,WA
-98565,50009,Centralia,WA,438,Olympia,WA
-98566,50001,Aberdeen,WA,439,Seattle,WA
-98568,50009,Centralia,WA,438,Olympia,WA
-98569,50001,Aberdeen,WA,439,Seattle,WA
-98570,50009,Centralia,WA,438,Olympia,WA
-98571,50001,Aberdeen,WA,439,Seattle,WA
-98572,50009,Centralia,WA,438,Olympia,WA
-98575,50001,Aberdeen,WA,439,Seattle,WA
-98576,50039,Olympia,WA,438,Olympia,WA
-98577,50058,South Bend,WA,438,Olympia,WA
-98579,50039,Olympia,WA,438,Olympia,WA
-98580,50061,Tacoma,WA,441,Tacoma,WA
-98581,50031,Longview,WA,344,Portland,OR
-98582,50009,Centralia,WA,438,Olympia,WA
-98583,50039,Olympia,WA,438,Olympia,WA
-98584,50056,Shelton,WA,438,Olympia,WA
-98585,50009,Centralia,WA,438,Olympia,WA
-98586,50058,South Bend,WA,438,Olympia,WA
-98587,50001,Aberdeen,WA,439,Seattle,WA
-98588,50007,Bremerton,WA,439,Seattle,WA
-98589,50039,Olympia,WA,438,Olympia,WA
-98590,50001,Aberdeen,WA,439,Seattle,WA
-98591,50009,Centralia,WA,438,Olympia,WA
-98592,50056,Shelton,WA,438,Olympia,WA
-98593,50031,Longview,WA,344,Portland,OR
-98595,50001,Aberdeen,WA,439,Seattle,WA
-98596,50009,Centralia,WA,438,Olympia,WA
-98597,50039,Olympia,WA,438,Olympia,WA
-98599,50039,Olympia,WA,438,Olympia,WA
-98601,50064,Vancouver,WA,344,Portland,OR
-98602,38054,The Dalles,OR,344,Portland,OR
-98603,50064,Vancouver,WA,344,Portland,OR
-98604,50064,Vancouver,WA,344,Portland,OR
-98605,50067,White Salmon,WA,344,Portland,OR
-98606,50064,Vancouver,WA,344,Portland,OR
-98607,50064,Vancouver,WA,344,Portland,OR
-98609,50031,Longview,WA,344,Portland,OR
-98610,50067,White Salmon,WA,344,Portland,OR
-98611,50031,Longview,WA,344,Portland,OR
-98612,50031,Longview,WA,344,Portland,OR
-98613,38054,The Dalles,OR,344,Portland,OR
-98614,38003,Astoria,OR,344,Portland,OR
-98616,50064,Vancouver,WA,344,Portland,OR
-98617,38054,The Dalles,OR,344,Portland,OR
-98619,50067,White Salmon,WA,344,Portland,OR
-98620,50025,Goldendale,WA,344,Portland,OR
-98621,50031,Longview,WA,344,Portland,OR
-98622,50064,Vancouver,WA,344,Portland,OR
-98623,50067,White Salmon,WA,344,Portland,OR
-98624,50027,Ilwaco,WA,344,Portland,OR
-98625,50031,Longview,WA,344,Portland,OR
-98626,50031,Longview,WA,344,Portland,OR
-98628,38054,The Dalles,OR,344,Portland,OR
-98629,50064,Vancouver,WA,344,Portland,OR
-98631,50027,Ilwaco,WA,344,Portland,OR
-98632,50031,Longview,WA,344,Portland,OR
-98635,38054,The Dalles,OR,344,Portland,OR
-98637,50027,Ilwaco,WA,344,Portland,OR
-98638,38003,Astoria,OR,344,Portland,OR
-98639,50067,White Salmon,WA,344,Portland,OR
-98640,50027,Ilwaco,WA,344,Portland,OR
-98641,50027,Ilwaco,WA,344,Portland,OR
-98642,50064,Vancouver,WA,344,Portland,OR
-98643,50031,Longview,WA,344,Portland,OR
-98644,50027,Ilwaco,WA,344,Portland,OR
-98645,50031,Longview,WA,344,Portland,OR
-98647,50031,Longview,WA,344,Portland,OR
-98648,50067,White Salmon,WA,344,Portland,OR
-98649,50031,Longview,WA,344,Portland,OR
-98650,50067,White Salmon,WA,344,Portland,OR
-98651,50067,White Salmon,WA,344,Portland,OR
-98660,50064,Vancouver,WA,344,Portland,OR
-98661,50064,Vancouver,WA,344,Portland,OR
-98662,50064,Vancouver,WA,344,Portland,OR
-98663,50064,Vancouver,WA,344,Portland,OR
-98664,50064,Vancouver,WA,344,Portland,OR
-98665,50064,Vancouver,WA,344,Portland,OR
-98666,50064,Vancouver,WA,344,Portland,OR
-98668,50064,Vancouver,WA,344,Portland,OR
-98670,38054,The Dalles,OR,344,Portland,OR
-98671,50064,Vancouver,WA,344,Portland,OR
-98672,50067,White Salmon,WA,344,Portland,OR
-98673,38054,The Dalles,OR,344,Portland,OR
-98674,50064,Vancouver,WA,344,Portland,OR
-98675,50064,Vancouver,WA,344,Portland,OR
-98682,50064,Vancouver,WA,344,Portland,OR
-98683,50064,Vancouver,WA,344,Portland,OR
-98684,50064,Vancouver,WA,344,Portland,OR
-98685,50064,Vancouver,WA,344,Portland,OR
-98686,50064,Vancouver,WA,344,Portland,OR
-98687,50064,Vancouver,WA,344,Portland,OR
-98801,50066,Wenatchee,WA,440,Spokane,WA
-98802,50066,Wenatchee,WA,440,Spokane,WA
-98807,50066,Wenatchee,WA,440,Spokane,WA
-98811,50066,Wenatchee,WA,440,Spokane,WA
-98812,50008,Brewster,WA,440,Spokane,WA
-98813,50008,Brewster,WA,440,Spokane,WA
-98814,50008,Brewster,WA,440,Spokane,WA
-98815,50066,Wenatchee,WA,440,Spokane,WA
-98816,50010,Chelan,WA,440,Spokane,WA
-98817,50010,Chelan,WA,440,Spokane,WA
-98819,50040,Omak,WA,440,Spokane,WA
-98821,50066,Wenatchee,WA,440,Spokane,WA
-98822,50066,Wenatchee,WA,440,Spokane,WA
-98823,50066,Wenatchee,WA,440,Spokane,WA
-98824,50066,Wenatchee,WA,440,Spokane,WA
-98826,50066,Wenatchee,WA,440,Spokane,WA
-98827,50040,Omak,WA,440,Spokane,WA
-98828,50066,Wenatchee,WA,440,Spokane,WA
-98829,50040,Omak,WA,440,Spokane,WA
-98830,50008,Brewster,WA,440,Spokane,WA
-98831,50010,Chelan,WA,440,Spokane,WA
-98832,50059,Spokane,WA,440,Spokane,WA
-98833,50008,Brewster,WA,440,Spokane,WA
-98834,50008,Brewster,WA,440,Spokane,WA
-98836,50066,Wenatchee,WA,440,Spokane,WA
-98837,50035,Moses Lake,WA,440,Spokane,WA
-98840,50040,Omak,WA,440,Spokane,WA
-98841,50040,Omak,WA,440,Spokane,WA
-98843,50066,Wenatchee,WA,440,Spokane,WA
-98844,50062,Tonasket,WA,440,Spokane,WA
-98845,50066,Wenatchee,WA,440,Spokane,WA
-98846,50008,Brewster,WA,440,Spokane,WA
-98847,50066,Wenatchee,WA,440,Spokane,WA
-98848,50066,Wenatchee,WA,440,Spokane,WA
-98849,50040,Omak,WA,440,Spokane,WA
-98850,50066,Wenatchee,WA,440,Spokane,WA
-98851,50066,Wenatchee,WA,440,Spokane,WA
-98852,50066,Wenatchee,WA,440,Spokane,WA
-98853,50059,Spokane,WA,440,Spokane,WA
-98855,50062,Tonasket,WA,440,Spokane,WA
-98856,50008,Brewster,WA,440,Spokane,WA
-98857,50035,Moses Lake,WA,440,Spokane,WA
-98858,50066,Wenatchee,WA,440,Spokane,WA
-98859,50051,Republic,WA,440,Spokane,WA
-98860,50059,Spokane,WA,440,Spokane,WA
-98862,50008,Brewster,WA,440,Spokane,WA
-98901,50068,Yakima,WA,442,Yakima,WA
-98902,50068,Yakima,WA,442,Yakima,WA
-98903,50068,Yakima,WA,442,Yakima,WA
-98904,50068,Yakima,WA,442,Yakima,WA
-98907,50068,Yakima,WA,442,Yakima,WA
-98908,50068,Yakima,WA,442,Yakima,WA
-98909,50068,Yakima,WA,442,Yakima,WA
-98920,50068,Yakima,WA,442,Yakima,WA
-98921,50068,Yakima,WA,442,Yakima,WA
-98922,50019,Ellensburg,WA,442,Yakima,WA
-98923,50068,Yakima,WA,442,Yakima,WA
-98925,50019,Ellensburg,WA,442,Yakima,WA
-98926,50019,Ellensburg,WA,442,Yakima,WA
-98930,50060,Sunnyside,WA,442,Yakima,WA
-98932,50068,Yakima,WA,442,Yakima,WA
-98933,50068,Yakima,WA,442,Yakima,WA
-98934,50019,Ellensburg,WA,442,Yakima,WA
-98935,50060,Sunnyside,WA,442,Yakima,WA
-98936,50068,Yakima,WA,442,Yakima,WA
-98937,50068,Yakima,WA,442,Yakima,WA
-98938,50060,Sunnyside,WA,442,Yakima,WA
-98939,50068,Yakima,WA,442,Yakima,WA
-98940,50019,Ellensburg,WA,442,Yakima,WA
-98941,50019,Ellensburg,WA,442,Yakima,WA
-98942,50068,Yakima,WA,442,Yakima,WA
-98943,50019,Ellensburg,WA,442,Yakima,WA
-98944,50060,Sunnyside,WA,442,Yakima,WA
-98946,50019,Ellensburg,WA,442,Yakima,WA
-98947,50068,Yakima,WA,442,Yakima,WA
-98948,50063,Toppenish,WA,442,Yakima,WA
-98950,50019,Ellensburg,WA,442,Yakima,WA
-98951,50068,Yakima,WA,442,Yakima,WA
-98952,50068,Yakima,WA,442,Yakima,WA
-98953,50068,Yakima,WA,442,Yakima,WA
-99001,50059,Spokane,WA,440,Spokane,WA
-99003,50059,Spokane,WA,440,Spokane,WA
-99004,50059,Spokane,WA,440,Spokane,WA
-99005,50059,Spokane,WA,440,Spokane,WA
-99006,50059,Spokane,WA,440,Spokane,WA
-99008,50059,Spokane,WA,440,Spokane,WA
-99009,50059,Spokane,WA,440,Spokane,WA
-99011,50059,Spokane,WA,440,Spokane,WA
-99012,50059,Spokane,WA,440,Spokane,WA
-99013,50059,Spokane,WA,440,Spokane,WA
-99014,50059,Spokane,WA,440,Spokane,WA
-99016,50059,Spokane,WA,440,Spokane,WA
-99017,50059,Spokane,WA,440,Spokane,WA
-99018,50059,Spokane,WA,440,Spokane,WA
-99019,50059,Spokane,WA,440,Spokane,WA
-99020,50059,Spokane,WA,440,Spokane,WA
-99021,50059,Spokane,WA,440,Spokane,WA
-99022,50059,Spokane,WA,440,Spokane,WA
-99023,50059,Spokane,WA,440,Spokane,WA
-99025,50059,Spokane,WA,440,Spokane,WA
-99026,50059,Spokane,WA,440,Spokane,WA
-99027,50059,Spokane,WA,440,Spokane,WA
-99029,50059,Spokane,WA,440,Spokane,WA
-99030,50059,Spokane,WA,440,Spokane,WA
-99031,50059,Spokane,WA,440,Spokane,WA
-99032,50059,Spokane,WA,440,Spokane,WA
-99033,50059,Spokane,WA,440,Spokane,WA
-99034,50059,Spokane,WA,440,Spokane,WA
-99036,50059,Spokane,WA,440,Spokane,WA
-99037,50059,Spokane,WA,440,Spokane,WA
-99039,50059,Spokane,WA,440,Spokane,WA
-99040,50059,Spokane,WA,440,Spokane,WA
-99101,50011,Chewelah,WA,440,Spokane,WA
-99102,50047,Pullman,WA,440,Spokane,WA
-99103,50059,Spokane,WA,440,Spokane,WA
-99104,50059,Spokane,WA,440,Spokane,WA
-99105,50059,Spokane,WA,440,Spokane,WA
-99109,50011,Chewelah,WA,440,Spokane,WA
-99110,50059,Spokane,WA,440,Spokane,WA
-99111,50013,Colfax,WA,440,Spokane,WA
-99113,50047,Pullman,WA,440,Spokane,WA
-99114,50014,Colville,WA,440,Spokane,WA
-99115,50059,Spokane,WA,440,Spokane,WA
-99116,50026,Grand Coulee,WA,440,Spokane,WA
-99117,50016,Davenport,WA,440,Spokane,WA
-99118,50051,Republic,WA,440,Spokane,WA
-99119,50059,Spokane,WA,440,Spokane,WA
-99121,50051,Republic,WA,440,Spokane,WA
-99122,50016,Davenport,WA,440,Spokane,WA
-99123,50059,Spokane,WA,440,Spokane,WA
-99124,50026,Grand Coulee,WA,440,Spokane,WA
-99125,50013,Colfax,WA,440,Spokane,WA
-99126,50014,Colville,WA,440,Spokane,WA
-99128,50059,Spokane,WA,440,Spokane,WA
-99129,50059,Spokane,WA,440,Spokane,WA
-99130,50013,Colfax,WA,440,Spokane,WA
-99131,50011,Chewelah,WA,440,Spokane,WA
-99133,50026,Grand Coulee,WA,440,Spokane,WA
-99134,50016,Davenport,WA,440,Spokane,WA
-99135,50059,Spokane,WA,440,Spokane,WA
-99136,50013,Colfax,WA,440,Spokane,WA
-99137,50059,Spokane,WA,440,Spokane,WA
-99138,50014,Colville,WA,440,Spokane,WA
-99139,50059,Spokane,WA,440,Spokane,WA
-99140,50014,Colville,WA,440,Spokane,WA
-99141,50014,Colville,WA,440,Spokane,WA
-99143,50013,Colfax,WA,440,Spokane,WA
-99144,50059,Spokane,WA,440,Spokane,WA
-99146,50014,Colville,WA,440,Spokane,WA
-99147,50059,Spokane,WA,440,Spokane,WA
-99148,50059,Spokane,WA,440,Spokane,WA
-99149,50059,Spokane,WA,440,Spokane,WA
-99150,50051,Republic,WA,440,Spokane,WA
-99151,50014,Colville,WA,440,Spokane,WA
-99152,50059,Spokane,WA,440,Spokane,WA
-99153,50059,Spokane,WA,440,Spokane,WA
-99154,50016,Davenport,WA,440,Spokane,WA
-99155,50026,Grand Coulee,WA,440,Spokane,WA
-99156,50059,Spokane,WA,440,Spokane,WA
-99157,50014,Colville,WA,440,Spokane,WA
-99158,50059,Spokane,WA,440,Spokane,WA
-99159,50059,Spokane,WA,440,Spokane,WA
-99160,50014,Colville,WA,440,Spokane,WA
-99161,50059,Spokane,WA,440,Spokane,WA
-99163,50047,Pullman,WA,440,Spokane,WA
-99164,50047,Pullman,WA,440,Spokane,WA
-99166,50051,Republic,WA,440,Spokane,WA
-99167,50014,Colville,WA,440,Spokane,WA
-99169,50053,Ritzville,WA,440,Spokane,WA
-99170,50059,Spokane,WA,440,Spokane,WA
-99171,50059,Spokane,WA,440,Spokane,WA
-99173,50059,Spokane,WA,440,Spokane,WA
-99174,50059,Spokane,WA,440,Spokane,WA
-99176,50059,Spokane,WA,440,Spokane,WA
-99179,13020,Lewiston,ID,440,Spokane,WA
-99180,50059,Spokane,WA,440,Spokane,WA
-99181,50011,Chewelah,WA,440,Spokane,WA
-99185,50059,Spokane,WA,440,Spokane,WA
-99201,50059,Spokane,WA,440,Spokane,WA
-99202,50059,Spokane,WA,440,Spokane,WA
-99203,50059,Spokane,WA,440,Spokane,WA
-99204,50059,Spokane,WA,440,Spokane,WA
-99205,50059,Spokane,WA,440,Spokane,WA
-99206,50059,Spokane,WA,440,Spokane,WA
-99207,50059,Spokane,WA,440,Spokane,WA
-99208,50059,Spokane,WA,440,Spokane,WA
-99209,50059,Spokane,WA,440,Spokane,WA
-99210,50059,Spokane,WA,440,Spokane,WA
-99211,50059,Spokane,WA,440,Spokane,WA
-99212,50059,Spokane,WA,440,Spokane,WA
-99213,50059,Spokane,WA,440,Spokane,WA
-99214,50059,Spokane,WA,440,Spokane,WA
-99215,50059,Spokane,WA,440,Spokane,WA
-99216,50059,Spokane,WA,440,Spokane,WA
-99217,50059,Spokane,WA,440,Spokane,WA
-99218,50059,Spokane,WA,440,Spokane,WA
-99219,50059,Spokane,WA,440,Spokane,WA
-99220,50059,Spokane,WA,440,Spokane,WA
-99223,50059,Spokane,WA,440,Spokane,WA
-99224,50059,Spokane,WA,440,Spokane,WA
-99228,50059,Spokane,WA,440,Spokane,WA
-99251,50059,Spokane,WA,440,Spokane,WA
-99252,50059,Spokane,WA,440,Spokane,WA
-99256,50059,Spokane,WA,440,Spokane,WA
-99258,50059,Spokane,WA,440,Spokane,WA
-99260,50059,Spokane,WA,440,Spokane,WA
-99301,50042,Pasco,WA,440,Spokane,WA
-99302,50042,Pasco,WA,440,Spokane,WA
-99320,50052,Richland,WA,440,Spokane,WA
-99321,50019,Ellensburg,WA,442,Yakima,WA
-99322,50068,Yakima,WA,442,Yakima,WA
-99323,50042,Pasco,WA,440,Spokane,WA
-99324,50065,Walla Walla,WA,440,Spokane,WA
-99326,50042,Pasco,WA,440,Spokane,WA
-99328,50017,Dayton,WA,440,Spokane,WA
-99329,50065,Walla Walla,WA,440,Spokane,WA
-99330,50042,Pasco,WA,440,Spokane,WA
-99333,50013,Colfax,WA,440,Spokane,WA
-99335,50042,Pasco,WA,440,Spokane,WA
-99336,50028,Kennewick,WA,440,Spokane,WA
-99337,50028,Kennewick,WA,440,Spokane,WA
-99338,50028,Kennewick,WA,440,Spokane,WA
-99341,50059,Spokane,WA,440,Spokane,WA
-99343,50042,Pasco,WA,440,Spokane,WA
-99344,50041,Othello,WA,440,Spokane,WA
-99345,38023,Hermiston,OR,344,Portland,OR
-99346,50028,Kennewick,WA,440,Spokane,WA
-99347,13020,Lewiston,ID,440,Spokane,WA
-99348,50065,Walla Walla,WA,440,Spokane,WA
-99349,50041,Othello,WA,440,Spokane,WA
-99350,50046,Prosser,WA,442,Yakima,WA
-99352,50052,Richland,WA,440,Spokane,WA
-99353,50052,Richland,WA,440,Spokane,WA
-99354,50052,Richland,WA,440,Spokane,WA
-99356,38054,The Dalles,OR,344,Portland,OR
-99357,50035,Moses Lake,WA,440,Spokane,WA
-99359,50065,Walla Walla,WA,440,Spokane,WA
-99360,50065,Walla Walla,WA,440,Spokane,WA
-99361,50065,Walla Walla,WA,440,Spokane,WA
-99362,50065,Walla Walla,WA,440,Spokane,WA
-99363,50065,Walla Walla,WA,440,Spokane,WA
-99371,50059,Spokane,WA,440,Spokane,WA
-99401,50012,Clarkston,WA,440,Spokane,WA
-99402,50012,Clarkston,WA,440,Spokane,WA
-99403,50012,Clarkston,WA,440,Spokane,WA
-99501,2001,Anchorage,AK,10,Anchorage,AK
-99502,2001,Anchorage,AK,10,Anchorage,AK
-99503,2001,Anchorage,AK,10,Anchorage,AK
-99504,2001,Anchorage,AK,10,Anchorage,AK
-99505,2001,Anchorage,AK,10,Anchorage,AK
-99506,2001,Anchorage,AK,10,Anchorage,AK
-99507,2001,Anchorage,AK,10,Anchorage,AK
-99508,2001,Anchorage,AK,10,Anchorage,AK
-99509,2001,Anchorage,AK,10,Anchorage,AK
-99510,2001,Anchorage,AK,10,Anchorage,AK
-99511,2001,Anchorage,AK,10,Anchorage,AK
-99513,2001,Anchorage,AK,10,Anchorage,AK
-99514,2001,Anchorage,AK,10,Anchorage,AK
-99515,2001,Anchorage,AK,10,Anchorage,AK
-99516,2001,Anchorage,AK,10,Anchorage,AK
-99517,2001,Anchorage,AK,10,Anchorage,AK
-99518,2001,Anchorage,AK,10,Anchorage,AK
-99519,2001,Anchorage,AK,10,Anchorage,AK
-99520,2001,Anchorage,AK,10,Anchorage,AK
-99521,2001,Anchorage,AK,10,Anchorage,AK
-99522,2001,Anchorage,AK,10,Anchorage,AK
-99523,2001,Anchorage,AK,10,Anchorage,AK
-99524,2001,Anchorage,AK,10,Anchorage,AK
-99529,2001,Anchorage,AK,10,Anchorage,AK
-99530,2001,Anchorage,AK,10,Anchorage,AK
-99540,2001,Anchorage,AK,10,Anchorage,AK
-99545,2017,Bethel,AK,10,Anchorage,AK
-99546,2001,Anchorage,AK,10,Anchorage,AK
-99547,2001,Anchorage,AK,10,Anchorage,AK
-99548,2018,Dillingham,AK,10,Anchorage,AK
-99549,2001,Anchorage,AK,10,Anchorage,AK
-99550,2007,Kodiak,AK,10,Anchorage,AK
-99551,2017,Bethel,AK,10,Anchorage,AK
-99552,2017,Bethel,AK,10,Anchorage,AK
-99553,2001,Anchorage,AK,10,Anchorage,AK
-99554,2017,Bethel,AK,10,Anchorage,AK
-99555,2018,Dillingham,AK,10,Anchorage,AK
-99556,2004,Homer,AK,10,Anchorage,AK
-99557,2001,Anchorage,AK,10,Anchorage,AK
-99558,2001,Anchorage,AK,10,Anchorage,AK
-99559,2017,Bethel,AK,10,Anchorage,AK
-99561,2017,Bethel,AK,10,Anchorage,AK
-99563,2017,Bethel,AK,10,Anchorage,AK
-99564,2018,Dillingham,AK,10,Anchorage,AK
-99565,2001,Anchorage,AK,10,Anchorage,AK
-99566,2001,Anchorage,AK,10,Anchorage,AK
-99567,2001,Anchorage,AK,10,Anchorage,AK
-99568,2013,Soldotna,AK,10,Anchorage,AK
-99569,2018,Dillingham,AK,10,Anchorage,AK
-99571,2001,Anchorage,AK,10,Anchorage,AK
-99572,2013,Soldotna,AK,10,Anchorage,AK
-99573,2001,Anchorage,AK,10,Anchorage,AK
-99574,2002,Cordova,AK,10,Anchorage,AK
-99575,2001,Anchorage,AK,10,Anchorage,AK
-99576,2018,Dillingham,AK,10,Anchorage,AK
-99577,2001,Anchorage,AK,10,Anchorage,AK
-99578,2017,Bethel,AK,10,Anchorage,AK
-99579,2001,Anchorage,AK,10,Anchorage,AK
-99580,2018,Dillingham,AK,10,Anchorage,AK
-99581,2017,Bethel,AK,10,Anchorage,AK
-99583,2001,Anchorage,AK,10,Anchorage,AK
-99585,2017,Bethel,AK,10,Anchorage,AK
-99586,2001,Anchorage,AK,10,Anchorage,AK
-99587,2001,Anchorage,AK,10,Anchorage,AK
-99588,2001,Anchorage,AK,10,Anchorage,AK
-99589,2017,Bethel,AK,10,Anchorage,AK
-99590,2001,Anchorage,AK,10,Anchorage,AK
-99591,2001,Anchorage,AK,10,Anchorage,AK
-99599,2001,Anchorage,AK,10,Anchorage,AK
-99602,2001,Anchorage,AK,10,Anchorage,AK
-99603,2004,Homer,AK,10,Anchorage,AK
-99604,2017,Bethel,AK,10,Anchorage,AK
-99605,2001,Anchorage,AK,10,Anchorage,AK
-99606,2001,Anchorage,AK,10,Anchorage,AK
-99607,2017,Bethel,AK,10,Anchorage,AK
-99608,2007,Kodiak,AK,10,Anchorage,AK
-99609,2017,Bethel,AK,10,Anchorage,AK
-99610,2013,Soldotna,AK,10,Anchorage,AK
-99611,2013,Soldotna,AK,10,Anchorage,AK
-99612,2001,Anchorage,AK,10,Anchorage,AK
-99613,2001,Anchorage,AK,10,Anchorage,AK
-99614,2017,Bethel,AK,10,Anchorage,AK
-99615,2007,Kodiak,AK,10,Anchorage,AK
-99619,2007,Kodiak,AK,10,Anchorage,AK
-99620,2017,Bethel,AK,10,Anchorage,AK
-99621,2017,Bethel,AK,10,Anchorage,AK
-99622,2017,Bethel,AK,10,Anchorage,AK
-99623,2009,Palmer,AK,10,Anchorage,AK
-99624,2007,Kodiak,AK,10,Anchorage,AK
-99625,2001,Anchorage,AK,10,Anchorage,AK
-99626,2017,Bethel,AK,10,Anchorage,AK
-99627,2001,Anchorage,AK,10,Anchorage,AK
-99628,2018,Dillingham,AK,10,Anchorage,AK
-99629,2009,Palmer,AK,10,Anchorage,AK
-99630,2017,Bethel,AK,10,Anchorage,AK
-99631,2001,Anchorage,AK,10,Anchorage,AK
-99632,2017,Bethel,AK,10,Anchorage,AK
-99633,2001,Anchorage,AK,10,Anchorage,AK
-99634,2017,Bethel,AK,10,Anchorage,AK
-99635,2013,Soldotna,AK,10,Anchorage,AK
-99636,2018,Dillingham,AK,10,Anchorage,AK
-99637,2017,Bethel,AK,10,Anchorage,AK
-99638,2001,Anchorage,AK,10,Anchorage,AK
-99639,2013,Soldotna,AK,10,Anchorage,AK
-99640,2001,Anchorage,AK,10,Anchorage,AK
-99641,2017,Bethel,AK,10,Anchorage,AK
-99643,2007,Kodiak,AK,10,Anchorage,AK
-99644,2007,Kodiak,AK,10,Anchorage,AK
-99645,2009,Palmer,AK,10,Anchorage,AK
-99647,2001,Anchorage,AK,10,Anchorage,AK
-99648,2001,Anchorage,AK,10,Anchorage,AK
-99649,2013,Soldotna,AK,10,Anchorage,AK
-99650,2017,Bethel,AK,10,Anchorage,AK
-99651,2018,Dillingham,AK,10,Anchorage,AK
-99652,2009,Palmer,AK,10,Anchorage,AK
-99653,2001,Anchorage,AK,10,Anchorage,AK
-99654,2009,Palmer,AK,10,Anchorage,AK
-99655,2017,Bethel,AK,10,Anchorage,AK
-99656,2001,Anchorage,AK,10,Anchorage,AK
-99657,2017,Bethel,AK,10,Anchorage,AK
-99658,2017,Bethel,AK,10,Anchorage,AK
-99659,2001,Anchorage,AK,10,Anchorage,AK
-99660,2001,Anchorage,AK,10,Anchorage,AK
-99661,2001,Anchorage,AK,10,Anchorage,AK
-99662,2017,Bethel,AK,10,Anchorage,AK
-99663,2004,Homer,AK,10,Anchorage,AK
-99664,2011,Seward,AK,10,Anchorage,AK
-99665,2001,Anchorage,AK,10,Anchorage,AK
-99666,2017,Bethel,AK,10,Anchorage,AK
-99667,2009,Palmer,AK,10,Anchorage,AK
-99668,2001,Anchorage,AK,10,Anchorage,AK
-99669,2013,Soldotna,AK,10,Anchorage,AK
-99670,2001,Anchorage,AK,10,Anchorage,AK
-99671,2001,Anchorage,AK,10,Anchorage,AK
-99672,2013,Soldotna,AK,10,Anchorage,AK
-99674,2009,Palmer,AK,10,Anchorage,AK
-99675,2001,Anchorage,AK,10,Anchorage,AK
-99676,2009,Palmer,AK,10,Anchorage,AK
-99677,2014,Valdez,AK,10,Anchorage,AK
-99678,2018,Dillingham,AK,10,Anchorage,AK
-99679,2017,Bethel,AK,10,Anchorage,AK
-99680,2017,Bethel,AK,10,Anchorage,AK
-99681,2017,Bethel,AK,10,Anchorage,AK
-99682,2001,Anchorage,AK,10,Anchorage,AK
-99683,2009,Palmer,AK,10,Anchorage,AK
-99684,2001,Anchorage,AK,10,Anchorage,AK
-99685,2001,Anchorage,AK,10,Anchorage,AK
-99686,2014,Valdez,AK,10,Anchorage,AK
-99687,2009,Palmer,AK,10,Anchorage,AK
-99688,2009,Palmer,AK,10,Anchorage,AK
-99689,2005,Juneau,AK,10,Anchorage,AK
-99690,2017,Bethel,AK,10,Anchorage,AK
-99691,2001,Anchorage,AK,10,Anchorage,AK
-99692,2001,Anchorage,AK,10,Anchorage,AK
-99693,2014,Valdez,AK,10,Anchorage,AK
-99694,2009,Palmer,AK,10,Anchorage,AK
-99695,2001,Anchorage,AK,10,Anchorage,AK
-99697,2007,Kodiak,AK,10,Anchorage,AK
-99701,2003,Fairbanks,AK,10,Anchorage,AK
-99702,2003,Fairbanks,AK,10,Anchorage,AK
-99703,2003,Fairbanks,AK,10,Anchorage,AK
-99704,2003,Fairbanks,AK,10,Anchorage,AK
-99705,2003,Fairbanks,AK,10,Anchorage,AK
-99706,2003,Fairbanks,AK,10,Anchorage,AK
-99707,2003,Fairbanks,AK,10,Anchorage,AK
-99708,2003,Fairbanks,AK,10,Anchorage,AK
-99709,2003,Fairbanks,AK,10,Anchorage,AK
-99710,2003,Fairbanks,AK,10,Anchorage,AK
-99711,2003,Fairbanks,AK,10,Anchorage,AK
-99712,2003,Fairbanks,AK,10,Anchorage,AK
-99714,2003,Fairbanks,AK,10,Anchorage,AK
-99716,2003,Fairbanks,AK,10,Anchorage,AK
-99720,2003,Fairbanks,AK,10,Anchorage,AK
-99721,2003,Fairbanks,AK,10,Anchorage,AK
-99722,2003,Fairbanks,AK,10,Anchorage,AK
-99723,2016,Barrow,AK,10,Anchorage,AK
-99724,2003,Fairbanks,AK,10,Anchorage,AK
-99725,2003,Fairbanks,AK,10,Anchorage,AK
-99726,2003,Fairbanks,AK,10,Anchorage,AK
-99727,2001,Anchorage,AK,10,Anchorage,AK
-99729,2003,Fairbanks,AK,10,Anchorage,AK
-99730,2003,Fairbanks,AK,10,Anchorage,AK
-99731,2003,Fairbanks,AK,10,Anchorage,AK
-99732,2003,Fairbanks,AK,10,Anchorage,AK
-99733,2003,Fairbanks,AK,10,Anchorage,AK
-99734,2016,Barrow,AK,10,Anchorage,AK
-99736,2001,Anchorage,AK,10,Anchorage,AK
-99737,2003,Fairbanks,AK,10,Anchorage,AK
-99738,2003,Fairbanks,AK,10,Anchorage,AK
-99739,2001,Anchorage,AK,10,Anchorage,AK
-99740,2003,Fairbanks,AK,10,Anchorage,AK
-99741,2003,Fairbanks,AK,10,Anchorage,AK
-99742,2008,Nome,AK,10,Anchorage,AK
-99743,2003,Fairbanks,AK,10,Anchorage,AK
-99744,2003,Fairbanks,AK,10,Anchorage,AK
-99745,2003,Fairbanks,AK,10,Anchorage,AK
-99746,2003,Fairbanks,AK,10,Anchorage,AK
-99747,2016,Barrow,AK,10,Anchorage,AK
-99748,2003,Fairbanks,AK,10,Anchorage,AK
-99749,2019,Kotzebue,AK,10,Anchorage,AK
-99750,2019,Kotzebue,AK,10,Anchorage,AK
-99751,2019,Kotzebue,AK,10,Anchorage,AK
-99752,2019,Kotzebue,AK,10,Anchorage,AK
-99753,2001,Anchorage,AK,10,Anchorage,AK
-99754,2003,Fairbanks,AK,10,Anchorage,AK
-99755,2003,Fairbanks,AK,10,Anchorage,AK
-99756,2003,Fairbanks,AK,10,Anchorage,AK
-99757,2003,Fairbanks,AK,10,Anchorage,AK
-99758,2003,Fairbanks,AK,10,Anchorage,AK
-99759,2016,Barrow,AK,10,Anchorage,AK
-99760,2003,Fairbanks,AK,10,Anchorage,AK
-99761,2019,Kotzebue,AK,10,Anchorage,AK
-99762,2008,Nome,AK,10,Anchorage,AK
-99763,2019,Kotzebue,AK,10,Anchorage,AK
-99764,2003,Fairbanks,AK,10,Anchorage,AK
-99765,2003,Fairbanks,AK,10,Anchorage,AK
-99766,2019,Kotzebue,AK,10,Anchorage,AK
-99767,2003,Fairbanks,AK,10,Anchorage,AK
-99768,2003,Fairbanks,AK,10,Anchorage,AK
-99769,2008,Nome,AK,10,Anchorage,AK
-99770,2019,Kotzebue,AK,10,Anchorage,AK
-99771,2001,Anchorage,AK,10,Anchorage,AK
-99772,2008,Nome,AK,10,Anchorage,AK
-99773,2019,Kotzebue,AK,10,Anchorage,AK
-99774,2003,Fairbanks,AK,10,Anchorage,AK
-99775,2003,Fairbanks,AK,10,Anchorage,AK
-99776,2003,Fairbanks,AK,10,Anchorage,AK
-99777,2003,Fairbanks,AK,10,Anchorage,AK
-99778,2008,Nome,AK,10,Anchorage,AK
-99780,2003,Fairbanks,AK,10,Anchorage,AK
-99781,2003,Fairbanks,AK,10,Anchorage,AK
-99782,2016,Barrow,AK,10,Anchorage,AK
-99783,2008,Nome,AK,10,Anchorage,AK
-99784,2008,Nome,AK,10,Anchorage,AK
-99785,2008,Nome,AK,10,Anchorage,AK
-99786,2019,Kotzebue,AK,10,Anchorage,AK
-99788,2003,Fairbanks,AK,10,Anchorage,AK
-99789,2016,Barrow,AK,10,Anchorage,AK
-99790,2003,Fairbanks,AK,10,Anchorage,AK
-99791,2016,Barrow,AK,10,Anchorage,AK
-99801,2005,Juneau,AK,10,Anchorage,AK
-99802,2005,Juneau,AK,10,Anchorage,AK
-99803,2005,Juneau,AK,10,Anchorage,AK
-99811,2005,Juneau,AK,10,Anchorage,AK
-99812,2005,Juneau,AK,10,Anchorage,AK
-99820,2012,Sitka,AK,10,Anchorage,AK
-99821,2005,Juneau,AK,10,Anchorage,AK
-99824,2005,Juneau,AK,10,Anchorage,AK
-99825,2005,Juneau,AK,10,Anchorage,AK
-99826,2005,Juneau,AK,10,Anchorage,AK
-99827,2005,Juneau,AK,10,Anchorage,AK
-99829,2005,Juneau,AK,10,Anchorage,AK
-99830,2010,Petersburg,AK,10,Anchorage,AK
-99832,2005,Juneau,AK,10,Anchorage,AK
-99833,2010,Petersburg,AK,10,Anchorage,AK
-99835,2012,Sitka,AK,10,Anchorage,AK
-99836,2010,Petersburg,AK,10,Anchorage,AK
-99840,2005,Juneau,AK,10,Anchorage,AK
-99841,2005,Juneau,AK,10,Anchorage,AK
-99850,2005,Juneau,AK,10,Anchorage,AK
-99901,2006,Ketchikan,AK,10,Anchorage,AK
-99903,2015,Wrangell,AK,10,Anchorage,AK
-99918,2006,Ketchikan,AK,10,Anchorage,AK
-99919,2006,Ketchikan,AK,10,Anchorage,AK
-99921,2006,Ketchikan,AK,10,Anchorage,AK
-99922,2006,Ketchikan,AK,10,Anchorage,AK
-99923,2006,Ketchikan,AK,10,Anchorage,AK
-99925,2006,Ketchikan,AK,10,Anchorage,AK
-99926,2006,Ketchikan,AK,10,Anchorage,AK
-99927,2006,Ketchikan,AK,10,Anchorage,AK
-99928,2006,Ketchikan,AK,10,Anchorage,AK
-99929,2015,Wrangell,AK,10,Anchorage,AK
-99950,2006,Ketchikan,AK,10,Anchorage,AK
diff --git a/_delphi_utils_python/data_proc/geomap/cbsatocountycrosswalk.csv b/_delphi_utils_python/data_proc/geomap/cbsatocountycrosswalk.csv
deleted file mode 100644
index e8667cf71..000000000
--- a/_delphi_utils_python/data_proc/geomap/cbsatocountycrosswalk.csv
+++ /dev/null
@@ -1,3294 +0,0 @@
-countyname,state,ssacounty,fips,msa,l,msaname,cbsa,cbsaname,cbsaold,cbsanameold,ssast,fipst,y2005,y2011,y2012,y2013,y2014,y2015,y2016,y2017
-AUTAUGA,AL,1000,1001,5240,,"MONTGOMERY, AL",33860,"Montgomery, AL",33860,"Montgomery, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-BALDWIN,AL,1010,1003,5160,,"MOBILE, AL",,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-BARBOUR,AL,1020,1005,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-BIBB,AL,1030,1007,1,,ALABAMA,13820,"Birmingham-Hoover, AL",13820,"Birmingham-Hoover, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-BLOUNT,AL,1040,1009,1000,,"BIRMINGHAM, AL",13820,"Birmingham-Hoover, AL",13820,"Birmingham-Hoover, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-BULLOCK,AL,1050,1011,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,AL,1060,1013,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,AL,1070,1015,450,,"ANNISTON,AL",11500,"Anniston-Oxford, AL",11500,"Anniston-Oxford, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CHAMBERS,AL,1080,1017,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,AL,1090,1019,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CHILTON,AL,1100,1021,1,,ALABAMA,13820,"Birmingham-Hoover, AL",13820,"Birmingham-Hoover, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CHOCTAW,AL,1110,1023,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CLARKE,AL,1120,1025,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,AL,1130,1027,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CLEBURNE,AL,1140,1029,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-COFFEE,AL,1150,1031,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-COLBERT,AL,1160,1033,2650,,"FLORENCE, AL",22520,"Florence-Muscle Shoals, AL",22520,"Florence-Muscle Shoals, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CONECUH,AL,1170,1035,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-COOSA,AL,1180,1037,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-COVINGTON,AL,1190,1039,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CRENSHAW,AL,1200,1041,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-CULLMAN,AL,1210,1043,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-DALE,AL,1220,1045,2180,,"DOTHAN, AL",,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-DALLAS,AL,1230,1047,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-DE KALB,AL,1240,1049,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-ELMORE,AL,1250,1051,5240,,"MONTGOMERY, AL",33860,"Montgomery, AL",33860,"Montgomery, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-ESCAMBIA,AL,1260,1053,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-ETOWAH,AL,1270,1055,2880,,"GADSDEN, AL",23460,"Gadsden, AL",23460,"Gadsden, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,AL,1280,1057,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,AL,1290,1059,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-GENEVA,AL,1300,1061,1,,ALABAMA,20020,"Dothan, AL",20020,"Dothan, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,AL,1310,1063,1,,ALABAMA,46220,"Tuscaloosa, AL",46220,"Tuscaloosa, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-HALE,AL,1320,1065,1,,ALABAMA,46220,"Tuscaloosa, AL",46220,"Tuscaloosa, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,AL,1330,1067,1,,ALABAMA,20020,"Dothan, AL",20020,"Dothan, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-HOUSTON,AL,1340,1069,2180,,"DOTHAN, AL",20020,"Dothan, AL",20020,"Dothan, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,AL,1350,1071,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,AL,1360,1073,1000,,"BIRMINGHAM, AL",13820,"Birmingham-Hoover, AL",13820,"Birmingham-Hoover, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-LAMAR,AL,1370,1075,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-LAUDERDALE,AL,1380,1077,2650,,"FLORENCE, AL",22520,"Florence-Muscle Shoals, AL",22520,"Florence-Muscle Shoals, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,AL,1390,1079,2030,,"DECATUR, AL",19460,"Decatur, AL",19460,"Decatur, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,AL,1400,1081,580,,"AUBURN-OPELIKA, AL",12220,"Auburn-Opelika, AL",12220,"Auburn-Opelika, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-LIMESTONE,AL,1410,1083,3440,,"HUNTSVILLE, AL",26620,"Huntsville, AL",26620,"Huntsville, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-LOWNDES,AL,1420,1085,1,,ALABAMA,33860,"Montgomery, AL",33860,"Montgomery, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MACON,AL,1430,1087,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,AL,1440,1089,3440,,"HUNTSVILLE, AL",26620,"Huntsville, AL",26620,"Huntsville, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MARENGO,AL,1450,1091,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,AL,1460,1093,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,AL,1470,1095,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MOBILE,AL,1480,1097,5160,,"MOBILE, AL",33660,"Mobile, AL",33660,"Mobile, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,AL,1490,1099,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,AL,1500,1101,5240,,"MONTGOMERY, AL",33860,"Montgomery, AL",33860,"Montgomery, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,AL,1510,1103,2030,,"DECATUR, AL",19460,"Decatur, AL",19460,"Decatur, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,AL,1520,1105,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-PICKENS,AL,1530,1107,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,AL,1540,1109,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,AL,1550,1111,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-RUSSELL,AL,1560,1113,1800,,"COLUMBUS, GA-AL",17980,"Columbus, GA-AL",17980,"Columbus, GA-AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-ST. CLAIR,AL,1570,1115,1000,,"BIRMINGHAM, AL",13820,"Birmingham-Hoover, AL",13820,"Birmingham-Hoover, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,AL,1580,1117,1000,,"BIRMINGHAM, AL",13820,"Birmingham-Hoover, AL",13820,"Birmingham-Hoover, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-SUMTER,AL,1590,1119,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-TALLADEGA,AL,1600,1121,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-TALLAPOOSA,AL,1610,1123,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-TUSCALOOSA,AL,1620,1125,8600,,"TUSCALOOSA, AL",46220,"Tuscaloosa, AL",46220,"Tuscaloosa, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-WALKER,AL,1630,1127,1,,ALABAMA,13820,"Birmingham-Hoover, AL",13820,"Birmingham-Hoover, AL",1,1,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,AL,1640,1129,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-WILCOX,AL,1650,1131,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-WINSTON,AL,1660,1133,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,AL,1999,1990,1,,ALABAMA,,,,,1,1,2005,2011,2012,2013,2014,2015,2016,2017
-ALEUTIANS EAST,AK,2013,2013,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-ALEUTIANS WEST,AK,2016,2016,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-ANCHORAGE,AK,2020,2020,380,,"ANCHORAGE,AK",11260,"Anchorage, AK",11260,"Anchorage, AK",2,2,2005,2011,2012,2013,2014,2015,2016,2017
-ANGOON,AK,2030,2031,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-BARROW-NORTH SLOPE,AK,2040,2040,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-BETHEL,AK,2050,2050,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-BRISTOL BAY BOROUGH,AK,2060,2060,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-DENALI,AK,2068,2068,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-DILLINGHAM,AK,2070,2070,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-CORDOVA-MCCARTHY,AK,2080,2080,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-FAIRBANKS NORTH STAR,AK,2090,2090,2,,ALASKA,21820,"Fairbanks, AK",21820,"Fairbanks, AK",2,2,2005,2011,2012,2013,2014,2015,2016,2017
-HAINES,AK,2100,2100,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-HOONAH-ANGOON CENSUS AREA,AK,2105,2105,,,,,,,,2,2,,,2012,2013,2014,2015,2016,2017
-JUNEAU,AK,2110,2110,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-KENAI-COOK INLET,AK,2120,2120,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-KENAI PENINSULA,AK,2122,2122,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-KETCHIKAN GATEWAY,AK,2130,2130,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-KOBUK,AK,2140,2140,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-KODIAK ISLAND BOROUGH,AK,2150,2150,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-KSUKOKWIN,AK,2160,2160,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-LAKE AND PENINSULA,AK,2164,2164,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-MATANUSKA-SUSITNA,AK,2170,2170,2,,ALASKA,11260,"Anchorage, AK",11260,"Anchorage, AK",2,2,2005,2011,2012,2013,2014,2015,2016,2017
-NOME,AK,2180,2180,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-NORTH SLOPE BOROUH,AK,2185,2185,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-NORTHWEST ARTIC BOROUGH,AK,2188,2188,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-OUTER KETCHIKAN,AK,2190,2190,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-PETERSBURG CENSUS AREA,AK,2195,2195,,,,,,,,2,2,,,2012,2013,2014,2015,2016,2017
-PR.OF WALES-HYDER CNS AREA,AK,2198,2198,,,,,,,,2,2,,,2012,2013,2014,2015,2016,2017
-PR.OF WALES,AK,2200,2200,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-PR.OF WALES-OUT.KETCHIKAN,AK,2201,2201,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-SEWARD,AK,2210,2210,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-SITKA BOROUGH,AK,2220,2220,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-SKAGWAY-YAKUTAT,AK,2230,2230,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-SKAGWAY-YAKUTAT-ANGOON,AK,2231,2231,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-SKAGWAY-HOONAH-ANGOON,AK,2232,2232,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-SOUTHEAST FAIRBANKS,AK,2240,2240,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-UPPER YUKON,AK,2250,2250,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-VALDEZ-CHITNA-WHITTIER,AK,2260,2260,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-VALDEZ-CORDOVA,AK,2261,2261,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-WADE HAMPTON,AK,2270,2270,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-WRANGELL CITY AND BOROUGH,AK,2275,2275,,,,,,,,2,2,,,2012,2013,2014,2015,2016,2017
-WRANGELL-PETERSBURG,AK,2280,2280,2,,ALASKA,,,,,2,2,2005,2011,,,,,,
-YAKUTAT BOROUGH,AK,2282,2282,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-YUKON-KOYUKUK,AK,2290,2290,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,AK,2999,2990,2,,ALASKA,,,,,2,2,2005,2011,2012,2013,2014,2015,2016,2017
-APACHE,AZ,3000,4001,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-COCHISE,AZ,3010,4003,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-COCONINO,AZ,3020,4005,2620,,"FLAGSTAFF, ARIZONA-UTAH",22380,"Flagstaff, AZ",22380,"Flagstaff, AZ",3,4,2005,2011,2012,2013,2014,2015,2016,2017
-GILA,AZ,3030,4007,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-GRAHAM,AZ,3040,4009,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-GREENLEE,AZ,3050,4011,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-LAPAZ,AZ,3055,4012,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-MARICOPA,AZ,3060,4013,6200,L,"PHOENIX-MESA, AZ",38060,"Phoenix-Mesa-Scottsdale, AZ",38060,"Phoenix-Mesa-Glendale, AZ",3,4,2005,2011,2012,2013,2014,2015,2016,2017
-MOHAVE,AZ,3070,4015,4120,L,"LAS VEGAS, NV-AZ",,,29420,"Lake Havasu City-Kingman, AZ",3,4,2005,2011,2012,2013,2014,2015,2016,2017
-NAVAJO,AZ,3080,4017,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-PIMA,AZ,3090,4019,8520,,"TUCSON, AZ",46060,"Tucson, AZ",46060,"Tucson, AZ",3,4,2005,2011,2012,2013,2014,2015,2016,2017
-PINAL,AZ,3100,4021,6200,L,"PHOENIX-MESA, AZ",38060,"Phoenix-Mesa-Scottsdale, AZ",38060,"Phoenix-Mesa-Glendale, AZ",3,4,2005,2011,2012,2013,2014,2015,2016,2017
-SANTA CRUZ,AZ,3110,4023,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-YAVAPAI,AZ,3120,4025,3,,ARIZONA,39140,"Prescott, AZ",39140,"Prescott, AZ",3,4,2005,2011,2012,2013,2014,2015,2016,2017
-YUMA,AZ,3130,4027,9360,,"YUMA, AZ",49740,"Yuma, AZ",49740,"Yuma, AZ",3,4,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,AZ,3999,4990,3,,ARIZONA,,,,,3,4,2005,2011,2012,2013,2014,2015,2016,2017
-ARKANSAS,AR,4000,5001,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-ASHLEY,AR,4010,5003,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-BAXTER,AR,4020,5005,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,AR,4030,5007,2580,,"FAYETTEVILLE-SPRINGDALE-ROGERS, AR",22220,"Fayetteville-Springdale-Rogers, AR-MO",22220,"Fayetteville-Springdale-Rogers, AR-MO",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,AR,4040,5009,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-BRADLEY,AR,4050,5011,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,AR,4060,5013,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,AR,4070,5015,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CHICOT,AR,4080,5017,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,AR,4090,5019,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,AR,4100,5021,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CLEBURNE,AR,4110,5023,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CLEVELAND,AR,4120,5025,4,,ARKANSAS,38220,"Pine Bluff, AR",38220,"Pine Bluff, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,AR,4130,5027,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CONWAY,AR,4140,5029,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CRAIGHEAD,AR,4150,5031,3700,,"JONESBORO, AR",27860,"Jonesboro, AR",27860,"Jonesboro, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,AR,4160,5033,2720,,"FORT SMITH, AR-OK",22900,"Fort Smith, AR-OK",22900,"Fort Smith, AR-OK",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CRITTENDEN,AR,4170,5035,4920,L,"MEMPHIS, TN-AR-MS",32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-CROSS,AR,4180,5037,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-DALLAS,AR,4190,5039,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-DESHA,AR,4200,5041,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-DREW,AR,4210,5043,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-FAULKNER,AR,4220,5045,4400,,"LITTLE ROCK-NORTH LITTLE ROCK, AR",30780,"Little Rock-North Little Rock, AR",30780,"Little Rock-North Little Rock-Conway, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,AR,4230,5047,4,,ARKANSAS,22900,"Fort Smith, AR-OK",22900,"Fort Smith, AR-OK",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,AR,4240,5049,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-GARLAND,AR,4250,5051,4,,ARKANSAS,26300,"Hot Springs, AR",26300,"Hot Springs, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,AR,4260,5053,4,,ARKANSAS,30780,"Little Rock-North Little Rock, AR",30780,"Little Rock-North Little Rock-Conway, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,AR,4270,5055,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-HEMPSTEAD,AR,4280,5057,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-HOT SPRING,AR,4290,5059,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-HOWARD,AR,4300,5061,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-INDEPENDENCE,AR,4310,5063,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-IZARD,AR,4320,5065,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,AR,4330,5067,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,AR,4340,5069,6240,,"PINE BLUFF, AR",38220,"Pine Bluff, AR",38220,"Pine Bluff, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,AR,4350,5071,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-LAFAYETTE,AR,4360,5073,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,AR,4370,5075,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,AR,4380,5077,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,AR,4390,5079,4,,ARKANSAS,38220,"Pine Bluff, AR",38220,"Pine Bluff, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-LITTLE RIVER,AR,4400,5081,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,AR,4410,5083,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-LONOKE,AR,4420,5085,4400,,"LITTLE ROCK-NORTH LITTLE ROCK, AR",30780,"Little Rock-North Little Rock, AR",30780,"Little Rock-North Little Rock-Conway, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,AR,4430,5087,4,,ARKANSAS,22220,"Fayetteville-Springdale-Rogers, AR-MO",22220,"Fayetteville-Springdale-Rogers, AR-MO",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,AR,4440,5089,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-MILLER,AR,4450,5091,8360,,"TEXARKANA, TX-TEXARKANA, AR",45500,"Texarkana, TX-Texarkana, AR",45500,"Texarkana, TX-Texarkana, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-MISSISSIPPI,AR,4460,5093,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,AR,4470,5095,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,AR,4480,5097,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-NEVADA,AR,4490,5099,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-NEWTON,AR,4500,5101,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-OUACHITA,AR,4510,5103,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,AR,4520,5105,4,,ARKANSAS,30780,"Little Rock-North Little Rock, AR",30780,"Little Rock-North Little Rock-Conway, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-PHILLIPS,AR,4530,5107,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,AR,4540,5109,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-POINSETT,AR,4550,5111,4,,ARKANSAS,27860,"Jonesboro, AR",27860,"Jonesboro, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,AR,4560,5113,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-POPE,AR,4570,5115,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-PRAIRIE,AR,4580,5117,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-PULASKI,AR,4590,5119,4400,,"LITTLE ROCK-NORTH LITTLE ROCK, AR",30780,"Little Rock-North Little Rock, AR",30780,"Little Rock-North Little Rock-Conway, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,AR,4600,5121,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-ST. FRANCIS,AR,4610,5123,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-SALINE,AR,4620,5125,4400,,"LITTLE ROCK-NORTH LITTLE ROCK, AR",30780,"Little Rock-North Little Rock, AR",30780,"Little Rock-North Little Rock-Conway, AR",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,AR,4630,5127,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-SEARCY,AR,4640,5129,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-SEBASTIAN,AR,4650,5131,2720,,"FORT SMITH, AR-OK",22900,"Fort Smith, AR-OK",22900,"Fort Smith, AR-OK",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-SEVIER,AR,4660,5133,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-SHARP,AR,4670,5135,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-STONE,AR,4680,5137,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,AR,4690,5139,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-VAN BUREN,AR,4700,5141,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,AR,4710,5143,2580,,"FAYETTEVILLE-SPRINGDALE-ROGERS, AR",22220,"Fayetteville-Springdale-Rogers, AR-MO",22220,"Fayetteville-Springdale-Rogers, AR-MO",4,5,2005,2011,2012,2013,2014,2015,2016,2017
-WHITE,AR,4720,5145,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-WOODRUFF,AR,4730,5147,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-YELL,AR,4740,5149,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,AR,4999,5990,4,,ARKANSAS,,,,,4,5,2005,2011,2012,2013,2014,2015,2016,2017
-ALAMEDA,CA,5000,6001,5775,L,"OAKLAND, CA",36084,"Oakland-Fremont-Hayward, CA",36084,"Oakland-Fremont-Hayward, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-ALPINE,CA,5010,6003,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-AMADOR,CA,5020,6005,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-BUTTE,CA,5030,6007,1620,,"CHICO-PARADISE, CA",17020,"Chico, CA",17020,"Chico, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-CALAVERAS,CA,5040,6009,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-COLUSA,CA,5050,6011,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-CONTRA COSTA,CA,5060,6013,5775,L,"OAKLAND, CA",36084,"Oakland-Fremont-Hayward, CA",36084,"Oakland-Fremont-Hayward, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-DEL NORTE,CA,5070,6015,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-EL DORADO,CA,5080,6017,6920,L,"SACRAMENTO, CA",40900,"Sacramento--Arden-Arcade--Roseville, CA",40900,"Sacramento-Arden-Arcade-Roseville, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-FRESNO,CA,5090,6019,2840,,"FRESNO, CA",23420,"Fresno, CA",23420,"Fresno, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-GLENN,CA,5100,6021,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-HUMBOLDT,CA,5110,6023,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-IMPERIAL,CA,5120,6025,5,,CALIFORNIA,20940,"El Centro, CA",20940,"El Centro, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-INYO,CA,5130,6027,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-KERN,CA,5140,6029,680,,"BAKERSFIELD, CA",12540,"Bakersfield, CA",12540,"Bakersfield-Delano, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-KINGS,CA,5150,6031,5,,CALIFORNIA,25260,"Hanford-Corcoran, CA",25260,"Hanford-Corcoran, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,CA,5160,6033,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-LASSEN,CA,5170,6035,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-LOS ANGELES,CA,5200,6037,4480,L,"LOS ANGELES-LONG BEACH, CA",31084,"Los Angeles-Long Beach-Santa Ana, CA",31084,"Los Angeles-Long Beach-Glendale, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-LOS ANGELES,CA,5210,6037,4480,L,"LOS ANGELES-LONG BEACH, CA",31084,"Los Angeles-Long Beach-Santa Ana, CA",31084,"Los Angeles-Long Beach-Glendale, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MADERA,CA,5300,6039,2840,,"FRESNO, CA",31460,"Madera, CA",31460,"Madera-Chowchilla, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MARIN,CA,5310,6041,7360,L,"SAN FRANCISCO, CA",41884,"San Francisco-San Mateo-Redwood City,CA",41884,"San Francisco-San Mateo-Redwood City, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MARIPOSA,CA,5320,6043,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MENDOCINO,CA,5330,6045,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MERCED,CA,5340,6047,4940,,"MERCED, CA",32900,"Merced, CA",32900,"Merced, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MODOC,CA,5350,6049,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MONO,CA,5360,6051,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-MONTEREY,CA,5370,6053,7120,,"SALINAS, CA",41500,"Salinas, CA",41500,"Salinas, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-NAPA,CA,5380,6055,8720,,"VALLEJO-FARIFIELD-NAPA, CA",34900,"Napa, CA",34900,"Napa, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-NEVADA,CA,5390,6057,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,CA,5400,6059,5945,L,"ORANGE COUNTY, CA",42044,"Santa Ana-Anaheim-Irvine, CA",42044,"Santa Ana-Anaheim-Irvine, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-PLACER,CA,5410,6061,6920,L,"SACRAMENTO, CA",40900,"Sacramento--Arden-Arcade--Roseville, CA",40900,"Sacramento-Arden-Arcade-Roseville, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-PLUMAS,CA,5420,6063,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-RIVERSIDE,CA,5430,6065,6780,L,"RIVERSIDE-SAN BERNADINO, CA",40140,"Riverside-San Bernardino-Ontario, CA",40140,"Riverside-San Bernardino-Ontario, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SACRAMENTO,CA,5440,6067,6920,L,"SACRAMENTO, CA",40900,"Sacramento--Arden-Arcade--Roseville, CA",40900,"Sacramento-Arden-Arcade-Roseville, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SAN BENITO,CA,5450,6069,5,,CALIFORNIA,41940,"San Jose-Sunnyvale-Santa Clara, CA",41940,"San Jose-Sunnyvale-Santa Clara, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SAN BERNARDINO,CA,5460,6071,6780,L,"RIVERSIDE-SAN BERNADINO, CA",40140,"Riverside-San Bernardino-Ontario, CA",40140,"Riverside-San Bernardino-Ontario, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SAN DIEGO,CA,5470,6073,7320,L,"SAN DIEGO, CA",41740,"San Diego-Carlsbad-San Marcos, CA",41740,"San Diego-Carlsbad-San Marcos, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SAN FRANCISCO,CA,5480,6075,7360,L,"SAN FRANCISCO, CA",41884,"San Francisco-San Mateo-Redwood City,CA",41884,"San Francisco-San Mateo-Redwood City, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SAN JOAQUIN,CA,5490,6077,8120,,"STOCKTON-LODI, CA",44700,"Stockton, CA",44700,"Stockton, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SAN LUIS OBISPO,CA,5500,6079,7460,,"SAN LUIS OBISPO-ATASCADERO-PASO ROBLES, CA",42020,"San Luis Obispo-Paso Robles, CA",42020,"San Luis Obispo-Paso Robles, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SAN MATEO,CA,5510,6081,7360,L,"SAN FRANCISCO, CA",41884,"San Francisco-San Mateo-Redwood City,CA",41884,"San Francisco-San Mateo-Redwood City, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SANTA BARBARA,CA,5520,6083,7480,,"SANTA BARBARA-SANTA MARIA-LOMPOC, CA",42060,"Santa Barbara-Santa Maria-Goleta, CA",42060,"Santa Barbara-Santa Maria-Goleta, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SANTA CLARA,CA,5530,6085,7400,L,"SAN JOSE, CA",41940,"San Jose-Sunnyvale-Santa Clara, CA",41940,"San Jose-Sunnyvale-Santa Clara, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SANTA CRUZ,CA,5540,6087,7485,,"SANTA CRUZ-WATSONVILLE, CA",42100,"Santa Cruz-Watsonville, CA",42100,"Santa Cruz-Watsonville, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SHASTA,CA,5550,6089,6690,,"REDDING, CA",39820,"Redding, CA",39820,"Redding, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SIERRA,CA,5560,6091,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SISKIYOU,CA,5570,6093,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SOLANO,CA,5580,6095,8720,,"VALLEJO-FARIFIELD-NAPA, CA",46700,"Vallejo-Fairfield, CA",46700,"Vallejo-Fairfield, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SONOMA,CA,5590,6097,7500,,"SANTA ROSA, CA",42220,"Santa Rosa-Petaluma, CA",42220,"Santa Rosa-Petaluma, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-STANISLAUS,CA,5600,6099,5170,,"MODESTO, CA",33700,"Modesto, CA",33700,"Modesto, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-SUTTER,CA,5610,6101,9340,,"YUBA CITY, CA",49700,"Yuba City, CA",49700,"Yuba City, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-TEHAMA,CA,5620,6103,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-TRINITY,CA,5630,6105,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-TULARE,CA,5640,6107,8780,,"VISALIA-TULARE-PORTERVILLE, CA",47300,"Visalia-Porterville, CA",47300,"Visalia-Porterville, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-TUOLUMNE,CA,5650,6109,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-VENTURA,CA,5660,6111,8735,,"VENTURA, CA",37100,"Oxnard-Thousand Oaks-Ventura, CA",37100,"Oxnard-Thousand Oaks-Ventura, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-YOLO,CA,5670,6113,9270,,"YOLO, CA",40900,"Sacramento--Arden-Arcade--Roseville, CA",40900,"Sacramento-Arden-Arcade-Roseville, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-YUBA,CA,5680,6115,9340,,"YUBA CITY, CA",49700,"Yuba City, CA",49700,"Yuba City, CA",5,6,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,CA,5999,6990,5,,CALIFORNIA,,,,,5,6,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,CO,6000,8001,2080,L,"DENVER, CO",19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-ALAMOSA,CO,6010,8003,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-ARAPAHOE,CO,6020,8005,2080,L,"DENVER, CO",19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-ARCHULETA,CO,6030,8007,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-BACA,CO,6040,8009,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-BENT,CO,6050,8011,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-BOULDER,CO,6060,8013,1125,,"BOULDER-LONGMONT, CO",14500,"Boulder, CO",14500,"Boulder, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-BROOMFIELD,CO,6630,8014,2080,L,"DENVER, CO",19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-CHAFFEE,CO,6070,8015,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-CHEYENNE,CO,6080,8017,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-CLEAR CREEK,CO,6090,8019,6,,COLORADO,19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-CONEJOS,CO,6100,8021,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-COSTILLA,CO,6110,8023,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-CROWLEY,CO,6120,8025,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-CUSTER,CO,6130,8027,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-DELTA,CO,6140,8029,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-DENVER,CO,6150,8031,2080,L,"DENVER, CO",19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-DOLORES,CO,6160,8033,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,CO,6170,8035,2080,L,"DENVER, CO",19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-EAGLE,CO,6180,8037,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-ELBERT,CO,6190,8039,6,,COLORADO,19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-EL PASO,CO,6200,8041,1720,,"COLORADO SPRINGS, CO",17820,"Colorado Springs, CO",17820,"Colorado Springs, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-FREMONT,CO,6210,8043,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-GARFIELD,CO,6220,8045,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-GILPIN,CO,6230,8047,6,,COLORADO,19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-GRAND,CO,6240,8049,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-GUNNISON,CO,6250,8051,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-HINSDALE,CO,6260,8053,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-HUERFANO,CO,6270,8055,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,CO,6280,8057,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,CO,6290,8059,2080,L,"DENVER, CO",19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-KIOWA,CO,6300,8061,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-KIT CARSON,CO,6310,8063,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,CO,6320,8065,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-LA PLATA,CO,6330,8067,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-LARIMER,CO,6340,8069,2670,,"FORT COLLINS-LOVELAND, CO",22660,"Fort Collins-Loveland, CO",22660,"Fort Collins-Loveland, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-LAS ANIMAS,CO,6350,8071,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,CO,6360,8073,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,CO,6370,8075,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-MESA,CO,6380,8077,2995,,"GRAND JUNCTION, CO",24300,"Grand Junction, CO",24300,"Grand Junction, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-MINERAL,CO,6390,8079,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-MOFFAT,CO,6400,8081,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-MONTEZUMA,CO,6410,8083,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-MONTROSE,CO,6420,8085,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,CO,6430,8087,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-OTERO,CO,6440,8089,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-OURAY,CO,6450,8091,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-PARK,CO,6460,8093,6,,COLORADO,19740,"Denver-Aurora, CO",19740,"Denver-Aurora-Broomfield, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-PHILLIPS,CO,6470,8095,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-PITKIN,CO,6480,8097,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-PROWERS,CO,6490,8099,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-PUEBLO,CO,6500,8101,6560,,"PUEBLO, CO",39380,"Pueblo, CO",39380,"Pueblo, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-RIO BLANCO,CO,6510,8103,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-RIO GRANDE,CO,6520,8105,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-ROUTT,CO,6530,8107,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-SAGUACHE,CO,6540,8109,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-SAN JUAN,CO,6550,8111,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-SAN MIGUEL,CO,6560,8113,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-SEDGWICK,CO,6570,8115,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-SUMMIT,CO,6580,8117,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-TELLER,CO,6590,8119,6,,COLORADO,17820,"Colorado Springs, CO",17820,"Colorado Springs, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,CO,6600,8121,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-WELD,CO,6610,8123,3060,,"GREELEY, CO",24540,"Greeley, CO",24540,"Greeley, CO",6,8,2005,2011,2012,2013,2014,2015,2016,2017
-YUMA,CO,6620,8125,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,CO,6999,8990,6,,COLORADO,,,,,6,8,2005,2011,2012,2013,2014,2015,2016,2017
-FAIRFIELD,CT,7000,9001,5483,L,NEW HAVEN-BRIDGEPORT-STAMFORD-WATERBURY-DANBU,14860,"Bridgeport-Stamford-Norwalk, CT",14860,"Bridgeport-Stamford-Norwalk, CT",7,9,2005,2011,2012,2013,2014,2015,2016,2017
-HARTFORD,CT,7010,9003,3283,L,"HARTFORD, CT",25540,"Hartford-West Hartford-East Hartford, C",25540,"Hartford-West Hartford-East Hartford, CT",7,9,2005,2011,2012,2013,2014,2015,2016,2017
-LITCHFIELD,CT,7020,9005,3283,L,"HARTFORD, CT",25540,"Hartford-West Hartford-East Hartford, C",,,7,9,2005,2011,2012,2013,2014,2015,2016,2017
-MIDDLESEX,CT,7030,9007,3283,L,"HARTFORD, CT",25540,"Hartford-West Hartford-East Hartford, C",25540,"Hartford-West Hartford-East Hartford, CT",7,9,2005,2011,2012,2013,2014,2015,2016,2017
-NEW HAVEN,CT,7040,9009,5483,L,NEW HAVEN-BRIDGEPORT-STAMFORD-WATERBURY-DANBU,35300,"New Haven-Milford, CT",35300,"New Haven-Milford, CT",7,9,2005,2011,2012,2013,2014,2015,2016,2017
-NEW LONDON,CT,7050,9011,5523,,"NEW LONDON-NORWICH, CT",35980,"Norwich-New London, CT",35980,"Norwich-New London, CT",7,9,2005,2011,2012,2013,2014,2015,2016,2017
-TOLLAND,CT,7060,9013,3283,L,"HARTFORD, CT",25540,"Hartford-West Hartford-East Hartford, C",25540,"Hartford-West Hartford-East Hartford, CT",7,9,2005,2011,2012,2013,2014,2015,2016,2017
-WINDHAM,CT,7070,9015,7,,CONNECTICUT,,,,,7,9,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,CT,7999,9990,7,,CONNECTICUT,,,,,7,9,2005,2011,2012,2013,2014,2015,2016,2017
-KENT,DE,8000,10001,2190,,"DOVER, DE",20100,"Dover, DE",20100,"Dover, DE",8,10,2005,2011,2012,2013,2014,2015,2016,2017
-NEW CASTLE,DE,8010,10003,9160,,"WILMINGTON-NEWARK, DE-MD",48864,"Wilmington, DE-MD-NJ",48864,"Wilmington, DE-MD-NJ",8,10,2005,2011,2012,2013,2014,2015,2016,2017
-SUSSEX,DE,8020,10005,8,,DELAWARE,,,,,8,10,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,DE,8999,10990,8,,DELAWARE,,,,,8,10,2005,2011,2012,2013,2014,2015,2016,2017
-THE DISTRICT,DC,9000,11001,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",9,11,2005,2011,2012,2013,2014,2015,2016,2017
-ALACHUA,FL,10000,12001,2900,,"GAINESVILLE, FL",23540,"Gainesville, FL",23540,"Gainesville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-BAKER,FL,10010,12003,10,,FLORIDA,27260,"Jacksonville, FL",27260,"Jacksonville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-BAY,FL,10020,12005,6015,,"PANAMA CITY, FL",37460,"Panama City-Lynn Haven, FL",37460,"Panama City-Lynn Haven-Panama City Beach,",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-BRADFORD,FL,10030,12007,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-BREVARD,FL,10040,12009,4900,,"MELBOURNE-TITUSVILLE-PALM BAY, FL",37340,"Palm Bay-Melbourne-Titusville, FL",37340,"Palm Bay-Melbourne-Titusville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-BROWARD,FL,10050,12011,2680,L,"FORT LAUDERDALE, FL",22744,Ft Lauderdale-Pompano Beach-Deerfield,22744,Fort Lauderdale-Pompano Beach-Deerfield Be,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,FL,10060,12013,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLOTTE,FL,10070,12015,6580,,"PUNTA GORDA, FL",39460,"Punta Gorda, FL",39460,"Punta Gorda, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-CITRUS,FL,10080,12017,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,FL,10090,12019,3600,L,"JACKSONVILLE, FL",27260,"Jacksonville, FL",27260,"Jacksonville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-COLLIER,FL,10100,12021,5345,,"NAPLES, FL",34940,"Naples-Marco Island, FL A",34940,"Naples-Marco Island, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,FL,10110,12023,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-DE SOTO,FL,10130,12027,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-DIXIE,FL,10140,12029,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-DUVAL,FL,10150,12031,3600,L,"JACKSONVILLE, FL",27260,"Jacksonville, FL",27260,"Jacksonville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-ESCAMBIA,FL,10160,12033,6080,,"PENSACOLA, FL",37860,"Pensacola-Ferry Pass-Brent, FL",37860,"Pensacola-Ferry Pass-Brent, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-FLAGLER,FL,10170,12035,2020,,"DAYTONA BEACH, FL",,,37380,"Palm Coast, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,FL,10180,12037,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-GADSDEN,FL,10190,12039,8240,,"TALLAHASSEE, FL",45220,"Tallahassee, FL",45220,"Tallahassee, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-GILCHRIST,FL,10200,12041,10,,FLORIDA,23540,"Gainesville, FL",23540,"Gainesville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-GLADES,FL,10210,12043,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-GULF,FL,10220,12045,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,FL,10230,12047,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-HARDEE,FL,10240,12049,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-HENDRY,FL,10250,12051,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-HERNANDO,FL,10260,12053,8280,L,"TAMPA-ST. PETERSBURG-CLEARWATER, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-HIGHLANDS,FL,10270,12055,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-HILLSBOROUGH,FL,10280,12057,8280,L,"TAMPA-ST. PETERSBURG-CLEARWATER, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-HOLMES,FL,10290,12059,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-INDIAN RIVER,FL,10300,12061,10,,FLORIDA,46940,"Vero Beach, FL",42680,"Sebastian-Vero Beach, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,FL,10310,12063,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,FL,10320,12065,10,,FLORIDA,45220,"Tallahassee, FL",45220,"Tallahassee, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-LAFAYETTE,FL,10330,12067,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,FL,10340,12069,5960,L,"ORLANDO, FL",36740,"Orlando, FL",36740,"Orlando-Kissimmee-Sanford, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,FL,10350,12071,2700,,"FORT MYERS-CAPE CORAL, FL",15980,"Cape Coral-Fort Myers, FL",15980,"Cape Coral-Fort Myers, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-LEON,FL,10360,12073,8240,,"TALLAHASSEE, FL",45220,"Tallahassee, FL",45220,"Tallahassee, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-LEVY,FL,10370,12075,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-LIBERTY,FL,10380,12077,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,FL,10390,12079,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-MANATEE,FL,10400,12081,7510,,"SARASOTA-BRADENTON, FL",42260,"Sarasota-Bradenton-Venice, FL",35840,"North Port-Bradenton-Sarasota, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,FL,10410,12083,5790,,"OCALA, FL",36100,"Ocala, FL",36100,"Ocala, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-MARTIN,FL,10420,12085,2710,,"FORT PIERCE-PORT ST. LUCIE, FL",38940,"Port St. Lucie-Fort Pierce, FL",38940,"Port St. Lucie, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-MIAMI-DADE,FL,10120,12086,5000,L,"MIAMI, FL",33124,"Miami-Miami Beach-Kendall, FL",33124,"Miami-Miami Beach-Kendall, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,FL,10430,12087,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-NASSAU,FL,10440,12089,3600,L,"JACKSONVILLE, FL",27260,"Jacksonville, FL",27260,"Jacksonville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-OKALOOSA,FL,10450,12091,2750,,"FORT WALTON BEACH, FL",23020,"Fort Walton Beach-Crestview-Destin, FL",18880,"Crestview-Fort Walton Beach-Destin, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-OKEECHOBEE,FL,10460,12093,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,FL,10470,12095,5960,L,"ORLANDO, FL",36740,"Orlando, FL",36740,"Orlando-Kissimmee-Sanford, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-OSCEOLA,FL,10480,12097,5960,L,"ORLANDO, FL",36740,"Orlando, FL",36740,"Orlando-Kissimmee-Sanford, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-PALM BEACH,FL,10490,12099,8960,L,"WEST PALM BEACH-BOCA RATON, FL",48424,West Palm Beach-Boca Raton-Boynton FL,48424,"West Palm Beach-Boca Raton-Boynton Beach,",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-PASCO,FL,10500,12101,8280,L,"TAMPA-ST. PETERSBURG-CLEARWATER, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-PINELLAS,FL,10510,12103,8280,L,"TAMPA-ST. PETERSBURG-CLEARWATER, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",45300,"Tampa-St. Petersburg-Clearwater, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,FL,10520,12105,3980,,"LAKELAND-WINTER HAVEN, FL",29460,"Lakeland, FL",29460,"Lakeland-Winter Haven, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,FL,10530,12107,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-ST. JOHNS,FL,10540,12109,3600,L,"JACKSONVILLE, FL",27260,"Jacksonville, FL",27260,"Jacksonville, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-ST. LUCIE,FL,10550,12111,2710,,"FORT PIERCE-PORT ST. LUCIE, FL",38940,"Port St. Lucie-Fort Pierce, FL",38940,"Port St. Lucie, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-SANTA ROSA,FL,10560,12113,6080,,"PENSACOLA, FL",37860,"Pensacola-Ferry Pass-Brent, FL",37860,"Pensacola-Ferry Pass-Brent, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-SARASOTA,FL,10570,12115,7510,,"SARASOTA-BRADENTON, FL",42260,"Sarasota-Bradenton-Venice, FL",35840,"North Port-Bradenton-Sarasota, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-SEMINOLE,FL,10580,12117,5960,L,"ORLANDO, FL",36740,"Orlando, FL",36740,"Orlando-Kissimmee-Sanford, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-SUMTER,FL,10590,12119,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-SUWANNEE,FL,10600,12121,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-TAYLOR,FL,10610,12123,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,FL,10620,12125,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-VOLUSIA,FL,10630,12127,2020,,"DAYTONA BEACH, FL",19660,"Deltona-Daytona Beach-Ormond Beach, FL",19660,"Deltona-Daytona Beach-Ormond Beach, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-WAKULLA,FL,10640,12129,10,,FLORIDA,45220,"Tallahassee, FL",45220,"Tallahassee, FL",10,12,2005,2011,2012,2013,2014,2015,2016,2017
-WALTON,FL,10650,12131,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,FL,10660,12133,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,FL,10999,12990,10,,FLORIDA,,,,,10,12,2005,2011,2012,2013,2014,2015,2016,2017
-APPLING,GA,11000,13001,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-ATKINSON,GA,11010,13003,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BACON,GA,11011,13005,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BAKER,GA,11020,13007,11,,GEORGIA,10500,"Albany, GA",10500,"Albany, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BALDWIN,GA,11030,13009,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BANKS,GA,11040,13011,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BARROW,GA,11050,13013,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BARTOW,GA,11060,13015,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BEN HILL,GA,11070,13017,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BERRIEN,GA,11080,13019,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BIBB,GA,11090,13021,4680,,"MACON, GA",31420,"Macon, GA",31420,"Macon, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BLECKLEY,GA,11100,13023,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BRANTLEY,GA,11110,13025,11,,GEORGIA,15260,"Brunswick, GA",15260,"Brunswick, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BROOKS,GA,11120,13027,11,,GEORGIA,46660,"Valdosta, GA",46660,"Valdosta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BRYAN,GA,11130,13029,7520,,"SAVANNAH, GA",42340,"Savannah, GA",42340,"Savannah, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BULLOCH,GA,11140,13031,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BURKE,GA,11150,13033,11,,GEORGIA,12260,"Augusta-Richmond County, GA-SC",12260,"Augusta-Richmond County, GA-SC",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-BUTTS,GA,11160,13035,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,GA,11161,13037,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CAMDEN,GA,11170,13039,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CANDLER,GA,11180,13043,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,GA,11190,13045,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CATOOSA,GA,11200,13047,1560,,"CHATTANOOGA, TN-GA",16860,"Chattanooga, TN-GA",16860,"Chattanooga, TN-GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLTON,GA,11210,13049,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CHATHAM,GA,11220,13051,7520,,"SAVANNAH, GA",42340,"Savannah, GA",42340,"Savannah, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CHATTAHOOCHEE,GA,11230,13053,1800,,"COLUMBUS, GA-AL",17980,"Columbus, GA-AL",17980,"Columbus, GA-AL",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CHATTOOGA,GA,11240,13055,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,GA,11250,13057,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CLARKE,GA,11260,13059,500,,"ATHENS, GA",12020,"Athens-Clarke County, GA",12020,"Athens-Clarke County, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,GA,11270,13061,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CLAYTON,GA,11280,13063,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CLINCH,GA,11281,13065,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-COBB,GA,11290,13067,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-COFFEE,GA,11291,13069,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-COLQUITT,GA,11300,13071,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,GA,11310,13073,600,,"AUGUSTA-AIKEN, GA-SC",12260,"Augusta-Richmond County, GA-SC",12260,"Augusta-Richmond County, GA-SC",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-COOK,GA,11311,13075,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-COWETA,GA,11320,13077,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,GA,11330,13079,11,,GEORGIA,31420,"Macon, GA",31420,"Macon, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-CRISP,GA,11340,13081,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DADE,GA,11341,13083,1560,,"CHATTANOOGA, TN-GA",16860,"Chattanooga, TN-GA",16860,"Chattanooga, TN-GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DAWSON,GA,11350,13085,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DECATUR,GA,11360,13087,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DE KALB,GA,11370,13089,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DODGE,GA,11380,13091,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DOOLY,GA,11381,13093,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGHERTY,GA,11390,13095,120,,"ALBANY, GA",10500,"Albany, GA",10500,"Albany, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,GA,11400,13097,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-EARLY,GA,11410,13099,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-ECHOLS,GA,11420,13101,11,,GEORGIA,46660,"Valdosta, GA",46660,"Valdosta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-EFFINGHAM,GA,11421,13103,7520,,"SAVANNAH, GA",42340,"Savannah, GA",42340,"Savannah, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-ELBERT,GA,11430,13105,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-EMANUEL,GA,11440,13107,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-EVANS,GA,11441,13109,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-FANNIN,GA,11450,13111,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,GA,11451,13113,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-FLOYD,GA,11460,13115,11,,GEORGIA,40660,"Rome, GA",40660,"Rome, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-FORSYTH,GA,11461,13117,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,GA,11462,13119,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,GA,11470,13121,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-GILMER,GA,11471,13123,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-GLASCOCK,GA,11480,13125,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-GLYNN,GA,11490,13127,11,,GEORGIA,15260,"Brunswick, GA",15260,"Brunswick, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-GORDON,GA,11500,13129,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-GRADY,GA,11510,13131,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,GA,11520,13133,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-GWINNETT,GA,11530,13135,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HABERSHAM,GA,11540,13137,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HALL,GA,11550,13139,11,,GEORGIA,23580,"Gainesville, GA",23580,"Gainesville, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,GA,11560,13141,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HARALSON,GA,11570,13143,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HARRIS,GA,11580,13145,1800,,"COLUMBUS, GA-AL",17980,"Columbus, GA-AL",17980,"Columbus, GA-AL",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HART,GA,11581,13147,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HEARD,GA,11590,13149,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,GA,11591,13151,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HOUSTON,GA,11600,13153,4680,,"MACON, GA",47580,"Warner Robins, GA",47580,"Warner Robins, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-IRWIN,GA,11601,13155,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,GA,11610,13157,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,GA,11611,13159,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-JEFF DAVIS,GA,11612,13161,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,GA,11620,13163,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-JENKINS,GA,11630,13165,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,GA,11640,13167,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-JONES,GA,11650,13169,4680,,"MACON, GA",31420,"Macon, GA",31420,"Macon, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LAMAR,GA,11651,13171,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LANIER,GA,11652,13173,11,,GEORGIA,46660,"Valdosta, GA",46660,"Valdosta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LAURENS,GA,11660,13175,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,GA,11670,13177,120,,"ALBANY, GA",10500,"Albany, GA",10500,"Albany, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LIBERTY,GA,11680,13179,11,,GEORGIA,25980,"Hinesville-Fort Stewart, GA",25980,"Hinesville-Fort Stewart, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,GA,11690,13181,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LONG,GA,11691,13183,11,,GEORGIA,25980,"Hinesville-Fort Stewart, GA",25980,"Hinesville-Fort Stewart, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LOWNDES,GA,11700,13185,11,,GEORGIA,46660,"Valdosta, GA",46660,"Valdosta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-LUMPKIN,GA,11701,13187,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MC DUFFIE,GA,11702,13189,600,,"AUGUSTA-AIKEN, GA-SC",12260,"Augusta-Richmond County, GA-SC",12260,"Augusta-Richmond County, GA-SC",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MC INTOSH,GA,11703,13191,11,,GEORGIA,15260,"Brunswick, GA",15260,"Brunswick, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MACON,GA,11710,13193,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,GA,11720,13195,500,,"ATHENS, GA",12020,"Athens-Clarke County, GA",12020,"Athens-Clarke County, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,GA,11730,13197,11,,GEORGIA,17980,"Columbus, GA-AL",17980,"Columbus, GA-AL",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MERIWETHER,GA,11740,13199,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MILLER,GA,11741,13201,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MITCHELL,GA,11750,13205,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,GA,11760,13207,11,,GEORGIA,31420,"Macon, GA",31420,"Macon, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,GA,11770,13209,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,GA,11771,13211,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MURRAY,GA,11772,13213,11,,GEORGIA,19140,"Dalton, GA",19140,"Dalton, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-MUSCOGEE,GA,11780,13215,1800,,"COLUMBUS, GA-AL",17980,"Columbus, GA-AL",17980,"Columbus, GA-AL",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-NEWTON,GA,11790,13217,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-OCONEE,GA,11800,13219,500,,"ATHENS, GA",12020,"Athens-Clarke County, GA",12020,"Athens-Clarke County, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-OGLETHORPE,GA,11801,13221,11,,GEORGIA,12020,"Athens-Clarke County, GA",12020,"Athens-Clarke County, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-PAULDING,GA,11810,13223,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-PEACH,GA,11811,13225,4680,,"MACON, GA",,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-PICKENS,GA,11812,13227,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-PIERCE,GA,11820,13229,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,GA,11821,13231,11,,GEORGIA,12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,GA,11830,13233,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-PULASKI,GA,11831,13235,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,GA,11832,13237,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-QUITMAN,GA,11833,13239,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-RABUN,GA,11834,13241,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,GA,11835,13243,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-RICHMOND,GA,11840,13245,600,,"AUGUSTA-AIKEN, GA-SC",12260,"Augusta-Richmond County, GA-SC",12260,"Augusta-Richmond County, GA-SC",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKDALE,GA,11841,13247,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-SCHLEY,GA,11842,13249,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-SCREVEN,GA,11850,13251,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-SEMINOLE,GA,11851,13253,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-SPALDING,GA,11860,13255,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-STEPHENS,GA,11861,13257,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-STEWART,GA,11862,13259,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-SUMTER,GA,11870,13261,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TALBOT,GA,11880,13263,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TALIAFERRO,GA,11881,13265,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TATTNALL,GA,11882,13267,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TAYLOR,GA,11883,13269,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TELFAIR,GA,11884,13271,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TERRELL,GA,11885,13273,11,,GEORGIA,10500,"Albany, GA",10500,"Albany, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-THOMAS,GA,11890,13275,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TIFT,GA,11900,13277,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TOOMBS,GA,11901,13279,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TOWNS,GA,11902,13281,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TREUTLEN,GA,11903,13283,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TROUP,GA,11910,13285,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TURNER,GA,11911,13287,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-TWIGGS,GA,11912,13289,4680,,"MACON, GA",31420,"Macon, GA",31420,"Macon, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,GA,11913,13291,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-UPSON,GA,11920,13293,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WALKER,GA,11921,13295,1560,,"CHATTANOOGA, TN-GA",16860,"Chattanooga, TN-GA",16860,"Chattanooga, TN-GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WALTON,GA,11930,13297,520,L,"ATLANTA, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",12060,"Atlanta-Sandy Springs-Marietta, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WARE,GA,11940,13299,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,GA,11941,13301,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,GA,11950,13303,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,GA,11960,13305,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,GA,11961,13307,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WHEELER,GA,11962,13309,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WHITE,GA,11963,13311,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WHITFIELD,GA,11970,13313,11,,GEORGIA,19140,"Dalton, GA",19140,"Dalton, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WILCOX,GA,11971,13315,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WILKES,GA,11972,13317,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WILKINSON,GA,11973,13319,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-WORTH,GA,11980,13321,11,,GEORGIA,10500,"Albany, GA",10500,"Albany, GA",11,13,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,GA,11999,13990,11,,GEORGIA,,,,,11,13,2005,2011,2012,2013,2014,2015,2016,2017
-HAWAII,HI,12010,15001,12,,HAWAII,,,,,12,15,2005,2011,2012,2013,2014,2015,2016,2017
-HONOLULU,HI,12020,15003,3320,,"HONOLULU, HI",26180,"Honolulu, HI",26180,"Honolulu, HI",12,15,2005,2011,2012,2013,2014,2015,2016,2017
-KALAWAO,HI,12005,15005,12,,HAWAII,,,,,12,15,2005,2011,2012,2013,2014,2015,2016,2017
-KAUAI,HI,12040,15007,12,,HAWAII,,,,,12,15,2005,2011,2012,2013,2014,2015,2016,2017
-MAUI,HI,12050,15009,12,,HAWAII,,,,,12,15,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,HI,12999,15990,12,,HAWAII,,,,,12,15,2005,2011,2012,2013,2014,2015,2016,2017
-ADA,ID,13000,16001,1080,,"BOISE CITY, ID",14260,"Boise City-Nampa, ID",14260,"Boise City-Nampa, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,ID,13010,16003,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BANNOCK,ID,13020,16005,6340,,"POCATELLO, ID",38540,"Pocatello, ID",38540,"Pocatello, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BEAR LAKE,ID,13030,16007,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BENEWAH,ID,13040,16009,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BINGHAM,ID,13050,16011,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BLAINE,ID,13060,16013,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BOISE,ID,13070,16015,13,,IDAHO,14260,"Boise City-Nampa, ID",14260,"Boise City-Nampa, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BONNER,ID,13080,16017,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BONNEVILLE,ID,13090,16019,13,,IDAHO,26820,"Idaho Falls, ID",26820,"Idaho Falls, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BOUNDARY,ID,13100,16021,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-BUTTE,ID,13110,16023,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-CAMAS,ID,13120,16025,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-CANYON,ID,13130,16027,1080,,"BOISE CITY, ID",14260,"Boise City-Nampa, ID",14260,"Boise City-Nampa, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-CARIBOU,ID,13140,16029,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-CASSIA,ID,13150,16031,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,ID,13160,16033,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-CLEARWATER,ID,13170,16035,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-CUSTER,ID,13180,16037,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-ELMORE,ID,13190,16039,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,ID,13200,16041,13,,IDAHO,30860,"Logan, UT-ID",30860,"Logan, UT-ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-FREMONT,ID,13210,16043,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-GEM,ID,13220,16045,13,,IDAHO,14260,"Boise City-Nampa, ID",14260,"Boise City-Nampa, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-GOODING,ID,13230,16047,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-IDAHO,ID,13240,16049,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,ID,13250,16051,13,,IDAHO,26820,"Idaho Falls, ID",26820,"Idaho Falls, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-JEROME,ID,13260,16053,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-KOOTENAI,ID,13270,16055,13,,IDAHO,17660,"Coeur d'Alene, ID",17660,"Coeur d'Alene, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-LATAH,ID,13280,16057,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-LEMHI,ID,13290,16059,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS,ID,13300,16061,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,ID,13310,16063,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,ID,13320,16065,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-MINIDOKA,ID,13330,16067,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-NEZ PERCE,ID,13340,16069,13,,IDAHO,30300,"Lewiston, ID-WA",30300,"Lewiston, ID-WA",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-ONEIDA,ID,13350,16071,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-OWYHEE,ID,13360,16073,13,,IDAHO,14260,"Boise City-Nampa, ID",14260,"Boise City-Nampa, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-PAYETTE,ID,13370,16075,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-POWER,ID,13380,16077,13,,IDAHO,38540,"Pocatello, ID",38540,"Pocatello, ID",13,16,2005,2011,2012,2013,2014,2015,2016,2017
-SHOSHONE,ID,13390,16079,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-TETON,ID,13400,16081,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-TWIN FALLS,ID,13410,16083,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-VALLEY,ID,13420,16085,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,ID,13430,16087,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,ID,13999,16990,13,,IDAHO,,,,,13,16,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,IL,14000,17001,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-ALEXANDER,IL,14010,17003,14,,ILLINOIS,,,16020,"Cape Girardeau-Jackson, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-BOND,IL,14020,17005,14,,ILLINOIS,41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,IL,14030,17007,6880,,"ROCKFORD, IL",40420,"Rockford, IL",40420,"Rockford, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,IL,14040,17009,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-BUREAU,IL,14050,17011,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,IL,14060,17013,14,,ILLINOIS,41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,IL,14070,17015,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,IL,14080,17017,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CHAMPAIGN,IL,14090,17019,1400,,"CHAMPAIGN-URBANA, IL",16580,"Champaign-Urbana, IL",16580,"Champaign-Urbana, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CHRISTIAN,IL,14100,17021,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,IL,14110,17023,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,IL,14120,17025,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,IL,14130,17027,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-COLES,IL,14140,17029,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-COOK,IL,14141,17031,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,IL,14150,17033,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,IL,14160,17035,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-DE KALB,IL,14170,17037,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-DE WITT,IL,14180,17039,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,IL,14190,17041,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-DU PAGE,IL,14250,17043,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-EDGAR,IL,14310,17045,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-EDWARDS,IL,14320,17047,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-EFFINGHAM,IL,14330,17049,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,IL,14340,17051,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-FORD,IL,14350,17053,14,,ILLINOIS,16580,"Champaign-Urbana, IL",16580,"Champaign-Urbana, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,IL,14360,17055,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,IL,14370,17057,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-GALLATIN,IL,14380,17059,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,IL,14390,17061,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-GRUNDY,IL,14400,17063,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,IL,14410,17065,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,IL,14420,17067,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-HARDIN,IL,14421,17069,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-HENDERSON,IL,14440,17071,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,IL,14450,17073,1960,,"DAVENPORT-ROCK ISLAND-MOLINE, IA-IL",19340,"Davenport-Moline-Rock Island, IA-IL",19340,"Davenport-Moline-Rock Island, IA-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-IROQUOIS,IL,14460,17075,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,IL,14470,17077,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,IL,14480,17079,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,IL,14490,17081,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-JERSEY,IL,14500,17083,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-JO DAVIESS,IL,14510,17085,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,IL,14520,17087,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-KANE,IL,14530,17089,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-KANKAKEE,IL,14540,17091,3740,,"KANKAKEE, IL",28100,"Kankakee-Bradley, IL",28100,"Kankakee-Bradley, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-KENDALL,IL,14550,17093,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,IL,14560,17095,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,IL,14570,17097,1600,L,"CHICAGO, IL",29404,"Lake County-Kenosha County, IL-WI",29404,"Lake County-Kenosha County, IL-WI",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-LA SALLE,IL,14580,17099,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,IL,14590,17101,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,IL,14600,17103,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-LIVINGSTON,IL,14610,17105,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,IL,14620,17107,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MC DONOUGH,IL,14630,17109,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MC HENRY,IL,14640,17111,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MC LEAN,IL,14650,17113,1040,,"BLOOMINGTON-NORMAL, IL",14060,"Bloomington-Normal, IL",14060,"Bloomington-Normal, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MACON,IL,14660,17115,2040,,"DECATUR, IL",19500,"Decatur, IL",19500,"Decatur, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MACOUPIN,IL,14670,17117,14,,ILLINOIS,41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,IL,14680,17119,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,IL,14690,17121,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,IL,14700,17123,14,,ILLINOIS,37900,"Peoria, IL",37900,"Peoria, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MASON,IL,14710,17125,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MASSAC,IL,14720,17127,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MENARD,IL,14730,17129,7880,,"SPRINGFIELD, IL",44100,"Springfield, IL",44100,"Springfield, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,IL,14740,17131,14,,ILLINOIS,19340,"Davenport-Moline-Rock Island, IA-IL",19340,"Davenport-Moline-Rock Island, IA-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,IL,14750,17133,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,IL,14760,17135,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,IL,14770,17137,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-MOULTRIE,IL,14780,17139,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-OGLE,IL,14790,17141,6880,,"ROCKFORD, IL",,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-PEORIA,IL,14800,17143,6120,,"PEORIA-PEKIN, IL",37900,"Peoria, IL",37900,"Peoria, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,IL,14810,17145,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-PIATT,IL,14820,17147,14,,ILLINOIS,16580,"Champaign-Urbana, IL",16580,"Champaign-Urbana, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,IL,14830,17149,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-POPE,IL,14831,17151,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-PULASKI,IL,14850,17153,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,IL,14860,17155,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,IL,14870,17157,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-RICHLAND,IL,14880,17159,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-ROCK ISLAND,IL,14890,17161,1960,,"DAVENPORT-ROCK ISLAND-MOLINE, IA-IL",19340,"Davenport-Moline-Rock Island, IA-IL",19340,"Davenport-Moline-Rock Island, IA-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-ST. CLAIR,IL,14900,17163,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-SALINE,IL,14910,17165,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-SANGAMON,IL,14920,17167,7880,,"SPRINGFIELD, IL",44100,"Springfield, IL",44100,"Springfield, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-SCHUYLER,IL,14921,17169,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,IL,14940,17171,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,IL,14950,17173,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-STARK,IL,14960,17175,14,,ILLINOIS,37900,"Peoria, IL",37900,"Peoria, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-STEPHENSON,IL,14970,17177,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-TAZEWELL,IL,14980,17179,6120,,"PEORIA-PEKIN, IL",37900,"Peoria, IL",37900,"Peoria, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,IL,14981,17181,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-VERMILION,IL,14982,17183,14,,ILLINOIS,19180,"Danville, IL",19180,"Danville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WABASH,IL,14983,17185,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,IL,14984,17187,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,IL,14985,17189,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,IL,14986,17191,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WHITE,IL,14987,17193,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WHITESIDE,IL,14988,17195,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WILL,IL,14989,17197,1600,L,"CHICAGO, IL",16974,"Chicago-Naperville-Joliet, IL",16974,"Chicago-Joliet-Naperville, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WILLIAMSON,IL,14990,17199,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WINNEBAGO,IL,14991,17201,6880,,"ROCKFORD, IL",40420,"Rockford, IL",40420,"Rockford, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-WOODFORD,IL,14992,17203,6120,,"PEORIA-PEKIN, IL",37900,"Peoria, IL",37900,"Peoria, IL",14,17,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,IL,14999,17990,14,,ILLINOIS,,,,,14,17,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,IN,15000,18001,2760,,"FORT WAYNE, IN",,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEN,IN,15010,18003,2760,,"FORT WAYNE, IN",23060,"Fort Wayne, IN",23060,"Fort Wayne, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-BARTHOLOMEW,IN,15020,18005,15,,INDIANA,18020,"Columbus, IN",18020,"Columbus, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,IN,15030,18007,15,,INDIANA,29140,"Lafayette, IN",29140,"Lafayette, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-BLACKFORD,IN,15040,18009,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,IN,15050,18011,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,IN,15060,18013,15,,INDIANA,26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,IN,15070,18015,15,,INDIANA,29140,"Lafayette, IN",29140,"Lafayette, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,IN,15080,18017,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,IN,15090,18019,4520,L,"LOUISVILLE, KY-IN",31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,IN,15100,18021,8320,,"TERRE HAUTE, IN",45460,"Terre Haute, IN",45460,"Terre Haute, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,IN,15110,18023,3920,,"LAFAYETTE, IN",,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,IN,15120,18025,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIESS,IN,15130,18027,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-DEARBORN,IN,15140,18029,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-DECATUR,IN,15150,18031,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-DE KALB,IN,15160,18033,2760,,"FORT WAYNE, IN",,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-DELAWARE,IN,15170,18035,5280,,"MUNCIE, IN",34620,"Muncie, IN",34620,"Muncie, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-DUBOIS,IN,15180,18037,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-ELKHART,IN,15190,18039,2330,,"ELKHART-GOSHEN, IN",21140,"Elkhart-Goshen, IN",21140,"Elkhart-Goshen, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,IN,15200,18041,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-FLOYD,IN,15210,18043,4520,L,"LOUISVILLE, KY-IN",31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-FOUNTAIN,IN,15220,18045,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,IN,15230,18047,15,,INDIANA,17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,IN,15240,18049,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-GIBSON,IN,15250,18051,15,,INDIANA,21780,"Evansville, IN-KY",21780,"Evansville, IN-KY",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,IN,15260,18053,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,IN,15270,18055,15,,INDIANA,14020,"Bloomington, IN",14020,"Bloomington, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,IN,15280,18057,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,IN,15290,18059,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,IN,15300,18061,4520,L,"LOUISVILLE, KY-IN",31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-HENDRICKS,IN,15310,18063,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,IN,15320,18065,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-HOWARD,IN,15330,18067,3850,,"KOKOMO, IN",29020,"Kokomo, IN",29020,"Kokomo, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-HUNTINGTON,IN,15340,18069,2760,,"FORT WAYNE, IN",,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,IN,15350,18071,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,IN,15360,18073,15,,INDIANA,23844,"Gary, IN ivision",23844,"Gary, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-JAY,IN,15370,18075,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,IN,15380,18077,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-JENNINGS,IN,15390,18079,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,IN,15400,18081,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,IN,15410,18083,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-KOSCIUSKO,IN,15420,18085,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-LAGRANGE,IN,15430,18087,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,IN,15440,18089,2960,,"GARY, IN",23844,"Gary, IN ivision",23844,"Gary, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-LA PORTE,IN,15450,18091,15,,INDIANA,33140,"Michigan City-La Porte, IN",33140,"Michigan City-La Porte, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,IN,15460,18093,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,IN,15470,18095,3480,L,"INDIANAPOLIS, IN",11300,"Anderson, IN",11300,"Anderson, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,IN,15480,18097,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,IN,15490,18099,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MARTIN,IN,15500,18101,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MIAMI,IN,15510,18103,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,IN,15520,18105,1020,,"BLOOMINGTON, IN",14020,"Bloomington, IN",14020,"Bloomington, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,IN,15530,18107,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,IN,15540,18109,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-NEWTON,IN,15550,18111,15,,INDIANA,23844,"Gary, IN ivision",23844,"Gary, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-NOBLE,IN,15560,18113,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-OHIO,IN,15570,18115,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,IN,15580,18117,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-OWEN,IN,15590,18119,15,,INDIANA,14020,"Bloomington, IN",14020,"Bloomington, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-PARKE,IN,15600,18121,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,IN,15610,18123,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,IN,15620,18125,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-PORTER,IN,15630,18127,2960,,"GARY, IN",23844,"Gary, IN ivision",23844,"Gary, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-POSEY,IN,15640,18129,2440,,"EVANSVILLE-HENDERSON, IN-KY",21780,"Evansville, IN-KY",21780,"Evansville, IN-KY",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-PULASKI,IN,15650,18131,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,IN,15660,18133,15,,INDIANA,26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,IN,15670,18135,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-RIPLEY,IN,15680,18137,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-RUSH,IN,15690,18139,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-ST. JOSEPH,IN,15700,18141,7800,,"SOUTH BEND, IN",43780,"South Bend-Mishawaka, IN-MI",43780,"South Bend-Mishawaka, IN-MI",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,IN,15710,18143,4520,L,"LOUISVILLE, KY-IN",,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,IN,15720,18145,3480,L,"INDIANAPOLIS, IN",26900,"Indianapolis, IN",26900,"Indianapolis-Carmel, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-SPENCER,IN,15730,18147,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-STARKE,IN,15740,18149,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-STEUBEN,IN,15750,18151,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-SULLIVAN,IN,15760,18153,15,,INDIANA,45460,"Terre Haute, IN",45460,"Terre Haute, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-SWITZERLAND,IN,15770,18155,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-TIPPECANOE,IN,15780,18157,3920,,"LAFAYETTE, IN",29140,"Lafayette, IN",29140,"Lafayette, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-TIPTON,IN,15790,18159,3850,,"KOKOMO, IN",29020,"Kokomo, IN",29020,"Kokomo, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,IN,15800,18161,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-VANDERBURGH,IN,15810,18163,2440,,"EVANSVILLE-HENDERSON, IN-KY",21780,"Evansville, IN-KY",21780,"Evansville, IN-KY",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-VERMILLION,IN,15820,18165,8320,,"TERRE HAUTE, IN",45460,"Terre Haute, IN",45460,"Terre Haute, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-VIGO,IN,15830,18167,8320,,"TERRE HAUTE, IN",45460,"Terre Haute, IN",45460,"Terre Haute, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WABASH,IN,15840,18169,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,IN,15850,18171,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WARRICK,IN,15860,18173,2440,,"EVANSVILLE-HENDERSON, IN-KY",21780,"Evansville, IN-KY",21780,"Evansville, IN-KY",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,IN,15870,18175,15,,INDIANA,31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,IN,15880,18177,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WELLS,IN,15890,18179,2760,,"FORT WAYNE, IN",23060,"Fort Wayne, IN",23060,"Fort Wayne, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WHITE,IN,15900,18181,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-WHITLEY,IN,15910,18183,2760,,"FORT WAYNE, IN",23060,"Fort Wayne, IN",23060,"Fort Wayne, IN",15,18,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,IN,15999,18990,15,,INDIANA,,,,,15,18,2005,2011,2012,2013,2014,2015,2016,2017
-ADAIR,IA,16000,19001,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,IA,16010,19003,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-ALLAMAKEE,IA,16020,19005,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-APPANOOSE,IA,16030,19007,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-AUDUBON,IA,16040,19009,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,IA,16050,19011,16,,IOWA,16300,"Cedar Rapids, IA",16300,"Cedar Rapids, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-BLACK HAWK,IA,16060,19013,8920,,"WATERLOO-CEDAR FALLS, IA",47940,"Waterloo-Cedar Falls, IA",47940,"Waterloo-Cedar Falls, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,IA,16070,19015,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-BREMER,IA,16080,19017,16,,IOWA,47940,"Waterloo-Cedar Falls, IA",47940,"Waterloo-Cedar Falls, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-BUCHANAN,IA,16090,19019,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-BUENA VISTA,IA,16100,19021,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,IA,16110,19023,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,IA,16120,19025,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,IA,16130,19027,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,IA,16140,19029,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CEDAR,IA,16150,19031,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CERRO GORDO,IA,16160,19033,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,IA,16170,19035,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CHICKASAW,IA,16180,19037,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CLARKE,IA,16190,19039,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,IA,16200,19041,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CLAYTON,IA,16210,19043,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,IA,16220,19045,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,IA,16230,19047,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-DALLAS,IA,16240,19049,2120,,"DES MOINES, IA",19780,"Des Moines, IA",19780,"Des Moines-West Des Moines, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIS,IA,16250,19051,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-DECATUR,IA,16260,19053,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-DELAWARE,IA,16270,19055,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-DES MOINES,IA,16280,19057,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-DICKINSON,IA,16290,19059,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-DUBUQUE,IA,16300,19061,2200,,"DUBUQUE, IA",20220,"Dubuque, IA",20220,"Dubuque, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-EMMET,IA,16310,19063,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,IA,16320,19065,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-FLOYD,IA,16330,19067,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,IA,16340,19069,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-FREMONT,IA,16350,19071,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,IA,16360,19073,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-GRUNDY,IA,16370,19075,16,,IOWA,47940,"Waterloo-Cedar Falls, IA",47940,"Waterloo-Cedar Falls, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-GUTHRIE,IA,16380,19077,16,,IOWA,19780,"Des Moines, IA",19780,"Des Moines-West Des Moines, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,IA,16390,19079,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,IA,16400,19081,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-HARDIN,IA,16410,19083,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,IA,16420,19085,16,,IOWA,36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,IA,16430,19087,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-HOWARD,IA,16440,19089,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-HUMBOLDT,IA,16450,19091,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-IDA,IA,16460,19093,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-IOWA,IA,16470,19095,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,IA,16480,19097,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,IA,16490,19099,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,IA,16500,19101,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,IA,16510,19103,3500,,"IOWA CITY, IA",26980,"Iowa City, IA",26980,"Iowa City, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-JONES,IA,16520,19105,16,,IOWA,16300,"Cedar Rapids, IA",16300,"Cedar Rapids, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-KEOKUK,IA,16530,19107,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-KOSSUTH,IA,16540,19109,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,IA,16550,19111,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-LINN,IA,16560,19113,1360,,"CEDAR RAPIDS, IA",16300,"Cedar Rapids, IA",16300,"Cedar Rapids, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-LOUISA,IA,16570,19115,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-LUCAS,IA,16580,19117,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-LYON,IA,16590,19119,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,IA,16600,19121,16,,IOWA,19780,"Des Moines, IA",19780,"Des Moines-West Des Moines, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MAHASKA,IA,16610,19123,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,IA,16620,19125,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,IA,16630,19127,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MILLS,IA,16640,19129,16,,IOWA,36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MITCHELL,IA,16650,19131,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MONONA,IA,16660,19133,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,IA,16670,19135,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,IA,16680,19137,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-MUSCATINE,IA,16690,19139,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-OBRIEN,IA,16700,19141,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-OSCEOLA,IA,16710,19143,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-PAGE,IA,16720,19145,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-PALO ALTO,IA,16730,19147,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-PLYMOUTH,IA,16740,19149,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-POCAHONTAS,IA,16750,19151,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,IA,16760,19153,2120,,"DES MOINES, IA",19780,"Des Moines, IA",19780,"Des Moines-West Des Moines, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-POTTAWATTAMIE,IA,16770,19155,5920,,"OMAHA, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-POWESHIEK,IA,16780,19157,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-RINGGOLD,IA,16790,19159,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-SAC,IA,16800,19161,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,IA,16810,19163,1960,,"DAVENPORT-ROCK ISLAND-MOLINE, IA-IL",19340,"Davenport-Moline-Rock Island, IA-IL",19340,"Davenport-Moline-Rock Island, IA-IL",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,IA,16820,19165,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-SIOUX,IA,16830,19167,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-STORY,IA,16840,19169,16,,IOWA,11180,"Ames, IA",11180,"Ames, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-TAMA,IA,16850,19171,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-TAYLOR,IA,16860,19173,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,IA,16870,19175,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-VAN BUREN,IA,16880,19177,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WAPELLO,IA,16890,19179,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,IA,16900,19181,2120,,"DES MOINES, IA",19780,"Des Moines, IA",19780,"Des Moines-West Des Moines, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,IA,16910,19183,16,,IOWA,26980,"Iowa City, IA",26980,"Iowa City, IA",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,IA,16920,19185,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,IA,16930,19187,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WINNEBAGO,IA,16940,19189,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WINNESHIEK,IA,16950,19191,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WOODBURY,IA,16960,19193,7720,,"SIOUX CITY, IA-NE",43580,"Sioux City, IA-NE-SD",43580,"Sioux City, IA-NE-SD",16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WORTH,IA,16970,19195,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-WRIGHT,IA,16980,19197,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,IA,16999,19990,16,,IOWA,,,,,16,19,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEN,KS,17000,20001,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-ANDERSON,KS,17010,20003,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-ATCHISON,KS,17020,20005,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-BARBER,KS,17030,20007,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-BARTON,KS,17040,20009,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-BOURBON,KS,17050,20011,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,KS,17060,20013,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,KS,17070,20015,9040,,"WICHITA, KS",48620,"Wichita, KS",48620,"Wichita, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CHASE,KS,17080,20017,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CHAUTAUQUA,KS,17090,20019,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,KS,17100,20021,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CHEYENNE,KS,17110,20023,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,KS,17120,20025,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,KS,17130,20027,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CLOUD,KS,17140,20029,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-COFFEY,KS,17150,20031,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-COMANCHE,KS,17160,20033,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-COWLEY,KS,17170,20035,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,KS,17180,20037,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-DECATUR,KS,17190,20039,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-DICKINSON,KS,17200,20041,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-DONIPHAN,KS,17210,20043,17,,KANSAS,41140,"St. Joseph, MO-KS",41140,"St. Joseph, MO-KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,KS,17220,20045,4150,,"LAWRENCE, KS",29940,"Lawrence, KS",29940,"Lawrence, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-EDWARDS,KS,17230,20047,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-ELK,KS,17240,20049,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-ELLIS,KS,17250,20051,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-ELLSWORTH,KS,17260,20053,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-FINNEY,KS,17270,20055,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-FORD,KS,17280,20057,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,KS,17290,20059,17,,KANSAS,28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-GEARY,KS,17300,20061,17,,KANSAS,,,31740,"Manhattan, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-GOVE,KS,17310,20063,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-GRAHAM,KS,17320,20065,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,KS,17330,20067,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-GRAY,KS,17340,20069,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-GREELEY,KS,17350,20071,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-GREENWOOD,KS,17360,20073,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,KS,17370,20075,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-HARPER,KS,17380,20077,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-HARVEY,KS,17390,20079,9040,,"WICHITA, KS",48620,"Wichita, KS",48620,"Wichita, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-HASKELL,KS,17391,20081,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-HODGEMAN,KS,17410,20083,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,KS,17420,20085,17,,KANSAS,45820,"Topeka, KS",45820,"Topeka, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,KS,17430,20087,17,,KANSAS,45820,"Topeka, KS",45820,"Topeka, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-JEWELL,KS,17440,20089,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,KS,17450,20091,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-KEARNY,KS,17451,20093,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-KINGMAN,KS,17470,20095,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-KIOWA,KS,17480,20097,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-LABETTE,KS,17490,20099,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-LANE,KS,17500,20101,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-LEAVENWORTH,KS,17510,20103,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,KS,17520,20105,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-LINN,KS,17530,20107,17,,KANSAS,28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,KS,17540,20109,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-LYON,KS,17550,20111,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MCPHERSON,KS,17560,20113,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,KS,17570,20115,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,KS,17580,20117,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MEADE,KS,17590,20119,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MIAMI,KS,17600,20121,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MITCHELL,KS,17610,20123,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,KS,17620,20125,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MORRIS,KS,17630,20127,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-MORTON,KS,17640,20129,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-NEMAHA,KS,17650,20131,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-NEOSHO,KS,17660,20133,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-NESS,KS,17670,20135,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-NORTON,KS,17680,20137,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-OSAGE,KS,17690,20139,17,,KANSAS,45820,"Topeka, KS",45820,"Topeka, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-OSBORNE,KS,17700,20141,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-OTTAWA,KS,17710,20143,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-PAWNEE,KS,17720,20145,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-PHILLIPS,KS,17730,20147,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-POTTAWATOMIE,KS,17740,20149,17,,KANSAS,,,31740,"Manhattan, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-PRATT,KS,17750,20151,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-RAWLINS,KS,17760,20153,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-RENO,KS,17770,20155,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-REPUBLIC,KS,17780,20157,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-RICE,KS,17790,20159,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-RILEY,KS,17800,20161,17,,KANSAS,,,31740,"Manhattan, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-ROOKS,KS,17810,20163,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-RUSH,KS,17820,20165,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-RUSSELL,KS,17830,20167,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SALINE,KS,17840,20169,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,KS,17841,20171,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SEDGWICK,KS,17860,20173,9040,,"WICHITA, KS",48620,"Wichita, KS",48620,"Wichita, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SEWARD,KS,17870,20175,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SHAWNEE,KS,17880,20177,8440,,"TOPEKA, KS",45820,"Topeka, KS",45820,"Topeka, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SHERIDAN,KS,17890,20179,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SHERMAN,KS,17900,20181,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SMITH,KS,17910,20183,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-STAFFORD,KS,17920,20185,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-STANTON,KS,17921,20187,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-STEVENS,KS,17940,20189,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-SUMNER,KS,17950,20191,17,,KANSAS,48620,"Wichita, KS",48620,"Wichita, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-THOMAS,KS,17960,20193,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-TREGO,KS,17970,20195,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-WABAUNSEE,KS,17980,20197,17,,KANSAS,45820,"Topeka, KS",45820,"Topeka, KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-WALLACE,KS,17981,20199,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,KS,17982,20201,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-WICHITA,KS,17983,20203,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-WILSON,KS,17984,20205,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-WOODSON,KS,17985,20207,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-WYANDOTTE,KS,17986,20209,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",17,20,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,KS,17999,20990,17,,KANSAS,,,,,17,20,2005,2011,2012,2013,2014,2015,2016,2017
-ADAIR,KY,18000,21001,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEN,KY,18010,21003,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ANDERSON,KY,18020,21005,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BALLARD,KY,18030,21007,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BARREN,KY,18040,21009,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BATH,KY,18050,21011,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BELL,KY,18060,21013,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,KY,18070,21015,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BOURBON,KY,18080,21017,4280,,"LEXINGTON, KY",30460,"Lexington-Fayette, KY",30460,"Lexington-Fayette, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BOYD,KY,18090,21019,3400,,"HUNTINGTON-ASHLAND, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BOYLE,KY,18100,21021,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BRACKEN,KY,18110,21023,18,,KENTUCKY,17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BREATHITT,KY,18120,21025,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BRECKINRIDGE,KY,18130,21027,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BULLITT,KY,18140,21029,4520,L,"LOUISVILLE, KY-IN",31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,KY,18150,21031,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CALDWELL,KY,18160,21033,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CALLOWAY,KY,18170,21035,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CAMPBELL,KY,18180,21037,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CARLISLE,KY,18190,21039,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,KY,18191,21041,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CARTER,KY,18210,21043,3400,,"HUNTINGTON-ASHLAND, WV-KY-OH",,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CASEY,KY,18220,21045,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CHRISTIAN,KY,18230,21047,1660,,"CLARKSVILLE-HOPKINSVILLE, TN-KY",17300,"Clarksville, TN-KY",17300,"Clarksville, TN-KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,KY,18240,21049,4280,,"LEXINGTON, KY",30460,"Lexington-Fayette, KY",30460,"Lexington-Fayette, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,KY,18250,21051,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,KY,18260,21053,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CRITTENDEN,KY,18270,21055,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,KY,18271,21057,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIESS,KY,18290,21059,5990,,"OWENSBORO, KY",36980,"Owensboro, KY",36980,"Owensboro, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-EDMONSON,KY,18291,21061,18,,KENTUCKY,14540,"Bowling Green, KY",14540,"Bowling Green, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ELLIOTT,KY,18310,21063,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ESTILL,KY,18320,21065,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,KY,18330,21067,4280,,"LEXINGTON, KY",30460,"Lexington-Fayette, KY",30460,"Lexington-Fayette, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-FLEMING,KY,18340,21069,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-FLOYD,KY,18350,21071,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,KY,18360,21073,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,KY,18361,21075,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-GALLATIN,KY,18362,21077,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-GARRARD,KY,18390,21079,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,KY,18400,21081,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-GRAVES,KY,18410,21083,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-GRAYSON,KY,18420,21085,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-GREEN,KY,18421,21087,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-GREENUP,KY,18440,21089,3400,,"HUNTINGTON-ASHLAND, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,KY,18450,21091,18,,KENTUCKY,36980,"Owensboro, KY",36980,"Owensboro, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HARDIN,KY,18460,21093,18,,KENTUCKY,21060,"Elizabethtown, KY",21060,"Elizabethtown, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HARLAN,KY,18470,21095,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,KY,18480,21097,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HART,KY,18490,21099,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HENDERSON,KY,18500,21101,2440,,"EVANSVILLE-HENDERSON, IN-KY",21780,"Evansville, IN-KY",21780,"Evansville, IN-KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,KY,18510,21103,18,,KENTUCKY,31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HICKMAN,KY,18511,21105,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-HOPKINS,KY,18530,21107,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,KY,18540,21109,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,KY,18550,21111,4520,L,"LOUISVILLE, KY-IN",31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-JESSAMINE,KY,18560,21113,4280,,"LEXINGTON, KY",30460,"Lexington-Fayette, KY",30460,"Lexington-Fayette, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,KY,18570,21115,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-KENTON,KY,18580,21117,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-KNOTT,KY,18590,21119,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,KY,18600,21121,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LARUE,KY,18610,21123,18,,KENTUCKY,21060,"Elizabethtown, KY",21060,"Elizabethtown, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LAUREL,KY,18620,21125,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,KY,18630,21127,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,KY,18640,21129,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LESLIE,KY,18650,21131,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LETCHER,KY,18660,21133,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS,KY,18670,21135,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,KY,18680,21137,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LIVINGSTON,KY,18690,21139,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,KY,18700,21141,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-LYON,KY,18710,21143,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MC CRACKEN,KY,18720,21145,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MC CREARY,KY,18730,21147,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MC LEAN,KY,18740,21149,18,,KENTUCKY,36980,"Owensboro, KY",36980,"Owensboro, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,KY,18750,21151,4280,,"LEXINGTON, KY",,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MAGOFFIN,KY,18760,21153,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,KY,18770,21155,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,KY,18780,21157,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MARTIN,KY,18790,21159,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MASON,KY,18800,21161,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MEADE,KY,18801,21163,18,,KENTUCKY,31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MENIFEE,KY,18802,21165,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,KY,18830,21167,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-METCALFE,KY,18831,21169,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,KY,18850,21171,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,KY,18860,21173,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,KY,18861,21175,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-MUHLENBERG,KY,18880,21177,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-NELSON,KY,18890,21179,18,,KENTUCKY,31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-NICHOLAS,KY,18900,21181,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-OHIO,KY,18910,21183,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-OLDHAM,KY,18920,21185,4520,L,"LOUISVILLE, KY-IN",31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-OWEN,KY,18930,21187,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-OWSLEY,KY,18931,21189,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-PENDLETON,KY,18932,21191,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,KY,18960,21193,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,KY,18970,21195,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-POWELL,KY,18971,21197,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-PULASKI,KY,18972,21199,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ROBERTSON,KY,18973,21201,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKCASTLE,KY,18974,21203,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ROWAN,KY,18975,21205,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-RUSSELL,KY,18976,21207,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,KY,18977,21209,4280,,"LEXINGTON, KY",30460,"Lexington-Fayette, KY",30460,"Lexington-Fayette, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,KY,18978,21211,18,,KENTUCKY,31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-SIMPSON,KY,18979,21213,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-SPENCER,KY,18980,21215,18,,KENTUCKY,31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-TAYLOR,KY,18981,21217,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-TODD,KY,18982,21219,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-TRIGG,KY,18983,21221,18,,KENTUCKY,17300,"Clarksville, TN-KY",17300,"Clarksville, TN-KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-TRIMBLE,KY,18984,21223,18,,KENTUCKY,31140,"Louisville, KY-IN",31140,"Louisville-Jefferson County, KY-IN",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,KY,18985,21225,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,KY,18986,21227,18,,KENTUCKY,14540,"Bowling Green, KY",14540,"Bowling Green, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,KY,18987,21229,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,KY,18988,21231,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,KY,18989,21233,18,,KENTUCKY,21780,"Evansville, IN-KY",21780,"Evansville, IN-KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-WHITLEY,KY,18990,21235,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-WOLFE,KY,18991,21237,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-WOODFORD,KY,18992,21239,4280,,"LEXINGTON, KY",30460,"Lexington-Fayette, KY",30460,"Lexington-Fayette, KY",18,21,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,KY,18999,21990,18,,KENTUCKY,,,,,18,21,2005,2011,2012,2013,2014,2015,2016,2017
-ACADIA,LA,19000,22001,3880,,"LAFAYETTE, LA",,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEN,LA,19010,22003,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ASCENSION,LA,19020,22005,760,,"BATON ROUGE, LA",12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ASSUMPTION,LA,19030,22007,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-AVOYELLES,LA,19040,22009,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-BEAUREGARD,LA,19050,22011,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-BIENVILLE,LA,19060,22013,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-BOSSIER,LA,19070,22015,7680,,"SHREVEPORT-BOSSIER CITY, LA",43340,"Shreveport-Bossier City, LA",43340,"Shreveport-Bossier City, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-CADDO,LA,19080,22017,7680,,"SHREVEPORT-BOSSIER CITY, LA",43340,"Shreveport-Bossier City, LA",43340,"Shreveport-Bossier City, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-CALCASIEU,LA,19090,22019,3960,,"LAKE CHARLES, LA",29340,"Lake Charles, LA",29340,"Lake Charles, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-CALDWELL,LA,19100,22021,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-CAMERON,LA,19110,22023,19,,LOUISIANA,29340,"Lake Charles, LA",29340,"Lake Charles, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-CATAHOULA,LA,19120,22025,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-CLAIBORNE,LA,19130,22027,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-CONCORDIA,LA,19140,22029,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-DE SOTO,LA,19150,22031,19,,LOUISIANA,43340,"Shreveport-Bossier City, LA",43340,"Shreveport-Bossier City, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-E. BATON ROUGE,LA,19160,22033,760,,"BATON ROUGE, LA",12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-EAST CARROLL,LA,19170,22035,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-EAST FELICIANA,LA,19180,22037,19,,LOUISIANA,12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-EVANGELINE,LA,19190,22039,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,LA,19200,22041,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,LA,19210,22043,19,,LOUISIANA,10780,"Alexandria, LA",10780,"Alexandria, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-IBERIA,LA,19220,22045,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-IBERVILLE,LA,19230,22047,19,,LOUISIANA,12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,LA,19240,22049,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,LA,19250,22051,5560,L,"NEW ORLEANS, LA",35380,"New Orleans-Metairie-Kenner, LA",35380,"New Orleans-Metairie-Kenner, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFRSON DAVIS,LA,19260,22053,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-LAFAYETTE,LA,19270,22055,3880,,"LAFAYETTE, LA",29180,"Lafayette, LA",29180,"Lafayette, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-LAFOURCHE,LA,19280,22057,3350,,"HOUMA, LA",26380,"Houma-Bayou Cane-Thibodaux, LA",26380,"Houma-Bayou Cane-Thibodaux, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-LA SALLE,LA,19290,22059,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,LA,19300,22061,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-LIVINGSTON,LA,19310,22063,760,,"BATON ROUGE, LA",12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,LA,19320,22065,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-MOREHOUSE,LA,19330,22067,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-NATCHITOCHES,LA,19340,22069,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ORLEANS,LA,19350,22071,5560,L,"NEW ORLEANS, LA",35380,"New Orleans-Metairie-Kenner, LA",35380,"New Orleans-Metairie-Kenner, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-OUACHITA,LA,19360,22073,5200,,"MONROE, LA",33740,"Monroe, LA",33740,"Monroe, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-PLAQUEMINES,LA,19370,22075,5560,L,"NEW ORLEANS, LA",35380,"New Orleans-Metairie-Kenner, LA",35380,"New Orleans-Metairie-Kenner, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-POINTE COUPEE,LA,19380,22077,19,,LOUISIANA,12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-RAPIDES,LA,19390,22079,220,,"ALEXANDRIA, LA",10780,"Alexandria, LA",10780,"Alexandria, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-RED RIVER,LA,19400,22081,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-RICHLAND,LA,19410,22083,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-SABINE,LA,19420,22085,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. BERNARD,LA,19430,22087,5560,L,"NEW ORLEANS, LA",35380,"New Orleans-Metairie-Kenner, LA",35380,"New Orleans-Metairie-Kenner, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. CHARLES,LA,19440,22089,5560,L,"NEW ORLEANS, LA",35380,"New Orleans-Metairie-Kenner, LA",35380,"New Orleans-Metairie-Kenner, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. HELENA,LA,19450,22091,19,,LOUISIANA,12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. JAMES,LA,19460,22093,5560,L,"NEW ORLEANS, LA",,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. JOHN BAPTIST,LA,19470,22095,5560,L,"NEW ORLEANS, LA",35380,"New Orleans-Metairie-Kenner, LA",35380,"New Orleans-Metairie-Kenner, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. LANDRY,LA,19480,22097,3880,,"LAFAYETTE, LA",,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. MARTIN,LA,19490,22099,3880,,"LAFAYETTE, LA",29180,"Lafayette, LA",29180,"Lafayette, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. MARY,LA,19500,22101,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ST. TAMMANY,LA,19510,22103,5560,L,"NEW ORLEANS, LA",35380,"New Orleans-Metairie-Kenner, LA",35380,"New Orleans-Metairie-Kenner, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-TANGIPAHOA,LA,19520,22105,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-TENSAS,LA,19530,22107,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-TERREBONNE,LA,19540,22109,3350,,"HOUMA, LA",26380,"Houma-Bayou Cane-Thibodaux, LA",26380,"Houma-Bayou Cane-Thibodaux, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,LA,19550,22111,19,,LOUISIANA,33740,"Monroe, LA",33740,"Monroe, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-VERMILION,LA,19560,22113,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-VERNON,LA,19570,22115,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,LA,19580,22117,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,LA,19590,22119,7680,,"SHREVEPORT-BOSSIER CITY, LA",,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-W. BATON ROUGE,LA,19600,22121,760,,"BATON ROUGE, LA",12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-WEST CARROLL,LA,19610,22123,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-WEST FELICIANA,LA,19620,22125,19,,LOUISIANA,12940,"Baton Rouge, LA",12940,"Baton Rouge, LA",19,22,2005,2011,2012,2013,2014,2015,2016,2017
-WINN,LA,19630,22127,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,LA,19999,22990,19,,LOUISIANA,,,,,19,22,2005,2011,2012,2013,2014,2015,2016,2017
-ANDROSCOGGIN,ME,20000,23001,4243,,"LEWISTON-AUBURN, ME",30340,"Lewiston-Auburn, ME",30340,"Lewiston-Auburn, ME",20,23,2005,2011,2012,2013,2014,2015,2016,2017
-AROOSTOOK,ME,20010,23003,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,ME,20020,23005,6403,,"PORTLAND, ME",38860,"Portland-South Portland-Biddeford, ME",38860,"Portland-South Portland-Biddeford, ME",20,23,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,ME,20030,23007,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,ME,20040,23009,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-KENNEBEC,ME,20050,23011,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,ME,20060,23013,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,ME,20070,23015,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-OXFORD,ME,20080,23017,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-PENOBSCOT,ME,20090,23019,733,,"BANGOR, ME",12620,"Bangor, ME",12620,"Bangor, ME",20,23,2005,2011,2012,2013,2014,2015,2016,2017
-PISCATAQUIS,ME,20100,23021,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-SAGADAHOC,ME,20110,23023,6403,,"PORTLAND, ME",38860,"Portland-South Portland-Biddeford, ME",38860,"Portland-South Portland-Biddeford, ME",20,23,2005,2011,2012,2013,2014,2015,2016,2017
-SOMERSET,ME,20120,23025,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-WALDO,ME,20130,23027,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,ME,20140,23029,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-YORK,ME,20150,23031,6403,,"PORTLAND, ME",38860,"Portland-South Portland-Biddeford, ME",38860,"Portland-South Portland-Biddeford, ME",20,23,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,ME,20999,23990,20,,MAINE,,,,,20,23,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEGANY,MD,21000,24001,1900,,"CUMBERLAND, MD-WV",19060,"Cumberland, MD-WV",19060,"Cumberland, MD-WV",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-ANNE ARUNDEL,MD,21010,24003,720,L,"BALTIMORE, MD",12580,"Baltimore-Towson, MD",12580,"Baltimore-Towson, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-BALTIMORE,MD,21020,24005,720,L,"BALTIMORE, MD",12580,"Baltimore-Towson, MD",12580,"Baltimore-Towson, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-CALVERT,MD,21040,24009,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-CAROLINE,MD,21050,24011,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,MD,21060,24013,720,L,"BALTIMORE, MD",12580,"Baltimore-Towson, MD",12580,"Baltimore-Towson, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-CECIL,MD,21070,24015,9160,,"WILMINGTON-NEWARK, DE-MD",48864,"Wilmington, DE-MD-NJ",48864,"Wilmington, DE-MD-NJ",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLES,MD,21080,24017,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-DORCHESTER,MD,21090,24019,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-FREDERICK,MD,21100,24021,8840,L,"WASHINGTON, DC-MD-VA-WV",13644,"Bethesda-Frederick-Gaithersburg, MD",13644,"Bethesda-Rockville-Frederick, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-GARRETT,MD,21110,24023,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-HARFORD,MD,21120,24025,720,L,"BALTIMORE, MD",12580,"Baltimore-Towson, MD",12580,"Baltimore-Towson, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-HOWARD,MD,21130,24027,720,L,"BALTIMORE, MD",12580,"Baltimore-Towson, MD",12580,"Baltimore-Towson, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-KENT,MD,21140,24029,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,MD,21150,24031,8840,L,"WASHINGTON, DC-MD-VA-WV",13644,"Bethesda-Frederick-Gaithersburg, MD",13644,"Bethesda-Rockville-Frederick, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-PRINCE GEORGES,MD,21160,24033,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-QUEEN ANNES,MD,21170,24035,720,L,"BALTIMORE, MD",12580,"Baltimore-Towson, MD",12580,"Baltimore-Towson, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-ST. MARYS,MD,21180,24037,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-SOMERSET,MD,21190,24039,21,,MARYLAND,41540,"Salisbury, MD",41540,"Salisbury, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-TALBOT,MD,21200,24041,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,MD,21210,24043,3180,,"HAGERSTOWN, MD",25180,"Hagerstown-Martinsburg, MD-WV",25180,"Hagerstown-Martinsburg, MD-WV",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-WICOMICO,MD,21220,24045,21,,MARYLAND,41540,"Salisbury, MD",41540,"Salisbury, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-WORCESTER,MD,21230,24047,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-BALTIMORE CITY,MD,21030,24510,720,L,"BALTIMORE, MD",12580,"Baltimore-Towson, MD",12580,"Baltimore-Towson, MD",21,24,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,MD,21999,24990,21,,MARYLAND,,,,,21,24,2005,2011,2012,2013,2014,2015,2016,2017
-BARNSTABLE,MA,22000,25001,743,,"BARNSTABLE-YARMOUTH, MA",12700,"Barnstable Town, MA",12700,"Barnstable Town, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-BERKSHIRE,MA,22010,25003,6323,,"PITTSFIELD, MA",38340,"Pittsfield, MA",38340,"Pittsfield, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-BRISTOL,MA,22020,25005,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",39300,"Providence-New Bedford-Fall River, RI-M",39300,"Providence-New Bedford-Fall River, RI-MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-DUKES,MA,22030,25007,22,,MASSACHUSETTS,,,,,22,25,2005,2011,2012,2013,2014,2015,2016,2017
-ESSEX,MA,22040,25009,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",21604,"Essex County, MA",37764,"Peabody, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,MA,22060,25011,22,,MASSACHUSETTS,44140,"Springfield, MA",44140,"Springfield, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-HAMPDEN,MA,22070,25013,8003,,"SPRINGFIELD, MA",44140,"Springfield, MA",44140,"Springfield, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-HAMPSHIRE,MA,22080,25015,8003,,"SPRINGFIELD, MA",44140,"Springfield, MA",44140,"Springfield, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-MIDDLESEX,MA,22090,25017,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",15764,"Cambridge-Newton-Framingham, MA",15764,"Cambridge-Newton-Framingham, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-NANTUCKET,MA,22120,25019,22,,MASSACHUSETTS,,,,,22,25,2005,2011,2012,2013,2014,2015,2016,2017
-NORFOLK,MA,22130,25021,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",14484,"Boston-Quincy, MA",14484,"Boston-Quincy, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-PLYMOUTH,MA,22150,25023,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",14484,"Boston-Quincy, MA",14484,"Boston-Quincy, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-SUFFOLK,MA,22160,25025,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",14484,"Boston-Quincy, MA",14484,"Boston-Quincy, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-WORCESTER,MA,22170,25027,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",49340,"Worcester, MA",49340,"Worcester, MA",22,25,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,MA,22999,25990,22,,MASSACHUSETTS,,,,,22,25,2005,2011,2012,2013,2014,2015,2016,2017
-ALCONA,MI,23000,26001,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ALGER,MI,23010,26003,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEGAN,MI,23020,26005,3000,L,"GRAND RAPIDS-MUSKEGON-HOLLAND, MI",,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ALPENA,MI,23030,26007,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ANTRIM,MI,23040,26009,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ARENAC,MI,23050,26011,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-BARAGA,MI,23060,26013,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-BARRY,MI,23070,26015,23,,MICHIGAN,24340,"Grand Rapids-Wyoming, MI",24340,"Grand Rapids-Wyoming, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-BAY,MI,23080,26017,6960,,"SAGINAW-BAY CITY-MIDLAND, MI",13020,"Bay City, MI",13020,"Bay City, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-BENZIE,MI,23090,26019,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-BERRIEN,MI,23100,26021,870,,"BENTON HARBOR, MI",35660,"Niles-Benton Harbor, MI",35660,"Niles-Benton Harbor, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-BRANCH,MI,23110,26023,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,MI,23120,26025,3720,,"KALAMAZOO-BATTLE CREEK, MI",12980,"Battle Creek, MI",12980,"Battle Creek, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,MI,23130,26027,23,,MICHIGAN,43780,"South Bend-Mishawaka, IN-MI",43780,"South Bend-Mishawaka, IN-MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLEVOIX,MI,23140,26029,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CHEBOYGAN,MI,23150,26031,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CHIPPEWA,MI,23160,26033,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CLARE,MI,23170,26035,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,MI,23180,26037,4040,,"LANSING-EAST LANSING, MI",29620,"Lansing-East Lansing, MI",29620,"Lansing-East Lansing, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,MI,23190,26039,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-DELTA,MI,23200,26041,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-DICKINSON,MI,23210,26043,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-EATON,MI,23220,26045,4040,,"LANSING-EAST LANSING, MI",29620,"Lansing-East Lansing, MI",29620,"Lansing-East Lansing, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-EMMET,MI,23230,26047,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-GENESEE,MI,23240,26049,2640,,"FLINT, MI",22420,"Flint, MI",22420,"Flint, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-GLADWIN,MI,23250,26051,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-GOGEBIC,MI,23260,26053,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-GRAND TRAVERSE,MI,23270,26055,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-GRATIOT,MI,23280,26057,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-HILLSDALE,MI,23290,26059,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-HOUGHTON,MI,23300,26061,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-HURON,MI,23310,26063,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-INGHAM,MI,23320,26065,4040,,"LANSING-EAST LANSING, MI",29620,"Lansing-East Lansing, MI",29620,"Lansing-East Lansing, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-IONIA,MI,23330,26067,23,,MICHIGAN,24340,"Grand Rapids-Wyoming, MI",24340,"Grand Rapids-Wyoming, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-IOSCO,MI,23340,26069,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-IRON,MI,23350,26071,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ISABELLA,MI,23360,26073,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,MI,23370,26075,3520,,"JACKSON, MI",27100,"Jackson, MI",27100,"Jackson, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-KALAMAZOO,MI,23380,26077,3720,,"KALAMAZOO-BATTLE CREEK, MI",28020,"Kalamazoo-Portage, MI",28020,"Kalamazoo-Portage, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-KALKASKA,MI,23390,26079,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-KENT,MI,23400,26081,3000,L,"GRAND RAPIDS-MUSKEGON-HOLLAND, MI",24340,"Grand Rapids-Wyoming, MI",24340,"Grand Rapids-Wyoming, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-KEWEENAW,MI,23410,26083,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,MI,23420,26085,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-LAPEER,MI,23430,26087,2160,L,"DETROIT, MI",47644,"Warren-Farmington-Hills-Troy, MI",47644,"Warren-Troy-Farmington-Hills, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-LEELANAU,MI,23440,26089,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-LENAWEE,MI,23450,26091,440,,"ANN ARBOR, MI",,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-LIVINGSTON,MI,23460,26093,440,,"ANN ARBOR, MI",47644,"Warren-Farmington-Hills-Troy, MI",47644,"Warren-Troy-Farmington-Hills, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-LUCE,MI,23470,26095,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MACKINAC,MI,23480,26097,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MACOMB,MI,23490,26099,2160,L,"DETROIT, MI",47644,"Warren-Farmington-Hills-Troy, MI",47644,"Warren-Troy-Farmington-Hills, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MANISTEE,MI,23500,26101,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MARQUETTE,MI,23510,26103,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MASON,MI,23520,26105,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MECOSTA,MI,23530,26107,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MENOMINEE,MI,23540,26109,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MIDLAND,MI,23550,26111,6960,,"SAGINAW-BAY CITY-MIDLAND, MI",,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MISSAUKEE,MI,23560,26113,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,MI,23570,26115,2160,L,"DETROIT, MI",33780,"Monroe, MI",33780,"Monroe, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MONTCALM,MI,23580,26117,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MONTMORENCY,MI,23590,26119,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-MUSKEGON,MI,23600,26121,3000,L,"GRAND RAPIDS-MUSKEGON-HOLLAND, MI",34740,"Muskegon-Norton Shores, MI a",34740,"Muskegon-Norton Shores, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-NEWAYGO,MI,23610,26123,23,,MICHIGAN,24340,"Grand Rapids-Wyoming, MI",24340,"Grand Rapids-Wyoming, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-OAKLAND,MI,23620,26125,2160,L,"DETROIT, MI",47644,"Warren-Farmington-Hills-Troy, MI",47644,"Warren-Troy-Farmington-Hills, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-OCEANA,MI,23630,26127,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-OGEMAW,MI,23640,26129,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ONTONAGON,MI,23650,26131,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-OSCEOLA,MI,23660,26133,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-OSCODA,MI,23670,26135,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-OTSEGO,MI,23680,26137,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-OTTAWA,MI,23690,26139,3000,L,"GRAND RAPIDS-MUSKEGON-HOLLAND, MI",26100,"Holland-Grand Haven, MI",26100,"Holland-Grand Haven, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-PRESQUE ISLE,MI,23700,26141,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ROSCOMMON,MI,23710,26143,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-SAGINAW,MI,23720,26145,6960,,"SAGINAW-BAY CITY-MIDLAND, MI",40980,"Saginaw-Saginaw Township North, MI",40980,"Saginaw-Saginaw Township North, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ST. CLAIR,MI,23730,26147,2160,L,"DETROIT, MI",47644,"Warren-Farmington-Hills-Troy, MI",47644,"Warren-Troy-Farmington-Hills, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-ST. JOSEPH,MI,23740,26149,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-SANILAC,MI,23750,26151,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-SCHOOLCRAFT,MI,23760,26153,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-SHIAWASSEE,MI,23770,26155,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-TUSCOLA,MI,23780,26157,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-VAN BUREN,MI,23790,26159,3720,,"KALAMAZOO-BATTLE CREEK, MI",28020,"Kalamazoo-Portage, MI",28020,"Kalamazoo-Portage, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-WASHTENAW,MI,23800,26161,440,,"ANN ARBOR, MI",11460,"Ann Arbor, MI",11460,"Ann Arbor, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,MI,23810,26163,2160,L,"DETROIT, MI",19804,"Detroit-Livonia-Dearborn, MI",19804,"Detroit-Livonia-Dearborn, MI",23,26,2005,2011,2012,2013,2014,2015,2016,2017
-WEXFORD,MI,23830,26165,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,MI,23999,26990,23,,MICHIGAN,,,,,23,26,2005,2011,2012,2013,2014,2015,2016,2017
-AITKIN,MN,24000,27001,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-ANOKA,MN,24010,27003,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-BECKER,MN,24020,27005,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-BELTRAMI,MN,24030,27007,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,MN,24040,27009,6980,,"ST. CLOUD, MN",41060,"St. Cloud, MN",41060,"St. Cloud, MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-BIG STONE,MN,24050,27011,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-BLUE EARTH,MN,24060,27013,24,,MINNESOTA,,,31860,"Mankato-North Mankato, MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,MN,24070,27015,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CARLTON,MN,24080,27017,24,,MINNESOTA,20260,"Duluth, MN-WI",20260,"Duluth, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CARVER,MN,24090,27019,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,MN,24100,27021,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CHIPPEWA,MN,24110,27023,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CHISAGO,MN,24120,27025,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,MN,24130,27027,2520,,"FARGO-MOORHEAD, ND-MN",22020,"Fargo, ND-MN",22020,"Fargo, ND-MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CLEARWATER,MN,24140,27029,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-COOK,MN,24150,27031,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-COTTONWOOD,MN,24160,27033,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-CROW WING,MN,24170,27035,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-DAKOTA,MN,24180,27037,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-DODGE,MN,24190,27039,24,,MINNESOTA,40340,"Rochester, MN",40340,"Rochester, MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,MN,24200,27041,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-FARIBAULT,MN,24210,27043,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-FILLMORE,MN,24220,27045,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-FREEBORN,MN,24230,27047,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-GOODHUE,MN,24240,27049,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,MN,24250,27051,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-HENNEPIN,MN,24260,27053,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-HOUSTON,MN,24270,27055,3870,,"LA CROSSE, WI-MN",29100,"La Crosse, WI-MN",29100,"La Crosse, WI-MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-HUBBARD,MN,24280,27057,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-ISANTI,MN,24290,27059,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-ITASCA,MN,24300,27061,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,MN,24310,27063,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-KANABEC,MN,24320,27065,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-KANDIYOHI,MN,24330,27067,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-KITTSON,MN,24340,27069,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-KOOCHICHING,MN,24350,27071,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-LAC QUI PARLE,MN,24360,27073,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,MN,24370,27075,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE OF WOODS,MN,24380,27077,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-LE SUEUR,MN,24390,27079,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,MN,24400,27081,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-LYON,MN,24410,27083,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MC LEOD,MN,24420,27085,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MAHNOMEN,MN,24430,27087,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,MN,24440,27089,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MARTIN,MN,24450,27091,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MEEKER,MN,24460,27093,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MILLE LACS,MN,24470,27095,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MORRISON,MN,24480,27097,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MOWER,MN,24490,27099,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-MURRAY,MN,24500,27101,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-NICOLLET,MN,24510,27103,24,,MINNESOTA,,,31860,"Mankato-North Mankato, MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-NOBLES,MN,24520,27105,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-NORMAN,MN,24530,27107,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-OLMSTED,MN,24540,27109,6820,,"ROCHESTER, MN",40340,"Rochester, MN",40340,"Rochester, MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-OTTER TAIL,MN,24550,27111,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-PENNINGTON,MN,24560,27113,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-PINE,MN,24570,27115,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-PIPESTONE,MN,24580,27117,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,MN,24590,27119,2985,,"GRAND FORKS, ND-MN",24220,"Grand Forks, ND-MN",24220,"Grand Forks, ND-MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-POPE,MN,24600,27121,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-RAMSEY,MN,24610,27123,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-RED LAKE,MN,24620,27125,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-REDWOOD,MN,24630,27127,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-RENVILLE,MN,24640,27129,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-RICE,MN,24650,27131,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-ROCK,MN,24660,27133,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-ROSEAU,MN,24670,27135,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-ST. LOUIS,MN,24680,27137,2240,,"DULUTH-SUPERIOR, MN-WI",20260,"Duluth, MN-WI",20260,"Duluth, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,MN,24690,27139,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-SHERBURNE,MN,24700,27141,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-SIBLEY,MN,24710,27143,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-STEARNS,MN,24720,27145,6980,,"ST. CLOUD, MN",41060,"St. Cloud, MN",41060,"St. Cloud, MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-STEELE,MN,24730,27147,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-STEVENS,MN,24740,27149,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-SWIFT,MN,24750,27151,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-TODD,MN,24760,27153,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-TRAVERSE,MN,24770,27155,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WABASHA,MN,24780,27157,24,,MINNESOTA,40340,"Rochester, MN",40340,"Rochester, MN",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WADENA,MN,24790,27159,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WASECA,MN,24800,27161,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,MN,24810,27163,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WATONWAN,MN,24820,27165,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WILKIN,MN,24830,27167,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WINONA,MN,24840,27169,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-WRIGHT,MN,24850,27171,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",24,27,2005,2011,2012,2013,2014,2015,2016,2017
-YELLOW MEDCINE,MN,24860,27173,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,MN,24999,27990,24,,MINNESOTA,,,,,24,27,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,MS,25000,28001,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-ALCORN,MS,25010,28003,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-AMITE,MS,25020,28005,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-ATTALA,MS,25030,28007,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,MS,25040,28009,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-BOLIVAR,MS,25050,28011,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,MS,25060,28013,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,MS,25070,28015,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-CHICKASAW,MS,25080,28017,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-CHOCTAW,MS,25090,28019,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-CLAIBORNE,MS,25100,28021,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-CLARKE,MS,25110,28023,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,MS,25120,28025,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-COAHOMA,MS,25130,28027,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-COPIAH,MS,25140,28029,25,,MISSISSIPPI,27140,"Jackson, MS",27140,"Jackson, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-COVINGTON,MS,25150,28031,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-DE SOTO,MS,25160,28033,4920,L,"MEMPHIS, TN-AR-MS",32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-FORREST,MS,25170,28035,3285,,"HATTIESBURG, MS",25620,"Hattiesburg, MS",25620,"Hattiesburg, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,MS,25180,28037,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-GEORGE,MS,25190,28039,25,,MISSISSIPPI,37700,"Pascagoula, MS",37700,"Pascagoula, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,MS,25200,28041,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-GRENADA,MS,25210,28043,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,MS,25220,28045,920,,"BILOXI-GULFPORT-PASCAGOULA, MS",25060,"Gulfport-Biloxi, MS",25060,"Gulfport-Biloxi, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,MS,25230,28047,920,,"BILOXI-GULFPORT-PASCAGOULA, MS",25060,"Gulfport-Biloxi, MS",25060,"Gulfport-Biloxi, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-HINDS,MS,25240,28049,3560,,"JACKSON, MS",27140,"Jackson, MS",27140,"Jackson, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-HOLMES,MS,25250,28051,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-HUMPHREYS,MS,25260,28053,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-ISSAQUENA,MS,25270,28055,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-ITAWAMBA,MS,25280,28057,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,MS,25290,28059,920,,"BILOXI-GULFPORT-PASCAGOULA, MS",37700,"Pascagoula, MS",37700,"Pascagoula, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,MS,25300,28061,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,MS,25310,28063,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON DAVIS,MS,25320,28065,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-JONES,MS,25330,28067,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-KEMPER,MS,25340,28069,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LAFAYETTE,MS,25350,28071,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LAMAR,MS,25360,28073,3285,,"HATTIESBURG, MS",25620,"Hattiesburg, MS",25620,"Hattiesburg, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LAUDERDALE,MS,25370,28075,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,MS,25380,28077,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LEAKE,MS,25390,28079,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,MS,25400,28081,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LEFLORE,MS,25410,28083,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,MS,25420,28085,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-LOWNDES,MS,25430,28087,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,MS,25440,28089,3560,,"JACKSON, MS",27140,"Jackson, MS",27140,"Jackson, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,MS,25450,28091,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,MS,25460,28093,25,,MISSISSIPPI,32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,MS,25470,28095,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,MS,25480,28097,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-NESHOBA,MS,25490,28099,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-NEWTON,MS,25500,28101,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-NOXUBEE,MS,25510,28103,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-OKTIBBEHA,MS,25520,28105,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-PANOLA,MS,25530,28107,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-PEARL RIVER,MS,25540,28109,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,MS,25550,28111,25,,MISSISSIPPI,25620,"Hattiesburg, MS",25620,"Hattiesburg, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,MS,25560,28113,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-PONTOTOC,MS,25570,28115,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-PRENTISS,MS,25580,28117,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-QUITMAN,MS,25590,28119,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-RANKIN,MS,25600,28121,3560,,"JACKSON, MS",27140,"Jackson, MS",27140,"Jackson, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,MS,25610,28123,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-SHARKEY,MS,25620,28125,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-SIMPSON,MS,25630,28127,25,,MISSISSIPPI,27140,"Jackson, MS",27140,"Jackson, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-SMITH,MS,25640,28129,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-STONE,MS,25650,28131,25,,MISSISSIPPI,25060,"Gulfport-Biloxi, MS",25060,"Gulfport-Biloxi, MS",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-SUNFLOWER,MS,25660,28133,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-TALLAHATCHIE,MS,25670,28135,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-TATE,MS,25680,28137,25,,MISSISSIPPI,32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-TIPPAH,MS,25690,28139,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-TISHOMINGO,MS,25700,28141,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-TUNICA,MS,25710,28143,25,,MISSISSIPPI,32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",25,28,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,MS,25720,28145,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-WALTHALL,MS,25730,28147,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,MS,25740,28149,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,MS,25750,28151,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,MS,25760,28153,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,MS,25770,28155,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-WILKINSON,MS,25780,28157,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-WINSTON,MS,25790,28159,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-YALOBUSHA,MS,25800,28161,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-YAZOO,MS,25810,28163,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,MS,25999,28990,25,,MISSISSIPPI,,,,,25,28,2005,2011,2012,2013,2014,2015,2016,2017
-ADAIR,MO,26000,29001,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-ANDREW,MO,26010,29003,7000,,"ST. JOSEPH, MO",41140,"St. Joseph, MO-KS",41140,"St. Joseph, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-ATCHISON,MO,26020,29005,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-AUDRAIN,MO,26030,29007,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BARRY,MO,26040,29009,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BARTON,MO,26050,29011,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BATES,MO,26060,29013,26,,MISSOURI,28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,MO,26070,29015,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BOLLINGER,MO,26080,29017,26,,MISSOURI,,,16020,"Cape Girardeau-Jackson, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,MO,26090,29019,1740,,"COLUMBIA, MO",17860,"Columbia, MO",17860,"Columbia, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BUCHANAN,MO,26100,29021,7000,,"ST. JOSEPH, MO",41140,"St. Joseph, MO-KS",41140,"St. Joseph, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,MO,26110,29023,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CALDWELL,MO,26120,29025,26,,MISSOURI,28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CALLAWAY,MO,26130,29027,26,,MISSOURI,27620,"Jefferson City, MO",27620,"Jefferson City, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CAMDEN,MO,26140,29029,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CAPE GIRARDEAU,MO,26150,29031,26,,MISSOURI,,,16020,"Cape Girardeau-Jackson, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,MO,26160,29033,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CARTER,MO,26170,29035,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,MO,26180,29037,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CEDAR,MO,26190,29039,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CHARITON,MO,26200,29041,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CHRISTIAN,MO,26210,29043,7920,,"SPRINGFIELD, MO",44180,"Springfield, MO",44180,"Springfield, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,MO,26220,29045,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,MO,26230,29047,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,MO,26240,29049,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-COLE,MO,26250,29051,26,,MISSOURI,27620,"Jefferson City, MO",27620,"Jefferson City, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-COOPER,MO,26260,29053,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,MO,26270,29055,26,,MISSOURI,41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-DADE,MO,26280,29057,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-DALLAS,MO,26290,29059,26,,MISSOURI,44180,"Springfield, MO",44180,"Springfield, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIESS,MO,26300,29061,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-DE KALB,MO,26310,29063,26,,MISSOURI,41140,"St. Joseph, MO-KS",41140,"St. Joseph, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-DENT,MO,26320,29065,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,MO,26330,29067,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-DUNKLIN,MO,26340,29069,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,MO,26350,29071,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-GASCONADE,MO,26360,29073,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-GENTRY,MO,26370,29075,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,MO,26380,29077,7920,,"SPRINGFIELD, MO",44180,"Springfield, MO",44180,"Springfield, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-GRUNDY,MO,26390,29079,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,MO,26400,29081,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,MO,26410,29083,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-HICKORY,MO,26411,29085,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-HOLT,MO,26412,29087,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-HOWARD,MO,26440,29089,26,,MISSOURI,17860,"Columbia, MO",17860,"Columbia, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-HOWELL,MO,26450,29091,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-IRON,MO,26460,29093,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,MO,26470,29095,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,MO,26480,29097,3710,,"JOPLIN, MO",27900,"Joplin, MO",27900,"Joplin, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,MO,26490,29099,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,MO,26500,29101,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,MO,26510,29103,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-LACLEDE,MO,26520,29105,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-LAFAYETTE,MO,26530,29107,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,MO,26540,29109,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS,MO,26541,29111,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,MO,26560,29113,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-LINN,MO,26570,29115,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-LIVINGSTON,MO,26580,29117,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MC DONALD,MO,26590,29119,26,,MISSOURI,22220,"Fayetteville-Springdale-Rogers, AR-MO",22220,"Fayetteville-Springdale-Rogers, AR-MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MACON,MO,26600,29121,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,MO,26601,29123,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MARIES,MO,26620,29125,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,MO,26630,29127,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,MO,26631,29129,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MILLER,MO,26650,29131,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MISSISSIPPI,MO,26660,29133,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MONITEAU,MO,26670,29135,26,,MISSOURI,27620,"Jefferson City, MO",27620,"Jefferson City, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,MO,26680,29137,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,MO,26690,29139,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,MO,26700,29141,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-NEW MADRID,MO,26710,29143,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-NEWTON,MO,26720,29145,3710,,"JOPLIN, MO",27900,"Joplin, MO",27900,"Joplin, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-NODAWAY,MO,26730,29147,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-OREGON,MO,26740,29149,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-OSAGE,MO,26750,29151,26,,MISSOURI,27620,"Jefferson City, MO",27620,"Jefferson City, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-OZARK,MO,26751,29153,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PEMISCOT,MO,26770,29155,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,MO,26780,29157,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PETTIS,MO,26790,29159,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PHELPS,MO,26800,29161,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,MO,26810,29163,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PLATTE,MO,26820,29165,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,MO,26821,29167,26,,MISSOURI,44180,"Springfield, MO",44180,"Springfield, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PULASKI,MO,26840,29169,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,MO,26850,29171,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-RALLS,MO,26860,29173,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,MO,26870,29175,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-RAY,MO,26880,29177,3760,L,"KANSAS CITY, MO-KS",28140,"Kansas City, MO-KS",28140,"Kansas City, MO-KS",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-REYNOLDS,MO,26881,29179,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-RIPLEY,MO,26900,29181,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-ST. CHARLES,MO,26910,29183,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-ST. CLAIR,MO,26911,29185,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-STE. GENEVIEVE,MO,26960,29186,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-ST. FRANCOIS,MO,26930,29187,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-ST. LOUIS,MO,26940,29189,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-SALINE,MO,26970,29195,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-SCHUYLER,MO,26980,29197,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTLAND,MO,26981,29199,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,MO,26982,29201,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-SHANNON,MO,26983,29203,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,MO,26984,29205,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-STODDARD,MO,26985,29207,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-STONE,MO,26986,29209,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-SULLIVAN,MO,26987,29211,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-TANEY,MO,26988,29213,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-TEXAS,MO,26989,29215,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-VERNON,MO,26990,29217,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,MO,26991,29219,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,MO,26992,29221,26,,MISSOURI,41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,MO,26993,29223,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,MO,26994,29225,7920,,"SPRINGFIELD, MO",44180,"Springfield, MO",44180,"Springfield, MO",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-WORTH,MO,26995,29227,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-WRIGHT,MO,26996,29229,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-ST. LOUIS CITY,MO,26950,29510,7040,L,"ST. LOUIS, MO-IL",41180,"St. Louis, MO-IL",41180,"St. Louis, MO-IL",26,29,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,MO,26999,29990,26,,MISSOURI,,,,,26,29,2005,2011,2012,2013,2014,2015,2016,2017
-BEAVERHEAD,MT,27000,30001,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-BIG HORN,MT,27010,30003,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-BLAINE,MT,27020,30005,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-BROADWATER,MT,27030,30007,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-CARBON,MT,27040,30009,27,,MONTANA,13740,"Billings, MT",13740,"Billings, MT",27,30,2005,2011,2012,2013,2014,2015,2016,2017
-CARTER,MT,27050,30011,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-CASCADE,MT,27060,30013,3040,,"GREAT FALLS, MT",24500,"Great Falls, MT",24500,"Great Falls, MT",27,30,2005,2011,2012,2013,2014,2015,2016,2017
-CHOUTEAU,MT,27070,30015,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-CUSTER,MT,27080,30017,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-DANIELS,MT,27090,30019,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-DAWSON,MT,27100,30021,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-DEER LODGE,MT,27110,30023,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-FALLON,MT,27120,30025,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-FERGUS,MT,27130,30027,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-FLATHEAD,MT,27140,30029,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-GALLATIN,MT,27150,30031,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-GARFIELD,MT,27160,30033,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-GLACIER,MT,27170,30035,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-GOLDEN VALLEY,MT,27180,30037,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-GRANITE,MT,27190,30039,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-HILL,MT,27200,30041,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,MT,27210,30043,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-JUDITH BASIN,MT,27220,30045,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,MT,27230,30047,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS AND CLARK,MT,27240,30049,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-LIBERTY,MT,27250,30051,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,MT,27260,30053,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-MCCONE,MT,27270,30055,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,MT,27280,30057,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-MEAGHER,MT,27290,30059,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-MINERAL,MT,27300,30061,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-MISSOULA,MT,27310,30063,5140,,"MISSOULA, MT",33540,"Missoula, MT",33540,"Missoula, MT",27,30,2005,2011,2012,2013,2014,2015,2016,2017
-MUSSELSHELL,MT,27320,30065,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-PARK,MT,27330,30067,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-PETROLEUM,MT,27340,30069,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-PHILLIPS,MT,27350,30071,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-PONDERA,MT,27360,30073,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-POWDER RIVER,MT,27370,30075,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-POWELL,MT,27380,30077,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-PRAIRIE,MT,27390,30079,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-RAVALLI,MT,27400,30081,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-RICHLAND,MT,27410,30083,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-ROOSEVELT,MT,27420,30085,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-ROSEBUD,MT,27430,30087,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-SANDERS,MT,27440,30089,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-SHERIDAN,MT,27450,30091,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-SILVER BOW,MT,27460,30093,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-STILLWATER,MT,27470,30095,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-SWEET GRASS,MT,27480,30097,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-TETON,MT,27490,30099,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-TOOLE,MT,27500,30101,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-TREASURE,MT,27510,30103,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-VALLEY,MT,27520,30105,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-WHEATLAND,MT,27530,30107,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-WIBAUX,MT,27540,30109,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-YELLOWSTONE,MT,27550,30111,880,,"BILLINGS, MT",13740,"Billings, MT",13740,"Billings, MT",27,30,2005,2011,2012,2013,2014,2015,2016,2017
-YELLOWSTONE NATL PARK,MT,27113,30113,27,,MONTANA,,,,,27,30,2005,2011,,,,,,
-STATEWIDE,MT,27999,30990,27,,MONTANA,,,,,27,30,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,NE,28000,31001,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-ANTELOPE,NE,28010,31003,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-ARTHUR,NE,28020,31005,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BANNER,NE,28030,31007,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BLAINE,NE,28040,31009,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,NE,28050,31011,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BOX BUTTE,NE,28060,31013,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BOYD,NE,28070,31015,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,NE,28080,31017,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BUFFALO,NE,28090,31019,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BURT,NE,28100,31021,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,NE,28110,31023,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,NE,28120,31025,5920,,"OMAHA, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CEDAR,NE,28130,31027,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CHASE,NE,28140,31029,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CHERRY,NE,28150,31031,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CHEYENNE,NE,28160,31033,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,NE,28170,31035,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-COLFAX,NE,28180,31037,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CUMING,NE,28190,31039,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CUSTER,NE,28200,31041,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DAKOTA,NE,28210,31043,7720,,"SIOUX CITY, IA-NE",43580,"Sioux City, IA-NE-SD",43580,"Sioux City, IA-NE-SD",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DAWES,NE,28220,31045,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DAWSON,NE,28230,31047,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DEUEL,NE,28240,31049,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DIXON,NE,28250,31051,28,,NEBRASKA,43580,"Sioux City, IA-NE-SD",43580,"Sioux City, IA-NE-SD",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DODGE,NE,28260,31053,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,NE,28270,31055,5920,,"OMAHA, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-DUNDY,NE,28280,31057,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-FILLMORE,NE,28290,31059,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,NE,28300,31061,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-FRONTIER,NE,28310,31063,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-FURNAS,NE,28320,31065,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-GAGE,NE,28330,31067,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-GARDEN,NE,28340,31069,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-GARFIELD,NE,28350,31071,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-GOSPER,NE,28360,31073,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,NE,28370,31075,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-GREELEY,NE,28380,31077,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HALL,NE,28390,31079,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,NE,28400,31081,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HARLAN,NE,28410,31083,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HAYES,NE,28420,31085,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HITCHCOCK,NE,28430,31087,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HOLT,NE,28440,31089,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HOOKER,NE,28450,31091,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-HOWARD,NE,28460,31093,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,NE,28470,31095,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,NE,28480,31097,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-KEARNEY,NE,28490,31099,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-KEITH,NE,28500,31101,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-KEYA PAHA,NE,28510,31103,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-KIMBALL,NE,28520,31105,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,NE,28530,31107,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-LANCASTER,NE,28540,31109,4360,,"LINCOLN, NE",30700,"Lincoln, NE",30700,"Lincoln, NE",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,NE,28550,31111,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,NE,28560,31113,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-LOUP,NE,28570,31115,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-MC PHERSON,NE,28580,31117,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,NE,28590,31119,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-MERRICK,NE,28600,31121,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-MORRILL,NE,28610,31123,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-NANCE,NE,28620,31125,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-NEMAHA,NE,28630,31127,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-NUCKOLLS,NE,28640,31129,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-OTOE,NE,28650,31131,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-PAWNEE,NE,28660,31133,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-PERKINS,NE,28670,31135,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-PHELPS,NE,28680,31137,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-PIERCE,NE,28690,31139,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-PLATTE,NE,28700,31141,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,NE,28710,31143,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-RED WILLOW,NE,28720,31145,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-RICHARDSON,NE,28730,31147,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-ROCK,NE,28740,31149,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SALINE,NE,28750,31151,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SARPY,NE,28760,31153,5920,,"OMAHA, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SAUNDERS,NE,28770,31155,28,,NEBRASKA,36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT BLUFF,NE,28780,31157,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SEWARD,NE,28790,31159,28,,NEBRASKA,30700,"Lincoln, NE",30700,"Lincoln, NE",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SHERIDAN,NE,28800,31161,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SHERMAN,NE,28810,31163,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-SIOUX,NE,28820,31165,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-STANTON,NE,28830,31167,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-THAYER,NE,28840,31169,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-THOMAS,NE,28850,31171,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-THURSTON,NE,28860,31173,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-VALLEY,NE,28870,31175,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,NE,28880,31177,5920,,"OMAHA, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",36540,"Omaha-Council Bluffs, NE-IA",28,31,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,NE,28890,31179,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,NE,28900,31181,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-WHEELER,NE,28910,31183,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-YORK,NE,28920,31185,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,NE,28999,31990,28,,NEBRASKA,,,,,28,31,2005,2011,2012,2013,2014,2015,2016,2017
-CHURCHILL,NV,29000,32001,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,NV,29010,32003,4120,L,"LAS VEGAS, NV-AZ",29820,"Las Vegas-Paradise, NV",29820,"Las Vegas-Paradise, NV",29,32,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,NV,29020,32005,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-ELKO,NV,29030,32007,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-ESMERALDA,NV,29040,32009,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-EUREKA,NV,29050,32011,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-HUMBOLDT,NV,29060,32013,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-LANDER,NV,29070,32015,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,NV,29080,32017,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-LYON,NV,29090,32019,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-MINERAL,NV,29100,32021,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-NYE,NV,29110,32023,4120,L,"LAS VEGAS, NV-AZ",,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-PERSHING,NV,29130,32027,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-STOREY,NV,29140,32029,29,,NEVADA,39900,"Reno-Sparks, NV",39900,"Reno-Sparks, NV",29,32,2005,2011,2012,2013,2014,2015,2016,2017
-WASHOE,NV,29150,32031,6720,,"RENO, NV",39900,"Reno-Sparks, NV",39900,"Reno-Sparks, NV",29,32,2005,2011,2012,2013,2014,2015,2016,2017
-WHITE PINE,NV,29160,32033,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-CARSON CITY,NV,29120,32510,29,,NEVADA,16180,"Carson City, NV",16180,"Carson City, NV",29,32,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,NV,29999,32990,29,,NEVADA,,,,,29,32,2005,2011,2012,2013,2014,2015,2016,2017
-BELKNAP,NH,30000,33001,30,,NEW HAMPSHIRE,,,,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,NH,30010,33003,30,,NEW HAMPSHIRE,,,,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-CHESHIRE,NH,30020,33005,30,,NEW HAMPSHIRE,,,,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-COOS,NH,30030,33007,30,,NEW HAMPSHIRE,,,,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-GRAFTON,NH,30040,33009,30,,NEW HAMPSHIRE,,,,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-HILLSBOROUGH,NH,30050,33011,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",31700,"Manchester-Nashua, NH",31700,"Manchester-Nashua, NH",30,33,2005,2011,2012,2013,2014,2015,2016,2017
-MERRIMACK,NH,30060,33013,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA-NH",31700,"Manchester-Nashua, NH",,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKINGHAM,NH,30070,33015,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",40484,"Rockingham County, NH",40484,"Rockingham County-Strafford County, NH",30,33,2005,2011,2012,2013,2014,2015,2016,2017
-STRAFFORD,NH,30080,33017,1123,L,"BOSTON-WORCESTER-LAWRENCE-LOWELL-BROCKTON, MA",40484,"Rockingham County, NH",40484,"Rockingham County-Strafford County, NH",30,33,2005,2011,2012,2013,2014,2015,2016,2017
-SULLIVAN,NH,30090,33019,30,,NEW HAMPSHIRE,,,,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,NH,30999,33990,30,,NEW HAMPSHIRE,,,,,30,33,2005,2011,2012,2013,2014,2015,2016,2017
-ATLANTIC,NJ,31000,34001,560,,"ATLANTIC-CAPE MAY, NJ",12100,"Atlan City, NJ",12100,"Atlantic City-Hammonton, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-BERGEN,NJ,31100,34003,875,L,"BERGEN-PASSAIC, NJ",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-BURLINGTON,NJ,31150,34005,6160,L,"PHILADELPHIA, PA-NJ",15804,"Camden, NJ",15804,"Camden, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-CAMDEN,NJ,31160,34007,6160,L,"PHILADELPHIA, PA-NJ",15804,"Camden, NJ",15804,"Camden, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-CAPE MAY,NJ,31180,34009,560,,"ATLANTIC-CAPE MAY, NJ",36140,"Ocean City, NJ",36140,"Ocean City, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,NJ,31190,34011,8760,,"VINELAND-MILLVILLE-BRIDGETON, NJ",47220,"Vineland-Millville-Bridgeton, NJ at",47220,"Vineland-Millville-Bridgeton, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-ESSEX,NJ,31200,34013,5640,L,"NEWARK, NJ",35084,"Newark-Union, NJ-PA",35084,"Newark-Union, NJ-PA",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-GLOUCESTER,NJ,31220,34015,6160,L,"PHILADELPHIA, PA-NJ",15804,"Camden, NJ",15804,"Camden, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-HUDSON,NJ,31230,34017,3640,,"JERSEY CITY, NJ",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-HUNTERDON,NJ,31250,34019,5015,L,"MIDDLESEX-SOMERSET-HUNTERDON, N",35084,"Newark-Union, NJ-PA",35084,"Newark-Union, NJ-PA",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,NJ,31260,34021,8480,,"TRENTON, NJ",45940,"Trenton-Ewing, NJ",45940,"Trenton-Ewing, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-MIDDLESEX,NJ,31270,34023,5015,L,"MIDDLESEX-SOMERSET-HUNTERDON, N",20764,"Edison, NJ",20764,"Edison-New Brunswick, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-MONMOUTH,NJ,31290,34025,5190,L,"MONMOUTH-OCEAN, NJ",20764,"Edison, NJ",20764,"Edison-New Brunswick, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-MORRIS,NJ,31300,34027,5640,L,"NEWARK, NJ",35084,"Newark-Union, NJ-PA",35084,"Newark-Union, NJ-PA",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-OCEAN,NJ,31310,34029,5190,L,"MONMOUTH-OCEAN, NJ",20764,"Edison, NJ",20764,"Edison-New Brunswick, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-PASSAIC,NJ,31320,34031,875,L,"BERGEN-PASSAIC, NJ",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-SALEM,NJ,31340,34033,6160,L,"PHILADELPHIA, PA-NJ",48864,"Wilmington, DE-MD-NJ",48864,"Wilmington, DE-MD-NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-SOMERSET,NJ,31350,34035,5015,L,"MIDDLESEX-SOMERSET-HUNTERDON, N",20764,"Edison, NJ",20764,"Edison-New Brunswick, NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-SUSSEX,NJ,31360,34037,5640,L,"NEWARK, NJ",35084,"Newark-Union, NJ-PA",35084,"Newark-Union, NJ-PA",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,NJ,31370,34039,5640,L,"NEWARK, NJ",35084,"Newark-Union, NJ-PA",35084,"Newark-Union, NJ-PA",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,NJ,31390,34041,5640,L,"NEWARK, NJ",10900,"Allentown-Bethlehem-Easton, PA-NJ",10900,"Allentown-Bethlehem-Easton, PA-NJ",31,34,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,NJ,31999,34990,31,,,,,,,31,34,2005,2011,2012,2013,2014,2015,2016,2017
-BERNALILLO,NM,32000,35001,200,,"ALBUQUERQUE, NM",10740,"Albuquerque, NM",10740,"Albuquerque, NM",32,35,2005,2011,2012,2013,2014,2015,2016,2017
-CATRON,NM,32010,35003,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-CHAVES,NM,32020,35005,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-CIBOLA,NM,32025,35006,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-COLFAX,NM,32030,35007,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-CURRY,NM,32040,35009,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-DE BACA,NM,32050,35011,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-DONA ANA,NM,32060,35013,4100,,"LAS CRUCES, NM",29740,"Las Cruces, NM",29740,"Las Cruces, NM",32,35,2005,2011,2012,2013,2014,2015,2016,2017
-EDDY,NM,32070,35015,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,NM,32080,35017,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-GUADALUPE,NM,32090,35019,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-HARDING,NM,32100,35021,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-HIDALGO,NM,32110,35023,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-LEA,NM,32120,35025,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,NM,32130,35027,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-LOS ALAMOS,NM,32131,35028,7490,,"SANTA FE, NM",,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-LUNA,NM,32140,35029,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-MCKINLEY,NM,32150,35031,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-MORA,NM,32160,35033,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-OTERO,NM,32170,35035,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-QUAY,NM,32180,35037,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-RIO ARRIBA,NM,32190,35039,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-ROOSEVELT,NM,32200,35041,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-SANDOVAL,NM,32210,35043,200,,"ALBUQUERQUE, NM",10740,"Albuquerque, NM",10740,"Albuquerque, NM",32,35,2005,2011,2012,2013,2014,2015,2016,2017
-SAN JUAN,NM,32220,35045,32,,NEW MEXICO,22140,"Farmington, NM",22140,"Farmington, NM",32,35,2005,2011,2012,2013,2014,2015,2016,2017
-SAN MIGUEL,NM,32230,35047,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-SANTA FE,NM,32240,35049,7490,,"SANTA FE, NM",42140,"Santa Fe, NM",42140,"Santa Fe, NM",32,35,2005,2011,2012,2013,2014,2015,2016,2017
-SIERRA,NM,32250,35051,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-SOCORRO,NM,32260,35053,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-TAOS,NM,32270,35055,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-TORRANCE,NM,32280,35057,32,,NEW MEXICO,10740,"Albuquerque, NM",10740,"Albuquerque, NM",32,35,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,NM,32290,35059,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-VALENCIA,NM,32300,35061,200,,"ALBUQUERQUE, NM",10740,"Albuquerque, NM",10740,"Albuquerque, NM",32,35,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,NM,32999,35990,32,,NEW MEXICO,,,,,32,35,2005,2011,2012,2013,2014,2015,2016,2017
-ALBANY,NY,33000,36001,160,,"ALBANY-SCHENECTADY-TROY, NY",10580,"Albany-Schenectady-Troy, NY",10580,"Albany-Schenectady-Troy, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEGANY,NY,33010,36003,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-BRONX,NY,33020,36005,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-BROOME,NY,33030,36007,960,,"BINGHAMTON, NY",13780,"Binghamton, NY",13780,"Binghamton, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-CATTARAUGUS,NY,33040,36009,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-CAYUGA,NY,33050,36011,8160,,"SYRACUSE, NY",,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-CHAUTAUQUA,NY,33060,36013,3610,,"JAMESTOWN, NY",27460,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-CHEMUNG,NY,33070,36015,2335,,"ELMIRA, NY",21300,"Elmira, NY",21300,"Elmira, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-CHENANGO,NY,33080,36017,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,NY,33090,36019,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,NY,33200,36021,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-CORTLAND,NY,33210,36023,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-DELAWARE,NY,33220,36025,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-DUTCHESS,NY,33230,36027,2281,,"DUTCHESS COUNTY, NY",39100,"Poughkeepsie-Newburgh-Middletown, NY",39100,"Poughkeepsie-Newburgh-Middletown, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ERIE,NY,33240,36029,1280,L,"BUFFALO-NIAGARA FALLS, NY",15380,"Buffalo-Niagara Falls, NY",15380,"Buffalo-Niagara Falls, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ESSEX,NY,33260,36031,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,NY,33270,36033,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,NY,33280,36035,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-GENESEE,NY,33290,36037,6840,L,"ROCHESTER, NY",,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,NY,33300,36039,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,NY,33310,36041,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-HERKIMER,NY,33320,36043,8680,,"UTICA-ROME, NY",46540,"U a-Rome, NY",46540,"Utica-Rome, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,NY,33330,36045,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-KINGS,NY,33331,36047,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS,NY,33340,36049,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-LIVINGSTON,NY,33350,36051,6840,L,"ROCHESTER, NY",40380,"Rochester, NY",40380,"Rochester, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,NY,33360,36053,8160,,"SYRACUSE, NY",45060,"Syracuse, NY",45060,"Syracuse, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,NY,33370,36055,6840,L,"ROCHESTER, NY",40380,"Rochester, NY",40380,"Rochester, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,NY,33380,36057,160,,"ALBANY-SCHENECTADY-TROY, NY",,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-NASSAU,NY,33400,36059,5380,L,"NASSAU-SUFFOLK, NY",35004,"Nassau-Suffolk, NY",35004,"Nassau-Suffolk, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-NEW YORK,NY,33420,36061,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-NIAGARA,NY,33500,36063,1280,L,"BUFFALO-NIAGARA FALLS, NY",15380,"Buffalo-Niagara Falls, NY",15380,"Buffalo-Niagara Falls, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ONEIDA,NY,33510,36065,8680,,"UTICA-ROME, NY",46540,"U a-Rome, NY",46540,"Utica-Rome, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ONONDAGA,NY,33520,36067,8160,,"SYRACUSE, NY",45060,"Syracuse, NY",45060,"Syracuse, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ONTARIO,NY,33530,36069,6840,L,"ROCHESTER, NY",40380,"Rochester, NY",40380,"Rochester, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,NY,33540,36071,5660,,"NEWBURGH, NY-PA",39100,"Poughkeepsie-Newburgh-Middletown, NY",39100,"Poughkeepsie-Newburgh-Middletown, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ORLEANS,NY,33550,36073,6840,L,"ROCHESTER, NY",40380,"Rochester, NY",40380,"Rochester, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-OSWEGO,NY,33560,36075,8160,,"SYRACUSE, NY",45060,"Syracuse, NY",45060,"Syracuse, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-OTSEGO,NY,33570,36077,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,NY,33580,36079,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-QUEENS,NY,33590,36081,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-RENSSELAER,NY,33600,36083,160,,"ALBANY-SCHENECTADY-TROY, NY",10580,"Albany-Schenectady-Troy, NY",10580,"Albany-Schenectady-Troy, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-RICHMOND,NY,33610,36085,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKLAND,NY,33620,36087,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ST. LAWRENCE,NY,33630,36089,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-SARATOGA,NY,33640,36091,160,,"ALBANY-SCHENECTADY-TROY, NY",10580,"Albany-Schenectady-Troy, NY",10580,"Albany-Schenectady-Troy, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-SCHENECTADY,NY,33650,36093,160,,"ALBANY-SCHENECTADY-TROY, NY",10580,"Albany-Schenectady-Troy, NY",10580,"Albany-Schenectady-Troy, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-SCHOHARIE,NY,33660,36095,160,,"ALBANY-SCHENECTADY-TROY, NY",10580,"Albany-Schenectady-Troy, NY",10580,"Albany-Schenectady-Troy, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-SCHUYLER,NY,33670,36097,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-SENECA,NY,33680,36099,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-STEUBEN,NY,33690,36101,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-SUFFOLK,NY,33700,36103,5380,L,"NASSAU-SUFFOLK, NY",35004,"Nassau-Suffolk, NY",35004,"Nassau-Suffolk, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-SULLIVAN,NY,33710,36105,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-TIOGA,NY,33720,36107,960,,"BINGHAMTON, NY",13780,"Binghamton, NY",13780,"Binghamton, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-TOMPKINS,NY,33730,36109,33,,NEW YORK,27060,"Ithaca, NY",27060,"Ithaca, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ULSTER,NY,33740,36111,33,,NEW YORK,28740,"Kingston, NY",28740,"Kingston, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,NY,33750,36113,2975,,"GLENS FALLS, NY",24020,"Glens Falls, NY",24020,"Glens Falls, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,NY,33760,36115,2975,,"GLENS FALLS, NY",24020,"Glens Falls, NY",24020,"Glens Falls, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,NY,33770,36117,6840,L,"ROCHESTER, NY",40380,"Rochester, NY",40380,"Rochester, NY",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-WESTCHESTER,NY,33800,36119,5600,L,"NEW YORK-NEWARK, NY-NJ-PA",35644,"New York-Wayne-White Plains, NY-NJ",35644,"New York-White Plains-Wayne, NY-NJ",33,36,2005,2011,2012,2013,2014,2015,2016,2017
-WYOMING,NY,33900,36121,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-YATES,NY,33910,36123,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,NY,33999,36990,33,,NEW YORK,,,,,33,36,2005,2011,2012,2013,2014,2015,2016,2017
-ALAMANCE,NC,34000,37001,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",15500,"Burlington, NC",15500,"Burlington, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ALEXANDER,NC,34010,37003,3290,,"HICKORY-MORGANTON-LENOIR, NC",25860,"Hickory-Lenoir-Morganton, NC",25860,"Hickory-Lenoir-Morganton, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEGHANY,NC,34020,37005,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ANSON,NC,34030,37007,34,,NORTH CAROLINA,16740,"Charlotte-Gastonia-Concord, NC-SC",16740,"Charlotte-Gastonia-Rock Hill, NC-SC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ASHE,NC,34040,37009,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-AVERY,NC,34050,37011,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-BEAUFORT,NC,34060,37013,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-BERTIE,NC,34070,37015,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-BLADEN,NC,34080,37017,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-BRUNSWICK,NC,34090,37019,9200,,"WILMINGTON, NC",48900,"Wilmington, NC",48900,"Wilmington, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-BUNCOMBE,NC,34100,37021,480,,"ASHEVILLE, NC",11700,"Asheville, NC",11700,"Asheville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-BURKE,NC,34110,37023,3290,,"HICKORY-MORGANTON-LENOIR, NC",25860,"Hickory-Lenoir-Morganton, NC",25860,"Hickory-Lenoir-Morganton, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CABARRUS,NC,34120,37025,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",16740,"Charlotte-Gastonia-Rock Hill, NC-SC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CALDWELL,NC,34130,37027,3290,,"HICKORY-MORGANTON-LENOIR, NC",25860,"Hickory-Lenoir-Morganton, NC",25860,"Hickory-Lenoir-Morganton, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CAMDEN,NC,34140,37029,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CARTERET,NC,34150,37031,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CASWELL,NC,34160,37033,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CATAWBA,NC,34170,37035,3290,,"HICKORY-MORGANTON-LENOIR, NC",25860,"Hickory-Lenoir-Morganton, NC",25860,"Hickory-Lenoir-Morganton, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CHATHAM,NC,34180,37037,6640,L,"RALEIGH-DURHAM-CHAPEL HILL, NC",20500,"Durham, NC",20500,"Durham-Chapel Hill, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,NC,34190,37039,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CHOWAN,NC,34200,37041,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,NC,34210,37043,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CLEVELAND,NC,34220,37045,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBUS,NC,34230,37047,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CRAVEN,NC,34240,37049,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,NC,34250,37051,2560,,"FAYETTEVILLE, NC",22180,"Fayetteville, NC",22180,"Fayetteville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-CURRITUCK,NC,34251,37053,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-DARE,NC,34270,37055,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIDSON,NC,34280,37057,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIE,NC,34290,37059,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",49180,"Winston-Salem, NC",49180,"Winston-Salem, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-DUPLIN,NC,34300,37061,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-DURHAM,NC,34310,37063,6640,L,"RALEIGH-DURHAM-CHAPEL HILL, NC",20500,"Durham, NC",20500,"Durham-Chapel Hill, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-EDGECOMBE,NC,34320,37065,6895,,"ROCKY MOUNT, NC",40580,"Rocky Mount, NC",40580,"Rocky Mount, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-FORSYTH,NC,34330,37067,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",49180,"Winston-Salem, NC",49180,"Winston-Salem, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,NC,34340,37069,6640,L,"RALEIGH-DURHAM-CHAPEL HILL, NC",39580,"Raleigh-Cary, NC",39580,"Raleigh-Cary, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-GASTON,NC,34350,37071,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-GATES,NC,34360,37073,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-GRAHAM,NC,34370,37075,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-GRANVILLE,NC,34380,37077,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,NC,34390,37079,34,,NORTH CAROLINA,24780,"Greenville, NC",24780,"Greenville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-GUILFORD,NC,34400,37081,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",24660,"Greensboro-High Point, NC",24660,"Greensboro-High Point, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-HALIFAX,NC,34410,37083,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-HARNETT,NC,34420,37085,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-HAYWOOD,NC,34430,37087,34,,NORTH CAROLINA,11700,"Asheville, NC",11700,"Asheville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-HENDERSON,NC,34440,37089,34,,NORTH CAROLINA,11700,"Asheville, NC",11700,"Asheville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-HERTFORD,NC,34450,37091,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-HOKE,NC,34460,37093,34,,NORTH CAROLINA,22180,"Fayetteville, NC",22180,"Fayetteville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-HYDE,NC,34470,37095,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-IREDELL,NC,34480,37097,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,NC,34490,37099,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSTON,NC,34500,37101,6640,L,"RALEIGH-DURHAM-CHAPEL HILL, NC",39580,"Raleigh-Cary, NC",39580,"Raleigh-Cary, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-JONES,NC,34510,37103,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,NC,34520,37105,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-LENOIR,NC,34530,37107,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,NC,34540,37109,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MC DOWELL,NC,34550,37111,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MACON,NC,34560,37113,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,NC,34570,37115,480,,"ASHEVILLE, NC",11700,"Asheville, NC",11700,"Asheville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MARTIN,NC,34580,37117,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MECKLENBURG,NC,34590,37119,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MITCHELL,NC,34600,37121,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,NC,34610,37123,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-MOORE,NC,34620,37125,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-NASH,NC,34630,37127,6895,,"ROCKY MOUNT, NC",40580,"Rocky Mount, NC",40580,"Rocky Mount, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-NEW HANOVER,NC,34640,37129,9200,,"WILMINGTON, NC",48900,"Wilmington, NC",48900,"Wilmington, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-NORTHAMPTON,NC,34650,37131,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ONSLOW,NC,34660,37133,3605,,"JACKSONVILLE, NC",27340,"Jacksonville, NC",27340,"Jacksonville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,NC,34670,37135,6640,L,"RALEIGH-DURHAM-CHAPEL HILL, NC",20500,"Durham, NC",20500,"Durham-Chapel Hill, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-PAMLICO,NC,34680,37137,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-PASQUOTANK,NC,34690,37139,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-PENDER,NC,34700,37141,34,,NORTH CAROLINA,48900,"Wilmington, NC",48900,"Wilmington, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-PERQUIMANS,NC,34710,37143,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-PERSON,NC,34720,37145,34,,NORTH CAROLINA,20500,"Durham, NC",20500,"Durham-Chapel Hill, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-PITT,NC,34730,37147,3150,,"GREENVILLE, NC",24780,"Greenville, NC",24780,"Greenville, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,NC,34740,37149,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,NC,34750,37151,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",24660,"Greensboro-High Point, NC",24660,"Greensboro-High Point, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-RICHMOND,NC,34760,37153,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ROBESON,NC,34770,37155,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKINGHAM,NC,34780,37157,34,,NORTH CAROLINA,24660,"Greensboro-High Point, NC",24660,"Greensboro-High Point, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ROWAN,NC,34790,37159,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-RUTHERFORD,NC,34800,37161,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-SAMPSON,NC,34810,37163,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTLAND,NC,34820,37165,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-STANLY,NC,34830,37167,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-STOKES,NC,34840,37169,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",49180,"Winston-Salem, NC",49180,"Winston-Salem, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-SURRY,NC,34850,37171,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-SWAIN,NC,34860,37173,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-TRANSYLVANIA,NC,34870,37175,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-TYRRELL,NC,34880,37177,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,NC,34890,37179,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-VANCE,NC,34900,37181,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-WAKE,NC,34910,37183,6640,L,"RALEIGH-DURHAM-CHAPEL HILL, NC",39580,"Raleigh-Cary, NC",39580,"Raleigh-Cary, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,NC,34920,37185,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,NC,34930,37187,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-WATAUGA,NC,34940,37189,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,NC,34950,37191,2980,,"GOLDSBORO, NC",24140,"Goldsboro, NC",24140,"Goldsboro, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-WILKES,NC,34960,37193,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-WILSON,NC,34970,37195,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-YADKIN,NC,34980,37197,3120,L,"GREENSBORO--WINSTON-SALEM--HIGH POINT, NC",49180,"Winston-Salem, NC",49180,"Winston-Salem, NC",34,37,2005,2011,2012,2013,2014,2015,2016,2017
-YANCEY,NC,34981,37199,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,NC,34999,37990,34,,NORTH CAROLINA,,,,,34,37,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,ND,35000,38001,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-BARNES,ND,35010,38003,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-BENSON,ND,35020,38005,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-BILLINGS,ND,35030,38007,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-BOTTINEAU,ND,35040,38009,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-BOWMAN,ND,35050,38011,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-BURKE,ND,35060,38013,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-BURLEIGH,ND,35070,38015,1010,,"BISMARCK, ND",13900,"Bismarck, ND",13900,"Bismarck, ND",35,38,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,ND,35080,38017,2520,,"FARGO-MOORHEAD, ND-MN",22020,"Fargo, ND-MN",22020,"Fargo, ND-MN",35,38,2005,2011,2012,2013,2014,2015,2016,2017
-CAVALIER,ND,35090,38019,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-DICKEY,ND,35100,38021,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-DIVIDE,ND,35110,38023,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-DUNN,ND,35120,38025,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-EDDY,ND,35130,38027,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-EMMONS,ND,35140,38029,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-FOSTER,ND,35150,38031,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-GOLDEN VALLEY,ND,35160,38033,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-GRAND FORKS,ND,35170,38035,2985,,"GRAND FORKS, ND-MN",24220,"Grand Forks, ND-MN",24220,"Grand Forks, ND-MN",35,38,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,ND,35180,38037,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-GRIGGS,ND,35190,38039,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-HETTINGER,ND,35200,38041,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-KIDDER,ND,35210,38043,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-LA MOURE,ND,35220,38045,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,ND,35230,38047,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-MCHENRY,ND,35240,38049,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-MCINTOSH,ND,35250,38051,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-MCKENZIE,ND,35260,38053,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-MCLEAN,ND,35270,38055,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,ND,35280,38057,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-MORTON,ND,35290,38059,1010,,"BISMARCK, ND",13900,"Bismarck, ND",13900,"Bismarck, ND",35,38,2005,2011,2012,2013,2014,2015,2016,2017
-MOUNTRAIL,ND,35300,38061,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-NELSON,ND,35310,38063,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-OLIVER,ND,35320,38065,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-PEMBINA,ND,35330,38067,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-PIERCE,ND,35340,38069,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-RAMSEY,ND,35350,38071,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-RANSOM,ND,35360,38073,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-RENVILLE,ND,35370,38075,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-RICHLAND,ND,35380,38077,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-ROLETTE,ND,35390,38079,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-SARGENT,ND,35400,38081,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-SHERIDAN,ND,35410,38083,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-SIOUX,ND,35420,38085,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-SLOPE,ND,35430,38087,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-STARK,ND,35440,38089,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-STEELE,ND,35450,38091,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-STUTSMAN,ND,35460,38093,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-TOWNER,ND,35470,38095,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-TRAILL,ND,35480,38097,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-WALSH,ND,35490,38099,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-WARD,ND,35500,38101,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-WELLS,ND,35510,38103,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-WILLIAMS,ND,35520,38105,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,ND,35999,38990,35,,NORTH DAKOTA,,,,,35,38,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,OH,36000,39001,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEN,OH,36010,39003,4320,,"LIMA, OH",30620,"Lima, OH",30620,"Lima, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-ASHLAND,OH,36020,39005,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-ASHTABULA,OH,36030,39007,1680,L,"CLEVELAND-LORAIN-ELYRIA, OH",,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-ATHENS,OH,36040,39009,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-AUGLAIZE,OH,36050,39011,4320,,"LIMA, OH",,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-BELMONT,OH,36060,39013,9000,,"WHEELING, WV-OH",48540,"Wheeling, WV-OH",48540,"Wheeling, WV-OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,OH,36070,39015,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,OH,36080,39017,3200,,"HAMILTON-MIDDLETOWN, OH",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,OH,36090,39019,1320,,"CANTON-MASSILLON, OH",15940,"Canton-Massillon, OH",15940,"Canton-Massillon, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-CHAMPAIGN,OH,36100,39021,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,OH,36110,39023,2000,,"DAYTON-SPRINGFIELD, OH",44220,"Springfield, OH",44220,"Springfield, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-CLERMONT,OH,36120,39025,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,OH,36130,39027,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIANA,OH,36140,39029,9320,,"YOUNGSTOWN-WARREN, OH",,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-COSHOCTON,OH,36150,39031,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,OH,36160,39033,4800,,"MANSFIELD, OH",,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-CUYAHOGA,OH,36170,39035,1680,L,"CLEVELAND-LORAIN-ELYRIA, OH",17460,"Cleveland-Elyria-Mentor, OH",17460,"Cleveland-Elyria-Mentor, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-DARKE,OH,36190,39037,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-DEFIANCE,OH,36200,39039,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-DELAWARE,OH,36210,39041,1840,L,"COLUMBUS, OH",18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-ERIE,OH,36220,39043,36,,OHIO,41780,"Sandusky, OH",41780,"Sandusky, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-FAIRFIELD,OH,36230,39045,1840,L,"COLUMBUS, OH",18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,OH,36240,39047,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,OH,36250,39049,1840,L,"COLUMBUS, OH",18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,OH,36260,39051,8400,,"TOLEDO, OH",45780,"Toledo, OH",45780,"Toledo, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-GALLIA,OH,36270,39053,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-GEAUGA,OH,36280,39055,1680,L,"CLEVELAND-LORAIN-ELYRIA, OH",17460,"Cleveland-Elyria-Mentor, OH",17460,"Cleveland-Elyria-Mentor, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,OH,36290,39057,2000,,"DAYTON-SPRINGFIELD, OH",19380,"Dayton, OH",19380,"Dayton, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-GUERNSEY,OH,36300,39059,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,OH,36310,39061,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,OH,36330,39063,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HARDIN,OH,36340,39065,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,OH,36350,39067,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,OH,36360,39069,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HIGHLAND,OH,36370,39071,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HOCKING,OH,36380,39073,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HOLMES,OH,36390,39075,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-HURON,OH,36400,39077,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,OH,36410,39079,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,OH,36420,39081,8080,,"STEUBENVILLE-WEIRTON, OH-WV",48260,"Weirton-Steubenville, WV-OH",44600,"Steubenville-Weirton, OH-WV",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,OH,36430,39083,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,OH,36440,39085,1680,L,"CLEVELAND-LORAIN-ELYRIA, OH",17460,"Cleveland-Elyria-Mentor, OH",17460,"Cleveland-Elyria-Mentor, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,OH,36450,39087,3400,,"HUNTINGTON-ASHLAND, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-LICKING,OH,36460,39089,1840,L,"COLUMBUS, OH",18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,OH,36470,39091,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-LORAIN,OH,36480,39093,1680,L,"CLEVELAND-LORAIN-ELYRIA, OH",17460,"Cleveland-Elyria-Mentor, OH",17460,"Cleveland-Elyria-Mentor, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-LUCAS,OH,36490,39095,8400,,"TOLEDO, OH",45780,"Toledo, OH",45780,"Toledo, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,OH,36500,39097,1840,L,"COLUMBUS, OH",18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MAHONING,OH,36510,39099,9320,,"YOUNGSTOWN-WARREN, OH",49660,"Youngstown-Warren-Boardman, OH-PA",49660,"Youngstown-Warren-Boardman, OH-PA",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,OH,36520,39101,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MEDINA,OH,36530,39103,1680,L,"CLEVELAND-LORAIN-ELYRIA, OH",17460,"Cleveland-Elyria-Mentor, OH",17460,"Cleveland-Elyria-Mentor, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MEIGS,OH,36540,39105,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,OH,36550,39107,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MIAMI,OH,36560,39109,2000,,"DAYTON-SPRINGFIELD, OH",19380,"Dayton, OH",19380,"Dayton, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,OH,36570,39111,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,OH,36580,39113,2000,,"DAYTON-SPRINGFIELD, OH",19380,"Dayton, OH",19380,"Dayton, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,OH,36590,39115,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MORROW,OH,36600,39117,36,,OHIO,18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-MUSKINGUM,OH,36610,39119,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-NOBLE,OH,36620,39121,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-OTTAWA,OH,36630,39123,36,,OHIO,45780,"Toledo, OH",45780,"Toledo, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-PAULDING,OH,36640,39125,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,OH,36650,39127,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-PICKAWAY,OH,36660,39129,1840,L,"COLUMBUS, OH",18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,OH,36670,39131,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-PORTAGE,OH,36680,39133,80,,"AKRON, OH",10420,"Akron, OH",10420,"Akron, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-PREBLE,OH,36690,39135,36,,OHIO,19380,"Dayton, OH",19380,"Dayton, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,OH,36700,39137,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-RICHLAND,OH,36710,39139,4800,,"MANSFIELD, OH",31900,"Mansfield, OH",31900,"Mansfield, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-ROSS,OH,36720,39141,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-SANDUSKY,OH,36730,39143,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-SCIOTO,OH,36740,39145,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-SENECA,OH,36750,39147,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,OH,36760,39149,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-STARK,OH,36770,39151,1320,,"CANTON-MASSILLON, OH",15940,"Canton-Massillon, OH",15940,"Canton-Massillon, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-SUMMIT,OH,36780,39153,80,,"AKRON, OH",10420,"Akron, OH",10420,"Akron, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-TRUMBULL,OH,36790,39155,9320,,"YOUNGSTOWN-WARREN, OH",49660,"Youngstown-Warren-Boardman, OH-PA",49660,"Youngstown-Warren-Boardman, OH-PA",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-TUSCARAWAS,OH,36800,39157,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,OH,36810,39159,36,,OHIO,18140,"Columbus, OH",18140,"Columbus, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-VAN WERT,OH,36820,39161,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-VINTON,OH,36830,39163,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,OH,36840,39165,1640,L,"CINCINNATI, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",17140,"Cincinnati-Middletown, OH-KY-IN",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,OH,36850,39167,6020,,"PARKERSBURG-MARIETTA, WV-OH",37620,"Parkersburg-Marietta, WV-OH",37620,"Parkersburg-Marietta-Vienna, WV-OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,OH,36860,39169,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-WILLIAMS,OH,36870,39171,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-WOOD,OH,36880,39173,8400,,"TOLEDO, OH",45780,"Toledo, OH",45780,"Toledo, OH",36,39,2005,2011,2012,2013,2014,2015,2016,2017
-WYANDOT,OH,36890,39175,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,OH,36999,39990,36,,OHIO,,,,,36,39,2005,2011,2012,2013,2014,2015,2016,2017
-ADAIR,OK,37000,40001,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-ALFALFA,OK,37010,40003,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-ATOKA,OK,37020,40005,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-BEAVER,OK,37030,40007,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-BECKHAM,OK,37040,40009,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-BLAINE,OK,37050,40011,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-BRYAN,OK,37060,40013,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CADDO,OK,37070,40015,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CANADIAN,OK,37080,40017,5880,L,"OKLAHOMA CITY, OK",36420,"Oklahoma City, OK",36420,"Oklahoma City, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CARTER,OK,37090,40019,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,OK,37100,40021,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CHOCTAW,OK,37110,40023,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CIMARRON,OK,37120,40025,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CLEVELAND,OK,37130,40027,5880,L,"OKLAHOMA CITY, OK",36420,"Oklahoma City, OK",36420,"Oklahoma City, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-COAL,OK,37140,40029,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-COMANCHE,OK,37150,40031,4200,,"LAWTON, OK",30020,"Lawton, OK",30020,"Lawton, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-COTTON,OK,37160,40033,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CRAIG,OK,37170,40035,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CREEK,OK,37180,40037,8560,,"TULSA, OK",46140,"Tulsa, OK",46140,"Tulsa, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-CUSTER,OK,37190,40039,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-DELAWARE,OK,37200,40041,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-DEWEY,OK,37210,40043,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-ELLIS,OK,37220,40045,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-GARFIELD,OK,37230,40047,2340,,"ENID, OK",21420,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-GARVIN,OK,37240,40049,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-GRADY,OK,37250,40051,37,,OKLAHOMA,36420,"Oklahoma City, OK",36420,"Oklahoma City, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,OK,37260,40053,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-GREER,OK,37270,40055,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-HARMON,OK,37280,40057,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-HARPER,OK,37290,40059,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-HASKELL,OK,37300,40061,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-HUGHES,OK,37310,40063,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,OK,37320,40065,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,OK,37330,40067,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSTON,OK,37340,40069,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-KAY,OK,37350,40071,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-KINGFISHER,OK,37360,40073,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-KIOWA,OK,37370,40075,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-LATIMER,OK,37380,40077,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-LE FLORE,OK,37390,40079,37,,OKLAHOMA,22900,"Fort Smith, AR-OK",22900,"Fort Smith, AR-OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,OK,37400,40081,37,,OKLAHOMA,36420,"Oklahoma City, OK",36420,"Oklahoma City, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,OK,37410,40083,5880,L,"OKLAHOMA CITY, OK",36420,"Oklahoma City, OK",36420,"Oklahoma City, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-LOVE,OK,37420,40085,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MCCLAIN,OK,37430,40087,5880,L,"OKLAHOMA CITY, OK",36420,"Oklahoma City, OK",36420,"Oklahoma City, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MCCURTAIN,OK,37440,40089,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MCINTOSH,OK,37450,40091,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MAJOR,OK,37460,40093,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,OK,37470,40095,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MAYES,OK,37480,40097,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MURRAY,OK,37490,40099,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-MUSKOGEE,OK,37500,40101,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-NOBLE,OK,37510,40103,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-NOWATA,OK,37520,40105,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-OKFUSKEE,OK,37530,40107,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-OKLAHOMA,OK,37540,40109,5880,L,"OKLAHOMA CITY, OK",36420,"Oklahoma City, OK",36420,"Oklahoma City, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-OKMULGEE,OK,37550,40111,37,,OKLAHOMA,46140,"Tulsa, OK",46140,"Tulsa, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-OSAGE,OK,37560,40113,8560,,"TULSA, OK",46140,"Tulsa, OK",46140,"Tulsa, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-OTTAWA,OK,37570,40115,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-PAWNEE,OK,37580,40117,37,,OKLAHOMA,46140,"Tulsa, OK",46140,"Tulsa, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-PAYNE,OK,37590,40119,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-PITTSBURG,OK,37600,40121,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-PONTOTOC,OK,37610,40123,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-POTTAWATOMIE,OK,37620,40125,5880,L,"OKLAHOMA CITY, OK",,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-PUSHMATAHA,OK,37630,40127,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-ROGER MILLS,OK,37640,40129,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-ROGERS,OK,37650,40131,8560,,"TULSA, OK",46140,"Tulsa, OK",46140,"Tulsa, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-SEMINOLE,OK,37660,40133,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-SEQUOYAH,OK,37670,40135,2720,,"FORT SMITH, AR-OK",22900,"Fort Smith, AR-OK",22900,"Fort Smith, AR-OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-STEPHENS,OK,37680,40137,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-TEXAS,OK,37690,40139,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-TILLMAN,OK,37700,40141,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-TULSA,OK,37710,40143,8560,,"TULSA, OK",46140,"Tulsa, OK",46140,"Tulsa, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-WAGONER,OK,37720,40145,8560,,"TULSA, OK",46140,"Tulsa, OK",46140,"Tulsa, OK",37,40,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,OK,37730,40147,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-WASHITA,OK,37740,40149,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-WOODS,OK,37750,40151,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-WOODWARD,OK,37760,40153,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,OK,37999,40990,37,,OKLAHOMA,,,,,37,40,2005,2011,2012,2013,2014,2015,2016,2017
-BAKER,OR,38000,41001,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,OR,38010,41003,1890,,"CORVALLIS, OR",18700,"Corvallis, OR",18700,"Corvallis, OR",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-CLACKAMAS,OR,38020,41005,6440,L,"PORTLAND-VANCOUVER,OR-WA",38900,"Portland-Vancouver-Beaverton, OR-WA",38900,"Portland-Vancouver-Hillsboro, OR-WA",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-CLATSOP,OR,38030,41007,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,OR,38040,41009,6440,L,"PORTLAND-VANCOUVER,OR-WA",38900,"Portland-Vancouver-Beaverton, OR-WA",38900,"Portland-Vancouver-Hillsboro, OR-WA",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-COOS,OR,38050,41011,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-CROOK,OR,38060,41013,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-CURRY,OR,38070,41015,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-DESCHUTES,OR,38080,41017,38,,OREGON,13460,"Bend, OR",13460,"Bend, OR",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,OR,38090,41019,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-GILLIAM,OR,38100,41021,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,OR,38110,41023,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-HARNEY,OR,38120,41025,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-HOOD RIVER,OR,38130,41027,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,OR,38140,41029,4890,,"MEDFORD-ASHLAND, OR",32780,"Medford, OR",32780,"Medford, OR",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,OR,38150,41031,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-JOSEPHINE,OR,38160,41033,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-KLAMATH,OR,38170,41035,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,OR,38180,41037,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-LANE,OR,38190,41039,2400,,"EUGENE-SPRINGFIELD, OR",21660,"Eugene-Springfield, OR",21660,"Eugene-Springfield, OR",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,OR,38200,41041,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-LINN,OR,38210,41043,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-MALHEUR,OR,38220,41045,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,OR,38230,41047,7080,,"SALEM, OR",41420,"Salem, OR",41420,"Salem, OR",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-MORROW,OR,38240,41049,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-MULTNOMAH,OR,38250,41051,6440,L,"PORTLAND-VANCOUVER,OR-WA",38900,"Portland-Vancouver-Beaverton, OR-WA",38900,"Portland-Vancouver-Hillsboro, OR-WA",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,OR,38260,41053,7080,,"SALEM, OR",41420,"Salem, OR",41420,"Salem, OR",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-SHERMAN,OR,38270,41055,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-TILLAMOOK,OR,38280,41057,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-UMATILLA,OR,38290,41059,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,OR,38300,41061,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-WALLOWA,OR,38310,41063,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-WASCO,OR,38320,41065,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,OR,38330,41067,6440,L,"PORTLAND-VANCOUVER,OR-WA",38900,"Portland-Vancouver-Beaverton, OR-WA",38900,"Portland-Vancouver-Hillsboro, OR-WA",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-WHEELER,OR,38340,41069,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-YAMHILL,OR,38350,41071,6440,L,"PORTLAND-VANCOUVER,OR-WA",38900,"Portland-Vancouver-Beaverton, OR-WA",38900,"Portland-Vancouver-Hillsboro, OR-WA",38,41,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,OR,38999,41990,38,,OREGON,,,,,38,41,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,PA,39000,42001,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEGHENY,PA,39010,42003,6280,L,"PITTSBURGH, PA",38300,"Pittsburgh, PA",38300,"Pittsburgh, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-ARMSTRONG,PA,39070,42005,39,,PENNSYLVANIA,38300,"Pittsburgh, PA",38300,"Pittsburgh, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BEAVER,PA,39080,42007,6280,L,"PITTSBURGH, PA",38300,"Pittsburgh, PA",38300,"Pittsburgh, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BEDFORD,PA,39100,42009,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BERKS,PA,39110,42011,6680,,"READING, PA",39740,"Reading, PA",39740,"Reading, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BLAIR,PA,39120,42013,280,,"ALTOONA, PA",11020,"Altoona, PA",11020,"Altoona, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BRADFORD,PA,39130,42015,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BUCKS,PA,39140,42017,6160,L,"PHILADELPHIA, PA-NJ",37964,"Philadelphia, PA",37964,"Philadelphia, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BUTLER,PA,39150,42019,6280,L,"PITTSBURGH, PA",38300,"Pittsburgh, PA",38300,"Pittsburgh, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CAMBRIA,PA,39160,42021,3680,,"JOHNSTOWN, PA",27780,"Johnstown, PA",27780,"Johnstown, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CAMERON,PA,39180,42023,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CARBON,PA,39190,42025,240,,"ALLENTOWN-BETHLEHEM-EASTON, PA",10900,"Allentown-Bethlehem-Easton, PA-NJ",10900,"Allentown-Bethlehem-Easton, PA-NJ",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CENTRE,PA,39200,42027,8050,,"STATE COLLEGE, PA",44300,"State College, PA",44300,"State College, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CHESTER,PA,39210,42029,6160,L,"PHILADELPHIA, PA-NJ",37964,"Philadelphia, PA",37964,"Philadelphia, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CLARION,PA,39220,42031,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CLEARFIELD,PA,39230,42033,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CLINTON,PA,39240,42035,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,PA,39250,42037,7560,,"SCRANTON-WILKES-BARRE-HAZLETON, PA",,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,PA,39260,42039,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,PA,39270,42041,3240,,"HARRISBURG-LEBANON-CARLISLE, PA",25420,"Harrisburg-Carlisle, PA",25420,"Harrisburg-Carlisle, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-DAUPHIN,PA,39280,42043,3240,,"HARRISBURG-LEBANON-CARLISLE, PA",25420,"Harrisburg-Carlisle, PA",25420,"Harrisburg-Carlisle, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-DELAWARE,PA,39290,42045,6160,L,"PHILADELPHIA, PA-NJ",37964,"Philadelphia, PA",37964,"Philadelphia, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-ELK,PA,39310,42047,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-ERIE,PA,39320,42049,2360,,"ERIE, PA",21500,"Erie, PA",21500,"Erie, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,PA,39330,42051,6280,L,"PITTSBURGH, PA",38300,"Pittsburgh, PA",38300,"Pittsburgh, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-FOREST,PA,39340,42053,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,PA,39350,42055,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-FULTON,PA,39360,42057,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,PA,39370,42059,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-HUNTINGDON,PA,39380,42061,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-INDIANA,PA,39390,42063,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,PA,39400,42065,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-JUNIATA,PA,39410,42067,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-LACKAWANNA,PA,39420,42069,7560,,"SCRANTON-WILKES-BARRE-HAZLETON, PA",42540,"Scranton--Wilkes-Barre, PA",42540,"Scranton--Wilkes-Barre, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-LANCASTER,PA,39440,42071,4000,,"LANCASTER, PA",29540,"Lancaster, PA",29540,"Lancaster, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,PA,39450,42073,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-LEBANON,PA,39460,42075,3240,,"HARRISBURG-LEBANON-CARLISLE, PA",30140,"Lebanon, PA",30140,"Lebanon, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-LEHIGH,PA,39470,42077,240,,"ALLENTOWN-BETHLEHEM-EASTON, PA",10900,"Allentown-Bethlehem-Easton, PA-NJ",10900,"Allentown-Bethlehem-Easton, PA-NJ",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-LUZERNE,PA,39480,42079,7560,,"SCRANTON-WILKES-BARRE-HAZLETON, PA",42540,"Scranton--Wilkes-Barre, PA",42540,"Scranton--Wilkes-Barre, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-LYCOMING,PA,39510,42081,9140,,"WILLIAMSPORT, PA",48700,"Williamsport, PA",48700,"Williamsport, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-MC KEAN,PA,39520,42083,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,PA,39530,42085,7610,,"SHARON, PA",49660,"Youngstown-Warren-Boardman, OH-PA",49660,"Youngstown-Warren-Boardman, OH-PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-MIFFLIN,PA,39540,42087,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,PA,39550,42089,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,PA,39560,42091,6160,L,"PHILADELPHIA, PA-NJ",37964,"Philadelphia, PA",37964,"Philadelphia, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-MONTOUR,PA,39580,42093,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-NORTHAMPTON,PA,39590,42095,240,,"ALLENTOWN-BETHLEHEM-EASTON, PA",10900,"Allentown-Bethlehem-Easton, PA-NJ",10900,"Allentown-Bethlehem-Easton, PA-NJ",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-NORTHUMBERLND,PA,39600,42097,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,PA,39610,42099,3240,,"HARRISBURG-LEBANON-CARLISLE, PA",25420,"Harrisburg-Carlisle, PA",25420,"Harrisburg-Carlisle, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-PHILADELPHIA,PA,39620,42101,6160,L,"PHILADELPHIA, PA-NJ",37964,"Philadelphia, PA",37964,"Philadelphia, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-PIKE,PA,39630,42103,5660,,"NEWBURGH, NY-PA",35084,"Newark-Union, NJ-PA",35084,"Newark-Union, NJ-PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-POTTER,PA,39640,42105,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-SCHUYLKILL,PA,39650,42107,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-SNYDER,PA,39670,42109,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-SOMERSET,PA,39680,42111,3680,,"JOHNSTOWN, PA",,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-SULLIVAN,PA,39690,42113,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-SUSQUEHANNA,PA,39700,42115,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-TIOGA,PA,39710,42117,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,PA,39720,42119,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-VENANGO,PA,39730,42121,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,PA,39740,42123,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,PA,39750,42125,6280,L,"PITTSBURGH, PA",38300,"Pittsburgh, PA",38300,"Pittsburgh, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,PA,39760,42127,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-WESTMORELAND,PA,39770,42129,6280,L,"PITTSBURGH, PA",38300,"Pittsburgh, PA",38300,"Pittsburgh, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-WYOMING,PA,39790,42131,7560,,"SCRANTON-WILKES-BARRE-HAZLETON, PA",42540,"Scranton--Wilkes-Barre, PA",42540,"Scranton--Wilkes-Barre, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-YORK,PA,39800,42133,9280,,"YORK, PA",49620,"York-Hanover, PA",49620,"York-Hanover, PA",39,42,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,PA,39999,42990,39,,PENNSYLVANIA,,,,,39,42,2005,2011,2012,2013,2014,2015,2016,2017
-BRISTOL,RI,41000,44001,6483,,"PROVIDENCE-WARWICK-PAWTUCKET, RI",39300,"Providence-New Bedford-Fall River, RI-M",39300,"Providence-New Bedford-Fall River, RI-MA",41,44,2005,2011,2012,2013,2014,2015,2016,2017
-KENT,RI,41010,44003,6483,,"PROVIDENCE-WARWICK-PAWTUCKET, RI",39300,"Providence-New Bedford-Fall River, RI-M",39300,"Providence-New Bedford-Fall River, RI-MA",41,44,2005,2011,2012,2013,2014,2015,2016,2017
-NEWPORT,RI,41020,44005,6483,,"PROVIDENCE-WARWICK-PAWTUCKET, RI",39300,"Providence-New Bedford-Fall River, RI-M",39300,"Providence-New Bedford-Fall River, RI-MA",41,44,2005,2011,2012,2013,2014,2015,2016,2017
-PROVIDENCE,RI,41030,44007,6483,,"PROVIDENCE-WARWICK-PAWTUCKET, RI",39300,"Providence-New Bedford-Fall River, RI-M",39300,"Providence-New Bedford-Fall River, RI-MA",41,44,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,RI,41050,44009,6483,,"PROVIDENCE-WARWICK-PAWTUCKET, RI",39300,"Providence-New Bedford-Fall River, RI-M",39300,"Providence-New Bedford-Fall River, RI-MA",41,44,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,RI,41999,44999,6483,,"PROVIDENCE-WARWICK-PAWTUCKET, RI",,,,,41,44,2005,2011,2012,2013,2014,2015,2016,2017
-ABBEVILLE,SC,42000,45001,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-AIKEN,SC,42010,45003,600,,"AUGUSTA-AIKEN, GA-SC",12260,"Augusta-Richmond County, GA-SC",12260,"Augusta-Richmond County, GA-SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-ALLENDALE,SC,42020,45005,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-ANDERSON,SC,42030,45007,3160,,"GREENVILLE-SPARTANBURG-ANDERSON, SC",11340,"Anderson, SC",11340,"Anderson, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-BAMBERG,SC,42040,45009,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-BARNWELL,SC,42050,45011,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-BEAUFORT,SC,42060,45013,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-BERKELEY,SC,42070,45015,1440,,"CHARLESTON-NORTH CHARLESTON, SC",16700,"Charleston-North Charleston, SC",16700,"Charleston-North Charleston-Summerville, S",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,SC,42080,45017,42,,SOUTH CAROLINA,17900,"Columbia, SC",17900,"Columbia, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLESTON,SC,42090,45019,1440,,"CHARLESTON-NORTH CHARLESTON, SC",16700,"Charleston-North Charleston, SC",16700,"Charleston-North Charleston-Summerville, S",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,SC,42100,45021,3160,,"GREENVILLE-SPARTANBURG-ANDERSON, SC",,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-CHESTER,SC,42110,45023,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-CHESTERFIELD,SC,42120,45025,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-CLARENDON,SC,42130,45027,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-COLLETON,SC,42140,45029,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-DARLINGTON,SC,42150,45031,42,,SOUTH CAROLINA,22500,"Florence, SC",22500,"Florence, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-DILLON,SC,42160,45033,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-DORCHESTER,SC,42170,45035,1440,,"CHARLESTON-NORTH CHARLESTON, SC",16700,"Charleston-North Charleston, SC",16700,"Charleston-North Charleston-Summerville, S",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-EDGEFIELD,SC,42180,45037,600,,"AUGUSTA-AIKEN, GA-SC",12260,"Augusta-Richmond County, GA-SC",12260,"Augusta-Richmond County, GA-SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-FAIRFIELD,SC,42190,45039,42,,SOUTH CAROLINA,17900,"Columbia, SC",17900,"Columbia, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-FLORENCE,SC,42200,45041,2655,,"FLORENCE, SC",22500,"Florence, SC",22500,"Florence, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-GEORGETOWN,SC,42210,45043,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-GREENVILLE,SC,42220,45045,3160,,"GREENVILLE-SPARTANBURG-ANDERSON, SC",24860,"Greenville, SC",24860,"Greenville-Mauldin-Easley, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-GREENWOOD,SC,42230,45047,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-HAMPTON,SC,42240,45049,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-HORRY,SC,42250,45051,5330,,"MYRTLE BEACH, SC",34820,"Myrtle Beach-Conway-North Myrtle Beach,",34820,"Myrtle Beach-North Myrtle Beach-Conway, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,SC,42260,45053,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-KERSHAW,SC,42270,45055,42,,SOUTH CAROLINA,17900,"Columbia, SC",17900,"Columbia, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-LANCASTER,SC,42280,45057,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-LAURENS,SC,42290,45059,42,,SOUTH CAROLINA,24860,"Greenville, SC",24860,"Greenville-Mauldin-Easley, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,SC,42300,45061,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-LEXINGTON,SC,42310,45063,1760,,"COLUMBIA, SC",17900,"Columbia, SC",17900,"Columbia, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-MCCORMICK,SC,42320,45065,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,SC,42330,45067,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-MARLBORO,SC,42340,45069,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-NEWBERRY,SC,42350,45071,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-OCONEE,SC,42360,45073,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGEBURG,SC,42370,45075,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-PICKENS,SC,42380,45077,3160,,"GREENVILLE-SPARTANBURG-ANDERSON, SC",24860,"Greenville, SC",24860,"Greenville-Mauldin-Easley, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-RICHLAND,SC,42390,45079,1760,,"COLUMBIA, SC",17900,"Columbia, SC",17900,"Columbia, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-SALUDA,SC,42400,45081,42,,SOUTH CAROLINA,17900,"Columbia, SC",17900,"Columbia, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-SPARTANBURG,SC,42410,45083,3160,,"GREENVILLE-SPARTANBURG-ANDERSON, SC",43900,"Spartanburg, SC",43900,"Spartanburg, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-SUMTER,SC,42420,45085,8140,,"SUMTER, SC",44940,"Sumter, SC",44940,"Sumter, SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,SC,42430,45087,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-WILLIAMSBURG,SC,42440,45089,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-YORK,SC,42450,45091,1520,L,"CHARLOTTE-GASTONIA-ROCK HILL, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",16740,"Charlotte-Gastonia-Concord, NC-SC",42,45,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,SC,42999,45990,42,,SOUTH CAROLINA,,,,,42,45,2005,2011,2012,2013,2014,2015,2016,2017
-AURORA,SD,43010,46003,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BEADLE,SD,43020,46005,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BENNETT,SD,43030,46007,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BON HOMME,SD,43040,46009,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BROOKINGS,SD,43050,46011,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,SD,43060,46013,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BRULE,SD,43070,46015,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BUFFALO,SD,43080,46017,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-BUTTE,SD,43090,46019,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-CAMPBELL,SD,43100,46021,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLES MIX,SD,43110,46023,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,SD,43120,46025,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,SD,43130,46027,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-CODINGTON,SD,43140,46029,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-CORSON,SD,43150,46031,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-CUSTER,SD,43160,46033,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-DAVISON,SD,43170,46035,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-DAY,SD,43180,46037,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-DEUEL,SD,43190,46039,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-DEWEY,SD,43200,46041,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,SD,43210,46043,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-EDMUNDS,SD,43220,46045,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-FALL RIVER,SD,43230,46047,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-FAULK,SD,43240,46049,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,SD,43250,46051,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-GREGORY,SD,43260,46053,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HAAKON,SD,43270,46055,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HAMLIN,SD,43280,46057,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HAND,SD,43290,46059,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HANSON,SD,43300,46061,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HARDING,SD,43310,46063,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HUGHES,SD,43320,46065,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HUTCHINSON,SD,43330,46067,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-HYDE,SD,43340,46069,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,SD,43350,46071,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-JERAULD,SD,43360,46073,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-JONES,SD,43370,46075,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-KINGSBURY,SD,43380,46077,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,SD,43390,46079,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,SD,43400,46081,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,SD,43410,46083,7760,,"SIOUX FALLS, SD",43620,"Sioux Falls, SD",43620,"Sioux Falls, SD",43,46,2005,2011,2012,2013,2014,2015,2016,2017
-LYMAN,SD,43420,46085,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MC COOK,SD,43430,46087,43,,SOUTH DAKOTA,43620,"Sioux Falls, SD",43620,"Sioux Falls, SD",43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MC PHERSON,SD,43440,46089,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,SD,43450,46091,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MEADE,SD,43460,46093,43,,SOUTH DAKOTA,39660,"Rapid City, SD",39660,"Rapid City, SD",43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MELLETTE,SD,43470,46095,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MINER,SD,43480,46097,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MINNEHAHA,SD,43490,46099,7760,,"SIOUX FALLS, SD",43620,"Sioux Falls, SD",43620,"Sioux Falls, SD",43,46,2005,2011,2012,2013,2014,2015,2016,2017
-MOODY,SD,43500,46101,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-PENNINGTON,SD,43510,46103,6660,,"RAPID CITY, SD",39660,"Rapid City, SD",39660,"Rapid City, SD",43,46,2005,2011,2012,2013,2014,2015,2016,2017
-PERKINS,SD,43520,46105,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-POTTER,SD,43530,46107,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-ROBERTS,SD,43540,46109,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-SANBORN,SD,43550,46111,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-SHANNON,SD,43560,46113,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-SPINK,SD,43570,46115,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-STANLEY,SD,43580,46117,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-SULLY,SD,43590,46119,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-TODD,SD,43600,46121,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-TRIPP,SD,43610,46123,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-TURNER,SD,43620,46125,43,,SOUTH DAKOTA,43620,"Sioux Falls, SD",43620,"Sioux Falls, SD",43,46,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,SD,43630,46127,43,,SOUTH DAKOTA,43580,"Sioux City, IA-NE-SD",43580,"Sioux City, IA-NE-SD",43,46,2005,2011,2012,2013,2014,2015,2016,2017
-WALWORTH,SD,43640,46129,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-WASHABAUGH,SD,43650,46131,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,,,,,,
-YANKTON,SD,43670,46135,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-ZIEBACH,SD,43680,46137,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,SD,43999,46990,43,,SOUTH DAKOTA,,,,,43,46,2005,2011,2012,2013,2014,2015,2016,2017
-ANDERSON,TN,44000,47001,3840,,"KNOXVILLE, TN",28940,"Knoxville, TN",28940,"Knoxville, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-BEDFORD,TN,44010,47003,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,TN,44020,47005,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-BLEDSOE,TN,44030,47007,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-BLOUNT,TN,44040,47009,3840,,"KNOXVILLE, TN",28940,"Knoxville, TN",28940,"Knoxville, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-BRADLEY,TN,44050,47011,44,,TENNESSEE,17420,"Cleveland, TN",17420,"Cleveland, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CAMPBELL,TN,44060,47013,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CANNON,TN,44070,47015,44,,TENNESSEE,34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,TN,44080,47017,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CARTER,TN,44090,47019,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",27740,"Johnson City, TN",27740,"Johnson City, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CHEATHAM,TN,44100,47021,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CHESTER,TN,44110,47023,3580,,"JACKSON, TN",27180,"Jackson, TN",27180,"Jackson, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CLAIBORNE,TN,44120,47025,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,TN,44130,47027,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-COCKE,TN,44140,47029,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-COFFEE,TN,44150,47031,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CROCKETT,TN,44160,47033,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,TN,44170,47035,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIDSON,TN,44180,47037,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-DECATUR,TN,44190,47039,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-DE KALB,TN,44200,47041,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-DICKSON,TN,44210,47043,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-DYER,TN,44220,47045,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,TN,44230,47047,4920,L,"MEMPHIS, TN-AR-MS",32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-FENTRESS,TN,44240,47049,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,TN,44250,47051,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-GIBSON,TN,44260,47053,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-GILES,TN,44270,47055,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-GRAINGER,TN,44280,47057,44,,TENNESSEE,34100,"Morristown, TN",34100,"Morristown, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,TN,44290,47059,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-GRUNDY,TN,44300,47061,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HAMBLEN,TN,44310,47063,44,,TENNESSEE,34100,"Morristown, TN",34100,"Morristown, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,TN,44320,47065,1560,,"CHATTANOOGA, TN-GA",16860,"Chattanooga, TN-GA",16860,"Chattanooga, TN-GA",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,TN,44330,47067,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HARDEMAN,TN,44340,47069,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HARDIN,TN,44350,47071,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HAWKINS,TN,44360,47073,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HAYWOOD,TN,44370,47075,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HENDERSON,TN,44380,47077,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,TN,44390,47079,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HICKMAN,TN,44400,47081,44,,TENNESSEE,34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HOUSTON,TN,44410,47083,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-HUMPHREYS,TN,44420,47085,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,TN,44430,47087,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,TN,44440,47089,44,,TENNESSEE,34100,"Morristown, TN",34100,"Morristown, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,TN,44450,47091,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,TN,44460,47093,3840,,"KNOXVILLE, TN",28940,"Knoxville, TN",28940,"Knoxville, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-LAKE,TN,44470,47095,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-LAUDERDALE,TN,44480,47097,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-LAWRENCE,TN,44490,47099,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS,TN,44500,47101,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,TN,44510,47103,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-LOUDON,TN,44520,47105,3840,,"KNOXVILLE, TN",28940,"Knoxville, TN",28940,"Knoxville, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MC MINN,TN,44530,47107,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MC NAIRY,TN,44540,47109,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MACON,TN,44550,47111,44,,TENNESSEE,34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,TN,44560,47113,3580,,"JACKSON, TN",27180,"Jackson, TN",27180,"Jackson, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,TN,44570,47115,1560,,"CHATTANOOGA, TN-GA",16860,"Chattanooga, TN-GA",16860,"Chattanooga, TN-GA",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,TN,44580,47117,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MAURY,TN,44590,47119,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MEIGS,TN,44600,47121,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,TN,44610,47123,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,TN,44620,47125,1660,,"CLARKSVILLE-HOPKINSVILLE, TN-KY",17300,"Clarksville, TN-KY",17300,"Clarksville, TN-KY",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MOORE,TN,44630,47127,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,TN,44640,47129,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-OBION,TN,44650,47131,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-OVERTON,TN,44660,47133,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-PERRY,TN,44670,47135,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-PICKETT,TN,44680,47137,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,TN,44690,47139,44,,TENNESSEE,17420,"Cleveland, TN",17420,"Cleveland, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,TN,44700,47141,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-RHEA,TN,44710,47143,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-ROANE,TN,44720,47145,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-ROBERTSON,TN,44730,47147,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-RUTHERFORD,TN,44740,47149,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,TN,44750,47151,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-SEQUATCHIE,TN,44760,47153,44,,TENNESSEE,16860,"Chattanooga, TN-GA",16860,"Chattanooga, TN-GA",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-SEVIER,TN,44770,47155,3840,,"KNOXVILLE, TN",,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,TN,44780,47157,4920,L,"MEMPHIS, TN-AR-MS",32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-SMITH,TN,44790,47159,44,,TENNESSEE,34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-STEWART,TN,44800,47161,44,,TENNESSEE,17300,"Clarksville, TN-KY",17300,"Clarksville, TN-KY",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-SULLIVAN,TN,44810,47163,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-SUMNER,TN,44820,47165,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-TIPTON,TN,44830,47167,4920,L,"MEMPHIS, TN-AR-MS",32820,"Memphis, TN-MS-AR",32820,"Memphis, TN-MS-AR",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-TROUSDALE,TN,44840,47169,44,,TENNESSEE,34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-UNICOI,TN,44850,47171,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",27740,"Johnson City, TN",27740,"Johnson City, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-UNION,TN,44860,47173,3840,,"KNOXVILLE, TN",28940,"Knoxville, TN",28940,"Knoxville, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-VAN BUREN,TN,44870,47175,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,TN,44880,47177,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,TN,44890,47179,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",27740,"Johnson City, TN",27740,"Johnson City, TN",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,TN,44900,47181,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-WEAKLEY,TN,44910,47183,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-WHITE,TN,44920,47185,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-WILLIAMSON,TN,44930,47187,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-WILSON,TN,44940,47189,5360,L,"NASHVILLE, TN",34980,"Nashville-Davidson--Murfreesboro, TN",34980,"Nashville-Davidson-Murfreesboro-Franklin,",44,47,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,TN,44999,47990,44,,TENNESSEE,,,,,44,47,2005,2011,2012,2013,2014,2015,2016,2017
-ANDERSON,TX,45000,48001,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ANDREWS,TX,45010,48003,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ANGELINA,TX,45020,48005,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ARANSAS,TX,45030,48007,45,,TEXAS,18580,"Corpus Christi, TX",18580,"Corpus Christi, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ARCHER,TX,45040,48009,9080,,"WICHITA FALLS, TX",48660,"Wichita Falls, TX",48660,"Wichita Falls, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ARMSTRONG,TX,45050,48011,45,,TEXAS,11100,"Amarillo, TX",11100,"Amarillo, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ATASCOSA,TX,45060,48013,45,,TEXAS,41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-AUSTIN,TX,45070,48015,45,,TEXAS,26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BAILEY,TX,45080,48017,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BANDERA,TX,45090,48019,45,,TEXAS,41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BASTROP,TX,45100,48021,640,L,"AUSTIN-SAN MARCOS, TX",12420,"Austin-Round Rock, TX",12420,"Austin-Round Rock-San Marcos, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BAYLOR,TX,45110,48023,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BEE,TX,45113,48025,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BELL,TX,45120,48027,3810,,"KILLEEN-TEMPLE, TX",28660,"Killeen-Temple-Fort Hood, TX",28660,"Killeen-Temple-Fort Hood, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BEXAR,TX,45130,48029,7240,L,"SAN ANTONIO, TX",41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BLANCO,TX,45140,48031,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BORDEN,TX,45150,48033,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BOSQUE,TX,45160,48035,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BOWIE,TX,45170,48037,8360,,"TEXARKANA, TX-TEXARKANA, AR",45500,"Texarkana, TX-Texarkana, AR",45500,"Texarkana, TX-Texarkana, AR",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BRAZORIA,TX,45180,48039,1145,,"BRAZORIA, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BRAZOS,TX,45190,48041,1260,,"BRYAN-COLLEGE STATION, TX",17780,"College Station-Bryan, TX",17780,"College Station-Bryan, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BREWSTER,TX,45200,48043,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BRISCOE,TX,45201,48045,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BROOKS,TX,45210,48047,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,TX,45220,48049,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BURLESON,TX,45221,48051,45,,TEXAS,17780,"College Station-Bryan, TX",17780,"College Station-Bryan, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BURNET,TX,45222,48053,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CALDWELL,TX,45223,48055,640,L,"AUSTIN-SAN MARCOS, TX",12420,"Austin-Round Rock, TX",12420,"Austin-Round Rock-San Marcos, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,TX,45224,48057,45,,TEXAS,47020,"Victoria, TX",47020,"Victoria, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CALLAHAN,TX,45230,48059,45,,TEXAS,10180,"Abilene, TX",10180,"Abilene, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CAMERON,TX,45240,48061,1240,,"BROWNSVILLE-HARLINGEN-SAN BENITO, TX",15180,"Brownsville-Harlingen, TX",15180,"Brownsville-Harlingen, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CAMP,TX,45250,48063,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CARSON,TX,45251,48065,45,,TEXAS,11100,"Amarillo, TX",11100,"Amarillo, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CASS,TX,45260,48067,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CASTRO,TX,45270,48069,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CHAMBERS,TX,45280,48071,3360,L,"HOUSTON, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CHEROKEE,TX,45281,48073,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CHILDRESS,TX,45290,48075,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,TX,45291,48077,45,,TEXAS,48660,"Wichita Falls, TX",48660,"Wichita Falls, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COCHRAN,TX,45292,48079,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COKE,TX,45300,48081,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COLEMAN,TX,45301,48083,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COLLIN,TX,45310,48085,1920,L,"DALLAS, TX",19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COLLINGSWORTH,TX,45311,48087,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COLORADO,TX,45312,48089,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COMAL,TX,45320,48091,7240,L,"SAN ANTONIO, TX",41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COMANCHE,TX,45321,48093,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CONCHO,TX,45330,48095,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COOKE,TX,45340,48097,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CORYELL,TX,45341,48099,3810,,"KILLEEN-TEMPLE, TX",28660,"Killeen-Temple-Fort Hood, TX",28660,"Killeen-Temple-Fort Hood, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-COTTLE,TX,45350,48101,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CRANE,TX,45360,48103,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CROCKETT,TX,45361,48105,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CROSBY,TX,45362,48107,45,,TEXAS,31180,"Lubbock, TX",31180,"Lubbock, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-CULBERSON,TX,45370,48109,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DALLAM,TX,45380,48111,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DALLAS,TX,45390,48113,1920,L,"DALLAS, TX",19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DAWSON,TX,45391,48115,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DEAF SMITH,TX,45392,48117,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DELTA,TX,45400,48119,45,,TEXAS,19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DENTON,TX,45410,48121,1920,L,"DALLAS, TX",19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DE WITT,TX,45420,48123,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DICKENS,TX,45421,48125,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DIMMIT,TX,45430,48127,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DONLEY,TX,45431,48129,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-DUVAL,TX,45440,48131,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-EASTLAND,TX,45450,48133,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ECTOR,TX,45451,48135,5800,,"ODESSA-MIDLAND, TX",36220,"Odessa, TX",36220,"Odessa, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-EDWARDS,TX,45460,48137,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ELLIS,TX,45470,48139,1920,L,"DALLAS, TX",19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-EL PASO,TX,45480,48141,2320,,"EL PASO, TX",21340,"El Paso, TX",21340,"El Paso, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ERATH,TX,45490,48143,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FALLS,TX,45500,48145,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FANNIN,TX,45510,48147,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,TX,45511,48149,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FISHER,TX,45520,48151,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FLOYD,TX,45521,48153,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FOARD,TX,45522,48155,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FORT BEND,TX,45530,48157,3360,L,"HOUSTON, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,TX,45531,48159,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FREESTONE,TX,45540,48161,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-FRIO,TX,45541,48163,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GAINES,TX,45542,48165,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GALVESTON,TX,45550,48167,2920,,"GALVESTON-TEXAS CITY, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GARZA,TX,45551,48169,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GILLESPIE,TX,45552,48171,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GLASSCOCK,TX,45560,48173,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GOLIAD,TX,45561,48175,45,,TEXAS,47020,"Victoria, TX",47020,"Victoria, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GONZALES,TX,45562,48177,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GRAY,TX,45563,48179,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GRAYSON,TX,45564,48181,7640,,"SHERMAN-DENISON, TX",43300,"Sherman-Denison, TX",43300,"Sherman-Denison, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GREGG,TX,45570,48183,4420,,"LONGVIEW-MARSHALL, TX",30980,"Longview, TX",30980,"Longview, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GRIMES,TX,45580,48185,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-GUADALUPE,TX,45581,48187,7240,L,"SAN ANTONIO, TX",41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HALE,TX,45582,48189,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HALL,TX,45583,48191,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HAMILTON,TX,45590,48193,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HANSFORD,TX,45591,48195,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HARDEMAN,TX,45592,48197,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HARDIN,TX,45600,48199,840,,"BEAUMONT-PORT ARTHUR, TX",13140,"Beaumont-Port Arthur, TX",13140,"Beaumont-Port Arthur, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HARRIS,TX,45610,48201,3360,L,"HOUSTON, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,TX,45620,48203,4420,,"LONGVIEW-MARSHALL, TX",,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HARTLEY,TX,45621,48205,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HASKELL,TX,45630,48207,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HAYS,TX,45631,48209,640,L,"AUSTIN-SAN MARCOS, TX",12420,"Austin-Round Rock, TX",12420,"Austin-Round Rock-San Marcos, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HEMPHILL,TX,45632,48211,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HENDERSON,TX,45640,48213,1920,L,"DALLAS, TX",,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HIDALGO,TX,45650,48215,4880,,"MCALLEN-EDINBURG-MISSION, TX",32580,"McAllen-Edinburg-Pharr, TX",32580,"McAllen-Edinburg-Mission, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HILL,TX,45651,48217,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HOCKLEY,TX,45652,48219,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HOOD,TX,45653,48221,2800,L,"FORT WORTH-ARLINGTON, TX",,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HOPKINS,TX,45654,48223,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HOUSTON,TX,45660,48225,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HOWARD,TX,45661,48227,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HUDSPETH,TX,45662,48229,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HUNT,TX,45670,48231,1920,L,"DALLAS, TX",19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-HUTCHINSON,TX,45671,48233,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-IRION,TX,45672,48235,45,,TEXAS,41660,"San Angelo, TX",41660,"San Angelo, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JACK,TX,45680,48237,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,TX,45681,48239,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JASPER,TX,45690,48241,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JEFF DAVIS,TX,45691,48243,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,TX,45700,48245,840,,"BEAUMONT-PORT ARTHUR, TX",13140,"Beaumont-Port Arthur, TX",13140,"Beaumont-Port Arthur, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JIM HOGG,TX,45710,48247,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JIM WELLS,TX,45711,48249,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,TX,45720,48251,2800,L,"FORT WORTH-ARLINGTON, TX",23104,"Fort Worth-Arlington, TX",23104,"Fort Worth-Arlington, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-JONES,TX,45721,48253,45,,TEXAS,10180,"Abilene, TX",10180,"Abilene, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KARNES,TX,45722,48255,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KAUFMAN,TX,45730,48257,1920,L,"DALLAS, TX",19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KENDALL,TX,45731,48259,45,,TEXAS,41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KENEDY,TX,45732,48261,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KENT,TX,45733,48263,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KERR,TX,45734,48265,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KIMBLE,TX,45740,48267,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KING,TX,45741,48269,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KINNEY,TX,45742,48271,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KLEBERG,TX,45743,48273,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-KNOX,TX,45744,48275,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LAMAR,TX,45750,48277,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LAMB,TX,45751,48279,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LAMPASAS,TX,45752,48281,45,,TEXAS,28660,"Killeen-Temple-Fort Hood, TX",28660,"Killeen-Temple-Fort Hood, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LA SALLE,TX,45753,48283,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LAVACA,TX,45754,48285,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,TX,45755,48287,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LEON,TX,45756,48289,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LIBERTY,TX,45757,48291,3360,L,"HOUSTON, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LIMESTONE,TX,45758,48293,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LIPSCOMB,TX,45759,48295,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LIVE OAK,TX,45760,48297,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LLANO,TX,45761,48299,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LOVING,TX,45762,48301,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LUBBOCK,TX,45770,48303,4600,,"LUBBOCK, TX",31180,"Lubbock, TX",31180,"Lubbock, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-LYNN,TX,45771,48305,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MC CULLOCH,TX,45772,48307,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MC LENNAN,TX,45780,48309,8800,,"WACO, TX",47380,"Waco, TX",47380,"Waco, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MC MULLEN,TX,45781,48311,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,TX,45782,48313,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,TX,45783,48315,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MARTIN,TX,45784,48317,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MASON,TX,45785,48319,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MATAGORDA,TX,45790,48321,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MAVERICK,TX,45791,48323,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MEDINA,TX,45792,48325,45,,TEXAS,41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MENARD,TX,45793,48327,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MIDLAND,TX,45794,48329,5800,,"ODESSA-MIDLAND, TX",33260,"Midland, TX",33260,"Midland, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MILAM,TX,45795,48331,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MILLS,TX,45796,48333,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MITCHELL,TX,45797,48335,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MONTAGUE,TX,45800,48337,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,TX,45801,48339,3360,L,"HOUSTON, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MOORE,TX,45802,48341,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MORRIS,TX,45803,48343,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-MOTLEY,TX,45804,48345,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-NACOGDOCHES,TX,45810,48347,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-NAVARRO,TX,45820,48349,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-NEWTON,TX,45821,48351,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-NOLAN,TX,45822,48353,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-NUECES,TX,45830,48355,1880,,"CORPUS CHRISTI, TX",18580,"Corpus Christi, TX",18580,"Corpus Christi, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-OCHILTREE,TX,45831,48357,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-OLDHAM,TX,45832,48359,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,TX,45840,48361,840,,"BEAUMONT-PORT ARTHUR, TX",13140,"Beaumont-Port Arthur, TX",13140,"Beaumont-Port Arthur, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-PALO PINTO,TX,45841,48363,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-PANOLA,TX,45842,48365,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-PARKER,TX,45843,48367,2800,L,"FORT WORTH-ARLINGTON, TX",23104,"Fort Worth-Arlington, TX",23104,"Fort Worth-Arlington, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-PARMER,TX,45844,48369,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-PECOS,TX,45845,48371,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,TX,45850,48373,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-POTTER,TX,45860,48375,320,,"AMARILLO, TX",11100,"Amarillo, TX",11100,"Amarillo, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-PRESIDIO,TX,45861,48377,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-RAINS,TX,45870,48379,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-RANDALL,TX,45871,48381,320,,"AMARILLO, TX",11100,"Amarillo, TX",11100,"Amarillo, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-REAGAN,TX,45872,48383,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-REAL,TX,45873,48385,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-RED RIVER,TX,45874,48387,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-REEVES,TX,45875,48389,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-REFUGIO,TX,45876,48391,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ROBERTS,TX,45877,48393,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ROBERTSON,TX,45878,48395,45,,TEXAS,17780,"College Station-Bryan, TX",17780,"College Station-Bryan, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKWALL,TX,45879,48397,1920,L,"DALLAS, TX",19124,"Dallas-Plano-Irving, TX",19124,"Dallas-Plano-Irving, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-RUNNELS,TX,45880,48399,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-RUSK,TX,45881,48401,45,,TEXAS,30980,"Longview, TX",30980,"Longview, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SABINE,TX,45882,48403,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SAN AUGUSTINE,TX,45883,48405,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SAN JACINTO,TX,45884,48407,45,,TEXAS,26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SAN PATRICIO,TX,45885,48409,1880,,"CORPUS CHRISTI, TX",18580,"Corpus Christi, TX",18580,"Corpus Christi, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SAN SABA,TX,45886,48411,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SCHLEICHER,TX,45887,48413,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SCURRY,TX,45888,48415,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SHACKELFORD,TX,45889,48417,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SHELBY,TX,45890,48419,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SHERMAN,TX,45891,48421,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SMITH,TX,45892,48423,8640,,"TYLER, TX",46340,"Tyler, TX",46340,"Tyler, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SOMERVELL,TX,45893,48425,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-STARR,TX,45900,48427,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-STEPHENS,TX,45901,48429,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-STERLING,TX,45902,48431,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-STONEWALL,TX,45903,48433,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SUTTON,TX,45904,48435,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-SWISHER,TX,45905,48437,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TARRANT,TX,45910,48439,2800,L,"FORT WORTH-ARLINGTON, TX",23104,"Fort Worth-Arlington, TX",23104,"Fort Worth-Arlington, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TAYLOR,TX,45911,48441,40,,"ABILENE, TX",10180,"Abilene, TX",10180,"Abilene, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TERRELL,TX,45912,48443,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TERRY,TX,45913,48445,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-THROCKMORTON,TX,45920,48447,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TITUS,TX,45921,48449,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TOM GREEN,TX,45930,48451,7200,,"SAN ANGELO, TX",41660,"San Angelo, TX",41660,"San Angelo, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TRAVIS,TX,45940,48453,640,L,"AUSTIN-SAN MARCOS, TX",12420,"Austin-Round Rock, TX",12420,"Austin-Round Rock-San Marcos, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TRINITY,TX,45941,48455,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-TYLER,TX,45942,48457,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-UPSHUR,TX,45943,48459,4420,,"LONGVIEW-MARSHALL, TX",30980,"Longview, TX",30980,"Longview, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-UPTON,TX,45944,48461,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-UVALDE,TX,45945,48463,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-VAL VERDE,TX,45946,48465,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-VAN ZANDT,TX,45947,48467,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-VICTORIA,TX,45948,48469,8750,,"VICTORIA, TX",47020,"Victoria, TX",47020,"Victoria, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WALKER,TX,45949,48471,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WALLER,TX,45950,48473,3360,L,"HOUSTON, TX",26420,"Houston-Baytown-Sugar Land, TX",26420,"Houston-Sugar Land-Baytown, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WARD,TX,45951,48475,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,TX,45952,48477,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WEBB,TX,45953,48479,4080,,"LAREDO, TX",29700,"Laredo, TX",29700,"Laredo, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WHARTON,TX,45954,48481,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WHEELER,TX,45955,48483,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WICHITA,TX,45960,48485,9080,,"WICHITA FALLS, TX",48660,"Wichita Falls, TX",48660,"Wichita Falls, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WILBARGER,TX,45961,48487,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WILLACY,TX,45962,48489,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WILLIAMSON,TX,45970,48491,640,L,"AUSTIN-SAN MARCOS, TX",12420,"Austin-Round Rock, TX",12420,"Austin-Round Rock-San Marcos, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WILSON,TX,45971,48493,7240,L,"SAN ANTONIO, TX",41700,"San Antonio, TX",41700,"San Antonio-New Braunfels, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WINKLER,TX,45972,48495,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WISE,TX,45973,48497,45,,TEXAS,23104,"Fort Worth-Arlington, TX",23104,"Fort Worth-Arlington, TX",45,48,2005,2011,2012,2013,2014,2015,2016,2017
-WOOD,TX,45974,48499,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-YOAKUM,TX,45980,48501,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-YOUNG,TX,45981,48503,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ZAPATA,TX,45982,48505,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-ZAVALA,TX,45983,48507,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,TX,45999,48990,45,,TEXAS,,,,,45,48,2005,2011,2012,2013,2014,2015,2016,2017
-BEAVER,UT,46000,49001,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-BOX ELDER,UT,46010,49003,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-CACHE,UT,46020,49005,46,,UTAH,30860,"Logan, UT-ID",30860,"Logan, UT-ID",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-CARBON,UT,46030,49007,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-DAGGETT,UT,46040,49009,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-DAVIS,UT,46050,49011,7160,L,"SALT LAKE CITY-OGDEN, UT",36260,"Ogden-Clearfield, UT",36260,"Ogden-Clearfield, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-DUCHESNE,UT,46060,49013,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-EMERY,UT,46070,49015,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-GARFIELD,UT,46080,49017,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-GRAND,UT,46090,49019,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-IRON,UT,46100,49021,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-JUAB,UT,46110,49023,46,,UTAH,39340,"Provo-Orem, UT",39340,"Provo-Orem, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-KANE,UT,46120,49025,2620,,"FLAGSTAFF, ARIZONA-UTAH",,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-MILLARD,UT,46130,49027,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,UT,46140,49029,46,,UTAH,36260,"Ogden-Clearfield, UT",36260,"Ogden-Clearfield, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-PIUTE,UT,46150,49031,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-RICH,UT,46160,49033,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-SALT LAKE,UT,46170,49035,7160,L,"SALT LAKE CITY-OGDEN, UT",41620,"Salt Lake City, UT",41620,"Salt Lake City, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-SAN JUAN,UT,46180,49037,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-SANPETE,UT,46190,49039,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-SEVIER,UT,46200,49041,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-SUMMIT,UT,46210,49043,46,,UTAH,41620,"Salt Lake City, UT",41620,"Salt Lake City, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-TOOELE,UT,46220,49045,46,,UTAH,41620,"Salt Lake City, UT",41620,"Salt Lake City, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-UINTAH,UT,46230,49047,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-UTAH,UT,46240,49049,6520,,"PROVO-OREM, UT",39340,"Provo-Orem, UT",39340,"Provo-Orem, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-WASATCH,UT,46250,49051,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,UT,46260,49053,46,,UTAH,41100,"St. George, UT",41100,"St. George, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,UT,46270,49055,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-WEBER,UT,46280,49057,7160,L,"SALT LAKE CITY-OGDEN, UT",36260,"Ogden-Clearfield, UT",36260,"Ogden-Clearfield, UT",46,49,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,UT,46999,49990,46,,UTAH,,,,,46,49,2005,2011,2012,2013,2014,2015,2016,2017
-ADDISON,VT,47000,50001,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-BENNINGTON,VT,47010,50003,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-CALEDONIA,VT,47020,50005,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-CHITTENDEN,VT,47030,50007,1303,,"BURLINGTON, VT",15540,"Burlington-South Burlington, VT",15540,"Burlington-South Burlington, VT",47,50,2005,2011,2012,2013,2014,2015,2016,2017
-ESSEX,VT,47040,50009,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,VT,47050,50011,1303,,"BURLINGTON, VT",15540,"Burlington-South Burlington, VT",15540,"Burlington-South Burlington, VT",47,50,2005,2011,2012,2013,2014,2015,2016,2017
-GRAND ISLE,VT,47060,50013,1303,,"BURLINGTON, VT",15540,"Burlington-South Burlington, VT",15540,"Burlington-South Burlington, VT",47,50,2005,2011,2012,2013,2014,2015,2016,2017
-LAMOILLE,VT,47070,50015,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,VT,47080,50017,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-ORLEANS,VT,47090,50019,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-RUTLAND,VT,47100,50021,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,VT,47110,50023,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-WINDHAM,VT,47120,50025,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-WINDSOR,VT,47130,50027,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,VT,47999,50990,47,,VERMONT,,,,,47,50,2005,2011,2012,2013,2014,2015,2016,2017
-ACCOMACK,VA,49000,51001,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ALBEMARLE,VA,49010,51003,1540,,"CHARLOTTESVILLE, VA",16820,"Charlottesville, VA",16820,"Charlottesville, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ALLEGHANY,VA,49020,51005,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-AMELIA,VA,49030,51007,49,,VIRGINIA,40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-AMHERST,VA,49040,51009,4640,,"LYNCHBURG, VA",31340,"Lynchburg, VA",31340,"Lynchburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-APPOMATTOX,VA,49050,51011,49,,VIRGINIA,31340,"Lynchburg, VA",31340,"Lynchburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ARLINGTON,VA,49060,51013,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-AUGUSTA,VA,49070,51015,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BATH,VA,49080,51017,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BEDFORD,VA,49090,51019,4640,,"LYNCHBURG, VA",31340,"Lynchburg, VA",31340,"Lynchburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BLAND,VA,49100,51021,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BOTETOURT,VA,49110,51023,6800,,"ROANOKE, VA",40220,"Roanoke, VA",40220,"Roanoke, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BRUNSWICK,VA,49120,51025,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BUCHANAN,VA,49130,51027,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BUCKINGHAM,VA,49140,51029,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CAMPBELL,VA,49150,51031,4640,,"LYNCHBURG, VA",31340,"Lynchburg, VA",31340,"Lynchburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CAROLINE,VA,49160,51033,49,,VIRGINIA,40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CARROLL,VA,49170,51035,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLES CITY,VA,49180,51036,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLOTTE,VA,49190,51037,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CHESTERFIELD,VA,49200,51041,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CLARKE,VA,49210,51043,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CRAIG,VA,49220,51045,49,,VIRGINIA,40220,"Roanoke, VA",40220,"Roanoke, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CULPEPER,VA,49230,51047,8840,L,"WASHINGTON, DC-MD-VA-WV",,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CUMBERLAND,VA,49240,51049,49,,VIRGINIA,40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-DICKENSON,VA,49250,51051,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-DINWIDDIE,VA,49260,51053,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ESSEX,VA,49280,51057,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FAIRFAX,VA,49290,51059,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FAUQUIER,VA,49300,51061,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FLOYD,VA,49310,51063,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FLUVANNA,VA,49320,51065,1540,,"CHARLOTTESVILLE, VA",16820,"Charlottesville, VA",16820,"Charlottesville, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,VA,49330,51067,49,,VIRGINIA,40220,"Roanoke, VA",40220,"Roanoke, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FREDERICK,VA,49340,51069,49,,VIRGINIA,49020,"Winchester, VA-WV",49020,"Winchester, VA-WV",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-GILES,VA,49350,51071,49,,VIRGINIA,13980,"Blacksburg-Christiansburg-Radford, VA",13980,"Blacksburg-Christiansburg-Radford, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-GLOUCESTER,VA,49360,51073,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-GOOCHLAND,VA,49370,51075,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-GRAYSON,VA,49380,51077,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-GREENE,VA,49390,51079,1540,,"CHARLOTTESVILLE, VA",16820,"Charlottesville, VA",16820,"Charlottesville, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-GREENSVILLE,VA,49400,51081,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HALIFAX,VA,49410,51083,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HANOVER,VA,49420,51085,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HENRICO,VA,49430,51087,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HENRY,VA,49440,51089,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HIGHLAND,VA,49450,51091,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ISLE OF WIGHT,VA,49460,51093,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-JAMES CITY,VA,49470,51095,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-KING AND QUEEN,VA,49480,51097,49,,VIRGINIA,40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-KING GEORGE,VA,49490,51099,8840,L,"WASHINGTON, DC-MD-VA-WV",,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-KING WILLIAM,VA,49500,51101,49,,VIRGINIA,40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-LANCASTER,VA,49510,51103,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-LEE,VA,49520,51105,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-LOUDOUN,VA,49530,51107,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-LOUISA,VA,49540,51109,49,,VIRGINIA,40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-LUNENBURG,VA,49550,51111,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MADISON,VA,49560,51113,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MATHEWS,VA,49570,51115,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MECKLENBURG,VA,49580,51117,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MIDDLESEX,VA,49590,51119,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MONTGOMERY,VA,49600,51121,49,,VIRGINIA,13980,"Blacksburg-Christiansburg-Radford, VA",13980,"Blacksburg-Christiansburg-Radford, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NELSON,VA,49620,51125,49,,VIRGINIA,16820,"Charlottesville, VA",16820,"Charlottesville, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NEW KENT,VA,49621,51127,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NORTHAMPTON,VA,49650,51131,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NORTHUMBERLND,VA,49660,51133,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NOTTOWAY,VA,49670,51135,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ORANGE,VA,49680,51137,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PAGE,VA,49690,51139,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PATRICK,VA,49700,51141,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PITTSYLVANIA,VA,49710,51143,1950,,"DANVILLE, VA",19260,"Danville, VA",19260,"Danville, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-POWHATAN,VA,49720,51145,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PRINCE EDWARD,VA,49730,51147,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PRINCE GEORGE,VA,49740,51149,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PRINCE WILLIAM,VA,49750,51153,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PULASKI,VA,49770,51155,49,,VIRGINIA,13980,"Blacksburg-Christiansburg-Radford, VA",13980,"Blacksburg-Christiansburg-Radford, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-RAPPAHANNOCK,VA,49780,51157,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-RICHMOND,VA,49790,51159,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ROANOKE,VA,49800,51161,6800,,"ROANOKE, VA",40220,"Roanoke, VA",40220,"Roanoke, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKBRIDGE,VA,49810,51163,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ROCKINGHAM,VA,49820,51165,49,,VIRGINIA,25500,"Harrisonburg, VA",25500,"Harrisonburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-RUSSELL,VA,49830,51167,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SCOTT,VA,49840,51169,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SHENANDOAH,VA,49850,51171,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SMYTH,VA,49860,51173,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SOUTHAMPTON,VA,49870,51175,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SPOTSYLVANIA,VA,49880,51177,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-STAFFORD,VA,49890,51179,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SURRY,VA,49900,51181,49,,VIRGINIA,47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SUSSEX,VA,49910,51183,49,,VIRGINIA,40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-TAZEWELL,VA,49920,51185,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WARREN,VA,49930,51187,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,VA,49950,51191,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WESTMORELAND,VA,49960,51193,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WISE,VA,49970,51195,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WYTHE,VA,49980,51197,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-YORK,VA,49981,51199,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ALEXANDRIA CITY,VA,49011,51510,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BEDFORD CITY,VA,49088,51515,4640,,"LYNCHBURG, VA",31340,"Lynchburg, VA",31340,"Lynchburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,
-BRISTOL CITY,VA,49111,51520,3660,,"JOHNSON CITY-KINGSPORT-BRISTOL, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",28700,"Kingsport-Bristol-Bristol, TN-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-BUENA VISTA CITY,VA,49141,51530,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CHARLOTTESVILLE CITY,VA,49191,51540,1540,,"CHARLOTTESVILLE, VA",16820,"Charlottesville, VA",16820,"Charlottesville, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CHESAPEAKE CITY,VA,49194,51550,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-CLIFTON FORGE CITY,VA,49211,51560,49,,VIRGINIA,,,,,49,51,2005,2011,,,,,,
-COLONIAL HEIGHTS CITY,VA,49212,51570,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-COVINGTON CITY,VA,49213,51580,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-DANVILLE CITY,VA,49241,51590,1950,,"DANVILLE, VA",19260,"Danville, VA",19260,"Danville, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-EMPORIA CITY,VA,49270,51595,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FAIRFAX CITY,VA,49288,51600,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FALLS CHURCH CITY,VA,49291,51610,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN CITY,VA,49328,51620,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-FREDERICKSBURG CITY,VA,49342,51630,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-GALAX CITY,VA,49343,51640,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HAMPTON CITY,VA,49411,51650,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISONBURG CITY,VA,49421,51660,49,,VIRGINIA,25500,"Harrisonburg, VA",25500,"Harrisonburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-HOPEWELL CITY,VA,49451,51670,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-LEXINGTON CITY,VA,49522,51678,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-LYNCHBURG CITY,VA,49551,51680,4640,,"LYNCHBURG, VA",31340,"Lynchburg, VA",31340,"Lynchburg, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MANASSAS CITY,VA,49563,51683,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MANASSAS PARK CITY,VA,49565,51685,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-MARTINSVILLE CITY,VA,49561,51690,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NANSEMOND CITY,VA,49610,51695,49,,VIRGINIA,,,,,49,51,2005,2011,,,,,,
-NEWPORT NEWS CITY,VA,49622,51700,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NORFOLK CITY,VA,49641,51710,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-NORTON CITY,VA,49661,51720,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PETERSBURG CITY,VA,49701,51730,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-POQUOSON,VA,49712,51735,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-PORTSMOUTH CITY,VA,49711,51740,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-RADFORD CITY,VA,49771,51750,49,,VIRGINIA,13980,"Blacksburg-Christiansburg-Radford, VA",13980,"Blacksburg-Christiansburg-Radford, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-RICHMOND CITY,VA,49791,51760,6760,,"RICHMOND-PETERSBURG, VA",40060,"Richmond, VA",40060,"Richmond, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ROANOKE CITY,VA,49801,51770,6800,,"ROANOKE, VA",40220,"Roanoke, VA",40220,"Roanoke, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SALEM CITY,VA,49838,51775,6800,,"ROANOKE, VA",40220,"Roanoke, VA",40220,"Roanoke, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SOUTH BOSTON CITY,VA,49867,51780,49,,VIRGINIA,,,,,49,51,2005,2011,,,,,,
-STAUNTON CITY,VA,49891,51790,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-SUFFOLK CITY,VA,49892,51800,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-VIRGINIA BEACH CITY,VA,49921,51810,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNESBORO CITY,VA,49951,51820,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WILLIAMSBURG CITY,VA,49961,51830,5720,L,"NORFOLK-VIRGINIA BEACH-NEWPORT NEWS, VA-NC",47260,"Virginia Beach-Norfolk-Newport News, VA",47260,"Virginia Beach-Norfolk-Newport News, VA",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-WINCHESTER CITY,VA,49962,51840,49,,VIRGINIA,49020,"Winchester, VA-WV",49020,"Winchester, VA-WV",49,51,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,VA,49999,51990,49,,VIRGINIA,,,,,49,51,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,WA,50000,53001,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-ASOTIN,WA,50010,53003,50,,WASHINGTON,30300,"Lewiston, ID-WA",30300,"Lewiston, ID-WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-BENTON,WA,50020,53005,6740,,"RICHLAND-KENNEWICK-PASCO, WA",28420,"Kennewick-Richland-Pasco, WA",28420,"Kennewick-Pasco-Richland, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-CHELAN,WA,50030,53007,50,,WASHINGTON,48300,"Wenatchee, WA",48300,"Wenatchee-East Wenatchee, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-CLALLAM,WA,50040,53009,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,WA,50050,53011,6440,L,"PORTLAND-VANCOUVER,OR-WA",38900,"Portland-Vancouver-Beaverton, OR-WA",38900,"Portland-Vancouver-Hillsboro, OR-WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,WA,50060,53013,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-COWLITZ,WA,50070,53015,50,,WASHINGTON,31020,"Longview, WA",31020,"Longview, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,WA,50080,53017,50,,WASHINGTON,48300,"Wenatchee, WA",48300,"Wenatchee-East Wenatchee, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-FERRY,WA,50090,53019,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-FRANKLIN,WA,50100,53021,6740,,"RICHLAND-KENNEWICK-PASCO, WA",28420,"Kennewick-Richland-Pasco, WA",28420,"Kennewick-Pasco-Richland, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-GARFIELD,WA,50110,53023,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,WA,50120,53025,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-GRAYS HARBOR,WA,50130,53027,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-ISLAND,WA,50140,53029,7600,L,"SEATTLE-BELLEVUE-EVERETT, WA",,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,WA,50150,53031,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-KING,WA,50160,53033,7600,L,"SEATTLE-BELLEVUE-EVERETT, WA",42644,"Seattle-Bellevue-Everett, WA",42644,"Seattle-Bellevue-Everett, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-KITSAP,WA,50170,53035,1150,,"BREMERTON, WA",14740,"Bremerton-Silverdale, WA",14740,"Bremerton-Silverdale, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-KITTITAS,WA,50180,53037,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-KLICKITAT,WA,50190,53039,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS,WA,50200,53041,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,WA,50210,53043,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-MASON,WA,50220,53045,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-OKANOGAN,WA,50230,53047,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-PACIFIC,WA,50240,53049,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-PEND OREILLE,WA,50250,53051,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-PIERCE,WA,50260,53053,8200,,"TACOMA, WA",45104,"Tacoma, WA",45104,"Tacoma, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-SAN JUAN,WA,50270,53055,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-SKAGIT,WA,50280,53057,50,,WASHINGTON,34580,"Mount Vernon-Anacortes, WA a",34580,"Mount Vernon-Anacortes, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-SKAMANIA,WA,50290,53059,50,,WASHINGTON,38900,"Portland-Vancouver-Beaverton, OR-WA",38900,"Portland-Vancouver-Hillsboro, OR-WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-SNOHOMISH,WA,50300,53061,7600,L,"SEATTLE-BELLEVUE-EVERETT, WA",42644,"Seattle-Bellevue-Everett, WA",42644,"Seattle-Bellevue-Everett, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-SPOKANE,WA,50310,53063,7840,,"SPOKANE, WA",44060,"Spokane, WA",44060,"Spokane, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-STEVENS,WA,50320,53065,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-THURSTON,WA,50330,53067,5910,,"OLYMPIA, WA",36500,"Olympia, WA",36500,"Olympia, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-WAHKIAKUM,WA,50340,53069,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-WALLA WALLA,WA,50350,53071,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-WHATCOM,WA,50360,53073,860,,"BELLINGHAM, WA",13380,"Bellingham, WA",13380,"Bellingham, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-WHITMAN,WA,50370,53075,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-YAKIMA,WA,50380,53077,9260,,"YAKIMA, WA",49420,"Yakima, WA",49420,"Yakima, WA",50,53,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,WA,50999,53990,50,,WASHINGTON,,,,,50,53,2005,2011,2012,2013,2014,2015,2016,2017
-BARBOUR,WV,51000,54001,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-BERKELEY,WV,51010,54003,8840,L,"WASHINGTON, DC-MD-VA-WV",25180,"Hagerstown-Martinsburg, MD-WV",25180,"Hagerstown-Martinsburg, MD-WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-BOONE,WV,51020,54005,51,,WEST VIRGINIA,16620,"Charleston, WV",16620,"Charleston, WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-BRAXTON,WV,51030,54007,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-BROOKE,WV,51040,54009,8080,,"STEUBENVILLE-WEIRTON, OH-WV",48260,"Weirton-Steubenville, WV-OH",44600,"Steubenville-Weirton, OH-WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-CABELL,WV,51050,54011,3400,,"HUNTINGTON-ASHLAND, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-CALHOUN,WV,51060,54013,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-CLAY,WV,51070,54015,51,,WEST VIRGINIA,16620,"Charleston, WV",16620,"Charleston, WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-DODDRIDGE,WV,51080,54017,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-FAYETTE,WV,51090,54019,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-GILMER,WV,51100,54021,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,WV,51110,54023,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-GREENBRIER,WV,51120,54025,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-HAMPSHIRE,WV,51130,54027,51,,WEST VIRGINIA,49020,"Winchester, VA-WV",49020,"Winchester, VA-WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-HANCOCK,WV,51140,54029,8080,,"STEUBENVILLE-WEIRTON, OH-WV",48260,"Weirton-Steubenville, WV-OH",44600,"Steubenville-Weirton, OH-WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-HARDY,WV,51150,54031,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-HARRISON,WV,51160,54033,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,WV,51170,54035,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,WV,51180,54037,8840,L,"WASHINGTON, DC-MD-VA-WV",47894,Washington-Arlington-Alexandria DC-VA,47894,"Washington-Arlington-Alexandria, DC-VA",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-KANAWHA,WV,51190,54039,1480,,"CHARLESTON, WV",16620,"Charleston, WV",16620,"Charleston, WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-LEWIS,WV,51200,54041,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,WV,51210,54043,51,,WEST VIRGINIA,16620,"Charleston, WV",16620,"Charleston, WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-LOGAN,WV,51220,54045,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MC DOWELL,WV,51230,54047,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MARION,WV,51240,54049,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MARSHALL,WV,51250,54051,9000,,"WHEELING, WV-OH",48540,"Wheeling, WV-OH",48540,"Wheeling, WV-OH",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MASON,WV,51260,54053,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MERCER,WV,51270,54055,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MINERAL,WV,51280,54057,1900,,"CUMBERLAND, MD-WV",19060,"Cumberland, MD-WV",19060,"Cumberland, MD-WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MINGO,WV,51290,54059,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MONONGALIA,WV,51300,54061,51,,WEST VIRGINIA,34060,"Morgantown, WV",34060,"Morgantown, WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,WV,51310,54063,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-MORGAN,WV,51320,54065,51,,WEST VIRGINIA,25180,"Hagerstown-Martinsburg, MD-WV",25180,"Hagerstown-Martinsburg, MD-WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-NICHOLAS,WV,51330,54067,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-OHIO,WV,51340,54069,9000,,"WHEELING, WV-OH",48540,"Wheeling, WV-OH",48540,"Wheeling, WV-OH",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-PENDLETON,WV,51350,54071,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-PLEASANTS,WV,51360,54073,51,,WEST VIRGINIA,37620,"Parkersburg-Marietta, WV-OH",37620,"Parkersburg-Marietta-Vienna, WV-OH",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-POCAHONTAS,WV,51370,54075,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-PRESTON,WV,51380,54077,51,,WEST VIRGINIA,34060,"Morgantown, WV",34060,"Morgantown, WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-PUTNAM,WV,51390,54079,1480,,"CHARLESTON, WV",16620,"Charleston, WV",16620,"Charleston, WV",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-RALEIGH,WV,51400,54081,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-RANDOLPH,WV,51410,54083,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-RITCHIE,WV,51420,54085,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-ROANE,WV,51430,54087,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-SUMMERS,WV,51440,54089,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-TAYLOR,WV,51450,54091,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-TUCKER,WV,51460,54093,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-TYLER,WV,51470,54095,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-UPSHUR,WV,51480,54097,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-WAYNE,WV,51490,54099,3400,,"HUNTINGTON-ASHLAND, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",26580,"Huntington-Ashland, WV-KY-OH",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-WEBSTER,WV,51500,54101,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-WETZEL,WV,51510,54103,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-WIRT,WV,51520,54105,51,,WEST VIRGINIA,37620,"Parkersburg-Marietta, WV-OH",37620,"Parkersburg-Marietta-Vienna, WV-OH",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-WOOD,WV,51530,54107,6020,,"PARKERSBURG-MARIETTA, WV-OH",37620,"Parkersburg-Marietta, WV-OH",37620,"Parkersburg-Marietta-Vienna, WV-OH",51,54,2005,2011,2012,2013,2014,2015,2016,2017
-WYOMING,WV,51540,54109,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,WV,51999,54990,51,,WEST VIRGINIA,,,,,51,54,2005,2011,2012,2013,2014,2015,2016,2017
-ADAMS,WI,52000,55001,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-ASHLAND,WI,52010,55003,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-BARRON,WI,52020,55005,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-BAYFIELD,WI,52030,55007,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-BROWN,WI,52040,55009,3080,,"GREEN BAY, WI",24580,"Green Bay, WI",24580,"Green Bay, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-BUFFALO,WI,52050,55011,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-BURNETT,WI,52060,55013,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-CALUMET,WI,52070,55015,460,,"APPLETON-OSHKOSH-NEENAH, WI",11540,"Appleton, WI",11540,"Appleton, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-CHIPPEWA,WI,52080,55017,2290,,"EAU CLAIRE, WI",20740,"Eau Claire, WI",20740,"Eau Claire, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-CLARK,WI,52090,55019,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-COLUMBIA,WI,52100,55021,52,,WISCONSIN,31540,"Madison, WI",31540,"Madison, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-CRAWFORD,WI,52110,55023,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-DANE,WI,52120,55025,4720,,"MADISON, WI",31540,"Madison, WI",31540,"Madison, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-DODGE,WI,52130,55027,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-DOOR,WI,52140,55029,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-DOUGLAS,WI,52150,55031,2240,,"DULUTH-SUPERIOR, MN-WI",20260,"Duluth, MN-WI",20260,"Duluth, MN-WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-DUNN,WI,52160,55033,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-EAU CLAIRE,WI,52170,55035,2290,,"EAU CLAIRE, WI",20740,"Eau Claire, WI",20740,"Eau Claire, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-FLORENCE,WI,52180,55037,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-FOND DU LAC,WI,52190,55039,52,,WISCONSIN,22540,"Fond du Lac, WI",22540,"Fond du Lac, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-FOREST,WI,52200,55041,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-GRANT,WI,52210,55043,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-GREEN,WI,52220,55045,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-GREEN LAKE,WI,52230,55047,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-IOWA,WI,52240,55049,52,,WISCONSIN,31540,"Madison, WI",31540,"Madison, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-IRON,WI,52250,55051,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-JACKSON,WI,52260,55053,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-JEFFERSON,WI,52270,55055,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-JUNEAU,WI,52280,55057,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-KENOSHA,WI,52290,55059,3800,,"KENOSHA, WI",29404,"Lake County-Kenosha County, IL-WI",29404,"Lake County-Kenosha County, IL-WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-KEWAUNEE,WI,52300,55061,52,,WISCONSIN,24580,"Green Bay, WI",24580,"Green Bay, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-LA CROSSE,WI,52310,55063,3870,,"LA CROSSE, WI-MN",29100,"La Crosse, WI-MN",29100,"La Crosse, WI-MN",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-LAFAYETTE,WI,52320,55065,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-LANGLADE,WI,52330,55067,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,WI,52340,55069,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-MANITOWOC,WI,52350,55071,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-MARATHON,WI,52360,55073,8940,,"WAUSAU, WI",48140,"Wausau, WI",48140,"Wausau, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-MARINETTE,WI,52370,55075,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-MARQUETTE,WI,52380,55077,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-MENOMONEE,WI,52381,55078,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-MILWAUKEE,WI,52390,55079,5080,L,"MILWAUKEE-WAUKESHA, WI",33340,"Milwaukee-Waukesha-West Allis, WI",33340,"Milwaukee-Waukesha-West Allis, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-MONROE,WI,52400,55081,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-OCONTO,WI,52410,55083,52,,WISCONSIN,24580,"Green Bay, WI",24580,"Green Bay, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-ONEIDA,WI,52420,55085,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-OUTAGAMIE,WI,52430,55087,460,,"APPLETON-OSHKOSH-NEENAH, WI",11540,"Appleton, WI",11540,"Appleton, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-OZAUKEE,WI,52440,55089,5080,L,"MILWAUKEE-WAUKESHA, WI",33340,"Milwaukee-Waukesha-West Allis, WI",33340,"Milwaukee-Waukesha-West Allis, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-PEPIN,WI,52450,55091,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-PIERCE,WI,52460,55093,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-POLK,WI,52470,55095,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-PORTAGE,WI,52480,55097,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-PRICE,WI,52490,55099,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-RACINE,WI,52500,55101,6600,,"RACINE, WI",39540,"Racine, WI",39540,"Racine, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-RICHLAND,WI,52510,55103,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-ROCK,WI,52520,55105,3620,,"JANESVILLE-BELOIT, WI",27500,"Janesville, WI",27500,"Janesville, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-RUSK,WI,52530,55107,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-ST. CROIX,WI,52540,55109,5120,L,"MINNEAPOLIS-ST. PAUL, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",33460,"Minneapolis-St. Paul-Bloomington, MN-WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-SAUK,WI,52550,55111,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-SAWYER,WI,52560,55113,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-SHAWANO,WI,52570,55115,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-SHEBOYGAN,WI,52580,55117,7620,,"SHEBOYGAN, WI",43100,"Sheboygan, WI",43100,"Sheboygan, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-TAYLOR,WI,52590,55119,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-TREMPEALEAU,WI,52600,55121,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-VERNON,WI,52610,55123,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-VILAS,WI,52620,55125,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WALWORTH,WI,52630,55127,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WASHBURN,WI,52640,55129,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WASHINGTON,WI,52650,55131,5080,L,"MILWAUKEE-WAUKESHA, WI",33340,"Milwaukee-Waukesha-West Allis, WI",33340,"Milwaukee-Waukesha-West Allis, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WAUKESHA,WI,52660,55133,5080,L,"MILWAUKEE-WAUKESHA, WI",33340,"Milwaukee-Waukesha-West Allis, WI",33340,"Milwaukee-Waukesha-West Allis, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WAUPACA,WI,52670,55135,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WAUSHARA,WI,52680,55137,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WINNEBAGO,WI,52690,55139,460,,"APPLETON-OSHKOSH-NEENAH, WI",36780,"Oshkosh-Neenah, WI",36780,"Oshkosh-Neenah, WI",52,55,2005,2011,2012,2013,2014,2015,2016,2017
-WOOD,WI,52700,55141,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,WI,52999,55990,52,,WISCONSIN,,,,,52,55,2005,2011,2012,2013,2014,2015,2016,2017
-ALBANY,WY,53000,56001,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-BIG HORN,WY,53010,56003,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-CAMPBELL,WY,53020,56005,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-CARBON,WY,53030,56007,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-CONVERSE,WY,53040,56009,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-CROOK,WY,53050,56011,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-FREMONT,WY,53060,56013,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-GOSHEN,WY,53070,56015,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-HOT SPRINGS,WY,53080,56017,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-JOHNSON,WY,53090,56019,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-LARAMIE,WY,53100,56021,1580,,"CHEYENNE, WY",16940,"Cheyenne, WY",16940,"Cheyenne, WY",53,56,2005,2011,2012,2013,2014,2015,2016,2017
-LINCOLN,WY,53110,56023,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-NATRONA,WY,53120,56025,1350,,"CASPER, WY",16220,"Casper, WY",16220,"Casper, WY",53,56,2005,2011,2012,2013,2014,2015,2016,2017
-NIOBRARA,WY,53130,56027,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-PARK,WY,53140,56029,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-PLATTE,WY,53150,56031,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-SHERIDAN,WY,53160,56033,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-SUBLETTE,WY,53170,56035,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-SWEETWATER,WY,53180,56037,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-TETON,WY,53190,56039,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-UINTA,WY,53200,56041,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-WASHAKIE,WY,53210,56043,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-WESTON,WY,53220,56045,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-STATEWIDE,WY,53999,56990,53,,WYOMING,,,,,53,56,2005,2011,2012,2013,2014,2015,2016,2017
-ADJUNTAS,PR,40010,72001,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-AGUADA,PR,40020,72003,60,,"AGUADILLA, PR",10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-AGUADILLA,PR,40030,72005,60,,"AGUADILLA, PR",10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-AGUAS BUENAS,PR,40040,72007,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-AIBONITO,PR,40050,72009,40,,PUERTO RICO,41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-ANASCO,PR,40060,72011,4840,,"MAYAGUEZ, PR",10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-ARECIBO,PR,40070,72013,470,,"ARECIBO, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-ARROYO,PR,40080,72015,40,,PUERTO RICO,25020,"Guayama, PR",25020,"Guayama, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-BARCELONETA,PR,40090,72017,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-BARRANQUITAS,PR,40100,72019,40,,PUERTO RICO,41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-BAYAMON,PR,40110,72021,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CABO ROJO,PR,40120,72023,4840,,"MAYAGUEZ, PR",41900,"San Germán-Cabo Rojo, PR",41900,"San German-Cabo Rojo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CAGUAS,PR,40130,72025,1310,,"CAGUAS, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CAMUY,PR,40140,72027,470,,"ARECIBO, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CANOVANAS,PR,40145,72029,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CAROLINA,PR,40150,72031,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CATANO,PR,40160,72033,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CAYEY,PR,40170,72035,1310,,"CAGUAS, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CEIBA,PR,40180,72037,7440,L,"SAN JUAN-BAYAMON, PR",21940,"Fajardo, PR",21940,"Fajardo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CIALES,PR,40190,72039,40,,PUERTO RICO,41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CIDRA,PR,40200,72041,1310,,"CAGUAS, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-COAMO,PR,40210,72043,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-COMERIO,PR,40220,72045,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-COROZAL,PR,40230,72047,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-CULEBRA,PR,40240,72049,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-DORADO,PR,40250,72051,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-FAJARDO,PR,40260,72053,7440,L,"SAN JUAN-BAYAMON, PR",21940,"Fajardo, PR",21940,"Fajardo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-FLORIDA,PR,40265,72054,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-GUANICA,PR,40270,72055,40,,PUERTO RICO,49500,"Yauco, PR",49500,"Yauco, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-GUAYAMA,PR,40280,72057,40,,PUERTO RICO,25020,"Guayama, PR",25020,"Guayama, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-GUAYANILLA,PR,40290,72059,6360,,"PONCE, PR",49500,"Yauco, PR",49500,"Yauco, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-GUAYNABO,PR,40300,72061,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-GURABO,PR,40310,72063,1310,,"CAGUAS, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-HATILLO,PR,40320,72065,470,,"ARECIBO, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-HORMIGUEROS,PR,40330,72067,4840,,"MAYAGUEZ, PR",32420,"Mayagüez, PR",32420,"Mayaguez, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-HUMACAO,PR,40340,72069,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-ISABELA,PR,40350,72071,40,,PUERTO RICO,10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-JAYUYA,PR,40360,72073,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-JUANA DIAZ,PR,40370,72075,6360,,"PONCE, PR",38660,"Ponce, PR",38660,"Ponce, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-JUNCOS,PR,40380,72077,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-LAJAS,PR,40390,72079,40,,PUERTO RICO,41900,"San Germán-Cabo Rojo, PR",41900,"San German-Cabo Rojo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-LARES,PR,40400,72081,40,,PUERTO RICO,10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-LAS MARIAS,PR,40410,72083,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-LAS PIEDRAS,PR,40420,72085,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-LOIZA,PR,40430,72087,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-LUQUILLO,PR,40440,72089,7440,L,"SAN JUAN-BAYAMON, PR",21940,"Fajardo, PR",21940,"Fajardo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-MANATI,PR,40450,72091,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-MARICAO,PR,40460,72093,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-MAUNABO,PR,40470,72095,40,,PUERTO RICO,41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-MAYAGUEZ,PR,40480,72097,4840,,"MAYAGUEZ, PR",32420,"Mayagüez, PR",32420,"Mayaguez, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-MOCA,PR,40490,72099,60,,"AGUADILLA, PR",10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-MOROVIS,PR,40500,72101,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-MAGUABO,PR,40510,72103,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-NARANJITO,PR,40520,72105,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-OROCOVIS,PR,40530,72107,40,,PUERTO RICO,41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-PATILLAS,PR,40540,72109,40,,PUERTO RICO,25020,"Guayama, PR",25020,"Guayama, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-PENUELAS,PR,40550,72111,6360,,"PONCE, PR",49500,"Yauco, PR",49500,"Yauco, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-PONCE,PR,40560,72113,6360,,"PONCE, PR",38660,"Ponce, PR",38660,"Ponce, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-QUEBRADILLAS,PR,40570,72115,40,,PUERTO RICO,41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-RINCON,PR,40580,72117,40,,PUERTO RICO,10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-RIO GRANDE,PR,40590,72119,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-SABANA GRANDE,PR,40610,72121,4840,,"MAYAGUEZ, PR",41900,"San Germán-Cabo Rojo, PR",41900,"San German-Cabo Rojo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-SALINAS,PR,40620,72123,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-SAN GERMAN,PR,40630,72125,4840,,"MAYAGUEZ, PR",41900,"San Germán-Cabo Rojo, PR",41900,"San German-Cabo Rojo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-SAN JUAN,PR,40640,72127,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-SAN LORENZO,PR,40650,72129,1310,,"CAGUAS, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-SAN SEBASTIAN,PR,40660,72131,40,,PUERTO RICO,10380,"Aguadilla-Isabela-San Sebastián, PR",10380,"Aguadilla-Isabela-San Sebastian, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-SANTA ISABEL,PR,40670,72133,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-TOA ALTA,PR,40680,72135,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-TOA BAJA,PR,40690,72137,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-TRUJILLO ALTO,PR,40700,72139,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-UTUADO,PR,40710,72141,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-VEGA ALTA,PR,40720,72143,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-VEGA BAJA,PR,40730,72145,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-VIEQUES,PR,40740,72147,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
-VILLALBA,PR,40750,72149,6360,,"PONCE, PR",38660,"Ponce, PR",38660,"Ponce, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-YABUCOA,PR,40760,72151,7440,L,"SAN JUAN-BAYAMON, PR",41980,"San Juan-Caguas-Guaynabo, PR",41980,"San Juan-Caguas-Guaynabo, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-YAUCO,PR,40770,72153,6360,,"PONCE, PR",49500,"Yauco, PR",49500,"Yauco, PR",40,72,2005,2011,2012,2013,2014,2015,2016,2017
-"PUERTO RICO, NFD",PR,40999,72990,40,,PUERTO RICO,,,,,40,72,2005,2011,2012,2013,2014,2015,2016,2017
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/consistency_checks.ipynb b/_delphi_utils_python/data_proc/geomap/consistency_checks.ipynb
index 85bfd001f..bd39d318d 100644
--- a/_delphi_utils_python/data_proc/geomap/consistency_checks.ipynb
+++ b/_delphi_utils_python/data_proc/geomap/consistency_checks.ipynb
@@ -11,377 +11,75 @@
"This contains consistency checks for any different data sources for geomapping."
]
},
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## msa cross table\n",
- "\n",
- "### Compare against cbsatocountycrosswalk.csv\n",
- "\n",
- "The old msa data is from https://data.nber.org/data/cbsa-fips-county-crosswalk.html, new data is from census bureau "
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [],
- "source": [
- "import pandas as pd"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 2,
- "metadata": {},
- "outputs": [],
- "source": [
- "old_msa_filename = \"cbsatocountycrosswalk.csv\"\n",
- "\n",
- "old_msa = pd.read_csv(old_msa_filename)"
- ]
- },
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/html": [
- "
\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " countyname | \n",
- " state | \n",
- " ssacounty | \n",
- " fips | \n",
- " msa | \n",
- " l | \n",
- " msaname | \n",
- " cbsa | \n",
- " cbsaname | \n",
- " cbsaold | \n",
- " ... | \n",
- " ssast | \n",
- " fipst | \n",
- " y2005 | \n",
- " y2011 | \n",
- " y2012 | \n",
- " y2013 | \n",
- " y2014 | \n",
- " y2015 | \n",
- " y2016 | \n",
- " y2017 | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " 0 | \n",
- " AUTAUGA | \n",
- " AL | \n",
- " 1000 | \n",
- " 1001 | \n",
- " 5240.0 | \n",
- " NaN | \n",
- " MONTGOMERY, AL | \n",
- " 33860.0 | \n",
- " Montgomery, AL | \n",
- " 33860.0 | \n",
- " ... | \n",
- " 1 | \n",
- " 1 | \n",
- " 2005.0 | \n",
- " 2011.0 | \n",
- " 2012.0 | \n",
- " 2013.0 | \n",
- " 2014.0 | \n",
- " 2015.0 | \n",
- " 2016.0 | \n",
- " 2017.0 | \n",
- "
\n",
- " \n",
- " 1 | \n",
- " BALDWIN | \n",
- " AL | \n",
- " 1010 | \n",
- " 1003 | \n",
- " 5160.0 | \n",
- " NaN | \n",
- " MOBILE, AL | \n",
- " NaN | \n",
- " NaN | \n",
- " NaN | \n",
- " ... | \n",
- " 1 | \n",
- " 1 | \n",
- " 2005.0 | \n",
- " 2011.0 | \n",
- " 2012.0 | \n",
- " 2013.0 | \n",
- " 2014.0 | \n",
- " 2015.0 | \n",
- " 2016.0 | \n",
- " 2017.0 | \n",
- "
\n",
- " \n",
- " 2 | \n",
- " BARBOUR | \n",
- " AL | \n",
- " 1020 | \n",
- " 1005 | \n",
- " 1.0 | \n",
- " NaN | \n",
- " ALABAMA | \n",
- " NaN | \n",
- " NaN | \n",
- " NaN | \n",
- " ... | \n",
- " 1 | \n",
- " 1 | \n",
- " 2005.0 | \n",
- " 2011.0 | \n",
- " 2012.0 | \n",
- " 2013.0 | \n",
- " 2014.0 | \n",
- " 2015.0 | \n",
- " 2016.0 | \n",
- " 2017.0 | \n",
- "
\n",
- " \n",
- " 3 | \n",
- " BIBB | \n",
- " AL | \n",
- " 1030 | \n",
- " 1007 | \n",
- " 1.0 | \n",
- " NaN | \n",
- " ALABAMA | \n",
- " 13820.0 | \n",
- " Birmingham-Hoover, AL | \n",
- " 13820.0 | \n",
- " ... | \n",
- " 1 | \n",
- " 1 | \n",
- " 2005.0 | \n",
- " 2011.0 | \n",
- " 2012.0 | \n",
- " 2013.0 | \n",
- " 2014.0 | \n",
- " 2015.0 | \n",
- " 2016.0 | \n",
- " 2017.0 | \n",
- "
\n",
- " \n",
- " 4 | \n",
- " BLOUNT | \n",
- " AL | \n",
- " 1040 | \n",
- " 1009 | \n",
- " 1000.0 | \n",
- " NaN | \n",
- " BIRMINGHAM, AL | \n",
- " 13820.0 | \n",
- " Birmingham-Hoover, AL | \n",
- " 13820.0 | \n",
- " ... | \n",
- " 1 | \n",
- " 1 | \n",
- " 2005.0 | \n",
- " 2011.0 | \n",
- " 2012.0 | \n",
- " 2013.0 | \n",
- " 2014.0 | \n",
- " 2015.0 | \n",
- " 2016.0 | \n",
- " 2017.0 | \n",
- "
\n",
- " \n",
- "
\n",
- "
5 rows × 21 columns
\n",
- "
"
- ],
- "text/plain": [
- " countyname state ssacounty fips msa l msaname cbsa \\\n",
- "0 AUTAUGA AL 1000 1001 5240.0 NaN MONTGOMERY, AL 33860.0 \n",
- "1 BALDWIN AL 1010 1003 5160.0 NaN MOBILE, AL NaN \n",
- "2 BARBOUR AL 1020 1005 1.0 NaN ALABAMA NaN \n",
- "3 BIBB AL 1030 1007 1.0 NaN ALABAMA 13820.0 \n",
- "4 BLOUNT AL 1040 1009 1000.0 NaN BIRMINGHAM, AL 13820.0 \n",
- "\n",
- " cbsaname cbsaold ... ssast fipst y2005 y2011 y2012 \\\n",
- "0 Montgomery, AL 33860.0 ... 1 1 2005.0 2011.0 2012.0 \n",
- "1 NaN NaN ... 1 1 2005.0 2011.0 2012.0 \n",
- "2 NaN NaN ... 1 1 2005.0 2011.0 2012.0 \n",
- "3 Birmingham-Hoover, AL 13820.0 ... 1 1 2005.0 2011.0 2012.0 \n",
- "4 Birmingham-Hoover, AL 13820.0 ... 1 1 2005.0 2011.0 2012.0 \n",
- "\n",
- " y2013 y2014 y2015 y2016 y2017 \n",
- "0 2013.0 2014.0 2015.0 2016.0 2017.0 \n",
- "1 2013.0 2014.0 2015.0 2016.0 2017.0 \n",
- "2 2013.0 2014.0 2015.0 2016.0 2017.0 \n",
- "3 2013.0 2014.0 2015.0 2016.0 2017.0 \n",
- "4 2013.0 2014.0 2015.0 2016.0 2017.0 \n",
- "\n",
- "[5 rows x 21 columns]"
- ]
+ "text/plain": " zip fips county_name hrrnum hsanum population \\\n0 601 72001 Adjuntas NaN NaN 17242 \n1 602 72003 Aguada NaN NaN 38442 \n2 603 72005 Aguadilla NaN NaN 48814 \n3 606 72093 Maricao NaN NaN 6437 \n4 610 72011 Añasco NaN NaN 27073 \n... ... ... ... ... ... ... \n33094 99923 2198 Prince of Wales-Hyder 10.0 2006.0 15 \n33095 99925 2198 Prince of Wales-Hyder 10.0 2006.0 927 \n33096 99926 2198 Prince of Wales-Hyder 10.0 2006.0 1635 \n33097 99927 2198 Prince of Wales-Hyder 10.0 2006.0 38 \n33098 99929 2275 Wrangell 10.0 2015.0 2484 \n\n city state_id state_name zcta ... \\\n0 Adjuntas PR Puerto Rico True ... \n1 Aguada PR Puerto Rico True ... \n2 Aguadilla PR Puerto Rico True ... \n3 Maricao PR Puerto Rico True ... \n4 Anasco PR Puerto Rico True ... \n... ... ... ... ... ... \n33094 Hyder AK Alaska True ... \n33095 Klawock AK Alaska True ... \n33096 Metlakatla AK Alaska True ... \n33097 Point Baker AK Alaska True ... \n33098 Wrangell AK Alaska True ... \n\n county_weights county_names_all \\\n0 {'72001':99.43,'72141':0.57} Adjuntas|Utuado \n1 {'72003':100} Aguada \n2 {'72005':100} Aguadilla \n3 {'72093':94.88,'72121':1.35,'72153':3.78} Maricao|Yauco|Sabana Grande \n4 {'72003':0.55,'72011':99.45} Añasco|Aguada \n... ... ... \n33094 {'02198':100} Prince of Wales-Hyder \n33095 {'02198':100} Prince of Wales-Hyder \n33096 {'02198':100} Prince of Wales-Hyder \n33097 {'02198':100} Prince of Wales-Hyder \n33098 {'02275':100} Wrangell \n\n county_fips_all imprecise military timezone dma_code \\\n0 72001|72141 False False America/Puerto_Rico NaN \n1 72003 False False America/Puerto_Rico NaN \n2 72005 False False America/Puerto_Rico NaN \n3 72093|72153|72121 False False America/Puerto_Rico NaN \n4 72011|72003 False False America/Puerto_Rico NaN \n... ... ... ... ... ... \n33094 2198 False False America/Sitka 0.0 \n33095 2198 False False America/Sitka 0.0 \n33096 2198 False False America/Metlakatla 0.0 \n33097 2198 False False America/Sitka 0.0 \n33098 2275 False False America/Sitka 0.0 \n\n dma_name cbsa_id msa_name \n0 NaN NaN NaN \n1 NaN NaN NaN \n2 NaN NaN NaN \n3 NaN NaN NaN \n4 NaN NaN NaN \n... ... ... ... \n33094 (NON-DMA COUNTIES) NaN NaN \n33095 (NON-DMA COUNTIES) NaN NaN \n33096 (NON-DMA COUNTIES) NaN NaN \n33097 (NON-DMA COUNTIES) NaN NaN \n33098 (NON-DMA COUNTIES) NaN NaN \n\n[33099 rows x 24 columns]",
+ "text/html": "\n\n
\n \n \n | \n zip | \n fips | \n county_name | \n hrrnum | \n hsanum | \n population | \n city | \n state_id | \n state_name | \n zcta | \n ... | \n county_weights | \n county_names_all | \n county_fips_all | \n imprecise | \n military | \n timezone | \n dma_code | \n dma_name | \n cbsa_id | \n msa_name | \n
\n \n \n \n 0 | \n 601 | \n 72001 | \n Adjuntas | \n NaN | \n NaN | \n 17242 | \n Adjuntas | \n PR | \n Puerto Rico | \n True | \n ... | \n {'72001':99.43,'72141':0.57} | \n Adjuntas|Utuado | \n 72001|72141 | \n False | \n False | \n America/Puerto_Rico | \n NaN | \n NaN | \n NaN | \n NaN | \n
\n \n 1 | \n 602 | \n 72003 | \n Aguada | \n NaN | \n NaN | \n 38442 | \n Aguada | \n PR | \n Puerto Rico | \n True | \n ... | \n {'72003':100} | \n Aguada | \n 72003 | \n False | \n False | \n America/Puerto_Rico | \n NaN | \n NaN | \n NaN | \n NaN | \n
\n \n 2 | \n 603 | \n 72005 | \n Aguadilla | \n NaN | \n NaN | \n 48814 | \n Aguadilla | \n PR | \n Puerto Rico | \n True | \n ... | \n {'72005':100} | \n Aguadilla | \n 72005 | \n False | \n False | \n America/Puerto_Rico | \n NaN | \n NaN | \n NaN | \n NaN | \n
\n \n 3 | \n 606 | \n 72093 | \n Maricao | \n NaN | \n NaN | \n 6437 | \n Maricao | \n PR | \n Puerto Rico | \n True | \n ... | \n {'72093':94.88,'72121':1.35,'72153':3.78} | \n Maricao|Yauco|Sabana Grande | \n 72093|72153|72121 | \n False | \n False | \n America/Puerto_Rico | \n NaN | \n NaN | \n NaN | \n NaN | \n
\n \n 4 | \n 610 | \n 72011 | \n Añasco | \n NaN | \n NaN | \n 27073 | \n Anasco | \n PR | \n Puerto Rico | \n True | \n ... | \n {'72003':0.55,'72011':99.45} | \n Añasco|Aguada | \n 72011|72003 | \n False | \n False | \n America/Puerto_Rico | \n NaN | \n NaN | \n NaN | \n NaN | \n
\n \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n ... | \n
\n \n 33094 | \n 99923 | \n 2198 | \n Prince of Wales-Hyder | \n 10.0 | \n 2006.0 | \n 15 | \n Hyder | \n AK | \n Alaska | \n True | \n ... | \n {'02198':100} | \n Prince of Wales-Hyder | \n 2198 | \n False | \n False | \n America/Sitka | \n 0.0 | \n (NON-DMA COUNTIES) | \n NaN | \n NaN | \n
\n \n 33095 | \n 99925 | \n 2198 | \n Prince of Wales-Hyder | \n 10.0 | \n 2006.0 | \n 927 | \n Klawock | \n AK | \n Alaska | \n True | \n ... | \n {'02198':100} | \n Prince of Wales-Hyder | \n 2198 | \n False | \n False | \n America/Sitka | \n 0.0 | \n (NON-DMA COUNTIES) | \n NaN | \n NaN | \n
\n \n 33096 | \n 99926 | \n 2198 | \n Prince of Wales-Hyder | \n 10.0 | \n 2006.0 | \n 1635 | \n Metlakatla | \n AK | \n Alaska | \n True | \n ... | \n {'02198':100} | \n Prince of Wales-Hyder | \n 2198 | \n False | \n False | \n America/Metlakatla | \n 0.0 | \n (NON-DMA COUNTIES) | \n NaN | \n NaN | \n
\n \n 33097 | \n 99927 | \n 2198 | \n Prince of Wales-Hyder | \n 10.0 | \n 2006.0 | \n 38 | \n Point Baker | \n AK | \n Alaska | \n True | \n ... | \n {'02198':100} | \n Prince of Wales-Hyder | \n 2198 | \n False | \n False | \n America/Sitka | \n 0.0 | \n (NON-DMA COUNTIES) | \n NaN | \n NaN | \n
\n \n 33098 | \n 99929 | \n 2275 | \n Wrangell | \n 10.0 | \n 2015.0 | \n 2484 | \n Wrangell | \n AK | \n Alaska | \n True | \n ... | \n {'02275':100} | \n Wrangell | \n 2275 | \n False | \n False | \n America/Sitka | \n 0.0 | \n (NON-DMA COUNTIES) | \n NaN | \n NaN | \n
\n \n
\n
33099 rows × 24 columns
\n
"
},
- "execution_count": 3,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 3
}
],
"source": [
- "old_msa.head()"
+ "import pandas as pd\n",
+ "df = pd.read_csv(\"old_source_files/02_20_uszips.csv\")\n",
+ "df"
]
},
{
"cell_type": "code",
- "execution_count": 4,
+ "execution_count": 41,
"metadata": {},
"outputs": [
{
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\n",
- "RangeIndex: 3293 entries, 0 to 3292\n",
- "Data columns (total 21 columns):\n",
- " # Column Non-Null Count Dtype \n",
- "--- ------ -------------- ----- \n",
- " 0 countyname 3293 non-null object \n",
- " 1 state 3293 non-null object \n",
- " 2 ssacounty 3293 non-null int64 \n",
- " 3 fips 3293 non-null int64 \n",
- " 4 msa 3289 non-null float64\n",
- " 5 l 387 non-null object \n",
- " 6 msaname 3288 non-null object \n",
- " 7 cbsa 1165 non-null float64\n",
- " 8 cbsaname 1163 non-null object \n",
- " 9 cbsaold 1171 non-null float64\n",
- " 10 cbsanameold 1171 non-null object \n",
- " 11 ssast 3293 non-null int64 \n",
- " 12 fipst 3293 non-null int64 \n",
- " 13 y2005 3289 non-null float64\n",
- " 14 y2011 3289 non-null float64\n",
- " 15 y2012 3273 non-null float64\n",
- " 16 y2013 3273 non-null float64\n",
- " 17 y2014 3273 non-null float64\n",
- " 18 y2015 3273 non-null float64\n",
- " 19 y2016 3273 non-null float64\n",
- " 20 y2017 3272 non-null float64\n",
- "dtypes: float64(11), int64(4), object(6)\n",
- "memory usage: 540.4+ KB\n"
- ]
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": "0 {'72001':99.43,'72141':0.57}\n1 {'72003':100}\n2 {'72005':100}\n3 {'72093':94.88,'72121':1.35,'72153':3.78}\n4 {'72003':0.55,'72011':99.45}\n ... \n33094 {'02198':100}\n33095 {'02198':100}\n33096 {'02198':100}\n33097 {'02198':100}\n33098 {'02275':100}\nName: county_weights, Length: 33099, dtype: object"
+ },
+ "metadata": {},
+ "execution_count": 41
}
],
"source": [
- "old_msa.info()"
+ "df['county_weights']"
]
},
{
- "cell_type": "code",
- "execution_count": 5,
+ "cell_type": "markdown",
"metadata": {},
- "outputs": [],
"source": [
- "new_msa_file = \"../../delphi_utils/data/fips_msa_cross.csv\"\n",
+ "## msa cross table\n",
+ "\n",
+ "### Compare against cbsatocountycrosswalk.csv\n",
"\n",
- "new_msa = pd.read_csv(new_msa_file)"
+ "The old msa data is from https://data.nber.org/data/cbsa-fips-county-crosswalk.html, new data is from census bureau "
]
},
{
"cell_type": "code",
- "execution_count": 6,
+ "execution_count": 5,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " fips | \n",
- " msa | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " 0 | \n",
- " 48059 | \n",
- " 10180 | \n",
- "
\n",
- " \n",
- " 1 | \n",
- " 48253 | \n",
- " 10180 | \n",
- "
\n",
- " \n",
- " 2 | \n",
- " 48441 | \n",
- " 10180 | \n",
- "
\n",
- " \n",
- " 3 | \n",
- " 72003 | \n",
- " 10380 | \n",
- "
\n",
- " \n",
- " 4 | \n",
- " 72005 | \n",
- " 10380 | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " fips msa\n",
- "0 48059 10180\n",
- "1 48253 10180\n",
- "2 48441 10180\n",
- "3 72003 10380\n",
- "4 72005 10380"
- ]
+ "text/plain": " countyname state ssacounty fips msa l msaname cbsa \\\n0 AUTAUGA AL 1000 1001 5240.0 NaN MONTGOMERY, AL 33860.0 \n1 BALDWIN AL 1010 1003 5160.0 NaN MOBILE, AL NaN \n2 BARBOUR AL 1020 1005 1.0 NaN ALABAMA NaN \n3 BIBB AL 1030 1007 1.0 NaN ALABAMA 13820.0 \n4 BLOUNT AL 1040 1009 1000.0 NaN BIRMINGHAM, AL 13820.0 \n\n cbsaname cbsaold ... ssast fipst y2005 y2011 y2012 \\\n0 Montgomery, AL 33860.0 ... 1 1 2005.0 2011.0 2012.0 \n1 NaN NaN ... 1 1 2005.0 2011.0 2012.0 \n2 NaN NaN ... 1 1 2005.0 2011.0 2012.0 \n3 Birmingham-Hoover, AL 13820.0 ... 1 1 2005.0 2011.0 2012.0 \n4 Birmingham-Hoover, AL 13820.0 ... 1 1 2005.0 2011.0 2012.0 \n\n y2013 y2014 y2015 y2016 y2017 \n0 2013.0 2014.0 2015.0 2016.0 2017.0 \n1 2013.0 2014.0 2015.0 2016.0 2017.0 \n2 2013.0 2014.0 2015.0 2016.0 2017.0 \n3 2013.0 2014.0 2015.0 2016.0 2017.0 \n4 2013.0 2014.0 2015.0 2016.0 2017.0 \n\n[5 rows x 21 columns]",
+ "text/html": "\n\n
\n \n \n | \n countyname | \n state | \n ssacounty | \n fips | \n msa | \n l | \n msaname | \n cbsa | \n cbsaname | \n cbsaold | \n ... | \n ssast | \n fipst | \n y2005 | \n y2011 | \n y2012 | \n y2013 | \n y2014 | \n y2015 | \n y2016 | \n y2017 | \n
\n \n \n \n 0 | \n AUTAUGA | \n AL | \n 1000 | \n 1001 | \n 5240.0 | \n NaN | \n MONTGOMERY, AL | \n 33860.0 | \n Montgomery, AL | \n 33860.0 | \n ... | \n 1 | \n 1 | \n 2005.0 | \n 2011.0 | \n 2012.0 | \n 2013.0 | \n 2014.0 | \n 2015.0 | \n 2016.0 | \n 2017.0 | \n
\n \n 1 | \n BALDWIN | \n AL | \n 1010 | \n 1003 | \n 5160.0 | \n NaN | \n MOBILE, AL | \n NaN | \n NaN | \n NaN | \n ... | \n 1 | \n 1 | \n 2005.0 | \n 2011.0 | \n 2012.0 | \n 2013.0 | \n 2014.0 | \n 2015.0 | \n 2016.0 | \n 2017.0 | \n
\n \n 2 | \n BARBOUR | \n AL | \n 1020 | \n 1005 | \n 1.0 | \n NaN | \n ALABAMA | \n NaN | \n NaN | \n NaN | \n ... | \n 1 | \n 1 | \n 2005.0 | \n 2011.0 | \n 2012.0 | \n 2013.0 | \n 2014.0 | \n 2015.0 | \n 2016.0 | \n 2017.0 | \n
\n \n 3 | \n BIBB | \n AL | \n 1030 | \n 1007 | \n 1.0 | \n NaN | \n ALABAMA | \n 13820.0 | \n Birmingham-Hoover, AL | \n 13820.0 | \n ... | \n 1 | \n 1 | \n 2005.0 | \n 2011.0 | \n 2012.0 | \n 2013.0 | \n 2014.0 | \n 2015.0 | \n 2016.0 | \n 2017.0 | \n
\n \n 4 | \n BLOUNT | \n AL | \n 1040 | \n 1009 | \n 1000.0 | \n NaN | \n BIRMINGHAM, AL | \n 13820.0 | \n Birmingham-Hoover, AL | \n 13820.0 | \n ... | \n 1 | \n 1 | \n 2005.0 | \n 2011.0 | \n 2012.0 | \n 2013.0 | \n 2014.0 | \n 2015.0 | \n 2016.0 | \n 2017.0 | \n
\n \n
\n
5 rows × 21 columns
\n
"
},
- "execution_count": 6,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 5
}
],
"source": [
- "new_msa.head()"
+ "old_msa_filename = \"old_source_files/cbsatocountycrosswalk.csv\"\n",
+ "old_msa = pd.read_csv(old_msa_filename)\n",
+ "old_msa.head()"
]
},
{
@@ -390,304 +88,71 @@
"metadata": {},
"outputs": [
{
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\n",
- "RangeIndex: 1251 entries, 0 to 1250\n",
- "Data columns (total 2 columns):\n",
- " # Column Non-Null Count Dtype\n",
- "--- ------ -------------- -----\n",
- " 0 fips 1251 non-null int64\n",
- " 1 msa 1251 non-null int64\n",
- "dtypes: int64(2)\n",
- "memory usage: 19.7 KB\n"
- ]
- }
- ],
- "source": [
- "new_msa.info()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "\n",
- "Int64Index: 1165 entries, 1001 to 72153\n",
- "Data columns (total 1 columns):\n",
- " # Column Non-Null Count Dtype\n",
- "--- ------ -------------- -----\n",
- " 0 cbsa 1165 non-null int64\n",
- "dtypes: int64(1)\n",
- "memory usage: 18.2 KB\n"
- ]
- }
- ],
- "source": [
- "old_msa = old_msa[~old_msa['cbsa'].isna()][['fips','cbsa']].astype(int)\n",
- "\n",
- "old_msa.set_index('fips',inplace=True)\n",
- "\n",
- "old_msa.info()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 26,
- "metadata": {},
- "outputs": [],
- "source": [
- "new_msa.set_index('fips',inplace=True)\n",
- "msa_comp = new_msa.join(old_msa,how=\"outer\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 27,
- "metadata": {},
- "outputs": [
- {
+ "output_type": "execute_result",
"data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " msa | \n",
- " cbsa | \n",
- "
\n",
- " \n",
- " fips | \n",
- " | \n",
- " | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " 1001 | \n",
- " 33860.0 | \n",
- " 33860.0 | \n",
- "
\n",
- " \n",
- " 1003 | \n",
- " 19300.0 | \n",
- " NaN | \n",
- "
\n",
- " \n",
- " 1007 | \n",
- " 13820.0 | \n",
- " 13820.0 | \n",
- "
\n",
- " \n",
- " 1009 | \n",
- " 13820.0 | \n",
- " 13820.0 | \n",
- "
\n",
- " \n",
- " 1015 | \n",
- " 11500.0 | \n",
- " 11500.0 | \n",
- "
\n",
- " \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- "
\n",
- " \n",
- " 72143 | \n",
- " 41980.0 | \n",
- " 41980.0 | \n",
- "
\n",
- " \n",
- " 72145 | \n",
- " 41980.0 | \n",
- " 41980.0 | \n",
- "
\n",
- " \n",
- " 72149 | \n",
- " 38660.0 | \n",
- " 38660.0 | \n",
- "
\n",
- " \n",
- " 72151 | \n",
- " 41980.0 | \n",
- " 41980.0 | \n",
- "
\n",
- " \n",
- " 72153 | \n",
- " 49500.0 | \n",
- " 49500.0 | \n",
- "
\n",
- " \n",
- "
\n",
- "
1293 rows × 2 columns
\n",
- "
"
- ],
- "text/plain": [
- " msa cbsa\n",
- "fips \n",
- "1001 33860.0 33860.0\n",
- "1003 19300.0 NaN\n",
- "1007 13820.0 13820.0\n",
- "1009 13820.0 13820.0\n",
- "1015 11500.0 11500.0\n",
- "... ... ...\n",
- "72143 41980.0 41980.0\n",
- "72145 41980.0 41980.0\n",
- "72149 38660.0 38660.0\n",
- "72151 41980.0 41980.0\n",
- "72153 49500.0 49500.0\n",
- "\n",
- "[1293 rows x 2 columns]"
- ]
+ "text/plain": " fips msa\n0 48059 10180\n1 48253 10180\n2 48441 10180\n3 72003 10380\n4 72005 10380",
+ "text/html": "\n\n
\n \n \n | \n fips | \n msa | \n
\n \n \n \n 0 | \n 48059 | \n 10180 | \n
\n \n 1 | \n 48253 | \n 10180 | \n
\n \n 2 | \n 48441 | \n 10180 | \n
\n \n 3 | \n 72003 | \n 10380 | \n
\n \n 4 | \n 72005 | \n 10380 | \n
\n \n
\n
"
},
- "execution_count": 27,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 7
}
],
"source": [
- "msa_comp"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 44,
- "metadata": {},
- "outputs": [],
- "source": [
- "old_val = set(pd.unique(old_msa['cbsa']))\n",
- "new_val = set(pd.unique(new_msa['msa']))"
+ "new_msa_file = \"../../delphi_utils/data/fips_msa_table.csv\"\n",
+ "new_msa = pd.read_csv(new_msa_file)\n",
+ "new_msa.head()"
]
},
{
"cell_type": "code",
- "execution_count": 46,
+ "execution_count": 8,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/plain": [
- "95"
- ]
+ "text/plain": " msa cbsa\nfips \n1001 33860.0 33860.0\n1003 19300.0 NaN\n1007 13820.0 13820.0\n1009 13820.0 13820.0\n1015 11500.0 11500.0\n... ... ...\n72143 41980.0 41980.0\n72145 41980.0 41980.0\n72149 38660.0 38660.0\n72151 41980.0 41980.0\n72153 49500.0 49500.0\n\n[1293 rows x 2 columns]",
+ "text/html": "\n\n
\n \n \n | \n msa | \n cbsa | \n
\n \n fips | \n | \n | \n
\n \n \n \n 1001 | \n 33860.0 | \n 33860.0 | \n
\n \n 1003 | \n 19300.0 | \n NaN | \n
\n \n 1007 | \n 13820.0 | \n 13820.0 | \n
\n \n 1009 | \n 13820.0 | \n 13820.0 | \n
\n \n 1015 | \n 11500.0 | \n 11500.0 | \n
\n \n ... | \n ... | \n ... | \n
\n \n 72143 | \n 41980.0 | \n 41980.0 | \n
\n \n 72145 | \n 41980.0 | \n 41980.0 | \n
\n \n 72149 | \n 38660.0 | \n 38660.0 | \n
\n \n 72151 | \n 41980.0 | \n 41980.0 | \n
\n \n 72153 | \n 49500.0 | \n 49500.0 | \n
\n \n
\n
1293 rows × 2 columns
\n
"
},
- "execution_count": 46,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 8
}
],
"source": [
- "len(old_val.symmetric_difference(new_val))"
+ "old_msa = old_msa[~old_msa['cbsa'].isna()][['fips','cbsa']].astype(int)\n",
+ "old_msa.set_index('fips',inplace=True)\n",
+ "new_msa.set_index('fips',inplace=True)\n",
+ "msa_comp = new_msa.join(old_msa,how=\"outer\")\n",
+ "msa_comp"
]
},
{
"cell_type": "code",
- "execution_count": 28,
- "metadata": {},
+ "execution_count": 9,
+ "metadata": {
+ "tags": []
+ },
"outputs": [
{
- "name": "stdout",
"output_type": "stream",
- "text": [
- "\n",
- "Int64Index: 1293 entries, 1001 to 72153\n",
- "Data columns (total 2 columns):\n",
- " # Column Non-Null Count Dtype \n",
- "--- ------ -------------- ----- \n",
- " 0 msa 1252 non-null float64\n",
- " 1 cbsa 1165 non-null float64\n",
- "dtypes: float64(2)\n",
- "memory usage: 30.3 KB\n"
- ]
- }
- ],
- "source": [
- "msa_comp.info()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 42,
- "metadata": {},
- "outputs": [
+ "name": "stdout",
+ "text": "\nInt64Index: 1293 entries, 1001 to 72153\nData columns (total 2 columns):\n # Column Non-Null Count Dtype \n--- ------ -------------- ----- \n 0 msa 1252 non-null float64\n 1 cbsa 1165 non-null float64\ndtypes: float64(2)\nmemory usage: 30.3 KB\n"
+ },
{
+ "output_type": "execute_result",
"data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " cbsa | \n",
- " False | \n",
- " True | \n",
- "
\n",
- " \n",
- " msa | \n",
- " | \n",
- " | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " False | \n",
- " 1124 | \n",
- " 128 | \n",
- "
\n",
- " \n",
- " True | \n",
- " 41 | \n",
- " 0 | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- "cbsa False True \n",
- "msa \n",
- "False 1124 128\n",
- "True 41 0"
- ]
+ "text/plain": "cbsa False True \nmsa \nFalse 1124 128\nTrue 41 0",
+ "text/html": "\n\n
\n \n \n cbsa | \n False | \n True | \n
\n \n msa | \n | \n | \n
\n \n \n \n False | \n 1124 | \n 128 | \n
\n \n True | \n 41 | \n 0 | \n
\n \n
\n
"
},
- "execution_count": 42,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 9
}
],
"source": [
+ "old_val = set(pd.unique(old_msa['cbsa']))\n",
+ "new_val = set(pd.unique(new_msa['msa']))\n",
+ "len(old_val.symmetric_difference(new_val))\n",
+ "msa_comp.info()\n",
"pd.crosstab(msa_comp['msa'].isna(),msa_comp['cbsa'].isna())"
]
},
@@ -701,23 +166,19 @@
},
{
"cell_type": "code",
- "execution_count": 32,
+ "execution_count": 10,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/plain": [
- "136"
- ]
+ "text/plain": "136"
},
- "execution_count": 32,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 10
}
],
"source": [
- "## There \n",
- "\n",
"msa_comp.dropna(axis=0).eval('msa != cbsa').sum()"
]
},
@@ -730,157 +191,36 @@
},
{
"cell_type": "code",
- "execution_count": 52,
- "metadata": {},
- "outputs": [],
- "source": [
- "old_msa_filename = \"msa_list.csv\"\n",
- "\n",
- "old_msa = pd.read_csv(old_msa_filename)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 53,
+ "execution_count": 11,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " CBSA ID | \n",
- " MSA Name | \n",
- " FIPS ID | \n",
- " County Name | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " 0 | \n",
- " 10180 | \n",
- " Abilene, TX (Metropolitan Statistical Area) | \n",
- " 48059 | \n",
- " Callahan, TX | \n",
- "
\n",
- " \n",
- " 1 | \n",
- " 10180 | \n",
- " Abilene, TX (Metropolitan Statistical Area) | \n",
- " 48253 | \n",
- " Jones, TX | \n",
- "
\n",
- " \n",
- " 2 | \n",
- " 10180 | \n",
- " Abilene, TX (Metropolitan Statistical Area) | \n",
- " 48441 | \n",
- " Taylor, TX | \n",
- "
\n",
- " \n",
- " 3 | \n",
- " 10380 | \n",
- " Aguadilla-Isabela, PR (Metropolitan Statistica... | \n",
- " 72003 | \n",
- " Aguada Municipio, PR | \n",
- "
\n",
- " \n",
- " 4 | \n",
- " 10380 | \n",
- " Aguadilla-Isabela, PR (Metropolitan Statistica... | \n",
- " 72005 | \n",
- " Aguadilla Municipio, PR | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " CBSA ID MSA Name FIPS ID \\\n",
- "0 10180 Abilene, TX (Metropolitan Statistical Area) 48059 \n",
- "1 10180 Abilene, TX (Metropolitan Statistical Area) 48253 \n",
- "2 10180 Abilene, TX (Metropolitan Statistical Area) 48441 \n",
- "3 10380 Aguadilla-Isabela, PR (Metropolitan Statistica... 72003 \n",
- "4 10380 Aguadilla-Isabela, PR (Metropolitan Statistica... 72005 \n",
- "\n",
- " County Name \n",
- "0 Callahan, TX \n",
- "1 Jones, TX \n",
- "2 Taylor, TX \n",
- "3 Aguada Municipio, PR \n",
- "4 Aguadilla Municipio, PR "
- ]
+ "text/plain": " CBSA ID MSA Name FIPS ID \\\n0 10180 Abilene, TX (Metropolitan Statistical Area) 48059 \n1 10180 Abilene, TX (Metropolitan Statistical Area) 48253 \n2 10180 Abilene, TX (Metropolitan Statistical Area) 48441 \n3 10380 Aguadilla-Isabela, PR (Metropolitan Statistica... 72003 \n4 10380 Aguadilla-Isabela, PR (Metropolitan Statistica... 72005 \n\n County Name \n0 Callahan, TX \n1 Jones, TX \n2 Taylor, TX \n3 Aguada Municipio, PR \n4 Aguadilla Municipio, PR ",
+ "text/html": "\n\n
\n \n \n | \n CBSA ID | \n MSA Name | \n FIPS ID | \n County Name | \n
\n \n \n \n 0 | \n 10180 | \n Abilene, TX (Metropolitan Statistical Area) | \n 48059 | \n Callahan, TX | \n
\n \n 1 | \n 10180 | \n Abilene, TX (Metropolitan Statistical Area) | \n 48253 | \n Jones, TX | \n
\n \n 2 | \n 10180 | \n Abilene, TX (Metropolitan Statistical Area) | \n 48441 | \n Taylor, TX | \n
\n \n 3 | \n 10380 | \n Aguadilla-Isabela, PR (Metropolitan Statistica... | \n 72003 | \n Aguada Municipio, PR | \n
\n \n 4 | \n 10380 | \n Aguadilla-Isabela, PR (Metropolitan Statistica... | \n 72005 | \n Aguadilla Municipio, PR | \n
\n \n
\n
"
},
- "execution_count": 53,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 11
}
],
"source": [
+ "old_msa_filename = \"old_source_files/msa_list.csv\"\n",
+ "old_msa = pd.read_csv(old_msa_filename)\n",
"old_msa.head()"
]
},
{
"cell_type": "code",
- "execution_count": 54,
- "metadata": {},
+ "execution_count": 12,
+ "metadata": {
+ "tags": []
+ },
"outputs": [
{
- "name": "stdout",
"output_type": "stream",
- "text": [
- "\n",
- "RangeIndex: 1231 entries, 0 to 1230\n",
- "Data columns (total 4 columns):\n",
- " # Column Non-Null Count Dtype \n",
- "--- ------ -------------- ----- \n",
- " 0 CBSA ID 1231 non-null int64 \n",
- " 1 MSA Name 1231 non-null object\n",
- " 2 FIPS ID 1231 non-null int64 \n",
- " 3 County Name 1231 non-null object\n",
- "dtypes: int64(2), object(2)\n",
- "memory usage: 38.6+ KB\n"
- ]
- }
- ],
- "source": [
- "old_msa.info()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 55,
- "metadata": {},
- "outputs": [
- {
"name": "stdout",
- "output_type": "stream",
- "text": [
- "\n",
- "Int64Index: 1231 entries, 48059 to 4027\n",
- "Data columns (total 1 columns):\n",
- " # Column Non-Null Count Dtype\n",
- "--- ------ -------------- -----\n",
- " 0 CBSA ID 1231 non-null int64\n",
- "dtypes: int64(1)\n",
- "memory usage: 19.2 KB\n"
- ]
+ "text": "\nInt64Index: 1231 entries, 48059 to 4027\nData columns (total 1 columns):\n # Column Non-Null Count Dtype\n--- ------ -------------- -----\n 0 CBSA ID 1231 non-null int64\ndtypes: int64(1)\nmemory usage: 19.2 KB\n"
}
],
"source": [
@@ -893,7 +233,7 @@
},
{
"cell_type": "code",
- "execution_count": 56,
+ "execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
@@ -902,115 +242,17 @@
},
{
"cell_type": "code",
- "execution_count": 57,
+ "execution_count": 14,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " | \n",
- " msa | \n",
- " CBSA ID | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " 1001 | \n",
- " 33860.0 | \n",
- " 33860.0 | \n",
- "
\n",
- " \n",
- " 1003 | \n",
- " 19300.0 | \n",
- " 19300.0 | \n",
- "
\n",
- " \n",
- " 1007 | \n",
- " 13820.0 | \n",
- " 13820.0 | \n",
- "
\n",
- " \n",
- " 1009 | \n",
- " 13820.0 | \n",
- " 13820.0 | \n",
- "
\n",
- " \n",
- " 1015 | \n",
- " 11500.0 | \n",
- " 11500.0 | \n",
- "
\n",
- " \n",
- " ... | \n",
- " ... | \n",
- " ... | \n",
- "
\n",
- " \n",
- " 72143 | \n",
- " 41980.0 | \n",
- " 41980.0 | \n",
- "
\n",
- " \n",
- " 72145 | \n",
- " 41980.0 | \n",
- " 41980.0 | \n",
- "
\n",
- " \n",
- " 72149 | \n",
- " 38660.0 | \n",
- " 38660.0 | \n",
- "
\n",
- " \n",
- " 72151 | \n",
- " 41980.0 | \n",
- " 41980.0 | \n",
- "
\n",
- " \n",
- " 72153 | \n",
- " 49500.0 | \n",
- " 49500.0 | \n",
- "
\n",
- " \n",
- "
\n",
- "
1268 rows × 2 columns
\n",
- "
"
- ],
- "text/plain": [
- " msa CBSA ID\n",
- "1001 33860.0 33860.0\n",
- "1003 19300.0 19300.0\n",
- "1007 13820.0 13820.0\n",
- "1009 13820.0 13820.0\n",
- "1015 11500.0 11500.0\n",
- "... ... ...\n",
- "72143 41980.0 41980.0\n",
- "72145 41980.0 41980.0\n",
- "72149 38660.0 38660.0\n",
- "72151 41980.0 41980.0\n",
- "72153 49500.0 49500.0\n",
- "\n",
- "[1268 rows x 2 columns]"
- ]
+ "text/plain": " msa CBSA ID\n1001 33860.0 33860.0\n1003 19300.0 19300.0\n1007 13820.0 13820.0\n1009 13820.0 13820.0\n1015 11500.0 11500.0\n... ... ...\n72143 41980.0 41980.0\n72145 41980.0 41980.0\n72149 38660.0 38660.0\n72151 41980.0 41980.0\n72153 49500.0 49500.0\n\n[1268 rows x 2 columns]",
+ "text/html": "\n\n
\n \n \n | \n msa | \n CBSA ID | \n
\n \n \n \n 1001 | \n 33860.0 | \n 33860.0 | \n
\n \n 1003 | \n 19300.0 | \n 19300.0 | \n
\n \n 1007 | \n 13820.0 | \n 13820.0 | \n
\n \n 1009 | \n 13820.0 | \n 13820.0 | \n
\n \n 1015 | \n 11500.0 | \n 11500.0 | \n
\n \n ... | \n ... | \n ... | \n
\n \n 72143 | \n 41980.0 | \n 41980.0 | \n
\n \n 72145 | \n 41980.0 | \n 41980.0 | \n
\n \n 72149 | \n 38660.0 | \n 38660.0 | \n
\n \n 72151 | \n 41980.0 | \n 41980.0 | \n
\n \n 72153 | \n 49500.0 | \n 49500.0 | \n
\n \n
\n
1268 rows × 2 columns
\n
"
},
- "execution_count": 57,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 14
}
],
"source": [
@@ -1019,7 +261,7 @@
},
{
"cell_type": "code",
- "execution_count": 59,
+ "execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
@@ -1029,18 +271,16 @@
},
{
"cell_type": "code",
- "execution_count": 60,
+ "execution_count": 16,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/plain": [
- "0"
- ]
+ "text/plain": "0"
},
- "execution_count": 60,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 16
}
],
"source": [
@@ -1049,23 +289,15 @@
},
{
"cell_type": "code",
- "execution_count": 61,
- "metadata": {},
+ "execution_count": 17,
+ "metadata": {
+ "tags": []
+ },
"outputs": [
{
- "name": "stdout",
"output_type": "stream",
- "text": [
- "\n",
- "Int64Index: 1268 entries, 1001 to 72153\n",
- "Data columns (total 2 columns):\n",
- " # Column Non-Null Count Dtype \n",
- "--- ------ -------------- ----- \n",
- " 0 msa 1251 non-null float64\n",
- " 1 CBSA ID 1231 non-null float64\n",
- "dtypes: float64(2)\n",
- "memory usage: 29.7 KB\n"
- ]
+ "name": "stdout",
+ "text": "\nInt64Index: 1268 entries, 1001 to 72153\nData columns (total 2 columns):\n # Column Non-Null Count Dtype \n--- ------ -------------- ----- \n 0 msa 1251 non-null float64\n 1 CBSA ID 1231 non-null float64\ndtypes: float64(2)\nmemory usage: 29.7 KB\n"
}
],
"source": [
@@ -1074,18 +306,16 @@
},
{
"cell_type": "code",
- "execution_count": 70,
+ "execution_count": 18,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/plain": [
- "0.0"
- ]
+ "text/plain": "0.0"
},
- "execution_count": 70,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 18
}
],
"source": [
@@ -1094,64 +324,17 @@
},
{
"cell_type": "code",
- "execution_count": 63,
+ "execution_count": 19,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " CBSA ID | \n",
- " False | \n",
- " True | \n",
- "
\n",
- " \n",
- " msa | \n",
- " | \n",
- " | \n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " False | \n",
- " 1214 | \n",
- " 37 | \n",
- "
\n",
- " \n",
- " True | \n",
- " 17 | \n",
- " 0 | \n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- "CBSA ID False True \n",
- "msa \n",
- "False 1214 37\n",
- "True 17 0"
- ]
+ "text/plain": "CBSA ID False True \nmsa \nFalse 1214 37\nTrue 17 0",
+ "text/html": "\n\n
\n \n \n CBSA ID | \n False | \n True | \n
\n \n msa | \n | \n | \n
\n \n \n \n False | \n 1214 | \n 37 | \n
\n \n True | \n 17 | \n 0 | \n
\n \n
\n
"
},
- "execution_count": 63,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 19
}
],
"source": [
@@ -1168,23 +351,15 @@
},
{
"cell_type": "code",
- "execution_count": 67,
- "metadata": {},
+ "execution_count": 20,
+ "metadata": {
+ "tags": []
+ },
"outputs": [
{
- "name": "stdout",
"output_type": "stream",
- "text": [
- "\n",
- "Int64Index: 1268 entries, 1001 to 72153\n",
- "Data columns (total 2 columns):\n",
- " # Column Non-Null Count Dtype \n",
- "--- ------ -------------- ----- \n",
- " 0 msa 1251 non-null float64\n",
- " 1 CBSA ID 1231 non-null float64\n",
- "dtypes: float64(2)\n",
- "memory usage: 29.7 KB\n"
- ]
+ "name": "stdout",
+ "text": "\nInt64Index: 1268 entries, 1001 to 72153\nData columns (total 2 columns):\n # Column Non-Null Count Dtype \n--- ------ -------------- ----- \n 0 msa 1251 non-null float64\n 1 CBSA ID 1231 non-null float64\ndtypes: float64(2)\nmemory usage: 29.7 KB\n"
}
],
"source": [
@@ -1193,29 +368,16 @@
},
{
"cell_type": "code",
- "execution_count": 71,
+ "execution_count": 21,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/plain": [
- "1001 33860.0\n",
- "1003 19300.0\n",
- "1007 13820.0\n",
- "1009 13820.0\n",
- "1015 11500.0\n",
- " ... \n",
- "72143 41980.0\n",
- "72145 41980.0\n",
- "72149 38660.0\n",
- "72151 41980.0\n",
- "72153 49500.0\n",
- "Name: CBSA ID, Length: 1268, dtype: float64"
- ]
+ "text/plain": "1001 33860.0\n1003 19300.0\n1007 13820.0\n1009 13820.0\n1015 11500.0\n ... \n72143 41980.0\n72145 41980.0\n72149 38660.0\n72151 41980.0\n72153 49500.0\nName: CBSA ID, Length: 1268, dtype: float64"
},
- "execution_count": 71,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 21
}
],
"source": [
@@ -1667,18 +829,16 @@
},
{
"cell_type": "code",
- "execution_count": 84,
+ "execution_count": 22,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/plain": [
- "10180.0"
- ]
+ "text/plain": "10180.0"
},
- "execution_count": 84,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 22
}
],
"source": [
@@ -1687,30 +847,21 @@
},
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": 23,
"metadata": {},
"outputs": [
{
+ "output_type": "execute_result",
"data": {
- "text/plain": [
- "(392,)"
- ]
+ "text/plain": "(392,)"
},
- "execution_count": 10,
"metadata": {},
- "output_type": "execute_result"
+ "execution_count": 23
}
],
"source": [
"pd.unique(new_msa['msa']).shape"
]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": []
}
],
"metadata": {
@@ -1729,9 +880,9 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.7.4"
+ "version": "3.7.3-final"
}
},
"nbformat": 4,
"nbformat_minor": 4
-}
+}
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/geo_data_proc.py b/_delphi_utils_python/data_proc/geomap/geo_data_proc.py
index f9d50d1b3..55428a2b6 100644
--- a/_delphi_utils_python/data_proc/geomap/geo_data_proc.py
+++ b/_delphi_utils_python/data_proc/geomap/geo_data_proc.py
@@ -1,171 +1,540 @@
-## Needed to process the geo files to get from xls file to a simpler csv.
-## pip install xlrd
-
-## Author: James Sharpnack @jsharpna
+"""
+Authors: Dmitry Shemetov @dshemetov, James Sharpnack @jsharpna
+"""
+from io import BytesIO
+from os.path import join, isfile
+from zipfile import ZipFile
+import requests
import pandas as pd
-from os import path
-import json
-INPUT_DIR = "."
+# Source files
+INPUT_DIR = "./old_source_files"
OUTPUT_DIR = "../../delphi_utils/data"
-MSA_FILE = "09_18_MSAs.xls"
-FIPS_MSA_OUT_FILE = "fips_msa_cross.csv"
-ZIP_CODE_FILE = "02_20_uszips.csv"
-ZIP_FIPS_OUT_FILE = "zip_fips_cross.csv"
-STATE_OUT_FILE = "state_codes.csv"
-FIPS_HRR_FILE = "transfipsToHRR.csv"
-FIPS_HRR_OUT_FILE = "fips_hrr_cross.csv"
-ZIP_FIPS_FILE_2 = "ZIP_COUNTY_032020.xlsx"
-ZIP_HSA_HRR_FILE = "ZipHsaHrr18.csv"
-ZIP_HSA_OUT_FILE = "zip_hsa_cross.csv"
-ZIP_HRR_OUT_FILE = "zip_hrr_cross.csv"
-JHU_FIPS_FILE = "UID_ISO_FIPS_LookUp_Table.csv"
-JHU_FIPS_OUT_FILE = "jhu_uid_fips_cross.csv"
-FIPS_ZIP_OUT_FILE = "fips_zip_cross.csv"
-FIPS_BY_ZIP_POP_FILE = "https://www2.census.gov/geo/docs/maps-data/data/rel/zcta_county_rel_10.txt?#"
-
-COPOP_OUT_FILE = "fips_pop.csv"
-ZIPPOP_OUT_FILE = "zip_pop.csv"
-FIPS_ZIP_OUT_FILE = "fips_zip_cross.csv"
-ZIP_FIPS_OUT_FILE = "zip_fips_cross.csv"
-
-
-def convert_fips(x):
- """Ensure fips is a string of length 5."""
- return str(x).zfill(5)
-
-def convert_fips_to_stcode(fips_ser):
- """convert fips string Series to state code string Series"""
- return fips_ser.str[:2]
-
-def wei_iter(df):
+FIPS_BY_ZIP_POP_URL = (
+ "https://www2.census.gov/geo/docs/maps-data/data/rel/zcta_county_rel_10.txt?#"
+)
+ZIP_HSA_HRR_URL = (
+ "https://atlasdata.dartmouth.edu/downloads/geography/ZipHsaHrr18.csv.zip"
+)
+ZIP_HSA_HRR_FILENAME = "ZipHsaHrr18.csv"
+FIPS_MSA_URL = "https://www2.census.gov/programs-surveys/metro-micro/geographies/reference-files/2018/delineation-files/list1_Sep_2018.xls"
+JHU_FIPS_URL = "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/UID_ISO_FIPS_LookUp_Table.csv"
+STATE_CODES_URL = "http://www2.census.gov/geo/docs/reference/state.txt?#"
+FIPS_POPULATION_URL = "https://www2.census.gov/programs-surveys/popest/datasets/2010-2019/counties/totals/co-est2019-alldata.csv"
+FIPS_PUERTO_RICO_POPULATION_URL = (
+ "https://www2.census.gov/geo/docs/maps-data/data/rel/zcta_county_rel_10.txt?"
+)
+STATE_HHS_FILE = "hhs.txt"
+
+# Out files
+FIPS_STATE_OUT_FILENAME = "fips_state_table.csv"
+FIPS_MSA_OUT_FILENAME = "fips_msa_table.csv"
+FIPS_HRR_OUT_FILENAME = "fips_hrr_table.csv"
+FIPS_ZIP_OUT_FILENAME = "fips_zip_table.csv"
+FIPS_POPULATION_OUT_FILENAME = "fips_pop.csv"
+
+ZIP_HSA_OUT_FILENAME = "zip_hsa_table.csv"
+ZIP_HRR_OUT_FILENAME = "zip_hrr_table.csv"
+ZIP_FIPS_OUT_FILENAME = "zip_fips_table.csv"
+ZIP_MSA_OUT_FILENAME = "zip_msa_table.csv"
+ZIP_POPULATION_OUT_FILENAME = "zip_pop.csv"
+ZIP_STATE_CODE_OUT_FILENAME = "zip_state_code_table.csv"
+STATE_OUT_FILENAME = "state_codes_table.csv"
+STATE_HHS_OUT_FILENAME = "state_code_hhs_region_number_table.csv"
+JHU_FIPS_OUT_FILENAME = "jhu_uid_fips_table.csv"
+
+
+def create_fips_zip_crosswalk():
"""
- Generator that runs through fips/zip dataframe and spits out dictionary
+ Creates the (weighted) crosswalk tables between FIPS to ZIP and ZIP to FIPS
+ from source.
"""
- for _, row in df.iterrows():
- wei_js = row['county_weights']
- wei_js = json.loads(wei_js.replace("'", '"'))
- wei_sum = sum(wei_js.values())
- if (wei_sum == 0) and (len(wei_js)==1):
- yield {'zip': convert_fips(row['zip']),
- 'fips': convert_fips(row['fips']),
- 'weight': 1.}
- else:
- for fips, wei in wei_js.items():
- yield {'zip': convert_fips(row['zip']),
- 'fips': convert_fips(fips),
- 'weight': wei / wei_sum}
-
-def proc_zip_fips():
- """ ZIP FIPS Cross """
- zip_df = pd.read_csv(ZIP_CODE_FILE)
- zip_reduced = pd.DataFrame(a for a in wei_iter(zip_df))
- zip_reduced.to_csv(path.join(OUTPUT_DIR,ZIP_FIPS_OUT_FILE), index=False)
-
- zip_df['st_code'] = convert_fips_to_stcode(zip_df['fips'].astype(str).str.zfill(5))
- state_df = zip_df[['st_code','state_id','state_name']].drop_duplicates()
- assert state_df.shape[0] == 52, "More than 52 states?"
- state_df.to_csv(path.join(OUTPUT_DIR,STATE_OUT_FILE), index=False)
- return True
-
-def proc_fips_msa():
- """ FIPS MSA Cross """
- msa_cols = {'CBSA Code': int,
- 'Metropolitan/Micropolitan Statistical Area': str,
- 'FIPS State Code': str,
- 'FIPS County Code': str}
- msa_df = pd.read_excel(MSA_FILE, skiprows=2, skipfooter=4, usecols=msa_cols.keys(), dtype=msa_cols)
- metro_bool = msa_df['Metropolitan/Micropolitan Statistical Area'] == 'Metropolitan Statistical Area'
+ pop_df = pd.read_csv(FIPS_BY_ZIP_POP_URL)
+
+ # Create the FIPS column by combining the state and county codes
+ state_codes = pop_df["STATE"].astype(str).str.zfill(2)
+ county_codes = pop_df["COUNTY"].astype(str).str.zfill(3)
+ pop_df["fips"] = state_codes + county_codes
+
+ # Create the ZIP column by adding leading zeros to the ZIP
+ pop_df["zip"] = pop_df["ZCTA5"].astype(str).str.zfill(5)
+
+ # Pare down the dataframe to just the relevant columns: zip, fips, and population
+ pop_df = pop_df[["zip", "fips", "POPPT"]].rename(columns={"POPPT": "pop"})
+
+ # Find the population fractions (the heaviest computation, takes about a minute)
+ # Note that the denominator in the fractions is the source population
+ pop_df.set_index(["fips", "zip"], inplace=True)
+ fips_zip = pop_df.groupby("fips", as_index=False).apply(
+ lambda g: g["pop"] / g["pop"].sum()
+ )
+ zip_fips = pop_df.groupby("zip", as_index=False).apply(
+ lambda g: g["pop"] / g["pop"].sum()
+ )
+
+ # Rename and write to file
+ fips_zip = fips_zip.reset_index(level=["fips", "zip"]).rename(
+ columns={"pop": "weight"}
+ )
+ fips_zip = fips_zip[fips_zip["weight"] > 0.0]
+ fips_zip.to_csv(join(OUTPUT_DIR, FIPS_ZIP_OUT_FILENAME), index=False)
+ zip_fips = zip_fips.reset_index(level=["fips", "zip"]).rename(
+ columns={"pop": "weight"}
+ )
+ zip_fips = zip_fips[zip_fips["weight"] > 0.0]
+ zip_fips.to_csv(join(OUTPUT_DIR, ZIP_FIPS_OUT_FILENAME), index=False)
+
+
+def create_zip_hsa_hrr_crosswalk():
+ """Creates the crosswalk table from ZIP to HSA and from ZIP to HRR from source."""
+ zipped_csv = ZipFile(BytesIO(requests.get(ZIP_HSA_HRR_URL).content))
+ zip_df = pd.read_csv(zipped_csv.open(ZIP_HSA_HRR_FILENAME))
+
+ # Build the HSA table
+ hsa_df = zip_df[["zipcode18", "hsanum"]].rename(
+ columns={"zipcode18": "zip", "hsanum": "hsa"}
+ )
+
+ # Build the HRR table
+ hrr_df = zip_df[["zipcode18", "hrrnum"]].rename(
+ columns={"zipcode18": "zip", "hrrnum": "hrr"}
+ )
+
+ # Convert to zero-padded strings
+ hrr_df["zip"] = hrr_df["zip"].astype(str).str.zfill(5)
+ hrr_df["hrr"] = hrr_df["hrr"].astype(str)
+ hsa_df["zip"] = hsa_df["zip"].astype(str).str.zfill(5)
+ hsa_df["hsa"] = hsa_df["hsa"].astype(str)
+
+ hsa_df.to_csv(join(OUTPUT_DIR, ZIP_HSA_OUT_FILENAME), index=False)
+ hrr_df.to_csv(join(OUTPUT_DIR, ZIP_HRR_OUT_FILENAME), index=False)
+
+
+def create_fips_msa_crosswalk():
+ """Creates the crosswalk table from FIPS to MSA from source."""
+ msa_cols = {
+ "CBSA Code": int,
+ "Metropolitan/Micropolitan Statistical Area": str,
+ "FIPS State Code": str,
+ "FIPS County Code": str,
+ }
+ # The following line requires the xlrd package.
+ msa_df = pd.read_excel(
+ FIPS_MSA_URL,
+ skiprows=2,
+ skipfooter=4,
+ usecols=msa_cols.keys(),
+ dtype=msa_cols,
+ )
+
+ metro_bool = (
+ msa_df["Metropolitan/Micropolitan Statistical Area"]
+ == "Metropolitan Statistical Area"
+ )
msa_df = msa_df[metro_bool]
- msa_df['fips'] = msa_df['FIPS State Code'].str.cat(msa_df['FIPS County Code']).astype(int)
- msa_df.rename(columns={'CBSA Code':'msa'},inplace=True)
- msa_df = msa_df[['fips','msa']]
- msa_df.to_csv(path.join(OUTPUT_DIR,FIPS_MSA_OUT_FILE), index=False)
- return True
-
-def proc_fips_hrr():
- """ FIPS HRR Cross """
- hrr_df = pd.read_csv(FIPS_HRR_FILE)
- hrr_df = pd.melt(hrr_df,
- id_vars=['fips'],
- value_vars=hrr_df.columns[3:],
- var_name='hrr',
- value_name='weight')
- hrr_df = hrr_df[hrr_df['weight'] != 0.]
- hrr_df.to_csv(path.join(OUTPUT_DIR,FIPS_HRR_OUT_FILE), index=False)
- return True
-
-def proc_zip_hsa_hrr():
- zip_df = pd.read_csv(ZIP_HSA_HRR_FILE)
- hsa_df = zip_df[['zipcode18','hsanum']].\
- rename(columns={'zipcode18':'zip', 'hsanum':'hsa'})
- hrr_df = zip_df[['zipcode18','hrrnum']].\
- rename(columns={'zipcode18':'zip', 'hrrnum':'hrr'})
- hsa_df.to_csv(path.join(OUTPUT_DIR, ZIP_HSA_OUT_FILE), index=False)
- hrr_df.to_csv(path.join(OUTPUT_DIR, ZIP_HRR_OUT_FILE), index=False)
- return True
-
-def proc_jhu_uid_to_fips():
- hand_additions = pd.DataFrame([
- {'jhu_uid': 84070002, 'fips': 25007, 'weight': 0.5},
- {'jhu_uid': 84070002, 'fips': 25019, 'weight': 0.5},
- {'jhu_uid': 84070003, 'fips': 29095, 'weight': 0.25},
- {'jhu_uid': 84070003, 'fips': 29165, 'weight': 0.25},
- {'jhu_uid': 84070003, 'fips': 29037, 'weight': 0.25},
- {'jhu_uid': 84070003, 'fips': 29047, 'weight': 0.25},
- {'jhu_uid': 84002158, 'fips': 2270, 'weight': 1.},
- {'jhu_uid': 84070015, 'fips': 49000, 'weight': 1.},
- {'jhu_uid': 84070016, 'fips': 49000, 'weight': 1.},
- {'jhu_uid': 84070017, 'fips': 49000, 'weight': 1.},
- {'jhu_uid': 84070018, 'fips': 49000, 'weight': 1.},
- {'jhu_uid': 84070019, 'fips': 49000, 'weight': 1.},
- {'jhu_uid': 84070020, 'fips': 49000, 'weight': 1.}])
- jhu_df = pd.read_csv(JHU_FIPS_FILE, dtype={'UID':int, 'FIPS':float})
- jhu_df = jhu_df.query("Country_Region == 'US'")
- jhu_df = jhu_df[['UID','FIPS']]\
- .rename(columns={'UID':'jhu_uid', 'FIPS':'fips'})\
- .dropna(subset=['fips'])\
- .convert_dtypes({'fips':int})
- fips_st = jhu_df['fips'].astype(str).str.len() <= 2
- jhu_df.loc[fips_st, 'fips'] = jhu_df.loc[fips_st, 'fips']\
- .astype(str).str.ljust(5, '0')\
- .astype(int)
- dup_ind = jhu_df['jhu_uid'].isin(hand_additions['jhu_uid'].values)
- jhu_df.drop(jhu_df.index[dup_ind],inplace=True)
- jhu_df['weight'] = 1.
- jhu_df = pd.concat((jhu_df,hand_additions))
- jhu_df.to_csv(path.join(OUTPUT_DIR, JHU_FIPS_OUT_FILE), index=False)
- return True
-
-def proc_fips_to_zip():
- pop_df = pd.read_csv(FIPS_BY_ZIP_POP_FILE)
- pop_df['fips'] = pop_df['STATE'].astype(str).str.zfill(2) \
- + pop_df['COUNTY'].astype(str).str.zfill(3)
- pop_df['zip'] = pop_df['ZCTA5'].astype(str).str.zfill(5)
- pop_df = pop_df[['zip', 'fips', 'POPPT']].rename(columns={'POPPT': 'pop'})
-
- pop_fips = pop_df[['fips','pop']].groupby('fips').sum()
- pop_fips.to_csv(path.join(OUTPUT_DIR,COPOP_OUT_FILE))
-
- pop_zip = pop_df[['zip','pop']].groupby('zip').sum()
- pop_zip.to_csv(path.join(OUTPUT_DIR,ZIPPOP_OUT_FILE))
-
- pop_df.set_index(['fips', 'zip'], inplace=True)
- fips_zip = pop_df.groupby(level=0, as_index=False).apply(lambda g: g['pop'] / g['pop'].sum())
- zip_fips = pop_df.groupby(level=1, as_index=False).apply(lambda g: g['pop'] / g['pop'].sum())
-
- pd.DataFrame(fips_zip).reset_index(level=[1,2]).rename(columns={'pop':'weight'}).to_csv(path.join(OUTPUT_DIR, FIPS_ZIP_OUT_FILE), index=False)
- pd.DataFrame(zip_fips).reset_index(level=[1,2]).rename(columns={'pop':'weight'}).to_csv(path.join(OUTPUT_DIR, ZIP_FIPS_OUT_FILE), index=False)
- return True
+
+ # Combine state and county codes into a single FIPS code
+ msa_df["fips"] = msa_df["FIPS State Code"].str.cat(msa_df["FIPS County Code"])
+
+ msa_df.rename(columns={"CBSA Code": "msa"})[["fips", "msa"]].to_csv(
+ join(OUTPUT_DIR, FIPS_MSA_OUT_FILENAME), index=False
+ )
+
+
+def create_jhu_uid_fips_crosswalk():
+ """Creates the crosswalk table from JHU UID to FIPS from source."""
+ # These are hand modifications that need to be made to the translation
+ # between JHU UID and FIPS. See below for the special cases information
+ # https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/jhu-csse.html#geographical-exceptions
+ hand_additions = pd.DataFrame(
+ [
+ # Split aggregation of Dukes and Nantucket, Massachusetts
+ {
+ "jhu_uid": "84070002",
+ "fips": "25007",
+ "weight": 16535 / (16535 + 10172),
+ }, # Population: 16535
+ {
+ "jhu_uid": "84070002",
+ "fips": "25019",
+ "weight": 10172 / (16535 + 10172),
+ }, # 10172
+ # Kansas City, Missouri
+ {
+ "jhu_uid": "84070003",
+ "fips": "29095",
+ "weight": 674158 / 1084897,
+ }, # Population: 674158
+ {
+ "jhu_uid": "84070003",
+ "fips": "29165",
+ "weight": 89322 / 1084897,
+ }, # 89322
+ {
+ "jhu_uid": "84070003",
+ "fips": "29037",
+ "weight": 99478 / 1084897,
+ }, # 99478
+ {
+ "jhu_uid": "84070003",
+ "fips": "29047",
+ "weight": 221939 / 1084897,
+ }, # 221939
+ # Kusilvak, Alaska
+ {"jhu_uid": "84002158", "fips": "02270", "weight": 1.0},
+ # Oglala Lakota
+ {"jhu_uid": "84046102", "fips": "46113", "weight": 1.0},
+ # Aggregate Utah territories into a "State FIPS"
+ {"jhu_uid": "84070015", "fips": "49000", "weight": 1.0},
+ {"jhu_uid": "84070016", "fips": "49000", "weight": 1.0},
+ {"jhu_uid": "84070017", "fips": "49000", "weight": 1.0},
+ {"jhu_uid": "84070018", "fips": "49000", "weight": 1.0},
+ {"jhu_uid": "84070019", "fips": "49000", "weight": 1.0},
+ {"jhu_uid": "84070020", "fips": "49000", "weight": 1.0},
+ ]
+ )
+ unassigned_states = pd.DataFrame(
+ [
+ # Map the Unassigned category to a custom megaFIPS XX000
+ {"jhu_uid": str(x), "fips": str(x)[-2:].ljust(5, "0"), "weight": 1.0}
+ for x in range(84090001, 84090057)
+ ]
+ )
+ out_of_state = pd.DataFrame(
+ [
+ # Map the Out of State category to a custom megaFIPS XX000
+ {"jhu_uid": str(x), "fips": str(x)[-2:].ljust(5, "0"), "weight": 1.0}
+ for x in range(84080001, 84080057)
+ ]
+ )
+ puerto_rico_unassigned = pd.DataFrame(
+ [
+ # Map the Unassigned and Out of State categories to the cusom megaFIPS 72000
+ {"jhu_uid": "63072888", "fips": "72000", "weight": 1.0},
+ {"jhu_uid": "63072999", "fips": "72000", "weight": 1.0},
+ ]
+ )
+
+ jhu_df = (
+ pd.read_csv(JHU_FIPS_URL, dtype={"UID": str, "FIPS": str})
+ .query("Country_Region == 'US'")[["UID", "FIPS"]]
+ .rename(columns={"UID": "jhu_uid", "FIPS": "fips"})
+ .dropna(subset=["fips"])
+ )
+
+ # FIPS Codes that are just two digits long should be zero filled on the right.
+ # These are US state codes (XX) and the territories Guam (66), Northern Mariana Islands (69),
+ # Virgin Islands (78), and Puerto Rico (72).
+ fips_st = jhu_df["fips"].str.len() <= 2
+ jhu_df.loc[fips_st, "fips"] = jhu_df.loc[fips_st, "fips"].str.ljust(5, "0")
+
+ # Drop the JHU UIDs that were hand-modified
+ dup_ind = jhu_df["jhu_uid"].isin(
+ pd.concat(
+ [hand_additions, unassigned_states, out_of_state, puerto_rico_unassigned]
+ )["jhu_uid"].values
+ )
+ jhu_df.drop(jhu_df.index[dup_ind], inplace=True)
+
+ # Add weights of 1.0 to everything not in hand additions, then merge in hand-additions
+ # Finally, zero fill FIPS
+ jhu_df["weight"] = 1.0
+ jhu_df = pd.concat(
+ (
+ jhu_df,
+ hand_additions,
+ unassigned_states,
+ out_of_state,
+ puerto_rico_unassigned,
+ )
+ )
+ jhu_df["fips"] = jhu_df["fips"].astype(int).astype(str).str.zfill(5)
+ jhu_df.to_csv(join(OUTPUT_DIR, JHU_FIPS_OUT_FILENAME), index=False)
+
+
+def create_state_codes_crosswalk():
+ """Create the State ID -> State Name -> State code crosswalk file."""
+ df = (
+ pd.read_csv(STATE_CODES_URL, delimiter="|")
+ .drop(columns="STATENS")
+ .rename(
+ columns={
+ "STATE": "state_code",
+ "STUSAB": "state_id",
+ "STATE_NAME": "state_name",
+ }
+ )
+ )
+ df["state_code"] = df["state_code"].astype(str).str.zfill(2)
+ df["state_id"] = df["state_id"].astype(str).str.lower()
+
+ # Add a few extra US state territories manually
+ territories = pd.DataFrame(
+ [
+ {
+ "state_code": 70,
+ "state_name": "Republic of Palau",
+ "state_id": "pw",
+ },
+ {
+ "state_code": 68,
+ "state_name": "Marshall Islands",
+ "state_id": "mh",
+ },
+ {
+ "state_code": 64,
+ "state_name": "Federated States of Micronesia",
+ "state_id": "fm",
+ },
+ ]
+ )
+ df = pd.concat((df, territories))
+
+ df.to_csv(join(OUTPUT_DIR, STATE_OUT_FILENAME), index=False)
+
+
+def create_state_hhs_crosswalk():
+ """
+ Create the state to hhs crosswalk.
+ """
+ if not isfile(join(OUTPUT_DIR, STATE_OUT_FILENAME)):
+ create_state_codes_crosswalk()
+
+ ss_df = pd.read_csv(
+ join(OUTPUT_DIR, STATE_OUT_FILENAME),
+ dtype={"state_code": str, "state_name": str, "state_id": str},
+ )
+
+ with open(STATE_HHS_FILE) as temp_file:
+ temp = temp_file.readlines()
+
+ # Process text from https://www.hhs.gov/about/agencies/iea/regional-offices/index.html
+ temp = [int(s[7:9]) if "Region" in s else s for s in temp]
+ temp = [s.strip().split(", ") if isinstance(s, str) else s for s in temp]
+ temp = {temp[i]: temp[i + 1] for i in range(0, len(temp), 2)}
+ temp = {key: [x.lstrip(" and") for x in temp[key]] for key in temp}
+ temp = [[(key, x) for x in temp[key]] for key in temp]
+ hhs_state_pairs = [x for y in temp for x in y]
+
+ # Make naming adjustments
+ hhs_state_pairs.remove((2, "the Virgin Islands"))
+ hhs_state_pairs.append((2, "U.S. Virgin Islands"))
+ hhs_state_pairs.remove((9, "Commonwealth of the Northern Mariana Islands"))
+ hhs_state_pairs.append((9, "Northern Mariana Islands"))
+
+ # Make dataframe
+ hhs_df = pd.DataFrame(hhs_state_pairs, columns=["hhs_region_number", "state_name"])
+ hhs_df["hhs_region_number"] = hhs_df["hhs_region_number"].astype(str)
+
+ (
+ ss_df.merge(hhs_df, on="state_name", how="left")
+ .dropna()[["state_code", "hhs_region_number"]]
+ .to_csv(join(OUTPUT_DIR, STATE_HHS_OUT_FILENAME), index=False)
+ )
+
+
+def create_fips_population_table():
+ """
+ Build a table of populations by FIPS county codes. Uses US Census Bureau population
+ data from 2019, supplemented with 2010 population data for Puerto Rico, and a few
+ small counties.
+ """
+ census_pop = pd.read_csv(FIPS_POPULATION_URL, encoding="ISO-8859-1")
+ census_pop["fips"] = census_pop.apply(
+ lambda x: f"{x['STATE']:02d}{x['COUNTY']:03d}", axis=1
+ )
+ census_pop["pop"] = census_pop["POPESTIMATE2019"]
+ census_pop = census_pop[["fips", "pop"]]
+ census_pop = pd.concat(
+ [
+ census_pop,
+ pd.DataFrame(
+ {
+ "fips": ["70002", "70003"],
+ "pop": [0, 0],
+ }
+ ),
+ ]
+ )
+ census_pop = census_pop.reset_index(drop=True)
+
+ # Set population for Dukes and Nantucket
+ dn_fips = "70002"
+ dukes_fips = "25007"
+ nantu_fips = "25019"
+
+ census_pop.loc[census_pop["fips"] == dn_fips, "pop"] = (
+ census_pop.loc[census_pop["fips"] == dukes_fips, "pop"].values
+ + census_pop.loc[census_pop["fips"] == nantu_fips, "pop"].values
+ )
+
+ # Set population for Kansas City
+ census_pop.loc[census_pop["fips"] == "70003", "pop"] = 491918 # via Google
+
+ # Get the file with Puerto Rico populations
+ df_pr = pd.read_csv(FIPS_PUERTO_RICO_POPULATION_URL)
+ df_pr["fips"] = df_pr["STATE"].astype(str).str.zfill(2) + df_pr["COUNTY"].astype(
+ str
+ ).str.zfill(3)
+ df_pr["pop"] = df_pr["POPPT"]
+ df_pr = df_pr[["fips", "pop"]]
+ # Create the Puerto Rico megaFIPS
+ df_pr = df_pr[df_pr["fips"].isin([str(x) for x in range(72000, 72999)])]
+ df_pr = pd.concat(
+ [df_pr, pd.DataFrame([{"fips": "72000", "pop": df_pr["pop"].sum()}])]
+ )
+
+ # Fill the missing Puerto Rico data with 2010 information
+ df_pr = df_pr.groupby("fips").sum().reset_index()
+ df_pr = df_pr[~df_pr["fips"].isin(census_pop["fips"])]
+ census_pop_pr = pd.concat([census_pop, df_pr])
+ census_pop_pr.to_csv(join(OUTPUT_DIR, FIPS_POPULATION_OUT_FILENAME), index=False)
+
+
+def derive_zip_population_table():
+ """
+ Builds a table of populations by ZIP code. Combines the tble of populations by
+ FIPS code with the FIPS to ZIP code mapping.
+ """
+ if not isfile(join(OUTPUT_DIR, FIPS_POPULATION_OUT_FILENAME)):
+ create_fips_population_table()
+
+ if not isfile(join(OUTPUT_DIR, FIPS_ZIP_OUT_FILENAME)):
+ create_fips_zip_crosswalk()
+
+ census_pop = pd.read_csv(
+ join(OUTPUT_DIR, FIPS_POPULATION_OUT_FILENAME), dtype={"fips": str, "pop": int}
+ )
+ fz_df = pd.read_csv(
+ join(OUTPUT_DIR, FIPS_ZIP_OUT_FILENAME),
+ dtype={"fips": str, "zip": str, "weight": float},
+ )
+
+ df = census_pop.merge(fz_df, on="fips", how="left")
+ df["pop"] = df["pop"].multiply(df["weight"], axis=0)
+ df = df.drop(columns=["fips", "weight"]).groupby("zip").sum().dropna().reset_index()
+ df["pop"] = df["pop"].astype(int)
+ df.to_csv(join(OUTPUT_DIR, ZIP_POPULATION_OUT_FILENAME), index=False)
+
+
+def derive_fips_hrr_crosswalk():
+ """Derives a crosswalk file from FIPS to HRR through FIPZ -> ZIP -> HRR
+ from the crosswalk files made by the functions above."""
+ if not isfile(join(OUTPUT_DIR, FIPS_ZIP_OUT_FILENAME)):
+ create_fips_zip_crosswalk()
+
+ if not isfile(join(OUTPUT_DIR, ZIP_HRR_OUT_FILENAME)):
+ create_zip_hsa_hrr_crosswalk()
+
+ fz_df = pd.read_csv(
+ join(OUTPUT_DIR, FIPS_ZIP_OUT_FILENAME),
+ dtype={"fips": str, "zip": str, "weight": float},
+ )
+ zh_df = pd.read_csv(
+ join(OUTPUT_DIR, ZIP_HRR_OUT_FILENAME),
+ dtype={"zip": str, "hrr": str},
+ )
+
+ (
+ fz_df.merge(zh_df, on="zip", how="left")
+ .drop(columns="zip")
+ .groupby(["fips", "hrr"])
+ .sum()
+ .reset_index()
+ .to_csv(join(OUTPUT_DIR, FIPS_HRR_OUT_FILENAME), index=False)
+ )
+
+
+def derive_fips_state_crosswalk():
+ """
+ Builds a crosswalk between FIPS county codes and state information (number,
+ abbreviation, name).
+ """
+ fips_pop = pd.read_csv(
+ join(OUTPUT_DIR, FIPS_POPULATION_OUT_FILENAME), dtype={"fips": str, "pop": int}
+ )
+ state_codes = pd.read_csv(
+ join(OUTPUT_DIR, STATE_OUT_FILENAME),
+ dtype={"state_code": str, "state_id": str, "state_name": str},
+ )
+
+ fips_pop["state_code"] = fips_pop["fips"].str[:2]
+ (
+ fips_pop.merge(state_codes, on="state_code", how="left")
+ .drop(columns="pop")
+ .to_csv(join(OUTPUT_DIR, FIPS_STATE_OUT_FILENAME), index=False)
+ )
+
+
+def derive_zip_msa_crosswalk():
+ """
+ Derives a crosswalk file from ZIP to MSA through ZIP -> FIPS -> HRR
+ from the crosswalk files made by the functions above.
+ """
+ if not isfile(join(OUTPUT_DIR, ZIP_FIPS_OUT_FILENAME)):
+ create_fips_zip_crosswalk()
+
+ if not isfile(join(OUTPUT_DIR, FIPS_MSA_OUT_FILENAME)):
+ create_fips_msa_crosswalk()
+
+ zf_df = pd.read_csv(
+ join(OUTPUT_DIR, ZIP_FIPS_OUT_FILENAME),
+ dtype={"zip": str, "fips": str, "weight": float},
+ )
+ fm_df = pd.read_csv(
+ join(OUTPUT_DIR, FIPS_MSA_OUT_FILENAME), dtype={"fips": str, "msa": str}
+ )
+
+ (
+ zf_df.merge(fm_df, on="fips")
+ .drop(columns="fips")
+ .groupby(["msa", "zip"])
+ .sum()
+ .reset_index()
+ .to_csv(join(OUTPUT_DIR, ZIP_MSA_OUT_FILENAME), index=False)
+ )
+
+
+def derive_zip_to_state_code():
+ """
+ Builds a crosswalk between ZIP codes and state information (number, abbreviation,
+ name).
+ """
+ if not isfile(join(OUTPUT_DIR, STATE_OUT_FILENAME)):
+ create_state_codes_crosswalk()
+ if not isfile(join(OUTPUT_DIR, ZIP_FIPS_OUT_FILENAME)):
+ create_fips_zip_crosswalk()
+
+ sdf = pd.read_csv(
+ join(OUTPUT_DIR, STATE_OUT_FILENAME),
+ dtype={"state_code": str, "state_id": str, "state_name": str},
+ )
+ zf_cf = pd.read_csv(
+ join(OUTPUT_DIR, ZIP_FIPS_OUT_FILENAME), dtype={"zip": str, "fips": str}
+ )
+
+ zf_cf["state_code"] = zf_cf["fips"].str[:2]
+ (
+ zf_cf.merge(sdf, left_on="state_code", right_on="state_code", how="left")
+ .drop(columns=["fips"])
+ .to_csv(join(OUTPUT_DIR, ZIP_STATE_CODE_OUT_FILENAME), index=False)
+ )
+
if __name__ == "__main__":
+ create_fips_zip_crosswalk()
+ create_zip_hsa_hrr_crosswalk()
+ create_fips_msa_crosswalk()
+ create_jhu_uid_fips_crosswalk()
+ create_state_codes_crosswalk()
+ create_state_hhs_crosswalk()
+ create_fips_population_table()
- # proc_zip_fips()
- # proc_fips_msa()
- # proc_fips_hrr()
- # proc_zip_hsa_hrr()
- proc_jhu_uid_to_fips()
- # proc_fips_to_zip()
+ derive_fips_hrr_crosswalk()
+ derive_zip_msa_crosswalk()
+ derive_zip_to_state_code()
+ derive_fips_state_crosswalk()
+ derive_zip_population_table()
diff --git a/_delphi_utils_python/data_proc/geomap/hhs.txt b/_delphi_utils_python/data_proc/geomap/hhs.txt
new file mode 100644
index 000000000..2ddbb4ff1
--- /dev/null
+++ b/_delphi_utils_python/data_proc/geomap/hhs.txt
@@ -0,0 +1,20 @@
+Region 1 - Boston
+Connecticut, Maine, Massachusetts, New Hampshire, Rhode Island, and Vermont
+Region 2 - New York
+New Jersey, New York, Puerto Rico, and the Virgin Islands
+Region 3 - Philadelphia
+Delaware, District of Columbia, Maryland, Pennsylvania, Virginia, and West Virginia
+Region 4 - Atlanta
+Alabama, Florida, Georgia, Kentucky, Mississippi, North Carolina, South Carolina, and Tennessee
+Region 5 - Chicago
+Illinois, Indiana, Michigan, Minnesota, Ohio, and Wisconsin
+Region 6 - Dallas
+Arkansas, Louisiana, New Mexico, Oklahoma, and Texas
+Region 7 - Kansas City
+Iowa, Kansas, Missouri, and Nebraska
+Region 8 - Denver
+Colorado, Montana, North Dakota, South Dakota, Utah, and Wyoming
+Region 9 - San Francisco
+Arizona, California, Hawaii, Nevada, American Samoa, Commonwealth of the Northern Mariana Islands, Federated States of Micronesia, Guam, Marshall Islands, and Republic of Palau
+Region 10 - Seattle
+Alaska, Idaho, Oregon, and Washington
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/mapping.csv b/_delphi_utils_python/data_proc/geomap/mapping.csv
deleted file mode 100644
index c8b54b940..000000000
--- a/_delphi_utils_python/data_proc/geomap/mapping.csv
+++ /dev/null
@@ -1,3225 +0,0 @@
-02_20,jhu-csse,co-est2019-alldata,usafacts
-72001,,,
-72003,,,
-72005,,,
-72093,,,
-72011,,,
-72013,,,
-72017,,,
-72023,,,
-72111,,,
-72027,,,
-72081,,,
-72121,,,
-72039,,,
-72141,,,
-72051,,,
-72055,,,
-72054,,,
-72059,,,
-72065,,,
-72067,,,
-72071,,,
-72073,,,
-72079,,,
-72083,,,
-72091,,,
-72099,,,
-72117,,,
-72115,,,
-72097,,,
-72125,,,
-72131,,,
-72101,,,
-72143,,,
-72145,,,
-72153,,,
-72007,,,
-72123,,,
-72009,,,
-72095,,,
-72015,,,
-72113,,,
-72103,,,
-72105,,,
-72107,,,
-72109,,,
-72025,,,
-72029,,,
-72037,,,
-72035,,,
-72053,,,
-72041,,,
-72069,,,
-72119,,,
-72129,,,
-72133,,,
-72147,,,
-72149,,,
-72151,,,
-72043,,,
-72085,,,
-72087,,,
-72089,,,
-72049,,,
-72077,,,
-72063,,,
-72045,,,
-72047,,,
-72057,,,
-72019,,,
-72075,,,
-72127,,,
-72061,,,
-72137,,,
-72135,,,
-72021,,,
-72033,,,
-72139,,,
-72031,,,
-25013,25013,25013,25013
-25015,25015,25015,25015
-25027,25027,25027,25027
-25003,25003,25003,25003
-25011,25011,25011,25011
-25017,25017,25017,25017
-25009,25009,25009,25009
-25021,25021,25021,25021
-25023,25023,25023,25023
-25005,25005,25005,25005
-25025,25025,25025,25025
-25001,25001,25001,25001
-25007,25007,25007,25007
-25019,25019,25019,25019
-44007,44007,44007,44007
-44009,44009,44009,44009
-44001,44001,44001,44001
-44003,44003,44003,44003
-44005,44005,44005,44005
-33011,33011,33011,33011
-33015,33015,33015,33015
-33013,33013,33013,33013
-33009,33009,33009,33009
-33001,33001,33001,33001
-33003,33003,33003,33003
-33019,33019,33019,33019
-33005,33005,33005,33005
-33007,33007,33007,33007
-33017,33017,33017,33017
-23031,23031,23031,23031
-23005,23005,23005,23005
-23023,23023,23023,23023
-23017,23017,23017,23017
-23001,23001,23001,23001
-23007,23007,23007,23007
-23011,23011,23011,23011
-23015,23015,23015,23015
-23027,23027,23027,23027
-23019,23019,23019,23019
-23021,23021,23021,23021
-23009,23009,23009,23009
-23029,23029,23029,23029
-23003,23003,23003,23003
-23025,23025,23025,23025
-23013,23013,23013,23013
-50027,50027,50027,50027
-50017,50017,50017,50017
-50005,50005,50005,50005
-50025,50025,50025,50025
-50003,50003,50003,50003
-50007,50007,50007,50007
-50013,50013,50013,50013
-50011,50011,50011,50011
-50015,50015,50015,50015
-50001,50001,50001,50001
-50023,50023,50023,50023
-50021,50021,50021,50021
-50019,50019,50019,50019
-50009,50009,50009,50009
-9003,9003,9003,9003
-9005,9005,9005,9005
-9013,9013,9013,9013
-9015,9015,9015,9015
-9011,9011,9011,9011
-36103,36103,36103,36103
-9009,9009,9009,9009
-9007,9007,9007,9007
-9001,9001,9001,9001
-34023,34023,34023,34023
-34017,34017,34017,34017
-34013,34013,34013,34013
-34027,34027,34027,34027
-34003,34003,34003,34003
-34031,34031,34031,34031
-34039,34039,34039,34039
-34035,34035,34035,34035
-34037,34037,34037,34037
-34025,34025,34025,34025
-34041,34041,34041,34041
-34019,34019,34019,34019
-34033,34033,34033,34033
-34007,34007,34007,34007
-34029,34029,34029,34029
-34005,34005,34005,34005
-34015,34015,34015,34015
-34001,34001,34001,34001
-34009,34009,34009,34009
-34011,34011,34011,34011
-34021,34021,34021,34021
-36061,36061,36061,36061
-36085,36085,36085,36085
-36005,36005,36005,36005
-36119,36119,36119,36119
-36079,36079,36079,36079
-36087,36087,36087,36087
-36071,36071,36071,36071
-36059,36059,36059,36059
-36081,36081,36081,36081
-36047,36047,36047,36047
-36001,36001,36001,36001
-36093,36093,36093,36093
-36057,36057,36057,36057
-36039,36039,36039,36039
-36021,36021,36021,36021
-36083,36083,36083,36083
-36091,36091,36091,36091
-36035,36035,36035,36035
-36095,36095,36095,36095
-36115,36115,36115,36115
-36077,36077,36077,36077
-36041,36041,36041,36041
-36025,36025,36025,36025
-36111,36111,36111,36111
-36027,36027,36027,36027
-36105,36105,36105,36105
-36113,36113,36113,36113
-36031,36031,36031,36031
-36019,36019,36019,36019
-36033,36033,36033,36033
-36089,36089,36089,36089
-36067,36067,36067,36067
-36011,36011,36011,36011
-36075,36075,36075,36075
-36053,36053,36053,36053
-36023,36023,36023,36023
-36109,36109,36109,36109
-36065,36065,36065,36065
-36017,36017,36017,36017
-36117,36117,36117,36117
-36099,36099,36099,36099
-36049,36049,36049,36049
-36043,36043,36043,36043
-36045,36045,36045,36045
-36107,36107,36107,36107
-36007,36007,36007,36007
-36029,36029,36029,36029
-36037,36037,36037,36037
-36063,36063,36063,36063
-36121,36121,36121,36121
-36009,36009,36009,36009
-36013,36013,36013,36013
-36073,36073,36073,36073
-36051,36051,36051,36051
-36123,36123,36123,36123
-36055,36055,36055,36055
-36069,36069,36069,36069
-36101,36101,36101,36101
-36003,36003,36003,36003
-36097,36097,36097,36097
-36015,36015,36015,36015
-42007,42007,42007,42007
-42125,42125,42125,42125
-42003,42003,42003,42003
-42129,42129,42129,42129
-42059,42059,42059,42059
-42051,42051,42051,42051
-42111,42111,42111,42111
-42009,42009,42009,42009
-42057,42057,42057,42057
-42005,42005,42005,42005
-42063,42063,42063,42063
-42065,42065,42065,42065
-42021,42021,42021,42021
-42033,42033,42033,42033
-42047,42047,42047,42047
-42023,42023,42023,42023
-42019,42019,42019,42019
-42031,42031,42031,42031
-42073,42073,42073,42073
-42039,42039,42039,42039
-42085,42085,42085,42085
-42053,42053,42053,42053
-42121,42121,42121,42121
-42123,42123,42123,42123
-42083,42083,42083,42083
-42049,42049,42049,42049
-42013,42013,42013,42013
-42061,42061,42061,42061
-42027,42027,42027,42027
-42105,42105,42105,42105
-42035,42035,42035,42035
-42117,42117,42117,42117
-42015,42015,42015,42015
-42087,42087,42087,42087
-42075,42075,42075,42075
-42043,42043,42043,42043
-42099,42099,42099,42099
-42041,42041,42041,42041
-42097,42097,42097,42097
-42133,42133,42133,42133
-42071,42071,42071,42071
-42067,42067,42067,42067
-42109,42109,42109,42109
-42055,42055,42055,42055
-42001,42001,42001,42001
-42081,42081,42081,42081
-42113,42113,42113,42113
-42119,42119,42119,42119
-42037,42037,42037,42037
-42093,42093,42093,42093
-42107,42107,42107,42107
-42077,42077,42077,42077
-42095,42095,42095,42095
-42025,42025,42025,42025
-42091,42091,42091,42091
-42011,42011,42011,42011
-42089,42089,42089,42089
-42017,42017,42017,42017
-42079,42079,42079,42079
-42103,42103,42103,42103
-42069,42069,42069,42069
-42127,42127,42127,42127
-42115,42115,42115,42115
-42131,42131,42131,42131
-42045,42045,42045,42045
-42029,42029,42029,42029
-42101,42101,42101,42101
-10003,10003,10003,10003
-10001,10001,10001,10001
-10005,10005,10005,10005
-11001,11001,11001,11001
-51107,51107,51107,51107
-51047,51047,51047,51047
-51153,51153,51153,51153
-51683,51683,51683,51683
-51061,51061,51061,51061
-51059,51059,51059,51059
-51043,51043,51043,51043
-24017,24017,24017,24017
-24037,24037,24037,24037
-24033,24033,24033,24033
-24009,24009,24009,24009
-24027,24027,24027,24027
-24003,24003,24003,24003
-24031,24031,24031,24031
-24025,24025,24025,24025
-24005,24005,24005,24005
-24013,24013,24013,24013
-24510,24510,24510,24510
-24001,24001,24001,24001
-24023,24023,24023,24023
-24041,24041,24041,24041
-24035,24035,24035,24035
-24029,24029,24029,24029
-24019,24019,24019,24019
-24011,24011,24011,24011
-24021,24021,24021,24021
-24043,24043,24043,24043
-24045,24045,24045,24045
-24047,24047,24047,24047
-24039,24039,24039,24039
-24015,24015,24015,24015
-51610,51610,51610,51610
-51013,51013,51013,51013
-51510,51510,51510,51510
-51630,51630,51630,51630
-51179,51179,51179,51179
-51177,51177,51177,51177
-51033,51033,51033,51033
-51133,51133,51133,51133
-51137,51137,51137,51137
-51057,51057,51057,51057
-51193,51193,51193,51193
-51099,51099,51099,51099
-51159,51159,51159,51159
-51103,51103,51103,51103
-51840,51840,51840,51840
-51069,51069,51069,51069
-51187,51187,51187,51187
-51157,51157,51157,51157
-51171,51171,51171,51171
-51139,51139,51139,51139
-51113,51113,51113,51113
-51660,51660,51660,51660
-51165,51165,51165,51165
-51015,51015,51015,51015
-51003,51003,51003,51003
-51540,51540,51540,51540
-51125,51125,51125,51125
-51079,51079,51079,51079
-51065,51065,51065,51065
-51820,51820,51820,51820
-51007,51007,51007,51007
-51029,51029,51029,51029
-51085,51085,51085,51085
-51101,51101,51101,51101
-51127,51127,51127,51127
-51115,51115,51115,51115
-51097,51097,51097,51097
-51109,51109,51109,51109
-51049,51049,51049,51049
-51036,51036,51036,51036
-51119,51119,51119,51119
-51075,51075,51075,51075
-51087,51087,51087,51087
-51073,51073,51073,51073
-51041,51041,51041,51041
-51145,51145,51145,51145
-51095,51095,51095,51095
-51760,51760,51760,51760
-51830,51830,51830,51830
-51001,51001,51001,51001
-51093,51093,51093,51093
-51131,51131,51131,51131
-51550,51550,51550,51550
-51800,51800,51800,51800
-51810,51810,51810,51810
-51710,51710,51710,51710
-51700,51700,51700,51700
-51650,51650,51650,51650
-51735,51735,51735,51735
-51199,51199,51199,51199
-51740,51740,51740,51740
-51149,51149,51149,51149
-51730,51730,51730,51730
-51053,51053,51053,51053
-51025,51025,51025,51025
-51135,51135,51135,51135
-51175,51175,51175,51175
-51570,51570,51570,51570
-51181,51181,51181,51181
-51081,51081,51081,51081
-51670,51670,51670,51670
-51183,51183,51183,51183
-51147,51147,51147,51147
-51117,51117,51117,51117
-51037,51037,51037,51037
-51111,51111,51111,51111
-51770,51770,51770,51770
-51161,51161,51161,51161
-51141,51141,51141,51141
-51089,51089,51089,51089
-51155,51155,51155,51155
-51121,51121,51121,51121
-51023,51023,51023,51023
-51067,51067,51067,51067
-51143,51143,51143,51143
-51063,51063,51063,51063
-51071,51071,51071,51071
-51019,51019,51019,51019
-51045,51045,51045,51045
-51750,51750,51750,51750
-51775,51775,51775,51775
-51520,51520,51520,51520
-51191,51191,51191,51191
-51195,51195,51195,51195
-51051,51051,51051,51051
-51105,51105,51105,51105
-51167,51167,51167,51167
-51027,51027,51027,51027
-51169,51169,51169,51169
-51720,51720,51720,51720
-51077,51077,51077,51077
-51173,51173,51173,51173
-51035,51035,51035,51035
-51197,51197,51197,51197
-51021,51021,51021,51021
-51185,51185,51185,51185
-51640,51640,51640,51640
-51790,51790,51790,51790
-51017,51017,51017,51017
-51091,51091,51091,51091
-51163,51163,51163,51163
-51530,51530,51530,51530
-51005,51005,51005,51005
-51680,51680,51680,51680
-51031,51031,51031,51031
-51083,51083,51083,51083
-51009,51009,51009,51009
-51011,51011,51011,51011
-51590,51590,51590,51590
-54055,54055,54055,54055
-54109,54109,54109,54109
-54047,54047,54047,54047
-54059,54059,54059,54059
-54025,54025,54025,54025
-54075,54075,54075,54075
-54063,54063,54063,54063
-54089,54089,54089,54089
-54019,54019,54019,54019
-54043,54043,54043,54043
-54087,54087,54087,54087
-54081,54081,54081,54081
-54005,54005,54005,54005
-54079,54079,54079,54079
-54039,54039,54039,54039
-54015,54015,54015,54015
-54045,54045,54045,54045
-54007,54007,54007,54007
-54053,54053,54053,54053
-54013,54013,54013,54013
-54035,54035,54035,54035
-54021,54021,54021,54021
-54003,54003,54003,54003
-54065,54065,54065,54065
-54037,54037,54037,54037
-54027,54027,54027,54027
-54011,54011,54011,54011
-54099,54099,54099,54099
-54069,54069,54069,54069
-54009,54009,54009,54009
-54051,54051,54051,54051
-54029,54029,54029,54029
-54107,54107,54107,54107
-54073,54073,54073,54073
-54105,54105,54105,54105
-54095,54095,54095,54095
-54085,54085,54085,54085
-54103,54103,54103,54103
-54097,54097,54097,54097
-54067,54067,54067,54067
-54101,54101,54101,54101
-54083,54083,54083,54083
-54001,54001,54001,54001
-54093,54093,54093,54093
-54033,54033,54033,54033
-54041,54041,54041,54041
-54017,54017,54017,54017
-54091,54091,54091,54091
-54077,54077,54077,54077
-54061,54061,54061,54061
-54049,54049,54049,54049
-54023,54023,54023,54023
-54057,54057,54057,54057
-54031,54031,54031,54031
-54071,54071,54071,54071
-37059,37059,37059,37059
-37171,37171,37171,37171
-37067,37067,37067,37067
-37197,37197,37197,37197
-37159,37159,37159,37159
-37169,37169,37169,37169
-37157,37157,37157,37157
-37001,37001,37001,37001
-37151,37151,37151,37151
-37037,37037,37037,37037
-37123,37123,37123,37123
-37033,37033,37033,37033
-37081,37081,37081,37081
-37135,37135,37135,37135
-37057,37057,37057,37057
-37125,37125,37125,37125
-37105,37105,37105,37105
-37145,37145,37145,37145
-37085,37085,37085,37085
-37183,37183,37183,37183
-37063,37063,37063,37063
-37101,37101,37101,37101
-37077,37077,37077,37077
-37069,37069,37069,37069
-37191,37191,37191,37191
-37181,37181,37181,37181
-37185,37185,37185,37185
-37127,37127,37127,37127
-37065,37065,37065,37065
-37091,37091,37091,37091
-37013,37013,37013,37013
-37147,37147,37147,37147
-37195,37195,37195,37195
-37131,37131,37131,37131
-37083,37083,37083,37083
-37095,37095,37095,37095
-37117,37117,37117,37117
-37015,37015,37015,37015
-37079,37079,37079,37079
-37139,37139,37139,37139
-37055,37055,37055,37055
-37053,37053,37053,37053
-37143,37143,37143,37143
-37029,37029,37029,37029
-37177,37177,37177,37177
-37073,37073,37073,37073
-37187,37187,37187,37187
-37041,37041,37041,37041
-37167,37167,37167,37167
-37071,37071,37071,37071
-37007,37007,37007,37007
-37045,37045,37045,37045
-37161,37161,37161,37161
-37025,37025,37025,37025
-37119,37119,37119,37119
-37109,37109,37109,37109
-37179,37179,37179,37179
-37097,37097,37097,37097
-37051,37051,37051,37051
-37163,37163,37163,37163
-37017,37017,37017,37017
-37061,37061,37061,37061
-37153,37153,37153,37153
-37155,37155,37155,37155
-37165,37165,37165,37165
-37093,37093,37093,37093
-37129,37129,37129,37129
-37019,37019,37019,37019
-37141,37141,37141,37141
-37047,37047,37047,37047
-37133,37133,37133,37133
-37107,37107,37107,37107
-37137,37137,37137,37137
-37031,37031,37031,37031
-37049,37049,37049,37049
-37103,37103,37103,37103
-37035,37035,37035,37035
-37189,37189,37189,37189
-37193,37193,37193,37193
-37027,37027,37027,37027
-37023,37023,37023,37023
-37009,37009,37009,37009
-37011,37011,37011,37011
-37005,37005,37005,37005
-37003,37003,37003,37003
-37021,37021,37021,37021
-37075,37075,37075,37075
-37121,37121,37121,37121
-37099,37099,37099,37099
-37175,37175,37175,37175
-37173,37173,37173,37173
-37199,37199,37199,37199
-37087,37087,37087,37087
-37149,37149,37149,37149
-37089,37089,37089,37089
-37113,37113,37113,37113
-37115,37115,37115,37115
-37111,37111,37111,37111
-37039,37039,37039,37039
-37043,37043,37043,37043
-45027,45027,45027,45027
-45009,45009,45009,45009
-45063,45063,45063,45063
-45055,45055,45055,45055
-45061,45061,45061,45061
-45023,45023,45023,45023
-45039,45039,45039,45039
-45079,45079,45079,45079
-45075,45075,45075,45075
-45017,45017,45017,45017
-45087,45087,45087,45087
-45071,45071,45071,45071
-45085,45085,45085,45085
-45089,45089,45089,45089
-45057,45057,45057,45057
-45031,45031,45031,45031
-45029,45029,45029,45029
-45025,45025,45025,45025
-45003,45003,45003,45003
-45041,45041,45041,45041
-45081,45081,45081,45081
-45083,45083,45083,45083
-45059,45059,45059,45059
-45021,45021,45021,45021
-45019,45019,45019,45019
-45015,45015,45015,45015
-45035,45035,45035,45035
-45043,45043,45043,45043
-45051,45051,45051,45051
-45069,45069,45069,45069
-45067,45067,45067,45067
-45033,45033,45033,45033
-45045,45045,45045,45045
-45001,45001,45001,45001
-45007,45007,45007,45007
-45077,45077,45077,45077
-45073,45073,45073,45073
-45047,45047,45047,45047
-45091,45091,45091,45091
-45005,45005,45005,45005
-45011,45011,45011,45011
-45065,45065,45065,45065
-45037,45037,45037,45037
-45013,45013,45013,45013
-45049,45049,45049,45049
-45053,45053,45053,45053
-13089,13089,13089,13089
-13121,13121,13121,13121
-13067,13067,13067,13067
-13013,13013,13013,13013
-13247,13247,13247,13247
-13217,13217,13217,13217
-13135,13135,13135,13135
-13297,13297,13297,13297
-13117,13117,13117,13117
-13211,13211,13211,13211
-13057,13057,13057,13057
-13015,13015,13015,13015
-13233,13233,13233,13233
-13115,13115,13115,13115
-13045,13045,13045,13045
-13143,13143,13143,13143
-13097,13097,13097,13097
-13223,13223,13223,13223
-13227,13227,13227,13227
-13171,13171,13171,13171
-13113,13113,13113,13113
-13231,13231,13231,13231
-13035,13035,13035,13035
-13149,13149,13149,13149
-13199,13199,13199,13199
-13077,13077,13077,13077
-13255,13255,13255,13255
-13151,13151,13151,13151
-13285,13285,13285,13285
-13207,13207,13207,13207
-13063,13063,13063,13063
-13293,13293,13293,13293
-13107,13107,13107,13107
-13209,13209,13209,13209
-13309,13309,13309,13309
-13163,13163,13163,13163
-13031,13031,13031,13031
-13109,13109,13109,13109
-13267,13267,13267,13267
-13033,13033,13033,13033
-13279,13279,13279,13279
-13043,13043,13043,13043
-13165,13165,13165,13165
-13251,13251,13251,13251
-13175,13175,13175,13175
-13283,13283,13283,13283
-13139,13139,13139,13139
-13137,13137,13137,13137
-13011,13011,13011,13011
-13291,13291,13291,13291
-13111,13111,13111,13111
-13147,13147,13147,13147
-13119,13119,13119,13119
-13123,13123,13123,13123
-13241,13241,13241,13241
-13311,13311,13311,13311
-13157,13157,13157,13157
-13187,13187,13187,13187
-13085,13085,13085,13085
-13257,13257,13257,13257
-13281,13281,13281,13281
-13059,13059,13059,13059
-13221,13221,13221,13221
-13219,13219,13219,13219
-13105,13105,13105,13105
-13195,13195,13195,13195
-13265,13265,13265,13265
-13133,13133,13133,13133
-13317,13317,13317,13317
-13129,13129,13129,13129
-13213,13213,13213,13213
-13295,13295,13295,13295
-13313,13313,13313,13313
-13047,13047,13047,13047
-13055,13055,13055,13055
-13083,13083,13083,13083
-13073,13073,13073,13073
-13245,13245,13245,13245
-13301,13301,13301,13301
-13189,13189,13189,13189
-13125,13125,13125,13125
-13181,13181,13181,13181
-13303,13303,13303,13303
-13315,13315,13315,13315
-13319,13319,13319,13319
-13153,13153,13153,13153
-13269,13269,13269,13269
-13093,13093,13093,13093
-13225,13225,13225,13225
-13091,13091,13091,13091
-13023,13023,13023,13023
-13081,13081,13081,13081
-13289,13289,13289,13289
-13237,13237,13237,13237
-13169,13169,13169,13169
-13235,13235,13235,13235
-13159,13159,13159,13159
-13193,13193,13193,13193
-13167,13167,13167,13167
-13079,13079,13079,13079
-13021,13021,13021,13021
-13271,13271,13271,13271
-13197,13197,13197,13197
-13009,13009,13009,13009
-13141,13141,13141,13141
-13179,13179,13179,13179
-13103,13103,13103,13103
-13191,13191,13191,13191
-13029,13029,13029,13029
-13183,13183,13183,13183
-13051,13051,13051,13051
-13299,13299,13299,13299
-13005,13005,13005,13005
-13069,13069,13069,13069
-13001,13001,13001,13001
-13229,13229,13229,13229
-13127,13127,13127,13127
-13161,13161,13161,13161
-13049,13049,13049,13049
-13025,13025,13025,13025
-13305,13305,13305,13305
-13039,13039,13039,13039
-13185,13185,13185,13185
-13075,13075,13075,13075
-13019,13019,13019,13019
-13065,13065,13065,13065
-13003,13003,13003,13003
-13027,13027,13027,13027
-13275,13275,13275,13275
-13173,13173,13173,13173
-13071,13071,13071,13071
-13101,13101,13101,13101
-13095,13095,13095,13095
-13261,13261,13261,13261
-13287,13287,13287,13287
-13205,13205,13205,13205
-13277,13277,13277,13277
-13017,13017,13017,13017
-13177,13177,13177,13177
-13321,13321,13321,13321
-13155,13155,13155,13155
-13145,13145,13145,13145
-13053,13053,13053,13053
-13249,13249,13249,13249
-13263,13263,13263,13263
-13259,13259,13259,13259
-13215,13215,13215,13215
-13307,13307,13307,13307
-12019,12019,12019,12019
-12121,12121,12121,12121
-12089,12089,12089,12089
-12023,12023,12023,12023
-12007,12007,12007,12007
-12109,12109,12109,12109
-12003,12003,12003,12003
-12047,12047,12047,12047
-12125,12125,12125,12125
-12079,12079,12079,12079
-12067,12067,12067,12067
-12069,12069,12069,12069
-12035,12035,12035,12035
-12107,12107,12107,12107
-12083,12083,12083,12083
-12127,12127,12127,12127
-12119,12119,12119,12119
-12031,12031,12031,12031
-12073,12073,12073,12073
-12037,12037,12037,12037
-12077,12077,12077,12077
-12039,12039,12039,12039
-12129,12129,12129,12129
-12065,12065,12065,12065
-12123,12123,12123,12123
-12005,12005,12005,12005
-12063,12063,12063,12063
-12013,12013,12013,12013
-12059,12059,12059,12059
-12133,12133,12133,12133
-12131,12131,12131,12131
-12045,12045,12045,12045
-12033,12033,12033,12033
-12113,12113,12113,12113
-12091,12091,12091,12091
-12001,12001,12001,12001
-12041,12041,12041,12041
-12075,12075,12075,12075
-12029,12029,12029,12029
-12117,12117,12117,12117
-12095,12095,12095,12095
-12009,12009,12009,12009
-12061,12061,12061,12061
-12087,12087,12087,12087
-12011,12011,12011,12011
-12086,12086,12086,12086
-12099,12099,12099,12099
-12051,12051,12051,12051
-12085,12085,12085,12085
-12043,12043,12043,12043
-12057,12057,12057,12057
-12101,12101,12101,12101
-12103,12103,12103,12103
-12105,12105,12105,12105
-12055,12055,12055,12055
-12049,12049,12049,12049
-12097,12097,12097,12097
-12071,12071,12071,12071
-12015,12015,12015,12015
-12021,12021,12021,12021
-12081,12081,12081,12081
-12115,12115,12115,12115
-12027,12027,12027,12027
-12017,12017,12017,12017
-12053,12053,12053,12053
-12111,12111,12111,12111
-12093,12093,12093,12093
-1115,1115,1115,1115
-1073,1073,1073,1073
-1117,1117,1117,1117
-1123,1123,1123,1123
-1009,1009,1009,1009
-1121,1121,1121,1121
-1095,1095,1095,1095
-1043,1043,1043,1043
-1007,1007,1007,1007
-1021,1021,1021,1021
-1127,1127,1127,1127
-1037,1037,1037,1037
-1027,1027,1027,1027
-1125,1125,1125,1125
-1065,1065,1065,1065
-1107,1107,1107,1107
-1063,1063,1063,1063
-1119,1119,1119,1119
-1133,1133,1133,1133
-1057,1057,1057,1057
-1093,1093,1093,1093
-1075,1075,1075,1075
-1059,1059,1059,1059
-1103,1103,1103,1103
-1077,1077,1077,1077
-1083,1083,1083,1083
-1033,1033,1033,1033
-1079,1079,1079,1079
-1071,1071,1071,1071
-1089,1089,1089,1089
-1055,1055,1055,1055
-1019,1019,1019,1019
-1049,1049,1049,1049
-1001,1001,1001,1001
-1109,1109,1109,1109
-1041,1041,1041,1041
-1101,1101,1101,1101
-1005,1005,1005,1005
-1051,1051,1051,1051
-1039,1039,1039,1039
-1011,1011,1011,1011
-1013,1013,1013,1013
-1087,1087,1087,1087
-1085,1085,1085,1085
-1015,1015,1015,1015
-1029,1029,1029,1029
-1111,1111,1111,1111
-1069,1069,1069,1069
-1067,1067,1067,1067
-1031,1031,1031,1031
-1061,1061,1061,1061
-1045,1045,1045,1045
-1035,1035,1035,1035
-1099,1099,1099,1099
-1053,1053,1053,1053
-1131,1131,1131,1131
-1025,1025,1025,1025
-1097,1097,1097,1097
-1003,1003,1003,1003
-1129,1129,1129,1129
-1047,1047,1047,1047
-1091,1091,1091,1091
-1105,1105,1105,1105
-1081,1081,1081,1081
-1017,1017,1017,1017
-1113,1113,1113,1113
-1023,1023,1023,1023
-47125,47125,47125,47125
-47041,47041,47041,47041
-47037,47037,47037,47037
-47187,47187,47187,47187
-47021,47021,47021,47021
-47015,47015,47015,47015
-47031,47031,47031,47031
-47117,47117,47117,47117
-47003,47003,47003,47003
-47165,47165,47165,47165
-47161,47161,47161,47161
-47081,47081,47081,47081
-47043,47043,47043,47043
-47159,47159,47159,47159
-47147,47147,47147,47147
-47149,47149,47149,47149
-47083,47083,47083,47083
-47169,47169,47169,47169
-47085,47085,47085,47085
-47111,47111,47111,47111
-47189,47189,47189,47189
-47135,47135,47135,47135
-47177,47177,47177,47177
-47061,47061,47061,47061
-47065,47065,47065,47065
-47107,47107,47107,47107
-47051,47051,47051,47051
-47139,47139,47139,47139
-47011,47011,47011,47011
-47143,47143,47143,47143
-47121,47121,47121,47121
-47153,47153,47153,47153
-47103,47103,47103,47103
-47115,47115,47115,47115
-47127,47127,47127,47127
-47123,47123,47123,47123
-47007,47007,47007,47007
-47179,47179,47179,47179
-47059,47059,47059,47059
-47163,47163,47163,47163
-47091,47091,47091,47091
-47073,47073,47073,47073
-47019,47019,47019,47019
-47171,47171,47171,47171
-47009,47009,47009,47009
-47001,47001,47001,47001
-47057,47057,47057,47057
-47029,47029,47029,47029
-47013,47013,47013,47013
-47025,47025,47025,47025
-47129,47129,47129,47129
-47093,47093,47093,47093
-47035,47035,47035,47035
-47089,47089,47089,47089
-47151,47151,47151,47151
-47155,47155,47155,47155
-47105,47105,47105,47105
-47145,47145,47145,47145
-47067,47067,47067,47067
-47173,47173,47173,47173
-47063,47063,47063,47063
-47033,47033,47033,47033
-47157,47157,47157,47157
-47167,47167,47167,47167
-47045,47045,47045,47045
-47069,47069,47069,47069
-47075,47075,47075,47075
-47047,47047,47047,47047
-47097,47097,47097,47097
-47095,47095,47095,47095
-47017,47017,47017,47017
-47005,47005,47005,47005
-47079,47079,47079,47079
-47183,47183,47183,47183
-47131,47131,47131,47131
-47053,47053,47053,47053
-47113,47113,47113,47113
-47109,47109,47109,47109
-47039,47039,47039,47039
-47071,47071,47071,47071
-47077,47077,47077,47077
-47023,47023,47023,47023
-47119,47119,47119,47119
-47181,47181,47181,47181
-47055,47055,47055,47055
-47099,47099,47099,47099
-47101,47101,47101,47101
-47141,47141,47141,47141
-47049,47049,47049,47049
-47133,47133,47133,47133
-47087,47087,47087,47087
-47137,47137,47137,47137
-47027,47027,47027,47027
-47185,47185,47185,47185
-47175,47175,47175,47175
-28071,28071,28071,28071
-28009,28009,28009,28009
-28107,28107,28107,28107
-28145,28145,28145,28145
-28093,28093,28093,28093
-28027,28027,28027,28027
-28137,28137,28137,28137
-28119,28119,28119,28119
-28139,28139,28139,28139
-28143,28143,28143,28143
-28033,28033,28033,28033
-28151,28151,28151,28151
-28011,28011,28011,28011
-28055,28055,28055,28055
-28125,28125,28125,28125
-28133,28133,28133,28133
-28053,28053,28053,28053
-28081,28081,28081,28081
-28095,28095,28095,28095
-28057,28057,28057,28057
-28141,28141,28141,28141
-28117,28117,28117,28117
-28003,28003,28003,28003
-28115,28115,28115,28115
-28017,28017,28017,28017
-28013,28013,28013,28013
-28043,28043,28043,28043
-28015,28015,28015,28015
-28135,28135,28135,28135
-28161,28161,28161,28161
-28097,28097,28097,28097
-28083,28083,28083,28083
-28163,28163,28163,28163
-28049,28049,28049,28049
-28121,28121,28121,28121
-28127,28127,28127,28127
-28089,28089,28089,28089
-28079,28079,28079,28079
-28101,28101,28101,28101
-28029,28029,28029,28029
-28051,28051,28051,28051
-28007,28007,28007,28007
-28063,28063,28063,28063
-28123,28123,28123,28123
-28021,28021,28021,28021
-28129,28129,28129,28129
-28065,28065,28065,28065
-28001,28001,28001,28001
-28077,28077,28077,28077
-28149,28149,28149,28149
-28075,28075,28075,28075
-28153,28153,28153,28153
-28069,28069,28069,28069
-28023,28023,28023,28023
-28061,28061,28061,28061
-28159,28159,28159,28159
-28103,28103,28103,28103
-28099,28099,28099,28099
-28035,28035,28035,28035
-28073,28073,28073,28073
-28111,28111,28111,28111
-28109,28109,28109,28109
-28031,28031,28031,28031
-28091,28091,28091,28091
-28067,28067,28067,28067
-28041,28041,28041,28041
-28059,28059,28059,28059
-28047,28047,28047,28047
-28045,28045,28045,28045
-28131,28131,28131,28131
-28085,28085,28085,28085
-28037,28037,28037,28037
-28157,28157,28157,28157
-28113,28113,28113,28113
-28005,28005,28005,28005
-28147,28147,28147,28147
-28087,28087,28087,28087
-28019,28019,28019,28019
-28155,28155,28155,28155
-28025,28025,28025,28025
-28105,28105,28105,28105
-13037,13037,13037,13037
-13087,13087,13087,13087
-13099,13099,13099,13099
-13061,13061,13061,13061
-13273,13273,13273,13273
-13131,13131,13131,13131
-13243,13243,13243,13243
-13201,13201,13201,13201
-13253,13253,13253,13253
-13239,13239,13239,13239
-13007,13007,13007,13007
-21211,21211,21211,21211
-21179,21179,21179,21179
-21223,21223,21223,21223
-21103,21103,21103,21103
-21155,21155,21155,21155
-21185,21185,21185,21185
-21111,21111,21111,21111
-21229,21229,21229,21229
-21215,21215,21215,21215
-21029,21029,21029,21029
-21163,21163,21163,21163
-21027,21027,21027,21027
-21085,21085,21085,21085
-21093,21093,21093,21093
-21167,21167,21167,21167
-21181,21181,21181,21181
-21197,21197,21197,21197
-21205,21205,21205,21205
-21165,21165,21165,21165
-21209,21209,21209,21209
-21173,21173,21173,21173
-21065,21065,21065,21065
-21113,21113,21113,21113
-21005,21005,21005,21005
-21239,21239,21239,21239
-21017,21017,21017,21017
-21011,21011,21011,21011
-21187,21187,21187,21187
-21151,21151,21151,21151
-21049,21049,21049,21049
-21109,21109,21109,21109
-21203,21203,21203,21203
-21137,21137,21137,21137
-21021,21021,21021,21021
-21079,21079,21079,21079
-21067,21067,21067,21067
-21073,21073,21073,21073
-21235,21235,21235,21235
-21125,21125,21125,21125
-21121,21121,21121,21121
-21095,21095,21095,21095
-21013,21013,21013,21013
-21131,21131,21131,21131
-21133,21133,21133,21133
-21051,21051,21051,21051
-21037,21037,21037,21037
-21023,21023,21023,21023
-21097,21097,21097,21097
-21015,21015,21015,21015
-21191,21191,21191,21191
-21041,21041,21041,21041
-21081,21081,21081,21081
-21117,21117,21117,21117
-21161,21161,21161,21161
-21069,21069,21069,21069
-21077,21077,21077,21077
-21201,21201,21201,21201
-21019,21019,21019,21019
-21089,21089,21089,21089
-21127,21127,21127,21127
-21043,21043,21043,21043
-21135,21135,21135,21135
-21063,21063,21063,21063
-21159,21159,21159,21159
-21115,21115,21115,21115
-21071,21071,21071,21071
-21237,21237,21237,21237
-21129,21129,21129,21129
-21189,21189,21189,21189
-21025,21025,21025,21025
-21175,21175,21175,21175
-21193,21193,21193,21193
-21153,21153,21153,21153
-21195,21195,21195,21195
-21119,21119,21119,21119
-21145,21145,21145,21145
-21035,21035,21035,21035
-21039,21039,21039,21039
-21007,21007,21007,21007
-21157,21157,21157,21157
-21083,21083,21083,21083
-21139,21139,21139,21139
-21105,21105,21105,21105
-21055,21055,21055,21055
-21143,21143,21143,21143
-21075,21075,21075,21075
-21227,21227,21227,21227
-21003,21003,21003,21003
-21009,21009,21009,21009
-21169,21169,21169,21169
-21171,21171,21171,21171
-21213,21213,21213,21213
-21061,21061,21061,21061
-21141,21141,21141,21141
-21219,21219,21219,21219
-21221,21221,21221,21221
-21047,21047,21047,21047
-21031,21031,21031,21031
-21059,21059,21059,21059
-21183,21183,21183,21183
-21177,21177,21177,21177
-21149,21149,21149,21149
-21091,21091,21091,21091
-21233,21233,21233,21233
-21101,21101,21101,21101
-21107,21107,21107,21107
-21033,21033,21033,21033
-21225,21225,21225,21225
-21199,21199,21199,21199
-21045,21045,21045,21045
-21001,21001,21001,21001
-21053,21053,21053,21053
-21207,21207,21207,21207
-21147,21147,21147,21147
-21231,21231,21231,21231
-21099,21099,21099,21099
-21123,21123,21123,21123
-21057,21057,21057,21057
-21217,21217,21217,21217
-21087,21087,21087,21087
-39089,39089,39089,39089
-39049,39049,39049,39049
-39041,39041,39041,39041
-39083,39083,39083,39083
-39075,39075,39075,39075
-39021,39021,39021,39021
-39023,39023,39023,39023
-39097,39097,39097,39097
-39159,39159,39159,39159
-39045,39045,39045,39045
-39091,39091,39091,39091
-39127,39127,39127,39127
-39141,39141,39141,39141
-39129,39129,39129,39129
-39047,39047,39047,39047
-39073,39073,39073,39073
-39101,39101,39101,39101
-39117,39117,39117,39117
-39175,39175,39175,39175
-39065,39065,39065,39065
-39173,39173,39173,39173
-39143,39143,39143,39143
-39123,39123,39123,39123
-39095,39095,39095,39095
-39043,39043,39043,39043
-39171,39171,39171,39171
-39051,39051,39051,39051
-39039,39039,39039,39039
-39069,39069,39069,39069
-39119,39119,39119,39119
-39121,39121,39121,39121
-39013,39013,39013,39013
-39111,39111,39111,39111
-39059,39059,39059,39059
-39115,39115,39115,39115
-39031,39031,39031,39031
-39157,39157,39157,39157
-39081,39081,39081,39081
-39067,39067,39067,39067
-39029,39029,39029,39029
-39093,39093,39093,39093
-39007,39007,39007,39007
-39035,39035,39035,39035
-39055,39055,39055,39055
-39085,39085,39085,39085
-39153,39153,39153,39153
-39133,39133,39133,39133
-39103,39103,39103,39103
-39169,39169,39169,39169
-39099,39099,39099,39099
-39155,39155,39155,39155
-39151,39151,39151,39151
-39019,39019,39019,39019
-39147,39147,39147,39147
-39063,39063,39063,39063
-39005,39005,39005,39005
-39139,39139,39139,39139
-39033,39033,39033,39033
-39077,39077,39077,39077
-39061,39061,39061,39061
-39135,39135,39135,39135
-39165,39165,39165,39165
-39017,39017,39017,39017
-39015,39015,39015,39015
-39025,39025,39025,39025
-39027,39027,39027,39027
-39071,39071,39071,39071
-39001,39001,39001,39001
-39057,39057,39057,39057
-39149,39149,39149,39149
-39037,39037,39037,39037
-39113,39113,39113,39113
-39107,39107,39107,39107
-39109,39109,39109,39109
-39131,39131,39131,39131
-39053,39053,39053,39053
-39087,39087,39087,39087
-39079,39079,39079,39079
-39163,39163,39163,39163
-39145,39145,39145,39145
-39009,39009,39009,39009
-39167,39167,39167,39167
-39105,39105,39105,39105
-39003,39003,39003,39003
-39125,39125,39125,39125
-39011,39011,39011,39011
-39137,39137,39137,39137
-39161,39161,39161,39161
-18095,18095,18095,18095
-18057,18057,18057,18057
-18023,18023,18023,18023
-18159,18159,18159,18159
-18011,18011,18011,18011
-18059,18059,18059,18059
-18063,18063,18063,18063
-18139,18139,18139,18139
-18133,18133,18133,18133
-18081,18081,18081,18081
-18097,18097,18097,18097
-18145,18145,18145,18145
-18109,18109,18109,18109
-18041,18041,18041,18041
-18065,18065,18065,18065
-18013,18013,18013,18013
-18127,18127,18127,18127
-18089,18089,18089,18089
-18073,18073,18073,18073
-18091,18091,18091,18091
-18111,18111,18111,18111
-18149,18149,18149,18149
-18099,18099,18099,18099
-18085,18085,18085,18085
-18039,18039,18039,18039
-18049,18049,18049,18049
-18141,18141,18141,18141
-18087,18087,18087,18087
-18113,18113,18113,18113
-18069,18069,18069,18069
-18151,18151,18151,18151
-18003,18003,18003,18003
-18033,18033,18033,18033
-18001,18001,18001,18001
-18179,18179,18179,18179
-18183,18183,18183,18183
-18067,18067,18067,18067
-18103,18103,18103,18103
-18015,18015,18015,18015
-18053,18053,18053,18053
-18017,18017,18017,18017
-18169,18169,18169,18169
-18131,18131,18131,18131
-18029,18029,18029,18029
-18161,18161,18161,18161
-18137,18137,18137,18137
-18047,18047,18047,18047
-18155,18155,18155,18155
-18115,18115,18115,18115
-18143,18143,18143,18143
-18019,18019,18019,18019
-18175,18175,18175,18175
-18061,18061,18061,18061
-18025,18025,18025,18025
-18123,18123,18123,18123
-18043,18043,18043,18043
-18077,18077,18077,18077
-18005,18005,18005,18005
-18071,18071,18071,18071
-18079,18079,18079,18079
-18031,18031,18031,18031
-18035,18035,18035,18035
-18177,18177,18177,18177
-18075,18075,18075,18075
-18009,18009,18009,18009
-18135,18135,18135,18135
-18105,18105,18105,18105
-18093,18093,18093,18093
-18055,18055,18055,18055
-18119,18119,18119,18119
-18037,18037,18037,18037
-18117,18117,18117,18117
-18027,18027,18027,18027
-18083,18083,18083,18083
-18101,18101,18101,18101
-18147,18147,18147,18147
-18125,18125,18125,18125
-18173,18173,18173,18173
-18129,18129,18129,18129
-18051,18051,18051,18051
-18163,18163,18163,18163
-18167,18167,18167,18167
-18121,18121,18121,18121
-18021,18021,18021,18021
-18153,18153,18153,18153
-18165,18165,18165,18165
-18157,18157,18157,18157
-18107,18107,18107,18107
-18007,18007,18007,18007
-18045,18045,18045,18045
-18181,18181,18181,18181
-18171,18171,18171,18171
-26147,26147,26147,26147
-26087,26087,26087,26087
-26099,26099,26099,26099
-26125,26125,26125,26125
-26163,26163,26163,26163
-26161,26161,26161,26161
-26093,26093,26093,26093
-26115,26115,26115,26115
-26151,26151,26151,26151
-26049,26049,26049,26049
-26063,26063,26063,26063
-26155,26155,26155,26155
-26145,26145,26145,26145
-26157,26157,26157,26157
-26011,26011,26011,26011
-26017,26017,26017,26017
-26051,26051,26051,26051
-26057,26057,26057,26057
-26035,26035,26035,26035
-26111,26111,26111,26111
-26135,26135,26135,26135
-26143,26143,26143,26143
-26129,26129,26129,26129
-26001,26001,26001,26001
-26069,26069,26069,26069
-26037,26037,26037,26037
-26067,26067,26067,26067
-26117,26117,26117,26117
-26045,26045,26045,26045
-26065,26065,26065,26065
-26073,26073,26073,26073
-26015,26015,26015,26015
-26077,26077,26077,26077
-26005,26005,26005,26005
-26025,26025,26025,26025
-26159,26159,26159,26159
-26021,26021,26021,26021
-26023,26023,26023,26023
-26149,26149,26149,26149
-26027,26027,26027,26027
-26075,26075,26075,26075
-26091,26091,26091,26091
-26059,26059,26059,26059
-26081,26081,26081,26081
-26121,26121,26121,26121
-26085,26085,26085,26085
-26107,26107,26107,26107
-26123,26123,26123,26123
-26139,26139,26139,26139
-26105,26105,26105,26105
-26127,26127,26127,26127
-26165,26165,26165,26165
-26009,26009,26009,26009
-26101,26101,26101,26101
-26019,26019,26019,26019
-26089,26089,26089,26089
-26133,26133,26133,26133
-26113,26113,26113,26113
-26079,26079,26079,26079
-26055,26055,26055,26055
-26047,26047,26047,26047
-26031,26031,26031,26031
-26007,26007,26007,26007
-26119,26119,26119,26119
-26033,26033,26033,26033
-26029,26029,26029,26029
-26097,26097,26097,26097
-26039,26039,26039,26039
-26137,26137,26137,26137
-26141,26141,26141,26141
-26043,26043,26043,26043
-26083,26083,26083,26083
-26003,26003,26003,26003
-26041,26041,26041,26041
-26103,26103,26103,26103
-26109,26109,26109,26109
-26153,26153,26153,26153
-26095,26095,26095,26095
-26071,26071,26071,26071
-26061,26061,26061,26061
-26013,26013,26013,26013
-26131,26131,26131,26131
-26053,26053,26053,26053
-19181,19181,19181,19181
-19001,19001,19001,19001
-19049,19049,19049,19049
-19127,19127,19127,19127
-19083,19083,19083,19083
-19153,19153,19153,19153
-19185,19185,19185,19185
-19169,19169,19169,19169
-19029,19029,19029,19029
-19009,19009,19009,19009
-19077,19077,19077,19077
-19123,19123,19123,19123
-19099,19099,19099,19099
-19121,19121,19121,19121
-19079,19079,19079,19079
-19015,19015,19015,19015
-19069,19069,19069,19069
-19125,19125,19125,19125
-19117,19117,19117,19117
-19073,19073,19073,19073
-19027,19027,19027,19027
-19053,19053,19053,19053
-19197,19197,19197,19197
-19159,19159,19159,19159
-19107,19107,19107,19107
-19157,19157,19157,19157
-19175,19175,19175,19175
-19135,19135,19135,19135
-19171,19171,19171,19171
-19039,19039,19039,19039
-19033,19033,19033,19033
-19081,19081,19081,19081
-19189,19189,19189,19189
-19131,19131,19131,19131
-19195,19195,19195,19195
-19067,19067,19067,19067
-19109,19109,19109,19109
-19187,19187,19187,19187
-19021,19021,19021,19021
-19063,19063,19063,19063
-19147,19147,19147,19147
-19091,19091,19091,19091
-19161,19161,19161,19161
-19025,19025,19025,19025
-19151,19151,19151,19151
-19023,19023,19023,19023
-19037,19037,19037,19037
-19065,19065,19065,19065
-19019,19019,19019,19019
-19075,19075,19075,19075
-19013,19013,19013,19013
-19017,19017,19017,19017
-19089,19089,19089,19089
-19055,19055,19055,19055
-19173,19173,19173,19173
-19003,19003,19003,19003
-19137,19137,19137,19137
-19145,19145,19145,19145
-19149,19149,19149,19149
-19167,19167,19167,19167
-19193,19193,19193,19193
-19035,19035,19035,19035
-19093,19093,19093,19093
-19141,19141,19141,19141
-19133,19133,19133,19133
-19041,19041,19041,19041
-19119,19119,19119,19119
-19143,19143,19143,19143
-19059,19059,19059,19059
-19047,19047,19047,19047
-19165,19165,19165,19165
-19155,19155,19155,19155
-19085,19085,19085,19085
-19129,19129,19129,19129
-19071,19071,19071,19071
-19061,19061,19061,19061
-19097,19097,19097,19097
-19045,19045,19045,19045
-19043,19043,19043,19043
-19191,19191,19191,19191
-19005,19005,19005,19005
-19183,19183,19183,19183
-19113,19113,19113,19113
-19095,19095,19095,19095
-19105,19105,19105,19105
-19011,19011,19011,19011
-19031,19031,19031,19031
-19103,19103,19103,19103
-19179,19179,19179,19179
-19101,19101,19101,19101
-19177,19177,19177,19177
-19051,19051,19051,19051
-19007,19007,19007,19007
-19057,19057,19057,19057
-19111,19111,19111,19111
-19087,19087,19087,19087
-19115,19115,19115,19115
-19139,19139,19139,19139
-19163,19163,19163,19163
-55117,55117,55117,55117
-55131,55131,55131,55131
-55027,55027,55027,55027
-55089,55089,55089,55089
-55133,55133,55133,55133
-55039,55039,55039,55039
-55015,55015,55015,55015
-55071,55071,55071,55071
-55055,55055,55055,55055
-55059,55059,55059,55059
-55101,55101,55101,55101
-55079,55079,55079,55079
-55127,55127,55127,55127
-55105,55105,55105,55105
-55045,55045,55045,55045
-55049,55049,55049,55049
-55065,55065,55065,55065
-55025,55025,55025,55025
-55103,55103,55103,55103
-55043,55043,55043,55043
-55021,55021,55021,55021
-55111,55111,55111,55111
-55023,55023,55023,55023
-55001,55001,55001,55001
-55077,55077,55077,55077
-55047,55047,55047,55047
-55057,55057,55057,55057
-55095,55095,55095,55095
-55109,55109,55109,55109
-55093,55093,55093,55093
-55083,55083,55083,55083
-55075,55075,55075,55075
-55041,55041,55041,55041
-55087,55087,55087,55087
-55115,55115,55115,55115
-55009,55009,55009,55009
-55037,55037,55037,55037
-55078,55078,55078,55078
-55061,55061,55061,55061
-55029,55029,55029,55029
-55073,55073,55073,55073
-55019,55019,55019,55019
-55097,55097,55097,55097
-55067,55067,55067,55067
-55141,55141,55141,55141
-55119,55119,55119,55119
-55069,55069,55069,55069
-55099,55099,55099,55099
-55085,55085,55085,55085
-55125,55125,55125,55125
-55003,55003,55003,55003
-55051,55051,55051,55051
-55107,55107,55107,55107
-55063,55063,55063,55063
-55011,55011,55011,55011
-55053,55053,55053,55053
-55121,55121,55121,55121
-55081,55081,55081,55081
-55123,55123,55123,55123
-55035,55035,55035,55035
-55091,55091,55091,55091
-55017,55017,55017,55017
-55033,55033,55033,55033
-55005,55005,55005,55005
-55129,55129,55129,55129
-55007,55007,55007,55007
-55031,55031,55031,55031
-55113,55113,55113,55113
-55013,55013,55013,55013
-55139,55139,55139,55139
-55135,55135,55135,55135
-55137,55137,55137,55137
-27163,27163,27163,27163
-27003,27003,27003,27003
-27059,27059,27059,27059
-27065,27065,27065,27065
-27049,27049,27049,27049
-27025,27025,27025,27025
-27131,27131,27131,27131
-27139,27139,27139,27139
-27037,27037,27037,27037
-27115,27115,27115,27115
-27157,27157,27157,27157
-27147,27147,27147,27147
-27123,27123,27123,27123
-27053,27053,27053,27053
-27171,27171,27171,27171
-27143,27143,27143,27143
-27141,27141,27141,27141
-27129,27129,27129,27129
-27085,27085,27085,27085
-27019,27019,27019,27019
-27093,27093,27093,27093
-27145,27145,27145,27145
-27095,27095,27095,27095
-27075,27075,27075,27075
-27137,27137,27137,27137
-27031,27031,27031,27031
-27017,27017,27017,27017
-27061,27061,27061,27061
-27001,27001,27001,27001
-27071,27071,27071,27071
-27109,27109,27109,27109
-27099,27099,27099,27099
-27169,27169,27169,27169
-27055,27055,27055,27055
-27045,27045,27045,27045
-27039,27039,27039,27039
-27013,27013,27013,27013
-27103,27103,27103,27103
-27047,27047,27047,27047
-27043,27043,27043,27043
-27079,27079,27079,27079
-27015,27015,27015,27015
-27165,27165,27165,27165
-27091,27091,27091,27091
-27161,27161,27161,27161
-27033,27033,27033,27033
-27105,27105,27105,27105
-27063,27063,27063,27063
-27081,27081,27081,27081
-27101,27101,27101,27101
-27083,27083,27083,27083
-27133,27133,27133,27133
-27117,27117,27117,27117
-27127,27127,27127,27127
-27067,27067,27067,27067
-27149,27149,27149,27149
-27151,27151,27151,27151
-27011,27011,27011,27011
-27073,27073,27073,27073
-27155,27155,27155,27155
-27173,27173,27173,27173
-27023,27023,27023,27023
-27051,27051,27051,27051
-27041,27041,27041,27041
-27097,27097,27097,27097
-27153,27153,27153,27153
-27121,27121,27121,27121
-27111,27111,27111,27111
-27009,27009,27009,27009
-27035,27035,27035,27035
-27057,27057,27057,27057
-27021,27021,27021,27021
-27159,27159,27159,27159
-27005,27005,27005,27005
-27107,27107,27107,27107
-27027,27027,27027,27027
-27087,27087,27087,27087
-27119,27119,27119,27119
-27167,27167,27167,27167
-27007,27007,27007,27007
-27029,27029,27029,27029
-27077,27077,27077,27077
-27135,27135,27135,27135
-27113,27113,27113,27113
-27089,27089,27089,27089
-27125,27125,27125,27125
-27069,27069,27069,27069
-46127,46127,46127,46127
-46011,46011,46011,46011
-46099,46099,46099,46099
-46027,46027,46027,46027
-46087,46087,46087,46087
-46083,46083,46083,46083
-46125,46125,46125,46125
-46079,46079,46079,46079
-46101,46101,46101,46101
-46067,46067,46067,46067
-46135,46135,46135,46135
-46077,46077,46077,46077
-46009,46009,46009,46009
-46029,46029,46029,46029
-46039,46039,46039,46039
-46051,46051,46051,46051
-46025,46025,46025,46025
-46037,46037,46037,46037
-46057,46057,46057,46057
-46109,46109,46109,46109
-46091,46091,46091,46091
-46035,46035,46035,46035
-46061,46061,46061,46061
-46073,46073,46073,46073
-46043,46043,46043,46043
-46111,46111,46111,46111
-46053,46053,46053,46053
-46005,46005,46005,46005
-46097,46097,46097,46097
-46015,46015,46015,46015
-46023,46023,46023,46023
-46017,46017,46017,46017
-46069,46069,46069,46069
-46003,46003,46003,46003
-46059,46059,46059,46059
-46085,46085,46085,46085
-46013,46013,46013,46013
-46129,46129,46129,46129
-46115,46115,46115,46115
-46045,46045,46045,46045
-46049,46049,46049,46049
-46089,46089,46089,46089
-46107,46107,46107,46107
-46065,46065,46065,46065
-46119,46119,46119,46119
-46071,46071,46071,46071
-46123,46123,46123,46123
-46075,46075,46075,46075
-46117,46117,46117,46117
-46007,46007,46007,46007
-46055,46055,46055,46055
-46121,46121,46121,46121
-46095,46095,46095,46095
-46105,46105,46105,46105
-46031,46031,46031,46031
-46137,46137,46137,46137
-46041,46041,46041,46041
-46093,46093,46093,46093
-46021,46021,46021,46021
-46063,46063,46063,46063
-46103,46103,46103,46103
-46113,,,
-46019,46019,46019,46019
-46047,46047,46047,46047
-46033,46033,46033,46033
-46081,46081,46081,46081
-38077,38077,38077,38077
-38017,38017,38017,38017
-38097,38097,38097,38097
-38081,38081,38081,38081
-38073,38073,38073,38073
-38003,38003,38003,38003
-38091,38091,38091,38091
-38045,38045,38045,38045
-38039,38039,38039,38039
-38035,38035,38035,38035
-38099,38099,38099,38099
-38063,38063,38063,38063
-38067,38067,38067,38067
-38019,38019,38019,38019
-38071,38071,38071,38071
-38079,38079,38079,38079
-38095,38095,38095,38095
-38009,38009,38009,38009
-38005,38005,38005,38005
-38103,38103,38103,38103
-38027,38027,38027,38027
-38069,38069,38069,38069
-38093,38093,38093,38093
-38051,38051,38051,38051
-38031,38031,38031,38031
-38043,38043,38043,38043
-38083,38083,38083,38083
-38021,38021,38021,38021
-38047,38047,38047,38047
-38015,38015,38015,38015
-38059,38059,38059,38059
-38057,38057,38057,38057
-38029,38029,38029,38029
-38085,38085,38085,38085
-38037,38037,38037,38037
-38065,38065,38065,38065
-38055,38055,38055,38055
-38089,38089,38089,38089
-38087,38087,38087,38087
-38033,38033,38033,38033
-38011,38011,38011,38011
-38025,38025,38025,38025
-38007,38007,38007,38007
-38053,38053,38053,38053
-38001,38001,38001,38001
-38041,38041,38041,38041
-38101,38101,38101,38101
-38049,38049,38049,38049
-38013,38013,38013,38013
-38023,38023,38023,38023
-38075,38075,38075,38075
-38105,38105,38105,38105
-38061,38061,38061,38061
-30095,30095,30095,30095
-30111,30111,30111,30111
-30087,30087,30087,30087
-30009,30009,30009,30009
-30103,30103,30103,30103
-30097,30097,30097,30097
-30065,30065,30065,30065
-30003,30003,30003,30003
-30067,30067,30067,30067
-30027,30027,30027,30027
-30107,30107,30107,30107
-30037,30037,30037,30037
-30059,30059,30059,30059
-30033,30033,30033,30033
-30075,30075,30075,30075
-30031,30031,30031,30031
-30069,30069,30069,30069
-30085,30085,30085,30085
-30091,30091,30091,30091
-30055,30055,30055,30055
-30083,30083,30083,30083
-30019,30019,30019,30019
-30105,30105,30105,30105
-30021,30021,30021,30021
-30071,30071,30071,30071
-30017,30017,30017,30017
-30011,30011,30011,30011
-30025,30025,30025,30025
-30079,30079,30079,30079
-30109,30109,30109,30109
-30013,30013,30013,30013
-30049,30049,30049,30049
-30035,30035,30035,30035
-30073,30073,30073,30073
-30045,30045,30045,30045
-30099,30099,30099,30099
-30015,30015,30015,30015
-30051,30051,30051,30051
-30101,30101,30101,30101
-30041,30041,30041,30041
-30005,30005,30005,30005
-30043,30043,30043,30043
-30007,30007,30007,30007
-30093,30093,30093,30093
-30057,30057,30057,30057
-30023,30023,30023,30023
-30077,30077,30077,30077
-30001,30001,30001,30001
-30063,30063,30063,30063
-30061,30061,30061,30061
-30047,30047,30047,30047
-30081,30081,30081,30081
-30089,30089,30089,30089
-30039,30039,30039,30039
-30029,30029,30029,30029
-30053,30053,30053,30053
-17097,17097,17097,17097
-17031,17031,17031,17031
-17111,17111,17111,17111
-17043,17043,17043,17043
-17089,17089,17089,17089
-17037,17037,17037,17037
-17141,17141,17141,17141
-17197,17197,17197,17197
-17063,17063,17063,17063
-17105,17105,17105,17105
-17099,17099,17099,17099
-17093,17093,17093,17093
-17103,17103,17103,17103
-17091,17091,17091,17091
-17075,17075,17075,17075
-17053,17053,17053,17053
-17183,17183,17183,17183
-17019,17019,17019,17019
-17085,17085,17085,17085
-17007,17007,17007,17007
-17177,17177,17177,17177
-17015,17015,17015,17015
-17201,17201,17201,17201
-17195,17195,17195,17195
-17161,17161,17161,17161
-17131,17131,17131,17131
-17073,17073,17073,17073
-17011,17011,17011,17011
-17155,17155,17155,17155
-17123,17123,17123,17123
-17095,17095,17095,17095
-17109,17109,17109,17109
-17187,17187,17187,17187
-17057,17057,17057,17057
-17071,17071,17071,17071
-17175,17175,17175,17175
-17067,17067,17067,17067
-17143,17143,17143,17143
-17169,17169,17169,17169
-17203,17203,17203,17203
-17125,17125,17125,17125
-17179,17179,17179,17179
-17113,17113,17113,17113
-17107,17107,17107,17107
-17039,17039,17039,17039
-17115,17115,17115,17115
-17147,17147,17147,17147
-17041,17041,17041,17041
-17029,17029,17029,17029
-17139,17139,17139,17139
-17045,17045,17045,17045
-17173,17173,17173,17173
-17119,17119,17119,17119
-17013,17013,17013,17013
-17117,17117,17117,17117
-17051,17051,17051,17051
-17135,17135,17135,17135
-17061,17061,17061,17061
-17083,17083,17083,17083
-17163,17163,17163,17163
-17021,17021,17021,17021
-17005,17005,17005,17005
-17189,17189,17189,17189
-17027,17027,17027,17027
-17157,17157,17157,17157
-17133,17133,17133,17133
-17145,17145,17145,17145
-17001,17001,17001,17001
-17149,17149,17149,17149
-17009,17009,17009,17009
-17049,17049,17049,17049
-17185,17185,17185,17185
-17033,17033,17033,17033
-17101,17101,17101,17101
-17159,17159,17159,17159
-17035,17035,17035,17035
-17023,17023,17023,17023
-17079,17079,17079,17079
-17025,17025,17025,17025
-17191,17191,17191,17191
-17047,17047,17047,17047
-17167,17167,17167,17167
-17137,17137,17137,17137
-17171,17171,17171,17171
-17017,17017,17017,17017
-17129,17129,17129,17129
-17121,17121,17121,17121
-17081,17081,17081,17081
-17055,17055,17055,17055
-17065,17065,17065,17065
-17193,17193,17193,17193
-17199,17199,17199,17199
-17059,17059,17059,17059
-17077,17077,17077,17077
-17181,17181,17181,17181
-17127,17127,17127,17127
-17087,17087,17087,17087
-17003,17003,17003,17003
-17165,17165,17165,17165
-17069,17069,17069,17069
-17151,17151,17151,17151
-17153,17153,17153,17153
-29189,29189,29189,29189
-29099,29099,29099,29099
-29071,29071,29071,29071
-29221,29221,29221,29221
-29187,29187,29187,29187
-29073,29073,29073,29073
-29510,29510,29510,29510
-29183,29183,29183,29183
-29163,29163,29163,29163
-29139,29139,29139,29139
-29113,29113,29113,29113
-29007,29007,29007,29007
-29219,29219,29219,29219
-29027,29027,29027,29027
-29127,29127,29127,29127
-29045,29045,29045,29045
-29121,29121,29121,29121
-29199,29199,29199,29199
-29205,29205,29205,29205
-29111,29111,29111,29111
-29173,29173,29173,29173
-29103,29103,29103,29103
-29137,29137,29137,29137
-29001,29001,29001,29001
-29197,29197,29197,29197
-29211,29211,29211,29211
-29171,29171,29171,29171
-29115,29115,29115,29115
-29093,29093,29093,29093
-29179,29179,29179,29179
-29186,29186,29186,29186
-29123,29123,29123,29123
-29017,29017,29017,29017
-29031,29031,29031,29031
-29207,29207,29207,29207
-29157,29157,29157,29157
-29201,29201,29201,29201
-29223,29223,29223,29223
-29133,29133,29133,29133
-29069,29069,29069,29069
-29155,29155,29155,29155
-29143,29143,29143,29143
-29023,29023,29023,29023
-29181,29181,29181,29181
-29035,29035,29035,29035
-29107,29107,29107,29107
-29037,29037,29037,29037
-29095,29095,29095,29095
-29177,29177,29177,29177
-29165,29165,29165,29165
-29101,29101,29101,29101
-29047,29047,29047,29047
-29021,29021,29021,29021
-29075,29075,29075,29075
-29227,29227,29227,29227
-29003,29003,29003,29003
-29063,29063,29063,29063
-29147,29147,29147,29147
-29081,29081,29081,29081
-29025,29025,29025,29025
-29087,29087,29087,29087
-29005,29005,29005,29005
-29049,29049,29049,29049
-29117,29117,29117,29117
-29061,29061,29061,29061
-29033,29033,29033,29033
-29079,29079,29079,29079
-29041,29041,29041,29041
-29129,29129,29129,29129
-29013,29013,29013,29013
-29185,29185,29185,29185
-29083,29083,29083,29083
-29217,29217,29217,29217
-29039,29039,29039,29039
-29011,29011,29011,29011
-29097,29097,29097,29097
-29119,29119,29119,29119
-29145,29145,29145,29145
-29109,29109,29109,29109
-29009,29009,29009,29009
-29151,29151,29151,29151
-29019,29019,29019,29019
-29141,29141,29141,29141
-29125,29125,29125,29125
-29131,29131,29131,29131
-29135,29135,29135,29135
-29029,29029,29029,29029
-29051,29051,29051,29051
-29053,29053,29053,29053
-29089,29089,29089,29089
-29175,29175,29175,29175
-29159,29159,29159,29159
-29195,29195,29195,29195
-29015,29015,29015,29015
-29161,29161,29161,29161
-29203,29203,29203,29203
-29065,29065,29065,29065
-29055,29055,29055,29055
-29215,29215,29215,29215
-29169,29169,29169,29169
-29105,29105,29105,29105
-29091,29091,29091,29091
-29059,29059,29059,29059
-29167,29167,29167,29167
-29057,29057,29057,29057
-29077,29077,29077,29077
-29149,29149,29149,29149
-29067,29067,29067,29067
-29153,29153,29153,29153
-29043,29043,29043,29043
-29209,29209,29209,29209
-29213,29213,29213,29213
-29085,29085,29085,29085
-29225,29225,29225,29225
-29229,29229,29229,29229
-20005,20005,20005,20005
-20045,20045,20045,20045
-20103,20103,20103,20103
-20043,20043,20043,20043
-20107,20107,20107,20107
-20209,20209,20209,20209
-20121,20121,20121,20121
-20003,20003,20003,20003
-20091,20091,20091,20091
-20059,20059,20059,20059
-20087,20087,20087,20087
-20197,20197,20197,20197
-20177,20177,20177,20177
-20117,20117,20117,20117
-20131,20131,20131,20131
-20149,20149,20149,20149
-20139,20139,20139,20139
-20085,20085,20085,20085
-20013,20013,20013,20013
-20061,20061,20061,20061
-20161,20161,20161,20161
-20011,20011,20011,20011
-20205,20205,20205,20205
-20037,20037,20037,20037
-20021,20021,20021,20021
-20133,20133,20133,20133
-20001,20001,20001,20001
-20207,20207,20207,20207
-20111,20111,20111,20111
-20127,20127,20127,20127
-20031,20031,20031,20031
-20017,20017,20017,20017
-20015,20015,20015,20015
-20115,20115,20115,20115
-20073,20073,20073,20073
-20029,20029,20029,20029
-20157,20157,20157,20157
-20183,20183,20183,20183
-20201,20201,20201,20201
-20089,20089,20089,20089
-20173,20173,20173,20173
-20077,20077,20077,20077
-20191,20191,20191,20191
-20035,20035,20035,20035
-20079,20079,20079,20079
-20151,20151,20151,20151
-20019,20019,20019,20019
-20033,20033,20033,20033
-20095,20095,20095,20095
-20097,20097,20097,20097
-20007,20007,20007,20007
-20113,20113,20113,20113
-20125,20125,20125,20125
-20099,20099,20099,20099
-20049,20049,20049,20049
-20169,20169,20169,20169
-20041,20041,20041,20041
-20105,20105,20105,20105
-20123,20123,20123,20123
-20143,20143,20143,20143
-20159,20159,20159,20159
-20027,20027,20027,20027
-20141,20141,20141,20141
-20053,20053,20053,20053
-20155,20155,20155,20155
-20009,20009,20009,20009
-20165,20165,20165,20165
-20135,20135,20135,20135
-20047,20047,20047,20047
-20145,20145,20145,20145
-20185,20185,20185,20185
-20051,20051,20051,20051
-20147,20147,20147,20147
-20137,20137,20137,20137
-20065,20065,20065,20065
-20167,20167,20167,20167
-20195,20195,20195,20195
-20163,20163,20163,20163
-20039,20039,20039,20039
-20193,20193,20193,20193
-20153,20153,20153,20153
-20023,20023,20023,20023
-20181,20181,20181,20181
-20063,20063,20063,20063
-20179,20179,20179,20179
-20109,20109,20109,20109
-20199,20199,20199,20199
-20057,20057,20057,20057
-20025,20025,20025,20025
-20069,20069,20069,20069
-20075,20075,20075,20075
-20093,20093,20093,20093
-20101,20101,20101,20101
-20119,20119,20119,20119
-20055,20055,20055,20055
-20083,20083,20083,20083
-20187,20187,20187,20187
-20175,20175,20175,20175
-20203,20203,20203,20203
-20081,20081,20081,20081
-20171,20171,20171,20171
-20071,20071,20071,20071
-20067,20067,20067,20067
-20129,20129,20129,20129
-20189,20189,20189,20189
-31023,31023,31023,31023
-31177,31177,31177,31177
-31155,31155,31155,31155
-31039,31039,31039,31039
-31153,31153,31153,31153
-31055,31055,31055,31055
-31025,31025,31025,31025
-31021,31021,31021,31021
-31053,31053,31053,31053
-31043,31043,31043,31043
-31173,31173,31173,31173
-31067,31067,31067,31067
-31169,31169,31169,31169
-31127,31127,31127,31127
-31159,31159,31159,31159
-31185,31185,31185,31185
-31109,31109,31109,31109
-31133,31133,31133,31133
-31131,31131,31131,31131
-31097,31097,31097,31097
-31151,31151,31151,31151
-31147,31147,31147,31147
-31095,31095,31095,31095
-31059,31059,31059,31059
-31035,31035,31035,31035
-31141,31141,31141,31141
-31011,31011,31011,31011
-31183,31183,31183,31183
-31125,31125,31125,31125
-31121,31121,31121,31121
-31037,31037,31037,31037
-31003,31003,31003,31003
-31143,31143,31143,31143
-31077,31077,31077,31077
-31119,31119,31119,31119
-31051,31051,31051,31051
-31089,31089,31089,31089
-31149,31149,31149,31149
-31027,31027,31027,31027
-31107,31107,31107,31107
-31015,31015,31015,31015
-31179,31179,31179,31179
-31139,31139,31139,31139
-31103,31103,31103,31103
-31167,31167,31167,31167
-31079,31079,31079,31079
-31019,31019,31019,31019
-31041,31041,31041,31041
-31175,31175,31175,31175
-31163,31163,31163,31163
-31081,31081,31081,31081
-31093,31093,31093,31093
-31009,31009,31009,31009
-31071,31071,31071,31071
-31047,31047,31047,31047
-31115,31115,31115,31115
-31001,31001,31001,31001
-31083,31083,31083,31083
-31065,31065,31065,31065
-31137,31137,31137,31137
-31099,31099,31099,31099
-31181,31181,31181,31181
-31061,31061,31061,31061
-31073,31073,31073,31073
-31129,31129,31129,31129
-31145,31145,31145,31145
-31057,31057,31057,31057
-31029,31029,31029,31029
-31087,31087,31087,31087
-31063,31063,31063,31063
-31085,31085,31085,31085
-31111,31111,31111,31111
-31005,31005,31005,31005
-31049,31049,31049,31049
-31123,31123,31123,31123
-31101,31101,31101,31101
-31105,31105,31105,31105
-31033,31033,31033,31033
-31135,31135,31135,31135
-31031,31031,31031,31031
-31171,31171,31171,31171
-31069,31069,31069,31069
-31091,31091,31091,31091
-31113,31113,31113,31113
-31117,31117,31117,31117
-31017,31017,31017,31017
-31013,31013,31013,31013
-31075,31075,31075,31075
-31161,31161,31161,31161
-31045,31045,31045,31045
-31157,31157,31157,31157
-31007,31007,31007,31007
-31165,31165,31165,31165
-22051,22051,22051,22051
-22089,22089,22089,22089
-22087,22087,22087,22087
-22075,22075,22075,22075
-22095,22095,22095,22095
-22093,22093,22093,22093
-22071,22071,22071,22071
-22057,22057,22057,22057
-22007,22007,22007,22007
-22101,22101,22101,22101
-22109,22109,22109,22109
-22005,22005,22005,22005
-22105,22105,22105,22105
-22103,22103,22103,22103
-22117,22117,22117,22117
-22091,22091,22091,22091
-22063,22063,22063,22063
-22055,22055,22055,22055
-22113,22113,22113,22113
-22097,22097,22097,22097
-22045,22045,22045,22045
-22039,22039,22039,22039
-22001,22001,22001,22001
-22099,22099,22099,22099
-22053,22053,22053,22053
-22019,22019,22019,22019
-22023,22023,22023,22023
-22011,22011,22011,22011
-22003,22003,22003,22003
-22115,22115,22115,22115
-22121,22121,22121,22121
-22125,22125,22125,22125
-22033,22033,22033,22033
-22077,22077,22077,22077
-22047,22047,22047,22047
-22037,22037,22037,22037
-22013,22013,22013,22013
-22027,22027,22027,22027
-22017,22017,22017,22017
-22015,22015,22015,22015
-22119,22119,22119,22119
-22081,22081,22081,22081
-22031,22031,22031,22031
-22069,22069,22069,22069
-22085,22085,22085,22085
-22073,22073,22073,22073
-22041,22041,22041,22041
-22067,22067,22067,22067
-22111,22111,22111,22111
-22049,22049,22049,22049
-22061,22061,22061,22061
-22083,22083,22083,22083
-22065,22065,22065,22065
-22123,22123,22123,22123
-22035,22035,22035,22035
-22079,22079,22079,22079
-22029,22029,22029,22029
-22009,22009,22009,22009
-22025,22025,22025,22025
-22059,22059,22059,22059
-22107,22107,22107,22107
-22127,22127,22127,22127
-22043,22043,22043,22043
-22021,22021,22021,22021
-5069,5069,5069,5069
-5041,5041,5041,5041
-5011,5011,5011,5011
-5003,5003,5003,5003
-5017,5017,5017,5017
-5079,5079,5079,5079
-5025,5025,5025,5025
-5043,5043,5043,5043
-5103,5103,5103,5103
-5013,5013,5013,5013
-5099,5099,5099,5099
-5139,5139,5139,5139
-5039,5039,5039,5039
-5027,5027,5027,5027
-5019,5019,5019,5019
-5057,5057,5057,5057
-5081,5081,5081,5081
-5133,5133,5133,5133
-5073,5073,5073,5073
-5061,5061,5061,5061
-5091,5091,5091,5091
-5051,5051,5051,5051
-5059,5059,5059,5059
-5109,5109,5109,5109
-5097,5097,5097,5097
-5113,5113,5113,5113
-5105,5105,5105,5105
-5125,5125,5125,5125
-5001,5001,5001,5001
-5067,5067,5067,5067
-5147,5147,5147,5147
-5085,5085,5085,5085
-5145,5145,5145,5145
-5141,5141,5141,5141
-5117,5117,5117,5117
-5095,5095,5095,5095
-5119,5119,5119,5119
-5029,5029,5029,5029
-5045,5045,5045,5045
-5023,5023,5023,5023
-5137,5137,5137,5137
-5053,5053,5053,5053
-5063,5063,5063,5063
-5035,5035,5035,5035
-5077,5077,5077,5077
-5093,5093,5093,5093
-5123,5123,5123,5123
-5037,5037,5037,5037
-5107,5107,5107,5107
-5111,5111,5111,5111
-5031,5031,5031,5031
-5075,5075,5075,5075
-5055,5055,5055,5055
-5121,5121,5121,5121
-5021,5021,5021,5021
-5135,5135,5135,5135
-5065,5065,5065,5065
-5049,5049,5049,5049
-5005,5005,5005,5005
-5009,5009,5009,5009
-5015,5015,5015,5015
-5089,5089,5089,5089
-5101,5101,5101,5101
-5129,5129,5129,5129
-5115,5115,5115,5115
-5143,5143,5143,5143
-5007,5007,5007,5007
-5087,5087,5087,5087
-5047,5047,5047,5047
-5149,5149,5149,5149
-5083,5083,5083,5083
-5071,5071,5071,5071
-5127,5127,5127,5127
-5131,5131,5131,5131
-5033,5033,5033,5033
-40051,40051,40051,40051
-40109,40109,40109,40109
-40015,40015,40015,40015
-40087,40087,40087,40087
-40017,40017,40017,40017
-40073,40073,40073,40073
-40027,40027,40027,40027
-40149,40149,40149,40149
-40083,40083,40083,40083
-40099,40099,40099,40099
-40011,40011,40011,40011
-40075,40075,40075,40075
-40039,40039,40039,40039
-40049,40049,40049,40049
-40137,40137,40137,40137
-40103,40103,40103,40103
-40019,40019,40019,40019
-40085,40085,40085,40085
-40069,40069,40069,40069
-40095,40095,40095,40095
-40013,40013,40013,40013
-40067,40067,40067,40067
-40031,40031,40031,40031
-40065,40065,40065,40065
-40141,40141,40141,40141
-40033,40033,40033,40033
-40057,40057,40057,40057
-40055,40055,40055,40055
-40009,40009,40009,40009
-40129,40129,40129,40129
-40043,40043,40043,40043
-40047,40047,40047,40047
-40003,40003,40003,40003
-40151,40151,40151,40151
-40093,40093,40093,40093
-40053,40053,40053,40053
-40153,40153,40153,40153
-40045,40045,40045,40045
-40059,40059,40059,40059
-40007,40007,40007,40007
-40139,40139,40139,40139
-40025,40025,40025,40025
-40113,40113,40113,40113
-40147,40147,40147,40147
-40143,40143,40143,40143
-40037,40037,40037,40037
-40145,40145,40145,40145
-40131,40131,40131,40131
-40117,40117,40117,40117
-40119,40119,40119,40119
-40081,40081,40081,40081
-40105,40105,40105,40105
-40111,40111,40111,40111
-40035,40035,40035,40035
-40097,40097,40097,40097
-40041,40041,40041,40041
-40115,40115,40115,40115
-40101,40101,40101,40101
-40121,40121,40121,40121
-40091,40091,40091,40091
-40021,40021,40021,40021
-40135,40135,40135,40135
-40001,40001,40001,40001
-40061,40061,40061,40061
-40127,40127,40127,40127
-40005,40005,40005,40005
-40063,40063,40063,40063
-40029,40029,40029,40029
-40077,40077,40077,40077
-40079,40079,40079,40079
-40071,40071,40071,40071
-40089,40089,40089,40089
-40023,40023,40023,40023
-40125,40125,40125,40125
-40123,40123,40123,40123
-40107,40107,40107,40107
-40133,40133,40133,40133
-48113,48113,48113,48113
-48085,48085,48085,48085
-48121,48121,48121,48121
-48181,48181,48181,48181
-48397,48397,48397,48397
-48439,48439,48439,48439
-48139,48139,48139,48139
-48349,48349,48349,48349
-48467,48467,48467,48467
-48257,48257,48257,48257
-48213,48213,48213,48213
-48231,48231,48231,48231
-48499,48499,48499,48499
-48277,48277,48277,48277
-48387,48387,48387,48387
-48147,48147,48147,48147
-48119,48119,48119,48119
-48223,48223,48223,48223
-48379,48379,48379,48379
-48063,48063,48063,48063
-48449,48449,48449,48449
-48159,48159,48159,48159
-48037,48037,48037,48037
-48067,48067,48067,48067
-48343,48343,48343,48343
-48183,48183,48183,48183
-48315,48315,48315,48315
-48365,48365,48365,48365
-48459,48459,48459,48459
-48203,48203,48203,48203
-48423,48423,48423,48423
-48401,48401,48401,48401
-48073,48073,48073,48073
-48347,48347,48347,48347
-48001,48001,48001,48001
-48289,48289,48289,48289
-48225,48225,48225,48225
-48161,48161,48161,48161
-48455,48455,48455,48455
-48313,48313,48313,48313
-48005,48005,48005,48005
-48351,48351,48351,48351
-48405,48405,48405,48405
-48403,48403,48403,48403
-48241,48241,48241,48241
-48373,48373,48373,48373
-48419,48419,48419,48419
-48457,48457,48457,48457
-48367,48367,48367,48367
-48251,48251,48251,48251
-48497,48497,48497,48497
-48425,48425,48425,48425
-48221,48221,48221,48221
-48217,48217,48217,48217
-48363,48363,48363,48363
-48077,48077,48077,48077
-48337,48337,48337,48337
-48097,48097,48097,48097
-48485,48485,48485,48485
-48009,48009,48009,48009
-48275,48275,48275,48275
-48487,48487,48487,48487
-48503,48503,48503,48503
-48023,48023,48023,48023
-48207,48207,48207,48207
-48143,48143,48143,48143
-48429,48429,48429,48429
-48237,48237,48237,48237
-48417,48417,48417,48417
-48049,48049,48049,48049
-48133,48133,48133,48133
-48193,48193,48193,48193
-48093,48093,48093,48093
-48059,48059,48059,48059
-48447,48447,48447,48447
-48027,48027,48027,48027
-48491,48491,48491,48491
-48331,48331,48331,48331
-48145,48145,48145,48145
-48099,48099,48099,48099
-48309,48309,48309,48309
-48281,48281,48281,48281
-48395,48395,48395,48395
-48035,48035,48035,48035
-48293,48293,48293,48293
-48319,48319,48319,48319
-48399,48399,48399,48399
-48411,48411,48411,48411
-48307,48307,48307,48307
-48083,48083,48083,48083
-48299,48299,48299,48299
-48095,48095,48095,48095
-48327,48327,48327,48327
-48333,48333,48333,48333
-48267,48267,48267,48267
-48451,48451,48451,48451
-48235,48235,48235,48235
-48383,48383,48383,48383
-48081,48081,48081,48081
-48413,48413,48413,48413
-48105,48105,48105,48105
-48435,48435,48435,48435
-48431,48431,48431,48431
-48201,48201,48201,48201
-48157,48157,48157,48157
-48339,48339,48339,48339
-48471,48471,48471,48471
-48291,48291,48291,48291
-48407,48407,48407,48407
-48185,48185,48185,48185
-48199,48199,48199,48199
-48089,48089,48089,48089
-48321,48321,48321,48321
-48015,48015,48015,48015
-48481,48481,48481,48481
-48039,48039,48039,48039
-48473,48473,48473,48473
-48477,48477,48477,48477
-48167,48167,48167,48167
-48071,48071,48071,48071
-48361,48361,48361,48361
-48245,48245,48245,48245
-48041,48041,48041,48041
-48051,48051,48051,48051
-48287,48287,48287,48287
-48469,48469,48469,48469
-48391,48391,48391,48391
-48123,48123,48123,48123
-48239,48239,48239,48239
-48175,48175,48175,48175
-48285,48285,48285,48285
-48057,48057,48057,48057
-48283,48283,48283,48283
-48029,48029,48029,48029
-48019,48019,48019,48019
-48259,48259,48259,48259
-48163,48163,48163,48163
-48311,48311,48311,48311
-48013,48013,48013,48013
-48325,48325,48325,48325
-48265,48265,48265,48265
-48297,48297,48297,48297
-48479,48479,48479,48479
-48171,48171,48171,48171
-48505,48505,48505,48505
-48091,48091,48091,48091
-48025,48025,48025,48025
-48187,48187,48187,48187
-48255,48255,48255,48255
-48493,48493,48493,48493
-48177,48177,48177,48177
-48355,48355,48355,48355
-48249,48249,48249,48249
-48409,48409,48409,48409
-48261,48261,48261,48261
-48131,48131,48131,48131
-48047,48047,48047,48047
-48007,48007,48007,48007
-48247,48247,48247,48247
-48273,48273,48273,48273
-48215,48215,48215,48215
-48061,48061,48061,48061
-48427,48427,48427,48427
-48489,48489,48489,48489
-48021,48021,48021,48021
-48053,48053,48053,48053
-48031,48031,48031,48031
-48209,48209,48209,48209
-48055,48055,48055,48055
-48453,48453,48453,48453
-48463,48463,48463,48463
-48127,48127,48127,48127
-48137,48137,48137,48137
-48507,48507,48507,48507
-48271,48271,48271,48271
-48465,48465,48465,48465
-48443,48443,48443,48443
-48323,48323,48323,48323
-48385,48385,48385,48385
-48149,48149,48149,48149
-48359,48359,48359,48359
-48483,48483,48483,48483
-48295,48295,48295,48295
-48233,48233,48233,48233
-48369,48369,48369,48369
-48375,48375,48375,48375
-48341,48341,48341,48341
-48211,48211,48211,48211
-48381,48381,48381,48381
-48205,48205,48205,48205
-48011,48011,48011,48011
-48189,48189,48189,48189
-48111,48111,48111,48111
-48117,48117,48117,48117
-48069,48069,48069,48069
-48279,48279,48279,48279
-48357,48357,48357,48357
-48065,48065,48065,48065
-48195,48195,48195,48195
-48437,48437,48437,48437
-48179,48179,48179,48179
-48393,48393,48393,48393
-48421,48421,48421,48421
-48087,48087,48087,48087
-48075,48075,48075,48075
-48125,48125,48125,48125
-48197,48197,48197,48197
-48129,48129,48129,48129
-48155,48155,48155,48155
-48153,48153,48153,48153
-48191,48191,48191,48191
-48345,48345,48345,48345
-48269,48269,48269,48269
-48101,48101,48101,48101
-48045,48045,48045,48045
-48219,48219,48219,48219
-48079,48079,48079,48079
-48445,48445,48445,48445
-48107,48107,48107,48107
-48501,48501,48501,48501
-48017,48017,48017,48017
-48303,48303,48303,48303
-48169,48169,48169,48169
-48115,48115,48115,48115
-48165,48165,48165,48165
-48033,48033,48033,48033
-48305,48305,48305,48305
-48253,48253,48253,48253
-48433,48433,48433,48433
-48353,48353,48353,48353
-48441,48441,48441,48441
-48227,48227,48227,48227
-48335,48335,48335,48335
-48415,48415,48415,48415
-48263,48263,48263,48263
-48151,48151,48151,48151
-48329,48329,48329,48329
-48003,48003,48003,48003
-48389,48389,48389,48389
-48475,48475,48475,48475
-48371,48371,48371,48371
-48103,48103,48103,48103
-48243,48243,48243,48243
-48173,48173,48173,48173
-48135,48135,48135,48135
-48495,48495,48495,48495
-48317,48317,48317,48317
-48461,48461,48461,48461
-48301,48301,48301,48301
-48141,48141,48141,48141
-48043,48043,48043,48043
-48229,48229,48229,48229
-48377,48377,48377,48377
-48109,48109,48109,48109
-8059,8059,8059,8059
-8005,8005,8005,8005
-8001,8001,8001,8001
-8014,8014,8014,8014
-8013,8013,8013,8013
-8039,8039,8039,8039
-8035,8035,8035,8035
-8041,8041,8041,8041
-8031,8031,8031,8031
-8093,8093,8093,8093
-8047,8047,8047,8047
-8037,8037,8037,8037
-8117,8117,8117,8117
-8107,8107,8107,8107
-8057,8057,8057,8057
-8019,8019,8019,8019
-8049,8049,8049,8049
-8065,8065,8065,8065
-8069,8069,8069,8069
-8123,8123,8123,8123
-8087,8087,8087,8087
-8121,8121,8121,8121
-8095,8095,8095,8095
-8075,8075,8075,8075
-8125,8125,8125,8125
-8115,8115,8115,8115
-8017,8017,8017,8017
-8073,8073,8073,8073
-8063,8063,8063,8063
-8119,8119,8119,8119
-8101,8101,8101,8101
-8071,8071,8071,8071
-8061,8061,8061,8061
-8009,8009,8009,8009
-8089,8089,8089,8089
-8025,8025,8025,8025
-8011,8011,8011,8011
-8055,8055,8055,8055
-8099,8099,8099,8099
-8003,8003,8003,8003
-8021,8021,8021,8021
-8007,8007,8007,8007
-8067,8067,8067,8067
-8023,8023,8023,8023
-8109,8109,8109,8109
-8079,8079,8079,8079
-8105,8105,8105,8105
-8015,8015,8015,8015
-8051,8051,8051,8051
-8043,8043,8043,8043
-8053,8053,8053,8053
-8027,8027,8027,8027
-8033,8033,8033,8033
-8083,8083,8083,8083
-8113,8113,8113,8113
-8085,8085,8085,8085
-8029,8029,8029,8029
-8091,8091,8091,8091
-8111,8111,8111,8111
-8077,8077,8077,8077
-8045,8045,8045,8045
-8081,8081,8081,8081
-8097,8097,8097,8097
-8103,8103,8103,8103
-56021,56021,56021,56021
-56001,56001,56001,56001
-56029,56029,56029,56029
-56031,56031,56031,56031
-56015,56015,56015,56015
-56027,56027,56027,56027
-56009,56009,56009,56009
-56007,56007,56007,56007
-56037,56037,56037,56037
-56043,56043,56043,56043
-56003,56003,56003,56003
-56017,56017,56017,56017
-56013,56013,56013,56013
-56025,56025,56025,56025
-56019,56019,56019,56019
-56045,56045,56045,56045
-56011,56011,56011,56011
-56005,56005,56005,56005
-56033,56033,56033,56033
-56035,56035,56035,56035
-56041,56041,56041,56041
-56039,56039,56039,56039
-56023,56023,56023,56023
-16005,16005,16005,16005
-16011,16011,16011,16011
-16077,16077,16077,16077
-16023,16023,16023,16023
-16029,16029,16029,16029
-16007,16007,16007,16007
-16037,16037,16037,16037
-16041,16041,16041,16041
-16071,16071,16071,16071
-16059,16059,16059,16059
-16019,16019,16019,16019
-16083,16083,16083,16083
-16031,16031,16031,16031
-16013,16013,16013,16013
-16047,16047,16047,16047
-16025,16025,16025,16025
-16063,16063,16063,16063
-16053,16053,16053,16053
-16067,16067,16067,16067
-16043,16043,16043,16043
-16081,16081,16081,16081
-16033,16033,16033,16033
-16051,16051,16051,16051
-16065,16065,16065,16065
-16069,16069,16069,16069
-16035,16035,16035,16035
-16049,16049,16049,16049
-16061,16061,16061,16061
-16057,16057,16057,16057
-16015,16015,16015,16015
-16073,16073,16073,16073
-16027,16027,16027,16027
-16087,16087,16087,16087
-16085,16085,16085,16085
-16003,16003,16003,16003
-16001,16001,16001,16001
-16045,16045,16045,16045
-16075,16075,16075,16075
-16039,16039,16039,16039
-16055,16055,16055,16055
-16079,16079,16079,16079
-16017,16017,16017,16017
-16021,16021,16021,16021
-16009,16009,16009,16009
-49013,49013,49013,49013
-49049,49049,49049,49049
-49035,49035,49035,49035
-49011,49011,49011,49011
-49043,49043,49043,49043
-49029,49029,49029,49029
-49045,49045,49045,49045
-49009,49009,49009,49009
-49047,49047,49047,49047
-49033,49033,49033,49033
-49051,49051,49051,49051
-49057,49057,49057,49057
-49003,49003,49003,49003
-49005,49005,49005,49005
-49007,49007,49007,49007
-49037,49037,49037,49037
-49015,49015,49015,49015
-49019,49019,49019,49019
-49025,49025,49025,49025
-49041,49041,49041,49041
-49039,49039,49039,49039
-49027,49027,49027,49027
-49023,49023,49023,49023
-49017,49017,49017,49017
-49001,49001,49001,49001
-49021,49021,49021,49021
-49055,49055,49055,49055
-49053,49053,49053,49053
-49031,49031,49031,49031
-4013,4013,4013,4013
-4021,4021,4021,4021
-4007,4007,4007,4007
-4019,4019,4019,4019
-4025,4025,4025,4025
-4012,4012,4012,4012
-4027,4027,4027,4027
-4015,4015,4015,4015
-4009,4009,4009,4009
-4011,4011,4011,4011
-4003,4003,4003,4003
-4023,4023,4023,4023
-4017,4017,4017,4017
-4001,4001,4001,4001
-4005,4005,4005,4005
-35043,35043,35043,35043
-35061,35061,35061,35061
-35006,35006,35006,35006
-35053,35053,35053,35053
-35001,35001,35001,35001
-35049,35049,35049,35049
-35027,35027,35027,35027
-35039,35039,35039,35039
-35057,35057,35057,35057
-35045,35045,35045,35045
-35031,35031,35031,35031
-35055,35055,35055,35055
-35047,35047,35047,35047
-35028,35028,35028,35028
-35007,35007,35007,35007
-35019,35019,35019,35019
-35033,35033,35033,35033
-35021,35021,35021,35021
-35003,35003,35003,35003
-35051,35051,35051,35051
-35013,35013,35013,35013
-35023,35023,35023,35023
-35017,35017,35017,35017
-35029,35029,35029,35029
-35035,35035,35035,35035
-35009,35009,35009,35009
-35041,35041,35041,35041
-35025,35025,35025,35025
-35011,35011,35011,35011
-35037,35037,35037,35037
-35005,35005,35005,35005
-35015,35015,35015,35015
-35059,35059,35059,35059
-32017,32017,32017,32017
-32003,32003,32003,32003
-32023,32023,32023,32023
-32009,32009,32009,32009
-32033,32033,32033,32033
-32015,32015,32015,32015
-32011,32011,32011,32011
-32031,32031,32031,32031
-32019,32019,32019,32019
-32013,32013,32013,32013
-32001,32001,32001,32001
-32005,32005,32005,32005
-32021,32021,32021,32021
-32027,32027,32027,32027
-32029,32029,32029,32029
-32510,32510,32510,32510
-32007,32007,32007,32007
-6037,6037,6037,6037
-6059,6059,6059,6059
-6111,6111,6111,6111
-6071,6071,6071,6071
-6065,6065,6065,6065
-6073,6073,6073,6073
-6025,6025,6025,6025
-6027,6027,6027,6027
-6083,6083,6083,6083
-6107,6107,6107,6107
-6031,6031,6031,6031
-6029,6029,6029,6029
-6019,6019,6019,6019
-6079,6079,6079,6079
-6053,6053,6053,6053
-6051,6051,6051,6051
-6039,6039,6039,6039
-6047,6047,6047,6047
-6043,6043,6043,6043
-6081,6081,6081,6081
-6085,6085,6085,6085
-6075,6075,6075,6075
-6001,6001,6001,6001
-6055,6055,6055,6055
-6013,6013,6013,6013
-6095,6095,6095,6095
-6041,6041,6041,6041
-6097,6097,6097,6097
-6087,6087,6087,6087
-6069,6069,6069,6069
-6077,6077,6077,6077
-6009,6009,6009,6009
-6109,6109,6109,6109
-6099,6099,6099,6099
-6045,6045,6045,6045
-6033,6033,6033,6033
-6023,6023,6023,6023
-6105,6105,6105,6105
-6015,6015,6015,6015
-6093,6093,6093,6093
-6005,6005,6005,6005
-6061,6061,6061,6061
-6113,6113,6113,6113
-6067,6067,6067,6067
-6017,6017,6017,6017
-6003,6003,6003,6003
-6101,6101,6101,6101
-6115,6115,6115,6115
-6091,6091,6091,6091
-6011,6011,6011,6011
-6007,6007,6007,6007
-6063,6063,6063,6063
-6021,6021,6021,6021
-6057,6057,6057,6057
-6089,6089,6089,6089
-6049,6049,6049,6049
-6035,6035,6035,6035
-6103,6103,6103,6103
-15003,15003,15003,15003
-15007,15007,15007,15007
-15001,15001,15001,15001
-15009,15009,15009,15009
-15005,15005,15005,15005
-41065,41065,41065,41065
-41047,41047,41047,41047
-41005,41005,41005,41005
-41067,41067,41067,41067
-41027,41027,41027,41027
-41009,41009,41009,41009
-41051,41051,41051,41051
-41055,41055,41055,41055
-41071,41071,41071,41071
-41007,41007,41007,41007
-41057,41057,41057,41057
-41053,41053,41053,41053
-41043,41043,41043,41043
-41041,41041,41041,41041
-41003,41003,41003,41003
-41039,41039,41039,41039
-41015,41015,41015,41015
-41019,41019,41019,41019
-41011,41011,41011,41011
-41033,41033,41033,41033
-41029,41029,41029,41029
-41035,41035,41035,41035
-41037,41037,41037,41037
-41017,41017,41017,41017
-41025,41025,41025,41025
-41031,41031,41031,41031
-41069,41069,41069,41069
-41013,41013,41013,41013
-41059,41059,41059,41059
-41021,41021,41021,41021
-41001,41001,41001,41001
-41023,41023,41023,41023
-41049,41049,41049,41049
-41061,41061,41061,41061
-41063,41063,41063,41063
-41045,41045,41045,41045
-53033,53033,53033,53033
-53061,53061,53061,53061
-53037,53037,53037,53037
-53035,53035,53035,53035
-53073,53073,53073,53073
-53057,53057,53057,53057
-53055,53055,53055,53055
-53029,53029,53029,53029
-53053,53053,53053,53053
-53009,53009,53009,53009
-53031,53031,53031,53031
-53041,53041,53041,53041
-53067,53067,53067,53067
-53027,53027,53027,53027
-53045,53045,53045,53045
-53049,53049,53049,53049
-53015,53015,53015,53015
-53011,53011,53011,53011
-53039,53039,53039,53039
-53059,53059,53059,53059
-53069,53069,53069,53069
-53007,53007,53007,53007
-53017,53017,53017,53017
-53047,53047,53047,53047
-53025,53025,53025,53025
-53077,53077,53077,53077
-53063,53063,53063,53063
-53043,53043,53043,53043
-53065,53065,53065,53065
-53075,53075,53075,53075
-53001,53001,53001,53001
-53019,53019,53019,53019
-53051,53051,53051,53051
-53021,53021,53021,53021
-53005,53005,53005,53005
-53071,53071,53071,53071
-53013,53013,53013,53013
-53023,53023,53023,53023
-53003,53003,53003,53003
-2020,2020,2020,2020
-2185,2185,2185,2185
-2016,2016,2016,2016
-2164,2164,2164,2164
-2150,2150,2150,2150
-2050,2050,2050,2050
-2013,2013,2013,2013
-2270,,,2270
-2070,2070,2070,2070
-2122,2122,2122,2122
-2290,2290,2290,2290
-2261,2261,2261,2261
-2060,2060,2060,2060
-2170,2170,2170,2170
-2180,2180,2180,2180
-2282,2282,2282,2282
-2090,2090,2090,2090
-2068,2068,2068,2068
-2240,2240,2240,2240
-2188,2188,2188,2188
-2110,2110,2110,2110
-2105,2105,2105,2105
-2100,2100,2100,2100
-2195,2195,2195,2195
-2220,2220,2220,2220
-2230,2230,2230,2230
-2130,2130,2130,2130
-2275,2275,2275,2275
-2198,2198,2198,2198
-,2158,2158,2158
-,28039,28039,28039
-,46102,46102,46102
-,51580,51580,51580
-,51595,51595,51595
-,51600,51600,51600
-,51620,51620,51620
-,51678,51678,51678
-,51685,51685,51685
-,51690,51690,51690
-,70002,,
-,70003,,
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/msa_list.csv b/_delphi_utils_python/data_proc/geomap/msa_list.csv
deleted file mode 100644
index 41f0b8639..000000000
--- a/_delphi_utils_python/data_proc/geomap/msa_list.csv
+++ /dev/null
@@ -1,1232 +0,0 @@
-CBSA ID,MSA Name,FIPS ID,County Name
-10180,"Abilene, TX (Metropolitan Statistical Area)",48059,"Callahan, TX"
-10180,"Abilene, TX (Metropolitan Statistical Area)",48253,"Jones, TX"
-10180,"Abilene, TX (Metropolitan Statistical Area)",48441,"Taylor, TX"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72003,"Aguada Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72005,"Aguadilla Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72011,"Añasco Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72071,"Isabela Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72081,"Lares Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72099,"Moca Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72117,"Rincón Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72131,"San Sebastián Municipio, PR"
-10380,"Aguadilla-Isabela, PR (Metropolitan Statistical Area)",72141,"Utuado Municipio, PR"
-10420,"Akron, OH (Metropolitan Statistical Area)",39133,"Portage, OH"
-10420,"Akron, OH (Metropolitan Statistical Area)",39153,"Summit, OH"
-10500,"Albany, GA (Metropolitan Statistical Area)",13095,"Dougherty, GA"
-10500,"Albany, GA (Metropolitan Statistical Area)",13177,"Lee, GA"
-10500,"Albany, GA (Metropolitan Statistical Area)",13273,"Terrell, GA"
-10500,"Albany, GA (Metropolitan Statistical Area)",13321,"Worth, GA"
-10540,"Albany-Lebanon, OR (Metropolitan Statistical Area)",41043,"Linn, OR"
-10580,"Albany-Schenectady-Troy, NY (Metropolitan Statistical Area)",36001,"Albany, NY"
-10580,"Albany-Schenectady-Troy, NY (Metropolitan Statistical Area)",36083,"Rensselaer, NY"
-10580,"Albany-Schenectady-Troy, NY (Metropolitan Statistical Area)",36091,"Saratoga, NY"
-10580,"Albany-Schenectady-Troy, NY (Metropolitan Statistical Area)",36093,"Schenectady, NY"
-10580,"Albany-Schenectady-Troy, NY (Metropolitan Statistical Area)",36095,"Schoharie, NY"
-10740,"Albuquerque, NM (Metropolitan Statistical Area)",35001,"Bernalillo, NM"
-10740,"Albuquerque, NM (Metropolitan Statistical Area)",35043,"Sandoval, NM"
-10740,"Albuquerque, NM (Metropolitan Statistical Area)",35057,"Torrance, NM"
-10740,"Albuquerque, NM (Metropolitan Statistical Area)",35061,"Valencia, NM"
-10780,"Alexandria, LA (Metropolitan Statistical Area)",22043,"Grant, LA"
-10780,"Alexandria, LA (Metropolitan Statistical Area)",22079,"Rapides, LA"
-10900,"Allentown-Bethlehem-Easton, PA-NJ (Metropolitan Statistical Area)",34041,"Warren, NJ"
-10900,"Allentown-Bethlehem-Easton, PA-NJ (Metropolitan Statistical Area)",42025,"Carbon, PA"
-10900,"Allentown-Bethlehem-Easton, PA-NJ (Metropolitan Statistical Area)",42077,"Lehigh, PA"
-10900,"Allentown-Bethlehem-Easton, PA-NJ (Metropolitan Statistical Area)",42095,"Northampton, PA"
-11020,"Altoona, PA (Metropolitan Statistical Area)",42013,"Blair, PA"
-11100,"Amarillo, TX (Metropolitan Statistical Area)",48011,"Armstrong, TX"
-11100,"Amarillo, TX (Metropolitan Statistical Area)",48065,"Carson, TX"
-11100,"Amarillo, TX (Metropolitan Statistical Area)",48359,"Oldham, TX"
-11100,"Amarillo, TX (Metropolitan Statistical Area)",48375,"Potter, TX"
-11100,"Amarillo, TX (Metropolitan Statistical Area)",48381,"Randall, TX"
-11180,"Ames, IA (Metropolitan Statistical Area)",19015,"Boone, IA"
-11180,"Ames, IA (Metropolitan Statistical Area)",19169,"Story, IA"
-11260,"Anchorage, AK (Metropolitan Statistical Area)",02020,"Anchorage Municipality, AK"
-11260,"Anchorage, AK (Metropolitan Statistical Area)",02170,"Matanuska-Susitna Borough, AK"
-11460,"Ann Arbor, MI (Metropolitan Statistical Area)",26161,"Washtenaw, MI"
-11500,"Anniston-Oxford, AL (Metropolitan Statistical Area)",01015,"Calhoun, AL"
-11540,"Appleton, WI (Metropolitan Statistical Area)",55015,"Calumet, WI"
-11540,"Appleton, WI (Metropolitan Statistical Area)",55087,"Outagamie, WI"
-11640,"Arecibo, PR (Metropolitan Statistical Area)",72013,"Arecibo Municipio, PR"
-11640,"Arecibo, PR (Metropolitan Statistical Area)",72027,"Camuy Municipio, PR"
-11640,"Arecibo, PR (Metropolitan Statistical Area)",72065,"Hatillo Municipio, PR"
-11640,"Arecibo, PR (Metropolitan Statistical Area)",72115,"Quebradillas Municipio, PR"
-11700,"Asheville, NC (Metropolitan Statistical Area)",37021,"Buncombe, NC"
-11700,"Asheville, NC (Metropolitan Statistical Area)",37087,"Haywood, NC"
-11700,"Asheville, NC (Metropolitan Statistical Area)",37089,"Henderson, NC"
-11700,"Asheville, NC (Metropolitan Statistical Area)",37115,"Madison, NC"
-12020,"Athens-Clarke County, GA (Metropolitan Statistical Area)",13059,"Clarke, GA"
-12020,"Athens-Clarke County, GA (Metropolitan Statistical Area)",13195,"Madison, GA"
-12020,"Athens-Clarke County, GA (Metropolitan Statistical Area)",13219,"Oconee, GA"
-12020,"Athens-Clarke County, GA (Metropolitan Statistical Area)",13221,"Oglethorpe, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13013,"Barrow, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13015,"Bartow, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13035,"Butts, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13045,"Carroll, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13057,"Cherokee, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13063,"Clayton, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13067,"Cobb, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13077,"Coweta, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13085,"Dawson, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13089,"DeKalb, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13097,"Douglas, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13113,"Fayette, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13117,"Forsyth, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13121,"Fulton, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13135,"Gwinnett, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13143,"Haralson, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13149,"Heard, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13151,"Henry, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13159,"Jasper, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13171,"Lamar, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13199,"Meriwether, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13211,"Morgan, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13217,"Newton, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13223,"Paulding, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13227,"Pickens, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13231,"Pike, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13247,"Rockdale, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13255,"Spalding, GA"
-12060,"Atlanta-Sandy Springs-Alpharetta, GA (Metropolitan Statistical Area)",13297,"Walton, GA"
-12100,"Atlantic City-Hammonton, NJ (Metropolitan Statistical Area)",34001,"Atlantic, NJ"
-12220,"Auburn-Opelika, AL (Metropolitan Statistical Area)",01081,"Lee, AL"
-12260,"Augusta-Richmond County, GA-SC (Metropolitan Statistical Area)",13033,"Burke, GA"
-12260,"Augusta-Richmond County, GA-SC (Metropolitan Statistical Area)",13073,"Columbia, GA"
-12260,"Augusta-Richmond County, GA-SC (Metropolitan Statistical Area)",13181,"Lincoln, GA"
-12260,"Augusta-Richmond County, GA-SC (Metropolitan Statistical Area)",13189,"McDuffie, GA"
-12260,"Augusta-Richmond County, GA-SC (Metropolitan Statistical Area)",13245,"Richmond, GA"
-12260,"Augusta-Richmond County, GA-SC (Metropolitan Statistical Area)",45003,"Aiken, SC"
-12260,"Augusta-Richmond County, GA-SC (Metropolitan Statistical Area)",45037,"Edgefield, SC"
-12420,"Austin-Round Rock-Georgetown, TX (Metropolitan Statistical Area)",48021,"Bastrop, TX"
-12420,"Austin-Round Rock-Georgetown, TX (Metropolitan Statistical Area)",48055,"Caldwell, TX"
-12420,"Austin-Round Rock-Georgetown, TX (Metropolitan Statistical Area)",48209,"Hays, TX"
-12420,"Austin-Round Rock-Georgetown, TX (Metropolitan Statistical Area)",48453,"Travis, TX"
-12420,"Austin-Round Rock-Georgetown, TX (Metropolitan Statistical Area)",48491,"Williamson, TX"
-12540,"Bakersfield, CA (Metropolitan Statistical Area)",06029,"Kern, CA"
-12580,"Baltimore-Columbia-Towson, MD (Metropolitan Statistical Area)",24003,"Anne Arundel, MD"
-12580,"Baltimore-Columbia-Towson, MD (Metropolitan Statistical Area)",24005,"Baltimore, MD"
-12580,"Baltimore-Columbia-Towson, MD (Metropolitan Statistical Area)",24013,"Carroll, MD"
-12580,"Baltimore-Columbia-Towson, MD (Metropolitan Statistical Area)",24025,"Harford, MD"
-12580,"Baltimore-Columbia-Towson, MD (Metropolitan Statistical Area)",24027,"Howard, MD"
-12580,"Baltimore-Columbia-Towson, MD (Metropolitan Statistical Area)",24035,"Queen Anne's, MD"
-12580,"Baltimore-Columbia-Towson, MD (Metropolitan Statistical Area)",24510,"Baltimore (Independent City), MD"
-12620,"Bangor, ME (Metropolitan Statistical Area)",23019,"Penobscot, ME"
-12700,"Barnstable Town, MA (Metropolitan Statistical Area)",25001,"Barnstable, MA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22005,"Ascension, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22007,"Assumption, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22033,"East Baton Rouge, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22037,"East Feliciana, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22047,"Iberville, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22063,"Livingston, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22077,"Pointe Coupee, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22091,"St. Helena, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22121,"West Baton Rouge, LA"
-12940,"Baton Rouge, LA (Metropolitan Statistical Area)",22125,"West Feliciana, LA"
-12980,"Battle Creek, MI (Metropolitan Statistical Area)",26025,"Calhoun, MI"
-13020,"Bay City, MI (Metropolitan Statistical Area)",26017,"Bay, MI"
-13140,"Beaumont-Port Arthur, TX (Metropolitan Statistical Area)",48199,"Hardin, TX"
-13140,"Beaumont-Port Arthur, TX (Metropolitan Statistical Area)",48245,"Jefferson, TX"
-13140,"Beaumont-Port Arthur, TX (Metropolitan Statistical Area)",48361,"Orange, TX"
-13220,"Beckley, WV (Metropolitan Statistical Area)",54019,"Fayette, WV"
-13220,"Beckley, WV (Metropolitan Statistical Area)",54081,"Raleigh, WV"
-13380,"Bellingham, WA (Metropolitan Statistical Area)",53073,"Whatcom, WA"
-13460,"Bend, OR (Metropolitan Statistical Area)",41017,"Deschutes, OR"
-13740,"Billings, MT (Metropolitan Statistical Area)",30009,"Carbon, MT"
-13740,"Billings, MT (Metropolitan Statistical Area)",30095,"Stillwater, MT"
-13740,"Billings, MT (Metropolitan Statistical Area)",30111,"Yellowstone, MT"
-13780,"Binghamton, NY (Metropolitan Statistical Area)",36007,"Broome, NY"
-13780,"Binghamton, NY (Metropolitan Statistical Area)",36107,"Tioga, NY"
-13820,"Birmingham-Hoover, AL (Metropolitan Statistical Area)",01007,"Bibb, AL"
-13820,"Birmingham-Hoover, AL (Metropolitan Statistical Area)",01009,"Blount, AL"
-13820,"Birmingham-Hoover, AL (Metropolitan Statistical Area)",01021,"Chilton, AL"
-13820,"Birmingham-Hoover, AL (Metropolitan Statistical Area)",01073,"Jefferson, AL"
-13820,"Birmingham-Hoover, AL (Metropolitan Statistical Area)",01115,"St. Clair, AL"
-13820,"Birmingham-Hoover, AL (Metropolitan Statistical Area)",01117,"Shelby, AL"
-13900,"Bismarck, ND (Metropolitan Statistical Area)",38015,"Burleigh, ND"
-13900,"Bismarck, ND (Metropolitan Statistical Area)",38059,"Morton, ND"
-13900,"Bismarck, ND (Metropolitan Statistical Area)",38065,"Oliver, ND"
-13980,"Blacksburg-Christiansburg, VA (Metropolitan Statistical Area)",51071,"Giles, VA"
-13980,"Blacksburg-Christiansburg, VA (Metropolitan Statistical Area)",51155,"Pulaski, VA"
-13980,"Blacksburg-Christiansburg, VA (Metropolitan Statistical Area)",51933,"Montgomery + Radford, VA"
-14010,"Bloomington, IL (Metropolitan Statistical Area)",17113,"McLean, IL"
-14020,"Bloomington, IN (Metropolitan Statistical Area)",18105,"Monroe, IN"
-14020,"Bloomington, IN (Metropolitan Statistical Area)",18119,"Owen, IN"
-14100,"Bloomsburg-Berwick, PA (Metropolitan Statistical Area)",42037,"Columbia, PA"
-14100,"Bloomsburg-Berwick, PA (Metropolitan Statistical Area)",42093,"Montour, PA"
-14260,"Boise City, ID (Metropolitan Statistical Area)",16001,"Ada, ID"
-14260,"Boise City, ID (Metropolitan Statistical Area)",16015,"Boise, ID"
-14260,"Boise City, ID (Metropolitan Statistical Area)",16027,"Canyon, ID"
-14260,"Boise City, ID (Metropolitan Statistical Area)",16045,"Gem, ID"
-14260,"Boise City, ID (Metropolitan Statistical Area)",16073,"Owyhee, ID"
-14460,"Boston-Cambridge-Newton, MA-NH (Metropolitan Statistical Area)",25009,"Essex, MA"
-14460,"Boston-Cambridge-Newton, MA-NH (Metropolitan Statistical Area)",25017,"Middlesex, MA"
-14460,"Boston-Cambridge-Newton, MA-NH (Metropolitan Statistical Area)",25021,"Norfolk, MA"
-14460,"Boston-Cambridge-Newton, MA-NH (Metropolitan Statistical Area)",25023,"Plymouth, MA"
-14460,"Boston-Cambridge-Newton, MA-NH (Metropolitan Statistical Area)",25025,"Suffolk, MA"
-14460,"Boston-Cambridge-Newton, MA-NH (Metropolitan Statistical Area)",33015,"Rockingham, NH"
-14460,"Boston-Cambridge-Newton, MA-NH (Metropolitan Statistical Area)",33017,"Strafford, NH"
-14500,"Boulder, CO (Metropolitan Statistical Area)",08013,"Boulder, CO"
-14540,"Bowling Green, KY (Metropolitan Statistical Area)",21003,"Allen, KY"
-14540,"Bowling Green, KY (Metropolitan Statistical Area)",21031,"Butler, KY"
-14540,"Bowling Green, KY (Metropolitan Statistical Area)",21061,"Edmonson, KY"
-14540,"Bowling Green, KY (Metropolitan Statistical Area)",21227,"Warren, KY"
-14740,"Bremerton-Silverdale-Port Orchard, WA (Metropolitan Statistical Area)",53035,"Kitsap, WA"
-14860,"Bridgeport-Stamford-Norwalk, CT (Metropolitan Statistical Area)",09001,"Fairfield, CT"
-15180,"Brownsville-Harlingen, TX (Metropolitan Statistical Area)",48061,"Cameron, TX"
-15260,"Brunswick, GA (Metropolitan Statistical Area)",13025,"Brantley, GA"
-15260,"Brunswick, GA (Metropolitan Statistical Area)",13127,"Glynn, GA"
-15260,"Brunswick, GA (Metropolitan Statistical Area)",13191,"McIntosh, GA"
-15380,"Buffalo-Cheektowaga, NY (Metropolitan Statistical Area)",36029,"Erie, NY"
-15380,"Buffalo-Cheektowaga, NY (Metropolitan Statistical Area)",36063,"Niagara, NY"
-15500,"Burlington, NC (Metropolitan Statistical Area)",37001,"Alamance, NC"
-15540,"Burlington-South Burlington, VT (Metropolitan Statistical Area)",50007,"Chittenden, VT"
-15540,"Burlington-South Burlington, VT (Metropolitan Statistical Area)",50011,"Franklin, VT"
-15540,"Burlington-South Burlington, VT (Metropolitan Statistical Area)",50013,"Grand Isle, VT"
-15680,"California-Lexington Park, MD (Metropolitan Statistical Area)",24037,"St. Mary's, MD"
-15940,"Canton-Massillon, OH (Metropolitan Statistical Area)",39019,"Carroll, OH"
-15940,"Canton-Massillon, OH (Metropolitan Statistical Area)",39151,"Stark, OH"
-15980,"Cape Coral-Fort Myers, FL (Metropolitan Statistical Area)",12071,"Lee, FL"
-16020,"Cape Girardeau, MO-IL (Metropolitan Statistical Area)",17003,"Alexander, IL"
-16020,"Cape Girardeau, MO-IL (Metropolitan Statistical Area)",29017,"Bollinger, MO"
-16020,"Cape Girardeau, MO-IL (Metropolitan Statistical Area)",29031,"Cape Girardeau, MO"
-16060,"Carbondale-Marion, IL (Metropolitan Statistical Area)",17077,"Jackson, IL"
-16060,"Carbondale-Marion, IL (Metropolitan Statistical Area)",17087,"Johnson, IL"
-16060,"Carbondale-Marion, IL (Metropolitan Statistical Area)",17199,"Williamson, IL"
-16180,"Carson City, NV (Metropolitan Statistical Area)",32510,"Carson City (Independent City), NV"
-16220,"Casper, WY (Metropolitan Statistical Area)",56025,"Natrona, WY"
-16300,"Cedar Rapids, IA (Metropolitan Statistical Area)",19011,"Benton, IA"
-16300,"Cedar Rapids, IA (Metropolitan Statistical Area)",19105,"Jones, IA"
-16300,"Cedar Rapids, IA (Metropolitan Statistical Area)",19113,"Linn, IA"
-16540,"Chambersburg-Waynesboro, PA (Metropolitan Statistical Area)",42055,"Franklin, PA"
-16580,"Champaign-Urbana, IL (Metropolitan Statistical Area)",17019,"Champaign, IL"
-16580,"Champaign-Urbana, IL (Metropolitan Statistical Area)",17147,"Piatt, IL"
-16620,"Charleston, WV (Metropolitan Statistical Area)",54005,"Boone, WV"
-16620,"Charleston, WV (Metropolitan Statistical Area)",54015,"Clay, WV"
-16620,"Charleston, WV (Metropolitan Statistical Area)",54035,"Jackson, WV"
-16620,"Charleston, WV (Metropolitan Statistical Area)",54039,"Kanawha, WV"
-16620,"Charleston, WV (Metropolitan Statistical Area)",54043,"Lincoln, WV"
-16700,"Charleston-North Charleston, SC (Metropolitan Statistical Area)",45015,"Berkeley, SC"
-16700,"Charleston-North Charleston, SC (Metropolitan Statistical Area)",45019,"Charleston, SC"
-16700,"Charleston-North Charleston, SC (Metropolitan Statistical Area)",45035,"Dorchester, SC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37007,"Anson, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37025,"Cabarrus, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37071,"Gaston, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37097,"Iredell, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37109,"Lincoln, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37119,"Mecklenburg, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37159,"Rowan, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",37179,"Union, NC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",45023,"Chester, SC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",45057,"Lancaster, SC"
-16740,"Charlotte-Concord-Gastonia, NC-SC (Metropolitan Statistical Area)",45091,"York, SC"
-16820,"Charlottesville, VA (Metropolitan Statistical Area)",51065,"Fluvanna, VA"
-16820,"Charlottesville, VA (Metropolitan Statistical Area)",51079,"Greene, VA"
-16820,"Charlottesville, VA (Metropolitan Statistical Area)",51125,"Nelson, VA"
-16820,"Charlottesville, VA (Metropolitan Statistical Area)",51901,"Albemarle + Charlottesville, VA"
-16860,"Chattanooga, TN-GA (Metropolitan Statistical Area)",13047,"Catoosa, GA"
-16860,"Chattanooga, TN-GA (Metropolitan Statistical Area)",13083,"Dade, GA"
-16860,"Chattanooga, TN-GA (Metropolitan Statistical Area)",13295,"Walker, GA"
-16860,"Chattanooga, TN-GA (Metropolitan Statistical Area)",47065,"Hamilton, TN"
-16860,"Chattanooga, TN-GA (Metropolitan Statistical Area)",47115,"Marion, TN"
-16860,"Chattanooga, TN-GA (Metropolitan Statistical Area)",47153,"Sequatchie, TN"
-16940,"Cheyenne, WY (Metropolitan Statistical Area)",56021,"Laramie, WY"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17031,"Cook, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17037,"DeKalb, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17043,"DuPage, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17063,"Grundy, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17089,"Kane, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17093,"Kendall, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17097,"Lake, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17111,"McHenry, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",17197,"Will, IL"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",18073,"Jasper, IN"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",18089,"Lake, IN"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",18111,"Newton, IN"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",18127,"Porter, IN"
-16980,"Chicago-Naperville-Elgin, IL-IN-WI (Metropolitan Statistical Area)",55059,"Kenosha, WI"
-17020,"Chico, CA (Metropolitan Statistical Area)",06007,"Butte, CA"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",18029,"Dearborn, IN"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",18047,"Franklin, IN"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",18115,"Ohio, IN"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",18161,"Union, IN"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",21015,"Boone, KY"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",21023,"Bracken, KY"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",21037,"Campbell, KY"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",21077,"Gallatin, KY"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",21081,"Grant, KY"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",21117,"Kenton, KY"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",21191,"Pendleton, KY"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",39015,"Brown, OH"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",39017,"Butler, OH"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",39025,"Clermont, OH"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",39061,"Hamilton, OH"
-17140,"Cincinnati, OH-KY-IN (Metropolitan Statistical Area)",39165,"Warren, OH"
-17300,"Clarksville, TN-KY (Metropolitan Statistical Area)",21047,"Christian, KY"
-17300,"Clarksville, TN-KY (Metropolitan Statistical Area)",21221,"Trigg, KY"
-17300,"Clarksville, TN-KY (Metropolitan Statistical Area)",47125,"Montgomery, TN"
-17300,"Clarksville, TN-KY (Metropolitan Statistical Area)",47161,"Stewart, TN"
-17420,"Cleveland, TN (Metropolitan Statistical Area)",47011,"Bradley, TN"
-17420,"Cleveland, TN (Metropolitan Statistical Area)",47139,"Polk, TN"
-17460,"Cleveland-Elyria, OH (Metropolitan Statistical Area)",39035,"Cuyahoga, OH"
-17460,"Cleveland-Elyria, OH (Metropolitan Statistical Area)",39055,"Geauga, OH"
-17460,"Cleveland-Elyria, OH (Metropolitan Statistical Area)",39085,"Lake, OH"
-17460,"Cleveland-Elyria, OH (Metropolitan Statistical Area)",39093,"Lorain, OH"
-17460,"Cleveland-Elyria, OH (Metropolitan Statistical Area)",39103,"Medina, OH"
-17660,"Coeur d'Alene, ID (Metropolitan Statistical Area)",16055,"Kootenai, ID"
-17780,"College Station-Bryan, TX (Metropolitan Statistical Area)",48041,"Brazos, TX"
-17780,"College Station-Bryan, TX (Metropolitan Statistical Area)",48051,"Burleson, TX"
-17780,"College Station-Bryan, TX (Metropolitan Statistical Area)",48395,"Robertson, TX"
-17820,"Colorado Springs, CO (Metropolitan Statistical Area)",08041,"El Paso, CO"
-17820,"Colorado Springs, CO (Metropolitan Statistical Area)",08119,"Teller, CO"
-17860,"Columbia, MO (Metropolitan Statistical Area)",29019,"Boone, MO"
-17860,"Columbia, MO (Metropolitan Statistical Area)",29053,"Cooper, MO"
-17860,"Columbia, MO (Metropolitan Statistical Area)",29089,"Howard, MO"
-17900,"Columbia, SC (Metropolitan Statistical Area)",45017,"Calhoun, SC"
-17900,"Columbia, SC (Metropolitan Statistical Area)",45039,"Fairfield, SC"
-17900,"Columbia, SC (Metropolitan Statistical Area)",45055,"Kershaw, SC"
-17900,"Columbia, SC (Metropolitan Statistical Area)",45063,"Lexington, SC"
-17900,"Columbia, SC (Metropolitan Statistical Area)",45079,"Richland, SC"
-17900,"Columbia, SC (Metropolitan Statistical Area)",45081,"Saluda, SC"
-17980,"Columbus, GA-AL (Metropolitan Statistical Area)",01113,"Russell, AL"
-17980,"Columbus, GA-AL (Metropolitan Statistical Area)",13053,"Chattahoochee, GA"
-17980,"Columbus, GA-AL (Metropolitan Statistical Area)",13145,"Harris, GA"
-17980,"Columbus, GA-AL (Metropolitan Statistical Area)",13197,"Marion, GA"
-17980,"Columbus, GA-AL (Metropolitan Statistical Area)",13215,"Muscogee, GA"
-17980,"Columbus, GA-AL (Metropolitan Statistical Area)",13259,"Stewart, GA"
-17980,"Columbus, GA-AL (Metropolitan Statistical Area)",13263,"Talbot, GA"
-18020,"Columbus, IN (Metropolitan Statistical Area)",18005,"Bartholomew, IN"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39041,"Delaware, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39045,"Fairfield, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39049,"Franklin, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39073,"Hocking, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39089,"Licking, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39097,"Madison, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39117,"Morrow, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39127,"Perry, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39129,"Pickaway, OH"
-18140,"Columbus, OH (Metropolitan Statistical Area)",39159,"Union, OH"
-18580,"Corpus Christi, TX (Metropolitan Statistical Area)",48355,"Nueces, TX"
-18580,"Corpus Christi, TX (Metropolitan Statistical Area)",48409,"San Patricio, TX"
-18700,"Corvallis, OR (Metropolitan Statistical Area)",41003,"Benton, OR"
-18880,"Crestview-Fort Walton Beach-Destin, FL (Metropolitan Statistical Area)",12091,"Okaloosa, FL"
-18880,"Crestview-Fort Walton Beach-Destin, FL (Metropolitan Statistical Area)",12131,"Walton, FL"
-19060,"Cumberland, MD-WV (Metropolitan Statistical Area)",24001,"Allegany, MD"
-19060,"Cumberland, MD-WV (Metropolitan Statistical Area)",54057,"Mineral, WV"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48085,"Collin, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48113,"Dallas, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48121,"Denton, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48139,"Ellis, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48231,"Hunt, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48251,"Johnson, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48257,"Kaufman, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48367,"Parker, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48397,"Rockwall, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48439,"Tarrant, TX"
-19100,"Dallas-Fort Worth-Arlington, TX (Metropolitan Statistical Area)",48497,"Wise, TX"
-19140,"Dalton, GA (Metropolitan Statistical Area)",13213,"Murray, GA"
-19140,"Dalton, GA (Metropolitan Statistical Area)",13313,"Whitfield, GA"
-19180,"Danville, IL (Metropolitan Statistical Area)",17183,"Vermilion, IL"
-19300,"Daphne-Fairhope-Foley, AL (Metropolitan Statistical Area)",01003,"Baldwin, AL"
-19340,"Davenport-Moline-Rock Island, IA-IL (Metropolitan Statistical Area)",17073,"Henry, IL"
-19340,"Davenport-Moline-Rock Island, IA-IL (Metropolitan Statistical Area)",17131,"Mercer, IL"
-19340,"Davenport-Moline-Rock Island, IA-IL (Metropolitan Statistical Area)",17161,"Rock Island, IL"
-19340,"Davenport-Moline-Rock Island, IA-IL (Metropolitan Statistical Area)",19163,"Scott, IA"
-19430,"Dayton-Kettering, OH (Metropolitan Statistical Area)",39057,"Greene, OH"
-19430,"Dayton-Kettering, OH (Metropolitan Statistical Area)",39109,"Miami, OH"
-19430,"Dayton-Kettering, OH (Metropolitan Statistical Area)",39113,"Montgomery, OH"
-19460,"Decatur, AL (Metropolitan Statistical Area)",01079,"Lawrence, AL"
-19460,"Decatur, AL (Metropolitan Statistical Area)",01103,"Morgan, AL"
-19500,"Decatur, IL (Metropolitan Statistical Area)",17115,"Macon, IL"
-19660,"Deltona-Daytona Beach-Ormond Beach, FL (Metropolitan Statistical Area)",12035,"Flagler, FL"
-19660,"Deltona-Daytona Beach-Ormond Beach, FL (Metropolitan Statistical Area)",12127,"Volusia, FL"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08001,"Adams, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08005,"Arapahoe, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08014,"Broomfield, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08019,"Clear Creek, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08031,"Denver, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08035,"Douglas, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08039,"Elbert, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08047,"Gilpin, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08059,"Jefferson, CO"
-19740,"Denver-Aurora-Lakewood, CO (Metropolitan Statistical Area)",08093,"Park, CO"
-19780,"Des Moines-West Des Moines, IA (Metropolitan Statistical Area)",19049,"Dallas, IA"
-19780,"Des Moines-West Des Moines, IA (Metropolitan Statistical Area)",19077,"Guthrie, IA"
-19780,"Des Moines-West Des Moines, IA (Metropolitan Statistical Area)",19099,"Jasper, IA"
-19780,"Des Moines-West Des Moines, IA (Metropolitan Statistical Area)",19121,"Madison, IA"
-19780,"Des Moines-West Des Moines, IA (Metropolitan Statistical Area)",19153,"Polk, IA"
-19780,"Des Moines-West Des Moines, IA (Metropolitan Statistical Area)",19181,"Warren, IA"
-19820,"Detroit-Warren-Dearborn, MI (Metropolitan Statistical Area)",26087,"Lapeer, MI"
-19820,"Detroit-Warren-Dearborn, MI (Metropolitan Statistical Area)",26093,"Livingston, MI"
-19820,"Detroit-Warren-Dearborn, MI (Metropolitan Statistical Area)",26099,"Macomb, MI"
-19820,"Detroit-Warren-Dearborn, MI (Metropolitan Statistical Area)",26125,"Oakland, MI"
-19820,"Detroit-Warren-Dearborn, MI (Metropolitan Statistical Area)",26147,"St. Clair, MI"
-19820,"Detroit-Warren-Dearborn, MI (Metropolitan Statistical Area)",26163,"Wayne, MI"
-20020,"Dothan, AL (Metropolitan Statistical Area)",01061,"Geneva, AL"
-20020,"Dothan, AL (Metropolitan Statistical Area)",01067,"Henry, AL"
-20020,"Dothan, AL (Metropolitan Statistical Area)",01069,"Houston, AL"
-20100,"Dover, DE (Metropolitan Statistical Area)",10001,"Kent, DE"
-20220,"Dubuque, IA (Metropolitan Statistical Area)",19061,"Dubuque, IA"
-20260,"Duluth, MN-WI (Metropolitan Statistical Area)",27017,"Carlton, MN"
-20260,"Duluth, MN-WI (Metropolitan Statistical Area)",27075,"Lake, MN"
-20260,"Duluth, MN-WI (Metropolitan Statistical Area)",27137,"St. Louis, MN"
-20260,"Duluth, MN-WI (Metropolitan Statistical Area)",55031,"Douglas, WI"
-20500,"Durham-Chapel Hill, NC (Metropolitan Statistical Area)",37037,"Chatham, NC"
-20500,"Durham-Chapel Hill, NC (Metropolitan Statistical Area)",37063,"Durham, NC"
-20500,"Durham-Chapel Hill, NC (Metropolitan Statistical Area)",37077,"Granville, NC"
-20500,"Durham-Chapel Hill, NC (Metropolitan Statistical Area)",37135,"Orange, NC"
-20500,"Durham-Chapel Hill, NC (Metropolitan Statistical Area)",37145,"Person, NC"
-20700,"East Stroudsburg, PA (Metropolitan Statistical Area)",42089,"Monroe, PA"
-20740,"Eau Claire, WI (Metropolitan Statistical Area)",55017,"Chippewa, WI"
-20740,"Eau Claire, WI (Metropolitan Statistical Area)",55035,"Eau Claire, WI"
-20940,"El Centro, CA (Metropolitan Statistical Area)",06025,"Imperial, CA"
-21060,"Elizabethtown-Fort Knox, KY (Metropolitan Statistical Area)",21093,"Hardin, KY"
-21060,"Elizabethtown-Fort Knox, KY (Metropolitan Statistical Area)",21123,"Larue, KY"
-21060,"Elizabethtown-Fort Knox, KY (Metropolitan Statistical Area)",21163,"Meade, KY"
-21140,"Elkhart-Goshen, IN (Metropolitan Statistical Area)",18039,"Elkhart, IN"
-21300,"Elmira, NY (Metropolitan Statistical Area)",36015,"Chemung, NY"
-21340,"El Paso, TX (Metropolitan Statistical Area)",48141,"El Paso, TX"
-21340,"El Paso, TX (Metropolitan Statistical Area)",48229,"Hudspeth, TX"
-21420,"Enid, OK (Metropolitan Statistical Area)",40047,"Garfield, OK"
-21500,"Erie, PA (Metropolitan Statistical Area)",42049,"Erie, PA"
-21660,"Eugene-Springfield, OR (Metropolitan Statistical Area)",41039,"Lane, OR"
-21780,"Evansville, IN-KY (Metropolitan Statistical Area)",18129,"Posey, IN"
-21780,"Evansville, IN-KY (Metropolitan Statistical Area)",18163,"Vanderburgh, IN"
-21780,"Evansville, IN-KY (Metropolitan Statistical Area)",18173,"Warrick, IN"
-21780,"Evansville, IN-KY (Metropolitan Statistical Area)",21101,"Henderson, KY"
-21820,"Fairbanks, AK (Metropolitan Statistical Area)",02090,"Fairbanks North Star Borough, AK"
-22020,"Fargo, ND-MN (Metropolitan Statistical Area)",27027,"Clay, MN"
-22020,"Fargo, ND-MN (Metropolitan Statistical Area)",38017,"Cass, ND"
-22140,"Farmington, NM (Metropolitan Statistical Area)",35045,"San Juan, NM"
-22180,"Fayetteville, NC (Metropolitan Statistical Area)",37051,"Cumberland, NC"
-22180,"Fayetteville, NC (Metropolitan Statistical Area)",37085,"Harnett, NC"
-22180,"Fayetteville, NC (Metropolitan Statistical Area)",37093,"Hoke, NC"
-22220,"Fayetteville-Springdale-Rogers, AR (Metropolitan Statistical Area)",05007,"Benton, AR"
-22220,"Fayetteville-Springdale-Rogers, AR (Metropolitan Statistical Area)",05087,"Madison, AR"
-22220,"Fayetteville-Springdale-Rogers, AR (Metropolitan Statistical Area)",05143,"Washington, AR"
-22380,"Flagstaff, AZ (Metropolitan Statistical Area)",04005,"Coconino, AZ"
-22420,"Flint, MI (Metropolitan Statistical Area)",26049,"Genesee, MI"
-22500,"Florence, SC (Metropolitan Statistical Area)",45031,"Darlington, SC"
-22500,"Florence, SC (Metropolitan Statistical Area)",45041,"Florence, SC"
-22520,"Florence-Muscle Shoals, AL (Metropolitan Statistical Area)",01033,"Colbert, AL"
-22520,"Florence-Muscle Shoals, AL (Metropolitan Statistical Area)",01077,"Lauderdale, AL"
-22540,"Fond du Lac, WI (Metropolitan Statistical Area)",55039,"Fond du Lac, WI"
-22660,"Fort Collins, CO (Metropolitan Statistical Area)",08069,"Larimer, CO"
-22900,"Fort Smith, AR-OK (Metropolitan Statistical Area)",05033,"Crawford, AR"
-22900,"Fort Smith, AR-OK (Metropolitan Statistical Area)",05047,"Franklin, AR"
-22900,"Fort Smith, AR-OK (Metropolitan Statistical Area)",05131,"Sebastian, AR"
-22900,"Fort Smith, AR-OK (Metropolitan Statistical Area)",40135,"Sequoyah, OK"
-23060,"Fort Wayne, IN (Metropolitan Statistical Area)",18003,"Allen, IN"
-23060,"Fort Wayne, IN (Metropolitan Statistical Area)",18183,"Whitley, IN"
-23420,"Fresno, CA (Metropolitan Statistical Area)",06019,"Fresno, CA"
-23460,"Gadsden, AL (Metropolitan Statistical Area)",01055,"Etowah, AL"
-23540,"Gainesville, FL (Metropolitan Statistical Area)",12001,"Alachua, FL"
-23540,"Gainesville, FL (Metropolitan Statistical Area)",12041,"Gilchrist, FL"
-23540,"Gainesville, FL (Metropolitan Statistical Area)",12075,"Levy, FL"
-23580,"Gainesville, GA (Metropolitan Statistical Area)",13139,"Hall, GA"
-23900,"Gettysburg, PA (Metropolitan Statistical Area)",42001,"Adams, PA"
-24020,"Glens Falls, NY (Metropolitan Statistical Area)",36113,"Warren, NY"
-24020,"Glens Falls, NY (Metropolitan Statistical Area)",36115,"Washington, NY"
-24140,"Goldsboro, NC (Metropolitan Statistical Area)",37191,"Wayne, NC"
-24220,"Grand Forks, ND-MN (Metropolitan Statistical Area)",27119,"Polk, MN"
-24220,"Grand Forks, ND-MN (Metropolitan Statistical Area)",38035,"Grand Forks, ND"
-24260,"Grand Island, NE (Metropolitan Statistical Area)",31079,"Hall, NE"
-24260,"Grand Island, NE (Metropolitan Statistical Area)",31093,"Howard, NE"
-24260,"Grand Island, NE (Metropolitan Statistical Area)",31121,"Merrick, NE"
-24300,"Grand Junction, CO (Metropolitan Statistical Area)",08077,"Mesa, CO"
-24340,"Grand Rapids-Kentwood, MI (Metropolitan Statistical Area)",26067,"Ionia, MI"
-24340,"Grand Rapids-Kentwood, MI (Metropolitan Statistical Area)",26081,"Kent, MI"
-24340,"Grand Rapids-Kentwood, MI (Metropolitan Statistical Area)",26117,"Montcalm, MI"
-24340,"Grand Rapids-Kentwood, MI (Metropolitan Statistical Area)",26139,"Ottawa, MI"
-24420,"Grants Pass, OR (Metropolitan Statistical Area)",41033,"Josephine, OR"
-24500,"Great Falls, MT (Metropolitan Statistical Area)",30013,"Cascade, MT"
-24540,"Greeley, CO (Metropolitan Statistical Area)",08123,"Weld, CO"
-24580,"Green Bay, WI (Metropolitan Statistical Area)",55009,"Brown, WI"
-24580,"Green Bay, WI (Metropolitan Statistical Area)",55061,"Kewaunee, WI"
-24580,"Green Bay, WI (Metropolitan Statistical Area)",55083,"Oconto, WI"
-24660,"Greensboro-High Point, NC (Metropolitan Statistical Area)",37081,"Guilford, NC"
-24660,"Greensboro-High Point, NC (Metropolitan Statistical Area)",37151,"Randolph, NC"
-24660,"Greensboro-High Point, NC (Metropolitan Statistical Area)",37157,"Rockingham, NC"
-24780,"Greenville, NC (Metropolitan Statistical Area)",37147,"Pitt, NC"
-24860,"Greenville-Anderson, SC (Metropolitan Statistical Area)",45007,"Anderson, SC"
-24860,"Greenville-Anderson, SC (Metropolitan Statistical Area)",45045,"Greenville, SC"
-24860,"Greenville-Anderson, SC (Metropolitan Statistical Area)",45059,"Laurens, SC"
-24860,"Greenville-Anderson, SC (Metropolitan Statistical Area)",45077,"Pickens, SC"
-25020,"Guayama, PR (Metropolitan Statistical Area)",72015,"Arroyo Municipio, PR"
-25020,"Guayama, PR (Metropolitan Statistical Area)",72057,"Guayama Municipio, PR"
-25020,"Guayama, PR (Metropolitan Statistical Area)",72109,"Patillas Municipio, PR"
-25060,"Gulfport-Biloxi, MS (Metropolitan Statistical Area)",28045,"Hancock, MS"
-25060,"Gulfport-Biloxi, MS (Metropolitan Statistical Area)",28047,"Harrison, MS"
-25060,"Gulfport-Biloxi, MS (Metropolitan Statistical Area)",28059,"Jackson, MS"
-25060,"Gulfport-Biloxi, MS (Metropolitan Statistical Area)",28131,"Stone, MS"
-25180,"Hagerstown-Martinsburg, MD-WV (Metropolitan Statistical Area)",24043,"Washington, MD"
-25180,"Hagerstown-Martinsburg, MD-WV (Metropolitan Statistical Area)",54003,"Berkeley, WV"
-25180,"Hagerstown-Martinsburg, MD-WV (Metropolitan Statistical Area)",54065,"Morgan, WV"
-25220,"Hammond, LA (Metropolitan Statistical Area)",22105,"Tangipahoa, LA"
-25260,"Hanford-Corcoran, CA (Metropolitan Statistical Area)",06031,"Kings, CA"
-25420,"Harrisburg-Carlisle, PA (Metropolitan Statistical Area)",42041,"Cumberland, PA"
-25420,"Harrisburg-Carlisle, PA (Metropolitan Statistical Area)",42043,"Dauphin, PA"
-25420,"Harrisburg-Carlisle, PA (Metropolitan Statistical Area)",42099,"Perry, PA"
-25500,"Harrisonburg, VA (Metropolitan Statistical Area)",51947,"Rockingham + Harrisonburg, VA"
-25540,"Hartford-East Hartford-Middletown, CT (Metropolitan Statistical Area)",09003,"Hartford, CT"
-25540,"Hartford-East Hartford-Middletown, CT (Metropolitan Statistical Area)",09007,"Middlesex, CT"
-25540,"Hartford-East Hartford-Middletown, CT (Metropolitan Statistical Area)",09013,"Tolland, CT"
-25620,"Hattiesburg, MS (Metropolitan Statistical Area)",28031,"Covington, MS"
-25620,"Hattiesburg, MS (Metropolitan Statistical Area)",28035,"Forrest, MS"
-25620,"Hattiesburg, MS (Metropolitan Statistical Area)",28073,"Lamar, MS"
-25620,"Hattiesburg, MS (Metropolitan Statistical Area)",28111,"Perry, MS"
-25860,"Hickory-Lenoir-Morganton, NC (Metropolitan Statistical Area)",37003,"Alexander, NC"
-25860,"Hickory-Lenoir-Morganton, NC (Metropolitan Statistical Area)",37023,"Burke, NC"
-25860,"Hickory-Lenoir-Morganton, NC (Metropolitan Statistical Area)",37027,"Caldwell, NC"
-25860,"Hickory-Lenoir-Morganton, NC (Metropolitan Statistical Area)",37035,"Catawba, NC"
-25940,"Hilton Head Island-Bluffton, SC (Metropolitan Statistical Area)",45013,"Beaufort, SC"
-25940,"Hilton Head Island-Bluffton, SC (Metropolitan Statistical Area)",45053,"Jasper, SC"
-25980,"Hinesville, GA (Metropolitan Statistical Area)",13179,"Liberty, GA"
-25980,"Hinesville, GA (Metropolitan Statistical Area)",13183,"Long, GA"
-26140,"Homosassa Springs, FL (Metropolitan Statistical Area)",12017,"Citrus, FL"
-26300,"Hot Springs, AR (Metropolitan Statistical Area)",05051,"Garland, AR"
-26380,"Houma-Thibodaux, LA (Metropolitan Statistical Area)",22057,"Lafourche, LA"
-26380,"Houma-Thibodaux, LA (Metropolitan Statistical Area)",22109,"Terrebonne, LA"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48015,"Austin, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48039,"Brazoria, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48071,"Chambers, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48157,"Fort Bend, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48167,"Galveston, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48201,"Harris, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48291,"Liberty, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48339,"Montgomery, TX"
-26420,"Houston-The Woodlands-Sugar Land, TX (Metropolitan Statistical Area)",48473,"Waller, TX"
-26580,"Huntington-Ashland, WV-KY-OH (Metropolitan Statistical Area)",21019,"Boyd, KY"
-26580,"Huntington-Ashland, WV-KY-OH (Metropolitan Statistical Area)",21043,"Carter, KY"
-26580,"Huntington-Ashland, WV-KY-OH (Metropolitan Statistical Area)",21089,"Greenup, KY"
-26580,"Huntington-Ashland, WV-KY-OH (Metropolitan Statistical Area)",39087,"Lawrence, OH"
-26580,"Huntington-Ashland, WV-KY-OH (Metropolitan Statistical Area)",54011,"Cabell, WV"
-26580,"Huntington-Ashland, WV-KY-OH (Metropolitan Statistical Area)",54079,"Putnam, WV"
-26580,"Huntington-Ashland, WV-KY-OH (Metropolitan Statistical Area)",54099,"Wayne, WV"
-26620,"Huntsville, AL (Metropolitan Statistical Area)",01083,"Limestone, AL"
-26620,"Huntsville, AL (Metropolitan Statistical Area)",01089,"Madison, AL"
-26820,"Idaho Falls, ID (Metropolitan Statistical Area)",16019,"Bonneville, ID"
-26820,"Idaho Falls, ID (Metropolitan Statistical Area)",16023,"Butte, ID"
-26820,"Idaho Falls, ID (Metropolitan Statistical Area)",16051,"Jefferson, ID"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18011,"Boone, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18013,"Brown, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18057,"Hamilton, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18059,"Hancock, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18063,"Hendricks, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18081,"Johnson, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18095,"Madison, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18097,"Marion, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18109,"Morgan, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18133,"Putnam, IN"
-26900,"Indianapolis-Carmel-Anderson, IN (Metropolitan Statistical Area)",18145,"Shelby, IN"
-26980,"Iowa City, IA (Metropolitan Statistical Area)",19103,"Johnson, IA"
-26980,"Iowa City, IA (Metropolitan Statistical Area)",19183,"Washington, IA"
-27060,"Ithaca, NY (Metropolitan Statistical Area)",36109,"Tompkins, NY"
-27100,"Jackson, MI (Metropolitan Statistical Area)",26075,"Jackson, MI"
-27140,"Jackson, MS (Metropolitan Statistical Area)",28029,"Copiah, MS"
-27140,"Jackson, MS (Metropolitan Statistical Area)",28049,"Hinds, MS"
-27140,"Jackson, MS (Metropolitan Statistical Area)",28051,"Holmes, MS"
-27140,"Jackson, MS (Metropolitan Statistical Area)",28089,"Madison, MS"
-27140,"Jackson, MS (Metropolitan Statistical Area)",28121,"Rankin, MS"
-27140,"Jackson, MS (Metropolitan Statistical Area)",28127,"Simpson, MS"
-27140,"Jackson, MS (Metropolitan Statistical Area)",28163,"Yazoo, MS"
-27180,"Jackson, TN (Metropolitan Statistical Area)",47023,"Chester, TN"
-27180,"Jackson, TN (Metropolitan Statistical Area)",47033,"Crockett, TN"
-27180,"Jackson, TN (Metropolitan Statistical Area)",47053,"Gibson, TN"
-27180,"Jackson, TN (Metropolitan Statistical Area)",47113,"Madison, TN"
-27260,"Jacksonville, FL (Metropolitan Statistical Area)",12003,"Baker, FL"
-27260,"Jacksonville, FL (Metropolitan Statistical Area)",12019,"Clay, FL"
-27260,"Jacksonville, FL (Metropolitan Statistical Area)",12031,"Duval, FL"
-27260,"Jacksonville, FL (Metropolitan Statistical Area)",12089,"Nassau, FL"
-27260,"Jacksonville, FL (Metropolitan Statistical Area)",12109,"St. Johns, FL"
-27340,"Jacksonville, NC (Metropolitan Statistical Area)",37133,"Onslow, NC"
-27500,"Janesville-Beloit, WI (Metropolitan Statistical Area)",55105,"Rock, WI"
-27620,"Jefferson City, MO (Metropolitan Statistical Area)",29027,"Callaway, MO"
-27620,"Jefferson City, MO (Metropolitan Statistical Area)",29051,"Cole, MO"
-27620,"Jefferson City, MO (Metropolitan Statistical Area)",29135,"Moniteau, MO"
-27620,"Jefferson City, MO (Metropolitan Statistical Area)",29151,"Osage, MO"
-27740,"Johnson City, TN (Metropolitan Statistical Area)",47019,"Carter, TN"
-27740,"Johnson City, TN (Metropolitan Statistical Area)",47171,"Unicoi, TN"
-27740,"Johnson City, TN (Metropolitan Statistical Area)",47179,"Washington, TN"
-27780,"Johnstown, PA (Metropolitan Statistical Area)",42021,"Cambria, PA"
-27860,"Jonesboro, AR (Metropolitan Statistical Area)",05031,"Craighead, AR"
-27860,"Jonesboro, AR (Metropolitan Statistical Area)",05111,"Poinsett, AR"
-27900,"Joplin, MO (Metropolitan Statistical Area)",29097,"Jasper, MO"
-27900,"Joplin, MO (Metropolitan Statistical Area)",29145,"Newton, MO"
-27980,"Kahului-Wailuku-Lahaina, HI (Metropolitan Statistical Area)",15901,"Maui + Kalawao, HI"
-28020,"Kalamazoo-Portage, MI (Metropolitan Statistical Area)",26077,"Kalamazoo, MI"
-28100,"Kankakee, IL (Metropolitan Statistical Area)",17091,"Kankakee, IL"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",20091,"Johnson, KS"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",20103,"Leavenworth, KS"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",20107,"Linn, KS"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",20121,"Miami, KS"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",20209,"Wyandotte, KS"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29013,"Bates, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29025,"Caldwell, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29037,"Cass, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29047,"Clay, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29049,"Clinton, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29095,"Jackson, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29107,"Lafayette, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29165,"Platte, MO"
-28140,"Kansas City, MO-KS (Metropolitan Statistical Area)",29177,"Ray, MO"
-28420,"Kennewick-Richland, WA (Metropolitan Statistical Area)",53005,"Benton, WA"
-28420,"Kennewick-Richland, WA (Metropolitan Statistical Area)",53021,"Franklin, WA"
-28660,"Killeen-Temple, TX (Metropolitan Statistical Area)",48027,"Bell, TX"
-28660,"Killeen-Temple, TX (Metropolitan Statistical Area)",48099,"Coryell, TX"
-28660,"Killeen-Temple, TX (Metropolitan Statistical Area)",48281,"Lampasas, TX"
-28700,"Kingsport-Bristol, TN-VA (Metropolitan Statistical Area)",47073,"Hawkins, TN"
-28700,"Kingsport-Bristol, TN-VA (Metropolitan Statistical Area)",47163,"Sullivan, TN"
-28700,"Kingsport-Bristol, TN-VA (Metropolitan Statistical Area)",51169,"Scott, VA"
-28700,"Kingsport-Bristol, TN-VA (Metropolitan Statistical Area)",51953,"Washington + Bristol, VA"
-28740,"Kingston, NY (Metropolitan Statistical Area)",36111,"Ulster, NY"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47001,"Anderson, TN"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47009,"Blount, TN"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47013,"Campbell, TN"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47093,"Knox, TN"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47105,"Loudon, TN"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47129,"Morgan, TN"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47145,"Roane, TN"
-28940,"Knoxville, TN (Metropolitan Statistical Area)",47173,"Union, TN"
-29020,"Kokomo, IN (Metropolitan Statistical Area)",18067,"Howard, IN"
-29100,"La Crosse-Onalaska, WI-MN (Metropolitan Statistical Area)",27055,"Houston, MN"
-29100,"La Crosse-Onalaska, WI-MN (Metropolitan Statistical Area)",55063,"La Crosse, WI"
-29180,"Lafayette, LA (Metropolitan Statistical Area)",22001,"Acadia, LA"
-29180,"Lafayette, LA (Metropolitan Statistical Area)",22045,"Iberia, LA"
-29180,"Lafayette, LA (Metropolitan Statistical Area)",22055,"Lafayette, LA"
-29180,"Lafayette, LA (Metropolitan Statistical Area)",22099,"St. Martin, LA"
-29180,"Lafayette, LA (Metropolitan Statistical Area)",22113,"Vermilion, LA"
-29200,"Lafayette-West Lafayette, IN (Metropolitan Statistical Area)",18007,"Benton, IN"
-29200,"Lafayette-West Lafayette, IN (Metropolitan Statistical Area)",18015,"Carroll, IN"
-29200,"Lafayette-West Lafayette, IN (Metropolitan Statistical Area)",18157,"Tippecanoe, IN"
-29200,"Lafayette-West Lafayette, IN (Metropolitan Statistical Area)",18171,"Warren, IN"
-29340,"Lake Charles, LA (Metropolitan Statistical Area)",22019,"Calcasieu, LA"
-29340,"Lake Charles, LA (Metropolitan Statistical Area)",22023,"Cameron, LA"
-29420,"Lake Havasu City-Kingman, AZ (Metropolitan Statistical Area)",04015,"Mohave, AZ"
-29460,"Lakeland-Winter Haven, FL (Metropolitan Statistical Area)",12105,"Polk, FL"
-29540,"Lancaster, PA (Metropolitan Statistical Area)",42071,"Lancaster, PA"
-29620,"Lansing-East Lansing, MI (Metropolitan Statistical Area)",26037,"Clinton, MI"
-29620,"Lansing-East Lansing, MI (Metropolitan Statistical Area)",26045,"Eaton, MI"
-29620,"Lansing-East Lansing, MI (Metropolitan Statistical Area)",26065,"Ingham, MI"
-29620,"Lansing-East Lansing, MI (Metropolitan Statistical Area)",26155,"Shiawassee, MI"
-29700,"Laredo, TX (Metropolitan Statistical Area)",48479,"Webb, TX"
-29740,"Las Cruces, NM (Metropolitan Statistical Area)",35013,"Doña Ana, NM"
-29820,"Las Vegas-Henderson-Paradise, NV (Metropolitan Statistical Area)",32003,"Clark, NV"
-29940,"Lawrence, KS (Metropolitan Statistical Area)",20045,"Douglas, KS"
-30020,"Lawton, OK (Metropolitan Statistical Area)",40031,"Comanche, OK"
-30020,"Lawton, OK (Metropolitan Statistical Area)",40033,"Cotton, OK"
-30140,"Lebanon, PA (Metropolitan Statistical Area)",42075,"Lebanon, PA"
-30300,"Lewiston, ID-WA (Metropolitan Statistical Area)",16069,"Nez Perce, ID"
-30300,"Lewiston, ID-WA (Metropolitan Statistical Area)",53003,"Asotin, WA"
-30340,"Lewiston-Auburn, ME (Metropolitan Statistical Area)",23001,"Androscoggin, ME"
-30460,"Lexington-Fayette, KY (Metropolitan Statistical Area)",21017,"Bourbon, KY"
-30460,"Lexington-Fayette, KY (Metropolitan Statistical Area)",21049,"Clark, KY"
-30460,"Lexington-Fayette, KY (Metropolitan Statistical Area)",21067,"Fayette, KY"
-30460,"Lexington-Fayette, KY (Metropolitan Statistical Area)",21113,"Jessamine, KY"
-30460,"Lexington-Fayette, KY (Metropolitan Statistical Area)",21209,"Scott, KY"
-30460,"Lexington-Fayette, KY (Metropolitan Statistical Area)",21239,"Woodford, KY"
-30620,"Lima, OH (Metropolitan Statistical Area)",39003,"Allen, OH"
-30700,"Lincoln, NE (Metropolitan Statistical Area)",31109,"Lancaster, NE"
-30700,"Lincoln, NE (Metropolitan Statistical Area)",31159,"Seward, NE"
-30780,"Little Rock-North Little Rock-Conway, AR (Metropolitan Statistical Area)",05045,"Faulkner, AR"
-30780,"Little Rock-North Little Rock-Conway, AR (Metropolitan Statistical Area)",05053,"Grant, AR"
-30780,"Little Rock-North Little Rock-Conway, AR (Metropolitan Statistical Area)",05085,"Lonoke, AR"
-30780,"Little Rock-North Little Rock-Conway, AR (Metropolitan Statistical Area)",05105,"Perry, AR"
-30780,"Little Rock-North Little Rock-Conway, AR (Metropolitan Statistical Area)",05119,"Pulaski, AR"
-30780,"Little Rock-North Little Rock-Conway, AR (Metropolitan Statistical Area)",05125,"Saline, AR"
-30860,"Logan, UT-ID (Metropolitan Statistical Area)",16041,"Franklin, ID"
-30860,"Logan, UT-ID (Metropolitan Statistical Area)",49005,"Cache, UT"
-30980,"Longview, TX (Metropolitan Statistical Area)",48183,"Gregg, TX"
-30980,"Longview, TX (Metropolitan Statistical Area)",48203,"Harrison, TX"
-30980,"Longview, TX (Metropolitan Statistical Area)",48401,"Rusk, TX"
-30980,"Longview, TX (Metropolitan Statistical Area)",48459,"Upshur, TX"
-31020,"Longview, WA (Metropolitan Statistical Area)",53015,"Cowlitz, WA"
-31080,"Los Angeles-Long Beach-Anaheim, CA (Metropolitan Statistical Area)",06037,"Los Angeles, CA"
-31080,"Los Angeles-Long Beach-Anaheim, CA (Metropolitan Statistical Area)",06059,"Orange, CA"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",18019,"Clark, IN"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",18043,"Floyd, IN"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",18061,"Harrison, IN"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",18175,"Washington, IN"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",21029,"Bullitt, KY"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",21103,"Henry, KY"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",21111,"Jefferson, KY"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",21185,"Oldham, KY"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",21211,"Shelby, KY"
-31140,"Louisville/Jefferson County, KY-IN (Metropolitan Statistical Area)",21215,"Spencer, KY"
-31180,"Lubbock, TX (Metropolitan Statistical Area)",48107,"Crosby, TX"
-31180,"Lubbock, TX (Metropolitan Statistical Area)",48303,"Lubbock, TX"
-31180,"Lubbock, TX (Metropolitan Statistical Area)",48305,"Lynn, TX"
-31340,"Lynchburg, VA (Metropolitan Statistical Area)",51009,"Amherst, VA"
-31340,"Lynchburg, VA (Metropolitan Statistical Area)",51011,"Appomattox, VA"
-31340,"Lynchburg, VA (Metropolitan Statistical Area)",51019,"Bedford, VA"
-31340,"Lynchburg, VA (Metropolitan Statistical Area)",51911,"Campbell + Lynchburg, VA"
-31420,"Macon-Bibb County, GA (Metropolitan Statistical Area)",13021,"Bibb, GA"
-31420,"Macon-Bibb County, GA (Metropolitan Statistical Area)",13079,"Crawford, GA"
-31420,"Macon-Bibb County, GA (Metropolitan Statistical Area)",13169,"Jones, GA"
-31420,"Macon-Bibb County, GA (Metropolitan Statistical Area)",13207,"Monroe, GA"
-31420,"Macon-Bibb County, GA (Metropolitan Statistical Area)",13289,"Twiggs, GA"
-31460,"Madera, CA (Metropolitan Statistical Area)",06039,"Madera, CA"
-31540,"Madison, WI (Metropolitan Statistical Area)",55021,"Columbia, WI"
-31540,"Madison, WI (Metropolitan Statistical Area)",55025,"Dane, WI"
-31540,"Madison, WI (Metropolitan Statistical Area)",55045,"Green, WI"
-31540,"Madison, WI (Metropolitan Statistical Area)",55049,"Iowa, WI"
-31700,"Manchester-Nashua, NH (Metropolitan Statistical Area)",33011,"Hillsborough, NH"
-31740,"Manhattan, KS (Metropolitan Statistical Area)",20061,"Geary, KS"
-31740,"Manhattan, KS (Metropolitan Statistical Area)",20149,"Pottawatomie, KS"
-31740,"Manhattan, KS (Metropolitan Statistical Area)",20161,"Riley, KS"
-31860,"Mankato, MN (Metropolitan Statistical Area)",27013,"Blue Earth, MN"
-31860,"Mankato, MN (Metropolitan Statistical Area)",27103,"Nicollet, MN"
-31900,"Mansfield, OH (Metropolitan Statistical Area)",39139,"Richland, OH"
-32420,"Mayagüez, PR (Metropolitan Statistical Area)",72067,"Hormigueros Municipio, PR"
-32420,"Mayagüez, PR (Metropolitan Statistical Area)",72083,"Las MarÃas Municipio, PR"
-32420,"Mayagüez, PR (Metropolitan Statistical Area)",72097,"Mayagüez Municipio, PR"
-32580,"McAllen-Edinburg-Mission, TX (Metropolitan Statistical Area)",48215,"Hidalgo, TX"
-32780,"Medford, OR (Metropolitan Statistical Area)",41029,"Jackson, OR"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",05035,"Crittenden, AR"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",28033,"DeSoto, MS"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",28093,"Marshall, MS"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",28137,"Tate, MS"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",28143,"Tunica, MS"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",47047,"Fayette, TN"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",47157,"Shelby, TN"
-32820,"Memphis, TN-MS-AR (Metropolitan Statistical Area)",47167,"Tipton, TN"
-32900,"Merced, CA (Metropolitan Statistical Area)",06047,"Merced, CA"
-33100,"Miami-Fort Lauderdale-Pompano Beach, FL (Metropolitan Statistical Area)",12011,"Broward, FL"
-33100,"Miami-Fort Lauderdale-Pompano Beach, FL (Metropolitan Statistical Area)",12086,"Miami-Dade, FL"
-33100,"Miami-Fort Lauderdale-Pompano Beach, FL (Metropolitan Statistical Area)",12099,"Palm Beach, FL"
-33140,"Michigan City-La Porte, IN (Metropolitan Statistical Area)",18091,"LaPorte, IN"
-33220,"Midland, MI (Metropolitan Statistical Area)",26111,"Midland, MI"
-33260,"Midland, TX (Metropolitan Statistical Area)",48317,"Martin, TX"
-33260,"Midland, TX (Metropolitan Statistical Area)",48329,"Midland, TX"
-33340,"Milwaukee-Waukesha, WI (Metropolitan Statistical Area)",55079,"Milwaukee, WI"
-33340,"Milwaukee-Waukesha, WI (Metropolitan Statistical Area)",55089,"Ozaukee, WI"
-33340,"Milwaukee-Waukesha, WI (Metropolitan Statistical Area)",55131,"Washington, WI"
-33340,"Milwaukee-Waukesha, WI (Metropolitan Statistical Area)",55133,"Waukesha, WI"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27003,"Anoka, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27019,"Carver, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27025,"Chisago, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27037,"Dakota, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27053,"Hennepin, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27059,"Isanti, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27079,"Le Sueur, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27095,"Mille Lacs, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27123,"Ramsey, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27139,"Scott, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27141,"Sherburne, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27163,"Washington, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",27171,"Wright, MN"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",55093,"Pierce, WI"
-33460,"Minneapolis-St. Paul-Bloomington, MN-WI (Metropolitan Statistical Area)",55109,"St. Croix, WI"
-33540,"Missoula, MT (Metropolitan Statistical Area)",30063,"Missoula, MT"
-33660,"Mobile, AL (Metropolitan Statistical Area)",01097,"Mobile, AL"
-33660,"Mobile, AL (Metropolitan Statistical Area)",01129,"Washington, AL"
-33700,"Modesto, CA (Metropolitan Statistical Area)",06099,"Stanislaus, CA"
-33740,"Monroe, LA (Metropolitan Statistical Area)",22067,"Morehouse, LA"
-33740,"Monroe, LA (Metropolitan Statistical Area)",22073,"Ouachita, LA"
-33740,"Monroe, LA (Metropolitan Statistical Area)",22111,"Union, LA"
-33780,"Monroe, MI (Metropolitan Statistical Area)",26115,"Monroe, MI"
-33860,"Montgomery, AL (Metropolitan Statistical Area)",01001,"Autauga, AL"
-33860,"Montgomery, AL (Metropolitan Statistical Area)",01051,"Elmore, AL"
-33860,"Montgomery, AL (Metropolitan Statistical Area)",01085,"Lowndes, AL"
-33860,"Montgomery, AL (Metropolitan Statistical Area)",01101,"Montgomery, AL"
-34060,"Morgantown, WV (Metropolitan Statistical Area)",54061,"Monongalia, WV"
-34060,"Morgantown, WV (Metropolitan Statistical Area)",54077,"Preston, WV"
-34100,"Morristown, TN (Metropolitan Statistical Area)",47057,"Grainger, TN"
-34100,"Morristown, TN (Metropolitan Statistical Area)",47063,"Hamblen, TN"
-34100,"Morristown, TN (Metropolitan Statistical Area)",47089,"Jefferson, TN"
-34580,"Mount Vernon-Anacortes, WA (Metropolitan Statistical Area)",53057,"Skagit, WA"
-34620,"Muncie, IN (Metropolitan Statistical Area)",18035,"Delaware, IN"
-34740,"Muskegon, MI (Metropolitan Statistical Area)",26121,"Muskegon, MI"
-34820,"Myrtle Beach-Conway-North Myrtle Beach, SC-NC (Metropolitan Statistical Area)",37019,"Brunswick, NC"
-34820,"Myrtle Beach-Conway-North Myrtle Beach, SC-NC (Metropolitan Statistical Area)",45051,"Horry, SC"
-34900,"Napa, CA (Metropolitan Statistical Area)",06055,"Napa, CA"
-34940,"Naples-Marco Island, FL (Metropolitan Statistical Area)",12021,"Collier, FL"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47015,"Cannon, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47021,"Cheatham, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47037,"Davidson, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47043,"Dickson, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47111,"Macon, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47119,"Maury, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47147,"Robertson, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47149,"Rutherford, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47159,"Smith, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47165,"Sumner, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47169,"Trousdale, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47187,"Williamson, TN"
-34980,"Nashville-Davidson--Murfreesboro--Franklin, TN (Metropolitan Statistical Area)",47189,"Wilson, TN"
-35100,"New Bern, NC (Metropolitan Statistical Area)",37049,"Craven, NC"
-35100,"New Bern, NC (Metropolitan Statistical Area)",37103,"Jones, NC"
-35100,"New Bern, NC (Metropolitan Statistical Area)",37137,"Pamlico, NC"
-35300,"New Haven-Milford, CT (Metropolitan Statistical Area)",09009,"New Haven, CT"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22051,"Jefferson, LA"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22071,"Orleans, LA"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22075,"Plaquemines, LA"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22087,"St. Bernard, LA"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22089,"St. Charles, LA"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22093,"St. James, LA"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22095,"St. John the Baptist, LA"
-35380,"New Orleans-Metairie, LA (Metropolitan Statistical Area)",22103,"St. Tammany, LA"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34003,"Bergen, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34013,"Essex, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34017,"Hudson, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34019,"Hunterdon, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34023,"Middlesex, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34025,"Monmouth, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34027,"Morris, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34029,"Ocean, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34031,"Passaic, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34035,"Somerset, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34037,"Sussex, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",34039,"Union, NJ"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36005,"Bronx, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36047,"Kings, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36059,"Nassau, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36061,"New York, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36079,"Putnam, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36081,"Queens, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36085,"Richmond, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36087,"Rockland, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36103,"Suffolk, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",36119,"Westchester, NY"
-35620,"New York-Newark-Jersey City, NY-NJ-PA (Metropolitan Statistical Area)",42103,"Pike, PA"
-35660,"Niles, MI (Metropolitan Statistical Area)",26021,"Berrien, MI"
-35840,"North Port-Sarasota-Bradenton, FL (Metropolitan Statistical Area)",12081,"Manatee, FL"
-35840,"North Port-Sarasota-Bradenton, FL (Metropolitan Statistical Area)",12115,"Sarasota, FL"
-35980,"Norwich-New London, CT (Metropolitan Statistical Area)",09011,"New London, CT"
-36100,"Ocala, FL (Metropolitan Statistical Area)",12083,"Marion, FL"
-36140,"Ocean City, NJ (Metropolitan Statistical Area)",34009,"Cape May, NJ"
-36220,"Odessa, TX (Metropolitan Statistical Area)",48135,"Ector, TX"
-36260,"Ogden-Clearfield, UT (Metropolitan Statistical Area)",49003,"Box Elder, UT"
-36260,"Ogden-Clearfield, UT (Metropolitan Statistical Area)",49011,"Davis, UT"
-36260,"Ogden-Clearfield, UT (Metropolitan Statistical Area)",49029,"Morgan, UT"
-36260,"Ogden-Clearfield, UT (Metropolitan Statistical Area)",49057,"Weber, UT"
-36420,"Oklahoma City, OK (Metropolitan Statistical Area)",40017,"Canadian, OK"
-36420,"Oklahoma City, OK (Metropolitan Statistical Area)",40027,"Cleveland, OK"
-36420,"Oklahoma City, OK (Metropolitan Statistical Area)",40051,"Grady, OK"
-36420,"Oklahoma City, OK (Metropolitan Statistical Area)",40081,"Lincoln, OK"
-36420,"Oklahoma City, OK (Metropolitan Statistical Area)",40083,"Logan, OK"
-36420,"Oklahoma City, OK (Metropolitan Statistical Area)",40087,"McClain, OK"
-36420,"Oklahoma City, OK (Metropolitan Statistical Area)",40109,"Oklahoma, OK"
-36500,"Olympia-Lacey-Tumwater, WA (Metropolitan Statistical Area)",53067,"Thurston, WA"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",19085,"Harrison, IA"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",19129,"Mills, IA"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",19155,"Pottawattamie, IA"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",31025,"Cass, NE"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",31055,"Douglas, NE"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",31153,"Sarpy, NE"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",31155,"Saunders, NE"
-36540,"Omaha-Council Bluffs, NE-IA (Metropolitan Statistical Area)",31177,"Washington, NE"
-36740,"Orlando-Kissimmee-Sanford, FL (Metropolitan Statistical Area)",12069,"Lake, FL"
-36740,"Orlando-Kissimmee-Sanford, FL (Metropolitan Statistical Area)",12095,"Orange, FL"
-36740,"Orlando-Kissimmee-Sanford, FL (Metropolitan Statistical Area)",12097,"Osceola, FL"
-36740,"Orlando-Kissimmee-Sanford, FL (Metropolitan Statistical Area)",12117,"Seminole, FL"
-36780,"Oshkosh-Neenah, WI (Metropolitan Statistical Area)",55139,"Winnebago, WI"
-36980,"Owensboro, KY (Metropolitan Statistical Area)",21059,"Daviess, KY"
-36980,"Owensboro, KY (Metropolitan Statistical Area)",21091,"Hancock, KY"
-36980,"Owensboro, KY (Metropolitan Statistical Area)",21149,"McLean, KY"
-37100,"Oxnard-Thousand Oaks-Ventura, CA (Metropolitan Statistical Area)",06111,"Ventura, CA"
-37340,"Palm Bay-Melbourne-Titusville, FL (Metropolitan Statistical Area)",12009,"Brevard, FL"
-37460,"Panama City, FL (Metropolitan Statistical Area)",12005,"Bay, FL"
-37620,"Parkersburg-Vienna, WV (Metropolitan Statistical Area)",54105,"Wirt, WV"
-37620,"Parkersburg-Vienna, WV (Metropolitan Statistical Area)",54107,"Wood, WV"
-37860,"Pensacola-Ferry Pass-Brent, FL (Metropolitan Statistical Area)",12033,"Escambia, FL"
-37860,"Pensacola-Ferry Pass-Brent, FL (Metropolitan Statistical Area)",12113,"Santa Rosa, FL"
-37900,"Peoria, IL (Metropolitan Statistical Area)",17057,"Fulton, IL"
-37900,"Peoria, IL (Metropolitan Statistical Area)",17123,"Marshall, IL"
-37900,"Peoria, IL (Metropolitan Statistical Area)",17143,"Peoria, IL"
-37900,"Peoria, IL (Metropolitan Statistical Area)",17175,"Stark, IL"
-37900,"Peoria, IL (Metropolitan Statistical Area)",17179,"Tazewell, IL"
-37900,"Peoria, IL (Metropolitan Statistical Area)",17203,"Woodford, IL"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",10003,"New Castle, DE"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",24015,"Cecil, MD"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",34005,"Burlington, NJ"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",34007,"Camden, NJ"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",34015,"Gloucester, NJ"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",34033,"Salem, NJ"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",42017,"Bucks, PA"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",42029,"Chester, PA"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",42045,"Delaware, PA"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",42091,"Montgomery, PA"
-37980,"Philadelphia-Camden-Wilmington, PA-NJ-DE-MD (Metropolitan Statistical Area)",42101,"Philadelphia, PA"
-38060,"Phoenix-Mesa-Chandler, AZ (Metropolitan Statistical Area)",04013,"Maricopa, AZ"
-38060,"Phoenix-Mesa-Chandler, AZ (Metropolitan Statistical Area)",04021,"Pinal, AZ"
-38220,"Pine Bluff, AR (Metropolitan Statistical Area)",05025,"Cleveland, AR"
-38220,"Pine Bluff, AR (Metropolitan Statistical Area)",05069,"Jefferson, AR"
-38220,"Pine Bluff, AR (Metropolitan Statistical Area)",05079,"Lincoln, AR"
-38300,"Pittsburgh, PA (Metropolitan Statistical Area)",42003,"Allegheny, PA"
-38300,"Pittsburgh, PA (Metropolitan Statistical Area)",42005,"Armstrong, PA"
-38300,"Pittsburgh, PA (Metropolitan Statistical Area)",42007,"Beaver, PA"
-38300,"Pittsburgh, PA (Metropolitan Statistical Area)",42019,"Butler, PA"
-38300,"Pittsburgh, PA (Metropolitan Statistical Area)",42051,"Fayette, PA"
-38300,"Pittsburgh, PA (Metropolitan Statistical Area)",42125,"Washington, PA"
-38300,"Pittsburgh, PA (Metropolitan Statistical Area)",42129,"Westmoreland, PA"
-38340,"Pittsfield, MA (Metropolitan Statistical Area)",25003,"Berkshire, MA"
-38540,"Pocatello, ID (Metropolitan Statistical Area)",16005,"Bannock, ID"
-38540,"Pocatello, ID (Metropolitan Statistical Area)",16077,"Power, ID"
-38660,"Ponce, PR (Metropolitan Statistical Area)",72001,"Adjuntas Municipio, PR"
-38660,"Ponce, PR (Metropolitan Statistical Area)",72075,"Juana DÃaz Municipio, PR"
-38660,"Ponce, PR (Metropolitan Statistical Area)",72113,"Ponce Municipio, PR"
-38660,"Ponce, PR (Metropolitan Statistical Area)",72149,"Villalba Municipio, PR"
-38860,"Portland-South Portland, ME (Metropolitan Statistical Area)",23005,"Cumberland, ME"
-38860,"Portland-South Portland, ME (Metropolitan Statistical Area)",23023,"Sagadahoc, ME"
-38860,"Portland-South Portland, ME (Metropolitan Statistical Area)",23031,"York, ME"
-38900,"Portland-Vancouver-Hillsboro, OR-WA (Metropolitan Statistical Area)",41005,"Clackamas, OR"
-38900,"Portland-Vancouver-Hillsboro, OR-WA (Metropolitan Statistical Area)",41009,"Columbia, OR"
-38900,"Portland-Vancouver-Hillsboro, OR-WA (Metropolitan Statistical Area)",41051,"Multnomah, OR"
-38900,"Portland-Vancouver-Hillsboro, OR-WA (Metropolitan Statistical Area)",41067,"Washington, OR"
-38900,"Portland-Vancouver-Hillsboro, OR-WA (Metropolitan Statistical Area)",41071,"Yamhill, OR"
-38900,"Portland-Vancouver-Hillsboro, OR-WA (Metropolitan Statistical Area)",53011,"Clark, WA"
-38900,"Portland-Vancouver-Hillsboro, OR-WA (Metropolitan Statistical Area)",53059,"Skamania, WA"
-38940,"Port St. Lucie, FL (Metropolitan Statistical Area)",12085,"Martin, FL"
-38940,"Port St. Lucie, FL (Metropolitan Statistical Area)",12111,"St. Lucie, FL"
-39100,"Poughkeepsie-Newburgh-Middletown, NY (Metropolitan Statistical Area)",36027,"Dutchess, NY"
-39100,"Poughkeepsie-Newburgh-Middletown, NY (Metropolitan Statistical Area)",36071,"Orange, NY"
-39150,"Prescott Valley-Prescott, AZ (Metropolitan Statistical Area)",04025,"Yavapai, AZ"
-39300,"Providence-Warwick, RI-MA (Metropolitan Statistical Area)",25005,"Bristol, MA"
-39300,"Providence-Warwick, RI-MA (Metropolitan Statistical Area)",44001,"Bristol, RI"
-39300,"Providence-Warwick, RI-MA (Metropolitan Statistical Area)",44003,"Kent, RI"
-39300,"Providence-Warwick, RI-MA (Metropolitan Statistical Area)",44005,"Newport, RI"
-39300,"Providence-Warwick, RI-MA (Metropolitan Statistical Area)",44007,"Providence, RI"
-39300,"Providence-Warwick, RI-MA (Metropolitan Statistical Area)",44009,"Washington, RI"
-39340,"Provo-Orem, UT (Metropolitan Statistical Area)",49023,"Juab, UT"
-39340,"Provo-Orem, UT (Metropolitan Statistical Area)",49049,"Utah, UT"
-39380,"Pueblo, CO (Metropolitan Statistical Area)",08101,"Pueblo, CO"
-39460,"Punta Gorda, FL (Metropolitan Statistical Area)",12015,"Charlotte, FL"
-39540,"Racine, WI (Metropolitan Statistical Area)",55101,"Racine, WI"
-39580,"Raleigh-Cary, NC (Metropolitan Statistical Area)",37069,"Franklin, NC"
-39580,"Raleigh-Cary, NC (Metropolitan Statistical Area)",37101,"Johnston, NC"
-39580,"Raleigh-Cary, NC (Metropolitan Statistical Area)",37183,"Wake, NC"
-39660,"Rapid City, SD (Metropolitan Statistical Area)",46093,"Meade, SD"
-39660,"Rapid City, SD (Metropolitan Statistical Area)",46103,"Pennington, SD"
-39740,"Reading, PA (Metropolitan Statistical Area)",42011,"Berks, PA"
-39820,"Redding, CA (Metropolitan Statistical Area)",06089,"Shasta, CA"
-39900,"Reno, NV (Metropolitan Statistical Area)",32029,"Storey, NV"
-39900,"Reno, NV (Metropolitan Statistical Area)",32031,"Washoe, NV"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51007,"Amelia, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51036,"Charles City, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51041,"Chesterfield, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51075,"Goochland, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51085,"Hanover, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51087,"Henrico, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51097,"King and Queen, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51101,"King William, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51127,"New Kent, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51145,"Powhatan, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51183,"Sussex, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51760,"Richmond (Independent City), VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51918,"Dinwiddie, Colonial Heights + Petersburg, VA"
-40060,"Richmond, VA (Metropolitan Statistical Area)",51941,"Prince George + Hopewell, VA"
-40140,"Riverside-San Bernardino-Ontario, CA (Metropolitan Statistical Area)",06065,"Riverside, CA"
-40140,"Riverside-San Bernardino-Ontario, CA (Metropolitan Statistical Area)",06071,"San Bernardino, CA"
-40220,"Roanoke, VA (Metropolitan Statistical Area)",51023,"Botetourt, VA"
-40220,"Roanoke, VA (Metropolitan Statistical Area)",51045,"Craig, VA"
-40220,"Roanoke, VA (Metropolitan Statistical Area)",51067,"Franklin, VA"
-40220,"Roanoke, VA (Metropolitan Statistical Area)",51770,"Roanoke (Independent City), VA"
-40220,"Roanoke, VA (Metropolitan Statistical Area)",51944,"Roanoke + Salem, VA"
-40340,"Rochester, MN (Metropolitan Statistical Area)",27039,"Dodge, MN"
-40340,"Rochester, MN (Metropolitan Statistical Area)",27045,"Fillmore, MN"
-40340,"Rochester, MN (Metropolitan Statistical Area)",27109,"Olmsted, MN"
-40340,"Rochester, MN (Metropolitan Statistical Area)",27157,"Wabasha, MN"
-40380,"Rochester, NY (Metropolitan Statistical Area)",36051,"Livingston, NY"
-40380,"Rochester, NY (Metropolitan Statistical Area)",36055,"Monroe, NY"
-40380,"Rochester, NY (Metropolitan Statistical Area)",36069,"Ontario, NY"
-40380,"Rochester, NY (Metropolitan Statistical Area)",36073,"Orleans, NY"
-40380,"Rochester, NY (Metropolitan Statistical Area)",36117,"Wayne, NY"
-40380,"Rochester, NY (Metropolitan Statistical Area)",36123,"Yates, NY"
-40420,"Rockford, IL (Metropolitan Statistical Area)",17007,"Boone, IL"
-40420,"Rockford, IL (Metropolitan Statistical Area)",17201,"Winnebago, IL"
-40580,"Rocky Mount, NC (Metropolitan Statistical Area)",37065,"Edgecombe, NC"
-40580,"Rocky Mount, NC (Metropolitan Statistical Area)",37127,"Nash, NC"
-40660,"Rome, GA (Metropolitan Statistical Area)",13115,"Floyd, GA"
-40900,"Sacramento-Roseville-Folsom, CA (Metropolitan Statistical Area)",06017,"El Dorado, CA"
-40900,"Sacramento-Roseville-Folsom, CA (Metropolitan Statistical Area)",06061,"Placer, CA"
-40900,"Sacramento-Roseville-Folsom, CA (Metropolitan Statistical Area)",06067,"Sacramento, CA"
-40900,"Sacramento-Roseville-Folsom, CA (Metropolitan Statistical Area)",06113,"Yolo, CA"
-40980,"Saginaw, MI (Metropolitan Statistical Area)",26145,"Saginaw, MI"
-41060,"St. Cloud, MN (Metropolitan Statistical Area)",27009,"Benton, MN"
-41060,"St. Cloud, MN (Metropolitan Statistical Area)",27145,"Stearns, MN"
-41100,"St. George, UT (Metropolitan Statistical Area)",49053,"Washington, UT"
-41140,"St. Joseph, MO-KS (Metropolitan Statistical Area)",20043,"Doniphan, KS"
-41140,"St. Joseph, MO-KS (Metropolitan Statistical Area)",29003,"Andrew, MO"
-41140,"St. Joseph, MO-KS (Metropolitan Statistical Area)",29021,"Buchanan, MO"
-41140,"St. Joseph, MO-KS (Metropolitan Statistical Area)",29063,"DeKalb, MO"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17005,"Bond, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17013,"Calhoun, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17027,"Clinton, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17083,"Jersey, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17117,"Macoupin, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17119,"Madison, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17133,"Monroe, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",17163,"St. Clair, IL"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",29071,"Franklin, MO"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",29099,"Jefferson, MO"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",29113,"Lincoln, MO"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",29183,"St. Charles, MO"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",29189,"St. Louis, MO"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",29219,"Warren, MO"
-41180,"St. Louis, MO-IL (Metropolitan Statistical Area)",29510,"St. Louis (Independent City), MO"
-41420,"Salem, OR (Metropolitan Statistical Area)",41047,"Marion, OR"
-41420,"Salem, OR (Metropolitan Statistical Area)",41053,"Polk, OR"
-41500,"Salinas, CA (Metropolitan Statistical Area)",06053,"Monterey, CA"
-41540,"Salisbury, MD-DE (Metropolitan Statistical Area)",10005,"Sussex, DE"
-41540,"Salisbury, MD-DE (Metropolitan Statistical Area)",24039,"Somerset, MD"
-41540,"Salisbury, MD-DE (Metropolitan Statistical Area)",24045,"Wicomico, MD"
-41540,"Salisbury, MD-DE (Metropolitan Statistical Area)",24047,"Worcester, MD"
-41620,"Salt Lake City, UT (Metropolitan Statistical Area)",49035,"Salt Lake, UT"
-41620,"Salt Lake City, UT (Metropolitan Statistical Area)",49045,"Tooele, UT"
-41660,"San Angelo, TX (Metropolitan Statistical Area)",48235,"Irion, TX"
-41660,"San Angelo, TX (Metropolitan Statistical Area)",48431,"Sterling, TX"
-41660,"San Angelo, TX (Metropolitan Statistical Area)",48451,"Tom Green, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48013,"Atascosa, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48019,"Bandera, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48029,"Bexar, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48091,"Comal, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48187,"Guadalupe, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48259,"Kendall, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48325,"Medina, TX"
-41700,"San Antonio-New Braunfels, TX (Metropolitan Statistical Area)",48493,"Wilson, TX"
-41740,"San Diego-Chula Vista-Carlsbad, CA (Metropolitan Statistical Area)",06073,"San Diego, CA"
-41860,"San Francisco-Oakland-Berkeley, CA (Metropolitan Statistical Area)",06001,"Alameda, CA"
-41860,"San Francisco-Oakland-Berkeley, CA (Metropolitan Statistical Area)",06013,"Contra Costa, CA"
-41860,"San Francisco-Oakland-Berkeley, CA (Metropolitan Statistical Area)",06041,"Marin, CA"
-41860,"San Francisco-Oakland-Berkeley, CA (Metropolitan Statistical Area)",06075,"San Francisco, CA"
-41860,"San Francisco-Oakland-Berkeley, CA (Metropolitan Statistical Area)",06081,"San Mateo, CA"
-41900,"San Germán, PR (Metropolitan Statistical Area)",72023,"Cabo Rojo Municipio, PR"
-41900,"San Germán, PR (Metropolitan Statistical Area)",72079,"Lajas Municipio, PR"
-41900,"San Germán, PR (Metropolitan Statistical Area)",72121,"Sabana Grande Municipio, PR"
-41900,"San Germán, PR (Metropolitan Statistical Area)",72125,"San Germán Municipio, PR"
-41940,"San Jose-Sunnyvale-Santa Clara, CA (Metropolitan Statistical Area)",06069,"San Benito, CA"
-41940,"San Jose-Sunnyvale-Santa Clara, CA (Metropolitan Statistical Area)",06085,"Santa Clara, CA"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72007,"Aguas Buenas Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72009,"Aibonito Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72017,"Barceloneta Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72019,"Barranquitas Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72021,"Bayamón Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72025,"Caguas Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72029,"Canóvanas Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72031,"Carolina Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72033,"Cataño Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72035,"Cayey Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72037,"Ceiba Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72039,"Ciales Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72041,"Cidra Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72045,"ComerÃo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72047,"Corozal Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72051,"Dorado Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72053,"Fajardo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72054,"Florida Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72061,"Guaynabo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72063,"Gurabo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72069,"Humacao Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72077,"Juncos Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72085,"Las Piedras Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72087,"LoÃza Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72089,"Luquillo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72091,"Manatà Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72095,"Maunabo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72101,"Morovis Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72103,"Naguabo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72105,"Naranjito Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72107,"Orocovis Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72119,"RÃo Grande Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72127,"San Juan Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72129,"San Lorenzo Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72135,"Toa Alta Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72137,"Toa Baja Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72139,"Trujillo Alto Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72143,"Vega Alta Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72145,"Vega Baja Municipio, PR"
-41980,"San Juan-Bayamón-Caguas, PR (Metropolitan Statistical Area)",72151,"Yabucoa Municipio, PR"
-42020,"San Luis Obispo-Paso Robles, CA (Metropolitan Statistical Area)",06079,"San Luis Obispo, CA"
-42100,"Santa Cruz-Watsonville, CA (Metropolitan Statistical Area)",06087,"Santa Cruz, CA"
-42140,"Santa Fe, NM (Metropolitan Statistical Area)",35049,"Santa Fe, NM"
-42200,"Santa Maria-Santa Barbara, CA (Metropolitan Statistical Area)",06083,"Santa Barbara, CA"
-42220,"Santa Rosa-Petaluma, CA (Metropolitan Statistical Area)",06097,"Sonoma, CA"
-42340,"Savannah, GA (Metropolitan Statistical Area)",13029,"Bryan, GA"
-42340,"Savannah, GA (Metropolitan Statistical Area)",13051,"Chatham, GA"
-42340,"Savannah, GA (Metropolitan Statistical Area)",13103,"Effingham, GA"
-42540,"Scranton--Wilkes-Barre, PA (Metropolitan Statistical Area)",42069,"Lackawanna, PA"
-42540,"Scranton--Wilkes-Barre, PA (Metropolitan Statistical Area)",42079,"Luzerne, PA"
-42540,"Scranton--Wilkes-Barre, PA (Metropolitan Statistical Area)",42131,"Wyoming, PA"
-42660,"Seattle-Tacoma-Bellevue, WA (Metropolitan Statistical Area)",53033,"King, WA"
-42660,"Seattle-Tacoma-Bellevue, WA (Metropolitan Statistical Area)",53053,"Pierce, WA"
-42660,"Seattle-Tacoma-Bellevue, WA (Metropolitan Statistical Area)",53061,"Snohomish, WA"
-42680,"Sebastian-Vero Beach, FL (Metropolitan Statistical Area)",12061,"Indian River, FL"
-42700,"Sebring-Avon Park, FL (Metropolitan Statistical Area)",12055,"Highlands, FL"
-43100,"Sheboygan, WI (Metropolitan Statistical Area)",55117,"Sheboygan, WI"
-43300,"Sherman-Denison, TX (Metropolitan Statistical Area)",48181,"Grayson, TX"
-43340,"Shreveport-Bossier City, LA (Metropolitan Statistical Area)",22015,"Bossier, LA"
-43340,"Shreveport-Bossier City, LA (Metropolitan Statistical Area)",22017,"Caddo, LA"
-43340,"Shreveport-Bossier City, LA (Metropolitan Statistical Area)",22031,"De Soto, LA"
-43420,"Sierra Vista-Douglas, AZ (Metropolitan Statistical Area)",04003,"Cochise, AZ"
-43580,"Sioux City, IA-NE-SD (Metropolitan Statistical Area)",19193,"Woodbury, IA"
-43580,"Sioux City, IA-NE-SD (Metropolitan Statistical Area)",31043,"Dakota, NE"
-43580,"Sioux City, IA-NE-SD (Metropolitan Statistical Area)",31051,"Dixon, NE"
-43580,"Sioux City, IA-NE-SD (Metropolitan Statistical Area)",46127,"Union, SD"
-43620,"Sioux Falls, SD (Metropolitan Statistical Area)",46083,"Lincoln, SD"
-43620,"Sioux Falls, SD (Metropolitan Statistical Area)",46087,"McCook, SD"
-43620,"Sioux Falls, SD (Metropolitan Statistical Area)",46099,"Minnehaha, SD"
-43620,"Sioux Falls, SD (Metropolitan Statistical Area)",46125,"Turner, SD"
-43780,"South Bend-Mishawaka, IN-MI (Metropolitan Statistical Area)",18141,"St. Joseph, IN"
-43780,"South Bend-Mishawaka, IN-MI (Metropolitan Statistical Area)",26027,"Cass, MI"
-43900,"Spartanburg, SC (Metropolitan Statistical Area)",45083,"Spartanburg, SC"
-44060,"Spokane-Spokane Valley, WA (Metropolitan Statistical Area)",53063,"Spokane, WA"
-44060,"Spokane-Spokane Valley, WA (Metropolitan Statistical Area)",53065,"Stevens, WA"
-44100,"Springfield, IL (Metropolitan Statistical Area)",17129,"Menard, IL"
-44100,"Springfield, IL (Metropolitan Statistical Area)",17167,"Sangamon, IL"
-44140,"Springfield, MA (Metropolitan Statistical Area)",25011,"Franklin, MA"
-44140,"Springfield, MA (Metropolitan Statistical Area)",25013,"Hampden, MA"
-44140,"Springfield, MA (Metropolitan Statistical Area)",25015,"Hampshire, MA"
-44180,"Springfield, MO (Metropolitan Statistical Area)",29043,"Christian, MO"
-44180,"Springfield, MO (Metropolitan Statistical Area)",29059,"Dallas, MO"
-44180,"Springfield, MO (Metropolitan Statistical Area)",29077,"Greene, MO"
-44180,"Springfield, MO (Metropolitan Statistical Area)",29167,"Polk, MO"
-44180,"Springfield, MO (Metropolitan Statistical Area)",29225,"Webster, MO"
-44220,"Springfield, OH (Metropolitan Statistical Area)",39023,"Clark, OH"
-44300,"State College, PA (Metropolitan Statistical Area)",42027,"Centre, PA"
-44420,"Staunton, VA (Metropolitan Statistical Area)",51907,"Augusta, Staunton + Waynesboro, VA"
-44700,"Stockton, CA (Metropolitan Statistical Area)",06077,"San Joaquin, CA"
-44940,"Sumter, SC (Metropolitan Statistical Area)",45027,"Clarendon, SC"
-44940,"Sumter, SC (Metropolitan Statistical Area)",45085,"Sumter, SC"
-45060,"Syracuse, NY (Metropolitan Statistical Area)",36053,"Madison, NY"
-45060,"Syracuse, NY (Metropolitan Statistical Area)",36067,"Onondaga, NY"
-45060,"Syracuse, NY (Metropolitan Statistical Area)",36075,"Oswego, NY"
-45220,"Tallahassee, FL (Metropolitan Statistical Area)",12039,"Gadsden, FL"
-45220,"Tallahassee, FL (Metropolitan Statistical Area)",12065,"Jefferson, FL"
-45220,"Tallahassee, FL (Metropolitan Statistical Area)",12073,"Leon, FL"
-45220,"Tallahassee, FL (Metropolitan Statistical Area)",12129,"Wakulla, FL"
-45300,"Tampa-St. Petersburg-Clearwater, FL (Metropolitan Statistical Area)",12053,"Hernando, FL"
-45300,"Tampa-St. Petersburg-Clearwater, FL (Metropolitan Statistical Area)",12057,"Hillsborough, FL"
-45300,"Tampa-St. Petersburg-Clearwater, FL (Metropolitan Statistical Area)",12101,"Pasco, FL"
-45300,"Tampa-St. Petersburg-Clearwater, FL (Metropolitan Statistical Area)",12103,"Pinellas, FL"
-45460,"Terre Haute, IN (Metropolitan Statistical Area)",18021,"Clay, IN"
-45460,"Terre Haute, IN (Metropolitan Statistical Area)",18121,"Parke, IN"
-45460,"Terre Haute, IN (Metropolitan Statistical Area)",18153,"Sullivan, IN"
-45460,"Terre Haute, IN (Metropolitan Statistical Area)",18165,"Vermillion, IN"
-45460,"Terre Haute, IN (Metropolitan Statistical Area)",18167,"Vigo, IN"
-45500,"Texarkana, TX-AR (Metropolitan Statistical Area)",05081,"Little River, AR"
-45500,"Texarkana, TX-AR (Metropolitan Statistical Area)",05091,"Miller, AR"
-45500,"Texarkana, TX-AR (Metropolitan Statistical Area)",48037,"Bowie, TX"
-45540,"The Villages, FL (Metropolitan Statistical Area)",12119,"Sumter, FL"
-45780,"Toledo, OH (Metropolitan Statistical Area)",39051,"Fulton, OH"
-45780,"Toledo, OH (Metropolitan Statistical Area)",39095,"Lucas, OH"
-45780,"Toledo, OH (Metropolitan Statistical Area)",39123,"Ottawa, OH"
-45780,"Toledo, OH (Metropolitan Statistical Area)",39173,"Wood, OH"
-45820,"Topeka, KS (Metropolitan Statistical Area)",20085,"Jackson, KS"
-45820,"Topeka, KS (Metropolitan Statistical Area)",20087,"Jefferson, KS"
-45820,"Topeka, KS (Metropolitan Statistical Area)",20139,"Osage, KS"
-45820,"Topeka, KS (Metropolitan Statistical Area)",20177,"Shawnee, KS"
-45820,"Topeka, KS (Metropolitan Statistical Area)",20197,"Wabaunsee, KS"
-45940,"Trenton-Princeton, NJ (Metropolitan Statistical Area)",34021,"Mercer, NJ"
-46060,"Tucson, AZ (Metropolitan Statistical Area)",04019,"Pima, AZ"
-46140,"Tulsa, OK (Metropolitan Statistical Area)",40037,"Creek, OK"
-46140,"Tulsa, OK (Metropolitan Statistical Area)",40111,"Okmulgee, OK"
-46140,"Tulsa, OK (Metropolitan Statistical Area)",40113,"Osage, OK"
-46140,"Tulsa, OK (Metropolitan Statistical Area)",40117,"Pawnee, OK"
-46140,"Tulsa, OK (Metropolitan Statistical Area)",40131,"Rogers, OK"
-46140,"Tulsa, OK (Metropolitan Statistical Area)",40143,"Tulsa, OK"
-46140,"Tulsa, OK (Metropolitan Statistical Area)",40145,"Wagoner, OK"
-46220,"Tuscaloosa, AL (Metropolitan Statistical Area)",01063,"Greene, AL"
-46220,"Tuscaloosa, AL (Metropolitan Statistical Area)",01065,"Hale, AL"
-46220,"Tuscaloosa, AL (Metropolitan Statistical Area)",01107,"Pickens, AL"
-46220,"Tuscaloosa, AL (Metropolitan Statistical Area)",01125,"Tuscaloosa, AL"
-46300,"Twin Falls, ID (Metropolitan Statistical Area)",16053,"Jerome, ID"
-46300,"Twin Falls, ID (Metropolitan Statistical Area)",16083,"Twin Falls, ID"
-46340,"Tyler, TX (Metropolitan Statistical Area)",48423,"Smith, TX"
-46520,"Urban Honolulu, HI (Metropolitan Statistical Area)",15003,"Honolulu, HI"
-46540,"Utica-Rome, NY (Metropolitan Statistical Area)",36043,"Herkimer, NY"
-46540,"Utica-Rome, NY (Metropolitan Statistical Area)",36065,"Oneida, NY"
-46660,"Valdosta, GA (Metropolitan Statistical Area)",13027,"Brooks, GA"
-46660,"Valdosta, GA (Metropolitan Statistical Area)",13101,"Echols, GA"
-46660,"Valdosta, GA (Metropolitan Statistical Area)",13173,"Lanier, GA"
-46660,"Valdosta, GA (Metropolitan Statistical Area)",13185,"Lowndes, GA"
-46700,"Vallejo, CA (Metropolitan Statistical Area)",06095,"Solano, CA"
-47020,"Victoria, TX (Metropolitan Statistical Area)",48175,"Goliad, TX"
-47020,"Victoria, TX (Metropolitan Statistical Area)",48469,"Victoria, TX"
-47220,"Vineland-Bridgeton, NJ (Metropolitan Statistical Area)",34011,"Cumberland, NJ"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",37029,"Camden, NC"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",37053,"Currituck, NC"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",37073,"Gates, NC"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51073,"Gloucester, VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51093,"Isle of Wight, VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51115,"Mathews, VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51550,"Chesapeake (Independent City), VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51650,"Hampton (Independent City), VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51700,"Newport News (Independent City), VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51710,"Norfolk (Independent City), VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51740,"Portsmouth (Independent City), VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51800,"Suffolk (Independent City), VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51810,"Virginia Beach (Independent City), VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51931,"James City + Williamsburg, VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51949,"Southampton + Franklin, VA"
-47260,"Virginia Beach-Norfolk-Newport News, VA-NC (Metropolitan Statistical Area)",51958,"York + Poquoson, VA"
-47300,"Visalia, CA (Metropolitan Statistical Area)",06107,"Tulare, CA"
-47380,"Waco, TX (Metropolitan Statistical Area)",48145,"Falls, TX"
-47380,"Waco, TX (Metropolitan Statistical Area)",48309,"McLennan, TX"
-47460,"Walla Walla, WA (Metropolitan Statistical Area)",53071,"Walla Walla, WA"
-47580,"Warner Robins, GA (Metropolitan Statistical Area)",13153,"Houston, GA"
-47580,"Warner Robins, GA (Metropolitan Statistical Area)",13225,"Peach, GA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",11001,"District of Columbia, DC"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",24009,"Calvert, MD"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",24017,"Charles, MD"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",24021,"Frederick, MD"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",24031,"Montgomery, MD"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",24033,"Prince George's, MD"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51013,"Arlington, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51043,"Clarke, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51047,"Culpeper, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51061,"Fauquier, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51107,"Loudoun, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51113,"Madison, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51157,"Rappahannock, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51179,"Stafford, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51187,"Warren, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51510,"Alexandria (Independent City), VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51919,"Fairfax, Fairfax City + Falls Church, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51942,"Prince William, Manassas + Manassas Park, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",51951,"Spotsylvania + Fredericksburg, VA"
-47900,"Washington-Arlington-Alexandria, DC-VA-MD-WV (Metropolitan Statistical Area)",54037,"Jefferson, WV"
-47940,"Waterloo-Cedar Falls, IA (Metropolitan Statistical Area)",19013,"Black Hawk, IA"
-47940,"Waterloo-Cedar Falls, IA (Metropolitan Statistical Area)",19017,"Bremer, IA"
-47940,"Waterloo-Cedar Falls, IA (Metropolitan Statistical Area)",19075,"Grundy, IA"
-48060,"Watertown-Fort Drum, NY (Metropolitan Statistical Area)",36045,"Jefferson, NY"
-48140,"Wausau-Weston, WI (Metropolitan Statistical Area)",55069,"Lincoln, WI"
-48140,"Wausau-Weston, WI (Metropolitan Statistical Area)",55073,"Marathon, WI"
-48260,"Weirton-Steubenville, WV-OH (Metropolitan Statistical Area)",39081,"Jefferson, OH"
-48260,"Weirton-Steubenville, WV-OH (Metropolitan Statistical Area)",54009,"Brooke, WV"
-48260,"Weirton-Steubenville, WV-OH (Metropolitan Statistical Area)",54029,"Hancock, WV"
-48300,"Wenatchee, WA (Metropolitan Statistical Area)",53007,"Chelan, WA"
-48300,"Wenatchee, WA (Metropolitan Statistical Area)",53017,"Douglas, WA"
-48540,"Wheeling, WV-OH (Metropolitan Statistical Area)",39013,"Belmont, OH"
-48540,"Wheeling, WV-OH (Metropolitan Statistical Area)",54051,"Marshall, WV"
-48540,"Wheeling, WV-OH (Metropolitan Statistical Area)",54069,"Ohio, WV"
-48620,"Wichita, KS (Metropolitan Statistical Area)",20015,"Butler, KS"
-48620,"Wichita, KS (Metropolitan Statistical Area)",20079,"Harvey, KS"
-48620,"Wichita, KS (Metropolitan Statistical Area)",20173,"Sedgwick, KS"
-48620,"Wichita, KS (Metropolitan Statistical Area)",20191,"Sumner, KS"
-48660,"Wichita Falls, TX (Metropolitan Statistical Area)",48009,"Archer, TX"
-48660,"Wichita Falls, TX (Metropolitan Statistical Area)",48077,"Clay, TX"
-48660,"Wichita Falls, TX (Metropolitan Statistical Area)",48485,"Wichita, TX"
-48700,"Williamsport, PA (Metropolitan Statistical Area)",42081,"Lycoming, PA"
-48900,"Wilmington, NC (Metropolitan Statistical Area)",37129,"New Hanover, NC"
-48900,"Wilmington, NC (Metropolitan Statistical Area)",37141,"Pender, NC"
-49020,"Winchester, VA-WV (Metropolitan Statistical Area)",51921,"Frederick + Winchester, VA"
-49020,"Winchester, VA-WV (Metropolitan Statistical Area)",54027,"Hampshire, WV"
-49180,"Winston-Salem, NC (Metropolitan Statistical Area)",37057,"Davidson, NC"
-49180,"Winston-Salem, NC (Metropolitan Statistical Area)",37059,"Davie, NC"
-49180,"Winston-Salem, NC (Metropolitan Statistical Area)",37067,"Forsyth, NC"
-49180,"Winston-Salem, NC (Metropolitan Statistical Area)",37169,"Stokes, NC"
-49180,"Winston-Salem, NC (Metropolitan Statistical Area)",37197,"Yadkin, NC"
-49340,"Worcester, MA-CT (Metropolitan Statistical Area)",09015,"Windham, CT"
-49340,"Worcester, MA-CT (Metropolitan Statistical Area)",25027,"Worcester, MA"
-49420,"Yakima, WA (Metropolitan Statistical Area)",53077,"Yakima, WA"
-49500,"Yauco, PR (Metropolitan Statistical Area)",72055,"Guánica Municipio, PR"
-49500,"Yauco, PR (Metropolitan Statistical Area)",72059,"Guayanilla Municipio, PR"
-49500,"Yauco, PR (Metropolitan Statistical Area)",72111,"Peñuelas Municipio, PR"
-49500,"Yauco, PR (Metropolitan Statistical Area)",72153,"Yauco Municipio, PR"
-49620,"York-Hanover, PA (Metropolitan Statistical Area)",42133,"York, PA"
-49660,"Youngstown-Warren-Boardman, OH-PA (Metropolitan Statistical Area)",39099,"Mahoning, OH"
-49660,"Youngstown-Warren-Boardman, OH-PA (Metropolitan Statistical Area)",39155,"Trumbull, OH"
-49660,"Youngstown-Warren-Boardman, OH-PA (Metropolitan Statistical Area)",42085,"Mercer, PA"
-49700,"Yuba City, CA (Metropolitan Statistical Area)",06101,"Sutter, CA"
-49700,"Yuba City, CA (Metropolitan Statistical Area)",06115,"Yuba, CA"
-49740,"Yuma, AZ (Metropolitan Statistical Area)",04027,"Yuma, AZ"
diff --git a/_delphi_utils_python/data_proc/geomap/transHRRToMSA.csv b/_delphi_utils_python/data_proc/geomap/transHRRToMSA.csv
deleted file mode 100644
index d8259eccf..000000000
--- a/_delphi_utils_python/data_proc/geomap/transHRRToMSA.csv
+++ /dev/null
@@ -1,307 +0,0 @@
-,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,42,43,44,45,46,47,49,50,51,52,53,80,120,160,200,220,240,280,320,380,440,450,460,480,500,520,560,580,600,640,680,720,733,743,760,840,860,870,875,880,920,960,1000,1010,1020,1040,1080,1123,1125,1145,1150,1240,1260,1280,1303,1320,1350,1360,1400,1440,1480,1520,1540,1560,1580,1600,1620,1640,1660,1680,1720,1740,1760,1800,1840,1880,1890,1900,1920,1950,1960,2000,2020,2030,2040,2080,2120,2160,2180,2190,2200,2240,2281,2290,2320,2330,2335,2340,2360,2400,2440,2520,2560,2580,2620,2640,2650,2655,2670,2680,2700,2710,2720,2750,2760,2800,2840,2880,2900,2920,2960,2975,2980,2985,2995,3000,3040,3060,3080,3120,3150,3160,3180,3200,3240,3283,3285,3290,3320,3350,3360,3400,3440,3480,3500,3520,3560,3580,3600,3605,3610,3620,3640,3660,3680,3700,3710,3720,3740,3760,3800,3810,3840,3850,3870,3880,3920,3960,3980,4000,4040,4080,4100,4120,4150,4200,4243,4280,4320,4360,4400,4420,4480,4520,4600,4640,4680,4720,4800,4880,4890,4900,4920,4940,5000,5015,5080,5120,5140,5160,5170,5190,5200,5240,5280,5330,5345,5360,5380,5483,5523,5560,5600,5640,5660,5720,5775,5790,5800,5880,5910,5920,5945,5960,5990,6015,6020,6080,6120,6160,6200,6240,6280,6323,6340,6403,6440,6483,6520,6560,6580,6600,6640,6660,6680,6690,6720,6740,6760,6780,6800,6820,6840,6880,6895,6920,6960,6980,7000,7040,7080,7120,7160,7200,7240,7320,7360,7400,7460,7480,7485,7490,7500,7510,7520,7560,7600,7610,7620,7640,7680,7720,7760,7800,7840,7880,7920,8003,8050,8080,8120,8140,8160,8200,8240,8280,8320,8360,8400,8440,8480,8520,8560,8600,8640,8680,8720,8735,8750,8760,8780,8800,8840,8920,8940,8960,9000,9040,9080,9140,9160,9200,9260,9270,9280,9320,9340,9360
-1,0.294921973,0,0,0,0,0,0,0,0,0.003125529,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006559349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002142387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048497437,0,0,0,0,0,0.053446626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.438393214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02999603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063541979,0,0,0,0,0,0,0,0,0,0,0.051632967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000396996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007345514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2,0.359487285,0,0,0,0,0,0,0,0.185298856,0.056190075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.399023784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5,0.131711577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057737623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125792382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.684758417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6,0.084361351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007386472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.184177275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.724074902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-7,0.210034663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.789965337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9,0.297216548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.702783452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-10,0,0.591123332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.408876668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12,0,0,0.112845745,0,0.00047986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03586011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034696675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.753335522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006247239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001163701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055371148
-14,0,0,0.014728506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985271494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-15,0,0,0.17275433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027076961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.80016871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16,0,0,0,0.176650797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204093345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.619255858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18,0,0,0,0.479952146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.088026441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.432021412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19,0,0,0,0.507695556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.447212762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045091683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21,0,0,0,0.144584835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015464999,0,0,0,0,0,0,0,0,0,0.026872622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.813077543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22,0,0,0,0.305318598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.100971865,0,0,0,0,0,0,0.071880665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.521828873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.914611624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081892068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003496308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.652234028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.347765972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31,0,0,0,0,0.298953991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.697064023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003981986,0
-33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.774262131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.225737869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-43,0,0,0,0,0.114742742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.859832665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025424593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005301764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.990917421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003780815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-58,0,0,0,0,0.080489945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025141593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.285334231,0,0,0,0,0,0,0.576287432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.032746799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-62,0,0,0,0,0.559794632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.440205368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-73,0,0,0,0,0.513029148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.486970852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-77,0,0,0,0,0.049988669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002094341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005548052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.756372888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033600694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0115457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.079108735,0,0,0.06174092,0
-78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-79,0,0,0,0,3.99E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010679462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.989252969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.76E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-80,0,0,0,0,0.044095927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123742969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.832161105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.152518949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73484308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112637971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-82,0,0,0,0,0.030510488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.964444818,0,0,0.005044694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006153468,0,0,0,0,0,0,0.993846532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.924161526,0.075838474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044670983,0.955329017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013731868,0,0,0,0,0,0,0,0,0.986268132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-89,0,0,0,0,0.008428797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001046442,0,0,0,0,0,0.990524761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-91,0,0,0,0,0.060632567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.939367433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029174573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.970825427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.981588541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018411459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-102,0,0,0,0,0,0.222796951,0,0,0,0,0,0,0,0,0,0.000273238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.769797748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007132063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-103,0,0,0,0,0,0.056596479,0,0,0,0,0,0,0,0,0,0.007098347,0,0,0,0,0,0,0,0,0,0,0.031572731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000303654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.883486796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020941992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-104,0,0,0,0,0,0.003514614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010248247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108326599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.265055079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.612855461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-105,0,0,0,0,0,0.57409429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000413974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.425491736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-106,0,0,0,0,0,0.179658431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000840498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264809709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.554691361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-107,0,0,0,0,0,0.08122862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.91877138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-110,0,0,0,0,0,0,0.077580454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000346663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014415837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.844586428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063070619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009911422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08370238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000123597,0.744040821,0.105344739,0,0.056877041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185609263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056674277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.757716459,0,0,0,0,0,0,0
-113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.040700876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001291887,0,0,0,0,0,0,0,0,0,0.001945329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081746326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036387086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.053034864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.784893632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.402931956,0,0.118802708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.478265336,0,0,0,0,0,0,0,0,0,0,0,0
-119,0,0,0,0,0,0,0,0,0.037222318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.531826892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.269625143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.110643883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.050681764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-120,0,0,0,0,0,0,0,0,0.527526033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.448047563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024426403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-123,0,0,0,0,0,0,0,0,0.015670392,0.173938069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.810391539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-124,0,0,0,0,0,0,0,0,0.018379148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.795068322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18655253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-127,0,0,0,0,0,0,0,0,0.021945123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197107229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.780947648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-129,0,0,0,0,0,0,0,0,0.386214094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613785906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-130,0,0,0,0,0,0,0,0,0.092790766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054828003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023520851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08425911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141914697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.602686574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-133,0,0,0,0,0,0,0,0,0.200051285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.799948715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-134,0.0835933,0,0,0,0,0,0,0,0.076972361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.247357582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007141277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58493548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-137,0,0,0,0,0,0,0,0,0.084354651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001937971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061085489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.852621888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-140,0,0,0,0,0,0,0,0,0.147399365,0.45912463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.393476005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-142,0,0,0,0,0,0,0,0,0,0.40417103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59582897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-144,0.000736909,0,0,0,0,0,0,0,0,0.14313148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004551802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03005518,0.820649401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000875227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-145,0,0,0,0,0,0,0,0,0,0.165045277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025708866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.809245857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-146,0,0,0,0,0,0,0,0,0,0.105319668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.092907109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.801773223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-147,0,0,0,0,0,0,0,0,0,0.479188636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.520811364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-148,0.076935627,0,0,0,0,0,0,0,0,0.819756158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103308215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-149,0,0,0,0,0,0,0,0,0,0.346457892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.233724787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.419817322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-150,0,0,0,0,0,0,0,0,0,0,0.305467789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.694532211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-151,0,0,0,0,0,0,0,0,0,0,0,0.264048832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031768,0,0,0,0,0,0,0,0.048656616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.684117752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-152,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-154,0,0,0,0,0,0,0,0,0,0,0,0,0.036009281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.963990719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-164,0,0,0,0,0,0,0,0,0,0,0,0,0.013534061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.823568691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.162897249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-170,0,0,0,0,0,0,0,0,0,0,0,0,0.383914159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00030453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031333309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.584448002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-171,0,0,0,0,0,0,0,0,0,0,0,0,0.251602786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.219318842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000330428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.528747944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-172,0,0,0,0,0,0,0,0,0,0,0,0,0.593001701,0,0,0,0,0,0,0,0,0,0,0,0.016815553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131480506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25870224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-173,0,0,0,0,0,0,0,0,0,0,0,0,0.500293646,0.031601592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004031859,0,0,0,0,0,0,0,0,0,0,0,0,0.461569763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00250314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-175,0,0,0,0,0,0,0,0,0,0,0,0,0.154560815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.824161353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021277832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-179,0,0,0,0,0,0,0,0,0,0,0,0,0.205258719,0.297391177,0,0,0.036476585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.460873519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-180,0,0,0,0,0,0,0,0,0,0,0,0,0,0.236833089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141843419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.621323491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-181,0,0,0,0,0,0,0,0,0,0,0,0,0,0.171854408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014826295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.813319297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-183,0,0,0,0,0,0,0,0,0,0,0,0,0,0.241743615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001504367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048425906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001276646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.657014065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033741954,0,0,0.008950967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00734248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-184,0,0,0,0,0,0,0,0,0,0,0,0,0,0.237418819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.762581181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-185,0,0,0,0,0,0,0,0,0,0,0,0,0,0.263113864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020527676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71635846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.251628048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.748371952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-187,0,0,0,0,0,0,0,0,0,0,0,0,0,0.233582441,0,0,0,0,0,0,0,0.029288448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06743941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.281789696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.387900006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-188,0,0,0,0,0,0,0,0,0,0,0,0,0.063455998,0.23485203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.701691972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27069297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.717373532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011933498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-191,0,0,0,0,0,0,0,0,0,0,0,0,0.066363339,0,0.228486526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.705150135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.465301508,0,0,0,0,0,0,0,0,0,0.004783074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.529915418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-193,0,0,0,0,0,0,0,0,0,0,0,0,0.095029131,0,0.086209043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.203664974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.615096853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.587664055,0,0,0,0,0,0,0,0,0,0.017595732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003572045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.391168167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400359183,0,0,0,0,0,0,0,0,0,0,0,0.090529985,0,0,0,0,0,0,0,0,0,0,0,0,0.043238883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46587195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.388688082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.611311918,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.606846656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004432695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.388720649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-201,0,0,0,0,0,0.000234974,0,0,0,0,0,0,0,0,0,0.510246117,0,0,0,0,0,0,0,0,0,0,0.000389789,0,0,0,0,0,0,0,0.004531302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.484597817,0,0,0,0,0,0,0,0,0,0
-203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006649217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.993350783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.598352619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000249662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003357437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008471612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.389568669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-205,0,0,0,0,0,0,0,0,0,0,0,0,0,0.050681727,0,0,0.299406168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.649912106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-207,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04904634,0,0,0.269239832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.681713828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-208,0,0,0,0,0,0,0,0,0,0,0,0,0.167380622,0,0,0,0.813036994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019582384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53838857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.458489707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003121723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24227597,0,0,0,0,0,0.018164979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.738234394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001324657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.184973973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.777372545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037653482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.314000249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.685999751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.256358001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004288201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.739353798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098772783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.901227217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.421350117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.578649883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-219,0,0,0,0.002664039,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300720042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036309814,0,0,0,0,0,0,0,0,0,0,0,0.000202259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.060332398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.599771447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.224399446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.210413149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.565187405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.60515818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39484182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.279349034,0,0,0,0,0,0,0,0,0,0.017145011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12189371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09807947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.483532774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037042312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.950978692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011978996,0,0,0,0,0,0,0
-225,0,0,0,0,0,0,0,0.489116809,0,0,0,0,0,0,0,0,0,0,0,0.44960262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024254272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037026299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084051737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.915948263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005594502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042612041,0,0,0,0,0,0,0,0,0,0,0,0,0,0.947988226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00380523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081456742,0,0,0,0,0,0,0,0,0,0.006438029,0,0,0,0,0,0,0,0,0,0,0,0,0.002198937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01502696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06563587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.829243462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011389939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.978763221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00984684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005506717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.467049856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.414403011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108995819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004044596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011059305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.988940695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036978357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007213876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1825451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.773262667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.246363819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.753636181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.258263166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.083416382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.649070666,0,0,0,0,0,0,0,0,0,0,0,0,0.009249786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.319867943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.664343596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015788462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.997932161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002067839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.169302714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.830697286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39098587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00187808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.607136051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.774130935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.225869065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044223962,0.178981996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133054396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.643739647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000681329,0,0,0,0,0,0,0,0.230254994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000269452,0,0,0,0,0,0,0,0.03132694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007333248,0,0.036580076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.692719251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07846936,0,0,0,0,0,0,0,0.530136014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025027516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015640135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.350726974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.165185193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138675604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.696139202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035556607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.964443393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.550158029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.449841971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01793022,0,0,0,0,0,0.511104436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.470965344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-260,0.124359564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.875640436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-262,0.044686125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.955313875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-263,0,0,0,0,0,0,0,0,0,0,0,0,0.185226016,0,0,0,0,0,0,0,0,0,0,0,0.814773984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-264,0,0,0,0,0,0,0,0,0,0,0,0,0.001323797,0,0,0,0,0,0,0,0,0,0,0,0.748967355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.249708848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218256144,0,0,0,0,0,0,0,0,0.128668645,0,0,0,0,0,0,0,0,0,0.178409018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.474666194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025687518,0,0,0,0,0,0,0,0,0.090448692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.798260757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045144738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.040458295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-270,0,0,0,0.082055831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.451363849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.466580319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-273,0,0,0,0.001411466,0,0,0,0,0,0,0,0,0.090620937,0,0,0,0,0,0,0,0,0,0,0,0.118814473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.789153123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.543677019,0,0,0,0,0,0,0.00024157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.202933399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.253148012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.458728154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.541271846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-276,0,0,0,0,0,0,0,0,0,0,0,0.02478451,0,0,0,0,0,0,0,0,0,0,0,0,0,0.691018114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.284197377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019926557,0,0,0,0,0,0,0,0,0,0,0.453172758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.514784354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012116331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084083713,0,0,0,0,0,0,0,0,0,0.004532399,0,0.274752261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.635450412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001181215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-279,0,0,0,0,0.001193292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000684225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.995675591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002446892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-280,0,0,0,0,0.12669731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.271962085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006134251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.582879945,0,0,0,0,0,0,0,0,0.012326409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51283769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.450630932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036531378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138809524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.861190476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.128181448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.432300525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.384055897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055462131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.650402529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.213559808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.136037663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004365355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105979979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.842589856,0.04706481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.890774879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109225121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00995125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.245133387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026573584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.718341779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.880104196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119895804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.441896355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.302991099,0.00483105,0.250281497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-293,0,0,0.034853527,0,0,0.055145187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.304456601,0,0,0,0,0,0,0,0,0,0,0,0,0.001543713,0,0,0,0,0,0,0,0,0,0.509654493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.094346479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.220698719,0,0,0,0,0,0,0,0,0,0,0,0,0.020241322,0,0,0,0,0,0,0,0.50091081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141985496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.069107024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042628328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000930178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003498123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.302570386,0,0,0,0,0,0.048902884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005531175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.642995555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.070418816,0,0,0,0,0,0.004412515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.832472215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031317734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061378721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046161789,0,0,0,0,0,0.016902871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014159848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.253888282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.668887209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.582591505,0,0,0,0.417408495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009572969,0,0,0,0.990427031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.205295815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000780431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.792379875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001543879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2332198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.694020629,0,0,0,0,0,0,0,0,0,0,0,0,0.072759571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.039711426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.760962098,0,0.199326476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.603064318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.395245244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001690438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112218314,0,0,0,0,0,0,0.04119088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.825703965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020886841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.405727518,0,0,0,0,0,0,0,0,0,0,0,0,0.084778507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061642849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.118676276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.329174851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.172623049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.793846328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033530623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55547993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199162976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.212029289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033327805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.158654103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141892386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055474885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.589735059,0,0,0,0,0,0,0,0,0,0,0,0.054243566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.283128789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019979818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.696891393,0,0,0,0,0,0
-320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.229659912,0,0,0,0,0,0,0,0,0,0,0,0,0.057569622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005263474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.697563445,0,0,0,0,0,0,0,0.009943547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.387137031,0,0,0,0,0,0,0.097025996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.515836973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.377735892,0,0,0,0,0,0,0,0,0,0.171048215,0,0,0,0,0,0,0.019707253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.419876132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011632508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.188267614,0,0,0,0,0,0,0,0,0,0.237341263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.574391123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006708345,0,0,0,0,0,0,0.993291655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027500255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.923999374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046684642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001815729,0,0
-326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.353634318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613773396,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012597391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019994895,0,0
-327,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026019962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.060487053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.756087872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.157405113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065001191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035828956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89737843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001791423,0,0
-329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004344826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31645588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.603907185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002041001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.77E-05,0,0,0,0,0,0,0,0,0,0.052023247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017870523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003279627,0,0,0,0,0,0,0,0,0,0,0
-330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.229379411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.624846348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145774241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.060046949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.939953051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.154246411,0,0,0,0,0,0,0,0,0,0,0,0,0,0.607345953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.238407636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.238880068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007831123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141794542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000103028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.611391239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119002218,0,0,0,0,0,0,0,0,0,0,0,0,0.015506025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028862,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022551271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075428714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.767223152,0,0
-336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.390389249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.609610751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.288339311,0,0,0,0,0,0,0.000867315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031029279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.679764094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013878927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.329525734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002298623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000850821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.653445895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.398373137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.106406713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.486575544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008644606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-343,0,0,0,0,0.124429986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.399307689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.476262325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.090878719,0,0,0,0,0,0,0,0,0,0.05332284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.831079389,0,0,0,0,0,0,0,0,0,0,5.04E-05,0,0,0,0,0,0,0,0,0,0,0,0,0.024668611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006352581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.993647419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147070058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.589179511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011955678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049972813,0.007987002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1301183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014344412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049372227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.471268546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.437140424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05620634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03538469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.402494079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.140226997,0,0,0,0,0,0,0,0,0,0,0,0,0.260233109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197045815,0,0,0,0,0,0,0,0
-351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010544099,0,0,0,0,0,0.385335405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0260742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.395630274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.120924357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061491666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.268832692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000975314,0,0.685031001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003641423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006432742,0,0,0,0,0,0,0,0,0,0,0,0.035086827,0,0,0
-354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052228356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.925571726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022199919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76876864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23123136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02656072,0,0,0,0,0,0.001465543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.907694852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.064278885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005568095,0,0,0.091690852,0,0,0,0,0,0,0,0,0,0.006256784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00040868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.790656633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006011646,0,0,0,0,0,0,0,0,0,0,0,0.041768735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046555735,0,0,0,0,0,0,0,0,0.011082839,0,0
-358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19881123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144724544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65514374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001320485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.234402632,0,0,0,0,0,0.540895538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111978203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01237919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.100344438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010509446,0,0,0,0,0,0.207295241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065282578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.716912735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.030676926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001404988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.967918086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.090253667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.909746333,0,0,0
-364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147542411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015889543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.836568046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.097347957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.641804463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24764139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01320619,0,0,0,0,0,0
-366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.371115463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.542267742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086616795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025996451,0,0,0,0,0,0,0.477943983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.391214422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104845145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133412446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.866587554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044910793,0,0,0,0,0,0,0.07539013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.879699077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001546953,0.061410524,0,0,0,0,0,0,0,0,0,0,0,0,0.4426251,0,0,0,0,0,0,0,0,0.00679086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.487626564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098029747,0,0,0,0,0,0,0,0.139673085,0,0,0,0.009949958,0,0,0,0,0,0.002250689,0,0,0,0,0,0,0.450910021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.299186499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-373,0.025544134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.244096779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.730359087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.660339299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.339660701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.200738104,0,0,0,0,0,0,0,0,0.094724523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.704537373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015776398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003081159,0,0,0,0.387683119,0,0.004102467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.589356856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020036205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.373249931,0,0,0,0.001631793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021561053,0,0,0,0,0,0,0,0,0.583521018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-379,0,0,0,0.060218158,0,0,0,0,0,0,0,0,0,0,0,0,0.001589357,0,0,0,0,0,0,0.144698656,0.002410754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.097334178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.693748898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085092239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264549423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.088909655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.561448684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.497792047,0,0,0,0.502207953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00644395,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017216982,0,0,0,0,0.04371908,0,0,0,0,0,0,0.374592424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.558027564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035804778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.925532801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.038662421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.142470689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.850206521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00732279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26384754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73615246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.266441724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.733558276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01266167,0,0,0,0,0,0,0.053111848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.891936731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017925806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024363946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.090083338,0,0,0,0,0,0,0,0,0,0,0,0.005342953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.724356896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.180216813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052523039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03907523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.908401731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035007816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.678268393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.286723791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082066478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.050946637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04765625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.819330636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.157513899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.783262402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.059223699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.241567059,0,0,0,0,0,0,0,0,0,0,0,0.350991491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.40744145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.087340734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.912659266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.200012399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.799987601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.294257622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.705742378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164958978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.089598897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.745442126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.087039024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.160756272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.743054036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009150668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.549688288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021990019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.032285425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.396036269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.401186065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.598813935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.294331793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000831132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.704837075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005351311,0,0,0,0,0,0,0.273151922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.721496767,0,0,0,0,0,0,0,0,0
-421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119091309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.880908691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.132538424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.867461576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-423,0,0,0,0,0,0.001347757,0,0,0,0,0,0.038933696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028711727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264566976,0,0,0,0,0,0.052540729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004424387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004568384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.039685478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.565220867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.361214264,0,0,0,0,0,0,0,0,0,0,0,0,0.297236944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.339273718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002275074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000902549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.999097451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.555160741,0,0.01830962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.346664774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.079864865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.080357566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052945617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.866696816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020349173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.967927744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011723083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081464568,0,0,0,0,0,0,0,0,0,0,0,0,0.037238096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.881297336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.167087637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.656247046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176665317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.502597863,0,0.122689803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008837843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.365874491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.376254649,0,0.128128683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.495616668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.200341211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.799658789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.343365059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.656634941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05898255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.068889059,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082714223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.789414168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-440,0,0,0,0,0,0,0,0,0,0,0,0.208748899,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084995,0,0,0,0,0,0,0,0,0,0.012937228,0,0,0,0,0,0,0,0,0,0.302630501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.166943159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.307890263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001069191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005832162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.993098648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146194054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04525423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.808551716,0,0,0,0,0
-443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001262281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010494406,0,0,0,0,0,0,0,0,0,0,0,0,0.580475976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.294944477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000135332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112687528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047039445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123724541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.829236014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055787277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.091077616,0,0,0,0,0,0,0,0,0,0.843846627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00928848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33843735,0,0,0,0,0,0,0,0,0,0,0,0,0.658436264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003126386,0,0,0,0,0,0,0,0,0,0,0,0,0
-447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086370343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.394638018,0,0,0,0,0,0,0,0,0,0,0,0,0.015065626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.503926012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.139171636,0,0,0,0,0,0,0,0.137488267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.340262594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.383077502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-449,0,0,0,0,0,0,0,0,0,0,0,0,0.0022751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.380937327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144532755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.462983656,0,0,0,0,0,0,0,0,0.00012873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009142433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.808331544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14176559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049902866,0,0,0,0,0,0,0,0,0,0,0,0,0
-451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074272558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.169303681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058873051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.579636748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075692404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042221558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.290829475,0,0,0,0,0,0,0,0,0,0,0,0,0.709170525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011478003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.429941611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.558580385,0,0,0,0,0,0,0,0,0,0,0,0,0
-457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.595513113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.404486887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/transStateToHRR.csv b/_delphi_utils_python/data_proc/geomap/transStateToHRR.csv
deleted file mode 100644
index d9ed75dd6..000000000
--- a/_delphi_utils_python/data_proc/geomap/transStateToHRR.csv
+++ /dev/null
@@ -1,52 +0,0 @@
-,1,2,5,6,7,9,10,11,12,14,15,16,18,19,21,22,23,25,31,33,43,56,58,62,65,69,73,77,78,79,80,81,82,83,85,86,87,89,91,96,101,102,103,104,105,106,107,109,110,111,112,113,115,116,118,119,120,122,123,124,127,129,130,131,133,134,137,139,140,141,142,144,145,146,147,148,149,150,151,152,154,155,156,158,161,163,164,166,170,171,172,173,175,179,180,181,183,184,185,186,187,188,190,191,192,193,194,195,196,197,200,201,203,204,205,207,208,209,210,212,213,214,216,217,218,219,220,221,222,223,225,226,227,230,231,232,233,234,235,236,238,239,240,242,243,244,245,246,248,249,250,251,253,254,256,257,258,259,260,261,262,263,264,267,268,270,273,274,275,276,277,278,279,280,281,282,283,284,285,288,289,291,292,293,295,296,297,299,300,301,303,304,307,308,309,311,312,313,314,315,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,334,335,336,339,340,341,342,343,344,345,346,347,350,351,352,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,370,371,373,374,375,376,377,379,380,382,383,385,386,388,390,391,393,394,396,397,399,400,402,406,411,412,413,416,417,418,420,421,422,423,424,426,427,428,429,430,431,432,435,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,456,457
-AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-AL,0.467162148,0.058170919,0.127327053,0.141652294,0.096605703,0.056556408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015341968,0,0,0,0,0,0.001026183,0,0.019024468,0,0.004652975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004944672,0,0.003709635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003825574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-AR,0,0,0,0,0,0,0,0,0,0,0,0.085956665,0.075198497,0.525868826,0.192266973,0.041442287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000616625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024405178,0.001622486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052622462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-AZ,0,0,0,0,0,0,0,0.221136239,0.536747443,0.04106409,0.181165647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009371647,0,0,0,0,0,0,0,0,0,0,0.008778634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-CA,0,0,0,0,0,0,0,0,0.000645423,0,0,0,0,0,0,0,0.088566546,0.031154961,0.007789251,0.02862498,0.03308331,0.259531711,0.023989697,0.007021524,0.042797231,0.009783057,0.008898673,0.069864249,0.01055873,0.085077271,0.100865378,0.039248528,0.048604608,0.006659799,0.021686235,0.011882075,0.007360434,0.012940091,0.016532304,0.02244594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000209733,0.002760255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001418004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061794179,0.162063323,0.548722138,0.041091019,0.063734976,0.071998052,0.03255549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017450359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000536408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.196114537,0.412640332,0.38574409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005501041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-DC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-DE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.740073407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.259926593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-FL,0,0.003356417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016553257,0.025628351,0.147460596,0.065443619,0.028688405,0.021286809,0.070865303,0.020327902,0.168826788,0.026283758,0.197568698,0.020039551,0.011171192,0.036312661,0.021570743,0.020878631,0.022297473,0.075439847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-GA,0.000698031,0.00203573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029845107,0,0,0,0,0,0,0,0,0,0.037857025,0,0.02012511,0.654371522,0.047487292,0.026829045,0.071736301,0.026372528,0.068434346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014207965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-HI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09877401,0.090873749,0.366988705,0.035961317,0.11221454,0.04071705,0.066381408,0.068965462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000734426,0.010626668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066752291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025204106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015806267,0,0,0,0,0,0
-ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.544847897,0.14726644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005879515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102580348,0,0,0,0,0,0,0,0,0,0,0,0,0.199425799,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026656268,0.068000927,0.202291513,0.063598161,0.071706971,0.040102837,0.053962852,0.105669023,0.046868667,0.055705317,0.06217399,0.03424907,0.01610991,0.010913711,0,0,0,0,0,0.006144841,0,0.000877823,0,0.016140406,0,0.001190736,0.000100066,0,0,0,0,0,0,0,0,0,0.004805917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003760952,7.39E-05,0,0,0,0.071850714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001016887,0,0.036028504,0,0,0
-IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002336068,0,0.070955008,0.112840165,0.076136545,0.447906352,0.038788529,0.023637306,0.035303787,0.09815495,0.025027346,0,0,0,0,0,0,0,0,0,0,0,0,0.052929841,0.001097598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014886504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.42E-05,0.007707891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.158156859,0.435256535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027921077,0.358965675,0,0,0,0,0,0.00411766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006786437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001003628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015933507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098116634,0.345293902,0.327687232,0.031764915,0.067310865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004546102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001646627,0.006362068,0.000648801,0.075823083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000230735,0.02463553,0,0,0,0,0,0,0,0,0,0
-LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.062167895,0.207105441,0.058210348,0.137578076,0.060349418,0.10192542,0.058161455,0.152864005,0.133693226,0.023899891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004044825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.730539801,0.108779727,0.122206112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01168967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026784691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011920675,0.346377032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.430396265,0.035129222,0.171076392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00131075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003789664,0,0,0,0,0,0,0,0,0
-ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.292301239,0.707698761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000763749,0,0,0,0,0.007006201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14369099,0.050261487,0.172507661,0.055462811,0.125237699,0.068020626,0.071546222,0.019580184,0.027423948,0.017717763,0.049417196,0.070642578,0.061654748,0.01428004,0.023683638,0.00150942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014876578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004497129,0,0,0,0,0,0.000219333,0
-MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042709354,0.568404628,0.067963145,0.048514883,0.177985428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051194596,0.010417216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020394853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012415898,0,0,0,0,0,0
-MO,0,0,0,0,0,0,0,0,0,0,0,0,0.003563994,0,0.001524541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00223862,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000907336,0,0.001037706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034828002,0.117427251,0.036858917,0.253457022,0.134055831,0.412369191,0,0,0,0,0.001013077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000718513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-MS,0.005047328,0,0,0.05463327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005978499,0,0,0,0,0,0,0,0.028688632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.071357542,0.106181931,0.345669202,0.0566696,0.05063857,0.129083451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146051976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.477836331,0.145083412,0.374467914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000958403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000339614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001314326,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003036249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06768624,0.230502724,0.11959915,0.064450594,0.085500802,0.028894532,0.220795098,0.048204227,0.108164501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001540427,0,0.000959173,0,0.001748194,0,0,0,0,0.005725498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013192592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000200998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.290871215,0.362739434,0.146876539,0.196898502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002413311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052345502,0.00198383,0,0.000175862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022824283,0,0,0.000260381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.309218694,0.601606593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007377286,0.004207568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113356449,0,0,0,0.050964781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1605145,0.67516427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005237313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.318556786,0.128125069,0.109138698,0.120708704,0.177902564,0.044778084,0.023987246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008707087,0,0,0,0,0,0,0.062858449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.760968046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003732347,0,0,0,0,0,0.149646578,0,0,0,0,0.085653029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001963279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00105365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.746371321,0.228886712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021725038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001128741,0.005049922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000245944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009133553,0.001228953,0,0,0,0.013449875,0,0.087471238,0.017012616,0.07406418,0.069373361,0.016112896,0.245154186,0.261504462,0.066032046,0.05383136,0.058834132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004732311,0,0,0,0,0,0,0.003557185,0.000168465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011914576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010635062,0,0.000384794,0,0.000282474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000196478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.059805813,0.055198849,0.137487415,0.17571331,0.269672076,0.092046221,0.022214884,0.03785897,0.072327474,0.042681913,0,0,0,0,0,0,0,0,0,0,0,0.001581874,0,0,0,0,0.014928279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001783335,0.005200778,0,0,0,0,0,0,0,0,0,0
-OK,0,0,0,0,0,0,0,0,0,0,0,0.029115423,0,0,0.00411742,0.006766411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001471492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016940528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051046926,0.509774854,0.35789911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00505401,0,0,0,0,0.017540761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000273066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011557349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.060527247,0.185801518,0.095680216,0.557212232,0.084112578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005108861,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000282856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002223994,0,0,0,0,0,0,0.001341652,0,0.000471583,0.00042491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009374675,0,0,0,0,0,0,0,0,0.091583815,0.022584874,0.046047792,0.046511322,0.082429608,0.01635805,0.054786392,0.288161786,0.199264245,0.047009331,0.009751739,0.024327669,0.019141815,0.034721893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003199997,0,0,0,0,0,0,0,0,0
-RI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018285821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.981714179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042267185,0,0,0,0.043371318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074685957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23586959,0.257590662,0.073641954,0.196389171,0.076184163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013152595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001053226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027175548,0.012911858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.246380837,0.699325935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-TN,0.000741519,0,0.005712118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001084962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084826329,0.049466398,0.034843261,0.027506934,0.207894685,0.18271826,0.405205532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004021713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35E-05,0,0,0,0.002398999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.22E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0106226,0.015150587,0.073641911,0.016783415,0.010684965,0.021108562,0.192213171,0.030273631,0.087663218,0.022299562,0.263216413,0.007701942,0.020152176,0.026370802,0.014461449,0.005938,0.108836189,0.020316786,0.020760874,0.005545411,0.012599566,0.007132407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.80E-05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000887704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.173847151,0.222630812,0.602586367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001352144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024762296,0,0,0,0,0,0.007975002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.032340699,0.000273828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.302735475,0.070693372,0.032586835,0.067924786,0.141422398,0.217528864,0.073488699,0.026915601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002636897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.283074417,0,0,0,0,0,0,0,0,0,0.059365385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.654923301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085166764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.097664115,0.057094325,0.427581341,0.172137231,0.117809793,0.042546432,0,0,0,0,0,0,0,0,0,0,0,0
-WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005662965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.99E-05,0,0,0,0,0,0,0,0.015441445,0.041248261,0.002781464,0,0.026813585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057351885,0.081982322,0.041159994,0.195380945,0.065302882,0.392275418,0.041974997,0.032553914,0
-WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018096158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000209975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003504511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07940951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001041128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006066319,0,0,0,0,0.047284373,0.125784537,0,0,0,0,0,0,0.432543775,0.097882967,0.188176747,0,0,0,0,0,0,0,0,0
-WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001647509,0.236531745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.217919535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002669686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.198706044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.342525481
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/transfipsToHRR.csv b/_delphi_utils_python/data_proc/geomap/transfipsToHRR.csv
deleted file mode 100644
index 0ceb38153..000000000
--- a/_delphi_utils_python/data_proc/geomap/transfipsToHRR.csv
+++ /dev/null
@@ -1,3135 +0,0 @@
-fips,county_name,state_id,1,2,5,6,7,9,10,11,12,14,15,16,18,19,21,22,23,25,31,33,43,56,58,62,65,69,73,77,78,79,80,81,82,83,85,86,87,89,91,96,101,102,103,104,105,106,107,109,110,111,112,113,115,116,118,119,120,122,123,124,127,129,130,131,133,134,137,139,140,141,142,144,145,146,147,148,149,150,151,152,154,155,156,158,161,163,164,166,170,171,172,173,175,179,180,181,183,184,185,186,187,188,190,191,192,193,194,195,196,197,200,201,203,204,205,207,208,209,210,212,213,214,216,217,218,219,220,221,222,223,225,226,227,230,231,232,233,234,235,236,238,239,240,242,243,244,245,246,248,249,250,251,253,254,256,257,258,259,260,261,262,263,264,267,268,270,273,274,275,276,277,278,279,280,281,282,283,284,285,288,289,291,292,293,295,296,297,299,300,301,303,304,307,308,309,311,312,313,314,315,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,334,335,336,339,340,341,342,343,344,345,346,347,350,351,352,354,355,356,357,358,359,360,362,363,364,365,366,367,368,369,370,371,373,374,375,376,377,379,380,382,383,385,386,388,390,391,393,394,396,397,399,400,402,406,411,412,413,416,417,418,420,421,422,423,424,426,427,428,429,430,431,432,435,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,456,457
-1001,Autauga,AL,0.016004628,0,0,0,0.983995372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1003,Baldwin,AL,0,0,0,0.971718008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028281992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1005,Barbour,AL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1007,Bibb,AL,0.427184041,0,0,0,0,0.572815959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1009,Blount,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1011,Bullock,AL,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1013,Butler,AL,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1015,Calhoun,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1017,Chambers,AL,0.956007299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043992701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1019,Cherokee,AL,0.249190478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.750809522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1021,Chilton,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1023,Choctaw,AL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1025,Clarke,AL,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1027,Clay,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1029,Cleburne,AL,0.686206897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.207931034,0,0,0,0.105862069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1031,Coffee,AL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1033,Colbert,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1035,Conecuh,AL,0,0,0,0.169901749,0.647735442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.182362809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1037,Coosa,AL,0.909525959,0,0,0,0.090474041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1039,Covington,AL,0,0.253977745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.746022255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1041,Crenshaw,AL,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1043,Cullman,AL,0.972076594,0,0.027923406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1045,Dale,AL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1047,Dallas,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1049,DeKalb,AL,0.944678407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055321593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1051,Elmore,AL,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1053,Escambia,AL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1055,Etowah,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1057,Fayette,AL,0.000740329,0,0,0,0,0.999259671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1059,Franklin,AL,0.975363772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024636228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1061,Geneva,AL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1063,Greene,AL,0.169433962,0,0,0,0,0.830566038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1065,Hale,AL,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1067,Henry,AL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1069,Houston,AL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1071,Jackson,AL,0,0,0.722037632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.277962368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1073,Jefferson,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1075,Lamar,AL,0.036225266,0,0,0,0,0.671156773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29261796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1077,Lauderdale,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1079,Lawrence,AL,0.840157911,0,0.159842089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1081,Lee,AL,0.781996552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218003448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1083,Limestone,AL,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1085,Lowndes,AL,0.112069895,0,0,0,0.887930105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1087,Macon,AL,0.862176055,0,0,0,0.137823945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1089,Madison,AL,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1091,Marengo,AL,0.782827203,0,0,0.217172797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1093,Marion,AL,0.613166747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.386833253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1095,Marshall,AL,0.553403936,0,0.446596064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1097,Mobile,AL,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1099,Monroe,AL,0.000390911,0,0,0.999609089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1101,Montgomery,AL,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1103,Morgan,AL,0.340494653,0,0.659505347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1105,Perry,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1107,Pickens,AL,0,0,0,0,0,0.896539944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103460056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1109,Pike,AL,0,0.026860074,0,0,0.973139926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1111,Randolph,AL,0.98110908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01889092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1113,Russell,AL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1115,St. Clair,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1117,Shelby,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1119,Sumter,AL,0,0,0,0,0,0.132011938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.867988062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1121,Talladega,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1123,Tallapoosa,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1125,Tuscaloosa,AL,0.080348352,0,0,0,0,0.919651648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1127,Walker,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1129,Washington,AL,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1131,Wilcox,AL,0.712288447,0,0,0.287711553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-1133,Winston,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2013,Aleutians East,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2016,Aleutians West,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2020,Anchorage,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2050,Bethel,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2060,Bristol Bay,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2068,Denali,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2070,Dillingham,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2090,Fairbanks North Star,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2100,Haines,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2105,Hoonah-Angoon,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2110,Juneau,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2122,Kenai Peninsula,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2130,Ketchikan Gateway,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2150,Kodiak Island,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2164,Lake and Peninsula,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2170,Matanuska-Susitna,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2180,Nome,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2185,North Slope,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2188,Northwest Arctic,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2195,Petersburg,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2198,Prince of Wales-Hyder,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2220,Sitka,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2230,Skagway,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2240,Southeast Fairbanks,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2261,Valdez-Cordova,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2270,Wade Hampton,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2275,Wrangell,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2282,Yakutat,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-2290,Yukon-Koyukuk,AK,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4001,Apache,AZ,0,0,0,0,0,0,0,0,0.240791673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.759208327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4003,Cochise,AZ,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4005,Coconino,AZ,0,0,0,0,0,0,0,0,0.983149841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016850159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4007,Gila,AZ,0,0,0,0,0,0,0,0,0.990629237,0,0.009370763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4009,Graham,AZ,0,0,0,0,0,0,0,0,0.144597823,0,0.855402177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4011,Greenlee,AZ,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4012,La Paz,AZ,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4013,Maricopa,AZ,0,0,0,0,0,0,0,0.313591566,0.620565385,0.065843049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4015,Mohave,AZ,0,0,0,0,0,0,0,0,0.635030875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.317410651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047558473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4017,Navajo,AZ,0,0,0,0,0,0,0,0,0.957769799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042230201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4019,Pima,AZ,0,0,0,0,0,0,0,0,0.004319223,0,0.995680777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4021,Pinal,AZ,0,0,0,0,0,0,0,0.481143903,0.435867848,0,0.082988249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4023,Santa Cruz,AZ,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4025,Yavapai,AZ,0,0,0,0,0,0,0,0,0.981552682,0.018447318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-4027,Yuma,AZ,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5001,Arkansas,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5003,Ashley,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5005,Baxter,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001459818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998540182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5007,Benton,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5009,Boone,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5011,Bradley,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5013,Calhoun,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5015,Carroll,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.721819449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.278180551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5017,Chicot,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5019,Clark,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5021,Clay,AR,0,0,0,0,0,0,0,0,0,0,0,0,0.679609086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.320390914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5023,Cleburne,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5025,Cleveland,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5027,Columbia,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0.924958288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075041712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5029,Conway,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5031,Craighead,AR,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5033,Crawford,AR,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5035,Crittenden,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5037,Cross,AR,0,0,0,0,0,0,0,0,0,0,0,0,0.038122299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.961877701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5039,Dallas,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5041,Desha,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5043,Drew,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5045,Faulkner,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5047,Franklin,AR,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5049,Fulton,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39838741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.60161259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5051,Garland,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5053,Grant,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5055,Greene,AR,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5057,Hempstead,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5059,Hot Spring,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5061,Howard,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5063,Independence,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5065,Izard,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5067,Jackson,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5069,Jefferson,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5071,Johnson,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5073,Lafayette,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0.467471391,0,0.532528609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5075,Lawrence,AR,0,0,0,0,0,0,0,0,0,0,0,0,0.869581326,0.130418674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5077,Lee,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5079,Lincoln,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5081,Little River,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5083,Logan,AR,0,0,0,0,0,0,0,0,0,0,0,0.9718348,0,0.0281652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5085,Lonoke,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5087,Madison,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5089,Marion,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015761704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.984238296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5091,Miller,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5093,Mississippi,AR,0,0,0,0,0,0,0,0,0,0,0,0,0.171675132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.828324868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5095,Monroe,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5097,Montgomery,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5099,Nevada,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5101,Newton,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044399439,0.955600561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5103,Ouachita,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5105,Perry,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5107,Phillips,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5109,Pike,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0.958487264,0,0.041512736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5111,Poinsett,AR,0,0,0,0,0,0,0,0,0,0,0,0,0.916632744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.083367256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5113,Polk,AR,0,0,0,0,0,0,0,0,0,0,0,0.873228971,0,0,0,0.126771029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5115,Pope,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5117,Prairie,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5119,Pulaski,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5121,Randolph,AR,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5123,St. Francis,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5125,Saline,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5127,Scott,AR,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5129,Searcy,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.906476449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.093523551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5131,Sebastian,AR,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5133,Sevier,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5135,Sharp,AR,0,0,0,0,0,0,0,0,0,0,0,0,0.057231565,0.793272962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149495472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5137,Stone,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5139,Union,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5141,Van Buren,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5143,Washington,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5145,White,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5147,Woodruff,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-5149,Yell,AR,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6001,Alameda,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6003,Alpine,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.067857143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.932142857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6005,Amador,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6007,Butte,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.933237894,0,0,0,0,0,0,0,0,0.066762106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6009,Calaveras,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099454228,0,0,0,0,0.033630157,0,0,0,0,0,0,0,0,0,0,0.866915615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6011,Colusa,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04524699,0,0,0,0,0,0,0,0,0.95475301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6013,Contra Costa,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.769359847,0,0,0,0,0.022841138,0,0,0,0,0,0,0.207799015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6015,Del Norte,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6017,El Dorado,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.995674893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004325107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6019,Fresno,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6021,Glenn,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6023,Humboldt,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045367897,0,0,0.954632103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6025,Imperial,CA,0,0,0,0,0,0,0,0,0.010245156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.989754844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6027,Inyo,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006821212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138014155,0.855164632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6029,Kern,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.898935304,0,0,0,0.060870745,0,0,0,0,0,0,0,0.040193951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6031,Kings,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6033,Lake,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6035,Lassen,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.10425,0,0,0,0,0,0,0,0.0168125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8789375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6037,Los Angeles,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.997460139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002539861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6039,Madera,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.847139573,0,0.152860427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6041,Marin,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.997956422,0,0,0,0,0,0.002043578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6043,Mariposa,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007669285,0,0.992330715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6045,Mendocino,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.950984557,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049015443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6047,Merced,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6049,Modoc,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.202995008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.700915141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09608985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6051,Mono,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6053,Monterey,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.986724956,0,0,0,0,0.003829707,0,0,0.009445337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6055,Napa,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.856276321,0,0,0,0,0,0,0,0.143723679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6057,Nevada,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.806827881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.193172119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6059,Orange,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6061,Placer,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.977134218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022865782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6063,Plumas,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.273807433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.726192567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6065,Riverside,CA,0,0,0,0,0,0,0,0,0.009286325,0,0,0,0,0,0,0,0.119021265,0,0,0,0,0,0,0,0,0.131287315,0,0,0,0.535583535,0.20482156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6067,Sacramento,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6069,San Benito,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6071,San Bernardino,CA,0,0,0,0,0,0,0,0,0.000614992,0,0,0,0,0,0,0,0,0,0,0,0,0.018016311,0,0,0,0.032731554,0,0,0,0.946048641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002588502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6073,San Diego,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003675517,0,0,0,0,0,0,0,0,0,0,0,0,2.79E-05,0.996296583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6075,San Francisco,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6077,San Joaquin,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042082155,0,0,0,0,0.126013801,0,0,0,0,0,0,0,0,0,0,0.831904044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6079,San Luis Obispo,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.925760353,0,0.074239647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6081,San Mateo,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6083,Santa Barbara,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6085,Santa Clara,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.966104426,0,0.033895574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6087,Santa Cruz,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.032672863,0,0,0,0.967327137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6089,Shasta,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6091,Sierra,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.076302274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.923697726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6093,Siskiyou,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.389147601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.610852399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6095,Solano,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.578379985,0,0,0,0,0,0,0,0.072351811,0,0,0,0.349268203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6097,Sonoma,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6099,Stanislaus,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6101,Sutter,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6103,Tehama,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.760360563,0,0,0,0,0,0,0,0.239639437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6105,Trinity,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.064717199,0,0,0.935282801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6107,Tulare,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.927959352,0,0,0.072040648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6109,Tuolumne,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6111,Ventura,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6113,Yolo,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-6115,Yuba,CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016148556,0,0,0,0,0,0,0,0,0.983851444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8001,Adams,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8003,Alamosa,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8005,Arapahoe,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8007,Archuleta,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8009,Baca,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8011,Bent,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8013,Boulder,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8014,Broomfield,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8015,Chaffee,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8017,Cheyenne,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8019,Clear Creek,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8021,Conejos,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8023,Costilla,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8025,Crowley,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.682922472,0,0,0,0,0.317077528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8027,Custer,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8029,Delta,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8031,Denver,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8033,Dolores,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8035,Douglas,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019386249,0.980613751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8037,Eagle,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.357342603,0,0.642657397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8039,Elbert,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.064779188,0.935220812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8041,El Paso,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8043,Fremont,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8045,Garfield,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8047,Gilpin,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8049,Grand,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8051,Gunnison,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8053,Hinsdale,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8055,Huerfano,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8057,Jackson,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8059,Jefferson,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8061,Kiowa,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.793650794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.206349206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8063,Kit Carson,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8065,Lake,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8067,La Plata,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8069,Larimer,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.681643512,0,0.318356488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8071,Las Animas,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.961839599,0,0,0,0,0.038160401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8073,Lincoln,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8075,Logan,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8077,Mesa,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8079,Mineral,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8081,Moffat,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.975512703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024487297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8083,Montezuma,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8085,Montrose,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8087,Morgan,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8089,Otero,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.908067136,0,0,0,0,0.091932864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8091,Ouray,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8093,Park,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138291977,0.861708023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8095,Phillips,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8097,Pitkin,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8099,Prowers,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8101,Pueblo,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8103,Rio Blanco,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.586341616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.413658384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8105,Rio Grande,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8107,Routt,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8109,Saguache,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8111,San Juan,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8113,San Miguel,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8115,Sedgwick,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8117,Summit,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8119,Teller,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8121,Washington,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8123,Weld,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021439985,0,0.225332775,0,0,0.753227241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-8125,Yuma,CO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9001,Fairfield,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.743701327,0,0.256298673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9003,Hartford,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.951217577,0.048782423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9005,Litchfield,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.560123183,0.439876817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9007,Middlesex,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9009,New Haven,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9011,New London,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.350028119,0.577078184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.072893697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9013,Tolland,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-9015,Windham,CT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-10001,Kent,DE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.897661921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102338079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-10003,New Castle,DE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-10005,Sussex,DE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-11001,District of Columbia,DC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12001,Alachua,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12003,Baker,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12005,Bay,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12007,Bradford,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12009,Brevard,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12011,Broward,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.641000109,0,0,0,0,0,0.358999891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12013,Calhoun,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045052691,0,0,0,0.954947309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12015,Charlotte,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84604257,0,0,0,0,0,0,0,0,0,0,0.15395743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12017,Citrus,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12019,Clay,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.070533559,0,0.929466441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12021,Collier,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12023,Columbia,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12027,DeSoto,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12029,Dixie,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12031,Duval,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12033,Escambia,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12035,Flagler,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12037,Franklin,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.600104913,0,0,0,0.399895087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12039,Gadsden,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12041,Gilchrist,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12043,Glades,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12045,Gulf,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12047,Hamilton,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145053921,0,0,0,0,0,0,0,0,0,0,0,0.854946079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12049,Hardee,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.280767687,0,0,0.679899296,0,0,0,0.039333017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12051,Hendry,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12053,Hernando,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12055,Highlands,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12057,Hillsborough,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055626221,0,0,0,0,0,0,0,0,0,0.944373779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12059,Holmes,FL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12061,Indian River,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12063,Jackson,FL,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12065,Jefferson,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12067,Lafayette,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12069,Lake,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12071,Lee,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998800353,0,0,0,0,0,0,0,0,0,0,0.001199647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12073,Leon,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12075,Levy,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.896242365,0,0,0,0,0.103757635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12077,Liberty,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12079,Madison,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12081,Manatee,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.904097565,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095902435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12083,Marion,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12085,Martin,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12086,Miami-Dade,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12087,Monroe,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12089,Nassau,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12091,Okaloosa,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12093,Okeechobee,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12095,Orange,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12097,Osceola,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12099,Palm Beach,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12101,Pasco,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.535049257,0,0,0,0,0,0,0,0,0,0,0,0.464950743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12103,Pinellas,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.551064596,0,0,0,0,0,0,0,0,0,0,0,0,0,0.448935404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12105,Polk,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4926104,0,0,0.5073896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12107,Putnam,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12109,St. Johns,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12111,St. Lucie,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.679720649,0,0,0,0,0,0,0,0.320279351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12113,Santa Rosa,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12115,Sarasota,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.166233931,0,0,0,0,0,0,0,0,0,0,0.833766069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12117,Seminole,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12119,Sumter,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.512431097,0.487568903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12121,Suwannee,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12123,Taylor,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05768611,0,0,0,0,0,0,0,0,0,0,0,0.94231389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12125,Union,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12127,Volusia,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.420252182,0.579747818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12129,Wakulla,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12131,Walton,FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-12133,Washington,FL,0,0.040546458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.959453542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13001,Appling,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.050189496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.949810504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13003,Atkinson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13005,Bacon,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13007,Baker,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13009,Baldwin,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13011,Banks,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13013,Barrow,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13015,Bartow,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.715694161,0,0,0,0.284305839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13017,Ben Hill,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13019,Berrien,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13021,Bibb,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13023,Bleckley,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13025,Brantley,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13027,Brooks,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13029,Bryan,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13031,Bulloch,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13033,Burke,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13035,Butts,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13037,Calhoun,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13039,Camden,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13043,Candler,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13045,Carroll,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13047,Catoosa,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13049,Charlton,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13051,Chatham,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13053,Chattahoochee,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13055,Chattooga,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13057,Cherokee,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13059,Clarke,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13061,Clay,GA,0,0.844516129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.155483871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13063,Clayton,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13065,Clinch,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.916542474,0,0,0,0,0,0,0,0,0,0.083457526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13067,Cobb,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13069,Coffee,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13071,Colquitt,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13073,Columbia,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13075,Cook,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13077,Coweta,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13079,Crawford,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13081,Crisp,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13083,Dade,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13085,Dawson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13087,Decatur,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13089,DeKalb,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13091,Dodge,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13093,Dooly,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13095,Dougherty,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13097,Douglas,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13099,Early,GA,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13101,Echols,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13103,Effingham,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13105,Elbert,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13107,Emanuel,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.702632301,0,0,0,0.297367699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13109,Evans,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13111,Fannin,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13113,Fayette,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13115,Floyd,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13117,Forsyth,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13119,Franklin,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13121,Fulton,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13123,Gilmer,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13125,Glascock,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13127,Glynn,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13129,Gordon,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.117261552,0,0,0,0.882738448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13131,Grady,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13133,Greene,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13135,Gwinnett,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13137,Habersham,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13139,Hall,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13141,Hancock,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13143,Haralson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.419590707,0,0,0,0.580409293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13145,Harris,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.170212155,0,0.829787845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13147,Hart,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13149,Heard,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13151,Henry,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13153,Houston,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13155,Irwin,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11121372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88878628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13157,Jackson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13159,Jasper,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.118217586,0,0,0.881782414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13161,Jeff Davis,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13163,Jefferson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13165,Jenkins,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13167,Johnson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13169,Jones,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13171,Lamar,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.224919764,0,0,0.775080236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13173,Lanier,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13175,Laurens,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13177,Lee,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13179,Liberty,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13181,Lincoln,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13183,Long,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13185,Lowndes,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13187,Lumpkin,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13189,McDuffie,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13191,McIntosh,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.920630766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.079369234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13193,Macon,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13195,Madison,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13197,Marion,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13199,Meriwether,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.585220627,0,0.414779373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13201,Miller,GA,0,0.103890363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.896109637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13205,Mitchell,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.451560453,0,0.548439547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13207,Monroe,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.541816232,0,0,0.458183768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13209,Montgomery,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013433488,0,0.986566512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13211,Morgan,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13213,Murray,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13215,Muscogee,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13217,Newton,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13219,Oconee,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13221,Oglethorpe,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13223,Paulding,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13225,Peach,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13227,Pickens,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13229,Pierce,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13231,Pike,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.709019567,0,0,0.290980433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13233,Polk,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13235,Pulaski,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13237,Putnam,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13239,Quitman,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13241,Rabun,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13243,Randolph,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.248052309,0,0,0.751947691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13245,Richmond,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13247,Rockdale,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13249,Schley,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13251,Screven,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13253,Seminole,GA,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13255,Spalding,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13257,Stephens,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13259,Stewart,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13261,Sumter,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.968340754,0,0,0,0.031659246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13263,Talbot,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13265,Taliaferro,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13267,Tattnall,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13269,Taylor,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13271,Telfair,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.839101895,0,0.160898105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13273,Terrell,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.963420159,0,0,0.036579841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13275,Thomas,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13277,Tift,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13279,Toombs,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13281,Towns,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13283,Treutlen,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13285,Troup,GA,0.101185281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.898814719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13287,Turner,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13289,Twiggs,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13291,Union,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13293,Upson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13295,Walker,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13297,Walton,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13299,Ware,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13301,Warren,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13303,Washington,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13305,Wayne,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13307,Webster,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13309,Wheeler,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13311,White,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13313,Whitfield,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13315,Wilcox,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13317,Wilkes,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13319,Wilkinson,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-13321,Worth,GA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164791235,0,0.835208765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-15001,Hawaii,HI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-15003,Honolulu,HI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-15005,Kalawao,HI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-15007,Kauai,HI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-15009,Maui,HI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16001,Ada,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16003,Adams,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16005,Bannock,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16007,Bear Lake,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16009,Benewah,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16011,Bingham,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9057691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0942309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16013,Blaine,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16015,Boise,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16017,Bonner,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16019,Bonneville,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998930386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001069614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16021,Boundary,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16023,Butte,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16025,Camas,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16027,Canyon,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16029,Caribou,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16031,Cassia,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16033,Clark,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16035,Clearwater,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16037,Custer,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084188371,0.347277032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.568534596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16039,Elmore,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16041,Franklin,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16043,Fremont,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16045,Gem,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16047,Gooding,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16049,Idaho,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057558791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.942441209,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16051,Jefferson,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16053,Jerome,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16055,Kootenai,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16057,Latah,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16059,Lemhi,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16061,Lewis,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16063,Lincoln,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16065,Madison,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16067,Minidoka,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16069,Nez Perce,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16071,Oneida,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16073,Owyhee,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16075,Payette,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16077,Power,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16079,Shoshone,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16081,Teton,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16083,Twin Falls,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16085,Valley,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-16087,Washington,ID,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17001,Adams,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17003,Alexander,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17005,Bond,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17007,Boone,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17009,Brown,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17011,Bureau,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.285272599,0.714727401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17013,Calhoun,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01018892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98981108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17015,Carroll,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61510458,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38489542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17017,Cass,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17019,Champaign,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17021,Christian,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17023,Clark,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081953363,0,0,0,0,0,0,0,0,0,0.918046637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17025,Clay,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17027,Clinton,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17029,Coles,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17031,Cook,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.161223737,0.502227872,0.029561929,0.150285467,0,0.004535328,0.136909908,0,0,0,0,0,0,0,0,0,0,0,0.015255758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17033,Crawford,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.980135832,0,0,0,0,0,0,0,0.019864168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17035,Cumberland,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.294027377,0.705972623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17037,DeKalb,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144476055,0,0,0,0,0,0,0,0,0.855523945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17039,De Witt,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.709818875,0.246266285,0.04391484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17041,Douglas,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.272181955,0.727818045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17043,DuPage,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063092945,0,0,0.043860917,0,0.369917706,0,0.523128432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17045,Edgar,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17047,Edwards,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17049,Effingham,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17051,Fayette,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17053,Ford,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.067953328,0,0,0,0,0.91781023,0.014236442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17055,Franklin,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17057,Fulton,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.876861828,0,0.123138172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17059,Gallatin,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17061,Greene,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.942280689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057719311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17063,Grundy,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.996469158,0,0.003530842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17065,Hamilton,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17067,Hancock,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17069,Hardin,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17071,Henderson,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.360892599,0,0.009632365,0,0,0,0,0,0,0,0,0,0,0,0,0.629475036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17073,Henry,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.393385425,0.004930637,0,0,0,0,0,0,0,0,0,0,0,0,0,0.601683938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17075,Iroquois,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.178940641,0,0,0,0,0.821059359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17077,Jackson,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.315108289,0,0,0,0,0.684891711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17079,Jasper,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.755550389,0.098454028,0,0.145995583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17081,Jefferson,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17083,Jersey,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17085,Jo Daviess,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.294598716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.705401284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17087,Johnson,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099330531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.759068971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141600498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17089,Kane,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.279935017,0,0,0.434829948,0,0,0,0.277507763,0,0.007727272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17091,Kankakee,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17093,Kendall,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96615972,0,0,0,0,0,0.03384028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17095,Knox,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17097,Lake,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.170116954,0.196450389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.633432657,0,0,0
-17099,LaSalle,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.110326219,0,0,0,0,0,0.032971466,0,0.744941776,0.11176054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17101,Lawrence,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17103,Lee,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17105,Livingston,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199732985,0,0,0.009095208,0.791171808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17107,Logan,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.910882929,0,0.089117071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17109,McDonough,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17111,McHenry,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.811561277,0,0,0,0,0,0.188438723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17113,McLean,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010652889,0.989347111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17115,Macon,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17117,Macoupin,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.609794099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.390205901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17119,Madison,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17121,Marion,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17123,Marshall,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17125,Mason,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.345140665,0,0.654859335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17127,Massac,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17129,Menard,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17131,Mercer,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.100752083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.899247917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17133,Monroe,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17135,Montgomery,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17137,Morgan,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17139,Moultrie,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17141,Ogle,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17143,Peoria,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17145,Perry,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17147,Piatt,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17214849,0.82785151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17149,Pike,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.941783346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058216654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17151,Pope,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17153,Pulaski,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.296844181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.703155819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17155,Putnam,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.901823282,0.098176718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17157,Randolph,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17159,Richland,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17161,Rock Island,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.991260218,0,0,0.008739782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17163,St. Clair,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17165,Saline,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17167,Sangamon,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17169,Schuyler,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17171,Scott,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17173,Shelby,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17175,Stark,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17177,Stephenson,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.944181849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055818151,0,0,0,0,0
-17179,Tazewell,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17181,Union,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17183,Vermilion,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17185,Wabash,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17187,Warren,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.981510462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018489538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17189,Washington,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17191,Wayne,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028337491,0,0,0.781487878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.190174631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17193,White,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17195,Whiteside,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.838686739,0,0,0,0,0,0,0,0,0,0,0,0,0,0.161313261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17197,Will,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057017123,0,0,0,0.229913003,0.713069873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17199,Williamson,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.510394322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.489605678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-17201,Winnebago,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.963740432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036259568,0,0,0,0,0
-17203,Woodford,IL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.874194933,0,0,0,0.125805067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18001,Adams,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18003,Allen,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18005,Bartholomew,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18007,Benton,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18009,Blackford,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18011,Boone,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18013,Brown,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18015,Carroll,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.187858539,0.812141461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18017,Cass,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18019,Clark,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18021,Clay,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82208935,0,0,0,0,0.17791065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18023,Clinton,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.796021387,0.203978613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18025,Crawford,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197203159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.802796841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18027,Daviess,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18029,Dearborn,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18031,Decatur,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18033,DeKalb,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18035,Delaware,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18037,Dubois,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.903740305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096259695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18039,Elkhart,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18041,Fayette,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18043,Floyd,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18045,Fountain,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.490332827,0,0,0,0,0.098467063,0.41120011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18047,Franklin,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.187209237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.812790763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18049,Fulton,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.070947203,0,0,0,0.929052797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18051,Gibson,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18053,Grant,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18055,Greene,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.863379018,0,0,0,0,0.136620982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18057,Hamilton,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18059,Hancock,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18061,Harrison,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18063,Hendricks,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18065,Henry,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.971996696,0,0.028003304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18067,Howard,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18069,Huntington,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.882241775,0,0.117758225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18071,Jackson,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18073,Jasper,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.600731701,0,0.399268299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18075,Jay,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.867318961,0,0,0,0.132681039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18077,Jefferson,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18079,Jennings,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18081,Johnson,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18083,Knox,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18085,Kosciusko,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.833122945,0,0,0,0,0,0.166877055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18087,LaGrange,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.770155643,0,0,0,0,0,0.229844357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18089,Lake,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52251808,0,0,0,0.47748192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18091,LaPorte,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.411935083,0,0,0,0,0.588064917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18093,Lawrence,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18095,Madison,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18097,Marion,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18099,Marshall,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18101,Martin,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.693793213,0,0,0.306206787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18103,Miami,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.942437856,0,0,0,0.057562144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18105,Monroe,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18107,Montgomery,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985384436,0.014615564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18109,Morgan,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18111,Newton,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.215550057,0,0,0,0.291587362,0,0.492862581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18113,Noble,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.711847238,0,0,0,0,0,0.288152762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18115,Ohio,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18117,Orange,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.355578728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.644421272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18119,Owen,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.953322192,0,0,0,0,0.046677808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18121,Parke,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18123,Perry,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18125,Pike,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18127,Porter,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18129,Posey,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18131,Pulaski,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18133,Putnam,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18135,Randolph,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111209964,0,0.888790036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18137,Ripley,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.184488631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.815511369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18139,Rush,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18141,St. Joseph,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18143,Scott,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18145,Shelby,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18147,Spencer,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.654149259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.345850741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18149,Starke,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.854871891,0,0,0,0,0.145128109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18151,Steuben,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18153,Sullivan,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18155,Switzerland,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.827196908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.172803092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18157,Tippecanoe,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18159,Tipton,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18161,Union,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18163,Vanderburgh,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18165,Vermillion,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074277136,0,0,0,0,0,0,0,0,0,0.925722864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18167,Vigo,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18169,Wabash,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.918359751,0,0.081640249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18171,Warren,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.476876132,0,0,0,0,0,0.523123868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18173,Warrick,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18175,Washington,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18177,Wayne,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18179,Wells,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18181,White,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.745667992,0.254332008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-18183,Whitley,IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19001,Adair,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.953950034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046049966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19003,Adams,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.915641476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084358524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19005,Allamakee,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
-19007,Appanoose,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19009,Audubon,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.915411145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084588855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19011,Benton,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19013,Black Hawk,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19015,Boone,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19017,Bremer,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19019,Buchanan,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102670935,0,0,0,0,0,0,0.897329065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19021,Buena Vista,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.896690998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103309002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19023,Butler,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.214226263,0,0.785773737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19025,Calhoun,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19027,Carroll,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.887757054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112242946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19029,Cass,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19031,Cedar,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.30970921,0.162124346,0,0,0.528166444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19033,Cerro Gordo,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19035,Cherokee,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19037,Chickasaw,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19039,Clarke,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19041,Clay,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19043,Clayton,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.382179591,0,0,0.296082284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.321738126,0,0,0,0,0,0
-19045,Clinton,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19047,Crawford,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.040334539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.959665461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19049,Dallas,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19051,Davis,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19053,Decatur,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19055,Delaware,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.936481879,0,0,0.063518121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19057,Des Moines,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19059,Dickinson,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19061,Dubuque,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19063,Emmet,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.150218613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.849781387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19065,Fayette,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44507933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55492067,0,0,0,0,0,0
-19067,Floyd,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.296457388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.703542612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19069,Franklin,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012606474,0,0,0.987393526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19071,Fremont,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19073,Greene,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19075,Grundy,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.182248521,0,0,0,0,0.817751479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19077,Guthrie,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19079,Hamilton,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19081,Hancock,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19083,Hardin,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82883266,0,0,0,0,0.17116734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19085,Harrison,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19087,Henry,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18436571,0,0,0.81563429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19089,Howard,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19091,Humboldt,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19093,Ida,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19095,Iowa,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.552701781,0,0,0,0.447298219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19097,Jackson,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.619573252,0,0.380426748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19099,Jasper,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19101,Jefferson,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19103,Johnson,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025611684,0,0,0,0.974388316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19105,Jones,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.952054447,0.047945553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19107,Keokuk,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19109,Kossuth,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.850186233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047868672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.101945096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19111,Lee,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022712013,0,0,0.977287987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19113,Linn,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19115,Louisa,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.450128103,0,0,0.549871897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19117,Lucas,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19119,Lyon,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19121,Madison,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19123,Mahaska,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19125,Marion,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19127,Marshall,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19129,Mills,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19131,Mitchell,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19133,Monona,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.200798631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.799201369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19135,Monroe,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19137,Montgomery,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19139,Muscatine,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015851246,0,0,0.984148754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19141,O'Brien,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.849659255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.150340745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19143,Osceola,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19145,Page,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19147,Palo Alto,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.698698805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.301301195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19149,Plymouth,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19151,Pocahontas,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8310561,0,0,0.013181161,0.155762739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19153,Polk,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19155,Pottawattamie,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19157,Poweshiek,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009747406,0,0.978094539,0,0.012158055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19159,Ringgold,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19161,Sac,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.305325802,0,0,0,0.694674198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19163,Scott,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19165,Shelby,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19167,Sioux,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.670444638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.329555362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19169,Story,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19171,Tama,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018600181,0,0.680800543,0,0,0,0,0.300599276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19173,Taylor,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.889009456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.110990544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19175,Union,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19177,Van Buren,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141647421,0,0.858352579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19179,Wapello,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19181,Warren,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19183,Washington,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19185,Wayne,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19187,Webster,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19189,Winnebago,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.986190637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013809363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19191,Winneshiek,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042761238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.957238762,0,0,0,0,0,0
-19193,Woodbury,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.984592241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015407759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19195,Worth,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-19197,Wright,IA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.326658514,0,0,0.673341486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20001,Allen,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.975188694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024811306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20003,Anderson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.265200835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.734799165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20005,Atchison,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20007,Barber,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20009,Barton,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20011,Bourbon,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034580611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.965419389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20013,Brown,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.733909999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.266090001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20015,Butler,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20017,Chase,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.762840837,0.237159163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20019,Chautauqua,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.280128205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.719871795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20021,Cherokee,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20023,Cheyenne,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20025,Clark,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20027,Clay,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.970490547,0.029509453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20029,Cloud,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20031,Coffey,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20033,Comanche,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20035,Cowley,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20037,Crawford,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20039,Decatur,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20041,Dickinson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.692082111,0.307917889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20043,Doniphan,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.211485149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.788514851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20045,Douglas,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01715478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98284522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20047,Edwards,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20049,Elk,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20051,Ellis,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20053,Ellsworth,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20055,Finney,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20057,Ford,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20059,Franklin,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20061,Geary,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20063,Gove,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20065,Graham,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20067,Grant,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20069,Gray,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20071,Greeley,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20073,Greenwood,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199969045,0.800030955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20075,Hamilton,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20077,Harper,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20079,Harvey,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20081,Haskell,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20083,Hodgeman,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20085,Jackson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20087,Jefferson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.713823683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.286176317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20089,Jewell,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.868309859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131690141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20091,Johnson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20093,Kearny,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20095,Kingman,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20097,Kiowa,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20099,Labette,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.866563806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.090135377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043300816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20101,Lane,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20103,Leavenworth,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20105,Lincoln,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20107,Linn,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.560323069,0.439676931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20109,Logan,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.243803056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.756196944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20111,Lyon,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20113,McPherson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20115,Marion,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20117,Marshall,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.253509746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.746490254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20119,Meade,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20121,Miami,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20123,Mitchell,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20125,Montgomery,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.503998568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.496001432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20127,Morris,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.984281735,0.015718265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20129,Morton,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20131,Nemaha,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20133,Neosho,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20135,Ness,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20137,Norton,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20139,Osage,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20141,Osborne,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20143,Ottawa,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20145,Pawnee,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20147,Phillips,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.952969833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047030167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20149,Pottawatomie,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20151,Pratt,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20153,Rawlins,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20155,Reno,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20157,Republic,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20159,Rice,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20161,Riley,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20163,Rooks,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20165,Rush,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20167,Russell,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20169,Saline,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20171,Scott,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20173,Sedgwick,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20175,Seward,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20177,Shawnee,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20179,Sheridan,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20181,Sherman,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20183,Smith,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20185,Stafford,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20187,Stanton,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20189,Stevens,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20191,Sumner,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20193,Thomas,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20195,Trego,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20197,Wabaunsee,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20199,Wallace,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15226849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84773151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20201,Washington,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.291880781,0.029804728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.678314491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20203,Wichita,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20205,Wilson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20207,Woodson,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-20209,Wyandotte,KS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21001,Adair,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21003,Allen,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21005,Anderson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21007,Ballard,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21009,Barren,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21011,Bath,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21013,Bell,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21015,Boone,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21017,Bourbon,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21019,Boyd,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
-21021,Boyle,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21023,Bracken,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177398303,0.822601697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21025,Breathitt,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21027,Breckinridge,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21029,Bullitt,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21031,Butler,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21033,Caldwell,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21035,Calloway,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21037,Campbell,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21039,Carlisle,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21041,Carroll,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21043,Carter,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.463767084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.536232916,0,0,0,0,0,0,0,0,0,0
-21045,Casey,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.956576835,0.043423165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21047,Christian,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21049,Clark,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21051,Clay,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.981014809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018985191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21053,Clinton,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007265587,0.992734413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21055,Crittenden,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21057,Cumberland,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21059,Daviess,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21061,Edmonson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21063,Elliott,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21065,Estill,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21067,Fayette,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21069,Fleming,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.80459694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19540306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21071,Floyd,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21073,Franklin,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21075,Fulton,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.600692042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.399307958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21077,Gallatin,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.630775154,0.369224846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21079,Garrard,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21081,Grant,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21083,Graves,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21085,Grayson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21087,Green,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21089,Greenup,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.196687875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.803312125,0,0,0,0,0,0,0,0,0,0
-21091,Hancock,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21093,Hardin,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21095,Harlan,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97024945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.010308144,0.019442406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21097,Harrison,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21099,Hart,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21101,Henderson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21103,Henry,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21105,Hickman,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21107,Hopkins,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21109,Jackson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21111,Jefferson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21113,Jessamine,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21115,Johnson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985489722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014510278,0,0,0,0,0,0,0,0,0,0
-21117,Kenton,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21119,Knott,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21121,Knox,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.979984271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020015729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21123,Larue,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21125,Laurel,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21127,Lawrence,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
-21129,Lee,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21131,Leslie,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21133,Letcher,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.786961678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.213038322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21135,Lewis,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.167706648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.832293352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21137,Lincoln,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21139,Livingston,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21141,Logan,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21143,Lyon,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21145,McCracken,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21147,McCreary,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21149,McLean,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.838648363,0.161351637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21151,Madison,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21153,Magoffin,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21155,Marion,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065738592,0.934261408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21157,Marshall,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21159,Martin,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.911222636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.088777364,0,0,0,0,0,0,0,0,0,0,0
-21161,Mason,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21163,Meade,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21165,Menifee,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21167,Mercer,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21169,Metcalfe,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21171,Monroe,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21173,Montgomery,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21175,Morgan,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21177,Muhlenberg,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082052788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.917947212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21179,Nelson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21181,Nicholas,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21183,Ohio,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21185,Oldham,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21187,Owen,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131171246,0.868828754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21189,Owsley,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21191,Pendleton,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21193,Perry,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21195,Pike,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.968634971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031365029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21197,Powell,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21199,Pulaski,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21201,Robertson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21203,Rockcastle,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21205,Rowan,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21207,Russell,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21209,Scott,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21211,Shelby,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21213,Simpson,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21215,Spencer,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21217,Taylor,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21219,Todd,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21221,Trigg,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21223,Trimble,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21225,Union,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21227,Warren,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21229,Washington,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21231,Wayne,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21233,Webster,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.713404008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.286595992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21235,Whitley,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21237,Wolfe,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-21239,Woodford,KY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22001,Acadia,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22003,Allen,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.578242645,0,0,0,0.421757355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22005,Ascension,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22007,Assumption,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11845473,0.88154527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22009,Avoyelles,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22011,Beauregard,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22013,Bienville,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22015,Bossier,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22017,Caddo,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22019,Calcasieu,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22021,Caldwell,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22023,Cameron,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22025,Catahoula,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22027,Claiborne,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22029,Concordia,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.593198605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.406801395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22031,De Soto,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22033,East Baton Rouge,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22035,East Carroll,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.984165135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015834865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22037,East Feliciana,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22039,Evangeline,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.088930329,0,0,0.911069671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22041,Franklin,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22043,Grant,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22045,Iberia,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22047,Iberville,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22049,Jackson,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22051,Jefferson,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001739031,0,0,0.4836136,0,0.51464737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22053,Jefferson Davis,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.766925676,0.233074324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22055,Lafayette,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22057,Lafourche,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22059,LaSalle,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22061,Lincoln,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22063,Livingston,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22065,Madison,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22067,Morehouse,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22069,Natchitoches,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021789729,0,0,0,0,0,0,0,0.978210271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22071,Orleans,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22073,Ouachita,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22075,Plaquemines,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22077,Pointe Coupee,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22079,Rapides,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998947827,0,0,0,0,0,0,0,0.001052173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22081,Red River,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22083,Richland,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22085,Sabine,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22087,St. Bernard,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22089,St. Charles,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44956433,0,0.55043567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22091,St. Helena,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22093,St. James,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058435734,0.424432685,0,0,0.517131581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22095,St. John the Baptist,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.954120855,0,0.045879145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22097,St. Landry,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01009684,0,0,0.98990316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22099,St. Martin,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22101,St. Mary,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43094493,0.56905507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22103,St. Tammany,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.558007741,0,0,0,0.441992259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22105,Tangipahoa,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22107,Tensas,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.573296185,0,0,0,0,0,0.426703815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22109,Terrebonne,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22111,Union,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73727993,0,0.26272007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22113,Vermilion,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22115,Vernon,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.722432917,0,0,0,0.277567083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22117,Washington,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22119,Webster,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22121,West Baton Rouge,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22123,West Carroll,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22125,West Feliciana,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-22127,Winn,LA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23001,Androscoggin,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23003,Aroostook,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23005,Cumberland,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23007,Franklin,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23009,Hancock,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23011,Kennebec,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23013,Knox,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000652889,0.999347111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23015,Lincoln,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23017,Oxford,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23019,Penobscot,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23021,Piscataquis,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23023,Sagadahoc,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23025,Somerset,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.832230278,0.167769722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23027,Waldo,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.612929375,0.387070625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23029,Washington,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-23031,York,ME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24001,Allegany,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24003,Anne Arundel,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.386380722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.581178838,0,0.032440441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24005,Baltimore,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24009,Calvert,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24011,Caroline,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24013,Carroll,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033433525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.966566475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24015,Cecil,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.698079343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.301920657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24017,Charles,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24019,Dorchester,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24021,Frederick,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.973951364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026048636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24023,Garrett,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.160324783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.839675217,0,0,0,0,0,0,0,0,0
-24025,Harford,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24027,Howard,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.785927634,0,0.214072366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24029,Kent,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24031,Montgomery,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.578125804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.421874196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24033,Prince George's,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.445304239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.554695761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24035,Queen Anne's,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.279959239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.720040761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24037,St. Mary's,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24039,Somerset,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24041,Talbot,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24043,Washington,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.993073153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006926847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24045,Wicomico,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24047,Worcester,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-24510,Baltimore,MD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25001,Barnstable,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25003,Berkshire,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.386332935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613667065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25005,Bristol,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.741725338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.258274662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25007,Dukes,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25009,Essex,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25011,Franklin,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.865254057,0.134745943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25013,Hampden,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.979381685,0.01752994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003088375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25015,Hampshire,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998418929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001581071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25017,Middlesex,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.959221397,0,0.040778603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25019,Nantucket,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25021,Norfolk,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.963338984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036661016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25023,Plymouth,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25025,Suffolk,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-25027,Worcester,MA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055728409,0.013703647,0.915372494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015195449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26001,Alcona,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26003,Alger,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26005,Allegan,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.544807083,0.455192917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26007,Alpena,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26009,Antrim,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.167247694,0,0,0,0,0.832752306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26011,Arenac,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26013,Baraga,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26015,Barry,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.764949136,0.235050864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26017,Bay,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26019,Benzie,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26021,Berrien,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045724833,0,0,0,0,0.292446534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.661828633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26023,Branch,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26025,Calhoun,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26027,Cass,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.505117169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.494882831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26029,Charlevoix,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26031,Cheboygan,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26033,Chippewa,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017688248,0,0.982311752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26035,Clare,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26037,Clinton,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26039,Crawford,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26041,Delta,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26043,Dickinson,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
-26045,Eaton,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052210509,0.947789491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26047,Emmet,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26049,Genesee,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26051,Gladwin,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26053,Gogebic,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.917978833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082021167,0
-26055,Grand Traverse,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26057,Gratiot,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26059,Hillsdale,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.174518794,0,0,0,0,0.825481206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26061,Houghton,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26063,Huron,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26065,Ingham,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018897314,0,0,0,0,0,0.981102686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26067,Ionia,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.817558131,0,0.182441869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26069,Iosco,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26071,Iron,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26073,Isabella,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0501358,0,0.9498642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26075,Jackson,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26077,Kalamazoo,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26079,Kalkaska,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26081,Kent,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26083,Keweenaw,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26085,Lake,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.769142857,0,0,0,0,0,0,0,0,0,0.230857143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26087,Lapeer,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985787891,0,0,0,0,0,0,0,0,0.014212109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26089,Leelanau,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26091,Lenawee,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.921019926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.078980074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26093,Livingston,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.975113687,0,0,0.024886313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26095,Luce,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26097,Mackinac,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075604131,0,0.924395869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26099,Macomb,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.894345034,0,0,0,0,0,0,0,0,0.105654966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26101,Manistee,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26103,Marquette,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26105,Mason,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046630301,0,0,0,0.882315678,0,0,0,0,0,0.071054021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26107,Mecosta,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.866615835,0,0.133384165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26109,Menominee,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147406289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.852593711,0,0,0,0,0,0,0
-26111,Midland,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109229185,0,0,0,0,0,0.890770815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26113,Missaukee,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26115,Monroe,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024976385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.975023615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26117,Montcalm,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.776154734,0,0.223845266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26119,Montmorency,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.681953372,0,0,0.318046628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26121,Muskegon,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014758671,0,0,0,0.985241329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26123,Newaygo,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26125,Oakland,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07826526,0,0,0.017078754,0,0,0,0,0,0,0.40327954,0.501376446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26127,Oceana,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.217852523,0,0,0,0.782147477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26129,Ogemaw,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26131,Ontonagon,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.713380047,0,0,0,0,0,0,0,0.134300968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.152318986,0
-26133,Osceola,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26135,Oscoda,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26137,Otsego,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26139,Ottawa,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.812081301,0,0,0,0.187918699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26141,Presque Isle,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.746606013,0,0,0.253393987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26143,Roscommon,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147120082,0,0.852879918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26145,Saginaw,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007194994,0,0,0,0,0,0.992805006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26147,St. Clair,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26149,St. Joseph,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26151,Sanilac,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.460165201,0.122350604,0,0,0,0,0,0,0,0,0.417484194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26153,Schoolcraft,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26155,Shiawassee,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075817468,0,0,0.924182532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26157,Tuscola,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.179215645,0,0,0,0,0,0,0,0,0.820784355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26159,Van Buren,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5954834,0,0,0,0,0,0,0,0.4045166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26161,Washtenaw,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26163,Wayne,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.283228358,0.282915767,0.433855875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-26165,Wexford,MI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.829819703,0,0,0,0,0,0,0,0,0,0.170180297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27001,Aitkin,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034992175,0.965007825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27003,Anoka,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27005,Becker,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27007,Beltrami,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27009,Benton,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27011,Big Stone,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.314405488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.685594512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27013,Blue Earth,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27015,Brown,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27017,Carlton,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27019,Carver,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27021,Cass,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.591803457,0,0.10834511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.299851433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27023,Chippewa,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27025,Chisago,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.203677084,0,0,0.796322916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27027,Clay,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27029,Clearwater,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27031,Cook,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27033,Cottonwood,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27035,Crow Wing,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27037,Dakota,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.564490704,0.00281937,0,0.432689926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27039,Dodge,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27041,Douglas,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.979225096,0,0.020774904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27043,Faribault,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.652400549,0.347599451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27045,Fillmore,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.664405033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.335594967,0,0,0,0,0,0
-27047,Freeborn,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27049,Goodhue,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102496559,0.897503441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27051,Grant,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.320018871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.679981129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27053,Hennepin,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27055,Houston,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
-27057,Hubbard,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27059,Isanti,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.804581999,0,0,0.195418001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27061,Itasca,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27063,Jackson,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27065,Kanabec,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27067,Kandiyohi,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.966345271,0,0.033654729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27069,Kittson,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27071,Koochiching,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.892352805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.092599738,0.015047457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27073,Lac qui Parle,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.472666772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.527333228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27075,Lake,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27077,Lake of the Woods,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27079,Le Sueur,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27081,Lincoln,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27083,Lyon,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077215243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.922784757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27085,McLeod,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27087,Mahnomen,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27089,Marshall,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.404893617,0.595106383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27091,Martin,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.978649827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021350173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27093,Meeker,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.743810193,0,0.256189807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27095,Mille Lacs,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27097,Morrison,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27099,Mower,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27101,Murray,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27103,Nicollet,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27105,Nobles,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27107,Norman,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27109,Olmsted,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27111,Otter Tail,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113288016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.886711984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27113,Pennington,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27115,Pine,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.276570005,0.723429995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27117,Pipestone,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27119,Polk,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.174166986,0.825833014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27121,Pope,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052993806,0,0.947006194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27123,Ramsey,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.091501587,0,0,0.908498413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27125,Red Lake,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.460093897,0.539906103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27127,Redwood,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.881075491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.118924509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27129,Renville,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27131,Rice,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27133,Rock,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27135,Roseau,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01606883,0.98393117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27137,St. Louis,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.875890132,0.124109868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27139,Scott,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27141,Sherburne,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69576314,0,0.30423686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27143,Sibley,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27145,Stearns,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017967087,0,0.982032913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27147,Steele,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27149,Stevens,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27151,Swift,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.415768912,0,0.584231088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27153,Todd,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.226131722,0,0.773868278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27155,Traverse,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.671252927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.328747073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27157,Wabasha,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27159,Wadena,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71521376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28478624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27161,Waseca,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.886294309,0.113705691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27163,Washington,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27165,Watonwan,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.894879192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105120808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27167,Wilkin,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27169,Winona,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176489443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.823510557,0,0,0,0,0,0
-27171,Wright,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.959077664,0,0.040922336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-27173,Yellow Medicine,MN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.697987851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.302012149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28001,Adams,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28003,Alcorn,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28005,Amite,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.774723718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.225276282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28007,Attala,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28009,Benton,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.259227677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.740772323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28011,Bolivar,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28013,Calhoun,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28015,Carroll,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28017,Chickasaw,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.452508004,0.547491996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28019,Choctaw,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28021,Claiborne,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28023,Clarke,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28025,Clay,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28027,Coahoma,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28029,Copiah,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28031,Covington,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28033,DeSoto,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28035,Forrest,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28037,Franklin,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28041,Greene,MS,0,0,0,0.793746848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.206253152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28043,Grenada,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28045,Hancock,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28047,Harrison,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28049,Hinds,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28051,Holmes,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28053,Humphreys,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28055,Issaquena,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28057,Itawamba,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28059,Jackson,MS,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28061,Jasper,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.815975623,0,0.184024377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28063,Jefferson,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28065,Jefferson Davis,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.255880209,0.744119791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28067,Jones,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28069,Kemper,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28071,Lafayette,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28073,Lamar,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28075,Lauderdale,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28077,Lawrence,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28079,Leake,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28081,Lee,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28083,Leflore,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28085,Lincoln,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28087,Lowndes,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28089,Madison,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28091,Marion,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28093,Marshall,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041145847,0.084194392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.874659761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28095,Monroe,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28097,Montgomery,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.776601196,0,0.223398804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28099,Neshoba,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28101,Newton,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28103,Noxubee,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28105,Oktibbeha,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28107,Panola,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.801826588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.198173412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28109,Pearl River,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78948777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21051223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28111,Perry,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28113,Pike,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28115,Pontotoc,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28117,Prentiss,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28119,Quitman,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28121,Rankin,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28123,Scott,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28125,Sharkey,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28127,Simpson,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28129,Smith,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.475400417,0.524599583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28131,Stone,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28133,Sunflower,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28135,Tallahatchie,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035501193,0,0.499552506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.464946301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28137,Tate,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28139,Tippah,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054538866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.945461134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28141,Tishomingo,MS,0.772243268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.227756732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28143,Tunica,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28145,Union,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.894522501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105477499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28147,Walthall,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28149,Warren,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28151,Washington,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28153,Wayne,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28155,Webster,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058521653,0,0.131178536,0.810299811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28157,Wilkinson,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28159,Winston,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28161,Yalobusha,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-28163,Yazoo,MS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29001,Adair,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29003,Andrew,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29005,Atchison,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29007,Audrain,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29009,Barry,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077530035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019522501,0,0.902947465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29011,Barton,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88034262,0,0.11965738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29013,Bates,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063076427,0.936923573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29015,Benton,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.190900363,0,0.809099637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29017,Bollinger,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.999565369,0,0,0,0,0.000434631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29019,Boone,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29021,Buchanan,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29023,Butler,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29025,Caldwell,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29027,Callaway,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29029,Camden,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.970971147,0,0,0.029028853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29031,Cape Girardeau,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29033,Carroll,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024637044,0,0.975362956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29035,Carter,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29037,Cass,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29039,Cedar,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049720142,0,0.950279858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29041,Chariton,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29043,Christian,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29045,Clark,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29047,Clay,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29049,Clinton,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29051,Cole,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29053,Cooper,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29055,Crawford,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29057,Dade,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29059,Dallas,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29061,Daviess,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29063,DeKalb,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29065,Dent,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29067,Douglas,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29069,Dunklin,MO,0,0,0,0,0,0,0,0,0,0,0,0,0.629664697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.370335303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29071,Franklin,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29073,Gasconade,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.512959502,0,0,0,0.487040498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29075,Gentry,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29077,Greene,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29079,Grundy,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29081,Harrison,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29083,Henry,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29085,Hickory,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124867163,0.875132837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29087,Holt,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.854648526,0,0,0,0,0,0,0.145351474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29089,Howard,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29091,Howell,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29093,Iron,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29095,Jackson,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29097,Jasper,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29099,Jefferson,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29101,Johnson,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29103,Knox,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29105,Laclede,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29107,Lafayette,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29109,Lawrence,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024984732,0,0.975015268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29111,Lewis,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.973170497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026829503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29113,Lincoln,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29115,Linn,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.925747705,0,0.074252295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29117,Livingston,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29119,McDonald,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.278477058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.721522942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29121,Macon,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29123,Madison,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.118610193,0,0,0,0,0.881389807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29125,Maries,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89725927,0,0,0,0.10274073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29127,Marion,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075797212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.924202788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29129,Mercer,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.283199045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.716800955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29131,Miller,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29133,Mississippi,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29135,Moniteau,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29137,Monroe,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29139,Montgomery,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.815430815,0,0,0,0.184569185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29141,Morgan,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29143,New Madrid,MO,0,0,0,0,0,0,0,0,0,0,0,0,0.103517915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.797850163,0,0,0,0,0.098631922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29145,Newton,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29147,Nodaway,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.987198424,0,0,0,0,0,0,0.012801576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29149,Oregon,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29151,Osage,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29153,Ozark,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29155,Pemiscot,MO,0,0,0,0,0,0,0,0,0,0,0,0,0.050269191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68501603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264714778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29157,Perry,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29159,Pettis,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29161,Phelps,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000988865,0.999011135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29163,Pike,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.060668548,0,0,0,0.939331452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29165,Platte,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29167,Polk,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29169,Pulaski,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141621401,0.858378599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29171,Putnam,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.100556174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.899443826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29173,Ralls,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29175,Randolph,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29177,Ray,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29179,Reynolds,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29181,Ripley,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29183,St. Charles,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29185,St. Clair,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29186,Ste. Genevieve,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29187,St. Francois,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29189,St. Louis,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29195,Saline,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29197,Schuyler,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023040321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.976959679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29199,Scotland,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.828641874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.171358126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29201,Scott,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29203,Shannon,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29205,Shelby,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186766275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.813233725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29207,Stoddard,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.777736786,0,0,0,0,0.222263214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29209,Stone,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29211,Sullivan,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.980033531,0,0.019966469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29213,Taney,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29215,Texas,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29217,Vernon,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92228583,0,0.07771417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29219,Warren,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29221,Washington,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29223,Wayne,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29225,Webster,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29227,Worth,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29229,Wright,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-29510,St. Louis,MO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30001,Beaverhead,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30003,Big Horn,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30005,Blaine,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011984436,0.988015564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30007,Broadwater,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30009,Carbon,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30011,Carter,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.727692308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.272307692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30013,Cascade,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30015,Chouteau,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30017,Custer,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30019,Daniels,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30021,Dawson,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30023,Deer Lodge,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30025,Fallon,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30027,Fergus,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.993486214,0.006513786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30029,Flathead,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30031,Gallatin,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30033,Garfield,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30035,Glacier,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30037,Golden Valley,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30039,Granite,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30041,Hill,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30043,Jefferson,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30045,Judith Basin,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.438224912,0.561775088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30047,Lake,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30049,Lewis and Clark,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.965955051,0.034044949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30051,Liberty,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30053,Lincoln,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30055,McCone,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30057,Madison,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.281966332,0,0.718033668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30059,Meagher,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30061,Mineral,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30063,Missoula,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30065,Musselshell,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30067,Park,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30069,Petroleum,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30071,Phillips,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051863493,0.948136507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30073,Pondera,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30075,Powder River,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30077,Powell,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086431879,0,0.913568121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30079,Prairie,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30081,Ravalli,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30083,Richland,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30085,Roosevelt,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.915036571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084963429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30087,Rosebud,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30089,Sanders,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.881896552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.118103448,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30091,Sheridan,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30093,Silver Bow,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30095,Stillwater,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30097,Sweet Grass,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30099,Teton,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30101,Toole,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30103,Treasure,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30105,Valley,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30107,Wheatland,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30109,Wibaux,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-30111,Yellowstone,MT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31001,Adams,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31003,Antelope,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31005,Arthur,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31007,Banner,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31009,Blaine,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.871485944,0.128514056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31011,Boone,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31013,Box Butte,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31015,Boyd,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.861084681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138915319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31017,Brown,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31019,Buffalo,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31021,Burt,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31023,Butler,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31025,Cass,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.282313716,0.717686284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31027,Cedar,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.202991973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28691316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.510094867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31029,Chase,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31031,Cherry,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.939444138,0.017301675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043254187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31033,Cheyenne,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31035,Clay,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31037,Colfax,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31039,Cuming,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.100031723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.899968277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31041,Custer,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.854628781,0.145371219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31043,Dakota,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31045,Dawes,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01510574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98489426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31047,Dawson,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.982263229,0.017736771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31049,Deuel,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31051,Dixon,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31053,Dodge,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31055,Douglas,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31057,Dundy,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.829168791,0,0,0.170831209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31059,Fillmore,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31061,Franklin,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67177814,0.32822186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31063,Frontier,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65474339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34525661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31065,Furnas,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31067,Gage,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31069,Garden,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31071,Garfield,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31073,Gosper,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31075,Grant,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.291832669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.708167331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31077,Greeley,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31079,Hall,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31081,Hamilton,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.859016393,0.140983607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31083,Harlan,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31085,Hayes,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31087,Hitchcock,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31089,Holt,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31091,Hooker,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31093,Howard,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31095,Jefferson,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31097,Johnson,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31099,Kearney,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.050813683,0.949186317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31101,Keith,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31103,Keya Paha,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.810419682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.189580318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31105,Kimball,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31107,Knox,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.623072657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.376927343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31109,Lancaster,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31111,Lincoln,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016747704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.983252296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31113,Logan,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31115,Loup,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31117,McPherson,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31119,Madison,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31121,Merrick,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31123,Morrill,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31125,Nance,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31127,Nemaha,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31129,Nuckolls,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31131,Otoe,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.364291328,0.635708672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31133,Pawnee,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31135,Perkins,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31137,Phelps,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31139,Pierce,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31141,Platte,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31143,Polk,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111476083,0.888523917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31145,Red Willow,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.853145557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146854443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31147,Richardson,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.221712728,0.778287272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31149,Rock,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31151,Saline,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31153,Sarpy,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31155,Saunders,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.436441908,0.563558092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31157,Scotts Bluff,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31159,Seward,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31161,Sheridan,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077771649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.922228351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31163,Sherman,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31165,Sioux,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31167,Stanton,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31169,Thayer,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.094028436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.905971564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31171,Thomas,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31173,Thurston,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31175,Valley,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138201988,0.861798012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31177,Washington,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31179,Wayne,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77770293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22229707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31181,Webster,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31183,Wheeler,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-31185,York,NE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32001,Churchill,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32003,Clark,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32005,Douglas,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.117347565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.882652435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32007,Elko,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058694616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.941305384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32009,Esmeralda,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32011,Eureka,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.731034483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.268965517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32013,Humboldt,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32015,Lander,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32017,Lincoln,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.298221879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.701778121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32019,Lyon,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32021,Mineral,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32023,Nye,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.883892556,0.109254675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006852769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32027,Pershing,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32029,Storey,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32031,Washoe,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32033,White Pine,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-32510,Carson City,NV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33001,Belknap,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33003,Carroll,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.395169265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.604830735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33005,Cheshire,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.851946502,0.148053498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33007,Coos,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33009,Grafton,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.695740095,0.304259905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33011,Hillsborough,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033071199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.966928801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33013,Merrimack,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.093839148,0.906160852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33015,Rockingham,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016276044,0,0,0,0.179882076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.80384188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33017,Strafford,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-33019,Sullivan,NH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.972352857,0.027647143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34001,Atlantic,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34003,Bergen,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75507393,0,0,0.016907545,0.02162583,0.206392695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34005,Burlington,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.959043023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.040956977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34007,Camden,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34009,Cape May,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34011,Cumberland,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34013,Essex,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025397577,0,0.974602423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34015,Gloucester,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.454889592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.545110408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34017,Hudson,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.420702899,0,0,0.579297101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34019,Hunterdon,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116953109,0,0,0,0,0,0,0.883046891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34021,Mercer,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300329305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.699670695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34023,Middlesex,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047321389,0.900766766,0.051911845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34025,Monmouth,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.99026406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00973594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34027,Morris,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.901581418,0,0,0.098418582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34029,Ocean,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34031,Passaic,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.306988187,0,0,0,0.655646354,0.037365459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34033,Salem,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.720847345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.279152655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34035,Somerset,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.236212823,0.763787177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34037,Sussex,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.983975295,0,0,0,0.016024705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34039,Union,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.372158226,0,0.627841774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-34041,Warren,NJ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.437894073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.562105927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35001,Bernalillo,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35003,Catron,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35005,Chaves,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35006,Cibola,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35007,Colfax,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35009,Curry,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35011,De Baca,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.972330097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027669903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35013,Doña Ana,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35015,Eddy,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.326298955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.673701045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35017,Grant,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35019,Guadalupe,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35021,Harding,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.658476658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.341523342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35023,Hidalgo,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35025,Lea,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000385021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.999614979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35027,Lincoln,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35028,Los Alamos,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35029,Luna,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35031,McKinley,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35033,Mora,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35035,Otero,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051679053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.948320947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35037,Quay,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011356844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.903167962,0,0,0,0,0,0,0,0,0,0,0.085475194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35039,Rio Arriba,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35041,Roosevelt,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35043,Sandoval,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35045,San Juan,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35047,San Miguel,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35049,Santa Fe,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35051,Sierra,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35053,Socorro,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35055,Taos,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35057,Torrance,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35059,Union,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.975047529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024952471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-35061,Valencia,NM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36001,Albany,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36003,Allegany,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264927234,0,0,0,0.735072766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36005,Bronx,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.935304259,0,0,0,0.064695741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36007,Broome,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36009,Cattaraugus,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.899224491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.100775509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36011,Cayuga,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026524847,0.973475153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36013,Chautauqua,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.333931329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.666068671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36015,Chemung,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.971348341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028651659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36017,Chenango,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104976873,0.752744526,0,0,0,0,0,0,0.142278602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36019,Clinton,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36021,Columbia,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008876447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082363183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.90876037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36023,Cortland,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36025,Delaware,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.410283492,0.589716508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36027,Dutchess,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.072917088,0.049484752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87759816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36029,Erie,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36031,Essex,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074048987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.925951013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36033,Franklin,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36035,Fulton,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.986966563,0,0,0,0.013033437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36037,Genesee,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93915458,0,0,0,0.06084542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36039,Greene,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36041,Hamilton,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.714748307,0,0,0,0.096850162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.188401531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36043,Herkimer,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096487796,0,0,0,0.903512204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36045,Jefferson,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36047,Kings,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36049,Lewis,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026627451,0,0,0,0.973372549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36051,Livingston,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005711022,0,0,0,0.994288978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36053,Madison,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36055,Monroe,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36057,Montgomery,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.908585311,0,0,0,0.091414689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36059,Nassau,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.964139234,0.035860766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36061,New York,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36063,Niagara,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36065,Oneida,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.668613126,0,0,0,0.331386874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36067,Onondaga,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36069,Ontario,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36071,Orange,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05323778,0,0,0,0.323406849,0,0,0,0,0,0,0,0,0,0,0.62335537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36073,Orleans,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.722473417,0,0,0,0.277526583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36075,Oswego,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36077,Otsego,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.305451049,0.694548951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36079,Putnam,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79590159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.20409841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36081,Queens,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.873302851,0.126697149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36083,Rensselaer,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36085,Richmond,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36087,Rockland,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.553576614,0,0,0,0,0.446423386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36089,St. Lawrence,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.405232158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.594767842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36091,Saratoga,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36093,Schenectady,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36095,Schoharie,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.937481882,0.062518118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36097,Schuyler,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.759430974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.240569026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36099,Seneca,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36101,Steuben,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.565720217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.434279783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36103,Suffolk,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000123502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.999876498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36105,Sullivan,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058517965,0,0,0,0,0,0.708105414,0.033122139,0,0,0,0,0,0,0,0.156900555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043353928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36107,Tioga,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.540889498,0,0,0,0,0,0.020364178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.438746324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36109,Tompkins,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93248179,0.06751821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36111,Ulster,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.819661309,0,0,0,0,0,0,0,0,0.180338691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36113,Warren,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.986715372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013284628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36115,Washington,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.990448842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009551158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36117,Wayne,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36119,Westchester,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004986534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108325083,0,0,0,0,0,0,0.886688383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36121,Wyoming,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.435195255,0,0,0,0.564804745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-36123,Yates,NY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37001,Alamance,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37003,Alexander,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.688658465,0,0,0.311341535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37005,Alleghany,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37007,Anson,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37009,Ashe,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.913269414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086730586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37011,Avery,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81748161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18251839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37013,Beaufort,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37015,Bertie,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37017,Bladen,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37019,Brunswick,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.879994784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.120005216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37021,Buncombe,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37023,Burke,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.703206497,0,0,0,0.296793503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37025,Cabarrus,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37027,Caldwell,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014538812,0,0,0,0,0.985461188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37029,Camden,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37031,Carteret,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37033,Caswell,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37035,Catawba,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37037,Chatham,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.532084189,0.433324119,0,0,0.034591692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37039,Cherokee,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.711441144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.288558856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37041,Chowan,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37043,Clay,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37045,Cleveland,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37047,Columbus,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.813808131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186191869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37049,Craven,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37051,Cumberland,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37053,Currituck,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37055,Dare,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37057,Davidson,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06532924,0,0,0,0,0.93467076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37059,Davie,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37061,Duplin,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.712914529,0,0.08779621,0.199289261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37063,Durham,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.996916777,0,0,0,0.003083223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37065,Edgecombe,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.570496392,0,0.429503608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37067,Forsyth,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37069,Franklin,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37071,Gaston,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37073,Gates,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.260285617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.739714383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37075,Graham,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37077,Granville,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37079,Greene,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37081,Guilford,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.774147225,0,0,0,0,0.225852775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37083,Halifax,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01916991,0,0.98083009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37085,Harnett,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042541148,0,0,0,0.957458852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37087,Haywood,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37089,Henderson,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37091,Hertford,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37093,Hoke,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37095,Hyde,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.886519115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113480885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37097,Iredell,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.451653575,0,0,0,0,0,0,0.548346425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37099,Jackson,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37101,Johnston,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37103,Jones,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37105,Lee,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37107,Lenoir,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37109,Lincoln,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37111,McDowell,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37113,Macon,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00769874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.99230126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37115,Madison,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37117,Martin,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37119,Mecklenburg,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37121,Mitchell,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37123,Montgomery,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.408078856,0.591921144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37125,Moore,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37127,Nash,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37129,New Hanover,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37131,Northampton,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.213073005,0,0.786926995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37133,Onslow,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.949553611,0,0,0.050446389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37135,Orange,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37137,Pamlico,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37139,Pasquotank,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37141,Pender,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37143,Perquimans,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37145,Person,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37147,Pitt,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37149,Polk,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146852475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.853147525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37151,Randolph,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.707329643,0,0,0,0,0.292670357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37153,Richmond,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.839615568,0.160384432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37155,Robeson,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.931257657,0,0,0,0.068742343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37157,Rockingham,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37159,Rowan,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.950337157,0,0,0,0,0,0,0.049662843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37161,Rutherford,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37163,Sampson,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37165,Scotland,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37167,Stanly,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37169,Stokes,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37171,Surry,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37173,Swain,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37175,Transylvania,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37177,Tyrrell,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37179,Union,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37181,Vance,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37183,Wake,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37185,Warren,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37187,Washington,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37189,Watauga,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.060040284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.939959716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37191,Wayne,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37193,Wilkes,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37195,Wilson,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036483349,0,0.963516651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37197,Yadkin,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-37199,Yancey,NC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38001,Adams,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38003,Barnes,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38005,Benson,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.718124813,0,0.281875187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38007,Billings,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38009,Bottineau,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38011,Bowman,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38013,Burke,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38015,Burleigh,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38017,Cass,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38019,Cavalier,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38021,Dickey,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103846154,0.564102564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.332051282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38023,Divide,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38025,Dunn,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38027,Eddy,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38029,Emmons,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38031,Foster,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38033,Golden Valley,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38035,Grand Forks,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015745174,0.984254826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38037,Grant,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38039,Griggs,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38041,Hettinger,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38043,Kidder,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38045,LaMoure,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38047,Logan,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.715590743,0.284409257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38049,McHenry,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38051,McIntosh,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38053,McKenzie,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013111053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.922983416,0,0,0.063905531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38055,McLean,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.578165939,0,0,0.421834061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38057,Mercer,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38059,Morton,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38061,Mountrail,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38063,Nelson,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38065,Oliver,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38067,Pembina,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38069,Pierce,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38071,Ramsey,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.953498257,0.046501743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38073,Ransom,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38075,Renville,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38077,Richland,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38079,Rolette,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74656853,0.25343147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38081,Sargent,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38083,Sheridan,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38085,Sioux,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38087,Slope,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38089,Stark,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38091,Steele,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38093,Stutsman,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022370838,0.977629162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38095,Towner,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38097,Traill,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.861603253,0.138396747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38099,Walsh,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38101,Ward,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38103,Wells,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.656338028,0.343661972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-38105,Williams,ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39001,Adams,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.941795148,0,0.058204852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39003,Allen,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39005,Ashland,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077972158,0.922027842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39007,Ashtabula,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.673264524,0,0,0,0,0,0.140597042,0,0,0,0,0,0,0,0,0,0,0,0.186138434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39009,Athens,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.922466676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077533324,0,0,0,0,0,0,0,0,0,0,0
-39011,Auglaize,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005687598,0.994312402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39013,Belmont,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.150695271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.849304729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39015,Brown,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042951583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.957048417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39017,Butler,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.717969918,0,0,0,0,0.282030082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39019,Carroll,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.991742055,0,0,0,0,0,0,0,0.008257945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39021,Champaign,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39023,Clark,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39025,Clermont,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39027,Clinton,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39029,Columbiana,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.038460828,0,0,0,0,0,0,0,0.667975172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.293564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39031,Coshocton,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39033,Crawford,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.997680184,0,0,0,0.002319816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39035,Cuyahoga,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39037,Darke,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063333077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.936666923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39039,Defiance,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39041,Delaware,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39043,Erie,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.800711059,0,0,0.199288941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39045,Fairfield,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39047,Fayette,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39049,Franklin,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39051,Fulton,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39053,Gallia,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39055,Geauga,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00103543,0,0,0.99896457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39057,Greene,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.517330054,0,0.482669946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39059,Guernsey,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39061,Hamilton,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39063,Hancock,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39065,Hardin,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.659933985,0.340066015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39067,Harrison,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055964267,0,0,0.149829217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.794206516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39069,Henry,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14059212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85940788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39071,Highland,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.796477495,0,0.203522505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39073,Hocking,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39075,Holmes,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.894297139,0,0,0.105702861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39077,Huron,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.741714774,0.258285226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39079,Jackson,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39081,Jefferson,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39083,Knox,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39085,Lake,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39087,Lawrence,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
-39089,Licking,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39091,Logan,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.979919041,0.020080959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39093,Lorain,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185574126,0,0,0.814425874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39095,Lucas,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39097,Madison,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39099,Mahoning,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005507625,0.037834423,0,0,0,0,0,0,0,0.956657952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39101,Marion,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39103,Medina,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.184072113,0.045974008,0,0.769953878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39105,Meigs,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.839729742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.160270258,0,0,0,0,0,0,0,0,0,0,0
-39107,Mercer,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.070560805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.929439195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39109,Miami,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39111,Monroe,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.715970696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.284029304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39113,Montgomery,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64569965,0,0.35430035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39115,Morgan,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39117,Morrow,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39119,Muskingum,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39121,Noble,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39123,Ottawa,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00988266,0,0,0,0,0.99011734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39125,Paulding,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39127,Perry,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39129,Pickaway,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39131,Pike,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019350085,0,0.980649915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39133,Portage,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.833241527,0,0,0.113549995,0,0,0,0,0,0.053208477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39135,Preble,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11147337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17257342,0,0,0.715953211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39137,Putnam,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39139,Richland,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39141,Ross,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39143,Sandusky,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.368854092,0,0,0,0,0.631145908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39145,Scioto,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39147,Seneca,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001210513,0.035154631,0,0,0,0.963634856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39149,Shelby,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39151,Stark,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39153,Summit,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.903224862,0,0,0.096775138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39155,Trumbull,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019809689,0,0,0,0,0,0.980190311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39157,Tuscarawas,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.920201965,0,0,0.079798035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39159,Union,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39161,Van Wert,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.970579595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029420405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39163,Vinton,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39165,Warren,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.674970951,0,0,0,0,0.325029049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39167,Washington,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.804007052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.195992948,0,0,0,0,0,0,0,0,0,0,0
-39169,Wayne,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.155404747,0.844595253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39171,Williams,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39173,Wood,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-39175,Wyandot,OH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.727941491,0,0,0,0.272058509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40001,Adair,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.339202237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.660797763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40003,Alfalfa,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013208494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.986791506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40005,Atoka,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.909629513,0.023540564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066829923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40007,Beaver,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.273823415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.645274212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.080902373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40009,Beckham,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40011,Blaine,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40013,Bryan,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40015,Caddo,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.531146879,0.468853121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40017,Canadian,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40019,Carter,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081676,0.99918324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40021,Cherokee,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40023,Choctaw,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40025,Cimarron,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40027,Cleveland,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40029,Coal,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.137016987,0.862983013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40031,Comanche,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40033,Cotton,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.823548813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176451187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40035,Craig,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.190567623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.809432377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40037,Creek,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40039,Custer,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40041,Delaware,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.190760535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.754563895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05467557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40043,Dewey,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40045,Ellis,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40047,Garfield,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40049,Garvin,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40051,Grady,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40053,Grant,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021035965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.978964035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40055,Greer,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40057,Harmon,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40059,Harper,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40061,Haskell,OK,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40063,Hughes,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.864843582,0.135156418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40065,Jackson,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40067,Jefferson,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.578487448,0.335716555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085795996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40069,Johnston,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.943756934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056243066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40071,Kay,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40073,Kingfisher,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40075,Kiowa,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33891393,0.66108607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40077,Latimer,OK,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40079,Le Flore,OK,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40081,Lincoln,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.887976449,0.112023551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40083,Logan,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.960941283,0.039058717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40085,Love,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40087,McClain,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40089,McCurtain,OK,0,0,0,0,0,0,0,0,0,0,0,0.049461602,0,0,0,0.784345048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16619335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40091,McIntosh,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40093,Major,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40095,Marshall,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40097,Mayes,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40099,Murray,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40101,Muskogee,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40103,Noble,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.768541609,0.231458391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40105,Nowata,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40107,Okfuskee,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.269657341,0.730342659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40109,Oklahoma,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40111,Okmulgee,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40113,Osage,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40115,Ottawa,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40117,Pawnee,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40119,Payne,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40121,Pittsburg,OK,0,0,0,0,0,0,0,0,0,0,0,0.046614846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.953385154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40123,Pontotoc,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40125,Pottawatomie,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40127,Pushmataha,OK,0,0,0,0,0,0,0,0,0,0,0,0.00648213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.866065172,0.127452698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40129,Roger Mills,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40131,Rogers,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40133,Seminole,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40135,Sequoyah,OK,0,0,0,0,0,0,0,0,0,0,0,0.921437155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.078562845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40137,Stephens,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985683704,0.014316296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40139,Texas,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.195580059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.804419941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40141,Tillman,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.852893236,0.147106764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40143,Tulsa,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40145,Wagoner,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40147,Washington,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40149,Washita,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40151,Woods,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-40153,Woodward,OK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41001,Baker,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41003,Benton,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41005,Clackamas,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41007,Clatsop,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41009,Columbia,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41011,Coos,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41013,Crook,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41015,Curry,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12009597,0.87990403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41017,Deschutes,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41019,Douglas,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.982597576,0.017402424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41021,Gilliam,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41023,Grant,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41025,Harney,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41027,Hood River,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41029,Jackson,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41031,Jefferson,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41033,Josephine,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41035,Klamath,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019094778,0.005384913,0.975520309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41037,Lake,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.233257518,0,0.766742482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41039,Lane,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41041,Lincoln,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026604582,0,0.973395418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41043,Linn,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.983298235,0,0,0.016701765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41045,Malheur,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41047,Marion,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019332561,0,0.204448612,0.776218827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41049,Morrow,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41051,Multnomah,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41053,Polk,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025867674,0.974132326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41055,Sherman,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41057,Tillamook,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41059,Umatilla,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.819000468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.180999532,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41061,Union,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027823744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.972176256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41063,Wallowa,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41065,Wasco,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014647932,0,0,0.985352068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41067,Washington,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41069,Wheeler,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.487071978,0,0,0.512928022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-41071,Yamhill,OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42001,Adams,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.569017053,0,0,0,0,0,0,0,0,0.430982947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42003,Allegheny,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42005,Armstrong,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42007,Beaver,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42009,Bedford,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07578868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.869998743,0,0,0,0.054212577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42011,Berks,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043089617,0,0,0,0.009304451,0,0,0,0,0.947605932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42013,Blair,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42015,Bradford,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057373147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.942626853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42017,Bucks,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.135101554,0,0,0,0,0,0,0.864898446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42019,Butler,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42021,Cambria,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12055537,0,0,0,0.87944463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42023,Cameron,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42025,Carbon,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.994637568,0,0,0,0,0,0,0,0,0,0,0,0.005362432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42027,Centre,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.062520642,0.937479358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42029,Chester,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.301076547,0.655610719,0,0.043312734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42031,Clarion,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085883807,0,0,0,0,0.914116193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42033,Clearfield,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.691448594,0,0,0,0.011666973,0,0,0.296884433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42035,Clinton,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42037,Columbia,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.988680106,0,0,0,0,0,0,0.011319894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42039,Crawford,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42041,Cumberland,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42043,Dauphin,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42045,Delaware,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42047,Elk,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.860434893,0,0,0,0,0.139565107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42049,Erie,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42051,Fayette,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.974926195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025073805,0,0,0,0,0,0,0,0,0
-42053,Forest,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.992104944,0,0,0,0,0.007895056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42055,Franklin,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42057,Fulton,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03021978,0,0,0.96978022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42059,Greene,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006446608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.993553392,0,0,0,0,0,0,0,0,0
-42061,Huntingdon,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.913844116,0.045241775,0,0.040914109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42063,Indiana,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081804508,0,0,0.918195492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42065,Jefferson,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42067,Juniata,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42069,Lackawanna,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42071,Lancaster,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42073,Lawrence,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.763966815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.236033185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42075,Lebanon,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42077,Lehigh,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42079,Luzerne,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.195633274,0,0.042026806,0,0,0,0,0,0,0,0,0.021014989,0.741324931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42081,Lycoming,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42083,McKean,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.080800289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.919199711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42085,Mercer,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.434014722,0,0,0,0,0,0,0,0,0,0,0,0.405138875,0,0,0,0,0.160846403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42087,Mifflin,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001969494,0,0,0.998030506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42089,Monroe,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.955157138,0,0,0,0,0,0,0,0,0,0,0,0.044842862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42091,Montgomery,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098520994,0,0,0,0,0,0,0.822441141,0,0.079037865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42093,Montour,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42095,Northampton,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42097,Northumberland,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42099,Perry,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42101,Philadelphia,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42103,Pike,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.482553307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.169191362,0,0,0,0,0,0,0,0,0,0,0.348255331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42105,Potter,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.156478076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.732994687,0,0,0,0,0,0,0.110527238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42107,Schuylkill,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164946801,0,0,0,0.002104251,0,0,0,0,0.832948948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42109,Snyder,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.919109057,0,0.080890943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42111,Somerset,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.984656874,0,0,0.015343126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42113,Sullivan,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.428963624,0,0,0,0,0,0,0,0.571036376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42115,Susquehanna,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.416268889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.097296763,0.486434348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42117,Tioga,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046380415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029884288,0,0,0,0,0,0,0,0.923735297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42119,Union,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42121,Venango,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42123,Warren,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42125,Washington,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.997014967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002985033,0,0,0,0,0,0,0,0,0
-42127,Wayne,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007197069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.992802931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42129,Westmoreland,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012332961,0,0,0.987667039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42131,Wyoming,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.699931868,0.179797038,0.120271094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-42133,York,PA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084452723,0,0,0,0,0,0,0,0,0.915547277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-44001,Bristol,RI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-44003,Kent,RI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-44005,Newport,RI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.232572976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.767427024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-44007,Providence,RI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-44009,Washington,RI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45001,Abbeville,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45003,Aiken,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45005,Allendale,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45007,Anderson,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45009,Bamberg,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45011,Barnwell,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.292638092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.707361908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45013,Beaufort,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45015,Berkeley,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45017,Calhoun,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45019,Charleston,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45021,Cherokee,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45023,Chester,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.155831857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.844168143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45025,Chesterfield,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.319320846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065753238,0.614925917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45027,Clarendon,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.901161659,0.098838341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45029,Colleton,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45031,Darlington,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.497990091,0.502009909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45033,Dillon,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45035,Dorchester,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45037,Edgefield,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45039,Fairfield,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45041,Florence,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45043,Georgetown,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45045,Greenville,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45047,Greenwood,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45049,Hampton,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024473092,0,0,0,0.309883364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.665643544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45051,Horry,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.881896699,0,0.118103301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45053,Jasper,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45055,Kershaw,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001553226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998446774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45057,Lancaster,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45059,Laurens,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125010302,0,0.874989698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45061,Lee,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9907569,0.0092431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45063,Lexington,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45065,McCormick,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151985172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.848014828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45067,Marion,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45069,Marlboro,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45071,Newberry,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.918153548,0,0,0.081846452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45073,Oconee,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45075,Orangeburg,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.114542762,0.885457238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45077,Pickens,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45079,Richland,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45081,Saluda,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45083,Spartanburg,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45085,Sumter,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45087,Union,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45089,Williamsburg,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-45091,York,SC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46003,Aurora,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46005,Beadle,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46007,Bennett,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46009,Bon Homme,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46011,Brookings,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46013,Brown,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46015,Brule,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46017,Buffalo,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46019,Butte,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46021,Campbell,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46023,Charles Mix,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46025,Clark,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46027,Clay,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023697808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.976302192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46029,Codington,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46031,Corson,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46033,Custer,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46035,Davison,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46037,Day,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46039,Deuel,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46041,Dewey,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.919720497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.080279503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46043,Douglas,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46045,Edmunds,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.305933727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.694066273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46047,Fall River,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46049,Faulk,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46051,Grant,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46053,Gregory,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46055,Haakon,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044251825,0.955748175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46057,Hamlin,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46059,Hand,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46061,Hanson,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46063,Harding,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222222222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.777777778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46065,Hughes,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46067,Hutchinson,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46069,Hyde,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46071,Jackson,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46073,Jerauld,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46075,Jones,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086005831,0.913994169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46077,Kingsbury,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46079,Lake,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46081,Lawrence,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46083,Lincoln,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46085,Lyman,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46087,McCook,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46089,McPherson,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.643356643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.356643357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46091,Marshall,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.91172735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08827265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46093,Meade,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46095,Mellette,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.276522593,0.723477407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46097,Miner,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46099,Minnehaha,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46101,Moody,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46103,Pennington,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46105,Perkins,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46107,Potter,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.261243645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.738756355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46109,Roberts,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09160459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.689450372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218945037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46111,Sanborn,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46113,Oglala Lakota,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46115,Spink,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46117,Stanley,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46119,Sully,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46121,Todd,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46123,Tripp,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46125,Turner,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46127,Union,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87398374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12601626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46129,Walworth,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46135,Yankton,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-46137,Ziebach,SD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47001,Anderson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47003,Bedford,TN,0,0,0.063868066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.936131934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47005,Benton,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.203040107,0,0,0,0,0.796959893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47007,Bledsoe,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47009,Blount,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47011,Bradley,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47013,Campbell,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47015,Cannon,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47017,Carroll,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47019,Carter,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47021,Cheatham,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47023,Chester,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47025,Claiborne,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47027,Clay,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47029,Cocke,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47031,Coffee,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47033,Crockett,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47035,Cumberland,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47037,Davidson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47039,Decatur,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47041,DeKalb,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47043,Dickson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47045,Dyer,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47047,Fayette,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47049,Fentress,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47051,Franklin,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47053,Gibson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.955147883,0,0,0,0.044852117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47055,Giles,TN,0,0,0.093130733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.906869267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47057,Grainger,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47059,Greene,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.139623594,0,0.860376406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47061,Grundy,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.076033663,0,0,0,0,0,0.923966337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47063,Hamblen,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47065,Hamilton,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47067,Hancock,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09921169,0.90078831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47069,Hardeman,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.423955689,0,0,0,0.576044311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47071,Hardin,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47073,Hawkins,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.454446077,0.545553923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47075,Haywood,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47077,Henderson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47079,Henry,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082825937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.917174063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47081,Hickman,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47083,Houston,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47085,Humphreys,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47087,Jackson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47089,Jefferson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47091,Johnson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95175508,0.04824492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47093,Knox,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47095,Lake,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47097,Lauderdale,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47099,Lawrence,TN,0.022726266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.977273734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47101,Lewis,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47103,Lincoln,TN,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47105,Loudon,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47107,McMinn,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149215384,0,0,0,0.850784616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47109,McNairy,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.20253955,0,0,0,0.79746045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47111,Macon,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47113,Madison,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47115,Marion,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47117,Marshall,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47119,Maury,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47121,Meigs,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47123,Monroe,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47125,Montgomery,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47127,Moore,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47129,Morgan,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47131,Obion,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.155807848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.844192152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47133,Overton,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47135,Perry,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47137,Pickett,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47139,Polk,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.848405797,0,0,0,0.151594203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47141,Putnam,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47143,Rhea,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.630737863,0,0,0,0.321044801,0,0.048217336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47145,Roane,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47147,Robertson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47149,Rutherford,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47151,Scott,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47153,Sequatchie,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47155,Sevier,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47157,Shelby,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47159,Smith,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47161,Stewart,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47163,Sullivan,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061480884,0.938519116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47165,Sumner,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47167,Tipton,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47169,Trousdale,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47171,Unicoi,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47173,Union,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47175,Van Buren,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47177,Warren,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47179,Washington,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47181,Wayne,TN,0.226762774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.773237226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47183,Weakley,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47185,White,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47187,Williamson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-47189,Wilson,TN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48001,Anderson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48003,Andrews,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48005,Angelina,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48007,Aransas,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48009,Archer,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48011,Armstrong,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48013,Atascosa,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48015,Austin,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48017,Bailey,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48019,Bandera,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48021,Bastrop,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48023,Baylor,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48025,Bee,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48027,Bell,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48029,Bexar,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48031,Blanco,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48033,Borden,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48035,Bosque,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073330802,0,0,0,0,0,0,0,0,0,0,0,0.926669198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48037,Bowie,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48039,Brazoria,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48041,Brazos,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48043,Brewster,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48045,Briscoe,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48047,Brooks,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48049,Brown,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48051,Burleson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48053,Burnet,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98843825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01156175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48055,Caldwell,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48057,Calhoun,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.893850625,0,0,0,0,0,0,0,0,0.106149375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48059,Callahan,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48061,Cameron,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48063,Camp,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48065,Carson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48067,Cass,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.657780101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.342219899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48069,Castro,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003912254,0,0,0,0,0,0,0,0,0,0,0.996087746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48071,Chambers,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48073,Cherokee,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.107170983,0,0,0,0,0,0,0,0.892829017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48075,Childress,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48077,Clay,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48079,Cochran,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48081,Coke,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48083,Coleman,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.972513861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027486139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48085,Collin,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48087,Collingsworth,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48089,Colorado,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48091,Comal,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48093,Comanche,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48095,Concho,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48097,Cooke,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48099,Coryell,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.995859918,0,0,0.004140082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48101,Cottle,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48103,Crane,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48105,Crockett,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006198929,0,0,0,0,0,0,0,0.993801071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48107,Crosby,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48109,Culberson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48111,Dallam,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48113,Dallas,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.963871918,0,0.036128082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48115,Dawson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48117,Deaf Smith,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48119,Delta,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48121,Denton,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48123,DeWitt,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48125,Dickens,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48127,Dimmit,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48129,Donley,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48131,Duval,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48133,Eastland,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48135,Ector,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48137,Edwards,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48139,Ellis,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48141,El Paso,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48143,Erath,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48145,Falls,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.358152866,0,0,0.641847134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48147,Fannin,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48149,Fayette,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48151,Fisher,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48153,Floyd,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48155,Foard,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48157,Fort Bend,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48159,Franklin,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48161,Freestone,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111694153,0,0,0,0,0,0,0,0,0,0,0,0,0,0.888305847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48163,Frio,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48165,Gaines,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48167,Galveston,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48169,Garza,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48171,Gillespie,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48173,Glasscock,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48175,Goliad,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48177,Gonzales,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045619566,0,0,0,0,0,0,0,0,0,0,0,0,0,0.900783415,0,0,0.053597019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48179,Gray,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48181,Grayson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48183,Gregg,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48185,Grimes,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.751525719,0,0,0,0,0,0.248474281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48187,Guadalupe,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.366250398,0,0,0,0,0,0,0,0,0,0,0,0,0,0.633749602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48189,Hale,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48191,Hall,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48193,Hamilton,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.425551159,0,0,0,0,0,0,0,0,0,0,0,0.574448841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48195,Hansford,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48197,Hardeman,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48199,Hardin,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48201,Harris,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48203,Harrison,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.786104209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.213895791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48205,Hartley,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48207,Haskell,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48209,Hays,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48211,Hemphill,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48213,Henderson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86396666,0,0,0,0,0,0,0,0,0,0,0,0.13603334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48215,Hidalgo,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.209899116,0,0,0,0.790100884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48217,Hill,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.092513203,0,0,0,0,0,0,0,0,0,0,0,0.907486797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48219,Hockley,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48221,Hood,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48223,Hopkins,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.787599328,0,0,0,0,0,0,0,0,0,0,0,0.212400672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48225,Houston,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077598461,0,0,0,0,0,0,0,0.922401539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48227,Howard,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48229,Hudspeth,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48231,Hunt,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48233,Hutchinson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48235,Irion,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48237,Jack,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108169656,0,0,0,0,0,0,0,0,0,0,0,0,0.891830344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48239,Jackson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48241,Jasper,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48243,Jeff Davis,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.038167939,0,0,0,0,0,0,0.961832061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48245,Jefferson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48247,Jim Hogg,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48249,Jim Wells,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48251,Johnson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047140507,0,0.952859493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48253,Jones,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48255,Karnes,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48257,Kaufman,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48259,Kendall,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48261,Kenedy,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48263,Kent,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48265,Kerr,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48267,Kimble,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48269,King,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48271,Kinney,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48273,Kleberg,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48275,Knox,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48277,Lamar,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48279,Lamb,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48281,Lampasas,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.930332883,0,0,0.069667117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48283,La Salle,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48285,Lavaca,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.405144174,0,0,0,0,0,0,0,0,0.594855826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48287,Lee,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.639953895,0,0,0,0,0,0,0,0.075649114,0,0,0,0,0,0,0.284396991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48289,Leon,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.445262952,0,0,0,0,0,0,0,0,0,0,0,0,0,0.554737048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48291,Liberty,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043819047,0,0,0,0,0,0,0.956180953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48293,Limestone,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48295,Lipscomb,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.503192107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.496807893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48297,Live Oak,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.976550939,0,0,0,0,0,0,0,0,0,0,0.023449061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48299,Llano,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998505108,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001494892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48301,Loving,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48303,Lubbock,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48305,Lynn,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48307,McCulloch,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96888161,0.03111839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48309,McLennan,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.020505275,0,0,0.979494725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48311,McMullen,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48313,Madison,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48315,Marion,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48317,Martin,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48319,Mason,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025733402,0,0,0,0,0,0,0,0,0,0,0,0,0,0.974266598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48321,Matagorda,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48323,Maverick,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48325,Medina,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48327,Menard,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48329,Midland,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48331,Milam,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48333,Mills,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48335,Mitchell,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48337,Montague,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.497495424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.502504576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48339,Montgomery,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48341,Moore,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48343,Morris,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.779795434,0,0,0,0,0,0,0.220204566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48345,Motley,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48347,Nacogdoches,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48349,Navarro,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.945101667,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054898333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48351,Newton,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125413907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.874586093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48353,Nolan,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.953815773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046184227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48355,Nueces,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48357,Ochiltree,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48359,Oldham,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48361,Orange,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48363,Palo Pinto,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48365,Panola,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48367,Parker,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48369,Parmer,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.549692079,0,0,0,0,0,0,0,0,0,0,0.450307921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48371,Pecos,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.900176234,0.099823766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48373,Polk,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48375,Potter,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48377,Presidio,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48379,Rains,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.361593563,0,0,0,0,0,0,0,0,0,0,0,0.638406437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48381,Randall,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48383,Reagan,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48385,Real,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48387,Red River,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48389,Reeves,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48391,Refugio,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.059815117,0,0,0,0,0,0,0,0,0,0,0,0,0,0.940184883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48393,Roberts,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48395,Robertson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48397,Rockwall,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48399,Runnels,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48401,Rusk,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048392547,0.080811949,0,0,0,0,0,0,0.870795503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48403,Sabine,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48405,San Augustine,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48407,San Jacinto,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48409,San Patricio,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48411,San Saba,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.998080279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001919721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48413,Schleicher,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48415,Scurry,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48417,Shackelford,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48419,Shelby,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.101834378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.898165622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48421,Sherman,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48423,Smith,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052561326,0,0,0,0,0,0,0.947438674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48425,Somervell,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48427,Starr,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48429,Stephens,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48431,Sterling,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48433,Stonewall,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48435,Sutton,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48437,Swisher,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.846796657,0,0,0,0,0,0,0,0,0,0,0.153203343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48439,Tarrant,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045262897,0,0.954737103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48441,Taylor,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48443,Terrell,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48445,Terry,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48447,Throckmorton,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48449,Titus,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48451,Tom Green,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48453,Travis,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48455,Trinity,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48457,Tyler,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48459,Upshur,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.499008202,0,0,0,0,0,0,0.500991798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48461,Upton,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67402096,0.32597904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48463,Uvalde,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48465,Val Verde,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48467,Van Zandt,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.341046297,0,0,0,0,0,0,0,0,0,0,0,0.658953703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48469,Victoria,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48471,Walker,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48473,Waller,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48475,Ward,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48477,Washington,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48479,Webb,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48481,Wharton,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48483,Wheeler,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48485,Wichita,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48487,Wilbarger,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48489,Willacy,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48491,Williamson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.832399983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.167600017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48493,Wilson,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48495,Winkler,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48497,Wise,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.563882918,0,0.436117082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48499,Wood,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48501,Yoakum,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48503,Young,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.772610648,0,0,0,0,0,0,0,0,0,0,0,0,0.227389352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48505,Zapata,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-48507,Zavala,TX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49001,Beaver,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.563986751,0.436013249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49003,Box Elder,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.977483093,0,0.022516907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49005,Cache,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49007,Carbon,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49009,Daggett,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49011,Davis,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.632819776,0,0.367180224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49013,Duchesne,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49015,Emery,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49017,Garfield,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49019,Grand,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014329179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985670821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49021,Iron,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49023,Juab,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49025,Kane,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49027,Millard,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49029,Morgan,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.989553156,0,0.010446844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49031,Piute,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49033,Rich,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49035,Salt Lake,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49037,San Juan,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.189454494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.810545506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49039,Sanpete,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49041,Sevier,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.207191457,0.792808543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49043,Summit,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49045,Tooele,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49047,Uintah,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49049,Utah,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49051,Wasatch,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49053,Washington,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49055,Wayne,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-49057,Weber,UT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50001,Addison,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018150146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.981849854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50003,Bennington,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0461108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026776721,0,0,0,0,0,0,0,0,0,0.913654169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01345831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50005,Caledonia,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.916836854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.083163146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50007,Chittenden,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50009,Essex,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50011,Franklin,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50013,Grand Isle,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50015,Lamoille,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50017,Orange,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77442193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22557807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50019,Orleans,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.888499816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111500184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50021,Rutland,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006064111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.993935889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50023,Washington,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011342631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.988657369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50025,Windham,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89567991,0,0,0,0,0,0,0,0,0,0.10432009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-50027,Windsor,VT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51001,Accomack,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.347474192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.652525808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51003,Albemarle,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51005,Alleghany,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51007,Amelia,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51009,Amherst,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51011,Appomattox,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51013,Arlington,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51015,Augusta,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51017,Bath,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51019,Bedford,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.914738975,0,0,0,0.085261025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51021,Bland,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51023,Botetourt,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51025,Brunswick,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51027,Buchanan,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51029,Buckingham,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.412869565,0,0,0,0.587130435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51031,Campbell,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51033,Caroline,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51035,Carroll,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.926930481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073069519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51036,Charles City,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51037,Charlotte,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.371475435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.40443646,0,0,0.224088104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51041,Chesterfield,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51043,Clarke,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51045,Craig,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51047,Culpeper,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.136892234,0.863107766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51049,Cumberland,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51051,Dickenson,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51053,Dinwiddie,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51057,Essex,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51059,Fairfax,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51061,Fauquier,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.979496424,0,0,0,0,0.010903975,0,0.009599601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51063,Floyd,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51065,Fluvanna,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51067,Franklin,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51069,Frederick,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51071,Giles,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51073,Gloucester,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51075,Goochland,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51077,Grayson,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.874268503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125731497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51079,Greene,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51081,Greensville,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51083,Halifax,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51085,Hanover,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51087,Henrico,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51089,Henry,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51091,Highland,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51093,Isle of Wight,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.534621479,0.465378521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51095,James City,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51097,King and Queen,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.384012066,0,0.615987934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51099,King George,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51101,King William,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51103,Lancaster,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51105,Lee,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.894630934,0.105369066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51107,Loudoun,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51109,Louisa,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39103405,0,0,0,0.60896595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51111,Lunenburg,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51113,Madison,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51115,Mathews,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51117,Mecklenburg,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.414819026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.585180974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51119,Middlesex,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.489547325,0,0.510452675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51121,Montgomery,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51125,Nelson,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.696085448,0.303914552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51127,New Kent,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.274939472,0,0.725060528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51131,Northampton,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51133,Northumberland,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51135,Nottoway,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51137,Orange,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.302140884,0,0,0,0.697859116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51139,Page,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222839796,0,0,0,0,0,0.777160204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51141,Patrick,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51143,Pittsylvania,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.669910639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.330089361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51145,Powhatan,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51147,Prince Edward,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51149,Prince George,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51153,Prince William,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51155,Pulaski,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51157,Rappahannock,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.457239459,0.267700875,0,0,0,0,0,0.275059666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51159,Richmond,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51161,Roanoke,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51163,Rockbridge,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.132373532,0,0,0,0,0.867626468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51165,Rockingham,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51167,Russell,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51169,Scott,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51171,Shenandoah,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.129521161,0,0,0,0,0,0.870478839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51173,Smyth,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51175,Southampton,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.961722841,0.038277159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51177,Spotsylvania,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51179,Stafford,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51181,Surry,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.497146481,0.129676601,0.373176918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51183,Sussex,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.187229533,0.812770467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51185,Tazewell,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.468883664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.531116336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51187,Warren,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51191,Washington,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51193,Westmoreland,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51195,Wise,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51197,Wythe,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51199,York,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51510,Alexandria,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51520,Bristol,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51530,Buena Vista,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51540,Charlottesville,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51550,Chesapeake,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51570,Colonial Heights,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51590,Danville,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51610,Falls Church,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51630,Fredericksburg,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51640,Galax,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51650,Hampton,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51660,Harrisonburg,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51670,Hopewell,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51680,Lynchburg,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51683,Manassas,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51700,Newport News,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51710,Norfolk,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51720,Norton,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51730,Petersburg,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51735,Poquoson,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51740,Portsmouth,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51750,Radford,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51760,Richmond,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51770,Roanoke,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51775,Salem,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51790,Staunton,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51800,Suffolk,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51810,Virginia Beach,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51820,Waynesboro,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51830,Williamsburg,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-51840,Winchester,VA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53001,Adams,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53003,Asotin,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53005,Benton,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000754549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.926803554,0,0.072441897,0,0,0,0,0,0,0,0,0,0,0,0
-53007,Chelan,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53009,Clallam,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53011,Clark,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53013,Columbia,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53015,Cowlitz,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53017,Douglas,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53019,Ferry,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53021,Franklin,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53023,Garfield,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53025,Grant,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.992697471,0,0.007302529,0,0,0,0,0,0,0,0,0,0,0,0
-53027,Grays Harbor,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.220933986,0.779066014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53029,Island,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53031,Jefferson,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53033,King,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000200369,0,0.999799631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53035,Kitsap,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.980942947,0,0.019057053,0,0,0,0,0,0,0,0,0,0,0,0,0
-53037,Kittitas,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008752735,0,0,0.991247265,0,0,0,0,0,0,0,0,0,0,0,0
-53039,Klickitat,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.990703913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009296087,0,0,0,0,0,0,0,0,0,0,0,0
-53041,Lewis,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018105209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.970186415,0,0,0.011708376,0,0,0,0,0,0,0,0,0,0,0,0,0
-53043,Lincoln,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53045,Mason,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.679638706,0.320361294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53047,Okanogan,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53049,Pacific,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.553037259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.427584207,0.019378534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53051,Pend Oreille,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53053,Pierce,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
-53055,San Juan,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53057,Skagit,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53059,Skamania,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53061,Snohomish,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.633260828,0,0.366739172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53063,Spokane,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53065,Stevens,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53067,Thurston,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53069,Wahkiakum,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53071,Walla Walla,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53073,Whatcom,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53075,Whitman,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-53077,Yakima,WA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0
-54001,Barbour,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54003,Berkeley,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54005,Boone,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54007,Braxton,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54009,Brooke,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54011,Cabell,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
-54013,Calhoun,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54015,Clay,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54017,Doddridge,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54019,Fayette,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54021,Gilmer,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54023,Grant,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.955947535,0,0,0,0,0,0,0,0,0.044052465,0,0,0,0,0,0,0,0,0
-54025,Greenbrier,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54027,Hampshire,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.220736599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.779263401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54029,Hancock,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54031,Hardy,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104490754,0,0,0,0,0,0.895509246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54033,Harrison,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54035,Jackson,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.989136195,0.010863805,0,0,0,0,0,0,0,0,0,0
-54037,Jefferson,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54039,Kanawha,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54041,Lewis,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54043,Lincoln,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.316940817,0.683059183,0,0,0,0,0,0,0,0,0,0
-54045,Logan,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54047,McDowell,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098555826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.859205963,0,0,0,0,0,0,0,0.042238211,0,0,0,0,0,0,0,0,0,0,0
-54049,Marion,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54051,Marshall,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54053,Mason,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
-54055,Mercer,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985031226,0,0,0,0,0,0,0,0.014968774,0,0,0,0,0,0,0,0,0,0,0
-54057,Mineral,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54059,Mingo,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014789139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002118236,0,0,0,0,0,0,0,0.983092625,0,0,0,0,0,0,0,0,0,0,0
-54061,Monongalia,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54063,Monroe,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.615402299,0,0,0,0,0,0,0,0.384597701,0,0,0,0,0,0,0,0,0,0,0
-54065,Morgan,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54067,Nicholas,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54069,Ohio,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-54071,Pendleton,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.627305218,0,0,0,0,0,0.252751966,0,0,0,0,0,0,0,0,0.119942816,0,0,0,0,0,0,0,0,0
-54073,Pleasants,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54075,Pocahontas,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.619153675,0,0,0,0,0,0,0,0,0,0,0,0,0.169733912,0,0.211112414,0,0,0,0,0,0,0,0,0
-54077,Preston,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54079,Putnam,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54081,Raleigh,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54083,Randolph,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003378611,0,0.996621389,0,0,0,0,0,0,0,0,0
-54085,Ritchie,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54087,Roane,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54089,Summers,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081714001,0,0,0,0,0,0,0,0.918285999,0,0,0,0,0,0,0,0,0,0,0
-54091,Taylor,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54093,Tucker,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
-54095,Tyler,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36570727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.63429273,0,0,0,0,0,0,0,0,0,0,0
-54097,Upshur,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54099,Wayne,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002595625,0.997404375,0,0,0,0,0,0,0,0,0,0
-54101,Webster,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54103,Wetzel,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92278856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07721144,0,0,0,0,0,0,0,0,0
-54105,Wirt,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
-54107,Wood,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074718741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.925281259,0,0,0,0,0,0,0,0,0,0,0
-54109,Wyoming,WV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.062805759,0,0,0,0,0,0,0,0.937194241,0,0,0,0,0,0,0,0,0,0,0
-55001,Adams,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55003,Ashland,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.845519005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.154480995,0,0,0,0
-55005,Barron,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.551679673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.448320327,0,0,0,0
-55007,Bayfield,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55009,Brown,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
-55011,Buffalo,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.355784134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.644215866,0,0,0,0,0,0
-55013,Burnett,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55015,Calumet,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.887237376,0,0,0,0,0,0.112762624,0,0
-55017,Chippewa,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.167393064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.832606936,0,0,0,0
-55019,Clark,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
-55021,Columbia,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55023,Crawford,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
-55025,Dane,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55027,Dodge,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.626435572,0,0.21984606,0.153718368,0,0
-55029,Door,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
-55031,Douglas,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55033,Dunn,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.986833413,0.013166587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55035,Eau Claire,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55037,Florence,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111264115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.888735885,0,0,0,0,0,0,0
-55039,Fond du Lac,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.860349923,0.139650077,0,0
-55041,Forest,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.060376919,0,0,0,0,0,0.939623081,0
-55043,Grant,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.577194403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046547936,0.376257662,0,0,0,0,0
-55045,Green,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55047,Green Lake,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08246515,0,0,0.91753485,0,0
-55049,Iowa,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55051,Iron,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.756097561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.243902439,0,0,0,0
-55053,Jackson,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113386746,0,0.886613254,0,0,0,0
-55055,Jefferson,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.924381385,0,0.075618615,0,0,0
-55057,Juneau,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55059,Kenosha,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
-55061,Kewaunee,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
-55063,La Crosse,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0
-55065,Lafayette,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.175071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.824929,0,0,0,0,0
-55067,Langlade,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.971462855,0,0,0,0,0,0,0.028537145,0
-55069,Lincoln,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0
-55071,Manitowoc,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016689,0.887455045,0,0,0,0.110876055,0,0,0
-55073,Marathon,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008212446,0,0,0,0.149258819,0,0,0.842528736,0
-55075,Marinette,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
-55077,Marquette,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.382716927,0,0,0.617283073,0,0
-55078,Menominee,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0
-55079,Milwaukee,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
-55081,Monroe,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.966273038,0.033726962,0,0,0,0,0
-55083,Oconto,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026088996,0.973911004,0,0,0,0,0,0,0
-55085,Oneida,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.235468451,0,0,0.764531549,0
-55087,Outagamie,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.951444663,0.048555337,0,0,0,0,0,0,0
-55089,Ozaukee,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
-55091,Pepin,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55093,Pierce,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113586296,0.112248049,0,0.774165654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55095,Polk,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08477301,0,0,0.91522699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55097,Portage,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
-55099,Price,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.967352786,0,0,0.032647214,0
-55101,Racine,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
-55103,Richland,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.094353726,0.905646274,0,0,0,0,0
-55105,Rock,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55107,Rusk,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
-55109,St. Croix,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04322132,0,0,0.95677868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-55111,Sauk,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0
-55113,Sawyer,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.820315299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.179684701,0,0,0,0
-55115,Shawano,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.794074437,0.029464577,0,0,0,0,0,0.176460986,0
-55117,Sheboygan,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
-55119,Taylor,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
-55121,Trempealeau,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.213994744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.786005256,0,0,0,0,0,0
-55123,Vernon,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.858245771,0.141754229,0,0,0,0,0
-55125,Vilas,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.548917534,0,0,0.451082466,0
-55127,Walworth,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186613106,0,0.813386894,0,0,0
-55129,Washburn,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.790980302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.209019698,0,0,0,0
-55131,Washington,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0
-55133,Waukesha,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000364545,0,0.999635455,0,0,0
-55135,Waupaca,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0
-55137,Waushara,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.260719683,0,0.739280317,0,0
-55139,Winnebago,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.202821454,0,0,0,0,0,0.797178546,0,0
-55141,Wood,WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0
-56001,Albany,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56003,Big Horn,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56005,Campbell,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56007,Carbon,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.059689821,0.08803597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.852274208
-56009,Converse,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-56011,Crook,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.212818406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.787181594
-56013,Fremont,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-56015,Goshen,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.000596748,0.034238401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.965164852
-56017,Hot Springs,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-56019,Johnson,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-56021,Laramie,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56023,Lincoln,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56025,Natrona,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-56027,Niobrara,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014855688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.985144312
-56029,Park,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56031,Platte,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
-56033,Sheridan,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.963328258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036671742
-56035,Sublette,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56037,Sweetwater,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.991907881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008092119
-56039,Teton,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56041,Uinta,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56043,Washakie,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-56045,Weston,WY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
\ No newline at end of file
diff --git a/_delphi_utils_python/data_proc/geomap/zcta_county_rel_10.txt b/_delphi_utils_python/data_proc/geomap/zcta_county_rel_10.txt
deleted file mode 100644
index c36474668..000000000
--- a/_delphi_utils_python/data_proc/geomap/zcta_county_rel_10.txt
+++ /dev/null
@@ -1,44411 +0,0 @@
-ZCTA5,STATE,COUNTY,GEOID,POPPT,HUPT,AREAPT,AREALANDPT,ZPOP,ZHU,ZAREA,ZAREALAND,COPOP,COHU,COAREA,COAREALAND,ZPOPPCT,ZHUPCT,ZAREAPCT,ZAREALANDPCT,COPOPPCT,COHUPCT,COAREAPCT,COAREALANDPCT
-00601,72,001,72001,18465,7695,165132671,164333375,18570,7744,167459085,166659789,19483,8125,173777444,172725651,99.43,99.37,98.61,98.6,94.77,94.71,95.03,95.14
-00601,72,141,72141,105,49,2326414,2326414,18570,7744,167459085,166659789,33149,14192,298027589,294039825,0.57,0.63,1.39,1.4,0.32,0.35,0.78,0.79
-00602,72,003,72003,41520,18073,83734431,79288158,41520,18073,83734431,79288158,41959,18258,117948080,79904246,100,100,100,100,98.95,98.99,70.99,99.23
-00603,72,005,72005,54689,25653,82063867,81880442,54689,25653,82063867,81880442,60949,28430,195741178,94608641,100,100,100,100,89.73,90.23,41.92,86.55
-00606,72,093,72093,6276,2740,94864349,94851862,6615,2877,109592548,109580061,6276,2740,94864349,94851862,94.88,95.24,86.56,86.56,100,100,100,100
-00606,72,121,72121,89,38,6679806,6679806,6615,2877,109592548,109580061,25265,10958,92831653,92806330,1.35,1.32,6.1,6.1,0.35,0.35,7.2,7.2
-00606,72,153,72153,250,99,8048393,8048393,6615,2877,109592548,109580061,42043,18020,178241098,176615594,3.78,3.44,7.34,7.34,0.59,0.55,4.52,4.56
-00610,72,003,72003,160,62,237185,237185,29016,12618,97193468,93021467,41959,18258,117948080,79904246,0.55,0.49,0.24,0.25,0.38,0.34,0.2,0.3
-00610,72,011,72011,28856,12556,96956283,92784282,29016,12618,97193468,93021467,29261,12755,116355489,101747783,99.45,99.51,99.76,99.75,98.62,98.44,83.33,91.19
-00612,72,013,72013,66938,30961,183876062,174066899,67010,30992,184915406,175106243,96440,43253,443385518,326200544,99.89,99.9,99.44,99.41,69.41,71.58,41.47,53.36
-00612,72,017,72017,72,31,1039344,1039344,67010,30992,184915406,175106243,24816,10693,80071362,48414485,0.11,0.1,0.56,0.59,0.29,0.29,1.3,2.15
-00616,72,013,72013,11017,4896,30019620,29870473,11017,4896,30019620,29870473,96440,43253,443385518,326200544,100,100,100,100,11.42,11.32,6.77,9.16
-00617,72,017,72017,24457,10542,43181464,39193495,24597,10594,43335127,39347158,24816,10693,80071362,48414485,99.43,99.51,99.65,99.61,98.55,98.59,53.93,80.95
-00617,72,054,72054,140,52,153663,153663,24597,10594,43335127,39347158,12680,5137,39425508,39391492,0.57,0.49,0.35,0.39,1.1,1.01,0.39,0.39
-00622,72,023,72023,7853,8714,76771945,75077028,7853,8714,76771945,75077028,50917,30206,459499677,182266838,100,100,100,100,15.42,28.85,16.71,41.19
-00623,72,023,72023,43061,21426,100001387,98367847,43061,21426,100001387,98367847,50917,30206,459499677,182266838,100,100,100,100,84.57,70.93,21.76,53.97
-00624,72,111,72111,24280,9219,109847589,107325269,26241,9905,114316394,111791516,24282,9220,175768648,115558665,92.53,93.07,96.09,96,99.99,99.99,62.5,92.88
-00624,72,113,72113,1961,686,4468805,4466247,26241,9905,114316394,111791516,166327,69630,501436435,297232416,7.47,6.93,3.91,4,1.18,0.99,0.89,1.5
-00627,72,027,72027,35159,14431,123565360,120058334,35159,14431,123565360,120058334,35159,14431,160488409,120058334,100,100,100,100,100,100,76.99,100
-00631,72,001,72001,611,257,4952120,4699623,1852,842,11084632,10414662,19483,8125,173777444,172725651,32.99,30.52,44.68,45.13,3.14,3.16,2.85,2.72
-00631,72,081,72081,1241,585,6132512,5715039,1852,842,11084632,10414662,30753,12956,159640584,159155311,67.01,69.48,55.32,54.87,4.04,4.52,3.84,3.59
-00637,72,121,72121,25176,10920,86151847,86126524,25287,10962,89251345,89226022,25265,10958,92831653,92806330,99.56,99.62,96.53,96.53,99.65,99.65,92.8,92.8
-00637,72,153,72153,111,42,3099498,3099498,25287,10962,89251345,89226022,42043,18020,178241098,176615594,0.44,0.38,3.47,3.47,0.26,0.23,1.74,1.75
-00638,72,039,72039,18613,7676,170388960,169929348,18941,7805,171548452,171055117,18782,7736,172769582,172309970,98.27,98.35,99.32,99.34,99.1,99.22,98.62,98.62
-00638,72,091,72091,328,129,1159492,1125769,18941,7805,171548452,171055117,44113,19260,183076859,116881341,1.73,1.65,0.68,0.66,0.74,0.67,0.63,0.96
-00641,72,001,72001,65,29,261308,261308,31191,13358,245703692,242237480,19483,8125,173777444,172725651,0.21,0.22,0.11,0.11,0.33,0.36,0.15,0.15
-00641,72,141,72141,31126,13329,245442384,241976172,31191,13358,245703692,242237480,33149,14192,298027589,294039825,99.79,99.78,99.89,99.89,93.9,93.92,82.36,82.29
-00646,72,051,72051,38156,16682,56915551,53594303,38199,16699,56933071,53611823,38165,16687,139108812,59799289,99.89,99.9,99.97,99.97,99.98,99.97,40.91,89.62
-00646,72,143,72143,43,17,17520,17520,38199,16699,56933071,53611823,39951,17002,97124017,71815540,0.11,0.1,0.03,0.03,0.11,0.1,0.02,0.02
-00647,72,055,72055,6103,3441,46660708,38647394,6172,3482,47393118,39379804,19427,9666,205813246,95959871,98.88,98.82,98.45,98.14,31.42,35.6,22.67,40.27
-00647,72,079,72079,69,41,732410,732410,6172,3482,47393118,39379804,25753,12397,261933700,155276656,1.12,1.18,1.55,1.86,0.27,0.33,0.28,0.47
-00650,72,013,72013,226,94,2288217,2285878,14998,6124,79609991,79052810,96440,43253,443385518,326200544,1.51,1.53,2.87,2.89,0.23,0.22,0.52,0.7
-00650,72,017,72017,287,120,933388,933388,14998,6124,79609991,79052810,24816,10693,80071362,48414485,1.91,1.96,1.17,1.18,1.16,1.12,1.17,1.93
-00650,72,039,72039,169,60,2380622,2380622,14998,6124,79609991,79052810,18782,7736,172769582,172309970,1.13,0.98,2.99,3.01,0.9,0.78,1.38,1.38
-00650,72,054,72054,12540,5085,39271845,39237829,14998,6124,79609991,79052810,12680,5137,39425508,39391492,83.61,83.03,49.33,49.63,98.9,98.99,99.61,99.61
-00650,72,141,72141,1776,765,34735919,34215093,14998,6124,79609991,79052810,33149,14192,298027589,294039825,11.84,12.49,43.63,43.28,5.36,5.39,11.66,11.64
-00652,72,013,72013,4715,1947,17922573,17906137,4715,1947,17922573,17906137,96440,43253,443385518,326200544,100,100,100,100,4.89,4.5,4.04,5.49
-00653,72,055,72055,13307,6217,44681214,39477273,13307,6217,44681214,39477273,19427,9666,205813246,95959871,100,100,100,100,68.5,64.32,21.71,41.14
-00656,72,059,72059,21481,8680,88324411,83968290,21481,8680,88324411,83968290,21581,8725,166391767,109479387,100,100,100,100,99.54,99.48,53.08,76.7
-00659,72,065,72065,41953,17365,111250595,108211415,41953,17365,111250595,108211415,41953,17365,152189424,108211415,100,100,100,100,100,100,73.1,100
-00660,72,067,72067,17250,7783,29381300,29380814,17250,7783,29381300,29380814,17250,7783,29381300,29380814,100,100,100,100,100,100,100,100
-00662,72,071,72071,43282,20199,120249031,114907988,43282,20199,120249031,114907988,45631,21267,237892762,143235859,100,100,100,100,94.85,94.98,50.55,80.22
-00664,72,073,72073,16642,6541,115343640,115340235,16784,6590,117900778,117897373,16642,6541,115343640,115340235,99.15,99.26,97.83,97.83,100,100,100,100
-00664,72,141,72141,142,49,2557138,2557138,16784,6590,117900778,117897373,33149,14192,298027589,294039825,0.85,0.74,2.17,2.17,0.43,0.35,0.86,0.87
-00667,72,079,72079,25684,12356,182808454,154544246,25968,12508,184465372,156201164,25753,12397,261933700,155276656,98.91,98.78,99.1,98.94,99.73,99.67,69.79,99.53
-00667,72,125,72125,284,152,1656918,1656918,25968,12508,184465372,156201164,35527,15920,141177648,141148287,1.09,1.22,0.9,1.06,0.8,0.95,1.17,1.17
-00669,72,081,72081,29512,12371,153508072,153440272,29744,12458,159587547,159419203,30753,12956,159640584,159155311,99.22,99.3,96.19,96.25,95.96,95.48,96.16,96.41
-00669,72,083,72083,184,66,5688850,5590734,29744,12458,159587547,159419203,9881,3987,120448048,120071854,0.62,0.53,3.56,3.51,1.86,1.66,4.72,4.66
-00669,72,131,72131,48,21,390625,388197,29744,12458,159587547,159419203,42430,18695,184455548,182394881,0.16,0.17,0.24,0.24,0.11,0.11,0.21,0.21
-00670,72,011,72011,110,52,3623981,3544240,9807,3973,118383179,118025360,29261,12755,116355489,101747783,1.12,1.31,3.06,3,0.38,0.41,3.11,3.48
-00670,72,083,72083,9697,3921,114759198,114481120,9807,3973,118383179,118025360,9881,3987,120448048,120071854,98.88,98.69,96.94,97,98.14,98.34,95.28,95.34
-00674,72,091,72091,43785,19131,122658962,115755572,44457,19409,123303654,116400264,44113,19260,183076859,116881341,98.49,98.57,99.48,99.45,99.26,99.33,67,99.04
-00674,72,145,72145,672,278,644692,644692,44457,19409,123303654,116400264,59662,25401,176572653,118766810,1.51,1.43,0.52,0.55,1.13,1.09,0.37,0.54
-00676,72,003,72003,207,87,247030,247030,40316,16887,130693118,130636635,41959,18258,117948080,79904246,0.51,0.52,0.19,0.19,0.49,0.48,0.21,0.31
-00676,72,099,72099,40109,16800,130446088,130389605,40316,16887,130693118,130636635,40109,16800,130446088,130389605,99.49,99.48,99.81,99.81,100,100,100,100
-00677,72,003,72003,72,36,131873,131873,15272,9730,40732062,37137111,41959,18258,117948080,79904246,0.47,0.37,0.32,0.36,0.17,0.2,0.11,0.17
-00677,72,117,72117,15200,9694,40600189,37005238,15272,9730,40732062,37137111,15200,9694,140929889,37005238,99.53,99.63,99.68,99.64,100,100,28.81,100
-00678,72,071,72071,1492,684,7469895,7372610,27819,11619,72070782,68274095,45631,21267,237892762,143235859,5.36,5.89,10.36,10.8,3.27,3.22,3.14,5.15
-00678,72,115,72115,25919,10754,62447166,58747764,27819,11619,72070782,68274095,25919,10754,88971808,58747764,93.17,92.56,86.65,86.05,100,100,70.19,100
-00678,72,131,72131,408,181,2153721,2153721,27819,11619,72070782,68274095,42430,18695,184455548,182394881,1.47,1.56,2.99,3.15,0.96,0.97,1.17,1.18
-00680,72,011,72011,265,138,3276890,3276890,58140,27992,186077627,166248984,29261,12755,116355489,101747783,0.46,0.49,1.76,1.97,0.91,1.08,2.82,3.22
-00680,72,097,72097,56404,27305,178477676,158649033,58140,27992,186077627,166248984,89080,42825,709875659,201100328,97.01,97.55,95.92,95.43,63.32,63.76,25.14,78.89
-00680,72,125,72125,1471,549,4323061,4323061,58140,27992,186077627,166248984,35527,15920,141177648,141148287,2.53,1.96,2.32,2.6,4.14,3.45,3.06,3.06
-00682,72,097,72097,32615,15489,43678263,37348163,32615,15489,43678263,37348163,89080,42825,709875659,201100328,100,100,100,100,36.61,36.17,6.15,18.57
-00683,72,125,72125,33772,15219,135197669,135168308,33772,15219,135197669,135168308,35527,15920,141177648,141148287,100,100,100,100,95.06,95.6,95.76,95.76
-00685,72,071,72071,857,384,20955261,20955261,42831,18877,202866463,200808224,45631,21267,237892762,143235859,2,2.03,10.33,10.44,1.88,1.81,8.81,14.63
-00685,72,131,72131,41974,18493,181911202,179852963,42831,18877,202866463,200808224,42430,18695,184455548,182394881,98,97.97,89.67,89.56,98.93,98.92,98.62,98.61
-00687,72,101,72101,32610,12381,100815790,100675764,32610,12381,100815790,100675764,32610,12381,100815790,100675764,100,100,100,100,100,100,100,100
-00688,72,013,72013,13543,5353,82478669,82401202,13543,5353,82478669,82401202,96440,43253,443385518,326200544,100,100,100,100,14.04,12.38,18.6,25.26
-00690,72,005,72005,6255,2773,7303739,7291346,6255,2773,7303739,7291346,60949,28430,195741178,94608641,100,100,100,100,10.26,9.75,3.73,7.71
-00692,72,143,72143,37511,16026,71307202,69307906,37511,16026,71307202,69307906,39951,17002,97124017,71815540,100,100,100,100,93.89,94.26,73.42,96.51
-00693,72,143,72143,2397,959,1612247,1607967,61038,25884,105492827,101838924,39951,17002,97124017,71815540,3.93,3.7,1.53,1.58,6,5.64,1.66,2.24
-00693,72,145,72145,58641,24925,103880580,100230957,61038,25884,105492827,101838924,59662,25401,176572653,118766810,96.07,96.3,98.47,98.42,98.29,98.13,58.83,84.39
-00694,72,145,72145,328,188,4000664,2043548,328,188,4000664,2043548,59662,25401,176572653,118766810,100,100,100,100,0.55,0.74,2.27,1.72
-00698,72,059,72059,100,45,20977895,14841551,41782,17924,188071102,180309254,21581,8725,166391767,109479387,0.24,0.25,11.15,8.23,0.46,0.52,12.61,13.56
-00698,72,153,72153,41682,17879,167093207,165467703,41782,17924,188071102,180309254,42043,18020,178241098,176615594,99.76,99.75,88.85,91.77,99.14,99.22,93.75,93.69
-00703,72,007,72007,27310,10929,74475753,74447369,28605,11417,76883454,76855070,28659,11490,77947852,77919468,95.47,95.73,96.87,96.87,95.29,95.12,95.55,95.54
-00703,72,045,72045,1295,488,2407701,2407701,28605,11417,76883454,76855070,20778,8091,73876865,73557131,4.53,4.27,3.13,3.13,6.23,6.03,3.26,3.27
-00704,72,057,72057,662,319,1612221,1612221,8577,3871,14401602,12627769,45362,19711,276655786,168327829,7.72,8.24,11.19,12.77,1.46,1.62,0.58,0.96
-00704,72,123,72123,7915,3552,12789381,11015548,8577,3871,14401602,12627769,31078,14380,295571567,179654880,92.28,91.76,88.81,87.23,25.47,24.7,4.33,6.13
-00705,72,009,72009,25543,10264,80500102,80428205,25598,10297,82820598,82748292,25900,10409,81166352,81094455,99.79,99.68,97.2,97.2,98.62,98.61,99.18,99.18
-00705,72,043,72043,55,33,2320496,2320087,25598,10297,82820598,82748292,40512,16716,202090329,202050921,0.21,0.32,2.8,2.8,0.14,0.2,1.15,1.15
-00707,72,095,72095,12225,5546,58378173,54561503,12225,5546,58378173,54561503,12225,5546,99110024,54561503,100,100,100,100,100,100,58.9,100
-00714,72,015,72015,19566,8871,37901916,37859151,19566,8871,37901916,37859151,19575,8875,92329373,38869445,100,100,100,100,99.95,99.95,41.05,97.4
-00715,72,075,72075,941,405,216698,216698,3656,1532,20584363,20434129,50747,20019,277446171,156117142,25.74,26.44,1.05,1.06,1.85,2.02,0.08,0.14
-00715,72,113,72113,2715,1127,20367665,20217431,3656,1532,20584363,20434129,166327,69630,501436435,297232416,74.26,73.56,98.95,98.94,1.63,1.62,4.06,6.8
-00716,72,113,72113,33779,14275,30049311,22081777,33779,14275,30049311,22081777,166327,69630,501436435,297232416,100,100,100,100,20.31,20.5,5.99,7.43
-00717,72,113,72113,18457,9518,5526660,5417561,18457,9518,5526660,5417561,166327,69630,501436435,297232416,100,100,100,100,11.1,13.67,1.1,1.82
-00718,72,103,72103,26606,11970,120629614,117172329,26606,11970,120629614,117172329,26720,12028,187152102,133800312,100,100,100,100,99.57,99.52,64.46,87.57
-00719,72,047,72047,439,152,1478421,1478421,30990,11496,73426199,72527843,37142,13999,110279322,110263030,1.42,1.32,2.01,2.04,1.18,1.09,1.34,1.34
-00719,72,105,72105,30402,11282,71867536,70969180,30990,11496,73426199,72527843,30402,11282,71867536,70969180,98.1,98.14,97.88,97.85,100,100,100,100
-00719,72,135,72135,149,62,80242,80242,30990,11496,73426199,72527843,74066,27006,71378074,69972197,0.48,0.54,0.11,0.11,0.2,0.23,0.11,0.11
-00720,72,043,72043,121,41,997370,997370,23129,9059,154654537,154368018,40512,16716,202090329,202050921,0.52,0.45,0.64,0.65,0.3,0.25,0.49,0.49
-00720,72,107,72107,23008,9018,153657167,153370648,23129,9059,154654537,154368018,23423,9255,165176754,164773860,99.48,99.55,99.36,99.35,98.23,97.44,93.03,93.08
-00723,72,109,72109,19277,9358,120873733,119554076,19277,9358,120873733,119554076,19277,9360,195026457,120950934,100,100,100,100,100,99.98,61.98,98.85
-00725,72,007,72007,1349,561,3472099,3472099,89374,38678,110381424,109190812,28659,11490,77947852,77919468,1.51,1.45,3.15,3.18,4.71,4.88,4.45,4.46
-00725,72,025,72025,84511,36692,97129951,95939339,89374,38678,110381424,109190812,142893,60371,152983985,151766410,94.56,94.87,87.99,87.86,59.14,60.78,63.49,63.22
-00725,72,035,72035,386,156,666412,666412,89374,38678,110381424,109190812,48119,20935,134578693,134509167,0.43,0.4,0.6,0.61,0.8,0.75,0.5,0.5
-00725,72,061,72061,2465,986,5553660,5553660,89374,38678,110381424,109190812,97924,42012,71910214,71428222,2.76,2.55,5.03,5.09,2.52,2.35,7.72,7.78
-00725,72,127,72127,540,241,2750427,2750427,89374,38678,110381424,109190812,395326,199915,199312609,123923011,0.6,0.62,2.49,2.52,0.14,0.12,1.38,2.22
-00725,72,129,72129,123,42,808875,808875,89374,38678,110381424,109190812,41058,17226,137804334,137547908,0.14,0.11,0.73,0.74,0.3,0.24,0.59,0.59
-00727,72,025,72025,58382,23679,55854034,55827071,58382,23679,55854034,55827071,142893,60371,152983985,151766410,100,100,100,100,40.86,39.22,36.51,36.78
-00728,72,113,72113,44908,16698,62143525,40524719,44908,16698,62143525,40524719,166327,69630,501436435,297232416,100,100,100,100,27,23.98,12.39,13.63
-00729,72,029,72029,46810,19215,85118677,84753995,53750,21688,88323600,87958918,47648,19474,85484864,85120182,87.09,88.6,96.37,96.36,98.24,98.67,99.57,99.57
-00729,72,087,72087,6940,2473,3204923,3204923,53750,21688,88323600,87958918,30060,12689,169915674,50158284,12.91,11.4,3.63,3.64,23.09,19.49,1.89,6.39
-00730,72,113,72113,35742,16253,16973860,16850026,35742,16253,16973860,16850026,166327,69630,501436435,297232416,100,100,100,100,21.49,23.34,3.39,5.67
-00731,72,001,72001,342,144,3431345,3431345,15524,5962,126414374,123332268,19483,8125,173777444,172725651,2.2,2.42,2.71,2.78,1.76,1.77,1.97,1.99
-00731,72,113,72113,15182,5818,122983029,119900923,15524,5962,126414374,123332268,166327,69630,501436435,297232416,97.8,97.58,97.29,97.22,9.13,8.36,24.53,40.34
-00735,72,037,72037,13617,7700,58551309,56708945,13730,7749,62204914,60362550,13631,7755,411379833,75201055,99.18,99.37,94.13,93.95,99.9,99.29,14.23,75.41
-00735,72,103,72103,113,49,3653605,3653605,13730,7749,62204914,60362550,26720,12028,187152102,133800312,0.82,0.63,5.87,6.05,0.42,0.41,1.95,2.73
-00736,72,035,72035,47730,20777,131269368,131199842,51532,22315,142781219,142701655,48119,20935,134578693,134509167,92.62,93.11,91.94,91.94,99.19,99.25,97.54,97.54
-00736,72,041,72041,3802,1538,11511851,11501813,51532,22315,142781219,142701655,43480,17103,94418405,93294621,7.38,6.89,8.06,8.06,8.74,8.99,12.19,12.33
-00738,72,053,72053,34922,18383,154956494,76243980,34922,18383,154956494,76243980,36993,19391,272801717,77347403,100,100,100,100,94.4,94.8,56.8,98.57
-00739,72,041,72041,39678,15565,82906554,81792808,39678,15565,82906554,81792808,43480,17103,94418405,93294621,100,100,100,100,91.26,91.01,87.81,87.67
-00740,72,053,72053,2071,1008,1144309,1103423,2071,1008,1144309,1103423,36993,19391,272801717,77347403,100,100,100,100,5.6,5.2,0.42,1.43
-00741,72,069,72069,4971,2196,8913858,6121151,4971,2196,8913858,6121151,58466,28100,184917690,115914077,100,100,100,100,8.5,7.81,4.82,5.28
-00745,72,029,72029,772,235,310956,310956,55062,24529,139831239,133676216,47648,19474,85484864,85120182,1.4,0.96,0.22,0.23,1.62,1.21,0.36,0.37
-00745,72,119,72119,54290,24294,139520283,133365260,55062,24529,139831239,133676216,54304,24299,231884879,157011758,98.6,99.04,99.78,99.77,99.97,99.98,60.17,84.94
-00751,72,123,72123,23129,10808,151042738,121664561,23129,10808,151042738,121664561,31078,14380,295571567,179654880,100,100,100,100,74.42,75.16,51.1,67.72
-00754,72,129,72129,40828,17146,132406042,132164302,40828,17146,132406042,132164302,41058,17226,137804334,137547908,100,100,100,100,99.44,99.54,96.08,96.09
-00757,72,133,72133,23263,9571,82856806,77246859,23263,9571,82856806,77246859,23274,9575,199284809,88119917,100,100,100,100,99.95,99.96,41.58,87.66
-00765,72,147,72147,9098,5339,51058972,49309561,9098,5339,51058972,49309561,9301,5541,683734530,131488427,100,100,100,100,97.82,96.35,7.47,37.5
-00766,72,107,72107,415,237,11519587,11403212,26488,9947,107440784,103701762,23423,9255,165176754,164773860,1.57,2.38,10.72,11,1.77,2.56,6.97,6.92
-00766,72,149,72149,26073,9710,95921197,92298550,26488,9947,107440784,103701762,26073,9710,95921197,92298550,98.43,97.62,89.28,89,100,100,100,100
-00767,72,069,72069,78,33,496194,496194,38019,15831,150306377,143501366,58466,28100,184917690,115914077,0.21,0.21,0.33,0.35,0.13,0.12,0.27,0.43
-00767,72,151,72151,37941,15798,149810183,143005172,38019,15831,150306377,143501366,37941,15798,215598216,143005172,99.79,99.79,99.67,99.65,100,100,69.49,100
-00769,72,043,72043,40248,16612,198207392,198168393,40248,16612,198207392,198168393,40512,16716,202090329,202050921,100,100,100,100,99.35,99.38,98.08,98.08
-00771,72,085,72085,38394,16142,87623561,87591047,38394,16142,87623561,87591047,38675,16248,87780800,87748286,100,100,100,100,99.27,99.35,99.82,99.82
-00772,72,087,72087,23105,10211,51615236,37975532,23105,10211,51615236,37975532,30060,12689,169915674,50158284,100,100,100,100,76.86,80.47,30.38,75.71
-00773,72,089,72089,20068,10968,65536492,62964008,20068,10968,65536492,62964008,20068,10968,120510773,66851455,100,100,100,100,100,100,54.38,94.18
-00775,72,049,72049,1786,1569,60782629,27344697,1786,1569,60782629,27344697,1818,1603,437274484,30105707,100,100,100,100,98.24,97.88,13.9,90.83
-00777,72,029,72029,66,24,55231,55231,40684,16867,69172142,68844419,47648,19474,85484864,85120182,0.16,0.14,0.08,0.08,0.14,0.12,0.06,0.06
-00777,72,063,72063,47,19,26490,26490,40684,16867,69172142,68844419,45369,18108,73330282,72228162,0.12,0.11,0.04,0.04,0.1,0.1,0.04,0.04
-00777,72,077,72077,40290,16718,68933182,68605459,40684,16867,69172142,68844419,40290,16718,68933182,68605459,99.03,99.12,99.65,99.65,100,100,100,100
-00777,72,085,72085,281,106,157239,157239,40684,16867,69172142,68844419,38675,16248,87780800,87748286,0.69,0.63,0.23,0.23,0.73,0.65,0.18,0.18
-00778,72,063,72063,45322,18089,73303792,72201672,45429,18127,77893209,76776403,45369,18108,73330282,72228162,99.76,99.79,94.11,94.04,99.9,99.9,99.96,99.96
-00778,72,129,72129,107,38,4589417,4574731,45429,18127,77893209,76776403,41058,17226,137804334,137547908,0.24,0.21,5.89,5.96,0.26,0.22,3.33,3.33
-00780,72,075,72075,615,210,871948,758664,13800,5295,52870908,52032587,50747,20019,277446171,156117142,4.46,3.97,1.65,1.46,1.21,1.05,0.31,0.49
-00780,72,113,72113,13185,5085,51998960,51273923,13800,5295,52870908,52032587,166327,69630,501436435,297232416,95.54,96.03,98.35,98.54,7.93,7.3,10.37,17.25
-00782,72,045,72045,19304,7535,69328497,69008763,19304,7535,69328497,69008763,20778,8091,73876865,73557131,100,100,100,100,92.91,93.13,93.84,93.82
-00783,72,047,72047,36557,13798,108398610,108382318,36557,13798,108398610,108382318,37142,13999,110279322,110263030,100,100,100,100,98.42,98.56,98.29,98.29
-00784,72,057,72057,44637,19159,160166753,143887987,44637,19159,160166753,143887987,45362,19711,276655786,168327829,100,100,100,100,98.4,97.2,57.89,85.48
-00786,72,009,72009,357,145,666250,666250,357,145,666250,666250,25900,10409,81166352,81094455,100,100,100,100,1.38,1.39,0.82,0.82
-00791,72,069,72069,53417,25871,98579613,95711037,53417,25871,98579613,95711037,58466,28100,184917690,115914077,100,100,100,100,91.36,92.07,53.31,82.57
-00794,72,019,72019,30318,11404,88791870,88714061,30585,11502,91497608,91419799,30318,11404,88791870,88714061,99.13,99.15,97.04,97.04,100,100,100,100
-00794,72,043,72043,88,30,565071,565071,30585,11502,91497608,91419799,40512,16716,202090329,202050921,0.29,0.26,0.62,0.62,0.22,0.18,0.28,0.28
-00794,72,045,72045,179,68,2140667,2140667,30585,11502,91497608,91419799,20778,8091,73876865,73557131,0.59,0.59,2.34,2.34,0.86,0.84,2.9,2.91
-00795,72,075,72075,48736,19196,120770024,119811901,48736,19196,120770024,119811901,50747,20019,277446171,156117142,100,100,100,100,96.04,95.89,43.53,76.74
-00901,72,127,72127,7080,4990,2564639,2534091,7080,4990,2564639,2534091,395326,199915,199312609,123923011,100,100,100,100,1.79,2.5,1.29,2.04
-00906,72,127,72127,4,168,8247,8247,4,168,8247,8247,395326,199915,199312609,123923011,100,100,100,100,0,0.08,0,0.01
-00907,72,127,72127,17458,13224,3480368,3132947,17458,13224,3480368,3132947,395326,199915,199312609,123923011,100,100,100,100,4.42,6.61,1.75,2.53
-00909,72,127,72127,6230,3805,1624902,1575598,6230,3805,1624902,1575598,395326,199915,199312609,123923011,100,100,100,100,1.58,1.9,0.82,1.27
-00911,72,127,72127,8623,6096,1245504,1245504,8623,6096,1245504,1245504,395326,199915,199312609,123923011,100,100,100,100,2.18,3.05,0.62,1.01
-00912,72,127,72127,6801,3884,854044,854044,6801,3884,854044,854044,395326,199915,199312609,123923011,100,100,100,100,1.72,1.94,0.43,0.69
-00913,72,127,72127,9312,4065,843188,843188,9312,4065,843188,843188,395326,199915,199312609,123923011,100,100,100,100,2.36,2.03,0.42,0.68
-00915,72,127,72127,32820,16538,4422364,3601480,32820,16538,4422364,3601480,395326,199915,199312609,123923011,100,100,100,100,8.3,8.27,2.22,2.91
-00917,72,127,72127,21053,12348,3407008,3360017,21053,12348,3407008,3360017,395326,199915,199312609,123923011,100,100,100,100,5.33,6.18,1.71,2.71
-00918,72,127,72127,18056,10850,5621803,5520556,18056,10850,5621803,5520556,395326,199915,199312609,123923011,100,100,100,100,4.57,5.43,2.82,4.45
-00920,72,127,72127,17893,9322,7467316,7331380,17893,9322,7467316,7331380,395326,199915,199312609,123923011,100,100,100,100,4.53,4.66,3.75,5.92
-00921,72,127,72127,37763,17728,6931388,6931388,37763,17728,6931388,6931388,395326,199915,199312609,123923011,100,100,100,100,9.55,8.87,3.48,5.59
-00923,72,127,72127,29086,13969,5291289,5283986,29086,13969,5291289,5283986,395326,199915,199312609,123923011,100,100,100,100,7.36,6.99,2.65,4.26
-00924,72,031,72031,2348,1237,409938,409938,56691,24971,12145105,12143485,176762,79842,156234273,117379800,4.14,4.95,3.38,3.38,1.33,1.55,0.26,0.35
-00924,72,127,72127,54343,23734,11735167,11733547,56691,24971,12145105,12143485,395326,199915,199312609,123923011,95.86,95.05,96.62,96.62,13.75,11.87,5.89,9.47
-00925,72,127,72127,8696,5413,1158082,1158082,8696,5413,1158082,1158082,395326,199915,199312609,123923011,100,100,100,100,2.2,2.71,0.58,0.93
-00926,72,061,72061,430,200,406951,406951,108862,47317,63627467,62575083,97924,42012,71910214,71428222,0.39,0.42,0.64,0.65,0.44,0.48,0.57,0.57
-00926,72,127,72127,95942,42102,50685682,50495009,108862,47317,63627467,62575083,395326,199915,199312609,123923011,88.13,88.98,79.66,80.7,24.27,21.06,25.43,40.75
-00926,72,139,72139,12490,5015,12534834,11673123,108862,47317,63627467,62575083,74842,30295,55378721,53778923,11.47,10.6,19.7,18.65,16.69,16.55,22.63,21.71
-00927,72,127,72127,14936,7893,6809996,6804165,14936,7893,6809996,6804165,395326,199915,199312609,123923011,100,100,100,100,3.78,3.95,3.42,5.49
-00934,72,021,72021,121,61,1164279,1138421,288,140,1967214,1940428,208116,86060,115292166,114798567,42.01,43.57,59.18,58.67,0.06,0.07,1.01,0.99
-00934,72,061,72061,167,79,802935,802007,288,140,1967214,1940428,97924,42012,71910214,71428222,57.99,56.43,40.82,41.33,0.17,0.19,1.12,1.12
-00936,72,127,72127,681,4,417955,417955,681,4,417955,417955,395326,199915,199312609,123923011,100,100,100,100,0.17,0,0.21,0.34
-00949,72,033,72033,3416,1253,1004257,1004257,82278,33340,47734641,45604190,28140,11203,18245413,12547338,4.15,3.76,2.1,2.2,12.14,11.18,5.5,8
-00949,72,137,72137,78862,32087,46730384,44599933,82278,33340,47734641,45604190,89609,36546,108282451,60193398,95.85,96.24,97.9,97.8,88.01,87.8,43.16,74.09
-00950,72,051,72051,9,5,8194331,6204986,9,5,8194331,6204986,38165,16687,139108812,59799289,100,100,100,100,0.02,0.03,5.89,10.38
-00951,72,137,72137,35,19,1105181,1075640,35,19,1105181,1075640,89609,36546,108282451,60193398,100,100,100,100,0.04,0.05,1.02,1.79
-00952,72,137,72137,10008,4169,3207681,3207681,10008,4169,3207681,3207681,89609,36546,108282451,60193398,100,100,100,100,11.17,11.41,2.96,5.33
-00953,72,047,72047,146,49,402291,402291,73014,26609,70510220,69144842,37142,13999,110279322,110263030,0.2,0.18,0.57,0.58,0.39,0.35,0.36,0.36
-00953,72,135,72135,72236,26314,69934196,68568818,73014,26609,70510220,69144842,74066,27006,71378074,69972197,98.93,98.89,99.18,99.17,97.53,97.44,97.98,97.99
-00953,72,137,72137,632,246,173733,173733,73014,26609,70510220,69144842,89609,36546,108282451,60193398,0.87,0.92,0.25,0.25,0.71,0.67,0.16,0.29
-00956,72,021,72021,79143,32489,68233712,68058901,79304,32550,68779793,68564483,208116,86060,115292166,114798567,99.8,99.81,99.21,99.26,38.03,37.75,59.18,59.29
-00956,72,135,72135,161,61,546081,505582,79304,32550,68779793,68564483,74066,27006,71378074,69972197,0.2,0.19,0.79,0.74,0.22,0.23,0.77,0.72
-00957,72,021,72021,44341,17763,11183510,11182103,45680,18275,11967204,11965797,208116,86060,115292166,114798567,97.07,97.2,93.45,93.45,21.31,20.64,9.7,9.74
-00957,72,135,72135,1339,512,783694,783694,45680,18275,11967204,11965797,74066,27006,71378074,69972197,2.93,2.8,6.55,6.55,1.81,1.9,1.1,1.12
-00959,72,021,72021,49365,21947,16430503,16348713,50560,22445,16691457,16609667,208116,86060,115292166,114798567,97.64,97.78,98.44,98.43,23.72,25.5,14.25,14.24
-00959,72,061,72061,953,420,207531,207531,50560,22445,16691457,16609667,97924,42012,71910214,71428222,1.88,1.87,1.24,1.25,0.97,1,0.29,0.29
-00959,72,135,72135,181,57,33861,33861,50560,22445,16691457,16609667,74066,27006,71378074,69972197,0.36,0.25,0.2,0.2,0.24,0.21,0.05,0.05
-00959,72,137,72137,61,21,19562,19562,50560,22445,16691457,16609667,89609,36546,108282451,60193398,0.12,0.09,0.12,0.12,0.07,0.06,0.02,0.03
-00960,72,021,72021,1779,0,2412149,2409664,1779,0,2412149,2409664,208116,86060,115292166,114798567,100,0,100,100,0.85,0,2.09,2.1
-00961,72,021,72021,32067,13257,13439233,13254272,32429,13394,13572868,13367398,208116,86060,115292166,114798567,98.88,98.98,99.02,99.15,15.41,15.4,11.66,11.55
-00961,72,033,72033,362,137,133635,113126,32429,13394,13572868,13367398,28140,11203,18245413,12547338,1.12,1.02,0.98,0.85,1.29,1.22,0.73,0.9
-00962,72,033,72033,22491,8939,11028515,9876249,22491,8939,11028515,9876249,28140,11203,18245413,12547338,100,100,100,100,79.93,79.79,60.45,78.71
-00965,72,033,72033,1871,874,270750,270750,9134,3848,2032077,1689483,28140,11203,18245413,12547338,20.48,22.71,13.32,16.03,6.65,7.8,1.48,2.16
-00965,72,061,72061,7263,2974,1761327,1418733,9134,3848,2032077,1689483,97924,42012,71910214,71428222,79.52,77.29,86.68,83.97,7.42,7.08,2.45,1.99
-00966,72,021,72021,520,228,1124029,1124029,16676,7894,8405703,8401213,208116,86060,115292166,114798567,3.12,2.89,13.37,13.38,0.25,0.26,0.97,0.98
-00966,72,061,72061,15178,7087,6887676,6883186,16676,7894,8405703,8401213,97924,42012,71910214,71428222,91.02,89.78,81.94,81.93,15.5,16.87,9.58,9.64
-00966,72,127,72127,978,579,393998,393998,16676,7894,8405703,8401213,395326,199915,199312609,123923011,5.86,7.33,4.69,4.69,0.25,0.29,0.2,0.32
-00968,72,061,72061,3478,2228,1180763,1180763,3478,2228,1180763,1180763,97924,42012,71910214,71428222,100,100,100,100,3.55,5.3,1.64,1.65
-00969,72,021,72021,677,249,437671,437671,42219,17775,12662125,12622328,208116,86060,115292166,114798567,1.6,1.4,3.46,3.47,0.33,0.29,0.38,0.38
-00969,72,061,72061,35862,15239,10765309,10725512,42219,17775,12662125,12622328,97924,42012,71910214,71428222,84.94,85.73,85.02,84.97,36.62,36.27,14.97,15.02
-00969,72,127,72127,5680,2287,1459145,1459145,42219,17775,12662125,12622328,395326,199915,199312609,123923011,13.45,12.87,11.52,11.56,1.44,1.14,0.73,1.18
-00971,72,021,72021,103,66,20412,20412,30986,12895,41418592,41324409,208116,86060,115292166,114798567,0.33,0.51,0.05,0.05,0.05,0.08,0.02,0.02
-00971,72,061,72061,30834,12799,41303112,41208929,30986,12895,41418592,41324409,97924,42012,71910214,71428222,99.51,99.26,99.72,99.72,31.49,30.47,57.44,57.69
-00971,72,127,72127,49,30,95068,95068,30986,12895,41418592,41324409,395326,199915,199312609,123923011,0.16,0.23,0.23,0.23,0.01,0.02,0.05,0.08
-00976,72,031,72031,1867,788,1078084,1078084,65136,26564,44094982,43356810,176762,79842,156234273,117379800,2.87,2.97,2.44,2.49,1.06,0.99,0.69,0.92
-00976,72,127,72127,1289,635,324660,324575,65136,26564,44094982,43356810,395326,199915,199312609,123923011,1.98,2.39,0.74,0.75,0.33,0.32,0.16,0.26
-00976,72,139,72139,61980,25141,42692238,41954151,65136,26564,44094982,43356810,74842,30295,55378721,53778923,95.15,94.64,96.82,96.76,82.81,82.99,77.09,78.01
-00979,72,031,72031,17030,12765,4565904,4061150,17030,12765,4565904,4061150,176762,79842,156234273,117379800,100,100,100,100,9.63,15.99,2.92,3.46
-00982,72,031,72031,16428,7402,3673342,3654231,16428,7402,3673342,3654231,176762,79842,156234273,117379800,100,100,100,100,9.29,9.27,2.35,3.11
-00983,72,031,72031,39234,16985,9610522,8987630,39234,16985,9610522,8987630,176762,79842,156234273,117379800,100,100,100,100,22.2,21.27,6.15,7.66
-00985,72,031,72031,36553,15241,21842799,21083058,36553,15241,21842799,21083058,176762,79842,156234273,117379800,100,100,100,100,20.68,19.09,13.98,17.96
-00987,72,031,72031,63289,25418,64573924,64120684,63661,25557,64725573,64272333,176762,79842,156234273,117379800,99.42,99.46,99.77,99.76,35.8,31.84,41.33,54.63
-00987,72,139,72139,372,139,151649,151649,63661,25557,64725573,64272333,74842,30295,55378721,53778923,0.58,0.54,0.23,0.24,0.5,0.46,0.27,0.28
-01001,25,013,25013,16769,7557,31865240,29635470,16769,7557,31865240,29635470,463490,192175,1642702821,1598385896,100,100,100,100,3.62,3.93,1.94,1.85
-01002,25,011,25011,281,112,8080745,7865871,29049,10388,146836622,142556362,71372,33758,1876639503,1811228845,0.97,1.08,5.5,5.52,0.39,0.33,0.43,0.43
-01002,25,015,25015,28768,10276,138755877,134690491,29049,10388,146836622,142556362,158080,62603,1412085549,1365585170,99.03,98.92,94.5,94.48,18.2,16.41,9.83,9.86
-01003,25,015,25015,10372,5,1855172,1842384,10372,5,1855172,1842384,158080,62603,1412085549,1365585170,100,100,100,100,6.56,0.01,0.13,0.13
-01005,25,027,25027,5079,2044,115253945,114586903,5079,2044,115253945,114586903,798552,326788,4090093562,3912876833,100,100,100,100,0.64,0.63,2.82,2.93
-01007,25,015,25015,14649,5839,143289852,136345999,14649,5839,143289852,136345999,158080,62603,1412085549,1365585170,100,100,100,100,9.27,9.33,10.15,9.98
-01008,25,013,25013,1263,586,144417560,139331467,1263,586,144417560,139331467,463490,192175,1642702821,1598385896,100,100,100,100,0.27,0.3,8.79,8.72
-01009,25,013,25013,741,341,2065025,2065002,741,341,2065025,2065002,463490,192175,1642702821,1598385896,100,100,100,100,0.16,0.18,0.13,0.13
-01010,25,013,25013,3609,1598,91403071,89982811,3609,1598,91403071,89982811,463490,192175,1642702821,1598385896,100,100,100,100,0.78,0.83,5.56,5.63
-01011,25,013,25013,1183,568,67933972,67593810,1370,659,82227136,81884563,463490,192175,1642702821,1598385896,86.35,86.19,82.62,82.55,0.26,0.3,4.14,4.23
-01011,25,015,25015,187,91,14293164,14290753,1370,659,82227136,81884563,158080,62603,1412085549,1365585170,13.65,13.81,17.38,17.45,0.12,0.15,1.01,1.05
-01012,25,015,25015,661,343,34522824,33977749,661,343,34522824,33977749,158080,62603,1412085549,1365585170,100,100,100,100,0.42,0.55,2.44,2.49
-01013,25,013,25013,23188,10246,16298932,14567022,23188,10246,16298932,14567022,463490,192175,1642702821,1598385896,100,100,100,100,5,5.33,0.99,0.91
-01020,25,013,25013,29668,13688,33486648,32308345,29668,13688,33486648,32308345,463490,192175,1642702821,1598385896,100,100,100,100,6.4,7.12,2.04,2.02
-01022,25,013,25013,2451,1209,12324269,12322151,2451,1209,12324269,12322151,463490,192175,1642702821,1598385896,100,100,100,100,0.53,0.63,0.75,0.77
-01026,25,015,25015,946,513,62502751,62170236,946,513,62502751,62170236,158080,62603,1412085549,1365585170,100,100,100,100,0.6,0.82,4.43,4.55
-01027,25,015,25015,17660,8311,106086209,104896540,17660,8311,106086209,104896540,158080,62603,1412085549,1365585170,100,100,100,100,11.17,13.28,7.51,7.68
-01028,25,013,25013,15720,6106,33867968,33686035,15720,6106,33867968,33686035,463490,192175,1642702821,1598385896,100,100,100,100,3.39,3.18,2.06,2.11
-01029,25,003,25003,789,1078,46362370,41047358,789,1078,46362370,41047358,131219,68508,2451237841,2400465435,100,100,100,100,0.6,1.57,1.89,1.71
-01030,25,013,25013,11669,4582,31206355,30736637,11669,4582,31206355,30736637,463490,192175,1642702821,1598385896,100,100,100,100,2.52,2.38,1.9,1.92
-01031,25,027,25027,1308,596,20959213,20959213,1308,596,20959213,20959213,798552,326788,4090093562,3912876833,100,100,100,100,0.16,0.18,0.51,0.54
-01032,25,015,25015,570,363,31368863,30481491,570,363,31368863,30481491,158080,62603,1412085549,1365585170,100,100,100,100,0.36,0.58,2.22,2.23
-01033,25,015,25015,6227,2454,72735542,72068288,6227,2454,72735542,72068288,158080,62603,1412085549,1365585170,100,100,100,100,3.94,3.92,5.15,5.28
-01034,25,013,25013,2021,1145,190285414,185271061,2021,1145,190285414,185271061,463490,192175,1642702821,1598385896,100,100,100,100,0.44,0.6,11.58,11.59
-01035,25,015,25015,5250,2230,63731565,59791827,5250,2230,63731565,59791827,158080,62603,1412085549,1365585170,100,100,100,100,3.32,3.56,4.51,4.38
-01036,25,013,25013,5109,1937,50627679,50521716,5109,1937,50627679,50521716,463490,192175,1642702821,1598385896,100,100,100,100,1.1,1.01,3.08,3.16
-01037,25,027,25027,838,253,34627343,34391428,838,253,34627343,34391428,798552,326788,4090093562,3912876833,100,100,100,100,0.1,0.08,0.85,0.88
-01038,25,015,25015,2545,1181,28139574,25893889,2545,1181,28139574,25893889,158080,62603,1412085549,1365585170,100,100,100,100,1.61,1.89,1.99,1.9
-01039,25,011,25011,202,91,13970623,13600928,1336,640,34802255,34206722,71372,33758,1876639503,1811228845,15.12,14.22,40.14,39.76,0.28,0.27,0.74,0.75
-01039,25,015,25015,1134,549,20831632,20605794,1336,640,34802255,34206722,158080,62603,1412085549,1365585170,84.88,85.78,59.86,60.24,0.72,0.88,1.48,1.51
-01040,25,013,25013,39880,16384,59142386,55116741,39880,16384,59142386,55116741,463490,192175,1642702821,1598385896,100,100,100,100,8.6,8.53,3.6,3.45
-01050,25,013,25013,350,153,32455636,31113077,2530,1167,101852053,99270932,463490,192175,1642702821,1598385896,13.83,13.11,31.87,31.34,0.08,0.08,1.98,1.95
-01050,25,015,25015,2180,1014,69396417,68157855,2530,1167,101852053,99270932,158080,62603,1412085549,1365585170,86.17,86.89,68.13,68.66,1.38,1.62,4.91,4.99
-01053,25,015,25015,1685,636,13541792,13289904,1685,636,13541792,13289904,158080,62603,1412085549,1365585170,100,100,100,100,1.07,1.02,0.96,0.97
-01054,25,011,25011,1851,811,59496676,59071058,1851,811,59496676,59071058,71372,33758,1876639503,1811228845,100,100,100,100,2.59,2.4,3.17,3.26
-01056,25,013,25013,21103,8383,73297009,70460584,21103,8383,73297009,70460584,463490,192175,1642702821,1598385896,100,100,100,100,4.55,4.36,4.46,4.41
-01057,25,013,25013,8534,3470,117915494,116307957,8534,3470,117915494,116307957,463490,192175,1642702821,1598385896,100,100,100,100,1.84,1.81,7.18,7.28
-01060,25,015,25015,15284,7307,31538669,28276974,15284,7307,31538669,28276974,158080,62603,1412085549,1365585170,100,100,100,100,9.67,11.67,2.23,2.07
-01062,25,015,25015,11150,4784,47415849,47018995,11150,4784,47415849,47018995,158080,62603,1412085549,1365585170,100,100,100,100,7.05,7.64,3.36,3.44
-01063,25,015,25015,430,1,100502,100502,430,1,100502,100502,158080,62603,1412085549,1365585170,100,100,100,100,0.27,0,0.01,0.01
-01066,25,015,25015,64,25,1960313,1839260,64,25,1960313,1839260,158080,62603,1412085549,1365585170,100,100,100,100,0.04,0.04,0.14,0.13
-01068,25,027,25027,1902,711,54957485,53949370,1902,711,54957485,53949370,798552,326788,4090093562,3912876833,100,100,100,100,0.24,0.22,1.34,1.38
-01069,25,013,25013,8469,3779,73455520,72688936,8469,3779,73455520,72688936,463490,192175,1642702821,1598385896,100,100,100,100,1.83,1.97,4.47,4.55
-01070,25,015,25015,629,320,53794793,53200760,629,320,53794793,53200760,158080,62603,1412085549,1365585170,100,100,100,100,0.4,0.51,3.81,3.9
-01071,25,013,25013,1596,638,41152711,40349276,1596,638,41152711,40349276,463490,192175,1642702821,1598385896,100,100,100,100,0.34,0.33,2.51,2.52
-01072,25,011,25011,1478,748,53364203,52021993,1478,748,53364203,52021993,71372,33758,1876639503,1811228845,100,100,100,100,2.07,2.22,2.84,2.87
-01073,25,015,25015,5792,2337,74991419,72913678,5792,2337,74991419,72913678,158080,62603,1412085549,1365585170,100,100,100,100,3.66,3.73,5.31,5.34
-01074,25,027,25027,319,132,273131,220752,319,132,273131,220752,798552,326788,4090093562,3912876833,100,100,100,100,0.04,0.04,0.01,0.01
-01075,25,015,25015,17527,7162,47662551,45888980,17527,7162,47662551,45888980,158080,62603,1412085549,1365585170,100,100,100,100,11.09,11.44,3.38,3.36
-01077,25,013,25013,9502,3916,81979424,79825932,9502,3916,81979424,79825932,463490,192175,1642702821,1598385896,100,100,100,100,2.05,2.04,4.99,4.99
-01079,25,013,25013,692,325,3030136,2921898,692,325,3030136,2921898,463490,192175,1642702821,1598385896,100,100,100,100,0.15,0.17,0.18,0.18
-01080,25,013,25013,2334,1093,4731673,4473453,2334,1093,4731673,4473453,463490,192175,1642702821,1598385896,100,100,100,100,0.5,0.57,0.29,0.28
-01081,25,013,25013,1698,820,38112802,37544477,1698,820,38112802,37544477,463490,192175,1642702821,1598385896,100,100,100,100,0.37,0.43,2.32,2.35
-01082,25,015,25015,9872,4590,103479330,88986353,10322,4768,135594568,119411357,158080,62603,1412085549,1365585170,95.64,96.27,76.32,74.52,6.24,7.33,7.33,6.52
-01082,25,027,25027,450,178,32115238,30425004,10322,4768,135594568,119411357,798552,326788,4090093562,3912876833,4.36,3.73,23.68,25.48,0.06,0.05,0.79,0.78
-01083,25,027,25027,2888,1270,41028017,40871193,2888,1270,41028017,40871193,798552,326788,4090093562,3912876833,100,100,100,100,0.36,0.39,1,1.04
-01084,25,015,25015,176,88,24043877,23821014,176,88,24043877,23821014,158080,62603,1412085549,1365585170,100,100,100,100,0.11,0.14,1.7,1.74
-01085,25,013,25013,41117,16363,158223043,155258467,41117,16363,158223043,155258467,463490,192175,1642702821,1598385896,100,100,100,100,8.87,8.51,9.63,9.71
-01086,25,013,25013,687,0,96152,96152,687,0,96152,96152,463490,192175,1642702821,1598385896,100,0,100,100,0.15,0,0.01,0.01
-01088,25,015,25015,670,357,13505888,13468904,670,357,13505888,13468904,158080,62603,1412085549,1365585170,100,100,100,100,0.42,0.57,0.96,0.99
-01089,25,013,25013,28391,12697,45380622,43286505,28391,12697,45380622,43286505,463490,192175,1642702821,1598385896,100,100,100,100,6.13,6.61,2.76,2.71
-01092,25,027,25027,1394,591,17440457,17359776,1394,591,17440457,17359776,798552,326788,4090093562,3912876833,100,100,100,100,0.17,0.18,0.43,0.44
-01093,25,011,25011,325,156,13080546,13063805,325,156,13080546,13063805,71372,33758,1876639503,1811228845,100,100,100,100,0.46,0.46,0.7,0.72
-01094,25,027,25027,351,171,3112197,2942290,351,171,3112197,2942290,798552,326788,4090093562,3912876833,100,100,100,100,0.04,0.05,0.08,0.08
-01095,25,013,25013,14319,5535,59151294,58570047,14319,5535,59151294,58570047,463490,192175,1642702821,1598385896,100,100,100,100,3.09,2.88,3.6,3.66
-01096,25,015,25015,2217,1029,82592019,82059161,2217,1029,82592019,82059161,158080,62603,1412085549,1365585170,100,100,100,100,1.4,1.64,5.85,6.01
-01097,25,013,25013,111,40,4635022,4426154,111,40,4635022,4426154,463490,192175,1642702821,1598385896,100,100,100,100,0.02,0.02,0.28,0.28
-01098,25,015,25015,1101,610,81585142,81200703,1101,610,81585142,81200703,158080,62603,1412085549,1365585170,100,100,100,100,0.7,0.97,5.78,5.95
-01103,25,013,25013,2479,1661,1397056,1191989,2479,1661,1397056,1191989,463490,192175,1642702821,1598385896,100,100,100,100,0.53,0.86,0.09,0.07
-01104,25,013,25013,22865,9381,13722410,13509560,22865,9381,13722410,13509560,463490,192175,1642702821,1598385896,100,100,100,100,4.93,4.88,0.84,0.85
-01105,25,013,25013,12350,5586,3526004,3219040,12350,5586,3526004,3219040,463490,192175,1642702821,1598385896,100,100,100,100,2.66,2.91,0.21,0.2
-01106,25,013,25013,16021,6107,25422171,24090566,16021,6107,25422171,24090566,463490,192175,1642702821,1598385896,100,100,100,100,3.46,3.18,1.55,1.51
-01107,25,013,25013,11611,4252,3992898,3903756,11611,4252,3992898,3903756,463490,192175,1642702821,1598385896,100,100,100,100,2.51,2.21,0.24,0.24
-01108,25,013,25013,26688,10992,10049655,9643254,26688,10992,10049655,9643254,463490,192175,1642702821,1598385896,100,100,100,100,5.76,5.72,0.61,0.6
-01109,25,013,25013,30250,10818,14582814,14094949,30250,10818,14582814,14094949,463490,192175,1642702821,1598385896,100,100,100,100,6.53,5.63,0.89,0.88
-01118,25,013,25013,14071,5911,9573080,9312203,14071,5911,9573080,9312203,463490,192175,1642702821,1598385896,100,100,100,100,3.04,3.08,0.58,0.58
-01119,25,013,25013,14152,5185,9436036,9194297,14152,5185,9436036,9194297,463490,192175,1642702821,1598385896,100,100,100,100,3.05,2.7,0.57,0.58
-01128,25,013,25013,2631,1077,2894144,2892857,2631,1077,2894144,2892857,463490,192175,1642702821,1598385896,100,100,100,100,0.57,0.56,0.18,0.18
-01129,25,013,25013,7019,2982,9105878,8867992,7019,2982,9105878,8867992,463490,192175,1642702821,1598385896,100,100,100,100,1.51,1.55,0.55,0.55
-01151,25,013,25013,8698,3699,6598855,6134290,8698,3699,6598855,6134290,463490,192175,1642702821,1598385896,100,100,100,100,1.88,1.92,0.4,0.38
-01199,25,013,25013,0,0,28277,28277,0,0,28277,28277,463490,192175,1642702821,1598385896,0,0,100,100,0,0,0,0
-01201,25,003,25003,46504,22443,143810955,137058017,46504,22443,143810955,137058017,131219,68508,2451237841,2400465435,100,100,100,100,35.44,32.76,5.87,5.71
-01220,25,003,25003,8603,4434,63893479,63689337,8603,4434,63893479,63689337,131219,68508,2451237841,2400465435,100,100,100,100,6.56,6.47,2.61,2.65
-01222,25,003,25003,829,361,8898719,8565484,829,361,8898719,8565484,131219,68508,2451237841,2400465435,100,100,100,100,0.63,0.53,0.36,0.36
-01223,25,003,25003,2314,1986,185948005,180653860,2314,1986,185948005,180653860,131219,68508,2451237841,2400465435,100,100,100,100,1.76,2.9,7.59,7.53
-01224,25,003,25003,182,81,802753,720507,182,81,802753,720507,131219,68508,2451237841,2400465435,100,100,100,100,0.14,0.12,0.03,0.03
-01225,25,003,25003,3117,1466,66846521,65025449,3117,1466,66846521,65025449,131219,68508,2451237841,2400465435,100,100,100,100,2.38,2.14,2.73,2.71
-01226,25,003,25003,6945,2993,68686266,68319649,6945,2993,68686266,68319649,131219,68508,2451237841,2400465435,100,100,100,100,5.29,4.37,2.8,2.85
-01229,25,003,25003,95,61,1899054,1897309,95,61,1899054,1897309,131219,68508,2451237841,2400465435,100,100,100,100,0.07,0.09,0.08,0.08
-01230,25,003,25003,8430,4633,241562935,237032746,8430,4633,241562935,237032746,131219,68508,2451237841,2400465435,100,100,100,100,6.42,6.76,9.85,9.87
-01235,25,003,25003,2766,1507,121008472,118213863,2766,1507,121008472,118213863,131219,68508,2451237841,2400465435,100,100,100,100,2.11,2.2,4.94,4.92
-01236,25,003,25003,1509,784,12595870,12437975,1509,784,12595870,12437975,131219,68508,2451237841,2400465435,100,100,100,100,1.15,1.14,0.51,0.52
-01237,25,003,25003,2496,1334,161262311,160121626,2496,1334,161262311,160121626,131219,68508,2451237841,2400465435,100,100,100,100,1.9,1.95,6.58,6.67
-01238,25,003,25003,6047,3155,92924069,90217712,6047,3155,92924069,90217712,131219,68508,2451237841,2400465435,100,100,100,100,4.61,4.61,3.79,3.76
-01240,25,003,25003,4534,2920,56533395,55374233,4534,2920,56533395,55374233,131219,68508,2451237841,2400465435,100,100,100,100,3.46,4.26,2.31,2.31
-01242,25,003,25003,476,214,1313357,1288423,476,214,1313357,1288423,131219,68508,2451237841,2400465435,100,100,100,100,0.36,0.31,0.05,0.05
-01243,25,015,25015,334,188,48363963,48306686,334,188,48363963,48306686,158080,62603,1412085549,1365585170,100,100,100,100,0.21,0.3,3.43,3.54
-01244,25,003,25003,151,84,6416084,6345198,151,84,6416084,6345198,131219,68508,2451237841,2400465435,100,100,100,100,0.12,0.12,0.26,0.26
-01245,25,003,25003,985,914,74515081,72467551,985,914,74515081,72467551,131219,68508,2451237841,2400465435,100,100,100,100,0.75,1.33,3.04,3.02
-01247,25,003,25003,16087,7785,137515619,136035510,16087,7785,137515619,136035510,131219,68508,2451237841,2400465435,100,100,100,100,12.26,11.36,5.61,5.67
-01253,25,003,25003,731,568,48354960,47310437,731,568,48354960,47310437,131219,68508,2451237841,2400465435,100,100,100,100,0.56,0.83,1.97,1.97
-01254,25,003,25003,972,591,37860460,37713379,972,591,37860460,37713379,131219,68508,2451237841,2400465435,100,100,100,100,0.74,0.86,1.54,1.57
-01255,25,003,25003,915,671,137224308,134177247,915,671,137224308,134177247,131219,68508,2451237841,2400465435,100,100,100,100,0.7,0.98,5.6,5.59
-01256,25,003,25003,692,357,93290584,92838285,692,357,93290584,92838285,131219,68508,2451237841,2400465435,100,100,100,100,0.53,0.52,3.81,3.87
-01257,25,003,25003,2121,1231,96070657,93848678,2121,1231,96070657,93848678,131219,68508,2451237841,2400465435,100,100,100,100,1.62,1.8,3.92,3.91
-01258,25,003,25003,374,338,67239485,66839821,374,338,67239485,66839821,131219,68508,2451237841,2400465435,100,100,100,100,0.29,0.49,2.74,2.78
-01259,25,003,25003,635,431,67635344,65593267,635,431,67635344,65593267,131219,68508,2451237841,2400465435,100,100,100,100,0.48,0.63,2.76,2.73
-01260,25,003,25003,240,134,6605501,6503634,240,134,6605501,6503634,131219,68508,2451237841,2400465435,100,100,100,100,0.18,0.2,0.27,0.27
-01262,25,003,25003,1238,1068,33295025,31167340,1238,1068,33295025,31167340,131219,68508,2451237841,2400465435,100,100,100,100,0.94,1.56,1.36,1.3
-01264,25,003,25003,137,109,29515501,29425420,137,109,29515501,29425420,131219,68508,2451237841,2400465435,100,100,100,100,0.1,0.16,1.2,1.23
-01266,25,003,25003,1463,1096,68254509,67473737,1463,1096,68254509,67473737,131219,68508,2451237841,2400465435,100,100,100,100,1.11,1.6,2.78,2.81
-01267,25,003,25003,7989,3202,141636032,141293372,7989,3202,141636032,141293372,131219,68508,2451237841,2400465435,100,100,100,100,6.09,4.67,5.78,5.89
-01270,25,003,25003,778,441,82932933,82512104,778,441,82932933,82512104,131219,68508,2451237841,2400465435,100,100,100,100,0.59,0.64,3.38,3.44
-01301,25,011,25011,17700,8485,67408862,66020418,17700,8485,67408862,66020418,71372,33758,1876639503,1811228845,100,100,100,100,24.8,25.13,3.59,3.65
-01330,25,011,25011,1506,771,86945680,86313800,1506,771,86945680,86313800,71372,33758,1876639503,1811228845,100,100,100,100,2.11,2.28,4.63,4.77
-01331,25,027,25027,13263,6028,141430604,137844144,13263,6028,141430604,137844144,798552,326788,4090093562,3912876833,100,100,100,100,1.66,1.84,3.46,3.52
-01337,25,011,25011,2596,1165,96571102,96405836,2596,1165,96571102,96405836,71372,33758,1876639503,1811228845,100,100,100,100,3.64,3.45,5.15,5.32
-01338,25,011,25011,187,82,8958906,8946607,187,82,8958906,8946607,71372,33758,1876639503,1811228845,100,100,100,100,0.26,0.24,0.48,0.49
-01339,25,011,25011,1438,787,143022237,142392158,1438,787,143022237,142392158,71372,33758,1876639503,1811228845,100,100,100,100,2.01,2.33,7.62,7.86
-01340,25,011,25011,1701,954,115089189,114430561,1701,954,115089189,114430561,71372,33758,1876639503,1811228845,100,100,100,100,2.38,2.83,6.13,6.32
-01341,25,011,25011,1833,801,92891268,92426089,1833,801,92891268,92426089,71372,33758,1876639503,1811228845,100,100,100,100,2.57,2.37,4.95,5.1
-01342,25,011,25011,1492,518,48402705,46190734,1492,518,48402705,46190734,71372,33758,1876639503,1811228845,100,100,100,100,2.09,1.53,2.58,2.55
-01343,25,003,25003,75,38,12692386,12615499,75,38,12692386,12615499,131219,68508,2451237841,2400465435,100,100,100,100,0.06,0.06,0.52,0.53
-01344,25,011,25011,1498,654,36656124,35313664,1498,654,36656124,35313664,71372,33758,1876639503,1811228845,100,100,100,100,2.1,1.94,1.95,1.95
-01346,25,011,25011,533,429,54478938,54379277,533,429,54478938,54379277,71372,33758,1876639503,1811228845,100,100,100,100,0.75,1.27,2.9,3
-01347,25,011,25011,166,75,1716302,1495232,166,75,1716302,1495232,71372,33758,1876639503,1811228845,100,100,100,100,0.23,0.22,0.09,0.08
-01349,25,011,25011,1091,496,20447856,19874430,1091,496,20447856,19874430,71372,33758,1876639503,1811228845,100,100,100,100,1.53,1.47,1.09,1.1
-01350,25,011,25011,121,77,28042129,27768017,121,77,28042129,27768017,71372,33758,1876639503,1811228845,100,100,100,100,0.17,0.23,1.49,1.53
-01351,25,011,25011,2270,1032,55324631,54198079,2270,1032,55324631,54198079,71372,33758,1876639503,1811228845,100,100,100,100,3.18,3.06,2.95,2.99
-01354,25,011,25011,1500,608,38313116,35647707,1500,608,38313116,35647707,71372,33758,1876639503,1811228845,100,100,100,100,2.1,1.8,2.04,1.97
-01355,25,011,25011,878,418,158390386,122713549,878,418,158390386,122713549,71372,33758,1876639503,1811228845,100,100,100,100,1.23,1.24,8.44,6.78
-01360,25,011,25011,3032,1391,91609438,88796644,3032,1391,91609438,88796644,71372,33758,1876639503,1811228845,100,100,100,100,4.25,4.12,4.88,4.9
-01364,25,011,25011,7969,3652,104457839,101602863,7969,3652,104457839,101602863,71372,33758,1876639503,1811228845,100,100,100,100,11.17,10.82,5.57,5.61
-01366,25,027,25027,1277,566,106103277,104649746,1277,566,106103277,104649746,798552,326788,4090093562,3912876833,100,100,100,100,0.16,0.17,2.59,2.67
-01367,25,011,25011,522,300,70497563,68727436,522,300,70497563,68727436,71372,33758,1876639503,1811228845,100,100,100,100,0.73,0.89,3.76,3.79
-01368,25,027,25027,1261,578,110198232,108369099,1261,578,110198232,108369099,798552,326788,4090093562,3912876833,100,100,100,100,0.16,0.18,2.69,2.77
-01370,25,011,25011,4084,1976,130429524,129031063,4084,1976,130429524,129031063,71372,33758,1876639503,1811228845,100,100,100,100,5.72,5.85,6.95,7.12
-01373,25,011,25011,4600,2076,64048346,62576781,4600,2076,64048346,62576781,71372,33758,1876639503,1811228845,100,100,100,100,6.45,6.15,3.41,3.45
-01375,25,011,25011,3684,1729,38205458,36856254,3684,1729,38205458,36856254,71372,33758,1876639503,1811228845,100,100,100,100,5.16,5.12,2.04,2.03
-01376,25,011,25011,5247,2503,8615597,7149877,5247,2503,8615597,7149877,71372,33758,1876639503,1811228845,100,100,100,100,7.35,7.41,0.46,0.39
-01378,25,011,25011,774,441,88927760,88114809,774,441,88927760,88114809,71372,33758,1876639503,1811228845,100,100,100,100,1.08,1.31,4.74,4.86
-01379,25,011,25011,813,420,79195754,78233305,813,420,79195754,78233305,71372,33758,1876639503,1811228845,100,100,100,100,1.14,1.24,4.22,4.32
-01420,25,027,25027,40337,17128,80299131,78520256,40337,17128,80299131,78520256,798552,326788,4090093562,3912876833,100,100,100,100,5.05,5.24,1.96,2.01
-01430,25,027,25027,6089,2606,102557826,95807807,6089,2606,102557826,95807807,798552,326788,4090093562,3912876833,100,100,100,100,0.76,0.8,2.51,2.45
-01431,25,017,25017,3074,1191,62391754,61389725,3074,1191,62391754,61389725,1503085,612004,2193874798,2118135038,100,100,100,100,0.2,0.19,2.84,2.9
-01432,25,017,25017,7089,3422,23107879,21888062,7089,3422,23107879,21888062,1503085,612004,2193874798,2118135038,100,100,100,100,0.47,0.56,1.05,1.03
-01434,25,017,25017,338,40,3633440,3407436,1795,122,14079442,13678208,1503085,612004,2193874798,2118135038,18.83,32.79,25.81,24.91,0.02,0.01,0.17,0.16
-01434,25,027,25027,1457,82,10446002,10270772,1795,122,14079442,13678208,798552,326788,4090093562,3912876833,81.17,67.21,74.19,75.09,0.18,0.03,0.26,0.26
-01436,25,027,25027,3336,1214,25356438,24849921,3336,1214,25356438,24849921,798552,326788,4090093562,3912876833,100,100,100,100,0.42,0.37,0.62,0.64
-01438,25,027,25027,559,214,1451865,1403430,559,214,1451865,1403430,798552,326788,4090093562,3912876833,100,100,100,100,0.07,0.07,0.04,0.04
-01440,25,027,25027,20347,9179,64756674,62268795,20347,9179,64756674,62268795,798552,326788,4090093562,3912876833,100,100,100,100,2.55,2.81,1.58,1.59
-01450,25,017,25017,10646,3989,87429674,84853731,10646,3989,87429674,84853731,1503085,612004,2193874798,2118135038,100,100,100,100,0.71,0.65,3.99,4.01
-01451,25,027,25027,4747,1824,51233907,49550919,4747,1824,51233907,49550919,798552,326788,4090093562,3912876833,100,100,100,100,0.59,0.56,1.25,1.27
-01452,25,027,25027,4382,1662,108780003,106373488,4382,1662,108780003,106373488,798552,326788,4090093562,3912876833,100,100,100,100,0.55,0.51,2.66,2.72
-01453,25,027,25027,40883,17912,75105748,73735859,40883,17912,75105748,73735859,798552,326788,4090093562,3912876833,100,100,100,100,5.12,5.48,1.84,1.88
-01460,25,017,25017,8924,3477,45374728,42791669,8924,3477,45374728,42791669,1503085,612004,2193874798,2118135038,100,100,100,100,0.59,0.57,2.07,2.02
-01462,25,027,25027,10086,4133,71849369,68579436,10086,4133,71849369,68579436,798552,326788,4090093562,3912876833,100,100,100,100,1.26,1.26,1.76,1.75
-01463,25,017,25017,11497,4348,60079702,58533407,11497,4348,60079702,58533407,1503085,612004,2193874798,2118135038,100,100,100,100,0.76,0.71,2.74,2.76
-01464,25,017,25017,7211,2427,39088905,38884871,7211,2427,39088905,38884871,1503085,612004,2193874798,2118135038,100,100,100,100,0.48,0.4,1.78,1.84
-01467,25,027,25027,316,141,4937665,4908783,316,141,4937665,4908783,798552,326788,4090093562,3912876833,100,100,100,100,0.04,0.04,0.12,0.13
-01468,25,027,25027,4021,1671,56114089,55425624,4021,1671,56114089,55425624,798552,326788,4090093562,3912876833,100,100,100,100,0.5,0.51,1.37,1.42
-01469,25,017,25017,6801,2572,59868179,59261468,6801,2572,59868179,59261468,1503085,612004,2193874798,2118135038,100,100,100,100,0.45,0.42,2.73,2.8
-01473,25,027,25027,7277,2960,96486316,91766611,7277,2960,96486316,91766611,798552,326788,4090093562,3912876833,100,100,100,100,0.91,0.91,2.36,2.35
-01474,25,017,25017,2125,813,25768885,25690700,2125,813,25768885,25690700,1503085,612004,2193874798,2118135038,100,100,100,100,0.14,0.13,1.17,1.21
-01475,25,027,25027,10270,4179,113702298,110986284,10270,4179,113702298,110986284,798552,326788,4090093562,3912876833,100,100,100,100,1.29,1.28,2.78,2.84
-01501,25,027,25027,16075,6770,42438308,40018190,16075,6770,42438308,40018190,798552,326788,4090093562,3912876833,100,100,100,100,2.01,2.07,1.04,1.02
-01503,25,027,25027,2866,1189,34122186,33598202,2866,1189,34122186,33598202,798552,326788,4090093562,3912876833,100,100,100,100,0.36,0.36,0.83,0.86
-01504,25,027,25027,9026,3628,29504310,28685128,9026,3628,29504310,28685128,798552,326788,4090093562,3912876833,100,100,100,100,1.13,1.11,0.72,0.73
-01505,25,027,25027,4355,1778,51161090,41598694,4355,1778,51161090,41598694,798552,326788,4090093562,3912876833,100,100,100,100,0.55,0.54,1.25,1.06
-01506,25,027,25027,3390,1493,42996243,40266781,3390,1493,42996243,40266781,798552,326788,4090093562,3912876833,100,100,100,100,0.42,0.46,1.05,1.03
-01507,25,027,25027,12981,4885,113433493,109254326,12981,4885,113433493,109254326,798552,326788,4090093562,3912876833,100,100,100,100,1.63,1.49,2.77,2.79
-01510,25,027,25027,13606,6397,18824427,14645926,13606,6397,18824427,14645926,798552,326788,4090093562,3912876833,100,100,100,100,1.7,1.96,0.46,0.37
-01515,25,027,25027,2183,931,26948002,25514944,2183,931,26948002,25514944,798552,326788,4090093562,3912876833,100,100,100,100,0.27,0.28,0.66,0.65
-01516,25,027,25027,8500,3306,99221341,95201650,8500,3306,99221341,95201650,798552,326788,4090093562,3912876833,100,100,100,100,1.06,1.01,2.43,2.43
-01518,25,027,25027,2974,1326,24901797,22976455,2974,1326,24901797,22976455,798552,326788,4090093562,3912876833,100,100,100,100,0.37,0.41,0.61,0.59
-01519,25,027,25027,6595,2539,28540350,28261149,6595,2539,28540350,28261149,798552,326788,4090093562,3912876833,100,100,100,100,0.83,0.78,0.7,0.72
-01520,25,027,25027,13997,5339,48624686,46830036,13997,5339,48624686,46830036,798552,326788,4090093562,3912876833,100,100,100,100,1.75,1.63,1.19,1.2
-01521,25,013,25013,2481,1365,33832486,31841683,2481,1365,33832486,31841683,463490,192175,1642702821,1598385896,100,100,100,100,0.54,0.71,2.06,1.99
-01522,25,027,25027,3310,1298,43818809,42419059,3310,1298,43818809,42419059,798552,326788,4090093562,3912876833,100,100,100,100,0.41,0.4,1.07,1.08
-01523,25,027,25027,7582,2462,66402095,65263989,7582,2462,66402095,65263989,798552,326788,4090093562,3912876833,100,100,100,100,0.95,0.75,1.62,1.67
-01524,25,027,25027,6696,2594,43883191,41375156,6696,2594,43883191,41375156,798552,326788,4090093562,3912876833,100,100,100,100,0.84,0.79,1.07,1.06
-01525,25,027,25027,290,120,1243593,1162429,290,120,1243593,1162429,798552,326788,4090093562,3912876833,100,100,100,100,0.04,0.04,0.03,0.03
-01527,25,027,25027,13246,5618,42185453,40323227,13246,5618,42185453,40323227,798552,326788,4090093562,3912876833,100,100,100,100,1.66,1.72,1.03,1.03
-01529,25,027,25027,3190,1162,12857837,12706301,3190,1162,12857837,12706301,798552,326788,4090093562,3912876833,100,100,100,100,0.4,0.36,0.31,0.32
-01531,25,027,25027,999,390,54248456,53842961,999,390,54248456,53842961,798552,326788,4090093562,3912876833,100,100,100,100,0.13,0.12,1.33,1.38
-01532,25,027,25027,14155,5314,48557688,47852201,14155,5314,48557688,47852201,798552,326788,4090093562,3912876833,100,100,100,100,1.77,1.63,1.19,1.22
-01534,25,027,25027,5631,2123,23008084,22682354,5631,2123,23008084,22682354,798552,326788,4090093562,3912876833,100,100,100,100,0.71,0.65,0.56,0.58
-01535,25,027,25027,4680,2058,56843581,55084070,4680,2058,56843581,55084070,798552,326788,4090093562,3912876833,100,100,100,100,0.59,0.63,1.39,1.41
-01536,25,027,25027,6888,2794,22353603,21598203,6888,2794,22353603,21598203,798552,326788,4090093562,3912876833,100,100,100,100,0.86,0.85,0.55,0.55
-01537,25,027,25027,2248,1077,18381682,18085937,2248,1077,18381682,18085937,798552,326788,4090093562,3912876833,100,100,100,100,0.28,0.33,0.45,0.46
-01540,25,027,25027,11291,4395,52176826,50128319,11291,4395,52176826,50128319,798552,326788,4090093562,3912876833,100,100,100,100,1.41,1.34,1.28,1.28
-01541,25,027,25027,3413,1339,92742065,91709834,3413,1339,92742065,91709834,798552,326788,4090093562,3912876833,100,100,100,100,0.43,0.41,2.27,2.34
-01542,25,027,25027,2202,829,10849288,10426627,2202,829,10849288,10426627,798552,326788,4090093562,3912876833,100,100,100,100,0.28,0.25,0.27,0.27
-01543,25,027,25027,7973,2990,93891019,90918826,7973,2990,93891019,90918826,798552,326788,4090093562,3912876833,100,100,100,100,1,0.91,2.3,2.32
-01545,25,027,25027,35299,13955,56428117,53712526,35299,13955,56428117,53712526,798552,326788,4090093562,3912876833,100,100,100,100,4.42,4.27,1.38,1.37
-01550,25,027,25027,16719,7527,54140156,52512755,16719,7527,54140156,52512755,798552,326788,4090093562,3912876833,100,100,100,100,2.09,2.3,1.32,1.34
-01560,25,027,25027,4527,1844,9509318,9238873,4527,1844,9509318,9238873,798552,326788,4090093562,3912876833,100,100,100,100,0.57,0.56,0.23,0.24
-01561,25,027,25027,330,102,319273,319273,330,102,319273,319273,798552,326788,4090093562,3912876833,100,100,100,100,0.04,0.03,0.01,0.01
-01562,25,027,25027,11688,5295,88075200,85038323,11688,5295,88075200,85038323,798552,326788,4090093562,3912876833,100,100,100,100,1.46,1.62,2.15,2.17
-01564,25,027,25027,7808,2965,82104910,79343448,7808,2965,82104910,79343448,798552,326788,4090093562,3912876833,100,100,100,100,0.98,0.91,2.01,2.03
-01566,25,027,25027,6294,2663,75992769,73430539,6294,2663,75992769,73430539,798552,326788,4090093562,3912876833,100,100,100,100,0.79,0.81,1.86,1.88
-01568,25,027,25027,7480,2808,56123182,55529918,7480,2808,56123182,55529918,798552,326788,4090093562,3912876833,100,100,100,100,0.94,0.86,1.37,1.42
-01569,25,027,25027,13569,5349,76896743,75315947,13569,5349,76896743,75315947,798552,326788,4090093562,3912876833,100,100,100,100,1.7,1.64,1.88,1.92
-01570,25,027,25027,16767,8011,37829480,32048670,16767,8011,37829480,32048670,798552,326788,4090093562,3912876833,100,100,100,100,2.1,2.45,0.92,0.82
-01571,25,027,25027,11390,4403,56632939,53915863,11390,4403,56632939,53915863,798552,326788,4090093562,3912876833,100,100,100,100,1.43,1.35,1.38,1.38
-01581,25,027,25027,18272,7350,55542170,53312878,18272,7350,55542170,53312878,798552,326788,4090093562,3912876833,100,100,100,100,2.29,2.25,1.36,1.36
-01583,25,027,25027,7591,2721,35027009,32672267,7591,2721,35027009,32672267,798552,326788,4090093562,3912876833,100,100,100,100,0.95,0.83,0.86,0.83
-01585,25,027,25027,4554,2049,67843721,66174237,4554,2049,67843721,66174237,798552,326788,4090093562,3912876833,100,100,100,100,0.57,0.63,1.66,1.69
-01588,25,027,25027,9733,3903,23956819,22296389,9733,3903,23956819,22296389,798552,326788,4090093562,3912876833,100,100,100,100,1.22,1.19,0.59,0.57
-01590,25,027,25027,8875,3360,87084523,82903473,8875,3360,87084523,82903473,798552,326788,4090093562,3912876833,100,100,100,100,1.11,1.03,2.13,2.12
-01602,25,027,25027,22819,9451,15568473,14936885,22819,9451,15568473,14936885,798552,326788,4090093562,3912876833,100,100,100,100,2.86,2.89,0.38,0.38
-01603,25,027,25027,19916,7950,12032185,11691789,19916,7950,12032185,11691789,798552,326788,4090093562,3912876833,100,100,100,100,2.49,2.43,0.29,0.3
-01604,25,027,25027,34677,15570,17151931,16677756,34677,15570,17151931,16677756,798552,326788,4090093562,3912876833,100,100,100,100,4.34,4.76,0.42,0.43
-01605,25,027,25027,26221,11140,14953929,14612620,26221,11140,14953929,14612620,798552,326788,4090093562,3912876833,100,100,100,100,3.28,3.41,0.37,0.37
-01606,25,027,25027,19077,8449,15382096,15358057,19077,8449,15382096,15358057,798552,326788,4090093562,3912876833,100,100,100,100,2.39,2.59,0.38,0.39
-01607,25,027,25027,8351,3850,8336208,8199220,8351,3850,8336208,8199220,798552,326788,4090093562,3912876833,100,100,100,100,1.05,1.18,0.2,0.21
-01608,25,027,25027,3888,1743,1159110,1159110,3888,1743,1159110,1159110,798552,326788,4090093562,3912876833,100,100,100,100,0.49,0.53,0.03,0.03
-01609,25,027,25027,22421,8307,9950425,9893464,22421,8307,9950425,9893464,798552,326788,4090093562,3912876833,100,100,100,100,2.81,2.54,0.24,0.25
-01610,25,027,25027,23945,8321,5514985,5505953,23945,8321,5514985,5505953,798552,326788,4090093562,3912876833,100,100,100,100,3,2.55,0.13,0.14
-01611,25,027,25027,2242,916,9563165,8915204,2242,916,9563165,8915204,798552,326788,4090093562,3912876833,100,100,100,100,0.28,0.28,0.23,0.23
-01612,25,027,25027,4845,1608,41649133,39666695,4845,1608,41649133,39666695,798552,326788,4090093562,3912876833,100,100,100,100,0.61,0.49,1.02,1.01
-01701,25,017,25017,31217,12590,45739381,43923156,31217,12590,45739381,43923156,1503085,612004,2193874798,2118135038,100,100,100,100,2.08,2.06,2.08,2.07
-01702,25,017,25017,37206,14984,22929954,20957508,37206,14984,22929954,20957508,1503085,612004,2193874798,2118135038,100,100,100,100,2.48,2.45,1.05,0.99
-01718,25,017,25017,469,205,121367,121367,469,205,121367,121367,1503085,612004,2193874798,2118135038,100,100,100,100,0.03,0.03,0.01,0.01
-01719,25,017,25017,4996,2073,26956371,26640078,4996,2073,26956371,26640078,1503085,612004,2193874798,2118135038,100,100,100,100,0.33,0.34,1.23,1.26
-01720,25,017,25017,21361,8294,52170841,51057015,21361,8294,52170841,51057015,1503085,612004,2193874798,2118135038,100,100,100,100,1.42,1.36,2.38,2.41
-01721,25,017,25017,16593,6609,33329226,31933385,16593,6609,33329226,31933385,1503085,612004,2193874798,2118135038,100,100,100,100,1.1,1.08,1.52,1.51
-01730,25,017,25017,13221,5372,35938866,35478046,13221,5372,35938866,35478046,1503085,612004,2193874798,2118135038,100,100,100,100,0.88,0.88,1.64,1.67
-01731,25,017,25017,1396,477,2049705,2049705,1396,477,2049705,2049705,1503085,612004,2193874798,2118135038,100,100,100,100,0.09,0.08,0.09,0.1
-01740,25,027,25027,4897,1738,52024033,51675247,4897,1738,52024033,51675247,798552,326788,4090093562,3912876833,100,100,100,100,0.61,0.53,1.27,1.32
-01741,25,017,25017,4852,1758,40178059,39536091,4852,1758,40178059,39536091,1503085,612004,2193874798,2118135038,100,100,100,100,0.32,0.29,1.83,1.87
-01742,25,017,25017,17726,6964,66680738,63296150,17726,6964,66680738,63296150,1503085,612004,2193874798,2118135038,100,100,100,100,1.18,1.14,3.04,2.99
-01745,25,027,25027,397,188,1036564,1033541,397,188,1036564,1033541,798552,326788,4090093562,3912876833,100,100,100,100,0.05,0.06,0.03,0.03
-01746,25,017,25017,13547,5087,49360190,48288456,13547,5087,49360190,48288456,1503085,612004,2193874798,2118135038,100,100,100,100,0.9,0.83,2.25,2.28
-01747,25,027,25027,5911,2285,13836796,13392801,5911,2285,13836796,13392801,798552,326788,4090093562,3912876833,100,100,100,100,0.74,0.7,0.34,0.34
-01748,25,017,25017,14925,5128,72231852,68016796,14925,5128,72231852,68016796,1503085,612004,2193874798,2118135038,100,100,100,100,0.99,0.84,3.29,3.21
-01749,25,017,25017,19063,7998,30731622,29841347,19063,7998,30731622,29841347,1503085,612004,2193874798,2118135038,100,100,100,100,1.27,1.31,1.4,1.41
-01752,25,017,25017,38499,16416,57242239,54041301,38499,16416,57242239,54041301,1503085,612004,2193874798,2118135038,100,100,100,100,2.56,2.68,2.61,2.55
-01754,25,017,25017,10106,4447,13909289,13502214,10106,4447,13909289,13502214,1503085,612004,2193874798,2118135038,100,100,100,100,0.67,0.73,0.63,0.64
-01756,25,027,25027,5839,2091,46587953,46035300,5839,2091,46587953,46035300,798552,326788,4090093562,3912876833,100,100,100,100,0.73,0.64,1.14,1.18
-01757,25,027,25027,28061,11436,39249777,38538162,28061,11436,39249777,38538162,798552,326788,4090093562,3912876833,100,100,100,100,3.51,3.5,0.96,0.98
-01760,25,017,25017,32786,14039,40958348,38359306,32786,14039,40958348,38359306,1503085,612004,2193874798,2118135038,100,100,100,100,2.18,2.29,1.87,1.81
-01770,25,017,25017,4119,1495,41928276,40966896,4119,1495,41928276,40966896,1503085,612004,2193874798,2118135038,100,100,100,100,0.27,0.24,1.91,1.93
-01772,25,027,25027,9370,3272,39183173,35264800,9370,3272,39183173,35264800,798552,326788,4090093562,3912876833,100,100,100,100,1.17,1,0.96,0.9
-01773,25,017,25017,5112,2154,37269446,35266029,5112,2154,37269446,35266029,1503085,612004,2193874798,2118135038,100,100,100,100,0.34,0.35,1.7,1.66
-01775,25,017,25017,6590,2526,46579483,44839702,6590,2526,46579483,44839702,1503085,612004,2193874798,2118135038,100,100,100,100,0.44,0.41,2.12,2.12
-01776,25,017,25017,17659,5951,64022500,62778117,17659,5951,64022500,62778117,1503085,612004,2193874798,2118135038,100,100,100,100,1.17,0.97,2.92,2.96
-01778,25,017,25017,13109,5058,41469079,39388852,13109,5058,41469079,39388852,1503085,612004,2193874798,2118135038,100,100,100,100,0.87,0.83,1.89,1.86
-01801,25,017,25017,38903,16737,33576285,32769438,38903,16737,33576285,32769438,1503085,612004,2193874798,2118135038,100,100,100,100,2.59,2.73,1.53,1.55
-01803,25,017,25017,24487,9664,30616478,30291646,24487,9664,30616478,30291646,1503085,612004,2193874798,2118135038,100,100,100,100,1.63,1.58,1.4,1.43
-01810,25,009,25009,33201,12423,83322730,79897507,33201,12423,83322730,79897507,743159,306754,2145736850,1275732137,100,100,100,100,4.47,4.05,3.88,6.26
-01821,25,017,25017,30310,11159,43936785,42910631,30310,11159,43936785,42910631,1503085,612004,2193874798,2118135038,100,100,100,100,2.02,1.82,2,2.03
-01824,25,017,25017,24911,9849,46973027,45964727,24911,9849,46973027,45964727,1503085,612004,2193874798,2118135038,100,100,100,100,1.66,1.61,2.14,2.17
-01826,25,017,25017,29422,11332,55127924,53421277,29422,11332,55127924,53421277,1503085,612004,2193874798,2118135038,100,100,100,100,1.96,1.85,2.51,2.52
-01827,25,017,25017,3179,1098,43405300,42620556,3179,1098,43405300,42620556,1503085,612004,2193874798,2118135038,100,100,100,100,0.21,0.18,1.98,2.01
-01830,25,009,25009,25137,10751,39086891,35735901,25137,10751,39086891,35735901,743159,306754,2145736850,1275732137,100,100,100,100,3.38,3.5,1.82,2.8
-01832,25,009,25009,22060,9283,30671777,29420960,22060,9283,30671777,29420960,743159,306754,2145736850,1275732137,100,100,100,100,2.97,3.03,1.43,2.31
-01833,25,009,25009,8183,3044,34058061,33307258,8183,3044,34058061,33307258,743159,306754,2145736850,1275732137,100,100,100,100,1.1,0.99,1.59,2.61
-01834,25,009,25009,6459,2439,24339399,23008816,6459,2439,24339399,23008816,743159,306754,2145736850,1275732137,100,100,100,100,0.87,0.8,1.13,1.8
-01835,25,009,25009,13682,5623,22522419,20235250,13682,5623,22522419,20235250,743159,306754,2145736850,1275732137,100,100,100,100,1.84,1.83,1.05,1.59
-01840,25,009,25009,4733,2347,1491046,1290418,4733,2347,1491046,1290418,743159,306754,2145736850,1275732137,100,100,100,100,0.64,0.77,0.07,0.1
-01841,25,009,25009,47225,15506,8462635,8000223,47225,15506,8462635,8000223,743159,306754,2145736850,1275732137,100,100,100,100,6.35,5.05,0.39,0.63
-01843,25,009,25009,24425,9287,9306017,8726317,24425,9287,9306017,8726317,743159,306754,2145736850,1275732137,100,100,100,100,3.29,3.03,0.43,0.68
-01844,25,009,25009,47249,18337,59585740,57543453,47249,18337,59585740,57543453,743159,306754,2145736850,1275732137,100,100,100,100,6.36,5.98,2.78,4.51
-01845,25,009,25009,28352,10964,71854059,68133522,28352,10964,71854059,68133522,743159,306754,2145736850,1275732137,100,100,100,100,3.82,3.57,3.35,5.34
-01850,25,017,25017,15237,5938,3827642,3521737,15237,5938,3827642,3521737,1503085,612004,2193874798,2118135038,100,100,100,100,1.01,0.97,0.17,0.17
-01851,25,017,25017,30190,10760,8760973,8645533,30190,10760,8760973,8645533,1503085,612004,2193874798,2118135038,100,100,100,100,2.01,1.76,0.4,0.41
-01852,25,017,25017,33508,14430,13456103,12828750,33508,14430,13456103,12828750,1503085,612004,2193874798,2118135038,100,100,100,100,2.23,2.36,0.61,0.61
-01854,25,017,25017,27606,10315,11581153,10187861,27606,10315,11581153,10187861,1503085,612004,2193874798,2118135038,100,100,100,100,1.84,1.69,0.53,0.48
-01860,25,009,25009,6338,2555,22934411,21907317,6338,2555,22934411,21907317,743159,306754,2145736850,1275732137,100,100,100,100,0.85,0.83,1.07,1.72
-01862,25,017,25017,10227,3491,25009923,23934124,10227,3491,25009923,23934124,1503085,612004,2193874798,2118135038,100,100,100,100,0.68,0.57,1.14,1.13
-01863,25,017,25017,8891,3958,12815216,11973645,8891,3958,12815216,11973645,1503085,612004,2193874798,2118135038,100,100,100,100,0.59,0.65,0.58,0.57
-01864,25,017,25017,14892,5633,34956129,34032377,14892,5633,34956129,34032377,1503085,612004,2193874798,2118135038,100,100,100,100,0.99,0.92,1.59,1.61
-01867,25,017,25017,23956,9187,25781255,25733362,23956,9187,25781255,25733362,1503085,612004,2193874798,2118135038,100,100,100,100,1.59,1.5,1.18,1.21
-01876,25,017,25017,28667,10679,53916997,52981194,28667,10679,53916997,52981194,1503085,612004,2193874798,2118135038,100,100,100,100,1.91,1.74,2.46,2.5
-01879,25,017,25017,11305,4213,47104050,43464244,11305,4213,47104050,43464244,1503085,612004,2193874798,2118135038,100,100,100,100,0.75,0.69,2.15,2.05
-01880,25,017,25017,24733,10323,19289021,17889529,24733,10323,19289021,17889529,1503085,612004,2193874798,2118135038,100,100,100,100,1.65,1.69,0.88,0.84
-01886,25,017,25017,21951,7876,81245635,78391449,21951,7876,81245635,78391449,1503085,612004,2193874798,2118135038,100,100,100,100,1.46,1.29,3.7,3.7
-01887,25,017,25017,22325,7808,44436278,43971880,22325,7808,44436278,43971880,1503085,612004,2193874798,2118135038,100,100,100,100,1.49,1.28,2.03,2.08
-01890,25,017,25017,21382,7988,16433971,15615337,21382,7988,16433971,15615337,1503085,612004,2193874798,2118135038,100,100,100,100,1.42,1.31,0.75,0.74
-01901,25,009,25009,1689,1034,710073,641320,1689,1034,710073,641320,743159,306754,2145736850,1275732137,100,100,100,100,0.23,0.34,0.03,0.05
-01902,25,009,25009,45139,18354,6459527,6223889,45139,18354,6459527,6223889,743159,306754,2145736850,1275732137,100,100,100,100,6.07,5.98,0.3,0.49
-01904,25,009,25009,18203,7182,13012111,11708211,18203,7182,13012111,11708211,743159,306754,2145736850,1275732137,100,100,100,100,2.45,2.34,0.61,0.92
-01905,25,009,25009,25251,9187,10414499,9219345,25251,9187,10414499,9219345,743159,306754,2145736850,1275732137,100,100,100,100,3.4,2.99,0.49,0.72
-01906,25,009,25009,26660,10786,30579442,27973350,26660,10786,30579442,27973350,743159,306754,2145736850,1275732137,100,100,100,100,3.59,3.52,1.43,2.19
-01907,25,009,25009,14027,5960,8971263,7864226,14027,5960,8971263,7864226,743159,306754,2145736850,1275732137,100,100,100,100,1.89,1.94,0.42,0.62
-01908,25,009,25009,3410,1677,6268626,2708929,3410,1677,6268626,2708929,743159,306754,2145736850,1275732137,100,100,100,100,0.46,0.55,0.29,0.21
-01913,25,009,25009,16283,7110,35546679,31761151,16283,7110,35546679,31761151,743159,306754,2145736850,1275732137,100,100,100,100,2.19,2.32,1.66,2.49
-01915,25,009,25009,39502,16641,43049454,39091336,39502,16641,43049454,39091336,743159,306754,2145736850,1275732137,100,100,100,100,5.32,5.42,2.01,3.06
-01921,25,009,25009,7961,2756,63198987,61010486,7961,2756,63198987,61010486,743159,306754,2145736850,1275732137,100,100,100,100,1.07,0.9,2.95,4.78
-01922,25,009,25009,3108,1115,25608159,24831876,3108,1115,25608159,24831876,743159,306754,2145736850,1275732137,100,100,100,100,0.42,0.36,1.19,1.95
-01923,25,009,25009,26342,11135,36543285,34194563,26342,11135,36543285,34194563,743159,306754,2145736850,1275732137,100,100,100,100,3.54,3.63,1.7,2.68
-01929,25,009,25009,3504,1600,41312542,36187007,3504,1600,41312542,36187007,743159,306754,2145736850,1275732137,100,100,100,100,0.47,0.52,1.93,2.84
-01930,25,009,25009,28789,14557,81819822,67847425,28789,14557,81819822,67847425,743159,306754,2145736850,1275732137,100,100,100,100,3.87,4.75,3.81,5.32
-01937,25,009,25009,151,0,189212,189212,151,0,189212,189212,743159,306754,2145736850,1275732137,100,0,100,100,0.02,0,0.01,0.01
-01938,25,009,25009,13175,6006,92748140,78817223,13175,6006,92748140,78817223,743159,306754,2145736850,1275732137,100,100,100,100,1.77,1.96,4.32,6.18
-01940,25,009,25009,11909,4552,27714408,26158891,12108,4729,29031298,27320434,743159,306754,2145736850,1275732137,98.36,96.26,95.46,95.75,1.6,1.48,1.29,2.05
-01940,25,017,25017,199,177,1316890,1161543,12108,4729,29031298,27320434,1503085,612004,2193874798,2118135038,1.64,3.74,4.54,4.25,0.01,0.03,0.06,0.05
-01944,25,009,25009,5136,2394,27110707,23902799,5136,2394,27110707,23902799,743159,306754,2145736850,1275732137,100,100,100,100,0.69,0.78,1.26,1.87
-01945,25,009,25009,19808,8838,19916447,11360555,19808,8838,19916447,11360555,743159,306754,2145736850,1275732137,100,100,100,100,2.67,2.88,0.93,0.89
-01949,25,009,25009,8987,3045,37514914,34849382,8987,3045,37514914,34849382,743159,306754,2145736850,1275732137,100,100,100,100,1.21,0.99,1.75,2.73
-01950,25,009,25009,17416,8264,27607236,21621492,17416,8264,27607236,21621492,743159,306754,2145736850,1275732137,100,100,100,100,2.34,2.69,1.29,1.69
-01951,25,009,25009,3558,1821,42478856,35652314,3558,1821,42478856,35652314,743159,306754,2145736850,1275732137,100,100,100,100,0.48,0.59,1.98,2.79
-01952,25,009,25009,8283,4550,45998640,39960063,8283,4550,45998640,39960063,743159,306754,2145736850,1275732137,100,100,100,100,1.11,1.48,2.14,3.13
-01960,25,009,25009,50944,22024,42893728,41432495,50944,22024,42893728,41432495,743159,306754,2145736850,1275732137,100,100,100,100,6.86,7.18,2,3.25
-01966,25,009,25009,6952,4223,22274247,18106523,6952,4223,22274247,18106523,743159,306754,2145736850,1275732137,100,100,100,100,0.94,1.38,1.04,1.42
-01969,25,009,25009,5856,2253,49670289,45304086,5856,2253,49670289,45304086,743159,306754,2145736850,1275732137,100,100,100,100,0.79,0.73,2.31,3.55
-01970,25,009,25009,41109,19063,35200696,21002235,41109,19063,35200696,21002235,743159,306754,2145736850,1275732137,100,100,100,100,5.53,6.21,1.64,1.65
-01982,25,009,25009,7764,2880,38625713,36737604,7764,2880,38625713,36737604,743159,306754,2145736850,1275732137,100,100,100,100,1.04,0.94,1.8,2.88
-01983,25,009,25009,6089,2176,33205216,30880674,6089,2176,33205216,30880674,743159,306754,2145736850,1275732137,100,100,100,100,0.82,0.71,1.55,2.42
-01984,25,009,25009,4875,1430,21088423,19841456,4875,1430,21088423,19841456,743159,306754,2145736850,1275732137,100,100,100,100,0.66,0.47,0.98,1.56
-01985,25,009,25009,4235,1580,38137880,34838123,4235,1580,38137880,34838123,743159,306754,2145736850,1275732137,100,100,100,100,0.57,0.52,1.78,2.73
-02019,25,021,25021,16332,6365,48947521,47523223,16332,6365,48947521,47523223,670850,270359,1150853227,1025908386,100,100,100,100,2.43,2.35,4.25,4.63
-02021,25,021,25021,21561,8762,50797130,48682844,21561,8762,50797130,48682844,670850,270359,1150853227,1025908386,100,100,100,100,3.21,3.24,4.41,4.75
-02025,25,021,25021,7542,2980,28113135,25353993,7542,2980,28113135,25353993,670850,270359,1150853227,1025908386,100,100,100,100,1.12,1.1,2.44,2.47
-02026,25,021,25021,24711,10184,27570183,26532271,24711,10184,27570183,26532271,670850,270359,1150853227,1025908386,100,100,100,100,3.68,3.77,2.4,2.59
-02030,25,021,25021,5589,1969,39972802,39156781,5589,1969,39972802,39156781,670850,270359,1150853227,1025908386,100,100,100,100,0.83,0.73,3.47,3.82
-02032,25,021,25021,4226,1593,6214987,6059763,4226,1593,6214987,6059763,670850,270359,1150853227,1025908386,100,100,100,100,0.63,0.59,0.54,0.59
-02035,25,021,25021,16865,6895,53999352,51406167,16865,6895,53999352,51406167,670850,270359,1150853227,1025908386,100,100,100,100,2.51,2.55,4.69,5.01
-02038,25,021,25021,31635,11394,69999565,68961360,31635,11394,69999565,68961360,670850,270359,1150853227,1025908386,100,100,100,100,4.72,4.21,6.08,6.72
-02043,25,023,25023,22157,8953,59632953,57360231,22157,8953,59632953,57360231,494919,200161,2831511020,1706996627,100,100,100,100,4.48,4.47,2.11,3.36
-02045,25,023,25023,10293,5762,21121989,6884305,10293,5762,21121989,6884305,494919,200161,2831511020,1706996627,100,100,100,100,2.08,2.88,0.75,0.4
-02047,25,023,25023,180,264,641183,619346,180,264,641183,619346,494919,200161,2831511020,1706996627,100,100,100,100,0.04,0.13,0.02,0.04
-02048,25,005,25005,23184,8746,52891713,52040205,23184,8746,52891713,52040205,548285,230535,1790264845,1432510950,100,100,100,100,4.23,3.79,2.95,3.63
-02050,25,023,25023,25429,11292,86211534,75312115,25429,11292,86211534,75312115,494919,200161,2831511020,1706996627,100,100,100,100,5.14,5.64,3.04,4.41
-02052,25,021,25021,12024,4237,37906686,37301542,12024,4237,37906686,37301542,670850,270359,1150853227,1025908386,100,100,100,100,1.79,1.57,3.29,3.64
-02053,25,021,25021,12752,4613,30231188,29895562,12752,4613,30231188,29895562,670850,270359,1150853227,1025908386,100,100,100,100,1.9,1.71,2.63,2.91
-02054,25,021,25021,7891,3158,31738465,31135982,7891,3158,31738465,31135982,670850,270359,1150853227,1025908386,100,100,100,100,1.18,1.17,2.76,3.03
-02056,25,021,25021,10981,3121,39800663,38510383,10981,3121,39800663,38510383,670850,270359,1150853227,1025908386,100,100,100,100,1.64,1.15,3.46,3.75
-02061,25,023,25023,10506,3675,55050293,54233819,10506,3675,55050293,54233819,494919,200161,2831511020,1706996627,100,100,100,100,2.12,1.84,1.94,3.18
-02062,25,021,25021,28602,12479,27248037,26828047,28602,12479,27248037,26828047,670850,270359,1150853227,1025908386,100,100,100,100,4.26,4.62,2.37,2.62
-02066,25,023,25023,17656,7419,49522058,43831891,17656,7419,49522058,43831891,494919,200161,2831511020,1706996627,100,100,100,100,3.57,3.71,1.75,2.57
-02067,25,021,25021,17486,6414,61192313,58720809,17486,6414,61192313,58720809,670850,270359,1150853227,1025908386,100,100,100,100,2.61,2.37,5.32,5.72
-02071,25,021,25021,1707,321,2546608,2513156,1707,321,2546608,2513156,670850,270359,1150853227,1025908386,100,100,100,100,0.25,0.12,0.22,0.24
-02072,25,021,25021,26999,10799,42649510,41680231,26999,10799,42649510,41680231,670850,270359,1150853227,1025908386,100,100,100,100,4.02,3.99,3.71,4.06
-02081,25,021,25021,18472,7156,47837331,46419365,18472,7156,47837331,46419365,670850,270359,1150853227,1025908386,100,100,100,100,2.75,2.65,4.16,4.52
-02090,25,021,25021,14636,5438,28956332,28215944,14636,5438,28956332,28215944,670850,270359,1150853227,1025908386,100,100,100,100,2.18,2.01,2.52,2.75
-02093,25,021,25021,10955,3869,58563291,56218838,10955,3869,58563291,56218838,670850,270359,1150853227,1025908386,100,100,100,100,1.63,1.43,5.09,5.48
-02108,25,025,25025,3825,2278,354836,354836,3825,2278,354836,354836,722023,315522,311367505,150618894,100,100,100,100,0.53,0.72,0.11,0.24
-02109,25,025,25025,3771,2462,742345,449654,3771,2462,742345,449654,722023,315522,311367505,150618894,100,100,100,100,0.52,0.78,0.24,0.3
-02110,25,025,25025,1733,1264,714265,479769,1733,1264,714265,479769,722023,315522,311367505,150618894,100,100,100,100,0.24,0.4,0.23,0.32
-02111,25,025,25025,7383,3628,726900,669967,7383,3628,726900,669967,722023,315522,311367505,150618894,100,100,100,100,1.02,1.15,0.23,0.44
-02113,25,025,25025,6915,4682,260829,260829,6915,4682,260829,260829,722023,315522,311367505,150618894,100,100,100,100,0.96,1.48,0.08,0.17
-02114,25,025,25025,11999,7672,1467704,1164209,11999,7672,1467704,1164209,722023,315522,311367505,150618894,100,100,100,100,1.66,2.43,0.47,0.77
-02115,25,025,25025,28441,10838,1937858,1834246,28441,10838,1937858,1834246,722023,315522,311367505,150618894,100,100,100,100,3.94,3.43,0.62,1.22
-02116,25,025,25025,20628,12644,1898310,1632629,20628,12644,1898310,1632629,722023,315522,311367505,150618894,100,100,100,100,2.86,4.01,0.61,1.08
-02118,25,025,25025,26498,12967,2866026,2850698,26498,12967,2866026,2850698,722023,315522,311367505,150618894,100,100,100,100,3.67,4.11,0.92,1.89
-02119,25,025,25025,25346,11048,4136145,4136145,25346,11048,4136145,4136145,722023,315522,311367505,150618894,100,100,100,100,3.51,3.5,1.33,2.75
-02120,25,025,25025,15181,5335,1607730,1607730,15181,5335,1607730,1607730,722023,315522,311367505,150618894,100,100,100,100,2.1,1.69,0.52,1.07
-02121,25,025,25025,25978,10589,4543831,4520355,25978,10589,4543831,4520355,722023,315522,311367505,150618894,100,100,100,100,3.6,3.36,1.46,3
-02122,25,025,25025,23479,8887,6905036,5263269,23479,8887,6905036,5263269,722023,315522,311367505,150618894,100,100,100,100,3.25,2.82,2.22,3.49
-02124,25,025,25025,47783,19053,7963153,7777026,47783,19053,7963153,7777026,722023,315522,311367505,150618894,100,100,100,100,6.62,6.04,2.56,5.16
-02125,25,025,25025,33295,13263,6323074,5523791,33295,13263,6323074,5523791,722023,315522,311367505,150618894,100,100,100,100,4.61,4.2,2.03,3.67
-02126,25,025,25025,25562,10151,5455225,5392506,25562,10151,5455225,5392506,722023,315522,311367505,150618894,100,100,100,100,3.54,3.22,1.75,3.58
-02127,25,025,25025,31799,16409,6821036,5230991,31799,16409,6821036,5230991,722023,315522,311367505,150618894,100,100,100,100,4.4,5.2,2.19,3.47
-02128,25,025,25025,40508,15854,15513931,12561059,40508,15854,15513931,12561059,722023,315522,311367505,150618894,100,100,100,100,5.61,5.02,4.98,8.34
-02129,25,025,25025,16439,8648,4758847,3492181,16439,8648,4758847,3492181,722023,315522,311367505,150618894,100,100,100,100,2.28,2.74,1.53,2.32
-02130,25,025,25025,35401,16016,8964001,8635553,35401,16016,8964001,8635553,722023,315522,311367505,150618894,100,100,100,100,4.9,5.08,2.88,5.73
-02131,25,025,25025,29826,12286,6727291,6714525,29826,12286,6727291,6714525,722023,315522,311367505,150618894,100,100,100,100,4.13,3.89,2.16,4.46
-02132,25,025,25025,25861,11341,12061426,11813317,25861,11341,12061426,11813317,722023,315522,311367505,150618894,100,100,100,100,3.58,3.59,3.87,7.84
-02134,25,025,25025,21503,9664,3553121,3435273,21503,9664,3553121,3435273,722023,315522,311367505,150618894,100,100,100,100,2.98,3.06,1.14,2.28
-02135,25,025,25025,42780,20834,7396893,6824138,42780,20834,7396893,6824138,722023,315522,311367505,150618894,100,100,100,100,5.93,6.6,2.38,4.53
-02136,25,025,25025,28488,11092,12166506,11887342,28488,11092,12166506,11887342,722023,315522,311367505,150618894,100,100,100,100,3.95,3.52,3.91,7.89
-02138,25,017,25017,36314,14949,7936273,7097709,36314,14949,7936273,7097709,1503085,612004,2193874798,2118135038,100,100,100,100,2.42,2.44,0.36,0.34
-02139,25,017,25017,36349,15402,4399395,4031035,36349,15402,4399395,4031035,1503085,612004,2193874798,2118135038,100,100,100,100,2.42,2.52,0.2,0.19
-02140,25,017,25017,17607,8638,3041781,2987938,17607,8638,3041781,2987938,1503085,612004,2193874798,2118135038,100,100,100,100,1.17,1.41,0.14,0.14
-02141,25,017,25017,11910,6596,1686409,1657355,11910,6596,1686409,1657355,1503085,612004,2193874798,2118135038,100,100,100,100,0.79,1.08,0.08,0.08
-02142,25,017,25017,3141,1794,1293999,716170,3141,1794,1293999,716170,1503085,612004,2193874798,2118135038,100,100,100,100,0.21,0.29,0.06,0.03
-02143,25,017,25017,24514,11752,3997108,3981832,24514,11752,3997108,3981832,1503085,612004,2193874798,2118135038,100,100,100,100,1.63,1.92,0.18,0.19
-02144,25,017,25017,23891,11389,2808602,2802134,23891,11389,2808602,2802134,1503085,612004,2193874798,2118135038,100,100,100,100,1.59,1.86,0.13,0.13
-02145,25,017,25017,25439,10520,3849955,3615157,25439,10520,3849955,3615157,1503085,612004,2193874798,2118135038,100,100,100,100,1.69,1.72,0.18,0.17
-02148,25,017,25017,59503,25191,13163659,13063769,59503,25191,13163659,13063769,1503085,612004,2193874798,2118135038,100,100,100,100,3.96,4.12,0.6,0.62
-02149,25,017,25017,41550,16662,9496828,8866458,41550,16662,9503626,8873256,1503085,612004,2193874798,2118135038,100,100,99.93,99.92,2.76,2.72,0.43,0.42
-02149,25,025,25025,0,0,6798,6798,41550,16662,9503626,8873256,722023,315522,311367505,150618894,0,0,0.07,0.08,0,0,0,0
-02150,25,025,25025,35124,12596,6357041,5718794,35124,12596,6357041,5718794,722023,315522,311367505,150618894,100,100,100,100,4.86,3.99,2.04,3.8
-02151,25,025,25025,51808,22125,18481878,15190546,51808,22125,18481878,15190546,722023,315522,311367505,150618894,100,100,100,100,7.18,7.01,5.94,10.09
-02152,25,025,25025,17497,8320,8188224,5108308,17497,8320,8188224,5108308,722023,315522,311367505,150618894,100,100,100,100,2.42,2.64,2.63,3.39
-02155,25,017,25017,57964,24032,22685504,21229511,57964,24032,22685504,21229511,1503085,612004,2193874798,2118135038,100,100,100,100,3.86,3.93,1.03,1
-02163,25,025,25025,2582,712,288892,256727,2582,712,288892,256727,722023,315522,311367505,150618894,100,100,100,100,0.36,0.23,0.09,0.17
-02169,25,021,25021,55055,26481,27032720,23235908,55055,26481,27032720,23235908,670850,270359,1150853227,1025908386,100,100,100,100,8.21,9.79,2.35,2.26
-02170,25,021,25021,19505,8041,5580905,5394724,19505,8041,5580905,5394724,670850,270359,1150853227,1025908386,100,100,100,100,2.91,2.97,0.48,0.53
-02171,25,021,25021,17711,8316,11301906,6357853,17711,8316,11301906,6357853,670850,270359,1150853227,1025908386,100,100,100,100,2.64,3.08,0.98,0.62
-02176,25,017,25017,26983,11751,12337604,12117823,26983,11751,12337604,12117823,1503085,612004,2193874798,2118135038,100,100,100,100,1.8,1.92,0.56,0.57
-02180,25,017,25017,21437,9458,17221492,15589590,21437,9458,17221492,15589590,1503085,612004,2193874798,2118135038,100,100,100,100,1.43,1.55,0.78,0.74
-02184,25,021,25021,35744,14302,37717766,35608882,35744,14302,37717766,35608882,670850,270359,1150853227,1025908386,100,100,100,100,5.33,5.29,3.28,3.47
-02186,25,021,25021,27003,9700,34462425,33697230,27003,9700,34462425,33697230,670850,270359,1150853227,1025908386,100,100,100,100,4.03,3.59,2.99,3.28
-02188,25,021,25021,14608,6521,10011461,9632561,14608,6521,10011461,9632561,670850,270359,1150853227,1025908386,100,100,100,100,2.18,2.41,0.87,0.94
-02189,25,021,25021,14559,6292,10831274,9905564,14559,6292,10831274,9905564,670850,270359,1150853227,1025908386,100,100,100,100,2.17,2.33,0.94,0.97
-02190,25,021,25021,16119,6904,19811194,18436640,16119,6904,19811194,18436640,670850,270359,1150853227,1025908386,100,100,100,100,2.4,2.55,1.72,1.8
-02191,25,021,25021,8457,3763,7964209,5242350,8457,3763,7964209,5242350,670850,270359,1150853227,1025908386,100,100,100,100,1.26,1.39,0.69,0.51
-02199,25,025,25025,1146,927,148951,148951,1146,927,148951,148951,722023,315522,311367505,150618894,100,100,100,100,0.16,0.29,0.05,0.1
-02203,25,025,25025,0,0,80317,80317,0,0,80317,80317,722023,315522,311367505,150618894,0,0,100,100,0,0,0.03,0.05
-02210,25,025,25025,2090,1358,3803771,2399614,2090,1358,3803771,2399614,722023,315522,311367505,150618894,100,100,100,100,0.29,0.43,1.22,1.59
-02215,25,021,25021,1,1,90469,90469,26125,9324,2259090,1979040,670850,270359,1150853227,1025908386,0,0.01,4,4.57,0,0,0.01,0.01
-02215,25,025,25025,26124,9323,2168621,1888571,26125,9324,2259090,1979040,722023,315522,311367505,150618894,100,99.99,96,95.43,3.62,2.95,0.7,1.25
-02301,25,023,25023,61025,23673,32646300,32204729,61025,23673,32646300,32204729,494919,200161,2831511020,1706996627,100,100,100,100,12.33,11.83,1.15,1.89
-02302,25,023,25023,32741,11857,23092378,23025347,32741,11857,23092378,23025347,494919,200161,2831511020,1706996627,100,100,100,100,6.62,5.92,0.82,1.35
-02322,25,021,25021,4356,1769,11752186,11112284,4356,1769,11752186,11112284,670850,270359,1150853227,1025908386,100,100,100,100,0.65,0.65,1.02,1.08
-02324,25,023,25023,26563,8336,73584125,70749309,26563,8336,73584125,70749309,494919,200161,2831511020,1706996627,100,100,100,100,5.37,4.16,2.6,4.14
-02330,25,023,25023,11509,4600,102911093,96872155,11509,4600,102911093,96872155,494919,200161,2831511020,1706996627,100,100,100,100,2.33,2.3,3.63,5.68
-02332,25,023,25023,15059,5875,72142271,61481268,15059,5875,72142271,61481268,494919,200161,2831511020,1706996627,100,100,100,100,3.04,2.94,2.55,3.6
-02333,25,023,25023,13794,4906,45413596,44570841,13794,4906,45413596,44570841,494919,200161,2831511020,1706996627,100,100,100,100,2.79,2.45,1.6,2.61
-02338,25,023,25023,7518,3014,45053248,41448333,7518,3014,45053248,41448333,494919,200161,2831511020,1706996627,100,100,100,100,1.52,1.51,1.59,2.43
-02339,25,023,25023,13879,4852,40646103,40427614,13879,4852,40646103,40427614,494919,200161,2831511020,1706996627,100,100,100,100,2.8,2.42,1.44,2.37
-02341,25,023,25023,10218,3593,40793670,38991864,10218,3593,40793670,38991864,494919,200161,2831511020,1706996627,100,100,100,100,2.06,1.8,1.44,2.28
-02343,25,021,25021,10745,4261,18427001,18146751,10745,4261,18427001,18146751,670850,270359,1150853227,1025908386,100,100,100,100,1.6,1.58,1.6,1.77
-02346,25,023,25023,23106,9020,186332041,178363551,23106,9020,186332041,178363551,494919,200161,2831511020,1706996627,100,100,100,100,4.67,4.51,6.58,10.45
-02347,25,023,25023,10612,4180,94113148,77093626,10612,4180,94113148,77093626,494919,200161,2831511020,1706996627,100,100,100,100,2.14,2.09,3.32,4.52
-02351,25,023,25023,16029,6399,25624795,25007126,16029,6399,25624795,25007126,494919,200161,2831511020,1706996627,100,100,100,100,3.24,3.2,0.9,1.46
-02356,25,005,25005,12564,4406,36320730,35492978,12564,4406,36320730,35492978,548285,230535,1790264845,1432510950,100,100,100,100,2.29,1.91,2.03,2.48
-02357,25,005,25005,1360,8,1299914,1246186,1360,8,1299914,1246186,548285,230535,1790264845,1432510950,100,100,100,100,0.25,0,0.07,0.09
-02359,25,023,25023,17828,6548,60813159,56402221,17828,6548,60813159,56402221,494919,200161,2831511020,1706996627,100,100,100,100,3.6,3.27,2.15,3.3
-02360,25,023,25023,56271,24800,281313710,247368929,56271,24800,281313710,247368929,494919,200161,2831511020,1706996627,100,100,100,100,11.37,12.39,9.94,14.49
-02364,25,023,25023,12629,5010,51262340,48321362,12629,5010,51262340,48321362,494919,200161,2831511020,1706996627,100,100,100,100,2.55,2.5,1.81,2.83
-02366,25,023,25023,197,0,2521348,2451742,197,0,2521348,2451742,494919,200161,2831511020,1706996627,100,0,100,100,0.04,0,0.09,0.14
-02367,25,023,25023,2820,1043,39111171,38005424,2820,1043,39111171,38005424,494919,200161,2831511020,1706996627,100,100,100,100,0.57,0.52,1.38,2.23
-02368,25,021,25021,32158,12021,27614680,26096452,32158,12021,27614680,26096452,670850,270359,1150853227,1025908386,100,100,100,100,4.79,4.45,2.4,2.54
-02370,25,023,25023,17489,7051,26922451,26704840,17489,7051,26922451,26704840,494919,200161,2831511020,1706996627,100,100,100,100,3.53,3.52,0.95,1.56
-02375,25,005,25005,9188,3741,38089478,37729521,9188,3741,38089478,37729521,548285,230535,1790264845,1432510950,100,100,100,100,1.68,1.62,2.13,2.63
-02379,25,023,25023,6916,2669,40595479,39681845,6916,2669,40595479,39681845,494919,200161,2831511020,1706996627,100,100,100,100,1.4,1.33,1.43,2.32
-02382,25,023,25023,14489,5522,18033377,17974070,14489,5522,18033377,17974070,494919,200161,2831511020,1706996627,100,100,100,100,2.93,2.76,0.64,1.05
-02420,25,017,25017,14052,5251,17179161,17052453,14052,5251,17179161,17052453,1503085,612004,2193874798,2118135038,100,100,100,100,0.93,0.86,0.78,0.81
-02421,25,017,25017,17342,6768,25928094,25510908,17342,6768,25928094,25510908,1503085,612004,2193874798,2118135038,100,100,100,100,1.15,1.11,1.18,1.2
-02445,25,021,25021,20679,8974,6860356,6740785,20679,8974,6860356,6740785,670850,270359,1150853227,1025908386,100,100,100,100,3.08,3.32,0.6,0.66
-02446,25,021,25021,29311,14229,3345617,3333660,29311,14229,3345617,3333660,670850,270359,1150853227,1025908386,100,100,100,100,4.37,5.26,0.29,0.32
-02451,25,017,25017,17426,7898,16132318,14303526,17426,7898,16132318,14303526,1503085,612004,2193874798,2118135038,100,100,100,100,1.16,1.29,0.74,0.68
-02452,25,017,25017,14238,5033,9666803,9580492,14238,5033,9666803,9580492,1503085,612004,2193874798,2118135038,100,100,100,100,0.95,0.82,0.44,0.45
-02453,25,017,25017,28968,11995,9797973,9061760,28968,11995,9797973,9061760,1503085,612004,2193874798,2118135038,100,100,100,100,1.93,1.96,0.45,0.43
-02457,25,021,25021,1432,90,413241,413241,1432,90,413241,413241,670850,270359,1150853227,1025908386,100,100,100,100,0.21,0.03,0.04,0.04
-02458,25,017,25017,12131,5341,5282876,5185782,12131,5341,5282876,5185782,1503085,612004,2193874798,2118135038,100,100,100,100,0.81,0.87,0.24,0.24
-02459,25,017,25017,19095,6763,13180811,12962330,19095,6763,13180811,12962330,1503085,612004,2193874798,2118135038,100,100,100,100,1.27,1.11,0.6,0.61
-02460,25,017,25017,8742,3774,3504226,3480934,8742,3774,3504226,3480934,1503085,612004,2193874798,2118135038,100,100,100,100,0.58,0.62,0.16,0.16
-02461,25,017,25017,7059,2771,3803870,3767371,7059,2771,3803870,3767371,1503085,612004,2193874798,2118135038,100,100,100,100,0.47,0.45,0.17,0.18
-02462,25,017,25017,1554,668,1439067,1369318,1554,668,1439067,1369318,1503085,612004,2193874798,2118135038,100,100,100,100,0.1,0.11,0.07,0.06
-02464,25,017,25017,2953,1287,1492648,1463154,2953,1287,1492648,1463154,1503085,612004,2193874798,2118135038,100,100,100,100,0.2,0.21,0.07,0.07
-02465,25,017,25017,11710,4520,5810641,5809240,11710,4520,5810641,5809240,1503085,612004,2193874798,2118135038,100,100,100,100,0.78,0.74,0.26,0.27
-02466,25,017,25017,8096,3090,4852383,4638221,8096,3090,4852383,4638221,1503085,612004,2193874798,2118135038,100,100,100,100,0.54,0.5,0.22,0.22
-02467,25,017,25017,8523,2500,3787741,3687773,22491,7000,12760960,12618589,1503085,612004,2193874798,2118135038,37.9,35.71,29.68,29.22,0.57,0.41,0.17,0.17
-02467,25,021,25021,8741,3244,7349037,7317482,22491,7000,12760960,12618589,670850,270359,1150853227,1025908386,38.86,46.34,57.59,57.99,1.3,1.2,0.64,0.71
-02467,25,025,25025,5227,1256,1624182,1613334,22491,7000,12760960,12618589,722023,315522,311367505,150618894,23.24,17.94,12.73,12.79,0.72,0.4,0.52,1.07
-02468,25,017,25017,5273,1930,3890421,3833292,5273,1930,3890421,3833292,1503085,612004,2193874798,2118135038,100,100,100,100,0.35,0.32,0.18,0.18
-02472,25,017,25017,32014,15622,10761083,10440627,32014,15622,10761083,10440627,1503085,612004,2193874798,2118135038,100,100,100,100,2.13,2.55,0.49,0.49
-02474,25,017,25017,26312,12317,8612653,7905847,26312,12317,8612653,7905847,1503085,612004,2193874798,2118135038,100,100,100,100,1.75,2.01,0.39,0.37
-02476,25,017,25017,16532,7657,5613766,5422176,16532,7657,5613766,5422176,1503085,612004,2193874798,2118135038,100,100,100,100,1.1,1.25,0.26,0.26
-02478,25,017,25017,24664,10158,12220923,12035126,24664,10158,12220923,12035126,1503085,612004,2193874798,2118135038,100,100,100,100,1.64,1.66,0.56,0.57
-02481,25,021,25021,16244,5044,14859601,14612716,16244,5044,14859601,14612716,670850,270359,1150853227,1025908386,100,100,100,100,2.42,1.87,1.29,1.42
-02482,25,021,25021,10306,4055,11941633,10898492,10306,4055,11941633,10898492,670850,270359,1150853227,1025908386,100,100,100,100,1.54,1.5,1.04,1.06
-02492,25,021,25021,19931,7382,25585520,24675395,19931,7382,25585520,24675395,670850,270359,1150853227,1025908386,100,100,100,100,2.97,2.73,2.22,2.41
-02493,25,017,25017,11261,4008,44891718,43574801,11261,4008,44891718,43574801,1503085,612004,2193874798,2118135038,100,100,100,100,0.75,0.65,2.05,2.06
-02494,25,021,25021,8955,3740,7386603,7166369,8955,3740,7386603,7166369,670850,270359,1150853227,1025908386,100,100,100,100,1.33,1.38,0.64,0.7
-02532,25,001,25001,10723,5228,38608260,32168633,12690,6601,43780849,36913958,215888,160281,3381326354,1019738402,84.5,79.2,88.19,87.14,4.97,3.26,1.14,3.15
-02532,25,023,25023,1967,1373,5172589,4745325,12690,6601,43780849,36913958,494919,200161,2831511020,1706996627,15.5,20.8,11.81,12.86,0.4,0.69,0.18,0.28
-02534,25,001,25001,842,657,7413771,5920954,842,657,7413771,5920954,215888,160281,3381326354,1019738402,100,100,100,100,0.39,0.41,0.22,0.58
-02535,25,007,25007,1177,2109,128994448,63129227,1177,2109,128994448,63129227,16535,17188,1271583949,267403794,100,100,100,100,7.12,12.27,10.14,23.61
-02536,25,001,25001,19583,11956,80762801,71696166,19583,11956,80762801,71696166,215888,160281,3381326354,1019738402,100,100,100,100,9.07,7.46,2.39,7.03
-02537,25,001,25001,6293,3099,32924886,31330309,6293,3099,32924886,31330309,215888,160281,3381326354,1019738402,100,100,100,100,2.91,1.93,0.97,3.07
-02538,25,023,25023,3603,1739,12986018,11786097,3603,1739,12986018,11786097,494919,200161,2831511020,1706996627,100,100,100,100,0.73,0.87,0.46,0.69
-02539,25,007,25007,4067,5220,122540309,69429046,4067,5220,122540309,69429046,16535,17188,1271583949,267403794,100,100,100,100,24.6,30.37,9.64,25.96
-02540,25,001,25001,8221,6605,32296720,27746696,8221,6605,32296720,27746696,215888,160281,3381326354,1019738402,100,100,100,100,3.81,4.12,0.96,2.72
-02542,25,001,25001,1139,449,79704562,79576588,1139,449,79704562,79576588,215888,160281,3381326354,1019738402,100,100,100,100,0.53,0.28,2.36,7.8
-02543,25,001,25001,612,816,7082922,4665300,635,863,78073707,25723427,215888,160281,3381326354,1019738402,96.38,94.55,9.07,18.14,0.28,0.51,0.21,0.46
-02543,25,007,25007,23,47,70990785,21058127,635,863,78073707,25723427,16535,17188,1271583949,267403794,3.62,5.45,90.93,81.86,0.14,0.27,5.58,7.88
-02553,25,001,25001,226,176,2405394,636142,226,176,2405394,636142,215888,160281,3381326354,1019738402,100,100,100,100,0.1,0.11,0.07,0.06
-02554,25,019,25019,9852,10393,144750935,101337719,9852,10393,144750935,101337719,10172,11618,786463817,116471398,100,100,100,100,96.85,89.46,18.41,87.01
-02556,25,001,25001,3115,2593,11198549,10034104,3115,2593,11198549,10034104,215888,160281,3381326354,1019738402,100,100,100,100,1.44,1.62,0.33,0.98
-02557,25,007,25007,4491,4333,29785314,18660871,4491,4333,29785314,18660871,16535,17188,1271583949,267403794,100,100,100,100,27.16,25.21,2.34,6.98
-02558,25,023,25023,2156,1792,5897752,3183300,2156,1792,5897752,3183300,494919,200161,2831511020,1706996627,100,100,100,100,0.44,0.9,0.21,0.19
-02559,25,001,25001,3376,2605,16874871,13033944,3376,2605,16874871,13033944,215888,160281,3381326354,1019738402,100,100,100,100,1.56,1.63,0.5,1.28
-02561,25,001,25001,539,266,1810204,1591817,539,266,1810204,1591817,215888,160281,3381326354,1019738402,100,100,100,100,0.25,0.17,0.05,0.16
-02562,25,001,25001,2977,1574,9509307,8673478,2977,1574,9509307,8673478,215888,160281,3381326354,1019738402,100,100,100,100,1.38,0.98,0.28,0.85
-02563,25,001,25001,10359,4742,36943662,34195598,10359,4742,36943662,34195598,215888,160281,3381326354,1019738402,100,100,100,100,4.8,2.96,1.09,3.35
-02564,25,019,25019,310,1203,17685001,14939825,310,1203,17685001,14939825,10172,11618,786463817,116471398,100,100,100,100,3.05,10.35,2.25,12.83
-02568,25,007,25007,4000,3113,27338241,17279816,4000,3113,27338241,17279816,16535,17188,1271583949,267403794,100,100,100,100,24.19,18.11,2.15,6.46
-02571,25,023,25023,10481,5629,63993037,51545392,10481,5629,63993037,51545392,494919,200161,2831511020,1706996627,100,100,100,100,2.12,2.81,2.26,3.02
-02575,25,007,25007,2725,2198,75784735,64751624,2725,2198,75784735,64751624,16535,17188,1271583949,267403794,100,100,100,100,16.48,12.79,5.96,24.21
-02576,25,023,25023,3754,1775,26369196,25281005,3754,1775,26369196,25281005,494919,200161,2831511020,1706996627,100,100,100,100,0.76,0.89,0.93,1.48
-02584,25,019,25019,10,22,193854,193854,10,22,193854,193854,10172,11618,786463817,116471398,100,100,100,100,0.1,0.19,0.02,0.17
-02601,25,001,25001,14089,8062,24404619,22253040,14089,8062,24404619,22253040,215888,160281,3381326354,1019738402,100,100,100,100,6.53,5.03,0.72,2.18
-02630,25,001,25001,1850,1142,15612350,10386956,1850,1142,15612350,10386956,215888,160281,3381326354,1019738402,100,100,100,100,0.86,0.71,0.46,1.02
-02631,25,001,25001,9679,7838,64100674,56908227,9679,7838,64100674,56908227,215888,160281,3381326354,1019738402,100,100,100,100,4.48,4.89,1.9,5.58
-02632,25,001,25001,10742,6171,22741018,18960855,10742,6171,22741018,18960855,215888,160281,3381326354,1019738402,100,100,100,100,4.98,3.85,0.67,1.86
-02633,25,001,25001,3884,4576,32196244,19564858,3884,4576,32196244,19564858,215888,160281,3381326354,1019738402,100,100,100,100,1.8,2.85,0.95,1.92
-02635,25,001,25001,3296,2184,17121876,14312729,3296,2184,17121876,14312729,215888,160281,3381326354,1019738402,100,100,100,100,1.53,1.36,0.51,1.4
-02637,25,001,25001,253,149,1889214,1811366,253,149,1889214,1811366,215888,160281,3381326354,1019738402,100,100,100,100,0.12,0.09,0.06,0.18
-02638,25,001,25001,3207,3130,16788683,15284718,3207,3130,16788683,15284718,215888,160281,3381326354,1019738402,100,100,100,100,1.49,1.95,0.5,1.5
-02639,25,001,25001,2875,4912,8119476,7165342,2875,4912,8119476,7165342,215888,160281,3381326354,1019738402,100,100,100,100,1.33,3.06,0.24,0.7
-02641,25,001,25001,532,637,5970118,5286447,532,637,5970118,5286447,215888,160281,3381326354,1019738402,100,100,100,100,0.25,0.4,0.18,0.52
-02642,25,001,25001,4937,5925,44877686,35941612,4937,5925,44877686,35941612,215888,160281,3381326354,1019738402,100,100,100,100,2.29,3.7,1.33,3.52
-02643,25,001,25001,26,85,9562353,4904568,26,85,9562353,4904568,215888,160281,3381326354,1019738402,100,100,100,100,0.01,0.05,0.28,0.48
-02644,25,001,25001,3955,1480,9795522,9225733,3955,1480,9795522,9225733,215888,160281,3381326354,1019738402,100,100,100,100,1.83,0.92,0.29,0.9
-02645,25,001,25001,9663,6222,47715808,43109614,9663,6222,47715808,43109614,215888,160281,3381326354,1019738402,100,100,100,100,4.48,3.88,1.41,4.23
-02646,25,001,25001,1676,2621,8599986,7798581,1676,2621,8599986,7798581,215888,160281,3381326354,1019738402,100,100,100,100,0.78,1.64,0.25,0.76
-02647,25,001,25001,129,260,1704381,1226877,129,260,1704381,1226877,215888,160281,3381326354,1019738402,100,100,100,100,0.06,0.16,0.05,0.12
-02648,25,001,25001,7301,3188,26693568,24027628,7301,3188,26693568,24027628,215888,160281,3381326354,1019738402,100,100,100,100,3.38,1.99,0.79,2.36
-02649,25,001,25001,14006,9887,70840183,60208417,14006,9887,70840183,60208417,215888,160281,3381326354,1019738402,100,100,100,100,6.49,6.17,2.1,5.9
-02650,25,001,25001,848,910,4470323,3744803,848,910,4470323,3744803,215888,160281,3381326354,1019738402,100,100,100,100,0.39,0.57,0.13,0.37
-02651,25,001,25001,16,30,181584,181584,16,30,181584,181584,215888,160281,3381326354,1019738402,100,100,100,100,0.01,0.02,0.01,0.02
-02652,25,001,25001,1175,1683,27192151,20714250,1175,1683,27192151,20714250,215888,160281,3381326354,1019738402,100,100,100,100,0.54,1.05,0.8,2.03
-02653,25,001,25001,5911,5303,44847676,31186211,5911,5303,44847676,31186211,215888,160281,3381326354,1019738402,100,100,100,100,2.74,3.31,1.33,3.06
-02655,25,001,25001,3518,3053,21470529,16911218,3518,3053,21470529,16911218,215888,160281,3381326354,1019738402,100,100,100,100,1.63,1.9,0.63,1.66
-02657,25,001,25001,2942,4494,37814129,25047886,2942,4494,37814129,25047886,215888,160281,3381326354,1019738402,100,100,100,100,1.36,2.8,1.12,2.46
-02659,25,001,25001,1108,1297,5915080,5298594,1108,1297,5915080,5298594,215888,160281,3381326354,1019738402,100,100,100,100,0.51,0.81,0.17,0.52
-02660,25,001,25001,6261,4551,21333771,19964838,6261,4551,21333771,19964838,215888,160281,3381326354,1019738402,100,100,100,100,2.9,2.84,0.63,1.96
-02663,25,001,25001,173,412,6528203,3658101,173,412,6528203,3658101,215888,160281,3381326354,1019738402,100,100,100,100,0.08,0.26,0.19,0.36
-02664,25,001,25001,9371,7062,20229062,17964910,9371,7062,20229062,17964910,215888,160281,3381326354,1019738402,100,100,100,100,4.34,4.41,0.6,1.76
-02666,25,001,25001,828,1390,37735228,32944245,828,1390,37735228,32944245,215888,160281,3381326354,1019738402,100,100,100,100,0.38,0.87,1.12,3.23
-02667,25,001,25001,2580,3902,64394784,48249844,2580,3902,64394784,48249844,215888,160281,3381326354,1019738402,100,100,100,100,1.2,2.43,1.9,4.73
-02668,25,001,25001,3278,1494,45394392,39046863,3278,1494,45394392,39046863,215888,160281,3381326354,1019738402,100,100,100,100,1.52,0.93,1.34,3.83
-02669,25,001,25001,285,550,2824556,2314379,285,550,2824556,2314379,215888,160281,3381326354,1019738402,100,100,100,100,0.13,0.34,0.08,0.23
-02670,25,001,25001,1307,2330,7087914,5407196,1307,2330,7087914,5407196,215888,160281,3381326354,1019738402,100,100,100,100,0.61,1.45,0.21,0.53
-02671,25,001,25001,1023,1533,5529939,5215276,1023,1533,5529939,5215276,215888,160281,3381326354,1019738402,100,100,100,100,0.47,0.96,0.16,0.51
-02672,25,001,25001,180,325,1398234,1280228,180,325,1398234,1280228,215888,160281,3381326354,1019738402,100,100,100,100,0.08,0.2,0.04,0.13
-02673,25,001,25001,8402,6677,32684272,25868405,8402,6677,32684272,25868405,215888,160281,3381326354,1019738402,100,100,100,100,3.89,4.17,0.97,2.54
-02675,25,001,25001,6577,4040,25305817,23386325,6577,4040,25305817,23386325,215888,160281,3381326354,1019738402,100,100,100,100,3.05,2.52,0.75,2.29
-02702,25,005,25005,4125,1546,46427638,43494960,4125,1546,46427638,43494960,548285,230535,1790264845,1432510950,100,100,100,100,0.75,0.67,2.59,3.04
-02703,25,005,25005,43593,18019,72031349,69448027,43593,18019,72031349,69448027,548285,230535,1790264845,1432510950,100,100,100,100,7.95,7.82,4.02,4.85
-02713,25,007,25007,52,168,31423072,13095083,52,168,31423072,13095083,16535,17188,1271583949,267403794,100,100,100,100,0.31,0.98,2.47,4.9
-02715,25,005,25005,3123,1124,31009667,29662098,3123,1124,31009667,29662098,548285,230535,1790264845,1432510950,100,100,100,100,0.57,0.49,1.73,2.07
-02717,25,005,25005,4745,1771,47854624,45791704,4745,1771,47854624,45791704,548285,230535,1790264845,1432510950,100,100,100,100,0.87,0.77,2.67,3.2
-02718,25,005,25005,6655,2442,27646951,26793703,6655,2442,27646951,26793703,548285,230535,1790264845,1432510950,100,100,100,100,1.21,1.06,1.54,1.87
-02719,25,005,25005,15873,7475,40739604,31947040,15873,7475,40739604,31947040,548285,230535,1790264845,1432510950,100,100,100,100,2.9,3.24,2.28,2.23
-02720,25,005,25005,30287,14347,32520147,28154770,30287,14347,32520147,28154770,548285,230535,1790264845,1432510950,100,100,100,100,5.52,6.22,1.82,1.97
-02721,25,005,25005,26290,12538,15703920,10598682,26290,12538,15703920,10598682,548285,230535,1790264845,1432510950,100,100,100,100,4.79,5.44,0.88,0.74
-02723,25,005,25005,14767,7198,4705889,4136768,14767,7198,4705889,4136768,548285,230535,1790264845,1432510950,100,100,100,100,2.69,3.12,0.26,0.29
-02724,25,005,25005,16908,8465,6286640,4811066,16908,8465,6286640,4811066,548285,230535,1790264845,1432510950,100,100,100,100,3.08,3.67,0.35,0.34
-02725,25,005,25005,2631,1035,12970467,6146870,2631,1035,12970467,6146870,548285,230535,1790264845,1432510950,100,100,100,100,0.48,0.45,0.72,0.43
-02726,25,005,25005,15534,6359,17835375,14313447,15534,6359,17835375,14313447,548285,230535,1790264845,1432510950,100,100,100,100,2.83,2.76,1,1
-02738,25,023,25023,4907,2445,51680545,36242423,4907,2445,51680545,36242423,494919,200161,2831511020,1706996627,100,100,100,100,0.99,1.22,1.83,2.12
-02739,25,023,25023,6045,3262,50606071,44939290,6045,3262,50606071,44939290,494919,200161,2831511020,1706996627,100,100,100,100,1.22,1.63,1.79,2.63
-02740,25,005,25005,43087,19943,16844411,14724476,43087,19943,16844411,14724476,548285,230535,1790264845,1432510950,100,100,100,100,7.86,8.65,0.94,1.03
-02743,25,005,25005,10307,4121,49081949,47725420,10307,4121,49081949,47725420,548285,230535,1790264845,1432510950,100,100,100,100,1.88,1.79,2.74,3.33
-02744,25,005,25005,11900,5340,4688388,3342654,11900,5340,4688388,3342654,548285,230535,1790264845,1432510950,100,100,100,100,2.17,2.32,0.26,0.23
-02745,25,005,25005,24576,10769,27328508,26749138,24576,10769,27328508,26749138,548285,230535,1790264845,1432510950,100,100,100,100,4.48,4.67,1.53,1.87
-02746,25,005,25005,15342,6812,5792344,5480318,15342,6812,5792344,5480318,548285,230535,1790264845,1432510950,100,100,100,100,2.8,2.95,0.32,0.38
-02747,25,005,25005,22927,7014,130318593,126401587,22927,7014,130318593,126401587,548285,230535,1790264845,1432510950,100,100,100,100,4.18,3.04,7.28,8.82
-02748,25,005,25005,11442,5519,66393544,58249951,11442,5519,66393544,58249951,548285,230535,1790264845,1432510950,100,100,100,100,2.09,2.39,3.71,4.07
-02760,25,005,25005,26739,10904,47878790,46544694,26739,10904,47878790,46544694,548285,230535,1790264845,1432510950,100,100,100,100,4.88,4.73,2.67,3.25
-02762,25,021,25021,8264,3482,29832828,28482636,8264,3482,29832828,28482636,670850,270359,1150853227,1025908386,100,100,100,100,1.23,1.29,2.59,2.78
-02763,25,005,25005,1973,692,2367104,2336585,1973,692,2367104,2336585,548285,230535,1790264845,1432510950,100,100,100,100,0.36,0.3,0.13,0.16
-02764,25,005,25005,3988,1476,27586228,27437198,3988,1476,27586228,27437198,548285,230535,1790264845,1432510950,100,100,100,100,0.73,0.64,1.54,1.92
-02766,25,005,25005,19031,6741,75919193,72033187,19031,6741,75919193,72033187,548285,230535,1790264845,1432510950,100,100,100,100,3.47,2.92,4.24,5.03
-02767,25,005,25005,13566,5142,62445876,61665066,13566,5142,62445876,61665066,548285,230535,1790264845,1432510950,100,100,100,100,2.47,2.23,3.49,4.3
-02769,25,005,25005,11608,4280,122978185,121568446,11608,4280,122978185,121568446,548285,230535,1790264845,1432510950,100,100,100,100,2.12,1.86,6.87,8.49
-02770,25,023,25023,5093,1833,89560488,83306341,5093,1833,89560488,83306341,494919,200161,2831511020,1706996627,100,100,100,100,1.03,0.92,3.16,4.88
-02771,25,005,25005,13708,5292,48210299,47566149,13708,5292,48210299,47566149,548285,230535,1790264845,1432510950,100,100,100,100,2.5,2.3,2.69,3.32
-02777,25,005,25005,15840,6334,65438271,58720360,15840,6334,65438271,58720360,548285,230535,1790264845,1432510950,100,100,100,100,2.89,2.75,3.66,4.1
-02779,25,005,25005,6411,2187,45134657,42768262,6411,2187,45134657,42768262,548285,230535,1790264845,1432510950,100,100,100,100,1.17,0.95,2.52,2.99
-02780,25,005,25005,49036,21378,89135146,85565377,49036,21378,89135146,85565377,548285,230535,1790264845,1432510950,100,100,100,100,8.94,9.27,4.98,5.97
-02790,25,005,25005,15717,7086,165362545,139091966,15717,7086,165362545,139091966,548285,230535,1790264845,1432510950,100,100,100,100,2.87,3.07,9.24,9.71
-02791,25,005,25005,246,277,2741220,2728823,246,277,2741220,2728823,548285,230535,1790264845,1432510950,100,100,100,100,0.04,0.12,0.15,0.19
-02802,44,007,44007,786,450,554384,506432,786,450,554384,506432,626667,264835,1128342489,1060604571,100,100,100,100,0.13,0.17,0.05,0.05
-02804,44,009,44009,2607,1051,26384194,26151288,2607,1051,26384194,26151288,126979,62206,1457550702,852713750,100,100,100,100,2.05,1.69,1.81,3.07
-02806,44,001,44001,16310,6386,39969639,21277195,16310,6386,39969639,21277195,49875,20850,115901384,62584939,100,100,100,100,32.7,30.63,34.49,34
-02807,44,009,44009,1051,1808,31779579,23521349,1051,1808,31779579,23521349,126979,62206,1457550702,852713750,100,100,100,100,0.83,2.91,2.18,2.76
-02808,44,009,44009,2401,925,20743560,20630324,2401,925,20743560,20630324,126979,62206,1457550702,852713750,100,100,100,100,1.89,1.49,1.42,2.42
-02809,44,001,44001,22938,9310,53360554,25438948,22938,9310,53360554,25438948,49875,20850,115901384,62584939,100,100,100,100,45.99,44.65,46.04,40.65
-02812,44,009,44009,1497,559,17402161,17189405,1497,559,17402161,17189405,126979,62206,1457550702,852713750,100,100,100,100,1.18,0.9,1.19,2.02
-02813,44,009,44009,7831,5151,108594848,94433000,7831,5151,108594848,94433000,126979,62206,1457550702,852713750,100,100,100,100,6.17,8.28,7.45,11.07
-02814,44,007,44007,7496,3161,122177731,115947905,7496,3161,122177731,115947905,626667,264835,1128342489,1060604571,100,100,100,100,1.2,1.19,10.83,10.93
-02815,44,007,44007,278,107,11052788,10805286,278,107,11052788,10805286,626667,264835,1128342489,1060604571,100,100,100,100,0.04,0.04,0.98,1.02
-02816,44,003,44003,32605,13428,105653432,98004386,32611,13431,105682063,98019007,166158,73701,487235503,436484769,99.98,99.98,99.97,99.99,19.62,18.22,21.68,22.45
-02816,44,007,44007,6,3,28631,14621,32611,13431,105682063,98019007,626667,264835,1128342489,1060604571,0.02,0.02,0.03,0.01,0,0,0,0
-02817,44,003,44003,6135,2370,132779753,130171360,6135,2370,132779753,130171360,166158,73701,487235503,436484769,100,100,100,100,3.69,3.22,27.25,29.82
-02818,44,003,44003,18082,8014,65398928,56516634,18082,8014,65398928,56516634,166158,73701,487235503,436484769,100,100,100,100,10.88,10.87,13.42,12.95
-02822,44,009,44009,6111,2401,147163121,144781539,6111,2401,147163121,144781539,126979,62206,1457550702,852713750,100,100,100,100,4.81,3.86,10.1,16.98
-02825,44,007,44007,5377,2041,142712010,139970126,5377,2041,142712010,139970126,626667,264835,1128342489,1060604571,100,100,100,100,0.86,0.77,12.65,13.2
-02826,44,007,44007,791,332,6557151,6470179,791,332,6557151,6470179,626667,264835,1128342489,1060604571,100,100,100,100,0.13,0.13,0.58,0.61
-02827,44,003,44003,2172,803,55634542,54595176,2172,803,55634542,54595176,166158,73701,487235503,436484769,100,100,100,100,1.31,1.09,11.42,12.51
-02828,44,007,44007,7704,3226,13347958,12507949,7704,3226,13347958,12507949,626667,264835,1128342489,1060604571,100,100,100,100,1.23,1.22,1.18,1.18
-02830,44,007,44007,5976,2444,51546968,50216380,5976,2444,51546968,50216380,626667,264835,1128342489,1060604571,100,100,100,100,0.95,0.92,4.57,4.73
-02831,44,003,44003,136,38,285916,285916,3515,1377,32137078,24910234,166158,73701,487235503,436484769,3.87,2.76,0.89,1.15,0.08,0.05,0.06,0.07
-02831,44,007,44007,3379,1339,31851162,24624318,3515,1377,32137078,24910234,626667,264835,1128342489,1060604571,96.13,97.24,99.11,98.85,0.54,0.51,2.82,2.32
-02832,44,009,44009,4608,1959,59173519,57723107,4608,1959,59173519,57723107,126979,62206,1457550702,852713750,100,100,100,100,3.63,3.15,4.06,6.77
-02833,44,009,44009,784,338,19579848,18300606,784,338,19579848,18300606,126979,62206,1457550702,852713750,100,100,100,100,0.62,0.54,1.34,2.15
-02835,44,005,44005,5405,2998,38973216,24469397,5405,2998,38973216,24469397,82888,41796,812204915,265178425,100,100,100,100,6.52,7.17,4.8,9.23
-02836,44,009,44009,136,47,799920,796196,136,47,799920,796196,126979,62206,1457550702,852713750,100,100,100,100,0.11,0.08,0.05,0.09
-02837,44,005,44005,3492,2367,64950671,53151692,3492,2367,64950671,53151692,82888,41796,812204915,265178425,100,100,100,100,4.21,5.66,8,20.04
-02838,44,007,44007,3400,1571,3925140,3703225,3400,1571,3925140,3703225,626667,264835,1128342489,1060604571,100,100,100,100,0.54,0.59,0.35,0.35
-02839,44,007,44007,1902,769,11616353,11207815,1902,769,11616353,11207815,626667,264835,1128342489,1060604571,100,100,100,100,0.3,0.29,1.03,1.06
-02840,44,005,44005,23335,13108,27629291,18728198,23335,13108,27629291,18728198,82888,41796,812204915,265178425,100,100,100,100,28.15,31.36,3.4,7.06
-02841,44,005,44005,1392,4,3494870,1208304,1392,4,3494870,1208304,82888,41796,812204915,265178425,100,100,100,100,1.68,0.01,0.43,0.46
-02842,44,005,44005,16095,7579,39904989,32873448,16095,7579,39904989,32873448,82888,41796,812204915,265178425,100,100,100,100,19.42,18.13,4.91,12.4
-02852,44,009,44009,22551,9796,88758335,80008827,22551,9796,88758335,80008827,126979,62206,1457550702,852713750,100,100,100,100,17.76,15.75,6.09,9.38
-02857,44,007,44007,8412,3413,118585067,108120139,8412,3413,118585067,108120139,626667,264835,1128342489,1060604571,100,100,100,100,1.34,1.29,10.51,10.19
-02858,44,007,44007,570,206,1610750,1496468,570,206,1610750,1496468,626667,264835,1128342489,1060604571,100,100,100,100,0.09,0.08,0.14,0.14
-02859,44,007,44007,6738,2675,76953507,73465725,6738,2675,76953507,73465725,626667,264835,1128342489,1060604571,100,100,100,100,1.08,1.01,6.82,6.93
-02860,44,007,44007,45199,20722,14770902,13980575,45199,20722,14770902,13980575,626667,264835,1128342489,1060604571,100,100,100,100,7.21,7.82,1.31,1.32
-02861,25,005,25005,14,8,3268,3268,26178,11432,9528827,9231018,548285,230535,1790264845,1432510950,0.05,0.07,0.03,0.04,0,0,0,0
-02861,44,007,44007,26164,11424,9525559,9227750,26178,11432,9528827,9231018,626667,264835,1128342489,1060604571,99.95,99.93,99.97,99.96,4.18,4.31,0.84,0.87
-02863,44,007,44007,19385,7484,3309703,3110992,19385,7484,3309703,3110992,626667,264835,1128342489,1060604571,100,100,100,100,3.09,2.83,0.29,0.29
-02864,44,007,44007,33396,13714,72998740,68323532,33396,13714,72998740,68323532,626667,264835,1128342489,1060604571,100,100,100,100,5.33,5.18,6.47,6.44
-02865,44,007,44007,16951,7090,45122086,43228908,16951,7090,45122086,43228908,626667,264835,1128342489,1060604571,100,100,100,100,2.7,2.68,4,4.08
-02871,44,005,44005,17171,7840,60329158,44091356,17171,7840,60329158,44091356,82888,41796,812204915,265178425,100,100,100,100,20.72,18.76,7.43,16.63
-02872,44,005,44005,218,454,26200153,15405407,218,454,26200153,15405407,82888,41796,812204915,265178425,100,100,100,100,0.26,1.09,3.23,5.81
-02873,44,009,44009,235,104,7709362,7272847,235,104,7709362,7272847,126979,62206,1457550702,852713750,100,100,100,100,0.19,0.17,0.53,0.85
-02874,44,009,44009,5860,2366,41896057,39249406,5860,2366,41896057,39249406,126979,62206,1457550702,852713750,100,100,100,100,4.61,3.8,2.87,4.6
-02875,44,009,44009,307,138,3005991,2989259,307,138,3005991,2989259,126979,62206,1457550702,852713750,100,100,100,100,0.24,0.22,0.21,0.35
-02876,44,007,44007,430,270,731347,348341,430,270,731347,348341,626667,264835,1128342489,1060604571,100,100,100,100,0.07,0.1,0.06,0.03
-02878,44,005,44005,15780,7446,83614186,75250623,15780,7446,83614186,75250623,82888,41796,812204915,265178425,100,100,100,100,19.04,17.82,10.29,28.38
-02879,44,009,44009,20371,11222,109861012,96809526,20371,11222,109861012,96809526,126979,62206,1457550702,852713750,100,100,100,100,16.04,18.04,7.54,11.35
-02881,44,009,44009,7841,1177,9397511,9361299,7841,1177,9397511,9361299,126979,62206,1457550702,852713750,100,100,100,100,6.18,1.89,0.64,1.1
-02882,44,009,44009,14184,8634,46252792,33140275,14184,8634,46252792,33140275,126979,62206,1457550702,852713750,100,100,100,100,11.17,13.88,3.17,3.89
-02885,44,001,44001,10627,5154,22571191,15868796,10627,5154,22571191,15868796,49875,20850,115901384,62584939,100,100,100,100,21.31,24.72,19.47,25.36
-02886,44,003,44003,29269,13682,44303891,38654310,29269,13682,44303891,38654310,166158,73701,487235503,436484769,100,100,100,100,17.62,18.56,9.09,8.86
-02888,44,003,44003,19912,8889,18495888,15358671,19912,8889,18495888,15358671,166158,73701,487235503,436484769,100,100,100,100,11.98,12.06,3.8,3.52
-02889,44,003,44003,28217,12188,43704225,22521492,28217,12188,43704225,22521492,166158,73701,487235503,436484769,100,100,100,100,16.98,16.54,8.97,5.16
-02891,44,009,44009,21198,11716,80749274,68268331,21198,11716,80749274,68268331,126979,62206,1457550702,852713750,100,100,100,100,16.69,18.83,5.54,8.01
-02892,44,009,44009,4988,1942,75978356,70949427,4988,1942,75978356,70949427,126979,62206,1457550702,852713750,100,100,100,100,3.93,3.12,5.21,8.32
-02893,44,003,44003,29630,14289,20978928,20376824,29630,14289,20978928,20376824,166158,73701,487235503,436484769,100,100,100,100,17.83,19.39,4.31,4.67
-02894,44,009,44009,722,254,11524290,11226698,722,254,11524290,11226698,126979,62206,1457550702,852713750,100,100,100,100,0.57,0.41,0.79,1.32
-02895,44,007,44007,41186,19214,20545261,20043727,41186,19214,20545261,20043727,626667,264835,1128342489,1060604571,100,100,100,100,6.57,7.26,1.82,1.89
-02896,44,007,44007,11537,4798,63349869,61303231,11537,4798,63349869,61303231,626667,264835,1128342489,1060604571,100,100,100,100,1.84,1.81,5.61,5.78
-02898,44,009,44009,1696,618,30238102,29911041,1696,618,30238102,29911041,126979,62206,1457550702,852713750,100,100,100,100,1.34,0.99,2.07,3.51
-02903,44,007,44007,10780,5578,5929701,4643515,10780,5578,5929701,4643515,626667,264835,1128342489,1060604571,100,100,100,100,1.72,2.11,0.53,0.44
-02904,44,007,44007,29359,14327,13758263,13453533,29359,14327,13758263,13453533,626667,264835,1128342489,1060604571,100,100,100,100,4.68,5.41,1.22,1.27
-02905,44,007,44007,25223,9539,14487571,9707053,25223,9539,14487571,9707053,626667,264835,1128342489,1060604571,100,100,100,100,4.02,3.6,1.28,0.92
-02906,44,007,44007,28387,12949,10172808,8394524,28387,12949,10172808,8394524,626667,264835,1128342489,1060604571,100,100,100,100,4.53,4.89,0.9,0.79
-02907,44,007,44007,27445,10187,6020598,5700783,27445,10187,6020598,5700783,626667,264835,1128342489,1060604571,100,100,100,100,4.38,3.85,0.53,0.54
-02908,44,007,44007,37467,14624,8186711,8186047,37467,14624,8186711,8186047,626667,264835,1128342489,1060604571,100,100,100,100,5.98,5.52,0.73,0.77
-02909,44,007,44007,43540,16832,9025912,8954986,43540,16832,9025912,8954986,626667,264835,1128342489,1060604571,100,100,100,100,6.95,6.36,0.8,0.84
-02910,44,007,44007,21000,9042,9379449,8913159,21000,9042,9379449,8913159,626667,264835,1128342489,1060604571,100,100,100,100,3.35,3.41,0.83,0.84
-02911,44,007,44007,15574,6975,6542852,6411107,15574,6975,6542852,6411107,626667,264835,1128342489,1060604571,100,100,100,100,2.49,2.63,0.58,0.6
-02912,44,007,44007,1370,3,112446,112446,1370,3,112446,112446,626667,264835,1128342489,1060604571,100,100,100,100,0.22,0,0.01,0.01
-02914,44,007,44007,21963,9766,13655391,12653252,21963,9766,13655391,12653252,626667,264835,1128342489,1060604571,100,100,100,100,3.5,3.69,1.21,1.19
-02915,44,007,44007,16897,7895,20528358,14329687,16897,7895,20528358,14329687,626667,264835,1128342489,1060604571,100,100,100,100,2.7,2.98,1.82,1.35
-02916,44,007,44007,8139,3763,7660428,6617778,8139,3763,7660428,6617778,626667,264835,1128342489,1060604571,100,100,100,100,1.3,1.42,0.68,0.62
-02917,44,007,44007,13762,4689,58183853,55253789,13762,4689,58183853,55253789,626667,264835,1128342489,1060604571,100,100,100,100,2.2,1.77,5.16,5.21
-02919,44,007,44007,28790,12447,63118674,60827987,28790,12447,63118674,60827987,626667,264835,1128342489,1060604571,100,100,100,100,4.59,4.7,5.59,5.74
-02920,44,007,44007,37547,15260,24367804,23780134,37547,15260,24367804,23780134,626667,264835,1128342489,1060604571,100,100,100,100,5.99,5.76,2.16,2.24
-02921,44,007,44007,12361,4506,34338603,34041167,12361,4506,34338603,34041167,626667,264835,1128342489,1060604571,100,100,100,100,1.97,1.7,3.04,3.21
-03031,33,011,33011,11247,4302,91132381,89774262,11247,4302,91132381,89774262,400721,166053,2310825103,2269188527,100,100,100,100,2.81,2.59,3.94,3.96
-03032,33,015,33015,4953,1814,74339113,65270868,4953,1814,74339113,65270868,295223,126709,2059325304,1799316831,100,100,100,100,1.68,1.43,3.61,3.63
-03033,33,011,33011,4987,1698,52138928,51203527,4987,1698,52138928,51203527,400721,166053,2310825103,2269188527,100,100,100,100,1.24,1.02,2.26,2.26
-03034,33,015,33015,3970,1512,86390626,85421126,3970,1512,86390626,85421126,295223,126709,2059325304,1799316831,100,100,100,100,1.34,1.19,4.2,4.75
-03036,33,015,33015,4782,1602,67517794,67201175,4782,1602,67517794,67201175,295223,126709,2059325304,1799316831,100,100,100,100,1.62,1.26,3.28,3.73
-03037,33,015,33015,4219,1725,128017631,124936065,4219,1725,128017631,124936065,295223,126709,2059325304,1799316831,100,100,100,100,1.43,1.36,6.22,6.94
-03038,33,015,33015,33269,13415,95458101,93204530,33269,13415,95458101,93204530,295223,126709,2059325304,1799316831,100,100,100,100,11.27,10.59,4.64,5.18
-03042,33,015,33015,6341,2698,67805740,67243946,6341,2698,67805740,67243946,295223,126709,2059325304,1799316831,100,100,100,100,2.15,2.13,3.29,3.74
-03043,33,011,33011,1573,747,82578833,81180671,1573,747,82578833,81180671,400721,166053,2310825103,2269188527,100,100,100,100,0.39,0.45,3.57,3.58
-03044,33,015,33015,4263,1565,44515362,43792587,4263,1565,44515362,43792587,295223,126709,2059325304,1799316831,100,100,100,100,1.44,1.24,2.16,2.43
-03045,33,011,33011,13560,5202,93954406,92372713,13560,5202,93954406,92372713,400721,166053,2310825103,2269188527,100,100,100,100,3.38,3.13,4.07,4.07
-03046,33,013,33013,2758,1077,81222994,79985967,2758,1077,81222994,79985967,146445,63541,2477186128,2419349805,100,100,100,100,1.88,1.69,3.28,3.31
-03047,33,011,33011,1767,707,69769026,68326777,1767,707,69769026,68326777,400721,166053,2310825103,2269188527,100,100,100,100,0.44,0.43,3.02,3.01
-03048,33,011,33011,3426,1483,76686950,76543803,3426,1483,76686950,76543803,400721,166053,2310825103,2269188527,100,100,100,100,0.85,0.89,3.32,3.37
-03049,33,011,33011,7688,2931,83708353,82266249,7688,2931,83708353,82266249,400721,166053,2310825103,2269188527,100,100,100,100,1.92,1.77,3.62,3.63
-03051,33,011,33011,24480,9215,75811810,73397153,24480,9215,75811810,73397153,400721,166053,2310825103,2269188527,100,100,100,100,6.11,5.55,3.28,3.23
-03052,33,011,33011,8258,2909,39578042,38671274,8258,2909,39578042,38671274,400721,166053,2310825103,2269188527,100,100,100,100,2.06,1.75,1.71,1.7
-03053,33,015,33015,23957,8651,106687909,106355191,23957,8651,106687909,106355191,295223,126709,2059325304,1799316831,100,100,100,100,8.11,6.83,5.18,5.91
-03054,33,011,33011,25477,9807,86500111,84222976,25477,9807,86500111,84222976,400721,166053,2310825103,2269188527,100,100,100,100,6.36,5.91,3.74,3.71
-03055,33,011,33011,15086,6284,64527130,64379100,15086,6284,64527130,64379100,400721,166053,2310825103,2269188527,100,100,100,100,3.76,3.78,2.79,2.84
-03057,33,011,33011,2500,905,43609437,43396473,2500,905,43609437,43396473,400721,166053,2310825103,2269188527,100,100,100,100,0.62,0.55,1.89,1.91
-03060,33,011,33011,29357,13009,17846674,16928572,29357,13009,17846674,16928572,400721,166053,2310825103,2269188527,100,100,100,100,7.33,7.83,0.77,0.75
-03062,33,011,33011,26694,11020,31714780,31297883,26694,11020,31714780,31297883,400721,166053,2310825103,2269188527,100,100,100,100,6.66,6.64,1.37,1.38
-03063,33,011,33011,16216,7038,21361763,20987772,16216,7038,21361763,20987772,400721,166053,2310825103,2269188527,100,100,100,100,4.05,4.24,0.92,0.92
-03064,33,011,33011,14227,6101,11664694,10687706,14227,6101,11664694,10687706,400721,166053,2310825103,2269188527,100,100,100,100,3.55,3.67,0.5,0.47
-03070,33,011,33011,5254,1940,112408315,111437362,5254,1940,112408315,111437362,400721,166053,2310825103,2269188527,100,100,100,100,1.31,1.17,4.86,4.91
-03071,33,011,33011,5109,1917,85601904,84782332,5109,1917,85601904,84782332,400721,166053,2310825103,2269188527,100,100,100,100,1.27,1.15,3.7,3.74
-03076,33,011,33011,12897,4598,69758868,68298210,12897,4598,69758868,68298210,400721,166053,2310825103,2269188527,100,100,100,100,3.22,2.77,3.02,3.01
-03077,33,015,33015,10155,4263,78238863,76176267,10155,4263,78238863,76176267,295223,126709,2059325304,1799316831,100,100,100,100,3.44,3.36,3.8,4.23
-03079,33,015,33015,28776,11810,66953437,64026012,28776,11810,66953437,64026012,295223,126709,2059325304,1799316831,100,100,100,100,9.75,9.32,3.25,3.56
-03082,33,011,33011,1615,658,74278619,73980829,1615,658,74278619,73980829,400721,166053,2310825103,2269188527,100,100,100,100,0.4,0.4,3.21,3.26
-03084,33,011,33011,1366,542,58133717,57575557,1366,542,58133717,57575557,400721,166053,2310825103,2269188527,100,100,100,100,0.34,0.33,2.52,2.54
-03086,33,011,33011,3728,1550,70121122,69876208,3728,1550,70121122,69876208,400721,166053,2310825103,2269188527,100,100,100,100,0.93,0.93,3.03,3.08
-03087,33,015,33015,13592,5164,72167543,69428290,13592,5164,72167543,69428290,295223,126709,2059325304,1799316831,100,100,100,100,4.6,4.08,3.5,3.86
-03101,33,011,33011,3049,2007,2306374,2004383,3049,2007,2306374,2004383,400721,166053,2310825103,2269188527,100,100,100,100,0.76,1.21,0.1,0.09
-03102,33,011,33011,31096,14412,24001023,23122461,31096,14412,24001023,23122461,400721,166053,2310825103,2269188527,100,100,100,100,7.76,8.68,1.04,1.02
-03103,33,011,33011,36476,15040,24172136,23183783,36476,15040,26288919,25300566,400721,166053,2310825103,2269188527,100,100,91.95,91.63,9.1,9.06,1.05,1.02
-03103,33,015,33015,0,0,2116783,2116783,36476,15040,26288919,25300566,295223,126709,2059325304,1799316831,0,0,8.05,8.37,0,0,0.1,0.12
-03104,33,011,33011,32721,14755,21818987,21435083,32798,14784,21946163,21562259,400721,166053,2310825103,2269188527,99.77,99.8,99.42,99.41,8.17,8.89,0.94,0.94
-03104,33,013,33013,77,29,127176,127176,32798,14784,21946163,21562259,146445,63541,2477186128,2419349805,0.23,0.2,0.58,0.59,0.05,0.05,0.01,0.01
-03106,33,013,33013,13374,5155,96992595,94315385,13374,5155,96992595,94315385,146445,63541,2477186128,2419349805,100,100,100,100,9.13,8.11,3.92,3.9
-03109,33,011,33011,10314,4213,21344600,19074687,10314,4213,21344600,19074687,400721,166053,2310825103,2269188527,100,100,100,100,2.57,2.54,0.92,0.84
-03110,33,011,33011,21203,7634,85775018,85023294,21203,7634,85775018,85023294,400721,166053,2310825103,2269188527,100,100,100,100,5.29,4.6,3.71,3.75
-03215,33,009,33009,247,1189,125730306,125552391,247,1189,125730306,125552391,89118,51120,4531302693,4425640635,100,100,100,100,0.28,2.33,2.77,2.84
-03216,33,013,33013,2159,993,101009780,99230223,2159,993,101009780,99230223,146445,63541,2477186128,2419349805,100,100,100,100,1.47,1.56,4.08,4.1
-03217,33,009,33009,2076,1355,29840597,28461302,2076,1355,29840597,28461302,89118,51120,4531302693,4425640635,100,100,100,100,2.33,2.65,0.66,0.64
-03218,33,001,33001,960,395,36841508,35920012,960,395,36841508,35920012,60088,37386,1213621478,1036596332,100,100,100,100,1.6,1.06,3.04,3.47
-03220,33,001,33001,7349,3609,83716688,78890971,7430,3639,84870843,80045126,60088,37386,1213621478,1036596332,98.91,99.18,98.64,98.56,12.23,9.65,6.9,7.61
-03220,33,013,33013,81,30,1154155,1154155,7430,3639,84870843,80045126,146445,63541,2477186128,2419349805,1.09,0.82,1.36,1.44,0.06,0.05,0.05,0.05
-03221,33,013,33013,2091,1183,120848515,119052795,2091,1183,120848515,119052795,146445,63541,2477186128,2419349805,100,100,100,100,1.43,1.86,4.88,4.92
-03222,33,009,33009,5353,4249,202423526,188285939,5353,4249,202423526,188285939,89118,51120,4531302693,4425640635,100,100,100,100,6.01,8.31,4.47,4.25
-03223,33,009,33009,3427,2347,191791863,189667959,3427,2347,191791863,189667959,89118,51120,4531302693,4425640635,100,100,100,100,3.85,4.59,4.23,4.29
-03224,33,013,33013,2318,978,106089280,104115137,2318,978,106089280,104115137,146445,63541,2477186128,2419349805,100,100,100,100,1.58,1.54,4.28,4.3
-03225,33,001,33001,3633,1924,77142972,72847862,3660,1936,78980995,74685885,60088,37386,1213621478,1036596332,99.26,99.38,97.67,97.54,6.05,5.15,6.36,7.03
-03225,33,017,33017,27,12,1838023,1838023,3660,1936,78980995,74685885,123143,51697,994559477,955640569,0.74,0.62,2.33,2.46,0.02,0.02,0.18,0.19
-03226,33,001,33001,1117,811,43113358,34888726,1117,811,43113358,34888726,60088,37386,1213621478,1036596332,100,100,100,100,1.86,2.17,3.55,3.37
-03227,33,003,33003,925,736,175091754,167114223,925,736,175091754,167114223,47818,39813,2570392929,2411436914,100,100,100,100,1.93,1.85,6.81,6.93
-03229,33,013,33013,5589,2381,116959506,112335445,5589,2381,116959506,112335445,146445,63541,2477186128,2419349805,100,100,100,100,3.82,3.75,4.72,4.64
-03230,33,013,33013,1231,725,106752789,105820083,1231,725,106752789,105820083,146445,63541,2477186128,2419349805,100,100,100,100,0.84,1.14,4.31,4.37
-03231,33,013,33013,202,124,6212016,5691388,202,124,6212016,5691388,146445,63541,2477186128,2419349805,100,100,100,100,0.14,0.2,0.25,0.24
-03233,33,013,33013,115,87,1408609,1404333,115,87,1408609,1404333,146445,63541,2477186128,2419349805,100,100,100,100,0.08,0.14,0.06,0.06
-03234,33,013,33013,4572,1841,89521476,88993924,4572,1841,89521476,88993924,146445,63541,2477186128,2419349805,100,100,100,100,3.12,2.9,3.61,3.68
-03235,33,013,33013,8562,3967,81427196,76658454,8562,3967,81427196,76658454,146445,63541,2477186128,2419349805,100,100,100,100,5.85,6.24,3.29,3.17
-03237,33,001,33001,2254,1271,97392277,94659434,2254,1271,97392277,94659434,60088,37386,1213621478,1036596332,100,100,100,100,3.75,3.4,8.02,9.13
-03238,33,009,33009,75,43,7306724,7187877,75,43,7306724,7187877,89118,51120,4531302693,4425640635,100,100,100,100,0.08,0.08,0.16,0.16
-03240,33,009,33009,1340,839,110368021,107947542,1340,839,110368021,107947542,89118,51120,4531302693,4425640635,100,100,100,100,1.5,1.64,2.44,2.44
-03241,33,009,33009,876,810,112991147,107193585,876,810,112991147,107193585,89118,51120,4531302693,4425640635,100,100,100,100,0.98,1.58,2.49,2.42
-03242,33,013,33013,4836,1928,115820181,114051040,4836,1928,115820181,114051040,146445,63541,2477186128,2419349805,100,100,100,100,3.3,3.03,4.68,4.71
-03243,33,013,33013,1085,509,68989639,68293520,1085,509,68989639,68293520,146445,63541,2477186128,2419349805,100,100,100,100,0.74,0.8,2.79,2.82
-03244,33,011,33011,8092,3942,218060110,213115083,8092,3942,218060110,213115083,400721,166053,2310825103,2269188527,100,100,100,100,2.02,2.37,9.44,9.39
-03245,33,009,33009,2027,1498,92489986,78620240,2027,1498,92489986,78620240,89118,51120,4531302693,4425640635,100,100,100,100,2.27,2.93,2.04,1.78
-03246,33,001,33001,15963,9885,68800518,51907118,15963,9885,68800518,51907118,60088,37386,1213621478,1036596332,100,100,100,100,26.57,26.44,5.67,5.01
-03249,33,001,33001,7113,5108,139053887,100666488,7113,5108,139053887,100666488,60088,37386,1213621478,1036596332,100,100,100,100,11.84,13.66,11.46,9.71
-03251,33,009,33009,1662,2988,391442047,389909477,1662,2988,391442047,389909477,89118,51120,4531302693,4425640635,100,100,100,100,1.86,5.85,8.64,8.81
-03253,33,001,33001,6219,4690,137640593,100784482,6219,4690,137640593,100784482,60088,37386,1213621478,1036596332,100,100,100,100,10.35,12.54,11.34,9.72
-03254,33,001,33001,5,18,92934,92934,4049,4958,193323737,154116241,60088,37386,1213621478,1036596332,0.12,0.36,0.05,0.06,0.01,0.05,0.01,0.01
-03254,33,003,33003,4044,4940,193230803,154023307,4049,4958,193323737,154116241,47818,39813,2570392929,2411436914,99.88,99.64,99.95,99.94,8.46,12.41,7.52,6.39
-03255,33,013,33013,2090,1571,101438977,95201212,2090,1571,101438977,95201212,146445,63541,2477186128,2419349805,100,100,100,100,1.43,2.47,4.09,3.93
-03256,33,001,33001,2169,1090,101588274,97312305,2169,1090,101588274,97312305,60088,37386,1213621478,1036596332,100,100,100,100,3.61,2.92,8.37,9.39
-03257,33,013,33013,4455,2290,67387344,59407967,4455,2290,67387344,59407967,146445,63541,2477186128,2419349805,100,100,100,100,3.04,3.6,2.72,2.46
-03258,33,013,33013,2517,961,54427881,54171126,2517,961,54427881,54171126,146445,63541,2477186128,2419349805,100,100,100,100,1.72,1.51,2.2,2.24
-03259,33,003,33003,368,291,60853584,60600664,368,291,60853584,60600664,47818,39813,2570392929,2411436914,100,100,100,100,0.77,0.73,2.37,2.51
-03260,33,013,33013,809,404,64179474,63262340,809,404,64179474,63262340,146445,63541,2477186128,2419349805,100,100,100,100,0.55,0.64,2.59,2.61
-03261,33,015,33015,4246,2146,77996631,72462607,4246,2146,77996631,72462607,295223,126709,2059325304,1799316831,100,100,100,100,1.44,1.69,3.79,4.03
-03262,33,009,33009,1231,1269,148633241,147467680,1231,1269,148633241,147467680,89118,51120,4531302693,4425640635,100,100,100,100,1.38,2.48,3.28,3.33
-03263,33,013,33013,4114,1772,63762657,63058514,4114,1772,63762657,63058514,146445,63541,2477186128,2419349805,100,100,100,100,2.81,2.79,2.57,2.61
-03264,33,009,33009,7468,2444,97329455,95399381,7468,2444,97329455,95399381,89118,51120,4531302693,4425640635,100,100,100,100,8.38,4.78,2.15,2.16
-03266,33,009,33009,2163,1401,269256314,265266433,2163,1401,269256314,265266433,89118,51120,4531302693,4425640635,100,100,100,100,2.43,2.74,5.94,5.99
-03268,33,013,33013,1272,499,79455165,79092133,1272,499,79455165,79092133,146445,63541,2477186128,2419349805,100,100,100,100,0.87,0.79,3.21,3.27
-03269,33,001,33001,2966,1612,128868515,123300238,2966,1612,128868515,123300238,60088,37386,1213621478,1036596332,100,100,100,100,4.94,4.31,10.62,11.89
-03273,33,013,33013,312,229,16036371,15284920,312,229,16036371,15284920,146445,63541,2477186128,2419349805,100,100,100,100,0.21,0.36,0.65,0.63
-03275,33,013,33013,11437,4753,112330272,111629686,11437,4753,112330272,111629686,146445,63541,2477186128,2419349805,100,100,100,100,7.81,7.48,4.53,4.61
-03276,33,001,33001,3567,1845,31051243,28838874,8324,3788,105505913,102402502,60088,37386,1213621478,1036596332,42.85,48.71,29.43,28.16,5.94,4.94,2.56,2.78
-03276,33,013,33013,4757,1943,74454670,73563628,8324,3788,105505913,102402502,146445,63541,2477186128,2419349805,57.15,51.29,70.57,71.84,3.25,3.06,3.01,3.04
-03278,33,013,33013,2952,1432,162077684,161197853,2952,1432,162077684,161197853,146445,63541,2477186128,2419349805,100,100,100,100,2.02,2.25,6.54,6.66
-03279,33,009,33009,829,569,119720382,118341301,829,569,119720382,118341301,89118,51120,4531302693,4425640635,100,100,100,100,0.93,1.11,2.64,2.67
-03280,33,019,33019,1123,1093,123365247,117704177,1123,1093,123365247,117704177,43742,22341,1429657870,1391635377,100,100,100,100,2.57,4.89,8.63,8.46
-03281,33,011,33011,8785,3466,155099749,152386465,8785,3466,155099749,152386465,400721,166053,2310825103,2269188527,100,100,100,100,2.19,2.09,6.71,6.72
-03282,33,009,33009,902,528,108367523,107082675,902,528,108367523,107082675,89118,51120,4531302693,4425640635,100,100,100,100,1.01,1.03,2.39,2.42
-03284,33,019,33019,999,549,102520111,100284173,999,549,102520111,100284173,43742,22341,1429657870,1391635377,100,100,100,100,2.28,2.46,7.17,7.21
-03285,33,009,33009,2479,1822,131519091,129948859,2479,1822,131519091,129948859,89118,51120,4531302693,4425640635,100,100,100,100,2.78,3.56,2.9,2.94
-03287,33,013,33013,1295,621,68419172,68003168,1295,621,68419172,68003168,146445,63541,2477186128,2419349805,100,100,100,100,0.88,0.98,2.76,2.81
-03290,33,015,33015,4731,1947,123361302,118666228,4731,1947,123361302,118666228,295223,126709,2059325304,1799316831,100,100,100,100,1.6,1.54,5.99,6.6
-03291,33,015,33015,39,16,468160,468160,39,16,468160,468160,295223,126709,2059325304,1799316831,100,100,100,100,0.01,0.01,0.02,0.03
-03293,33,009,33009,143,152,4458779,4201880,143,152,4458779,4201880,89118,51120,4531302693,4425640635,100,100,100,100,0.16,0.3,0.1,0.09
-03301,33,013,33013,33008,14455,135392806,128255065,33008,14455,135392806,128255065,146445,63541,2477186128,2419349805,100,100,100,100,22.54,22.75,5.47,5.3
-03303,33,013,33013,15524,6699,179233755,174735473,15524,6699,179233755,174735473,146445,63541,2477186128,2419349805,100,100,100,100,10.6,10.54,7.24,7.22
-03304,33,013,33013,7519,2807,73616823,72603163,7519,2807,73616823,72603163,146445,63541,2477186128,2419349805,100,100,100,100,5.13,4.42,2.97,3
-03307,33,013,33013,5334,2098,130437170,128654532,5334,2098,130437170,128654532,146445,63541,2477186128,2419349805,100,100,100,100,3.64,3.3,5.27,5.32
-03431,33,005,33005,25280,10652,156033361,154023267,25280,10652,156033361,154023267,77117,34773,1888357124,1830241632,100,100,100,100,32.78,30.63,8.26,8.42
-03440,33,011,33011,2692,1352,95823429,93674070,2692,1352,95823429,93674070,400721,166053,2310825103,2269188527,100,100,100,100,0.67,0.81,4.15,4.13
-03441,33,005,33005,395,170,10156799,10142582,395,170,10156799,10142582,77117,34773,1888357124,1830241632,100,100,100,100,0.51,0.49,0.54,0.55
-03442,33,011,33011,1491,685,29498628,28827061,1491,685,29498628,28827061,400721,166053,2310825103,2269188527,100,100,100,100,0.37,0.41,1.28,1.27
-03443,33,005,33005,742,319,29065949,28777183,742,319,29065949,28777183,77117,34773,1888357124,1830241632,100,100,100,100,0.96,0.92,1.54,1.57
-03444,33,005,33005,1590,781,75543519,72683140,1590,781,75543519,72683140,77117,34773,1888357124,1830241632,100,100,100,100,2.06,2.25,4,3.97
-03445,33,005,33005,691,312,52301959,51812080,691,312,52301959,51812080,77117,34773,1888357124,1830241632,100,100,100,100,0.9,0.9,2.77,2.83
-03446,33,005,33005,6285,2679,111324404,110732975,6285,2679,111324404,110732975,77117,34773,1888357124,1830241632,100,100,100,100,8.15,7.7,5.9,6.05
-03447,33,005,33005,2422,1260,94327936,90690658,2422,1260,94327936,90690658,77117,34773,1888357124,1830241632,100,100,100,100,3.14,3.62,5,4.96
-03448,33,005,33005,811,376,50455109,50385612,811,376,50455109,50385612,77117,34773,1888357124,1830241632,100,100,100,100,1.05,1.08,2.67,2.75
-03449,33,011,33011,1654,864,80860665,77626641,1654,864,80860665,77626641,400721,166053,2310825103,2269188527,100,100,100,100,0.41,0.52,3.5,3.42
-03450,33,005,33005,961,695,52199799,48126081,961,695,52199799,48126081,77117,34773,1888357124,1830241632,100,100,100,100,1.25,2,2.76,2.63
-03451,33,005,33005,4077,1843,61020861,55458810,4077,1843,61020861,55458810,77117,34773,1888357124,1830241632,100,100,100,100,5.29,5.3,3.23,3.03
-03452,33,005,33005,5457,2547,103716070,99227871,5457,2547,103716070,99227871,77117,34773,1888357124,1830241632,100,100,100,100,7.08,7.32,5.49,5.42
-03455,33,005,33005,2086,963,62083403,60901897,2086,963,62083403,60901897,77117,34773,1888357124,1830241632,100,100,100,100,2.7,2.77,3.29,3.33
-03456,33,005,33005,742,408,68418737,67201281,742,408,68418737,67201281,77117,34773,1888357124,1830241632,100,100,100,100,0.96,1.17,3.62,3.67
-03457,33,005,33005,852,566,63579269,59525160,852,566,63579269,59525160,77117,34773,1888357124,1830241632,100,100,100,100,1.1,1.63,3.37,3.25
-03458,33,005,33005,7,4,17004,17004,6643,3124,139195525,138145111,77117,34773,1888357124,1830241632,0.11,0.13,0.01,0.01,0.01,0.01,0,0
-03458,33,011,33011,6636,3120,139178521,138128107,6643,3124,139195525,138145111,400721,166053,2310825103,2269188527,99.89,99.87,99.99,99.99,1.66,1.88,6.02,6.09
-03461,33,005,33005,6014,2224,103409230,96281338,6014,2224,103409230,96281338,77117,34773,1888357124,1830241632,100,100,100,100,7.8,6.4,5.48,5.26
-03462,33,005,33005,1562,929,53903466,50616977,1562,929,53903466,50616977,77117,34773,1888357124,1830241632,100,100,100,100,2.03,2.67,2.85,2.77
-03464,33,005,33005,1109,938,133924500,128934042,1109,938,133924500,128934042,77117,34773,1888357124,1830241632,100,100,100,100,1.44,2.7,7.09,7.04
-03465,33,005,33005,2156,937,46050023,45644342,2156,937,46050023,45644342,77117,34773,1888357124,1830241632,100,100,100,100,2.8,2.69,2.44,2.49
-03466,33,005,33005,1332,568,41196652,39570237,1332,568,41196652,39570237,77117,34773,1888357124,1830241632,100,100,100,100,1.73,1.63,2.18,2.16
-03467,33,005,33005,1842,666,94523864,91718664,1842,666,94523864,91718664,77117,34773,1888357124,1830241632,100,100,100,100,2.39,1.92,5.01,5.01
-03470,33,005,33005,5033,2230,228126067,226214956,5033,2230,228126067,226214956,77117,34773,1888357124,1830241632,100,100,100,100,6.53,6.41,12.08,12.36
-03561,33,009,33009,5939,3075,142395445,131988339,5939,3075,142395445,131988339,89118,51120,4531302693,4425640635,100,100,100,100,6.66,6.02,3.14,2.98
-03570,33,007,33007,10051,4973,276862295,273397988,10051,4973,276862295,273397988,33055,21321,4738990327,4648212655,100,100,100,100,30.41,23.32,5.84,5.88
-03574,33,009,33009,2526,1517,235567381,234651984,2526,1517,235567381,234651984,89118,51120,4531302693,4425640635,100,100,100,100,2.83,2.97,5.2,5.3
-03575,33,007,33007,124,387,72013750,71957724,124,387,72013750,71957724,33055,21321,4738990327,4648212655,100,100,100,100,0.38,1.82,1.52,1.55
-03576,33,007,33007,3238,2489,371035468,368492454,3238,2489,371035468,368492454,33055,21321,4738990327,4648212655,100,100,100,100,9.8,11.67,7.83,7.93
-03579,23,017,23017,103,435,987747251,933623032,461,1163,1506118248,1422872029,57833,36055,5635077704,5378990983,22.34,37.4,65.58,65.62,0.18,1.21,17.53,17.36
-03579,33,007,33007,358,728,518370997,489248997,461,1163,1506118248,1422872029,33055,21321,4738990327,4648212655,77.66,62.6,34.42,34.38,1.08,3.41,10.94,10.53
-03580,33,009,33009,1369,1055,247319756,246478333,1369,1055,247319756,246478333,89118,51120,4531302693,4425640635,100,100,100,100,1.54,2.06,5.46,5.57
-03581,33,007,33007,3230,1709,392939283,389435567,3230,1709,392939283,389435567,33055,21321,4738990327,4648212655,100,100,100,100,9.77,8.02,8.29,8.38
-03582,33,007,33007,2577,1439,224855857,220743496,2577,1439,224855857,220743496,33055,21321,4738990327,4648212655,100,100,100,100,7.8,6.75,4.74,4.75
-03583,33,007,33007,1107,679,131242065,130386418,1107,679,131242065,130386418,33055,21321,4738990327,4648212655,100,100,100,100,3.35,3.18,2.77,2.81
-03584,33,007,33007,3774,1814,155380713,152855776,3774,1814,155380713,152855776,33055,21321,4738990327,4648212655,100,100,100,100,11.42,8.51,3.28,3.29
-03585,33,009,33009,2519,1385,211698026,209504380,2519,1385,211698026,209504380,89118,51120,4531302693,4425640635,100,100,100,100,2.83,2.71,4.67,4.73
-03586,33,009,33009,547,429,43572827,43098998,547,429,43572827,43098998,89118,51120,4531302693,4425640635,100,100,100,100,0.61,0.84,0.96,0.97
-03588,33,007,33007,1641,1106,374683053,369200052,1641,1106,374683053,369200052,33055,21321,4738990327,4648212655,100,100,100,100,4.96,5.19,7.91,7.94
-03590,33,007,33007,1052,749,274527611,272724561,1052,749,274527611,272724561,33055,21321,4738990327,4648212655,100,100,100,100,3.18,3.51,5.79,5.87
-03592,33,007,33007,1145,2182,883477062,852457298,1145,2182,883477062,852457298,33055,21321,4738990327,4648212655,100,100,100,100,3.46,10.23,18.64,18.34
-03593,33,007,33007,313,314,241940785,241865131,313,314,241940785,241865131,33055,21321,4738990327,4648212655,100,100,100,100,0.95,1.47,5.11,5.2
-03595,33,007,33007,639,507,95168695,95162380,639,507,95168695,95162380,33055,21321,4738990327,4648212655,100,100,100,100,1.93,2.38,2.01,2.05
-03597,33,007,33007,521,309,140321463,138354987,521,309,140321463,138354987,33055,21321,4738990327,4648212655,100,100,100,100,1.58,1.45,2.96,2.98
-03598,33,007,33007,3285,1916,162389061,159811764,3285,1916,162389061,159811764,33055,21321,4738990327,4648212655,100,100,100,100,9.94,8.99,3.43,3.44
-03601,33,019,33019,477,289,50045198,49731702,477,289,50045198,49731702,43742,22341,1429657870,1391635377,100,100,100,100,1.09,1.29,3.5,3.57
-03602,33,005,33005,1937,991,101916900,100443587,2654,1311,151922160,150241938,77117,34773,1888357124,1830241632,72.98,75.59,67.08,66.85,2.51,2.85,5.4,5.49
-03602,33,019,33019,717,320,50005260,49798351,2654,1311,151922160,150241938,43742,22341,1429657870,1391635377,27.02,24.41,32.92,33.15,1.64,1.43,3.5,3.58
-03603,33,019,33019,5412,2415,116197030,110379750,5412,2415,116197030,110379750,43742,22341,1429657870,1391635377,100,100,100,100,12.37,10.81,8.13,7.93
-03604,33,005,33005,69,28,1287903,1262647,69,28,1287903,1262647,77117,34773,1888357124,1830241632,100,100,100,100,0.09,0.08,0.07,0.07
-03605,33,019,33019,1160,682,84948098,83840974,1160,682,84948098,83840974,43742,22341,1429657870,1391635377,100,100,100,100,2.65,3.05,5.94,6.02
-03607,33,019,33019,322,180,40320572,40320559,322,180,40320572,40320559,43742,22341,1429657870,1391635377,100,100,100,100,0.74,0.81,2.82,2.9
-03608,33,005,33005,2811,1287,90565956,87538488,2811,1287,90565956,87538488,77117,34773,1888357124,1830241632,100,100,100,100,3.65,3.7,4.8,4.78
-03609,33,005,33005,854,400,3208384,2310753,854,400,3208384,2310753,77117,34773,1888357124,1830241632,100,100,100,100,1.11,1.15,0.17,0.13
-03740,33,009,33009,911,482,89885028,88787537,911,482,89885028,88787537,89118,51120,4531302693,4425640635,100,100,100,100,1.02,0.94,1.98,2.01
-03741,33,009,33009,4208,2090,203837803,199105097,4208,2090,203837803,199105097,89118,51120,4531302693,4425640635,100,100,100,100,4.72,4.09,4.5,4.5
-03743,33,019,33019,14103,6529,161014934,158428482,14103,6529,161014934,158428482,43742,22341,1429657870,1391635377,100,100,100,100,32.24,29.22,11.26,11.38
-03745,33,019,33019,1424,646,92385336,90516133,1424,646,92385336,90516133,43742,22341,1429657870,1391635377,100,100,100,100,3.26,2.89,6.46,6.5
-03746,33,019,33019,216,101,18540035,18540035,216,101,18540035,18540035,43742,22341,1429657870,1391635377,100,100,100,100,0.49,0.45,1.3,1.33
-03748,33,009,33009,4573,2487,111258674,104568601,4762,2595,117948749,111258676,89118,51120,4531302693,4425640635,96.03,95.84,94.33,93.99,5.13,4.87,2.46,2.36
-03748,33,019,33019,189,108,6690075,6690075,4762,2595,117948749,111258676,43742,22341,1429657870,1391635377,3.97,4.16,5.67,6.01,0.43,0.48,0.47,0.48
-03750,33,009,33009,870,365,32787570,32448349,870,365,32787570,32448349,89118,51120,4531302693,4425640635,100,100,100,100,0.98,0.71,0.72,0.73
-03751,33,019,33019,583,352,8428293,7930840,583,352,8428293,7930840,43742,22341,1429657870,1391635377,100,100,100,100,1.33,1.58,0.59,0.57
-03752,33,019,33019,810,444,58469449,58230518,810,444,58469449,58230518,43742,22341,1429657870,1391635377,100,100,100,100,1.85,1.99,4.09,4.18
-03753,33,019,33019,2971,1760,72518834,70231641,2971,1760,72518834,70231641,43742,22341,1429657870,1391635377,100,100,100,100,6.79,7.88,5.07,5.05
-03754,33,019,33019,86,49,99446,99446,86,49,99446,99446,43742,22341,1429657870,1391635377,100,100,100,100,0.2,0.22,0.01,0.01
-03755,33,009,33009,10538,3152,96446557,93501096,10538,3152,96446557,93501096,89118,51120,4531302693,4425640635,100,100,100,100,11.82,6.17,2.13,2.11
-03765,33,009,33009,503,249,11766622,11391216,503,249,11766622,11391216,89118,51120,4531302693,4425640635,100,100,100,100,0.56,0.49,0.26,0.26
-03766,33,009,33009,8958,4525,83612389,82290818,8958,4525,83612389,82290818,89118,51120,4531302693,4425640635,100,100,100,100,10.05,8.85,1.85,1.86
-03768,33,009,33009,1716,810,141732476,139434680,1716,810,141732476,139434680,89118,51120,4531302693,4425640635,100,100,100,100,1.93,1.58,3.13,3.15
-03770,33,019,33019,524,185,12816927,12816430,524,185,12816927,12816430,43742,22341,1429657870,1391635377,100,100,100,100,1.2,0.83,0.9,0.92
-03771,33,009,33009,754,355,60898198,57036410,754,355,60898198,57036410,89118,51120,4531302693,4425640635,100,100,100,100,0.85,0.69,1.34,1.29
-03773,33,019,33019,7841,3689,242231160,239102829,7841,3689,242231160,239102829,43742,22341,1429657870,1391635377,100,100,100,100,17.93,16.51,16.94,17.18
-03774,33,009,33009,1966,860,69190767,67092535,1966,860,69190767,67092535,89118,51120,4531302693,4425640635,100,100,100,100,2.21,1.68,1.53,1.52
-03777,33,009,33009,1237,654,120681324,117316531,1237,654,120681324,117316531,89118,51120,4531302693,4425640635,100,100,100,100,1.39,1.28,2.66,2.65
-03779,33,009,33009,790,476,106917387,103105717,790,476,106917387,103105717,89118,51120,4531302693,4425640635,100,100,100,100,0.89,0.93,2.36,2.33
-03780,33,009,33009,410,211,42305669,42118686,410,211,42305669,42118686,89118,51120,4531302693,4425640635,100,100,100,100,0.46,0.41,0.93,0.95
-03781,33,019,33019,1840,799,124240500,122302895,1840,799,124240500,122302895,43742,22341,1429657870,1391635377,100,100,100,100,4.21,3.58,8.69,8.79
-03782,33,019,33019,2945,2151,64821365,54686367,2945,2151,64821365,54686367,43742,22341,1429657870,1391635377,100,100,100,100,6.73,9.63,4.53,3.93
-03784,33,009,33009,4086,2080,23677453,21711602,4086,2080,23677453,21711602,89118,51120,4531302693,4425640635,100,100,100,100,4.58,4.07,0.52,0.49
-03785,33,009,33009,2400,1360,156779535,154699196,2400,1360,156779535,154699196,89118,51120,4531302693,4425640635,100,100,100,100,2.69,2.66,3.46,3.5
-03801,33,015,33015,21532,10947,75903171,61709181,21532,10947,75903171,61709181,295223,126709,2059325304,1799316831,100,100,100,100,7.29,8.64,3.69,3.43
-03809,33,001,33001,3716,2026,107044525,104420642,3716,2026,107044525,104420642,60088,37386,1213621478,1036596332,100,100,100,100,6.18,5.42,8.82,10.07
-03810,33,001,33001,1538,2263,107368825,59859217,1538,2263,107368825,59859217,60088,37386,1213621478,1036596332,100,100,100,100,2.56,6.05,8.85,5.77
-03811,33,015,33015,6753,2788,29265530,28852738,6753,2788,29265530,28852738,295223,126709,2059325304,1799316831,100,100,100,100,2.29,2.2,1.42,1.6
-03812,33,003,33003,824,1388,157013566,156358082,824,1388,157013566,156358082,47818,39813,2570392929,2411436914,100,100,100,100,1.72,3.49,6.11,6.48
-03813,33,003,33003,3250,2023,254512117,249037888,3250,2023,254512117,249037888,47818,39813,2570392929,2411436914,100,100,100,100,6.8,5.08,9.9,10.33
-03814,33,003,33003,2329,1942,93270744,81982158,2329,1942,93270744,81982158,47818,39813,2570392929,2411436914,100,100,100,100,4.87,4.88,3.63,3.4
-03816,33,003,33003,1368,1069,89821247,75187121,1368,1069,89821247,75187121,47818,39813,2570392929,2411436914,100,100,100,100,2.86,2.69,3.49,3.12
-03817,33,003,33003,574,467,26957261,25632724,574,467,26957261,25632724,47818,39813,2570392929,2411436914,100,100,100,100,1.2,1.17,1.05,1.06
-03818,33,003,33003,3807,2378,222448267,219963235,3807,2378,222448267,219963235,47818,39813,2570392929,2411436914,100,100,100,100,7.96,5.97,8.65,9.12
-03819,33,015,33015,4377,1681,30813585,30342924,4377,1681,30813585,30342924,295223,126709,2059325304,1799316831,100,100,100,100,1.48,1.33,1.5,1.69
-03820,33,017,33017,30039,13705,78430815,71925604,30039,13705,78430815,71925604,123143,51697,994559477,955640569,100,100,100,100,24.39,26.51,7.89,7.53
-03823,33,017,33017,1719,633,28403772,27454805,1719,633,28403772,27454805,123143,51697,994559477,955640569,100,100,100,100,1.4,1.22,2.86,2.87
-03824,33,017,33017,14638,3092,64196460,57959560,14638,3092,64196460,57959560,123143,51697,994559477,955640569,100,100,100,100,11.89,5.98,6.45,6.06
-03825,33,017,33017,8512,3635,124429134,119638678,8512,3635,124429134,119638678,123143,51697,994559477,955640569,100,100,100,100,6.91,7.03,12.51,12.52
-03826,33,015,33015,2470,1116,7372188,7366669,2470,1116,7372188,7366669,295223,126709,2059325304,1799316831,100,100,100,100,0.84,0.88,0.36,0.41
-03827,33,015,33015,3150,1403,46538758,46024515,3150,1403,46538758,46024515,295223,126709,2059325304,1799316831,100,100,100,100,1.07,1.11,2.26,2.56
-03830,33,003,33003,1610,1735,38542576,33330566,1610,1735,38542576,33330566,47818,39813,2570392929,2411436914,100,100,100,100,3.37,4.36,1.5,1.38
-03832,33,003,33003,395,294,68056232,64559964,395,294,68056232,64559964,47818,39813,2570392929,2411436914,100,100,100,100,0.83,0.74,2.65,2.68
-03833,33,015,33015,20955,8668,127295412,125711686,20955,8668,127295412,125711686,295223,126709,2059325304,1799316831,100,100,100,100,7.1,6.84,6.18,6.99
-03835,33,017,33017,6786,2832,97219004,96394821,6786,2832,97219004,96394821,123143,51697,994559477,955640569,100,100,100,100,5.51,5.48,9.78,10.09
-03836,33,003,33003,1489,1580,98732190,90610392,1489,1580,98732190,90610392,47818,39813,2570392929,2411436914,100,100,100,100,3.11,3.97,3.84,3.76
-03837,33,001,33001,1519,839,53905361,52207029,1519,839,53905361,52207029,60088,37386,1213621478,1036596332,100,100,100,100,2.53,2.24,4.44,5.04
-03838,33,003,33003,1031,1652,60083248,59534640,1031,1652,60083248,59534640,47818,39813,2570392929,2411436914,100,100,100,100,2.16,4.15,2.34,2.47
-03839,33,017,33017,3735,1603,21976960,21940837,3735,1603,21976960,21940837,123143,51697,994559477,955640569,100,100,100,100,3.03,3.1,2.21,2.3
-03840,33,015,33015,3566,1448,34440661,27002945,3566,1448,34440661,27002945,295223,126709,2059325304,1799316831,100,100,100,100,1.21,1.14,1.67,1.5
-03841,33,015,33015,6334,2683,29692189,27979295,6334,2683,29692189,27979295,295223,126709,2059325304,1799316831,100,100,100,100,2.15,2.12,1.44,1.55
-03842,33,015,33015,15345,9803,35592352,32995704,15345,9803,35592352,32995704,295223,126709,2059325304,1799316831,100,100,100,100,5.2,7.74,1.73,1.83
-03844,33,015,33015,2238,902,32777926,31896799,2238,902,32777926,31896799,295223,126709,2059325304,1799316831,100,100,100,100,0.76,0.71,1.59,1.77
-03845,33,003,33003,991,1148,34433931,34253090,991,1148,34433931,34253090,47818,39813,2570392929,2411436914,100,100,100,100,2.07,2.88,1.34,1.42
-03846,33,003,33003,799,992,168479084,168379170,799,992,168479084,168379170,47818,39813,2570392929,2411436914,100,100,100,100,1.67,2.49,6.55,6.98
-03847,33,003,33003,294,245,2209184,2205977,294,245,2209184,2205977,47818,39813,2570392929,2411436914,100,100,100,100,0.61,0.62,0.09,0.09
-03848,33,015,33015,6020,2477,54069952,50885764,6020,2477,54069952,50885764,295223,126709,2059325304,1799316831,100,100,100,100,2.04,1.95,2.63,2.83
-03849,33,003,33003,1585,1197,66247500,64729028,1585,1197,66247500,64729028,47818,39813,2570392929,2411436914,100,100,100,100,3.31,3.01,2.58,2.68
-03850,33,003,33003,372,367,9869939,7820672,372,367,9869939,7820672,47818,39813,2570392929,2411436914,100,100,100,100,0.78,0.92,0.38,0.32
-03851,33,017,33017,4040,1937,69916638,68325085,4040,1937,69916638,68325085,123143,51697,994559477,955640569,100,100,100,100,3.28,3.75,7.03,7.15
-03852,33,017,33017,558,244,19035941,17444288,558,244,19035941,17444288,123143,51697,994559477,955640569,100,100,100,100,0.45,0.47,1.91,1.83
-03853,33,003,33003,602,976,27215021,20518787,602,976,27215021,20518787,47818,39813,2570392929,2411436914,100,100,100,100,1.26,2.45,1.06,0.85
-03854,33,015,33015,968,537,5897294,2137294,968,537,5897294,2137294,295223,126709,2059325304,1799316831,100,100,100,100,0.33,0.42,0.29,0.12
-03855,33,017,33017,2638,1523,114347299,107514953,2638,1523,114347299,107514953,123143,51697,994559477,955640569,100,100,100,100,2.14,2.95,11.5,11.25
-03856,33,015,33015,1680,591,18795090,18376886,1680,591,18795090,18376886,295223,126709,2059325304,1799316831,100,100,100,100,0.57,0.47,0.91,1.02
-03857,33,015,33015,9006,4164,36829483,32630963,9006,4164,36829483,32630963,295223,126709,2059325304,1799316831,100,100,100,100,3.05,3.29,1.79,1.81
-03858,33,015,33015,4603,1751,26055004,25661608,4603,1751,26055004,25661608,295223,126709,2059325304,1799316831,100,100,100,100,1.56,1.38,1.27,1.43
-03860,33,003,33003,4056,3259,53064485,52244890,4056,3259,53064485,52244890,47818,39813,2570392929,2411436914,100,100,100,100,8.48,8.19,2.06,2.17
-03861,33,017,33017,4330,1765,52221652,51681417,4330,1765,52221652,51681417,123143,51697,994559477,955640569,100,100,100,100,3.52,3.41,5.25,5.41
-03862,33,015,33015,4278,1909,36072742,35952959,4278,1909,36072742,35952959,295223,126709,2059325304,1799316831,100,100,100,100,1.45,1.51,1.75,2
-03864,33,003,33003,1696,918,90475602,89456174,1696,918,90475602,89456174,47818,39813,2570392929,2411436914,100,100,100,100,3.55,2.31,3.52,3.71
-03865,33,015,33015,7609,3018,27578269,27551140,7609,3018,27578269,27551140,295223,126709,2059325304,1799316831,100,100,100,100,2.58,2.38,1.34,1.53
-03867,33,017,33017,20758,9464,78266006,77390106,20758,9464,78266006,77390106,123143,51697,994559477,955640569,100,100,100,100,16.86,18.31,7.87,8.1
-03868,33,017,33017,5323,2331,19577504,19557049,5323,2331,19577504,19557049,123143,51697,994559477,955640569,100,100,100,100,4.32,4.51,1.97,2.05
-03869,33,017,33017,2469,1072,19129577,18362386,2469,1072,19129577,18362386,123143,51697,994559477,955640569,100,100,100,100,2,2.07,1.92,1.92
-03870,33,015,33015,5162,2790,33500190,31593114,5162,2790,33500190,31593114,295223,126709,2059325304,1799316831,100,100,100,100,1.75,2.2,1.63,1.76
-03871,33,015,33015,136,62,1089821,1079210,136,62,1089821,1079210,295223,126709,2059325304,1799316831,100,100,100,100,0.05,0.05,0.05,0.06
-03872,33,003,33003,3809,2274,131129050,122511781,3809,2274,131129050,122511781,47818,39813,2570392929,2411436914,100,100,100,100,7.97,5.71,5.1,5.08
-03873,33,015,33015,5711,2119,35732520,34470970,5711,2119,35732520,34470970,295223,126709,2059325304,1799316831,100,100,100,100,1.93,1.67,1.74,1.92
-03874,33,015,33015,8776,4660,24987317,23141129,8776,4660,24987317,23141129,295223,126709,2059325304,1799316831,100,100,100,100,2.97,3.68,1.21,1.29
-03875,33,003,33003,833,629,40812765,36301459,833,629,40812765,36301459,47818,39813,2570392929,2411436914,100,100,100,100,1.74,1.58,1.59,1.51
-03878,33,017,33017,11824,5226,26392457,25883310,11824,5226,26392457,25883310,123143,51697,994559477,955640569,100,100,100,100,9.6,10.11,2.65,2.71
-03882,33,003,33003,1465,963,102564010,99512206,1465,963,102564010,99512206,47818,39813,2570392929,2411436914,100,100,100,100,3.06,2.42,3.99,4.13
-03883,33,003,33003,178,123,33237964,32951937,178,123,33237964,32951937,47818,39813,2570392929,2411436914,100,100,100,100,0.37,0.31,1.29,1.37
-03884,33,017,33017,3964,1772,131233201,125478071,3964,1772,131233201,125478071,123143,51697,994559477,955640569,100,100,100,100,3.22,3.43,13.2,13.13
-03885,33,015,33015,7261,2864,40127768,39183503,7261,2864,40127768,39183503,295223,126709,2059325304,1799316831,100,100,100,100,2.46,2.26,1.95,2.18
-03886,33,003,33003,2112,1400,99807319,98750503,2112,1400,99807319,98750503,47818,39813,2570392929,2411436914,100,100,100,100,4.42,3.52,3.88,4.1
-03887,33,003,33003,371,161,6302365,5490714,2154,1012,54247399,52342290,47818,39813,2570392929,2411436914,17.22,15.91,11.62,10.49,0.78,0.4,0.25,0.23
-03887,33,017,33017,1783,851,47945034,46851576,2154,1012,54247399,52342290,123143,51697,994559477,955640569,82.78,84.09,88.38,89.51,1.45,1.65,4.82,4.9
-03890,33,003,33003,327,200,12011261,11857668,327,200,12011261,11857668,47818,39813,2570392929,2411436914,100,100,100,100,0.68,0.5,0.47,0.49
-03894,33,003,33003,6314,4466,153919860,126517894,6314,4466,153919860,126517894,47818,39813,2570392929,2411436914,100,100,100,100,13.2,11.22,5.99,5.25
-03901,23,031,23031,7246,2935,98378299,97503017,7246,2935,98378299,97503017,197131,105773,3288544006,2565935077,100,100,100,100,3.68,2.77,2.99,3.8
-03902,23,031,23031,2211,1288,52740038,50748339,2211,1288,52740038,50748339,197131,105773,3288544006,2565935077,100,100,100,100,1.12,1.22,1.6,1.98
-03903,23,031,23031,6211,2671,55264110,51264299,6211,2671,55264110,51264299,197131,105773,3288544006,2565935077,100,100,100,100,3.15,2.53,1.68,2
-03904,23,031,23031,7703,3924,32700461,29002836,7703,3924,32700461,29002836,197131,105773,3288544006,2565935077,100,100,100,100,3.91,3.71,0.99,1.13
-03905,23,031,23031,1780,1016,21656821,17021886,1780,1016,21656821,17021886,197131,105773,3288544006,2565935077,100,100,100,100,0.9,0.96,0.66,0.66
-03906,23,031,23031,4647,1951,99435367,99067581,4647,1951,99435367,99067581,197131,105773,3288544006,2565935077,100,100,100,100,2.36,1.84,3.02,3.86
-03907,23,031,23031,894,2033,11966461,10588098,894,2033,11966461,10588098,197131,105773,3288544006,2565935077,100,100,100,100,0.45,1.92,0.36,0.41
-03908,23,031,23031,7233,2916,84624585,83310941,7233,2916,84624585,83310941,197131,105773,3288544006,2565935077,100,100,100,100,3.67,2.76,2.57,3.25
-03909,23,031,23031,9738,6475,99705122,89042009,9738,6475,99705122,89042009,197131,105773,3288544006,2565935077,100,100,100,100,4.94,6.12,3.03,3.47
-03910,23,031,23031,328,577,1033793,880516,328,577,1033793,880516,197131,105773,3288544006,2565935077,100,100,100,100,0.17,0.55,0.03,0.03
-03911,23,031,23031,250,285,3494344,900654,250,285,3494344,900654,197131,105773,3288544006,2565935077,100,100,100,100,0.13,0.27,0.11,0.04
-04001,23,031,23031,2429,2182,101829441,93144479,2429,2182,101829441,93144479,197131,105773,3288544006,2565935077,100,100,100,100,1.23,2.06,3.1,3.63
-04002,23,031,23031,7351,3411,176564096,170961043,7351,3411,176564096,170961043,197131,105773,3288544006,2565935077,100,100,100,100,3.73,3.22,5.37,6.66
-04003,23,005,23005,330,524,54850074,2984238,330,524,54850074,2984238,281674,138657,3153213280,2163263369,100,100,100,100,0.12,0.38,1.74,0.14
-04005,23,031,23031,23146,10687,138522576,124061683,23146,10687,138522576,124061683,197131,105773,3288544006,2565935077,100,100,100,100,11.74,10.1,4.21,4.83
-04006,23,031,23031,96,130,194734,194734,96,130,194734,194734,197131,105773,3288544006,2565935077,100,100,100,100,0.05,0.12,0.01,0.01
-04008,23,023,23023,2723,1195,108674403,92331539,2723,1195,108674403,92331539,35293,18288,958398843,657066836,100,100,100,100,7.72,6.53,11.34,14.05
-04009,23,005,23005,5151,4025,172063458,146675592,5151,4025,172063458,146675592,281674,138657,3153213280,2163263369,100,100,100,100,1.83,2.9,5.46,6.78
-04010,23,017,23017,1597,973,117722769,115175447,1597,973,117722769,115175447,57833,36055,5635077704,5378990983,100,100,100,100,2.76,2.7,2.09,2.14
-04011,23,005,23005,20278,9599,140718167,121022203,20278,9599,140718167,121022203,281674,138657,3153213280,2163263369,100,100,100,100,7.2,6.92,4.46,5.59
-04015,23,005,23005,3808,2942,88417611,82235850,3808,2942,88417611,82235850,281674,138657,3153213280,2163263369,100,100,100,100,1.35,2.12,2.8,3.8
-04017,23,005,23005,341,525,50820050,9210888,341,525,50820050,9210888,281674,138657,3153213280,2163263369,100,100,100,100,0.12,0.38,1.61,0.43
-04019,23,005,23005,71,155,15228015,1864047,71,155,15228015,1864047,281674,138657,3153213280,2163263369,100,100,100,100,0.03,0.11,0.48,0.09
-04020,23,031,23031,1403,692,57941015,57434668,1403,692,57941015,57434668,197131,105773,3288544006,2565935077,100,100,100,100,0.71,0.65,1.76,2.24
-04021,23,005,23005,5820,2220,53491253,53424042,5820,2220,53491253,53424042,281674,138657,3153213280,2163263369,100,100,100,100,2.07,1.6,1.7,2.47
-04022,23,017,23017,1148,1075,129329232,119457679,1148,1075,129329232,119457679,57833,36055,5635077704,5378990983,100,100,100,100,1.99,2.98,2.3,2.22
-04024,23,005,23005,608,305,41521911,41039400,608,305,41521911,41039400,281674,138657,3153213280,2163263369,100,100,100,100,0.22,0.22,1.32,1.9
-04027,23,031,23031,6031,2540,144591344,142454022,6031,2540,144591344,142454022,197131,105773,3288544006,2565935077,100,100,100,100,3.06,2.4,4.4,5.55
-04029,23,005,23005,1725,1474,90348608,85120344,1725,1474,90348608,85120344,281674,138657,3153213280,2163263369,100,100,100,100,0.61,1.06,2.87,3.93
-04030,23,031,23031,2208,1214,45449219,43066152,2208,1214,45449219,43066152,197131,105773,3288544006,2565935077,100,100,100,100,1.12,1.15,1.38,1.68
-04032,23,005,23005,7879,3690,120355379,89883376,7879,3690,120355379,89883376,281674,138657,3153213280,2163263369,100,100,100,100,2.8,2.66,3.82,4.15
-04037,23,017,23017,3834,2076,233531370,213628639,3834,2076,233531370,213628639,57833,36055,5635077704,5378990983,100,100,100,100,6.63,5.76,4.14,3.97
-04038,23,005,23005,16381,5972,132820050,131094666,16381,5972,132820050,131094666,281674,138657,3153213280,2163263369,100,100,100,100,5.82,4.31,4.21,6.06
-04039,23,005,23005,7422,3525,107710711,105253986,7422,3525,107710711,105253986,281674,138657,3153213280,2163263369,100,100,100,100,2.63,2.54,3.42,4.87
-04040,23,005,23005,2733,1764,89490078,86220388,3111,2089,165191577,159555995,281674,138657,3153213280,2163263369,87.85,84.44,54.17,54.04,0.97,1.27,2.84,3.99
-04040,23,017,23017,378,325,75701499,73335607,3111,2089,165191577,159555995,57833,36055,5635077704,5378990983,12.15,15.56,45.83,45.96,0.65,0.9,1.34,1.36
-04041,23,017,23017,1613,902,100325583,96909853,1613,902,100325583,96909853,57833,36055,5635077704,5378990983,100,100,100,100,2.79,2.5,1.78,1.8
-04042,23,031,23031,4281,1801,85456398,82913900,4281,1801,85456398,82913900,197131,105773,3288544006,2565935077,100,100,100,100,2.17,1.7,2.6,3.23
-04043,23,031,23031,10810,5912,93773458,91372431,10810,5912,93773458,91372431,197131,105773,3288544006,2565935077,100,100,100,100,5.48,5.59,2.85,3.56
-04046,23,031,23031,7496,4589,122930194,114972813,7496,4589,122930194,114972813,197131,105773,3288544006,2565935077,100,100,100,100,3.8,4.34,3.74,4.48
-04047,23,031,23031,1892,1168,153494350,150842659,1892,1168,153494350,150842659,197131,105773,3288544006,2565935077,100,100,100,100,0.96,1.1,4.67,5.88
-04048,23,031,23031,2946,1587,75959874,72995461,2946,1587,75959874,72995461,197131,105773,3288544006,2565935077,100,100,100,100,1.49,1.5,2.31,2.84
-04049,23,031,23031,3659,1597,109298168,105863268,3659,1597,109298168,105863268,197131,105773,3288544006,2565935077,100,100,100,100,1.86,1.51,3.32,4.13
-04050,23,005,23005,230,381,37292944,3688589,230,381,37292944,3688589,281674,138657,3153213280,2163263369,100,100,100,100,0.08,0.27,1.18,0.17
-04051,23,017,23017,1153,1233,125352128,113058652,1153,1233,125352128,113058652,57833,36055,5635077704,5378990983,100,100,100,100,1.99,3.42,2.22,2.1
-04055,23,005,23005,3793,2970,94611383,80559314,3793,2970,94611383,80559314,281674,138657,3153213280,2163263369,100,100,100,100,1.35,2.14,3,3.72
-04056,23,031,23031,257,150,15020730,14607111,257,150,15020730,14607111,197131,105773,3288544006,2565935077,100,100,100,100,0.13,0.14,0.46,0.57
-04057,23,005,23005,56,23,142740,142740,56,23,142740,142740,281674,138657,3153213280,2163263369,100,100,100,100,0.02,0.02,0,0.01
-04061,23,031,23031,3369,1419,52731699,50924941,3369,1419,52731699,50924941,197131,105773,3288544006,2565935077,100,100,100,100,1.71,1.34,1.6,1.98
-04062,23,005,23005,17020,7171,128846434,121660712,17020,7171,128846434,121660712,281674,138657,3153213280,2163263369,100,100,100,100,6.04,5.17,4.09,5.62
-04063,23,031,23031,412,647,1742189,1735833,412,647,1742189,1735833,197131,105773,3288544006,2565935077,100,100,100,100,0.21,0.61,0.05,0.07
-04064,23,031,23031,8212,6239,19322276,17519294,8212,6239,19322276,17519294,197131,105773,3288544006,2565935077,100,100,100,100,4.17,5.9,0.59,0.68
-04066,23,005,23005,539,534,10714320,4666654,539,534,10714320,4666654,281674,138657,3153213280,2163263369,100,100,100,100,0.19,0.39,0.34,0.22
-04068,23,017,23017,1505,819,85458462,81917280,1505,819,85458462,81917280,57833,36055,5635077704,5378990983,100,100,100,100,2.6,2.27,1.52,1.52
-04069,23,005,23005,1465,610,59230962,59192594,1465,610,59230962,59192594,281674,138657,3153213280,2163263369,100,100,100,100,0.52,0.44,1.88,2.74
-04071,23,005,23005,4801,3669,112858708,96085048,4801,3669,112858708,96085048,281674,138657,3153213280,2163263369,100,100,100,100,1.7,2.65,3.58,4.44
-04072,23,031,23031,18482,8508,107370144,99620114,18482,8508,107370144,99620114,197131,105773,3288544006,2565935077,100,100,100,100,9.38,8.04,3.26,3.88
-04073,23,031,23031,16189,7397,98916770,96846448,16189,7397,98916770,96846448,197131,105773,3288544006,2565935077,100,100,100,100,8.21,6.99,3.01,3.77
-04074,23,005,23005,18760,8514,136184355,123200760,18760,8514,136184355,123200760,281674,138657,3153213280,2163263369,100,100,100,100,6.66,6.14,4.32,5.7
-04076,23,031,23031,2683,2047,106725397,100404927,2683,2047,106725397,100404927,197131,105773,3288544006,2565935077,100,100,100,100,1.36,1.94,3.25,3.91
-04079,23,005,23005,3871,3150,151586567,54992768,3871,3150,151586567,54992768,281674,138657,3153213280,2163263369,100,100,100,100,1.37,2.27,4.81,2.54
-04083,23,031,23031,4525,2028,26323214,25875459,4525,2028,26323214,25875459,197131,105773,3288544006,2565935077,100,100,100,100,2.3,1.92,0.8,1.01
-04084,23,005,23005,8088,3767,126401271,121475337,8088,3767,126401271,121475337,281674,138657,3153213280,2163263369,100,100,100,100,2.87,2.72,4.01,5.62
-04085,23,005,23005,1786,658,32030856,31237424,1786,658,32030856,31237424,281674,138657,3153213280,2163263369,100,100,100,100,0.63,0.47,1.02,1.44
-04086,23,023,23023,8787,4170,92190939,83400642,8787,4170,92190939,83400642,35293,18288,958398843,657066836,100,100,100,100,24.9,22.8,9.62,12.69
-04087,23,031,23031,2116,941,49860276,49308319,2116,941,49860276,49308319,197131,105773,3288544006,2565935077,100,100,100,100,1.07,0.89,1.52,1.92
-04088,23,017,23017,1516,1041,131252318,124767848,1516,1041,131252318,124767848,57833,36055,5635077704,5378990983,100,100,100,100,2.62,2.89,2.33,2.32
-04090,23,031,23031,9589,8557,152161389,149318663,9589,8557,152161389,149318663,197131,105773,3288544006,2565935077,100,100,100,100,4.86,8.09,4.63,5.82
-04091,23,005,23005,911,385,51827344,50145966,911,385,51827344,50145966,281674,138657,3153213280,2163263369,100,100,100,100,0.32,0.28,1.64,2.32
-04092,23,005,23005,17515,8001,44931266,44387577,17515,8001,44931266,44387577,281674,138657,3153213280,2163263369,100,100,100,100,6.22,5.77,1.42,2.05
-04093,23,031,23031,8034,3301,106790361,104955800,8034,3301,106790361,104955800,197131,105773,3288544006,2565935077,100,100,100,100,4.08,3.12,3.25,4.09
-04095,23,031,23031,1274,958,77849698,75210679,1274,958,77849698,75210679,197131,105773,3288544006,2565935077,100,100,100,100,0.65,0.91,2.37,2.93
-04096,23,005,23005,8349,3819,59428667,34582021,8349,3819,59428667,34582021,281674,138657,3153213280,2163263369,100,100,100,100,2.96,2.75,1.88,1.6
-04097,23,005,23005,3574,1357,55478939,54977244,3574,1357,55478939,54977244,281674,138657,3153213280,2163263369,100,100,100,100,1.27,0.98,1.76,2.54
-04101,23,005,23005,17227,9950,7526363,5134232,17227,9950,7526363,5134232,281674,138657,3153213280,2163263369,100,100,100,100,6.12,7.18,0.24,0.24
-04102,23,005,23005,17335,8387,16854834,15318671,17335,8387,16854834,15318671,281674,138657,3153213280,2163263369,100,100,100,100,6.15,6.05,0.53,0.71
-04103,23,005,23005,30606,14053,28546195,26438888,30606,14053,28546195,26438888,281674,138657,3153213280,2163263369,100,100,100,100,10.87,10.14,0.91,1.22
-04105,23,005,23005,11158,4732,93862284,75875677,11158,4732,93862284,75875677,281674,138657,3153213280,2163263369,100,100,100,100,3.96,3.41,2.98,3.51
-04106,23,005,23005,25175,11594,36881517,31630418,25175,11594,36881517,31630418,281674,138657,3153213280,2163263369,100,100,100,100,8.94,8.36,1.17,1.46
-04107,23,005,23005,8980,3944,54146980,37541117,8980,3944,54146980,37541117,281674,138657,3153213280,2163263369,100,100,100,100,3.19,2.84,1.72,1.74
-04108,23,005,23005,862,983,4788742,3084815,862,983,4788742,3084815,281674,138657,3153213280,2163263369,100,100,100,100,0.31,0.71,0.15,0.14
-04109,23,005,23005,93,308,31722918,3341947,93,308,31722918,3341947,281674,138657,3153213280,2163263369,100,100,100,100,0.03,0.22,1.01,0.15
-04110,23,005,23005,1391,682,14486490,5825410,1391,682,14486490,5825410,281674,138657,3153213280,2163263369,100,100,100,100,0.49,0.49,0.46,0.27
-04210,23,001,23001,23045,11013,170138597,153542566,23045,11013,170138597,153542566,107702,49090,1287537117,1211926439,100,100,100,100,21.4,22.43,13.21,12.67
-04216,23,017,23017,640,527,367652733,354433713,640,527,367652733,354433713,57833,36055,5635077704,5378990983,100,100,100,100,1.11,1.46,6.52,6.59
-04217,23,017,23017,3312,2434,480704024,473357697,3312,2434,480704024,473357697,57833,36055,5635077704,5378990983,100,100,100,100,5.73,6.75,8.53,8.8
-04219,23,017,23017,1472,1079,162041408,158979683,1472,1079,162041408,158979683,57833,36055,5635077704,5378990983,100,100,100,100,2.55,2.99,2.88,2.96
-04220,23,017,23017,3077,1532,205564952,203068751,3077,1532,205564952,203068751,57833,36055,5635077704,5378990983,100,100,100,100,5.32,4.25,3.65,3.78
-04221,23,017,23017,1098,551,87929101,83090441,1098,551,87929101,83090441,57833,36055,5635077704,5378990983,100,100,100,100,1.9,1.53,1.56,1.54
-04222,23,001,23001,3848,1548,101121526,99145260,3848,1548,101121526,99145260,107702,49090,1287537117,1211926439,100,100,100,100,3.57,3.15,7.85,8.18
-04224,23,007,23007,569,351,87251928,86915754,3040,1495,193740467,192329593,30768,21709,4515589356,4394196449,18.72,23.48,45.04,45.19,1.85,1.62,1.93,1.98
-04224,23,017,23017,2471,1144,106488539,105413839,3040,1495,193740467,192329593,57833,36055,5635077704,5378990983,81.28,76.52,54.96,54.81,4.27,3.17,1.89,1.96
-04226,23,017,23017,190,128,27985775,27924372,190,128,27985775,27924372,57833,36055,5635077704,5378990983,100,100,100,100,0.33,0.36,0.5,0.52
-04227,23,017,23017,79,36,1465452,1465452,79,36,1465452,1465452,57833,36055,5635077704,5378990983,100,100,100,100,0.14,0.1,0.03,0.03
-04228,23,001,23001,6,9,220043,177187,6,9,220043,177187,107702,49090,1287537117,1211926439,100,100,100,100,0.01,0.02,0.02,0.01
-04231,23,017,23017,236,339,90571399,88236368,236,339,90571399,88236368,57833,36055,5635077704,5378990983,100,100,100,100,0.41,0.94,1.61,1.64
-04234,23,007,23007,168,66,848752,848752,168,66,848752,848752,30768,21709,4515589356,4394196449,100,100,100,100,0.55,0.3,0.02,0.02
-04236,23,001,23001,4350,1880,91131198,83594263,4350,1880,91131198,83594263,107702,49090,1287537117,1211926439,100,100,100,100,4.04,3.83,7.08,6.9
-04237,23,017,23017,238,235,19559151,18226000,238,235,19559151,18226000,57833,36055,5635077704,5378990983,100,100,100,100,0.41,0.65,0.35,0.34
-04238,23,017,23017,1416,483,58376814,58034589,1416,483,58376814,58034589,57833,36055,5635077704,5378990983,100,100,100,100,2.45,1.34,1.04,1.08
-04239,23,007,23007,4851,2252,127421004,125290110,4851,2252,127421004,125290110,30768,21709,4515589356,4394196449,100,100,100,100,15.77,10.37,2.82,2.85
-04240,23,001,23001,36592,16731,92034620,88439163,36592,16731,92034620,88439163,107702,49090,1287537117,1211926439,100,100,100,100,33.98,34.08,7.15,7.3
-04250,23,001,23001,4228,1850,32963105,30886554,4228,1850,32963105,30886554,107702,49090,1287537117,1211926439,100,100,100,100,3.93,3.77,2.56,2.55
-04252,23,001,23001,4799,2103,28760221,28235082,4799,2103,28760221,28235082,107702,49090,1287537117,1211926439,100,100,100,100,4.46,4.28,2.23,2.33
-04253,23,001,23001,2095,1127,102031760,97435647,2095,1127,102031760,97435647,107702,49090,1287537117,1211926439,100,100,100,100,1.95,2.3,7.92,8.04
-04254,23,001,23001,3181,1525,52670992,50797160,3181,1525,52670992,50797160,107702,49090,1287537117,1211926439,100,100,100,100,2.95,3.11,4.09,4.19
-04255,23,017,23017,802,798,101635071,97986667,802,798,101635071,97986667,57833,36055,5635077704,5378990983,100,100,100,100,1.39,2.21,1.8,1.82
-04256,23,001,23001,3064,1310,29576429,29156999,3064,1310,29576429,29156999,107702,49090,1287537117,1211926439,100,100,100,100,2.84,2.67,2.3,2.41
-04257,23,017,23017,2681,1404,61055665,60451775,2681,1404,61055665,60451775,57833,36055,5635077704,5378990983,100,100,100,100,4.64,3.89,1.08,1.12
-04258,23,001,23001,2617,1059,77199088,76719052,2617,1059,77199088,76719052,107702,49090,1287537117,1211926439,100,100,100,100,2.43,2.16,6,6.33
-04259,23,011,23011,3264,1636,88857425,76106090,3264,1636,88857425,76106090,122151,60972,2463530618,2246876912,100,100,100,100,2.67,2.68,3.61,3.39
-04260,23,005,23005,5542,2295,123814307,122048426,5542,2295,123814307,122048426,281674,138657,3153213280,2163263369,100,100,100,100,1.97,1.66,3.93,5.64
-04261,23,017,23017,444,1557,545641174,541911861,444,1557,545641174,541911861,57833,36055,5635077704,5378990983,100,100,100,100,0.77,4.32,9.68,10.07
-04263,23,001,23001,2326,1018,112437222,103735410,2326,1018,112437222,103735410,107702,49090,1287537117,1211926439,100,100,100,100,2.16,2.07,8.73,8.56
-04265,23,011,23011,918,497,20743551,18292885,918,497,20743551,18292885,122151,60972,2463530618,2246876912,100,100,100,100,0.75,0.82,0.84,0.81
-04267,23,017,23017,37,48,5833696,5373655,37,48,5833696,5373655,57833,36055,5635077704,5378990983,100,100,100,100,0.06,0.13,0.1,0.1
-04268,23,017,23017,5023,2808,124121448,118189133,5023,2808,124121448,118189133,57833,36055,5635077704,5378990983,100,100,100,100,8.69,7.79,2.2,2.2
-04270,23,017,23017,5880,3339,223037969,203680082,5880,3339,223037969,203680082,57833,36055,5635077704,5378990983,100,100,100,100,10.17,9.26,3.96,3.79
-04271,23,017,23017,67,43,467501,467501,67,43,467501,467501,57833,36055,5635077704,5378990983,100,100,100,100,0.12,0.12,0.01,0.01
-04274,23,001,23001,5343,2668,121537330,108702334,5343,2668,121537330,108702334,107702,49090,1287537117,1211926439,100,100,100,100,4.96,5.43,9.44,8.97
-04275,23,017,23017,514,653,250427023,245332123,514,653,250427023,245332123,57833,36055,5635077704,5378990983,100,100,100,100,0.89,1.81,4.44,4.56
-04276,23,017,23017,5841,3287,180896968,177531573,5841,3287,180896968,177531573,57833,36055,5635077704,5378990983,100,100,100,100,10.1,9.12,3.21,3.3
-04280,23,001,23001,6474,2768,113273124,107888609,6474,2768,113273124,107888609,107702,49090,1287537117,1211926439,100,100,100,100,6.01,5.64,8.8,8.9
-04281,23,017,23017,5116,2376,105647198,105134108,5116,2376,105647198,105134108,57833,36055,5635077704,5378990983,100,100,100,100,8.85,6.59,1.87,1.95
-04282,23,001,23001,5734,2481,162441862,153471153,5734,2481,162441862,153471153,107702,49090,1287537117,1211926439,100,100,100,100,5.32,5.05,12.62,12.66
-04284,23,011,23011,1138,755,58706523,43808086,1138,755,58706523,43808086,122151,60972,2463530618,2246876912,100,100,100,100,0.93,1.24,2.38,1.95
-04285,23,007,23007,433,649,176193613,167375195,433,649,176193613,167375195,30768,21709,4515589356,4394196449,100,100,100,100,1.41,2.99,3.9,3.81
-04286,23,017,23017,47,22,145209,145209,47,22,145209,145209,57833,36055,5635077704,5378990983,100,100,100,100,0.08,0.06,0,0
-04287,23,023,23023,3224,1283,115387407,115081964,3224,1283,115387407,115081964,35293,18288,958398843,657066836,100,100,100,100,9.13,7.02,12.04,17.51
-04289,23,017,23017,1815,815,63235833,62822854,1815,815,63235833,62822854,57833,36055,5635077704,5378990983,100,100,100,100,3.14,2.26,1.12,1.17
-04290,23,017,23017,1541,909,123284213,120891992,1541,909,123284213,120891992,57833,36055,5635077704,5378990983,100,100,100,100,2.66,2.52,2.19,2.25
-04292,23,017,23017,948,568,116307977,114760289,948,568,116307977,114760289,57833,36055,5635077704,5378990983,100,100,100,100,1.64,1.58,2.06,2.13
-04294,23,007,23007,3995,1993,153342930,149296132,3995,1993,153342930,149296132,30768,21709,4515589356,4394196449,100,100,100,100,12.98,9.18,3.4,3.4
-04330,23,011,23011,26086,12740,320421801,303247577,26086,12740,320421801,303247577,122151,60972,2463530618,2246876912,100,100,100,100,21.36,20.89,13.01,13.5
-04342,23,015,23015,1672,819,86022106,78871354,1672,819,86022106,78871354,34457,23493,1811963989,1180563700,100,100,100,100,4.85,3.49,4.75,6.68
-04343,23,011,23011,25,30,1315314,1315314,25,30,1315314,1315314,122151,60972,2463530618,2246876912,100,100,100,100,0.02,0.05,0.05,0.06
-04344,23,011,23011,2951,1367,29878673,29085600,2951,1367,29878673,29085600,122151,60972,2463530618,2246876912,100,100,100,100,2.42,2.24,1.21,1.29
-04345,23,011,23011,11634,5415,197695403,186622637,11646,5421,197733307,186660541,122151,60972,2463530618,2246876912,99.9,99.89,99.98,99.98,9.52,8.88,8.02,8.31
-04345,23,023,23023,12,6,37904,37904,11646,5421,197733307,186660541,35293,18288,958398843,657066836,0.1,0.11,0.02,0.02,0.03,0.03,0,0.01
-04346,23,011,23011,1772,900,5778999,5516107,1772,900,5778999,5516107,122151,60972,2463530618,2246876912,100,100,100,100,1.45,1.48,0.23,0.25
-04347,23,011,23011,2355,1317,15764775,15209805,2355,1317,15764775,15209805,122151,60972,2463530618,2246876912,100,100,100,100,1.93,2.16,0.64,0.68
-04348,23,015,23015,2976,1869,212714751,194868973,2976,1869,212714751,194868973,34457,23493,1811963989,1180563700,100,100,100,100,8.64,7.96,11.74,16.51
-04349,23,011,23011,1158,836,84300568,76240916,1158,836,84300568,76240916,122151,60972,2463530618,2246876912,100,100,100,100,0.95,1.37,3.42,3.39
-04350,23,011,23011,3577,1827,101744432,96193173,3577,1827,101744432,96193173,122151,60972,2463530618,2246876912,100,100,100,100,2.93,3,4.13,4.28
-04351,23,011,23011,2571,1240,58181687,55080335,2571,1240,58181687,55080335,122151,60972,2463530618,2246876912,100,100,100,100,2.1,2.03,2.36,2.45
-04352,23,011,23011,1632,1093,110025843,97731016,1632,1093,110025843,97731016,122151,60972,2463530618,2246876912,100,100,100,100,1.34,1.79,4.47,4.35
-04353,23,015,23015,2300,1055,123040152,121252291,2300,1055,123040152,121252291,34457,23493,1811963989,1180563700,100,100,100,100,6.67,4.49,6.79,10.27
-04354,23,027,23027,1535,975,112844184,105047942,1535,975,112844184,105047942,38786,21566,2208629326,1890479704,100,100,100,100,3.96,4.52,5.11,5.56
-04355,23,011,23011,2600,1303,80436885,75792547,2600,1303,80436885,75792547,122151,60972,2463530618,2246876912,100,100,100,100,2.13,2.14,3.27,3.37
-04357,23,023,23023,3399,1623,81712052,78723549,3399,1623,81712052,78723549,35293,18288,958398843,657066836,100,100,100,100,9.63,8.87,8.53,11.98
-04358,23,011,23011,4276,2290,146980158,128907712,4276,2290,146980158,128907712,122151,60972,2463530618,2246876912,100,100,100,100,3.5,3.76,5.97,5.74
-04359,23,011,23011,388,177,2957181,1860714,388,177,2957181,1860714,122151,60972,2463530618,2246876912,100,100,100,100,0.32,0.29,0.12,0.08
-04360,23,011,23011,560,409,65787520,62665007,560,409,65787520,62665007,122151,60972,2463530618,2246876912,100,100,100,100,0.46,0.67,2.67,2.79
-04363,23,011,23011,2575,1152,92003952,89742067,2575,1152,92003952,89742067,122151,60972,2463530618,2246876912,100,100,100,100,2.11,1.89,3.73,3.99
-04364,23,011,23011,6025,3230,95707318,79037654,6025,3230,95707318,79037654,122151,60972,2463530618,2246876912,100,100,100,100,4.93,5.3,3.88,3.52
-04401,23,019,23019,44899,20739,275895976,259596685,44899,20739,275895976,259596685,153923,73860,9212796487,8799125852,100,100,100,100,29.17,28.08,2.99,2.95
-04406,23,021,23021,819,739,239750738,233532086,819,739,239750738,233532086,17535,15340,11338880574,10258570727,100,100,100,100,4.67,4.82,2.11,2.28
-04408,23,009,23009,176,379,340987483,306480338,176,379,340987483,306480338,54418,40184,6073355124,4110034060,100,100,100,100,0.32,0.94,5.61,7.46
-04410,23,019,23019,1290,583,106666156,106666156,1290,583,106666156,106666156,153923,73860,9212796487,8799125852,100,100,100,100,0.84,0.79,1.16,1.21
-04411,23,019,23019,1492,713,113195597,110258165,1492,713,113195597,110258165,153923,73860,9212796487,8799125852,100,100,100,100,0.97,0.97,1.23,1.25
-04412,23,019,23019,9482,4457,40624128,39455711,9482,4457,40624128,39455711,153923,73860,9212796487,8799125852,100,100,100,100,6.16,6.03,0.44,0.45
-04413,23,029,23029,196,203,168372406,133069719,196,203,168372406,133069719,32856,23001,8437277332,6637257545,100,100,100,100,0.6,0.88,2,2
-04414,23,021,23021,1248,1224,662645756,637155140,1248,1224,662645756,637155140,17535,15340,11338880574,10258570727,100,100,100,100,7.12,7.98,5.84,6.21
-04415,23,021,23021,276,149,4211114,4097989,276,149,4211114,4097989,17535,15340,11338880574,10258570727,100,100,100,100,1.57,0.97,0.04,0.04
-04416,23,009,23009,5468,2843,169119784,149650960,5468,2843,169119784,149650960,54418,40184,6073355124,4110034060,100,100,100,100,10.05,7.07,2.78,3.64
-04417,23,019,23019,370,445,169028217,161730677,370,445,169028217,161730677,153923,73860,9212796487,8799125852,100,100,100,100,0.24,0.6,1.83,1.84
-04418,23,019,23019,1771,961,382763128,381691643,1771,961,382763128,381691643,153923,73860,9212796487,8799125852,100,100,100,100,1.15,1.3,4.15,4.34
-04419,23,019,23019,2794,1182,95558823,94612249,2794,1182,95558823,94612249,153923,73860,9212796487,8799125852,100,100,100,100,1.82,1.6,1.04,1.08
-04421,23,009,23009,1366,704,51834368,20149824,1366,704,51834368,20149824,54418,40184,6073355124,4110034060,100,100,100,100,2.51,1.75,0.85,0.49
-04422,23,019,23019,1409,546,105064200,105031183,1409,546,105064200,105031183,153923,73860,9212796487,8799125852,100,100,100,100,0.92,0.74,1.14,1.19
-04424,23,003,23003,234,380,158673017,132583134,823,962,315261582,272449306,71870,39529,17683318606,17278664655,28.43,39.5,50.33,48.66,0.33,0.96,0.9,0.77
-04424,23,029,23029,589,582,156588565,139866172,823,962,315261582,272449306,32856,23001,8437277332,6637257545,71.57,60.5,49.67,51.34,1.79,2.53,1.86,2.11
-04426,23,021,23021,4720,3070,423487471,400074698,4720,3070,423487471,400074698,17535,15340,11338880574,10258570727,100,100,100,100,26.92,20.01,3.73,3.9
-04427,23,019,23019,2858,1223,104108159,104108159,2858,1223,104108159,104108159,153923,73860,9212796487,8799125852,100,100,100,100,1.86,1.66,1.13,1.18
-04428,23,019,23019,3146,1505,161721260,154153075,3146,1505,161721260,154153075,153923,73860,9212796487,8799125852,100,100,100,100,2.04,2.04,1.76,1.75
-04429,23,009,23009,1641,1237,114622197,101580793,4717,2717,198877344,182704788,54418,40184,6073355124,4110034060,34.79,45.53,57.63,55.6,3.02,3.08,1.89,2.47
-04429,23,019,23019,3076,1480,84255147,81123995,4717,2717,198877344,182704788,153923,73860,9212796487,8799125852,65.21,54.47,42.37,44.4,2,2,0.91,0.92
-04430,23,019,23019,1728,875,25838937,23379537,1728,875,25838937,23379537,153923,73860,9212796487,8799125852,100,100,100,100,1.12,1.18,0.28,0.27
-04431,23,009,23009,81,65,1120103,809372,81,65,1120103,809372,54418,40184,6073355124,4110034060,100,100,100,100,0.15,0.16,0.02,0.02
-04434,23,019,23019,1246,559,64667719,64253326,1246,559,64667719,64253326,153923,73860,9212796487,8799125852,100,100,100,100,0.81,0.76,0.7,0.73
-04435,23,019,23019,1092,491,99939276,99875579,1092,491,99939276,99875579,153923,73860,9212796487,8799125852,100,100,100,100,0.71,0.66,1.08,1.14
-04438,23,027,23027,1124,537,67097293,63737496,1124,537,67097293,63737496,38786,21566,2208629326,1890479704,100,100,100,100,2.9,2.49,3.04,3.37
-04441,23,021,23021,1840,2662,1571912850,1505788328,1840,2662,1571912850,1505788328,17535,15340,11338880574,10258570727,100,100,100,100,10.49,17.35,13.86,14.68
-04442,23,021,23021,93,281,201737267,193978471,93,281,201737267,193978471,17535,15340,11338880574,10258570727,100,100,100,100,0.53,1.83,1.78,1.89
-04443,23,021,23021,2537,1853,378287356,355821865,2537,1853,378287356,355821865,17535,15340,11338880574,10258570727,100,100,100,100,14.47,12.08,3.34,3.47
-04444,23,019,23019,8824,3694,181220153,178825188,8824,3694,181220153,178825188,153923,73860,9212796487,8799125852,100,100,100,100,5.73,5,1.97,2.03
-04448,23,019,23019,1431,862,296180465,285979789,1431,862,296180465,285979789,153923,73860,9212796487,8799125852,100,100,100,100,0.93,1.17,3.21,3.25
-04449,23,019,23019,1489,725,102325566,96617667,1489,725,102325566,96617667,153923,73860,9212796487,8799125852,100,100,100,100,0.97,0.98,1.11,1.1
-04450,23,019,23019,1368,610,43582796,43582796,1368,610,43582796,43582796,153923,73860,9212796487,8799125852,100,100,100,100,0.89,0.83,0.47,0.5
-04451,23,003,23003,79,102,91168416,90649409,259,220,197112278,194057834,71870,39529,17683318606,17278664655,30.5,46.36,46.25,46.71,0.11,0.26,0.52,0.52
-04451,23,019,23019,180,118,105943862,103408425,259,220,197112278,194057834,153923,73860,9212796487,8799125852,69.5,53.64,53.75,53.29,0.12,0.16,1.15,1.18
-04453,23,019,23019,779,420,175857035,175130341,779,420,175857035,175130341,153923,73860,9212796487,8799125852,100,100,100,100,0.51,0.57,1.91,1.99
-04454,23,029,23029,69,78,137533550,128052284,69,78,137533550,128052284,32856,23001,8437277332,6637257545,100,100,100,100,0.21,0.34,1.63,1.93
-04455,23,019,23019,923,565,223974018,217986720,923,565,223974018,217986720,153923,73860,9212796487,8799125852,100,100,100,100,0.6,0.76,2.43,2.48
-04456,23,019,23019,2851,1146,77879181,77850598,2851,1146,77879181,77850598,153923,73860,9212796487,8799125852,100,100,100,100,1.85,1.55,0.85,0.88
-04457,23,019,23019,5948,3308,444628695,426960087,5948,3308,444628695,426960087,153923,73860,9212796487,8799125852,100,100,100,100,3.86,4.48,4.83,4.85
-04459,23,003,23003,86,110,117431203,110955788,773,517,215947247,208678953,71870,39529,17683318606,17278664655,11.13,21.28,54.38,53.17,0.12,0.28,0.66,0.64
-04459,23,019,23019,687,407,98516044,97723165,773,517,215947247,208678953,153923,73860,9212796487,8799125852,88.87,78.72,45.62,46.83,0.45,0.55,1.07,1.11
-04460,23,003,23003,14,7,945828,565753,1419,726,289088976,277008668,71870,39529,17683318606,17278664655,0.99,0.96,0.33,0.2,0.02,0.02,0.01,0
-04460,23,019,23019,1405,719,288143148,276442915,1419,726,289088976,277008668,153923,73860,9212796487,8799125852,99.01,99.04,99.67,99.8,0.91,0.97,3.13,3.14
-04461,23,019,23019,3070,1391,114707955,114276977,3070,1391,114707955,114276977,153923,73860,9212796487,8799125852,100,100,100,100,1.99,1.88,1.25,1.3
-04462,23,019,23019,4785,3301,868650879,769699483,4835,3859,3298386447,3032137295,153923,73860,9212796487,8799125852,98.97,85.54,26.34,25.38,3.11,4.47,9.43,8.75
-04462,23,021,23021,50,558,2429735568,2262437812,4835,3859,3298386447,3032137295,17535,15340,11338880574,10258570727,1.03,14.46,73.66,74.62,0.29,3.64,21.43,22.05
-04463,23,021,23021,2847,1939,408925354,379742061,2847,1939,408925354,379742061,17535,15340,11338880574,10258570727,100,100,100,100,16.24,12.64,3.61,3.7
-04464,23,021,23021,684,646,540086778,518124717,684,646,540086778,518124717,17535,15340,11338880574,10258570727,100,100,100,100,3.9,4.21,4.76,5.05
-04468,23,019,23019,9521,4487,316778601,308944328,9521,4487,316778601,308944328,153923,73860,9212796487,8799125852,100,100,100,100,6.19,6.08,3.44,3.51
-04469,23,019,23019,2702,2,625565,625565,2702,2,625565,625565,153923,73860,9212796487,8799125852,100,100,100,100,1.76,0,0.01,0.01
-04471,23,003,23003,609,591,254229264,248672769,609,591,254229264,248672769,71870,39529,17683318606,17278664655,100,100,100,100,0.85,1.5,1.44,1.44
-04472,23,009,23009,2144,1405,135097712,120953878,2144,1405,135097712,120953878,54418,40184,6073355124,4110034060,100,100,100,100,3.94,3.5,2.22,2.94
-04473,23,019,23019,7660,3087,50125358,46480286,7660,3087,50125358,46480286,153923,73860,9212796487,8799125852,100,100,100,100,4.98,4.18,0.54,0.53
-04474,23,019,23019,3733,1612,70794269,64726304,3733,1612,70794269,64726304,153923,73860,9212796487,8799125852,100,100,100,100,2.43,2.18,0.77,0.74
-04475,23,019,23019,418,233,63159210,62703160,418,233,63159210,62703160,153923,73860,9212796487,8799125852,100,100,100,100,0.27,0.32,0.69,0.71
-04476,23,009,23009,1259,880,121204769,103279722,1259,880,121204769,103279722,54418,40184,6073355124,4110034060,100,100,100,100,2.31,2.19,2,2.51
-04478,23,025,23025,316,1004,1101155272,1027296727,316,1004,1101155272,1027296727,52228,30569,10602195326,10164156961,100,100,100,100,0.61,3.28,10.39,10.11
-04479,23,021,23021,1343,895,103081744,99560523,1343,895,103081744,99560523,17535,15340,11338880574,10258570727,100,100,100,100,7.66,5.83,0.91,0.97
-04481,23,021,23021,559,378,82644871,80216894,559,378,82644871,80216894,17535,15340,11338880574,10258570727,100,100,100,100,3.19,2.46,0.73,0.78
-04485,23,021,23021,233,245,116921073,115413636,233,245,116921073,115413636,17535,15340,11338880574,10258570727,100,100,100,100,1.33,1.6,1.03,1.13
-04487,23,019,23019,964,1130,607927963,569227919,964,1130,607927963,569227919,153923,73860,9212796487,8799125852,100,100,100,100,0.63,1.53,6.6,6.47
-04488,23,019,23019,1202,621,94913388,90623378,1202,621,94913388,90623378,153923,73860,9212796487,8799125852,100,100,100,100,0.78,0.84,1.03,1.03
-04489,23,019,23019,197,79,519680,519680,197,79,519680,519680,153923,73860,9212796487,8799125852,100,100,100,100,0.13,0.11,0.01,0.01
-04490,23,029,23029,273,246,721869710,683736939,273,246,721869710,683736939,32856,23001,8437277332,6637257545,100,100,100,100,0.83,1.07,8.56,10.3
-04491,23,029,23029,140,145,39377707,33522195,140,145,39377707,33522195,32856,23001,8437277332,6637257545,100,100,100,100,0.43,0.63,0.47,0.51
-04492,23,029,23029,166,127,120895535,120439975,166,127,120895535,120439975,32856,23001,8437277332,6637257545,100,100,100,100,0.51,0.55,1.43,1.81
-04493,23,019,23019,1967,1253,192674524,172937683,1967,1253,192674524,172937683,153923,73860,9212796487,8799125852,100,100,100,100,1.28,1.7,2.09,1.97
-04495,23,019,23019,407,210,113529096,113177087,407,210,113529096,113177087,153923,73860,9212796487,8799125852,100,100,100,100,0.26,0.28,1.23,1.29
-04496,23,027,23027,3757,1645,95977676,92007098,3757,1645,95977676,92007098,38786,21566,2208629326,1890479704,100,100,100,100,9.69,7.63,4.35,4.87
-04497,23,003,23003,343,381,555684148,547884964,389,424,631374599,622376193,71870,39529,17683318606,17278664655,88.17,89.86,88.01,88.03,0.48,0.96,3.14,3.17
-04497,23,019,23019,46,43,75690451,74491229,389,424,631374599,622376193,153923,73860,9212796487,8799125852,11.83,10.14,11.99,11.97,0.03,0.06,0.82,0.85
-04530,23,023,23023,10818,5807,101084494,74492111,10818,5807,101084494,74492111,35293,18288,958398843,657066836,100,100,100,100,30.65,31.75,10.55,11.34
-04535,23,015,23015,709,346,55232229,54134939,709,346,55232229,54134939,34457,23493,1811963989,1180563700,100,100,100,100,2.06,1.47,3.05,4.59
-04537,23,015,23015,2073,1309,71243204,43411224,2073,1309,71243204,43411224,34457,23493,1811963989,1180563700,100,100,100,100,6.02,5.57,3.93,3.68
-04538,23,015,23015,2080,1960,17752122,12631730,2080,1960,17752122,12631730,34457,23493,1811963989,1180563700,100,100,100,100,6.04,8.34,0.98,1.07
-04539,23,015,23015,1168,663,44307227,42311034,1168,663,44307227,42311034,34457,23493,1811963989,1180563700,100,100,100,100,3.39,2.82,2.45,3.58
-04541,23,015,23015,80,160,5717798,4764198,80,160,5717798,4764198,34457,23493,1811963989,1180563700,100,100,100,100,0.23,0.68,0.32,0.4
-04543,23,015,23015,2218,1359,38104324,32162775,2218,1359,38104324,32162775,34457,23493,1811963989,1180563700,100,100,100,100,6.44,5.78,2.1,2.72
-04544,23,015,23015,724,943,11978204,8334256,724,943,11978204,8334256,34457,23493,1811963989,1180563700,100,100,100,100,2.1,4.01,0.66,0.71
-04547,23,013,23013,1152,896,60012234,36528521,1152,896,60012234,36528521,39736,23744,2962805797,945691411,100,100,100,100,2.9,3.77,2.03,3.86
-04548,23,023,23023,1042,1044,74033746,48130048,1042,1044,74033746,48130048,35293,18288,958398843,657066836,100,100,100,100,2.95,5.71,7.72,7.32
-04551,23,015,23015,806,651,72130463,42644648,806,651,72130463,42644648,34457,23493,1811963989,1180563700,100,100,100,100,2.34,2.77,3.98,3.61
-04553,23,015,23015,1752,992,84353147,75243635,1752,992,84353147,75243635,34457,23493,1811963989,1180563700,100,100,100,100,5.08,4.22,4.66,6.37
-04554,23,015,23015,710,1008,15214450,11081429,710,1008,15214450,11081429,34457,23493,1811963989,1180563700,100,100,100,100,2.06,4.29,0.84,0.94
-04555,23,015,23015,1643,1111,59878772,49052624,1643,1111,59878772,49052624,34457,23493,1811963989,1180563700,100,100,100,100,4.77,4.73,3.3,4.16
-04556,23,015,23015,1249,755,53823228,46808031,1249,755,53823228,46808031,34457,23493,1811963989,1180563700,100,100,100,100,3.62,3.21,2.97,3.96
-04558,23,015,23015,308,298,13982857,10703522,308,298,13982857,10703522,34457,23493,1811963989,1180563700,100,100,100,100,0.89,1.27,0.77,0.91
-04562,23,023,23023,2216,1748,116224904,74026850,2216,1748,116224904,74026850,35293,18288,958398843,657066836,100,100,100,100,6.28,9.56,12.13,11.27
-04563,23,013,23013,1534,926,66015522,49817691,1534,926,66015522,49817691,39736,23744,2962805797,945691411,100,100,100,100,3.86,3.9,2.23,5.27
-04564,23,015,23015,489,488,30560943,22480844,489,488,30560943,22480844,34457,23493,1811963989,1180563700,100,100,100,100,1.42,2.08,1.69,1.9
-04568,23,015,23015,391,777,29205885,12851366,391,777,29205885,12851366,34457,23493,1811963989,1180563700,100,100,100,100,1.13,3.31,1.61,1.09
-04570,23,015,23015,2,112,706084,706084,2,112,706084,706084,34457,23493,1811963989,1180563700,100,100,100,100,0.01,0.48,0.04,0.06
-04571,23,015,23015,323,257,9571141,5484033,323,257,9571141,5484033,34457,23493,1811963989,1180563700,100,100,100,100,0.94,1.09,0.53,0.46
-04572,23,015,23015,5075,2651,204253245,185179527,5075,2651,204253245,185179527,34457,23493,1811963989,1180563700,100,100,100,100,14.73,11.28,11.27,15.69
-04573,23,015,23015,501,299,25108428,21089125,501,299,25108428,21089125,34457,23493,1811963989,1180563700,100,100,100,100,1.45,1.27,1.39,1.79
-04574,23,013,23013,1510,787,101157265,98165483,1510,787,101157265,98165483,39736,23744,2962805797,945691411,100,100,100,100,3.8,3.31,3.41,10.38
-04575,23,015,23015,85,180,5692407,1702715,85,180,5692407,1702715,34457,23493,1811963989,1180563700,100,100,100,100,0.25,0.77,0.31,0.14
-04576,23,015,23015,604,939,22391241,13224487,604,939,22391241,13224487,34457,23493,1811963989,1180563700,100,100,100,100,1.75,4,1.24,1.12
-04578,23,015,23015,4450,2317,108514734,86613031,4450,2317,108514734,86613031,34457,23493,1811963989,1180563700,100,100,100,100,12.91,9.86,5.99,7.34
-04579,23,023,23023,3072,1412,107680893,90842229,3072,1412,107680893,90842229,35293,18288,958398843,657066836,100,100,100,100,8.7,7.72,11.24,13.83
-04605,23,009,23009,12974,8009,861116553,736852590,12974,8009,861116553,736852590,54418,40184,6073355124,4110034060,100,100,100,100,23.84,19.93,14.18,17.93
-04606,23,029,23029,1272,812,207123978,110407132,1272,812,207123978,110407132,32856,23001,8437277332,6637257545,100,100,100,100,3.87,3.53,2.45,1.66
-04607,23,009,23009,1182,808,187570875,129284506,1182,808,187570875,129284506,54418,40184,6073355124,4110034060,100,100,100,100,2.17,2.01,3.09,3.15
-04609,23,009,23009,5222,3482,159884860,109395350,5222,3482,159884860,109395350,54418,40184,6073355124,4110034060,100,100,100,100,9.6,8.67,2.63,2.66
-04611,23,029,23029,508,361,71281267,14547137,508,361,71281267,14547137,32856,23001,8437277332,6637257545,100,100,100,100,1.55,1.57,0.84,0.22
-04612,23,009,23009,589,476,40901582,14215197,589,476,40901582,14215197,54418,40184,6073355124,4110034060,100,100,100,100,1.08,1.18,0.67,0.35
-04613,23,009,23009,183,126,11267832,4839979,183,126,11267832,4839979,54418,40184,6073355124,4110034060,100,100,100,100,0.34,0.31,0.19,0.12
-04614,23,009,23009,2579,1849,218306676,155941483,2579,1849,218306676,155941483,54418,40184,6073355124,4110034060,100,100,100,100,4.74,4.6,3.59,3.79
-04616,23,009,23009,824,874,106661969,46423725,824,874,106661969,46423725,54418,40184,6073355124,4110034060,100,100,100,100,1.51,2.17,1.76,1.13
-04617,23,009,23009,811,757,117150817,65923853,811,757,117150817,65923853,54418,40184,6073355124,4110034060,100,100,100,100,1.49,1.88,1.93,1.6
-04619,23,029,23029,3121,1736,103872618,88890838,3121,1736,103872618,88890838,32856,23001,8437277332,6637257545,100,100,100,100,9.5,7.55,1.23,1.34
-04622,23,009,23009,64,247,180273600,172792744,1412,1441,685365185,666283130,54418,40184,6073355124,4110034060,4.53,17.14,26.3,25.93,0.12,0.61,2.97,4.2
-04622,23,029,23029,1348,1194,505091585,493490386,1412,1441,685365185,666283130,32856,23001,8437277332,6637257545,95.47,82.86,73.7,74.07,4.1,5.19,5.99,7.44
-04623,23,029,23029,1054,789,356507205,352549500,1054,789,356507205,352549500,32856,23001,8437277332,6637257545,100,100,100,100,3.21,3.43,4.23,5.31
-04624,23,009,23009,184,294,32908712,14783426,184,294,32908712,14783426,54418,40184,6073355124,4110034060,100,100,100,100,0.34,0.73,0.54,0.36
-04625,23,009,23009,47,198,17114494,5470241,47,198,17114494,5470241,54418,40184,6073355124,4110034060,100,100,100,100,0.09,0.49,0.28,0.13
-04626,23,029,23029,507,372,189407214,121606094,507,372,189407214,121606094,32856,23001,8437277332,6637257545,100,100,100,100,1.54,1.62,2.24,1.83
-04627,23,009,23009,1636,1480,117296167,55573442,1636,1480,117296167,55573442,54418,40184,6073355124,4110034060,100,100,100,100,3.01,3.68,1.93,1.35
-04628,23,029,23029,703,425,238140094,225037253,703,425,238140094,225037253,32856,23001,8437277332,6637257545,100,100,100,100,2.14,1.85,2.82,3.39
-04629,23,009,23009,107,87,5891358,5875673,107,87,5891358,5875673,54418,40184,6073355124,4110034060,100,100,100,100,0.2,0.22,0.1,0.14
-04630,23,029,23029,1398,910,266460683,226523589,1398,910,266460683,226523589,32856,23001,8437277332,6637257545,100,100,100,100,4.25,3.96,3.16,3.41
-04631,23,029,23029,1331,1083,32275563,9455354,1331,1083,32275563,9455354,32856,23001,8437277332,6637257545,100,100,100,100,4.05,4.71,0.38,0.14
-04634,23,009,23009,1923,1591,304429032,273901661,1923,1591,304429032,273901661,54418,40184,6073355124,4110034060,100,100,100,100,3.53,3.96,5.01,6.66
-04635,23,009,23009,61,76,56487438,11499122,61,76,56487438,11499122,54418,40184,6073355124,4110034060,100,100,100,100,0.11,0.19,0.93,0.28
-04637,23,029,23029,136,343,317236790,232099045,136,343,317236790,232099045,32856,23001,8437277332,6637257545,100,100,100,100,0.41,1.49,3.76,3.5
-04640,23,009,23009,2261,1373,94611053,71738212,2261,1373,94611053,71738212,54418,40184,6073355124,4110034060,100,100,100,100,4.15,3.42,1.56,1.75
-04642,23,009,23009,123,176,15191464,14644637,123,176,15191464,14644637,54418,40184,6073355124,4110034060,100,100,100,100,0.23,0.44,0.25,0.36
-04643,23,029,23029,1018,682,112284510,55170397,1018,682,112284510,55170397,32856,23001,8437277332,6637257545,100,100,100,100,3.1,2.97,1.33,0.83
-04644,23,009,23009,13,13,12857,12857,13,13,12857,12857,54418,40184,6073355124,4110034060,100,100,100,100,0.02,0.03,0,0
-04645,23,013,23013,73,172,105646404,32428332,73,172,105646404,32428332,39736,23744,2962805797,945691411,100,100,100,100,0.18,0.72,3.57,3.43
-04646,23,009,23009,94,177,31155671,2729276,94,177,31155671,2729276,54418,40184,6073355124,4110034060,100,100,100,100,0.17,0.44,0.51,0.07
-04648,23,029,23029,580,331,93548146,88926350,580,331,93548146,88926350,32856,23001,8437277332,6637257545,100,100,100,100,1.77,1.44,1.11,1.34
-04649,23,029,23029,1370,939,192712327,73851413,1370,939,192712327,73851413,32856,23001,8437277332,6637257545,100,100,100,100,4.17,4.08,2.28,1.11
-04650,23,009,23009,235,306,15918926,9957379,235,306,15918926,9957379,54418,40184,6073355124,4110034060,100,100,100,100,0.43,0.76,0.26,0.24
-04652,23,029,23029,1690,1386,245871893,158722207,1690,1386,245871893,158722207,32856,23001,8437277332,6637257545,100,100,100,100,5.14,6.03,2.91,2.39
-04653,23,009,23009,490,416,21017836,7421786,490,416,21017836,7421786,54418,40184,6073355124,4110034060,100,100,100,100,0.9,1.04,0.35,0.18
-04654,23,029,23029,3424,2029,294087179,259083103,3424,2029,294087179,259083103,32856,23001,8437277332,6637257545,100,100,100,100,10.42,8.82,3.49,3.9
-04655,23,029,23029,1119,611,131926215,55450384,1119,611,131926215,55450384,32856,23001,8437277332,6637257545,100,100,100,100,3.41,2.66,1.56,0.84
-04657,23,029,23029,363,466,284993912,261023849,363,466,284993912,261023849,32856,23001,8437277332,6637257545,100,100,100,100,1.1,2.03,3.38,3.93
-04658,23,029,23029,1353,1009,111026733,62794535,1353,1009,111026733,62794535,32856,23001,8437277332,6637257545,100,100,100,100,4.12,4.39,1.32,0.95
-04660,23,009,23009,1309,1265,116084006,74702148,1309,1265,116084006,74702148,54418,40184,6073355124,4110034060,100,100,100,100,2.41,3.15,1.91,1.82
-04662,23,009,23009,488,654,9248902,7011056,488,654,9248902,7011056,54418,40184,6073355124,4110034060,100,100,100,100,0.9,1.63,0.15,0.17
-04664,23,009,23009,1238,830,110280812,92870788,1238,830,110280812,92870788,54418,40184,6073355124,4110034060,100,100,100,100,2.27,2.07,1.82,2.26
-04666,23,029,23029,1172,787,190776283,163164377,1172,787,190776283,163164377,32856,23001,8437277332,6637257545,100,100,100,100,3.57,3.42,2.26,2.46
-04667,23,029,23029,1638,838,111442576,77278833,1638,838,111442576,77278833,32856,23001,8437277332,6637257545,100,100,100,100,4.99,3.64,1.32,1.16
-04668,23,029,23029,1680,946,294776152,251927174,1680,946,294776152,251927174,32856,23001,8437277332,6637257545,100,100,100,100,5.11,4.11,3.49,3.8
-04669,23,009,23009,204,213,11698135,7068086,204,213,11698135,7068086,54418,40184,6073355124,4110034060,100,100,100,100,0.37,0.53,0.19,0.17
-04671,23,029,23029,576,355,87367583,73004904,576,355,87367583,73004904,32856,23001,8437277332,6637257545,100,100,100,100,1.75,1.54,1.04,1.1
-04673,23,009,23009,112,110,8474733,7803253,112,110,8474733,7803253,54418,40184,6073355124,4110034060,100,100,100,100,0.21,0.27,0.14,0.19
-04674,23,009,23009,484,368,70490550,21958828,484,368,70490550,21958828,54418,40184,6073355124,4110034060,100,100,100,100,0.89,0.92,1.16,0.53
-04675,23,009,23009,253,363,16069032,13264084,253,363,16069032,13264084,54418,40184,6073355124,4110034060,100,100,100,100,0.46,0.9,0.26,0.32
-04676,23,009,23009,1088,694,72087412,62191052,1088,694,72087412,62191052,54418,40184,6073355124,4110034060,100,100,100,100,2,1.73,1.19,1.51
-04677,23,009,23009,274,314,36548447,10345152,274,314,36548447,10345152,54418,40184,6073355124,4110034060,100,100,100,100,0.5,0.78,0.6,0.25
-04679,23,009,23009,1767,1489,50561253,35542884,1767,1489,50561253,35542884,54418,40184,6073355124,4110034060,100,100,100,100,3.25,3.71,0.83,0.86
-04680,23,029,23029,1131,873,150875261,111434557,1131,873,150875261,111434557,32856,23001,8437277332,6637257545,100,100,100,100,3.44,3.8,1.79,1.68
-04681,23,009,23009,1043,993,97995337,25403768,1043,993,97995337,25403768,54418,40184,6073355124,4110034060,100,100,100,100,1.92,2.47,1.61,0.62
-04683,23,009,23009,104,150,187098994,11449244,104,150,187098994,11449244,54418,40184,6073355124,4110034060,100,100,100,100,0.19,0.37,3.08,0.28
-04684,23,009,23009,1466,1119,132424894,95759814,1466,1119,132424894,95759814,54418,40184,6073355124,4110034060,100,100,100,100,2.69,2.78,2.18,2.33
-04685,23,009,23009,332,483,176854147,37185466,332,483,176854147,37185466,54418,40184,6073355124,4110034060,100,100,100,100,0.61,1.2,2.91,0.9
-04686,23,029,23029,114,292,309019040,293252603,114,292,309019040,293252603,32856,23001,8437277332,6637257545,100,100,100,100,0.35,1.27,3.66,4.42
-04691,23,029,23029,441,355,135251682,121693920,441,355,135251682,121693920,32856,23001,8437277332,6637257545,100,100,100,100,1.34,1.54,1.6,1.83
-04693,23,009,23009,516,519,86869739,37191609,516,519,86869739,37191609,54418,40184,6073355124,4110034060,100,100,100,100,0.95,1.29,1.43,0.9
-04694,23,029,23029,2376,1531,383245903,339403636,2376,1531,383245903,339403636,32856,23001,8437277332,6637257545,100,100,100,100,7.23,6.66,4.54,5.11
-04730,23,003,23003,9992,4728,612375755,607893248,9992,4728,612375755,607893248,71870,39529,17683318606,17278664655,100,100,100,100,13.9,11.96,3.46,3.52
-04732,23,003,23003,1670,1060,626984679,612893874,1670,1099,1162309620,1134489962,71870,39529,17683318606,17278664655,100,96.45,53.94,54.02,2.32,2.68,3.55,3.55
-04732,23,021,23021,0,39,535324941,521596088,1670,1099,1162309620,1134489962,17535,15340,11338880574,10258570727,0,3.55,46.06,45.98,0,0.25,4.72,5.08
-04733,23,003,23003,205,179,98459508,95574343,221,191,139166724,136281559,71870,39529,17683318606,17278664655,92.76,93.72,70.75,70.13,0.29,0.45,0.56,0.55
-04733,23,019,23019,16,12,40707216,40707216,221,191,139166724,136281559,153923,73860,9212796487,8799125852,7.24,6.28,29.25,29.87,0.01,0.02,0.44,0.46
-04734,23,003,23003,800,411,117081694,116907234,800,411,117081694,116907234,71870,39529,17683318606,17278664655,100,100,100,100,1.11,1.04,0.66,0.68
-04735,23,003,23003,617,330,126040828,125577563,617,330,126040828,125577563,71870,39529,17683318606,17278664655,100,100,100,100,0.86,0.83,0.71,0.73
-04736,23,003,23003,9876,4720,434445662,432056259,9876,4720,434445662,432056259,71870,39529,17683318606,17278664655,100,100,100,100,13.74,11.94,2.46,2.5
-04739,23,003,23003,1112,972,602570548,583276425,1112,972,602570548,583276425,71870,39529,17683318606,17278664655,100,100,100,100,1.55,2.46,3.41,3.38
-04740,23,003,23003,1287,596,100836617,100266659,1287,596,100836617,100266659,71870,39529,17683318606,17278664655,100,100,100,100,1.79,1.51,0.57,0.58
-04741,23,003,23003,3,5,8658260,8658260,3,5,8658260,8658260,71870,39529,17683318606,17278664655,100,100,100,100,0,0.01,0.05,0.05
-04742,23,003,23003,3496,1674,202933858,198565962,3496,1674,202933858,198565962,71870,39529,17683318606,17278664655,100,100,100,100,4.86,4.23,1.15,1.15
-04743,23,003,23003,4676,2217,357973299,352059277,4676,2217,357973299,352059277,71870,39529,17683318606,17278664655,100,100,100,100,6.51,5.61,2.02,2.04
-04745,23,003,23003,1082,510,63272205,62091072,1082,510,63272205,62091072,71870,39529,17683318606,17278664655,100,100,100,100,1.51,1.29,0.36,0.36
-04746,23,003,23003,470,268,97576037,95534601,470,268,97576037,95534601,71870,39529,17683318606,17278664655,100,100,100,100,0.65,0.68,0.55,0.55
-04747,23,003,23003,1337,991,445545296,421747378,1337,991,445545296,421747378,71870,39529,17683318606,17278664655,100,100,100,100,1.86,2.51,2.52,2.44
-04750,23,003,23003,2603,1178,204495572,203043025,2603,1178,204495572,203043025,71870,39529,17683318606,17278664655,100,100,100,100,3.62,2.98,1.16,1.18
-04756,23,003,23003,3344,1894,46415439,46150965,3344,1894,46415439,46150965,71870,39529,17683318606,17278664655,100,100,100,100,4.65,4.79,0.26,0.27
-04757,23,003,23003,2870,1415,338364649,334700805,2870,1415,338364649,334700805,71870,39529,17683318606,17278664655,100,100,100,100,3.99,3.58,1.91,1.94
-04758,23,003,23003,1498,691,91198775,91006829,1498,691,91198775,91006829,71870,39529,17683318606,17278664655,100,100,100,100,2.08,1.75,0.52,0.53
-04760,23,003,23003,795,473,260335305,259787771,795,473,260335305,259787771,71870,39529,17683318606,17278664655,100,100,100,100,1.11,1.2,1.47,1.5
-04761,23,003,23003,529,427,50643032,47825569,529,427,50643032,47825569,71870,39529,17683318606,17278664655,100,100,100,100,0.74,1.08,0.29,0.28
-04762,23,003,23003,602,323,103237497,102998140,602,323,103237497,102998140,71870,39529,17683318606,17278664655,100,100,100,100,0.84,0.82,0.58,0.6
-04763,23,003,23003,726,492,92771210,90794119,726,492,92771210,90794119,71870,39529,17683318606,17278664655,100,100,100,100,1.01,1.24,0.52,0.53
-04764,23,003,23003,66,84,171942072,170008341,66,84,171942072,170008341,71870,39529,17683318606,17278664655,100,100,100,100,0.09,0.21,0.97,0.98
-04765,23,003,23003,21,19,7359594,7359594,1262,1109,1539562073,1480480446,71870,39529,17683318606,17278664655,1.66,1.71,0.48,0.5,0.03,0.05,0.04,0.04
-04765,23,019,23019,1241,1090,1532202479,1473120852,1262,1109,1539562073,1480480446,153923,73860,9212796487,8799125852,98.34,98.29,99.52,99.5,0.81,1.48,16.63,16.74
-04766,23,003,23003,386,190,94898516,94620086,386,190,94898516,94620086,71870,39529,17683318606,17278664655,100,100,100,100,0.54,0.48,0.54,0.55
-04768,23,003,23003,400,553,558852300,537310255,400,553,558852300,537310255,71870,39529,17683318606,17278664655,100,100,100,100,0.56,1.4,3.16,3.11
-04769,23,003,23003,9692,4608,200987133,196210371,9692,4608,200987133,196210371,71870,39529,17683318606,17278664655,100,100,100,100,13.49,11.66,1.14,1.14
-04772,23,003,23003,762,538,103642182,76728185,762,538,103642182,76728185,71870,39529,17683318606,17278664655,100,100,100,100,1.06,1.36,0.59,0.44
-04773,23,003,23003,723,558,102518483,101033989,723,558,102518483,101033989,71870,39529,17683318606,17278664655,100,100,100,100,1.01,1.41,0.58,0.58
-04774,23,003,23003,730,638,467715594,459157032,730,638,467715594,459157032,71870,39529,17683318606,17278664655,100,100,100,100,1.02,1.61,2.64,2.66
-04776,23,003,23003,925,513,224096790,221515480,925,513,224096790,221515480,71870,39529,17683318606,17278664655,100,100,100,100,1.29,1.3,1.27,1.28
-04777,23,019,23019,422,248,234598757,233410485,422,248,234598757,233410485,153923,73860,9212796487,8799125852,100,100,100,100,0.27,0.34,2.55,2.65
-04779,23,003,23003,398,629,293086451,246335515,398,629,293086451,246335515,71870,39529,17683318606,17278664655,100,100,100,100,0.55,1.59,1.66,1.43
-04780,23,003,23003,808,451,793902088,786888366,808,451,793902088,786888366,71870,39529,17683318606,17278664655,100,100,100,100,1.12,1.14,4.49,4.55
-04781,23,003,23003,560,318,129809246,126567227,560,318,129809246,126567227,71870,39529,17683318606,17278664655,100,100,100,100,0.78,0.8,0.73,0.73
-04783,23,003,23003,426,476,152224499,145659750,426,476,152224499,145659750,71870,39529,17683318606,17278664655,100,100,100,100,0.59,1.2,0.86,0.84
-04785,23,003,23003,2504,1449,268687563,264051658,2504,1449,268687563,264051658,71870,39529,17683318606,17278664655,100,100,100,100,3.48,3.67,1.52,1.53
-04786,23,003,23003,1970,897,184699369,182198907,1970,897,184699369,182198907,71870,39529,17683318606,17278664655,100,100,100,100,2.74,2.27,1.04,1.05
-04787,23,003,23003,544,236,104316350,104225052,544,236,104316350,104225052,71870,39529,17683318606,17278664655,100,100,100,100,0.76,0.6,0.59,0.6
-04841,23,013,23013,7297,3925,35204856,33258651,7297,3925,35204856,33258651,39736,23744,2962805797,945691411,100,100,100,100,18.36,16.53,1.19,3.52
-04843,23,013,23013,4851,3168,61987114,47885623,4851,3168,61987114,47885623,39736,23744,2962805797,945691411,100,100,100,100,12.21,13.34,2.09,5.06
-04847,23,013,23013,1536,805,61845497,56877124,1536,805,61845497,56877124,39736,23744,2962805797,945691411,100,100,100,100,3.87,3.39,2.09,6.01
-04848,23,027,23027,566,850,178398738,37009086,566,850,178398738,37009086,38786,21566,2208629326,1890479704,100,100,100,100,1.46,3.94,8.08,1.96
-04849,23,027,23027,3684,2627,203656352,158297229,3684,2627,203656352,158297229,38786,21566,2208629326,1890479704,100,100,100,100,9.5,12.18,9.22,8.37
-04851,23,013,23013,75,158,25814755,6014348,75,158,25814755,6014348,39736,23744,2962805797,945691411,100,100,100,100,0.19,0.67,0.87,0.64
-04852,23,015,23015,69,164,3187502,2202210,69,164,3187502,2202210,34457,23493,1811963989,1180563700,100,100,100,100,0.2,0.7,0.18,0.19
-04853,23,013,23013,354,512,61287699,29447552,354,512,61287699,29447552,39736,23744,2962805797,945691411,100,100,100,100,0.89,2.16,2.07,3.11
-04854,23,013,23013,1580,1060,32193823,22990798,1580,1060,32193823,22990798,39736,23744,2962805797,945691411,100,100,100,100,3.98,4.46,1.09,2.43
-04855,23,013,23013,307,347,13911250,5969256,307,347,13911250,5969256,39736,23744,2962805797,945691411,100,100,100,100,0.77,1.46,0.47,0.63
-04856,23,013,23013,3330,1956,62019596,56043634,3330,1956,62019596,56043634,39736,23744,2962805797,945691411,100,100,100,100,8.38,8.24,2.09,5.93
-04858,23,013,23013,1533,860,37860279,29501247,1533,860,37860279,29501247,39736,23744,2962805797,945691411,100,100,100,100,3.86,3.62,1.28,3.12
-04859,23,013,23013,724,612,40103014,17161745,724,612,40103014,17161745,39736,23744,2962805797,945691411,100,100,100,100,1.82,2.58,1.35,1.81
-04860,23,013,23013,1591,1261,93082644,46195451,1591,1261,93082644,46195451,39736,23744,2962805797,945691411,100,100,100,100,4,5.31,3.14,4.88
-04861,23,013,23013,2781,1385,29718519,28326258,2781,1385,29718519,28326258,39736,23744,2962805797,945691411,100,100,100,100,7,5.83,1,3
-04862,23,013,23013,3592,1859,176260162,168344362,3592,1859,176260162,168344362,39736,23744,2962805797,945691411,100,100,100,100,9.04,7.83,5.95,17.8
-04863,23,013,23013,1165,1295,135458172,60367605,1165,1295,135458172,60367605,39736,23744,2962805797,945691411,100,100,100,100,2.93,5.45,4.57,6.38
-04864,23,013,23013,4751,1760,126261008,120361160,4751,1760,126261008,120361160,39736,23744,2962805797,945691411,100,100,100,100,11.96,7.41,4.26,12.73
-04901,23,011,23011,26248,11921,211838640,204123376,26248,11921,211838640,204123376,122151,60972,2463530618,2246876912,100,100,100,100,21.49,19.55,8.6,9.08
-04910,23,011,23011,2041,923,102198367,100560698,2041,923,102198367,100560698,122151,60972,2463530618,2246876912,100,100,100,100,1.67,1.51,4.15,4.48
-04911,23,025,23025,2136,1155,166714119,165093603,2136,1155,166714119,165093603,52228,30569,10602195326,10164156961,100,100,100,100,4.09,3.78,1.57,1.62
-04912,23,025,23025,1048,596,155400366,154367029,1048,596,155400366,154367029,52228,30569,10602195326,10164156961,100,100,100,100,2.01,1.95,1.47,1.52
-04915,23,027,23027,8806,4744,205367738,189184086,8806,4744,205367738,189184086,38786,21566,2208629326,1890479704,100,100,100,100,22.7,22,9.3,10.01
-04917,23,011,23011,2849,1727,139960033,102858901,2849,1727,139960033,102858901,122151,60972,2463530618,2246876912,100,100,100,100,2.33,2.83,5.68,4.58
-04918,23,011,23011,349,480,10210637,9265168,349,480,10210637,9265168,122151,60972,2463530618,2246876912,100,100,100,100,0.29,0.79,0.41,0.41
-04920,23,025,23025,1713,1204,686783328,659206338,1713,1204,686783328,659206338,52228,30569,10602195326,10164156961,100,100,100,100,3.28,3.94,6.48,6.49
-04921,23,027,23027,1593,817,124986354,122904915,1593,817,124986354,122904915,38786,21566,2208629326,1890479704,100,100,100,100,4.11,3.79,5.66,6.5
-04922,23,027,23027,1164,714,106770943,100726143,1164,714,106770943,100726143,38786,21566,2208629326,1890479704,100,100,100,100,3,3.31,4.83,5.33
-04923,23,025,23025,482,268,55501827,55316679,482,268,55501827,55316679,52228,30569,10602195326,10164156961,100,100,100,100,0.92,0.88,0.52,0.54
-04924,23,025,23025,2275,1105,109104159,106594006,2275,1105,109104159,106594006,52228,30569,10602195326,10164156961,100,100,100,100,4.36,3.61,1.03,1.05
-04925,23,025,23025,75,264,155396569,147241863,75,264,155396569,147241863,52228,30569,10602195326,10164156961,100,100,100,100,0.14,0.86,1.47,1.45
-04926,23,011,23011,52,26,280174,280174,52,26,280174,280174,122151,60972,2463530618,2246876912,100,100,100,100,0.04,0.04,0.01,0.01
-04927,23,011,23011,3486,1547,116009532,113631606,3486,1547,116009532,113631606,122151,60972,2463530618,2246876912,100,100,100,100,2.85,2.54,4.71,5.06
-04928,23,019,23019,2198,1075,102183043,100175076,2198,1075,102183043,100175076,153923,73860,9212796487,8799125852,100,100,100,100,1.43,1.46,1.11,1.14
-04929,23,025,23025,837,373,51928643,51499327,837,373,51928643,51499327,52228,30569,10602195326,10164156961,100,100,100,100,1.6,1.22,0.49,0.51
-04930,23,019,23019,3895,2141,96226755,90976548,4295,2413,145995357,139740820,153923,73860,9212796487,8799125852,90.69,88.73,65.91,65.1,2.53,2.9,1.04,1.03
-04930,23,025,23025,400,272,49768602,48764272,4295,2413,145995357,139740820,52228,30569,10602195326,10164156961,9.31,11.27,34.09,34.9,0.77,0.89,0.47,0.48
-04932,23,019,23019,1181,557,94363009,93987426,1181,557,94363009,93987426,153923,73860,9212796487,8799125852,100,100,100,100,0.77,0.75,1.02,1.07
-04933,23,019,23019,65,20,240546,240546,65,20,240546,240546,153923,73860,9212796487,8799125852,100,100,100,100,0.04,0.03,0,0
-04936,23,007,23007,261,774,1161717933,1141865719,261,774,1161717933,1141865719,30768,21709,4515589356,4394196449,100,100,100,100,0.85,3.57,25.73,25.99
-04937,23,025,23025,6645,2968,136973229,134914945,6645,2968,136973229,134914945,52228,30569,10602195326,10164156961,100,100,100,100,12.72,9.71,1.29,1.33
-04938,23,007,23007,9869,4741,325012457,317830320,9869,4741,325012457,317830320,30768,21709,4515589356,4394196449,100,100,100,100,32.08,21.84,7.2,7.23
-04939,23,019,23019,1105,552,98261741,97565112,1105,552,98261741,97565112,153923,73860,9212796487,8799125852,100,100,100,100,0.72,0.75,1.07,1.11
-04940,23,007,23007,118,57,1297227,1255054,118,57,1297227,1255054,30768,21709,4515589356,4394196449,100,100,100,100,0.38,0.26,0.03,0.03
-04941,23,027,23027,1751,896,169279110,166233344,1751,896,169279110,166233344,38786,21566,2208629326,1890479704,100,100,100,100,4.51,4.15,7.66,8.79
-04942,23,021,23021,286,404,207325433,205594932,1326,1180,382415000,373661098,17535,15340,11338880574,10258570727,21.57,34.24,54.21,55.02,1.63,2.63,1.83,2
-04942,23,025,23025,1040,776,175089567,168066166,1326,1180,382415000,373661098,52228,30569,10602195326,10164156961,78.43,65.76,45.79,44.98,1.99,2.54,1.65,1.65
-04943,23,025,23025,1792,1117,111321332,96168236,1792,1117,111321332,96168236,52228,30569,10602195326,10164156961,100,100,100,100,3.43,3.65,1.05,0.95
-04944,23,025,23025,42,20,4254627,4163214,42,20,4254627,4163214,52228,30569,10602195326,10164156961,100,100,100,100,0.08,0.07,0.04,0.04
-04945,23,025,23025,1242,1502,2472435996,2390964229,1242,1502,2472435996,2390964229,52228,30569,10602195326,10164156961,100,100,100,100,2.38,4.91,23.32,23.52
-04947,23,007,23007,1852,2851,327698079,326929202,1852,2851,327698079,326929202,30768,21709,4515589356,4394196449,100,100,100,100,6.02,13.13,7.26,7.44
-04949,23,027,23027,913,718,73554637,67341357,913,718,73554637,67341357,38786,21566,2208629326,1890479704,100,100,100,100,2.35,3.33,3.33,3.56
-04950,23,025,23025,4855,2478,141991821,134368258,4855,2478,141991821,134368258,52228,30569,10602195326,10164156961,100,100,100,100,9.3,8.11,1.34,1.32
-04951,23,027,23027,906,468,104640785,104365450,906,468,104640785,104365450,38786,21566,2208629326,1890479704,100,100,100,100,2.34,2.17,4.74,5.52
-04952,23,027,23027,1829,853,81030028,78207328,1829,853,81030028,78207328,38786,21566,2208629326,1890479704,100,100,100,100,4.72,3.96,3.67,4.14
-04953,23,019,23019,3228,1753,95577597,76224618,3228,1753,95577597,76224618,153923,73860,9212796487,8799125852,100,100,100,100,2.1,2.37,1.04,0.87
-04955,23,007,23007,1362,681,117009991,115414644,1362,681,117009991,115414644,30768,21709,4515589356,4394196449,100,100,100,100,4.43,3.14,2.59,2.63
-04956,23,007,23007,760,508,99700400,98267092,760,508,99700400,98267092,30768,21709,4515589356,4394196449,100,100,100,100,2.47,2.34,2.21,2.24
-04957,23,025,23025,4265,2041,215896408,210941928,4265,2041,215896408,210941928,52228,30569,10602195326,10164156961,100,100,100,100,8.17,6.68,2.04,2.08
-04958,23,025,23025,1954,1490,154203506,142217834,1954,1490,154203506,142217834,52228,30569,10602195326,10164156961,100,100,100,100,3.74,4.87,1.45,1.4
-04961,23,025,23025,972,1107,841763305,757571415,972,1107,841763305,757571415,52228,30569,10602195326,10164156961,100,100,100,100,1.86,3.62,7.94,7.45
-04962,23,011,23011,125,65,213898,213898,125,65,213898,213898,122151,60972,2463530618,2246876912,100,100,100,100,0.1,0.11,0.01,0.01
-04963,23,011,23011,7238,4050,154906583,132085455,7238,4050,154906583,132085455,122151,60972,2463530618,2246876912,100,100,100,100,5.93,6.64,6.29,5.88
-04964,23,007,23007,220,755,187656625,160220585,221,816,326237424,240427804,30768,21709,4515589356,4394196449,99.55,92.52,57.52,66.64,0.72,3.48,4.16,3.65
-04964,23,017,23017,1,61,138580799,80207219,221,816,326237424,240427804,57833,36055,5635077704,5378990983,0.45,7.48,42.48,33.36,0,0.17,2.46,1.49
-04965,23,025,23025,1976,935,107255107,103942088,1976,935,107255107,103942088,52228,30569,10602195326,10164156961,100,100,100,100,3.78,3.06,1.01,1.02
-04966,23,007,23007,1682,1242,518426197,516903826,1682,1242,518426197,516903826,30768,21709,4515589356,4394196449,100,100,100,100,5.47,5.72,11.48,11.76
-04967,23,025,23025,4230,1837,127110492,125724789,4230,1837,127110492,125724789,52228,30569,10602195326,10164156961,100,100,100,100,8.1,6.01,1.2,1.24
-04969,23,019,23019,1362,608,80346910,76937416,1362,608,80346910,76937416,153923,73860,9212796487,8799125852,100,100,100,100,0.88,0.82,0.87,0.87
-04970,23,007,23007,1620,2728,639970310,597141754,1620,2728,639970310,597141754,30768,21709,4515589356,4394196449,100,100,100,100,5.27,12.57,14.17,13.59
-04971,23,025,23025,2005,1259,121987068,116007384,2005,1259,121987068,116007384,52228,30569,10602195326,10164156961,100,100,100,100,3.84,4.12,1.15,1.14
-04973,23,027,23027,1389,729,101291817,97677739,1389,729,101291817,97677739,38786,21566,2208629326,1890479704,100,100,100,100,3.58,3.38,4.59,5.17
-04974,23,027,23027,2611,1508,109993671,74042852,2611,1508,109993671,74042852,38786,21566,2208629326,1890479704,100,100,100,100,6.73,6.99,4.98,3.92
-04975,23,025,23025,48,28,142318,142318,48,28,142318,142318,52228,30569,10602195326,10164156961,100,100,100,100,0.09,0.09,0,0
-04976,23,025,23025,9903,4858,262630313,257908035,9903,4858,262630313,257908035,52228,30569,10602195326,10164156961,100,100,100,100,18.96,15.89,2.48,2.54
-04978,23,025,23025,799,605,51707151,39139863,799,605,51707151,39139863,52228,30569,10602195326,10164156961,100,100,100,100,1.53,1.98,0.49,0.39
-04979,23,025,23025,1064,673,116387661,113560523,1064,673,116387661,113560523,52228,30569,10602195326,10164156961,100,100,100,100,2.04,2.2,1.1,1.12
-04981,23,027,23027,2316,1282,129772620,97912862,2316,1282,129772620,97912862,38786,21566,2208629326,1890479704,100,100,100,100,5.97,5.94,5.88,5.18
-04982,23,007,23007,630,658,139349069,138241683,630,658,139349069,138241683,30768,21709,4515589356,4394196449,100,100,100,100,2.05,3.03,3.09,3.15
-04983,23,007,23007,1752,1012,390851200,389149885,1752,1012,390851200,389149885,30768,21709,4515589356,4394196449,100,100,100,100,5.69,4.66,8.66,8.86
-04984,23,007,23007,523,323,61687010,61096111,523,323,61687010,61096111,30768,21709,4515589356,4394196449,100,100,100,100,1.7,1.49,1.37,1.39
-04985,23,025,23025,114,541,534091132,519193363,114,541,534091132,519193363,52228,30569,10602195326,10164156961,100,100,100,100,0.22,1.77,5.04,5.11
-04986,23,027,23027,1721,791,143879454,143362761,1721,791,143879454,143362761,38786,21566,2208629326,1890479704,100,100,100,100,4.44,3.67,6.51,7.58
-04987,23,027,23027,1030,476,93050077,90451120,1030,476,93050077,90451120,38786,21566,2208629326,1890479704,100,100,100,100,2.66,2.21,4.21,4.78
-04988,23,011,23011,43,19,27018222,26967006,2134,955,134056071,128937902,122151,60972,2463530618,2246876912,2.01,1.99,20.15,20.91,0.04,0.03,1.1,1.2
-04988,23,027,23027,2091,936,107037849,101970896,2134,955,134056071,128937902,38786,21566,2208629326,1890479704,97.99,98.01,79.85,79.09,5.39,4.34,4.85,5.39
-04989,23,011,23011,4215,2000,123606524,114435388,4215,2000,123606524,114435388,122151,60972,2463530618,2246876912,100,100,100,100,3.45,3.28,5.02,5.09
-04992,23,007,23007,103,68,154631,154631,103,68,154631,154631,30768,21709,4515589356,4394196449,100,100,100,100,0.33,0.31,0,0
-05001,50,027,50027,9123,5151,113760650,111919352,9123,5151,113760650,111919352,56670,34118,2529859196,2510570288,100,100,100,100,16.1,15.1,4.5,4.46
-05031,50,027,50027,218,205,26250861,25833524,218,205,26250861,25833524,56670,34118,2529859196,2510570288,100,100,100,100,0.38,0.6,1.04,1.03
-05032,50,027,50027,2664,1414,182144149,181174122,2664,1414,182144149,181174122,56670,34118,2529859196,2510570288,100,100,100,100,4.7,4.14,7.2,7.22
-05033,50,017,50017,2744,1259,75541604,74903469,2744,1259,75541604,74903469,28936,14845,1792959357,1779407245,100,100,100,100,9.48,8.48,4.21,4.21
-05034,50,027,50027,310,181,14807328,14710739,310,181,14807328,14710739,56670,34118,2529859196,2510570288,100,100,100,100,0.55,0.53,0.59,0.59
-05035,50,027,50027,638,491,82929619,82722713,638,491,82929619,82722713,56670,34118,2529859196,2510570288,100,100,100,100,1.13,1.44,3.28,3.29
-05036,50,017,50017,1037,567,87172495,86424130,1037,567,87172495,86424130,28936,14845,1792959357,1779407245,100,100,100,100,3.58,3.82,4.86,4.86
-05037,50,027,50027,560,444,27079469,26949432,560,444,27079469,26949432,56670,34118,2529859196,2510570288,100,100,100,100,0.99,1.3,1.07,1.07
-05038,50,017,50017,1230,691,102786624,102661608,1230,691,102786624,102661608,28936,14845,1792959357,1779407245,100,100,100,100,4.25,4.65,5.73,5.77
-05039,50,017,50017,1110,665,114363331,114225399,1110,665,114363331,114225399,28936,14845,1792959357,1779407245,100,100,100,100,3.84,4.48,6.38,6.42
-05040,50,017,50017,471,249,27726517,27529209,471,249,27726517,27529209,28936,14845,1792959357,1779407245,100,100,100,100,1.63,1.68,1.55,1.55
-05041,50,017,50017,354,159,15241344,15233971,354,159,15241344,15233971,28936,14845,1792959357,1779407245,100,100,100,100,1.22,1.07,0.85,0.86
-05042,50,005,50005,605,321,61955293,61643510,605,321,61955293,61643510,31227,15942,1703011743,1680549138,100,100,100,100,1.94,2.01,3.64,3.67
-05043,50,017,50017,937,413,22045975,21188841,937,413,22045975,21188841,28936,14845,1792959357,1779407245,100,100,100,100,3.24,2.78,1.23,1.19
-05045,50,017,50017,1758,1115,138611901,133895973,1758,1115,138611901,133895973,28936,14845,1792959357,1779407245,100,100,100,100,6.08,7.51,7.73,7.52
-05046,50,005,50005,1139,698,157971726,154846304,1139,698,157971726,154846304,31227,15942,1703011743,1680549138,100,100,100,100,3.65,4.38,9.28,9.21
-05048,50,027,50027,2429,1103,71590451,71288603,2429,1103,71590451,71288603,56670,34118,2529859196,2510570288,100,100,100,100,4.29,3.23,2.83,2.84
-05050,50,005,50005,146,74,1118799,1118799,146,74,1118799,1118799,31227,15942,1703011743,1680549138,100,100,100,100,0.47,0.46,0.07,0.07
-05051,50,017,50017,1549,1009,126248023,124386223,1549,1009,126248023,124386223,28936,14845,1792959357,1779407245,100,100,100,100,5.35,6.8,7.04,6.99
-05052,50,027,50027,348,157,7144784,6718383,348,157,7144784,6718383,56670,34118,2529859196,2510570288,100,100,100,100,0.61,0.46,0.28,0.27
-05053,50,027,50027,332,189,22666117,22614226,332,189,22666117,22614226,56670,34118,2529859196,2510570288,100,100,100,100,0.59,0.55,0.9,0.9
-05055,50,027,50027,3363,1529,106872781,106303595,3363,1529,106872781,106303595,56670,34118,2529859196,2510570288,100,100,100,100,5.93,4.48,4.22,4.23
-05056,50,027,50027,567,815,112342870,110894448,567,815,112342870,110894448,56670,34118,2529859196,2510570288,100,100,100,100,1,2.39,4.44,4.42
-05058,50,017,50017,346,161,10627664,10624841,346,161,10627664,10624841,28936,14845,1792959357,1779407245,100,100,100,100,1.2,1.08,0.59,0.6
-05059,50,027,50027,874,689,14104237,13695356,874,689,14104237,13695356,56670,34118,2529859196,2510570288,100,100,100,100,1.54,2.02,0.56,0.55
-05060,50,017,50017,4233,2131,163574769,162851519,4415,2225,180714985,179970527,28936,14845,1792959357,1779407245,95.88,95.78,90.52,90.49,14.63,14.36,9.12,9.15
-05060,50,023,50023,10,6,242000,242000,4415,2225,180714985,179970527,59534,29941,1801139363,1779926134,0.23,0.27,0.13,0.13,0.02,0.02,0.01,0.01
-05060,50,027,50027,172,88,16898216,16877008,4415,2225,180714985,179970527,56670,34118,2529859196,2510570288,3.9,3.96,9.35,9.38,0.3,0.26,0.67,0.67
-05061,50,017,50017,1679,577,67130867,67027651,1679,577,67130867,67027651,28936,14845,1792959357,1779407245,100,100,100,100,5.8,3.89,3.74,3.77
-05062,50,027,50027,702,475,110961529,110481570,702,475,110961529,110481570,56670,34118,2529859196,2510570288,100,100,100,100,1.24,1.39,4.39,4.4
-05065,50,027,50027,1064,531,84396391,83375669,1064,531,84396391,83375669,56670,34118,2529859196,2510570288,100,100,100,100,1.88,1.56,3.34,3.32
-05067,50,027,50027,258,176,42622394,42601406,258,176,42622394,42601406,56670,34118,2529859196,2510570288,100,100,100,100,0.46,0.52,1.68,1.7
-05068,50,017,50017,22,9,477140,477140,3125,1691,134855476,133301036,28936,14845,1792959357,1779407245,0.7,0.53,0.35,0.36,0.08,0.06,0.03,0.03
-05068,50,027,50027,3103,1682,134378336,132823896,3125,1691,134855476,133301036,56670,34118,2529859196,2510570288,99.3,99.47,99.65,99.64,5.48,4.93,5.31,5.29
-05069,50,005,50005,514,267,23291307,22850115,555,290,31549867,31106162,31227,15942,1703011743,1680549138,92.61,92.07,73.82,73.46,1.65,1.67,1.37,1.36
-05069,50,017,50017,41,23,8258560,8256047,555,290,31549867,31106162,28936,14845,1792959357,1779407245,7.39,7.93,26.18,26.54,0.14,0.15,0.46,0.46
-05070,50,017,50017,484,245,35486385,35445156,484,245,35486385,35445156,28936,14845,1792959357,1779407245,100,100,100,100,1.67,1.65,1.98,1.99
-05071,50,027,50027,324,263,50034798,49993625,324,263,50034798,49993625,56670,34118,2529859196,2510570288,100,100,100,100,0.57,0.77,1.98,1.99
-05072,50,017,50017,526,295,68268663,67841260,526,295,68268663,67841260,28936,14845,1792959357,1779407245,100,100,100,100,1.82,1.99,3.81,3.81
-05075,50,017,50017,1113,562,67043265,66407506,1113,562,67043265,66407506,28936,14845,1792959357,1779407245,100,100,100,100,3.85,3.79,3.74,3.73
-05076,50,017,50017,412,271,74823695,74677961,412,271,74823695,74677961,28936,14845,1792959357,1779407245,100,100,100,100,1.42,1.83,4.17,4.2
-05077,50,017,50017,1215,718,109811379,109418659,1215,718,109811379,109418659,28936,14845,1792959357,1779407245,100,100,100,100,4.2,4.84,6.12,6.15
-05079,50,017,50017,730,435,94633831,94503797,730,435,94633831,94503797,28936,14845,1792959357,1779407245,100,100,100,100,2.52,2.93,5.28,5.31
-05081,50,017,50017,550,299,24271777,24094582,550,299,24271777,24094582,28936,14845,1792959357,1779407245,100,100,100,100,1.9,2.01,1.35,1.35
-05083,50,017,50017,151,76,1865523,1865523,151,76,1865523,1865523,28936,14845,1792959357,1779407245,100,100,100,100,0.52,0.51,0.1,0.1
-05084,50,027,50027,140,58,6212532,6144723,140,58,6212532,6144723,56670,34118,2529859196,2510570288,100,100,100,100,0.25,0.17,0.25,0.24
-05086,50,017,50017,793,408,63477751,63359508,793,408,63477751,63359508,28936,14845,1792959357,1779407245,100,100,100,100,2.74,2.75,3.54,3.56
-05089,50,027,50027,4979,2515,107172791,106311086,4979,2515,107172791,106311086,56670,34118,2529859196,2510570288,100,100,100,100,8.79,7.37,4.24,4.23
-05091,50,027,50027,3288,2033,174718188,173715267,3288,2033,174718188,173715267,56670,34118,2529859196,2510570288,100,100,100,100,5.8,5.96,6.91,6.92
-05101,50,025,50025,4643,2252,90874503,89069403,4643,2252,90874503,89069403,44513,29735,2066986583,2033930747,100,100,100,100,10.43,7.57,4.4,4.38
-05141,50,025,50025,112,65,2621287,2564606,112,65,2621287,2564606,44513,29735,2066986583,2033930747,100,100,100,100,0.25,0.22,0.13,0.13
-05142,50,027,50027,680,430,70190247,69698388,680,430,70190247,69698388,56670,34118,2529859196,2510570288,100,100,100,100,1.2,1.26,2.77,2.78
-05143,50,025,50025,616,338,38567356,38335590,4343,2503,246734107,245690001,44513,29735,2066986583,2033930747,14.18,13.5,15.63,15.6,1.38,1.14,1.87,1.88
-05143,50,027,50027,3727,2165,208166751,207354411,4343,2503,246734107,245690001,56670,34118,2529859196,2510570288,85.82,86.5,84.37,84.4,6.58,6.35,8.23,8.26
-05146,50,025,50025,750,514,114890950,114587038,750,514,114890950,114587038,44513,29735,2066986583,2033930747,100,100,100,100,1.68,1.73,5.56,5.63
-05148,50,003,50003,85,89,14653960,14572425,1140,1035,70938500,69779396,37125,20922,1755122278,1748190656,7.46,8.6,20.66,20.88,0.23,0.43,0.83,0.83
-05148,50,025,50025,1041,930,55156548,54079877,1140,1035,70938500,69779396,44513,29735,2066986583,2033930747,91.32,89.86,77.75,77.5,2.34,3.13,2.67,2.66
-05148,50,027,50027,14,16,1127992,1127094,1140,1035,70938500,69779396,56670,34118,2529859196,2510570288,1.23,1.55,1.59,1.62,0.02,0.05,0.04,0.04
-05149,50,027,50027,2092,3417,115461744,114079846,2092,3417,115461744,114079846,56670,34118,2529859196,2510570288,100,100,100,100,3.69,10.02,4.56,4.54
-05150,50,027,50027,831,416,6398790,6194900,831,416,6398790,6194900,56670,34118,2529859196,2510570288,100,100,100,100,1.47,1.22,0.25,0.25
-05151,50,027,50027,1553,789,73281614,72012508,1553,789,73281614,72012508,56670,34118,2529859196,2510570288,100,100,100,100,2.74,2.31,2.9,2.87
-05152,50,003,50003,448,772,105794777,105467078,448,772,105794777,105467078,37125,20922,1755122278,1748190656,100,100,100,100,1.21,3.69,6.03,6.03
-05153,50,027,50027,687,535,32651532,32540197,687,535,32651532,32540197,56670,34118,2529859196,2510570288,100,100,100,100,1.21,1.57,1.29,1.3
-05154,50,025,50025,661,288,7011508,6863497,661,288,7011508,6863497,44513,29735,2066986583,2033930747,100,100,100,100,1.48,0.97,0.34,0.34
-05155,50,003,50003,6,27,27097,27097,828,1798,108184281,107538268,37125,20922,1755122278,1748190656,0.72,1.5,0.03,0.03,0.02,0.13,0,0
-05155,50,025,50025,822,1771,108157184,107511171,828,1798,108184281,107538268,44513,29735,2066986583,2033930747,99.28,98.5,99.97,99.97,1.85,5.96,5.23,5.29
-05156,50,027,50027,9226,4241,157398427,156333531,9226,4241,157398427,156333531,56670,34118,2529859196,2510570288,100,100,100,100,16.28,12.43,6.22,6.23
-05158,50,025,50025,1049,491,29716827,29566089,1049,491,29716827,29566089,44513,29735,2066986583,2033930747,100,100,100,100,2.36,1.65,1.44,1.45
-05161,50,027,50027,552,549,89956641,89440904,552,549,89956641,89440904,56670,34118,2529859196,2510570288,100,100,100,100,0.97,1.61,3.56,3.56
-05201,50,003,50003,14851,6739,242010890,241102399,14851,6739,242010890,241102399,37125,20922,1755122278,1748190656,100,100,100,100,40,32.21,13.79,13.79
-05250,50,003,50003,3408,1929,237988995,237184139,3408,1929,237988995,237184139,37125,20922,1755122278,1748190656,100,100,100,100,9.18,9.22,13.56,13.57
-05251,50,003,50003,1350,1061,90538334,90411653,1350,1061,90538334,90411653,37125,20922,1755122278,1748190656,100,100,100,100,3.64,5.07,5.16,5.17
-05252,50,003,50003,274,173,101517118,100844368,274,173,101517118,100844368,37125,20922,1755122278,1748190656,100,100,100,100,0.74,0.83,5.78,5.77
-05253,50,003,50003,674,386,33194372,32987366,685,393,34207327,34000321,37125,20922,1755122278,1748190656,98.39,98.22,97.04,97.02,1.82,1.84,1.89,1.89
-05253,50,021,50021,11,7,1012955,1012955,685,393,34207327,34000321,61642,33768,2446969140,2408224790,1.61,1.78,2.96,2.98,0.02,0.02,0.04,0.04
-05254,50,003,50003,273,302,5252320,5213000,273,302,5252320,5213000,37125,20922,1755122278,1748190656,100,100,100,100,0.74,1.44,0.3,0.3
-05255,50,003,50003,4121,2560,102372984,102090167,4121,2560,102372984,102090167,37125,20922,1755122278,1748190656,100,100,100,100,11.1,12.24,5.83,5.84
-05257,50,003,50003,2718,991,33137894,32887455,2718,991,33137894,32887455,37125,20922,1755122278,1748190656,100,100,100,100,7.32,4.74,1.89,1.88
-05260,50,003,50003,459,206,25172197,24920356,459,206,25172197,24920356,37125,20922,1755122278,1748190656,100,100,100,100,1.24,0.98,1.43,1.43
-05261,50,003,50003,2738,1267,83559973,83109526,2738,1267,83559973,83109526,37125,20922,1755122278,1748190656,100,100,100,100,7.38,6.06,4.76,4.75
-05262,50,003,50003,2547,1217,197442662,197253776,2547,1217,197442662,197253776,37125,20922,1755122278,1748190656,100,100,100,100,6.86,5.82,11.25,11.28
-05301,50,025,50025,16820,8450,391731689,388097031,16820,8450,391731689,388097031,44513,29735,2066986583,2033930747,100,100,100,100,37.79,28.42,18.95,19.08
-05340,50,003,50003,763,1722,113976152,112748594,763,1722,113976152,112748594,37125,20922,1755122278,1748190656,100,100,100,100,2.06,8.23,6.49,6.45
-05341,50,025,50025,407,301,34078383,34027325,407,301,34078383,34027325,44513,29735,2066986583,2033930747,100,100,100,100,0.91,1.01,1.65,1.67
-05342,50,025,50025,581,389,39743427,39459873,581,389,39743427,39459873,44513,29735,2066986583,2033930747,100,100,100,100,1.31,1.31,1.92,1.94
-05343,50,025,50025,917,970,118169746,116791431,917,970,118169746,116791431,44513,29735,2066986583,2033930747,100,100,100,100,2.06,3.26,5.72,5.74
-05345,50,025,50025,2119,1299,130681317,129887454,2119,1299,130681317,129887454,44513,29735,2066986583,2033930747,100,100,100,100,4.76,4.37,6.32,6.39
-05346,50,025,50025,5184,2312,178653256,177969161,5184,2312,178653256,177969161,44513,29735,2066986583,2033930747,100,100,100,100,11.65,7.78,8.64,8.75
-05350,50,003,50003,763,496,94474965,94088470,763,496,94474965,94088470,37125,20922,1755122278,1748190656,100,100,100,100,2.06,2.37,5.38,5.38
-05352,50,003,50003,824,410,102612394,102312123,824,410,102612394,102312123,37125,20922,1755122278,1748190656,100,100,100,100,2.22,1.96,5.85,5.85
-05353,50,025,50025,1072,670,96328405,95176769,1072,670,96328405,95176769,44513,29735,2066986583,2033930747,100,100,100,100,2.41,2.25,4.66,4.68
-05354,50,025,50025,2210,926,51971361,50375952,2210,926,51971361,50375952,44513,29735,2066986583,2033930747,100,100,100,100,4.96,3.11,2.51,2.48
-05355,50,025,50025,813,744,71062588,70979303,813,744,71062588,70979303,44513,29735,2066986583,2033930747,100,100,100,100,1.83,2.5,3.44,3.49
-05356,50,025,50025,717,2753,57434485,57256311,717,2753,57434485,57256311,44513,29735,2066986583,2033930747,100,100,100,100,1.61,9.26,2.78,2.82
-05358,50,025,50025,148,119,32459107,32445516,148,119,32459107,32445516,44513,29735,2066986583,2033930747,100,100,100,100,0.33,0.4,1.57,1.6
-05359,50,025,50025,594,501,76815421,76600700,594,501,76815421,76600700,44513,29735,2066986583,2033930747,100,100,100,100,1.33,1.68,3.72,3.77
-05360,50,025,50025,251,385,133406240,125995126,251,385,133406240,125995126,44513,29735,2066986583,2033930747,100,100,100,100,0.56,1.29,6.45,6.19
-05361,50,025,50025,947,673,84438649,78687821,947,673,84438649,78687821,44513,29735,2066986583,2033930747,100,100,100,100,2.13,2.26,4.09,3.87
-05362,50,025,50025,127,80,7051455,6872692,127,80,7051455,6872692,44513,29735,2066986583,2033930747,100,100,100,100,0.29,0.27,0.34,0.34
-05363,50,003,50003,109,93,55869191,55541319,2021,2607,171834082,166272330,37125,20922,1755122278,1748190656,5.39,3.57,32.51,33.4,0.29,0.44,3.18,3.18
-05363,50,025,50025,1912,2514,115964891,110731011,2021,2607,171834082,166272330,44513,29735,2066986583,2033930747,94.61,96.43,67.49,66.6,4.3,8.45,5.61,5.44
-05401,50,007,50007,28185,12730,15682536,15341366,28185,12730,15682536,15341366,156545,65722,1603976371,1389731195,100,100,100,100,18,19.37,0.98,1.1
-05403,50,007,50007,17593,8285,42974450,42477974,17593,8285,42974450,42477974,156545,65722,1603976371,1389731195,100,100,100,100,11.24,12.61,2.68,3.06
-05404,50,007,50007,7240,3383,3903706,3697712,7240,3383,3903706,3697712,156545,65722,1603976371,1389731195,100,100,100,100,4.62,5.15,0.24,0.27
-05405,50,007,50007,4406,3,602184,602184,4406,3,602184,602184,156545,65722,1603976371,1389731195,100,100,100,100,2.81,0,0.04,0.04
-05408,50,007,50007,10114,4308,11644935,10930278,10114,4308,11644935,10930278,156545,65722,1603976371,1389731195,100,100,100,100,6.46,6.55,0.73,0.79
-05439,50,007,50007,1734,69,487838,458147,1734,69,487838,458147,156545,65722,1603976371,1389731195,100,100,100,100,1.11,0.1,0.03,0.03
-05440,50,013,50013,1998,1370,76962439,75473054,1998,1370,76962439,75473054,6970,5048,504188416,211890629,100,100,100,100,28.67,27.14,15.26,35.62
-05441,50,011,50011,958,418,82639493,82423250,958,418,82639493,82423250,47746,21588,1792224073,1641291023,100,100,100,100,2.01,1.94,4.61,5.02
-05442,50,015,50015,339,206,82926767,82799135,339,206,82926767,82799135,24475,12969,1200939665,1188278167,100,100,100,100,1.39,1.59,6.91,6.97
-05443,50,001,50001,6656,2931,296522348,293742478,6656,2931,296522348,293742478,36821,16760,2092082700,1984773428,100,100,100,100,18.08,17.49,14.17,14.8
-05444,50,011,50011,915,371,27606137,27215548,1714,738,53093060,52426130,47746,21588,1792224073,1641291023,53.38,50.27,52,51.91,1.92,1.72,1.54,1.66
-05444,50,015,50015,799,367,25486923,25210582,1714,738,53093060,52426130,24475,12969,1200939665,1188278167,46.62,49.73,48,48.09,3.26,2.83,2.12,2.12
-05445,50,007,50007,3754,1706,107252468,106859626,3754,1706,107252468,106859626,156545,65722,1603976371,1389731195,100,100,100,100,2.4,2.6,6.69,7.69
-05446,50,007,50007,15373,7045,97120456,94936779,15373,7045,97120456,94936779,156545,65722,1603976371,1389731195,100,100,100,100,9.82,10.72,6.05,6.83
-05447,50,011,50011,79,38,802635,790257,79,38,802635,790257,47746,21588,1792224073,1641291023,100,100,100,100,0.17,0.18,0.04,0.05
-05448,50,011,50011,1134,495,105495298,105085952,1134,495,105495298,105085952,47746,21588,1792224073,1641291023,100,100,100,100,2.38,2.29,5.89,6.4
-05450,50,011,50011,4977,2135,310715643,307850027,4977,2135,310715643,307850027,47746,21588,1792224073,1641291023,100,100,100,100,10.42,9.89,17.34,18.76
-05452,50,007,50007,19710,8193,108795617,107559004,19710,8193,108795617,107559004,156545,65722,1603976371,1389731195,100,100,100,100,12.59,12.47,6.78,7.74
-05454,50,011,50011,4447,1752,126085793,122742033,4447,1752,126085793,122742033,47746,21588,1792224073,1641291023,100,100,100,100,9.31,8.12,7.04,7.48
-05455,50,011,50011,1080,413,86937483,86295058,1080,413,86937483,86295058,47746,21588,1792224073,1641291023,100,100,100,100,2.26,1.91,4.85,5.26
-05456,50,001,50001,1277,559,64558309,62050717,1277,559,64558309,62050717,36821,16760,2092082700,1984773428,100,100,100,100,3.47,3.34,3.09,3.13
-05457,50,011,50011,1617,945,105629565,99545684,1617,945,105629565,99545684,47746,21588,1792224073,1641291023,100,100,100,100,3.39,4.38,5.89,6.07
-05458,50,013,50013,2044,1178,42456903,42417581,2044,1178,42456903,42417581,6970,5048,504188416,211890629,100,100,100,100,29.33,23.34,8.42,20.02
-05459,50,011,50011,2156,832,67690185,66399633,2156,832,67690185,66399633,47746,21588,1792224073,1641291023,100,100,100,100,4.52,3.85,3.78,4.05
-05461,50,001,50001,146,59,4484786,4477843,4542,1906,107636558,106596690,36821,16760,2092082700,1984773428,3.21,3.1,4.17,4.2,0.4,0.35,0.21,0.23
-05461,50,007,50007,4396,1847,103151772,102118847,4542,1906,107636558,106596690,156545,65722,1603976371,1389731195,96.79,96.9,95.83,95.8,2.81,2.81,6.43,7.35
-05462,50,007,50007,1938,821,98524648,98267202,1938,821,98524648,98267202,156545,65722,1603976371,1389731195,100,100,100,100,1.24,1.25,6.14,7.07
-05463,50,013,50013,471,454,20451899,20421034,471,454,20451899,20421034,6970,5048,504188416,211890629,100,100,100,100,6.76,8.99,4.06,9.64
-05464,50,011,50011,210,113,34590880,34531072,3008,1417,168907363,167851782,47746,21588,1792224073,1641291023,6.98,7.97,20.48,20.57,0.44,0.52,1.93,2.1
-05464,50,015,50015,2798,1304,134316483,133320710,3008,1417,168907363,167851782,24475,12969,1200939665,1188278167,93.02,92.03,79.52,79.43,11.43,10.05,11.18,11.22
-05465,50,007,50007,5355,2078,113258216,112764341,5355,2078,113258216,112764341,156545,65722,1603976371,1389731195,100,100,100,100,3.42,3.16,7.06,8.11
-05468,50,007,50007,10352,4147,136642263,133074217,12942,5117,169354307,165434063,156545,65722,1603976371,1389731195,79.99,81.04,80.68,80.44,6.61,6.31,8.52,9.58
-05468,50,011,50011,2590,970,32712044,32359846,12942,5117,169354307,165434063,47746,21588,1792224073,1641291023,20.01,18.96,19.32,19.56,5.42,4.49,1.83,1.97
-05471,50,011,50011,865,583,124952468,124803090,896,662,133944703,133793753,47746,21588,1792224073,1641291023,96.54,88.07,93.29,93.28,1.81,2.7,6.97,7.6
-05471,50,019,50019,31,79,8992235,8990663,896,662,133944703,133793753,27231,16162,1867805715,1795556430,3.46,11.93,6.71,6.72,0.11,0.49,0.48,0.5
-05472,50,001,50001,1643,710,102759539,102067642,1643,710,102759539,102067642,36821,16760,2092082700,1984773428,100,100,100,100,4.46,4.24,4.91,5.14
-05473,50,001,50001,1413,749,49891091,48948666,1413,749,49891091,48948666,36821,16760,2092082700,1984773428,100,100,100,100,3.84,4.47,2.38,2.47
-05474,50,013,50013,803,966,34892288,34846755,803,966,34892288,34846755,6970,5048,504188416,211890629,100,100,100,100,11.52,19.14,6.92,16.45
-05476,50,011,50011,3183,1458,166397161,165163747,3183,1458,166397161,165163747,47746,21588,1792224073,1641291023,100,100,100,100,6.67,6.75,9.28,10.06
-05477,50,007,50007,4397,1884,121559945,120206296,4397,1884,121559945,120206296,156545,65722,1603976371,1389731195,100,100,100,100,2.81,2.87,7.58,8.65
-05478,50,011,50011,14449,6621,158142388,156621128,14449,6621,158142388,156621128,47746,21588,1792224073,1641291023,100,100,100,100,30.26,30.67,8.82,9.54
-05481,50,011,50011,0,1,973626,972298,0,1,973626,972298,47746,21588,1792224073,1641291023,0,100,100,100,0,0,0.05,0.06
-05482,50,007,50007,7198,3101,65457731,63443661,7198,3101,65457731,63443661,156545,65722,1603976371,1389731195,100,100,100,100,4.6,4.72,4.08,4.57
-05483,50,011,50011,1303,637,55218741,52704287,1303,637,55218741,52704287,47746,21588,1792224073,1641291023,100,100,100,100,2.73,2.95,3.08,3.21
-05485,50,011,50011,93,43,476408,476408,93,43,476408,476408,47746,21588,1792224073,1641291023,100,100,100,100,0.19,0.2,0.03,0.03
-05486,50,013,50013,1654,1080,38719598,38682119,1654,1080,38719598,38682119,6970,5048,504188416,211890629,100,100,100,100,23.73,21.39,7.68,18.26
-05487,50,001,50001,1468,670,104011626,103698713,1498,684,116870374,116546973,36821,16760,2092082700,1984773428,98,97.95,89,88.98,3.99,4,4.97,5.22
-05487,50,007,50007,30,14,12858748,12848260,1498,684,116870374,116546973,156545,65722,1603976371,1389731195,2,2.05,11,11.02,0.02,0.02,0.8,0.92
-05488,50,011,50011,7690,3763,171890283,167273145,7690,3763,171890283,167273145,47746,21588,1792224073,1641291023,100,100,100,100,16.11,17.43,9.59,10.19
-05489,50,007,50007,3174,1262,137459303,137270165,3174,1262,137459303,137270165,156545,65722,1603976371,1389731195,100,100,100,100,2.03,1.92,8.57,9.88
-05491,50,001,50001,5909,2794,232221233,223217171,5909,2794,232221233,223217171,36821,16760,2092082700,1984773428,100,100,100,100,16.05,16.67,11.1,11.25
-05492,50,015,50015,682,323,42797622,42647742,682,323,42797622,42647742,24475,12969,1200939665,1188278167,100,100,100,100,2.79,2.49,3.56,3.59
-05494,50,007,50007,1767,693,89130877,88606529,1767,693,89130877,88606529,156545,65722,1603976371,1389731195,100,100,100,100,1.13,1.05,5.56,6.38
-05495,50,007,50007,9341,3928,88002498,86689453,9341,3928,88002498,86689453,156545,65722,1603976371,1389731195,100,100,100,100,5.97,5.98,5.49,6.24
-05602,50,023,50023,11916,5806,213383040,210287146,11916,5806,213383040,210287146,59534,29941,1801139363,1779926134,100,100,100,100,20.02,19.39,11.85,11.81
-05640,50,023,50023,161,87,9773217,9628237,161,87,9773217,9628237,59534,29941,1801139363,1779926134,100,100,100,100,0.27,0.29,0.54,0.54
-05641,50,017,50017,556,251,38067996,37482449,17169,7943,141060507,140073023,28936,14845,1792959357,1779407245,3.24,3.16,26.99,26.76,1.92,1.69,2.12,2.11
-05641,50,023,50023,16613,7692,102992511,102590574,17169,7943,141060507,140073023,59534,29941,1801139363,1779926134,96.76,96.84,73.01,73.24,27.91,25.69,5.72,5.76
-05647,50,023,50023,1141,630,77919573,76230027,1141,630,77919573,76230027,59534,29941,1801139363,1779926134,100,100,100,100,1.92,2.1,4.33,4.28
-05648,50,023,50023,423,256,23670559,23100708,423,256,23670559,23100708,59534,29941,1801139363,1779926134,100,100,100,100,0.71,0.86,1.31,1.3
-05649,50,017,50017,344,153,39942948,39832465,574,260,40558607,40440628,28936,14845,1792959357,1779407245,59.93,58.85,98.48,98.5,1.19,1.03,2.23,2.24
-05649,50,023,50023,230,107,615659,608163,574,260,40558607,40440628,59534,29941,1801139363,1779926134,40.07,41.15,1.52,1.5,0.39,0.36,0.03,0.03
-05650,50,023,50023,1123,612,62764298,60980569,1123,612,62764298,60980569,59534,29941,1801139363,1779926134,100,100,100,100,1.89,2.04,3.48,3.43
-05651,50,023,50023,1546,651,44977192,44496815,1546,651,44977192,44496815,59534,29941,1801139363,1779926134,100,100,100,100,2.6,2.17,2.5,2.5
-05652,50,015,50015,776,333,82034358,81138885,776,333,82034358,81138885,24475,12969,1200939665,1188278167,100,100,100,100,3.17,2.57,6.83,6.83
-05653,50,015,50015,547,379,84476039,82811407,547,379,84476039,82811407,24475,12969,1200939665,1188278167,100,100,100,100,2.23,2.92,7.03,6.97
-05654,50,017,50017,165,75,3134007,3079355,970,454,7596974,7464479,28936,14845,1792959357,1779407245,17.01,16.52,41.25,41.25,0.57,0.51,0.17,0.17
-05654,50,023,50023,805,379,4462967,4385124,970,454,7596974,7464479,59534,29941,1801139363,1779926134,82.99,83.48,58.75,58.75,1.35,1.27,0.25,0.25
-05655,50,015,50015,2868,1331,91149069,87894850,2868,1331,91149069,87894850,24475,12969,1200939665,1188278167,100,100,100,100,11.72,10.26,7.59,7.4
-05656,50,015,50015,3508,1372,121913910,120920167,3508,1372,121913910,120920167,24475,12969,1200939665,1188278167,100,100,100,100,14.33,10.58,10.15,10.18
-05657,50,015,50015,56,95,1250825,363568,56,95,1250825,363568,24475,12969,1200939665,1188278167,100,100,100,100,0.23,0.73,0.1,0.03
-05658,50,023,50023,1402,676,99751307,97260005,1402,676,99751307,97260005,59534,29941,1801139363,1779926134,100,100,100,100,2.35,2.26,5.54,5.46
-05660,50,023,50023,1660,841,103388905,102910453,1660,841,103388905,102910453,59534,29941,1801139363,1779926134,100,100,100,100,2.79,2.81,5.74,5.78
-05661,50,015,50015,5620,2721,172654310,171151061,5620,2721,172654310,171151061,24475,12969,1200939665,1188278167,100,100,100,100,22.96,20.98,14.38,14.4
-05663,50,017,50017,14,8,2974648,2973592,6773,2377,142440147,141990167,28936,14845,1792959357,1779407245,0.21,0.34,2.09,2.09,0.05,0.05,0.17,0.17
-05663,50,023,50023,6759,2369,139465499,139016575,6773,2377,142440147,141990167,59534,29941,1801139363,1779926134,99.79,99.66,97.91,97.91,11.35,7.91,7.74,7.81
-05664,50,023,50023,80,34,43125,43125,80,34,43125,43125,59534,29941,1801139363,1779926134,100,100,100,100,0.13,0.11,0,0
-05667,50,023,50023,2166,1000,117752850,117134422,2166,1000,117752850,117134422,59534,29941,1801139363,1779926134,100,100,100,100,3.64,3.34,6.54,6.58
-05669,50,001,50001,18,11,2123013,2118951,634,413,109981610,109852084,36821,16760,2092082700,1984773428,2.84,2.66,1.93,1.93,0.05,0.07,0.1,0.11
-05669,50,017,50017,12,9,2856488,2856488,634,413,109981610,109852084,28936,14845,1792959357,1779407245,1.89,2.18,2.6,2.6,0.04,0.06,0.16,0.16
-05669,50,023,50023,604,393,105002109,104876645,634,413,109981610,109852084,59534,29941,1801139363,1779926134,95.27,95.16,95.47,95.47,1.01,1.31,5.83,5.89
-05672,50,015,50015,4314,3526,188454133,188029710,4314,3526,188454133,188029710,24475,12969,1200939665,1188278167,100,100,100,100,17.63,27.19,15.69,15.82
-05673,50,023,50023,2574,1938,142493549,142010045,2574,1938,142493549,142010045,59534,29941,1801139363,1779926134,100,100,100,100,4.32,6.47,7.91,7.98
-05674,50,023,50023,1705,2232,103538053,103409221,1705,2232,103538053,103409221,59534,29941,1801139363,1779926134,100,100,100,100,2.86,7.45,5.75,5.81
-05675,50,017,50017,1064,576,103085817,102947135,1064,576,103085817,102947135,28936,14845,1792959357,1779407245,100,100,100,100,3.68,3.88,5.75,5.79
-05676,50,007,50007,488,225,52187585,51558280,4984,2391,266549335,262963370,156545,65722,1603976371,1389731195,9.79,9.41,19.58,19.61,0.31,0.34,3.25,3.71
-05676,50,023,50023,4496,2166,214361750,211405090,4984,2391,266549335,262963370,59534,29941,1801139363,1779926134,90.21,90.59,80.42,80.39,7.55,7.23,11.9,11.88
-05677,50,023,50023,2232,1004,41448668,39857149,2232,1004,41448668,39857149,59534,29941,1801139363,1779926134,100,100,100,100,3.75,3.35,2.3,2.24
-05678,50,023,50023,163,77,1950584,1831705,163,77,1950584,1831705,59534,29941,1801139363,1779926134,100,100,100,100,0.27,0.26,0.11,0.1
-05679,50,017,50017,3296,1436,103408370,102935788,3296,1436,103408370,102935788,28936,14845,1792959357,1779407245,100,100,100,100,11.39,9.67,5.77,5.78
-05680,50,015,50015,2168,1012,173479226,171990350,2168,1012,173479226,171990350,24475,12969,1200939665,1188278167,100,100,100,100,8.86,7.8,14.45,14.47
-05681,50,023,50023,458,413,69131615,66106347,458,413,69131615,66106347,59534,29941,1801139363,1779926134,100,100,100,100,0.77,1.38,3.84,3.71
-05682,50,023,50023,1251,561,120101384,119607040,1251,561,120101384,119607040,59534,29941,1801139363,1779926134,100,100,100,100,2.1,1.87,6.67,6.72
-05701,50,021,50021,20802,10267,151478660,150827254,20802,10267,151478660,150827254,61642,33768,2446969140,2408224790,100,100,100,100,33.75,30.4,6.19,6.26
-05730,50,021,50021,302,243,36222145,35911950,302,243,36222145,35911950,61642,33768,2446969140,2408224790,100,100,100,100,0.49,0.72,1.48,1.49
-05732,50,021,50021,708,584,29550514,25461747,708,584,29550514,25461747,61642,33768,2446969140,2408224790,100,100,100,100,1.15,1.73,1.21,1.06
-05733,50,001,50001,1183,737,122684463,121253779,5895,3145,300210120,295939588,36821,16760,2092082700,1984773428,20.07,23.43,40.87,40.97,3.21,4.4,5.86,6.11
-05733,50,021,50021,4712,2408,177525657,174685809,5895,3145,300210120,295939588,61642,33768,2446969140,2408224790,79.93,76.57,59.13,59.03,7.64,7.13,7.25,7.25
-05734,50,001,50001,1306,702,114776651,114233931,1306,702,114776651,114233931,36821,16760,2092082700,1984773428,100,100,100,100,3.55,4.19,5.49,5.76
-05735,50,021,50021,4402,1751,117005384,110986031,4402,1751,117005384,110986031,61642,33768,2446969140,2408224790,100,100,100,100,7.14,5.19,4.78,4.61
-05736,50,021,50021,684,320,15697856,15512592,684,320,15697856,15512592,61642,33768,2446969140,2408224790,100,100,100,100,1.11,0.95,0.64,0.64
-05737,50,021,50021,875,463,169371097,166225438,875,463,169371097,166225438,61642,33768,2446969140,2408224790,100,100,100,100,1.42,1.37,6.92,6.9
-05738,50,021,50021,1072,576,130236454,129702295,1072,576,130236454,129702295,61642,33768,2446969140,2408224790,100,100,100,100,1.74,1.71,5.32,5.39
-05739,50,021,50021,1407,757,142118439,141638614,1407,757,142118439,141638614,61642,33768,2446969140,2408224790,100,100,100,100,2.28,2.24,5.81,5.88
-05740,50,001,50001,25,15,72134,72134,25,15,72134,72134,36821,16760,2092082700,1984773428,100,100,100,100,0.07,0.09,0,0
-05742,50,021,50021,597,416,67434318,66695489,597,416,67434318,66695489,61642,33768,2446969140,2408224790,100,100,100,100,0.97,1.23,2.76,2.77
-05743,50,021,50021,4330,2331,261901193,256031317,4330,2331,261901193,256031317,61642,33768,2446969140,2408224790,100,100,100,100,7.02,6.9,10.7,10.63
-05744,50,021,50021,533,258,57828373,57617410,533,258,57828373,57617410,61642,33768,2446969140,2408224790,100,100,100,100,0.86,0.76,2.36,2.39
-05747,50,001,50001,280,233,131280973,131031229,280,233,131280973,131031229,36821,16760,2092082700,1984773428,100,100,100,100,0.76,1.39,6.28,6.6
-05748,50,001,50001,323,208,98760668,98481990,323,208,98760668,98481990,36821,16760,2092082700,1984773428,100,100,100,100,0.88,1.24,4.72,4.96
-05751,50,021,50021,811,2609,121356290,120651071,811,2609,121356290,120651071,61642,33768,2446969140,2408224790,100,100,100,100,1.32,7.73,4.96,5.01
-05753,50,001,50001,10491,3921,222260927,219488982,10491,3921,222260927,219488982,36821,16760,2092082700,1984773428,100,100,100,100,28.49,23.39,10.62,11.06
-05757,50,021,50021,832,470,63441715,63406134,832,470,63441715,63406134,61642,33768,2446969140,2408224790,100,100,100,100,1.35,1.39,2.59,2.63
-05758,50,021,50021,784,662,78939755,78064490,784,662,78939755,78064490,61642,33768,2446969140,2408224790,100,100,100,100,1.27,1.96,3.23,3.24
-05759,50,021,50021,1827,857,47115714,46632446,1827,857,47115714,46632446,61642,33768,2446969140,2408224790,100,100,100,100,2.96,2.54,1.93,1.94
-05760,50,001,50001,1079,576,97147467,95987187,1123,645,103496620,101458624,36821,16760,2092082700,1984773428,96.08,89.3,93.87,94.61,2.93,3.44,4.64,4.84
-05760,50,021,50021,44,69,6349153,5471437,1123,645,103496620,101458624,61642,33768,2446969140,2408224790,3.92,10.7,6.13,5.39,0.07,0.2,0.26,0.23
-05761,50,021,50021,1000,588,98550994,98392373,1000,588,98550994,98392373,61642,33768,2446969140,2408224790,100,100,100,100,1.62,1.74,4.03,4.09
-05762,50,021,50021,542,431,51945368,51775536,542,431,51945368,51775536,61642,33768,2446969140,2408224790,100,100,100,100,0.88,1.28,2.12,2.15
-05763,50,021,50021,2747,1303,74743170,74482692,2747,1303,74743170,74482692,61642,33768,2446969140,2408224790,100,100,100,100,4.46,3.86,3.05,3.09
-05764,50,021,50021,3452,1676,114590512,111862666,3452,1676,114590512,111862666,61642,33768,2446969140,2408224790,100,100,100,100,5.6,4.96,4.68,4.65
-05765,50,021,50021,1803,806,20895538,20466061,1803,806,20895538,20466061,61642,33768,2446969140,2408224790,100,100,100,100,2.92,2.39,0.85,0.85
-05766,50,001,50001,572,334,118713094,118297320,572,334,118713094,118297320,36821,16760,2092082700,1984773428,100,100,100,100,1.55,1.99,5.67,5.96
-05767,50,021,50021,4,4,1035446,1035446,1143,836,148564205,147783985,61642,33768,2446969140,2408224790,0.35,0.48,0.7,0.7,0.01,0.01,0.04,0.04
-05767,50,027,50027,1139,832,147528759,146748539,1143,836,148564205,147783985,56670,34118,2529859196,2510570288,99.65,99.52,99.3,99.3,2.01,2.44,5.83,5.85
-05769,50,001,50001,1216,735,83765859,79408330,1216,735,83765859,79408330,36821,16760,2092082700,1984773428,100,100,100,100,3.3,4.39,4,4
-05770,50,001,50001,1136,527,107582858,107000816,1136,527,107582858,107000816,36821,16760,2092082700,1984773428,100,100,100,100,3.09,3.14,5.14,5.39
-05772,50,027,50027,713,539,118608208,117891227,713,539,118608208,117891227,56670,34118,2529859196,2510570288,100,100,100,100,1.26,1.58,4.69,4.7
-05773,50,021,50021,2136,1112,184146856,183022821,2136,1112,184146856,183022821,61642,33768,2446969140,2408224790,100,100,100,100,3.47,3.29,7.53,7.6
-05774,50,021,50021,1129,924,60002627,57728711,1129,924,60002627,57728711,61642,33768,2446969140,2408224790,100,100,100,100,1.83,2.74,2.45,2.4
-05775,50,021,50021,623,306,33142511,32763435,623,306,33142511,32763435,61642,33768,2446969140,2408224790,100,100,100,100,1.01,0.91,1.35,1.36
-05776,50,003,50003,714,482,115526003,115429345,714,482,115526003,115429345,37125,20922,1755122278,1748190656,100,100,100,100,1.92,2.3,6.58,6.6
-05777,50,021,50021,3420,1546,125090935,124919107,3420,1546,125090935,124919107,61642,33768,2446969140,2408224790,100,100,100,100,5.55,4.58,5.11,5.19
-05778,50,001,50001,680,289,59702333,59195329,733,313,64944318,64436792,36821,16760,2092082700,1984773428,92.77,92.33,91.93,91.87,1.85,1.72,2.85,2.98
-05778,50,021,50021,53,24,5241985,5241463,733,313,64944318,64436792,61642,33768,2446969140,2408224790,7.23,7.67,8.07,8.13,0.09,0.07,0.21,0.22
-05819,50,005,50005,9444,4364,241599011,235484662,9444,4364,241599011,235484662,31227,15942,1703011743,1680549138,100,100,100,100,30.24,27.37,14.19,14.01
-05820,50,019,50019,662,363,62672026,62188349,662,363,62672026,62188349,27231,16162,1867805715,1795556430,100,100,100,100,2.43,2.25,3.36,3.46
-05821,50,005,50005,1269,769,92313288,90142483,1269,769,92313288,90142483,31227,15942,1703011743,1680549138,100,100,100,100,4.06,4.82,5.42,5.36
-05822,50,019,50019,1873,1159,107310957,100207825,1873,1159,107310957,100207825,27231,16162,1867805715,1795556430,100,100,100,100,6.88,7.17,5.75,5.58
-05824,50,005,50005,268,128,39836145,39755912,1139,753,139683615,134108115,31227,15942,1703011743,1680549138,23.53,17,28.52,29.64,0.86,0.8,2.34,2.37
-05824,50,009,50009,871,625,99847470,94352203,1139,753,139683615,134108115,6306,5019,1749002071,1718710619,76.47,83,71.48,70.36,13.81,12.45,5.71,5.49
-05825,50,019,50019,191,93,6656344,6586438,191,93,6656344,6586438,27231,16162,1867805715,1795556430,100,100,100,100,0.7,0.58,0.36,0.37
-05826,50,019,50019,983,509,81359849,81059665,983,509,81359849,81059665,27231,16162,1867805715,1795556430,100,100,100,100,3.61,3.15,4.36,4.51
-05827,50,019,50019,309,190,39721225,38146793,309,190,39721225,38146793,27231,16162,1867805715,1795556430,100,100,100,100,1.13,1.18,2.13,2.12
-05828,50,005,50005,1928,962,139445777,139057565,1928,962,139445777,139057565,31227,15942,1703011743,1680549138,100,100,100,100,6.17,6.03,8.19,8.27
-05829,50,019,50019,2003,1118,70164610,65946490,2003,1118,70164610,65946490,27231,16162,1867805715,1795556430,100,100,100,100,7.36,6.92,3.76,3.67
-05830,50,019,50019,1502,849,82978269,81183397,1502,849,82978269,81183397,27231,16162,1867805715,1795556430,100,100,100,100,5.52,5.25,4.44,4.52
-05832,50,005,50005,982,740,76285278,76002046,982,740,76285278,76002046,31227,15942,1703011743,1680549138,100,100,100,100,3.14,4.64,4.48,4.52
-05833,50,019,50019,273,184,37584389,37418358,273,184,37584389,37418358,27231,16162,1867805715,1795556430,100,100,100,100,1,1.14,2.01,2.08
-05836,50,005,50005,1068,607,74670364,73952556,1068,607,74670364,73952556,31227,15942,1703011743,1680549138,100,100,100,100,3.42,3.81,4.38,4.4
-05837,50,005,50005,63,41,9359802,9357465,353,232,119173644,119051448,31227,15942,1703011743,1680549138,17.85,17.67,7.85,7.86,0.2,0.26,0.55,0.56
-05837,50,009,50009,290,191,109813842,109693983,353,232,119173644,119051448,6306,5019,1749002071,1718710619,82.15,82.33,92.15,92.14,4.6,3.81,6.28,6.38
-05839,50,019,50019,775,486,63796192,62693329,775,486,63796192,62693329,27231,16162,1867805715,1795556430,100,100,100,100,2.85,3.01,3.42,3.49
-05841,50,019,50019,425,603,78687393,74238222,425,603,78687393,74238222,27231,16162,1867805715,1795556430,100,100,100,100,1.56,3.73,4.21,4.13
-05842,50,005,50005,202,114,29374363,29147495,522,257,47533371,47229613,31227,15942,1703011743,1680549138,38.7,44.36,61.8,61.71,0.65,0.72,1.72,1.73
-05842,50,019,50019,320,143,18159008,18082118,522,257,47533371,47229613,27231,16162,1867805715,1795556430,61.3,55.64,38.2,38.29,1.18,0.88,0.97,1.01
-05843,50,005,50005,2540,1201,92554217,91727082,2556,1212,94463166,93636031,31227,15942,1703011743,1680549138,99.37,99.09,97.98,97.96,8.13,7.53,5.43,5.46
-05843,50,023,50023,16,11,1908949,1908949,2556,1212,94463166,93636031,59534,29941,1801139363,1779926134,0.63,0.91,2.02,2.04,0.03,0.04,0.11,0.11
-05845,50,019,50019,1096,545,109209408,108321547,1096,545,109209408,108321547,27231,16162,1867805715,1795556430,100,100,100,100,4.02,3.37,5.85,6.03
-05846,50,009,50009,1252,969,147919115,144093051,1252,969,147919115,144093051,6306,5019,1749002071,1718710619,100,100,100,100,19.85,19.31,8.46,8.38
-05847,50,019,50019,879,509,145236150,145028364,879,509,145236150,145028364,27231,16162,1867805715,1795556430,100,100,100,100,3.23,3.15,7.78,8.08
-05850,50,005,50005,231,57,1070047,1049164,231,57,1070047,1049164,31227,15942,1703011743,1680549138,100,100,100,100,0.74,0.36,0.06,0.06
-05851,50,005,50005,6528,2795,208393633,206592268,6528,2795,208393633,206592268,31227,15942,1703011743,1680549138,100,100,100,100,20.9,17.53,12.24,12.29
-05853,50,019,50019,711,789,85147983,77633277,711,789,85147983,77633277,27231,16162,1867805715,1795556430,100,100,100,100,2.61,4.88,4.56,4.32
-05855,50,019,50019,7170,3463,168871481,143800786,7170,3463,168871481,143800786,27231,16162,1867805715,1795556430,100,100,100,100,26.33,21.43,9.04,8.01
-05857,50,019,50019,1540,841,111700616,106880189,1540,841,111700616,106880189,27231,16162,1867805715,1795556430,100,100,100,100,5.66,5.2,5.98,5.95
-05858,50,009,50009,368,279,203083737,202398883,368,279,203083737,202398883,6306,5019,1749002071,1718710619,100,100,100,100,5.84,5.56,11.61,11.78
-05859,50,019,50019,1819,1326,144888150,144069604,1819,1326,144888150,144069604,27231,16162,1867805715,1795556430,100,100,100,100,6.68,8.2,7.76,8.02
-05860,50,019,50019,2557,1580,201910425,195950882,2557,1580,201910425,195950882,27231,16162,1867805715,1795556430,100,100,100,100,9.39,9.78,10.81,10.91
-05862,50,005,50005,356,329,73538143,71202268,356,329,73538143,71202268,31227,15942,1703011743,1680549138,100,100,100,100,1.14,2.06,4.32,4.24
-05866,50,005,50005,732,436,85123494,84455941,732,436,85123494,84455941,31227,15942,1703011743,1680549138,100,100,100,100,2.34,2.73,5,5.03
-05867,50,005,50005,899,430,93805972,93299585,899,430,93805972,93299585,31227,15942,1703011743,1680549138,100,100,100,100,2.88,2.7,5.51,5.55
-05868,50,019,50019,364,199,36460773,36339228,364,199,36460773,36339228,27231,16162,1867805715,1795556430,100,100,100,100,1.34,1.23,1.95,2.02
-05871,50,005,50005,1638,1051,123494890,122242413,1638,1051,123494890,122242413,31227,15942,1703011743,1680549138,100,100,100,100,5.25,6.59,7.25,7.27
-05872,50,019,50019,789,505,66020593,62474671,789,505,66020593,62474671,27231,16162,1867805715,1795556430,100,100,100,100,2.9,3.12,3.53,3.48
-05873,50,005,50005,675,558,77810194,76621505,675,558,77810194,76621505,31227,15942,1703011743,1680549138,100,100,100,100,2.16,3.5,4.57,4.56
-05874,50,019,50019,505,294,95119558,94844144,505,294,95119558,94844144,27231,16162,1867805715,1795556430,100,100,100,100,1.85,1.82,5.09,5.28
-05875,50,019,50019,454,335,45158081,43472091,454,335,45158081,43472091,27231,16162,1867805715,1795556430,100,100,100,100,1.67,2.07,2.42,2.42
-05901,50,009,50009,20,175,97310547,92780261,20,175,97310547,92780261,6306,5019,1749002071,1718710619,100,100,100,100,0.32,3.49,5.56,5.4
-05902,50,009,50009,188,104,2901599,2741543,188,104,2901599,2741543,6306,5019,1749002071,1718710619,100,100,100,100,2.98,2.07,0.17,0.16
-05903,50,009,50009,868,598,173624008,172662646,868,598,173624008,172662646,6306,5019,1749002071,1718710619,100,100,100,100,13.76,11.91,9.93,10.05
-05904,50,009,50009,267,141,1720113,1479506,267,141,1720113,1479506,6306,5019,1749002071,1718710619,100,100,100,100,4.23,2.81,0.1,0.09
-05905,50,009,50009,827,844,496746997,488514596,827,844,496746997,488514596,6306,5019,1749002071,1718710619,100,100,100,100,13.11,16.82,28.4,28.42
-05906,50,009,50009,1178,758,126311918,124684622,1178,758,126311918,124684622,6306,5019,1749002071,1718710619,100,100,100,100,18.68,15.1,7.22,7.25
-05907,50,009,50009,177,335,289722725,285309325,177,335,289722725,285309325,6306,5019,1749002071,1718710619,100,100,100,100,2.81,6.67,16.57,16.6
-06001,09,003,09003,18385,7597,61968572,60750357,18385,7597,61968572,60750357,894014,374249,1944105413,1903891914,100,100,100,100,2.06,2.03,3.19,3.19
-06002,09,003,09003,20486,9019,67930531,67502002,20486,9019,67930531,67502002,894014,374249,1944105413,1903891914,100,100,100,100,2.29,2.41,3.49,3.55
-06010,09,003,09003,60448,26996,69427784,68381017,60448,26996,69427784,68381017,894014,374249,1944105413,1903891914,100,100,100,100,6.76,7.21,3.57,3.59
-06013,09,003,09003,9326,3401,78772692,77047287,9326,3401,78772692,77047287,894014,374249,1944105413,1903891914,100,100,100,100,1.04,0.91,4.05,4.05
-06016,09,003,09003,6226,2682,39016420,38846825,6226,2682,39016420,38846825,894014,374249,1944105413,1903891914,100,100,100,100,0.7,0.72,2.01,2.04
-06018,09,005,09005,2865,1435,31053807,31038044,2865,1435,31053807,31038044,189927,87550,2446404549,2384238980,100,100,100,100,1.51,1.64,1.27,1.3
-06019,09,003,09003,10129,4272,60598525,59460853,10129,4272,60598525,59460853,894014,374249,1944105413,1903891914,100,100,100,100,1.13,1.14,3.12,3.12
-06020,09,003,09003,0,0,18987,18987,0,0,18987,18987,894014,374249,1944105413,1903891914,0,0,100,100,0,0,0,0
-06021,09,005,09005,314,158,14783766,14622779,314,158,14783766,14622779,189927,87550,2446404549,2384238980,100,100,100,100,0.17,0.18,0.6,0.61
-06022,09,003,09003,163,67,4196745,4196745,163,67,4196745,4196745,894014,374249,1944105413,1903891914,100,100,100,100,0.02,0.02,0.22,0.22
-06023,09,003,09003,1296,517,2379054,2373324,1296,517,2379054,2373324,894014,374249,1944105413,1903891914,100,100,100,100,0.14,0.14,0.12,0.12
-06024,09,005,09005,647,305,20576056,20576056,647,305,20576056,20576056,189927,87550,2446404549,2384238980,100,100,100,100,0.34,0.35,0.84,0.86
-06026,09,003,09003,5117,2138,43849519,43614027,5117,2138,43849519,43614027,894014,374249,1944105413,1903891914,100,100,100,100,0.57,0.57,2.26,2.29
-06027,09,003,09003,1492,574,42537785,40819647,1492,574,42537785,40819647,894014,374249,1944105413,1903891914,100,100,100,100,0.17,0.15,2.19,2.14
-06029,09,013,09013,15547,6644,88937643,87556774,15547,6644,88937643,87556774,152691,57963,1080146700,1062448385,100,100,100,100,10.18,11.46,8.23,8.24
-06031,09,005,09005,1287,790,100441245,99548245,1287,790,100441245,99548245,189927,87550,2446404549,2384238980,100,100,100,100,0.68,0.9,4.11,4.18
-06032,09,003,09003,17675,7867,60525791,58984447,17675,7867,60525791,58984447,894014,374249,1944105413,1903891914,100,100,100,100,1.98,2.1,3.11,3.1
-06033,09,003,09003,28762,11529,90378443,88936382,28762,11529,90378443,88936382,894014,374249,1944105413,1903891914,100,100,100,100,3.22,3.08,4.65,4.67
-06035,09,003,09003,7513,3018,40082531,39708852,7513,3018,40082531,39708852,894014,374249,1944105413,1903891914,100,100,100,100,0.84,0.81,2.06,2.09
-06037,09,003,09003,18565,7620,67474205,65768256,18565,7620,67474205,65768256,894014,374249,1944105413,1903891914,100,100,100,100,2.08,2.04,3.47,3.45
-06039,09,005,09005,1942,1287,56792465,54333953,1942,1287,56792465,54333953,189927,87550,2446404549,2384238980,100,100,100,100,1.02,1.47,2.32,2.28
-06040,09,003,09003,35306,15450,44343040,43949945,35306,15450,44343040,43949945,894014,374249,1944105413,1903891914,100,100,100,100,3.95,4.13,2.28,2.31
-06042,09,003,09003,22942,10549,27354965,27027751,22942,10549,27354965,27027751,894014,374249,1944105413,1903891914,100,100,100,100,2.57,2.82,1.41,1.42
-06043,09,013,09013,4986,2018,38092950,37326699,4986,2018,38092950,37326699,152691,57963,1080146700,1062448385,100,100,100,100,3.27,3.48,3.53,3.51
-06051,09,003,09003,30519,13318,10602237,10602237,30519,13318,10602237,10602237,894014,374249,1944105413,1903891914,100,100,100,100,3.41,3.56,0.55,0.56
-06052,09,003,09003,7858,3469,6662737,6604179,7858,3469,6662737,6604179,894014,374249,1944105413,1903891914,100,100,100,100,0.88,0.93,0.34,0.35
-06053,09,003,09003,34863,14454,20962832,20831103,34863,14454,20962832,20831103,894014,374249,1944105413,1903891914,100,100,100,100,3.9,3.86,1.08,1.09
-06057,09,005,09005,6707,2784,97404370,94463646,6707,2784,97404370,94463646,189927,87550,2446404549,2384238980,100,100,100,100,3.53,3.18,3.98,3.96
-06058,09,005,09005,1787,1007,134701573,131383772,1787,1007,134701573,131383772,189927,87550,2446404549,2384238980,100,100,100,100,0.94,1.15,5.51,5.51
-06059,09,005,09005,0,0,10495613,7586417,0,0,10495613,7586417,189927,87550,2446404549,2384238980,0,0,100,100,0,0,0.43,0.32
-06060,09,003,09003,2581,902,31267277,31265752,2581,902,31267277,31265752,894014,374249,1944105413,1903891914,100,100,100,100,0.29,0.24,1.61,1.64
-06061,09,005,09005,169,75,330786,330786,169,75,330786,330786,189927,87550,2446404549,2384238980,100,100,100,100,0.09,0.09,0.01,0.01
-06062,09,003,09003,17715,8063,22815833,22634325,17715,8063,22815833,22634325,894014,374249,1944105413,1903891914,100,100,100,100,1.98,2.15,1.17,1.19
-06063,09,005,09005,3285,1381,80421830,76659560,3285,1381,80421830,76659560,189927,87550,2446404549,2384238980,100,100,100,100,1.73,1.58,3.29,3.22
-06065,09,003,09003,469,182,15677086,15641710,882,350,24984453,24949077,894014,374249,1944105413,1903891914,53.17,52,62.75,62.69,0.05,0.05,0.81,0.82
-06065,09,005,09005,413,168,9307367,9307367,882,350,24984453,24949077,189927,87550,2446404549,2384238980,46.83,48,37.25,37.31,0.22,0.19,0.38,0.39
-06066,09,013,09013,29219,13911,46837328,45866666,29219,13911,46837328,45866666,152691,57963,1080146700,1062448385,100,100,100,100,19.14,24,4.34,4.32
-06067,09,003,09003,19709,8843,35844010,34846672,19709,8843,35844010,34846672,894014,374249,1944105413,1903891914,100,100,100,100,2.2,2.36,1.84,1.83
-06068,09,005,09005,1612,1167,85358750,80533460,1612,1167,85358750,80533460,189927,87550,2446404549,2384238980,100,100,100,100,0.85,1.33,3.49,3.38
-06069,09,005,09005,2535,1588,131661298,129705604,2535,1588,131661298,129705604,189927,87550,2446404549,2384238980,100,100,100,100,1.33,1.81,5.38,5.44
-06070,09,003,09003,15104,5792,56801286,56199044,15104,5792,56801286,56199044,894014,374249,1944105413,1903891914,100,100,100,100,1.69,1.55,2.92,2.95
-06071,09,013,09013,11645,3496,75048907,74744876,11645,3496,75048907,74744876,152691,57963,1080146700,1062448385,100,100,100,100,7.63,6.03,6.95,7.04
-06073,09,003,09003,5651,2122,44724953,43790996,5651,2122,44724953,43790996,894014,374249,1944105413,1903891914,100,100,100,100,0.63,0.57,2.3,2.3
-06074,09,003,09003,25705,10241,74249775,72677501,25705,10241,74249775,72677501,894014,374249,1944105413,1903891914,100,100,100,100,2.88,2.74,3.82,3.82
-06076,09,013,09013,12659,5470,226165399,221722750,12659,5470,226165399,221722750,152691,57963,1080146700,1062448385,100,100,100,100,8.29,9.44,20.94,20.87
-06078,09,003,09003,12413,4089,67806175,66191877,12413,4089,67806175,66191877,894014,374249,1944105413,1903891914,100,100,100,100,1.39,1.09,3.49,3.48
-06081,09,003,09003,1381,674,1951374,1787093,1381,674,1951374,1787093,894014,374249,1944105413,1903891914,100,100,100,100,0.15,0.18,0.1,0.09
-06082,09,003,09003,44654,17558,88617689,86169677,44654,17558,88617689,86169677,894014,374249,1944105413,1903891914,100,100,100,100,4.99,4.69,4.56,4.53
-06084,09,013,09013,15067,5457,104895992,103265782,15067,5457,104895992,103265782,152691,57963,1080146700,1062448385,100,100,100,100,9.87,9.41,9.71,9.72
-06085,09,003,09003,7276,2987,12706302,12367991,7276,2987,12706302,12367991,894014,374249,1944105413,1903891914,100,100,100,100,0.81,0.8,0.65,0.65
-06088,09,003,09003,4936,2363,30439198,29142176,4936,2363,30439198,29142176,894014,374249,1944105413,1903891914,100,100,100,100,0.55,0.63,1.57,1.53
-06089,09,003,09003,2813,1185,7088681,7007276,2813,1185,7088681,7007276,894014,374249,1944105413,1903891914,100,100,100,100,0.31,0.32,0.36,0.37
-06090,09,003,09003,1232,460,35084682,35084682,1232,460,35084682,35084682,894014,374249,1944105413,1903891914,100,100,100,100,0.14,0.12,1.8,1.84
-06091,09,003,09003,140,94,30953245,28774800,140,94,30953245,28774800,894014,374249,1944105413,1903891914,100,100,100,100,0.02,0.03,1.59,1.51
-06092,09,003,09003,4203,1468,22395785,22356020,4203,1468,22395785,22356020,894014,374249,1944105413,1903891914,100,100,100,100,0.47,0.39,1.15,1.17
-06093,09,003,09003,3322,1380,43411165,43268546,3322,1380,43411165,43268546,894014,374249,1944105413,1903891914,100,100,100,100,0.37,0.37,2.23,2.27
-06095,09,003,09003,29079,11781,80415412,76633889,29079,11781,80415412,76633889,894014,374249,1944105413,1903891914,100,100,100,100,3.25,3.15,4.14,4.03
-06096,09,003,09003,12498,5429,25745846,24860683,12498,5429,25745846,24860683,894014,374249,1944105413,1903891914,100,100,100,100,1.4,1.45,1.32,1.31
-06098,09,005,09005,12426,6186,153166626,146433098,12426,6186,153166626,146433098,189927,87550,2446404549,2384238980,100,100,100,100,6.54,7.07,6.26,6.14
-06103,09,003,09003,1410,1168,1274274,1214033,1410,1168,1274274,1214033,894014,374249,1944105413,1903891914,100,100,100,100,0.16,0.31,0.07,0.06
-06105,09,003,09003,19392,11179,6079380,6079380,19392,11179,6079380,6079380,894014,374249,1944105413,1903891914,100,100,100,100,2.17,2.99,0.31,0.32
-06106,09,003,09003,39902,15404,11205897,10951801,39902,15404,11205897,10951801,894014,374249,1944105413,1903891914,100,100,100,100,4.46,4.12,0.58,0.58
-06107,09,003,09003,18786,7846,17438369,16897276,18786,7846,17438369,16897276,894014,374249,1944105413,1903891914,100,100,100,100,2.1,2.1,0.9,0.89
-06108,09,003,09003,24307,9845,22149025,21005202,24307,9845,22149025,21005202,894014,374249,1944105413,1903891914,100,100,100,100,2.72,2.63,1.14,1.1
-06109,09,003,09003,26668,11677,33954674,31883298,26668,11677,33954674,31883298,894014,374249,1944105413,1903891914,100,100,100,100,2.98,3.12,1.75,1.67
-06110,09,003,09003,12650,5264,8639056,8639056,12650,5264,8639056,8639056,894014,374249,1944105413,1903891914,100,100,100,100,1.41,1.41,0.44,0.45
-06111,09,003,09003,30562,13011,34034916,34034916,30562,13011,34034916,34034916,894014,374249,1944105413,1903891914,100,100,100,100,3.42,3.48,1.75,1.79
-06112,09,003,09003,22879,9057,7079029,7065436,22879,9057,7079029,7065436,894014,374249,1944105413,1903891914,100,100,100,100,2.56,2.42,0.36,0.37
-06114,09,003,09003,27449,10397,10831481,10466921,27449,10397,10831481,10466921,894014,374249,1944105413,1903891914,100,100,100,100,3.07,2.78,0.56,0.55
-06117,09,003,09003,17267,5968,26399515,25732555,17267,5968,26399515,25732555,894014,374249,1944105413,1903891914,100,100,100,100,1.93,1.59,1.36,1.35
-06118,09,003,09003,26956,11487,26426792,25665833,26956,11487,26426792,25665833,894014,374249,1944105413,1903891914,100,100,100,100,3.02,3.07,1.36,1.35
-06119,09,003,09003,15474,7067,5284985,5284985,15474,7067,5284985,5284985,894014,374249,1944105413,1903891914,100,100,100,100,1.73,1.89,0.27,0.28
-06120,09,003,09003,12887,4893,10259435,9214593,12887,4893,10259435,9214593,894014,374249,1944105413,1903891914,100,100,100,100,1.44,1.31,0.53,0.48
-06160,09,003,09003,0,0,140568,140568,0,0,140568,140568,894014,374249,1944105413,1903891914,0,0,100,100,0,0,0.01,0.01
-06226,09,013,09013,445,229,663659,655851,20114,7340,19023056,18729103,152691,57963,1080146700,1062448385,2.21,3.12,3.49,3.5,0.29,0.4,0.06,0.06
-06226,09,015,09015,19669,7111,18359397,18073252,20114,7340,19023056,18729103,118428,49073,1350522720,1328430430,97.79,96.88,96.51,96.5,16.61,14.49,1.36,1.36
-06231,09,013,09013,4083,1562,41658346,41181064,4083,1562,41658346,41181064,152691,57963,1080146700,1062448385,100,100,100,100,2.67,2.69,3.86,3.88
-06232,09,013,09013,3297,1314,40636247,39996592,3297,1314,40636247,39996592,152691,57963,1080146700,1062448385,100,100,100,100,2.16,2.27,3.76,3.76
-06234,09,015,09015,8244,3247,79673637,79282417,8244,3247,79673637,79282417,118428,49073,1350522720,1328430430,100,100,100,100,6.96,6.62,5.9,5.97
-06235,09,015,09015,2257,965,50368365,50015880,2257,965,50368365,50015880,118428,49073,1350522720,1328430430,100,100,100,100,1.91,1.97,3.73,3.77
-06237,09,013,09013,5492,2311,57446831,55858842,5492,2311,57446831,55858842,152691,57963,1080146700,1062448385,100,100,100,100,3.6,3.99,5.32,5.26
-06238,09,013,09013,12428,5096,98548687,96800018,12428,5096,98548687,96800018,152691,57963,1080146700,1062448385,100,100,100,100,8.14,8.79,9.12,9.11
-06239,09,015,09015,11183,4817,60208378,58817022,11183,4817,60208378,58817022,118428,49073,1350522720,1328430430,100,100,100,100,9.44,9.82,4.46,4.43
-06241,09,015,09015,6650,2929,73604814,71065128,6650,2929,73604814,71065128,118428,49073,1350522720,1328430430,100,100,100,100,5.62,5.97,5.45,5.35
-06242,09,013,09013,81,25,1997849,1900798,1408,635,68439386,67468035,152691,57963,1080146700,1062448385,5.75,3.94,2.92,2.82,0.05,0.04,0.18,0.18
-06242,09,015,09015,1327,610,66441537,65567237,1408,635,68439386,67468035,118428,49073,1350522720,1328430430,94.25,96.06,97.08,97.18,1.12,1.24,4.92,4.94
-06243,09,015,09015,60,27,1161723,903761,60,27,1161723,903761,118428,49073,1350522720,1328430430,100,100,100,100,0.05,0.06,0.09,0.07
-06247,09,015,09015,2841,1158,89203798,88112010,2841,1158,89203798,88112010,118428,49073,1350522720,1328430430,100,100,100,100,2.4,2.36,6.61,6.63
-06248,09,013,09013,5603,2005,54915170,54485280,5603,2005,54915170,54485280,152691,57963,1080146700,1062448385,100,100,100,100,3.67,3.46,5.08,5.13
-06249,09,011,09011,7308,3125,143099827,140113256,7308,3125,143099827,140113256,274055,120994,1998691725,1722025951,100,100,100,100,2.67,2.58,7.16,8.14
-06250,09,013,09013,4773,1985,45725503,43480833,4821,2008,46026134,43781464,152691,57963,1080146700,1062448385,99,98.85,99.35,99.31,3.13,3.42,4.23,4.09
-06250,09,015,09015,48,23,300631,300631,4821,2008,46026134,43781464,118428,49073,1350522720,1328430430,1,1.15,0.65,0.69,0.04,0.05,0.02,0.02
-06254,09,011,09011,1922,771,50681840,50476265,1922,771,50681840,50476265,274055,120994,1998691725,1722025951,100,100,100,100,0.7,0.64,2.54,2.93
-06255,09,015,09015,4744,2060,60781388,58918134,4744,2060,60781388,58918134,118428,49073,1350522720,1328430430,100,100,100,100,4.01,4.2,4.5,4.44
-06256,09,015,09015,2154,1023,20044352,19364911,2154,1023,20044352,19364911,118428,49073,1350522720,1328430430,100,100,100,100,1.82,2.08,1.48,1.46
-06259,09,015,09015,4498,1782,108335900,107684894,4498,1782,108335900,107684894,118428,49073,1350522720,1328430430,100,100,100,100,3.8,3.63,8.02,8.11
-06260,09,015,09015,9510,4271,52042529,51760025,9510,4271,52042529,51760025,118428,49073,1350522720,1328430430,100,100,100,100,8.03,8.7,3.85,3.9
-06262,09,015,09015,586,288,2549642,2467318,586,288,2549642,2467318,118428,49073,1350522720,1328430430,100,100,100,100,0.49,0.59,0.19,0.19
-06263,09,015,09015,345,150,597883,597883,345,150,597883,597883,118428,49073,1350522720,1328430430,100,100,100,100,0.29,0.31,0.04,0.05
-06264,09,015,09015,166,74,3749379,3749379,166,74,3749379,3749379,118428,49073,1350522720,1328430430,100,100,100,100,0.14,0.15,0.28,0.28
-06266,09,015,09015,495,207,2523797,2455634,495,207,2523797,2455634,118428,49073,1350522720,1328430430,100,100,100,100,0.42,0.42,0.19,0.18
-06268,09,013,09013,11481,3776,68423663,68064113,11481,3776,68423663,68064113,152691,57963,1080146700,1062448385,100,100,100,100,7.52,6.51,6.33,6.41
-06269,09,013,09013,9844,27,3339717,3311133,9844,27,3339717,3311133,152691,57963,1080146700,1062448385,100,100,100,100,6.45,0.05,0.31,0.31
-06277,09,015,09015,4140,1826,62129206,59550215,4140,1826,62129206,59550215,118428,49073,1350522720,1328430430,100,100,100,100,3.5,3.72,4.6,4.48
-06278,09,015,09015,4454,1976,104406244,102559760,4454,1976,104406244,102559760,118428,49073,1350522720,1328430430,100,100,100,100,3.76,4.03,7.73,7.72
-06279,09,013,09013,6041,2637,86812809,86230314,6041,2637,86812809,86230314,152691,57963,1080146700,1062448385,100,100,100,100,3.96,4.55,8.04,8.12
-06280,09,015,09015,3162,1322,39058548,37637994,3162,1322,39058548,37637994,118428,49073,1350522720,1328430430,100,100,100,100,2.67,2.69,2.89,2.83
-06281,09,015,09015,6930,3082,145782496,143591360,6930,3082,145782496,143591360,118428,49073,1350522720,1328430430,100,100,100,100,5.85,6.28,10.79,10.81
-06282,09,015,09015,1096,525,15750315,14849290,1096,525,15750315,14849290,118428,49073,1350522720,1328430430,100,100,100,100,0.93,1.07,1.17,1.12
-06320,09,011,09011,27617,11838,19485058,14325302,27617,11838,19485058,14325302,274055,120994,1998691725,1722025951,100,100,100,100,10.08,9.78,0.97,0.83
-06330,09,011,09011,2917,1221,35202851,33710924,3282,1367,48931350,47409306,274055,120994,1998691725,1722025951,88.88,89.32,71.94,71.11,1.06,1.01,1.76,1.96
-06330,09,015,09015,365,146,13728499,13698382,3282,1367,48931350,47409306,118428,49073,1350522720,1328430430,11.12,10.68,28.06,28.89,0.31,0.3,1.02,1.03
-06331,09,015,09015,5137,2045,104152623,103468837,5137,2045,104152623,103468837,118428,49073,1350522720,1328430430,100,100,100,100,4.34,4.17,7.71,7.79
-06332,09,015,09015,258,110,1202192,1190715,258,110,1202192,1190715,118428,49073,1350522720,1328430430,100,100,100,100,0.22,0.22,0.09,0.09
-06333,09,011,09011,6607,2505,62316681,60660513,6607,2505,62316681,60660513,274055,120994,1998691725,1722025951,100,100,100,100,2.41,2.07,3.12,3.52
-06334,09,011,09011,2592,1039,50917840,50196968,2592,1039,50917840,50196968,274055,120994,1998691725,1722025951,100,100,100,100,0.95,0.86,2.55,2.91
-06335,09,011,09011,6729,2652,31022934,28068897,6729,2652,31022934,28068897,274055,120994,1998691725,1722025951,100,100,100,100,2.46,2.19,1.55,1.63
-06336,09,011,09011,84,38,1591851,1589389,84,38,1591851,1589389,274055,120994,1998691725,1722025951,100,100,100,100,0.03,0.03,0.08,0.09
-06339,09,011,09011,8302,3319,71109265,69677180,8302,3319,71109265,69677180,274055,120994,1998691725,1722025951,100,100,100,100,3.03,2.74,3.56,4.05
-06340,09,011,09011,31242,14010,73033744,59092210,31242,14010,73033744,59092210,274055,120994,1998691725,1722025951,100,100,100,100,11.4,11.58,3.65,3.43
-06350,09,011,09011,67,27,604362,604362,67,27,604362,604362,274055,120994,1998691725,1722025951,100,100,100,100,0.02,0.02,0.03,0.04
-06351,09,011,09011,16301,6854,141854378,134706676,16301,6854,141854378,134706676,274055,120994,1998691725,1722025951,100,100,100,100,5.95,5.66,7.1,7.82
-06353,09,011,09011,162,90,972662,579882,162,90,972662,579882,274055,120994,1998691725,1722025951,100,100,100,100,0.06,0.07,0.05,0.03
-06354,09,015,09015,6141,2524,53927102,53412083,6141,2524,53927102,53412083,118428,49073,1350522720,1328430430,100,100,100,100,5.19,5.14,3.99,4.02
-06355,09,011,09011,12985,6246,42733996,36411555,12985,6246,42733996,36411555,274055,120994,1998691725,1722025951,100,100,100,100,4.74,5.16,2.14,2.11
-06357,09,011,09011,12552,5953,33924331,27389420,12552,5953,33924331,27389420,274055,120994,1998691725,1722025951,100,100,100,100,4.58,4.92,1.7,1.59
-06359,09,011,09011,5313,2314,142441087,140572851,5313,2314,142441087,140572851,274055,120994,1998691725,1722025951,100,100,100,100,1.94,1.91,7.13,8.16
-06360,09,011,09011,37541,17286,73167357,69800814,37541,17286,73167357,69800814,274055,120994,1998691725,1722025951,100,100,100,100,13.7,14.29,3.66,4.05
-06365,09,011,09011,4720,2016,82208810,79810446,4720,2016,82208810,79810446,274055,120994,1998691725,1722025951,100,100,100,100,1.72,1.67,4.11,4.63
-06370,09,011,09011,7429,2864,63628096,61077880,7429,2864,63628096,61077880,274055,120994,1998691725,1722025951,100,100,100,100,2.71,2.37,3.18,3.55
-06371,09,011,09011,9952,5964,157550977,141816504,9952,5964,157550977,141816504,274055,120994,1998691725,1722025951,100,100,100,100,3.63,4.93,7.88,8.24
-06373,09,015,09015,345,141,8813145,8767549,345,141,8813145,8767549,118428,49073,1350522720,1328430430,100,100,100,100,0.29,0.29,0.65,0.66
-06374,09,015,09015,8373,3341,67971782,66999121,8373,3341,67971782,66999121,118428,49073,1350522720,1328430430,100,100,100,100,7.07,6.81,5.03,5.04
-06375,09,011,09011,3660,1523,22822591,20632209,3660,1523,22822591,20632209,274055,120994,1998691725,1722025951,100,100,100,100,1.34,1.26,1.14,1.2
-06376,09,011,09011,57,280,259435,259435,57,280,259435,259435,274055,120994,1998691725,1722025951,100,100,100,100,0.02,0.23,0.01,0.02
-06377,09,015,09015,2962,1179,43237298,43153488,2962,1179,43237298,43153488,118428,49073,1350522720,1328430430,100,100,100,100,2.5,2.4,3.2,3.25
-06378,09,011,09011,5399,3040,60350128,55052205,5399,3040,60350128,55052205,274055,120994,1998691725,1722025951,100,100,100,100,1.97,2.51,3.02,3.2
-06379,09,011,09011,9038,4157,35408558,31102848,9038,4157,35408558,31102848,274055,120994,1998691725,1722025951,100,100,100,100,3.3,3.44,1.77,1.81
-06380,09,011,09011,2862,1336,2589789,2472526,2862,1336,2589789,2472526,274055,120994,1998691725,1722025951,100,100,100,100,1.04,1.1,0.13,0.14
-06382,09,011,09011,11947,4444,49629642,46784724,11947,4444,49629642,46784724,274055,120994,1998691725,1722025951,100,100,100,100,4.36,3.67,2.48,2.72
-06384,09,011,09011,2597,1124,100427362,98274529,2672,1148,100565685,98412852,274055,120994,1998691725,1722025951,97.19,97.91,99.86,99.86,0.95,0.93,5.02,5.71
-06384,09,015,09015,75,24,138323,138323,2672,1148,100565685,98412852,118428,49073,1350522720,1328430430,2.81,2.09,0.14,0.14,0.06,0.05,0.01,0.01
-06385,09,011,09011,15893,7122,70130109,64672309,15893,7122,70130109,64672309,274055,120994,1998691725,1722025951,100,100,100,100,5.8,5.89,3.51,3.76
-06387,09,015,09015,213,90,277797,277797,213,90,277797,277797,118428,49073,1350522720,1328430430,100,100,100,100,0.18,0.18,0.02,0.02
-06389,09,011,09011,41,19,328568,328568,41,19,328568,328568,274055,120994,1998691725,1722025951,100,100,100,100,0.01,0.02,0.02,0.02
-06390,36,103,36103,236,660,10936841,10555961,236,660,10936841,10555961,1493350,569985,6146386389,2362201496,100,100,100,100,0.02,0.12,0.18,0.45
-06401,09,009,09009,19237,8142,15992155,15556946,19237,8142,15992155,15556946,862477,362004,2232716215,1565663096,100,100,100,100,2.23,2.25,0.72,0.99
-06403,09,009,09009,6033,2504,25335096,25033667,6033,2504,25335096,25033667,862477,362004,2232716215,1565663096,100,100,100,100,0.7,0.69,1.13,1.6
-06405,09,009,09009,27860,13910,67690449,55025925,27860,13910,67690449,55025925,862477,362004,2232716215,1565663096,100,100,100,100,3.23,3.84,3.03,3.51
-06409,09,007,09007,693,362,3706428,3503015,693,362,3706428,3503015,165676,74837,1137170235,956486234,100,100,100,100,0.42,0.48,0.33,0.37
-06410,09,009,09009,29161,10388,85079362,84355611,29161,10388,85079362,84355611,862477,362004,2232716215,1565663096,100,100,100,100,3.38,2.87,3.81,5.39
-06412,09,007,09007,3994,1923,43584029,41573139,3994,1923,43584029,41573139,165676,74837,1137170235,956486234,100,100,100,100,2.41,2.57,3.83,4.35
-06413,09,007,09007,13235,6049,45974776,41948300,13235,6049,45974776,41948300,165676,74837,1137170235,956486234,100,100,100,100,7.99,8.08,4.04,4.39
-06414,09,007,09007,214,71,751064,751064,214,71,751064,751064,165676,74837,1137170235,956486234,100,100,100,100,0.13,0.09,0.07,0.08
-06415,09,007,09007,776,654,14777182,14061559,16857,6841,143517497,140936818,165676,74837,1137170235,956486234,4.6,9.56,10.3,9.98,0.47,0.87,1.3,1.47
-06415,09,011,09011,16081,6187,128740315,126875259,16857,6841,143517497,140936818,274055,120994,1998691725,1722025951,95.4,90.44,89.7,90.02,5.87,5.11,6.44,7.37
-06416,09,007,09007,14005,6001,31361956,30071926,14005,6001,31361956,30071926,165676,74837,1137170235,956486234,100,100,100,100,8.45,8.02,2.76,3.14
-06417,09,007,09007,4629,2096,36685986,34999963,4629,2096,36685986,34999963,165676,74837,1137170235,956486234,100,100,100,100,2.79,2.8,3.23,3.66
-06418,09,009,09009,12914,5855,14032498,13125510,12914,5855,14032498,13125510,862477,362004,2232716215,1565663096,100,100,100,100,1.5,1.62,0.63,0.84
-06419,09,007,09007,6525,2598,92677235,91506556,6525,2598,92677235,91506556,165676,74837,1137170235,956486234,100,100,100,100,3.94,3.47,8.15,9.57
-06420,09,007,09007,44,18,777005,777005,4182,1648,77865104,75667050,165676,74837,1137170235,956486234,1.05,1.09,1,1.03,0.03,0.02,0.07,0.08
-06420,09,011,09011,4138,1630,77088099,74890045,4182,1648,77865104,75667050,274055,120994,1998691725,1722025951,98.95,98.91,99,98.97,1.51,1.35,3.86,4.35
-06422,09,007,09007,7388,2694,61671908,61276641,7388,2694,61671908,61276641,165676,74837,1137170235,956486234,100,100,100,100,4.46,3.6,5.42,6.41
-06423,09,007,09007,5097,2365,103972954,99625558,5097,2365,103972954,99625558,165676,74837,1137170235,956486234,100,100,100,100,3.08,3.16,9.14,10.42
-06424,09,007,09007,12808,5466,109223819,104288107,12808,5466,109223819,104288107,165676,74837,1137170235,956486234,100,100,100,100,7.73,7.3,9.6,10.9
-06426,09,007,09007,3245,1774,18324172,14807363,3245,1774,18324172,14807363,165676,74837,1137170235,956486234,100,100,100,100,1.96,2.37,1.61,1.55
-06437,09,009,09009,22375,9596,128048407,122034645,22375,9596,128048407,122034645,862477,362004,2232716215,1565663096,100,100,100,100,2.59,2.65,5.74,7.79
-06438,09,007,09007,2550,1146,34197195,31816532,2550,1146,34197195,31816532,165676,74837,1137170235,956486234,100,100,100,100,1.54,1.53,3.01,3.33
-06441,09,007,09007,5438,2172,67975664,67020488,5438,2172,67975664,67020488,165676,74837,1137170235,956486234,100,100,100,100,3.28,2.9,5.98,7.01
-06442,09,007,09007,2745,1125,8675762,8631794,2745,1125,8675762,8631794,165676,74837,1137170235,956486234,100,100,100,100,1.66,1.5,0.76,0.9
-06443,09,009,09009,18269,8049,97906604,93621175,18269,8049,97906604,93621175,862477,362004,2232716215,1565663096,100,100,100,100,2.12,2.22,4.39,5.98
-06444,09,003,09003,370,134,1702317,1702317,370,134,1702317,1702317,894014,374249,1944105413,1903891914,100,100,100,100,0.04,0.04,0.09,0.09
-06447,09,003,09003,6404,2389,60923676,60479195,6404,2389,60923676,60479195,894014,374249,1944105413,1903891914,100,100,100,100,0.72,0.64,3.13,3.18
-06450,09,009,09009,36493,15440,36726565,36345690,36493,15440,36726565,36345690,862477,362004,2232716215,1565663096,100,100,100,100,4.23,4.27,1.64,2.32
-06451,09,003,09003,44,21,45947,45947,24419,10473,25883670,25324028,894014,374249,1944105413,1903891914,0.18,0.2,0.18,0.18,0,0.01,0,0
-06451,09,009,09009,24375,10452,25837723,25278081,24419,10473,25883670,25324028,862477,362004,2232716215,1565663096,99.82,99.8,99.82,99.82,2.83,2.89,1.16,1.61
-06455,09,007,09007,3148,1320,29642508,28103982,3148,1320,29642508,28103982,165676,74837,1137170235,956486234,100,100,100,100,1.9,1.76,2.61,2.94
-06456,09,007,09007,295,134,3283622,2253121,295,134,3283622,2253121,165676,74837,1137170235,956486234,100,100,100,100,0.18,0.18,0.29,0.24
-06457,09,007,09007,47648,21223,109724045,106236270,47648,21223,109724045,106236270,165676,74837,1137170235,956486234,100,100,100,100,28.76,28.36,9.65,11.11
-06460,09,009,09009,38207,17410,38908741,32513600,38207,17410,38908741,32513600,862477,362004,2232716215,1565663096,100,100,100,100,4.43,4.81,1.74,2.08
-06461,09,009,09009,14552,5664,26347415,24920446,14552,5664,26347415,24920446,862477,362004,2232716215,1565663096,100,100,100,100,1.69,1.56,1.18,1.59
-06467,09,003,09003,157,60,173168,173168,157,60,173168,173168,894014,374249,1944105413,1903891914,100,100,100,100,0.02,0.02,0.01,0.01
-06468,09,001,09001,19479,6918,68046936,67527745,19479,6918,68046936,67527745,916829,361221,2167618768,1618456437,100,100,100,100,2.12,1.92,3.14,4.17
-06469,09,007,09007,3209,1471,27022661,26051306,3209,1471,27022661,26051306,165676,74837,1137170235,956486234,100,100,100,100,1.94,1.97,2.38,2.72
-06470,09,001,09001,16003,5871,98412384,96624966,16003,5871,98412384,96624966,916829,361221,2167618768,1618456437,100,100,100,100,1.75,1.63,4.54,5.97
-06471,09,009,09009,7720,3207,23734431,23314690,7720,3207,23734431,23314690,862477,362004,2232716215,1565663096,100,100,100,100,0.9,0.89,1.06,1.49
-06472,09,009,09009,6853,2484,46865400,42331844,6853,2484,46865400,42331844,862477,362004,2232716215,1565663096,100,100,100,100,0.79,0.69,2.1,2.7
-06473,09,009,09009,24388,9586,56781027,56066604,24388,9586,56781027,56066604,862477,362004,2232716215,1565663096,100,100,100,100,2.83,2.65,2.54,3.58
-06475,09,007,09007,10242,5602,47841461,38963979,10242,5602,47841461,38963979,165676,74837,1137170235,956486234,100,100,100,100,6.18,7.49,4.21,4.07
-06477,09,009,09009,13956,5345,45115093,44498729,13956,5345,45115093,44498729,862477,362004,2232716215,1565663096,100,100,100,100,1.62,1.48,2.02,2.84
-06478,09,009,09009,12683,4746,86334184,84801350,12683,4746,86334184,84801350,862477,362004,2232716215,1565663096,100,100,100,100,1.47,1.31,3.87,5.42
-06479,09,003,09003,10431,4248,19148075,19058824,10431,4248,19148075,19058824,894014,374249,1944105413,1903891914,100,100,100,100,1.17,1.14,0.98,1
-06480,09,007,09007,9508,4077,64372632,60476846,9508,4077,64372632,60476846,165676,74837,1137170235,956486234,100,100,100,100,5.74,5.45,5.66,6.32
-06481,09,007,09007,1277,543,4698844,4655719,1277,543,4698844,4655719,165676,74837,1137170235,956486234,100,100,100,100,0.77,0.73,0.41,0.49
-06482,09,001,09001,11557,4190,54572415,52710180,11557,4190,54572415,52710180,916829,361221,2167618768,1618456437,100,100,100,100,1.26,1.16,2.52,3.26
-06483,09,009,09009,16540,6968,38790529,37600488,16540,6968,38790529,37600488,862477,362004,2232716215,1565663096,100,100,100,100,1.92,1.92,1.74,2.4
-06484,09,001,09001,39559,16146,82627335,79320157,39559,16146,82627335,79320157,916829,361221,2167618768,1618456437,100,100,100,100,4.31,4.47,3.81,4.9
-06488,09,009,09009,19904,9091,103778992,100989927,19904,9091,103778992,100989927,862477,362004,2232716215,1565663096,100,100,100,100,2.31,2.51,4.65,6.45
-06489,09,003,09003,32067,12984,73835665,72031677,32067,12984,73835665,72031677,894014,374249,1944105413,1903891914,100,100,100,100,3.59,3.47,3.8,3.78
-06492,09,009,09009,45241,18981,104617863,102426702,45241,18981,104617863,102426702,862477,362004,2232716215,1565663096,100,100,100,100,5.25,5.24,4.69,6.54
-06498,09,007,09007,6963,3953,45732554,40905418,6963,3953,45732554,40905418,165676,74837,1137170235,956486234,100,100,100,100,4.2,5.28,4.02,4.28
-06510,09,009,09009,2737,1734,622905,622905,2737,1734,622905,622905,862477,362004,2232716215,1565663096,100,100,100,100,0.32,0.48,0.03,0.04
-06511,09,009,09009,53600,23553,15674165,15355567,53600,23553,15674165,15355567,862477,362004,2232716215,1565663096,100,100,100,100,6.21,6.51,0.7,0.98
-06512,09,009,09009,29861,13136,32422309,27248328,29861,13136,32422309,27248328,862477,362004,2232716215,1565663096,100,100,100,100,3.46,3.63,1.45,1.74
-06513,09,009,09009,38978,15846,19769474,18730722,38978,15846,19769474,18730722,862477,362004,2232716215,1565663096,100,100,100,100,4.52,4.38,0.89,1.2
-06514,09,009,09009,26265,10864,29457787,29001567,26265,10864,29457787,29001567,862477,362004,2232716215,1565663096,100,100,100,100,3.05,3,1.32,1.85
-06515,09,009,09009,17141,6970,11885359,11810240,17141,6970,11885359,11810240,862477,362004,2232716215,1565663096,100,100,100,100,1.99,1.93,0.53,0.75
-06516,09,009,09009,55564,22446,31075615,27833855,55564,22446,31075615,27833855,862477,362004,2232716215,1565663096,100,100,100,100,6.44,6.2,1.39,1.78
-06517,09,009,09009,14853,6789,14313431,13173835,14853,6789,14313431,13173835,862477,362004,2232716215,1565663096,100,100,100,100,1.72,1.88,0.64,0.84
-06518,09,009,09009,19848,7465,42577205,42445316,19848,7465,42577205,42445316,862477,362004,2232716215,1565663096,100,100,100,100,2.3,2.06,1.91,2.71
-06519,09,009,09009,16428,6166,5771818,4325211,16428,6166,5771818,4325211,862477,362004,2232716215,1565663096,100,100,100,100,1.9,1.7,0.26,0.28
-06524,09,009,09009,5563,2044,55720621,54724417,5563,2044,55720621,54724417,862477,362004,2232716215,1565663096,100,100,100,100,0.65,0.56,2.5,3.5
-06525,09,009,09009,8990,3478,49694262,48722321,8990,3478,49694262,48722321,862477,362004,2232716215,1565663096,100,100,100,100,1.04,0.96,2.23,3.11
-06604,09,001,09001,30313,11945,12969889,8110911,30313,11945,12969889,8110911,916829,361221,2167618768,1618456437,100,100,100,100,3.31,3.31,0.6,0.5
-06605,09,001,09001,23397,9618,7091486,6068574,23397,9618,7091486,6068574,916829,361221,2167618768,1618456437,100,100,100,100,2.55,2.66,0.33,0.37
-06606,09,001,09001,46236,17623,14064867,13703306,46236,17623,14064867,13703306,916829,361221,2167618768,1618456437,100,100,100,100,5.04,4.88,0.65,0.85
-06607,09,001,09001,7843,3309,5030452,3028009,7843,3309,5030452,3028009,916829,361221,2167618768,1618456437,100,100,100,100,0.86,0.92,0.23,0.19
-06608,09,001,09001,13671,5104,3015655,2675495,13671,5104,3015655,2675495,916829,361221,2167618768,1618456437,100,100,100,100,1.49,1.41,0.14,0.17
-06610,09,001,09001,22735,9405,8052711,7919728,22735,9405,8052711,7919728,916829,361221,2167618768,1618456437,100,100,100,100,2.48,2.6,0.37,0.49
-06611,09,001,09001,36091,13182,62589368,61965814,36091,13182,62589368,61965814,916829,361221,2167618768,1618456437,100,100,100,100,3.94,3.65,2.89,3.83
-06612,09,001,09001,7453,2700,72701418,69483622,7453,2700,72701418,69483622,916829,361221,2167618768,1618456437,100,100,100,100,0.81,0.75,3.35,4.29
-06614,09,001,09001,32929,13418,29928951,28473756,32929,13418,29928951,28473756,916829,361221,2167618768,1618456437,100,100,100,100,3.59,3.71,1.38,1.76
-06615,09,001,09001,18453,7671,21628101,16772820,18453,7671,21628101,16772820,916829,361221,2167618768,1618456437,100,100,100,100,2.01,2.12,1,1.04
-06702,09,009,09009,3654,2046,1710478,1655860,3654,2046,1710478,1655860,862477,362004,2232716215,1565663096,100,100,100,100,0.42,0.57,0.08,0.11
-06704,09,009,09009,25139,10778,21151428,20658379,25139,10778,21151428,20658379,862477,362004,2232716215,1565663096,100,100,100,100,2.91,2.98,0.95,1.32
-06705,09,009,09009,27122,11721,14694115,14644888,27122,11721,14694115,14644888,862477,362004,2232716215,1565663096,100,100,100,100,3.14,3.24,0.66,0.94
-06706,09,009,09009,14324,5961,9934945,9614080,14324,5961,9934945,9614080,862477,362004,2232716215,1565663096,100,100,100,100,1.66,1.65,0.44,0.61
-06708,09,005,09005,76,24,8633,8633,29418,12911,24749797,24571529,189927,87550,2446404549,2384238980,0.26,0.19,0.03,0.04,0.04,0.03,0,0
-06708,09,009,09009,29342,12887,24741164,24562896,29418,12911,24749797,24571529,862477,362004,2232716215,1565663096,99.74,99.81,99.97,99.96,3.4,3.56,1.11,1.57
-06710,09,009,09009,10715,4567,2554889,2554889,10715,4567,2554889,2554889,862477,362004,2232716215,1565663096,100,100,100,100,1.24,1.26,0.11,0.16
-06712,09,009,09009,9376,3465,37440857,36814143,9376,3465,37440857,36814143,862477,362004,2232716215,1565663096,100,100,100,100,1.09,0.96,1.68,2.35
-06716,09,009,09009,16680,6276,54654178,52928424,16680,6276,54654178,52928424,862477,362004,2232716215,1565663096,100,100,100,100,1.93,1.73,2.45,3.38
-06750,09,005,09005,1446,740,19815886,19273268,1446,740,19815886,19273268,189927,87550,2446404549,2384238980,100,100,100,100,0.76,0.85,0.81,0.81
-06751,09,005,09005,3577,1564,49891040,49150811,3577,1564,49891040,49150811,189927,87550,2446404549,2384238980,100,100,100,100,1.88,1.79,2.04,2.06
-06752,09,005,09005,1735,884,45598698,43234760,1735,884,45598698,43234760,189927,87550,2446404549,2384238980,100,100,100,100,0.91,1.01,1.86,1.81
-06754,09,005,09005,1699,910,85207131,83823417,1699,910,85207131,83823417,189927,87550,2446404549,2384238980,100,100,100,100,0.89,1.04,3.48,3.52
-06755,09,005,09005,1133,470,12145160,11675454,1133,470,12145160,11675454,189927,87550,2446404549,2384238980,100,100,100,100,0.6,0.54,0.5,0.49
-06756,09,005,09005,2853,1602,96951149,93379523,2853,1602,96951149,93379523,189927,87550,2446404549,2384238980,100,100,100,100,1.5,1.83,3.96,3.92
-06757,09,005,09005,2258,1211,90707004,89081057,2258,1211,90707004,89081057,189927,87550,2446404549,2384238980,100,100,100,100,1.19,1.38,3.71,3.74
-06758,09,005,09005,354,152,6898200,6814398,354,152,6898200,6814398,189927,87550,2446404549,2384238980,100,100,100,100,0.19,0.17,0.28,0.29
-06759,09,005,09005,5720,2766,132329306,130086165,5720,2766,132329306,130086165,189927,87550,2446404549,2384238980,100,100,100,100,3.01,3.16,5.41,5.46
-06762,09,009,09009,7561,2887,46878576,45079835,7561,2887,46878576,45079835,862477,362004,2232716215,1565663096,100,100,100,100,0.88,0.8,2.1,2.88
-06763,09,005,09005,2033,1153,41483186,38049169,2033,1153,41483186,38049169,189927,87550,2446404549,2384238980,100,100,100,100,1.07,1.32,1.7,1.6
-06770,09,009,09009,31975,13107,43554709,43313788,31975,13107,43554709,43313788,862477,362004,2232716215,1565663096,100,100,100,100,3.71,3.62,1.95,2.77
-06776,09,001,09001,4,2,124074,124074,26889,11198,148386549,144011110,916829,361221,2167618768,1618456437,0.01,0.02,0.08,0.09,0,0,0.01,0.01
-06776,09,005,09005,26885,11196,148262475,143887036,26889,11198,148386549,144011110,189927,87550,2446404549,2384238980,99.99,99.98,99.92,99.91,14.16,12.79,6.06,6.03
-06777,09,005,09005,1733,1091,43899441,41187079,1733,1091,43899441,41187079,189927,87550,2446404549,2384238980,100,100,100,100,0.91,1.25,1.79,1.73
-06778,09,005,09005,1378,547,18478022,18386793,1378,547,18478022,18386793,189927,87550,2446404549,2384238980,100,100,100,100,0.73,0.62,0.76,0.77
-06779,09,005,09005,8324,3531,8394815,8276728,8324,3531,8394815,8276728,189927,87550,2446404549,2384238980,100,100,100,100,4.38,4.03,0.34,0.35
-06782,09,005,09005,2376,940,20092906,19499383,2376,940,20092906,19499383,189927,87550,2446404549,2384238980,100,100,100,100,1.25,1.07,0.82,0.82
-06783,09,005,09005,2228,1152,67091321,66947807,2228,1152,67091321,66947807,189927,87550,2446404549,2384238980,100,100,100,100,1.17,1.32,2.74,2.81
-06784,09,001,09001,3577,1829,60490904,56575378,3689,1884,64726365,60047482,916829,361221,2167618768,1618456437,96.96,97.08,93.46,94.22,0.39,0.51,2.79,3.5
-06784,09,005,09005,112,55,4235461,3472104,3689,1884,64726365,60047482,189927,87550,2446404549,2384238980,3.04,2.92,6.54,5.78,0.06,0.06,0.17,0.15
-06785,09,005,09005,686,434,35998149,34878327,686,434,35998149,34878327,189927,87550,2446404549,2384238980,100,100,100,100,0.36,0.5,1.47,1.46
-06786,09,005,09005,9867,4169,37757572,37201523,9867,4169,37757572,37201523,189927,87550,2446404549,2384238980,100,100,100,100,5.2,4.76,1.54,1.56
-06787,09,005,09005,7975,3309,32236733,31623842,7975,3309,32236733,31623842,189927,87550,2446404549,2384238980,100,100,100,100,4.2,3.78,1.32,1.33
-06790,09,005,09005,36482,16819,109177465,107672549,36482,16819,109177465,107672549,189927,87550,2446404549,2384238980,100,100,100,100,19.21,19.21,4.46,4.52
-06791,09,005,09005,5666,2295,80823470,79921446,5666,2295,80823470,79921446,189927,87550,2446404549,2384238980,100,100,100,100,2.98,2.62,3.3,3.35
-06793,09,005,09005,1140,701,36760827,36639484,1140,701,36760827,36639484,189927,87550,2446404549,2384238980,100,100,100,100,0.6,0.8,1.5,1.54
-06794,09,005,09005,1065,634,35185807,35185807,1065,634,35185807,35185807,189927,87550,2446404549,2384238980,100,100,100,100,0.56,0.72,1.44,1.48
-06795,09,005,09005,14144,5552,69063964,67869352,14144,5552,69063964,67869352,189927,87550,2446404549,2384238980,100,100,100,100,7.45,6.34,2.82,2.85
-06796,09,005,09005,1009,749,96505947,96213920,1009,749,96505947,96213920,189927,87550,2446404549,2384238980,100,100,100,100,0.53,0.86,3.94,4.04
-06798,09,005,09005,9984,4569,94909229,94276358,9984,4569,94909229,94276358,189927,87550,2446404549,2384238980,100,100,100,100,5.26,5.22,3.88,3.95
-06801,09,001,09001,18581,7306,43833920,43733115,18581,7306,43833920,43733115,916829,361221,2167618768,1618456437,100,100,100,100,2.03,2.02,2.02,2.7
-06804,09,001,09001,16466,6569,52777038,51233125,16466,6569,52777038,51233125,916829,361221,2167618768,1618456437,100,100,100,100,1.8,1.82,2.43,3.17
-06807,09,001,09001,7150,2866,8478389,8132945,7150,2866,8478389,8132945,916829,361221,2167618768,1618456437,100,100,100,100,0.78,0.79,0.39,0.5
-06810,09,001,09001,49482,19188,54282230,53579379,49482,19188,54282230,53579379,916829,361221,2167618768,1618456437,100,100,100,100,5.4,5.31,2.5,3.31
-06811,09,001,09001,31400,11963,60033052,54906534,31400,11963,60033052,54906534,916829,361221,2167618768,1618456437,100,100,100,100,3.42,3.31,2.77,3.39
-06812,09,001,09001,13881,5593,65149070,52944492,13881,5593,65149070,52944492,916829,361221,2167618768,1618456437,100,100,100,100,1.51,1.55,3.01,3.27
-06820,09,001,09001,20732,7074,38775934,32777323,20732,7074,38775934,32777323,916829,361221,2167618768,1618456437,100,100,100,100,2.26,1.96,1.79,2.03
-06824,09,001,09001,33900,12108,55493745,52148067,33900,12108,55493745,52148067,916829,361221,2167618768,1618456437,100,100,100,100,3.7,3.35,2.56,3.22
-06825,09,001,09001,21123,7780,17518530,17422786,21123,7780,17518530,17422786,916829,361221,2167618768,1618456437,100,100,100,100,2.3,2.15,0.81,1.08
-06830,09,001,09001,24027,10997,47606167,35062121,24027,10997,47606167,35062121,916829,361221,2167618768,1618456437,100,100,100,100,2.62,3.04,2.2,2.17
-06831,09,001,09001,14792,6217,72648659,71259445,14792,6217,72648659,71259445,916829,361221,2167618768,1618456437,100,100,100,100,1.61,1.72,3.35,4.4
-06840,09,001,09001,19738,7551,58335709,57484075,19738,7551,58335709,57484075,916829,361221,2167618768,1618456437,100,100,100,100,2.15,2.09,2.69,3.55
-06850,09,001,09001,18078,7537,17578790,17353042,18078,7537,17578790,17353042,916829,361221,2167618768,1618456437,100,100,100,100,1.97,2.09,0.81,1.07
-06851,09,001,09001,26703,11198,19920305,19762489,26703,11198,19920305,19762489,916829,361221,2167618768,1618456437,100,100,100,100,2.91,3.1,0.92,1.22
-06853,09,001,09001,3646,1554,4159047,3101447,3646,1554,4159047,3101447,916829,361221,2167618768,1618456437,100,100,100,100,0.4,0.43,0.19,0.19
-06854,09,001,09001,29100,11566,19066877,12646839,29100,11566,19066877,12646839,916829,361221,2167618768,1618456437,100,100,100,100,3.17,3.2,0.88,0.78
-06855,09,001,09001,7892,3453,13051724,6160437,7892,3453,13051724,6160437,916829,361221,2167618768,1618456437,100,100,100,100,0.86,0.96,0.6,0.38
-06856,09,001,09001,3,0,9568,9568,3,0,9568,9568,916829,361221,2167618768,1618456437,100,0,100,100,0,0,0,0
-06870,09,001,09001,7316,2802,9784129,5918751,7316,2802,9784129,5918751,916829,361221,2167618768,1618456437,100,100,100,100,0.8,0.78,0.45,0.37
-06877,09,001,09001,24677,9435,90923567,89603102,24677,9435,90923567,89603102,916829,361221,2167618768,1618456437,100,100,100,100,2.69,2.61,4.19,5.54
-06878,09,001,09001,8043,2818,8299215,6202728,8043,2818,8299215,6202728,916829,361221,2167618768,1618456437,100,100,100,100,0.88,0.78,0.38,0.38
-06880,09,001,09001,26647,10535,67345304,52109815,26647,10535,67345304,52109815,916829,361221,2167618768,1618456437,100,100,100,100,2.91,2.92,3.11,3.22
-06883,09,001,09001,10179,3674,53545140,51278336,10179,3674,53545140,51278336,916829,361221,2167618768,1618456437,100,100,100,100,1.11,1.02,2.47,3.17
-06890,09,001,09001,4306,1731,7881265,7495638,4306,1731,7881265,7495638,916829,361221,2167618768,1618456437,100,100,100,100,0.47,0.48,0.36,0.46
-06896,09,001,09001,9110,3793,82795491,81363238,9110,3793,82795491,81363238,916829,361221,2167618768,1618456437,100,100,100,100,0.99,1.05,3.82,5.03
-06897,09,001,09001,18071,6478,70711217,69435124,18071,6478,70711217,69435124,916829,361221,2167618768,1618456437,100,100,100,100,1.97,1.79,3.26,4.29
-06901,09,001,09001,6828,4396,1204494,1204494,6828,4396,1204494,1204494,916829,361221,2167618768,1618456437,100,100,100,100,0.74,1.22,0.06,0.07
-06902,09,001,09001,63406,25273,32491879,26362119,63406,25273,32491879,26362119,916829,361221,2167618768,1618456437,100,100,100,100,6.92,7,1.5,1.63
-06903,09,001,09001,14499,5275,47295471,45312156,14499,5275,47295471,45312156,916829,361221,2167618768,1618456437,100,100,100,100,1.58,1.46,2.18,2.8
-06905,09,001,09001,19649,8097,12890102,12864711,19649,8097,12890102,12864711,916829,361221,2167618768,1618456437,100,100,100,100,2.14,2.24,0.59,0.79
-06906,09,001,09001,9088,3740,3131658,3131658,9088,3740,3131658,3131658,916829,361221,2167618768,1618456437,100,100,100,100,0.99,1.04,0.14,0.19
-06907,09,001,09001,9016,3723,5414353,5372803,9016,3723,5414353,5372803,916829,361221,2167618768,1618456437,100,100,100,100,0.98,1.03,0.25,0.33
-07001,34,023,34023,16305,5076,9845941,9794911,16305,5076,9845941,9794911,809858,294800,836117569,800083087,100,100,100,100,2.01,1.72,1.18,1.22
-07002,34,017,34017,63031,27802,17209571,15113912,63031,27802,17209571,15113912,634266,270335,161389757,119634159,100,100,100,100,9.94,10.28,10.66,12.63
-07003,34,013,34013,47312,19468,13758417,13695411,47312,19468,13758417,13695411,783969,312954,335742318,326888224,100,100,100,100,6.03,6.22,4.1,4.19
-07004,34,013,34013,7440,2715,27065971,26640205,7440,2715,27065971,26640205,783969,312954,335742318,326888224,100,100,100,100,0.95,0.87,8.06,8.15
-07005,34,027,34027,15269,5989,53064093,48732295,15269,5989,53064093,48732295,492276,189842,1247402604,1191852367,100,100,100,100,3.1,3.15,4.25,4.09
-07006,34,013,34013,24812,9664,24003595,23950198,24812,9664,24003595,23950198,783969,312954,335742318,326888224,100,100,100,100,3.16,3.09,7.15,7.33
-07008,34,023,34023,22844,8148,13033948,11525414,22844,8148,13033948,11525414,809858,294800,836117569,800083087,100,100,100,100,2.82,2.76,1.56,1.44
-07009,34,013,34013,12411,4661,11339579,11013616,12411,4661,11339579,11013616,783969,312954,335742318,326888224,100,100,100,100,1.58,1.49,3.38,3.37
-07010,34,003,34003,23594,10665,2493329,2493329,23594,10665,2493329,2493329,905116,352388,638875431,603490137,100,100,100,100,2.61,3.03,0.39,0.41
-07011,34,031,34031,39710,13586,8837395,8613470,39710,13586,8837395,8613470,501226,175966,510500211,478093122,100,100,100,100,7.92,7.72,1.73,1.8
-07012,34,031,34031,11703,5071,5431783,5430085,11703,5071,5431783,5430085,501226,175966,510500211,478093122,100,100,100,100,2.33,2.88,1.06,1.14
-07013,34,031,34031,27051,11099,11289535,11276297,27051,11099,11289535,11276297,501226,175966,510500211,478093122,100,100,100,100,5.4,6.31,2.21,2.36
-07014,34,031,34031,5184,1983,3688240,3572230,5184,1983,3688240,3572230,501226,175966,510500211,478093122,100,100,100,100,1.03,1.13,0.72,0.75
-07016,34,039,34039,22625,8816,12608928,12508666,22625,8816,12608928,12508666,536499,199489,272988244,266393116,100,100,100,100,4.22,4.42,4.62,4.7
-07017,34,013,34013,35945,15884,5815629,5815629,35945,15884,5815629,5815629,783969,312954,335742318,326888224,100,100,100,100,4.59,5.08,1.73,1.78
-07018,34,013,34013,28322,12909,4382846,4382846,28322,12909,4382846,4382846,783969,312954,335742318,326888224,100,100,100,100,3.61,4.12,1.31,1.34
-07020,34,003,34003,11513,6282,6271822,2421904,11513,6282,6271822,2421904,905116,352388,638875431,603490137,100,100,100,100,1.27,1.78,0.98,0.4
-07021,34,013,34013,2091,755,3659533,3644244,2091,755,3659533,3644244,783969,312954,335742318,326888224,100,100,100,100,0.27,0.24,1.09,1.11
-07022,34,003,34003,13835,5150,2184828,2182004,13835,5150,2184828,2182004,905116,352388,638875431,603490137,100,100,100,100,1.53,1.46,0.34,0.36
-07023,34,039,34039,7318,2686,3475081,3475081,7318,2686,3475081,3475081,536499,199489,272988244,266393116,100,100,100,100,1.36,1.35,1.27,1.3
-07024,34,003,34003,35353,17815,7501306,6603744,35353,17815,7501306,6603744,905116,352388,638875431,603490137,100,100,100,100,3.91,5.06,1.17,1.09
-07026,34,003,34003,30555,11814,5801740,5637477,30555,11814,5801740,5637477,905116,352388,638875431,603490137,100,100,100,100,3.38,3.35,0.91,0.93
-07027,34,039,34039,4226,1870,1720229,1720229,4226,1870,1720229,1720229,536499,199489,272988244,266393116,100,100,100,100,0.79,0.94,0.63,0.65
-07028,34,013,34013,7618,2575,3363784,3351653,7618,2575,3363784,3351653,783969,312954,335742318,326888224,100,100,100,100,0.97,0.82,1,1.03
-07029,34,017,34017,16026,6022,3735268,3381221,16026,6022,3735268,3381221,634266,270335,161389757,119634159,100,100,100,100,2.53,2.23,2.31,2.83
-07030,34,017,34017,50005,26855,3272739,3272739,50005,26855,3272739,3272739,634266,270335,161389757,119634159,100,100,100,100,7.88,9.93,2.03,2.74
-07031,34,003,34003,15392,6573,6792722,6632772,15392,6573,6792722,6632772,905116,352388,638875431,603490137,100,100,100,100,1.7,1.87,1.06,1.1
-07032,34,017,34017,40684,14180,25732003,22726429,40684,14180,25732003,22726429,634266,270335,161389757,119634159,100,100,100,100,6.41,5.25,15.94,19
-07033,34,039,34039,7914,2924,5598112,5587721,7914,2924,5598112,5587721,536499,199489,272988244,266393116,100,100,100,100,1.48,1.47,2.05,2.1
-07034,34,027,34027,9360,3768,3305666,3239344,9360,3768,3305666,3239344,492276,189842,1247402604,1191852367,100,100,100,100,1.9,1.98,0.27,0.27
-07035,34,027,34027,10607,4176,18768370,17395183,10607,4176,18768370,17395183,492276,189842,1247402604,1191852367,100,100,100,100,2.15,2.2,1.5,1.46
-07036,34,039,34039,41970,16586,30003059,28106043,41970,16586,30003059,28106043,536499,199489,272988244,266393116,100,100,100,100,7.82,8.31,10.99,10.55
-07039,34,013,34013,29358,10280,36560564,35748751,29358,10280,36560564,35748751,783969,312954,335742318,326888224,100,100,100,100,3.74,3.28,10.89,10.94
-07040,34,013,34013,23876,8614,9030860,9025256,23876,8614,9030860,9025256,783969,312954,335742318,326888224,100,100,100,100,3.05,2.75,2.69,2.76
-07041,34,013,34013,6868,2772,3419378,3414087,6868,2772,3419378,3414087,783969,312954,335742318,326888224,100,100,100,100,0.88,0.89,1.02,1.04
-07042,34,013,34013,25599,11372,9794687,9778598,25599,11372,9794687,9778598,783969,312954,335742318,326888224,100,100,100,100,3.27,3.63,2.92,2.99
-07043,34,013,34013,11730,4343,6457084,6455094,12138,4517,6731674,6729684,783969,312954,335742318,326888224,96.64,96.15,95.92,95.92,1.5,1.39,1.92,1.97
-07043,34,031,34031,408,174,274590,274590,12138,4517,6731674,6729684,501226,175966,510500211,478093122,3.36,3.85,4.08,4.08,0.08,0.1,0.05,0.06
-07044,34,013,34013,13584,5688,7248281,7193907,13584,5688,7248281,7193907,783969,312954,335742318,326888224,100,100,100,100,1.73,1.82,2.16,2.2
-07045,34,027,34027,10127,3807,19093481,18261568,10127,3807,19093481,18261568,492276,189842,1247402604,1191852367,100,100,100,100,2.06,2.01,1.53,1.53
-07046,34,027,34027,4194,1375,7511676,6814040,4194,1375,7511676,6814040,492276,189842,1247402604,1191852367,100,100,100,100,0.85,0.72,0.6,0.57
-07047,34,017,34017,60773,23912,13743953,13296275,60773,23912,13743953,13296275,634266,270335,161389757,119634159,100,100,100,100,9.58,8.85,8.52,11.11
-07050,34,013,34013,30074,12204,5689540,5684386,30074,12204,5689540,5684386,783969,312954,335742318,326888224,100,100,100,100,3.84,3.9,1.69,1.74
-07052,34,013,34013,46182,17605,31547920,31223591,46182,17605,31547920,31223591,783969,312954,335742318,326888224,100,100,100,100,5.89,5.63,9.4,9.55
-07054,34,027,34027,29305,11742,37261065,35543799,29305,11742,37261065,35543799,492276,189842,1247402604,1191852367,100,100,100,100,5.95,6.19,2.99,2.98
-07055,34,031,34031,69816,20449,8387215,8134406,69816,20449,8387215,8134406,501226,175966,510500211,478093122,100,100,100,100,13.93,11.62,1.64,1.7
-07057,34,003,34003,11335,4946,2678684,2546494,11335,4946,2678684,2546494,905116,352388,638875431,603490137,100,100,100,100,1.25,1.4,0.42,0.42
-07058,34,027,34027,5372,1996,7879022,7590037,5372,1996,7879022,7590037,492276,189842,1247402604,1191852367,100,100,100,100,1.09,1.05,0.63,0.64
-07059,34,035,34035,15311,5258,50877361,50678074,15311,5258,50877361,50678074,323444,123127,789576096,781692692,100,100,100,100,4.73,4.27,6.44,6.48
-07060,34,035,34035,17408,6305,5025287,5001753,44998,15499,13172567,13132829,323444,123127,789576096,781692692,38.69,40.68,38.15,38.09,5.38,5.12,0.64,0.64
-07060,34,039,34039,27590,9194,8147280,8131076,44998,15499,13172567,13132829,536499,199489,272988244,266393116,61.31,59.32,61.85,61.91,5.14,4.61,2.98,3.05
-07062,34,035,34035,1027,361,468335,468335,12949,4701,4806821,4797686,323444,123127,789576096,781692692,7.93,7.68,9.74,9.76,0.32,0.29,0.06,0.06
-07062,34,039,34039,11922,4340,4338486,4329351,12949,4701,4806821,4797686,536499,199489,272988244,266393116,92.07,92.32,90.26,90.24,2.22,2.18,1.59,1.63
-07063,34,035,34035,3343,1108,1753908,1744958,13538,4157,4727088,4716093,323444,123127,789576096,781692692,24.69,26.65,37.1,37,1.03,0.9,0.22,0.22
-07063,34,039,34039,10195,3049,2973180,2971135,13538,4157,4727088,4716093,536499,199489,272988244,266393116,75.31,73.35,62.9,63,1.9,1.53,1.09,1.12
-07064,34,023,34023,3723,1338,3790023,3570249,3723,1338,3790023,3570249,809858,294800,836117569,800083087,100,100,100,100,0.46,0.45,0.45,0.45
-07065,34,039,34039,27346,11300,10433594,10093781,27346,11300,10433594,10093781,536499,199489,272988244,266393116,100,100,100,100,5.1,5.66,3.82,3.79
-07066,34,039,34039,14756,5751,11640195,11140723,14756,5751,11640195,11140723,536499,199489,272988244,266393116,100,100,100,100,2.75,2.88,4.26,4.18
-07067,34,023,34023,18036,6398,10358200,10347270,18036,6398,10358200,10347270,809858,294800,836117569,800083087,100,100,100,100,2.23,2.17,1.24,1.29
-07068,34,013,34013,5819,2432,9218947,9165263,5819,2432,9218947,9165263,783969,312954,335742318,326888224,100,100,100,100,0.74,0.78,2.75,2.8
-07069,34,035,34035,6157,2378,16473973,16402236,6157,2378,16473973,16402236,323444,123127,789576096,781692692,100,100,100,100,1.9,1.93,2.09,2.1
-07070,34,003,34003,18061,7278,7618119,7266584,18061,7278,7618119,7266584,905116,352388,638875431,603490137,100,100,100,100,2,2.07,1.19,1.2
-07071,34,003,34003,20554,8787,12675819,11805644,20554,8787,12675819,11805644,905116,352388,638875431,603490137,100,100,100,100,2.27,2.49,1.98,1.96
-07072,34,003,34003,6127,2495,10989250,10357741,6127,2495,10989250,10357741,905116,352388,638875431,603490137,100,100,100,100,0.68,0.71,1.72,1.72
-07073,34,003,34003,8913,4018,10494443,9605612,8913,4018,10494443,9605612,905116,352388,638875431,603490137,100,100,100,100,0.98,1.14,1.64,1.59
-07074,34,003,34003,2708,1053,3276839,3249396,2708,1053,3276839,3249396,905116,352388,638875431,603490137,100,100,100,100,0.3,0.3,0.51,0.54
-07075,34,003,34003,7626,3051,2841547,2841244,7626,3051,2841547,2841244,905116,352388,638875431,603490137,100,100,100,100,0.84,0.87,0.44,0.47
-07076,34,039,34039,23480,8876,23386994,23305093,23480,8876,23386994,23305093,536499,199489,272988244,266393116,100,100,100,100,4.38,4.45,8.57,8.75
-07077,34,023,34023,2766,1048,5609949,4014223,2766,1048,5609949,4014223,809858,294800,836117569,800083087,100,100,100,100,0.34,0.36,0.67,0.5
-07078,34,013,34013,13250,4325,18151258,16756280,13250,4325,18151258,16756280,783969,312954,335742318,326888224,100,100,100,100,1.69,1.38,5.41,5.13
-07079,34,013,34013,16316,5846,7410061,7403984,16316,5846,7410061,7403984,783969,312954,335742318,326888224,100,100,100,100,2.08,1.87,2.21,2.26
-07080,34,023,34023,23377,8090,21582332,21495495,23377,8090,21582332,21495495,809858,294800,836117569,800083087,100,100,100,100,2.89,2.74,2.58,2.69
-07081,34,039,34039,15808,6732,13443890,13394699,15808,6732,13443890,13394699,536499,199489,272988244,266393116,100,100,100,100,2.95,3.37,4.92,5.03
-07082,34,027,34027,5384,1803,15832533,15643892,5384,1803,15832533,15643892,492276,189842,1247402604,1191852367,100,100,100,100,1.09,0.95,1.27,1.31
-07083,34,013,34013,9,4,3483,3483,53053,18938,22454060,22399550,783969,312954,335742318,326888224,0.02,0.02,0.02,0.02,0,0,0,0
-07083,34,039,34039,53044,18934,22450577,22396067,53053,18938,22454060,22399550,536499,199489,272988244,266393116,99.98,99.98,99.98,99.98,9.89,9.49,8.22,8.41
-07086,34,017,34017,12554,6213,2156816,2092654,12554,6213,2156816,2092654,634266,270335,161389757,119634159,100,100,100,100,1.98,2.3,1.34,1.75
-07087,34,017,34017,66515,24962,3336518,3336518,66515,24962,3336518,3336518,634266,270335,161389757,119634159,100,100,100,100,10.49,9.23,2.07,2.79
-07088,34,039,34039,3606,1321,1100952,1100952,3606,1321,1100952,1100952,536499,199489,272988244,266393116,100,100,100,100,0.67,0.66,0.4,0.41
-07090,34,039,34039,30338,10961,17476918,17414692,30338,10961,17476918,17414692,536499,199489,272988244,266393116,100,100,100,100,5.65,5.49,6.4,6.54
-07092,34,039,34039,6730,2576,10528877,10421643,6730,2576,10528877,10421643,536499,199489,272988244,266393116,100,100,100,100,1.25,1.29,3.86,3.91
-07093,34,017,34017,60884,24857,3116005,3116005,60884,24857,3116005,3116005,634266,270335,161389757,119634159,100,100,100,100,9.6,9.19,1.93,2.6
-07094,34,017,34017,16264,6846,17090473,15078302,16264,6846,17090473,15078302,634266,270335,161389757,119634159,100,100,100,100,2.56,2.53,10.59,12.6
-07095,34,023,34023,19844,7988,10730144,10681463,19844,7988,10730144,10681463,809858,294800,836117569,800083087,100,100,100,100,2.45,2.71,1.28,1.34
-07102,34,013,34013,12579,5271,3096749,3041645,12579,5271,3096749,3041645,783969,312954,335742318,326888224,100,100,100,100,1.6,1.68,0.92,0.93
-07103,34,013,34013,32698,12769,5511772,5511772,32698,12769,5511772,5511772,783969,312954,335742318,326888224,100,100,100,100,4.17,4.08,1.64,1.69
-07104,34,013,34013,50478,19373,6871681,6563525,50478,19373,6871681,6563525,783969,312954,335742318,326888224,100,100,100,100,6.44,6.19,2.05,2.01
-07105,34,013,34013,46983,17401,13574496,12014618,46983,17401,13574496,12014618,783969,312954,335742318,326888224,100,100,100,100,5.99,5.56,4.04,3.68
-07106,34,013,34013,31298,13375,3679291,3679291,31298,13375,3679291,3679291,783969,312954,335742318,326888224,100,100,100,100,3.99,4.27,1.1,1.13
-07107,34,013,34013,37650,14692,4312246,4289946,37650,14692,4312246,4289946,783969,312954,335742318,326888224,100,100,100,100,4.8,4.69,1.28,1.31
-07108,34,013,34013,24386,10341,3550737,3550737,24386,10341,3550737,3550737,783969,312954,335742318,326888224,100,100,100,100,3.11,3.3,1.06,1.09
-07109,34,013,34013,35897,14267,8818853,8665290,35897,14267,8818853,8665290,783969,312954,335742318,326888224,100,100,100,100,4.58,4.56,2.63,2.65
-07110,34,013,34013,28277,11745,8856590,8742958,28351,11771,8881913,8768281,783969,312954,335742318,326888224,99.74,99.78,99.71,99.71,3.61,3.75,2.64,2.67
-07110,34,031,34031,74,26,25323,25323,28351,11771,8881913,8768281,501226,175966,510500211,478093122,0.26,0.22,0.29,0.29,0.01,0.01,0,0.01
-07111,34,013,34013,53942,23203,7590181,7584764,53942,23203,7590181,7584764,783969,312954,335742318,326888224,100,100,100,100,6.88,7.41,2.26,2.32
-07112,34,013,34013,26417,11644,4720720,4720720,26417,11644,4720720,4720720,783969,312954,335742318,326888224,100,100,100,100,3.37,3.72,1.41,1.44
-07114,34,013,34013,14748,4756,22315653,19288215,14748,4756,22315653,19288215,783969,312954,335742318,326888224,100,100,100,100,1.88,1.52,6.65,5.9
-07201,34,039,34039,26263,9337,18187221,17211051,26263,9337,18187221,17211051,536499,199489,272988244,266393116,100,100,100,100,4.9,4.68,6.66,6.46
-07202,34,039,34039,40849,14928,6279833,6007084,40849,14928,6279833,6007084,536499,199489,272988244,266393116,100,100,100,100,7.61,7.48,2.3,2.25
-07203,34,039,34039,21085,7939,6898631,6866107,21085,7939,6898631,6866107,536499,199489,272988244,266393116,100,100,100,100,3.93,3.98,2.53,2.58
-07204,34,039,34039,13297,5231,3190959,3190959,13297,5231,3190959,3190959,536499,199489,272988244,266393116,100,100,100,100,2.48,2.62,1.17,1.2
-07205,34,039,34039,21398,7531,7146111,7118385,21398,7531,7146111,7118385,536499,199489,272988244,266393116,100,100,100,100,3.99,3.78,2.62,2.67
-07206,34,039,34039,26636,9048,5841461,4134749,26636,9048,5841461,4134749,536499,199489,272988244,266393116,100,100,100,100,4.96,4.54,2.14,1.55
-07208,34,039,34039,31219,12203,4565114,4554324,31219,12203,4565114,4554324,536499,199489,272988244,266393116,100,100,100,100,5.82,6.12,1.67,1.71
-07302,34,017,34017,36352,20752,3978853,3810135,36352,20752,3978853,3810135,634266,270335,161389757,119634159,100,100,100,100,5.73,7.68,2.47,3.18
-07304,34,017,34017,41233,16954,4898141,4856104,41233,16954,4898141,4856104,634266,270335,161389757,119634159,100,100,100,100,6.5,6.27,3.03,4.06
-07305,34,017,34017,60104,24433,15881914,15035949,60104,24433,15881914,15035949,634266,270335,161389757,119634159,100,100,100,100,9.48,9.04,9.84,12.57
-07306,34,017,34017,52669,22373,7542897,7048828,52669,22373,7542897,7048828,634266,270335,161389757,119634159,100,100,100,100,8.3,8.28,4.67,5.89
-07307,34,017,34017,43812,17473,5884702,5801303,43812,17473,5884702,5801303,634266,270335,161389757,119634159,100,100,100,100,6.91,6.46,3.65,4.85
-07310,34,017,34017,12838,6379,1679619,1592482,12838,6379,1679619,1592482,634266,270335,161389757,119634159,100,100,100,100,2.02,2.36,1.04,1.33
-07311,34,017,34017,522,322,75303,75303,522,322,75303,75303,634266,270335,161389757,119634159,100,100,100,100,0.08,0.12,0.05,0.06
-07401,34,003,34003,6494,2385,8062412,8006483,6494,2385,8062412,8006483,905116,352388,638875431,603490137,100,100,100,100,0.72,0.68,1.26,1.33
-07403,34,031,34031,7603,3063,17561939,16453615,7603,3063,17561939,16453615,501226,175966,510500211,478093122,100,100,100,100,1.52,1.74,3.44,3.44
-07405,34,027,34027,17701,6738,54231938,50988924,17701,6738,54231938,50988924,492276,189842,1247402604,1191852367,100,100,100,100,3.6,3.55,4.35,4.28
-07407,34,003,34003,19403,7385,7142907,6857840,19403,7385,7142907,6857840,905116,352388,638875431,603490137,100,100,100,100,2.14,2.1,1.12,1.14
-07410,34,003,34003,32457,12266,13472047,13310754,32457,12266,13472047,13310754,905116,352388,638875431,603490137,100,100,100,100,3.59,3.48,2.11,2.21
-07416,34,037,34037,5781,2522,24985753,24283452,5781,2522,24985753,24283452,149265,62057,1387566758,1344239274,100,100,100,100,3.87,4.06,1.8,1.81
-07417,34,003,34003,10580,3689,25499156,24284689,10580,3689,25499156,24284689,905116,352388,638875431,603490137,100,100,100,100,1.17,1.05,3.99,4.02
-07418,34,037,34037,2249,770,12265891,12130084,2249,770,12265891,12130084,149265,62057,1387566758,1344239274,100,100,100,100,1.51,1.24,0.88,0.9
-07419,34,037,34037,9160,4133,40900451,40500769,9160,4133,40900451,40500769,149265,62057,1387566758,1344239274,100,100,100,100,6.14,6.66,2.95,3.01
-07420,34,031,34031,4942,1649,7984604,6449158,4942,1649,7984604,6449158,501226,175966,510500211,478093122,100,100,100,100,0.99,0.94,1.56,1.35
-07421,34,031,34031,6944,3020,57305164,51974138,7439,3204,72830795,67433981,501226,175966,510500211,478093122,93.35,94.26,78.68,77.07,1.39,1.72,11.23,10.87
-07421,34,037,34037,495,184,15525631,15459843,7439,3204,72830795,67433981,149265,62057,1387566758,1344239274,6.65,5.74,21.32,22.93,0.33,0.3,1.12,1.15
-07422,34,037,34037,6616,2937,34746514,31762600,6616,2937,34746514,31762600,149265,62057,1387566758,1344239274,100,100,100,100,4.43,4.73,2.5,2.36
-07423,34,003,34003,4078,1462,4530163,4493814,4078,1462,4530163,4493814,905116,352388,638875431,603490137,100,100,100,100,0.45,0.41,0.71,0.74
-07424,34,031,34031,26222,9750,15330599,14746042,26222,9750,15330599,14746042,501226,175966,510500211,478093122,100,100,100,100,5.23,5.54,3,3.08
-07430,34,003,34003,25890,9868,67786556,66496320,25890,9868,67786556,66496320,905116,352388,638875431,603490137,100,100,100,100,2.86,2.8,10.61,11.02
-07432,34,003,34003,7128,2861,4049109,4028084,7128,2861,4049109,4028084,905116,352388,638875431,603490137,100,100,100,100,0.79,0.81,0.63,0.67
-07435,34,027,34027,1042,654,20935834,17423714,2405,1170,44144326,38702857,492276,189842,1247402604,1191852367,43.33,55.9,47.43,45.02,0.21,0.34,1.68,1.46
-07435,34,031,34031,1363,516,23208492,21279143,2405,1170,44144326,38702857,501226,175966,510500211,478093122,56.67,44.1,52.57,54.98,0.27,0.29,4.55,4.45
-07436,34,003,34003,12754,4470,22605217,21896569,12754,4470,22605217,21896569,905116,352388,638875431,603490137,100,100,100,100,1.41,1.27,3.54,3.63
-07438,34,027,34027,10250,3932,63744591,59757902,11559,4386,75920670,71064455,492276,189842,1247402604,1191852367,88.68,89.65,83.96,84.09,2.08,2.07,5.11,5.01
-07438,34,031,34031,1309,454,12176079,11306553,11559,4386,75920670,71064455,501226,175966,510500211,478093122,11.32,10.35,16.04,15.91,0.26,0.26,2.39,2.36
-07439,34,037,34037,2456,922,6407156,6289402,2456,922,6407156,6289402,149265,62057,1387566758,1344239274,100,100,100,100,1.65,1.49,0.46,0.47
-07440,34,027,34027,4494,1677,4562221,4013388,4494,1677,4562221,4013388,492276,189842,1247402604,1191852367,100,100,100,100,0.91,0.88,0.37,0.34
-07442,34,031,34031,11097,4341,8266575,7545280,11097,4341,8266575,7545280,501226,175966,510500211,478093122,100,100,100,100,2.21,2.47,1.62,1.58
-07444,34,027,34027,11046,5117,14012523,13465111,11046,5117,14012523,13465111,492276,189842,1247402604,1191852367,100,100,100,100,2.24,2.7,1.12,1.13
-07446,34,003,34003,14484,5553,14476462,14293358,14484,5553,14476462,14293358,905116,352388,638875431,603490137,100,100,100,100,1.6,1.58,2.27,2.37
-07450,34,003,34003,24985,8752,15090815,14919300,24985,8752,15090815,14919300,905116,352388,638875431,603490137,100,100,100,100,2.76,2.48,2.36,2.47
-07452,34,003,34003,11601,4016,7091384,7028152,11601,4016,7091384,7028152,905116,352388,638875431,603490137,100,100,100,100,1.28,1.14,1.11,1.16
-07456,34,031,34031,12211,4324,72940083,65269407,12211,4324,72940083,65269407,501226,175966,510500211,478093122,100,100,100,100,2.44,2.46,14.29,13.65
-07457,34,027,34027,3559,1657,5403170,5217957,3559,1657,5403170,5217957,492276,189842,1247402604,1191852367,100,100,100,100,0.72,0.87,0.43,0.44
-07458,34,003,34003,11360,4117,26576236,26378884,11360,4117,26576236,26378884,905116,352388,638875431,603490137,100,100,100,100,1.26,1.17,4.16,4.37
-07460,34,027,34027,209,84,1341255,1341255,3457,1422,91369200,87003106,492276,189842,1247402604,1191852367,6.05,5.91,1.47,1.54,0.04,0.04,0.11,0.11
-07460,34,031,34031,112,37,25277014,23388456,3457,1422,91369200,87003106,501226,175966,510500211,478093122,3.24,2.6,27.66,26.88,0.02,0.02,4.95,4.89
-07460,34,037,34037,3136,1301,64750931,62273395,3457,1422,91369200,87003106,149265,62057,1387566758,1344239274,90.71,91.49,70.87,71.58,2.1,2.1,4.67,4.63
-07461,34,037,34037,19563,8297,220753090,217966976,19563,8297,220753090,217966976,149265,62057,1387566758,1344239274,100,100,100,100,13.11,13.37,15.91,16.21
-07462,34,037,34037,6885,3356,44131781,43655995,6885,3356,44131781,43655995,149265,62057,1387566758,1344239274,100,100,100,100,4.61,5.41,3.18,3.25
-07463,34,003,34003,9615,3533,5394695,5343412,9615,3533,5394695,5343412,905116,352388,638875431,603490137,100,100,100,100,1.06,1,0.84,0.89
-07465,34,031,34031,6244,2568,22183299,20386883,6244,2568,22183299,20386883,501226,175966,510500211,478093122,100,100,100,100,1.25,1.46,4.35,4.26
-07470,34,031,34031,54717,19768,65333455,61587257,54717,19768,65333455,61587257,501226,175966,510500211,478093122,100,100,100,100,10.92,11.23,12.8,12.88
-07480,34,031,34031,16122,6392,90050883,86535123,16122,6392,90050883,86535123,501226,175966,510500211,478093122,100,100,100,100,3.22,3.63,17.64,18.1
-07481,34,003,34003,16716,5834,17130353,16974334,16716,5834,17130353,16974334,905116,352388,638875431,603490137,100,100,100,100,1.85,1.66,2.68,2.81
-07495,34,003,34003,0,0,65971,65971,0,0,65971,65971,905116,352388,638875431,603490137,0,0,100,100,0,0,0.01,0.01
-07501,34,031,34031,33543,11476,4885034,4781540,33543,11476,4885034,4781540,501226,175966,510500211,478093122,100,100,100,100,6.69,6.52,0.96,1
-07502,34,031,34031,15406,4655,2448902,2356754,15406,4655,2448902,2356754,501226,175966,510500211,478093122,100,100,100,100,3.07,2.65,0.48,0.49
-07503,34,031,34031,18723,6030,4075042,4012727,18723,6030,4075042,4012727,501226,175966,510500211,478093122,100,100,100,100,3.74,3.43,0.8,0.84
-07504,34,031,34031,12882,3993,2224974,2143575,12882,3993,2224974,2143575,501226,175966,510500211,478093122,100,100,100,100,2.57,2.27,0.44,0.45
-07505,34,031,34031,2256,903,514084,514084,2256,903,514084,514084,501226,175966,510500211,478093122,100,100,100,100,0.45,0.51,0.1,0.11
-07506,34,031,34031,18791,7756,8713428,8634566,18791,7756,8713428,8634566,501226,175966,510500211,478093122,100,100,100,100,3.75,4.41,1.71,1.81
-07508,34,031,34031,22600,8076,13293753,13168657,22600,8076,13293753,13168657,501226,175966,510500211,478093122,100,100,100,100,4.51,4.59,2.6,2.75
-07512,34,031,34031,10804,3918,10396785,10213322,10804,3918,10396785,10213322,501226,175966,510500211,478093122,100,100,100,100,2.16,2.23,2.04,2.14
-07513,34,031,34031,11508,3250,1550523,1532154,11508,3250,1550523,1532154,501226,175966,510500211,478093122,100,100,100,100,2.3,1.85,0.3,0.32
-07514,34,031,34031,18289,6525,2530682,2409689,18289,6525,2530682,2409689,501226,175966,510500211,478093122,100,100,100,100,3.65,3.71,0.5,0.5
-07522,34,031,34031,20883,6973,2242054,2125291,20883,6973,2242054,2125291,501226,175966,510500211,478093122,100,100,100,100,4.17,3.96,0.44,0.44
-07524,34,031,34031,12709,4141,2072683,1953307,12709,4141,2072683,1953307,501226,175966,510500211,478093122,100,100,100,100,2.54,2.35,0.41,0.41
-07601,34,003,34003,43010,19375,11274873,10842269,43010,19375,11274873,10842269,905116,352388,638875431,603490137,100,100,100,100,4.75,5.5,1.76,1.8
-07603,34,003,34003,8187,2888,2106143,1981232,8187,2888,2106143,1981232,905116,352388,638875431,603490137,100,100,100,100,0.9,0.82,0.33,0.33
-07604,34,003,34003,11842,4627,3972049,3961754,11842,4627,3972049,3961754,905116,352388,638875431,603490137,100,100,100,100,1.31,1.31,0.62,0.66
-07605,34,003,34003,8950,3437,4248215,3991701,8950,3437,4248215,3991701,905116,352388,638875431,603490137,100,100,100,100,0.99,0.98,0.66,0.66
-07606,34,003,34003,2310,853,1711651,1658573,2310,853,1711651,1658573,905116,352388,638875431,603490137,100,100,100,100,0.26,0.24,0.27,0.27
-07607,34,003,34003,9555,3769,3293092,3289353,9555,3769,3293092,3289353,905116,352388,638875431,603490137,100,100,100,100,1.06,1.07,0.52,0.55
-07608,34,003,34003,67,27,4005280,3997358,67,27,4005280,3997358,905116,352388,638875431,603490137,100,100,100,100,0.01,0.01,0.63,0.66
-07620,34,003,34003,1849,670,23910368,16603688,1849,670,23910368,16603688,905116,352388,638875431,603490137,100,100,100,100,0.2,0.19,3.74,2.75
-07621,34,003,34003,26761,9201,7269595,7248098,26761,9201,7269595,7248098,905116,352388,638875431,603490137,100,100,100,100,2.96,2.61,1.14,1.2
-07624,34,003,34003,8373,2860,8535250,8195853,8373,2860,8535250,8195853,905116,352388,638875431,603490137,100,100,100,100,0.93,0.81,1.34,1.36
-07626,34,003,34003,8537,3103,5351775,5325171,8537,3103,5351775,5325171,905116,352388,638875431,603490137,100,100,100,100,0.94,0.88,0.84,0.88
-07627,34,003,34003,4881,1659,5382061,5352683,4881,1659,5382061,5352683,905116,352388,638875431,603490137,100,100,100,100,0.54,0.47,0.84,0.89
-07628,34,003,34003,17433,6528,5132411,5125262,17433,6528,5132411,5125262,905116,352388,638875431,603490137,100,100,100,100,1.93,1.85,0.8,0.85
-07630,34,003,34003,7379,2545,6206467,5699340,7379,2545,6206467,5699340,905116,352388,638875431,603490137,100,100,100,100,0.82,0.72,0.97,0.94
-07631,34,003,34003,27119,10679,12776137,12716501,27119,10679,12776137,12716501,905116,352388,638875431,603490137,100,100,100,100,3,3.03,2,2.11
-07632,34,003,34003,5309,1940,8633154,5420585,5309,1940,8633154,5420585,905116,352388,638875431,603490137,100,100,100,100,0.59,0.55,1.35,0.9
-07640,34,003,34003,4664,1624,5333327,4744679,4664,1624,5333327,4744679,905116,352388,638875431,603490137,100,100,100,100,0.52,0.46,0.83,0.79
-07641,34,003,34003,3382,1136,6101537,5036532,3382,1136,6101537,5036532,905116,352388,638875431,603490137,100,100,100,100,0.37,0.32,0.96,0.83
-07642,34,003,34003,10207,3560,7643742,7623845,10207,3560,7643742,7623845,905116,352388,638875431,603490137,100,100,100,100,1.13,1.01,1.2,1.26
-07643,34,003,34003,10626,4439,4409059,3822333,10626,4439,4409059,3822333,905116,352388,638875431,603490137,100,100,100,100,1.17,1.26,0.69,0.63
-07644,34,003,34003,24136,10127,5960524,5907712,24136,10127,5960524,5907712,905116,352388,638875431,603490137,100,100,100,100,2.67,2.87,0.93,0.98
-07645,34,003,34003,7832,2867,10356376,10332617,7832,2867,10356376,10332617,905116,352388,638875431,603490137,100,100,100,100,0.87,0.81,1.62,1.71
-07646,34,003,34003,16341,6362,5977504,5889657,16341,6362,5977504,5889657,905116,352388,638875431,603490137,100,100,100,100,1.81,1.81,0.94,0.98
-07647,34,003,34003,5152,1713,5880336,5854388,5152,1713,5880336,5854388,905116,352388,638875431,603490137,100,100,100,100,0.57,0.49,0.92,0.97
-07648,34,003,34003,5730,2015,7091927,7074820,5730,2015,7091927,7074820,905116,352388,638875431,603490137,100,100,100,100,0.63,0.57,1.11,1.17
-07649,34,003,34003,7978,2831,6672761,6277728,7978,2831,6672761,6277728,905116,352388,638875431,603490137,100,100,100,100,0.88,0.8,1.04,1.04
-07650,34,003,34003,19601,7356,3267118,3203430,19601,7356,3267118,3203430,905116,352388,638875431,603490137,100,100,100,100,2.17,2.09,0.51,0.53
-07652,34,003,34003,26342,8915,27245955,27117162,26342,8915,27245955,27117162,905116,352388,638875431,603490137,100,100,100,100,2.91,2.53,4.26,4.49
-07656,34,003,34003,8669,3440,6781335,6727780,8669,3440,6781335,6727780,905116,352388,638875431,603490137,100,100,100,100,0.96,0.98,1.06,1.11
-07657,34,003,34003,11032,4145,7393884,6608347,11032,4145,7393884,6608347,905116,352388,638875431,603490137,100,100,100,100,1.22,1.18,1.16,1.1
-07660,34,003,34003,12729,5164,4970557,4463833,12729,5164,4970557,4463833,905116,352388,638875431,603490137,100,100,100,100,1.41,1.47,0.78,0.74
-07661,34,003,34003,11340,4261,4889813,4785271,11340,4261,4889813,4785271,905116,352388,638875431,603490137,100,100,100,100,1.25,1.21,0.77,0.79
-07662,34,003,34003,5530,2170,2751200,2695378,5530,2170,2751200,2695378,905116,352388,638875431,603490137,100,100,100,100,0.61,0.62,0.43,0.45
-07663,34,003,34003,13659,5485,7034302,6963701,13659,5485,7034302,6963701,905116,352388,638875431,603490137,100,100,100,100,1.51,1.56,1.1,1.15
-07666,34,003,34003,39776,14024,16126826,15556670,39776,14024,16126826,15556670,905116,352388,638875431,603490137,100,100,100,100,4.39,3.98,2.52,2.58
-07670,34,003,34003,14573,5004,13660822,12147715,14573,5004,13660822,12147715,905116,352388,638875431,603490137,100,100,100,100,1.61,1.42,2.14,2.01
-07675,34,003,34003,26339,10159,27942321,24893190,26339,10159,27942321,24893190,905116,352388,638875431,603490137,100,100,100,100,2.91,2.88,4.37,4.12
-07676,34,003,34003,9075,3332,7643058,7512741,9075,3332,7643058,7512741,905116,352388,638875431,603490137,100,100,100,100,1,0.95,1.2,1.24
-07677,34,003,34003,5730,1980,9338695,8819278,5730,1980,9338695,8819278,905116,352388,638875431,603490137,100,100,100,100,0.63,0.56,1.46,1.46
-07701,34,025,34025,23813,10272,27659690,24018553,23813,10272,27659690,24018553,630380,258410,1723169455,1214167244,100,100,100,100,3.78,3.98,1.61,1.98
-07702,34,025,34025,3809,1310,5696677,5614073,3809,1310,5696677,5614073,630380,258410,1723169455,1214167244,100,100,100,100,0.6,0.51,0.33,0.46
-07703,34,025,34025,690,227,2363458,2244870,690,227,2363458,2244870,630380,258410,1723169455,1214167244,100,100,100,100,0.11,0.09,0.14,0.18
-07704,34,025,34025,6133,2070,5498151,4164495,6133,2070,5498151,4164495,630380,258410,1723169455,1214167244,100,100,100,100,0.97,0.8,0.32,0.34
-07711,34,025,34025,1533,881,2383527,2137061,1533,881,2383527,2137061,630380,258410,1723169455,1214167244,100,100,100,100,0.24,0.34,0.14,0.18
-07712,34,025,34025,39158,17995,31696495,30758006,39158,17995,31696495,30758006,630380,258410,1723169455,1214167244,100,100,100,100,6.21,6.96,1.84,2.53
-07716,34,025,34025,8574,3793,13004992,12762343,8574,3793,13004992,12762343,630380,258410,1723169455,1214167244,100,100,100,100,1.36,1.47,0.75,1.05
-07717,34,025,34025,1901,1321,1402547,1104171,1901,1321,1402547,1104171,630380,258410,1723169455,1214167244,100,100,100,100,0.3,0.51,0.08,0.09
-07718,34,025,34025,6263,2237,5620932,5523257,6263,2237,5620932,5523257,630380,258410,1723169455,1214167244,100,100,100,100,0.99,0.87,0.33,0.45
-07719,34,025,34025,21538,10848,36210064,33758230,21538,10848,36210064,33758230,630380,258410,1723169455,1214167244,100,100,100,100,3.42,4.2,2.1,2.78
-07720,34,025,34025,4298,3180,1639399,1584909,4298,3180,1639399,1584909,630380,258410,1723169455,1214167244,100,100,100,100,0.68,1.23,0.1,0.13
-07721,34,023,34023,64,20,256671,256671,2974,1128,2389665,2380649,809858,294800,836117569,800083087,2.15,1.77,10.74,10.78,0.01,0.01,0.03,0.03
-07721,34,025,34025,2910,1108,2132994,2123978,2974,1128,2389665,2380649,630380,258410,1723169455,1214167244,97.85,98.23,89.26,89.22,0.46,0.43,0.12,0.17
-07722,34,025,34025,10209,3771,97879709,95081135,10209,3771,97879709,95081135,630380,258410,1723169455,1214167244,100,100,100,100,1.62,1.46,5.68,7.83
-07723,34,025,34025,1020,1173,4422695,4219425,1020,1173,4422695,4219425,630380,258410,1723169455,1214167244,100,100,100,100,0.16,0.45,0.26,0.35
-07724,34,025,34025,21710,9534,32416166,32117060,21710,9534,32416166,32117060,630380,258410,1723169455,1214167244,100,100,100,100,3.44,3.69,1.88,2.65
-07726,34,025,34025,42508,15238,84455333,83798869,42508,15238,84455333,83798869,630380,258410,1723169455,1214167244,100,100,100,100,6.74,5.9,4.9,6.9
-07727,34,025,34025,7050,2704,57580837,56950928,7050,2704,57580837,56950928,630380,258410,1723169455,1214167244,100,100,100,100,1.12,1.05,3.34,4.69
-07728,34,025,34025,56257,20719,126548483,125779570,56257,20719,126548483,125779570,630380,258410,1723169455,1214167244,100,100,100,100,8.92,8.02,7.34,10.36
-07730,34,025,34025,17396,6192,12852927,12674361,17396,6192,12852927,12674361,630380,258410,1723169455,1214167244,100,100,100,100,2.76,2.4,0.75,1.04
-07731,34,025,34025,38304,12897,87864319,86812238,38304,12897,87864319,86812238,630380,258410,1723169455,1214167244,100,100,100,100,6.08,4.99,5.1,7.15
-07732,34,025,34025,5189,3243,15617303,10028061,5189,3243,15617303,10028061,630380,258410,1723169455,1214167244,100,100,100,100,0.82,1.25,0.91,0.83
-07733,34,025,34025,16849,5877,46991141,46425227,16849,5877,46991141,46425227,630380,258410,1723169455,1214167244,100,100,100,100,2.67,2.27,2.73,3.82
-07734,34,025,34025,13269,5578,5715836,4590911,13269,5578,5715836,4590911,630380,258410,1723169455,1214167244,100,100,100,100,2.1,2.16,0.33,0.38
-07735,34,023,34023,2127,790,1993876,1969543,19569,7762,13888806,13263490,809858,294800,836117569,800083087,10.87,10.18,14.36,14.85,0.26,0.27,0.24,0.25
-07735,34,025,34025,17442,6972,11894930,11293947,19569,7762,13888806,13263490,630380,258410,1723169455,1214167244,89.13,89.82,85.64,85.15,2.77,2.7,0.69,0.93
-07737,34,025,34025,4264,1551,6708223,6686724,4264,1551,6708223,6686724,630380,258410,1723169455,1214167244,100,100,100,100,0.68,0.6,0.39,0.55
-07738,34,025,34025,6095,2146,14282080,13721357,6095,2146,14282080,13721357,630380,258410,1723169455,1214167244,100,100,100,100,0.97,0.83,0.83,1.13
-07739,34,025,34025,5938,2273,8558087,6985397,5938,2273,8558087,6985397,630380,258410,1723169455,1214167244,100,100,100,100,0.94,0.88,0.5,0.58
-07740,34,025,34025,31038,14295,16683537,14069913,31038,14295,16683537,14069913,630380,258410,1723169455,1214167244,100,100,100,100,4.92,5.53,0.97,1.16
-07746,34,025,34025,18666,6262,33962348,33797367,18666,6262,33962348,33797367,630380,258410,1723169455,1214167244,100,100,100,100,2.96,2.42,1.97,2.78
-07747,34,023,34023,10617,3858,17878878,17752909,30770,12027,33415087,32585573,809858,294800,836117569,800083087,34.5,32.08,53.51,54.48,1.31,1.31,2.14,2.22
-07747,34,025,34025,20153,8169,15536209,14832664,30770,12027,33415087,32585573,630380,258410,1723169455,1214167244,65.5,67.92,46.49,45.52,3.2,3.16,0.9,1.22
-07748,34,025,34025,28030,10052,34747773,34649600,28030,10052,34747773,34649600,630380,258410,1723169455,1214167244,100,100,100,100,4.45,3.89,2.02,2.85
-07750,34,025,34025,3279,1981,5358901,2784894,3279,1981,5358901,2784894,630380,258410,1723169455,1214167244,100,100,100,100,0.52,0.77,0.31,0.23
-07751,34,025,34025,19736,6318,41893528,41784726,19736,6318,41893528,41784726,630380,258410,1723169455,1214167244,100,100,100,100,3.13,2.44,2.43,3.44
-07753,34,025,34025,37554,16847,49112936,47387500,37554,16847,49112936,47387500,630380,258410,1723169455,1214167244,100,100,100,100,5.96,6.52,2.85,3.9
-07755,34,025,34025,6363,2508,7384388,7373964,6363,2508,7384388,7373964,630380,258410,1723169455,1214167244,100,100,100,100,1.01,0.97,0.43,0.61
-07756,34,025,34025,3342,3132,1108625,963903,3342,3132,1108625,963903,630380,258410,1723169455,1214167244,100,100,100,100,0.53,1.21,0.06,0.08
-07757,34,025,34025,5356,2163,7924850,6441254,5356,2163,7924850,6441254,630380,258410,1723169455,1214167244,100,100,100,100,0.85,0.84,0.46,0.53
-07758,34,025,34025,4967,1842,4033239,3940531,4967,1842,4033239,3940531,630380,258410,1723169455,1214167244,100,100,100,100,0.79,0.71,0.23,0.32
-07760,34,025,34025,9283,4104,28448538,19625299,9283,4104,28448538,19625299,630380,258410,1723169455,1214167244,100,100,100,100,1.47,1.59,1.65,1.62
-07762,34,025,34025,8403,5480,8360402,7261344,8403,5480,8360402,7261344,630380,258410,1723169455,1214167244,100,100,100,100,1.33,2.12,0.49,0.6
-07764,34,025,34025,8097,2528,7495718,7402799,8097,2528,7495718,7402799,630380,258410,1723169455,1214167244,100,100,100,100,1.28,0.98,0.43,0.61
-07801,34,027,34027,25386,8495,26251399,25380427,25386,8495,26251399,25380427,492276,189842,1247402604,1191852367,100,100,100,100,5.16,4.47,2.1,2.13
-07803,34,027,34027,3651,1380,7849801,7616187,3651,1380,7849801,7616187,492276,189842,1247402604,1191852367,100,100,100,100,0.74,0.73,0.63,0.64
-07820,34,041,34041,39,17,6233248,6222653,39,17,6233248,6222653,108692,44925,939795832,924412063,100,100,100,100,0.04,0.04,0.66,0.67
-07821,34,037,34037,8358,3434,94826508,91094751,9193,3731,115917568,112067383,149265,62057,1387566758,1344239274,90.92,92.04,81.81,81.29,5.6,5.53,6.83,6.78
-07821,34,041,34041,835,297,21091060,20972632,9193,3731,115917568,112067383,108692,44925,939795832,924412063,9.08,7.96,18.19,18.71,0.77,0.66,2.24,2.27
-07822,34,037,34037,887,312,17228656,17185413,887,312,17228656,17185413,149265,62057,1387566758,1344239274,100,100,100,100,0.59,0.5,1.24,1.28
-07823,34,041,34041,7571,3543,66690440,65483140,7571,3543,66690440,65483140,108692,44925,939795832,924412063,100,100,100,100,6.97,7.89,7.1,7.08
-07825,34,041,34041,9555,3672,205749607,200878246,9555,3672,205749607,200878246,108692,44925,939795832,924412063,100,100,100,100,8.79,8.17,21.89,21.73
-07826,34,037,34037,6180,2892,138381327,134971408,6180,2892,138381327,134971408,149265,62057,1387566758,1344239274,100,100,100,100,4.14,4.66,9.97,10.04
-07827,34,037,34037,4244,1975,131894998,128182351,4244,1975,131894998,128182351,149265,62057,1387566758,1344239274,100,100,100,100,2.84,3.18,9.51,9.54
-07828,34,027,34027,14150,5918,40655409,36785351,14150,5918,40655409,36785351,492276,189842,1247402604,1191852367,100,100,100,100,2.87,3.12,3.26,3.09
-07830,34,019,34019,5464,2111,53437200,53099396,6503,2473,62458731,62092441,128349,49487,1132957142,1108046234,84.02,85.36,85.56,85.52,4.26,4.27,4.72,4.79
-07830,34,027,34027,1039,362,9021531,8993045,6503,2473,62458731,62092441,492276,189842,1247402604,1191852367,15.98,14.64,14.44,14.48,0.21,0.19,0.72,0.75
-07832,34,041,34041,3903,1533,124657846,120937778,3903,1533,124657846,120937778,108692,44925,939795832,924412063,100,100,100,100,3.59,3.41,13.26,13.08
-07833,34,041,34041,157,74,1283262,1151923,157,74,1283262,1151923,108692,44925,939795832,924412063,100,100,100,100,0.14,0.16,0.14,0.12
-07834,34,027,34027,17722,7170,33973339,31766082,17722,7170,33973339,31766082,492276,189842,1247402604,1191852367,100,100,100,100,3.6,3.78,2.72,2.67
-07836,34,027,34027,12568,4779,41674951,41357794,12568,4779,41674951,41357794,492276,189842,1247402604,1191852367,100,100,100,100,2.55,2.52,3.34,3.47
-07838,34,041,34041,3568,1343,65041537,64434144,3568,1343,65041537,64434144,108692,44925,939795832,924412063,100,100,100,100,3.28,2.99,6.92,6.97
-07840,34,027,34027,6886,2666,26850323,26479942,29849,12373,91558407,90521733,492276,189842,1247402604,1191852367,23.07,21.55,29.33,29.25,1.4,1.4,2.15,2.22
-07840,34,041,34041,22963,9707,64708084,64041791,29849,12373,91558407,90521733,108692,44925,939795832,924412063,76.93,78.45,70.67,70.75,21.13,21.61,6.89,6.93
-07842,34,027,34027,130,57,3625287,3389600,130,57,3625287,3389600,492276,189842,1247402604,1191852367,100,100,100,100,0.03,0.03,0.29,0.28
-07843,34,037,34037,12241,5053,13071153,10441619,12241,5053,13071153,10441619,149265,62057,1387566758,1344239274,100,100,100,100,8.2,8.14,0.94,0.78
-07846,34,041,34041,89,40,355296,355296,89,40,355296,355296,108692,44925,939795832,924412063,100,100,100,100,0.08,0.09,0.04,0.04
-07847,34,027,34027,1670,655,6021370,5564466,1670,655,6021370,5564466,492276,189842,1247402604,1191852367,100,100,100,100,0.34,0.35,0.48,0.47
-07848,34,037,34037,5026,1757,61767300,61403001,5026,1757,61767300,61403001,149265,62057,1387566758,1344239274,100,100,100,100,3.37,2.83,4.45,4.57
-07849,34,027,34027,9008,3798,24270134,19102077,9054,3831,24340164,19172107,492276,189842,1247402604,1191852367,99.49,99.14,99.71,99.63,1.83,2,1.95,1.6
-07849,34,037,34037,46,33,70030,70030,9054,3831,24340164,19172107,149265,62057,1387566758,1344239274,0.51,0.86,0.29,0.37,0.03,0.05,0.01,0.01
-07850,34,027,34027,6436,2475,9547444,8346083,6436,2475,9547444,8346083,492276,189842,1247402604,1191852367,100,100,100,100,1.31,1.3,0.77,0.7
-07851,34,037,34037,119,68,18168156,17283296,119,68,18168156,17283296,149265,62057,1387566758,1344239274,100,100,100,100,0.08,0.11,1.31,1.29
-07852,34,027,34027,3609,1422,7912937,7769633,3609,1422,7912937,7769633,492276,189842,1247402604,1191852367,100,100,100,100,0.73,0.75,0.63,0.65
-07853,34,027,34027,13325,4460,88622537,87920144,13325,4460,88622537,87920144,492276,189842,1247402604,1191852367,100,100,100,100,2.71,2.35,7.1,7.38
-07856,34,027,34027,3944,2119,11208780,9086123,3944,2119,11208780,9086123,492276,189842,1247402604,1191852367,100,100,100,100,0.8,1.12,0.9,0.76
-07857,34,027,34027,3244,1451,3023842,2816213,3244,1451,3023842,2816213,492276,189842,1247402604,1191852367,100,100,100,100,0.66,0.76,0.24,0.24
-07860,34,037,34037,25816,10827,256098874,246599424,26288,10994,270290075,260658128,149265,62057,1387566758,1344239274,98.2,98.48,94.75,94.61,17.3,17.45,18.46,18.34
-07860,34,041,34041,472,167,14191201,14058704,26288,10994,270290075,260658128,108692,44925,939795832,924412063,1.8,1.52,5.25,5.39,0.43,0.37,1.51,1.52
-07863,34,041,34041,4332,1669,61885505,61421735,4332,1669,61885505,61421735,108692,44925,939795832,924412063,100,100,100,100,3.99,3.72,6.58,6.64
-07865,34,019,34019,376,137,10849236,10738472,2189,889,35533382,35192330,128349,49487,1132957142,1108046234,17.18,15.41,30.53,30.51,0.29,0.28,0.96,0.97
-07865,34,027,34027,395,139,1887822,1778252,2189,889,35533382,35192330,492276,189842,1247402604,1191852367,18.04,15.64,5.31,5.05,0.08,0.07,0.15,0.15
-07865,34,041,34041,1418,613,22796324,22675606,2189,889,35533382,35192330,108692,44925,939795832,924412063,64.78,68.95,64.15,64.43,1.3,1.36,2.43,2.45
-07866,34,027,34027,22098,8525,63389039,57415649,22098,8525,63389039,57415649,492276,189842,1247402604,1191852367,100,100,100,100,4.49,4.49,5.08,4.82
-07869,34,027,34027,25291,9247,52574724,51999740,25291,9247,52574724,51999740,492276,189842,1247402604,1191852367,100,100,100,100,5.14,4.87,4.21,4.36
-07870,34,027,34027,26,13,601577,601577,26,13,601577,601577,492276,189842,1247402604,1191852367,100,100,100,100,0.01,0.01,0.05,0.05
-07871,34,037,34037,21165,7960,103572882,98195349,21165,7960,103572882,98195349,149265,62057,1387566758,1344239274,100,100,100,100,14.18,12.83,7.46,7.3
-07874,34,037,34037,8826,3309,24041045,22200650,8905,3347,35010103,32777404,149265,62057,1387566758,1344239274,99.11,98.86,68.67,67.73,5.91,5.33,1.73,1.65
-07874,34,041,34041,79,38,10969058,10576754,8905,3347,35010103,32777404,108692,44925,939795832,924412063,0.89,1.14,31.33,32.27,0.07,0.08,1.17,1.14
-07876,34,027,34027,10619,3718,15189812,14783855,10619,3718,15189812,14783855,492276,189842,1247402604,1191852367,100,100,100,100,2.16,1.96,1.22,1.24
-07878,34,027,34027,934,389,711774,707543,934,389,711774,707543,492276,189842,1247402604,1191852367,100,100,100,100,0.19,0.2,0.06,0.06
-07880,34,041,34041,192,66,577522,569117,192,66,577522,569117,108692,44925,939795832,924412063,100,100,100,100,0.18,0.15,0.06,0.06
-07881,34,037,34037,16,15,63978631,62289466,16,15,63978631,62289466,149265,62057,1387566758,1344239274,100,100,100,100,0.01,0.02,4.61,4.63
-07882,34,019,34019,297,117,2915556,2780879,14492,5936,82074053,81701109,128349,49487,1132957142,1108046234,2.05,1.97,3.55,3.4,0.23,0.24,0.26,0.25
-07882,34,041,34041,14195,5819,79158497,78920230,14492,5936,82074053,81701109,108692,44925,939795832,924412063,97.95,98.03,96.45,96.6,13.06,12.95,8.42,8.54
-07885,34,027,34027,10078,3983,40814509,38943107,10078,3983,40814509,38943107,492276,189842,1247402604,1191852367,100,100,100,100,2.05,2.1,3.27,3.27
-07901,34,039,34039,22806,8761,16525576,16392286,22806,8761,16525576,16392286,536499,199489,272988244,266393116,100,100,100,100,4.25,4.39,6.05,6.15
-07920,34,027,34027,218,86,3827062,3742809,26747,10254,60677146,60221229,492276,189842,1247402604,1191852367,0.82,0.84,6.31,6.22,0.04,0.05,0.31,0.31
-07920,34,035,34035,26529,10168,56850084,56478420,26747,10254,60677146,60221229,323444,123127,789576096,781692692,99.18,99.16,93.69,93.78,8.2,8.26,7.2,7.23
-07921,34,035,34035,7621,4141,49925320,49423784,7621,4141,49925320,49423784,323444,123127,789576096,781692692,100,100,100,100,2.36,3.36,6.32,6.32
-07922,34,039,34039,12246,4266,14460237,14319069,12246,4266,14460237,14319069,536499,199489,272988244,266393116,100,100,100,100,2.28,2.14,5.3,5.38
-07924,34,035,34035,7534,2801,31504497,31316178,7534,2801,31504497,31316178,323444,123127,789576096,781692692,100,100,100,100,2.33,2.27,3.99,4.01
-07926,34,027,34027,120,38,686060,685287,120,38,686060,685287,492276,189842,1247402604,1191852367,100,100,100,100,0.02,0.02,0.05,0.06
-07927,34,027,34027,3403,1446,5044535,4993443,3403,1446,5044535,4993443,492276,189842,1247402604,1191852367,100,100,100,100,0.69,0.76,0.4,0.42
-07928,34,027,34027,19144,7229,23200346,22371622,19144,7229,23200346,22371622,492276,189842,1247402604,1191852367,100,100,100,100,3.89,3.81,1.86,1.88
-07930,34,027,34027,8559,3022,66416089,66243107,8559,3022,66416089,66243107,492276,189842,1247402604,1191852367,100,100,100,100,1.74,1.59,5.32,5.56
-07931,34,027,34027,796,272,14177777,14148052,3296,1226,53859000,53454883,492276,189842,1247402604,1191852367,24.15,22.19,26.32,26.47,0.16,0.14,1.14,1.19
-07931,34,035,34035,2500,954,39681223,39306831,3296,1226,53859000,53454883,323444,123127,789576096,781692692,75.85,77.81,73.68,73.53,0.77,0.77,5.03,5.03
-07932,34,027,34027,9868,4164,18179721,17543525,9868,4164,18179721,17543525,492276,189842,1247402604,1191852367,100,100,100,100,2,2.19,1.46,1.47
-07933,34,027,34027,3251,1239,13297772,12881363,3251,1239,13297772,12881363,492276,189842,1247402604,1191852367,100,100,100,100,0.66,0.65,1.07,1.08
-07934,34,035,34035,1501,593,9524302,9510008,1501,593,9524302,9510008,323444,123127,789576096,781692692,100,100,100,100,0.46,0.48,1.21,1.22
-07935,34,027,34027,313,139,6204923,5916204,313,139,6204923,5916204,492276,189842,1247402604,1191852367,100,100,100,100,0.06,0.07,0.5,0.5
-07936,34,027,34027,11157,3976,21073858,20441016,11157,3976,21073858,20441016,492276,189842,1247402604,1191852367,100,100,100,100,2.27,2.09,1.69,1.72
-07939,34,035,34035,228,1,1063713,1063713,228,1,1063713,1063713,323444,123127,789576096,781692692,100,100,100,100,0.07,0,0.13,0.14
-07940,34,027,34027,17278,5805,12101296,12049120,17278,5805,12101296,12049120,492276,189842,1247402604,1191852367,100,100,100,100,3.51,3.06,0.97,1.01
-07945,34,027,34027,9539,3333,49281519,48513732,9539,3333,49281519,48513732,492276,189842,1247402604,1191852367,100,100,100,100,1.94,1.76,3.95,4.07
-07946,34,027,34027,3144,1089,11016104,10776560,3144,1089,11016104,10776560,492276,189842,1247402604,1191852367,100,100,100,100,0.64,0.57,0.88,0.9
-07950,34,027,34027,19564,7681,23795082,23498102,19564,7681,23795082,23498102,492276,189842,1247402604,1191852367,100,100,100,100,3.97,4.05,1.91,1.97
-07960,34,027,34027,43747,17730,91628208,90676124,43747,17730,91628208,90676124,492276,189842,1247402604,1191852367,100,100,100,100,8.89,9.34,7.35,7.61
-07961,34,027,34027,4,0,105678,105678,4,0,105678,105678,492276,189842,1247402604,1191852367,100,0,100,100,0,0,0.01,0.01
-07970,34,027,34027,117,46,632534,631520,117,46,632534,631520,492276,189842,1247402604,1191852367,100,100,100,100,0.02,0.02,0.05,0.05
-07974,34,039,34039,11768,4300,10402239,10337640,11768,4300,10402239,10337640,536499,199489,272988244,266393116,100,100,100,100,2.19,2.16,3.81,3.88
-07976,34,027,34027,754,333,19127832,18099984,754,333,19127832,18099984,492276,189842,1247402604,1191852367,100,100,100,100,0.15,0.18,1.53,1.52
-07977,34,035,34035,669,264,3848518,3845026,669,264,3848518,3845026,323444,123127,789576096,781692692,100,100,100,100,0.21,0.21,0.49,0.49
-07979,34,019,34019,351,142,5433082,5363684,589,194,6294067,6200973,128349,49487,1132957142,1108046234,59.59,73.2,86.32,86.5,0.27,0.29,0.48,0.48
-07979,34,035,34035,238,52,860985,837289,589,194,6294067,6200973,323444,123127,789576096,781692692,40.41,26.8,13.68,13.5,0.07,0.04,0.11,0.11
-07980,34,027,34027,2307,898,7118191,7035539,2307,898,7118191,7035539,492276,189842,1247402604,1191852367,100,100,100,100,0.47,0.47,0.57,0.59
-07981,34,027,34027,8865,3580,17862238,17468281,8865,3580,17862238,17468281,492276,189842,1247402604,1191852367,100,100,100,100,1.8,1.89,1.43,1.47
-08001,34,033,34033,844,317,6492963,6317687,844,317,6492963,6317687,66083,27417,964326922,859613601,100,100,100,100,1.28,1.16,0.67,0.73
-08002,34,007,34007,22274,9644,18932778,18604377,22274,9644,18932778,18604377,513657,204943,588684748,573067842,100,100,100,100,4.34,4.71,3.22,3.25
-08003,34,007,34007,30629,11306,28728403,28689176,30629,11306,28728403,28689176,513657,204943,588684748,573067842,100,100,100,100,5.96,5.52,4.88,5.01
-08004,34,007,34007,12350,4389,32589629,32322296,12350,4389,32589629,32322296,513657,204943,588684748,573067842,100,100,100,100,2.4,2.14,5.54,5.64
-08005,34,029,34029,22448,9866,126022248,122661615,22448,9866,126022248,122661615,576567,278052,2370877436,1628534966,100,100,100,100,3.89,3.55,5.32,7.53
-08006,34,029,34029,518,1164,3430205,1677227,518,1164,3430205,1677227,576567,278052,2370877436,1628534966,100,100,100,100,0.09,0.42,0.14,0.1
-08007,34,007,34007,5250,2353,3351826,3351826,5250,2353,3351826,3351826,513657,204943,588684748,573067842,100,100,100,100,1.02,1.15,0.57,0.58
-08008,34,029,34029,6975,17855,99028630,28189743,6975,17855,99028630,28189743,576567,278052,2370877436,1628534966,100,100,100,100,1.21,6.42,4.18,1.73
-08009,34,007,34007,12854,5019,35923165,35441870,12854,5019,35923165,35441870,513657,204943,588684748,573067842,100,100,100,100,2.5,2.45,6.1,6.18
-08010,34,005,34005,11539,5046,11293638,9919487,11539,5046,11293638,9919487,448734,175615,2123371774,2068303255,100,100,100,100,2.57,2.87,0.53,0.48
-08011,34,005,34005,33,15,366714,366714,33,15,366714,366714,448734,175615,2123371774,2068303255,100,100,100,100,0.01,0.01,0.02,0.02
-08012,34,007,34007,21764,9069,23635313,23347680,38992,15639,39247394,38700797,513657,204943,588684748,573067842,55.82,57.99,60.22,60.33,4.24,4.43,4.01,4.07
-08012,34,015,34015,17228,6570,15612081,15353117,38992,15639,39247394,38700797,288288,109796,873285833,833989655,44.18,42.01,39.78,39.67,5.98,5.98,1.79,1.84
-08014,34,015,34015,504,222,13759003,7523384,504,222,13759003,7523384,288288,109796,873285833,833989655,100,100,100,100,0.17,0.2,1.58,0.9
-08015,34,005,34005,20763,8007,126892572,123560172,20763,8007,126892572,123560172,448734,175615,2123371774,2068303255,100,100,100,100,4.63,4.56,5.98,5.97
-08016,34,005,34005,33540,12681,62312929,58939938,33540,12681,62312929,58939938,448734,175615,2123371774,2068303255,100,100,100,100,7.47,7.22,2.93,2.85
-08019,34,005,34005,925,341,160083973,155286649,925,341,160083973,155286649,448734,175615,2123371774,2068303255,100,100,100,100,0.21,0.19,7.54,7.51
-08020,34,015,34015,2201,839,11559975,11218044,2201,839,11559975,11218044,288288,109796,873285833,833989655,100,100,100,100,0.76,0.76,1.32,1.35
-08021,34,007,34007,44833,19762,34156938,33648544,44833,19762,34156938,33648544,513657,204943,588684748,573067842,100,100,100,100,8.73,9.64,5.8,5.87
-08022,34,005,34005,8783,3572,57164343,56960748,8783,3572,57164343,56960748,448734,175615,2123371774,2068303255,100,100,100,100,1.96,2.03,2.69,2.75
-08023,34,033,34033,451,208,2704743,2566558,451,208,2704743,2566558,66083,27417,964326922,859613601,100,100,100,100,0.68,0.76,0.28,0.3
-08026,34,007,34007,2274,809,5753693,5652715,2274,809,5753693,5652715,513657,204943,588684748,573067842,100,100,100,100,0.44,0.39,0.98,0.99
-08027,34,015,34015,4888,2042,26784535,19159930,4888,2042,26784535,19159930,288288,109796,873285833,833989655,100,100,100,100,1.7,1.86,3.07,2.3
-08028,34,015,34015,20078,7121,39879439,39670546,20078,7121,39879439,39670546,288288,109796,873285833,833989655,100,100,100,100,6.96,6.49,4.57,4.76
-08029,34,007,34007,4784,1983,2709149,2681285,4784,1983,2709149,2681285,513657,204943,588684748,573067842,100,100,100,100,0.93,0.97,0.46,0.47
-08030,34,007,34007,13410,5517,8102472,6915677,13410,5517,8102472,6915677,513657,204943,588684748,573067842,100,100,100,100,2.61,2.69,1.38,1.21
-08031,34,007,34007,11584,4884,8184613,7837168,11584,4884,8184613,7837168,513657,204943,588684748,573067842,100,100,100,100,2.26,2.38,1.39,1.37
-08033,34,007,34007,16261,6830,10248381,10110134,16261,6830,10248381,10110134,513657,204943,588684748,573067842,100,100,100,100,3.17,3.33,1.74,1.76
-08034,34,007,34007,18151,7506,15404232,15390120,18151,7506,15404232,15390120,513657,204943,588684748,573067842,100,100,100,100,3.53,3.66,2.62,2.69
-08035,34,007,34007,7566,3198,4099247,4085674,7566,3198,4099247,4085674,513657,204943,588684748,573067842,100,100,100,100,1.47,1.56,0.7,0.71
-08036,34,005,34005,5917,2227,16520048,15851696,5917,2227,16520048,15851696,448734,175615,2123371774,2068303255,100,100,100,100,1.32,1.27,0.78,0.77
-08037,34,001,34001,19625,7519,241175858,238263351,24308,9214,306828214,302608875,274549,126647,1740023310,1439267859,80.73,81.6,78.6,78.74,7.15,5.94,13.86,16.55
-08037,34,007,34007,4683,1695,65652356,64345524,24308,9214,306828214,302608875,513657,204943,588684748,573067842,19.27,18.4,21.4,21.26,0.91,0.83,11.15,11.23
-08038,34,033,34033,124,61,54577838,44866618,124,61,54577838,44866618,66083,27417,964326922,859613601,100,100,100,100,0.19,0.22,5.66,5.22
-08039,34,015,34015,137,54,2666987,2662930,137,54,2666987,2662930,288288,109796,873285833,833989655,100,100,100,100,0.05,0.05,0.31,0.32
-08041,34,005,34005,1002,350,29533660,29504687,1002,350,29533660,29504687,448734,175615,2123371774,2068303255,100,100,100,100,0.22,0.2,1.39,1.43
-08042,34,005,34005,203,64,1722513,1722513,203,64,1722513,1722513,448734,175615,2123371774,2068303255,100,100,100,100,0.05,0.04,0.08,0.08
-08043,34,007,34007,29131,12260,30156888,29764464,29131,12260,30156888,29764464,513657,204943,588684748,573067842,100,100,100,100,5.67,5.98,5.12,5.19
-08045,34,007,34007,2909,1158,3351005,3351005,2909,1158,3351005,3351005,513657,204943,588684748,573067842,100,100,100,100,0.57,0.57,0.57,0.58
-08046,34,005,34005,31587,11424,19695546,19032037,31587,11424,19695546,19032037,448734,175615,2123371774,2068303255,100,100,100,100,7.04,6.51,0.93,0.92
-08048,34,005,34005,12495,4747,34492354,34149357,12495,4747,34492354,34149357,448734,175615,2123371774,2068303255,100,100,100,100,2.78,2.7,1.62,1.65
-08049,34,007,34007,5350,2219,3234818,3234818,5350,2219,3234818,3234818,513657,204943,588684748,573067842,100,100,100,100,1.04,1.08,0.55,0.56
-08050,34,029,34029,24285,12729,96927942,78847087,24285,12729,96927942,78847087,576567,278052,2370877436,1628534966,100,100,100,100,4.21,4.58,4.09,4.84
-08051,34,015,34015,10758,4657,9793096,9732426,10758,4657,9793096,9732426,288288,109796,873285833,833989655,100,100,100,100,3.73,4.24,1.12,1.17
-08052,34,005,34005,19172,9201,9918280,9915259,19172,9201,9918280,9915259,448734,175615,2123371774,2068303255,100,100,100,100,4.27,5.24,0.47,0.48
-08053,34,005,34005,45538,18303,76942049,75844617,45538,18303,76942049,75844617,448734,175615,2123371774,2068303255,100,100,100,100,10.15,10.42,3.62,3.67
-08054,34,005,34005,41864,18249,56913459,56191082,41864,18249,56913459,56191082,448734,175615,2123371774,2068303255,100,100,100,100,9.33,10.39,2.68,2.72
-08055,34,005,34005,27179,10195,106763791,103812747,27179,10195,106763791,103812747,448734,175615,2123371774,2068303255,100,100,100,100,6.06,5.81,5.03,5.02
-08056,34,015,34015,4736,1620,23826002,23657069,4736,1620,23826002,23657069,288288,109796,873285833,833989655,100,100,100,100,1.64,1.48,2.73,2.84
-08057,34,005,34005,21090,7983,40013279,39430476,21090,7983,40013279,39430476,448734,175615,2123371774,2068303255,100,100,100,100,4.7,4.55,1.88,1.91
-08059,34,007,34007,5612,2371,3252847,3118604,5612,2371,3252847,3118604,513657,204943,588684748,573067842,100,100,100,100,1.09,1.16,0.55,0.54
-08060,34,005,34005,24713,9596,58302077,57466667,24713,9596,58302077,57466667,448734,175615,2123371774,2068303255,100,100,100,100,5.51,5.46,2.75,2.78
-08061,34,015,34015,2672,964,4378003,3634809,2672,964,4378003,3634809,288288,109796,873285833,833989655,100,100,100,100,0.93,0.88,0.5,0.44
-08062,34,015,34015,15756,5265,79562232,79207060,15756,5265,79562232,79207060,288288,109796,873285833,833989655,100,100,100,100,5.47,4.8,9.11,9.5
-08063,34,015,34015,3102,1181,3806502,2645784,3102,1181,3806502,2645784,288288,109796,873285833,833989655,100,100,100,100,1.08,1.08,0.44,0.32
-08064,34,005,34005,311,65,3362051,3301474,311,65,3362051,3301474,448734,175615,2123371774,2068303255,100,100,100,100,0.07,0.04,0.16,0.16
-08065,34,005,34005,7398,3392,6694722,4831117,7398,3392,6694722,4831117,448734,175615,2123371774,2068303255,100,100,100,100,1.65,1.93,0.32,0.23
-08066,34,015,34015,8437,3863,15225499,12775681,8437,3863,15225499,12775681,288288,109796,873285833,833989655,100,100,100,100,2.93,3.52,1.74,1.53
-08067,34,033,34033,1635,648,51954271,49565011,1635,648,51954271,49565011,66083,27417,964326922,859613601,100,100,100,100,2.47,2.36,5.39,5.77
-08068,34,005,34005,6727,2750,60936981,60305720,6727,2750,60936981,60305720,448734,175615,2123371774,2068303255,100,100,100,100,1.5,1.57,2.87,2.92
-08069,34,033,34033,13076,5439,45778713,43614084,13076,5439,45778713,43614084,66083,27417,964326922,859613601,100,100,100,100,19.79,19.84,4.75,5.07
-08070,34,033,34033,13059,5768,61580320,53122392,13059,5768,61580320,53122392,66083,27417,964326922,859613601,100,100,100,100,19.76,21.04,6.39,6.18
-08071,34,015,34015,9551,3923,8667056,8536951,9551,3923,8667056,8536951,288288,109796,873285833,833989655,100,100,100,100,3.31,3.57,0.99,1.02
-08072,34,033,34033,225,86,630692,590195,225,86,630692,590195,66083,27417,964326922,859613601,100,100,100,100,0.34,0.31,0.07,0.07
-08073,34,005,34005,203,81,247543,247543,203,81,247543,247543,448734,175615,2123371774,2068303255,100,100,100,100,0.05,0.05,0.01,0.01
-08074,34,015,34015,58,30,888613,886988,58,30,888613,886988,288288,109796,873285833,833989655,100,100,100,100,0.02,0.03,0.1,0.11
-08075,34,005,34005,28894,11321,30135007,25644196,28894,11321,30135007,25644196,448734,175615,2123371774,2068303255,100,100,100,100,6.44,6.45,1.42,1.24
-08077,34,005,34005,18307,6855,23271571,21139320,18307,6855,23271571,21139320,448734,175615,2123371774,2068303255,100,100,100,100,4.08,3.9,1.1,1.02
-08078,34,007,34007,8385,3512,5381554,5231250,8385,3512,5381554,5231250,513657,204943,588684748,573067842,100,100,100,100,1.63,1.71,0.91,0.91
-08079,34,033,34033,10987,5118,259070780,235793993,10987,5118,259070780,235793993,66083,27417,964326922,859613601,100,100,100,100,16.63,18.67,26.87,27.43
-08080,34,015,34015,37433,13512,75216726,74779995,37433,13512,75216726,74779995,288288,109796,873285833,833989655,100,100,100,100,12.98,12.31,8.61,8.97
-08081,34,007,34007,48570,17169,67131828,66484232,50589,17805,69880466,69215174,513657,204943,588684748,573067842,96.01,96.43,96.07,96.05,9.46,8.38,11.4,11.6
-08081,34,015,34015,2019,636,2748638,2730942,50589,17805,69880466,69215174,288288,109796,873285833,833989655,3.99,3.57,3.93,3.95,0.7,0.58,0.31,0.33
-08083,34,007,34007,9455,3751,6505265,6474425,9455,3751,6505265,6474425,513657,204943,588684748,573067842,100,100,100,100,1.84,1.83,1.11,1.13
-08084,34,007,34007,7040,2761,4010049,4010049,7040,2761,4010049,4010049,513657,204943,588684748,573067842,100,100,100,100,1.37,1.35,0.68,0.7
-08085,34,015,34015,18599,6323,126694378,118739495,18737,6374,127516769,119552836,288288,109796,873285833,833989655,99.26,99.2,99.36,99.32,6.45,5.76,14.51,14.24
-08085,34,033,34033,138,51,822391,813341,18737,6374,127516769,119552836,66083,27417,964326922,859613601,0.74,0.8,0.64,0.68,0.21,0.19,0.09,0.09
-08086,34,015,34015,7699,3527,23060584,18963882,7699,3527,23060584,18963882,288288,109796,873285833,833989655,100,100,100,100,2.67,3.21,2.64,2.27
-08087,34,005,34005,753,309,42628869,38482875,24104,12509,147177556,129426666,448734,175615,2123371774,2068303255,3.12,2.47,28.96,29.73,0.17,0.18,2.01,1.86
-08087,34,029,34029,23351,12200,104548687,90943791,24104,12509,147177556,129426666,576567,278052,2370877436,1628534966,96.88,97.53,71.04,70.27,4.05,4.39,4.41,5.58
-08088,34,005,34005,24664,9813,362303475,357598297,24664,9813,362303475,357598297,448734,175615,2123371774,2068303255,100,100,100,100,5.5,5.59,17.06,17.29
-08089,34,007,34007,4253,1597,49759647,49562598,4253,1597,49759647,49562598,513657,204943,588684748,573067842,100,100,100,100,0.83,0.78,8.45,8.65
-08090,34,015,34015,8358,3113,6734986,6638153,8358,3113,6734986,6638153,288288,109796,873285833,833989655,100,100,100,100,2.9,2.84,0.77,0.8
-08091,34,007,34007,5357,2069,8385993,8370628,5357,2069,8385993,8370628,513657,204943,588684748,573067842,100,100,100,100,1.04,1.01,1.42,1.46
-08092,34,029,34029,3673,1569,67310165,59779399,3673,1569,67310165,59779399,576567,278052,2370877436,1628534966,100,100,100,100,0.64,0.56,2.84,3.67
-08093,34,015,34015,9741,4180,14374346,12056202,9741,4180,14374346,12056202,288288,109796,873285833,833989655,100,100,100,100,3.38,3.81,1.65,1.45
-08094,34,001,34001,3142,1166,11085070,9980916,39940,14800,139026493,136536068,274549,126647,1740023310,1439267859,7.87,7.88,7.97,7.31,1.14,0.92,0.64,0.69
-08094,34,015,34015,36798,13634,127941423,126555152,39940,14800,139026493,136536068,288288,109796,873285833,833989655,92.13,92.12,92.03,92.69,12.76,12.42,14.65,15.17
-08095,34,007,34007,236,91,5350680,5245062,236,91,5350680,5245062,513657,204943,588684748,573067842,100,100,100,100,0.05,0.04,0.91,0.92
-08096,34,015,34015,36116,14892,39992934,39130072,36116,14892,39992934,39130072,288288,109796,873285833,833989655,100,100,100,100,12.53,13.56,4.58,4.69
-08097,34,015,34015,3293,1217,3590816,3566732,3293,1217,3590816,3566732,288288,109796,873285833,833989655,100,100,100,100,1.14,1.11,0.41,0.43
-08098,34,033,34033,9090,3582,147295962,145985411,9090,3582,147295962,145985411,66083,27417,964326922,859613601,100,100,100,100,13.76,13.06,15.27,16.98
-08102,34,007,34007,7565,2824,3389490,2464398,7565,2824,3389490,2464398,513657,204943,588684748,573067842,100,100,100,100,1.47,1.38,0.58,0.43
-08103,34,007,34007,15190,5865,6717114,5587450,15190,5865,6717114,5587450,513657,204943,588684748,573067842,100,100,100,100,2.96,2.86,1.14,0.98
-08104,34,007,34007,23851,9786,9194074,8025452,23851,9786,9194074,8025452,513657,204943,588684748,573067842,100,100,100,100,4.64,4.77,1.56,1.4
-08105,34,007,34007,29077,9392,7206675,6724051,29077,9392,7206675,6724051,513657,204943,588684748,573067842,100,100,100,100,5.66,4.58,1.22,1.17
-08106,34,007,34007,9874,4289,4322384,4254576,9874,4289,4322384,4254576,513657,204943,588684748,573067842,100,100,100,100,1.92,2.09,0.73,0.74
-08107,34,007,34007,13675,6188,4959290,4626019,13675,6188,4959290,4626019,513657,204943,588684748,573067842,100,100,100,100,2.66,3.02,0.84,0.81
-08108,34,007,34007,18045,8200,7349177,7070556,18045,8200,7349177,7070556,513657,204943,588684748,573067842,100,100,100,100,3.51,4,1.25,1.23
-08109,34,007,34007,22407,9048,12937102,12601071,22407,9048,12937102,12601071,513657,204943,588684748,573067842,100,100,100,100,4.36,4.41,2.2,2.2
-08110,34,007,34007,19008,6429,20612774,16614191,19008,6429,20612774,16614191,513657,204943,588684748,573067842,100,100,100,100,3.7,3.14,3.5,2.9
-08201,34,001,34001,10007,4091,19512332,14598870,10007,4091,19512332,14598870,274549,126647,1740023310,1439267859,100,100,100,100,3.64,3.23,1.12,1.01
-08202,34,009,34009,1444,5618,27390218,16153043,1444,5618,27390218,16153043,97265,98309,1606871491,651187425,100,100,100,100,1.48,5.71,1.7,2.48
-08203,34,001,34001,9454,9226,34568666,16717729,9454,9226,34568666,16717729,274549,126647,1740023310,1439267859,100,100,100,100,3.44,7.28,1.99,1.16
-08204,34,009,34009,18557,12849,61230415,52504364,18557,12849,61230415,52504364,97265,98309,1606871491,651187425,100,100,100,100,19.08,13.07,3.81,8.06
-08205,34,001,34001,28626,11394,134118343,109829121,28626,11394,134118343,109829121,274549,126647,1740023310,1439267859,100,100,100,100,10.43,9,7.71,7.63
-08210,34,009,34009,17167,7682,197134401,178273866,17167,7682,197134401,178273866,97265,98309,1606871491,651187425,100,100,100,100,17.65,7.81,12.27,27.38
-08212,34,009,34009,294,617,4307791,2159187,294,617,4307791,2159187,97265,98309,1606871491,651187425,100,100,100,100,0.3,0.63,0.27,0.33
-08215,34,001,34001,12770,5329,178458547,175620258,13442,5624,309331669,300049389,274549,126647,1740023310,1439267859,95,94.75,57.69,58.53,4.65,4.21,10.26,12.2
-08215,34,005,34005,672,295,130873122,124429131,13442,5624,309331669,300049389,448734,175615,2123371774,2068303255,5,5.25,42.31,41.47,0.15,0.17,6.16,6.02
-08217,34,001,34001,70,17,119929,119929,70,17,119929,119929,274549,126647,1740023310,1439267859,100,100,100,100,0.03,0.01,0.01,0.01
-08221,34,001,34001,7092,2798,11069618,10091284,7092,2798,11069618,10091284,274549,126647,1740023310,1439267859,100,100,100,100,2.58,2.21,0.64,0.7
-08223,34,009,34009,4125,2419,40705415,33519969,4125,2419,40705415,33519969,97265,98309,1606871491,651187425,100,100,100,100,4.24,2.46,2.53,5.15
-08224,34,005,34005,573,224,12593022,12211249,573,224,12593022,12211249,448734,175615,2123371774,2068303255,100,100,100,100,0.13,0.13,0.59,0.59
-08225,34,001,34001,8659,3322,20221092,16144085,8659,3322,20221092,16144085,274549,126647,1740023310,1439267859,100,100,100,100,3.15,2.62,1.16,1.12
-08226,34,009,34009,11701,20871,33233570,16401788,11701,20871,33233570,16401788,97265,98309,1606871491,651187425,100,100,100,100,12.03,21.23,2.07,2.52
-08230,34,009,34009,5599,2648,33114653,32579809,5599,2648,33114653,32579809,97265,98309,1606871491,651187425,100,100,100,100,5.76,2.69,2.06,5
-08232,34,001,34001,19292,6791,20852720,15318799,19292,6791,20852720,15318799,274549,126647,1740023310,1439267859,100,100,100,100,7.03,5.36,1.2,1.06
-08234,34,001,34001,42532,15844,164312061,156906068,42532,15844,164312061,156906068,274549,126647,1740023310,1439267859,100,100,100,100,15.49,12.51,9.44,10.9
-08240,34,001,34001,2371,1,4296369,4066207,2371,1,4296369,4066207,274549,126647,1740023310,1439267859,100,100,100,100,0.86,0,0.25,0.28
-08241,34,001,34001,1103,440,22011134,19158780,1103,440,22011134,19158780,274549,126647,1740023310,1439267859,100,100,100,100,0.4,0.35,1.26,1.33
-08242,34,009,34009,3216,1746,13226032,13091831,3216,1746,13226032,13091831,97265,98309,1606871491,651187425,100,100,100,100,3.31,1.78,0.82,2.01
-08243,34,009,34009,2114,6900,11037287,5618390,2114,6900,11037287,5618390,97265,98309,1606871491,651187425,100,100,100,100,2.17,7.02,0.69,0.86
-08244,34,001,34001,10849,5621,22905377,14948771,10849,5621,22905377,14948771,274549,126647,1740023310,1439267859,100,100,100,100,3.95,4.44,1.32,1.04
-08246,34,009,34009,92,123,839980,839980,92,123,839980,839980,97265,98309,1606871491,651187425,100,100,100,100,0.09,0.13,0.05,0.13
-08247,34,009,34009,925,3361,24036365,12816864,925,3361,24036365,12816864,97265,98309,1606871491,651187425,100,100,100,100,0.95,3.42,1.5,1.97
-08248,34,009,34009,158,447,3800582,1548736,158,447,3800582,1548736,97265,98309,1606871491,651187425,100,100,100,100,0.16,0.45,0.24,0.24
-08251,34,009,34009,10364,6355,19953218,16252732,10364,6355,19953218,16252732,97265,98309,1606871491,651187425,100,100,100,100,10.66,6.46,1.24,2.5
-08260,34,009,34009,13661,23597,64276107,41106308,13661,23597,64276107,41106308,97265,98309,1606871491,651187425,100,100,100,100,14.05,24,4,6.31
-08270,34,001,34001,644,278,99262898,91705646,8492,3354,312914807,299839889,274549,126647,1740023310,1439267859,7.58,8.29,31.72,30.58,0.23,0.22,5.7,6.37
-08270,34,009,34009,7848,3076,213651909,208134243,8492,3354,312914807,299839889,97265,98309,1606871491,651187425,92.42,91.71,68.28,69.42,8.07,3.13,13.3,31.96
-08302,34,011,34011,45145,14583,348057314,336093736,46872,15215,382813510,370561644,156898,55834,1755030057,1252784157,96.32,95.85,90.92,90.7,28.77,26.12,19.83,26.83
-08302,34,033,34033,1727,632,34756196,34467908,46872,15215,382813510,370561644,66083,27417,964326922,859613601,3.68,4.15,9.08,9.3,2.61,2.31,3.6,4.01
-08310,34,001,34001,1670,828,29400739,29319262,1670,828,29400739,29319262,274549,126647,1740023310,1439267859,100,100,100,100,0.61,0.65,1.69,2.04
-08311,34,011,34011,2057,798,74883368,71389552,2057,798,74883368,71389552,156898,55834,1755030057,1252784157,100,100,100,100,1.31,1.43,4.27,5.7
-08312,34,015,34015,7875,3009,15541063,15042696,7875,3009,15541063,15042696,288288,109796,873285833,833989655,100,100,100,100,2.73,2.74,1.78,1.8
-08314,34,011,34011,2511,151,34357991,33888714,2511,151,34357991,33888714,156898,55834,1755030057,1252784157,100,100,100,100,1.6,0.27,1.96,2.71
-08316,34,011,34011,400,158,10207247,9764173,400,158,10207247,9764173,156898,55834,1755030057,1252784157,100,100,100,100,0.25,0.28,0.58,0.78
-08317,34,001,34001,1344,473,18730271,18680658,1344,473,18730271,18680658,274549,126647,1740023310,1439267859,100,100,100,100,0.49,0.37,1.08,1.3
-08318,34,011,34011,197,86,11008061,10997967,12702,4766,209037602,206333873,156898,55834,1755030057,1252784157,1.55,1.8,5.27,5.33,0.13,0.15,0.63,0.88
-08318,34,033,34033,12505,4680,198029541,195335906,12702,4766,209037602,206333873,66083,27417,964326922,859613601,98.45,98.2,94.73,94.67,18.92,17.07,20.54,22.72
-08319,34,001,34001,1253,483,36625234,36559812,1253,483,36625234,36559812,274549,126647,1740023310,1439267859,100,100,100,100,0.46,0.38,2.1,2.54
-08320,34,011,34011,1256,1,1093685,1093685,1256,1,1093685,1093685,156898,55834,1755030057,1252784157,100,100,100,100,0.8,0,0.06,0.09
-08321,34,011,34011,247,317,29231464,24351116,247,317,29231464,24351116,156898,55834,1755030057,1252784157,100,100,100,100,0.16,0.57,1.67,1.94
-08322,34,015,34015,10524,3776,74799251,74195365,10524,3776,74799251,74195365,288288,109796,873285833,833989655,100,100,100,100,3.65,3.44,8.57,8.9
-08323,34,011,34011,804,369,48771803,46193748,804,369,48771803,46193748,156898,55834,1755030057,1252784157,100,100,100,100,0.51,0.66,2.78,3.69
-08324,34,011,34011,526,237,22472183,22046717,526,237,22472183,22046717,156898,55834,1755030057,1252784157,100,100,100,100,0.34,0.42,1.28,1.76
-08326,34,001,34001,1761,643,8925972,8925972,1761,643,8925972,8925972,274549,126647,1740023310,1439267859,100,100,100,100,0.64,0.51,0.51,0.62
-08327,34,011,34011,3070,347,16546622,13795470,3070,347,16546622,13795470,156898,55834,1755030057,1252784157,100,100,100,100,1.96,0.62,0.94,1.1
-08328,34,015,34015,1347,515,5830458,5430756,1347,515,5830458,5430756,288288,109796,873285833,833989655,100,100,100,100,0.47,0.47,0.67,0.65
-08329,34,011,34011,221,113,6834887,5903989,221,113,6834887,5903989,156898,55834,1755030057,1252784157,100,100,100,100,0.14,0.2,0.39,0.47
-08330,34,001,34001,28167,11076,317893188,311957325,28167,11076,317893188,311957325,274549,126647,1740023310,1439267859,100,100,100,100,10.26,8.75,18.27,21.67
-08332,34,011,34011,36768,14650,285134812,274921746,36768,14650,285134812,274921746,156898,55834,1755030057,1252784157,100,100,100,100,23.43,26.24,16.25,21.94
-08340,34,001,34001,662,270,16927356,16900367,979,391,34040550,33994468,274549,126647,1740023310,1439267859,67.62,69.05,49.73,49.72,0.24,0.21,0.97,1.17
-08340,34,011,34011,317,121,17113194,17094101,979,391,34040550,33994468,156898,55834,1755030057,1252784157,32.38,30.95,50.27,50.28,0.2,0.22,0.98,1.36
-08341,34,001,34001,2239,961,6360378,6358219,2239,961,6360378,6358219,274549,126647,1740023310,1439267859,100,100,100,100,0.82,0.76,0.37,0.44
-08343,34,015,34015,3287,1193,42365477,41948436,5030,1819,86644544,86177818,288288,109796,873285833,833989655,65.35,65.59,48.9,48.68,1.14,1.09,4.85,5.03
-08343,34,033,34033,1743,626,44279067,44229382,5030,1819,86644544,86177818,66083,27417,964326922,859613601,34.65,34.41,51.1,51.32,2.64,2.28,4.59,5.15
-08344,34,001,34001,167,56,9289061,8977207,5847,2286,64737743,63984283,274549,126647,1740023310,1439267859,2.86,2.45,14.35,14.03,0.06,0.04,0.53,0.62
-08344,34,011,34011,1272,548,7151148,7088200,5847,2286,64737743,63984283,156898,55834,1755030057,1252784157,21.75,23.97,11.05,11.08,0.81,0.98,0.41,0.57
-08344,34,015,34015,3929,1481,45950799,45573761,5847,2286,64737743,63984283,288288,109796,873285833,833989655,67.2,64.79,70.98,71.23,1.36,1.35,5.26,5.46
-08344,34,033,34033,479,201,2346735,2345115,5847,2286,64737743,63984283,66083,27417,964326922,859613601,8.19,8.79,3.62,3.67,0.72,0.73,0.24,0.27
-08345,34,011,34011,805,460,58426349,52502713,805,460,58426349,52502713,156898,55834,1755030057,1252784157,100,100,100,100,0.51,0.82,3.33,4.19
-08346,34,001,34001,843,297,9820777,9803417,843,297,9820777,9803417,274549,126647,1740023310,1439267859,100,100,100,100,0.31,0.23,0.56,0.68
-08348,34,011,34011,275,126,4031684,3759068,275,126,4031684,3759068,156898,55834,1755030057,1252784157,100,100,100,100,0.18,0.23,0.23,0.3
-08349,34,011,34011,2347,940,113398700,105843068,2347,940,113398700,105843068,156898,55834,1755030057,1252784157,100,100,100,100,1.5,1.68,6.46,8.45
-08350,34,001,34001,825,300,10400900,10371823,825,300,10400900,10371823,274549,126647,1740023310,1439267859,100,100,100,100,0.3,0.24,0.6,0.72
-08352,34,011,34011,448,163,761761,761761,448,163,761761,761761,156898,55834,1755030057,1252784157,100,100,100,100,0.29,0.29,0.04,0.06
-08353,34,011,34011,516,214,3129453,3127889,516,214,3129453,3127889,156898,55834,1755030057,1252784157,100,100,100,100,0.33,0.38,0.18,0.25
-08360,34,001,34001,1827,724,25201112,25136138,43355,15899,112126289,111070228,274549,126647,1740023310,1439267859,4.21,4.55,22.48,22.63,0.67,0.57,1.45,1.75
-08360,34,011,34011,40364,14738,74890246,73960793,43355,15899,112126289,111070228,156898,55834,1755030057,1252784157,93.1,92.7,66.79,66.59,25.73,26.4,4.27,5.9
-08360,34,015,34015,1164,437,12034931,11973297,43355,15899,112126289,111070228,288288,109796,873285833,833989655,2.68,2.75,10.73,10.78,0.4,0.4,1.38,1.44
-08361,34,011,34011,17352,6714,79125050,78578403,17352,6714,79125050,78578403,156898,55834,1755030057,1252784157,100,100,100,100,11.06,12.02,4.51,6.27
-08401,34,001,34001,39554,20009,43219197,27575373,39554,20009,43219197,27575373,274549,126647,1740023310,1439267859,100,100,100,100,14.41,15.8,2.48,1.92
-08402,34,001,34001,6354,7114,6793821,3664967,6354,7114,6793821,3664967,274549,126647,1740023310,1439267859,100,100,100,100,2.31,5.62,0.39,0.25
-08403,34,001,34001,997,1747,9521886,5434477,997,1747,9521886,5434477,274549,126647,1740023310,1439267859,100,100,100,100,0.36,1.38,0.55,0.38
-08406,34,001,34001,10650,7829,9853599,5139069,10650,7829,9853599,5139069,274549,126647,1740023310,1439267859,100,100,100,100,3.88,6.18,0.57,0.36
-08501,34,005,34005,341,124,8287670,8202656,6582,2402,71311531,70131724,448734,175615,2123371774,2068303255,5.18,5.16,11.62,11.7,0.08,0.07,0.39,0.4
-08501,34,021,34021,336,116,1417913,1411697,6582,2402,71311531,70131724,366513,143169,592818912,581601212,5.1,4.83,1.99,2.01,0.09,0.08,0.24,0.24
-08501,34,025,34025,5905,2162,61605948,60517371,6582,2402,71311531,70131724,630380,258410,1723169455,1214167244,89.71,90.01,86.39,86.29,0.94,0.84,3.58,4.98
-08502,34,035,34035,11317,3744,33306493,33084323,11317,3744,33306493,33084323,323444,123127,789576096,781692692,100,100,100,100,3.5,3.04,4.22,4.23
-08505,34,005,34005,17736,7353,56547083,54527240,17736,7353,56547083,54527240,448734,175615,2123371774,2068303255,100,100,100,100,3.95,4.19,2.66,2.64
-08510,34,025,34025,5231,1723,50338983,49732272,5231,1723,50338983,49732272,630380,258410,1723169455,1214167244,100,100,100,100,0.83,0.67,2.92,4.1
-08511,34,005,34005,826,324,6734449,6688655,826,324,6734449,6688655,448734,175615,2123371774,2068303255,100,100,100,100,0.18,0.18,0.32,0.32
-08512,34,021,34021,5180,2430,4231432,4207521,10105,4133,55677074,55075906,366513,143169,592818912,581601212,51.26,58.8,7.6,7.64,1.41,1.7,0.71,0.72
-08512,34,023,34023,4925,1703,51445642,50868385,10105,4133,55677074,55075906,809858,294800,836117569,800083087,48.74,41.2,92.4,92.36,0.61,0.58,6.15,6.36
-08514,34,025,34025,2587,952,51379049,50764783,4477,1734,69073938,67782876,630380,258410,1723169455,1214167244,57.78,54.9,74.38,74.89,0.41,0.37,2.98,4.18
-08514,34,029,34029,1890,782,17694889,17018093,4477,1734,69073938,67782876,576567,278052,2370877436,1628534966,42.22,45.1,25.62,25.11,0.33,0.28,0.75,1.04
-08515,34,005,34005,4637,1592,55178685,54698177,4637,1592,55178685,54698177,448734,175615,2123371774,2068303255,100,100,100,100,1.03,0.91,2.6,2.64
-08518,34,005,34005,4986,2228,5532464,4945598,4986,2228,5532464,4945598,448734,175615,2123371774,2068303255,100,100,100,100,1.11,1.27,0.26,0.24
-08520,34,021,34021,27869,10664,45972453,45662428,27869,10664,45972453,45662428,366513,143169,592818912,581601212,100,100,100,100,7.6,7.45,7.75,7.85
-08525,34,019,34019,621,257,17564699,17553649,4767,1967,57724225,57557271,128349,49487,1132957142,1108046234,13.03,13.07,30.43,30.5,0.48,0.52,1.55,1.58
-08525,34,021,34021,4146,1710,40159526,40003622,4767,1967,57724225,57557271,366513,143169,592818912,581601212,86.97,86.93,69.57,69.5,1.13,1.19,6.77,6.88
-08527,34,029,34029,54392,20193,223425678,220826833,54392,20193,223425678,220826833,576567,278052,2370877436,1628534966,100,100,100,100,9.43,7.26,9.42,13.56
-08528,34,023,34023,81,27,45412,45412,315,135,1832736,1644750,809858,294800,836117569,800083087,25.71,20,2.48,2.76,0.01,0.01,0.01,0.01
-08528,34,035,34035,234,108,1787324,1599338,315,135,1832736,1644750,323444,123127,789576096,781692692,74.29,80,97.52,97.24,0.07,0.09,0.23,0.2
-08530,34,019,34019,7529,3141,53565378,52790211,8071,3331,66672121,65806666,128349,49487,1132957142,1108046234,93.28,94.3,80.34,80.22,5.87,6.35,4.73,4.76
-08530,34,021,34021,542,190,13106743,13016455,8071,3331,66672121,65806666,366513,143169,592818912,581601212,6.72,5.7,19.66,19.78,0.15,0.13,2.21,2.24
-08533,34,029,34029,6945,2420,48875526,48349734,6945,2420,48875526,48349734,576567,278052,2370877436,1628534966,100,100,100,100,1.2,0.87,2.06,2.97
-08534,34,021,34021,12929,4964,57282498,56662464,12929,4964,57282498,56662464,366513,143169,592818912,581601212,100,100,100,100,3.53,3.47,9.66,9.74
-08535,34,025,34025,5385,1726,47224189,46047684,5385,1726,47224189,46047684,630380,258410,1723169455,1214167244,100,100,100,100,0.85,0.67,2.74,3.79
-08536,34,023,34023,20073,8637,19329348,18854550,20073,8637,19329348,18854550,809858,294800,836117569,800083087,100,100,100,100,2.48,2.93,2.31,2.36
-08540,34,021,34021,33197,12544,85539870,83882050,47115,18408,137084119,134463061,366513,143169,592818912,581601212,70.46,68.14,62.4,62.38,9.06,8.76,14.43,14.42
-08540,34,023,34023,6388,3032,15520701,14989765,47115,18408,137084119,134463061,809858,294800,836117569,800083087,13.56,16.47,11.32,11.15,0.79,1.03,1.86,1.87
-08540,34,035,34035,7530,2832,36023548,35591246,47115,18408,137084119,134463061,323444,123127,789576096,781692692,15.98,15.38,26.28,26.47,2.33,2.3,4.56,4.55
-08542,34,021,34021,5189,1644,1322743,1322743,5189,1644,1322743,1322743,366513,143169,592818912,581601212,100,100,100,100,1.42,1.15,0.22,0.23
-08550,34,021,34021,19445,6720,49727219,48218551,19445,6720,49727219,48218551,366513,143169,592818912,581601212,100,100,100,100,5.31,4.69,8.39,8.29
-08551,34,019,34019,5532,1971,70164678,69835355,5532,1971,70164678,69835355,128349,49487,1132957142,1108046234,100,100,100,100,4.31,3.98,6.19,6.3
-08553,34,035,34035,682,292,1612101,1603789,682,292,1612101,1603789,323444,123127,789576096,781692692,100,100,100,100,0.21,0.24,0.2,0.21
-08554,34,005,34005,3818,1530,3164001,2737636,3818,1530,3164001,2737636,448734,175615,2123371774,2068303255,100,100,100,100,0.85,0.87,0.15,0.13
-08555,34,025,34025,877,324,4470952,4456923,877,324,4470952,4456923,630380,258410,1723169455,1214167244,100,100,100,100,0.14,0.13,0.26,0.37
-08558,34,021,34021,110,39,3348439,3346168,6629,2459,43355913,43146651,366513,143169,592818912,581601212,1.66,1.59,7.72,7.76,0.03,0.03,0.56,0.58
-08558,34,035,34035,6519,2420,40007474,39800483,6629,2459,43355913,43146651,323444,123127,789576096,781692692,98.34,98.41,92.28,92.24,2.02,1.97,5.07,5.09
-08559,34,019,34019,4982,2166,105697451,103538742,4982,2166,105697451,103538742,128349,49487,1132957142,1108046234,100,100,100,100,3.88,4.38,9.33,9.34
-08560,34,021,34021,3656,1428,36794757,35403477,3656,1428,36794757,35403477,366513,143169,592818912,581601212,100,100,100,100,1,1,6.21,6.09
-08561,34,021,34021,226,102,3044836,3037186,226,102,3044836,3037186,366513,143169,592818912,581601212,100,100,100,100,0.06,0.07,0.51,0.52
-08562,34,005,34005,5371,2395,44411815,44137333,5371,2395,44411815,44137333,448734,175615,2123371774,2068303255,100,100,100,100,1.2,1.36,2.09,2.13
-08608,34,021,34021,983,658,988562,810941,983,658,988562,810941,366513,143169,592818912,581601212,100,100,100,100,0.27,0.46,0.17,0.14
-08609,34,021,34021,13546,5409,3544859,3522746,13546,5409,3544859,3522746,366513,143169,592818912,581601212,100,100,100,100,3.7,3.78,0.6,0.61
-08610,34,005,34005,396,156,973713,742977,30468,12413,20569239,19689832,448734,175615,2123371774,2068303255,1.3,1.26,4.73,3.77,0.09,0.09,0.05,0.04
-08610,34,021,34021,30072,12257,19595526,18946855,30468,12413,20569239,19689832,366513,143169,592818912,581601212,98.7,98.74,95.27,96.23,8.2,8.56,3.31,3.26
-08611,34,021,34021,28038,9562,8406245,7176174,28038,9562,8406245,7176174,366513,143169,592818912,581601212,100,100,100,100,7.65,6.68,1.42,1.23
-08618,34,021,34021,38229,15283,16623904,15698621,38229,15283,16623904,15698621,366513,143169,592818912,581601212,100,100,100,100,10.43,10.67,2.8,2.7
-08619,34,021,34021,22723,9833,26110555,25848889,22723,9833,26110555,25848889,366513,143169,592818912,581601212,100,100,100,100,6.2,6.87,4.4,4.44
-08620,34,005,34005,4509,611,3510300,3231300,14693,4556,23618097,23126900,448734,175615,2123371774,2068303255,30.69,13.41,14.86,13.97,1,0.35,0.17,0.16
-08620,34,021,34021,10184,3945,20107797,19895600,14693,4556,23618097,23126900,366513,143169,592818912,581601212,69.31,86.59,85.14,86.03,2.78,2.76,3.39,3.42
-08628,34,021,34021,9054,4224,18945706,18137288,9054,4224,18945706,18137288,366513,143169,592818912,581601212,100,100,100,100,2.47,2.95,3.2,3.12
-08629,34,021,34021,12331,4262,2062278,2062278,12331,4262,2062278,2062278,366513,143169,592818912,581601212,100,100,100,100,3.36,2.98,0.35,0.35
-08638,34,021,34021,22832,9170,14909671,14836819,22832,9170,14909671,14836819,366513,143169,592818912,581601212,100,100,100,100,6.23,6.41,2.52,2.55
-08640,34,005,34005,7716,898,55939722,55421613,7716,898,55939722,55421613,448734,175615,2123371774,2068303255,100,100,100,100,1.72,0.51,2.63,2.68
-08641,34,005,34005,3553,1298,13129720,13116042,3553,1298,13129720,13116042,448734,175615,2123371774,2068303255,100,100,100,100,0.79,0.74,0.62,0.63
-08648,34,021,34021,32263,12751,43792100,43313333,32263,12751,43792100,43313333,366513,143169,592818912,581601212,100,100,100,100,8.8,8.91,7.39,7.45
-08690,34,021,34021,18567,7347,18483198,18331257,18567,7347,18483198,18331257,366513,143169,592818912,581601212,100,100,100,100,5.07,5.13,3.12,3.15
-08691,34,021,34021,14866,5917,57300082,56846049,15104,5996,68284746,67353071,366513,143169,592818912,581601212,98.42,98.68,83.91,84.4,4.06,4.13,9.67,9.77
-08691,34,025,34025,238,79,10984664,10507022,15104,5996,68284746,67353071,630380,258410,1723169455,1214167244,1.58,1.32,16.09,15.6,0.04,0.03,0.64,0.87
-08701,34,029,34029,92843,26337,64749093,63699074,92843,26337,64749093,63699074,576567,278052,2370877436,1628534966,100,100,100,100,16.1,9.47,2.73,3.91
-08720,34,025,34025,843,250,3771759,3626169,843,250,3771759,3626169,630380,258410,1723169455,1214167244,100,100,100,100,0.13,0.1,0.22,0.3
-08721,34,029,34029,20512,8420,51979417,40063040,20512,8420,51979417,40063040,576567,278052,2370877436,1628534966,100,100,100,100,3.56,3.03,2.19,2.46
-08722,34,029,34029,11045,3826,7377307,7375838,11045,3826,7377307,7375838,576567,278052,2370877436,1628534966,100,100,100,100,1.92,1.38,0.31,0.45
-08723,34,029,34029,31641,14063,41067220,31264885,31641,14063,41067220,31264885,576567,278052,2370877436,1628534966,100,100,100,100,5.49,5.06,1.73,1.92
-08724,34,025,34025,47,18,2047086,1822224,42352,18036,40046072,35265500,630380,258410,1723169455,1214167244,0.11,0.1,5.11,5.17,0.01,0.01,0.12,0.15
-08724,34,029,34029,42305,18018,37998986,33443276,42352,18036,40046072,35265500,576567,278052,2370877436,1628534966,99.89,99.9,94.89,94.83,7.34,6.48,1.6,2.05
-08730,34,025,34025,4774,2034,6150608,4549927,4774,2034,6150608,4549927,630380,258410,1723169455,1214167244,100,100,100,100,0.76,0.79,0.36,0.37
-08731,34,029,34029,20009,8580,129308122,123869895,20009,8580,129308122,123869895,576567,278052,2370877436,1628534966,100,100,100,100,3.47,3.09,5.45,7.61
-08732,34,029,34029,1484,751,2171068,1403935,1484,751,2171068,1403935,576567,278052,2370877436,1628534966,100,100,100,100,0.26,0.27,0.09,0.09
-08733,34,029,34029,2752,962,9699785,9431925,2752,962,9699785,9431925,576567,278052,2370877436,1628534966,100,100,100,100,0.48,0.35,0.41,0.58
-08734,34,029,34029,7651,2998,17395391,14808253,7651,2998,17395391,14808253,576567,278052,2370877436,1628534966,100,100,100,100,1.33,1.08,0.73,0.91
-08735,34,029,34029,3114,7278,8810551,4481261,3114,7278,8810551,4481261,576567,278052,2370877436,1628534966,100,100,100,100,0.54,2.62,0.37,0.28
-08736,34,025,34025,12578,6289,15656200,11973153,12578,6289,15656200,11973153,630380,258410,1723169455,1214167244,100,100,100,100,2,2.43,0.91,0.99
-08738,34,029,34029,1042,1970,8472589,2571536,1042,1970,8472589,2571536,576567,278052,2370877436,1628534966,100,100,100,100,0.18,0.71,0.36,0.16
-08740,34,029,34029,2010,1202,1902060,1150388,2010,1202,1902060,1150388,576567,278052,2370877436,1628534966,100,100,100,100,0.35,0.43,0.08,0.07
-08741,34,029,34029,2488,1054,3155957,2024134,2488,1054,3155957,2024134,576567,278052,2370877436,1628534966,100,100,100,100,0.43,0.38,0.13,0.12
-08742,34,029,34029,24405,12888,19064161,14506355,24405,12888,19064161,14506355,576567,278052,2370877436,1628534966,100,100,100,100,4.23,4.64,0.8,0.89
-08750,34,025,34025,3528,2062,5960586,4894802,3528,2062,5960586,4894802,630380,258410,1723169455,1214167244,100,100,100,100,0.56,0.8,0.35,0.4
-08751,34,029,34029,4212,5760,7941196,3395246,4212,5760,7941196,3395246,576567,278052,2370877436,1628534966,100,100,100,100,0.73,2.07,0.33,0.21
-08752,34,029,34029,2074,4116,36296236,12395218,2074,4116,36296236,12395218,576567,278052,2370877436,1628534966,100,100,100,100,0.36,1.48,1.53,0.76
-08753,34,029,34029,63678,26159,71341975,59779904,63678,26159,71341975,59779904,576567,278052,2370877436,1628534966,100,100,100,100,11.04,9.41,3.01,3.67
-08755,34,029,34029,25302,10526,41558113,41276457,25302,10526,41558113,41276457,576567,278052,2370877436,1628534966,100,100,100,100,4.39,3.79,1.75,2.53
-08757,34,029,34029,33217,18816,67456629,66671612,33217,18816,67456629,66671612,576567,278052,2370877436,1628534966,100,100,100,100,5.76,6.77,2.85,4.09
-08758,34,029,34029,7043,3588,35840820,32330846,7043,3588,35840820,32330846,576567,278052,2370877436,1628534966,100,100,100,100,1.22,1.29,1.51,1.99
-08759,34,029,34029,33263,21962,169346778,167342428,33263,21962,169346778,167342428,576567,278052,2370877436,1628534966,100,100,100,100,5.77,7.9,7.14,10.28
-08801,34,019,34019,8551,3039,42790456,42280063,8551,3039,42790456,42280063,128349,49487,1132957142,1108046234,100,100,100,100,6.66,6.14,3.78,3.82
-08802,34,019,34019,2834,1005,37952887,37692065,4067,1474,62466993,62133218,128349,49487,1132957142,1108046234,69.68,68.18,60.76,60.66,2.21,2.03,3.35,3.4
-08802,34,041,34041,1233,469,24514106,24441153,4067,1474,62466993,62133218,108692,44925,939795832,924412063,30.32,31.82,39.24,39.34,1.13,1.04,2.61,2.64
-08804,34,019,34019,1990,799,20474896,20262534,2771,1094,32191829,31892058,128349,49487,1132957142,1108046234,71.82,73.03,63.6,63.53,1.55,1.61,1.81,1.83
-08804,34,041,34041,781,295,11716933,11629524,2771,1094,32191829,31892058,108692,44925,939795832,924412063,28.18,26.97,36.4,36.47,0.72,0.66,1.25,1.26
-08805,34,035,34035,12254,4602,7454500,7320127,12254,4602,7454500,7320127,323444,123127,789576096,781692692,100,100,100,100,3.79,3.74,0.94,0.94
-08807,34,035,34035,37972,14175,67430490,66390099,37972,14175,67430490,66390099,323444,123127,789576096,781692692,100,100,100,100,11.74,11.51,8.54,8.49
-08808,34,041,34041,86,61,103377,103377,86,61,103377,103377,108692,44925,939795832,924412063,100,100,100,100,0.08,0.14,0.01,0.01
-08809,34,019,34019,6421,2154,22361278,16640232,6421,2154,22361278,16640232,128349,49487,1132957142,1108046234,100,100,100,100,5,4.35,1.97,1.5
-08810,34,023,34023,8401,2830,19240643,18775158,8401,2830,19240643,18775158,809858,294800,836117569,800083087,100,100,100,100,1.04,0.96,2.3,2.35
-08812,34,023,34023,7227,2683,2714765,2714765,14296,5090,13711705,13690700,809858,294800,836117569,800083087,50.55,52.71,19.8,19.83,0.89,0.91,0.32,0.34
-08812,34,035,34035,7005,2378,10832430,10811425,14296,5090,13711705,13690700,323444,123127,789576096,781692692,49,46.72,79,78.97,2.17,1.93,1.37,1.38
-08812,34,039,34039,64,29,164510,164510,14296,5090,13711705,13690700,536499,199489,272988244,266393116,0.45,0.57,1.2,1.2,0.01,0.01,0.06,0.06
-08816,34,023,34023,46298,16942,54494653,53199416,46298,16942,54494653,53199416,809858,294800,836117569,800083087,100,100,100,100,5.72,5.75,6.52,6.65
-08817,34,023,34023,44621,16292,28183071,27663590,44621,16292,28183071,27663590,809858,294800,836117569,800083087,100,100,100,100,5.51,5.53,3.37,3.46
-08820,34,023,34023,39590,13557,26700038,26674707,39590,13557,26700038,26674707,809858,294800,836117569,800083087,100,100,100,100,4.89,4.6,3.19,3.33
-08821,34,035,34035,354,136,774756,774756,354,136,774756,774756,323444,123127,789576096,781692692,100,100,100,100,0.11,0.11,0.1,0.1
-08822,34,019,34019,30354,11659,165799376,165008669,30354,11659,165799376,165008669,128349,49487,1132957142,1108046234,100,100,100,100,23.65,23.56,14.63,14.89
-08823,34,035,34035,9016,3756,9077301,9059396,9016,3756,9077301,9059396,323444,123127,789576096,781692692,100,100,100,100,2.79,3.05,1.15,1.16
-08824,34,023,34023,12115,4002,10047720,10044432,12115,4002,10047720,10044432,809858,294800,836117569,800083087,100,100,100,100,1.5,1.36,1.2,1.26
-08825,34,019,34019,4707,1980,76294709,75413763,4707,1980,76294709,75413763,128349,49487,1132957142,1108046234,100,100,100,100,3.67,4,6.73,6.81
-08826,34,019,34019,5838,2230,53871673,53680336,5838,2230,53871673,53680336,128349,49487,1132957142,1108046234,100,100,100,100,4.55,4.51,4.75,4.84
-08827,34,019,34019,4322,1671,44086494,43756787,4629,1774,48833892,48488945,128349,49487,1132957142,1108046234,93.37,94.19,90.28,90.24,3.37,3.38,3.89,3.95
-08827,34,041,34041,307,103,4747398,4732158,4629,1774,48833892,48488945,108692,44925,939795832,924412063,6.63,5.81,9.72,9.76,0.28,0.23,0.51,0.51
-08828,34,023,34023,2178,920,2349464,2200991,2178,920,2349464,2200991,809858,294800,836117569,800083087,100,100,100,100,0.27,0.31,0.28,0.28
-08829,34,019,34019,3725,1508,6508773,6399389,3725,1508,6508773,6399389,128349,49487,1132957142,1108046234,100,100,100,100,2.9,3.05,0.57,0.58
-08830,34,023,34023,18459,6642,8234006,8231293,18459,6642,8234006,8231293,809858,294800,836117569,800083087,100,100,100,100,2.28,2.25,0.98,1.03
-08831,34,023,34023,45620,20505,131487460,130529772,45620,20505,131487460,130529772,809858,294800,836117569,800083087,100,100,100,100,5.63,6.96,15.73,16.31
-08832,34,023,34023,2863,1083,4307430,3758573,2863,1083,4307430,3758573,809858,294800,836117569,800083087,100,100,100,100,0.35,0.37,0.52,0.47
-08833,34,019,34019,8796,3375,95705663,86401278,8796,3375,95705663,86401278,128349,49487,1132957142,1108046234,100,100,100,100,6.85,6.82,8.45,7.8
-08835,34,035,34035,10344,4277,6342175,6113833,10344,4277,6342175,6113833,323444,123127,789576096,781692692,100,100,100,100,3.2,3.47,0.8,0.78
-08836,34,035,34035,3845,1412,12307827,12212500,3845,1412,12307827,12212500,323444,123127,789576096,781692692,100,100,100,100,1.19,1.15,1.56,1.56
-08837,34,023,34023,15847,6480,25261232,23458757,15847,6480,25261232,23458757,809858,294800,836117569,800083087,100,100,100,100,1.96,2.2,3.02,2.93
-08840,34,023,34023,16558,6416,8061491,8055168,16558,6416,8061491,8055168,809858,294800,836117569,800083087,100,100,100,100,2.04,2.18,0.96,1.01
-08844,34,035,34035,38367,14061,143737178,142458989,38367,14061,143737178,142458989,323444,123127,789576096,781692692,100,100,100,100,11.86,11.42,18.2,18.22
-08846,34,023,34023,13635,5148,9168620,9110608,13635,5148,9168620,9110608,809858,294800,836117569,800083087,100,100,100,100,1.68,1.75,1.1,1.14
-08848,34,019,34019,8435,3317,88131288,86300829,8435,3317,88131288,86300829,128349,49487,1132957142,1108046234,100,100,100,100,6.57,6.7,7.78,7.79
-08850,34,023,34023,8281,3182,6635834,6355951,8281,3182,6635834,6355951,809858,294800,836117569,800083087,100,100,100,100,1.02,1.08,0.79,0.79
-08852,34,023,34023,17220,6492,36641589,36438952,17220,6492,36641589,36438952,809858,294800,836117569,800083087,100,100,100,100,2.13,2.2,4.38,4.55
-08853,34,019,34019,630,217,5726454,5688574,5247,1875,28263071,27916194,128349,49487,1132957142,1108046234,12.01,11.57,20.26,20.38,0.49,0.44,0.51,0.51
-08853,34,035,34035,4617,1658,22536617,22227620,5247,1875,28263071,27916194,323444,123127,789576096,781692692,87.99,88.43,79.74,79.62,1.43,1.35,2.85,2.84
-08854,34,023,34023,55961,17753,49270169,48766453,55961,17753,49270169,48766453,809858,294800,836117569,800083087,100,100,100,100,6.91,6.02,5.89,6.1
-08857,34,023,34023,39898,14997,63546248,62820428,39898,14997,63546248,62820428,809858,294800,836117569,800083087,100,100,100,100,4.93,5.09,7.6,7.85
-08858,34,019,34019,144,80,7191429,7101553,144,80,7191429,7101553,128349,49487,1132957142,1108046234,100,100,100,100,0.11,0.16,0.63,0.64
-08859,34,023,34023,21526,8235,11922360,11677957,21526,8235,11922360,11677957,809858,294800,836117569,800083087,100,100,100,100,2.66,2.79,1.43,1.46
-08861,34,023,34023,53099,17391,16699241,13448417,53099,17391,16699241,13448417,809858,294800,836117569,800083087,100,100,100,100,6.56,5.9,2,1.68
-08863,34,023,34023,12320,4740,6892767,6559395,12320,4740,6892767,6559395,809858,294800,836117569,800083087,100,100,100,100,1.52,1.61,0.82,0.82
-08865,34,041,34041,29840,12895,113829872,111455506,29840,12895,113829872,111455506,108692,44925,939795832,924412063,100,100,100,100,27.45,28.7,12.11,12.06
-08867,34,019,34019,5042,1830,75830510,75603410,5042,1830,75830510,75603410,128349,49487,1132957142,1108046234,100,100,100,100,3.93,3.7,6.69,6.82
-08869,34,035,34035,6881,2847,5275989,5162398,6881,2847,5275989,5162398,323444,123127,789576096,781692692,100,100,100,100,2.13,2.31,0.67,0.66
-08872,34,023,34023,18811,7269,26313132,23172507,18811,7269,26313132,23172507,809858,294800,836117569,800083087,100,100,100,100,2.32,2.47,3.15,2.9
-08873,34,035,34035,49921,19455,84672867,83604069,49921,19455,84672867,83604069,323444,123127,789576096,781692692,100,100,100,100,15.43,15.8,10.72,10.7
-08876,34,019,34019,239,124,3811816,3719165,22179,8836,39818757,39361716,128349,49487,1132957142,1108046234,1.08,1.4,9.57,9.45,0.19,0.25,0.34,0.34
-08876,34,035,34035,21940,8712,36006941,35642551,22179,8836,39818757,39361716,323444,123127,789576096,781692692,98.92,98.6,90.43,90.55,6.78,7.08,4.56,4.56
-08879,34,023,34023,23537,9383,20402571,18577384,23537,9383,20402571,18577384,809858,294800,836117569,800083087,100,100,100,100,2.91,3.18,2.44,2.32
-08880,34,035,34035,4563,1865,1954725,1704415,4563,1865,1954725,1704415,323444,123127,789576096,781692692,100,100,100,100,1.41,1.51,0.25,0.22
-08882,34,023,34023,16008,5957,7556620,7171382,16008,5957,7556620,7171382,809858,294800,836117569,800083087,100,100,100,100,1.98,2.02,0.9,0.9
-08884,34,023,34023,8257,3242,6402163,5871602,8257,3242,6402163,5871602,809858,294800,836117569,800083087,100,100,100,100,1.02,1.1,0.77,0.73
-08886,34,041,34041,7077,2504,39495659,39350596,7077,2504,39495659,39350596,108692,44925,939795832,924412063,100,100,100,100,6.51,5.57,4.2,4.26
-08887,34,019,34019,1106,583,1879524,1852162,1106,583,1879524,1852162,128349,49487,1132957142,1108046234,100,100,100,100,0.86,1.18,0.17,0.17
-08889,34,019,34019,10063,3874,64912636,64545037,10063,3874,64912636,64545037,128349,49487,1132957142,1108046234,100,100,100,100,7.84,7.83,5.73,5.83
-08890,34,035,34035,17,13,577854,454730,17,13,577854,454730,323444,123127,789576096,781692692,100,100,100,100,0.01,0.01,0.07,0.06
-08901,34,023,34023,55223,15053,18050331,16391704,55223,15053,18050331,16391704,809858,294800,836117569,800083087,100,100,100,100,6.82,5.11,2.16,2.05
-08902,34,023,34023,41153,15250,35864446,35258109,41153,15250,35864446,35258109,809858,294800,836117569,800083087,100,100,100,100,5.08,5.17,4.29,4.41
-08904,34,023,34023,13982,6203,4712411,4685924,13982,6203,4712411,4685924,809858,294800,836117569,800083087,100,100,100,100,1.73,2.1,0.56,0.59
-10001,36,061,36061,21102,12476,1609401,1609401,21102,12476,1609401,1609401,1585873,847090,86999364,59126033,100,100,100,100,1.33,1.47,1.85,2.72
-10002,36,061,36061,81410,34541,2277670,2277670,81410,34541,2277670,2277670,1585873,847090,86999364,59126033,100,100,100,100,5.13,4.08,2.62,3.85
-10003,36,061,36061,56024,31078,1493004,1493004,56024,31078,1493004,1493004,1585873,847090,86999364,59126033,100,100,100,100,3.53,3.67,1.72,2.53
-10004,36,061,36061,3089,2197,1449744,1449744,3089,2197,1449744,1449744,1585873,847090,86999364,59126033,100,100,100,100,0.19,0.26,1.67,2.45
-10005,36,061,36061,7135,5317,190416,190416,7135,5317,190416,190416,1585873,847090,86999364,59126033,100,100,100,100,0.45,0.63,0.22,0.32
-10006,36,061,36061,3011,1991,237784,237784,3011,1991,237784,237784,1585873,847090,86999364,59126033,100,100,100,100,0.19,0.24,0.27,0.4
-10007,36,061,36061,6988,3143,423358,423358,6988,3143,423358,423358,1585873,847090,86999364,59126033,100,100,100,100,0.44,0.37,0.49,0.72
-10009,36,061,36061,61347,31709,1596985,1596985,61347,31709,1596985,1596985,1585873,847090,86999364,59126033,100,100,100,100,3.87,3.74,1.84,2.7
-10010,36,061,36061,31834,18030,1011819,1011819,31834,18030,1011819,1011819,1585873,847090,86999364,59126033,100,100,100,100,2.01,2.13,1.16,1.71
-10011,36,061,36061,50984,33252,1705243,1705243,50984,33252,1705243,1705243,1585873,847090,86999364,59126033,100,100,100,100,3.21,3.93,1.96,2.88
-10012,36,061,36061,24090,14633,837301,837301,24090,14633,837301,837301,1585873,847090,86999364,59126033,100,100,100,100,1.52,1.73,0.96,1.42
-10013,36,061,36061,27700,13460,1430444,1430444,27700,13460,1430444,1430444,1585873,847090,86999364,59126033,100,100,100,100,1.75,1.59,1.64,2.42
-10014,36,061,36061,31959,21689,1474952,1474952,31959,21689,1474952,1474952,1585873,847090,86999364,59126033,100,100,100,100,2.02,2.56,1.7,2.49
-10016,36,061,36061,54183,35617,1378326,1378326,54183,35617,1378326,1378326,1585873,847090,86999364,59126033,100,100,100,100,3.42,4.2,1.58,2.33
-10017,36,061,36061,16575,12875,829152,829152,16575,12875,829152,829152,1585873,847090,86999364,59126033,100,100,100,100,1.05,1.52,0.95,1.4
-10018,36,061,36061,5229,4425,833392,833392,5229,4425,833392,833392,1585873,847090,86999364,59126033,100,100,100,100,0.33,0.52,0.96,1.41
-10019,36,061,36061,42870,31404,1761259,1761259,42870,31404,1761259,1761259,1585873,847090,86999364,59126033,100,100,100,100,2.7,3.71,2.02,2.98
-10020,36,061,36061,0,0,71560,71560,0,0,71560,71560,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.08,0.12
-10021,36,061,36061,43631,28628,1002597,1002597,43631,28628,1002597,1002597,1585873,847090,86999364,59126033,100,100,100,100,2.75,3.38,1.15,1.7
-10022,36,061,36061,31924,23485,1130199,1130199,31924,23485,1130199,1130199,1585873,847090,86999364,59126033,100,100,100,100,2.01,2.77,1.3,1.91
-10023,36,061,36061,60998,39402,1270408,1270408,60998,39402,1270408,1270408,1585873,847090,86999364,59126033,100,100,100,100,3.85,4.65,1.46,2.15
-10024,36,061,36061,59283,33952,2221831,2221831,59283,33952,2221831,2221831,1585873,847090,86999364,59126033,100,100,100,100,3.74,4.01,2.55,3.76
-10025,36,061,36061,94600,47617,1946717,1946717,94600,47617,1946717,1946717,1585873,847090,86999364,59126033,100,100,100,100,5.97,5.62,2.24,3.29
-10026,36,061,36061,34003,15823,860745,860745,34003,15823,860745,860745,1585873,847090,86999364,59126033,100,100,100,100,2.14,1.87,0.99,1.46
-10027,36,061,36061,59707,25071,2257092,2257092,59707,25071,2257092,2257092,1585873,847090,86999364,59126033,100,100,100,100,3.76,2.96,2.59,3.82
-10028,36,061,36061,45141,28139,813698,813698,45141,28139,813698,813698,1585873,847090,86999364,59126033,100,100,100,100,2.85,3.32,0.94,1.38
-10029,36,061,36061,76003,31121,2136945,2136945,76003,31121,2136945,2136945,1585873,847090,86999364,59126033,100,100,100,100,4.79,3.67,2.46,3.61
-10030,36,061,36061,26999,12976,722465,722465,26999,12976,722465,722465,1585873,847090,86999364,59126033,100,100,100,100,1.7,1.53,0.83,1.22
-10031,36,061,36061,56438,22604,1685544,1685544,56438,22604,1685544,1685544,1585873,847090,86999364,59126033,100,100,100,100,3.56,2.67,1.94,2.85
-10032,36,061,36061,57331,21417,1702842,1702842,57331,21417,1702842,1702842,1585873,847090,86999364,59126033,100,100,100,100,3.62,2.53,1.96,2.88
-10033,36,061,36061,53926,20116,1565761,1565761,53926,20116,1565761,1565761,1585873,847090,86999364,59126033,100,100,100,100,3.4,2.37,1.8,2.65
-10034,36,061,36061,38908,15671,2917184,2917184,38908,15671,2917184,2917184,1585873,847090,86999364,59126033,100,100,100,100,2.45,1.85,3.35,4.93
-10035,36,061,36061,33969,13935,3616216,3616216,33969,13935,3616216,3616216,1585873,847090,86999364,59126033,100,100,100,100,2.14,1.65,4.16,6.12
-10036,36,061,36061,24711,17958,1148108,1148108,24711,17958,1148108,1148108,1585873,847090,86999364,59126033,100,100,100,100,1.56,2.12,1.32,1.94
-10037,36,061,36061,17416,9451,683722,683722,17416,9451,683722,683722,1585873,847090,86999364,59126033,100,100,100,100,1.1,1.12,0.79,1.16
-10038,36,061,36061,20300,10211,770757,770757,20300,10211,770757,770757,1585873,847090,86999364,59126033,100,100,100,100,1.28,1.21,0.89,1.3
-10039,36,061,36061,24527,10868,1199364,1199364,24527,10868,1199364,1199364,1585873,847090,86999364,59126033,100,100,100,100,1.55,1.28,1.38,2.03
-10040,36,061,36061,41905,16506,976162,976162,41905,16506,976162,976162,1585873,847090,86999364,59126033,100,100,100,100,2.64,1.95,1.12,1.65
-10044,36,061,36061,11661,4913,625938,625938,11661,4913,625938,625938,1585873,847090,86999364,59126033,100,100,100,100,0.74,0.58,0.72,1.06
-10065,36,061,36061,32270,22754,1000544,1000544,32270,22754,1000544,1000544,1585873,847090,86999364,59126033,100,100,100,100,2.03,2.69,1.15,1.69
-10069,36,061,36061,5199,3146,269802,269802,5199,3146,269802,269802,1585873,847090,86999364,59126033,100,100,100,100,0.33,0.37,0.31,0.46
-10075,36,061,36061,26121,16493,477958,477958,26121,16493,477958,477958,1585873,847090,86999364,59126033,100,100,100,100,1.65,1.95,0.55,0.81
-10103,36,061,36061,3,0,24776,24776,3,0,24776,24776,1585873,847090,86999364,59126033,100,0,100,100,0,0,0.03,0.04
-10110,36,061,36061,0,0,26711,26711,0,0,26711,26711,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.03,0.05
-10111,36,061,36061,0,0,9576,9576,0,0,9576,9576,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10112,36,061,36061,0,0,15253,15253,0,0,15253,15253,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.02,0.03
-10115,36,061,36061,0,0,6618,6618,0,0,6618,6618,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.01
-10119,36,061,36061,92,0,42613,42613,92,0,42613,42613,1585873,847090,86999364,59126033,100,0,100,100,0.01,0,0.05,0.07
-10128,36,061,36061,60453,35240,1219025,1219025,60453,35240,1219025,1219025,1585873,847090,86999364,59126033,100,100,100,100,3.81,4.16,1.4,2.06
-10152,36,061,36061,0,0,12423,12423,0,0,12423,12423,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10153,36,061,36061,0,0,12281,12281,0,0,12281,12281,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10154,36,061,36061,0,0,12382,12382,0,0,12382,12382,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10162,36,061,36061,1685,824,29442,29442,1685,824,29442,29442,1585873,847090,86999364,59126033,100,100,100,100,0.11,0.1,0.03,0.05
-10165,36,061,36061,2,2,13058,13058,2,2,13058,13058,1585873,847090,86999364,59126033,100,100,100,100,0,0,0.02,0.02
-10167,36,061,36061,0,0,12396,12396,0,0,12396,12396,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10168,36,061,36061,0,0,13211,13211,0,0,13211,13211,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.02,0.02
-10169,36,061,36061,0,0,9924,9924,0,0,9924,9924,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10170,36,061,36061,2,0,24921,24921,2,0,24921,24921,1585873,847090,86999364,59126033,100,0,100,100,0,0,0.03,0.04
-10171,36,061,36061,0,0,12470,12470,0,0,12470,12470,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10172,36,061,36061,0,0,12415,12415,0,0,12415,12415,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10173,36,061,36061,2,0,12297,12297,2,0,12297,12297,1585873,847090,86999364,59126033,100,0,100,100,0,0,0.01,0.02
-10174,36,061,36061,0,0,13224,13224,0,0,13224,13224,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.02,0.02
-10177,36,061,36061,0,0,5421,5421,0,0,5421,5421,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.01
-10199,36,061,36061,9,1,66729,66729,9,1,66729,66729,1585873,847090,86999364,59126033,100,100,100,100,0,0,0.08,0.11
-10271,36,061,36061,0,0,6779,6779,0,0,6779,6779,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.01
-10278,36,061,36061,0,0,33630,33630,0,0,33630,33630,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.04,0.06
-10279,36,061,36061,0,0,10805,10805,0,0,10805,10805,1585873,847090,86999364,59126033,0,0,100,100,0,0,0.01,0.02
-10280,36,061,36061,7853,4962,358650,358650,7853,4962,358650,358650,1585873,847090,86999364,59126033,100,100,100,100,0.5,0.59,0.41,0.61
-10282,36,061,36061,4783,2484,226578,226578,4783,2484,226578,226578,1585873,847090,86999364,59126033,100,100,100,100,0.3,0.29,0.26,0.38
-10301,36,085,36085,39706,16261,9492860,9476759,39706,16261,9492860,9476759,468730,176656,264933484,151178512,100,100,100,100,8.47,9.2,3.58,6.27
-10302,36,085,36085,19088,6427,3093431,3093431,19088,6427,3093431,3093431,468730,176656,264933484,151178512,100,100,100,100,4.07,3.64,1.17,2.05
-10303,36,085,36085,26337,8811,8198761,8125465,26337,8811,8198761,8125465,468730,176656,264933484,151178512,100,100,100,100,5.62,4.99,3.09,5.37
-10304,36,085,36085,42193,15467,10054884,10035690,42193,15467,10054884,10035690,468730,176656,264933484,151178512,100,100,100,100,9,8.76,3.8,6.64
-10305,36,085,36085,41749,16187,11075388,11011994,41749,16187,11075388,11011994,468730,176656,264933484,151178512,100,100,100,100,8.91,9.16,4.18,7.28
-10306,36,085,36085,55909,22017,19507737,19355176,55909,22017,19507737,19355176,468730,176656,264933484,151178512,100,100,100,100,11.93,12.46,7.36,12.8
-10307,36,085,36085,14096,5354,5099353,5082132,14096,5354,5099353,5082132,468730,176656,264933484,151178512,100,100,100,100,3.01,3.03,1.92,3.36
-10308,36,085,36085,27357,10715,5122516,5110510,27357,10715,5122516,5110510,468730,176656,264933484,151178512,100,100,100,100,5.84,6.07,1.93,3.38
-10309,36,085,36085,32519,11686,17510321,17402201,32519,11686,17510321,17402201,468730,176656,264933484,151178512,100,100,100,100,6.94,6.62,6.61,11.51
-10310,36,085,36085,24962,9043,4650151,4650151,24962,9043,4650151,4650151,468730,176656,264933484,151178512,100,100,100,100,5.33,5.12,1.76,3.08
-10311,36,085,36085,0,0,122886,122886,0,0,122886,122886,468730,176656,264933484,151178512,0,0,100,100,0,0,0.05,0.08
-10312,36,085,36085,59304,22155,20256953,19887900,59304,22155,20256953,19887900,468730,176656,264933484,151178512,100,100,100,100,12.65,12.54,7.65,13.16
-10314,36,085,36085,85510,32533,37189316,35520695,85510,32533,37189316,35520695,468730,176656,264933484,151178512,100,100,100,100,18.24,18.42,14.04,23.5
-10451,36,005,36005,45713,17779,2631506,2628487,45713,17779,2631506,2628487,1385108,511896,148867137,109028908,100,100,100,100,3.3,3.47,1.77,2.41
-10452,36,005,36005,75371,25866,2550148,2550148,75371,25866,2550148,2550148,1385108,511896,148867137,109028908,100,100,100,100,5.44,5.05,1.71,2.34
-10453,36,005,36005,78309,27018,2385137,2372412,78309,27018,2385137,2372412,1385108,511896,148867137,109028908,100,100,100,100,5.65,5.28,1.6,2.18
-10454,36,005,36005,37337,12772,2699702,2699702,37337,12772,2699702,2699702,1385108,511896,148867137,109028908,100,100,100,100,2.7,2.5,1.81,2.48
-10455,36,005,36005,39665,13851,1844518,1844518,39665,13851,1844518,1844518,1385108,511896,148867137,109028908,100,100,100,100,2.86,2.71,1.24,1.69
-10456,36,005,36005,86547,29651,2637787,2637787,86547,29651,2637787,2637787,1385108,511896,148867137,109028908,100,100,100,100,6.25,5.79,1.77,2.42
-10457,36,005,36005,70496,24364,2748734,2748734,70496,24364,2748734,2748734,1385108,511896,148867137,109028908,100,100,100,100,5.09,4.76,1.85,2.52
-10458,36,005,36005,79492,27806,2613249,2613249,79492,27806,2613249,2613249,1385108,511896,148867137,109028908,100,100,100,100,5.74,5.43,1.76,2.4
-10459,36,005,36005,47308,16496,2115928,2115928,47308,16496,2115928,2115928,1385108,511896,148867137,109028908,100,100,100,100,3.42,3.22,1.42,1.94
-10460,36,005,36005,57311,20706,3407078,3407078,57311,20706,3407078,3407078,1385108,511896,148867137,109028908,100,100,100,100,4.14,4.04,2.29,3.12
-10461,36,005,36005,50502,21127,6215148,6215148,50502,21127,6215148,6215148,1385108,511896,148867137,109028908,100,100,100,100,3.65,4.13,4.17,5.7
-10462,36,005,36005,75784,31331,3844911,3833088,75784,31331,3844911,3833088,1385108,511896,148867137,109028908,100,100,100,100,5.47,6.12,2.58,3.52
-10463,36,005,36005,59507,26885,3785897,3439523,67970,30368,4091782,3745408,1385108,511896,148867137,109028908,87.55,88.53,92.52,91.83,4.3,5.25,2.54,3.15
-10463,36,061,36061,8463,3483,305885,305885,67970,30368,4091782,3745408,1585873,847090,86999364,59126033,12.45,11.47,7.48,8.17,0.53,0.41,0.35,0.52
-10464,36,005,36005,4534,2272,9307232,9070627,4534,2272,9307232,9070627,1385108,511896,148867137,109028908,100,100,100,100,0.33,0.44,6.25,8.32
-10465,36,005,36005,42230,16889,8882946,8882828,42230,16889,8882946,8882828,1385108,511896,148867137,109028908,100,100,100,100,3.05,3.3,5.97,8.15
-10466,36,005,36005,67813,24854,5232750,5227062,67813,24854,5232750,5227062,1385108,511896,148867137,109028908,100,100,100,100,4.9,4.86,3.52,4.79
-10467,36,005,36005,97060,37432,6035762,6035762,97060,37432,6035762,6035762,1385108,511896,148867137,109028908,100,100,100,100,7.01,7.31,4.05,5.54
-10468,36,005,36005,76103,26178,2829953,2784853,76103,26178,2829953,2784853,1385108,511896,148867137,109028908,100,100,100,100,5.49,5.11,1.9,2.55
-10469,36,005,36005,66631,24078,6414680,6414680,66631,24078,6414680,6414680,1385108,511896,148867137,109028908,100,100,100,100,4.81,4.7,4.31,5.88
-10470,36,005,36005,15293,6882,3693868,3689950,15293,6882,3693868,3689950,1385108,511896,148867137,109028908,100,100,100,100,1.1,1.34,2.48,3.38
-10471,36,005,36005,22922,10054,6715432,6687174,22922,10054,6715432,6687174,1385108,511896,148867137,109028908,100,100,100,100,1.65,1.96,4.51,6.13
-10472,36,005,36005,66358,23386,2720837,2720837,66358,23386,2720837,2720837,1385108,511896,148867137,109028908,100,100,100,100,4.79,4.57,1.83,2.5
-10473,36,005,36005,58519,21323,5659472,5645604,58519,21323,5659472,5645604,1385108,511896,148867137,109028908,100,100,100,100,4.22,4.17,3.8,5.18
-10474,36,005,36005,12281,3985,3970898,3970898,12281,3985,3970898,3970898,1385108,511896,148867137,109028908,100,100,100,100,0.89,0.78,2.67,3.64
-10475,36,005,36005,40931,18911,4713672,4463108,40931,18911,4713672,4463108,1385108,511896,148867137,109028908,100,100,100,100,2.96,3.69,3.17,4.09
-10501,36,119,36119,1219,395,3628339,3624479,1219,395,3628339,3624479,949113,370821,1294981560,1114982482,100,100,100,100,0.13,0.11,0.28,0.33
-10502,36,119,36119,5487,1973,5491263,5491263,5487,1973,5491263,5491263,949113,370821,1294981560,1114982482,100,100,100,100,0.58,0.53,0.42,0.49
-10503,36,119,36119,108,84,38497,38497,108,84,38497,38497,949113,370821,1294981560,1114982482,100,100,100,100,0.01,0.02,0,0
-10504,36,119,36119,7987,2735,47168477,42167008,7987,2735,47168477,42167008,949113,370821,1294981560,1114982482,100,100,100,100,0.84,0.74,3.64,3.78
-10505,36,119,36119,851,233,1689634,1689634,851,233,1689634,1689634,949113,370821,1294981560,1114982482,100,100,100,100,0.09,0.06,0.13,0.15
-10506,36,119,36119,5790,2139,42930158,42345182,5790,2139,42930158,42345182,949113,370821,1294981560,1114982482,100,100,100,100,0.61,0.58,3.32,3.8
-10507,36,119,36119,6408,2209,19054660,18925701,6408,2209,19054660,18925701,949113,370821,1294981560,1114982482,100,100,100,100,0.68,0.6,1.47,1.7
-10509,36,079,36079,19434,7417,102121214,93457823,19507,7457,102160578,93497187,99710,38224,637786933,596504166,99.63,99.46,99.96,99.96,19.49,19.4,16.01,15.67
-10509,36,119,36119,73,40,39364,39364,19507,7457,102160578,93497187,949113,370821,1294981560,1114982482,0.37,0.54,0.04,0.04,0.01,0.01,0,0
-10510,36,119,36119,9988,3562,26003951,25699181,9988,3562,26003951,25699181,949113,370821,1294981560,1114982482,100,100,100,100,1.05,0.96,2.01,2.3
-10511,36,119,36119,2246,943,3944602,3796934,2246,943,3944602,3796934,949113,370821,1294981560,1114982482,100,100,100,100,0.24,0.25,0.3,0.34
-10512,36,079,36079,25590,10241,156176330,141305626,25590,10241,156176330,141305626,99710,38224,637786933,596504166,100,100,100,100,25.66,26.79,24.49,23.69
-10514,36,119,36119,11946,4033,33540150,33207916,11946,4033,33540150,33207916,949113,370821,1294981560,1114982482,100,100,100,100,1.26,1.09,2.59,2.98
-10516,36,079,36079,5289,2412,83214063,81617955,5289,2412,83214063,81617955,99710,38224,637786933,596504166,100,100,100,100,5.3,6.31,13.05,13.68
-10517,36,119,36119,539,224,850209,850209,539,224,850209,850209,949113,370821,1294981560,1114982482,100,100,100,100,0.06,0.06,0.07,0.08
-10518,36,119,36119,1268,466,9070295,8929933,1268,466,9070295,8929933,949113,370821,1294981560,1114982482,100,100,100,100,0.13,0.13,0.7,0.8
-10519,36,119,36119,316,133,1993024,1927174,316,133,1993024,1927174,949113,370821,1294981560,1114982482,100,100,100,100,0.03,0.04,0.15,0.17
-10520,36,119,36119,12810,5540,39007260,35631980,12810,5540,39007260,35631980,949113,370821,1294981560,1114982482,100,100,100,100,1.35,1.49,3.01,3.2
-10522,36,119,36119,10875,4191,6293472,6291700,10875,4191,6293472,6291700,949113,370821,1294981560,1114982482,100,100,100,100,1.15,1.13,0.49,0.56
-10523,36,119,36119,7444,2676,9352723,9347439,7444,2676,9352723,9347439,949113,370821,1294981560,1114982482,100,100,100,100,0.78,0.72,0.72,0.84
-10524,36,079,36079,4421,1771,54715521,53875656,4421,1771,54715521,53875656,99710,38224,637786933,596504166,100,100,100,100,4.43,4.63,8.58,9.03
-10526,36,119,36119,1809,729,9904308,8528946,1809,729,9904308,8528946,949113,370821,1294981560,1114982482,100,100,100,100,0.19,0.2,0.76,0.76
-10527,36,119,36119,908,297,6351500,6331136,908,297,6351500,6331136,949113,370821,1294981560,1114982482,100,100,100,100,0.1,0.08,0.49,0.57
-10528,36,119,36119,12280,4885,9914558,9910757,12280,4885,9914558,9910757,949113,370821,1294981560,1114982482,100,100,100,100,1.29,1.32,0.77,0.89
-10530,36,119,36119,12604,6169,9935562,9913590,12604,6169,9935562,9913590,949113,370821,1294981560,1114982482,100,100,100,100,1.33,1.66,0.77,0.89
-10532,36,119,36119,4931,1743,4834526,4834526,4931,1743,4834526,4834526,949113,370821,1294981560,1114982482,100,100,100,100,0.52,0.47,0.37,0.43
-10533,36,119,36119,7322,2924,9345109,9207502,7322,2924,9345109,9207502,949113,370821,1294981560,1114982482,100,100,100,100,0.77,0.79,0.72,0.83
-10535,36,119,36119,555,239,1324123,1169775,555,239,1324123,1169775,949113,370821,1294981560,1114982482,100,100,100,100,0.06,0.06,0.1,0.1
-10536,36,119,36119,10739,3776,72072554,66377322,10739,3776,72072554,66377322,949113,370821,1294981560,1114982482,100,100,100,100,1.13,1.02,5.57,5.95
-10537,36,079,36079,2264,984,2520928,2274838,2416,1043,3035374,2789284,99710,38224,637786933,596504166,93.71,94.34,83.05,81.56,2.27,2.57,0.4,0.38
-10537,36,119,36119,152,59,514446,514446,2416,1043,3035374,2789284,949113,370821,1294981560,1114982482,6.29,5.66,16.95,18.44,0.02,0.02,0.04,0.05
-10538,36,119,36119,16597,6477,9441463,9309984,16597,6477,9441463,9309984,949113,370821,1294981560,1114982482,100,100,100,100,1.75,1.75,0.73,0.83
-10541,36,079,36079,25135,8983,66349434,62173002,26339,9425,68730988,64465346,99710,38224,637786933,596504166,95.43,95.31,96.53,96.44,25.21,23.5,10.4,10.42
-10541,36,119,36119,1204,442,2381554,2292344,26339,9425,68730988,64465346,949113,370821,1294981560,1114982482,4.57,4.69,3.47,3.56,0.13,0.12,0.18,0.21
-10543,36,119,36119,20135,7971,11055807,10581252,20135,7971,11055807,10581252,949113,370821,1294981560,1114982482,100,100,100,100,2.12,2.15,0.85,0.95
-10545,36,119,36119,141,1,326173,326173,141,1,326173,326173,949113,370821,1294981560,1114982482,100,100,100,100,0.01,0,0.03,0.03
-10546,36,119,36119,1277,476,2921506,2908559,1277,476,2921506,2908559,949113,370821,1294981560,1114982482,100,100,100,100,0.13,0.13,0.23,0.26
-10547,36,119,36119,7647,2851,13635111,13120787,7647,2851,13635111,13120787,949113,370821,1294981560,1114982482,100,100,100,100,0.81,0.77,1.05,1.18
-10548,36,119,36119,3487,1190,6364353,6067787,3487,1190,6364353,6067787,949113,370821,1294981560,1114982482,100,100,100,100,0.37,0.32,0.49,0.54
-10549,36,119,36119,16638,6305,51349016,49697618,16638,6305,51349016,49697618,949113,370821,1294981560,1114982482,100,100,100,100,1.75,1.7,3.97,4.46
-10550,36,119,36119,37144,15563,5178362,5145599,37144,15563,5178362,5145599,949113,370821,1294981560,1114982482,100,100,100,100,3.91,4.2,0.4,0.46
-10552,36,119,36119,19786,9509,4303635,4291821,19786,9509,4303635,4291821,949113,370821,1294981560,1114982482,100,100,100,100,2.08,2.56,0.33,0.38
-10553,36,119,36119,10170,3812,1790573,1790573,10170,3812,1790573,1790573,949113,370821,1294981560,1114982482,100,100,100,100,1.07,1.03,0.14,0.16
-10560,36,119,36119,4737,1905,57528609,54013618,4737,1905,57528609,54013618,949113,370821,1294981560,1114982482,100,100,100,100,0.5,0.51,4.44,4.84
-10562,36,119,36119,31796,11349,37122347,35699633,31796,11349,37122347,35699633,949113,370821,1294981560,1114982482,100,100,100,100,3.35,3.06,2.87,3.2
-10566,36,119,36119,23570,9705,11928575,11322930,23570,9705,11928575,11322930,949113,370821,1294981560,1114982482,100,100,100,100,2.48,2.62,0.92,1.02
-10567,36,119,36119,19929,6907,58507674,57335255,19929,6907,58507674,57335255,949113,370821,1294981560,1114982482,100,100,100,100,2.1,1.86,4.52,5.14
-10570,36,119,36119,12680,4357,17076982,16882808,12680,4357,17076982,16882808,949113,370821,1294981560,1114982482,100,100,100,100,1.34,1.17,1.32,1.51
-10573,36,119,36119,38352,13662,14449105,14183493,38352,13662,14449105,14183493,949113,370821,1294981560,1114982482,100,100,100,100,4.04,3.68,1.12,1.27
-10576,36,119,36119,5116,2118,60428295,58277925,5116,2118,60428295,58277925,949113,370821,1294981560,1114982482,100,100,100,100,0.54,0.57,4.67,5.23
-10577,36,119,36119,6552,855,17481840,17397482,6552,855,17481840,17397482,949113,370821,1294981560,1114982482,100,100,100,100,0.69,0.23,1.35,1.56
-10578,36,119,36119,681,252,4537861,4101865,681,252,4537861,4101865,949113,370821,1294981560,1114982482,100,100,100,100,0.07,0.07,0.35,0.37
-10579,36,079,36079,8675,3551,88493083,84879358,8675,3551,88493083,84879358,99710,38224,637786933,596504166,100,100,100,100,8.7,9.29,13.88,14.23
-10580,36,119,36119,17208,6475,23038956,21974258,17208,6475,23038956,21974258,949113,370821,1294981560,1114982482,100,100,100,100,1.81,1.75,1.78,1.97
-10583,36,119,36119,38982,14301,32116545,32018620,38982,14301,32116545,32018620,949113,370821,1294981560,1114982482,100,100,100,100,4.11,3.86,2.48,2.87
-10588,36,079,36079,82,24,1243639,1243639,2282,867,5239060,5169908,99710,38224,637786933,596504166,3.59,2.77,23.74,24.06,0.08,0.06,0.19,0.21
-10588,36,119,36119,2200,843,3995421,3926269,2282,867,5239060,5169908,949113,370821,1294981560,1114982482,96.41,97.23,76.26,75.94,0.23,0.23,0.31,0.35
-10589,36,119,36119,8475,3972,22030561,20708928,8475,3972,22030561,20708928,949113,370821,1294981560,1114982482,100,100,100,100,0.89,1.07,1.7,1.86
-10590,36,119,36119,6767,2683,36303982,34956345,6767,2683,36303982,34956345,949113,370821,1294981560,1114982482,100,100,100,100,0.71,0.72,2.8,3.14
-10591,36,119,36119,22540,9047,26211551,25614414,22540,9047,26211551,25614414,949113,370821,1294981560,1114982482,100,100,100,100,2.37,2.44,2.02,2.3
-10594,36,119,36119,5117,1694,6497495,6487422,5117,1694,6497495,6487422,949113,370821,1294981560,1114982482,100,100,100,100,0.54,0.46,0.5,0.58
-10595,36,119,36119,8195,2420,17835469,15473636,8195,2420,17835469,15473636,949113,370821,1294981560,1114982482,100,100,100,100,0.86,0.65,1.38,1.39
-10596,36,119,36119,1729,724,1760802,1611723,1729,724,1760802,1611723,949113,370821,1294981560,1114982482,100,100,100,100,0.18,0.2,0.14,0.14
-10597,36,119,36119,968,395,9293223,8647618,968,395,9293223,8647618,949113,370821,1294981560,1114982482,100,100,100,100,0.1,0.11,0.72,0.78
-10598,36,119,36119,28647,10644,76180642,68620383,28647,10644,76180642,68620383,949113,370821,1294981560,1114982482,100,100,100,100,3.02,2.87,5.88,6.15
-10601,36,119,36119,11376,6127,1640102,1640102,11376,6127,1640102,1640102,949113,370821,1294981560,1114982482,100,100,100,100,1.2,1.65,0.13,0.15
-10603,36,119,36119,17045,7070,8527679,8520506,17045,7070,8527679,8520506,949113,370821,1294981560,1114982482,100,100,100,100,1.8,1.91,0.66,0.76
-10604,36,119,36119,11250,4252,20889078,17645709,11250,4252,20889078,17645709,949113,370821,1294981560,1114982482,100,100,100,100,1.19,1.15,1.61,1.58
-10605,36,119,36119,18126,7508,13183281,13158332,18126,7508,13183281,13158332,949113,370821,1294981560,1114982482,100,100,100,100,1.91,2.02,1.02,1.18
-10606,36,119,36119,16499,6125,3912506,3912506,16499,6125,3912506,3912506,949113,370821,1294981560,1114982482,100,100,100,100,1.74,1.65,0.3,0.35
-10607,36,119,36119,6824,2374,5782792,5752851,6824,2374,5782792,5752851,949113,370821,1294981560,1114982482,100,100,100,100,0.72,0.64,0.45,0.52
-10701,36,119,36119,63393,25511,10940538,10940538,63393,25511,10940538,10940538,949113,370821,1294981560,1114982482,100,100,100,100,6.68,6.88,0.84,0.98
-10703,36,119,36119,20301,8007,4563135,4563135,20301,8007,4563135,4563135,949113,370821,1294981560,1114982482,100,100,100,100,2.14,2.16,0.35,0.41
-10704,36,119,36119,30165,13292,7274289,6918814,30165,13292,7274289,6918814,949113,370821,1294981560,1114982482,100,100,100,100,3.18,3.58,0.56,0.62
-10705,36,119,36119,38777,14554,5791204,5732006,38777,14554,5791204,5732006,949113,370821,1294981560,1114982482,100,100,100,100,4.09,3.92,0.45,0.51
-10706,36,119,36119,8679,3621,7494736,7494736,8679,3621,7494736,7494736,949113,370821,1294981560,1114982482,100,100,100,100,0.91,0.98,0.58,0.67
-10707,36,119,36119,10097,4356,3363600,3363600,10097,4356,3363600,3363600,949113,370821,1294981560,1114982482,100,100,100,100,1.06,1.17,0.26,0.3
-10708,36,119,36119,21225,9667,7975865,7972300,21225,9667,7975865,7972300,949113,370821,1294981560,1114982482,100,100,100,100,2.24,2.61,0.62,0.72
-10709,36,119,36119,9292,3781,3754237,3529311,9292,3781,3754237,3529311,949113,370821,1294981560,1114982482,100,100,100,100,0.98,1.02,0.29,0.32
-10710,36,119,36119,25120,10464,12537483,11863704,25120,10464,12537483,11863704,949113,370821,1294981560,1114982482,100,100,100,100,2.65,2.82,0.97,1.06
-10801,36,119,36119,40827,15154,8889383,8850509,40827,15154,8889383,8850509,949113,370821,1294981560,1114982482,100,100,100,100,4.3,4.09,0.69,0.79
-10803,36,119,36119,12435,4498,5688825,5668104,12435,4498,5688825,5668104,949113,370821,1294981560,1114982482,100,100,100,100,1.31,1.21,0.44,0.51
-10804,36,119,36119,14146,5183,11541889,11224987,14146,5183,11541889,11224987,949113,370821,1294981560,1114982482,100,100,100,100,1.49,1.4,0.89,1.01
-10805,36,119,36119,18414,7975,4523792,4469017,18414,7975,4523792,4469017,949113,370821,1294981560,1114982482,100,100,100,100,1.94,2.15,0.35,0.4
-10901,36,087,36087,23465,9391,46833693,46615179,23465,9391,46833693,46615179,311687,104057,516293354,449492975,100,100,100,100,7.53,9.02,9.07,10.37
-10910,36,071,36071,21,17,5497741,5388402,21,17,5497741,5388402,372813,137025,2172078974,2102256780,100,100,100,100,0.01,0.01,0.25,0.26
-10911,36,071,36071,2,2,2753454,2698775,2,2,2753454,2698775,372813,137025,2172078974,2102256780,100,100,100,100,0,0,0.13,0.13
-10913,36,087,36087,5532,1635,10967981,10695374,5532,1635,10967981,10695374,311687,104057,516293354,449492975,100,100,100,100,1.77,1.57,2.12,2.38
-10914,36,071,36071,414,155,6370630,6325876,414,155,6370630,6325876,372813,137025,2172078974,2102256780,100,100,100,100,0.11,0.11,0.29,0.3
-10915,36,071,36071,119,47,373883,373883,119,47,373883,373883,372813,137025,2172078974,2102256780,100,100,100,100,0.03,0.03,0.02,0.02
-10916,36,071,36071,4540,1500,52554404,52319620,4540,1500,52554404,52319620,372813,137025,2172078974,2102256780,100,100,100,100,1.22,1.09,2.42,2.49
-10917,36,071,36071,1968,709,9703256,9624014,1968,709,9703256,9624014,372813,137025,2172078974,2102256780,100,100,100,100,0.53,0.52,0.45,0.46
-10918,36,071,36071,11647,4254,86407618,85261669,11647,4254,86407618,85261669,372813,137025,2172078974,2102256780,100,100,100,100,3.12,3.1,3.98,4.06
-10919,36,071,36071,1040,380,10710880,10661353,1040,380,10710880,10661353,372813,137025,2172078974,2102256780,100,100,100,100,0.28,0.28,0.49,0.51
-10920,36,087,36087,8554,3012,13339028,10814581,8554,3012,13339028,10814581,311687,104057,516293354,449492975,100,100,100,100,2.74,2.89,2.58,2.41
-10921,36,071,36071,4135,1545,21050516,21008695,4135,1545,21050516,21008695,372813,137025,2172078974,2102256780,100,100,100,100,1.11,1.13,0.97,1
-10922,36,071,36071,1559,710,6082600,5889712,1559,710,6082600,5889712,372813,137025,2172078974,2102256780,100,100,100,100,0.42,0.52,0.28,0.28
-10923,36,087,36087,8732,3081,5185863,5093744,8732,3081,5185863,5093744,311687,104057,516293354,449492975,100,100,100,100,2.8,2.96,1,1.13
-10924,36,071,36071,13120,4819,99947359,99312601,13120,4819,99947359,99312601,372813,137025,2172078974,2102256780,100,100,100,100,3.52,3.52,4.6,4.72
-10925,36,071,36071,4539,2393,14369726,10076776,4539,2393,14369726,10076776,372813,137025,2172078974,2102256780,100,100,100,100,1.22,1.75,0.66,0.48
-10926,36,071,36071,3203,1305,14466343,13426644,3203,1305,14466343,13426644,372813,137025,2172078974,2102256780,100,100,100,100,0.86,0.95,0.67,0.64
-10927,36,087,36087,11910,3598,5308809,5092351,11910,3598,5308809,5092351,311687,104057,516293354,449492975,100,100,100,100,3.82,3.46,1.03,1.13
-10928,36,071,36071,4175,1934,14273921,14096143,4175,1934,14273921,14096143,372813,137025,2172078974,2102256780,100,100,100,100,1.12,1.41,0.66,0.67
-10930,36,071,36071,8958,3091,36381660,35938343,8958,3091,36381660,35938343,372813,137025,2172078974,2102256780,100,100,100,100,2.4,2.26,1.67,1.71
-10931,36,087,36087,1023,381,16709669,16606678,1023,381,16709669,16606678,311687,104057,516293354,449492975,100,100,100,100,0.33,0.37,3.24,3.69
-10932,36,071,36071,60,27,387540,386531,60,27,387540,386531,372813,137025,2172078974,2102256780,100,100,100,100,0.02,0.02,0.02,0.02
-10933,36,071,36071,473,158,2842025,2828798,473,158,2842025,2828798,372813,137025,2172078974,2102256780,100,100,100,100,0.13,0.12,0.13,0.13
-10940,36,071,36071,47784,18570,162584114,159812645,48418,18800,170842981,168071512,372813,137025,2172078974,2102256780,98.69,98.78,95.17,95.09,12.82,13.55,7.49,7.6
-10940,36,105,36105,634,230,8258867,8258867,48418,18800,170842981,168071512,77547,49186,2581499689,2507450206,1.31,1.22,4.83,4.91,0.82,0.47,0.32,0.33
-10941,36,071,36071,13779,5131,83457720,82948357,13779,5131,83457720,82948357,372813,137025,2172078974,2102256780,100,100,100,100,3.7,3.74,3.84,3.95
-10950,36,071,36071,47226,14106,98088023,94268120,47226,14106,98088023,94268120,372813,137025,2172078974,2102256780,100,100,100,100,12.67,10.29,4.52,4.48
-10952,36,087,36087,38917,9697,23703965,23654071,38917,9697,23703965,23654071,311687,104057,516293354,449492975,100,100,100,100,12.49,9.32,4.59,5.26
-10953,36,071,36071,252,116,2888921,2854241,252,116,2888921,2854241,372813,137025,2172078974,2102256780,100,100,100,100,0.07,0.08,0.13,0.14
-10954,36,087,36087,23045,8809,17832996,17820981,23045,8809,17832996,17820981,311687,104057,516293354,449492975,100,100,100,100,7.39,8.47,3.45,3.96
-10956,36,087,36087,31521,10600,42825387,41890589,31521,10600,42825387,41890589,311687,104057,516293354,449492975,100,100,100,100,10.11,10.19,8.29,9.32
-10958,36,071,36071,3291,1112,59580855,59221508,3291,1112,59580855,59221508,372813,137025,2172078974,2102256780,100,100,100,100,0.88,0.81,2.74,2.82
-10960,36,087,36087,15093,6638,10863017,10862399,15093,6638,10863017,10862399,311687,104057,516293354,449492975,100,100,100,100,4.84,6.38,2.1,2.42
-10962,36,087,36087,5950,1879,15916089,15184121,5950,1879,15916089,15184121,311687,104057,516293354,449492975,100,100,100,100,1.91,1.81,3.08,3.38
-10963,36,071,36071,4298,969,33157672,32820261,4298,969,33157672,32820261,372813,137025,2172078974,2102256780,100,100,100,100,1.15,0.71,1.53,1.56
-10964,36,087,36087,1472,601,6388185,6388185,1472,601,6388185,6388185,311687,104057,516293354,449492975,100,100,100,100,0.47,0.58,1.24,1.42
-10965,36,087,36087,14791,5599,14100359,13608978,14791,5599,14100359,13608978,311687,104057,516293354,449492975,100,100,100,100,4.75,5.38,2.73,3.03
-10968,36,087,36087,2353,1265,1516059,1504348,2353,1265,1516059,1504348,311687,104057,516293354,449492975,100,100,100,100,0.75,1.22,0.29,0.33
-10969,36,071,36071,1267,501,29081456,29061020,1267,501,29081456,29061020,372813,137025,2172078974,2102256780,100,100,100,100,0.34,0.37,1.34,1.38
-10970,36,087,36087,9993,3918,36523026,35656952,9993,3918,36523026,35656952,311687,104057,516293354,449492975,100,100,100,100,3.21,3.77,7.07,7.93
-10973,36,071,36071,2126,786,22075484,21742582,2126,786,22075484,21742582,372813,137025,2172078974,2102256780,100,100,100,100,0.57,0.57,1.02,1.03
-10974,36,087,36087,3152,1141,26102845,24125845,3152,1141,26102845,24125845,311687,104057,516293354,449492975,100,100,100,100,1.01,1.1,5.06,5.37
-10975,36,071,36071,281,173,15551365,15236998,281,173,15551365,15236998,372813,137025,2172078974,2102256780,100,100,100,100,0.08,0.13,0.72,0.72
-10976,36,087,36087,2258,642,2985716,2973733,2258,642,2985716,2973733,311687,104057,516293354,449492975,100,100,100,100,0.72,0.62,0.58,0.66
-10977,36,087,36087,59048,15891,28790837,28751003,59048,15891,28790837,28751003,311687,104057,516293354,449492975,100,100,100,100,18.94,15.27,5.58,6.4
-10979,36,071,36071,234,144,377418,377418,234,144,377418,377418,372813,137025,2172078974,2102256780,100,100,100,100,0.06,0.11,0.02,0.02
-10980,36,087,36087,13383,4973,64783867,63144330,13383,4973,64783867,63144330,311687,104057,516293354,449492975,100,100,100,100,4.29,4.78,12.55,14.05
-10983,36,087,36087,5532,1967,5296775,5280099,5532,1967,5296775,5280099,311687,104057,516293354,449492975,100,100,100,100,1.77,1.89,1.03,1.17
-10984,36,087,36087,2842,944,4167186,4149729,2842,944,4167186,4149729,311687,104057,516293354,449492975,100,100,100,100,0.91,0.91,0.81,0.92
-10985,36,071,36071,58,19,665812,665812,58,19,665812,665812,372813,137025,2172078974,2102256780,100,100,100,100,0.02,0.01,0.03,0.03
-10986,36,087,36087,1974,720,28420893,27973507,1974,720,28420893,27973507,311687,104057,516293354,449492975,100,100,100,100,0.63,0.69,5.5,6.22
-10987,36,071,36071,3395,1542,100415736,96140065,3395,1542,100415736,96140065,372813,137025,2172078974,2102256780,100,100,100,100,0.91,1.13,4.62,4.57
-10988,36,071,36071,896,343,8168841,8156721,896,343,8168841,8156721,372813,137025,2172078974,2102256780,100,100,100,100,0.24,0.25,0.38,0.39
-10989,36,087,36087,9293,3611,14457134,12780655,9293,3611,14457134,12780655,311687,104057,516293354,449492975,100,100,100,100,2.98,3.47,2.8,2.84
-10990,36,071,36071,20631,7835,160499100,157658362,20631,7835,160499100,157658362,372813,137025,2172078974,2102256780,100,100,100,100,5.53,5.72,7.39,7.5
-10992,36,071,36071,9621,3467,28810265,28725140,9621,3467,28810265,28725140,372813,137025,2172078974,2102256780,100,100,100,100,2.58,2.53,1.33,1.37
-10993,36,087,36087,4769,1689,3065599,2994240,4769,1689,3065599,2994240,311687,104057,516293354,449492975,100,100,100,100,1.53,1.62,0.59,0.67
-10994,36,087,36087,7085,2375,16805099,15831268,7085,2375,16805099,15831268,311687,104057,516293354,449492975,100,100,100,100,2.27,2.28,3.25,3.52
-10996,36,071,36071,6756,841,8509397,8390527,6756,841,8509397,8390527,372813,137025,2172078974,2102256780,100,100,100,100,1.81,0.61,0.39,0.4
-10998,36,071,36071,3122,1064,48678227,48312250,3122,1064,48678227,48312250,372813,137025,2172078974,2102256780,100,100,100,100,0.84,0.78,2.24,2.3
-11001,36,059,36059,22661,8129,5089748,5054797,26883,9598,5809981,5775030,1339532,468346,1173871699,737411094,84.29,84.69,87.6,87.53,1.69,1.74,0.43,0.69
-11001,36,081,36081,4222,1469,720233,720233,26883,9598,5809981,5775030,2230722,835127,461555216,281096933,15.71,15.31,12.4,12.47,0.19,0.18,0.16,0.26
-11003,36,059,36059,41200,12797,10667994,10554453,41356,12850,10836864,10723323,1339532,468346,1173871699,737411094,99.62,99.59,98.44,98.43,3.08,2.73,0.91,1.43
-11003,36,081,36081,156,53,168870,168870,41356,12850,10836864,10723323,2230722,835127,461555216,281096933,0.38,0.41,1.56,1.57,0.01,0.01,0.04,0.06
-11004,36,081,36081,14016,5152,2460789,2460789,14016,5152,2460789,2460789,2230722,835127,461555216,281096933,100,100,100,100,0.63,0.62,0.53,0.88
-11005,36,081,36081,1806,1852,472584,472584,1806,1852,472584,472584,2230722,835127,461555216,281096933,100,100,100,100,0.08,0.22,0.1,0.17
-11010,36,059,36059,23821,8402,6151544,6151544,23821,8402,6151544,6151544,1339532,468346,1173871699,737411094,100,100,100,100,1.78,1.79,0.52,0.83
-11020,36,059,36059,5914,1966,5214190,5085564,5914,1966,5214190,5085564,1339532,468346,1173871699,737411094,100,100,100,100,0.44,0.42,0.44,0.69
-11021,36,059,36059,17729,8392,6169707,6054699,17729,8392,6169707,6054699,1339532,468346,1173871699,737411094,100,100,100,100,1.32,1.79,0.53,0.82
-11023,36,059,36059,9027,3261,4617368,4289289,9027,3261,4617368,4289289,1339532,468346,1173871699,737411094,100,100,100,100,0.67,0.7,0.39,0.58
-11024,36,059,36059,8002,2389,10680419,9127289,8002,2389,10680419,9127289,1339532,468346,1173871699,737411094,100,100,100,100,0.6,0.51,0.91,1.24
-11030,36,059,36059,17962,6488,17596371,17284662,17962,6488,17596371,17284662,1339532,468346,1173871699,737411094,100,100,100,100,1.34,1.39,1.5,2.34
-11040,36,059,36059,38607,13043,12039672,11966099,40782,13900,12461953,12388380,1339532,468346,1173871699,737411094,94.67,93.83,96.61,96.59,2.88,2.78,1.03,1.62
-11040,36,081,36081,2175,857,422281,422281,40782,13900,12461953,12388380,2230722,835127,461555216,281096933,5.33,6.17,3.39,3.41,0.1,0.1,0.09,0.15
-11042,36,059,36059,520,1,1527083,1527083,520,1,1527083,1527083,1339532,468346,1173871699,737411094,100,100,100,100,0.04,0,0.13,0.21
-11050,36,059,36059,30171,11863,30867878,25877534,30171,11863,30867878,25877534,1339532,468346,1173871699,737411094,100,100,100,100,2.25,2.53,2.63,3.51
-11096,36,059,36059,8344,2702,4390720,3165331,8344,2702,4390720,3165331,1339532,468346,1173871699,737411094,100,100,100,100,0.62,0.58,0.37,0.43
-11101,36,081,36081,25484,12317,7074848,6773846,25484,12317,7074848,6773846,2230722,835127,461555216,281096933,100,100,100,100,1.14,1.47,1.53,2.41
-11102,36,081,36081,34133,15499,2099260,2092161,34133,15499,2099260,2092161,2230722,835127,461555216,281096933,100,100,100,100,1.53,1.86,0.45,0.74
-11103,36,081,36081,38780,18518,1841677,1841677,38780,18518,1841677,1841677,2230722,835127,461555216,281096933,100,100,100,100,1.74,2.22,0.4,0.66
-11104,36,081,36081,27232,12532,1010093,1010093,27232,12532,1010093,1010093,2230722,835127,461555216,281096933,100,100,100,100,1.22,1.5,0.22,0.36
-11105,36,081,36081,36688,17416,4226734,4226734,36688,17416,4226734,4226734,2230722,835127,461555216,281096933,100,100,100,100,1.64,2.09,0.92,1.5
-11106,36,081,36081,38875,18296,2256428,2219776,38875,18296,2256428,2219776,2230722,835127,461555216,281096933,100,100,100,100,1.74,2.19,0.49,0.79
-11109,36,081,36081,3523,2127,129625,103922,3523,2127,129625,103922,2230722,835127,461555216,281096933,100,100,100,100,0.16,0.25,0.03,0.04
-11201,36,047,36047,51128,26390,3694897,3680347,51128,26390,3694897,3680347,2504700,1000293,251014638,183412016,100,100,100,100,2.04,2.64,1.47,2.01
-11203,36,047,36047,76174,28087,5557080,5557080,76174,28087,5557080,5557080,2504700,1000293,251014638,183412016,100,100,100,100,3.04,2.81,2.21,3.03
-11204,36,047,36047,78134,28196,4115356,4115356,78134,28196,4115356,4115356,2504700,1000293,251014638,183412016,100,100,100,100,3.12,2.82,1.64,2.24
-11205,36,047,36047,40366,16409,2459479,2459479,40366,16409,2459479,2459479,2504700,1000293,251014638,183412016,100,100,100,100,1.61,1.64,0.98,1.34
-11206,36,047,36047,81677,29941,3715223,3715223,81677,29941,3715223,3715223,2504700,1000293,251014638,183412016,100,100,100,100,3.26,2.99,1.48,2.03
-11207,36,047,36047,93386,34202,6917454,6917454,93386,34202,6917454,6917454,2504700,1000293,251014638,183412016,100,100,100,100,3.73,3.42,2.76,3.77
-11208,36,047,36047,94469,32069,8951522,8951522,94469,32069,8951522,8951522,2504700,1000293,251014638,183412016,100,100,100,100,3.77,3.21,3.57,4.88
-11209,36,047,36047,68853,34679,5599867,5599867,68853,34679,5599867,5599867,2504700,1000293,251014638,183412016,100,100,100,100,2.75,3.47,2.23,3.05
-11210,36,047,36047,62008,22476,4250381,4250381,62008,22476,4250381,4250381,2504700,1000293,251014638,183412016,100,100,100,100,2.48,2.25,1.69,2.32
-11211,36,047,36047,90117,37180,6144700,5952757,90117,37180,6144700,5952757,2504700,1000293,251014638,183412016,100,100,100,100,3.6,3.72,2.45,3.25
-11212,36,047,36047,84500,31847,3983224,3983224,84500,31847,3983224,3983224,2504700,1000293,251014638,183412016,100,100,100,100,3.37,3.18,1.59,2.17
-11213,36,047,36047,63767,24974,2825709,2825709,63767,24974,2825709,2825709,2504700,1000293,251014638,183412016,100,100,100,100,2.55,2.5,1.13,1.54
-11214,36,047,36047,88630,35261,5666230,5658758,88630,35261,5666230,5658758,2504700,1000293,251014638,183412016,100,100,100,100,3.54,3.53,2.26,3.09
-11215,36,047,36047,63488,30073,5695519,5641351,63488,30073,5695519,5641351,2504700,1000293,251014638,183412016,100,100,100,100,2.53,3.01,2.27,3.08
-11216,36,047,36047,54316,25964,2422753,2422753,54316,25964,2422753,2422753,2504700,1000293,251014638,183412016,100,100,100,100,2.17,2.6,0.97,1.32
-11217,36,047,36047,35881,17581,1952828,1944333,35881,17581,1952828,1944333,2504700,1000293,251014638,183412016,100,100,100,100,1.43,1.76,0.78,1.06
-11218,36,047,36047,75220,26598,3699262,3699262,75220,26598,3699262,3699262,2504700,1000293,251014638,183412016,100,100,100,100,3,2.66,1.47,2.02
-11219,36,047,36047,92221,28693,3838518,3838518,92221,28693,3838518,3838518,2504700,1000293,251014638,183412016,100,100,100,100,3.68,2.87,1.53,2.09
-11220,36,047,36047,99598,31045,4639238,4639238,99598,31045,4639238,4639238,2504700,1000293,251014638,183412016,100,100,100,100,3.98,3.1,1.85,2.53
-11221,36,047,36047,78895,31784,3582802,3582802,78895,31784,3582802,3582802,2504700,1000293,251014638,183412016,100,100,100,100,3.15,3.18,1.43,1.95
-11222,36,047,36047,36934,18756,4158926,3947645,36934,18756,4158926,3947645,2504700,1000293,251014638,183412016,100,100,100,100,1.47,1.88,1.66,2.15
-11223,36,047,36047,78731,32407,5372270,5372270,78731,32407,5372270,5372270,2504700,1000293,251014638,183412016,100,100,100,100,3.14,3.24,2.14,2.93
-11224,36,047,36047,47621,20768,4090951,3999168,47621,20768,4090951,3999168,2504700,1000293,251014638,183412016,100,100,100,100,1.9,2.08,1.63,2.18
-11225,36,047,36047,56829,23588,2289249,2289249,56829,23588,2289249,2289249,2504700,1000293,251014638,183412016,100,100,100,100,2.27,2.36,0.91,1.25
-11226,36,047,36047,101572,37745,3339497,3339497,101572,37745,3339497,3339497,2504700,1000293,251014638,183412016,100,100,100,100,4.06,3.77,1.33,1.82
-11228,36,047,36047,41788,18234,3807131,3807131,41788,18234,3807131,3807131,2504700,1000293,251014638,183412016,100,100,100,100,1.67,1.82,1.52,2.08
-11229,36,047,36047,80018,34885,5738713,5611289,80018,34885,5738713,5611289,2504700,1000293,251014638,183412016,100,100,100,100,3.19,3.49,2.29,3.06
-11230,36,047,36047,86408,34028,4765012,4765012,86408,34028,4765012,4765012,2504700,1000293,251014638,183412016,100,100,100,100,3.45,3.4,1.9,2.6
-11231,36,047,36047,33336,16149,3765827,3683315,33336,16149,3765827,3683315,2504700,1000293,251014638,183412016,100,100,100,100,1.33,1.61,1.5,2.01
-11232,36,047,36047,28265,8980,3324662,3323376,28265,8980,3324662,3323376,2504700,1000293,251014638,183412016,100,100,100,100,1.13,0.9,1.32,1.81
-11233,36,047,36047,67053,29074,3491031,3491031,67053,29074,3491031,3491031,2504700,1000293,251014638,183412016,100,100,100,100,2.68,2.91,1.39,1.9
-11234,36,047,36047,87757,33714,21691576,19547849,87757,33714,21691576,19547849,2504700,1000293,251014638,183412016,100,100,100,100,3.5,3.37,8.64,10.66
-11235,36,047,36047,79132,37619,6318017,5816304,79132,37619,6318017,5816304,2504700,1000293,251014638,183412016,100,100,100,100,3.16,3.76,2.52,3.17
-11236,36,047,36047,93877,33313,9401154,9311387,93877,33313,9401154,9311387,2504700,1000293,251014638,183412016,100,100,100,100,3.75,3.33,3.75,5.08
-11237,36,047,36047,49896,16724,2583314,2537578,49896,16724,2583314,2537578,2504700,1000293,251014638,183412016,100,100,100,100,1.99,1.67,1.03,1.38
-11238,36,047,36047,49262,24525,2863622,2863622,49262,24525,2863622,2863622,2504700,1000293,251014638,183412016,100,100,100,100,1.97,2.45,1.14,1.56
-11239,36,047,36047,13393,6335,1508086,1477966,13393,6335,1508086,1477966,2504700,1000293,251014638,183412016,100,100,100,100,0.53,0.63,0.6,0.81
-11351,36,081,36081,0,0,7592,7592,0,0,7592,7592,2230722,835127,461555216,281096933,0,0,100,100,0,0,0,0
-11354,36,081,36081,54878,22201,5696540,5612651,54878,22201,5696540,5612651,2230722,835127,461555216,281096933,100,100,100,100,2.46,2.66,1.23,2
-11355,36,081,36081,85871,30681,4493721,4493721,85871,30681,4493721,4493721,2230722,835127,461555216,281096933,100,100,100,100,3.85,3.67,0.97,1.6
-11356,36,081,36081,23438,8303,4069871,4069871,23438,8303,4069871,4069871,2230722,835127,461555216,281096933,100,100,100,100,1.05,0.99,0.88,1.45
-11357,36,081,36081,39150,15924,7256742,7256742,39150,15924,7256742,7256742,2230722,835127,461555216,281096933,100,100,100,100,1.76,1.91,1.57,2.58
-11358,36,081,36081,37546,14068,5048954,5048954,37546,14068,5048954,5048954,2230722,835127,461555216,281096933,100,100,100,100,1.68,1.68,1.09,1.8
-11359,36,081,36081,0,0,636668,636668,0,0,636668,636668,2230722,835127,461555216,281096933,0,0,100,100,0,0,0.14,0.23
-11360,36,081,36081,18884,9308,3691086,3691086,18884,9308,3691086,3691086,2230722,835127,461555216,281096933,100,100,100,100,0.85,1.11,0.8,1.31
-11361,36,081,36081,28606,11195,4603172,4553960,28606,11195,4603172,4553960,2230722,835127,461555216,281096933,100,100,100,100,1.28,1.34,1,1.62
-11362,36,081,36081,17823,7347,6627073,6518633,17823,7347,6627073,6518633,2230722,835127,461555216,281096933,100,100,100,100,0.8,0.88,1.44,2.32
-11363,36,081,36081,6988,2797,2249596,2249596,6988,2797,2249596,2249596,2230722,835127,461555216,281096933,100,100,100,100,0.31,0.33,0.49,0.8
-11364,36,081,36081,34555,13835,6386921,6386921,34555,13835,6386921,6386921,2230722,835127,461555216,281096933,100,100,100,100,1.55,1.66,1.38,2.27
-11365,36,081,36081,42252,16098,6512515,6466314,42252,16098,6512515,6466314,2230722,835127,461555216,281096933,100,100,100,100,1.89,1.93,1.41,2.3
-11366,36,081,36081,13532,4723,2835025,2835025,13532,4723,2835025,2835025,2230722,835127,461555216,281096933,100,100,100,100,0.61,0.57,0.61,1.01
-11367,36,081,36081,41047,15588,6643923,6162139,41047,15588,6643923,6162139,2230722,835127,461555216,281096933,100,100,100,100,1.84,1.87,1.44,2.19
-11368,36,081,36081,109931,30978,6911198,6816707,109931,30978,6911198,6816707,2230722,835127,461555216,281096933,100,100,100,100,4.93,3.71,1.5,2.43
-11369,36,081,36081,38615,12184,2765090,2765090,38615,12184,2765090,2765090,2230722,835127,461555216,281096933,100,100,100,100,1.73,1.46,0.6,0.98
-11370,36,005,36005,11091,0,1579361,1579361,39688,10244,3684369,3684369,1385108,511896,148867137,109028908,27.95,0,42.87,42.87,0.8,0,1.06,1.45
-11370,36,081,36081,28597,10244,2105008,2105008,39688,10244,3684369,3684369,2230722,835127,461555216,281096933,72.05,100,57.13,57.13,1.28,1.23,0.46,0.75
-11371,36,081,36081,0,0,2602752,2602752,0,0,2602752,2602752,2230722,835127,461555216,281096933,0,0,100,100,0,0,0.56,0.93
-11372,36,081,36081,66636,25100,1909994,1909994,66636,25100,1909994,1909994,2230722,835127,461555216,281096933,100,100,100,100,2.99,3.01,0.41,0.68
-11373,36,081,36081,100820,33227,3956011,3956011,100820,33227,3956011,3956011,2230722,835127,461555216,281096933,100,100,100,100,4.52,3.98,0.86,1.41
-11374,36,081,36081,43600,20225,2419933,2419933,43600,20225,2419933,2419933,2230722,835127,461555216,281096933,100,100,100,100,1.95,2.42,0.52,0.86
-11375,36,081,36081,68733,34631,5129162,5129162,68733,34631,5129162,5129162,2230722,835127,461555216,281096933,100,100,100,100,3.08,4.15,1.11,1.82
-11377,36,081,36081,89830,33545,6595693,6595693,89830,33545,6595693,6595693,2230722,835127,461555216,281096933,100,100,100,100,4.03,4.02,1.43,2.35
-11378,36,081,36081,34981,13668,6760247,6614594,34981,13668,6760247,6614594,2230722,835127,461555216,281096933,100,100,100,100,1.57,1.64,1.46,2.35
-11379,36,081,36081,34821,14649,5372961,5372961,34821,14649,5372961,5372961,2230722,835127,461555216,281096933,100,100,100,100,1.56,1.75,1.16,1.91
-11385,36,081,36081,98592,37251,9439985,9357002,98592,37251,9439985,9357002,2230722,835127,461555216,281096933,100,100,100,100,4.42,4.46,2.05,3.33
-11411,36,081,36081,18556,6164,3027435,3027435,18556,6164,3027435,3027435,2230722,835127,461555216,281096933,100,100,100,100,0.83,0.74,0.66,1.08
-11412,36,081,36081,34882,11526,4264330,4264330,34882,11526,4264330,4264330,2230722,835127,461555216,281096933,100,100,100,100,1.56,1.38,0.92,1.52
-11413,36,081,36081,38912,12975,8114000,8028308,38912,12975,8114000,8028308,2230722,835127,461555216,281096933,100,100,100,100,1.74,1.55,1.76,2.86
-11414,36,081,36081,26148,11330,6180242,5956106,26148,11330,6180242,5956106,2230722,835127,461555216,281096933,100,100,100,100,1.17,1.36,1.34,2.12
-11415,36,081,36081,19341,9206,1471500,1471500,19341,9206,1471500,1471500,2230722,835127,461555216,281096933,100,100,100,100,0.87,1.1,0.32,0.52
-11416,36,081,36081,24861,7806,1724073,1724073,24861,7806,1724073,1724073,2230722,835127,461555216,281096933,100,100,100,100,1.11,0.93,0.37,0.61
-11417,36,081,36081,28967,9714,2898286,2898286,28967,9714,2898286,2898286,2230722,835127,461555216,281096933,100,100,100,100,1.3,1.16,0.63,1.03
-11418,36,081,36081,36256,11854,4229580,4229580,36256,11854,4229580,4229580,2230722,835127,461555216,281096933,100,100,100,100,1.63,1.42,0.92,1.5
-11419,36,081,36081,47211,13454,2924898,2924898,47211,13454,2924898,2924898,2230722,835127,461555216,281096933,100,100,100,100,2.12,1.61,0.63,1.04
-11420,36,081,36081,44354,13743,5382008,5382008,44354,13743,5382008,5382008,2230722,835127,461555216,281096933,100,100,100,100,1.99,1.65,1.17,1.91
-11421,36,081,36081,39127,12695,3336083,3336083,39127,12695,3336083,3336083,2230722,835127,461555216,281096933,100,100,100,100,1.75,1.52,0.72,1.19
-11422,36,081,36081,30425,9900,5303203,5098423,30425,9900,5303203,5098423,2230722,835127,461555216,281096933,100,100,100,100,1.36,1.19,1.15,1.81
-11423,36,081,36081,29987,10165,3654228,3654228,29987,10165,3654228,3654228,2230722,835127,461555216,281096933,100,100,100,100,1.34,1.22,0.79,1.3
-11424,36,081,36081,0,0,87271,87271,0,0,87271,87271,2230722,835127,461555216,281096933,0,0,100,100,0,0,0.02,0.03
-11425,36,047,36047,0,0,98802,98802,0,0,98802,98802,2504700,1000293,251014638,183412016,0,0,100,100,0,0,0.04,0.05
-11426,36,081,36081,17590,6389,3493966,3493966,17590,6389,3493966,3493966,2230722,835127,461555216,281096933,100,100,100,100,0.79,0.77,0.76,1.24
-11427,36,081,36081,23593,7958,4082592,4082592,23593,7958,4082592,4082592,2230722,835127,461555216,281096933,100,100,100,100,1.06,0.95,0.88,1.45
-11428,36,081,36081,19168,5780,2156475,2156475,19168,5780,2156475,2156475,2230722,835127,461555216,281096933,100,100,100,100,0.86,0.69,0.47,0.77
-11429,36,081,36081,25105,7791,3369771,3369771,25105,7791,3369771,3369771,2230722,835127,461555216,281096933,100,100,100,100,1.13,0.93,0.73,1.2
-11430,36,081,36081,184,0,19098406,18434911,184,0,19098406,18434911,2230722,835127,461555216,281096933,100,0,100,100,0.01,0,4.14,6.56
-11432,36,081,36081,60809,19518,5566224,5566224,60809,19518,5566224,5566224,2230722,835127,461555216,281096933,100,100,100,100,2.73,2.34,1.21,1.98
-11433,36,081,36081,32687,11483,4019554,4019554,32687,11483,4019554,4019554,2230722,835127,461555216,281096933,100,100,100,100,1.47,1.38,0.87,1.43
-11434,36,081,36081,59129,21681,8560493,8388456,59129,21681,8560493,8388456,2230722,835127,461555216,281096933,100,100,100,100,2.65,2.6,1.85,2.98
-11435,36,081,36081,53687,18963,3922755,3922755,53687,18963,3922755,3922755,2230722,835127,461555216,281096933,100,100,100,100,2.41,2.27,0.85,1.4
-11436,36,081,36081,17949,5924,2040481,2040481,17949,5924,2040481,2040481,2230722,835127,461555216,281096933,100,100,100,100,0.8,0.71,0.44,0.73
-11451,36,081,36081,0,0,91974,91974,0,0,91974,91974,2230722,835127,461555216,281096933,0,0,100,100,0,0,0.02,0.03
-11501,36,059,36059,19148,7841,5307491,5307491,19148,7841,5307491,5307491,1339532,468346,1173871699,737411094,100,100,100,100,1.43,1.67,0.45,0.72
-11507,36,059,36059,7406,2540,2796546,2796546,7406,2540,2796546,2796546,1339532,468346,1173871699,737411094,100,100,100,100,0.55,0.54,0.24,0.38
-11509,36,059,36059,2653,1394,2921064,2181024,2653,1394,2921064,2181024,1339532,468346,1173871699,737411094,100,100,100,100,0.2,0.3,0.25,0.3
-11510,36,059,36059,33048,11104,12449758,10998551,33048,11104,12449758,10998551,1339532,468346,1173871699,737411094,100,100,100,100,2.47,2.37,1.06,1.49
-11514,36,059,36059,4673,1825,2323170,2323170,4673,1825,2323170,2323170,1339532,468346,1173871699,737411094,100,100,100,100,0.35,0.39,0.2,0.32
-11516,36,059,36059,7556,2655,2262295,2262295,7556,2655,2262295,2262295,1339532,468346,1173871699,737411094,100,100,100,100,0.56,0.57,0.19,0.31
-11518,36,059,36059,10549,4348,3855127,3554629,10549,4348,3855127,3554629,1339532,468346,1173871699,737411094,100,100,100,100,0.79,0.93,0.33,0.48
-11520,36,059,36059,43341,14000,14281174,13192649,43341,14000,14281174,13192649,1339532,468346,1173871699,737411094,100,100,100,100,3.24,2.99,1.22,1.79
-11530,36,059,36059,27273,9474,18455254,18391308,27273,9474,18455254,18391308,1339532,468346,1173871699,737411094,100,100,100,100,2.04,2.02,1.57,2.49
-11542,36,059,36059,27633,10610,17883931,17251485,27633,10610,17883931,17251485,1339532,468346,1173871699,737411094,100,100,100,100,2.06,2.27,1.52,2.34
-11545,36,059,36059,12065,4331,29753123,29720330,12065,4331,29753123,29720330,1339532,468346,1173871699,737411094,100,100,100,100,0.9,0.92,2.53,4.03
-11547,36,059,36059,793,298,1180988,1126461,793,298,1180988,1126461,1339532,468346,1173871699,737411094,100,100,100,100,0.06,0.06,0.1,0.15
-11548,36,059,36059,2780,446,2369366,2369366,2780,446,2369366,2369366,1339532,468346,1173871699,737411094,100,100,100,100,0.21,0.1,0.2,0.32
-11549,36,059,36059,2922,0,187386,187386,2922,0,187386,187386,1339532,468346,1173871699,737411094,100,0,100,100,0.22,0,0.02,0.03
-11550,36,059,36059,56435,16859,11046561,11034175,56435,16859,11046561,11034175,1339532,468346,1173871699,737411094,100,100,100,100,4.21,3.6,0.94,1.5
-11552,36,059,36059,23616,7529,9533774,8844683,23616,7529,9533774,8844683,1339532,468346,1173871699,737411094,100,100,100,100,1.76,1.61,0.81,1.2
-11553,36,059,36059,26034,6469,9089750,9069289,26034,6469,9089750,9069289,1339532,468346,1173871699,737411094,100,100,100,100,1.94,1.38,0.77,1.23
-11554,36,059,36059,38132,12863,16244690,16183381,38132,12863,16244690,16183381,1339532,468346,1173871699,737411094,100,100,100,100,2.85,2.75,1.38,2.19
-11556,36,059,36059,17,0,155327,155327,17,0,155327,155327,1339532,468346,1173871699,737411094,100,0,100,100,0,0,0.01,0.02
-11557,36,059,36059,7823,2961,5606393,5235450,7823,2961,5606393,5235450,1339532,468346,1173871699,737411094,100,100,100,100,0.58,0.63,0.48,0.71
-11558,36,059,36059,8370,3099,5231312,3878352,8370,3099,5231312,3878352,1339532,468346,1173871699,737411094,100,100,100,100,0.62,0.66,0.45,0.53
-11559,36,059,36059,8176,2821,13270770,10820799,8176,2821,13270770,10820799,1339532,468346,1173871699,737411094,100,100,100,100,0.61,0.6,1.13,1.47
-11560,36,059,36059,6464,2490,19752084,19430272,6464,2490,19752084,19430272,1339532,468346,1173871699,737411094,100,100,100,100,0.48,0.53,1.68,2.63
-11561,36,059,36059,37280,18418,11057138,10099819,37280,18418,11057138,10099819,1339532,468346,1173871699,737411094,100,100,100,100,2.78,3.93,0.94,1.37
-11563,36,059,36059,22666,9126,6207872,6207872,22666,9126,6207872,6207872,1339532,468346,1173871699,737411094,100,100,100,100,1.69,1.95,0.53,0.84
-11565,36,059,36059,8690,3213,2891203,2891203,8690,3213,2891203,2891203,1339532,468346,1173871699,737411094,100,100,100,100,0.65,0.69,0.25,0.39
-11566,36,059,36059,35321,12070,16593108,14121530,35321,12070,16593108,14121530,1339532,468346,1173871699,737411094,100,100,100,100,2.64,2.58,1.41,1.92
-11568,36,059,36059,4555,1124,23108293,23108293,4555,1124,23108293,23108293,1339532,468346,1173871699,737411094,100,100,100,100,0.34,0.24,1.97,3.13
-11569,36,059,36059,1398,770,1010876,1010876,1398,770,1010876,1010876,1339532,468346,1173871699,737411094,100,100,100,100,0.1,0.16,0.09,0.14
-11570,36,059,36059,26646,10453,9746086,9525132,26646,10453,9746086,9525132,1339532,468346,1173871699,737411094,100,100,100,100,1.99,2.23,0.83,1.29
-11572,36,059,36059,30574,11093,13576625,12369733,30574,11093,13576625,12369733,1339532,468346,1173871699,737411094,100,100,100,100,2.28,2.37,1.16,1.68
-11575,36,059,36059,16272,4369,4638295,4611705,16272,4369,4638295,4611705,1339532,468346,1173871699,737411094,100,100,100,100,1.21,0.93,0.4,0.63
-11576,36,059,36059,12366,4630,12511420,11782385,12366,4630,12511420,11782385,1339532,468346,1173871699,737411094,100,100,100,100,0.92,0.99,1.07,1.6
-11577,36,059,36059,12337,4441,7890474,7890474,12337,4441,7890474,7890474,1339532,468346,1173871699,737411094,100,100,100,100,0.92,0.95,0.67,1.07
-11579,36,059,36059,5055,2073,2907571,2907571,5055,2073,2907571,2907571,1339532,468346,1173871699,737411094,100,100,100,100,0.38,0.44,0.25,0.39
-11580,36,059,36059,40113,13506,10158696,10118686,40113,13506,10158696,10118686,1339532,468346,1173871699,737411094,100,100,100,100,2.99,2.88,0.87,1.37
-11581,36,059,36059,20844,7270,7528249,6975425,20844,7270,7528249,6975425,1339532,468346,1173871699,737411094,100,100,100,100,1.56,1.55,0.64,0.95
-11590,36,059,36059,45768,14450,17353391,17290910,45768,14450,17353391,17290910,1339532,468346,1173871699,737411094,100,100,100,100,3.42,3.09,1.48,2.34
-11596,36,059,36059,10480,3782,3449390,3449390,10480,3782,3449390,3449390,1339532,468346,1173871699,737411094,100,100,100,100,0.78,0.81,0.29,0.47
-11598,36,059,36059,13328,4322,5481389,5158773,13328,4322,5481389,5158773,1339532,468346,1173871699,737411094,100,100,100,100,0.99,0.92,0.47,0.7
-11691,36,081,36081,60035,21160,7426118,7339464,60035,21160,7426118,7339464,2230722,835127,461555216,281096933,100,100,100,100,2.69,2.53,1.61,2.61
-11692,36,081,36081,18540,6881,2766839,2586423,18540,6881,2766839,2586423,2230722,835127,461555216,281096933,100,100,100,100,0.83,0.82,0.6,0.92
-11693,36,081,36081,11916,5170,2582599,2582599,11916,5170,2582599,2582599,2230722,835127,461555216,281096933,100,100,100,100,0.53,0.62,0.56,0.92
-11694,36,081,36081,20408,9341,3538436,3536999,20408,9341,3538436,3536999,2230722,835127,461555216,281096933,100,100,100,100,0.91,1.12,0.77,1.26
-11697,36,081,36081,4079,2698,5750019,5749269,4079,2698,5750019,5749269,2230722,835127,461555216,281096933,100,100,100,100,0.18,0.32,1.25,2.05
-11701,36,103,36103,27109,9831,13738523,12354440,27109,9831,13738523,12354440,1493350,569985,6146386389,2362201496,100,100,100,100,1.82,1.72,0.22,0.52
-11702,36,103,36103,14498,5850,24554138,23639541,14498,5850,24554138,23639541,1493350,569985,6146386389,2362201496,100,100,100,100,0.97,1.03,0.4,1
-11703,36,103,36103,16415,5964,8190775,8080675,16415,5964,8190775,8080675,1493350,569985,6146386389,2362201496,100,100,100,100,1.1,1.05,0.13,0.34
-11704,36,103,36103,40222,14088,21404800,20873713,40222,14088,21404800,20873713,1493350,569985,6146386389,2362201496,100,100,100,100,2.69,2.47,0.35,0.88
-11705,36,103,36103,8030,2944,9390338,9194715,8030,2944,9390338,9194715,1493350,569985,6146386389,2362201496,100,100,100,100,0.54,0.52,0.15,0.39
-11706,36,103,36103,62543,21776,47307867,44135882,62543,21776,47307867,44135882,1493350,569985,6146386389,2362201496,100,100,100,100,4.19,3.82,0.77,1.87
-11709,36,059,36059,6669,2651,5221720,3913961,6669,2651,5221720,3913961,1339532,468346,1173871699,737411094,100,100,100,100,0.5,0.57,0.44,0.53
-11710,36,059,36059,34496,12080,14307686,12654170,34496,12080,14307686,12654170,1339532,468346,1173871699,737411094,100,100,100,100,2.58,2.58,1.22,1.72
-11713,36,103,36103,10401,3940,13314190,13077818,10401,3940,13314190,13077818,1493350,569985,6146386389,2362201496,100,100,100,100,0.7,0.69,0.22,0.55
-11714,36,059,36059,22658,8213,11199604,11199604,22658,8213,11199604,11199604,1339532,468346,1173871699,737411094,100,100,100,100,1.69,1.75,0.95,1.52
-11715,36,103,36103,4752,1752,4394195,4379300,4752,1752,4394195,4379300,1493350,569985,6146386389,2362201496,100,100,100,100,0.32,0.31,0.07,0.19
-11716,36,103,36103,10700,3925,22734029,22638758,10700,3925,22734029,22638758,1493350,569985,6146386389,2362201496,100,100,100,100,0.72,0.69,0.37,0.96
-11717,36,103,36103,60745,14217,28295333,28295333,60745,14217,28295333,28295333,1493350,569985,6146386389,2362201496,100,100,100,100,4.07,2.49,0.46,1.2
-11718,36,103,36103,3103,1156,2506624,2448217,3103,1156,2506624,2448217,1493350,569985,6146386389,2362201496,100,100,100,100,0.21,0.2,0.04,0.1
-11719,36,103,36103,3589,1304,15895355,15517338,3589,1304,15895355,15517338,1493350,569985,6146386389,2362201496,100,100,100,100,0.24,0.23,0.26,0.66
-11720,36,103,36103,29189,9581,21112862,21112862,29189,9581,21112862,21112862,1493350,569985,6146386389,2362201496,100,100,100,100,1.95,1.68,0.34,0.89
-11721,36,103,36103,6292,2421,10202393,6449113,6292,2421,10202393,6449113,1493350,569985,6146386389,2362201496,100,100,100,100,0.42,0.42,0.17,0.27
-11722,36,103,36103,35177,10158,18885203,18885203,35177,10158,18885203,18885203,1493350,569985,6146386389,2362201496,100,100,100,100,2.36,1.78,0.31,0.8
-11724,36,103,36103,3220,1059,10502134,9994932,3220,1059,10502134,9994932,1493350,569985,6146386389,2362201496,100,100,100,100,0.22,0.19,0.17,0.42
-11725,36,103,36103,29150,9883,25270477,25270477,29150,9883,25270477,25270477,1493350,569985,6146386389,2362201496,100,100,100,100,1.95,1.73,0.41,1.07
-11726,36,103,36103,19857,6355,7065744,6651434,19857,6355,7065744,6651434,1493350,569985,6146386389,2362201496,100,100,100,100,1.33,1.11,0.11,0.28
-11727,36,103,36103,29030,11652,23567601,23567601,29030,11652,23567601,23567601,1493350,569985,6146386389,2362201496,100,100,100,100,1.94,2.04,0.38,1
-11729,36,103,36103,28032,9895,16237313,16227590,28032,9895,16237313,16227590,1493350,569985,6146386389,2362201496,100,100,100,100,1.88,1.74,0.26,0.69
-11730,36,103,36103,14712,5035,24219111,19712137,14712,5035,24219111,19712137,1493350,569985,6146386389,2362201496,100,100,100,100,0.99,0.88,0.39,0.83
-11731,36,103,36103,30184,10454,21698991,21698991,30184,10454,21698991,21698991,1493350,569985,6146386389,2362201496,100,100,100,100,2.02,1.83,0.35,0.92
-11732,36,059,36059,3430,1417,3956466,3956466,3430,1417,3956466,3956466,1339532,468346,1173871699,737411094,100,100,100,100,0.26,0.3,0.34,0.54
-11733,36,103,36103,18949,6326,42959487,30672901,18949,6326,42959487,30672901,1493350,569985,6146386389,2362201496,100,100,100,100,1.27,1.11,0.7,1.3
-11735,36,059,36059,25615,9325,12724508,12724508,32098,11438,27131803,27080017,1339532,468346,1173871699,737411094,79.8,81.53,46.9,46.99,1.91,1.99,1.08,1.73
-11735,36,103,36103,6483,2113,14407295,14355509,32098,11438,27131803,27080017,1493350,569985,6146386389,2362201496,20.2,18.47,53.1,53.01,0.43,0.37,0.23,0.61
-11738,36,103,36103,17638,5610,13812407,13812407,17638,5610,13812407,13812407,1493350,569985,6146386389,2362201496,100,100,100,100,1.18,0.98,0.22,0.58
-11739,36,103,36103,1223,413,2376546,2150905,1223,413,2376546,2150905,1493350,569985,6146386389,2362201496,100,100,100,100,0.08,0.07,0.04,0.09
-11740,36,103,36103,9454,3517,9602404,9602404,9454,3517,9602404,9602404,1493350,569985,6146386389,2362201496,100,100,100,100,0.63,0.62,0.16,0.41
-11741,36,103,36103,27655,9959,19382501,19382501,27655,9959,19382501,19382501,1493350,569985,6146386389,2362201496,100,100,100,100,1.85,1.75,0.32,0.82
-11742,36,103,36103,13261,4798,12960866,12960866,13261,4798,12960866,12960866,1493350,569985,6146386389,2362201496,100,100,100,100,0.89,0.84,0.21,0.55
-11743,36,103,36103,42230,15896,75325180,65710750,42230,15896,75325180,65710750,1493350,569985,6146386389,2362201496,100,100,100,100,2.83,2.79,1.23,2.78
-11746,36,103,36103,67094,21578,61856671,61847153,67094,21578,61856671,61847153,1493350,569985,6146386389,2362201496,100,100,100,100,4.49,3.79,1.01,2.62
-11747,36,103,36103,19803,7529,34088942,34087733,19803,7529,34088942,34087733,1493350,569985,6146386389,2362201496,100,100,100,100,1.33,1.32,0.55,1.44
-11749,36,103,36103,3345,1092,5668090,5668090,3345,1092,5668090,5668090,1493350,569985,6146386389,2362201496,100,100,100,100,0.22,0.19,0.09,0.24
-11751,36,103,36103,14961,5513,11966371,10350269,14961,5513,11966371,10350269,1493350,569985,6146386389,2362201496,100,100,100,100,1,0.97,0.19,0.44
-11752,36,103,36103,9531,3173,9677981,9617687,9531,3173,9677981,9617687,1493350,569985,6146386389,2362201496,100,100,100,100,0.64,0.56,0.16,0.41
-11753,36,059,36059,12014,4295,10080560,10039259,12014,4295,10080560,10039259,1339532,468346,1173871699,737411094,100,100,100,100,0.9,0.92,0.86,1.36
-11754,36,103,36103,18958,6975,21673312,18994228,18958,6975,21673312,18994228,1493350,569985,6146386389,2362201496,100,100,100,100,1.27,1.22,0.35,0.8
-11755,36,103,36103,12387,4336,8394315,8391483,12387,4336,8394315,8391483,1493350,569985,6146386389,2362201496,100,100,100,100,0.83,0.76,0.14,0.36
-11756,36,059,36059,42791,14183,14361423,14296759,42791,14183,14361423,14296759,1339532,468346,1173871699,737411094,100,100,100,100,3.19,3.03,1.22,1.94
-11757,36,103,36103,45700,16104,18408548,17602045,45700,16104,18408548,17602045,1493350,569985,6146386389,2362201496,100,100,100,100,3.06,2.83,0.3,0.75
-11758,36,059,36059,53804,18795,30088819,28487737,53804,18795,30088819,28487737,1339532,468346,1173871699,737411094,100,100,100,100,4.02,4.01,2.56,3.86
-11762,36,059,36059,22360,7651,8124814,7990423,22360,7651,8124814,7990423,1339532,468346,1173871699,737411094,100,100,100,100,1.67,1.63,0.69,1.08
-11763,36,103,36103,28506,9629,35865606,35860857,28506,9629,35865606,35860857,1493350,569985,6146386389,2362201496,100,100,100,100,1.91,1.69,0.58,1.52
-11764,36,103,36103,13200,4393,26815924,23768611,13200,4393,26815924,23768611,1493350,569985,6146386389,2362201496,100,100,100,100,0.88,0.77,0.44,1.01
-11765,36,059,36059,737,326,7164307,6335333,737,326,7164307,6335333,1339532,468346,1173871699,737411094,100,100,100,100,0.06,0.07,0.61,0.86
-11766,36,103,36103,12635,4444,19703161,15967694,12635,4444,19703161,15967694,1493350,569985,6146386389,2362201496,100,100,100,100,0.85,0.78,0.32,0.68
-11767,36,103,36103,14530,4938,10826005,10811386,14530,4938,10826005,10811386,1493350,569985,6146386389,2362201496,100,100,100,100,0.97,0.87,0.18,0.46
-11768,36,103,36103,21902,8325,68485584,39179738,21902,8325,68485584,39179738,1493350,569985,6146386389,2362201496,100,100,100,100,1.47,1.46,1.11,1.66
-11769,36,103,36103,9506,4168,12507366,11434845,9506,4168,12507366,11434845,1493350,569985,6146386389,2362201496,100,100,100,100,0.64,0.73,0.2,0.48
-11770,36,103,36103,137,1196,1130822,1130822,137,1196,1130822,1130822,1493350,569985,6146386389,2362201496,100,100,100,100,0.01,0.21,0.02,0.05
-11771,36,059,36059,10007,4078,37587431,27707560,10007,4078,37587431,27707560,1339532,468346,1173871699,737411094,100,100,100,100,0.75,0.87,3.2,3.76
-11772,36,103,36103,44837,17725,43096495,41943745,44837,17725,43096495,41943745,1493350,569985,6146386389,2362201496,100,100,100,100,3,3.11,0.7,1.78
-11776,36,103,36103,24235,8606,17868679,17868679,24235,8606,17868679,17868679,1493350,569985,6146386389,2362201496,100,100,100,100,1.62,1.51,0.29,0.76
-11777,36,103,36103,8968,3732,16746951,11295193,8968,3732,16746951,11295193,1493350,569985,6146386389,2362201496,100,100,100,100,0.6,0.65,0.27,0.48
-11778,36,103,36103,12709,4971,21180440,17729423,12709,4971,21180440,17729423,1493350,569985,6146386389,2362201496,100,100,100,100,0.85,0.87,0.34,0.75
-11779,36,103,36103,38421,13632,33375703,32515886,38421,13632,33375703,32515886,1493350,569985,6146386389,2362201496,100,100,100,100,2.57,2.39,0.54,1.38
-11780,36,103,36103,15524,5586,40067379,29809606,15524,5586,40067379,29809606,1493350,569985,6146386389,2362201496,100,100,100,100,1.04,0.98,0.65,1.26
-11782,36,103,36103,15814,7012,14528392,14361077,15814,7012,14528392,14361077,1493350,569985,6146386389,2362201496,100,100,100,100,1.06,1.23,0.24,0.61
-11783,36,059,36059,21288,7400,9266825,9180354,21288,7400,9266825,9180354,1339532,468346,1173871699,737411094,100,100,100,100,1.59,1.58,0.79,1.24
-11784,36,103,36103,24655,8380,14165787,14165787,24655,8380,14165787,14165787,1493350,569985,6146386389,2362201496,100,100,100,100,1.65,1.47,0.23,0.6
-11786,36,103,36103,6344,2015,19297654,15005030,6344,2015,19297654,15005030,1493350,569985,6146386389,2362201496,100,100,100,100,0.42,0.35,0.31,0.64
-11787,36,103,36103,35772,12658,40653063,38936036,35772,12658,40653063,38936036,1493350,569985,6146386389,2362201496,100,100,100,100,2.4,2.22,0.66,1.65
-11788,36,103,36103,16821,6009,22221707,22221707,16821,6009,22221707,22221707,1493350,569985,6146386389,2362201496,100,100,100,100,1.13,1.05,0.36,0.94
-11789,36,103,36103,7895,3105,6791560,4406952,7895,3105,6791560,4406952,1493350,569985,6146386389,2362201496,100,100,100,100,0.53,0.54,0.11,0.19
-11790,36,103,36103,18511,5034,19027923,18548423,18511,5034,19027923,18548423,1493350,569985,6146386389,2362201496,100,100,100,100,1.24,0.88,0.31,0.79
-11791,36,059,36059,25076,8375,34326337,33613158,25076,8375,34326337,33613158,1339532,468346,1173871699,737411094,100,100,100,100,1.87,1.79,2.92,4.56
-11792,36,103,36103,8523,3240,32581879,25501373,8523,3240,32581879,25501373,1493350,569985,6146386389,2362201496,100,100,100,100,0.57,0.57,0.53,1.08
-11793,36,059,36059,32298,11023,25299329,24567561,32298,11023,25299329,24567561,1339532,468346,1173871699,737411094,100,100,100,100,2.41,2.35,2.16,3.33
-11794,36,103,36103,3165,0,715212,715212,3165,0,715212,715212,1493350,569985,6146386389,2362201496,100,0,100,100,0.21,0,0.01,0.03
-11795,36,103,36103,26030,8526,15851474,14718868,26030,8526,15851474,14718868,1493350,569985,6146386389,2362201496,100,100,100,100,1.74,1.5,0.26,0.62
-11796,36,103,36103,4056,1363,3792345,3792345,4056,1363,3792345,3792345,1493350,569985,6146386389,2362201496,100,100,100,100,0.27,0.24,0.06,0.16
-11797,36,059,36059,9041,3217,13354085,13312889,9041,3217,13354085,13312889,1339532,468346,1173871699,737411094,100,100,100,100,0.67,0.69,1.14,1.81
-11798,36,103,36103,15347,4168,12355493,12346847,15347,4168,12355493,12346847,1493350,569985,6146386389,2362201496,100,100,100,100,1.03,0.73,0.2,0.52
-11801,36,059,36059,39553,13127,17222949,17183893,39553,13127,17222949,17183893,1339532,468346,1173871699,737411094,100,100,100,100,2.95,2.8,1.47,2.33
-11803,36,059,36059,28127,9917,15710034,15682737,28127,9917,15710034,15682737,1339532,468346,1173871699,737411094,100,100,100,100,2.1,2.12,1.34,2.13
-11804,36,059,36059,5010,1773,7476337,7467476,5010,1773,7476337,7467476,1339532,468346,1173871699,737411094,100,100,100,100,0.37,0.38,0.64,1.01
-11901,36,103,36103,27172,11250,156057901,142757574,27172,11250,156057901,142757574,1493350,569985,6146386389,2362201496,100,100,100,100,1.82,1.97,2.54,6.04
-11930,36,103,36103,1343,2452,44929187,23874994,1343,2452,44929187,23874994,1493350,569985,6146386389,2362201496,100,100,100,100,0.09,0.43,0.73,1.01
-11931,36,103,36103,151,103,1413227,1173837,151,103,1413227,1173837,1493350,569985,6146386389,2362201496,100,100,100,100,0.01,0.02,0.02,0.05
-11932,36,103,36103,1398,1938,27170418,22374497,1398,1938,27170418,22374497,1493350,569985,6146386389,2362201496,100,100,100,100,0.09,0.34,0.44,0.95
-11933,36,103,36103,6844,3577,78072618,71817314,6844,3577,78072618,71817314,1493350,569985,6146386389,2362201496,100,100,100,100,0.46,0.63,1.27,3.04
-11934,36,103,36103,7263,2599,13129673,12055515,7263,2599,13129673,12055515,1493350,569985,6146386389,2362201496,100,100,100,100,0.49,0.46,0.21,0.51
-11935,36,103,36103,3304,2069,29381553,26368809,3304,2069,29381553,26368809,1493350,569985,6146386389,2362201496,100,100,100,100,0.22,0.36,0.48,1.12
-11937,36,103,36103,15398,12428,175069435,111088711,15398,12428,175069435,111088711,1493350,569985,6146386389,2362201496,100,100,100,100,1.03,2.18,2.85,4.7
-11939,36,103,36103,926,953,19279297,5797380,926,953,19279297,5797380,1493350,569985,6146386389,2362201496,100,100,100,100,0.06,0.17,0.31,0.25
-11940,36,103,36103,5210,2179,14655895,14268754,5210,2179,14655895,14268754,1493350,569985,6146386389,2362201496,100,100,100,100,0.35,0.38,0.24,0.6
-11941,36,103,36103,1986,928,6705398,6366959,1986,928,6705398,6366959,1493350,569985,6146386389,2362201496,100,100,100,100,0.13,0.16,0.11,0.27
-11942,36,103,36103,4603,2948,24641675,22586450,4603,2948,24641675,22586450,1493350,569985,6146386389,2362201496,100,100,100,100,0.31,0.52,0.4,0.96
-11944,36,103,36103,4299,2812,19526556,10548117,4299,2812,19526556,10548117,1493350,569985,6146386389,2362201496,100,100,100,100,0.29,0.49,0.32,0.45
-11946,36,103,36103,14068,8176,41102529,34938413,14068,8176,41102529,34938413,1493350,569985,6146386389,2362201496,100,100,100,100,0.94,1.43,0.67,1.48
-11947,36,103,36103,416,206,1683074,1683074,416,206,1683074,1683074,1493350,569985,6146386389,2362201496,100,100,100,100,0.03,0.04,0.03,0.07
-11948,36,103,36103,1123,718,7046729,7035731,1123,718,7046729,7035731,1493350,569985,6146386389,2362201496,100,100,100,100,0.08,0.13,0.11,0.3
-11949,36,103,36103,14573,5399,90199804,89461466,14573,5399,90199804,89461466,1493350,569985,6146386389,2362201496,100,100,100,100,0.98,0.95,1.47,3.79
-11950,36,103,36103,16268,5098,11051245,10683102,16268,5098,11051245,10683102,1493350,569985,6146386389,2362201496,100,100,100,100,1.09,0.89,0.18,0.45
-11951,36,103,36103,13680,5140,20267505,17356555,13680,5140,20267505,17356555,1493350,569985,6146386389,2362201496,100,100,100,100,0.92,0.9,0.33,0.73
-11952,36,103,36103,4637,2685,32774200,24544324,4637,2685,32774200,24544324,1493350,569985,6146386389,2362201496,100,100,100,100,0.31,0.47,0.53,1.04
-11953,36,103,36103,13553,5660,26762075,26579216,13553,5660,26762075,26579216,1493350,569985,6146386389,2362201496,100,100,100,100,0.91,0.99,0.44,1.13
-11954,36,103,36103,3326,4722,92858730,47942719,3326,4722,92858730,47942719,1493350,569985,6146386389,2362201496,100,100,100,100,0.22,0.83,1.51,2.03
-11955,36,103,36103,3285,1707,7981489,7392391,3285,1707,7981489,7392391,1493350,569985,6146386389,2362201496,100,100,100,100,0.22,0.3,0.13,0.31
-11956,36,103,36103,349,308,3442535,3284727,349,308,3442535,3284727,1493350,569985,6146386389,2362201496,100,100,100,100,0.02,0.05,0.06,0.14
-11957,36,103,36103,743,772,56594943,16750096,743,772,56594943,16750096,1493350,569985,6146386389,2362201496,100,100,100,100,0.05,0.14,0.92,0.71
-11958,36,103,36103,635,454,10628132,7448956,635,454,10628132,7448956,1493350,569985,6146386389,2362201496,100,100,100,100,0.04,0.08,0.17,0.32
-11959,36,103,36103,939,1495,11034099,9938212,939,1495,11034099,9938212,1493350,569985,6146386389,2362201496,100,100,100,100,0.06,0.26,0.18,0.42
-11960,36,103,36103,1084,963,5079431,4888997,1084,963,5079431,4888997,1493350,569985,6146386389,2362201496,100,100,100,100,0.07,0.17,0.08,0.21
-11961,36,103,36103,12834,6113,33369616,33129633,12834,6113,33369616,33129633,1493350,569985,6146386389,2362201496,100,100,100,100,0.86,1.07,0.54,1.4
-11962,36,103,36103,494,813,18607814,14198091,494,813,18607814,14198091,1493350,569985,6146386389,2362201496,100,100,100,100,0.03,0.14,0.3,0.6
-11963,36,103,36103,6622,5628,41355921,34942545,6622,5628,41355921,34942545,1493350,569985,6146386389,2362201496,100,100,100,100,0.44,0.99,0.67,1.48
-11964,36,103,36103,1858,1922,51317528,24189275,1858,1922,51317528,24189275,1493350,569985,6146386389,2362201496,100,100,100,100,0.12,0.34,0.83,1.02
-11965,36,103,36103,534,832,24074269,7317534,534,832,24074269,7317534,1493350,569985,6146386389,2362201496,100,100,100,100,0.04,0.15,0.39,0.31
-11967,36,103,36103,26583,8628,31611114,29314921,26583,8628,31611114,29314921,1493350,569985,6146386389,2362201496,100,100,100,100,1.78,1.51,0.51,1.24
-11968,36,103,36103,11593,9398,84949547,69090110,11593,9398,84949547,69090110,1493350,569985,6146386389,2362201496,100,100,100,100,0.78,1.65,1.38,2.92
-11970,36,103,36103,522,513,1524800,1454535,522,513,1524800,1454535,1493350,569985,6146386389,2362201496,100,100,100,100,0.03,0.09,0.02,0.06
-11971,36,103,36103,5818,4051,39321326,28660407,5818,4051,39321326,28660407,1493350,569985,6146386389,2362201496,100,100,100,100,0.39,0.71,0.64,1.21
-11972,36,103,36103,1321,571,6269286,6252109,1321,571,6269286,6252109,1493350,569985,6146386389,2362201496,100,100,100,100,0.09,0.1,0.1,0.26
-11973,36,103,36103,9,145,11428764,11417197,9,145,11428764,11417197,1493350,569985,6146386389,2362201496,100,100,100,100,0,0.03,0.19,0.48
-11975,36,103,36103,408,609,10471328,7387267,408,609,10471328,7387267,1493350,569985,6146386389,2362201496,100,100,100,100,0.03,0.11,0.17,0.31
-11976,36,103,36103,1565,2201,37621214,31784245,1565,2201,37621214,31784245,1493350,569985,6146386389,2362201496,100,100,100,100,0.1,0.39,0.61,1.35
-11977,36,103,36103,2467,1610,15115470,14897275,2467,1610,15115470,14897275,1493350,569985,6146386389,2362201496,100,100,100,100,0.17,0.28,0.25,0.63
-11978,36,103,36103,3255,3879,34150052,32628672,3255,3879,34150052,32628672,1493350,569985,6146386389,2362201496,100,100,100,100,0.22,0.68,0.56,1.38
-11980,36,103,36103,4990,1646,34290351,33972329,4990,1646,34290351,33972329,1493350,569985,6146386389,2362201496,100,100,100,100,0.33,0.29,0.56,1.44
-12007,36,001,36001,60,28,3147762,3140703,60,28,3147762,3140703,304204,137739,1381245675,1354056384,100,100,100,100,0.02,0.02,0.23,0.23
-12008,36,093,36093,497,195,2605825,2153229,497,195,2605825,2153229,154727,68196,542307755,529693619,100,100,100,100,0.32,0.29,0.48,0.41
-12009,36,001,36001,7164,3076,137410561,135241924,7164,3076,137410561,135241924,304204,137739,1381245675,1354056384,100,100,100,100,2.35,2.23,9.95,9.99
-12010,36,035,36035,3802,1639,66491655,66435871,28937,13788,345580383,338547680,55531,28562,1380152115,1283258864,13.14,11.89,19.24,19.62,6.85,5.74,4.82,5.18
-12010,36,057,36057,24026,11688,219685348,213216932,28937,13788,345580383,338547680,50219,23063,1062815091,1043875858,83.03,84.77,63.57,62.98,47.84,50.68,20.67,20.43
-12010,36,091,36091,696,270,37922392,37613020,28937,13788,345580383,338547680,219607,98656,2185452344,2097849013,2.41,1.96,10.97,11.11,0.32,0.27,1.74,1.79
-12010,36,093,36093,413,191,21480988,21281857,28937,13788,345580383,338547680,154727,68196,542307755,529693619,1.43,1.39,6.22,6.29,0.27,0.28,3.96,4.02
-12015,36,039,36039,3010,1641,36061185,34601819,3010,1641,36061185,34601819,49221,29210,1704341288,1676140222,100,100,100,100,6.12,5.62,2.12,2.06
-12017,36,021,36021,435,314,51792876,51687722,435,314,51792876,51687722,63096,32775,1679000316,1643879273,100,100,100,100,0.69,0.96,3.08,3.14
-12018,36,083,36083,7930,3378,118579201,115351117,7930,3378,118579201,115351117,159429,71475,1723360861,1689789426,100,100,100,100,4.97,4.73,6.88,6.83
-12019,36,091,36091,13978,5682,75829879,74556517,14740,5944,77682814,76405457,219607,98656,2185452344,2097849013,94.83,95.59,97.61,97.58,6.37,5.76,3.47,3.55
-12019,36,093,36093,762,262,1852935,1848940,14740,5944,77682814,76405457,154727,68196,542307755,529693619,5.17,4.41,2.39,2.42,0.49,0.38,0.34,0.35
-12020,36,091,36091,31192,13130,202878466,194766983,31192,13130,202878466,194766983,219607,98656,2185452344,2097849013,100,100,100,100,14.2,13.31,9.28,9.28
-12022,36,083,36083,929,494,83974440,83819019,929,494,83974440,83819019,159429,71475,1723360861,1689789426,100,100,100,100,0.58,0.69,4.87,4.96
-12023,36,001,36001,1814,880,112182798,111579595,2196,1088,149856226,149162633,304204,137739,1381245675,1354056384,82.6,80.88,74.86,74.8,0.6,0.64,8.12,8.24
-12023,36,095,36095,382,208,37673428,37583038,2196,1088,149856226,149162633,32749,17231,1622180792,1610503950,17.4,19.12,25.14,25.2,1.17,1.21,2.32,2.33
-12024,36,021,36021,31,26,2697849,2697849,31,26,2697849,2697849,63096,32775,1679000316,1643879273,100,100,100,100,0.05,0.08,0.16,0.16
-12025,36,035,36035,4964,2652,69385377,69287442,5505,3062,95034277,93930692,55531,28562,1380152115,1283258864,90.17,86.61,73.01,73.76,8.94,9.29,5.03,5.4
-12025,36,091,36091,541,410,25648900,24643250,5505,3062,95034277,93930692,219607,98656,2185452344,2097849013,9.83,13.39,26.99,26.24,0.25,0.42,1.17,1.17
-12027,36,091,36091,3199,1270,16618304,16618304,3882,1527,18633244,18575312,219607,98656,2185452344,2097849013,82.41,83.17,89.19,89.46,1.46,1.29,0.76,0.79
-12027,36,093,36093,683,257,2014940,1957008,3882,1527,18633244,18575312,154727,68196,542307755,529693619,17.59,16.83,10.81,10.54,0.44,0.38,0.37,0.37
-12028,36,083,36083,794,317,32036088,31718430,1172,488,59173103,58463443,159429,71475,1723360861,1689789426,67.75,64.96,54.14,54.25,0.5,0.44,1.86,1.88
-12028,36,115,36115,378,171,27137015,26745013,1172,488,59173103,58463443,63216,28844,2190839314,2152756071,32.25,35.04,45.86,45.75,0.6,0.59,1.24,1.24
-12029,36,021,36021,1113,783,52716228,52061012,1113,783,52716228,52061012,63096,32775,1679000316,1643879273,100,100,100,100,1.76,2.39,3.14,3.17
-12031,36,095,36095,175,76,8403166,8387429,175,76,8403166,8387429,32749,17231,1622180792,1610503950,100,100,100,100,0.53,0.44,0.52,0.52
-12032,36,035,36035,827,1322,119581520,111097746,836,1343,241509049,230002918,55531,28562,1380152115,1283258864,98.92,98.44,49.51,48.3,1.49,4.63,8.66,8.66
-12032,36,041,36041,9,21,121927529,118905172,836,1343,241509049,230002918,4836,8694,4682190034,4447975965,1.08,1.56,50.49,51.7,0.19,0.24,2.6,2.67
-12033,36,083,36083,7851,3283,71711808,69887469,7851,3283,71711808,69887469,159429,71475,1723360861,1689789426,100,100,100,100,4.92,4.59,4.16,4.14
-12035,36,095,36095,802,355,16415392,16135269,802,355,16415392,16135269,32749,17231,1622180792,1610503950,100,100,100,100,2.45,2.06,1.01,1
-12036,36,077,36077,35,23,3951440,3951440,228,154,19202875,19181893,62259,30777,2630785590,2594391877,15.35,14.94,20.58,20.6,0.06,0.07,0.15,0.15
-12036,36,095,36095,193,131,15251435,15230453,228,154,19202875,19181893,32749,17231,1622180792,1610503950,84.65,85.06,79.42,79.4,0.59,0.76,0.94,0.95
-12037,36,021,36021,4015,2106,80357717,79850406,4015,2106,80357717,79850406,63096,32775,1679000316,1643879273,100,100,100,100,6.36,6.43,4.79,4.86
-12040,36,083,36083,113,60,3384007,3384007,113,60,3384007,3384007,159429,71475,1723360861,1689789426,100,100,100,100,0.07,0.08,0.2,0.2
-12041,36,001,36001,481,195,4097531,4097531,481,195,4097531,4097531,304204,137739,1381245675,1354056384,100,100,100,100,0.16,0.14,0.3,0.3
-12042,36,039,36039,271,144,11283352,11251961,271,144,11283352,11251961,49221,29210,1704341288,1676140222,100,100,100,100,0.55,0.49,0.66,0.67
-12043,36,077,36077,5,6,1878190,1874805,8509,3498,160638281,159961831,62259,30777,2630785590,2594391877,0.06,0.17,1.17,1.17,0.01,0.02,0.07,0.07
-12043,36,095,36095,8504,3492,158760091,158087026,8509,3498,160638281,159961831,32749,17231,1622180792,1610503950,99.94,99.83,98.83,98.83,25.97,20.27,9.79,9.82
-12045,36,001,36001,584,279,2259761,1900885,584,279,2259761,1900885,304204,137739,1381245675,1354056384,100,100,100,100,0.19,0.2,0.16,0.14
-12046,36,001,36001,788,336,43951479,38561900,817,347,45142291,39752712,304204,137739,1381245675,1354056384,96.45,96.83,97.36,97,0.26,0.24,3.18,2.85
-12046,36,039,36039,29,11,1190812,1190812,817,347,45142291,39752712,49221,29210,1704341288,1676140222,3.55,3.17,2.64,3,0.06,0.04,0.07,0.07
-12047,36,001,36001,19664,9738,26571649,22870488,19664,9738,26571649,22870488,304204,137739,1381245675,1354056384,100,100,100,100,6.46,7.07,1.92,1.69
-12051,36,039,36039,7070,2115,56176149,55230325,7070,2115,56176149,55230325,49221,29210,1704341288,1676140222,100,100,100,100,14.36,7.24,3.3,3.3
-12052,36,083,36083,1568,756,81193033,78481366,1568,756,81193033,78481366,159429,71475,1723360861,1689789426,100,100,100,100,0.98,1.06,4.71,4.64
-12053,36,001,36001,457,198,24158390,24104339,4587,1851,161870217,160164360,304204,137739,1381245675,1354056384,9.96,10.7,14.92,15.05,0.15,0.14,1.75,1.78
-12053,36,057,36057,55,27,4512619,4452772,4587,1851,161870217,160164360,50219,23063,1062815091,1043875858,1.2,1.46,2.79,2.78,0.11,0.12,0.42,0.43
-12053,36,093,36093,3560,1428,107569529,106118198,4587,1851,161870217,160164360,154727,68196,542307755,529693619,77.61,77.15,66.45,66.26,2.3,2.09,19.84,20.03
-12053,36,095,36095,515,198,25629679,25489051,4587,1851,161870217,160164360,32749,17231,1622180792,1610503950,11.23,10.7,15.83,15.91,1.57,1.15,1.58,1.58
-12054,36,001,36001,16918,7144,40085923,40007380,16918,7144,40085923,40007380,304204,137739,1381245675,1354056384,100,100,100,100,5.56,5.19,2.9,2.95
-12056,36,093,36093,2310,955,47897278,46631324,2310,955,47897278,46631324,154727,68196,542307755,529693619,100,100,100,100,1.49,1.4,8.83,8.8
-12057,36,083,36083,437,184,17122592,17121023,1835,792,91103652,91071725,159429,71475,1723360861,1689789426,23.81,23.23,18.79,18.8,0.27,0.26,0.99,1.01
-12057,36,115,36115,1398,608,73981060,73950702,1835,792,91103652,91071725,63216,28844,2190839314,2152756071,76.19,76.77,81.21,81.2,2.21,2.11,3.38,3.44
-12058,36,039,36039,1445,709,50603585,49810354,1445,709,50603585,49810354,49221,29210,1704341288,1676140222,100,100,100,100,2.94,2.43,2.97,2.97
-12059,36,001,36001,1632,1021,69018917,67209122,1632,1021,69018917,67209122,304204,137739,1381245675,1354056384,100,100,100,100,0.54,0.74,5,4.96
-12060,36,021,36021,1507,874,89707199,89364743,1507,874,89707199,89364743,63096,32775,1679000316,1643879273,100,100,100,100,2.39,2.67,5.34,5.44
-12061,36,083,36083,9050,3827,52426031,52133318,9050,3827,52426031,52133318,159429,71475,1723360861,1689789426,100,100,100,100,5.68,5.35,3.04,3.09
-12062,36,021,36021,171,82,1851744,1851744,1776,814,75651556,75007616,63096,32775,1679000316,1643879273,9.63,10.07,2.45,2.47,0.27,0.25,0.11,0.11
-12062,36,083,36083,1605,732,73799812,73155872,1776,814,75651556,75007616,159429,71475,1723360861,1689789426,90.37,89.93,97.55,97.53,1.01,1.02,4.28,4.33
-12063,36,083,36083,444,176,3701083,3690581,444,176,3701083,3690581,159429,71475,1723360861,1689789426,100,100,100,100,0.28,0.25,0.21,0.22
-12064,36,077,36077,515,289,22565516,22530087,563,333,29636375,29600946,62259,30777,2630785590,2594391877,91.47,86.79,76.14,76.11,0.83,0.94,0.86,0.87
-12064,36,095,36095,48,44,7070859,7070859,563,333,29636375,29600946,32749,17231,1622180792,1610503950,8.53,13.21,23.86,23.89,0.15,0.26,0.44,0.44
-12065,36,091,36091,41776,18030,92954957,90379400,41776,18030,92954957,90379400,219607,98656,2185452344,2097849013,100,100,100,100,19.02,18.28,4.25,4.31
-12066,36,057,36057,656,299,48673510,46548259,2143,946,89755918,86932724,50219,23063,1062815091,1043875858,30.61,31.61,54.23,53.55,1.31,1.3,4.58,4.46
-12066,36,093,36093,385,155,16286200,15944010,2143,946,89755918,86932724,154727,68196,542307755,529693619,17.97,16.38,18.14,18.34,0.25,0.23,3,3.01
-12066,36,095,36095,1102,492,24796208,24440455,2143,946,89755918,86932724,32749,17231,1622180792,1610503950,51.42,52.01,27.63,28.11,3.36,2.86,1.53,1.52
-12067,36,001,36001,1506,651,55963877,55453672,1506,651,55963877,55453672,304204,137739,1381245675,1354056384,100,100,100,100,0.5,0.47,4.05,4.1
-12068,36,035,36035,31,8,3732720,3732720,3201,1365,81588929,79798849,55531,28562,1380152115,1283258864,0.97,0.59,4.58,4.68,0.06,0.03,0.27,0.29
-12068,36,057,36057,3170,1357,77856209,76066129,3201,1365,81588929,79798849,50219,23063,1062815091,1043875858,99.03,99.41,95.42,95.32,6.31,5.88,7.33,7.29
-12069,36,057,36057,256,101,1791349,1484746,256,101,1791349,1484746,50219,23063,1062815091,1043875858,100,100,100,100,0.51,0.44,0.17,0.14
-12070,36,035,36035,403,172,14637337,14622082,1410,617,32080996,31705037,55531,28562,1380152115,1283258864,28.58,27.88,45.63,46.12,0.73,0.6,1.06,1.14
-12070,36,057,36057,1007,445,17443659,17082955,1410,617,32080996,31705037,50219,23063,1062815091,1043875858,71.42,72.12,54.37,53.88,2.01,1.93,1.64,1.64
-12071,36,095,36095,270,163,23909016,23909016,270,163,23909016,23909016,32749,17231,1622180792,1610503950,100,100,100,100,0.82,0.95,1.47,1.48
-12072,36,057,36057,2890,1155,126138539,124739689,2890,1155,126138539,124739689,50219,23063,1062815091,1043875858,100,100,100,100,5.75,5.01,11.87,11.95
-12074,36,091,36091,2963,1516,94549418,92324087,2963,1516,94549418,92324087,219607,98656,2185452344,2097849013,100,100,100,100,1.35,1.54,4.33,4.4
-12075,36,021,36021,3418,1595,102289081,101749208,3418,1595,102289081,101749208,63096,32775,1679000316,1643879273,100,100,100,100,5.42,4.87,6.09,6.19
-12076,36,095,36095,1500,1440,199168607,194249588,1500,1440,199168607,194249588,32749,17231,1622180792,1610503950,100,100,100,100,4.58,8.36,12.28,12.06
-12077,36,001,36001,6246,2450,27147541,26121600,6246,2450,27147541,26121600,304204,137739,1381245675,1354056384,100,100,100,100,2.05,1.78,1.97,1.93
-12078,36,035,36035,23773,11840,290724625,280975365,23773,11840,290724625,280975365,55531,28562,1380152115,1283258864,100,100,100,100,42.81,41.45,21.06,21.9
-12083,36,001,36001,1286,592,52374138,51615281,3795,1839,112942967,111677736,304204,137739,1381245675,1354056384,33.89,32.19,46.37,46.22,0.42,0.43,3.79,3.81
-12083,36,039,36039,2509,1247,60568829,60062455,3795,1839,112942967,111677736,49221,29210,1704341288,1676140222,66.11,67.81,53.63,53.78,5.1,4.27,3.55,3.58
-12084,36,001,36001,4271,2205,9388858,9346116,4271,2205,9388858,9346116,304204,137739,1381245675,1354056384,100,100,100,100,1.4,1.6,0.68,0.69
-12085,36,001,36001,479,203,454725,454725,479,203,454725,454725,304204,137739,1381245675,1354056384,100,100,100,100,0.16,0.15,0.03,0.03
-12086,36,035,36035,212,95,2417647,2411491,1865,910,15863852,15708787,55531,28562,1380152115,1283258864,11.37,10.44,15.24,15.35,0.38,0.33,0.18,0.19
-12086,36,057,36057,1330,577,4127504,4117629,1865,910,15863852,15708787,50219,23063,1062815091,1043875858,71.31,63.41,26.02,26.21,2.65,2.5,0.39,0.39
-12086,36,091,36091,323,238,9318701,9179667,1865,910,15863852,15708787,219607,98656,2185452344,2097849013,17.32,26.15,58.74,58.44,0.15,0.24,0.43,0.44
-12087,36,001,36001,137,60,9454034,9430879,1073,456,51652850,50993000,304204,137739,1381245675,1354056384,12.77,13.16,18.3,18.49,0.05,0.04,0.68,0.7
-12087,36,039,36039,936,396,42198816,41562121,1073,456,51652850,50993000,49221,29210,1704341288,1676140222,87.23,86.84,81.7,81.51,1.9,1.36,2.48,2.48
-12089,36,083,36083,69,36,1404809,1404809,69,36,1404809,1404809,159429,71475,1723360861,1689789426,100,100,100,100,0.04,0.05,0.08,0.08
-12090,36,083,36083,6262,2803,147725910,147700785,6262,2803,147725910,147700785,159429,71475,1723360861,1689789426,100,100,100,100,3.93,3.92,8.57,8.74
-12092,36,095,36095,1304,604,39183896,38739078,1304,604,39183896,38739078,32749,17231,1622180792,1610503950,100,100,100,100,3.98,3.51,2.42,2.41
-12093,36,025,36025,345,292,42824161,42450623,1666,1265,171380484,170863049,47980,31222,3800668339,3735902531,20.71,23.08,24.99,24.84,0.72,0.94,1.13,1.14
-12093,36,095,36095,1321,973,128556323,128412426,1666,1265,171380484,170863049,32749,17231,1622180792,1610503950,79.29,76.92,75.01,75.16,4.03,5.65,7.92,7.97
-12094,36,083,36083,2174,872,64441733,62935442,2268,913,74632840,73126549,159429,71475,1723360861,1689789426,95.86,95.51,86.35,86.06,1.36,1.22,3.74,3.72
-12094,36,115,36115,94,41,10191107,10191107,2268,913,74632840,73126549,63216,28844,2190839314,2152756071,4.14,4.49,13.65,13.94,0.15,0.14,0.47,0.47
-12095,36,035,36035,12266,5303,144324202,143504464,12606,5441,157892759,157056471,55531,28562,1380152115,1283258864,97.3,97.46,91.41,91.37,22.09,18.57,10.46,11.18
-12095,36,057,36057,340,138,13568557,13552007,12606,5441,157892759,157056471,50219,23063,1062815091,1043875858,2.7,2.54,8.59,8.63,0.68,0.6,1.28,1.3
-12106,36,021,36021,2193,1057,37850186,37746223,2193,1057,37850186,37746223,63096,32775,1679000316,1643879273,100,100,100,100,3.48,3.23,2.25,2.3
-12108,36,041,36041,416,940,385193073,366663777,416,940,385193073,366663777,4836,8694,4682190034,4447975965,100,100,100,100,8.6,10.81,8.23,8.24
-12110,36,001,36001,21908,7973,39199839,38035451,21908,7973,39199839,38035451,304204,137739,1381245675,1354056384,100,100,100,100,7.2,5.79,2.84,2.81
-12115,36,021,36021,189,113,13512565,13423448,189,113,13512565,13423448,63096,32775,1679000316,1643879273,100,100,100,100,0.3,0.34,0.8,0.82
-12116,36,077,36077,1920,1112,101914711,99751107,1920,1112,101914711,99751107,62259,30777,2630785590,2594391877,100,100,100,100,3.08,3.61,3.87,3.84
-12117,36,035,36035,3256,2098,117938030,116176825,3256,2098,117938030,116176825,55531,28562,1380152115,1283258864,100,100,100,100,5.86,7.35,8.55,9.05
-12118,36,083,36083,511,239,2768758,2487643,13897,6296,85388608,81780324,159429,71475,1723360861,1689789426,3.68,3.8,3.24,3.04,0.32,0.33,0.16,0.15
-12118,36,091,36091,13386,6057,82619850,79292681,13897,6296,85388608,81780324,219607,98656,2185452344,2097849013,96.32,96.2,96.76,96.96,6.1,6.14,3.78,3.78
-12120,36,001,36001,586,334,41823181,41661175,613,353,45515173,45353167,304204,137739,1381245675,1354056384,95.6,94.62,91.89,91.86,0.19,0.24,3.03,3.08
-12120,36,039,36039,27,19,3691992,3691992,613,353,45515173,45353167,49221,29210,1704341288,1676140222,4.4,5.38,8.11,8.14,0.05,0.07,0.22,0.22
-12121,36,083,36083,1916,750,61055661,53391274,1916,750,61055661,53391274,159429,71475,1723360861,1689789426,100,100,100,100,1.2,1.05,3.54,3.16
-12122,36,001,36001,182,205,22395356,22019713,4582,2763,280927588,279921853,304204,137739,1381245675,1354056384,3.97,7.42,7.97,7.87,0.06,0.15,1.62,1.63
-12122,36,095,36095,4400,2558,258532232,257902140,4582,2763,280927588,279921853,32749,17231,1622180792,1610503950,96.03,92.58,92.03,92.13,13.44,14.85,15.94,16.01
-12123,36,083,36083,5124,2283,85689061,84493279,5124,2283,85689061,84493279,159429,71475,1723360861,1689789426,100,100,100,100,3.21,3.19,4.97,5
-12124,36,039,36039,606,280,6835792,6825392,606,280,6835792,6825392,49221,29210,1704341288,1676140222,100,100,100,100,1.23,0.96,0.4,0.41
-12125,36,021,36021,1373,763,46528172,46520294,1373,763,46528172,46520294,63096,32775,1679000316,1643879273,100,100,100,100,2.18,2.33,2.77,2.83
-12130,36,021,36021,987,480,1546252,1546252,987,480,1546252,1546252,63096,32775,1679000316,1643879273,100,100,100,100,1.56,1.46,0.09,0.09
-12131,36,095,36095,115,85,19347616,18298933,115,85,19347616,18298933,32749,17231,1622180792,1610503950,100,100,100,100,0.35,0.49,1.19,1.14
-12132,36,021,36021,338,172,4815480,4815480,338,172,4815480,4815480,63096,32775,1679000316,1643879273,100,100,100,100,0.54,0.52,0.29,0.29
-12134,36,035,36035,1929,1306,40957100,39795803,3516,2922,506187479,500349045,55531,28562,1380152115,1283258864,54.86,44.7,8.09,7.95,3.47,4.57,2.97,3.1
-12134,36,041,36041,595,518,323316208,319397219,3516,2922,506187479,500349045,4836,8694,4682190034,4447975965,16.92,17.73,63.87,63.83,12.3,5.96,6.91,7.18
-12134,36,091,36091,992,1098,141914171,141156023,3516,2922,506187479,500349045,219607,98656,2185452344,2097849013,28.21,37.58,28.04,28.21,0.45,1.11,6.49,6.73
-12136,36,021,36021,804,487,47059906,47010531,804,487,47059906,47010531,63096,32775,1679000316,1643879273,100,100,100,100,1.27,1.49,2.8,2.86
-12137,36,057,36057,380,165,9537360,9443353,1679,747,63127009,62101638,50219,23063,1062815091,1043875858,22.63,22.09,15.11,15.21,0.76,0.72,0.9,0.9
-12137,36,093,36093,1299,582,53589649,52658285,1679,747,63127009,62101638,154727,68196,542307755,529693619,77.37,77.91,84.89,84.79,0.84,0.85,9.88,9.94
-12138,36,083,36083,3168,1761,208932709,207870806,3168,1761,208932709,207870806,159429,71475,1723360861,1689789426,100,100,100,100,1.99,2.46,12.12,12.3
-12139,36,041,36041,295,704,645186054,619226855,295,704,645186054,619226855,4836,8694,4682190034,4447975965,100,100,100,100,6.1,8.1,13.78,13.92
-12140,36,083,36083,1702,671,21647325,21464106,1702,671,21647325,21464106,159429,71475,1723360861,1689789426,100,100,100,100,1.07,0.94,1.26,1.27
-12143,36,001,36001,4811,2147,45198849,44876103,5137,2282,50512017,50145837,304204,137739,1381245675,1354056384,93.65,94.08,89.48,89.49,1.58,1.56,3.27,3.31
-12143,36,039,36039,326,135,5313168,5269734,5137,2282,50512017,50145837,49221,29210,1704341288,1676140222,6.35,5.92,10.52,10.51,0.66,0.46,0.31,0.31
-12144,36,083,36083,20555,9474,50542663,49036543,20555,9474,50542663,49036543,159429,71475,1723360861,1689789426,100,100,100,100,12.89,13.25,2.93,2.9
-12147,36,001,36001,499,315,51409938,50930855,499,315,51409938,50930855,304204,137739,1381245675,1354056384,100,100,100,100,0.16,0.23,3.72,3.76
-12148,36,091,36091,4569,1797,43845616,40531079,4569,1797,43845616,40531079,219607,98656,2185452344,2097849013,100,100,100,100,2.08,1.82,2.01,1.93
-12149,36,095,36095,2474,1375,122001542,121105416,2474,1375,122001542,121105416,32749,17231,1622180792,1610503950,100,100,100,100,7.55,7.98,7.52,7.52
-12150,36,093,36093,914,411,3083686,2839616,914,411,3083686,2839616,154727,68196,542307755,529693619,100,100,100,100,0.59,0.6,0.57,0.54
-12151,36,091,36091,708,358,7053229,6711172,708,358,7053229,6711172,219607,98656,2185452344,2097849013,100,100,100,100,0.32,0.36,0.32,0.32
-12153,36,083,36083,814,439,47075811,46691967,814,439,47075811,46691967,159429,71475,1723360861,1689789426,100,100,100,100,0.51,0.61,2.73,2.76
-12154,36,083,36083,2317,930,60624835,58357707,2818,1172,111094410,107880380,159429,71475,1723360861,1689789426,82.22,79.35,54.57,54.09,1.45,1.3,3.52,3.45
-12154,36,115,36115,501,242,50469575,49522673,2818,1172,111094410,107880380,63216,28844,2190839314,2152756071,17.78,20.65,45.43,45.91,0.79,0.84,2.3,2.3
-12155,36,025,36025,132,91,5754984,5752371,1977,1178,147732683,147389187,47980,31222,3800668339,3735902531,6.68,7.72,3.9,3.9,0.28,0.29,0.15,0.15
-12155,36,077,36077,1845,1087,141977699,141636816,1977,1178,147732683,147389187,62259,30777,2630785590,2594391877,93.32,92.28,96.1,96.1,2.96,3.53,5.4,5.46
-12156,36,021,36021,152,67,10742588,10742588,848,379,38918945,37151693,63096,32775,1679000316,1643879273,17.92,17.68,27.6,28.92,0.24,0.2,0.64,0.65
-12156,36,083,36083,696,312,28176357,26409105,848,379,38918945,37151693,159429,71475,1723360861,1689789426,82.08,82.32,72.4,71.08,0.44,0.44,1.63,1.56
-12157,36,001,36001,6,5,850403,850403,4061,1888,113102308,112845034,304204,137739,1381245675,1354056384,0.15,0.26,0.75,0.75,0,0,0.06,0.06
-12157,36,093,36093,22,10,1084960,1082536,4061,1888,113102308,112845034,154727,68196,542307755,529693619,0.54,0.53,0.96,0.96,0.01,0.01,0.2,0.2
-12157,36,095,36095,4033,1873,111166945,110912095,4061,1888,113102308,112845034,32749,17231,1622180792,1610503950,99.31,99.21,98.29,98.29,12.31,10.87,6.85,6.89
-12158,36,001,36001,6309,2579,81682977,79239948,6309,2579,81682977,79239948,304204,137739,1381245675,1354056384,100,100,100,100,2.07,1.87,5.91,5.85
-12159,36,001,36001,7896,3456,36603373,36488590,7896,3456,36603373,36488590,304204,137739,1381245675,1354056384,100,100,100,100,2.6,2.51,2.65,2.69
-12160,36,095,36095,944,415,46255557,45894459,944,415,46255557,45894459,32749,17231,1622180792,1610503950,100,100,100,100,2.88,2.41,2.85,2.85
-12161,36,001,36001,160,65,1075955,1059939,160,65,1075955,1059939,304204,137739,1381245675,1354056384,100,100,100,100,0.05,0.05,0.08,0.08
-12164,36,041,36041,365,572,127581304,120211587,365,572,127581304,120211587,4836,8694,4682190034,4447975965,100,100,100,100,7.55,6.58,2.72,2.7
-12165,36,021,36021,175,115,8362720,8358130,175,115,8362720,8358130,63096,32775,1679000316,1643879273,100,100,100,100,0.28,0.35,0.5,0.51
-12166,36,057,36057,1358,616,113870109,113086547,1363,619,114263523,113479961,50219,23063,1062815091,1043875858,99.63,99.52,99.66,99.65,2.7,2.67,10.71,10.83
-12166,36,095,36095,5,3,393414,393414,1363,619,114263523,113479961,32749,17231,1622180792,1610503950,0.37,0.48,0.34,0.35,0.02,0.02,0.02,0.02
-12167,36,025,36025,1700,977,50016448,49860744,2438,1506,119117860,118298378,47980,31222,3800668339,3735902531,69.73,64.87,41.99,42.15,3.54,3.13,1.32,1.33
-12167,36,095,36095,738,529,69101412,68437634,2438,1506,119117860,118298378,32749,17231,1622180792,1610503950,30.27,35.13,58.01,57.85,2.25,3.07,4.26,4.25
-12168,36,083,36083,1952,1025,90629331,90332204,1952,1025,90629331,90332204,159429,71475,1723360861,1689789426,100,100,100,100,1.22,1.43,5.26,5.35
-12169,36,083,36083,306,160,24828243,24662218,306,160,24828243,24662218,159429,71475,1723360861,1689789426,100,100,100,100,0.19,0.22,1.44,1.46
-12170,36,091,36091,4945,2007,79793388,78008401,4945,2007,79793388,78008401,219607,98656,2185452344,2097849013,100,100,100,100,2.25,2.03,3.65,3.72
-12172,36,021,36021,405,164,1144099,1144099,405,164,1144099,1144099,63096,32775,1679000316,1643879273,100,100,100,100,0.64,0.5,0.07,0.07
-12173,36,021,36021,1753,784,44588641,44535675,1753,784,44588641,44535675,63096,32775,1679000316,1643879273,100,100,100,100,2.78,2.39,2.66,2.71
-12174,36,021,36021,345,142,2976986,2976986,345,142,2976986,2976986,63096,32775,1679000316,1643879273,100,100,100,100,0.55,0.43,0.18,0.18
-12175,36,095,36095,797,498,57535330,57248843,797,498,57535330,57248843,32749,17231,1622180792,1610503950,100,100,100,100,2.43,2.89,3.55,3.55
-12176,36,039,36039,198,102,8872378,8614680,198,102,8872378,8614680,49221,29210,1704341288,1676140222,100,100,100,100,0.4,0.35,0.52,0.51
-12177,36,057,36057,518,234,1676729,1581935,518,234,1676729,1581935,50219,23063,1062815091,1043875858,100,100,100,100,1.03,1.01,0.16,0.15
-12180,36,083,36083,53606,24331,144907739,142175880,53606,24331,144907739,142175880,159429,71475,1723360861,1689789426,100,100,100,100,33.62,34.04,8.41,8.41
-12182,36,083,36083,14733,6900,37076845,35586570,14733,6900,37076845,35586570,159429,71475,1723360861,1689789426,100,100,100,100,9.24,9.65,2.15,2.11
-12183,36,001,36001,2620,1408,2417985,1935063,2620,1408,2417985,1935063,304204,137739,1381245675,1354056384,100,100,100,100,0.86,1.02,0.18,0.14
-12184,36,021,36021,7064,3078,99837679,98006498,7148,3105,101620886,99789705,63096,32775,1679000316,1643879273,98.82,99.13,98.25,98.21,11.2,9.39,5.95,5.96
-12184,36,083,36083,84,27,1783207,1783207,7148,3105,101620886,99789705,159429,71475,1723360861,1689789426,1.18,0.87,1.75,1.79,0.05,0.04,0.1,0.11
-12185,36,083,36083,1785,746,48125115,47455069,2037,840,63621499,62941528,159429,71475,1723360861,1689789426,87.63,88.81,75.64,75.4,1.12,1.04,2.79,2.81
-12185,36,115,36115,252,94,15496384,15486459,2037,840,63621499,62941528,63216,28844,2190839314,2152756071,12.37,11.19,24.36,24.6,0.4,0.33,0.71,0.72
-12186,36,001,36001,6277,2728,82963712,81916907,6277,2728,82963712,81916907,304204,137739,1381245675,1354056384,100,100,100,100,2.06,1.98,6.01,6.05
-12187,36,095,36095,697,393,59677955,59619084,697,393,59677955,59619084,32749,17231,1622180792,1610503950,100,100,100,100,2.13,2.28,3.68,3.7
-12188,36,091,36091,10980,4947,36380827,33615799,10980,4947,36380827,33615799,219607,98656,2185452344,2097849013,100,100,100,100,5,5.01,1.66,1.6
-12189,36,001,36001,17568,9032,16973588,16496067,17568,9032,16973588,16496067,304204,137739,1381245675,1354056384,100,100,100,100,5.78,6.56,1.23,1.22
-12190,36,041,36041,674,780,461960971,457909250,674,780,461960971,457909250,4836,8694,4682190034,4447975965,100,100,100,100,13.94,8.97,9.87,10.29
-12192,36,039,36039,1722,771,44569345,44458248,1722,771,44569345,44458248,49221,29210,1704341288,1676140222,100,100,100,100,3.5,2.64,2.62,2.65
-12193,36,001,36001,2016,928,101605654,100695304,2016,928,101605654,100695304,304204,137739,1381245675,1354056384,100,100,100,100,0.66,0.67,7.36,7.44
-12194,36,095,36095,207,138,39984185,39961746,207,138,39984185,39961746,32749,17231,1622180792,1610503950,100,100,100,100,0.63,0.8,2.46,2.48
-12195,36,021,36021,154,96,5064044,5064044,154,96,5064044,5064044,63096,32775,1679000316,1643879273,100,100,100,100,0.24,0.29,0.3,0.31
-12196,36,083,36083,3031,1228,23452034,22898561,3031,1228,23452034,22898561,159429,71475,1723360861,1689789426,100,100,100,100,1.9,1.72,1.36,1.36
-12197,36,077,36077,2233,1394,174555928,173618477,2233,1394,174555928,173618477,62259,30777,2630785590,2594391877,100,100,100,100,3.59,4.53,6.64,6.69
-12198,36,083,36083,7903,3281,34544620,33910049,7903,3281,34544620,33910049,159429,71475,1723360861,1689789426,100,100,100,100,4.96,4.59,2,2.01
-12202,36,001,36001,9628,5207,5882056,5306156,9628,5207,5882056,5306156,304204,137739,1381245675,1354056384,100,100,100,100,3.16,3.78,0.43,0.39
-12203,36,001,36001,29952,13677,29709358,29546226,29952,13677,29709358,29546226,304204,137739,1381245675,1354056384,100,100,100,100,9.85,9.93,2.15,2.18
-12204,36,001,36001,7349,3798,11395407,10534351,7349,3798,11395407,10534351,304204,137739,1381245675,1354056384,100,100,100,100,2.42,2.76,0.83,0.78
-12205,36,001,36001,26977,12204,41149953,40906445,26977,12204,41149953,40906445,304204,137739,1381245675,1354056384,100,100,100,100,8.87,8.86,2.98,3.02
-12206,36,001,36001,16395,8208,5516300,5516300,16395,8208,5516300,5516300,304204,137739,1381245675,1354056384,100,100,100,100,5.39,5.96,0.4,0.41
-12207,36,001,36001,1948,1122,3150524,2746948,1948,1122,3150524,2746948,304204,137739,1381245675,1354056384,100,100,100,100,0.64,0.81,0.23,0.2
-12208,36,001,36001,20702,10260,10882472,10861662,20702,10260,10882472,10861662,304204,137739,1381245675,1354056384,100,100,100,100,6.81,7.45,0.79,0.8
-12209,36,001,36001,10121,4501,5552832,5544950,10121,4501,5552832,5544950,304204,137739,1381245675,1354056384,100,100,100,100,3.33,3.27,0.4,0.41
-12210,36,001,36001,10158,6252,2336600,2321851,10158,6252,2336600,2321851,304204,137739,1381245675,1354056384,100,100,100,100,3.34,4.54,0.17,0.17
-12211,36,001,36001,11303,4549,20811934,20537352,11303,4549,20811934,20537352,304204,137739,1381245675,1354056384,100,100,100,100,3.72,3.3,1.51,1.52
-12222,36,001,36001,6489,0,1418883,1403589,6489,0,1418883,1403589,304204,137739,1381245675,1354056384,100,0,100,100,2.13,0,0.1,0.1
-12302,36,091,36091,457,188,9527598,9484120,27582,11968,112824258,109635377,219607,98656,2185452344,2097849013,1.66,1.57,8.44,8.65,0.21,0.19,0.44,0.45
-12302,36,093,36093,27125,11780,103296660,100151257,27582,11968,112824258,109635377,154727,68196,542307755,529693619,98.34,98.43,91.56,91.35,17.53,17.27,19.05,18.91
-12303,36,001,36001,10358,4155,28126964,28111428,29857,12927,39906272,39875875,304204,137739,1381245675,1354056384,34.69,32.14,70.48,70.5,3.4,3.02,2.04,2.08
-12303,36,093,36093,19499,8772,11779308,11764447,29857,12927,39906272,39875875,154727,68196,542307755,529693619,65.31,67.86,29.52,29.5,12.6,12.86,2.17,2.22
-12304,36,001,36001,2820,1227,6000919,5979977,21482,9295,17723857,17640246,304204,137739,1381245675,1354056384,13.13,13.2,33.86,33.9,0.93,0.89,0.43,0.44
-12304,36,093,36093,18662,8068,11722938,11660269,21482,9295,17723857,17640246,154727,68196,542307755,529693619,86.87,86.8,66.14,66.1,12.06,11.83,2.16,2.2
-12305,36,093,36093,5716,3100,4100241,3859695,5716,3100,4100241,3859695,154727,68196,542307755,529693619,100,100,100,100,3.69,4.55,0.76,0.73
-12306,36,001,36001,753,267,6192268,6185864,25636,11533,113336108,111612578,304204,137739,1381245675,1354056384,2.94,2.32,5.46,5.54,0.25,0.19,0.45,0.46
-12306,36,093,36093,24883,11266,107143840,105426714,25636,11533,113336108,111612578,154727,68196,542307755,529693619,97.06,97.68,94.54,94.46,16.08,16.52,19.76,19.9
-12307,36,093,36093,7692,3387,1857009,1845434,7692,3387,1857009,1845434,154727,68196,542307755,529693619,100,100,100,100,4.97,4.97,0.34,0.35
-12308,36,093,36093,15335,6588,5988466,5823815,15335,6588,5988466,5823815,154727,68196,542307755,529693619,100,100,100,100,9.91,9.66,1.1,1.1
-12309,36,001,36001,4373,1660,6278386,6273591,29343,12449,45231689,42920576,304204,137739,1381245675,1354056384,14.9,13.33,13.88,14.62,1.44,1.21,0.45,0.46
-12309,36,093,36093,24970,10789,38953303,36646985,29343,12449,45231689,42920576,154727,68196,542307755,529693619,85.1,86.67,86.12,85.38,16.14,15.82,7.18,6.92
-12401,36,111,36111,35040,16382,154818814,151373808,35040,16382,154818814,151373808,182493,83638,3006355140,2911755518,100,100,100,100,19.2,19.59,5.15,5.2
-12404,36,111,36111,3385,1945,93042393,92428414,3385,1945,93042393,92428414,182493,83638,3006355140,2911755518,100,100,100,100,1.85,2.33,3.09,3.17
-12405,36,039,36039,780,447,18581565,18506273,780,447,18581565,18506273,49221,29210,1704341288,1676140222,100,100,100,100,1.58,1.53,1.09,1.1
-12406,36,025,36025,716,543,42430291,42313054,823,719,112176007,111969347,47980,31222,3800668339,3735902531,87,75.52,37.82,37.79,1.49,1.74,1.12,1.13
-12406,36,111,36111,107,176,69745716,69656293,823,719,112176007,111969347,182493,83638,3006355140,2911755518,13,24.48,62.18,62.21,0.06,0.21,2.32,2.39
-12407,36,039,36039,173,156,8713930,8713930,173,156,8713930,8713930,49221,29210,1704341288,1676140222,100,100,100,100,0.35,0.53,0.51,0.52
-12409,36,111,36111,804,589,37529816,36953034,804,589,37529816,36953034,182493,83638,3006355140,2911755518,100,100,100,100,0.44,0.7,1.25,1.27
-12410,36,111,36111,397,426,106749894,106657588,397,426,106749894,106657588,182493,83638,3006355140,2911755518,100,100,100,100,0.22,0.51,3.55,3.66
-12411,36,111,36111,497,239,2475443,2427386,497,239,2475443,2427386,182493,83638,3006355140,2911755518,100,100,100,100,0.27,0.29,0.08,0.08
-12412,36,111,36111,673,353,15721043,15721043,673,353,15721043,15721043,182493,83638,3006355140,2911755518,100,100,100,100,0.37,0.42,0.52,0.54
-12413,36,039,36039,2948,1658,42591729,42356213,2948,1658,42591729,42356213,49221,29210,1704341288,1676140222,100,100,100,100,5.99,5.68,2.5,2.53
-12414,36,039,36039,10510,5404,156141981,154372187,10510,5404,156141981,154372187,49221,29210,1704341288,1676140222,100,100,100,100,21.35,18.5,9.16,9.21
-12416,36,111,36111,277,260,13172695,13170617,277,260,13172695,13170617,182493,83638,3006355140,2911755518,100,100,100,100,0.15,0.31,0.44,0.45
-12417,36,111,36111,581,255,891280,817159,581,255,891280,817159,182493,83638,3006355140,2911755518,100,100,100,100,0.32,0.3,0.03,0.03
-12418,36,039,36039,537,395,35781550,35781550,537,395,35781550,35781550,49221,29210,1704341288,1676140222,100,100,100,100,1.09,1.35,2.1,2.13
-12419,36,111,36111,722,325,6256977,6202836,722,325,6256977,6202836,182493,83638,3006355140,2911755518,100,100,100,100,0.4,0.39,0.21,0.21
-12420,36,111,36111,363,220,10944934,10732824,363,220,10944934,10732824,182493,83638,3006355140,2911755518,100,100,100,100,0.2,0.26,0.36,0.37
-12421,36,025,36025,470,633,50801511,50778844,470,633,50801511,50778844,47980,31222,3800668339,3735902531,100,100,100,100,0.98,2.03,1.34,1.36
-12422,36,039,36039,339,228,26401693,26387545,339,228,26401693,26387545,49221,29210,1704341288,1676140222,100,100,100,100,0.69,0.78,1.55,1.57
-12423,36,039,36039,1097,722,32933741,32933741,1097,722,32933741,32933741,49221,29210,1704341288,1676140222,100,100,100,100,2.23,2.47,1.93,1.96
-12424,36,039,36039,250,365,46324031,46027050,250,365,46324031,46027050,49221,29210,1704341288,1676140222,100,100,100,100,0.51,1.25,2.72,2.75
-12427,36,039,36039,576,378,106283828,106188532,576,378,106283828,106188532,49221,29210,1704341288,1676140222,100,100,100,100,1.17,1.29,6.24,6.34
-12428,36,111,36111,6602,3433,141312243,139812127,6602,3433,141312243,139812127,182493,83638,3006355140,2911755518,100,100,100,100,3.62,4.1,4.7,4.8
-12429,36,111,36111,281,139,5472262,5461450,281,139,5472262,5461450,182493,83638,3006355140,2911755518,100,100,100,100,0.15,0.17,0.18,0.19
-12430,36,025,36025,936,845,42723275,42627085,1194,1157,102876567,102780377,47980,31222,3800668339,3735902531,78.39,73.03,41.53,41.47,1.95,2.71,1.12,1.14
-12430,36,039,36039,258,312,60153292,60153292,1194,1157,102876567,102780377,49221,29210,1704341288,1676140222,21.61,26.97,58.47,58.53,0.52,1.07,3.53,3.59
-12431,36,039,36039,1381,757,40127181,40058015,1381,757,40127181,40058015,49221,29210,1704341288,1676140222,100,100,100,100,2.81,2.59,2.35,2.39
-12432,36,111,36111,492,216,1575475,1575475,492,216,1575475,1575475,182493,83638,3006355140,2911755518,100,100,100,100,0.27,0.26,0.05,0.05
-12433,36,111,36111,483,290,10117172,9893657,483,290,10117172,9893657,182493,83638,3006355140,2911755518,100,100,100,100,0.26,0.35,0.34,0.34
-12434,36,025,36025,751,520,36768130,35661204,751,520,36768130,35661204,47980,31222,3800668339,3735902531,100,100,100,100,1.57,1.67,0.97,0.95
-12435,36,111,36111,326,230,25987829,25789205,326,230,25987829,25789205,182493,83638,3006355140,2911755518,100,100,100,100,0.18,0.27,0.86,0.89
-12436,36,039,36039,417,424,40122027,39763602,417,424,40122027,39763602,49221,29210,1704341288,1676140222,100,100,100,100,0.85,1.45,2.35,2.37
-12438,36,025,36025,59,44,1244812,1137337,59,44,1244812,1137337,47980,31222,3800668339,3735902531,100,100,100,100,0.12,0.14,0.03,0.03
-12439,36,039,36039,305,448,20345122,20285730,305,448,20345122,20285730,49221,29210,1704341288,1676140222,100,100,100,100,0.62,1.53,1.19,1.21
-12440,36,111,36111,1980,1050,60997485,59870567,1980,1050,60997485,59870567,182493,83638,3006355140,2911755518,100,100,100,100,1.08,1.26,2.03,2.06
-12441,36,025,36025,47,85,2882008,2878517,114,188,16389596,16386105,47980,31222,3800668339,3735902531,41.23,45.21,17.58,17.57,0.1,0.27,0.08,0.08
-12441,36,111,36111,67,103,13507588,13507588,114,188,16389596,16386105,182493,83638,3006355140,2911755518,58.77,54.79,82.42,82.43,0.04,0.12,0.45,0.46
-12442,36,039,36039,953,1301,86128409,85919003,953,1301,86128409,85919003,49221,29210,1704341288,1676140222,100,100,100,100,1.94,4.45,5.05,5.13
-12443,36,111,36111,3825,1719,46963808,46667503,3825,1719,46963808,46667503,182493,83638,3006355140,2911755518,100,100,100,100,2.1,2.06,1.56,1.6
-12444,36,039,36039,497,623,40099590,39944500,497,623,40099590,39944500,49221,29210,1704341288,1676140222,100,100,100,100,1.01,2.13,2.35,2.38
-12446,36,111,36111,5061,2776,176481467,175885810,5061,2776,176481467,175885810,182493,83638,3006355140,2911755518,100,100,100,100,2.77,3.32,5.87,6.04
-12448,36,111,36111,388,298,30832764,30202270,388,298,30832764,30202270,182493,83638,3006355140,2911755518,100,100,100,100,0.21,0.36,1.03,1.04
-12449,36,111,36111,3367,1299,9848400,9378225,3367,1299,9848400,9378225,182493,83638,3006355140,2911755518,100,100,100,100,1.85,1.55,0.33,0.32
-12450,36,039,36039,183,211,25634491,25634491,183,211,25634491,25634491,49221,29210,1704341288,1676140222,100,100,100,100,0.37,0.72,1.5,1.53
-12451,36,039,36039,1674,898,30710230,30576124,1674,898,30710230,30576124,49221,29210,1704341288,1676140222,100,100,100,100,3.4,3.07,1.8,1.82
-12452,36,039,36039,213,207,22230440,22230440,213,207,22230440,22230440,49221,29210,1704341288,1676140222,100,100,100,100,0.43,0.71,1.3,1.33
-12453,36,111,36111,366,174,1277726,1277726,366,174,1277726,1277726,182493,83638,3006355140,2911755518,100,100,100,100,0.2,0.21,0.04,0.04
-12454,36,039,36039,297,280,28953204,28838772,297,280,28953204,28838772,49221,29210,1704341288,1676140222,100,100,100,100,0.6,0.96,1.7,1.72
-12455,36,025,36025,1936,1646,173432982,170520177,1988,1695,201578466,198660502,47980,31222,3800668339,3735902531,97.38,97.11,86.04,85.83,4.04,5.27,4.56,4.56
-12455,36,111,36111,52,49,28145484,28140325,1988,1695,201578466,198660502,182493,83638,3006355140,2911755518,2.62,2.89,13.96,14.17,0.03,0.06,0.94,0.97
-12456,36,111,36111,639,245,1452008,1399184,639,245,1452008,1399184,182493,83638,3006355140,2911755518,100,100,100,100,0.35,0.29,0.05,0.05
-12457,36,111,36111,763,553,36189767,36189767,763,553,36189767,36189767,182493,83638,3006355140,2911755518,100,100,100,100,0.42,0.66,1.2,1.24
-12458,36,105,36105,137,73,5915700,5892591,3232,1182,83921640,83665854,77547,49186,2581499689,2507450206,4.24,6.18,7.05,7.04,0.18,0.15,0.23,0.24
-12458,36,111,36111,3095,1109,78005940,77773263,3232,1182,83921640,83665854,182493,83638,3006355140,2911755518,95.76,93.82,92.95,92.96,1.7,1.33,2.59,2.67
-12459,36,025,36025,161,181,19722332,19706616,161,181,19722332,19706616,47980,31222,3800668339,3735902531,100,100,100,100,0.34,0.58,0.52,0.53
-12460,36,039,36039,277,161,5344180,5344180,277,161,5344180,5344180,49221,29210,1704341288,1676140222,100,100,100,100,0.56,0.55,0.31,0.32
-12461,36,111,36111,1634,964,61930521,61872153,1634,964,61930521,61872153,182493,83638,3006355140,2911755518,100,100,100,100,0.9,1.15,2.06,2.12
-12463,36,039,36039,1484,825,28094680,28028103,1484,825,28094680,28028103,49221,29210,1704341288,1676140222,100,100,100,100,3.01,2.82,1.65,1.67
-12464,36,111,36111,1020,916,114357323,114332114,1020,916,114357323,114332114,182493,83638,3006355140,2911755518,100,100,100,100,0.56,1.1,3.8,3.93
-12465,36,025,36025,5,10,1653098,1653098,266,312,7518700,7493022,47980,31222,3800668339,3735902531,1.88,3.21,21.99,22.06,0.01,0.03,0.04,0.04
-12465,36,111,36111,261,302,5865602,5839924,266,312,7518700,7493022,182493,83638,3006355140,2911755518,98.12,96.79,78.01,77.94,0.14,0.36,0.2,0.2
-12466,36,111,36111,2471,1183,2688098,2688098,2471,1183,2688098,2688098,182493,83638,3006355140,2911755518,100,100,100,100,1.35,1.41,0.09,0.09
-12468,36,025,36025,56,53,16554443,16531081,1036,852,113250158,112952135,47980,31222,3800668339,3735902531,5.41,6.22,14.62,14.64,0.12,0.17,0.44,0.44
-12468,36,039,36039,980,799,96695715,96421054,1036,852,113250158,112952135,49221,29210,1704341288,1676140222,94.59,93.78,85.38,85.36,1.99,2.74,5.67,5.75
-12469,36,001,36001,553,421,54972065,54938036,677,594,87864712,87813018,304204,137739,1381245675,1354056384,81.68,70.88,62.56,62.56,0.18,0.31,3.98,4.06
-12469,36,039,36039,31,28,3009386,3009386,677,594,87864712,87813018,49221,29210,1704341288,1676140222,4.58,4.71,3.43,3.43,0.06,0.1,0.18,0.18
-12469,36,095,36095,93,145,29883261,29865596,677,594,87864712,87813018,32749,17231,1622180792,1610503950,13.74,24.41,34.01,34.01,0.28,0.84,1.84,1.85
-12470,36,039,36039,536,308,25446137,25344632,536,308,25446137,25344632,49221,29210,1704341288,1676140222,100,100,100,100,1.09,1.05,1.49,1.51
-12471,36,111,36111,215,114,1439294,907991,215,114,1439294,907991,182493,83638,3006355140,2911755518,100,100,100,100,0.12,0.14,0.05,0.03
-12472,36,111,36111,1572,827,9664004,9243857,1572,827,9664004,9243857,182493,83638,3006355140,2911755518,100,100,100,100,0.86,0.99,0.32,0.32
-12473,36,039,36039,861,476,38891152,38891152,861,476,38891152,38891152,49221,29210,1704341288,1676140222,100,100,100,100,1.75,1.63,2.28,2.32
-12474,36,025,36025,1162,943,114454555,114363275,1162,943,114454555,114363275,47980,31222,3800668339,3735902531,100,100,100,100,2.42,3.02,3.01,3.06
-12475,36,111,36111,354,161,3183034,3183034,354,161,3183034,3183034,182493,83638,3006355140,2911755518,100,100,100,100,0.19,0.19,0.11,0.11
-12477,36,111,36111,18787,8842,171825307,170522601,18787,8842,171825307,170522601,182493,83638,3006355140,2911755518,100,100,100,100,10.29,10.57,5.72,5.86
-12480,36,039,36039,65,78,42624824,42574872,634,524,87944474,87890125,49221,29210,1704341288,1676140222,10.25,14.89,48.47,48.44,0.13,0.27,2.5,2.54
-12480,36,111,36111,569,446,45319650,45315253,634,524,87944474,87890125,182493,83638,3006355140,2911755518,89.75,85.11,51.53,51.56,0.31,0.53,1.51,1.56
-12481,36,111,36111,1356,704,32706504,32416793,1356,704,32706504,32416793,182493,83638,3006355140,2911755518,100,100,100,100,0.74,0.84,1.09,1.11
-12482,36,039,36039,680,345,5726553,5726553,680,345,5726553,5726553,49221,29210,1704341288,1676140222,100,100,100,100,1.38,1.18,0.34,0.34
-12483,36,105,36105,55,32,2425546,2425546,259,298,8685018,8608112,77547,49186,2581499689,2507450206,21.24,10.74,27.93,28.18,0.07,0.07,0.09,0.1
-12483,36,111,36111,204,266,6259472,6182566,259,298,8685018,8608112,182493,83638,3006355140,2911755518,78.76,89.26,72.07,71.82,0.11,0.32,0.21,0.21
-12484,36,111,36111,2733,1376,61683248,61600815,2733,1376,61683248,61600815,182493,83638,3006355140,2911755518,100,100,100,100,1.5,1.65,2.05,2.12
-12485,36,039,36039,865,910,22008106,21729903,865,910,22008106,21729903,49221,29210,1704341288,1676140222,100,100,100,100,1.76,3.12,1.29,1.3
-12486,36,111,36111,1523,661,9274814,8784846,1523,661,9274814,8784846,182493,83638,3006355140,2911755518,100,100,100,100,0.83,0.79,0.31,0.3
-12487,36,111,36111,3268,1437,41408169,40673239,3268,1437,41408169,40673239,182493,83638,3006355140,2911755518,100,100,100,100,1.79,1.72,1.38,1.4
-12489,36,111,36111,1292,259,16130470,15922250,1292,259,16130470,15922250,182493,83638,3006355140,2911755518,100,100,100,100,0.71,0.31,0.54,0.55
-12490,36,111,36111,110,64,1360753,1352603,110,64,1360753,1352603,182493,83638,3006355140,2911755518,100,100,100,100,0.06,0.08,0.05,0.05
-12491,36,111,36111,1675,815,24051608,23279872,1675,815,24051608,23279872,182493,83638,3006355140,2911755518,100,100,100,100,0.92,0.97,0.8,0.8
-12492,36,039,36039,271,298,99619938,99619938,271,298,99619938,99619938,49221,29210,1704341288,1676140222,100,100,100,100,0.55,1.02,5.85,5.94
-12493,36,111,36111,495,233,17908021,17854456,495,233,17908021,17854456,182493,83638,3006355140,2911755518,100,100,100,100,0.27,0.28,0.6,0.61
-12494,36,111,36111,764,489,48545559,48545559,764,489,48545559,48545559,182493,83638,3006355140,2911755518,100,100,100,100,0.42,0.58,1.61,1.67
-12495,36,111,36111,265,244,23672913,23672913,265,244,23672913,23672913,182493,83638,3006355140,2911755518,100,100,100,100,0.15,0.29,0.79,0.81
-12496,36,039,36039,1634,2198,122390321,122209566,1634,2198,122390321,122209566,49221,29210,1704341288,1676140222,100,100,100,100,3.32,7.52,7.18,7.29
-12498,36,111,36111,4851,3162,56479261,56454302,4851,3162,56479261,56454302,182493,83638,3006355140,2911755518,100,100,100,100,2.66,3.78,1.88,1.94
-12501,36,027,36027,2457,1149,80029769,79187390,2457,1149,80029769,79187390,297488,118638,2137640454,2060671707,100,100,100,100,0.83,0.97,3.74,3.84
-12502,36,021,36021,1164,745,86247455,84770055,1164,745,86247455,84770055,63096,32775,1679000316,1643879273,100,100,100,100,1.84,2.27,5.14,5.16
-12503,36,021,36021,775,521,54875755,54466824,775,521,54875755,54466824,63096,32775,1679000316,1643879273,100,100,100,100,1.23,1.59,3.27,3.31
-12504,36,027,36027,1395,47,5915697,3809756,1395,47,5915697,3809756,297488,118638,2137640454,2060671707,100,100,100,100,0.47,0.04,0.28,0.18
-12507,36,027,36027,167,77,3914994,3608974,167,77,3914994,3608974,297488,118638,2137640454,2060671707,100,100,100,100,0.06,0.06,0.18,0.18
-12508,36,027,36027,19880,7703,37901583,37721340,19880,7703,37901583,37721340,297488,118638,2137640454,2060671707,100,100,100,100,6.68,6.49,1.77,1.83
-12512,36,027,36027,127,71,1157939,1155772,127,71,1157939,1155772,297488,118638,2137640454,2060671707,100,100,100,100,0.04,0.06,0.05,0.06
-12513,36,021,36021,651,367,7614075,7561218,651,367,7614075,7561218,63096,32775,1679000316,1643879273,100,100,100,100,1.03,1.12,0.45,0.46
-12514,36,027,36027,2938,1384,69724999,69011672,2938,1384,69724999,69011672,297488,118638,2137640454,2060671707,100,100,100,100,0.99,1.17,3.26,3.35
-12515,36,111,36111,1549,616,13020978,12904933,1549,616,13020978,12904933,182493,83638,3006355140,2911755518,100,100,100,100,0.85,0.74,0.43,0.44
-12516,36,021,36021,1833,1018,40579198,39459703,1833,1018,40579198,39459703,63096,32775,1679000316,1643879273,100,100,100,100,2.91,3.11,2.42,2.4
-12517,36,021,36021,509,292,27129579,27089241,509,292,27129579,27089241,63096,32775,1679000316,1643879273,100,100,100,100,0.81,0.89,1.62,1.65
-12518,36,071,36071,5870,2494,25897268,25591374,5870,2494,25897268,25591374,372813,137025,2172078974,2102256780,100,100,100,100,1.57,1.82,1.19,1.22
-12520,36,071,36071,3109,1311,10297361,10238545,3109,1311,10297361,10238545,372813,137025,2172078974,2102256780,100,100,100,100,0.83,0.96,0.47,0.49
-12521,36,021,36021,1644,1130,85994775,85181270,1644,1130,85994775,85181270,63096,32775,1679000316,1643879273,100,100,100,100,2.61,3.45,5.12,5.18
-12522,36,027,36027,5172,2369,97819813,96671668,5172,2369,97819813,96671668,297488,118638,2137640454,2060671707,100,100,100,100,1.74,2,4.58,4.69
-12523,36,021,36021,1798,1014,57171890,56693421,1798,1014,57171890,56693421,63096,32775,1679000316,1643879273,100,100,100,100,2.85,3.09,3.41,3.45
-12524,36,027,36027,15598,6369,42505933,42002747,15598,6369,42505933,42002747,297488,118638,2137640454,2060671707,100,100,100,100,5.24,5.37,1.99,2.04
-12525,36,111,36111,3311,1516,61813710,60890860,3311,1516,61813710,60890860,182493,83638,3006355140,2911755518,100,100,100,100,1.81,1.81,2.06,2.09
-12526,36,021,36021,3686,1862,83344337,82927404,3686,1862,83344337,82927404,63096,32775,1679000316,1643879273,100,100,100,100,5.84,5.68,4.96,5.04
-12527,36,027,36027,147,62,402995,402995,147,62,402995,402995,297488,118638,2137640454,2060671707,100,100,100,100,0.05,0.05,0.02,0.02
-12528,36,111,36111,13344,5454,108460866,106793691,13344,5454,108460866,106793691,182493,83638,3006355140,2911755518,100,100,100,100,7.31,6.52,3.61,3.67
-12529,36,021,36021,2859,1908,173438106,170926882,2859,1908,173438106,170926882,63096,32775,1679000316,1643879273,100,100,100,100,4.53,5.82,10.33,10.4
-12530,36,021,36021,124,65,900455,900455,124,65,900455,900455,63096,32775,1679000316,1643879273,100,100,100,100,0.2,0.2,0.05,0.05
-12531,36,027,36027,2949,1247,40493327,38165221,3601,1450,47918313,45311426,297488,118638,2137640454,2060671707,81.89,86,84.5,84.23,0.99,1.05,1.89,1.85
-12531,36,079,36079,652,203,7424986,7146205,3601,1450,47918313,45311426,99710,38224,637786933,596504166,18.11,14,15.5,15.77,0.65,0.53,1.16,1.2
-12533,36,027,36027,25252,9195,118522489,117029048,25307,9222,127841952,125881545,297488,118638,2137640454,2060671707,99.78,99.71,92.71,92.97,8.49,7.75,5.54,5.68
-12533,36,079,36079,55,27,9319463,8852497,25307,9222,127841952,125881545,99710,38224,637786933,596504166,0.22,0.29,7.29,7.03,0.06,0.07,1.46,1.48
-12534,36,021,36021,17867,8716,228490013,225343752,17867,8716,228490013,225343752,63096,32775,1679000316,1643879273,100,100,100,100,28.32,26.59,13.61,13.71
-12538,36,027,36027,14578,5674,68830714,68315753,14578,5674,68830714,68315753,297488,118638,2137640454,2060671707,100,100,100,100,4.9,4.78,3.22,3.32
-12540,36,027,36027,7802,2785,89133401,88356663,7802,2785,89133401,88356663,297488,118638,2137640454,2060671707,100,100,100,100,2.62,2.35,4.17,4.29
-12542,36,071,36071,243,81,3399739,3388554,5913,2436,37589502,37073189,372813,137025,2172078974,2102256780,4.11,3.33,9.04,9.14,0.07,0.06,0.16,0.16
-12542,36,111,36111,5670,2355,34189763,33684635,5913,2436,37589502,37073189,182493,83638,3006355140,2911755518,95.89,96.67,90.96,90.86,3.11,2.82,1.14,1.16
-12543,36,071,36071,3001,1178,31322614,29725867,3001,1178,31322614,29725867,372813,137025,2172078974,2102256780,100,100,100,100,0.8,0.86,1.44,1.41
-12545,36,027,36027,4763,2431,142442720,140368268,4763,2431,142442720,140368268,297488,118638,2137640454,2060671707,100,100,100,100,1.6,2.05,6.66,6.81
-12546,36,021,36021,190,145,26276237,26267415,3039,1642,119438437,118132331,63096,32775,1679000316,1643879273,6.25,8.83,22,22.24,0.3,0.44,1.56,1.6
-12546,36,027,36027,2849,1497,93162200,91864916,3039,1642,119438437,118132331,297488,118638,2137640454,2060671707,93.75,91.17,78,77.76,0.96,1.26,4.36,4.46
-12547,36,111,36111,2891,1174,27257112,26804787,2891,1174,27257112,26804787,182493,83638,3006355140,2911755518,100,100,100,100,1.58,1.4,0.91,0.92
-12548,36,111,36111,1494,597,15744110,15205630,1494,597,15744110,15205630,182493,83638,3006355140,2911755518,100,100,100,100,0.82,0.71,0.52,0.52
-12549,36,071,36071,10201,3704,101871502,100515697,10201,3704,101871502,100515697,372813,137025,2172078974,2102256780,100,100,100,100,2.74,2.7,4.69,4.78
-12550,36,071,36071,54447,20342,92921826,89919649,54447,20342,92921826,89919649,372813,137025,2172078974,2102256780,100,100,100,100,14.6,14.85,4.28,4.28
-12553,36,071,36071,24438,9650,66258785,63896350,24438,9650,66258785,63896350,372813,137025,2172078974,2102256780,100,100,100,100,6.56,7.04,3.05,3.04
-12561,36,111,36111,18308,6733,156292860,154097024,18308,6733,156292860,154097024,182493,83638,3006355140,2911755518,100,100,100,100,10.03,8.05,5.2,5.29
-12563,36,079,36079,8084,2600,60510451,59105048,8084,2600,60510451,59105048,99710,38224,637786933,596504166,100,100,100,100,8.11,6.8,9.49,9.91
-12564,36,027,36027,7338,3052,106719020,105193151,7338,3052,106719020,105193151,297488,118638,2137640454,2060671707,100,100,100,100,2.47,2.57,4.99,5.1
-12565,36,021,36021,1487,705,3872636,3758959,1487,705,3872636,3758959,63096,32775,1679000316,1643879273,100,100,100,100,2.36,2.15,0.23,0.23
-12566,36,071,36071,4765,1892,49504854,49437597,10753,4322,141391701,140847882,372813,137025,2172078974,2102256780,44.31,43.78,35.01,35.1,1.28,1.38,2.28,2.35
-12566,36,105,36105,575,220,13505821,13435828,10753,4322,141391701,140847882,77547,49186,2581499689,2507450206,5.35,5.09,9.55,9.54,0.74,0.45,0.52,0.54
-12566,36,111,36111,5413,2210,78381026,77974457,10753,4322,141391701,140847882,182493,83638,3006355140,2911755518,50.34,51.13,55.44,55.36,2.97,2.64,2.61,2.68
-12567,36,021,36021,411,277,40509774,40314043,2854,1579,120330059,118836781,63096,32775,1679000316,1643879273,14.4,17.54,33.67,33.92,0.65,0.85,2.41,2.45
-12567,36,027,36027,2443,1302,79820285,78522738,2854,1579,120330059,118836781,297488,118638,2137640454,2060671707,85.6,82.46,66.33,66.08,0.82,1.1,3.73,3.81
-12569,36,027,36027,9826,4086,87019534,85571044,9826,4086,87019534,85571044,297488,118638,2137640454,2060671707,100,100,100,100,3.3,3.44,4.07,4.15
-12570,36,027,36027,7699,2662,56401268,55711916,7699,2662,56401268,55711916,297488,118638,2137640454,2060671707,100,100,100,100,2.59,2.24,2.64,2.7
-12571,36,021,36021,721,409,22682068,22462361,9918,4548,151701456,150018905,63096,32775,1679000316,1643879273,7.27,8.99,14.95,14.97,1.14,1.25,1.35,1.37
-12571,36,027,36027,9197,4139,129019388,127556544,9918,4548,151701456,150018905,297488,118638,2137640454,2060671707,92.73,91.01,85.05,85.03,3.09,3.49,6.04,6.19
-12572,36,027,36027,9123,4376,133468944,130943241,9123,4376,133468944,130943241,297488,118638,2137640454,2060671707,100,100,100,100,3.07,3.69,6.24,6.35
-12574,36,027,36027,329,189,1304571,1304571,329,189,1304571,1304571,297488,118638,2137640454,2060671707,100,100,100,100,0.11,0.16,0.06,0.06
-12575,36,071,36071,2258,781,26280684,25622807,2258,781,26280684,25622807,372813,137025,2172078974,2102256780,100,100,100,100,0.61,0.57,1.21,1.22
-12577,36,071,36071,2029,700,15611815,15203799,2029,700,15611815,15203799,372813,137025,2172078974,2102256780,100,100,100,100,0.54,0.51,0.72,0.72
-12578,36,027,36027,2411,979,40969970,40541503,2411,979,40969970,40541503,297488,118638,2137640454,2060671707,100,100,100,100,0.81,0.83,1.92,1.97
-12580,36,027,36027,4402,1844,56433942,55835535,4402,1844,56433942,55835535,297488,118638,2137640454,2060671707,100,100,100,100,1.48,1.55,2.64,2.71
-12581,36,027,36027,2246,1231,105739426,104718236,2246,1231,105739426,104718236,297488,118638,2137640454,2060671707,100,100,100,100,0.75,1.04,4.95,5.08
-12582,36,027,36027,6162,1409,33525391,32533461,6191,1420,34149467,33105980,297488,118638,2137640454,2060671707,99.53,99.23,98.17,98.27,2.07,1.19,1.57,1.58
-12582,36,079,36079,29,11,624076,572519,6191,1420,34149467,33105980,99710,38224,637786933,596504166,0.47,0.77,1.83,1.73,0.03,0.03,0.1,0.1
-12583,36,021,36021,755,303,14704031,14603338,2451,1084,33928656,33717176,63096,32775,1679000316,1643879273,30.8,27.95,43.34,43.31,1.2,0.92,0.88,0.89
-12583,36,027,36027,1696,781,19224625,19113838,2451,1084,33928656,33717176,297488,118638,2137640454,2060671707,69.2,72.05,56.66,56.69,0.57,0.66,0.9,0.93
-12585,36,027,36027,885,335,12952974,12748970,885,335,12952974,12748970,297488,118638,2137640454,2060671707,100,100,100,100,0.3,0.28,0.61,0.62
-12586,36,071,36071,12528,4736,62433585,61403887,12540,4740,62444970,61415272,372813,137025,2172078974,2102256780,99.9,99.92,99.98,99.98,3.36,3.46,2.87,2.92
-12586,36,111,36111,12,4,11385,11385,12540,4740,62444970,61415272,182493,83638,3006355140,2911755518,0.1,0.08,0.02,0.02,0.01,0,0,0
-12589,36,071,36071,3392,1171,23535708,21478687,17228,5192,151870247,148535998,372813,137025,2172078974,2102256780,19.69,22.55,15.5,14.46,0.91,0.85,1.08,1.02
-12589,36,111,36111,13836,4021,128334539,127057311,17228,5192,151870247,148535998,182493,83638,3006355140,2911755518,80.31,77.45,84.5,85.54,7.58,4.81,4.27,4.36
-12590,36,027,36027,35102,13905,90631353,89249211,35102,13905,90631353,89249211,297488,118638,2137640454,2060671707,100,100,100,100,11.8,11.72,4.24,4.33
-12592,36,027,36027,1486,653,49042363,48443596,1486,653,49042363,48443596,297488,118638,2137640454,2060671707,100,100,100,100,0.5,0.55,2.29,2.35
-12594,36,027,36027,4275,1692,63923338,62322881,4275,1692,63923338,62322881,297488,118638,2137640454,2060671707,100,100,100,100,1.44,1.43,2.99,3.02
-12601,36,027,36027,43398,17530,49402016,48707908,43398,17530,49402016,48707908,297488,118638,2137640454,2060671707,100,100,100,100,14.59,14.78,2.31,2.36
-12603,36,027,36027,42810,16411,84327829,83725860,42810,16411,84327829,83725860,297488,118638,2137640454,2060671707,100,100,100,100,14.39,13.83,3.94,4.06
-12604,36,027,36027,586,2,255320,255320,586,2,255320,255320,297488,118638,2137640454,2060671707,100,100,100,100,0.2,0,0.01,0.01
-12701,36,105,36105,11324,6521,152530323,148945075,11324,6521,152530323,148945075,77547,49186,2581499689,2507450206,100,100,100,100,14.6,13.26,5.91,5.94
-12719,36,105,36105,1207,738,45780091,44632414,1207,738,45780091,44632414,77547,49186,2581499689,2507450206,100,100,100,100,1.56,1.5,1.77,1.78
-12720,36,105,36105,172,151,34617361,33270953,172,151,34617361,33270953,77547,49186,2581499689,2507450206,100,100,100,100,0.22,0.31,1.34,1.33
-12721,36,071,36071,1545,577,19608282,19516529,6627,2756,65935092,65672753,372813,137025,2172078974,2102256780,23.31,20.94,29.74,29.72,0.41,0.42,0.9,0.93
-12721,36,105,36105,5082,2179,46326810,46156224,6627,2756,65935092,65672753,77547,49186,2581499689,2507450206,76.69,79.06,70.26,70.28,6.55,4.43,1.79,1.84
-12722,36,105,36105,158,77,720906,720906,158,77,720906,720906,77547,49186,2581499689,2507450206,100,100,100,100,0.2,0.16,0.03,0.03
-12723,36,105,36105,1826,1105,83282919,81985907,1826,1105,83282919,81985907,77547,49186,2581499689,2507450206,100,100,100,100,2.35,2.25,3.23,3.27
-12724,36,105,36105,245,189,19572159,19570755,245,189,19572159,19570755,77547,49186,2581499689,2507450206,100,100,100,100,0.32,0.38,0.76,0.78
-12725,36,105,36105,80,87,30565119,30533973,277,314,175831392,175563256,77547,49186,2581499689,2507450206,28.88,27.71,17.38,17.39,0.1,0.18,1.18,1.22
-12725,36,111,36111,197,227,145266273,145029283,277,314,175831392,175563256,182493,83638,3006355140,2911755518,71.12,72.29,82.62,82.61,0.11,0.27,4.83,4.98
-12726,36,105,36105,1162,811,77520174,75838745,1162,811,77520174,75838745,77547,49186,2581499689,2507450206,100,100,100,100,1.5,1.65,3,3.02
-12729,36,071,36071,1782,827,48477731,47837107,1874,865,58381117,57485832,372813,137025,2172078974,2102256780,95.09,95.61,83.04,83.22,0.48,0.6,2.23,2.28
-12729,36,105,36105,92,38,9903386,9648725,1874,865,58381117,57485832,77547,49186,2581499689,2507450206,4.91,4.39,16.96,16.78,0.12,0.08,0.38,0.38
-12732,36,105,36105,786,582,66890428,64922639,786,582,66890428,64922639,77547,49186,2581499689,2507450206,100,100,100,100,1.01,1.18,2.59,2.59
-12733,36,105,36105,1446,710,13305920,13190880,1446,710,13305920,13190880,77547,49186,2581499689,2507450206,100,100,100,100,1.86,1.44,0.52,0.53
-12734,36,105,36105,867,555,35763229,35669164,867,555,35763229,35669164,77547,49186,2581499689,2507450206,100,100,100,100,1.12,1.13,1.39,1.42
-12736,36,105,36105,118,123,15764377,15763379,118,123,15764377,15763379,77547,49186,2581499689,2507450206,100,100,100,100,0.15,0.25,0.61,0.63
-12737,36,105,36105,1910,1242,98734955,92723187,1910,1242,98734955,92723187,77547,49186,2581499689,2507450206,100,100,100,100,2.46,2.53,3.82,3.7
-12738,36,105,36105,320,189,17110506,16988123,320,189,17110506,16988123,77547,49186,2581499689,2507450206,100,100,100,100,0.41,0.38,0.66,0.68
-12740,36,105,36105,1549,854,77242828,74540689,1886,1148,195299392,192577672,77547,49186,2581499689,2507450206,82.13,74.39,39.55,38.71,2,1.74,2.99,2.97
-12740,36,111,36111,337,294,118056564,118036983,1886,1148,195299392,192577672,182493,83638,3006355140,2911755518,17.87,25.61,60.45,61.29,0.18,0.35,3.93,4.05
-12741,36,105,36105,351,230,21678883,21362293,351,230,21678883,21362293,77547,49186,2581499689,2507450206,100,100,100,100,0.45,0.47,0.84,0.85
-12742,36,105,36105,181,131,5589506,5568508,181,131,5589506,5568508,77547,49186,2581499689,2507450206,100,100,100,100,0.23,0.27,0.22,0.22
-12743,36,105,36105,389,333,22831113,21217377,389,333,22831113,21217377,77547,49186,2581499689,2507450206,100,100,100,100,0.5,0.68,0.88,0.85
-12745,36,105,36105,178,100,4161115,4161115,178,100,4161115,4161115,77547,49186,2581499689,2507450206,100,100,100,100,0.23,0.2,0.16,0.17
-12746,36,071,36071,937,400,37565828,36728527,937,400,37565828,36728527,372813,137025,2172078974,2102256780,100,100,100,100,0.25,0.29,1.73,1.75
-12747,36,105,36105,1714,920,37309480,36139531,1714,920,37309480,36139531,77547,49186,2581499689,2507450206,100,100,100,100,2.21,1.87,1.45,1.44
-12748,36,105,36105,2076,1160,57190568,56792304,2076,1160,57190568,56792304,77547,49186,2581499689,2507450206,100,100,100,100,2.68,2.36,2.22,2.26
-12749,36,105,36105,300,439,7685503,7618590,300,439,7685503,7618590,77547,49186,2581499689,2507450206,100,100,100,100,0.39,0.89,0.3,0.3
-12750,36,105,36105,187,120,11590852,11019331,187,120,11590852,11019331,77547,49186,2581499689,2507450206,100,100,100,100,0.24,0.24,0.45,0.44
-12751,36,105,36105,1054,516,10054570,8850777,1054,516,10054570,8850777,77547,49186,2581499689,2507450206,100,100,100,100,1.36,1.05,0.39,0.35
-12752,36,105,36105,242,248,4852921,4487698,242,248,4852921,4487698,77547,49186,2581499689,2507450206,100,100,100,100,0.31,0.5,0.19,0.18
-12754,36,105,36105,7221,3915,69289721,68832503,7221,3915,69289721,68832503,77547,49186,2581499689,2507450206,100,100,100,100,9.31,7.96,2.68,2.75
-12758,36,025,36025,8,18,3379956,3379811,4042,2902,398397474,394711185,47980,31222,3800668339,3735902531,0.2,0.62,0.85,0.86,0.02,0.06,0.09,0.09
-12758,36,105,36105,3955,2765,280849134,277677218,4042,2902,398397474,394711185,77547,49186,2581499689,2507450206,97.85,95.28,70.49,70.35,5.1,5.62,10.88,11.07
-12758,36,111,36111,79,119,114168384,113654156,4042,2902,398397474,394711185,182493,83638,3006355140,2911755518,1.95,4.1,28.66,28.79,0.04,0.14,3.8,3.9
-12759,36,105,36105,1649,1489,16594822,16019879,1649,1489,16594822,16019879,77547,49186,2581499689,2507450206,100,100,100,100,2.13,3.03,0.64,0.64
-12760,36,025,36025,269,356,88546591,87920832,482,592,110641283,109596902,47980,31222,3800668339,3735902531,55.81,60.14,80.03,80.22,0.56,1.14,2.33,2.35
-12760,36,105,36105,213,236,22094692,21676070,482,592,110641283,109596902,77547,49186,2581499689,2507450206,44.19,39.86,19.97,19.78,0.27,0.48,0.86,0.86
-12762,36,105,36105,512,279,17694866,16425311,512,279,17694866,16425311,77547,49186,2581499689,2507450206,100,100,100,100,0.66,0.57,0.69,0.66
-12763,36,105,36105,942,699,37415134,36955489,942,699,37415134,36955489,77547,49186,2581499689,2507450206,100,100,100,100,1.21,1.42,1.45,1.47
-12764,36,105,36105,1802,1361,158652134,154042083,1802,1361,158652134,154042083,77547,49186,2581499689,2507450206,100,100,100,100,2.32,2.77,6.15,6.14
-12765,36,105,36105,885,419,32480864,32358677,885,419,32480864,32358677,77547,49186,2581499689,2507450206,100,100,100,100,1.14,0.85,1.26,1.29
-12766,36,105,36105,437,296,20830232,20816277,437,296,20830232,20816277,77547,49186,2581499689,2507450206,100,100,100,100,0.56,0.6,0.81,0.83
-12767,36,105,36105,126,81,7698286,7657508,126,81,7698286,7657508,77547,49186,2581499689,2507450206,100,100,100,100,0.16,0.16,0.3,0.31
-12768,36,105,36105,1131,912,91584747,90234888,1131,912,91584747,90234888,77547,49186,2581499689,2507450206,100,100,100,100,1.46,1.85,3.55,3.6
-12769,36,105,36105,253,164,12781739,12781739,253,164,12781739,12781739,77547,49186,2581499689,2507450206,100,100,100,100,0.33,0.33,0.5,0.51
-12770,36,105,36105,296,193,12362287,11652326,296,193,12362287,11652326,77547,49186,2581499689,2507450206,100,100,100,100,0.38,0.39,0.48,0.46
-12771,36,071,36071,14511,6165,91609672,89661260,14511,6165,91609672,89661260,372813,137025,2172078974,2102256780,100,100,100,100,3.89,4.5,4.22,4.27
-12775,36,105,36105,2297,1557,29963847,27151049,2297,1557,29963847,27151049,77547,49186,2581499689,2507450206,100,100,100,100,2.96,3.17,1.16,1.08
-12776,36,025,36025,717,751,174727765,173295106,2180,2034,287593854,284054836,47980,31222,3800668339,3735902531,32.89,36.92,60.76,61.01,1.49,2.41,4.6,4.64
-12776,36,105,36105,1463,1283,112866089,110759730,2180,2034,287593854,284054836,77547,49186,2581499689,2507450206,67.11,63.08,39.24,38.99,1.89,2.61,4.37,4.42
-12777,36,105,36105,764,536,140349894,136637261,764,536,140349894,136637261,77547,49186,2581499689,2507450206,100,100,100,100,0.99,1.09,5.44,5.45
-12778,36,105,36105,633,1064,15086110,14797059,633,1064,15086110,14797059,77547,49186,2581499689,2507450206,100,100,100,100,0.82,2.16,0.58,0.59
-12779,36,105,36105,2460,1489,23183254,22232718,2460,1489,23183254,22232718,77547,49186,2581499689,2507450206,100,100,100,100,3.17,3.03,0.9,0.89
-12780,36,071,36071,2269,1058,59172636,57771409,2312,1102,63562164,61706612,372813,137025,2172078974,2102256780,98.14,96.01,93.09,93.62,0.61,0.77,2.72,2.75
-12780,36,105,36105,43,44,4389528,3935203,2312,1102,63562164,61706612,77547,49186,2581499689,2507450206,1.86,3.99,6.91,6.38,0.06,0.09,0.17,0.16
-12781,36,105,36105,307,168,11051465,11051465,307,168,11051465,11051465,77547,49186,2581499689,2507450206,100,100,100,100,0.4,0.34,0.43,0.44
-12783,36,105,36105,1668,1308,88959189,86119538,1668,1308,88959189,86119538,77547,49186,2581499689,2507450206,100,100,100,100,2.15,2.66,3.45,3.43
-12784,36,105,36105,94,59,5871692,5854688,94,59,5871692,5854688,77547,49186,2581499689,2507450206,100,100,100,100,0.12,0.12,0.23,0.23
-12785,36,071,36071,498,193,8120255,8013581,1024,460,45479228,43164075,372813,137025,2172078974,2102256780,48.63,41.96,17.85,18.57,0.13,0.14,0.37,0.38
-12785,36,105,36105,526,267,37358973,35150494,1024,460,45479228,43164075,77547,49186,2581499689,2507450206,51.37,58.04,82.15,81.43,0.68,0.54,1.45,1.4
-12786,36,105,36105,665,811,45979040,38752747,665,811,45979040,38752747,77547,49186,2581499689,2507450206,100,100,100,100,0.86,1.65,1.78,1.55
-12787,36,105,36105,452,256,9094814,9090606,452,256,9094814,9090606,77547,49186,2581499689,2507450206,100,100,100,100,0.58,0.52,0.35,0.36
-12788,36,105,36105,2908,1373,61409266,60861148,2908,1373,61409266,60861148,77547,49186,2581499689,2507450206,100,100,100,100,3.75,2.79,2.38,2.43
-12789,36,105,36105,1838,1564,25188529,24837343,1838,1564,25188529,24837343,77547,49186,2581499689,2507450206,100,100,100,100,2.37,3.18,0.98,0.99
-12790,36,105,36105,4518,3048,119903299,114989586,4518,3048,119903299,114989586,77547,49186,2581499689,2507450206,100,100,100,100,5.83,6.2,4.64,4.59
-12791,36,105,36105,737,417,17009696,16984129,737,417,17009696,16984129,77547,49186,2581499689,2507450206,100,100,100,100,0.95,0.85,0.66,0.68
-12792,36,105,36105,335,230,8789574,8783380,335,230,8789574,8783380,77547,49186,2581499689,2507450206,100,100,100,100,0.43,0.47,0.34,0.35
-12801,36,113,36113,14707,7112,10585435,10226789,14707,7112,10585435,10226789,65707,38726,2412845023,2245395916,100,100,100,100,22.38,18.36,0.44,0.46
-12803,36,091,36091,7567,3272,16596914,15328805,7567,3272,16596914,15328805,219607,98656,2185452344,2097849013,100,100,100,100,3.45,3.32,0.76,0.73
-12804,36,113,36113,26501,11882,142858885,136969932,26540,11902,143425421,137536468,65707,38726,2412845023,2245395916,99.85,99.83,99.6,99.59,40.33,30.68,5.92,6.1
-12804,36,115,36115,39,20,566536,566536,26540,11902,143425421,137536468,63216,28844,2190839314,2152756071,0.15,0.17,0.4,0.41,0.06,0.07,0.03,0.03
-12808,36,031,36031,2,18,235456,235456,306,626,64838419,57457280,39370,25603,4963007278,4647029522,0.65,2.88,0.36,0.41,0.01,0.07,0,0.01
-12808,36,113,36113,304,608,64602963,57221824,306,626,64838419,57457280,65707,38726,2412845023,2245395916,99.35,97.12,99.64,99.59,0.46,1.57,2.68,2.55
-12809,36,115,36115,3528,1759,134453390,131112433,3528,1759,134453390,131112433,63216,28844,2190839314,2152756071,100,100,100,100,5.58,6.1,6.14,6.09
-12810,36,113,36113,627,363,174940372,171986539,627,363,174940372,171986539,65707,38726,2412845023,2245395916,100,100,100,100,0.95,0.94,7.25,7.66
-12811,36,113,36113,127,65,4458806,4458806,127,65,4458806,4458806,65707,38726,2412845023,2245395916,100,100,100,100,0.19,0.17,0.18,0.2
-12812,36,041,36041,150,324,172190193,160448216,150,324,172190193,160448216,4836,8694,4682190034,4447975965,100,100,100,100,3.1,3.73,3.68,3.61
-12814,36,113,36113,1574,1822,118697415,117848404,1574,1822,118697415,117848404,65707,38726,2412845023,2245395916,100,100,100,100,2.4,4.7,4.92,5.25
-12815,36,113,36113,871,1112,102479718,94772411,871,1112,102479718,94772411,65707,38726,2412845023,2245395916,100,100,100,100,1.33,2.87,4.25,4.22
-12816,36,115,36115,4610,2400,164635149,163571713,4610,2400,164635149,163571713,63216,28844,2190839314,2152756071,100,100,100,100,7.29,8.32,7.51,7.6
-12817,36,113,36113,2274,2164,144414721,138758721,2274,2164,144414721,138758721,65707,38726,2412845023,2245395916,100,100,100,100,3.46,5.59,5.99,6.18
-12819,36,115,36115,403,247,76250104,75047529,403,247,76250104,75047529,63216,28844,2190839314,2152756071,100,100,100,100,0.64,0.86,3.48,3.49
-12821,36,115,36115,2750,141,14528665,14369840,2750,141,14528665,14369840,63216,28844,2190839314,2152756071,100,100,100,100,4.35,0.49,0.66,0.67
-12822,36,091,36091,6200,3110,174219762,170474238,6200,3110,174219762,170474238,219607,98656,2185452344,2097849013,100,100,100,100,2.82,3.15,7.97,8.13
-12823,36,115,36115,238,152,11244192,11034861,238,152,11244192,11034861,63216,28844,2190839314,2152756071,100,100,100,100,0.38,0.53,0.51,0.51
-12824,36,113,36113,894,868,40533809,39273408,894,868,40533809,39273408,65707,38726,2412845023,2245395916,100,100,100,100,1.36,2.24,1.68,1.75
-12827,36,115,36115,3877,1860,323473171,319466275,3877,1860,323473171,319466275,63216,28844,2190839314,2152756071,100,100,100,100,6.13,6.45,14.76,14.84
-12828,36,091,36091,3690,1515,29873690,28404023,9448,3921,123616333,119981527,219607,98656,2185452344,2097849013,39.06,38.64,24.17,23.67,1.68,1.54,1.37,1.35
-12828,36,115,36115,5758,2406,93742643,91577504,9448,3921,123616333,119981527,63216,28844,2190839314,2152756071,60.94,61.36,75.83,76.33,9.11,8.34,4.28,4.25
-12831,36,091,36091,17416,6748,176534979,173966676,17416,6748,176534979,173966676,219607,98656,2185452344,2097849013,100,100,100,100,7.93,6.84,8.08,8.29
-12832,36,115,36115,7106,3164,209838480,208192313,7106,3164,209838480,208192313,63216,28844,2190839314,2152756071,100,100,100,100,11.24,10.97,9.58,9.67
-12833,36,091,36091,4401,1833,91680321,91286323,4401,1833,91680321,91286323,219607,98656,2185452344,2097849013,100,100,100,100,2,1.86,4.2,4.35
-12834,36,115,36115,6594,2914,226962551,224494051,6594,2914,226962551,224494051,63216,28844,2190839314,2152756071,100,100,100,100,10.43,10.1,10.36,10.43
-12835,36,091,36091,2555,2836,255214389,250125339,2603,2865,257362619,252273569,219607,98656,2185452344,2097849013,98.16,98.99,99.17,99.15,1.16,2.87,11.68,11.92
-12835,36,113,36113,48,29,2148230,2148230,2603,2865,257362619,252273569,65707,38726,2412845023,2245395916,1.84,1.01,0.83,0.85,0.07,0.07,0.09,0.1
-12836,36,031,36031,13,11,3255175,3255175,574,731,115046451,113827959,39370,25603,4963007278,4647029522,2.26,1.5,2.83,2.86,0.03,0.04,0.07,0.07
-12836,36,113,36113,561,720,111791276,110572784,574,731,115046451,113827959,65707,38726,2412845023,2245395916,97.74,98.5,97.17,97.14,0.85,1.86,4.63,4.92
-12837,36,115,36115,857,367,38763438,38317817,857,367,38763438,38317817,63216,28844,2190839314,2152756071,100,100,100,100,1.36,1.27,1.77,1.78
-12838,36,115,36115,608,262,13165260,13159674,608,262,13165260,13159674,63216,28844,2190839314,2152756071,100,100,100,100,0.96,0.91,0.6,0.61
-12839,36,115,36115,13588,5899,84802552,84244822,13588,5899,84802552,84244822,63216,28844,2190839314,2152756071,100,100,100,100,21.49,20.45,3.87,3.91
-12841,36,115,36115,77,326,44051289,43945319,77,326,44051289,43945319,63216,28844,2190839314,2152756071,100,100,100,100,0.12,1.13,2.01,2.04
-12842,36,041,36041,1166,1499,516825761,491170981,1166,1499,516825761,491170981,4836,8694,4682190034,4447975965,100,100,100,100,24.11,17.24,11.04,11.04
-12843,36,113,36113,600,421,153270657,151715893,600,421,153270657,151715893,65707,38726,2412845023,2245395916,100,100,100,100,0.91,1.09,6.35,6.76
-12844,36,113,36113,4,30,98058,98058,199,352,7089980,7089980,65707,38726,2412845023,2245395916,2.01,8.52,1.38,1.38,0.01,0.08,0,0
-12844,36,115,36115,195,322,6991922,6991922,199,352,7089980,7089980,63216,28844,2190839314,2152756071,97.99,91.48,98.62,98.62,0.31,1.12,0.32,0.32
-12845,36,113,36113,4842,3744,115491657,114704533,4842,3744,115491657,114704533,65707,38726,2412845023,2245395916,100,100,100,100,7.37,9.67,4.79,5.11
-12846,36,113,36113,3298,2106,153657849,150632234,3298,2106,153657849,150632234,65707,38726,2412845023,2245395916,100,100,100,100,5.02,5.44,6.37,6.71
-12847,36,041,36041,603,1305,1111223830,1021912789,605,1316,1239360515,1141125958,4836,8694,4682190034,4447975965,99.67,99.16,89.66,89.55,12.47,15.01,23.73,22.97
-12847,36,089,36089,2,11,128136685,119213169,605,1316,1239360515,1141125958,111944,52133,7307493594,6942144728,0.33,0.84,10.34,10.45,0,0.02,1.75,1.72
-12849,36,115,36115,385,159,7072383,7043412,385,159,7072383,7043412,63216,28844,2190839314,2152756071,100,100,100,100,0.61,0.55,0.32,0.33
-12850,36,091,36091,2835,1390,123402800,121116231,2835,1390,123402800,121116231,219607,98656,2185452344,2097849013,100,100,100,100,1.29,1.41,5.65,5.77
-12851,36,031,36031,366,350,294159270,287843673,366,350,294159270,287843673,39370,25603,4963007278,4647029522,100,100,100,100,0.93,1.37,5.93,6.19
-12852,36,031,36031,436,692,330350939,316595914,436,692,330350939,316595914,39370,25603,4963007278,4647029522,100,100,100,100,1.11,2.7,6.66,6.81
-12853,36,031,36031,58,25,1729591,1729591,1770,1230,228954607,225188658,39370,25603,4963007278,4647029522,3.28,2.03,0.76,0.77,0.15,0.1,0.03,0.04
-12853,36,113,36113,1712,1205,227225016,223459067,1770,1230,228954607,225188658,65707,38726,2412845023,2245395916,96.72,97.97,99.24,99.23,2.61,3.11,9.42,9.95
-12855,36,031,36031,259,300,480181371,471847623,259,300,480181371,471847623,39370,25603,4963007278,4647029522,100,100,100,100,0.66,1.17,9.68,10.15
-12856,36,113,36113,187,261,167477875,164699955,187,261,167477875,164699955,65707,38726,2412845023,2245395916,100,100,100,100,0.28,0.67,6.94,7.34
-12857,36,031,36031,450,465,109480794,108053976,498,494,112621239,111194421,39370,25603,4963007278,4647029522,90.36,94.13,97.21,97.18,1.14,1.82,2.21,2.33
-12857,36,113,36113,48,29,3140445,3140445,498,494,112621239,111194421,65707,38726,2412845023,2245395916,9.64,5.87,2.79,2.82,0.07,0.07,0.13,0.14
-12858,36,031,36031,59,288,29092628,25343723,59,288,29092628,25343723,39370,25603,4963007278,4647029522,100,100,100,100,0.15,1.12,0.59,0.55
-12859,36,091,36091,2220,899,57175635,57024807,2220,899,57175635,57024807,219607,98656,2185452344,2097849013,100,100,100,100,1.01,0.91,2.62,2.72
-12860,36,113,36113,748,510,42222282,41666976,748,510,42222282,41666976,65707,38726,2412845023,2245395916,100,100,100,100,1.14,1.32,1.75,1.86
-12861,36,115,36115,609,674,86393755,84928002,609,674,86393755,84928002,63216,28844,2190839314,2152756071,100,100,100,100,0.96,2.34,3.94,3.95
-12862,36,113,36113,17,29,6548840,6029642,17,29,6548840,6029642,65707,38726,2412845023,2245395916,100,100,100,100,0.03,0.07,0.27,0.27
-12863,36,091,36091,533,247,9307447,9307447,533,247,9307447,9307447,219607,98656,2185452344,2097849013,100,100,100,100,0.24,0.25,0.43,0.44
-12864,36,041,36041,36,150,540542,540542,36,150,540542,540542,4836,8694,4682190034,4447975965,100,100,100,100,0.74,1.73,0.01,0.01
-12865,36,115,36115,3663,1819,188271017,187378618,3663,1819,188271017,187378618,63216,28844,2190839314,2152756071,100,100,100,100,5.79,6.31,8.59,8.7
-12866,36,091,36091,36915,17843,184180854,173572752,36915,17843,184180854,173572752,219607,98656,2185452344,2097849013,100,100,100,100,16.81,18.09,8.43,8.27
-12870,36,031,36031,1478,1752,290802129,272491828,1509,1765,295177586,276867285,39370,25603,4963007278,4647029522,97.95,99.26,98.52,98.42,3.75,6.84,5.86,5.86
-12870,36,113,36113,31,13,4375457,4375457,1509,1765,295177586,276867285,65707,38726,2412845023,2245395916,2.05,0.74,1.48,1.58,0.05,0.03,0.18,0.19
-12871,36,091,36091,4084,1764,79267041,77071744,4084,1764,79267041,77071744,219607,98656,2185452344,2097849013,100,100,100,100,1.86,1.79,3.63,3.67
-12872,36,031,36031,31,60,790310,790310,31,60,790310,790310,39370,25603,4963007278,4647029522,100,100,100,100,0.08,0.23,0.02,0.02
-12873,36,115,36115,736,406,54696975,54696406,736,406,54696975,54696406,63216,28844,2190839314,2152756071,100,100,100,100,1.16,1.41,2.5,2.54
-12874,36,113,36113,142,410,56268894,55472480,142,410,56268894,55472480,65707,38726,2412845023,2245395916,100,100,100,100,0.22,1.06,2.33,2.47
-12878,36,113,36113,719,565,224345561,221646020,719,565,224345561,221646020,65707,38726,2412845023,2245395916,100,100,100,100,1.09,1.46,9.3,9.87
-12883,36,031,36031,5025,2900,211932952,206813734,5025,2900,211932952,206813734,39370,25603,4963007278,4647029522,100,100,100,100,12.76,11.33,4.27,4.45
-12884,36,091,36091,486,201,1290125,1290125,486,201,1290125,1290125,219607,98656,2185452344,2097849013,100,100,100,100,0.22,0.2,0.06,0.06
-12885,36,113,36113,4602,2463,190944346,186019419,4602,2463,190944346,186019419,65707,38726,2412845023,2245395916,100,100,100,100,7,6.36,7.91,8.28
-12886,36,113,36113,269,195,37635628,37497688,269,195,37635628,37497688,65707,38726,2412845023,2245395916,100,100,100,100,0.41,0.5,1.56,1.67
-12887,36,115,36115,4972,2391,219302163,216721070,4972,2391,219302163,216721070,63216,28844,2190839314,2152756071,100,100,100,100,7.87,8.29,10.01,10.07
-12901,36,019,36019,33439,14456,198636740,196711665,33439,14456,198636740,196711665,82128,35888,2894380923,2688025469,100,100,100,100,40.72,40.28,6.86,7.32
-12903,36,019,36019,1217,649,1503251,1496374,1217,649,1503251,1496374,82128,35888,2894380923,2688025469,100,100,100,100,1.48,1.81,0.05,0.06
-12910,36,019,36019,2148,874,169117672,168194247,2148,874,169117672,168194247,82128,35888,2894380923,2688025469,100,100,100,100,2.62,2.44,5.84,6.26
-12911,36,019,36019,36,19,355693,224627,36,19,355693,224627,82128,35888,2894380923,2688025469,100,100,100,100,0.04,0.05,0.01,0.01
-12912,36,019,36019,1107,761,188720219,178611272,1998,1241,245402824,234063678,82128,35888,2894380923,2688025469,55.41,61.32,76.9,76.31,1.35,2.12,6.52,6.64
-12912,36,031,36031,891,471,54766242,54431778,1998,1241,245402824,234063678,39370,25603,4963007278,4647029522,44.59,37.95,22.32,23.26,2.26,1.84,1.1,1.17
-12912,36,033,36033,0,9,1916363,1020628,1998,1241,245402824,234063678,51599,25306,4396430309,4219398044,0,0.73,0.78,0.44,0,0.04,0.04,0.02
-12913,36,031,36031,1072,513,36337803,36304825,1157,646,76007093,70246208,39370,25603,4963007278,4647029522,92.65,79.41,47.81,51.68,2.72,2,0.73,0.78
-12913,36,033,36033,85,133,39669290,33941383,1157,646,76007093,70246208,51599,25306,4396430309,4219398044,7.35,20.59,52.19,48.32,0.16,0.53,0.9,0.8
-12914,36,033,36033,943,383,74182850,74182850,1044,421,83042912,82617750,51599,25306,4396430309,4219398044,90.33,90.97,89.33,89.79,1.83,1.51,1.69,1.76
-12914,36,089,36089,101,38,8860062,8434900,1044,421,83042912,82617750,111944,52133,7307493594,6942144728,9.67,9.03,10.67,10.21,0.09,0.07,0.12,0.12
-12916,36,033,36033,2135,935,107425284,107389627,2135,935,107425284,107389627,51599,25306,4396430309,4219398044,100,100,100,100,4.14,3.69,2.44,2.55
-12917,36,033,36033,1403,609,111572726,111572726,1403,609,111572726,111572726,51599,25306,4396430309,4219398044,100,100,100,100,2.72,2.41,2.54,2.64
-12918,36,019,36019,2381,1023,102844234,101768931,2381,1023,102844234,101768931,82128,35888,2894380923,2688025469,100,100,100,100,2.9,2.85,3.55,3.79
-12919,36,019,36019,3037,1514,100276123,99475036,3037,1514,100276123,99475036,82128,35888,2894380923,2688025469,100,100,100,100,3.7,4.22,3.46,3.7
-12920,36,019,36019,57,59,9838831,9570242,2842,1544,243592328,240332312,82128,35888,2894380923,2688025469,2.01,3.82,4.04,3.98,0.07,0.16,0.34,0.36
-12920,36,033,36033,2785,1485,233753497,230762070,2842,1544,243592328,240332312,51599,25306,4396430309,4219398044,97.99,96.18,95.96,96.02,5.4,5.87,5.32,5.47
-12921,36,019,36019,2410,1194,86399767,86036723,2410,1194,86399767,86036723,82128,35888,2894380923,2688025469,100,100,100,100,2.93,3.33,2.99,3.2
-12922,36,089,36089,65,150,117513380,113875937,65,150,117513380,113875937,111944,52133,7307493594,6942144728,100,100,100,100,0.06,0.29,1.61,1.64
-12923,36,019,36019,632,344,135754369,135679160,632,344,135754369,135679160,82128,35888,2894380923,2688025469,100,100,100,100,0.77,0.96,4.69,5.05
-12924,36,019,36019,158,75,7247872,7051378,158,75,7247872,7051378,82128,35888,2894380923,2688025469,100,100,100,100,0.19,0.21,0.25,0.26
-12926,36,033,36033,2208,999,125620659,125565670,2208,999,125620659,125565670,51599,25306,4396430309,4219398044,100,100,100,100,4.28,3.95,2.86,2.98
-12927,36,089,36089,224,580,320665931,286462874,224,580,320665931,286462874,111944,52133,7307493594,6942144728,100,100,100,100,0.2,1.11,4.39,4.13
-12928,36,031,36031,2028,1117,197736381,195534606,2028,1117,197736381,195534606,39370,25603,4963007278,4647029522,100,100,100,100,5.15,4.36,3.98,4.21
-12929,36,019,36019,3938,510,3083885,3083885,3938,510,3083885,3083885,82128,35888,2894380923,2688025469,100,100,100,100,4.79,1.42,0.11,0.11
-12930,36,033,36033,622,362,91262392,91066795,634,367,93865527,93669930,51599,25306,4396430309,4219398044,98.11,98.64,97.23,97.22,1.21,1.43,2.08,2.16
-12930,36,089,36089,12,5,2603135,2603135,634,367,93865527,93669930,111944,52133,7307493594,6942144728,1.89,1.36,2.77,2.78,0.01,0.01,0.04,0.04
-12932,36,031,36031,1236,806,167079774,165054727,1236,806,167079774,165054727,39370,25603,4963007278,4647029522,100,100,100,100,3.14,3.15,3.37,3.55
-12933,36,019,36019,17,7,70856,70856,17,7,70856,70856,82128,35888,2894380923,2688025469,100,100,100,100,0.02,0.02,0,0
-12934,36,019,36019,1074,506,152478921,152424209,1074,506,152478921,152424209,82128,35888,2894380923,2688025469,100,100,100,100,1.31,1.41,5.27,5.67
-12935,36,019,36019,1748,960,264506605,255406522,1748,960,264506605,255406522,82128,35888,2894380923,2688025469,100,100,100,100,2.13,2.67,9.14,9.5
-12936,36,031,36031,599,539,80043380,79797317,599,539,80043380,79797317,39370,25603,4963007278,4647029522,100,100,100,100,1.52,2.11,1.61,1.72
-12937,36,033,36033,1572,718,84771486,84759742,1572,718,84771486,84759742,51599,25306,4396430309,4219398044,100,100,100,100,3.05,2.84,1.93,2.01
-12939,36,033,36033,205,97,10770653,10712786,205,97,10770653,10712786,51599,25306,4396430309,4219398044,100,100,100,100,0.4,0.38,0.24,0.25
-12941,36,031,36031,1428,941,105549958,104831845,1428,941,105549958,104831845,39370,25603,4963007278,4647029522,100,100,100,100,3.63,3.68,2.13,2.26
-12942,36,031,36031,646,589,137418925,137102053,646,589,137418925,137102053,39370,25603,4963007278,4647029522,100,100,100,100,1.64,2.3,2.77,2.95
-12943,36,031,36031,459,603,268216293,266782108,459,603,268216293,266782108,39370,25603,4963007278,4647029522,100,100,100,100,1.17,2.36,5.4,5.74
-12944,36,019,36019,1907,879,35848809,35182892,4080,2151,238234704,233415227,82128,35888,2894380923,2688025469,46.74,40.86,15.05,15.07,2.32,2.45,1.24,1.31
-12944,36,031,36031,2173,1272,202385895,198232335,4080,2151,238234704,233415227,39370,25603,4963007278,4647029522,53.26,59.14,84.95,84.93,5.52,4.97,4.08,4.27
-12945,36,033,36033,638,611,104701861,86008134,638,611,104701861,86008134,51599,25306,4396430309,4219398044,100,100,100,100,1.24,2.41,2.38,2.04
-12946,36,031,36031,5492,3694,345770259,335263968,5492,3694,345770259,335263968,39370,25603,4963007278,4647029522,100,100,100,100,13.95,14.43,6.97,7.21
-12950,36,031,36031,929,425,122457357,122090752,929,425,122457357,122090752,39370,25603,4963007278,4647029522,100,100,100,100,2.36,1.66,2.47,2.63
-12952,36,019,36019,546,392,74692925,74692925,546,392,74692925,74692925,82128,35888,2894380923,2688025469,100,100,100,100,0.66,1.09,2.58,2.78
-12953,36,033,36033,15836,5610,556202734,544978529,15836,5610,556202734,544978529,51599,25306,4396430309,4219398044,100,100,100,100,30.69,22.17,12.65,12.92
-12955,36,019,36019,332,338,88300307,77777577,381,361,89998420,79475690,82128,35888,2894380923,2688025469,87.14,93.63,98.11,97.86,0.4,0.94,3.05,2.89
-12955,36,033,36033,49,23,1698113,1698113,381,361,89998420,79475690,51599,25306,4396430309,4219398044,12.86,6.37,1.89,2.14,0.09,0.09,0.04,0.04
-12956,36,031,36031,1259,547,23814761,23339134,1259,547,23814761,23339134,39370,25603,4963007278,4647029522,100,100,100,100,3.2,2.14,0.48,0.5
-12957,36,033,36033,1726,791,82758629,82758629,1726,791,82758629,82758629,51599,25306,4396430309,4219398044,100,100,100,100,3.35,3.13,1.88,1.96
-12958,36,019,36019,1929,864,96575438,96217850,1929,864,96575438,96217850,82128,35888,2894380923,2688025469,100,100,100,100,2.35,2.41,3.34,3.58
-12959,36,019,36019,1369,636,100310539,100049168,1369,636,100310539,100049168,82128,35888,2894380923,2688025469,100,100,100,100,1.67,1.77,3.47,3.72
-12960,36,031,36031,1148,538,79648045,78741370,1148,538,79648045,78741370,39370,25603,4963007278,4647029522,100,100,100,100,2.92,2.1,1.6,1.69
-12961,36,031,36031,180,88,10361538,10361538,180,88,10361538,10361538,39370,25603,4963007278,4647029522,100,100,100,100,0.46,0.34,0.21,0.22
-12962,36,019,36019,5499,2283,112458646,111388378,5499,2283,112458646,111388378,82128,35888,2894380923,2688025469,100,100,100,100,6.7,6.36,3.89,4.14
-12964,36,031,36031,161,140,91186473,89349554,161,140,91186473,89349554,39370,25603,4963007278,4647029522,100,100,100,100,0.41,0.55,1.84,1.92
-12965,36,089,36089,516,226,24759499,24695575,516,226,24759499,24695575,111944,52133,7307493594,6942144728,100,100,100,100,0.46,0.43,0.34,0.36
-12966,36,033,36033,2915,1305,223322144,223147842,2915,1305,223322144,223147842,51599,25306,4396430309,4219398044,100,100,100,100,5.65,5.16,5.08,5.29
-12967,36,089,36089,1223,495,97485585,97402414,1223,495,97485585,97402414,111944,52133,7307493594,6942144728,100,100,100,100,1.09,0.95,1.33,1.4
-12969,36,033,36033,423,549,260314371,255505860,423,549,260314371,255505860,51599,25306,4396430309,4219398044,100,100,100,100,0.82,2.17,5.92,6.06
-12970,36,033,36033,963,296,139569703,130223819,963,296,139569703,130223819,51599,25306,4396430309,4219398044,100,100,100,100,1.87,1.17,3.17,3.09
-12972,36,019,36019,6352,2610,214565345,213061961,6364,2619,215773503,214262312,82128,35888,2894380923,2688025469,99.81,99.66,99.44,99.44,7.73,7.27,7.41,7.93
-12972,36,031,36031,12,9,1208158,1200351,6364,2619,215773503,214262312,39370,25603,4963007278,4647029522,0.19,0.34,0.56,0.56,0.03,0.04,0.02,0.03
-12973,36,089,36089,187,136,95542159,92427930,187,136,95542159,92427930,111944,52133,7307493594,6942144728,100,100,100,100,0.17,0.26,1.31,1.33
-12974,36,031,36031,1599,838,20853025,20815331,1599,838,20853025,20815331,39370,25603,4963007278,4647029522,100,100,100,100,4.06,3.27,0.42,0.45
-12975,36,031,36031,265,170,7385720,7385720,265,170,7385720,7385720,39370,25603,4963007278,4647029522,100,100,100,100,0.67,0.66,0.15,0.16
-12976,36,033,36033,260,246,102480610,99378671,260,246,102480610,99378671,51599,25306,4396430309,4219398044,100,100,100,100,0.5,0.97,2.33,2.36
-12977,36,031,36031,1753,61,23457273,23166590,1753,61,23457273,23166590,39370,25603,4963007278,4647029522,100,100,100,100,4.45,0.24,0.47,0.5
-12978,36,019,36019,403,161,6769081,6769081,403,161,6769081,6769081,82128,35888,2894380923,2688025469,100,100,100,100,0.49,0.45,0.23,0.25
-12979,36,019,36019,2304,1175,8804362,8804362,2304,1175,8804362,8804362,82128,35888,2894380923,2688025469,100,100,100,100,2.81,3.27,0.3,0.33
-12980,36,033,36033,1111,992,565700455,558622087,1304,1259,671369327,662489149,51599,25306,4396430309,4219398044,85.2,78.79,84.26,84.32,2.15,3.92,12.87,13.24
-12980,36,089,36089,193,267,105668872,103867062,1304,1259,671369327,662489149,111944,52133,7307493594,6942144728,14.8,21.21,15.74,15.68,0.17,0.51,1.45,1.5
-12981,36,019,36019,2238,1072,262269517,260325192,2253,1080,276552159,274546708,82128,35888,2894380923,2688025469,99.33,99.26,94.84,94.82,2.73,2.99,9.06,9.68
-12981,36,033,36033,15,8,14282642,14221516,2253,1080,276552159,274546708,51599,25306,4396430309,4219398044,0.67,0.74,5.16,5.18,0.03,0.03,0.32,0.34
-12983,36,031,36031,2188,1293,148266653,144408913,7494,4840,598583159,545251438,39370,25603,4963007278,4647029522,29.2,26.71,24.77,26.48,5.56,5.05,2.99,3.11
-12983,36,033,36033,5306,3547,450316506,400842525,7494,4840,598583159,545251438,51599,25306,4396430309,4219398044,70.8,73.29,75.23,73.52,10.28,14.02,10.24,9.5
-12985,36,019,36019,1072,481,143981934,143316060,1072,481,143981934,143316060,82128,35888,2894380923,2688025469,100,100,100,100,1.31,1.34,4.97,5.33
-12986,36,033,36033,6047,3456,453113110,404011300,6120,3741,647699084,585953923,51599,25306,4396430309,4219398044,98.81,92.38,69.96,68.95,11.72,13.66,10.31,9.58
-12986,36,089,36089,73,285,194585974,181942623,6120,3741,647699084,585953923,111944,52133,7307493594,6942144728,1.19,7.62,30.04,31.05,0.07,0.55,2.66,2.62
-12987,36,031,36031,201,142,16093574,16055169,201,142,16093574,16055169,39370,25603,4963007278,4647029522,100,100,100,100,0.51,0.55,0.32,0.35
-12989,36,033,36033,1010,863,389966018,382676633,1010,863,389966018,382676633,51599,25306,4396430309,4219398044,100,100,100,100,1.96,3.41,8.87,9.07
-12992,36,019,36019,4778,2046,164966096,164634896,4778,2046,164966096,164634896,82128,35888,2894380923,2688025469,100,100,100,100,5.82,5.7,5.7,6.12
-12993,36,031,36031,1623,1197,187257376,186644554,1623,1197,187257376,186644554,39370,25603,4963007278,4647029522,100,100,100,100,4.12,4.68,3.77,4.02
-12996,36,031,36031,2086,1650,134072606,131811853,2086,1650,134072606,131811853,39370,25603,4963007278,4647029522,100,100,100,100,5.3,6.44,2.7,2.84
-12997,36,031,36031,1239,827,169565519,168962963,1239,827,169565519,168962963,39370,25603,4963007278,4647029522,100,100,100,100,3.15,3.23,3.42,3.64
-12998,36,031,36031,526,262,31497639,31177925,526,262,31497639,31177925,39370,25603,4963007278,4647029522,100,100,100,100,1.34,1.02,0.63,0.67
-13020,36,067,36067,150,54,1211234,1211234,150,54,1211234,1211234,467026,202357,2086541351,2016019983,100,100,100,100,0.03,0.03,0.06,0.06
-13021,36,011,36011,39499,18521,311785228,311207597,39506,18525,311902354,311324723,80026,36489,2236897583,1791189978,99.98,99.98,99.96,99.96,49.36,50.76,13.94,17.37
-13021,36,067,36067,7,4,117126,117126,39506,18525,311902354,311324723,467026,202357,2086541351,2016019983,0.02,0.02,0.04,0.04,0,0,0.01,0.01
-13024,36,011,36011,1733,0,107576,107576,1733,0,107576,107576,80026,36489,2236897583,1791189978,100,0,100,100,2.17,0,0,0.01
-13026,36,011,36011,1914,917,72950928,72911005,1914,917,72950928,72911005,80026,36489,2236897583,1791189978,100,100,100,100,2.39,2.51,3.26,4.07
-13027,36,011,36011,32,15,1233988,1233988,31637,13717,181080286,176272751,80026,36489,2236897583,1791189978,0.1,0.11,0.68,0.7,0.04,0.04,0.06,0.07
-13027,36,067,36067,31605,13702,179846298,175038763,31637,13717,181080286,176272751,467026,202357,2086541351,2016019983,99.9,99.89,99.32,99.3,6.77,6.77,8.62,8.68
-13028,36,075,36075,1350,817,49181625,48400493,1350,817,49181625,48400493,122109,53598,3398279031,2464761256,100,100,100,100,1.11,1.52,1.45,1.96
-13029,36,067,36067,7109,2999,46885177,45892381,7109,2999,46885177,45892381,467026,202357,2086541351,2016019983,100,100,100,100,1.52,1.48,2.25,2.28
-13030,36,053,36053,2126,1079,20824484,20723963,3892,1845,34723310,34495568,73442,31757,1712714539,1696033233,54.62,58.48,59.97,60.08,2.89,3.4,1.22,1.22
-13030,36,067,36067,1766,766,13898826,13771605,3892,1845,34723310,34495568,467026,202357,2086541351,2016019983,45.38,41.52,40.03,39.92,0.38,0.38,0.67,0.68
-13031,36,067,36067,15551,6730,62975439,62949560,15551,6730,62975439,62949560,467026,202357,2086541351,2016019983,100,100,100,100,3.33,3.33,3.02,3.12
-13032,36,053,36053,12790,5785,211374617,211148666,12790,5785,211374617,211148666,73442,31757,1712714539,1696033233,100,100,100,100,17.42,18.22,12.34,12.45
-13033,36,011,36011,3556,1492,161001111,159671235,3556,1492,161001111,159671235,80026,36489,2236897583,1791189978,100,100,100,100,4.44,4.09,7.2,8.91
-13034,36,011,36011,1989,1089,63169313,62926173,1989,1089,63169313,62926173,80026,36489,2236897583,1791189978,100,100,100,100,2.49,2.98,2.82,3.51
-13035,36,053,36053,8368,3439,193498406,188432264,8617,3542,198775344,193709202,73442,31757,1712714539,1696033233,97.11,97.09,97.35,97.28,11.39,10.83,11.3,11.11
-13035,36,067,36067,249,103,5276938,5276938,8617,3542,198775344,193709202,467026,202357,2086541351,2016019983,2.89,2.91,2.65,2.72,0.05,0.05,0.25,0.26
-13036,36,075,36075,8680,3723,127621369,126354465,8680,3723,127621369,126354465,122109,53598,3398279031,2464761256,100,100,100,100,7.11,6.95,3.76,5.13
-13037,36,053,36053,8706,3653,102025205,101790468,8897,3727,106219645,105984908,73442,31757,1712714539,1696033233,97.85,98.01,96.05,96.04,11.85,11.5,5.96,6
-13037,36,067,36067,191,74,4194440,4194440,8897,3727,106219645,105984908,467026,202357,2086541351,2016019983,2.15,1.99,3.95,3.96,0.04,0.04,0.2,0.21
-13039,36,067,36067,17537,6805,58540182,58521744,17537,6805,58540182,58521744,467026,202357,2086541351,2016019983,100,100,100,100,3.76,3.36,2.81,2.9
-13040,36,017,36017,244,162,41666824,41601356,2758,1313,250286886,248912987,50477,24710,2327440864,2314279661,8.85,12.34,16.65,16.71,0.48,0.66,1.79,1.8
-13040,36,023,36023,2514,1151,208620062,207311631,2758,1313,250286886,248912987,49336,20577,1298926870,1291782573,91.15,87.66,83.35,83.29,5.1,5.59,16.06,16.05
-13041,36,067,36067,10705,3992,48406191,47296860,10705,3992,48406191,47296860,467026,202357,2086541351,2016019983,100,100,100,100,2.29,1.97,2.32,2.35
-13042,36,065,36065,1158,715,53725117,53521736,2356,1265,87728148,86798635,234878,104180,3257314013,3140175831,49.15,56.52,61.24,61.66,0.49,0.69,1.65,1.7
-13042,36,075,36075,1198,550,34003031,33276899,2356,1265,87728148,86798635,122109,53598,3398279031,2464761256,50.85,43.48,38.76,38.34,0.98,1.03,1,1.35
-13044,36,075,36075,2512,1090,72729705,71937295,2512,1090,72729705,71937295,122109,53598,3398279031,2464761256,100,100,100,100,2.06,2.03,2.14,2.92
-13045,36,011,36011,646,283,24019373,23734535,30112,12112,276922545,276033075,80026,36489,2236897583,1791189978,2.15,2.34,8.67,8.6,0.81,0.78,1.07,1.33
-13045,36,023,36023,29014,11642,236652792,236120165,30112,12112,276922545,276033075,49336,20577,1298926870,1291782573,96.35,96.12,85.46,85.54,58.81,56.58,18.22,18.28
-13045,36,109,36109,452,187,16250380,16178375,30112,12112,276922545,276033075,101564,41674,1273129127,1229334487,1.5,1.54,5.87,5.86,0.45,0.45,1.28,1.32
-13051,36,067,36067,153,71,610483,610483,153,71,610483,610483,467026,202357,2086541351,2016019983,100,100,100,100,0.03,0.04,0.03,0.03
-13052,36,017,36017,270,161,43888623,43861312,1679,1104,127888719,125504924,50477,24710,2327440864,2314279661,16.08,14.58,34.32,34.95,0.53,0.65,1.89,1.9
-13052,36,023,36023,104,52,17876195,17865661,1679,1104,127888719,125504924,49336,20577,1298926870,1291782573,6.19,4.71,13.98,14.24,0.21,0.25,1.38,1.38
-13052,36,053,36053,1270,818,59617005,57459878,1679,1104,127888719,125504924,73442,31757,1712714539,1696033233,75.64,74.09,46.62,45.78,1.73,2.58,3.48,3.39
-13052,36,067,36067,35,73,6506896,6318073,1679,1104,127888719,125504924,467026,202357,2086541351,2016019983,2.08,6.61,5.09,5.03,0.01,0.04,0.31,0.31
-13053,36,023,36023,528,206,34505889,34426418,5015,2084,86600426,85939700,49336,20577,1298926870,1291782573,10.53,9.88,39.84,40.06,1.07,1,2.66,2.67
-13053,36,109,36109,4487,1878,52094537,51513282,5015,2084,86600426,85939700,101564,41674,1273129127,1229334487,89.47,90.12,60.16,59.94,4.42,4.51,4.09,4.19
-13054,36,065,36065,1582,633,57713563,57244069,1582,633,57713563,57244069,234878,104180,3257314013,3140175831,100,100,100,100,0.67,0.61,1.77,1.82
-13057,36,067,36067,14992,6828,72684450,72130925,14992,6828,72684450,72130925,467026,202357,2086541351,2016019983,100,100,100,100,3.21,3.37,3.48,3.58
-13060,36,067,36067,2806,1191,41466131,41419807,2806,1191,41466131,41419807,467026,202357,2086541351,2016019983,100,100,100,100,0.6,0.59,1.99,2.05
-13061,36,053,36053,1040,754,69837518,67308609,1040,754,69837518,67308609,73442,31757,1712714539,1696033233,100,100,100,100,1.42,2.37,4.08,3.97
-13062,36,109,36109,173,87,484119,467202,173,87,484119,467202,101564,41674,1273129127,1229334487,100,100,100,100,0.17,0.21,0.04,0.04
-13063,36,067,36067,1898,719,90336967,90064298,1898,719,90336967,90064298,467026,202357,2086541351,2016019983,100,100,100,100,0.41,0.36,4.33,4.47
-13064,36,011,36011,64,122,3408313,459975,64,122,3408313,459975,80026,36489,2236897583,1791189978,100,100,100,100,0.08,0.33,0.15,0.03
-13066,36,067,36067,12390,5551,39537000,38779103,12390,5551,39537000,38779103,467026,202357,2086541351,2016019983,100,100,100,100,2.65,2.74,1.89,1.92
-13068,36,109,36109,5368,2281,133251357,132436583,5368,2281,133251357,132436583,101564,41674,1273129127,1229334487,100,100,100,100,5.29,5.47,10.47,10.77
-13069,36,075,36075,24931,10482,287252513,277685461,24931,10482,287252513,277685461,122109,53598,3398279031,2464761256,100,100,100,100,20.42,19.56,8.45,11.27
-13071,36,011,36011,1023,430,64343284,64278146,1023,430,64343284,64278146,80026,36489,2236897583,1791189978,100,100,100,100,1.28,1.18,2.88,3.59
-13072,36,017,36017,256,111,26630055,26630055,1123,482,121905659,121858807,50477,24710,2327440864,2314279661,22.8,23.03,21.84,21.85,0.51,0.45,1.14,1.15
-13072,36,053,36053,867,371,95275604,95228752,1123,482,121905659,121858807,73442,31757,1712714539,1696033233,77.2,76.97,78.16,78.15,1.18,1.17,5.56,5.61
-13073,36,011,36011,63,23,1933292,1933292,6423,2620,142496471,142190941,80026,36489,2236897583,1791189978,0.98,0.88,1.36,1.36,0.08,0.06,0.09,0.11
-13073,36,109,36109,6360,2597,140563179,140257649,6423,2620,142496471,142190941,101564,41674,1273129127,1229334487,99.02,99.12,98.64,98.64,6.26,6.23,11.04,11.41
-13074,36,011,36011,155,52,4638199,4638199,4488,1808,110415060,109971697,80026,36489,2236897583,1791189978,3.45,2.88,4.2,4.22,0.19,0.14,0.21,0.26
-13074,36,075,36075,4333,1756,105776861,105333498,4488,1808,110415060,109971697,122109,53598,3398279031,2464761256,96.55,97.12,95.8,95.78,3.55,3.28,3.11,4.27
-13076,36,075,36075,2393,918,39668558,39649587,2393,918,39668558,39649587,122109,53598,3398279031,2464761256,100,100,100,100,1.96,1.71,1.17,1.61
-13077,36,011,36011,24,41,1544737,1544737,6735,2948,183910686,182750477,80026,36489,2236897583,1791189978,0.36,1.39,0.84,0.85,0.03,0.11,0.07,0.09
-13077,36,023,36023,6487,2753,158364555,157212336,6735,2948,183910686,182750477,49336,20577,1298926870,1291782573,96.32,93.39,86.11,86.03,13.15,13.38,12.19,12.17
-13077,36,067,36067,224,154,24001394,23993404,6735,2948,183910686,182750477,467026,202357,2086541351,2016019983,3.33,5.22,13.05,13.13,0.05,0.08,1.15,1.19
-13078,36,067,36067,9866,3759,102003617,100804191,9866,3759,102003617,100804191,467026,202357,2086541351,2016019983,100,100,100,100,2.11,1.86,4.89,5
-13080,36,011,36011,944,587,32471219,27814718,3631,1772,79174069,72665577,80026,36489,2236897583,1791189978,26,33.13,41.01,38.28,1.18,1.61,1.45,1.55
-13080,36,067,36067,2687,1185,46702850,44850859,3631,1772,79174069,72665577,467026,202357,2086541351,2016019983,74,66.87,58.99,61.72,0.58,0.59,2.24,2.22
-13081,36,011,36011,1169,671,75032494,75001738,1169,671,75032494,75001738,80026,36489,2236897583,1791189978,100,100,100,100,1.46,1.84,3.35,4.19
-13082,36,053,36053,2878,1231,31482479,31308112,4871,2099,62117645,61047647,73442,31757,1712714539,1696033233,59.08,58.65,50.68,51.28,3.92,3.88,1.84,1.85
-13082,36,067,36067,1993,868,30635166,29739535,4871,2099,62117645,61047647,467026,202357,2086541351,2016019983,40.92,41.35,49.32,48.72,0.43,0.43,1.47,1.48
-13083,36,045,36045,20,8,1368301,1368301,1809,825,150373419,150207362,116229,57966,4810181094,3285632368,1.11,0.97,0.91,0.91,0.02,0.01,0.03,0.04
-13083,36,075,36075,1789,817,149005118,148839061,1809,825,150373419,150207362,122109,53598,3398279031,2464761256,98.89,99.03,99.09,99.09,1.47,1.52,4.38,6.04
-13084,36,067,36067,4409,1876,111414503,111384869,4409,1876,111414503,111384869,467026,202357,2086541351,2016019983,100,100,100,100,0.94,0.93,5.34,5.52
-13087,36,023,36023,168,102,966802,529334,168,102,966802,529334,49336,20577,1298926870,1291782573,100,100,100,100,0.34,0.5,0.07,0.04
-13088,36,067,36067,22156,10664,20640762,20613882,22156,10664,20640762,20613882,467026,202357,2086541351,2016019983,100,100,100,100,4.74,5.27,0.99,1.02
-13090,36,067,36067,30124,12364,39339652,38997883,30124,12364,39339652,38997883,467026,202357,2086541351,2016019983,100,100,100,100,6.45,6.11,1.89,1.93
-13092,36,011,36011,2362,989,116361385,116078520,2606,1097,125964909,125679340,80026,36489,2236897583,1791189978,90.64,90.15,92.38,92.36,2.95,2.71,5.2,6.48
-13092,36,109,36109,244,108,9603524,9600820,2606,1097,125964909,125679340,101564,41674,1273129127,1229334487,9.36,9.85,7.62,7.64,0.24,0.26,0.75,0.78
-13101,36,023,36023,2508,1059,101300931,101286914,2508,1059,101300931,101286914,49336,20577,1298926870,1291782573,100,100,100,100,5.08,5.15,7.8,7.84
-13102,36,109,36109,85,42,153656,150735,85,42,153656,150735,101564,41674,1273129127,1229334487,100,100,100,100,0.08,0.1,0.01,0.01
-13103,36,075,36075,326,118,923419,885765,326,118,923419,885765,122109,53598,3398279031,2464761256,100,100,100,100,0.27,0.22,0.03,0.04
-13104,36,053,36053,37,18,2570529,2570529,15567,6296,122489920,122382149,73442,31757,1712714539,1696033233,0.24,0.29,2.1,2.1,0.05,0.06,0.15,0.15
-13104,36,067,36067,15530,6278,119919391,119811620,15567,6296,122489920,122382149,467026,202357,2086541351,2016019983,99.76,99.71,97.9,97.9,3.33,3.1,5.75,5.94
-13108,36,067,36067,6175,2557,75635132,75560615,6175,2557,75635132,75560615,467026,202357,2086541351,2016019983,100,100,100,100,1.32,1.26,3.62,3.75
-13110,36,067,36067,2338,1274,63673014,63645837,2338,1274,63673014,63645837,467026,202357,2086541351,2016019983,100,100,100,100,0.5,0.63,3.05,3.16
-13111,36,011,36011,1383,573,58046232,57811312,1700,689,69146299,68911379,80026,36489,2236897583,1791189978,81.35,83.16,83.95,83.89,1.73,1.57,2.59,3.23
-13111,36,075,36075,317,116,11100067,11100067,1700,689,69146299,68911379,122109,53598,3398279031,2464761256,18.65,16.84,16.05,16.11,0.26,0.22,0.33,0.45
-13112,36,067,36067,1973,837,55896822,52456428,1973,837,55896822,52456428,467026,202357,2086541351,2016019983,100,100,100,100,0.42,0.41,2.68,2.6
-13113,36,011,36011,287,103,1345153,1345153,287,103,1345153,1345153,80026,36489,2236897583,1791189978,100,100,100,100,0.36,0.28,0.06,0.08
-13114,36,075,36075,6356,2848,164764127,162872189,6356,2848,164764127,162872189,122109,53598,3398279031,2464761256,100,100,100,100,5.21,5.31,4.85,6.61
-13115,36,075,36075,224,99,1200818,1200818,224,99,1200818,1200818,122109,53598,3398279031,2464761256,100,100,100,100,0.18,0.18,0.04,0.05
-13116,36,067,36067,3457,1457,3421058,3421058,3457,1457,3421058,3421058,467026,202357,2086541351,2016019983,100,100,100,100,0.74,0.72,0.16,0.17
-13117,36,011,36011,188,85,2109606,2109606,188,85,2109606,2109606,80026,36489,2236897583,1791189978,100,100,100,100,0.23,0.23,0.09,0.12
-13118,36,011,36011,6382,2853,265935504,265442135,6382,2853,265935504,265442135,80026,36489,2236897583,1791189978,100,100,100,100,7.97,7.82,11.89,14.82
-13120,36,067,36067,2328,1066,44470363,44284159,2328,1066,44470363,44284159,467026,202357,2086541351,2016019983,100,100,100,100,0.5,0.53,2.13,2.2
-13122,36,053,36053,994,387,40324164,40285269,1174,453,48471059,48432164,73442,31757,1712714539,1696033233,84.67,85.43,83.19,83.18,1.35,1.22,2.35,2.38
-13122,36,067,36067,180,66,8146895,8146895,1174,453,48471059,48432164,467026,202357,2086541351,2016019983,15.33,14.57,16.81,16.82,0.04,0.03,0.39,0.4
-13123,36,065,36065,314,170,6128027,6128027,314,170,6128027,6128027,234878,104180,3257314013,3140175831,100,100,100,100,0.13,0.16,0.19,0.2
-13124,36,017,36017,124,74,12148742,12135105,124,74,12148742,12135105,50477,24710,2327440864,2314279661,100,100,100,100,0.25,0.3,0.52,0.52
-13126,36,011,36011,58,24,2403594,2381472,37205,15047,287019276,260997454,80026,36489,2236897583,1791189978,0.16,0.16,0.84,0.91,0.07,0.07,0.11,0.13
-13126,36,075,36075,37147,15023,284615682,258615982,37205,15047,287019276,260997454,122109,53598,3398279031,2464761256,99.84,99.84,99.16,99.09,30.42,28.03,8.38,10.49
-13131,36,075,36075,3895,1580,137507566,137091413,3895,1580,137507566,137091413,122109,53598,3398279031,2464761256,100,100,100,100,3.19,2.95,4.05,5.56
-13132,36,075,36075,4244,1780,62502740,61449007,4244,1780,62502740,61449007,122109,53598,3398279031,2464761256,100,100,100,100,3.48,3.32,1.84,2.49
-13134,36,053,36053,119,51,213790,213790,119,51,213790,213790,73442,31757,1712714539,1696033233,100,100,100,100,0.16,0.16,0.01,0.01
-13135,36,067,36067,1649,600,24109163,22829331,6617,2785,85727309,82736732,467026,202357,2086541351,2016019983,24.92,21.54,28.12,27.59,0.35,0.3,1.16,1.13
-13135,36,075,36075,4968,2185,61618146,59907401,6617,2785,85727309,82736732,122109,53598,3398279031,2464761256,75.08,78.46,71.88,72.41,4.07,4.08,1.81,2.43
-13136,36,017,36017,534,286,48303346,48279592,534,286,48303346,48279592,50477,24710,2327440864,2314279661,100,100,100,100,1.06,1.16,2.08,2.09
-13138,36,067,36067,61,25,102864,102864,61,25,102864,102864,467026,202357,2086541351,2016019983,100,100,100,100,0.01,0.01,0,0.01
-13140,36,011,36011,4488,1957,139618867,135382944,4488,1957,139618867,135382944,80026,36489,2236897583,1791189978,100,100,100,100,5.61,5.36,6.24,7.56
-13141,36,023,36023,448,199,23742397,23599503,596,284,34082598,33939704,49336,20577,1298926870,1291782573,75.17,70.07,69.66,69.53,0.91,0.97,1.83,1.83
-13141,36,067,36067,148,85,10340201,10340201,596,284,34082598,33939704,467026,202357,2086541351,2016019983,24.83,29.93,30.34,30.47,0.03,0.04,0.5,0.51
-13142,36,075,36075,6451,3449,194439876,182678294,6451,3449,194439876,182678294,122109,53598,3398279031,2464761256,100,100,100,100,5.28,6.43,5.72,7.41
-13143,36,011,36011,960,413,50060777,49560572,2873,1199,113474527,111879849,80026,36489,2236897583,1791189978,33.41,34.45,44.12,44.3,1.2,1.13,2.24,2.77
-13143,36,117,36117,1913,786,63413750,62319277,2873,1199,113474527,111879849,93772,41057,3582085074,1563902765,66.59,65.55,55.88,55.7,2.04,1.91,1.77,3.98
-13144,36,075,36075,1531,843,101396545,99528004,1531,843,101396545,99528004,122109,53598,3398279031,2464761256,100,100,100,100,1.25,1.57,2.98,4.04
-13145,36,075,36075,1926,1238,43470586,43217548,1926,1238,43470586,43217548,122109,53598,3398279031,2464761256,100,100,100,100,1.58,2.31,1.28,1.75
-13146,36,099,36099,86,35,13690164,13139271,2443,960,141942874,140845258,35251,16043,1011232311,838393327,3.52,3.65,9.64,9.33,0.24,0.22,1.35,1.57
-13146,36,117,36117,2357,925,128252710,127705987,2443,960,141942874,140845258,93772,41057,3582085074,1563902765,96.48,96.35,90.36,90.67,2.51,2.25,3.58,8.17
-13147,36,011,36011,1281,506,92961669,92942861,1281,506,92961669,92942861,80026,36489,2236897583,1791189978,100,100,100,100,1.6,1.39,4.16,5.19
-13148,36,099,36099,10750,5188,164006456,155557345,10750,5188,164006456,155557345,35251,16043,1011232311,838393327,100,100,100,100,30.5,32.34,16.22,18.55
-13152,36,011,36011,378,232,25235671,25235671,7941,4281,167586897,167464813,80026,36489,2236897583,1791189978,4.76,5.42,15.06,15.07,0.47,0.64,1.13,1.41
-13152,36,067,36067,7563,4049,142351226,142229142,7941,4281,167586897,167464813,467026,202357,2086541351,2016019983,95.24,94.58,84.94,84.93,1.62,2,6.82,7.05
-13153,36,067,36067,399,167,2316193,2316193,399,167,2316193,2316193,467026,202357,2086541351,2016019983,100,100,100,100,0.09,0.08,0.11,0.11
-13155,36,017,36017,663,327,53107871,52969188,663,327,53107871,52969188,50477,24710,2327440864,2314279661,100,100,100,100,1.31,1.32,2.28,2.29
-13156,36,011,36011,1900,1245,79564154,76513340,2000,1315,80673287,77622264,80026,36489,2236897583,1791189978,95,94.68,98.63,98.57,2.37,3.41,3.56,4.27
-13156,36,075,36075,16,4,390696,390487,2000,1315,80673287,77622264,122109,53598,3398279031,2464761256,0.8,0.3,0.48,0.5,0.01,0.01,0.01,0.02
-13156,36,117,36117,84,66,718437,718437,2000,1315,80673287,77622264,93772,41057,3582085074,1563902765,4.2,5.02,0.89,0.93,0.09,0.16,0.02,0.05
-13157,36,065,36065,695,754,1588747,1436842,695,754,1588747,1436842,234878,104180,3257314013,3140175831,100,100,100,100,0.3,0.72,0.05,0.05
-13158,36,023,36023,1819,798,176141480,175918576,1855,815,185041215,184818311,49336,20577,1298926870,1291782573,98.06,97.91,95.19,95.18,3.69,3.88,13.56,13.62
-13158,36,067,36067,36,17,8899735,8899735,1855,815,185041215,184818311,467026,202357,2086541351,2016019983,1.94,2.09,4.81,4.82,0.01,0.01,0.43,0.44
-13159,36,023,36023,832,431,64679735,63298068,5184,2238,205497576,202266690,49336,20577,1298926870,1291782573,16.05,19.26,31.47,31.29,1.69,2.09,4.98,4.9
-13159,36,067,36067,4352,1807,140817841,138968622,5184,2238,205497576,202266690,467026,202357,2086541351,2016019983,83.95,80.74,68.53,68.71,0.93,0.89,6.75,6.89
-13160,36,011,36011,2027,946,55158195,55111472,2027,946,55158195,55111472,80026,36489,2236897583,1791189978,100,100,100,100,2.53,2.59,2.47,3.08
-13162,36,065,36065,385,325,4609379,4552385,385,325,4609379,4552385,234878,104180,3257314013,3140175831,100,100,100,100,0.16,0.31,0.14,0.14
-13163,36,053,36053,339,146,1391391,1372678,339,146,1391391,1372678,73442,31757,1712714539,1696033233,100,100,100,100,0.46,0.46,0.08,0.08
-13164,36,067,36067,2338,852,27802355,27779643,2338,852,27802355,27779643,467026,202357,2086541351,2016019983,100,100,100,100,0.5,0.42,1.33,1.38
-13165,36,099,36099,10741,4640,176923369,176074241,10741,4640,176923369,176074241,35251,16043,1011232311,838393327,100,100,100,100,30.47,28.92,17.5,21
-13166,36,011,36011,5521,2320,105876340,103811633,5610,2354,107785358,105720651,80026,36489,2236897583,1791189978,98.41,98.56,98.23,98.19,6.9,6.36,4.73,5.8
-13166,36,067,36067,89,34,1909018,1909018,5610,2354,107785358,105720651,467026,202357,2086541351,2016019983,1.59,1.44,1.77,1.81,0.02,0.02,0.09,0.09
-13167,36,075,36075,3342,1479,88835004,88385560,3342,1479,88835004,88385560,122109,53598,3398279031,2464761256,100,100,100,100,2.74,2.76,2.61,3.59
-13202,36,067,36067,5438,2594,2583576,2583576,5438,2594,2583576,2583576,467026,202357,2086541351,2016019983,100,100,100,100,1.16,1.28,0.12,0.13
-13203,36,067,36067,16029,8328,4402313,4402313,16029,8328,4402313,4402313,467026,202357,2086541351,2016019983,100,100,100,100,3.43,4.12,0.21,0.22
-13204,36,067,36067,19931,9681,11513010,11416575,19931,9681,11513010,11416575,467026,202357,2086541351,2016019983,100,100,100,100,4.27,4.78,0.55,0.57
-13205,36,067,36067,19201,8693,8934477,8934477,19201,8693,8934477,8934477,467026,202357,2086541351,2016019983,100,100,100,100,4.11,4.3,0.43,0.44
-13206,36,067,36067,16443,8401,10226509,10226509,16443,8401,10226509,10226509,467026,202357,2086541351,2016019983,100,100,100,100,3.52,4.15,0.49,0.51
-13207,36,067,36067,13897,6070,8124764,8003301,13897,6070,8124764,8003301,467026,202357,2086541351,2016019983,100,100,100,100,2.98,3,0.39,0.4
-13208,36,067,36067,22854,10211,10810716,10810716,22854,10211,10810716,10810716,467026,202357,2086541351,2016019983,100,100,100,100,4.89,5.05,0.52,0.54
-13209,36,067,36067,13243,6104,33237256,32949932,13243,6104,33237256,32949932,467026,202357,2086541351,2016019983,100,100,100,100,2.84,3.02,1.59,1.63
-13210,36,067,36067,27606,8905,11833825,11826334,27606,8905,11833825,11826334,467026,202357,2086541351,2016019983,100,100,100,100,5.91,4.4,0.57,0.59
-13211,36,067,36067,6517,2820,12198995,12198995,6517,2820,12198995,12198995,467026,202357,2086541351,2016019983,100,100,100,100,1.4,1.39,0.58,0.61
-13212,36,067,36067,20356,9118,27437632,27434413,20356,9118,27437632,27434413,467026,202357,2086541351,2016019983,100,100,100,100,4.36,4.51,1.31,1.36
-13214,36,067,36067,8793,3327,9487916,9467889,8793,3327,9487916,9467889,467026,202357,2086541351,2016019983,100,100,100,100,1.88,1.64,0.45,0.47
-13215,36,067,36067,15245,5653,88008838,87896162,15245,5653,88008838,87896162,467026,202357,2086541351,2016019983,100,100,100,100,3.26,2.79,4.22,4.36
-13219,36,067,36067,15363,6781,12894401,12845078,15363,6781,12894401,12845078,467026,202357,2086541351,2016019983,100,100,100,100,3.29,3.35,0.62,0.64
-13224,36,067,36067,8891,3968,7716206,7716206,8891,3968,7716206,7716206,467026,202357,2086541351,2016019983,100,100,100,100,1.9,1.96,0.37,0.38
-13290,36,067,36067,0,0,658222,628183,0,0,658222,628183,467026,202357,2086541351,2016019983,0,0,100,100,0,0,0.03,0.03
-13301,36,065,36065,98,147,6750843,6327547,98,147,6750843,6327547,234878,104180,3257314013,3140175831,100,100,100,100,0.04,0.14,0.21,0.2
-13302,36,075,36075,1610,954,118811583,114374628,1610,954,118811583,114374628,122109,53598,3398279031,2464761256,100,100,100,100,1.32,1.78,3.5,4.64
-13303,36,065,36065,1153,529,91723138,91659582,1153,529,91723138,91659582,234878,104180,3257314013,3140175831,100,100,100,100,0.49,0.51,2.82,2.92
-13304,36,043,36043,36,19,1437422,1248333,1684,764,45631463,45027709,64519,33381,3776089881,3655689412,2.14,2.49,3.15,2.77,0.06,0.06,0.04,0.03
-13304,36,065,36065,1648,745,44194041,43779376,1684,764,45631463,45027709,234878,104180,3257314013,3140175831,97.86,97.51,96.85,97.23,0.7,0.72,1.36,1.39
-13305,36,049,36049,293,111,2484758,2484758,293,111,2484758,2484758,27087,15112,3340985008,3301404174,100,100,100,100,1.08,0.73,0.07,0.08
-13308,36,065,36065,3625,1627,101832689,100115979,3625,1627,101832689,100115979,234878,104180,3257314013,3140175831,100,100,100,100,1.54,1.56,3.13,3.19
-13309,36,049,36049,936,474,99669172,99480647,5889,2818,378621454,376736298,27087,15112,3340985008,3301404174,15.89,16.82,26.32,26.41,3.46,3.14,2.98,3.01
-13309,36,065,36065,4953,2344,278952282,277255651,5889,2818,378621454,376736298,234878,104180,3257314013,3140175831,84.11,83.18,73.68,73.59,2.11,2.25,8.56,8.83
-13310,36,053,36053,624,302,19859015,19620637,624,302,19859015,19620637,73442,31757,1712714539,1696033233,100,100,100,100,0.85,0.95,1.16,1.16
-13312,36,049,36049,331,714,167721258,165097466,331,714,167721258,165097466,27087,15112,3340985008,3301404174,100,100,100,100,1.22,4.72,5.02,5
-13313,36,065,36065,526,230,5829804,5829804,526,230,5829804,5829804,234878,104180,3257314013,3140175831,100,100,100,100,0.22,0.22,0.18,0.19
-13314,36,053,36053,443,193,10091119,10036669,443,193,10091119,10036669,73442,31757,1712714539,1696033233,100,100,100,100,0.6,0.61,0.59,0.59
-13315,36,077,36077,1419,718,127601152,127161872,1419,718,127601152,127161872,62259,30777,2630785590,2594391877,100,100,100,100,2.28,2.33,4.85,4.9
-13316,36,049,36049,183,237,100276789,100074864,6460,3021,420908680,420190728,27087,15112,3340985008,3301404174,2.83,7.85,23.82,23.82,0.68,1.57,3,3.03
-13316,36,065,36065,6237,2765,315782173,315266146,6460,3021,420908680,420190728,234878,104180,3257314013,3140175831,96.55,91.53,75.02,75.03,2.66,2.65,9.69,10.04
-13316,36,075,36075,40,19,4849718,4849718,6460,3021,420908680,420190728,122109,53598,3398279031,2464761256,0.62,0.63,1.15,1.15,0.03,0.04,0.14,0.2
-13317,36,057,36057,3769,1716,118182590,116651158,3784,1722,120985348,119453916,50219,23063,1062815091,1043875858,99.6,99.65,97.68,97.65,7.51,7.44,11.12,11.17
-13317,36,077,36077,15,6,2802758,2802758,3784,1722,120985348,119453916,62259,30777,2630785590,2594391877,0.4,0.35,2.32,2.35,0.02,0.02,0.11,0.11
-13318,36,065,36065,1325,522,65771238,65741288,1325,522,65771238,65741288,234878,104180,3257314013,3140175831,100,100,100,100,0.56,0.5,2.02,2.09
-13319,36,065,36065,1079,461,2295989,2295989,1079,461,2295989,2295989,234878,104180,3257314013,3140175831,100,100,100,100,0.46,0.44,0.07,0.07
-13320,36,057,36057,11,8,75237,75237,2018,1190,199453424,199072520,50219,23063,1062815091,1043875858,0.55,0.67,0.04,0.04,0.02,0.03,0.01,0.01
-13320,36,077,36077,2007,1182,199378187,198997283,2018,1190,199453424,199072520,62259,30777,2630785590,2594391877,99.45,99.33,99.96,99.96,3.22,3.84,7.58,7.67
-13321,36,065,36065,1049,527,2133497,2089622,1049,527,2133497,2089622,234878,104180,3257314013,3140175831,100,100,100,100,0.45,0.51,0.07,0.07
-13322,36,043,36043,360,267,19187207,19094383,1076,574,31593710,31461243,64519,33381,3776089881,3655689412,33.46,46.52,60.73,60.69,0.56,0.8,0.51,0.52
-13322,36,065,36065,716,307,12406503,12366860,1076,574,31593710,31461243,234878,104180,3257314013,3140175831,66.54,53.48,39.27,39.31,0.3,0.29,0.38,0.39
-13323,36,065,36065,11323,4459,98616569,98527749,11323,4459,98616569,98527749,234878,104180,3257314013,3140175831,100,100,100,100,4.82,4.28,3.03,3.14
-13324,36,043,36043,2149,1438,320439623,309102925,2149,1438,320439623,309102925,64519,33381,3776089881,3655689412,100,100,100,100,3.33,4.31,8.49,8.46
-13325,36,049,36049,866,619,200550048,200439390,866,619,200550048,200439390,27087,15112,3340985008,3301404174,100,100,100,100,3.2,4.1,6,6.07
-13326,36,077,36077,5561,3414,248701677,247054484,5561,3414,248701677,247054484,62259,30777,2630785590,2594391877,100,100,100,100,8.93,11.09,9.45,9.52
-13327,36,049,36049,2056,1217,352306003,345561793,2056,1217,352306003,345561793,27087,15112,3340985008,3301404174,100,100,100,100,7.59,8.05,10.54,10.47
-13328,36,065,36065,1267,548,41087158,41087158,1267,548,41087158,41087158,234878,104180,3257314013,3140175831,100,100,100,100,0.54,0.53,1.26,1.31
-13329,36,035,36035,1022,515,99998831,99014746,3889,1905,138339976,137117675,55531,28562,1380152115,1283258864,26.28,27.03,72.28,72.21,1.84,1.8,7.25,7.72
-13329,36,043,36043,2867,1390,38341145,38102929,3889,1905,138339976,137117675,64519,33381,3776089881,3655689412,73.72,72.97,27.72,27.79,4.44,4.16,1.02,1.04
-13331,36,043,36043,189,919,221030093,208926889,189,919,221030093,208926889,64519,33381,3776089881,3655689412,100,100,100,100,0.29,2.75,5.85,5.72
-13332,36,017,36017,644,293,22801106,22801106,2460,1149,127761421,127381600,50477,24710,2327440864,2314279661,26.18,25.5,17.85,17.9,1.28,1.19,0.98,0.99
-13332,36,053,36053,1816,856,104960315,104580494,2460,1149,127761421,127381600,73442,31757,1712714539,1696033233,73.82,74.5,82.15,82.1,2.47,2.7,6.13,6.17
-13333,36,077,36077,62,30,4412485,4404887,62,30,4412485,4404887,62259,30777,2630785590,2594391877,100,100,100,100,0.1,0.1,0.17,0.17
-13334,36,053,36053,1374,846,76786145,75341782,1374,846,76786145,75341782,73442,31757,1712714539,1696033233,100,100,100,100,1.87,2.66,4.48,4.44
-13335,36,077,36077,1590,686,98915324,98817757,1590,686,98915324,98817757,62259,30777,2630785590,2594391877,100,100,100,100,2.55,2.23,3.76,3.81
-13337,36,077,36077,790,438,48208652,47908553,790,438,48208652,47908553,62259,30777,2630785590,2594391877,100,100,100,100,1.27,1.42,1.83,1.85
-13338,36,043,36043,89,278,504020441,492836946,1206,1567,643681346,629607816,64519,33381,3776089881,3655689412,7.38,17.74,78.3,78.28,0.14,0.83,13.35,13.48
-13338,36,065,36065,1117,1289,139660905,136770870,1206,1567,643681346,629607816,234878,104180,3257314013,3140175831,92.62,82.26,21.7,21.72,0.48,1.24,4.29,4.36
-13339,36,035,36035,463,185,17230656,17230656,6941,2943,282432579,280178936,55531,28562,1380152115,1283258864,6.67,6.29,6.1,6.15,0.83,0.65,1.25,1.34
-13339,36,043,36043,626,264,53358033,53347188,6941,2943,282432579,280178936,64519,33381,3776089881,3655689412,9.02,8.97,18.89,19.04,0.97,0.79,1.41,1.46
-13339,36,057,36057,5852,2494,211843890,209601092,6941,2943,282432579,280178936,50219,23063,1062815091,1043875858,84.31,84.74,75.01,74.81,11.65,10.81,19.93,20.08
-13340,36,043,36043,8205,3499,150728670,149893995,8205,3499,150728670,149893995,64519,33381,3776089881,3655689412,100,100,100,100,12.72,10.48,3.99,4.1
-13341,36,065,36065,102,40,476975,476975,102,40,476975,476975,234878,104180,3257314013,3140175831,100,100,100,100,0.04,0.04,0.01,0.02
-13342,36,077,36077,165,88,20711481,20565960,165,88,20711481,20565960,62259,30777,2630785590,2594391877,100,100,100,100,0.27,0.29,0.79,0.79
-13343,36,049,36049,1658,1164,147977387,145505915,1658,1164,147977387,145505915,27087,15112,3340985008,3301404174,100,100,100,100,6.12,7.7,4.43,4.41
-13345,36,049,36049,177,93,12833555,12791341,177,93,12833555,12791341,27087,15112,3340985008,3301404174,100,100,100,100,0.65,0.62,0.38,0.39
-13346,36,053,36053,6735,2413,100603478,97926856,6735,2413,100603478,97926856,73442,31757,1712714539,1696033233,100,100,100,100,9.17,7.6,5.87,5.77
-13348,36,077,36077,1469,760,95932484,95759954,1469,760,95932484,95759954,62259,30777,2630785590,2594391877,100,100,100,100,2.36,2.47,3.65,3.69
-13350,36,043,36043,10093,4568,80218089,78789789,10093,4568,80218089,78789789,64519,33381,3776089881,3655689412,100,100,100,100,15.64,13.68,2.12,2.16
-13352,36,065,36065,65,33,477574,434504,65,33,477574,434504,234878,104180,3257314013,3140175831,100,100,100,100,0.03,0.03,0.01,0.01
-13353,36,041,36041,86,289,522219443,512594477,86,289,522219443,512594477,4836,8694,4682190034,4447975965,100,100,100,100,1.78,3.32,11.15,11.52
-13354,36,065,36065,3342,1369,135029959,134889972,3342,1369,135029959,134889972,234878,104180,3257314013,3140175831,100,100,100,100,1.42,1.31,4.15,4.3
-13355,36,053,36053,905,381,75423325,75387380,905,381,75423325,75387380,73442,31757,1712714539,1696033233,100,100,100,100,1.23,1.2,4.4,4.44
-13357,36,043,36043,11055,4861,81664544,81295714,11096,4885,82061979,81693149,64519,33381,3776089881,3655689412,99.63,99.51,99.52,99.51,17.13,14.56,2.16,2.22
-13357,36,077,36077,41,24,397435,397435,11096,4885,82061979,81693149,62259,30777,2630785590,2594391877,0.37,0.49,0.48,0.49,0.07,0.08,0.02,0.02
-13360,36,041,36041,333,1010,169841041,159703716,333,1010,169841041,159703716,4836,8694,4682190034,4447975965,100,100,100,100,6.89,11.62,3.63,3.59
-13361,36,043,36043,705,280,61903983,61897463,824,328,73367542,73361022,64519,33381,3776089881,3655689412,85.56,85.37,84.38,84.37,1.09,0.84,1.64,1.69
-13361,36,077,36077,119,48,11463559,11463559,824,328,73367542,73361022,62259,30777,2630785590,2594391877,14.44,14.63,15.62,15.63,0.19,0.16,0.44,0.44
-13362,36,065,36065,60,21,714898,714898,60,21,714898,714898,234878,104180,3257314013,3140175831,100,100,100,100,0.03,0.02,0.02,0.02
-13363,36,065,36065,2315,999,54993469,54876360,2315,999,54993469,54876360,234878,104180,3257314013,3140175831,100,100,100,100,0.99,0.96,1.69,1.75
-13364,36,053,36053,243,111,7656967,7656967,243,111,7656967,7656967,73442,31757,1712714539,1696033233,100,100,100,100,0.33,0.35,0.45,0.45
-13365,36,043,36043,8906,4424,351426682,347301945,8906,4424,351426682,347301945,64519,33381,3776089881,3655689412,100,100,100,100,13.8,13.25,9.31,9.5
-13367,36,043,36043,21,60,473102068,434907147,8830,4313,1220057880,1174248862,64519,33381,3776089881,3655689412,0.24,1.39,38.78,37.04,0.03,0.18,12.53,11.9
-13367,36,049,36049,8809,4253,746955812,739341715,8830,4313,1220057880,1174248862,27087,15112,3340985008,3301404174,99.76,98.61,61.22,62.96,32.52,28.14,22.36,22.39
-13368,36,049,36049,1118,632,120802083,118061419,1118,632,120802083,118061419,27087,15112,3340985008,3301404174,100,100,100,100,4.13,4.18,3.62,3.58
-13402,36,053,36053,1515,706,61863149,61581353,1534,714,66029139,65747343,73442,31757,1712714539,1696033233,98.76,98.88,93.69,93.66,2.06,2.22,3.61,3.63
-13402,36,065,36065,19,8,4165990,4165990,1534,714,66029139,65747343,234878,104180,3257314013,3140175831,1.24,1.12,6.31,6.34,0.01,0.01,0.13,0.13
-13403,36,065,36065,7372,1697,70129457,69169426,7372,1697,70129457,69169426,234878,104180,3257314013,3140175831,100,100,100,100,3.14,1.63,2.15,2.2
-13404,36,049,36049,236,93,7631020,7631020,236,93,7631020,7631020,27087,15112,3340985008,3301404174,100,100,100,100,0.87,0.62,0.23,0.23
-13406,36,043,36043,725,338,28427442,28257173,725,338,28427442,28257173,64519,33381,3776089881,3655689412,100,100,100,100,1.12,1.01,0.75,0.77
-13407,36,043,36043,5453,2451,141976147,140608069,5453,2451,141976147,140608069,64519,33381,3776089881,3655689412,100,100,100,100,8.45,7.34,3.76,3.85
-13408,36,053,36053,4280,1188,97764662,97444354,4280,1188,97764662,97444354,73442,31757,1712714539,1696033233,100,100,100,100,5.83,3.74,5.71,5.75
-13409,36,053,36053,2374,982,89291631,89291631,2374,982,89291631,89291631,73442,31757,1712714539,1696033233,100,100,100,100,3.23,3.09,5.21,5.26
-13410,36,057,36057,241,108,256023,256023,241,108,256023,256023,50219,23063,1062815091,1043875858,100,100,100,100,0.48,0.47,0.02,0.02
-13411,36,017,36017,1926,941,86377470,85909975,3264,1627,178040953,177298507,50477,24710,2327440864,2314279661,59.01,57.84,48.52,48.45,3.82,3.81,3.71,3.71
-13411,36,077,36077,1338,686,91663483,91388532,3264,1627,178040953,177298507,62259,30777,2630785590,2594391877,40.99,42.16,51.48,51.55,2.15,2.23,3.48,3.52
-13413,36,043,36043,218,84,5007865,4981296,16135,7198,51690249,51509884,64519,33381,3776089881,3655689412,1.35,1.17,9.69,9.67,0.34,0.25,0.13,0.14
-13413,36,065,36065,15917,7114,46682384,46528588,16135,7198,51690249,51509884,234878,104180,3257314013,3140175831,98.65,98.83,90.31,90.33,6.78,6.83,1.43,1.48
-13415,36,077,36077,77,50,5125170,5125170,77,50,5125170,5125170,62259,30777,2630785590,2594391877,100,100,100,100,0.12,0.16,0.19,0.2
-13416,36,043,36043,2271,1021,135610376,134693576,2271,1021,135610376,134693576,64519,33381,3776089881,3655689412,100,100,100,100,3.52,3.06,3.59,3.68
-13417,36,065,36065,3305,1851,3377612,3377612,3305,1851,3377612,3377612,234878,104180,3257314013,3140175831,100,100,100,100,1.41,1.78,0.1,0.11
-13418,36,053,36053,255,106,13510556,13509603,255,106,13510556,13509603,73442,31757,1712714539,1696033233,100,100,100,100,0.35,0.33,0.79,0.8
-13420,36,043,36043,1266,2782,596964641,563552446,1266,2782,596964641,563552446,64519,33381,3776089881,3655689412,100,100,100,100,1.96,8.33,15.81,15.42
-13421,36,053,36053,11741,5184,78988803,78776937,14125,6209,109010918,108799052,73442,31757,1712714539,1696033233,83.12,83.49,72.46,72.41,15.99,16.32,4.61,4.64
-13421,36,065,36065,2384,1025,30022115,30022115,14125,6209,109010918,108799052,234878,104180,3257314013,3140175831,16.88,16.51,27.54,27.59,1.01,0.98,0.92,0.96
-13424,36,065,36065,2725,948,28871889,28871889,2725,948,28871889,28871889,234878,104180,3257314013,3140175831,100,100,100,100,1.16,0.91,0.89,0.92
-13425,36,053,36053,139,63,8636161,8607961,1970,857,66183182,66154982,73442,31757,1712714539,1696033233,7.06,7.35,13.05,13.01,0.19,0.2,0.5,0.51
-13425,36,065,36065,1831,794,57547021,57547021,1970,857,66183182,66154982,234878,104180,3257314013,3140175831,92.94,92.65,86.95,86.99,0.78,0.76,1.77,1.83
-13428,36,057,36057,1635,704,41198251,40884211,1635,704,41198251,40884211,50219,23063,1062815091,1043875858,100,100,100,100,3.26,3.05,3.88,3.92
-13431,36,043,36043,1935,776,84319515,83565429,2069,841,96281973,95460191,64519,33381,3776089881,3655689412,93.52,92.27,87.58,87.54,3,2.32,2.23,2.29
-13431,36,065,36065,134,65,11962458,11894762,2069,841,96281973,95460191,234878,104180,3257314013,3140175831,6.48,7.73,12.42,12.46,0.06,0.06,0.37,0.38
-13433,36,049,36049,1820,852,114963280,112948222,1820,852,114963280,112948222,27087,15112,3340985008,3301404174,100,100,100,100,6.72,5.64,3.44,3.42
-13435,36,065,36065,286,126,539473,539473,286,126,539473,539473,234878,104180,3257314013,3140175831,100,100,100,100,0.12,0.12,0.02,0.02
-13436,36,041,36041,108,582,124184085,99291384,108,582,124184085,99291384,4836,8694,4682190034,4447975965,100,100,100,100,2.23,6.69,2.65,2.23
-13437,36,049,36049,46,163,59454426,59445325,460,721,250294623,248962713,27087,15112,3340985008,3301404174,10,22.61,23.75,23.88,0.17,1.08,1.78,1.8
-13437,36,075,36075,414,558,190840197,189517388,460,721,250294623,248962713,122109,53598,3398279031,2464761256,90,77.39,76.25,76.12,0.34,1.04,5.62,7.69
-13438,36,043,36043,543,357,43000576,42488649,3789,2123,228071232,222255886,64519,33381,3776089881,3655689412,14.33,16.82,18.85,19.12,0.84,1.07,1.14,1.16
-13438,36,065,36065,3246,1766,185070656,179767237,3789,2123,228071232,222255886,234878,104180,3257314013,3140175831,85.67,83.18,81.15,80.88,1.38,1.7,5.68,5.72
-13439,36,043,36043,941,401,92096805,91276824,3950,2337,224421449,223035886,64519,33381,3776089881,3655689412,23.82,17.16,41.04,40.92,1.46,1.2,2.44,2.5
-13439,36,077,36077,3009,1936,132324644,131759062,3950,2337,224421449,223035886,62259,30777,2630785590,2594391877,76.18,82.84,58.96,59.08,4.83,6.29,5.03,5.08
-13440,36,065,36065,42986,18723,295982840,292348383,42986,18723,295982840,292348383,234878,104180,3257314013,3140175831,100,100,100,100,18.3,17.97,9.09,9.31
-13441,36,065,36065,51,15,9300659,9300659,51,15,9300659,9300659,234878,104180,3257314013,3140175831,100,100,100,100,0.02,0.01,0.29,0.3
-13450,36,077,36077,104,59,6166082,6166082,104,59,6166082,6166082,62259,30777,2630785590,2594391877,100,100,100,100,0.17,0.19,0.23,0.24
-13452,36,035,36035,1982,901,154443629,153720297,4629,2096,199687525,197621769,55531,28562,1380152115,1283258864,42.82,42.99,77.34,77.79,3.57,3.15,11.19,11.98
-13452,36,057,36057,2647,1195,45243896,43901472,4629,2096,199687525,197621769,50219,23063,1062815091,1043875858,57.18,57.01,22.66,22.21,5.27,5.18,4.26,4.21
-13454,36,043,36043,826,381,112231223,111497849,826,381,112231223,111497849,64519,33381,3776089881,3655689412,100,100,100,100,1.28,1.14,2.97,3.05
-13456,36,043,36043,349,125,13060548,13060548,4164,1733,72707011,72707011,64519,33381,3776089881,3655689412,8.38,7.21,17.96,17.96,0.54,0.37,0.35,0.36
-13456,36,065,36065,3815,1608,59646463,59646463,4164,1733,72707011,72707011,234878,104180,3257314013,3140175831,91.62,92.79,82.04,82.04,1.62,1.54,1.83,1.9
-13459,36,057,36057,78,36,7133712,7133712,2222,1091,132214193,131861852,50219,23063,1062815091,1043875858,3.51,3.3,5.4,5.41,0.16,0.16,0.67,0.68
-13459,36,077,36077,14,12,1597238,1597238,2222,1091,132214193,131861852,62259,30777,2630785590,2594391877,0.63,1.1,1.21,1.21,0.02,0.04,0.06,0.06
-13459,36,095,36095,2130,1043,123483243,123130902,2222,1091,132214193,131861852,32749,17231,1622180792,1610503950,95.86,95.6,93.4,93.38,6.5,6.05,7.61,7.65
-13460,36,017,36017,4412,2015,173628274,173147979,4429,2039,185663369,185181562,50477,24710,2327440864,2314279661,99.62,98.82,93.52,93.5,8.74,8.15,7.46,7.48
-13460,36,053,36053,17,24,12035095,12033583,4429,2039,185663369,185181562,73442,31757,1712714539,1696033233,0.38,1.18,6.48,6.5,0.02,0.08,0.7,0.71
-13461,36,065,36065,3083,1392,6004726,6004726,3083,1392,6004726,6004726,234878,104180,3257314013,3140175831,100,100,100,100,1.31,1.34,0.18,0.19
-13464,36,017,36017,1189,592,99473690,99315539,1189,592,99473690,99315539,50477,24710,2327440864,2314279661,100,100,100,100,2.36,2.4,4.27,4.29
-13468,36,077,36077,451,229,25471889,25191145,451,229,25471889,25191145,62259,30777,2630785590,2594391877,100,100,100,100,0.72,0.74,0.97,0.97
-13469,36,065,36065,847,332,10592641,10402989,847,332,10592641,10402989,234878,104180,3257314013,3140175831,100,100,100,100,0.36,0.32,0.33,0.33
-13470,36,035,36035,601,526,169594412,165253356,725,607,177646595,173305539,55531,28562,1380152115,1283258864,82.9,86.66,95.47,95.35,1.08,1.84,12.29,12.88
-13470,36,043,36043,124,81,8052183,8052183,725,607,177646595,173305539,64519,33381,3776089881,3655689412,17.1,13.34,4.53,4.65,0.19,0.24,0.21,0.22
-13471,36,049,36049,44,55,86494881,86384370,3540,1462,244002352,243048481,27087,15112,3340985008,3301404174,1.24,3.76,35.45,35.54,0.16,0.36,2.59,2.62
-13471,36,065,36065,3496,1407,157507471,156664111,3540,1462,244002352,243048481,234878,104180,3257314013,3140175831,98.76,96.24,64.55,64.46,1.49,1.35,4.84,4.99
-13472,36,043,36043,310,389,38512070,37411807,310,389,38512070,37411807,64519,33381,3776089881,3655689412,100,100,100,100,0.48,1.17,1.02,1.02
-13473,36,049,36049,766,463,119923074,119488091,766,463,119923074,119488091,27087,15112,3340985008,3301404174,100,100,100,100,2.83,3.06,3.59,3.62
-13475,36,043,36043,28,16,39136,39136,28,16,39136,39136,64519,33381,3776089881,3655689412,100,100,100,100,0.04,0.05,0,0
-13476,36,065,36065,3032,1364,55340017,55311988,3032,1364,55340017,55311988,234878,104180,3257314013,3140175831,100,100,100,100,1.29,1.31,1.7,1.76
-13477,36,065,36065,1452,593,52448071,52448071,1452,593,52448071,52448071,234878,104180,3257314013,3140175831,100,100,100,100,0.62,0.57,1.61,1.67
-13478,36,065,36065,3083,1286,92710192,92687502,3083,1286,92710192,92687502,234878,104180,3257314013,3140175831,100,100,100,100,1.31,1.23,2.85,2.95
-13480,36,053,36053,77,33,10318184,10318184,3532,1492,139674212,139209433,73442,31757,1712714539,1696033233,2.18,2.21,7.39,7.41,0.1,0.1,0.6,0.61
-13480,36,065,36065,3455,1459,129356028,128891249,3532,1492,139674212,139209433,234878,104180,3257314013,3140175831,97.82,97.79,92.61,92.59,1.47,1.4,3.97,4.1
-13483,36,065,36065,256,118,18134841,17921423,256,118,18134841,17921423,234878,104180,3257314013,3140175831,100,100,100,100,0.11,0.11,0.56,0.57
-13484,36,053,36053,176,74,6604476,6604476,176,74,6604476,6604476,73442,31757,1712714539,1696033233,100,100,100,100,0.24,0.23,0.39,0.39
-13485,36,017,36017,112,40,8419022,8419022,1132,545,114815012,114400134,50477,24710,2327440864,2314279661,9.89,7.34,7.33,7.36,0.22,0.16,0.36,0.36
-13485,36,053,36053,785,393,88375754,87960876,1132,545,114815012,114400134,73442,31757,1712714539,1696033233,69.35,72.11,76.97,76.89,1.07,1.24,5.16,5.19
-13485,36,077,36077,235,112,18020236,18020236,1132,545,114815012,114400134,62259,30777,2630785590,2594391877,20.76,20.55,15.7,15.75,0.38,0.36,0.68,0.69
-13486,36,065,36065,815,368,85249543,76274708,815,368,85249543,76274708,234878,104180,3257314013,3140175831,100,100,100,100,0.35,0.35,2.62,2.43
-13488,36,077,36077,98,77,10876854,10837468,98,77,10876854,10837468,62259,30777,2630785590,2594391877,100,100,100,100,0.16,0.25,0.41,0.42
-13489,36,049,36049,634,305,108125275,106822500,658,316,111893905,110591130,27087,15112,3340985008,3301404174,96.35,96.52,96.63,96.59,2.34,2.02,3.24,3.24
-13489,36,065,36065,24,11,3768630,3768630,658,316,111893905,110591130,234878,104180,3257314013,3140175831,3.65,3.48,3.37,3.41,0.01,0.01,0.12,0.12
-13490,36,065,36065,1361,549,30647149,30647149,1361,549,30647149,30647149,234878,104180,3257314013,3140175831,100,100,100,100,0.58,0.53,0.94,0.98
-13491,36,043,36043,2141,915,73579338,73476537,3641,1607,187509336,187384011,64519,33381,3776089881,3655689412,58.8,56.94,39.24,39.21,3.32,2.74,1.95,2.01
-13491,36,053,36053,409,170,21510512,21510512,3641,1607,187509336,187384011,73442,31757,1712714539,1696033233,11.23,10.58,11.47,11.48,0.56,0.54,1.26,1.27
-13491,36,077,36077,1091,522,92419486,92396962,3641,1607,187509336,187384011,62259,30777,2630785590,2594391877,29.96,32.48,49.29,49.31,1.75,1.7,3.51,3.56
-13492,36,065,36065,11596,5173,39064665,39055977,11596,5173,39064665,39055977,234878,104180,3257314013,3140175831,100,100,100,100,4.94,4.97,1.2,1.24
-13493,36,075,36075,2070,945,202560643,193054522,2070,945,202560643,193054522,122109,53598,3398279031,2464761256,100,100,100,100,1.7,1.76,5.96,7.83
-13494,36,065,36065,314,608,46406526,45348993,314,608,46406526,45348993,234878,104180,3257314013,3140175831,100,100,100,100,0.13,0.58,1.42,1.44
-13495,36,065,36065,2144,1037,2260355,2260355,2144,1037,2260355,2260355,234878,104180,3257314013,3140175831,100,100,100,100,0.91,1,0.07,0.07
-13501,36,065,36065,38546,16932,22811781,22659189,38546,16932,22811781,22659189,234878,104180,3257314013,3140175831,100,100,100,100,16.41,16.25,0.7,0.72
-13502,36,043,36043,2088,997,46354016,45982244,33257,15249,140329849,139242008,64519,33381,3776089881,3655689412,6.28,6.54,33.03,33.02,3.24,2.99,1.23,1.26
-13502,36,065,36065,31169,14252,93975833,93259764,33257,15249,140329849,139242008,234878,104180,3257314013,3140175831,93.72,93.46,66.97,66.98,13.27,13.68,2.89,2.97
-13601,36,045,36045,38112,16931,349335446,342202175,38158,16971,371556885,364423614,116229,57966,4810181094,3285632368,99.88,99.76,94.02,93.9,32.79,29.21,7.26,10.42
-13601,36,049,36049,46,40,22221439,22221439,38158,16971,371556885,364423614,27087,15112,3340985008,3301404174,0.12,0.24,5.98,6.1,0.17,0.26,0.67,0.67
-13602,36,045,36045,3881,120,25891716,25250353,3881,120,25891716,25250353,116229,57966,4810181094,3285632368,100,100,100,100,3.34,0.21,0.54,0.77
-13603,36,045,36045,9760,3233,14212746,14130091,9760,3233,14212746,14130091,116229,57966,4810181094,3285632368,100,100,100,100,8.4,5.58,0.3,0.43
-13605,36,045,36045,4777,2279,210673616,209099378,4777,2279,210673616,209099378,116229,57966,4810181094,3285632368,100,100,100,100,4.11,3.93,4.38,6.36
-13606,36,045,36045,2716,1093,91407688,91026778,2716,1093,91407688,91026778,116229,57966,4810181094,3285632368,100,100,100,100,2.34,1.89,1.9,2.77
-13607,36,045,36045,1822,1812,46758476,46173096,1822,1812,46758476,46173096,116229,57966,4810181094,3285632368,100,100,100,100,1.57,3.13,0.97,1.41
-13608,36,045,36045,1462,594,91521695,90458540,1719,708,103945460,102578820,116229,57966,4810181094,3285632368,85.05,83.9,88.05,88.18,1.26,1.02,1.9,2.75
-13608,36,089,36089,257,114,12423765,12120280,1719,708,103945460,102578820,111944,52133,7307493594,6942144728,14.95,16.1,11.95,11.82,0.23,0.22,0.17,0.17
-13612,36,045,36045,2852,1197,46498494,45983348,2852,1197,46498494,45983348,116229,57966,4810181094,3285632368,100,100,100,100,2.45,2.07,0.97,1.4
-13613,36,089,36089,2726,1224,217853719,215757308,2726,1224,217853719,215757308,111944,52133,7307493594,6942144728,100,100,100,100,2.44,2.35,2.98,3.11
-13614,36,089,36089,357,171,23220973,23220973,357,171,23220973,23220973,111944,52133,7307493594,6942144728,100,100,100,100,0.32,0.33,0.32,0.33
-13615,36,045,36045,1271,520,9951396,9941600,1271,520,9951396,9941600,116229,57966,4810181094,3285632368,100,100,100,100,1.09,0.9,0.21,0.3
-13616,36,045,36045,1880,815,14361408,14357373,1880,815,14361408,14357373,116229,57966,4810181094,3285632368,100,100,100,100,1.62,1.41,0.3,0.44
-13617,36,089,36089,11299,3836,333548448,330709940,11299,3836,333548448,330709940,111944,52133,7307493594,6942144728,100,100,100,100,10.09,7.36,4.56,4.76
-13618,36,045,36045,1711,2414,137610131,130439071,1711,2414,137610131,130439071,116229,57966,4810181094,3285632368,100,100,100,100,1.47,4.16,2.86,3.97
-13619,36,045,36045,9677,4170,169361192,165973783,10901,4688,287104852,282333950,116229,57966,4810181094,3285632368,88.77,88.95,58.99,58.79,8.33,7.19,3.52,5.05
-13619,36,049,36049,1224,518,117743660,116360167,10901,4688,287104852,282333950,27087,15112,3340985008,3301404174,11.23,11.05,41.01,41.21,4.52,3.43,3.52,3.52
-13620,36,049,36049,2197,855,120857326,119857295,2197,855,120857326,119857295,27087,15112,3340985008,3301404174,100,100,100,100,8.11,5.66,3.62,3.63
-13621,36,089,36089,650,338,72601289,70465456,650,338,72601289,70465456,111944,52133,7307493594,6942144728,100,100,100,100,0.58,0.65,0.99,1.02
-13622,36,045,36045,2432,1478,154265395,150678056,2432,1478,154265395,150678056,116229,57966,4810181094,3285632368,100,100,100,100,2.09,2.55,3.21,4.59
-13623,36,089,36089,49,91,1026859,1026859,49,91,1026859,1026859,111944,52133,7307493594,6942144728,100,100,100,100,0.04,0.17,0.01,0.01
-13624,36,045,36045,5457,3582,166472402,164245713,5457,3582,166472402,164245713,116229,57966,4810181094,3285632368,100,100,100,100,4.7,6.18,3.46,5
-13625,36,089,36089,1868,1151,146504953,143347678,1868,1151,146504953,143347678,111944,52133,7307493594,6942144728,100,100,100,100,1.67,2.21,2,2.06
-13626,36,045,36045,378,152,30592196,30592196,2267,1134,257720610,257188888,116229,57966,4810181094,3285632368,16.67,13.4,11.87,11.89,0.33,0.26,0.64,0.93
-13626,36,049,36049,1889,982,227128414,226596692,2267,1134,257720610,257188888,27087,15112,3340985008,3301404174,83.33,86.6,88.13,88.11,6.97,6.5,6.8,6.86
-13628,36,045,36045,220,99,602250,477227,220,99,602250,477227,116229,57966,4810181094,3285632368,100,100,100,100,0.19,0.17,0.01,0.01
-13630,36,089,36089,1525,596,125338626,124333981,1525,596,125338626,124333981,111944,52133,7307493594,6942144728,100,100,100,100,1.36,1.14,1.72,1.79
-13633,36,089,36089,345,190,53478703,51297309,345,190,53478703,51297309,111944,52133,7307493594,6942144728,100,100,100,100,0.31,0.36,0.73,0.74
-13634,36,045,36045,3984,2220,118122958,114377144,3984,2220,118122958,114377144,116229,57966,4810181094,3285632368,100,100,100,100,3.43,3.83,2.46,3.48
-13635,36,089,36089,1092,545,146029517,143939871,1092,545,146029517,143939871,111944,52133,7307493594,6942144728,100,100,100,100,0.98,1.05,2,2.07
-13636,36,045,36045,282,112,8304333,8304333,282,112,8304333,8304333,116229,57966,4810181094,3285632368,100,100,100,100,0.24,0.19,0.17,0.25
-13637,36,045,36045,4491,1832,91279143,91224000,4491,1832,91279143,91224000,116229,57966,4810181094,3285632368,100,100,100,100,3.86,3.16,1.9,2.78
-13638,36,045,36045,378,164,3392678,3160012,378,164,3392678,3160012,116229,57966,4810181094,3285632368,100,100,100,100,0.33,0.28,0.07,0.1
-13639,36,089,36089,243,129,50804685,50187297,243,129,50804685,50187297,111944,52133,7307493594,6942144728,100,100,100,100,0.22,0.25,0.7,0.72
-13640,36,045,36045,271,923,32674895,32011485,271,923,32674895,32011485,116229,57966,4810181094,3285632368,100,100,100,100,0.23,1.59,0.68,0.97
-13641,36,045,36045,91,288,810356,799487,91,288,810356,799487,116229,57966,4810181094,3285632368,100,100,100,100,0.08,0.5,0.02,0.02
-13642,36,045,36045,59,23,4197728,4197728,10088,4159,478785577,469003445,116229,57966,4810181094,3285632368,0.58,0.55,0.88,0.9,0.05,0.04,0.09,0.13
-13642,36,089,36089,10029,4136,474587849,464805717,10088,4159,478785577,469003445,111944,52133,7307493594,6942144728,99.42,99.45,99.12,99.1,8.96,7.93,6.49,6.7
-13643,36,045,36045,19,11,93794,93794,19,11,93794,93794,116229,57966,4810181094,3285632368,100,100,100,100,0.02,0.02,0,0
-13646,36,045,36045,13,11,2223180,2223180,2211,2720,304063943,278100662,116229,57966,4810181094,3285632368,0.59,0.4,0.73,0.8,0.01,0.02,0.05,0.07
-13646,36,089,36089,2198,2709,301840763,275877482,2211,2720,304063943,278100662,111944,52133,7307493594,6942144728,99.41,99.6,99.27,99.2,1.96,5.2,4.13,3.97
-13647,36,089,36089,69,32,236491,236491,69,32,236491,236491,111944,52133,7307493594,6942144728,100,100,100,100,0.06,0.06,0,0
-13648,36,049,36049,1426,1058,304248468,294718698,2424,1640,487254280,474747890,27087,15112,3340985008,3301404174,58.83,64.51,62.44,62.08,5.26,7,9.11,8.93
-13648,36,089,36089,998,582,183005812,180029192,2424,1640,487254280,474747890,111944,52133,7307493594,6942144728,41.17,35.49,37.56,37.92,0.89,1.12,2.5,2.59
-13650,36,045,36045,1391,1536,112801874,106864073,1391,1536,112801874,106864073,116229,57966,4810181094,3285632368,100,100,100,100,1.2,2.65,2.35,3.25
-13651,36,045,36045,127,194,6867117,6343483,127,194,6867117,6343483,116229,57966,4810181094,3285632368,100,100,100,100,0.11,0.33,0.14,0.19
-13652,36,089,36089,1815,973,174359307,172157083,1815,973,174359307,172157083,111944,52133,7307493594,6942144728,100,100,100,100,1.62,1.87,2.39,2.48
-13654,36,089,36089,2461,1062,182985697,172616477,2461,1062,182985697,172616477,111944,52133,7307493594,6942144728,100,100,100,100,2.2,2.04,2.5,2.49
-13655,36,033,36033,3342,1279,56432319,50801351,3512,1365,58204272,52372449,51599,25306,4396430309,4219398044,95.16,93.7,96.96,97,6.48,5.05,1.28,1.2
-13655,36,089,36089,170,86,1771953,1571098,3512,1365,58204272,52372449,111944,52133,7307493594,6942144728,4.84,6.3,3.04,3,0.15,0.16,0.02,0.02
-13656,36,045,36045,2861,1076,221898250,220334088,2861,1076,221898250,220334088,116229,57966,4810181094,3285632368,100,100,100,100,2.46,1.86,4.61,6.71
-13658,36,089,36089,2357,985,204119918,203848065,2357,985,204119918,203848065,111944,52133,7307493594,6942144728,100,100,100,100,2.11,1.89,2.79,2.94
-13659,36,045,36045,593,416,147401871,147164928,593,416,147401871,147164928,116229,57966,4810181094,3285632368,100,100,100,100,0.51,0.72,3.06,4.48
-13660,36,089,36089,1891,776,140726746,139279933,1891,776,140726746,139279933,111944,52133,7307493594,6942144728,100,100,100,100,1.69,1.49,1.93,2.01
-13661,36,045,36045,1600,907,117703933,115185553,1646,1114,130916455,119351259,116229,57966,4810181094,3285632368,97.21,81.42,89.91,96.51,1.38,1.56,2.45,3.51
-13661,36,075,36075,46,207,13212522,4165706,1646,1114,130916455,119351259,122109,53598,3398279031,2464761256,2.79,18.58,10.09,3.49,0.04,0.39,0.39,0.17
-13662,36,089,36089,16582,7608,246444405,230103020,16582,7608,246444405,230103020,111944,52133,7307493594,6942144728,100,100,100,100,14.81,14.59,3.37,3.31
-13664,36,089,36089,399,250,2654724,2546420,399,250,2654724,2546420,111944,52133,7307493594,6942144728,100,100,100,100,0.36,0.48,0.04,0.04
-13665,36,045,36045,567,234,17825547,17825547,882,440,112813252,112287419,116229,57966,4810181094,3285632368,64.29,53.18,15.8,15.87,0.49,0.4,0.37,0.54
-13665,36,049,36049,315,206,94987705,94461872,882,440,112813252,112287419,27087,15112,3340985008,3301404174,35.71,46.82,84.2,84.13,1.16,1.36,2.84,2.86
-13666,36,089,36089,266,184,110208839,101294633,266,184,110208839,101294633,111944,52133,7307493594,6942144728,100,100,100,100,0.24,0.35,1.51,1.46
-13667,36,089,36089,3181,1404,129546819,128469111,3181,1404,129546819,128469111,111944,52133,7307493594,6942144728,100,100,100,100,2.84,2.69,1.77,1.85
-13668,36,089,36089,3329,1463,98343999,95191348,3329,1463,98343999,95191348,111944,52133,7307493594,6942144728,100,100,100,100,2.97,2.81,1.35,1.37
-13669,36,089,36089,16452,7202,269278392,264889919,16452,7202,269278392,264889919,111944,52133,7307493594,6942144728,100,100,100,100,14.7,13.81,3.68,3.82
-13670,36,089,36089,430,398,191090117,188239926,430,398,191090117,188239926,111944,52133,7307493594,6942144728,100,100,100,100,0.38,0.76,2.61,2.71
-13672,36,089,36089,602,675,327410543,322967505,602,675,327410543,322967505,111944,52133,7307493594,6942144728,100,100,100,100,0.54,1.29,4.48,4.65
-13673,36,045,36045,2249,934,90436912,90398991,2249,934,90436912,90398991,116229,57966,4810181094,3285632368,100,100,100,100,1.93,1.61,1.88,2.75
-13674,36,045,36045,126,54,1521519,1469719,126,54,1521519,1469719,116229,57966,4810181094,3285632368,100,100,100,100,0.11,0.09,0.03,0.04
-13675,36,045,36045,160,59,3158302,2727097,160,59,3158302,2727097,116229,57966,4810181094,3285632368,100,100,100,100,0.14,0.1,0.07,0.08
-13676,36,089,36089,16646,5879,416944599,413128662,16646,5879,416944599,413128662,111944,52133,7307493594,6942144728,100,100,100,100,14.87,11.28,5.71,5.95
-13677,36,089,36089,93,34,589109,508885,93,34,589109,508885,111944,52133,7307493594,6942144728,100,100,100,100,0.08,0.07,0.01,0.01
-13678,36,089,36089,211,107,2134554,2033861,211,107,2134554,2033861,111944,52133,7307493594,6942144728,100,100,100,100,0.19,0.21,0.03,0.03
-13679,36,045,36045,1701,1449,135364580,122616419,1853,1612,174873006,161820590,116229,57966,4810181094,3285632368,91.8,89.89,77.41,75.77,1.46,2.5,2.81,3.73
-13679,36,089,36089,152,163,39508426,39204171,1853,1612,174873006,161820590,111944,52133,7307493594,6942144728,8.2,10.11,22.59,24.23,0.14,0.31,0.54,0.56
-13680,36,089,36089,1244,505,91893585,91021450,1244,505,91893585,91021450,111944,52133,7307493594,6942144728,100,100,100,100,1.11,0.97,1.26,1.31
-13681,36,089,36089,897,369,88370892,87534640,897,369,88370892,87534640,111944,52133,7307493594,6942144728,100,100,100,100,0.8,0.71,1.21,1.26
-13682,36,045,36045,860,353,75674563,75557140,877,361,81303738,81186315,116229,57966,4810181094,3285632368,98.06,97.78,93.08,93.07,0.74,0.61,1.57,2.3
-13682,36,049,36049,17,8,5629175,5629175,877,361,81303738,81186315,27087,15112,3340985008,3301404174,1.94,2.22,6.92,6.93,0.06,0.05,0.17,0.17
-13684,36,089,36089,1131,737,412000614,408933727,1131,737,412000614,408933727,111944,52133,7307493594,6942144728,100,100,100,100,1.01,1.41,5.64,5.89
-13685,36,045,36045,2272,1548,58235113,52169184,2272,1548,58235113,52169184,116229,57966,4810181094,3285632368,100,100,100,100,1.95,2.67,1.21,1.59
-13687,36,089,36089,479,676,373476579,348136526,479,676,373476579,348136526,111944,52133,7307493594,6942144728,100,100,100,100,0.43,1.3,5.11,5.01
-13690,36,089,36089,846,561,135931380,133748779,846,561,135931380,133748779,111944,52133,7307493594,6942144728,100,100,100,100,0.76,1.08,1.86,1.93
-13691,36,045,36045,3176,1709,195798980,187061361,3176,1709,195798980,187061361,116229,57966,4810181094,3285632368,100,100,100,100,2.73,2.95,4.07,5.69
-13692,36,045,36045,27,299,706798,706798,27,299,706798,706798,116229,57966,4810181094,3285632368,100,100,100,100,0.02,0.52,0.01,0.02
-13693,36,045,36045,503,1117,54520403,50147109,503,1117,54520403,50147109,116229,57966,4810181094,3285632368,100,100,100,100,0.43,1.93,1.13,1.53
-13694,36,089,36089,1507,777,59240834,57885671,1507,777,59240834,57885671,111944,52133,7307493594,6942144728,100,100,100,100,1.35,1.49,0.81,0.83
-13695,36,089,36089,134,180,44896389,44032191,134,180,44896389,44032191,111944,52133,7307493594,6942144728,100,100,100,100,0.12,0.35,0.61,0.63
-13696,36,089,36089,87,49,4823562,4823562,87,49,4823562,4823562,111944,52133,7307493594,6942144728,100,100,100,100,0.08,0.09,0.07,0.07
-13697,36,089,36089,2281,993,170689739,169696612,2281,993,170689739,169696612,111944,52133,7307493594,6942144728,100,100,100,100,2.04,1.9,2.34,2.44
-13730,36,007,36007,98,89,21659213,21429896,2805,1475,128490232,126998136,200600,90563,1853174149,1827925580,3.49,6.03,16.86,16.87,0.05,0.1,1.17,1.17
-13730,36,017,36017,2707,1386,106831019,105568240,2805,1475,128490232,126998136,50477,24710,2327440864,2314279661,96.51,93.97,83.14,83.13,5.36,5.61,4.59,4.56
-13731,36,025,36025,1162,1287,240049522,232157250,1162,1287,240049522,232157250,47980,31222,3800668339,3735902531,100,100,100,100,2.42,4.12,6.32,6.21
-13732,36,107,36107,8153,3291,87437855,85342848,8153,3291,87437855,85342848,51125,22203,1354252809,1343172320,100,100,100,100,15.95,14.82,6.46,6.35
-13733,36,017,36017,4900,2371,213860729,212342007,5216,2552,236669015,234989100,50477,24710,2327440864,2314279661,93.94,92.91,90.36,90.36,9.71,9.6,9.19,9.18
-13733,36,025,36025,113,83,18564672,18500899,5216,2552,236669015,234989100,47980,31222,3800668339,3735902531,2.17,3.25,7.84,7.87,0.24,0.27,0.49,0.5
-13733,36,077,36077,203,98,4243614,4146194,5216,2552,236669015,234989100,62259,30777,2630785590,2594391877,3.89,3.84,1.79,1.76,0.33,0.32,0.16,0.16
-13734,36,107,36107,2287,952,95222978,93811937,2287,952,95222978,93811937,51125,22203,1354252809,1343172320,100,100,100,100,4.47,4.29,7.03,6.98
-13736,36,007,36007,50,25,5328937,5328937,2338,987,157212005,157116315,200600,90563,1853174149,1827925580,2.14,2.53,3.39,3.39,0.02,0.03,0.29,0.29
-13736,36,107,36107,1986,835,118581092,118543520,2338,987,157212005,157116315,51125,22203,1354252809,1343172320,84.94,84.6,75.43,75.45,3.88,3.76,8.76,8.83
-13736,36,109,36109,302,127,33301976,33243858,2338,987,157212005,157116315,101564,41674,1273129127,1229334487,12.92,12.87,21.18,21.16,0.3,0.3,2.62,2.7
-13739,36,025,36025,953,642,104490692,104293437,953,642,104490692,104293437,47980,31222,3800668339,3735902531,100,100,100,100,1.99,2.06,2.75,2.79
-13740,36,025,36025,554,507,102612643,102484359,554,507,102612643,102484359,47980,31222,3800668339,3735902531,100,100,100,100,1.15,1.62,2.7,2.74
-13743,36,107,36107,3806,1659,152338307,152074160,3806,1659,152338307,152074160,51125,22203,1354252809,1343172320,100,100,100,100,7.44,7.47,11.25,11.32
-13744,36,007,36007,1137,477,30019694,30009539,1137,477,30019694,30009539,200600,90563,1853174149,1827925580,100,100,100,100,0.57,0.53,1.62,1.64
-13746,36,007,36007,2135,934,53728560,52796002,2539,1132,73082947,71832143,200600,90563,1853174149,1827925580,84.09,82.51,73.52,73.5,1.06,1.03,2.9,2.89
-13746,36,017,36017,404,198,19354387,19036141,2539,1132,73082947,71832143,50477,24710,2327440864,2314279661,15.91,17.49,26.48,26.5,0.8,0.8,0.83,0.82
-13748,36,007,36007,3800,1657,35375922,34292998,3800,1657,35375922,34292998,200600,90563,1853174149,1827925580,100,100,100,100,1.89,1.83,1.91,1.88
-13750,36,025,36025,1092,640,70141961,69718236,1092,640,70141961,69718236,47980,31222,3800668339,3735902531,100,100,100,100,2.28,2.05,1.85,1.87
-13751,36,025,36025,189,84,5181129,5093557,189,84,5181129,5093557,47980,31222,3800668339,3735902531,100,100,100,100,0.39,0.27,0.14,0.14
-13752,36,025,36025,782,646,129297661,125667120,782,646,129297661,125667120,47980,31222,3800668339,3735902531,100,100,100,100,1.63,2.07,3.4,3.36
-13753,36,025,36025,5848,2272,244380583,242736845,5848,2272,244380583,242736845,47980,31222,3800668339,3735902531,100,100,100,100,12.19,7.28,6.43,6.5
-13754,36,007,36007,1847,1270,135312258,133908166,3310,2049,209972035,206157848,200600,90563,1853174149,1827925580,55.8,61.98,64.44,64.95,0.92,1.4,7.3,7.33
-13754,36,025,36025,1463,779,74659777,72249682,3310,2049,209972035,206157848,47980,31222,3800668339,3735902531,44.2,38.02,35.56,35.05,3.05,2.5,1.96,1.93
-13755,36,025,36025,1228,937,158632278,148927403,1228,937,158632278,148927403,47980,31222,3800668339,3735902531,100,100,100,100,2.56,3,4.17,3.99
-13756,36,025,36025,613,582,120495250,118825521,613,582,120495250,118825521,47980,31222,3800668339,3735902531,100,100,100,100,1.28,1.86,3.17,3.18
-13757,36,025,36025,1045,643,96568324,96343751,1045,643,96568324,96343751,47980,31222,3800668339,3735902531,100,100,100,100,2.18,2.06,2.54,2.58
-13760,36,007,36007,40751,19331,91515480,90622293,44264,20765,128546234,127378213,200600,90563,1853174149,1827925580,92.06,93.09,71.19,71.14,20.31,21.35,4.94,4.96
-13760,36,107,36107,3513,1434,37030754,36755920,44264,20765,128546234,127378213,51125,22203,1354252809,1343172320,7.94,6.91,28.81,28.86,6.87,6.46,2.73,2.74
-13774,36,025,36025,201,131,7752703,7366066,201,131,7752703,7366066,47980,31222,3800668339,3735902531,100,100,100,100,0.42,0.42,0.2,0.2
-13775,36,025,36025,1631,983,138430414,137491825,1631,983,138430414,137491825,47980,31222,3800668339,3735902531,100,100,100,100,3.4,3.15,3.64,3.68
-13776,36,077,36077,513,274,14728496,14726344,513,274,14728496,14726344,62259,30777,2630785590,2594391877,100,100,100,100,0.82,0.89,0.56,0.57
-13777,36,007,36007,727,299,15589127,15589127,727,299,15589127,15589127,200600,90563,1853174149,1827925580,100,100,100,100,0.36,0.33,0.84,0.85
-13778,36,007,36007,67,40,9285872,9285872,5948,2818,252198918,250894158,200600,90563,1853174149,1827925580,1.13,1.42,3.68,3.7,0.03,0.04,0.5,0.51
-13778,36,017,36017,5881,2778,242913046,241608286,5948,2818,252198918,250894158,50477,24710,2327440864,2314279661,98.87,98.58,96.32,96.3,11.65,11.24,10.44,10.44
-13780,36,017,36017,1045,560,57982394,57370528,1045,560,57982394,57370528,50477,24710,2327440864,2314279661,100,100,100,100,2.07,2.27,2.49,2.48
-13782,36,025,36025,755,566,95319250,95072285,755,566,95319250,95072285,47980,31222,3800668339,3735902531,100,100,100,100,1.57,1.81,2.51,2.54
-13783,36,025,36025,2670,2113,309065003,295976803,2670,2113,309065003,295976803,47980,31222,3800668339,3735902531,100,100,100,100,5.56,6.77,8.13,7.92
-13784,36,023,36023,172,79,1211396,1211396,172,79,1211396,1211396,49336,20577,1298926870,1291782573,100,100,100,100,0.35,0.38,0.09,0.09
-13786,36,025,36025,464,339,40387368,40161145,464,339,40387368,40161145,47980,31222,3800668339,3735902531,100,100,100,100,0.97,1.09,1.06,1.08
-13787,36,007,36007,2983,1324,112223773,111128918,3629,1642,166029364,164825142,200600,90563,1853174149,1827925580,82.2,80.63,67.59,67.42,1.49,1.46,6.06,6.08
-13787,36,017,36017,646,318,53805591,53696224,3629,1642,166029364,164825142,50477,24710,2327440864,2314279661,17.8,19.37,32.41,32.58,1.28,1.29,2.31,2.32
-13788,36,025,36025,991,656,91612371,91475557,991,656,91612371,91475557,47980,31222,3800668339,3735902531,100,100,100,100,2.07,2.1,2.41,2.45
-13790,36,007,36007,19104,9152,75748988,75014148,19104,9152,75748988,75014148,200600,90563,1853174149,1827925580,100,100,100,100,9.52,10.11,4.09,4.1
-13794,36,007,36007,105,47,1858219,1858219,105,47,1858219,1858219,200600,90563,1853174149,1827925580,100,100,100,100,0.05,0.05,0.1,0.1
-13795,36,007,36007,3800,1618,53616573,52719091,3800,1618,53616573,52719091,200600,90563,1853174149,1827925580,100,100,100,100,1.89,1.79,2.89,2.88
-13796,36,077,36077,1236,635,58197393,57779057,1236,635,58197393,57779057,62259,30777,2630785590,2594391877,100,100,100,100,1.99,2.06,2.21,2.23
-13797,36,007,36007,2250,919,86521867,86238872,2250,919,86521867,86238872,200600,90563,1853174149,1827925580,100,100,100,100,1.12,1.01,4.67,4.72
-13801,36,017,36017,1398,977,178896208,177555383,1398,977,178896208,177555383,50477,24710,2327440864,2314279661,100,100,100,100,2.77,3.95,7.69,7.67
-13802,36,007,36007,718,284,26098728,26042703,718,284,26098728,26042703,200600,90563,1853174149,1827925580,100,100,100,100,0.36,0.31,1.41,1.42
-13803,36,007,36007,338,146,22889282,22868305,3975,1690,233100097,232334083,200600,90563,1853174149,1827925580,8.5,8.64,9.82,9.84,0.17,0.16,1.24,1.25
-13803,36,023,36023,3637,1544,210210815,209465778,3975,1690,233100097,232334083,49336,20577,1298926870,1291782573,91.5,91.36,90.18,90.16,7.37,7.5,16.18,16.22
-13804,36,025,36025,391,221,39455040,39369327,391,221,39455040,39369327,47980,31222,3800668339,3735902531,100,100,100,100,0.81,0.71,1.04,1.05
-13806,36,025,36025,205,111,8027306,8016591,205,111,8027306,8016591,47980,31222,3800668339,3735902531,100,100,100,100,0.43,0.36,0.21,0.21
-13807,36,077,36077,1199,700,62661054,61664782,1199,700,62661054,61664782,62259,30777,2630785590,2594391877,100,100,100,100,1.93,2.27,2.38,2.38
-13808,36,077,36077,1771,917,95481759,95308754,1771,917,95481759,95308754,62259,30777,2630785590,2594391877,100,100,100,100,2.84,2.98,3.63,3.67
-13809,36,017,36017,999,500,41996508,41996508,1517,761,77896815,77896815,50477,24710,2327440864,2314279661,65.85,65.7,53.91,53.91,1.98,2.02,1.8,1.81
-13809,36,077,36077,518,261,35900307,35900307,1517,761,77896815,77896815,62259,30777,2630785590,2594391877,34.15,34.3,46.09,46.09,0.83,0.85,1.36,1.38
-13810,36,077,36077,1149,661,104146925,103672056,1149,661,104146925,103672056,62259,30777,2630785590,2594391877,100,100,100,100,1.85,2.15,3.96,4
-13811,36,007,36007,308,121,13414052,13414052,4354,1859,164586414,164294878,200600,90563,1853174149,1827925580,7.07,6.51,8.15,8.16,0.15,0.13,0.72,0.73
-13811,36,107,36107,4046,1738,151172362,150880826,4354,1859,164586414,164294878,51125,22203,1354252809,1343172320,92.93,93.49,91.85,91.84,7.91,7.83,11.16,11.23
-13812,36,107,36107,2348,1011,84198770,81768276,2348,1011,84198770,81768276,51125,22203,1354252809,1343172320,100,100,100,100,4.59,4.55,6.22,6.09
-13813,36,007,36007,812,457,66570912,65427977,977,529,73870022,72147918,200600,90563,1853174149,1827925580,83.11,86.39,90.12,90.69,0.4,0.5,3.59,3.58
-13813,36,017,36017,165,72,7299110,6719941,977,529,73870022,72147918,50477,24710,2327440864,2314279661,16.89,13.61,9.88,9.31,0.33,0.29,0.31,0.29
-13815,36,017,36017,13999,6554,279299419,277767213,13999,6554,279299419,277767213,50477,24710,2327440864,2314279661,100,100,100,100,27.73,26.52,12,12
-13820,36,025,36025,1683,913,77772144,77349756,22455,8840,279057195,277908485,47980,31222,3800668339,3735902531,7.49,10.33,27.87,27.83,3.51,2.92,2.05,2.07
-13820,36,077,36077,20772,7927,201285051,200558729,22455,8840,279057195,277908485,62259,30777,2630785590,2594391877,92.51,89.67,72.13,72.17,33.36,25.76,7.65,7.73
-13825,36,025,36025,78,45,3041346,2894199,3442,1673,146858080,146447428,47980,31222,3800668339,3735902531,2.27,2.69,2.07,1.98,0.16,0.14,0.08,0.08
-13825,36,077,36077,3364,1628,143816734,143553229,3442,1673,146858080,146447428,62259,30777,2630785590,2594391877,97.73,97.31,97.93,98.02,5.4,5.29,5.47,5.53
-13826,36,007,36007,58,49,2804890,2170183,58,49,2804890,2170183,200600,90563,1853174149,1827925580,100,100,100,100,0.03,0.05,0.15,0.12
-13827,36,107,36107,11759,5279,239361180,237014399,11759,5279,239361180,237014399,51125,22203,1354252809,1343172320,100,100,100,100,23,23.78,17.67,17.65
-13830,36,017,36017,5042,2510,288214944,286158055,5042,2510,288214944,286158055,50477,24710,2327440864,2314279661,100,100,100,100,9.99,10.16,12.38,12.36
-13832,36,017,36017,709,342,71941281,71832148,709,342,71941281,71832148,50477,24710,2327440864,2314279661,100,100,100,100,1.4,1.38,3.09,3.1
-13833,36,007,36007,4255,1797,92939033,92550433,4255,1797,92939033,92550433,200600,90563,1853174149,1827925580,100,100,100,100,2.12,1.98,5.02,5.06
-13834,36,077,36077,118,68,1007296,900860,118,68,1007296,900860,62259,30777,2630785590,2594391877,100,100,100,100,0.19,0.22,0.04,0.03
-13835,36,007,36007,402,189,27195765,27176373,1511,715,109428048,109334947,200600,90563,1853174149,1827925580,26.6,26.43,24.85,24.86,0.2,0.21,1.47,1.49
-13835,36,023,36023,328,139,17101455,17065442,1511,715,109428048,109334947,49336,20577,1298926870,1291782573,21.71,19.44,15.63,15.61,0.66,0.68,1.32,1.32
-13835,36,107,36107,781,387,65130828,65093132,1511,715,109428048,109334947,51125,22203,1354252809,1343172320,51.69,54.13,59.52,59.54,1.53,1.74,4.81,4.85
-13838,36,025,36025,4290,2092,25946070,25691720,4409,2153,26995830,26687076,47980,31222,3800668339,3735902531,97.3,97.17,96.11,96.27,8.94,6.7,0.68,0.69
-13838,36,077,36077,119,61,1049760,995356,4409,2153,26995830,26687076,62259,30777,2630785590,2594391877,2.7,2.83,3.89,3.73,0.19,0.2,0.04,0.04
-13839,36,025,36025,1405,855,103363262,102962117,1405,855,103363262,102962117,47980,31222,3800668339,3735902531,100,100,100,100,2.93,2.74,2.72,2.76
-13841,36,017,36017,467,268,25864694,24939909,529,316,31986066,30857994,50477,24710,2327440864,2314279661,88.28,84.81,80.86,80.82,0.93,1.08,1.11,1.08
-13841,36,023,36023,62,48,6121372,5918085,529,316,31986066,30857994,49336,20577,1298926870,1291782573,11.72,15.19,19.14,19.18,0.13,0.23,0.47,0.46
-13842,36,025,36025,695,308,32685749,32351002,695,308,32685749,32351002,47980,31222,3800668339,3735902531,100,100,100,100,1.45,0.99,0.86,0.87
-13843,36,017,36017,1017,506,60494161,60482869,1888,992,141140789,140937101,50477,24710,2327440864,2314279661,53.87,51.01,42.86,42.91,2.01,2.05,2.6,2.61
-13843,36,077,36077,871,486,80646628,80454232,1888,992,141140789,140937101,62259,30777,2630785590,2594391877,46.13,48.99,57.14,57.09,1.4,1.58,3.07,3.1
-13844,36,017,36017,724,368,62242350,62135980,724,368,62242350,62135980,50477,24710,2327440864,2314279661,100,100,100,100,1.43,1.49,2.67,2.68
-13845,36,107,36107,83,39,1013630,1005039,83,39,1013630,1005039,51125,22203,1354252809,1343172320,100,100,100,100,0.16,0.18,0.07,0.07
-13846,36,025,36025,305,167,21145472,21057938,305,167,21145472,21057938,47980,31222,3800668339,3735902531,100,100,100,100,0.64,0.53,0.56,0.56
-13847,36,025,36025,67,43,8501196,8442092,67,43,8501196,8442092,47980,31222,3800668339,3735902531,100,100,100,100,0.14,0.14,0.22,0.23
-13849,36,025,36025,947,569,71436309,70637925,4551,2372,173180583,171527403,47980,31222,3800668339,3735902531,20.81,23.99,41.25,41.18,1.97,1.82,1.88,1.89
-13849,36,077,36077,3604,1803,101744274,100889478,4551,2372,173180583,171527403,62259,30777,2630785590,2594391877,79.19,76.01,58.75,58.82,5.79,5.86,3.87,3.89
-13850,36,007,36007,22004,9479,134680792,132469003,22004,9479,134680792,132469003,200600,90563,1853174149,1827925580,100,100,100,100,10.97,10.47,7.27,7.25
-13856,36,025,36025,6596,3976,491359397,479386472,6596,3976,491359397,479386472,47980,31222,3800668339,3735902531,100,100,100,100,13.75,12.73,12.93,12.83
-13859,36,077,36077,182,83,1321044,1242630,182,83,1321044,1242630,62259,30777,2630785590,2594391877,100,100,100,100,0.29,0.27,0.05,0.05
-13860,36,025,36025,94,44,2376105,2371876,94,44,2376105,2371876,47980,31222,3800668339,3735902531,100,100,100,100,0.2,0.14,0.06,0.06
-13861,36,077,36077,432,187,11464961,11420740,432,187,11464961,11420740,62259,30777,2630785590,2594391877,100,100,100,100,0.69,0.61,0.44,0.44
-13862,36,007,36007,4162,1767,150750536,145149188,4189,1775,151988189,146342050,200600,90563,1853174149,1827925580,99.36,99.55,99.19,99.18,2.07,1.95,8.13,7.94
-13862,36,023,36023,27,8,1237653,1192862,4189,1775,151988189,146342050,49336,20577,1298926870,1291782573,0.64,0.45,0.81,0.82,0.05,0.04,0.1,0.09
-13863,36,023,36023,688,366,39822834,39360404,688,366,39822834,39360404,49336,20577,1298926870,1291782573,100,100,100,100,1.39,1.78,3.07,3.05
-13864,36,107,36107,844,414,52723161,52723161,1149,560,69038856,69024219,51125,22203,1354252809,1343172320,73.46,73.93,76.37,76.38,1.65,1.86,3.89,3.93
-13864,36,109,36109,305,146,16315695,16301058,1149,560,69038856,69024219,101564,41674,1273129127,1229334487,26.54,26.07,23.63,23.62,0.3,0.35,1.28,1.33
-13865,36,007,36007,6371,3070,288980252,285731616,6371,3070,288980252,285731616,200600,90563,1853174149,1827925580,100,100,100,100,3.18,3.39,15.59,15.63
-13901,36,007,36007,19773,9685,62362471,60140090,19773,9685,62362471,60140090,200600,90563,1853174149,1827925580,100,100,100,100,9.86,10.69,3.37,3.29
-13902,36,007,36007,6177,0,1844246,1844246,6177,0,1844246,1844246,200600,90563,1853174149,1827925580,100,0,100,100,3.08,0,0.1,0.1
-13903,36,007,36007,18763,8613,103828881,102581051,18763,8613,103828881,102581051,200600,90563,1853174149,1827925580,100,100,100,100,9.35,9.51,5.6,5.61
-13904,36,007,36007,9579,4256,60364977,60087700,9579,4256,60364977,60087700,200600,90563,1853174149,1827925580,100,100,100,100,4.78,4.7,3.26,3.29
-13905,36,007,36007,28026,13468,70664849,70050582,28026,13468,70664849,70050582,200600,90563,1853174149,1827925580,100,100,100,100,13.97,14.87,3.81,3.83
-14001,36,029,36029,8480,3838,133165787,132746710,9464,4254,171158977,170739900,919040,419974,3177537257,2700563452,89.6,90.22,77.8,77.75,0.92,0.91,4.19,4.92
-14001,36,037,36037,394,176,12734699,12734699,9464,4254,171158977,170739900,60079,25589,1282840237,1276697637,4.16,4.14,7.44,7.46,0.66,0.69,0.99,1
-14001,36,063,36063,590,240,25258491,25258491,9464,4254,171158977,170739900,216469,99120,2951730329,1352903595,6.23,5.64,14.76,14.79,0.27,0.24,0.86,1.87
-14004,36,029,36029,11987,3973,102915623,102396893,12704,4290,124964021,124089792,919040,419974,3177537257,2700563452,94.36,92.61,82.36,82.52,1.3,0.95,3.24,3.79
-14004,36,037,36037,147,60,5533779,5484388,12704,4290,124964021,124089792,60079,25589,1282840237,1276697637,1.16,1.4,4.43,4.42,0.24,0.23,0.43,0.43
-14004,36,121,36121,570,257,16514619,16208511,12704,4290,124964021,124089792,42155,17970,1544377390,1535205959,4.49,5.99,13.22,13.06,1.35,1.43,1.07,1.06
-14005,36,037,36037,1986,760,86843465,86567899,1986,760,86843465,86567899,60079,25589,1282840237,1276697637,100,100,100,100,3.31,2.97,6.77,6.78
-14006,36,029,36029,9858,4920,68435681,67000641,9858,4920,68435681,67000641,919040,419974,3177537257,2700563452,100,100,100,100,1.07,1.17,2.15,2.48
-14008,36,063,36063,1467,581,65551614,63330285,1467,581,65551614,63330285,216469,99120,2951730329,1352903595,100,100,100,100,0.68,0.59,2.22,4.68
-14009,36,009,36009,614,297,21851021,21731542,5672,2757,192524464,191904437,80317,41111,3425222451,3388612085,10.83,10.77,11.35,11.32,0.76,0.72,0.64,0.64
-14009,36,121,36121,5058,2460,170673443,170172895,5672,2757,192524464,191904437,42155,17970,1544377390,1535205959,89.17,89.23,88.65,88.68,12,13.69,11.05,11.08
-14011,36,037,36037,660,275,16601228,16582099,9822,2633,173268025,173021991,60079,25589,1282840237,1276697637,6.72,10.44,9.58,9.58,1.1,1.07,1.29,1.3
-14011,36,121,36121,9162,2358,156666797,156439892,9822,2633,173268025,173021991,42155,17970,1544377390,1535205959,93.28,89.56,90.42,90.42,21.73,13.12,10.14,10.19
-14012,36,063,36063,2362,1036,86530948,83324961,2362,1036,86530948,83324961,216469,99120,2951730329,1352903595,100,100,100,100,1.09,1.05,2.93,6.16
-14013,36,029,36029,27,7,2188405,2188405,1751,723,105831547,104885665,919040,419974,3177537257,2700563452,1.54,0.97,2.07,2.09,0,0,0.07,0.08
-14013,36,037,36037,1724,716,103643142,102697260,1751,723,105831547,104885665,60079,25589,1282840237,1276697637,98.46,99.03,97.93,97.91,2.87,2.8,8.08,8.04
-14020,36,037,36037,23306,10303,179922023,178981326,23306,10303,179922023,178981326,60079,25589,1282840237,1276697637,100,100,100,100,38.79,40.26,14.03,14.02
-14024,36,003,36003,51,41,8845022,8763364,1688,807,164785311,163629948,48946,26140,2679048325,2665894548,3.02,5.08,5.37,5.36,0.1,0.16,0.33,0.33
-14024,36,121,36121,1637,766,155940289,154866584,1688,807,164785311,163629948,42155,17970,1544377390,1535205959,96.98,94.92,94.63,94.64,3.88,4.26,10.1,10.09
-14025,36,029,36029,3039,1275,57843049,57843049,3039,1275,57843049,57843049,919040,419974,3177537257,2700563452,100,100,100,100,0.33,0.3,1.82,2.14
-14026,36,029,36029,674,292,1949845,1949845,674,292,1949845,1949845,919040,419974,3177537257,2700563452,100,100,100,100,0.07,0.07,0.06,0.07
-14028,36,063,36063,1595,751,36385010,35059747,1595,751,36385010,35059747,216469,99120,2951730329,1352903595,100,100,100,100,0.74,0.76,1.23,2.59
-14030,36,009,36009,292,120,3998231,3998231,1807,775,52010642,51451977,80317,41111,3425222451,3388612085,16.16,15.48,7.69,7.77,0.36,0.29,0.12,0.12
-14030,36,029,36029,1491,646,47647553,47088888,1807,775,52010642,51451977,919040,419974,3177537257,2700563452,82.51,83.35,91.61,91.52,0.16,0.15,1.5,1.74
-14030,36,121,36121,24,9,364858,364858,1807,775,52010642,51451977,42155,17970,1544377390,1535205959,1.33,1.16,0.7,0.71,0.06,0.05,0.02,0.02
-14031,36,029,36029,9392,3854,49085708,48489564,9392,3854,49085708,48489564,919040,419974,3177537257,2700563452,100,100,100,100,1.02,0.92,1.54,1.8
-14032,36,029,36029,7989,2783,60102569,60102569,7989,2783,60102569,60102569,919040,419974,3177537257,2700563452,100,100,100,100,0.87,0.66,1.89,2.23
-14033,36,029,36029,2219,943,44818356,44771841,2219,943,44818356,44771841,919040,419974,3177537257,2700563452,100,100,100,100,0.24,0.22,1.41,1.66
-14034,36,029,36029,2742,793,66588749,66565427,2742,793,66588749,66565427,919040,419974,3177537257,2700563452,100,100,100,100,0.3,0.19,2.1,2.46
-14035,36,029,36029,125,67,591693,591693,125,67,591693,591693,919040,419974,3177537257,2700563452,100,100,100,100,0.01,0.02,0.02,0.02
-14036,36,037,36037,5201,2201,140804102,140308108,5201,2201,140804102,140308108,60079,25589,1282840237,1276697637,100,100,100,100,8.66,8.6,10.98,10.99
-14037,36,029,36029,158,62,5193866,5173979,1166,479,44845884,44825997,919040,419974,3177537257,2700563452,13.55,12.94,11.58,11.54,0.02,0.01,0.16,0.19
-14037,36,121,36121,1008,417,39652018,39652018,1166,479,44845884,44825997,42155,17970,1544377390,1535205959,86.45,87.06,88.42,88.46,2.39,2.32,2.57,2.58
-14039,36,121,36121,101,52,4838841,4838841,101,52,4838841,4838841,42155,17970,1544377390,1535205959,100,100,100,100,0.24,0.29,0.31,0.32
-14040,36,037,36037,1858,764,62721349,62457681,2217,907,76192298,75697863,60079,25589,1282840237,1276697637,83.81,84.23,82.32,82.51,3.09,2.99,4.89,4.89
-14040,36,121,36121,359,143,13470949,13240182,2217,907,76192298,75697863,42155,17970,1544377390,1535205959,16.19,15.77,17.68,17.49,0.85,0.8,0.87,0.86
-14041,36,009,36009,237,110,6004925,5888815,237,110,6004925,5888815,80317,41111,3425222451,3388612085,100,100,100,100,0.3,0.27,0.18,0.17
-14042,36,009,36009,3969,1945,118855391,118221280,3969,1945,118855391,118221280,80317,41111,3425222451,3388612085,100,100,100,100,4.94,4.73,3.47,3.49
-14043,36,029,36029,24742,11475,22510684,22510684,24742,11475,22510684,22510684,919040,419974,3177537257,2700563452,100,100,100,100,2.69,2.73,0.71,0.83
-14047,36,029,36029,6440,2757,36616787,34025341,6440,2757,36616787,34025341,919040,419974,3177537257,2700563452,100,100,100,100,0.7,0.66,1.15,1.26
-14048,36,013,36013,15072,7365,79307913,60355641,15072,7365,79307913,60355641,134905,66920,3885457129,2745973829,100,100,100,100,11.17,11.01,2.04,2.2
-14051,36,029,36029,19533,7476,42491577,42310745,19533,7476,42491577,42310745,919040,419974,3177537257,2700563452,100,100,100,100,2.13,1.78,1.34,1.57
-14052,36,029,36029,17329,7271,160705242,160499167,17329,7271,160705242,160499167,919040,419974,3177537257,2700563452,100,100,100,100,1.89,1.73,5.06,5.94
-14054,36,037,36037,1319,531,63170052,63107894,1344,539,64443933,64381775,60079,25589,1282840237,1276697637,98.14,98.52,98.02,98.02,2.2,2.08,4.92,4.94
-14054,36,121,36121,25,8,1273881,1273881,1344,539,64443933,64381775,42155,17970,1544377390,1535205959,1.86,1.48,1.98,1.98,0.06,0.04,0.08,0.08
-14055,36,029,36029,1405,609,83840766,83752175,1405,609,83840766,83752175,919040,419974,3177537257,2700563452,100,100,100,100,0.15,0.15,2.64,3.1
-14057,36,029,36029,8116,3296,124919264,124745885,8116,3296,124919264,124745885,919040,419974,3177537257,2700563452,100,100,100,100,0.88,0.78,3.93,4.62
-14058,36,037,36037,2194,853,84558189,84483537,2285,899,103278686,103204034,60079,25589,1282840237,1276697637,96.02,94.88,81.87,81.86,3.65,3.33,6.59,6.62
-14058,36,073,36073,91,46,18720497,18720497,2285,899,103278686,103204034,42883,18431,2117113285,1013357365,3.98,5.12,18.13,18.14,0.21,0.25,0.88,1.85
-14059,36,029,36029,8933,3716,69758966,69748676,8933,3716,69758966,69748676,919040,419974,3177537257,2700563452,100,100,100,100,0.97,0.88,2.2,2.58
-14060,36,003,36003,144,91,25179596,25171540,443,252,46332900,45947326,48946,26140,2679048325,2665894548,32.51,36.11,54.34,54.78,0.29,0.35,0.94,0.94
-14060,36,009,36009,299,161,21153304,20775786,443,252,46332900,45947326,80317,41111,3425222451,3388612085,67.49,63.89,45.66,45.22,0.37,0.39,0.62,0.61
-14061,36,029,36029,349,150,2481142,2481142,349,150,2481142,2481142,919040,419974,3177537257,2700563452,100,100,100,100,0.04,0.04,0.08,0.09
-14062,36,013,36013,3329,1547,188157596,187365718,3329,1547,188157596,187365718,134905,66920,3885457129,2745973829,100,100,100,100,2.47,2.31,4.84,6.82
-14063,36,013,36013,14870,5761,131378046,130587982,14870,5761,131378046,130587982,134905,66920,3885457129,2745973829,100,100,100,100,11.02,8.61,3.38,4.76
-14065,36,003,36003,422,187,41071350,41033970,1896,830,96876512,96586200,48946,26140,2679048325,2665894548,22.26,22.53,42.4,42.48,0.86,0.72,1.53,1.54
-14065,36,009,36009,1474,643,55805162,55552230,1896,830,96876512,96586200,80317,41111,3425222451,3388612085,77.74,77.47,57.6,57.52,1.84,1.56,1.63,1.64
-14066,36,121,36121,1318,617,105025528,104623601,1318,617,105025528,104623601,42155,17970,1544377390,1535205959,100,100,100,100,3.13,3.43,6.8,6.81
-14067,36,063,36063,5040,2018,128480169,128203664,5040,2018,128480169,128203664,216469,99120,2951730329,1352903595,100,100,100,100,2.33,2.04,4.35,9.48
-14068,36,029,36029,7150,2991,8960289,8960289,7150,2991,8960289,8960289,919040,419974,3177537257,2700563452,100,100,100,100,0.78,0.71,0.28,0.33
-14069,36,029,36029,844,418,22085866,22054558,844,418,22085866,22054558,919040,419974,3177537257,2700563452,100,100,100,100,0.09,0.1,0.7,0.82
-14070,36,009,36009,2914,1290,78113607,77839836,6732,2350,133183594,132370200,80317,41111,3425222451,3388612085,43.29,54.89,58.65,58.8,3.63,3.14,2.28,2.3
-14070,36,029,36029,3818,1060,55069987,54530364,6732,2350,133183594,132370200,919040,419974,3177537257,2700563452,56.71,45.11,41.35,41.2,0.42,0.25,1.73,2.02
-14072,36,029,36029,20374,8273,73430214,73228020,20374,8273,73430214,73228020,919040,419974,3177537257,2700563452,100,100,100,100,2.22,1.97,2.31,2.71
-14075,36,029,36029,41937,18280,103308264,102358741,41937,18280,103308264,102358741,919040,419974,3177537257,2700563452,100,100,100,100,4.56,4.35,3.25,3.79
-14080,36,029,36029,4330,1870,137110446,136958147,4330,1870,137110446,136958147,919040,419974,3177537257,2700563452,100,100,100,100,0.47,0.45,4.31,5.07
-14081,36,009,36009,67,35,3624670,3624670,3095,1566,93433206,91088217,80317,41111,3425222451,3388612085,2.16,2.23,3.88,3.98,0.08,0.09,0.11,0.11
-14081,36,013,36013,993,624,21712626,20605108,3095,1566,93433206,91088217,134905,66920,3885457129,2745973829,32.08,39.85,23.24,22.62,0.74,0.93,0.56,0.75
-14081,36,029,36029,2035,907,68095910,66858439,3095,1566,93433206,91088217,919040,419974,3177537257,2700563452,65.75,57.92,72.88,73.4,0.22,0.22,2.14,2.48
-14082,36,121,36121,426,204,26004976,25716706,426,204,26004976,25716706,42155,17970,1544377390,1535205959,100,100,100,100,1.01,1.14,1.68,1.68
-14085,36,029,36029,7353,2658,18942772,18048173,7353,2658,18942772,18048173,919040,419974,3177537257,2700563452,100,100,100,100,0.8,0.63,0.6,0.67
-14086,36,029,36029,31847,12609,88358039,87734538,31847,12609,88358039,87734538,919040,419974,3177537257,2700563452,100,100,100,100,3.47,3,2.78,3.25
-14091,36,029,36029,1079,433,55087859,55066724,1079,433,55087859,55066724,919040,419974,3177537257,2700563452,100,100,100,100,0.12,0.1,1.73,2.04
-14092,36,063,36063,11086,5033,51061364,51046046,11086,5033,51061364,51046046,216469,99120,2951730329,1352903595,100,100,100,100,5.12,5.08,1.73,3.77
-14094,36,063,36063,50666,22387,316398606,315801617,50666,22387,316398606,315801617,216469,99120,2951730329,1352903595,100,100,100,100,23.41,22.59,10.72,23.34
-14098,36,073,36073,2958,1686,119284882,119284882,2958,1686,119284882,119284882,42883,18431,2117113285,1013357365,100,100,100,100,6.9,9.15,5.63,11.77
-14101,36,009,36009,1905,1110,111445236,109894823,1905,1110,111445236,109894823,80317,41111,3425222451,3388612085,100,100,100,100,2.37,2.7,3.25,3.24
-14102,36,029,36029,1281,484,9887484,9860812,1281,484,9887484,9860812,919040,419974,3177537257,2700563452,100,100,100,100,0.14,0.12,0.31,0.37
-14103,36,073,36073,11183,4808,208350116,207069032,11183,4808,208350116,207069032,42883,18431,2117113285,1013357365,100,100,100,100,26.08,26.09,9.84,20.43
-14105,36,037,36037,5,4,3637909,3620706,4566,1954,122693958,121985851,60079,25589,1282840237,1276697637,0.11,0.2,2.97,2.97,0.01,0.02,0.28,0.28
-14105,36,063,36063,4289,1829,94658461,94124218,4566,1954,122693958,121985851,216469,99120,2951730329,1352903595,93.93,93.6,77.15,77.16,1.98,1.85,3.21,6.96
-14105,36,073,36073,272,121,24397588,24240927,4566,1954,122693958,121985851,42883,18431,2117113285,1013357365,5.96,6.19,19.88,19.87,0.63,0.66,1.15,2.39
-14108,36,063,36063,5882,2374,70163129,70163129,5882,2374,70163129,70163129,216469,99120,2951730329,1352903595,100,100,100,100,2.72,2.4,2.38,5.19
-14109,36,063,36063,1117,1,1226540,1226540,1117,1,1226540,1226540,216469,99120,2951730329,1352903595,100,100,100,100,0.52,0,0.04,0.09
-14111,36,029,36029,3352,1449,93860157,93413117,3352,1449,93860157,93413117,919040,419974,3177537257,2700563452,100,100,100,100,0.36,0.35,2.95,3.46
-14112,36,029,36029,85,28,103462,103462,85,28,103462,103462,919040,419974,3177537257,2700563452,100,100,100,100,0.01,0.01,0,0
-14113,36,121,36121,703,313,44083422,44083112,703,313,44083422,44083112,42155,17970,1544377390,1535205959,100,100,100,100,1.67,1.74,2.85,2.87
-14120,36,063,36063,45100,20022,86136851,85216484,45100,20022,86136851,85216484,216469,99120,2951730329,1352903595,100,100,100,100,20.83,20.2,2.92,6.3
-14125,36,037,36037,3773,1506,91685020,89809750,3782,1510,92840952,90965682,60079,25589,1282840237,1276697637,99.76,99.74,98.75,98.73,6.28,5.89,7.15,7.03
-14125,36,073,36073,9,4,1155932,1155932,3782,1510,92840952,90965682,42883,18431,2117113285,1013357365,0.24,0.26,1.25,1.27,0.02,0.02,0.05,0.11
-14126,36,063,36063,588,383,2360042,1485339,588,383,2360042,1485339,216469,99120,2951730329,1352903595,100,100,100,100,0.27,0.39,0.08,0.11
-14127,36,029,36029,29961,12586,106733913,106528538,29961,12586,106733913,106528538,919040,419974,3177537257,2700563452,100,100,100,100,3.26,3,3.36,3.94
-14129,36,009,36009,1591,669,80823312,80023205,1591,669,80823312,80023205,80317,41111,3425222451,3388612085,100,100,100,100,1.98,1.63,2.36,2.36
-14130,36,121,36121,265,103,2820684,2820684,265,103,2820684,2820684,42155,17970,1544377390,1535205959,100,100,100,100,0.63,0.57,0.18,0.18
-14131,36,063,36063,5283,2259,111365679,109427574,5283,2259,111365679,109427574,216469,99120,2951730329,1352903595,100,100,100,100,2.44,2.28,3.77,8.09
-14132,36,063,36063,6218,2451,72723613,72723613,6218,2451,72723613,72723613,216469,99120,2951730329,1352903595,100,100,100,100,2.87,2.47,2.46,5.38
-14134,36,029,36029,104,45,2197743,2197743,104,45,2197743,2197743,919040,419974,3177537257,2700563452,100,100,100,100,0.01,0.01,0.07,0.08
-14135,36,013,36013,119,55,2675690,2675690,119,55,2675690,2675690,134905,66920,3885457129,2745973829,100,100,100,100,0.09,0.08,0.07,0.1
-14136,36,013,36013,5033,2375,70856237,59970495,5033,2375,70856237,59970495,134905,66920,3885457129,2745973829,100,100,100,100,3.73,3.55,1.82,2.18
-14138,36,009,36009,1471,621,76518980,75426310,2018,861,122587656,121376289,80317,41111,3425222451,3388612085,72.89,72.13,62.42,62.14,1.83,1.51,2.23,2.23
-14138,36,013,36013,547,240,46068676,45949979,2018,861,122587656,121376289,134905,66920,3885457129,2745973829,27.11,27.87,37.58,37.86,0.41,0.36,1.19,1.67
-14139,36,029,36029,2125,938,61878842,61796292,2125,938,61878842,61796292,919040,419974,3177537257,2700563452,100,100,100,100,0.23,0.22,1.95,2.29
-14141,36,009,36009,376,207,32079701,32042680,7728,3313,183019193,182626533,80317,41111,3425222451,3388612085,4.87,6.25,17.53,17.55,0.47,0.5,0.94,0.95
-14141,36,029,36029,7352,3106,150939492,150583853,7728,3313,183019193,182626533,919040,419974,3177537257,2700563452,95.13,93.75,82.47,82.45,0.8,0.74,4.75,5.58
-14143,36,037,36037,1214,546,37580970,37452769,1214,546,37580970,37452769,60079,25589,1282840237,1276697637,100,100,100,100,2.02,2.13,2.93,2.93
-14145,36,029,36029,48,18,3220469,3220469,1618,674,72928121,72864290,919040,419974,3177537257,2700563452,2.97,2.67,4.42,4.42,0.01,0,0.1,0.12
-14145,36,121,36121,1570,656,69707652,69643821,1618,674,72928121,72864290,42155,17970,1544377390,1535205959,97.03,97.33,95.58,95.58,3.72,3.65,4.51,4.54
-14150,36,029,36029,41676,19750,38872382,38695331,41676,19750,38872382,38695331,919040,419974,3177537257,2700563452,100,100,100,100,4.53,4.7,1.22,1.43
-14167,36,121,36121,1663,816,97571185,97561258,1663,816,97571185,97561258,42155,17970,1544377390,1535205959,100,100,100,100,3.94,4.54,6.32,6.35
-14168,36,009,36009,36,17,102648,102648,36,17,102648,102648,80317,41111,3425222451,3388612085,100,100,100,100,0.04,0.04,0,0
-14169,36,029,36029,151,71,798388,798388,151,71,798388,798388,919040,419974,3177537257,2700563452,100,100,100,100,0.02,0.02,0.03,0.03
-14170,36,029,36029,2286,974,32063454,31923358,2286,974,32063454,31923358,919040,419974,3177537257,2700563452,100,100,100,100,0.25,0.23,1.01,1.18
-14171,36,009,36009,2077,1029,132524014,132082514,2077,1029,132524014,132082514,80317,41111,3425222451,3388612085,100,100,100,100,2.59,2.5,3.87,3.9
-14172,36,063,36063,3200,1591,69117725,63789246,3200,1591,69117725,63789246,216469,99120,2951730329,1352903595,100,100,100,100,1.48,1.61,2.34,4.71
-14173,36,009,36009,396,193,1499234,1499234,396,193,1499234,1499234,80317,41111,3425222451,3388612085,100,100,100,100,0.49,0.47,0.04,0.04
-14174,36,063,36063,5794,2616,71771252,63268229,5794,2616,71771252,63268229,216469,99120,2951730329,1352903595,100,100,100,100,2.68,2.64,2.43,4.68
-14201,36,029,36029,11549,6991,2819734,2661751,11549,6991,2819734,2661751,919040,419974,3177537257,2700563452,100,100,100,100,1.26,1.66,0.09,0.1
-14202,36,029,36029,3911,2247,3150275,2150797,3911,2247,3150275,2150797,919040,419974,3177537257,2700563452,100,100,100,100,0.43,0.54,0.1,0.08
-14203,36,029,36029,1618,936,9848451,6829294,1618,936,9848451,6829294,919040,419974,3177537257,2700563452,100,100,100,100,0.18,0.22,0.31,0.25
-14204,36,029,36029,8691,5000,4651931,4651931,8691,5000,4651931,4651931,919040,419974,3177537257,2700563452,100,100,100,100,0.95,1.19,0.15,0.17
-14206,36,029,36029,20751,10885,12568939,12552705,20751,10885,12568939,12552705,919040,419974,3177537257,2700563452,100,100,100,100,2.26,2.59,0.4,0.46
-14207,36,029,36029,23552,11053,10160417,10110620,23552,11053,10160417,10110620,919040,419974,3177537257,2700563452,100,100,100,100,2.56,2.63,0.32,0.37
-14208,36,029,36029,11125,5594,3574753,3569130,11125,5594,3574753,3569130,919040,419974,3177537257,2700563452,100,100,100,100,1.21,1.33,0.11,0.13
-14209,36,029,36029,7926,4683,2366994,2366994,7926,4683,2366994,2366994,919040,419974,3177537257,2700563452,100,100,100,100,0.86,1.12,0.07,0.09
-14210,36,029,36029,14694,7328,8626126,8301518,14694,7328,8626126,8301518,919040,419974,3177537257,2700563452,100,100,100,100,1.6,1.74,0.27,0.31
-14211,36,029,36029,22611,12243,10482508,10464917,22611,12243,10482508,10464917,919040,419974,3177537257,2700563452,100,100,100,100,2.46,2.92,0.33,0.39
-14212,36,029,36029,10641,6614,4939280,4939280,10641,6614,4939280,4939280,919040,419974,3177537257,2700563452,100,100,100,100,1.16,1.57,0.16,0.18
-14213,36,029,36029,24465,11532,6151801,5855257,24465,11532,6151801,5855257,919040,419974,3177537257,2700563452,100,100,100,100,2.66,2.75,0.19,0.22
-14214,36,029,36029,19775,9142,7399335,7399335,19775,9142,7399335,7399335,919040,419974,3177537257,2700563452,100,100,100,100,2.15,2.18,0.23,0.27
-14215,36,029,36029,39999,18275,12743313,12743313,39999,18275,12743313,12743313,919040,419974,3177537257,2700563452,100,100,100,100,4.35,4.35,0.4,0.47
-14216,36,029,36029,22431,11740,7304697,7199114,22431,11740,7304697,7199114,919040,419974,3177537257,2700563452,100,100,100,100,2.44,2.8,0.23,0.27
-14217,36,029,36029,23480,11384,8318459,8318459,23480,11384,8318459,8318459,919040,419974,3177537257,2700563452,100,100,100,100,2.55,2.71,0.26,0.31
-14218,36,029,36029,19039,9443,22198841,21231675,19039,9443,22198841,21231675,919040,419974,3177537257,2700563452,100,100,100,100,2.07,2.25,0.7,0.79
-14219,36,029,36029,11536,5416,19069685,18213745,11536,5416,19069685,18213745,919040,419974,3177537257,2700563452,100,100,100,100,1.26,1.29,0.6,0.67
-14220,36,029,36029,24227,11117,10003460,9850778,24227,11117,10003460,9850778,919040,419974,3177537257,2700563452,100,100,100,100,2.64,2.65,0.31,0.36
-14221,36,029,36029,53555,23800,59618445,59550976,53555,23800,59618445,59550976,919040,419974,3177537257,2700563452,100,100,100,100,5.83,5.67,1.88,2.21
-14222,36,029,36029,14046,7950,3326180,3326180,14046,7950,3326180,3326180,919040,419974,3177537257,2700563452,100,100,100,100,1.53,1.89,0.1,0.12
-14223,36,029,36029,22665,10241,8889745,8889745,22665,10241,8889745,8889745,919040,419974,3177537257,2700563452,100,100,100,100,2.47,2.44,0.28,0.33
-14224,36,029,36029,39889,17752,52620560,52478122,39889,17752,52620560,52478122,919040,419974,3177537257,2700563452,100,100,100,100,4.34,4.23,1.66,1.94
-14225,36,029,36029,33385,16108,30737989,30632302,33385,16108,30737989,30632302,919040,419974,3177537257,2700563452,100,100,100,100,3.63,3.84,0.97,1.13
-14226,36,029,36029,29267,13007,17912924,17909095,29267,13007,17912924,17909095,919040,419974,3177537257,2700563452,100,100,100,100,3.18,3.1,0.56,0.66
-14227,36,029,36029,23426,11219,22414924,22374089,23426,11219,22414924,22374089,919040,419974,3177537257,2700563452,100,100,100,100,2.55,2.67,0.71,0.83
-14228,36,029,36029,20857,9121,41796437,41079503,20857,9121,41796437,41079503,919040,419974,3177537257,2700563452,100,100,100,100,2.27,2.17,1.32,1.52
-14261,36,029,36029,5713,2,3103871,3009917,5713,2,3103871,3009917,919040,419974,3177537257,2700563452,100,100,100,100,0.62,0,0.1,0.11
-14301,36,063,36063,12817,7396,4330451,4330451,12817,7396,4330451,4330451,216469,99120,2951730329,1352903595,100,100,100,100,5.92,7.46,0.15,0.32
-14302,36,063,36063,107,107,35992,35992,107,107,35992,35992,216469,99120,2951730329,1352903595,100,100,100,100,0.05,0.11,0,0
-14303,36,063,36063,5981,3599,6362273,6362273,5981,3599,6362273,6362273,216469,99120,2951730329,1352903595,100,100,100,100,2.76,3.63,0.22,0.47
-14304,36,063,36063,30389,14307,57462795,57462795,30389,14307,57462795,57462795,216469,99120,2951730329,1352903595,100,100,100,100,14.04,14.43,1.95,4.25
-14305,36,063,36063,16898,8139,21375663,21262901,16898,8139,21375663,21262901,216469,99120,2951730329,1352903595,100,100,100,100,7.81,8.21,0.72,1.57
-14411,36,073,36073,14491,5487,294287551,293400836,14491,5487,294287551,293400836,42883,18431,2117113285,1013357365,100,100,100,100,33.79,29.77,13.9,28.95
-14414,36,051,36051,7124,3086,100542025,100398854,7142,3093,101941694,101798523,65393,27123,1658263094,1636257346,99.75,99.77,98.63,98.63,10.89,11.38,6.06,6.14
-14414,36,055,36055,18,7,1399669,1399669,7142,3093,101941694,101798523,744344,320593,3539813130,1702154292,0.25,0.23,1.37,1.37,0,0,0.04,0.08
-14415,36,123,36123,132,56,3760955,3760955,132,56,3760955,3760955,25348,13491,973290509,875785717,100,100,100,100,0.52,0.42,0.39,0.43
-14416,36,037,36037,3619,1498,90093630,89853013,3817,1568,96672345,96431728,60079,25589,1282840237,1276697637,94.81,95.54,93.19,93.18,6.02,5.85,7.02,7.04
-14416,36,055,36055,198,70,6578715,6578715,3817,1568,96672345,96431728,744344,320593,3539813130,1702154292,5.19,4.46,6.81,6.82,0.03,0.02,0.19,0.39
-14418,36,101,36101,130,144,8180488,8172290,1325,966,96876234,96771723,98990,48875,3636558896,3601531651,9.81,14.91,8.44,8.44,0.13,0.29,0.22,0.23
-14418,36,123,36123,1195,822,88695746,88599433,1325,966,96876234,96771723,25348,13491,973290509,875785717,90.19,85.09,91.56,91.56,4.71,6.09,9.11,10.12
-14420,36,055,36055,19947,7367,155339570,154932863,20467,7612,157273986,156867279,744344,320593,3539813130,1702154292,97.46,96.78,98.77,98.77,2.68,2.3,4.39,9.1
-14420,36,073,36073,520,245,1934416,1934416,20467,7612,157273986,156867279,42883,18431,2117113285,1013357365,2.54,3.22,1.23,1.23,1.21,1.33,0.09,0.19
-14422,36,037,36037,2425,990,84859835,84638068,2468,1004,88330902,88109135,60079,25589,1282840237,1276697637,98.26,98.61,96.07,96.06,4.04,3.87,6.61,6.63
-14422,36,073,36073,43,14,3471067,3471067,2468,1004,88330902,88109135,42883,18431,2117113285,1013357365,1.74,1.39,3.93,3.94,0.1,0.08,0.16,0.34
-14423,36,051,36051,4799,2019,131383147,130733277,4799,2019,131383147,130733277,65393,27123,1658263094,1636257346,100,100,100,100,7.34,7.44,7.92,7.99
-14424,36,069,36069,27007,12972,329784878,329349192,27007,12972,329784878,329349192,107931,48193,1715935980,1668121832,100,100,100,100,25.02,26.92,19.22,19.74
-14425,36,069,36069,10717,4205,48376900,48376900,10717,4205,48376900,48376900,107931,48193,1715935980,1668121832,100,100,100,100,9.93,8.73,2.82,2.9
-14427,36,121,36121,1964,994,79538670,78231718,1964,994,79538670,78231718,42155,17970,1544377390,1535205959,100,100,100,100,4.66,5.53,5.15,5.1
-14428,36,055,36055,8096,3280,133361219,132436198,8096,3280,133361219,132436198,744344,320593,3539813130,1702154292,100,100,100,100,1.09,1.02,3.77,7.78
-14432,36,069,36069,5726,2358,100072291,100072291,5726,2358,100072291,100072291,107931,48193,1715935980,1668121832,100,100,100,100,5.31,4.89,5.83,6
-14433,36,099,36099,242,102,12640374,12640374,4629,1946,172209538,171381988,35251,16043,1011232311,838393327,5.23,5.24,7.34,7.38,0.69,0.64,1.25,1.51
-14433,36,117,36117,4387,1844,159569164,158741614,4629,1946,172209538,171381988,93772,41057,3582085074,1563902765,94.77,94.76,92.66,92.62,4.68,4.49,4.45,10.15
-14435,36,051,36051,2941,1598,94906351,94886821,2941,1598,94906351,94886821,65393,27123,1658263094,1636257346,100,100,100,100,4.5,5.89,5.72,5.8
-14437,36,051,36051,10591,4004,274052327,273980581,11415,4423,321561008,321418919,65393,27123,1658263094,1636257346,92.78,90.53,85.23,85.24,16.2,14.76,16.53,16.74
-14437,36,101,36101,824,419,47508681,47438338,11415,4423,321561008,321418919,98990,48875,3636558896,3601531651,7.22,9.47,14.77,14.76,0.83,0.86,1.31,1.32
-14441,36,123,36123,325,185,923085,908445,325,185,923085,908445,25348,13491,973290509,875785717,100,100,100,100,1.28,1.37,0.09,0.1
-14445,36,055,36055,8019,3687,4949946,4930012,8019,3687,4949946,4930012,744344,320593,3539813130,1702154292,100,100,100,100,1.08,1.15,0.14,0.29
-14450,36,055,36055,41082,17497,82836290,82063070,41104,17504,83210358,82437138,744344,320593,3539813130,1702154292,99.95,99.96,99.55,99.55,5.52,5.46,2.34,4.82
-14450,36,117,36117,22,7,374068,374068,41104,17504,83210358,82437138,93772,41057,3582085074,1563902765,0.05,0.04,0.45,0.45,0.02,0.02,0.01,0.02
-14454,36,051,36051,11073,3560,131164729,131114264,11073,3560,131164729,131114264,65393,27123,1658263094,1636257346,100,100,100,100,16.93,13.13,7.91,8.01
-14456,36,069,36069,18722,7993,156481800,156320066,20087,8724,202495062,202045213,107931,48193,1715935980,1668121832,93.2,91.62,77.28,77.37,17.35,16.59,9.12,9.37
-14456,36,099,36099,1305,705,43540442,43252327,20087,8724,202495062,202045213,35251,16043,1011232311,838393327,6.5,8.08,21.5,21.41,3.7,4.39,4.31,5.16
-14456,36,123,36123,60,26,2472820,2472820,20087,8724,202495062,202045213,25348,13491,973290509,875785717,0.3,0.3,1.22,1.22,0.24,0.19,0.25,0.28
-14462,36,051,36051,655,258,31032584,31032584,655,258,31032584,31032584,65393,27123,1658263094,1636257346,100,100,100,100,1,0.95,1.87,1.9
-14464,36,055,36055,7382,2947,77264380,75632171,7524,2997,81042813,79395771,744344,320593,3539813130,1702154292,98.11,98.33,95.34,95.26,0.99,0.92,2.18,4.44
-14464,36,073,36073,142,50,3778433,3763600,7524,2997,81042813,79395771,42883,18431,2117113285,1013357365,1.89,1.67,4.66,4.74,0.33,0.27,0.18,0.37
-14466,36,051,36051,751,299,16330090,16330090,1719,734,44610420,44610420,65393,27123,1658263094,1636257346,43.69,40.74,36.61,36.61,1.15,1.1,0.98,1
-14466,36,069,36069,968,435,28280330,28280330,1719,734,44610420,44610420,107931,48193,1715935980,1668121832,56.31,59.26,63.39,63.39,0.9,0.9,1.65,1.7
-14467,36,055,36055,9105,3855,28577457,27901531,9105,3855,28577457,27901531,744344,320593,3539813130,1702154292,100,100,100,100,1.22,1.2,0.81,1.64
-14468,36,055,36055,17813,7162,144937382,137466746,17813,7162,144937382,137466746,744344,320593,3539813130,1702154292,100,100,100,100,2.39,2.23,4.09,8.08
-14469,36,069,36069,6220,2636,171021549,170822984,6220,2636,171021549,170822984,107931,48193,1715935980,1668121832,100,100,100,100,5.76,5.47,9.97,10.24
-14470,36,055,36055,181,66,6550266,6550266,8016,3378,166147657,166045275,744344,320593,3539813130,1702154292,2.26,1.95,3.94,3.94,0.02,0.02,0.19,0.38
-14470,36,073,36073,7835,3312,159597391,159495009,8016,3378,166147657,166045275,42883,18431,2117113285,1013357365,97.74,98.05,96.06,96.06,18.27,17.97,7.54,15.74
-14471,36,051,36051,3,4,714229,714229,2672,1965,70268518,70268518,65393,27123,1658263094,1636257346,0.11,0.2,1.02,1.02,0,0.01,0.04,0.04
-14471,36,069,36069,2669,1961,69554289,69554289,2672,1965,70268518,70268518,107931,48193,1715935980,1668121832,99.89,99.8,98.98,98.98,2.47,4.07,4.05,4.17
-14472,36,051,36051,465,192,15307128,15286919,8598,3469,113976514,113216677,65393,27123,1658263094,1636257346,5.41,5.53,13.43,13.5,0.71,0.71,0.92,0.93
-14472,36,055,36055,7781,3132,94013934,93276143,8598,3469,113976514,113216677,744344,320593,3539813130,1702154292,90.5,90.29,82.49,82.39,1.05,0.98,2.66,5.48
-14472,36,069,36069,352,145,4655452,4653615,8598,3469,113976514,113216677,107931,48193,1715935980,1668121832,4.09,4.18,4.08,4.11,0.33,0.3,0.27,0.28
-14475,36,069,36069,234,92,3951645,3951645,234,92,3951645,3951645,107931,48193,1715935980,1668121832,100,100,100,100,0.22,0.19,0.23,0.24
-14476,36,055,36055,132,58,2553143,2553143,2288,974,64290597,64202239,744344,320593,3539813130,1702154292,5.77,5.95,3.97,3.98,0.02,0.02,0.07,0.15
-14476,36,073,36073,2156,916,61737454,61649096,2288,974,64290597,64202239,42883,18431,2117113285,1013357365,94.23,94.05,96.03,96.02,5.03,4.97,2.92,6.08
-14477,36,073,36073,1732,829,68103462,67798700,1732,829,68103462,67798700,42883,18431,2117113285,1013357365,100,100,100,100,4.04,4.5,3.22,6.69
-14478,36,123,36123,1595,703,30311215,30311215,1595,703,30311215,30311215,25348,13491,973290509,875785717,100,100,100,100,6.29,5.21,3.11,3.46
-14479,36,073,36073,275,111,3833266,3833266,275,111,3833266,3833266,42883,18431,2117113285,1013357365,100,100,100,100,0.64,0.6,0.18,0.38
-14480,36,051,36051,833,455,3393118,3351845,833,455,3393118,3351845,65393,27123,1658263094,1636257346,100,100,100,100,1.27,1.68,0.2,0.2
-14481,36,051,36051,1820,819,61560928,61560928,1820,819,61560928,61560928,65393,27123,1658263094,1636257346,100,100,100,100,2.78,3.02,3.71,3.76
-14482,36,037,36037,8119,3577,142363434,142036036,8275,3647,151865260,151537862,60079,25589,1282840237,1276697637,98.11,98.08,93.74,93.73,13.51,13.98,11.1,11.13
-14482,36,051,36051,116,56,7565661,7565661,8275,3647,151865260,151537862,65393,27123,1658263094,1636257346,1.4,1.54,4.98,4.99,0.18,0.21,0.46,0.46
-14482,36,055,36055,40,14,1936165,1936165,8275,3647,151865260,151537862,744344,320593,3539813130,1702154292,0.48,0.38,1.27,1.28,0.01,0,0.05,0.11
-14485,36,051,36051,4075,1701,79705556,79588373,4267,1792,91665243,91548060,65393,27123,1658263094,1636257346,95.5,94.92,86.95,86.94,6.23,6.27,4.81,4.86
-14485,36,069,36069,192,91,11959687,11959687,4267,1792,91665243,91548060,107931,48193,1715935980,1668121832,4.5,5.08,13.05,13.06,0.18,0.19,0.7,0.72
-14486,36,051,36051,308,128,14590487,14590487,308,128,14590487,14590487,65393,27123,1658263094,1636257346,100,100,100,100,0.47,0.47,0.88,0.89
-14487,36,051,36051,5663,2550,68661841,68661841,6025,2700,86513787,86513787,65393,27123,1658263094,1636257346,93.99,94.44,79.37,79.37,8.66,9.4,4.14,4.2
-14487,36,069,36069,362,150,17851946,17851946,6025,2700,86513787,86513787,107931,48193,1715935980,1668121832,6.01,5.56,20.63,20.63,0.34,0.31,1.04,1.07
-14489,36,069,36069,128,52,7797681,7797681,7192,3133,176311896,175222370,107931,48193,1715935980,1668121832,1.78,1.66,4.42,4.45,0.12,0.11,0.45,0.47
-14489,36,099,36099,60,27,5975065,5964822,7192,3133,176311896,175222370,35251,16043,1011232311,838393327,0.83,0.86,3.39,3.4,0.17,0.17,0.59,0.71
-14489,36,117,36117,7004,3054,162539150,161459867,7192,3133,176311896,175222370,93772,41057,3582085074,1563902765,97.39,97.48,92.19,92.15,7.47,7.44,4.54,10.32
-14502,36,055,36055,181,62,2601987,2598798,10691,4326,97154592,96611472,744344,320593,3539813130,1702154292,1.69,1.43,2.68,2.69,0.02,0.02,0.07,0.15
-14502,36,117,36117,10510,4264,94552605,94012674,10691,4326,97154592,96611472,93772,41057,3582085074,1563902765,98.31,98.57,97.32,97.31,11.21,10.39,2.64,6.01
-14504,36,069,36069,1701,771,2946897,2946897,1701,771,2946897,2946897,107931,48193,1715935980,1668121832,100,100,100,100,1.58,1.6,0.17,0.18
-14505,36,117,36117,5393,2164,102840193,102573457,5393,2164,102840193,102573457,93772,41057,3582085074,1563902765,100,100,100,100,5.75,5.27,2.87,6.56
-14506,36,055,36055,1325,505,7472907,7462231,1325,505,7472907,7462231,744344,320593,3539813130,1702154292,100,100,100,100,0.18,0.16,0.21,0.44
-14507,36,123,36123,1351,890,84853687,84757337,1351,890,84853687,84757337,25348,13491,973290509,875785717,100,100,100,100,5.33,6.6,8.72,9.68
-14510,36,051,36051,4895,2215,181372160,181085400,4895,2215,181372160,181085400,65393,27123,1658263094,1636257346,100,100,100,100,7.49,8.17,10.94,11.07
-14511,36,055,36055,497,230,6088530,5980947,497,230,6088530,5980947,744344,320593,3539813130,1702154292,100,100,100,100,0.07,0.07,0.17,0.35
-14512,36,069,36069,3577,1994,179594439,179594265,4721,2629,266150053,266149879,107931,48193,1715935980,1668121832,75.77,75.85,67.48,67.48,3.31,4.14,10.47,10.77
-14512,36,101,36101,265,135,13269363,13269363,4721,2629,266150053,266149879,98990,48875,3636558896,3601531651,5.61,5.14,4.99,4.99,0.27,0.28,0.36,0.37
-14512,36,123,36123,879,500,73286251,73286251,4721,2629,266150053,266149879,25348,13491,973290509,875785717,18.62,19.02,27.54,27.54,3.47,3.71,7.53,8.37
-14513,36,069,36069,325,145,8131576,8097789,13976,6073,122118667,121481099,107931,48193,1715935980,1668121832,2.33,2.39,6.66,6.67,0.3,0.3,0.47,0.49
-14513,36,117,36117,13651,5928,113987091,113383310,13976,6073,122118667,121481099,93772,41057,3582085074,1563902765,97.67,97.61,93.34,93.33,14.56,14.44,3.18,7.25
-14514,36,055,36055,6389,2614,9735409,9703221,6389,2614,9735409,9703221,744344,320593,3539813130,1702154292,100,100,100,100,0.86,0.82,0.28,0.57
-14516,36,117,36117,2365,1119,78018377,73363779,2365,1119,78018377,73363779,93772,41057,3582085074,1563902765,100,100,100,100,2.52,2.73,2.18,4.69
-14517,36,051,36051,2883,1269,88409304,88409304,2883,1269,88409304,88409304,65393,27123,1658263094,1636257346,100,100,100,100,4.41,4.68,5.33,5.4
-14519,36,055,36055,293,97,2146929,2146288,11581,4709,105870320,105646954,744344,320593,3539813130,1702154292,2.53,2.06,2.03,2.03,0.04,0.03,0.06,0.13
-14519,36,117,36117,11288,4612,103723391,103500666,11581,4709,105870320,105646954,93772,41057,3582085074,1563902765,97.47,97.94,97.97,97.97,12.04,11.23,2.9,6.62
-14521,36,099,36099,2761,1390,97944734,97891381,2761,1390,97944734,97891381,35251,16043,1011232311,838393327,100,100,100,100,7.83,8.66,9.69,11.68
-14522,36,069,36069,912,389,32086646,32002821,9565,4185,121500733,121240714,107931,48193,1715935980,1668121832,9.53,9.3,26.41,26.4,0.84,0.81,1.87,1.92
-14522,36,117,36117,8653,3796,89414087,89237893,9565,4185,121500733,121240714,93772,41057,3582085074,1563902765,90.47,90.7,73.59,73.6,9.23,9.25,2.5,5.71
-14525,36,037,36037,2003,777,68045509,67840502,2865,1137,118322563,118117556,60079,25589,1282840237,1276697637,69.91,68.34,57.51,57.43,3.33,3.04,5.3,5.31
-14525,36,051,36051,121,48,10204933,10204933,2865,1137,118322563,118117556,65393,27123,1658263094,1636257346,4.22,4.22,8.62,8.64,0.19,0.18,0.62,0.62
-14525,36,121,36121,741,312,40072121,40072121,2865,1137,118322563,118117556,42155,17970,1544377390,1535205959,25.86,27.44,33.87,33.93,1.76,1.74,2.59,2.61
-14526,36,055,36055,19804,8308,43429881,43333217,19804,8308,43429881,43333217,744344,320593,3539813130,1702154292,100,100,100,100,2.66,2.59,1.23,2.55
-14527,36,123,36123,12820,6670,351077226,350773846,12820,6670,351077226,350773846,25348,13491,973290509,875785717,100,100,100,100,50.58,49.44,36.07,40.05
-14529,36,101,36101,67,33,1010136,1010136,67,33,1010136,1010136,98990,48875,3636558896,3601531651,100,100,100,100,0.07,0.07,0.03,0.03
-14530,36,121,36121,5575,2833,128730787,127684396,5575,2833,128730787,127684396,42155,17970,1544377390,1535205959,100,100,100,100,13.23,15.77,8.34,8.32
-14532,36,069,36069,4213,1778,92579928,91987785,4431,1869,106157410,105265502,107931,48193,1715935980,1668121832,95.08,95.13,87.21,87.39,3.9,3.69,5.4,5.51
-14532,36,099,36099,218,91,13577482,13277717,4431,1869,106157410,105265502,35251,16043,1011232311,838393327,4.92,4.87,12.79,12.61,0.62,0.57,1.34,1.58
-14533,36,051,36051,1988,792,82702440,82683125,2000,795,83254162,83234847,65393,27123,1658263094,1636257346,99.4,99.62,99.34,99.34,3.04,2.92,4.99,5.05
-14533,36,121,36121,12,3,551722,551722,2000,795,83254162,83234847,42155,17970,1544377390,1535205959,0.6,0.38,0.66,0.66,0.03,0.02,0.04,0.04
-14534,36,055,36055,31050,12235,79987566,79257052,31426,12390,84457048,83726227,744344,320593,3539813130,1702154292,98.8,98.75,94.71,94.66,4.17,3.82,2.26,4.66
-14534,36,069,36069,376,155,4469482,4469175,31426,12390,84457048,83726227,107931,48193,1715935980,1668121832,1.2,1.25,5.29,5.34,0.35,0.32,0.26,0.27
-14536,36,003,36003,185,81,8167249,7996986,687,321,47618657,47193482,48946,26140,2679048325,2665894548,26.93,25.23,17.15,16.95,0.38,0.31,0.3,0.3
-14536,36,121,36121,502,240,39451408,39196496,687,321,47618657,47193482,42155,17970,1544377390,1535205959,73.07,74.77,82.85,83.05,1.19,1.34,2.55,2.55
-14537,36,069,36069,207,84,876090,876090,207,84,876090,876090,107931,48193,1715935980,1668121832,100,100,100,100,0.19,0.17,0.05,0.05
-14539,36,051,36051,242,94,548223,548223,242,94,548223,548223,65393,27123,1658263094,1636257346,100,100,100,100,0.37,0.35,0.03,0.03
-14541,36,099,36099,4129,1279,127975796,127482704,4129,1279,127975796,127482704,35251,16043,1011232311,838393327,100,100,100,100,11.71,7.97,12.66,15.21
-14542,36,117,36117,97,43,4793744,4793744,97,43,4793744,4793744,93772,41057,3582085074,1563902765,100,100,100,100,0.1,0.1,0.13,0.31
-14543,36,055,36055,3152,1261,66114836,65196375,3152,1261,66114836,65196375,744344,320593,3539813130,1702154292,100,100,100,100,0.42,0.39,1.87,3.83
-14544,36,069,36069,815,532,27505966,27505966,2101,1117,73189403,73124615,107931,48193,1715935980,1668121832,38.79,47.63,37.58,37.62,0.76,1.1,1.6,1.65
-14544,36,123,36123,1286,585,45683437,45618649,2101,1117,73189403,73124615,25348,13491,973290509,875785717,61.21,52.37,62.42,62.38,5.07,4.34,4.69,5.21
-14545,36,051,36051,173,78,3716761,3716761,173,78,3716761,3716761,65393,27123,1658263094,1636257346,100,100,100,100,0.26,0.29,0.22,0.23
-14546,36,055,36055,4695,2108,89260034,88473575,4695,2108,89260034,88473575,744344,320593,3539813130,1702154292,100,100,100,100,0.63,0.66,2.52,5.2
-14548,36,069,36069,4249,1750,77896777,77896777,4249,1750,77896777,77896777,107931,48193,1715935980,1668121832,100,100,100,100,3.94,3.63,4.54,4.67
-14549,36,121,36121,91,52,291068,291068,91,52,291068,291068,42155,17970,1544377390,1535205959,100,100,100,100,0.22,0.29,0.02,0.02
-14550,36,121,36121,1537,795,54088380,51804279,1537,795,54088380,51804279,42155,17970,1544377390,1535205959,100,100,100,100,3.65,4.42,3.5,3.37
-14551,36,117,36117,5651,2468,113466879,113157907,5651,2468,113466879,113157907,93772,41057,3582085074,1563902765,100,100,100,100,6.03,6.01,3.17,7.24
-14555,36,117,36117,974,971,16334398,8123085,974,971,16334398,8123085,93772,41057,3582085074,1563902765,100,100,100,100,1.04,2.37,0.46,0.52
-14559,36,055,36055,18057,7101,110783027,110117074,18057,7101,110783027,110117074,744344,320593,3539813130,1702154292,100,100,100,100,2.43,2.21,3.13,6.47
-14560,36,051,36051,1322,650,41556113,41556113,2164,1128,103457291,100587067,65393,27123,1658263094,1636257346,61.09,57.62,40.17,41.31,2.02,2.4,2.51,2.54
-14560,36,069,36069,842,478,61901178,59030954,2164,1128,103457291,100587067,107931,48193,1715935980,1668121832,38.91,42.38,59.83,58.69,0.78,0.99,3.61,3.54
-14561,36,069,36069,3022,1140,129826093,129826093,3086,1156,134359298,134359298,107931,48193,1715935980,1668121832,97.93,98.62,96.63,96.63,2.8,2.37,7.57,7.78
-14561,36,123,36123,64,16,4533205,4533205,3086,1156,134359298,134359298,25348,13491,973290509,875785717,2.07,1.38,3.37,3.37,0.25,0.12,0.47,0.52
-14564,36,055,36055,212,75,4297540,4276532,14487,5888,109359900,109044868,744344,320593,3539813130,1702154292,1.46,1.27,3.93,3.92,0.03,0.02,0.12,0.25
-14564,36,069,36069,14275,5813,105062360,104768336,14487,5888,109359900,109044868,107931,48193,1715935980,1668121832,98.54,98.73,96.07,96.08,13.23,12.06,6.12,6.28
-14568,36,117,36117,6048,2276,61518086,61489229,6048,2276,61518086,61489229,93772,41057,3582085074,1563902765,100,100,100,100,6.45,5.54,1.72,3.93
-14569,36,121,36121,6211,2897,198697497,197585027,6211,2897,198697497,197585027,42155,17970,1544377390,1535205959,100,100,100,100,14.73,16.12,12.87,12.87
-14571,36,073,36073,1176,802,48849188,47540105,1176,802,48849188,47540105,42883,18431,2117113285,1013357365,100,100,100,100,2.74,4.35,2.31,4.69
-14572,36,051,36051,946,506,83149259,83131384,5081,2463,194385241,193554768,65393,27123,1658263094,1636257346,18.62,20.54,42.78,42.95,1.45,1.87,5.01,5.08
-14572,36,101,36101,4135,1957,111235982,110423384,5081,2463,194385241,193554768,98990,48875,3636558896,3601531651,81.38,79.46,57.22,57.05,4.18,4,3.06,3.07
-14580,36,055,36055,50512,20968,115137905,109748260,50587,21001,115712754,110323109,744344,320593,3539813130,1702154292,99.85,99.84,99.5,99.48,6.79,6.54,3.25,6.45
-14580,36,117,36117,75,33,574849,574849,50587,21001,115712754,110323109,93772,41057,3582085074,1563902765,0.15,0.16,0.5,0.52,0.08,0.08,0.02,0.04
-14585,36,069,36069,120,74,128258,128258,120,74,128258,128258,107931,48193,1715935980,1668121832,100,100,100,100,0.11,0.15,0.01,0.01
-14586,36,055,36055,10256,3900,29368057,28867688,10256,3900,29368057,28867688,744344,320593,3539813130,1702154292,100,100,100,100,1.38,1.22,0.83,1.7
-14588,36,099,36099,749,38,623657,623657,749,38,623657,623657,35251,16043,1011232311,838393327,100,100,100,100,2.12,0.24,0.06,0.07
-14589,36,117,36117,7854,3561,113547216,113469822,7854,3561,113547216,113469822,93772,41057,3582085074,1563902765,100,100,100,100,8.38,8.67,3.17,7.26
-14590,36,117,36117,5446,3140,177884504,174903100,5446,3140,177884504,174903100,93772,41057,3582085074,1563902765,100,100,100,100,5.81,7.65,4.97,11.18
-14591,36,037,36037,132,52,8041902,8041902,1748,710,104729159,104664852,60079,25589,1282840237,1276697637,7.55,7.32,7.68,7.68,0.22,0.2,0.63,0.63
-14591,36,121,36121,1616,658,96687257,96622950,1748,710,104729159,104664852,42155,17970,1544377390,1535205959,92.45,92.68,92.32,92.32,3.83,3.66,6.26,6.29
-14592,36,051,36051,110,43,431978,431978,110,43,431978,431978,65393,27123,1658263094,1636257346,100,100,100,100,0.17,0.16,0.03,0.03
-14604,36,055,36055,1743,1482,992608,946704,1743,1482,992608,946704,744344,320593,3539813130,1702154292,100,100,100,100,0.23,0.46,0.03,0.06
-14605,36,055,36055,12610,5304,4741026,4683397,12610,5304,4741026,4683397,744344,320593,3539813130,1702154292,100,100,100,100,1.69,1.65,0.13,0.28
-14606,36,055,36055,28255,12090,25351464,25174139,28255,12090,25351464,25174139,744344,320593,3539813130,1702154292,100,100,100,100,3.8,3.77,0.72,1.48
-14607,36,055,36055,16223,10568,4360329,4360329,16223,10568,4360329,4360329,744344,320593,3539813130,1702154292,100,100,100,100,2.18,3.3,0.12,0.26
-14608,36,055,36055,12268,6108,4744973,4518243,12268,6108,4744973,4518243,744344,320593,3539813130,1702154292,100,100,100,100,1.65,1.91,0.13,0.27
-14609,36,055,36055,42571,19295,20899098,18781935,42571,19295,20899098,18781935,744344,320593,3539813130,1702154292,100,100,100,100,5.72,6.02,0.59,1.1
-14610,36,055,36055,14233,7618,11368653,11259788,14233,7618,11368653,11259788,744344,320593,3539813130,1702154292,100,100,100,100,1.91,2.38,0.32,0.66
-14611,36,055,36055,17396,7849,7553819,7496798,17396,7849,7553819,7496798,744344,320593,3539813130,1702154292,100,100,100,100,2.34,2.45,0.21,0.44
-14612,36,055,36055,34515,15020,51331398,44225456,34515,15020,51331398,44225456,744344,320593,3539813130,1702154292,100,100,100,100,4.64,4.69,1.45,2.6
-14613,36,055,36055,14730,6146,4824089,4731258,14730,6146,4824089,4731258,744344,320593,3539813130,1702154292,100,100,100,100,1.98,1.92,0.14,0.28
-14614,36,055,36055,1224,76,723150,628921,1224,76,723150,628921,744344,320593,3539813130,1702154292,100,100,100,100,0.16,0.02,0.02,0.04
-14615,36,055,36055,16099,7489,15108802,14999091,16099,7489,15108802,14999091,744344,320593,3539813130,1702154292,100,100,100,100,2.16,2.34,0.43,0.88
-14616,36,055,36055,28534,12582,15391113,15391113,28534,12582,15391113,15391113,744344,320593,3539813130,1702154292,100,100,100,100,3.83,3.92,0.43,0.9
-14617,36,055,36055,22789,9897,20975470,19890573,22789,9897,20975470,19890573,744344,320593,3539813130,1702154292,100,100,100,100,3.06,3.09,0.59,1.17
-14618,36,055,36055,22920,8809,25179937,25012241,22920,8809,25179937,25012241,744344,320593,3539813130,1702154292,100,100,100,100,3.08,2.75,0.71,1.47
-14619,36,055,36055,14749,6179,3784839,3771166,14749,6179,3784839,3771166,744344,320593,3539813130,1702154292,100,100,100,100,1.98,1.93,0.11,0.22
-14620,36,055,36055,25141,12234,11845828,11613712,25141,12234,11845828,11613712,744344,320593,3539813130,1702154292,100,100,100,100,3.38,3.82,0.33,0.68
-14621,36,055,36055,33802,14768,10962053,10678978,33802,14768,10962053,10678978,744344,320593,3539813130,1702154292,100,100,100,100,4.54,4.61,0.31,0.63
-14622,36,055,36055,12108,5750,14424788,11934896,12108,5750,14424788,11934896,744344,320593,3539813130,1702154292,100,100,100,100,1.63,1.79,0.41,0.7
-14623,36,055,36055,27173,10169,50395647,49424146,27173,10169,50395647,49424146,744344,320593,3539813130,1702154292,100,100,100,100,3.65,3.17,1.42,2.9
-14624,36,055,36055,36296,14868,72778073,72337716,36296,14868,72778073,72337716,744344,320593,3539813130,1702154292,100,100,100,100,4.88,4.64,2.06,4.25
-14625,36,055,36055,10387,4801,20274608,19789324,10387,4801,20274608,19789324,744344,320593,3539813130,1702154292,100,100,100,100,1.4,1.5,0.57,1.16
-14626,36,055,36055,30041,12885,35404504,35287528,30041,12885,35404504,35287528,744344,320593,3539813130,1702154292,100,100,100,100,4.04,4.02,1,2.07
-14627,36,055,36055,2320,0,398890,398890,2320,0,398890,398890,744344,320593,3539813130,1702154292,100,0,100,100,0.31,0,0.01,0.02
-14701,36,013,36013,40730,19132,240060245,239271752,40730,19132,240060245,239271752,134905,66920,3885457129,2745973829,100,100,100,100,30.19,28.59,6.18,8.71
-14706,36,009,36009,6356,2807,205715294,204048907,6356,2807,205715294,204048907,80317,41111,3425222451,3388612085,100,100,100,100,7.91,6.83,6.01,6.02
-14707,36,003,36003,239,114,5147207,5147207,239,114,5147207,5147207,48946,26140,2679048325,2665894548,100,100,100,100,0.49,0.44,0.19,0.19
-14708,36,003,36003,183,143,27367580,27189587,183,143,27367580,27189587,48946,26140,2679048325,2665894548,100,100,100,100,0.37,0.55,1.02,1.02
-14709,36,003,36003,1535,992,131049938,130971886,1535,992,131049938,130971886,48946,26140,2679048325,2665894548,100,100,100,100,3.14,3.79,4.89,4.91
-14710,36,013,36013,3540,2297,125411697,125264642,3540,2297,125411697,125264642,134905,66920,3885457129,2745973829,100,100,100,100,2.62,3.43,3.23,4.56
-14711,36,003,36003,1766,1031,104407739,103554871,1766,1031,104407739,103554871,48946,26140,2679048325,2665894548,100,100,100,100,3.61,3.94,3.9,3.88
-14712,36,013,36013,3342,2237,67601545,67409466,3342,2237,67601545,67409466,134905,66920,3885457129,2745973829,100,100,100,100,2.48,3.34,1.74,2.45
-14714,36,003,36003,487,300,47281729,47071994,487,300,47281729,47071994,48946,26140,2679048325,2665894548,100,100,100,100,0.99,1.15,1.76,1.77
-14715,36,003,36003,2747,1439,112568200,112494206,2747,1439,112568200,112494206,48946,26140,2679048325,2665894548,100,100,100,100,5.61,5.5,4.2,4.22
-14716,36,013,36013,3104,1029,47633589,32107143,3104,1029,47633589,32107143,134905,66920,3885457129,2745973829,100,100,100,100,2.3,1.54,1.23,1.17
-14717,36,003,36003,636,1062,71402710,70616866,636,1062,71402710,70616866,48946,26140,2679048325,2665894548,100,100,100,100,1.3,4.06,2.67,2.65
-14718,36,013,36013,2163,1022,86496715,85416294,2163,1022,86496715,85416294,134905,66920,3885457129,2745973829,100,100,100,100,1.6,1.53,2.23,3.11
-14719,36,009,36009,3497,1767,245833259,244316773,3497,1767,245833259,244316773,80317,41111,3425222451,3388612085,100,100,100,100,4.35,4.3,7.18,7.21
-14720,36,013,36013,675,338,634847,634847,675,338,634847,634847,134905,66920,3885457129,2745973829,100,100,100,100,0.5,0.51,0.02,0.02
-14721,36,003,36003,230,145,9666433,9666433,230,145,9666433,9666433,48946,26140,2679048325,2665894548,100,100,100,100,0.47,0.55,0.36,0.36
-14722,36,013,36013,153,1224,858249,858249,153,1224,858249,858249,134905,66920,3885457129,2745973829,100,100,100,100,0.11,1.83,0.02,0.03
-14723,36,013,36013,1295,674,112035249,112001292,1295,674,112035249,112001292,134905,66920,3885457129,2745973829,100,100,100,100,0.96,1.01,2.88,4.08
-14724,36,013,36013,2540,1508,193964838,192441477,2540,1508,193964838,192441477,134905,66920,3885457129,2745973829,100,100,100,100,1.88,2.25,4.99,7.01
-14726,36,009,36009,1852,572,96189540,96188460,2156,685,105330793,105329713,80317,41111,3425222451,3388612085,85.9,83.5,91.32,91.32,2.31,1.39,2.81,2.84
-14726,36,013,36013,304,113,9141253,9141253,2156,685,105330793,105329713,134905,66920,3885457129,2745973829,14.1,16.5,8.68,8.68,0.23,0.17,0.24,0.33
-14727,36,003,36003,4339,2630,184617469,182524840,5450,3382,283666358,281532567,48946,26140,2679048325,2665894548,79.61,77.76,65.08,64.83,8.86,10.06,6.89,6.85
-14727,36,009,36009,1111,752,99048889,99007727,5450,3382,283666358,281532567,80317,41111,3425222451,3388612085,20.39,22.24,34.92,35.17,1.38,1.83,2.89,2.92
-14728,36,013,36013,1031,962,69521458,69400021,1031,962,69521458,69400021,134905,66920,3885457129,2745973829,100,100,100,100,0.76,1.44,1.79,2.53
-14729,36,009,36009,948,552,91967654,91341026,948,552,91967654,91341026,80317,41111,3425222451,3388612085,100,100,100,100,1.18,1.34,2.69,2.7
-14731,36,009,36009,1576,2568,118764716,118642487,1576,2568,118764716,118642487,80317,41111,3425222451,3388612085,100,100,100,100,1.96,6.25,3.47,3.5
-14732,36,013,36013,211,85,5794277,5794277,211,85,5794277,5794277,134905,66920,3885457129,2745973829,100,100,100,100,0.16,0.13,0.15,0.21
-14733,36,013,36013,3833,1804,72282817,71799900,3833,1804,72282817,71799900,134905,66920,3885457129,2745973829,100,100,100,100,2.84,2.7,1.86,2.61
-14735,36,003,36003,2734,1548,214672849,212961189,2751,1555,216332187,214620527,48946,26140,2679048325,2665894548,99.38,99.55,99.23,99.23,5.59,5.92,8.01,7.99
-14735,36,121,36121,17,7,1659338,1659338,2751,1555,216332187,214620527,42155,17970,1544377390,1535205959,0.62,0.45,0.77,0.77,0.04,0.04,0.11,0.11
-14736,36,013,36013,282,195,13535416,13535416,282,195,13535416,13535416,134905,66920,3885457129,2745973829,100,100,100,100,0.21,0.29,0.35,0.49
-14737,36,009,36009,4252,2653,286454807,285523891,4252,2653,286454807,285523891,80317,41111,3425222451,3388612085,100,100,100,100,5.29,6.45,8.36,8.43
-14738,36,009,36009,264,335,84207824,83686522,3651,1809,171017283,170434243,80317,41111,3425222451,3388612085,7.23,18.52,49.24,49.1,0.33,0.81,2.46,2.47
-14738,36,013,36013,3387,1474,86809459,86747721,3651,1809,171017283,170434243,134905,66920,3885457129,2745973829,92.77,81.48,50.76,50.9,2.51,2.2,2.23,3.16
-14739,36,003,36003,2903,1809,205155391,204985815,2903,1809,205155391,204985815,48946,26140,2679048325,2665894548,100,100,100,100,5.93,6.92,7.66,7.69
-14740,36,013,36013,1431,642,67479540,67466588,1431,642,67479540,67466588,134905,66920,3885457129,2745973829,100,100,100,100,1.06,0.96,1.74,2.46
-14741,36,009,36009,1873,1270,159635720,159498082,1873,1270,159635720,159498082,80317,41111,3425222451,3388612085,100,100,100,100,2.33,3.09,4.66,4.71
-14742,36,013,36013,314,128,581623,581623,314,128,581623,581623,134905,66920,3885457129,2745973829,100,100,100,100,0.23,0.19,0.01,0.02
-14743,36,009,36009,1783,953,112601162,112522248,1783,953,112601162,112522248,80317,41111,3425222451,3388612085,100,100,100,100,2.22,2.32,3.29,3.32
-14744,36,003,36003,2094,512,45554934,45143834,2094,512,45554934,45143834,48946,26140,2679048325,2665894548,100,100,100,100,4.28,1.96,1.7,1.69
-14747,36,009,36009,198,113,19557025,19428545,2289,1066,113082831,112740880,80317,41111,3425222451,3388612085,8.65,10.6,17.29,17.23,0.25,0.27,0.57,0.57
-14747,36,013,36013,2091,953,93525806,93312335,2289,1066,113082831,112740880,134905,66920,3885457129,2745973829,91.35,89.4,82.71,82.77,1.55,1.42,2.41,3.4
-14748,36,009,36009,746,368,47341996,46367231,746,368,47341996,46367231,80317,41111,3425222451,3388612085,100,100,100,100,0.93,0.9,1.38,1.37
-14750,36,013,36013,4426,2384,28745085,28745085,4426,2384,28745085,28745085,134905,66920,3885457129,2745973829,100,100,100,100,3.28,3.56,0.74,1.05
-14752,36,013,36013,169,173,649516,649516,169,173,649516,649516,134905,66920,3885457129,2745973829,100,100,100,100,0.13,0.26,0.02,0.02
-14753,36,009,36009,1166,573,143051720,142509330,1166,573,143051720,142509330,80317,41111,3425222451,3388612085,100,100,100,100,1.45,1.39,4.18,4.21
-14754,36,003,36003,667,366,43064299,43028236,667,366,43064299,43028236,48946,26140,2679048325,2665894548,100,100,100,100,1.36,1.4,1.61,1.61
-14755,36,009,36009,2916,1567,195669717,195274750,2916,1567,195669717,195274750,80317,41111,3425222451,3388612085,100,100,100,100,3.63,3.81,5.71,5.76
-14756,36,013,36013,110,136,355130,355130,110,136,355130,355130,134905,66920,3885457129,2745973829,100,100,100,100,0.08,0.2,0.01,0.01
-14757,36,013,36013,3487,2530,119863980,119619162,3487,2530,119863980,119619162,134905,66920,3885457129,2745973829,100,100,100,100,2.58,3.78,3.08,4.36
-14760,36,009,36009,18775,9266,166461534,164347071,18775,9266,166461534,164347071,80317,41111,3425222451,3388612085,100,100,100,100,23.38,22.54,4.86,4.85
-14767,36,013,36013,2088,804,138775350,138165475,2088,804,138775350,138165475,134905,66920,3885457129,2745973829,100,100,100,100,1.55,1.2,3.57,5.03
-14769,36,013,36013,919,492,23617283,23612130,919,492,23617283,23612130,134905,66920,3885457129,2745973829,100,100,100,100,0.68,0.74,0.61,0.86
-14770,36,003,36003,800,358,38913460,38828659,2963,1342,77467773,76684751,48946,26140,2679048325,2665894548,27,26.68,50.23,50.63,1.63,1.37,1.45,1.46
-14770,36,009,36009,2163,984,38554313,37856092,2963,1342,77467773,76684751,80317,41111,3425222451,3388612085,73,73.32,49.77,49.37,2.69,2.39,1.13,1.12
-14772,36,009,36009,4255,1795,192078408,191303981,4255,1795,192078408,191303981,80317,41111,3425222451,3388612085,100,100,100,100,5.3,4.37,5.61,5.65
-14774,36,003,36003,151,52,461338,461338,151,52,461338,461338,48946,26140,2679048325,2665894548,100,100,100,100,0.31,0.2,0.02,0.02
-14775,36,013,36013,2537,1306,145611947,139959428,2537,1306,145611947,139959428,134905,66920,3885457129,2745973829,100,100,100,100,1.88,1.95,3.75,5.1
-14777,36,003,36003,667,706,39600716,37177259,667,706,39600716,37177259,48946,26140,2679048325,2665894548,100,100,100,100,1.36,2.7,1.48,1.39
-14778,36,009,36009,1453,2,1076111,1076111,1453,2,1076111,1076111,80317,41111,3425222451,3388612085,100,100,100,100,1.81,0,0.03,0.03
-14779,36,009,36009,6932,3503,294892574,291889040,6932,3503,294892574,291889040,80317,41111,3425222451,3388612085,100,100,100,100,8.63,8.52,8.61,8.61
-14781,36,013,36013,2225,989,188292261,188068289,2225,989,188292261,188068289,134905,66920,3885457129,2745973829,100,100,100,100,1.65,1.48,4.85,6.85
-14782,36,013,36013,2401,1101,142389153,142328450,2401,1101,142389153,142328450,134905,66920,3885457129,2745973829,100,100,100,100,1.78,1.65,3.66,5.18
-14783,36,009,36009,320,197,81175749,64535004,320,197,81175749,64535004,80317,41111,3425222451,3388612085,100,100,100,100,0.4,0.48,2.37,1.9
-14784,36,013,36013,1033,546,75818183,74978433,1033,546,75818183,74978433,134905,66920,3885457129,2745973829,100,100,100,100,0.77,0.82,1.95,2.73
-14787,36,013,36013,5121,2675,119146270,108797822,5121,2675,119146270,108797822,134905,66920,3885457129,2745973829,100,100,100,100,3.8,4,3.07,3.96
-14788,36,009,36009,163,67,545003,545003,163,67,545003,545003,80317,41111,3425222451,3388612085,100,100,100,100,0.2,0.16,0.02,0.02
-14801,36,101,36101,5475,2522,282459847,281410630,5475,2522,282459847,281410630,98990,48875,3636558896,3601531651,100,100,100,100,5.53,5.16,7.77,7.81
-14802,36,003,36003,4135,560,2694190,2694190,4135,560,2694190,2694190,48946,26140,2679048325,2665894548,100,100,100,100,8.45,2.14,0.1,0.1
-14803,36,003,36003,1103,577,59638585,59406512,1174,609,64803029,64552064,48946,26140,2679048325,2665894548,93.95,94.75,92.03,92.03,2.25,2.21,2.23,2.23
-14803,36,101,36101,71,32,5164444,5145552,1174,609,64803029,64552064,98990,48875,3636558896,3601531651,6.05,5.25,7.97,7.97,0.07,0.07,0.14,0.14
-14804,36,003,36003,1475,877,144928801,144696678,1479,880,144950837,144718714,48946,26140,2679048325,2665894548,99.73,99.66,99.98,99.98,3.01,3.36,5.41,5.43
-14804,36,101,36101,4,3,22036,22036,1479,880,144950837,144718714,98990,48875,3636558896,3601531651,0.27,0.34,0.02,0.02,0,0.01,0,0
-14805,36,097,36097,1100,527,73176966,71626806,1100,527,73176966,71626806,18343,9455,886625803,850379456,100,100,100,100,6,5.57,8.25,8.42
-14806,36,003,36003,2113,1049,141583752,141258672,2269,1172,178476053,178016450,48946,26140,2679048325,2665894548,93.12,89.51,79.33,79.35,4.32,4.01,5.28,5.3
-14806,36,101,36101,156,123,36892301,36757778,2269,1172,178476053,178016450,98990,48875,3636558896,3601531651,6.88,10.49,20.67,20.65,0.16,0.25,1.01,1.02
-14807,36,003,36003,569,329,73341824,73138300,3076,1477,175779808,175202573,48946,26140,2679048325,2665894548,18.5,22.27,41.72,41.74,1.16,1.26,2.74,2.74
-14807,36,101,36101,2507,1148,102437984,102064273,3076,1477,175779808,175202573,98990,48875,3636558896,3601531651,81.5,77.73,58.28,58.26,2.53,2.35,2.82,2.83
-14808,36,101,36101,591,267,8726700,8726700,591,267,8726700,8726700,98990,48875,3636558896,3601531651,100,100,100,100,0.6,0.55,0.24,0.24
-14809,36,101,36101,2552,1249,144682178,144350779,2552,1249,144682178,144350779,98990,48875,3636558896,3601531651,100,100,100,100,2.58,2.56,3.98,4.01
-14810,36,101,36101,12356,5955,313916119,312850512,12356,5955,313916119,312850512,98990,48875,3636558896,3601531651,100,100,100,100,12.48,12.18,8.63,8.69
-14812,36,015,36015,1030,436,35247064,35241104,3478,1460,201055101,200834973,88830,38369,1063912856,1055035677,29.61,29.86,17.53,17.55,1.16,1.14,3.31,3.34
-14812,36,097,36097,1712,715,116155784,115999794,3478,1460,201055101,200834973,18343,9455,886625803,850379456,49.22,48.97,57.77,57.76,9.33,7.56,13.1,13.64
-14812,36,101,36101,736,309,49652253,49594075,3478,1460,201055101,200834973,98990,48875,3636558896,3601531651,21.16,21.16,24.7,24.69,0.74,0.63,1.37,1.38
-14813,36,003,36003,2520,1396,157930206,157509358,2520,1396,157930206,157509358,48946,26140,2679048325,2665894548,100,100,100,100,5.15,5.34,5.9,5.91
-14814,36,015,36015,1715,731,18739643,18080879,1931,825,23052477,22291331,88830,38369,1063912856,1055035677,88.81,88.61,81.29,81.11,1.93,1.91,1.76,1.71
-14814,36,101,36101,216,94,4312834,4210452,1931,825,23052477,22291331,98990,48875,3636558896,3601531651,11.19,11.39,18.71,18.89,0.22,0.19,0.12,0.12
-14815,36,097,36097,645,635,35670498,32225527,946,776,48314160,44842487,18343,9455,886625803,850379456,68.18,81.83,73.83,71.86,3.52,6.72,4.02,3.79
-14815,36,101,36101,301,141,12643662,12616960,946,776,48314160,44842487,98990,48875,3636558896,3601531651,31.82,18.17,26.17,28.14,0.3,0.29,0.35,0.35
-14816,36,015,36015,520,207,10031683,9975059,520,207,10031683,9975059,88830,38369,1063912856,1055035677,100,100,100,100,0.59,0.54,0.94,0.95
-14817,36,107,36107,105,47,5123283,5123283,2380,1080,104612529,104360284,51125,22203,1354252809,1343172320,4.41,4.35,4.9,4.91,0.21,0.21,0.38,0.38
-14817,36,109,36109,2275,1033,99489246,99237001,2380,1080,104612529,104360284,101564,41674,1273129127,1229334487,95.59,95.65,95.1,95.09,2.24,2.48,7.81,8.07
-14818,36,097,36097,1745,983,96610088,96595946,1745,983,96610088,96595946,18343,9455,886625803,850379456,100,100,100,100,9.51,10.4,10.9,11.36
-14819,36,101,36101,733,401,107023068,106875746,733,401,107023068,106875746,98990,48875,3636558896,3601531651,100,100,100,100,0.74,0.82,2.94,2.97
-14820,36,101,36101,784,358,79681413,79614973,784,358,79681413,79614973,98990,48875,3636558896,3601531651,100,100,100,100,0.79,0.73,2.19,2.21
-14821,36,101,36101,3314,1394,140844387,140524424,3314,1394,140844387,140524424,98990,48875,3636558896,3601531651,100,100,100,100,3.35,2.85,3.87,3.9
-14822,36,003,36003,1118,694,116946639,116472271,1169,722,128581123,128106755,48946,26140,2679048325,2665894548,95.64,96.12,90.95,90.92,2.28,2.65,4.37,4.37
-14822,36,051,36051,51,28,11634484,11634484,1169,722,128581123,128106755,65393,27123,1658263094,1636257346,4.36,3.88,9.05,9.08,0.08,0.1,0.7,0.71
-14823,36,101,36101,3754,1915,200893025,200848764,3754,1915,200893025,200848764,98990,48875,3636558896,3601531651,100,100,100,100,3.79,3.92,5.52,5.58
-14824,36,015,36015,225,97,15347080,15338651,678,301,58734058,58725429,88830,38369,1063912856,1055035677,33.19,32.23,26.13,26.12,0.25,0.25,1.44,1.45
-14824,36,097,36097,453,204,43386978,43386778,678,301,58734058,58725429,18343,9455,886625803,850379456,66.81,67.77,73.87,73.88,2.47,2.16,4.89,5.1
-14825,36,015,36015,919,373,43705415,43694812,919,373,43705415,43694812,88830,38369,1063912856,1055035677,100,100,100,100,1.03,0.97,4.11,4.14
-14826,36,101,36101,2216,1163,158256476,157542122,2216,1163,158256476,157542122,98990,48875,3636558896,3601531651,100,100,100,100,2.24,2.38,4.35,4.37
-14827,36,101,36101,191,82,233078,233078,191,82,233078,233078,98990,48875,3636558896,3601531651,100,100,100,100,0.19,0.17,0.01,0.01
-14830,36,015,36015,199,83,11306646,11300142,19850,9160,234833346,232758429,88830,38369,1063912856,1055035677,1,0.91,4.81,4.85,0.22,0.22,1.06,1.07
-14830,36,101,36101,19651,9077,223526700,221458287,19850,9160,234833346,232758429,98990,48875,3636558896,3601531651,99,99.09,95.19,95.15,19.85,18.57,6.15,6.15
-14836,36,003,36003,209,170,32879033,32816800,1009,558,77744263,77612958,48946,26140,2679048325,2665894548,20.71,30.47,42.29,42.28,0.43,0.65,1.23,1.23
-14836,36,051,36051,800,388,44865230,44796158,1009,558,77744263,77612958,65393,27123,1658263094,1636257346,79.29,69.53,57.71,57.72,1.22,1.43,2.71,2.74
-14837,36,097,36097,1067,626,69020060,65585393,5648,3084,209932302,206377382,18343,9455,886625803,850379456,18.89,20.3,32.88,31.78,5.82,6.62,7.78,7.71
-14837,36,101,36101,95,123,4074624,4074624,5648,3084,209932302,206377382,98990,48875,3636558896,3601531651,1.68,3.99,1.94,1.97,0.1,0.25,0.11,0.11
-14837,36,123,36123,4486,2335,136837618,136717365,5648,3084,209932302,206377382,25348,13491,973290509,875785717,79.43,75.71,65.18,66.25,17.7,17.31,14.06,15.61
-14838,36,015,36015,1956,832,93854222,93327018,1956,832,93854222,93327018,88830,38369,1063912856,1055035677,100,100,100,100,2.2,2.17,8.82,8.85
-14839,36,101,36101,793,491,114100698,114089906,793,491,114100698,114089906,98990,48875,3636558896,3601531651,100,100,100,100,0.8,1,3.14,3.17
-14840,36,097,36097,34,41,831122,831122,3061,2944,152849016,152429898,18343,9455,886625803,850379456,1.11,1.39,0.54,0.55,0.19,0.43,0.09,0.1
-14840,36,101,36101,3027,2903,152017894,151598776,3061,2944,152849016,152429898,98990,48875,3636558896,3601531651,98.89,98.61,99.46,99.45,3.06,5.94,4.18,4.21
-14841,36,097,36097,808,607,39105874,39105874,915,655,50774709,50774709,18343,9455,886625803,850379456,88.31,92.67,77.02,77.02,4.4,6.42,4.41,4.6
-14841,36,099,36099,107,48,11668835,11668835,915,655,50774709,50774709,35251,16043,1011232311,838393327,11.69,7.33,22.98,22.98,0.3,0.3,1.15,1.39
-14842,36,123,36123,938,594,43350570,43333204,938,594,43350570,43333204,25348,13491,973290509,875785717,100,100,100,100,3.7,4.4,4.45,4.95
-14843,36,003,36003,54,22,5075402,5075402,13043,6231,261388359,260485531,48946,26140,2679048325,2665894548,0.41,0.35,1.94,1.95,0.11,0.08,0.19,0.19
-14843,36,101,36101,12989,6209,256312957,255410129,13043,6231,261388359,260485531,98990,48875,3636558896,3601531651,99.59,99.65,98.06,98.05,13.12,12.7,7.05,7.09
-14845,36,015,36015,20453,8939,207780705,206759519,20453,8939,207780705,206759519,88830,38369,1063912856,1055035677,100,100,100,100,23.02,23.3,19.53,19.6
-14846,36,003,36003,147,135,30224158,30210003,792,418,89098797,88472732,48946,26140,2679048325,2665894548,18.56,32.3,33.92,34.15,0.3,0.52,1.13,1.13
-14846,36,051,36051,645,283,58874639,58262729,792,418,89098797,88472732,65393,27123,1658263094,1636257346,81.44,67.7,66.08,65.85,0.99,1.04,3.55,3.56
-14847,36,099,36099,2398,1278,101029428,100938474,2398,1278,101029428,100938474,35251,16043,1011232311,838393327,100,100,100,100,6.8,7.97,9.99,12.04
-14850,36,109,36109,63886,26467,328491578,326231605,63886,26467,328491578,326231605,101564,41674,1273129127,1229334487,100,100,100,100,62.9,63.51,25.8,26.54
-14853,36,109,36109,2755,0,648665,611084,2755,0,648665,611084,101564,41674,1273129127,1229334487,100,0,100,100,2.71,0,0.05,0.05
-14854,36,109,36109,37,15,58950,58950,37,15,58950,58950,101564,41674,1273129127,1229334487,100,100,100,100,0.04,0.04,0,0
-14855,36,101,36101,956,362,72623698,72538765,956,362,72623698,72538765,98990,48875,3636558896,3601531651,100,100,100,100,0.97,0.74,2,2.01
-14856,36,101,36101,215,92,976583,976583,215,92,976583,976583,98990,48875,3636558896,3601531651,100,100,100,100,0.22,0.19,0.03,0.03
-14858,36,101,36101,1598,670,94367244,93550806,1598,670,94367244,93550806,98990,48875,3636558896,3601531651,100,100,100,100,1.61,1.37,2.59,2.6
-14859,36,015,36015,313,150,29851832,29835766,1029,485,80864304,80707317,88830,38369,1063912856,1055035677,30.42,30.93,36.92,36.97,0.35,0.39,2.81,2.83
-14859,36,107,36107,716,335,51012472,50871551,1029,485,80864304,80707317,51125,22203,1354252809,1343172320,69.58,69.07,63.08,63.03,1.4,1.51,3.77,3.79
-14860,36,099,36099,1039,779,54367961,54357512,1039,779,54367961,54357512,35251,16043,1011232311,838393327,100,100,100,100,2.95,4.86,5.38,6.48
-14861,36,015,36015,1404,641,89311927,88636457,1404,641,89311927,88636457,88830,38369,1063912856,1055035677,100,100,100,100,1.58,1.67,8.39,8.4
-14864,36,015,36015,1165,528,23802807,23686089,1307,595,32367613,32250895,88830,38369,1063912856,1055035677,89.14,88.74,73.54,73.44,1.31,1.38,2.24,2.25
-14864,36,097,36097,142,67,8564806,8564806,1307,595,32367613,32250895,18343,9455,886625803,850379456,10.86,11.26,26.46,26.56,0.77,0.71,0.97,1.01
-14865,36,097,36097,2607,1232,51669682,51653512,2607,1232,51669682,51653512,18343,9455,886625803,850379456,100,100,100,100,14.21,13.03,5.83,6.07
-14867,36,109,36109,5569,2458,174077191,173709162,5569,2458,174077191,173709162,101564,41674,1273129127,1229334487,100,100,100,100,5.48,5.9,13.67,14.13
-14869,36,097,36097,1378,604,52222071,52205360,1378,604,52222071,52205360,18343,9455,886625803,850379456,100,100,100,100,7.51,6.39,5.89,6.14
-14870,36,097,36097,167,70,8791979,8791979,9821,4374,160193665,158767759,18343,9455,886625803,850379456,1.7,1.6,5.49,5.54,0.91,0.74,0.99,1.03
-14870,36,101,36101,9654,4304,151401686,149975780,9821,4374,160193665,158767759,98990,48875,3636558896,3601531651,98.3,98.4,94.51,94.46,9.75,8.81,4.16,4.16
-14871,36,015,36015,4946,1734,117979471,117350574,5456,1938,149375831,148082519,88830,38369,1063912856,1055035677,90.65,89.47,78.98,79.25,5.57,4.52,11.09,11.12
-14871,36,101,36101,510,204,31396360,30731945,5456,1938,149375831,148082519,98990,48875,3636558896,3601531651,9.35,10.53,21.02,20.75,0.52,0.42,0.86,0.85
-14872,36,015,36015,605,283,16671520,16652444,605,283,16671520,16652444,88830,38369,1063912856,1055035677,100,100,100,100,0.68,0.74,1.57,1.58
-14873,36,101,36101,2448,1770,191730151,191366308,2448,1770,191730151,191366308,98990,48875,3636558896,3601531651,100,100,100,100,2.47,3.62,5.27,5.31
-14874,36,101,36101,250,245,5998235,5998235,250,245,5998235,5998235,98990,48875,3636558896,3601531651,100,100,100,100,0.25,0.5,0.16,0.17
-14877,36,003,36003,5,3,197611,197611,401,341,109904078,109526203,48946,26140,2679048325,2665894548,1.25,0.88,0.18,0.18,0.01,0.01,0.01,0.01
-14877,36,101,36101,396,338,109706467,109328592,401,341,109904078,109526203,98990,48875,3636558896,3601531651,98.75,99.12,99.82,99.82,0.4,0.69,3.02,3.04
-14878,36,097,36097,564,321,30828400,30828400,781,430,41541282,41541282,18343,9455,886625803,850379456,72.22,74.65,74.21,74.21,3.07,3.4,3.48,3.63
-14878,36,123,36123,217,109,10712882,10712882,781,430,41541282,41541282,25348,13491,973290509,875785717,27.78,25.35,25.79,25.79,0.86,0.81,1.1,1.22
-14879,36,101,36101,2398,1041,112614647,111681435,2398,1041,112614647,111681435,98990,48875,3636558896,3601531651,100,100,100,100,2.42,2.13,3.1,3.1
-14880,36,003,36003,1668,1028,142790535,142629247,1668,1028,142790535,142629247,48946,26140,2679048325,2665894548,100,100,100,100,3.41,3.93,5.33,5.35
-14881,36,109,36109,192,111,3185409,3182031,192,111,3185409,3182031,101564,41674,1273129127,1229334487,100,100,100,100,0.19,0.27,0.25,0.26
-14882,36,109,36109,3826,1747,86311257,86054843,3826,1747,86311257,86054843,101564,41674,1273129127,1229334487,100,100,100,100,3.77,4.19,6.78,7
-14883,36,107,36107,3255,1467,133232074,132374285,4136,1850,188271443,186971270,51125,22203,1354252809,1343172320,78.7,79.3,70.77,70.8,6.37,6.61,9.84,9.86
-14883,36,109,36109,881,383,55039369,54596985,4136,1850,188271443,186971270,101564,41674,1273129127,1229334487,21.3,20.7,29.23,29.2,0.87,0.92,4.32,4.44
-14884,36,003,36003,273,320,50468294,49628133,273,320,50468294,49628133,48946,26140,2679048325,2665894548,100,100,100,100,0.56,1.22,1.88,1.86
-14885,36,101,36101,873,419,108874075,108874075,873,419,108874075,108874075,98990,48875,3636558896,3601531651,100,100,100,100,0.88,0.86,2.99,3.02
-14886,36,097,36097,1720,731,90014271,89984134,6753,3181,201594582,201011933,18343,9455,886625803,850379456,25.47,22.98,44.65,44.77,9.38,7.73,10.15,10.58
-14886,36,099,36099,666,443,25533669,25524535,6753,3181,201594582,201011933,35251,16043,1011232311,838393327,9.86,13.93,12.67,12.7,1.89,2.76,2.53,3.04
-14886,36,109,36109,4367,2007,86046642,85503264,6753,3181,201594582,201011933,101564,41674,1273129127,1229334487,64.67,63.09,42.68,42.54,4.3,4.82,6.76,6.96
-14889,36,015,36015,1528,717,104184176,103869869,1590,744,116750875,116419386,88830,38369,1063912856,1055035677,96.1,96.37,89.24,89.22,1.72,1.87,9.79,9.85
-14889,36,097,36097,52,22,7882128,7882063,1590,744,116750875,116419386,18343,9455,886625803,850379456,3.27,2.96,6.75,6.77,0.28,0.23,0.89,0.93
-14889,36,107,36107,10,5,4684571,4667454,1590,744,116750875,116419386,51125,22203,1354252809,1343172320,0.63,0.67,4.01,4.01,0.02,0.02,0.35,0.35
-14891,36,097,36097,4149,2070,135391431,135111962,4149,2070,135391431,135111962,18343,9455,886625803,850379456,100,100,100,100,22.62,21.89,15.27,15.89
-14892,36,015,36015,756,299,36447557,35925548,8189,3609,112437049,111048077,88830,38369,1063912856,1055035677,9.23,8.28,32.42,32.35,0.85,0.78,3.43,3.41
-14892,36,107,36107,7433,3310,75989492,75122529,8189,3609,112437049,111048077,51125,22203,1354252809,1343172320,90.77,91.72,67.58,67.65,14.54,14.91,5.61,5.59
-14893,36,101,36101,6,27,58702,58702,6,27,58702,58702,98990,48875,3636558896,3601531651,100,100,100,100,0.01,0.06,0,0
-14894,36,015,36015,1454,612,29276609,29204670,1454,612,29276609,29204670,88830,38369,1063912856,1055035677,100,100,100,100,1.64,1.6,2.75,2.77
-14895,36,003,36003,9616,4943,294931556,294154285,9616,4943,294931556,294154285,48946,26140,2679048325,2665894548,100,100,100,100,19.65,18.91,11.01,11.03
-14897,36,003,36003,961,430,61222530,61217006,980,439,66131911,66126387,48946,26140,2679048325,2665894548,98.06,97.95,92.58,92.58,1.96,1.64,2.29,2.3
-14897,36,101,36101,19,9,4909381,4909381,980,439,66131911,66126387,98990,48875,3636558896,3601531651,1.94,2.05,7.42,7.42,0.02,0.02,0.14,0.14
-14898,36,101,36101,1734,747,151280410,151206957,1734,747,151280410,151206957,98990,48875,3636558896,3601531651,100,100,100,100,1.75,1.53,4.16,4.2
-14901,36,015,36015,16736,6617,98800731,96791377,16736,6617,98800731,96791377,88830,38369,1063912856,1055035677,100,100,100,100,18.84,17.25,9.29,9.17
-14903,36,015,36015,7567,3440,54888955,54026660,7567,3440,54888955,54026660,88830,38369,1063912856,1055035677,100,100,100,100,8.52,8.97,5.16,5.12
-14904,36,015,36015,16269,7324,15423618,14548782,16269,7324,15423618,14548782,88830,38369,1063912856,1055035677,100,100,100,100,18.31,19.09,1.45,1.38
-14905,36,015,36015,9070,4326,11261195,10790257,9070,4326,11261195,10790257,88830,38369,1063912856,1055035677,100,100,100,100,10.21,11.27,1.06,1.02
-15001,42,007,42007,31964,14820,158966087,155516937,31964,14820,158966087,155516937,170539,78211,1150067104,1125900054,100,100,100,100,18.74,18.95,13.82,13.81
-15003,42,003,42003,923,395,1969421,1969421,11861,6199,17861037,16912197,1223348,589201,1928303169,1890884266,7.78,6.37,11.03,11.64,0.08,0.07,0.1,0.1
-15003,42,007,42007,10938,5804,15891616,14942776,11861,6199,17861037,16912197,170539,78211,1150067104,1125900054,92.22,93.63,88.97,88.36,6.41,7.42,1.38,1.33
-15004,42,125,42125,351,153,811322,811322,351,153,811322,811322,207820,92977,2229737998,2219591093,100,100,100,100,0.17,0.16,0.04,0.04
-15005,42,003,42003,823,296,10061811,10061811,9450,4168,41413827,40711517,1223348,589201,1928303169,1890884266,8.71,7.1,24.3,24.71,0.07,0.05,0.52,0.53
-15005,42,007,42007,8627,3872,31352016,30649706,9450,4168,41413827,40711517,170539,78211,1150067104,1125900054,91.29,92.9,75.7,75.29,5.06,4.95,2.73,2.72
-15006,42,003,42003,240,118,637395,637395,240,118,637395,637395,1223348,589201,1928303169,1890884266,100,100,100,100,0.02,0.02,0.03,0.03
-15007,42,003,42003,323,136,861007,861007,323,136,861007,861007,1223348,589201,1928303169,1890884266,100,100,100,100,0.03,0.02,0.04,0.05
-15009,42,007,42007,15082,6839,67191101,63554326,15082,6839,67191101,63554326,170539,78211,1150067104,1125900054,100,100,100,100,8.84,8.74,5.84,5.64
-15010,42,007,42007,28425,12787,130970163,129573025,28425,12787,130970163,129573025,170539,78211,1150067104,1125900054,100,100,100,100,16.67,16.35,11.39,11.51
-15012,42,051,42051,4179,2142,13322345,12999732,15905,7326,87880116,86904411,136606,62773,2067612655,2046968639,26.27,29.24,15.16,14.96,3.06,3.41,0.64,0.64
-15012,42,125,42125,39,15,48753,48753,15905,7326,87880116,86904411,207820,92977,2229737998,2219591093,0.25,0.2,0.06,0.06,0.02,0.02,0,0
-15012,42,129,42129,11687,5169,74509018,73855926,15905,7326,87880116,86904411,365169,168199,2683420993,2661353634,73.48,70.56,84.78,84.99,3.2,3.07,2.78,2.78
-15014,42,003,42003,3184,1617,1431902,1316565,3184,1617,1431902,1316565,1223348,589201,1928303169,1890884266,100,100,100,100,0.26,0.27,0.07,0.07
-15015,42,003,42003,1175,499,2423450,2423450,1175,499,2423450,2423450,1223348,589201,1928303169,1890884266,100,100,100,100,0.1,0.08,0.13,0.13
-15017,42,003,42003,14848,7302,27694394,27591565,16213,7875,33881529,33756097,1223348,589201,1928303169,1890884266,91.58,92.72,81.74,81.74,1.21,1.24,1.44,1.46
-15017,42,125,42125,1365,573,6187135,6164532,16213,7875,33881529,33756097,207820,92977,2229737998,2219591093,8.42,7.28,18.26,18.26,0.66,0.62,0.28,0.28
-15018,42,003,42003,821,389,5292588,4878525,821,389,5292588,4878525,1223348,589201,1928303169,1890884266,100,100,100,100,0.07,0.07,0.27,0.26
-15019,42,125,42125,1719,770,58942492,58794615,1719,770,58942492,58794615,207820,92977,2229737998,2219591093,100,100,100,100,0.83,0.83,2.64,2.65
-15020,42,003,42003,231,121,4603496,3418347,231,121,4603496,3418347,1223348,589201,1928303169,1890884266,100,100,100,100,0.02,0.02,0.24,0.18
-15021,42,125,42125,7352,3294,237109642,237040192,7352,3294,237109642,237040192,207820,92977,2229737998,2219591093,100,100,100,100,3.54,3.54,10.63,10.68
-15022,42,125,42125,10340,5391,47397048,46772529,10340,5391,47397048,46772529,207820,92977,2229737998,2219591093,100,100,100,100,4.98,5.8,2.13,2.11
-15024,42,003,42003,9029,3924,43905102,43320050,9029,3924,43905102,43320050,1223348,589201,1928303169,1890884266,100,100,100,100,0.74,0.67,2.28,2.29
-15025,42,003,42003,15938,7811,44141584,42882571,15944,7814,44143854,42884841,1223348,589201,1928303169,1890884266,99.96,99.96,99.99,99.99,1.3,1.33,2.29,2.27
-15025,42,125,42125,6,3,2270,2270,15944,7814,44143854,42884841,207820,92977,2229737998,2219591093,0.04,0.04,0.01,0.01,0,0,0,0
-15026,42,003,42003,626,307,17889284,17874813,3390,1429,87313201,86778262,1223348,589201,1928303169,1890884266,18.47,21.48,20.49,20.6,0.05,0.05,0.93,0.95
-15026,42,007,42007,2539,1040,65301902,64825475,3390,1429,87313201,86778262,170539,78211,1150067104,1125900054,74.9,72.78,74.79,74.7,1.49,1.33,5.68,5.76
-15026,42,125,42125,225,82,4122015,4077974,3390,1429,87313201,86778262,207820,92977,2229737998,2219591093,6.64,5.74,4.72,4.7,0.11,0.09,0.18,0.18
-15027,42,007,42007,2201,1053,4202168,3728899,2201,1053,4202168,3728899,170539,78211,1150067104,1125900054,100,100,100,100,1.29,1.35,0.37,0.33
-15028,42,003,42003,142,64,752044,517475,142,64,752044,517475,1223348,589201,1928303169,1890884266,100,100,100,100,0.01,0.01,0.04,0.03
-15030,42,003,42003,1128,637,5523020,4868191,1128,637,5523020,4868191,1223348,589201,1928303169,1890884266,100,100,100,100,0.09,0.11,0.29,0.26
-15031,42,003,42003,513,247,1207105,1207105,513,247,1207105,1207105,1223348,589201,1928303169,1890884266,100,100,100,100,0.04,0.04,0.06,0.06
-15033,42,125,42125,4910,2771,6157839,5773168,4910,2771,6157839,5773168,207820,92977,2229737998,2219591093,100,100,100,100,2.36,2.98,0.28,0.26
-15034,42,003,42003,1792,1000,2753096,2507585,1792,1000,2753096,2507585,1223348,589201,1928303169,1890884266,100,100,100,100,0.15,0.17,0.14,0.13
-15035,42,003,42003,2129,1155,1074654,1074654,2129,1155,1074654,1074654,1223348,589201,1928303169,1890884266,100,100,100,100,0.17,0.2,0.06,0.06
-15037,42,003,42003,10894,4865,69946718,68522890,10894,4865,69946718,68522890,1223348,589201,1928303169,1890884266,100,100,100,100,0.89,0.83,3.63,3.62
-15038,42,125,42125,325,158,1334079,1132242,325,158,1334079,1132242,207820,92977,2229737998,2219591093,100,100,100,100,0.16,0.17,0.06,0.05
-15042,42,007,42007,8105,3629,43523860,43178835,8105,3629,43523860,43178835,170539,78211,1150067104,1125900054,100,100,100,100,4.75,4.64,3.78,3.84
-15043,42,007,42007,2458,953,88225090,84730108,2458,953,88225090,84730108,170539,78211,1150067104,1125900054,100,100,100,100,1.44,1.22,7.67,7.53
-15044,42,003,42003,25626,10005,104193718,104175136,27049,10496,107124960,107079609,1223348,589201,1928303169,1890884266,94.74,95.32,97.26,97.29,2.09,1.7,5.4,5.51
-15044,42,019,42019,1423,491,2931242,2904473,27049,10496,107124960,107079609,183862,78167,2058397354,2042475490,5.26,4.68,2.74,2.71,0.77,0.63,0.14,0.14
-15045,42,003,42003,4483,2255,4626943,4096331,4483,2255,4626943,4096331,1223348,589201,1928303169,1890884266,100,100,100,100,0.37,0.38,0.24,0.22
-15046,42,003,42003,2640,1131,5978785,5432400,2640,1131,5978785,5432400,1223348,589201,1928303169,1890884266,100,100,100,100,0.22,0.19,0.31,0.29
-15047,42,003,42003,151,72,681855,495589,151,72,681855,495589,1223348,589201,1928303169,1890884266,100,100,100,100,0.01,0.01,0.04,0.03
-15049,42,003,42003,895,487,1116546,1116546,895,487,1116546,1116546,1223348,589201,1928303169,1890884266,100,100,100,100,0.07,0.08,0.06,0.06
-15050,42,007,42007,2431,973,60668219,60637555,2431,973,60668219,60637555,170539,78211,1150067104,1125900054,100,100,100,100,1.43,1.24,5.28,5.39
-15051,42,003,42003,461,246,2144253,2144253,461,246,2144253,2144253,1223348,589201,1928303169,1890884266,100,100,100,100,0.04,0.04,0.11,0.11
-15052,42,007,42007,3483,1507,45372719,45179152,3483,1507,45372719,45179152,170539,78211,1150067104,1125900054,100,100,100,100,2.04,1.93,3.95,4.01
-15053,42,125,42125,154,70,227561,227561,154,70,227561,227561,207820,92977,2229737998,2219591093,100,100,100,100,0.07,0.08,0.01,0.01
-15054,42,125,42125,375,180,338257,338257,375,180,338257,338257,207820,92977,2229737998,2219591093,100,100,100,100,0.18,0.19,0.02,0.02
-15055,42,125,42125,1360,717,1765100,1731352,1360,717,1765100,1731352,207820,92977,2229737998,2219591093,100,100,100,100,0.65,0.77,0.08,0.08
-15056,42,003,42003,1140,589,2837200,2382658,1140,589,2837200,2382658,1223348,589201,1928303169,1890884266,100,100,100,100,0.09,0.1,0.15,0.13
-15057,42,003,42003,6732,2448,48867775,48867775,13930,5614,141814217,141603046,1223348,589201,1928303169,1890884266,48.33,43.61,34.46,34.51,0.55,0.42,2.53,2.58
-15057,42,125,42125,7198,3166,92946442,92735271,13930,5614,141814217,141603046,207820,92977,2229737998,2219591093,51.67,56.39,65.54,65.49,3.46,3.41,4.17,4.18
-15059,42,007,42007,4193,2096,37988628,36479548,4193,2096,37988628,36479548,170539,78211,1150067104,1125900054,100,100,100,100,2.46,2.68,3.3,3.24
-15060,42,125,42125,790,353,849816,849816,790,353,849816,849816,207820,92977,2229737998,2219591093,100,100,100,100,0.38,0.38,0.04,0.04
-15061,42,007,42007,12799,5889,50191579,46565513,12799,5889,50191579,46565513,170539,78211,1150067104,1125900054,100,100,100,100,7.51,7.53,4.36,4.14
-15062,42,129,42129,7731,4244,9140636,8704851,7731,4244,9140636,8704851,365169,168199,2683420993,2661353634,100,100,100,100,2.12,2.52,0.34,0.33
-15063,42,003,42003,1672,731,30098009,29656449,11677,5505,75460156,73676839,1223348,589201,1928303169,1890884266,14.32,13.28,39.89,40.25,0.14,0.12,1.56,1.57
-15063,42,125,42125,10005,4774,45362147,44020390,11677,5505,75460156,73676839,207820,92977,2229737998,2219591093,85.68,86.72,60.11,59.75,4.81,5.13,2.03,1.98
-15064,42,003,42003,382,210,2132715,2132715,382,210,2132715,2132715,1223348,589201,1928303169,1890884266,100,100,100,100,0.03,0.04,0.11,0.11
-15065,42,003,42003,11588,5639,33426444,32066841,11588,5639,33426444,32066841,1223348,589201,1928303169,1890884266,100,100,100,100,0.95,0.96,1.73,1.7
-15066,42,007,42007,12785,5852,56492446,56070318,12785,5852,56492446,56070318,170539,78211,1150067104,1125900054,100,100,100,100,7.5,7.48,4.91,4.98
-15067,42,125,42125,2281,1107,5834164,5278531,2281,1107,5834164,5278531,207820,92977,2229737998,2219591093,100,100,100,100,1.1,1.19,0.26,0.24
-15068,42,003,42003,4740,1940,27451335,26591227,38785,18734,119856826,116797174,1223348,589201,1928303169,1890884266,12.22,10.36,22.9,22.77,0.39,0.33,1.42,1.41
-15068,42,129,42129,34045,16794,92405491,90205947,38785,18734,119856826,116797174,365169,168199,2683420993,2661353634,87.78,89.64,77.1,77.23,9.32,9.98,3.44,3.39
-15071,42,003,42003,9956,4402,47454570,47454570,9956,4402,47454570,47454570,1223348,589201,1928303169,1890884266,100,100,100,100,0.81,0.75,2.46,2.51
-15072,42,129,42129,101,60,176019,176019,101,60,176019,176019,365169,168199,2683420993,2661353634,100,100,100,100,0.03,0.04,0.01,0.01
-15074,42,007,42007,8874,4119,39553288,38782320,8874,4119,39553288,38782320,170539,78211,1150067104,1125900054,100,100,100,100,5.2,5.27,3.44,3.44
-15075,42,003,42003,128,57,61429,61429,128,57,61429,61429,1223348,589201,1928303169,1890884266,100,100,100,100,0.01,0.01,0,0
-15076,42,003,42003,849,414,1891849,1891849,849,414,1891849,1891849,1223348,589201,1928303169,1890884266,100,100,100,100,0.07,0.07,0.1,0.1
-15077,42,007,42007,198,94,3190002,2918006,198,94,3190002,2918006,170539,78211,1150067104,1125900054,100,100,100,100,0.12,0.12,0.28,0.26
-15078,42,125,42125,523,287,1895632,1895632,523,287,1895632,1895632,207820,92977,2229737998,2219591093,100,100,100,100,0.25,0.31,0.09,0.09
-15081,42,007,42007,475,241,1051631,830784,475,241,1051631,830784,170539,78211,1150067104,1125900054,100,100,100,100,0.28,0.31,0.09,0.07
-15082,42,003,42003,350,156,809429,809429,350,156,809429,809429,1223348,589201,1928303169,1890884266,100,100,100,100,0.03,0.03,0.04,0.04
-15083,42,129,42129,952,432,9902602,9489252,952,432,9902602,9489252,365169,168199,2683420993,2661353634,100,100,100,100,0.26,0.26,0.37,0.36
-15084,42,003,42003,10130,5005,72503189,72058774,10130,5005,72503189,72058774,1223348,589201,1928303169,1890884266,100,100,100,100,0.83,0.85,3.76,3.81
-15085,42,003,42003,111,54,612629,612629,7944,3612,24761294,24761294,1223348,589201,1928303169,1890884266,1.4,1.5,2.47,2.47,0.01,0.01,0.03,0.03
-15085,42,129,42129,7833,3558,24148665,24148665,7944,3612,24761294,24761294,365169,168199,2683420993,2661353634,98.6,98.5,97.53,97.53,2.15,2.12,0.9,0.91
-15086,42,003,42003,300,137,3104930,3104930,300,137,4249943,4249943,1223348,589201,1928303169,1890884266,100,100,73.06,73.06,0.02,0.02,0.16,0.16
-15086,42,019,42019,0,0,1145013,1145013,300,137,4249943,4249943,183862,78167,2058397354,2042475490,0,0,26.94,26.94,0,0,0.06,0.06
-15087,42,129,42129,234,110,2385821,1852269,234,110,2385821,1852269,365169,168199,2683420993,2661353634,100,100,100,100,0.06,0.07,0.09,0.07
-15088,42,003,42003,535,260,688667,521123,535,260,688667,521123,1223348,589201,1928303169,1890884266,100,100,100,100,0.04,0.04,0.04,0.03
-15089,42,003,42003,90,53,2579050,2419207,6262,3002,50563353,49562783,1223348,589201,1928303169,1890884266,1.44,1.77,5.1,4.88,0.01,0.01,0.13,0.13
-15089,42,129,42129,6172,2949,47984303,47143576,6262,3002,50563353,49562783,365169,168199,2683420993,2661353634,98.56,98.23,94.9,95.12,1.69,1.75,1.79,1.77
-15090,42,003,42003,21202,8254,54733988,54700120,21202,8254,54733988,54700120,1223348,589201,1928303169,1890884266,100,100,100,100,1.73,1.4,2.84,2.89
-15101,42,003,42003,24292,10372,52615201,52345769,24292,10372,52615201,52345769,1223348,589201,1928303169,1890884266,100,100,100,100,1.99,1.76,2.73,2.77
-15102,42,003,42003,29529,13050,26808460,26808460,29529,13050,26808460,26808460,1223348,589201,1928303169,1890884266,100,100,100,100,2.41,2.21,1.39,1.42
-15104,42,003,42003,9038,4845,6886877,6341484,9038,4845,6886877,6341484,1223348,589201,1928303169,1890884266,100,100,100,100,0.74,0.82,0.36,0.34
-15106,42,003,42003,18536,9711,28932921,28932921,18536,9711,28932921,28932921,1223348,589201,1928303169,1890884266,100,100,100,100,1.52,1.65,1.5,1.53
-15108,42,003,42003,40153,18268,103742542,102216563,40153,18268,103742542,102216563,1223348,589201,1928303169,1890884266,100,100,100,100,3.28,3.1,5.38,5.41
-15110,42,003,42003,5565,3163,5272236,4708635,5565,3163,5272236,4708635,1223348,589201,1928303169,1890884266,100,100,100,100,0.45,0.54,0.27,0.25
-15112,42,003,42003,3292,1890,2165413,2165413,3292,1890,2165413,2165413,1223348,589201,1928303169,1890884266,100,100,100,100,0.27,0.32,0.11,0.11
-15116,42,003,42003,14427,6103,20922947,20922947,14427,6103,20922947,20922947,1223348,589201,1928303169,1890884266,100,100,100,100,1.18,1.04,1.09,1.11
-15120,42,003,42003,18931,9821,12832338,12102620,18931,9821,12832338,12102620,1223348,589201,1928303169,1890884266,100,100,100,100,1.55,1.67,0.67,0.64
-15122,42,003,42003,20131,9444,33190885,32655632,20131,9444,33190885,32655632,1223348,589201,1928303169,1890884266,100,100,100,100,1.65,1.6,1.72,1.73
-15126,42,003,42003,6983,3100,55453941,55453941,7014,3113,57341867,57341867,1223348,589201,1928303169,1890884266,99.56,99.58,96.71,96.71,0.57,0.53,2.88,2.93
-15126,42,125,42125,31,13,1887926,1887926,7014,3113,57341867,57341867,207820,92977,2229737998,2219591093,0.44,0.42,3.29,3.29,0.01,0.01,0.08,0.09
-15129,42,003,42003,10839,4591,19956010,19956010,10920,4629,20859252,20859252,1223348,589201,1928303169,1890884266,99.26,99.18,95.67,95.67,0.89,0.78,1.03,1.06
-15129,42,125,42125,81,38,903242,903242,10920,4629,20859252,20859252,207820,92977,2229737998,2219591093,0.74,0.82,4.33,4.33,0.04,0.04,0.04,0.04
-15131,42,003,42003,7807,3853,18063363,17938443,8240,4044,18999554,18874634,1223348,589201,1928303169,1890884266,94.75,95.28,95.07,95.04,0.64,0.65,0.94,0.95
-15131,42,129,42129,433,191,936191,936191,8240,4044,18999554,18874634,365169,168199,2683420993,2661353634,5.25,4.72,4.93,4.96,0.12,0.11,0.03,0.04
-15132,42,003,42003,21472,11069,15785978,14621929,21472,11069,15785978,14621929,1223348,589201,1928303169,1890884266,100,100,100,100,1.76,1.88,0.82,0.77
-15133,42,003,42003,6432,3004,7879295,7712475,6432,3004,7879295,7712475,1223348,589201,1928303169,1890884266,100,100,100,100,0.53,0.51,0.41,0.41
-15135,42,003,42003,5139,2343,11168260,10872538,5139,2343,11168260,10872538,1223348,589201,1928303169,1890884266,100,100,100,100,0.42,0.4,0.58,0.57
-15136,42,003,42003,21849,10653,29812667,28834294,21849,10653,29812667,28834294,1223348,589201,1928303169,1890884266,100,100,100,100,1.79,1.81,1.55,1.52
-15137,42,003,42003,10193,5202,20451932,20023097,10228,5218,20463179,20034344,1223348,589201,1928303169,1890884266,99.66,99.69,99.95,99.94,0.83,0.88,1.06,1.06
-15137,42,129,42129,35,16,11247,11247,10228,5218,20463179,20034344,365169,168199,2683420993,2661353634,0.34,0.31,0.05,0.06,0.01,0.01,0,0
-15139,42,003,42003,6307,3235,5592165,5001000,6307,3235,5592165,5001000,1223348,589201,1928303169,1890884266,100,100,100,100,0.52,0.55,0.29,0.26
-15140,42,003,42003,3294,1866,1308209,1308209,3294,1866,1308209,1308209,1223348,589201,1928303169,1890884266,100,100,100,100,0.27,0.32,0.07,0.07
-15142,42,003,42003,1163,487,3835161,3796186,1163,487,3835161,3796186,1223348,589201,1928303169,1890884266,100,100,100,100,0.1,0.08,0.2,0.2
-15143,42,003,42003,18604,8125,87664632,85888745,19660,8581,97151952,95376065,1223348,589201,1928303169,1890884266,94.63,94.69,90.23,90.05,1.52,1.38,4.55,4.54
-15143,42,007,42007,1056,456,9487320,9487320,19660,8581,97151952,95376065,170539,78211,1150067104,1125900054,5.37,5.31,9.77,9.95,0.62,0.58,0.82,0.84
-15144,42,003,42003,4142,2081,7950759,7144464,4142,2081,7950759,7144464,1223348,589201,1928303169,1890884266,100,100,100,100,0.34,0.35,0.41,0.38
-15145,42,003,42003,7132,3808,5104044,5104044,7132,3808,5104044,5104044,1223348,589201,1928303169,1890884266,100,100,100,100,0.58,0.65,0.26,0.27
-15146,42,003,42003,28310,13453,51036566,51020748,28323,13458,51044497,51028679,1223348,589201,1928303169,1890884266,99.95,99.96,99.98,99.98,2.31,2.28,2.65,2.7
-15146,42,129,42129,13,5,7931,7931,28323,13458,51044497,51028679,365169,168199,2683420993,2661353634,0.05,0.04,0.02,0.02,0,0,0,0
-15147,42,003,42003,17395,8539,27057315,26203545,17395,8539,27057315,26203545,1223348,589201,1928303169,1890884266,100,100,100,100,1.42,1.45,1.4,1.39
-15148,42,003,42003,2814,1554,2889759,2889759,2814,1554,2889759,2889759,1223348,589201,1928303169,1890884266,100,100,100,100,0.23,0.26,0.15,0.15
-15201,42,003,42003,12713,6939,7104834,6422035,12713,6939,7104834,6422035,1223348,589201,1928303169,1890884266,100,100,100,100,1.04,1.18,0.37,0.34
-15202,42,003,42003,19685,10448,12396158,11387495,19685,10448,12396158,11387495,1223348,589201,1928303169,1890884266,100,100,100,100,1.61,1.77,0.64,0.6
-15203,42,003,42003,9949,6312,4387501,3823795,9949,6312,4387501,3823795,1223348,589201,1928303169,1890884266,100,100,100,100,0.81,1.07,0.23,0.2
-15204,42,003,42003,8329,4017,5055282,4830272,8329,4017,5055282,4830272,1223348,589201,1928303169,1890884266,100,100,100,100,0.68,0.68,0.26,0.26
-15205,42,003,42003,21865,11181,26680905,26680905,21865,11181,26680905,26680905,1223348,589201,1928303169,1890884266,100,100,100,100,1.79,1.9,1.38,1.41
-15206,42,003,42003,28615,15585,13193341,12369654,28615,15585,13193341,12369654,1223348,589201,1928303169,1890884266,100,100,100,100,2.34,2.65,0.68,0.65
-15207,42,003,42003,11268,5818,13310278,12418110,11268,5818,13310278,12418110,1223348,589201,1928303169,1890884266,100,100,100,100,0.92,0.99,0.69,0.66
-15208,42,003,42003,10406,5785,4167610,4167610,10406,5785,4167610,4167610,1223348,589201,1928303169,1890884266,100,100,100,100,0.85,0.98,0.22,0.22
-15209,42,003,42003,12438,5906,12072095,11674854,12438,5906,12072095,11674854,1223348,589201,1928303169,1890884266,100,100,100,100,1.02,1,0.63,0.62
-15210,42,003,42003,25954,13207,12410601,12016589,25954,13207,12410601,12016589,1223348,589201,1928303169,1890884266,100,100,100,100,2.12,2.24,0.64,0.64
-15211,42,003,42003,11081,6489,4051826,4051826,11081,6489,4051826,4051826,1223348,589201,1928303169,1890884266,100,100,100,100,0.91,1.1,0.21,0.21
-15212,42,003,42003,27895,16153,17048647,16116436,27895,16153,17048647,16116436,1223348,589201,1928303169,1890884266,100,100,100,100,2.28,2.74,0.88,0.85
-15213,42,003,42003,30844,11769,5519395,5519395,30844,11769,5519395,5519395,1223348,589201,1928303169,1890884266,100,100,100,100,2.52,2,0.29,0.29
-15214,42,003,42003,14352,7323,12170043,12162850,14352,7323,12170043,12162850,1223348,589201,1928303169,1890884266,100,100,100,100,1.17,1.24,0.63,0.64
-15215,42,003,42003,12615,6166,16699471,15933677,12615,6166,16699471,15933677,1223348,589201,1928303169,1890884266,100,100,100,100,1.03,1.05,0.87,0.84
-15216,42,003,42003,23350,11657,8866636,8866636,23350,11657,8866636,8866636,1223348,589201,1928303169,1890884266,100,100,100,100,1.91,1.98,0.46,0.47
-15217,42,003,42003,27220,12778,9953406,9858307,27220,12778,9953406,9858307,1223348,589201,1928303169,1890884266,100,100,100,100,2.23,2.17,0.52,0.52
-15218,42,003,42003,13851,7539,6407872,6141943,13851,7539,6407872,6141943,1223348,589201,1928303169,1890884266,100,100,100,100,1.13,1.28,0.33,0.32
-15219,42,003,42003,16696,6708,6923230,5942318,16696,6708,6923230,5942318,1223348,589201,1928303169,1890884266,100,100,100,100,1.36,1.14,0.36,0.31
-15220,42,003,42003,17718,8852,12932130,12786279,17718,8852,12932130,12786279,1223348,589201,1928303169,1890884266,100,100,100,100,1.45,1.5,0.67,0.68
-15221,42,003,42003,31060,17851,15942137,15921838,31060,17851,15942137,15921838,1223348,589201,1928303169,1890884266,100,100,100,100,2.54,3.03,0.83,0.84
-15222,42,003,42003,3294,2146,2780269,2103908,3294,2146,2780269,2103908,1223348,589201,1928303169,1890884266,100,100,100,100,0.27,0.36,0.14,0.11
-15223,42,003,42003,7236,3669,5131407,4965692,7236,3669,5131407,4965692,1223348,589201,1928303169,1890884266,100,100,100,100,0.59,0.62,0.27,0.26
-15224,42,003,42003,10141,5953,2607025,2607025,10141,5953,2607025,2607025,1223348,589201,1928303169,1890884266,100,100,100,100,0.83,1.01,0.14,0.14
-15225,42,003,42003,1084,620,6074540,3965382,1084,620,6074540,3965382,1223348,589201,1928303169,1890884266,100,100,100,100,0.09,0.11,0.32,0.21
-15226,42,003,42003,13974,6810,6566989,6566989,13974,6810,6566989,6566989,1223348,589201,1928303169,1890884266,100,100,100,100,1.14,1.16,0.34,0.35
-15227,42,003,42003,28156,13415,16006615,16006615,28156,13415,16006615,16006615,1223348,589201,1928303169,1890884266,100,100,100,100,2.3,2.28,0.83,0.85
-15228,42,003,42003,17595,7771,8133684,8133684,17595,7771,8133684,8133684,1223348,589201,1928303169,1890884266,100,100,100,100,1.44,1.32,0.42,0.43
-15229,42,003,42003,13825,6497,10480076,10480076,13825,6497,10480076,10480076,1223348,589201,1928303169,1890884266,100,100,100,100,1.13,1.1,0.54,0.55
-15232,42,003,42003,11374,7020,2058658,2058658,11374,7020,2058658,2058658,1223348,589201,1928303169,1890884266,100,100,100,100,0.93,1.19,0.11,0.11
-15233,42,003,42003,4451,1725,4375910,3219616,4451,1725,4375910,3219616,1223348,589201,1928303169,1890884266,100,100,100,100,0.36,0.29,0.23,0.17
-15234,42,003,42003,14056,6751,8198923,8198923,14056,6751,8198923,8198923,1223348,589201,1928303169,1890884266,100,100,100,100,1.15,1.15,0.43,0.43
-15235,42,003,42003,34580,16780,37977161,37977161,34580,16780,37977161,37977161,1223348,589201,1928303169,1890884266,100,100,100,100,2.83,2.85,1.97,2.01
-15236,42,003,42003,29724,13843,28746387,28746387,29724,13843,28746387,28746387,1223348,589201,1928303169,1890884266,100,100,100,100,2.43,2.35,1.49,1.52
-15237,42,003,42003,41895,18766,62870802,62709050,41895,18766,62870802,62709050,1223348,589201,1928303169,1890884266,100,100,100,100,3.42,3.18,3.26,3.32
-15238,42,003,42003,13162,6088,44499848,42425826,13162,6088,44499848,42425826,1223348,589201,1928303169,1890884266,100,100,100,100,1.08,1.03,2.31,2.24
-15239,42,003,42003,21024,8746,41398514,41398514,21024,8746,41398514,41398514,1223348,589201,1928303169,1890884266,100,100,100,100,1.72,1.48,2.15,2.19
-15241,42,003,42003,20095,7721,26640797,26620466,20395,7832,26959369,26939038,1223348,589201,1928303169,1890884266,98.53,98.58,98.82,98.82,1.64,1.31,1.38,1.41
-15241,42,125,42125,300,111,318572,318572,20395,7832,26959369,26939038,207820,92977,2229737998,2219591093,1.47,1.42,1.18,1.18,0.14,0.12,0.01,0.01
-15243,42,003,42003,13406,5961,7796614,7789902,13406,5961,7796614,7789902,1223348,589201,1928303169,1890884266,100,100,100,100,1.1,1.01,0.4,0.41
-15260,42,003,42003,0,0,209620,209620,0,0,209620,209620,1223348,589201,1928303169,1890884266,0,0,100,100,0,0,0.01,0.01
-15290,42,003,42003,0,0,103613,103613,0,0,103613,103613,1223348,589201,1928303169,1890884266,0,0,100,100,0,0,0.01,0.01
-15301,42,125,42125,49331,22432,316468056,315753777,49331,22432,316468056,315753777,207820,92977,2229737998,2219591093,100,100,100,100,23.74,24.13,14.19,14.23
-15310,42,059,42059,290,170,48030870,48030870,290,170,48030870,48030870,38686,16460,1496954795,1491700255,100,100,100,100,0.75,1.03,3.21,3.22
-15311,42,125,42125,1391,567,60948591,60948591,1391,567,60948591,60948591,207820,92977,2229737998,2219591093,100,100,100,100,0.67,0.61,2.73,2.75
-15312,42,125,42125,3579,1556,194252803,194179227,3579,1556,194252803,194179227,207820,92977,2229737998,2219591093,100,100,100,100,1.72,1.67,8.71,8.75
-15313,42,125,42125,377,175,1817018,1817018,377,175,1817018,1817018,207820,92977,2229737998,2219591093,100,100,100,100,0.18,0.19,0.08,0.08
-15314,42,125,42125,3788,1796,44860875,44816312,3788,1796,44860875,44816312,207820,92977,2229737998,2219591093,100,100,100,100,1.82,1.93,2.01,2.02
-15315,42,059,42059,776,348,3425858,3425858,776,348,3425858,3425858,38686,16460,1496954795,1491700255,100,100,100,100,2.01,2.11,0.23,0.23
-15316,42,059,42059,131,52,1023139,1022410,131,52,1023139,1022410,38686,16460,1496954795,1491700255,100,100,100,100,0.34,0.32,0.07,0.07
-15317,42,125,42125,36535,15514,119316675,118423624,36535,15514,119316675,118423624,207820,92977,2229737998,2219591093,100,100,100,100,17.58,16.69,5.35,5.34
-15320,42,059,42059,5384,2480,101429766,100570880,5384,2480,101429766,100570880,38686,16460,1496954795,1491700255,100,100,100,100,13.92,15.07,6.78,6.74
-15321,42,125,42125,1676,717,2823159,2823159,1676,717,2823159,2823159,207820,92977,2229737998,2219591093,100,100,100,100,0.81,0.77,0.13,0.13
-15322,42,059,42059,1368,635,29320634,29250571,2018,938,36925694,36779910,38686,16460,1496954795,1491700255,67.79,67.7,79.4,79.53,3.54,3.86,1.96,1.96
-15322,42,125,42125,650,303,7605060,7529339,2018,938,36925694,36779910,207820,92977,2229737998,2219591093,32.21,32.3,20.6,20.47,0.31,0.33,0.34,0.34
-15323,42,125,42125,4542,1916,179061610,179028967,4542,1916,179061610,179028967,207820,92977,2229737998,2219591093,100,100,100,100,2.19,2.06,8.03,8.07
-15324,42,125,42125,632,333,995303,995303,632,333,995303,995303,207820,92977,2229737998,2219591093,100,100,100,100,0.3,0.36,0.04,0.04
-15325,42,059,42059,439,194,626186,626186,439,194,626186,626186,38686,16460,1496954795,1491700255,100,100,100,100,1.13,1.18,0.04,0.04
-15327,42,059,42059,1527,664,52254307,51486321,1527,664,52254307,51486321,38686,16460,1496954795,1491700255,100,100,100,100,3.95,4.03,3.49,3.45
-15329,42,059,42059,326,143,26005161,25959776,1709,731,105087984,105015222,38686,16460,1496954795,1491700255,19.08,19.56,24.75,24.72,0.84,0.87,1.74,1.74
-15329,42,125,42125,1383,588,79082823,79055446,1709,731,105087984,105015222,207820,92977,2229737998,2219591093,80.92,80.44,75.25,75.28,0.67,0.63,3.55,3.56
-15330,42,125,42125,5299,2264,116662230,116598464,5299,2264,116662230,116598464,207820,92977,2229737998,2219591093,100,100,100,100,2.55,2.44,5.23,5.25
-15331,42,125,42125,1090,522,2015586,1972370,1090,522,2015586,1972370,207820,92977,2229737998,2219591093,100,100,100,100,0.52,0.56,0.09,0.09
-15332,42,003,42003,1475,609,8694409,8694409,8148,3764,71113420,70637742,1223348,589201,1928303169,1890884266,18.1,16.18,12.23,12.31,0.12,0.1,0.45,0.46
-15332,42,125,42125,6673,3155,62419011,61943333,8148,3764,71113420,70637742,207820,92977,2229737998,2219591093,81.9,83.82,87.77,87.69,3.21,3.39,2.8,2.79
-15333,42,125,42125,2150,989,35945305,35710221,2150,989,35945305,35710221,207820,92977,2229737998,2219591093,100,100,100,100,1.03,1.06,1.61,1.61
-15334,42,059,42059,113,47,4910845,4910845,113,47,4910845,4910845,38686,16460,1496954795,1491700255,100,100,100,100,0.29,0.29,0.33,0.33
-15337,42,059,42059,744,320,82675562,82659832,744,320,82675562,82659832,38686,16460,1496954795,1491700255,100,100,100,100,1.92,1.94,5.52,5.54
-15338,42,059,42059,1606,735,49664700,48235683,1606,735,49664700,48235683,38686,16460,1496954795,1491700255,100,100,100,100,4.15,4.47,3.32,3.23
-15340,42,125,42125,1469,631,40023010,40023010,1469,631,40023010,40023010,207820,92977,2229737998,2219591093,100,100,100,100,0.71,0.68,1.79,1.8
-15341,42,059,42059,869,451,127461664,127441990,869,451,127461664,127441990,38686,16460,1496954795,1491700255,100,100,100,100,2.25,2.74,8.51,8.54
-15342,42,125,42125,4818,2273,8654913,8654913,4818,2273,8654913,8654913,207820,92977,2229737998,2219591093,100,100,100,100,2.32,2.44,0.39,0.39
-15344,42,059,42059,1450,684,37106480,37099411,1450,684,37106480,37099411,38686,16460,1496954795,1491700255,100,100,100,100,3.75,4.16,2.48,2.49
-15345,42,059,42059,47,20,2512242,2512242,1642,799,50262601,50262601,38686,16460,1496954795,1491700255,2.86,2.5,5,5,0.12,0.12,0.17,0.17
-15345,42,125,42125,1595,779,47750359,47750359,1642,799,50262601,50262601,207820,92977,2229737998,2219591093,97.14,97.5,95,95,0.77,0.84,2.14,2.15
-15346,42,059,42059,749,318,2351768,2351768,749,318,2351768,2351768,38686,16460,1496954795,1491700255,100,100,100,100,1.94,1.93,0.16,0.16
-15347,42,125,42125,582,288,1563588,1563588,582,288,1563588,1563588,207820,92977,2229737998,2219591093,100,100,100,100,0.28,0.31,0.07,0.07
-15348,42,125,42125,283,131,593615,420084,283,131,593615,420084,207820,92977,2229737998,2219591093,100,100,100,100,0.14,0.14,0.03,0.02
-15349,42,059,42059,1737,804,100070422,100005067,1737,804,100070422,100005067,38686,16460,1496954795,1491700255,100,100,100,100,4.49,4.88,6.68,6.7
-15350,42,125,42125,425,210,137216,137216,425,210,137216,137216,207820,92977,2229737998,2219591093,100,100,100,100,0.2,0.23,0.01,0.01
-15351,42,059,42059,901,412,3167199,2826250,901,412,3167199,2826250,38686,16460,1496954795,1491700255,100,100,100,100,2.33,2.5,0.21,0.19
-15352,42,059,42059,987,485,128837736,128817942,987,485,128837736,128817942,38686,16460,1496954795,1491700255,100,100,100,100,2.55,2.95,8.61,8.64
-15353,42,059,42059,64,26,153322,153322,64,26,153322,153322,38686,16460,1496954795,1491700255,100,100,100,100,0.17,0.16,0.01,0.01
-15357,42,059,42059,1661,724,21932623,20829600,1661,724,21932623,20829600,38686,16460,1496954795,1491700255,100,100,100,100,4.29,4.4,1.47,1.4
-15358,42,125,42125,923,402,2189670,2189670,923,402,2189670,2189670,207820,92977,2229737998,2219591093,100,100,100,100,0.44,0.43,0.1,0.1
-15359,42,059,42059,174,78,367728,367728,174,78,367728,367728,38686,16460,1496954795,1491700255,100,100,100,100,0.45,0.47,0.02,0.02
-15360,42,125,42125,1731,750,66293831,66293831,1731,750,66293831,66293831,207820,92977,2229737998,2219591093,100,100,100,100,0.83,0.81,2.97,2.99
-15361,42,125,42125,151,68,245813,245813,151,68,245813,245813,207820,92977,2229737998,2219591093,100,100,100,100,0.07,0.07,0.01,0.01
-15362,42,059,42059,767,347,67154074,67042845,767,347,67154074,67042845,38686,16460,1496954795,1491700255,100,100,100,100,1.98,2.11,4.49,4.49
-15363,42,125,42125,760,351,597928,597928,760,351,597928,597928,207820,92977,2229737998,2219591093,100,100,100,100,0.37,0.38,0.03,0.03
-15364,42,059,42059,869,368,96401077,96370936,869,368,96401077,96370936,38686,16460,1496954795,1491700255,100,100,100,100,2.25,2.24,6.44,6.46
-15366,42,125,42125,164,84,922038,922038,164,84,922038,922038,207820,92977,2229737998,2219591093,100,100,100,100,0.08,0.09,0.04,0.04
-15367,42,125,42125,8731,2970,23926153,23864300,8731,2970,23926153,23864300,207820,92977,2229737998,2219591093,100,100,100,100,4.2,3.19,1.07,1.08
-15368,42,125,42125,473,230,670717,493417,473,230,670717,493417,207820,92977,2229737998,2219591093,100,100,100,100,0.23,0.25,0.03,0.02
-15370,42,059,42059,14836,5494,379292883,379132625,14870,5506,383477836,383317578,38686,16460,1496954795,1491700255,99.77,99.78,98.91,98.91,38.35,33.38,25.34,25.42
-15370,42,125,42125,34,12,4184953,4184953,14870,5506,383477836,383317578,207820,92977,2229737998,2219591093,0.23,0.22,1.09,1.09,0.02,0.01,0.19,0.19
-15376,42,125,42125,1740,725,99904037,99456108,1740,725,99904037,99456108,207820,92977,2229737998,2219591093,100,100,100,100,0.84,0.78,4.48,4.48
-15377,42,059,42059,152,71,30408669,30382661,724,321,106677303,106651295,38686,16460,1496954795,1491700255,20.99,22.12,28.51,28.49,0.39,0.43,2.03,2.04
-15377,42,125,42125,572,250,76268634,76268634,724,321,106677303,106651295,207820,92977,2229737998,2219591093,79.01,77.88,71.49,71.51,0.28,0.27,3.42,3.44
-15378,42,125,42125,106,50,145166,145166,106,50,145166,145166,207820,92977,2229737998,2219591093,100,100,100,100,0.05,0.05,0.01,0.01
-15379,42,125,42125,132,64,1036166,1036166,132,64,1036166,1036166,207820,92977,2229737998,2219591093,100,100,100,100,0.06,0.07,0.05,0.05
-15380,42,059,42059,719,390,100369880,100186636,719,390,100369880,100186636,38686,16460,1496954795,1491700255,100,100,100,100,1.86,2.37,6.7,6.72
-15401,42,051,42051,32288,15009,151207313,151007678,32288,15009,151207313,151007678,136606,62773,2067612655,2046968639,100,100,100,100,23.64,23.91,7.31,7.38
-15410,42,051,42051,905,460,27998441,27406340,905,460,27998441,27406340,136606,62773,2067612655,2046968639,100,100,100,100,0.66,0.73,1.35,1.34
-15411,42,111,42111,661,580,49757741,45317580,661,580,49757741,45317580,77742,38113,2799600068,2782615877,100,100,100,100,0.85,1.52,1.78,1.63
-15412,42,125,42125,470,242,5571531,5380093,470,242,5571531,5380093,207820,92977,2229737998,2219591093,100,100,100,100,0.23,0.26,0.25,0.24
-15413,42,051,42051,551,274,1912872,1912872,551,274,1912872,1912872,136606,62773,2067612655,2046968639,100,100,100,100,0.4,0.44,0.09,0.09
-15417,42,051,42051,5232,2752,28127984,27360146,9469,4276,58245531,56585216,136606,62773,2067612655,2046968639,55.25,64.36,48.29,48.35,3.83,4.38,1.36,1.34
-15417,42,125,42125,4237,1524,30117547,29225070,9469,4276,58245531,56585216,207820,92977,2229737998,2219591093,44.75,35.64,51.71,51.65,2.04,1.64,1.35,1.32
-15419,42,125,42125,4492,1676,4928717,4490316,4492,1676,4928717,4490316,207820,92977,2229737998,2219591093,100,100,100,100,2.16,1.8,0.22,0.2
-15420,42,051,42051,251,118,1188544,1188544,251,118,1188544,1188544,136606,62773,2067612655,2046968639,100,100,100,100,0.18,0.19,0.06,0.06
-15421,42,051,42051,112,94,561962,561962,112,94,561962,561962,136606,62773,2067612655,2046968639,100,100,100,100,0.08,0.15,0.03,0.03
-15422,42,051,42051,220,106,234243,234243,220,106,234243,234243,136606,62773,2067612655,2046968639,100,100,100,100,0.16,0.17,0.01,0.01
-15423,42,125,42125,1781,792,42692331,42500878,1781,792,42692331,42500878,207820,92977,2229737998,2219591093,100,100,100,100,0.86,0.85,1.91,1.91
-15424,42,051,42051,553,681,64448147,60770014,2489,1802,192504643,187704434,136606,62773,2067612655,2046968639,22.22,37.79,33.48,32.38,0.4,1.08,3.12,2.97
-15424,42,111,42111,1936,1121,128056496,126934420,2489,1802,192504643,187704434,77742,38113,2799600068,2782615877,77.78,62.21,66.52,67.62,2.49,2.94,4.57,4.56
-15425,42,051,42051,19270,8885,145638202,144312252,19270,8885,145638202,144312252,136606,62773,2067612655,2046968639,100,100,100,100,14.11,14.15,7.04,7.05
-15427,42,125,42125,1091,509,27077308,27077308,1091,509,27077308,27077308,207820,92977,2229737998,2219591093,100,100,100,100,0.52,0.55,1.21,1.22
-15428,42,051,42051,1806,808,54294229,53104461,1806,808,54294229,53104461,136606,62773,2067612655,2046968639,100,100,100,100,1.32,1.29,2.63,2.59
-15429,42,125,42125,126,71,1227381,802980,126,71,1227381,802980,207820,92977,2229737998,2219591093,100,100,100,100,0.06,0.08,0.06,0.04
-15430,42,051,42051,314,132,1013474,919199,314,132,1013474,919199,136606,62773,2067612655,2046968639,100,100,100,100,0.23,0.21,0.05,0.04
-15431,42,051,42051,4744,2061,127235715,126581922,4744,2061,127235715,126581922,136606,62773,2067612655,2046968639,100,100,100,100,3.47,3.28,6.15,6.18
-15432,42,125,42125,427,224,1992345,1658724,427,224,1992345,1658724,207820,92977,2229737998,2219591093,100,100,100,100,0.21,0.24,0.09,0.07
-15433,42,051,42051,741,350,39276953,37190963,741,350,39276953,37190963,136606,62773,2067612655,2046968639,100,100,100,100,0.54,0.56,1.9,1.82
-15434,42,125,42125,313,144,812628,607190,313,144,812628,607190,207820,92977,2229737998,2219591093,100,100,100,100,0.15,0.15,0.04,0.03
-15435,42,051,42051,437,224,2873640,2842972,437,224,2873640,2842972,136606,62773,2067612655,2046968639,100,100,100,100,0.32,0.36,0.14,0.14
-15436,42,051,42051,2740,1158,18106141,18106141,2740,1158,18106141,18106141,136606,62773,2067612655,2046968639,100,100,100,100,2.01,1.84,0.88,0.88
-15437,42,051,42051,2573,1168,180999452,180791617,2573,1168,180999452,180791617,136606,62773,2067612655,2046968639,100,100,100,100,1.88,1.86,8.75,8.83
-15438,42,051,42051,2221,1007,31095468,29831109,2221,1007,31095468,29831109,136606,62773,2067612655,2046968639,100,100,100,100,1.63,1.6,1.5,1.46
-15440,42,051,42051,349,184,39287469,39287469,349,184,39287469,39287469,136606,62773,2067612655,2046968639,100,100,100,100,0.26,0.29,1.9,1.92
-15442,42,051,42051,2105,990,38930378,38854612,2105,990,38930378,38854612,136606,62773,2067612655,2046968639,100,100,100,100,1.54,1.58,1.88,1.9
-15443,42,051,42051,377,156,4397241,4397241,377,156,4397241,4397241,136606,62773,2067612655,2046968639,100,100,100,100,0.28,0.25,0.21,0.21
-15444,42,051,42051,517,279,1637961,1637961,517,279,1637961,1637961,136606,62773,2067612655,2046968639,100,100,100,100,0.38,0.44,0.08,0.08
-15445,42,051,42051,2693,1284,54406617,54386676,2693,1284,54406617,54386676,136606,62773,2067612655,2046968639,100,100,100,100,1.97,2.05,2.63,2.66
-15446,42,051,42051,324,155,3882527,3882527,324,155,3882527,3882527,136606,62773,2067612655,2046968639,100,100,100,100,0.24,0.25,0.19,0.19
-15447,42,051,42051,181,82,1013163,1013163,181,82,1013163,1013163,136606,62773,2067612655,2046968639,100,100,100,100,0.13,0.13,0.05,0.05
-15448,42,129,42129,192,86,2629921,2480188,192,86,2629921,2480188,365169,168199,2683420993,2661353634,100,100,100,100,0.05,0.05,0.1,0.09
-15449,42,051,42051,184,96,404221,404221,184,96,404221,404221,136606,62773,2067612655,2046968639,100,100,100,100,0.13,0.15,0.02,0.02
-15450,42,051,42051,2323,183,4663641,4126219,2323,183,4663641,4126219,136606,62773,2067612655,2046968639,100,100,100,100,1.7,0.29,0.23,0.2
-15451,42,051,42051,955,435,26676367,26321881,955,435,26676367,26321881,136606,62773,2067612655,2046968639,100,100,100,100,0.7,0.69,1.29,1.29
-15454,42,051,42051,237,92,3343245,3343245,237,92,3343245,3343245,136606,62773,2067612655,2046968639,100,100,100,100,0.17,0.15,0.16,0.16
-15455,42,051,42051,298,152,1042214,1042214,298,152,1042214,1042214,136606,62773,2067612655,2046968639,100,100,100,100,0.22,0.24,0.05,0.05
-15456,42,051,42051,2976,1294,19786136,19762509,2976,1294,19786136,19762509,136606,62773,2067612655,2046968639,100,100,100,100,2.18,2.06,0.96,0.97
-15458,42,051,42051,2379,1048,40540940,40540940,2379,1048,40540940,40540940,136606,62773,2067612655,2046968639,100,100,100,100,1.74,1.67,1.96,1.98
-15459,42,051,42051,1763,789,87432520,86421096,1763,789,87432520,86421096,136606,62773,2067612655,2046968639,100,100,100,100,1.29,1.26,4.23,4.22
-15460,42,051,42051,120,47,1265917,1083961,120,47,1265917,1083961,136606,62773,2067612655,2046968639,100,100,100,100,0.09,0.07,0.06,0.05
-15461,42,051,42051,4333,1992,27968271,27348492,4333,1992,27968271,27348492,136606,62773,2067612655,2046968639,100,100,100,100,3.17,3.17,1.35,1.34
-15462,42,051,42051,398,168,3663336,3663336,398,168,3663336,3663336,136606,62773,2067612655,2046968639,100,100,100,100,0.29,0.27,0.18,0.18
-15463,42,051,42051,64,31,816354,816354,64,31,816354,816354,136606,62773,2067612655,2046968639,100,100,100,100,0.05,0.05,0.04,0.04
-15464,42,051,42051,1536,667,120479475,119073944,1536,667,120479475,119073944,136606,62773,2067612655,2046968639,100,100,100,100,1.12,1.06,5.83,5.82
-15466,42,051,42051,458,214,1468537,1105417,458,214,1468537,1105417,136606,62773,2067612655,2046968639,100,100,100,100,0.34,0.34,0.07,0.05
-15467,42,051,42051,141,68,2975502,2590350,141,68,2975502,2590350,136606,62773,2067612655,2046968639,100,100,100,100,0.1,0.11,0.14,0.13
-15468,42,051,42051,2303,1061,26038407,26011583,2303,1061,26038407,26011583,136606,62773,2067612655,2046968639,100,100,100,100,1.69,1.69,1.26,1.27
-15469,42,051,42051,2331,975,88219137,87942217,2331,975,88219137,87942217,136606,62773,2067612655,2046968639,100,100,100,100,1.71,1.55,4.27,4.3
-15470,42,051,42051,982,512,82196729,81705154,982,512,82196729,81705154,136606,62773,2067612655,2046968639,100,100,100,100,0.72,0.82,3.98,3.99
-15472,42,051,42051,306,130,630497,630497,306,130,630497,630497,136606,62773,2067612655,2046968639,100,100,100,100,0.22,0.21,0.03,0.03
-15473,42,051,42051,3862,1792,60817011,60371945,3862,1792,60817011,60371945,136606,62773,2067612655,2046968639,100,100,100,100,2.83,2.85,2.94,2.95
-15474,42,051,42051,2049,943,19177374,18174349,2049,943,19177374,18174349,136606,62773,2067612655,2046968639,100,100,100,100,1.5,1.5,0.93,0.89
-15475,42,051,42051,1356,705,8371453,8371453,1356,705,8371453,8371453,136606,62773,2067612655,2046968639,100,100,100,100,0.99,1.12,0.4,0.41
-15476,42,051,42051,157,79,98143,98143,157,79,98143,98143,136606,62773,2067612655,2046968639,100,100,100,100,0.11,0.13,0,0
-15477,42,125,42125,855,417,686126,490606,855,417,686126,490606,207820,92977,2229737998,2219591093,100,100,100,100,0.41,0.45,0.03,0.02
-15478,42,051,42051,6446,2729,162641781,162629778,6446,2729,162641781,162629778,136606,62773,2067612655,2046968639,100,100,100,100,4.72,4.35,7.87,7.94
-15479,42,129,42129,2113,948,55739234,54969797,2113,948,55739234,54969797,365169,168199,2683420993,2661353634,100,100,100,100,0.58,0.56,2.08,2.07
-15480,42,051,42051,1946,851,46938617,46857545,1946,851,46938617,46857545,136606,62773,2067612655,2046968639,100,100,100,100,1.42,1.36,2.27,2.29
-15482,42,051,42051,604,293,3035148,2990720,604,293,3035148,2990720,136606,62773,2067612655,2046968639,100,100,100,100,0.44,0.47,0.15,0.15
-15483,42,125,42125,513,257,808718,711436,513,257,808718,711436,207820,92977,2229737998,2219591093,100,100,100,100,0.25,0.28,0.04,0.03
-15484,42,051,42051,328,146,1647825,1647825,328,146,1647825,1647825,136606,62773,2067612655,2046968639,100,100,100,100,0.24,0.23,0.08,0.08
-15486,42,051,42051,2303,987,51000399,50566480,2303,987,51000399,50566480,136606,62773,2067612655,2046968639,100,100,100,100,1.69,1.57,2.47,2.47
-15489,42,051,42051,389,174,2417238,2417238,389,174,2417238,2417238,136606,62773,2067612655,2046968639,100,100,100,100,0.28,0.28,0.12,0.12
-15490,42,051,42051,628,262,24863951,24863951,628,262,24863951,24863951,136606,62773,2067612655,2046968639,100,100,100,100,0.46,0.42,1.2,1.21
-15492,42,051,42051,108,53,1726928,1560968,108,53,1726928,1560968,136606,62773,2067612655,2046968639,100,100,100,100,0.08,0.08,0.08,0.08
-15501,42,111,42111,16834,7659,332052345,330569679,16861,7700,348452783,346970117,77742,38113,2799600068,2782615877,99.84,99.47,95.29,95.27,21.65,20.1,11.86,11.88
-15501,42,129,42129,27,41,16400438,16400438,16861,7700,348452783,346970117,365169,168199,2683420993,2661353634,0.16,0.53,4.71,4.73,0.01,0.02,0.61,0.62
-15502,42,111,42111,191,775,15526326,15500968,191,775,15526326,15500968,77742,38113,2799600068,2782615877,100,100,100,100,0.25,2.03,0.55,0.56
-15510,42,111,42111,2229,1,876630,876630,2229,1,876630,876630,77742,38113,2799600068,2782615877,100,100,100,100,2.87,0,0.03,0.03
-15520,42,111,42111,293,120,1754124,1754124,293,120,1754124,1754124,77742,38113,2799600068,2782615877,100,100,100,100,0.38,0.31,0.06,0.06
-15521,42,009,42009,1872,793,92176984,92166462,1872,793,92176984,92166462,49762,23954,2633772365,2621835502,100,100,100,100,3.76,3.31,3.5,3.52
-15522,42,009,42009,12036,5967,487720689,485184074,12036,5967,487720689,485184074,49762,23954,2633772365,2621835502,100,100,100,100,24.19,24.91,18.52,18.51
-15530,42,111,42111,5368,2310,226751650,226665820,5368,2310,226751650,226665820,77742,38113,2799600068,2782615877,100,100,100,100,6.9,6.06,8.1,8.15
-15531,42,111,42111,3835,1906,135034788,134546646,3861,1934,153269177,152781035,77742,38113,2799600068,2782615877,99.33,98.55,88.1,88.07,4.93,5,4.82,4.84
-15531,42,129,42129,26,28,18234389,18234389,3861,1934,153269177,152781035,365169,168199,2683420993,2661353634,0.67,1.45,11.9,11.93,0.01,0.02,0.68,0.69
-15532,42,111,42111,142,64,1748645,1748645,142,64,1748645,1748645,77742,38113,2799600068,2782615877,100,100,100,100,0.18,0.17,0.06,0.06
-15533,42,009,42009,1280,636,83590304,83031245,1370,728,97198858,96472498,49762,23954,2633772365,2621835502,93.43,87.36,86,86.07,2.57,2.66,3.17,3.17
-15533,42,057,42057,90,92,13608554,13441253,1370,728,97198858,96472498,14845,7122,1134558266,1133252780,6.57,12.64,14,13.93,0.61,1.29,1.2,1.19
-15534,42,009,42009,918,441,124514856,124479794,932,445,125689756,125654694,49762,23954,2633772365,2621835502,98.5,99.1,99.07,99.06,1.84,1.84,4.73,4.75
-15534,42,111,42111,14,4,1174900,1174900,932,445,125689756,125654694,77742,38113,2799600068,2782615877,1.5,0.9,0.93,0.94,0.02,0.01,0.04,0.04
-15535,42,009,42009,2203,1262,408902731,408605446,2203,1262,408902731,408605446,49762,23954,2633772365,2621835502,100,100,100,100,4.43,5.27,15.53,15.58
-15536,42,057,42057,459,261,88071658,88070983,459,261,88071658,88070983,14845,7122,1134558266,1133252780,100,100,100,100,3.09,3.66,7.76,7.77
-15537,42,009,42009,7952,3801,292780679,290200532,7952,3801,292780679,290200532,49762,23954,2633772365,2621835502,100,100,100,100,15.98,15.87,11.12,11.07
-15538,42,111,42111,824,621,192700185,192681359,824,621,192700185,192681359,77742,38113,2799600068,2782615877,100,100,100,100,1.06,1.63,6.88,6.92
-15539,42,009,42009,498,211,3567577,3567577,498,211,3567577,3567577,49762,23954,2633772365,2621835502,100,100,100,100,1,0.88,0.14,0.14
-15540,42,111,42111,290,257,94772468,93252205,290,257,94772468,93252205,77742,38113,2799600068,2782615877,100,100,100,100,0.37,0.67,3.39,3.35
-15541,42,111,42111,3721,1776,93795317,93121694,3721,1776,93795317,93121694,77742,38113,2799600068,2782615877,100,100,100,100,4.79,4.66,3.35,3.35
-15542,42,111,42111,1175,529,84774169,84774169,1175,529,84774169,84774169,77742,38113,2799600068,2782615877,100,100,100,100,1.51,1.39,3.03,3.05
-15544,42,111,42111,264,108,1506529,1506529,264,108,1506529,1506529,77742,38113,2799600068,2782615877,100,100,100,100,0.34,0.28,0.05,0.05
-15545,42,009,42009,2302,1042,78160535,77693930,2879,1333,128503017,128036412,49762,23954,2633772365,2621835502,79.96,78.17,60.82,60.68,4.63,4.35,2.97,2.96
-15545,42,111,42111,577,291,50342482,50342482,2879,1333,128503017,128036412,77742,38113,2799600068,2782615877,20.04,21.83,39.18,39.32,0.74,0.76,1.8,1.81
-15546,42,111,42111,386,172,1998155,1998155,386,172,1998155,1998155,77742,38113,2799600068,2782615877,100,100,100,100,0.5,0.45,0.07,0.07
-15547,42,111,42111,504,237,2346900,2346900,504,237,2346900,2346900,77742,38113,2799600068,2782615877,100,100,100,100,0.65,0.62,0.08,0.08
-15550,42,009,42009,1699,1041,140997844,140496123,1699,1041,140997844,140496123,49762,23954,2633772365,2621835502,100,100,100,100,3.41,4.35,5.35,5.36
-15551,42,111,42111,860,443,93057743,93040958,860,443,93057743,93040958,77742,38113,2799600068,2782615877,100,100,100,100,1.11,1.16,3.32,3.34
-15552,42,111,42111,6115,2753,270466031,270376039,6115,2753,270466031,270376039,77742,38113,2799600068,2782615877,100,100,100,100,7.87,7.22,9.66,9.72
-15554,42,009,42009,2553,1197,92661221,92365552,2553,1197,92661221,92365552,49762,23954,2633772365,2621835502,100,100,100,100,5.13,5,3.52,3.52
-15555,42,111,42111,112,51,194408,194408,112,51,194408,194408,77742,38113,2799600068,2782615877,100,100,100,100,0.14,0.13,0.01,0.01
-15557,42,051,42051,14,12,1996169,1996169,3684,2110,235389640,235092082,136606,62773,2067612655,2046968639,0.38,0.57,0.85,0.85,0.01,0.02,0.1,0.1
-15557,42,111,42111,3670,2098,233393471,233095913,3684,2110,235389640,235092082,77742,38113,2799600068,2782615877,99.62,99.43,99.15,99.15,4.72,5.5,8.34,8.38
-15558,42,111,42111,2126,909,94167868,94122748,2126,909,94167868,94122748,77742,38113,2799600068,2782615877,100,100,100,100,2.73,2.39,3.36,3.38
-15559,42,009,42009,1960,934,121611427,119572619,1968,937,122653454,120614646,49762,23954,2633772365,2621835502,99.59,99.68,99.15,99.14,3.94,3.9,4.62,4.56
-15559,42,111,42111,8,3,1042027,1042027,1968,937,122653454,120614646,77742,38113,2799600068,2782615877,0.41,0.32,0.85,0.86,0.01,0.01,0.04,0.04
-15560,42,111,42111,175,76,344077,344077,175,76,344077,344077,77742,38113,2799600068,2782615877,100,100,100,100,0.23,0.2,0.01,0.01
-15561,42,111,42111,168,80,1481919,1481919,168,80,1481919,1481919,77742,38113,2799600068,2782615877,100,100,100,100,0.22,0.21,0.05,0.05
-15562,42,111,42111,201,74,4219404,4203501,201,74,4219404,4203501,77742,38113,2799600068,2782615877,100,100,100,100,0.26,0.19,0.15,0.15
-15563,42,111,42111,3345,1645,147028649,147021510,3345,1645,147028649,147021510,77742,38113,2799600068,2782615877,100,100,100,100,4.3,4.32,5.25,5.28
-15564,42,111,42111,50,28,3126150,3126150,50,28,3126150,3126150,77742,38113,2799600068,2782615877,100,100,100,100,0.06,0.07,0.11,0.11
-15601,42,129,42129,59483,26798,223657198,223247865,59483,26798,223657198,223247865,365169,168199,2683420993,2661353634,100,100,100,100,16.29,15.93,8.33,8.39
-15610,42,051,42051,1660,794,27568806,27555195,3738,1767,100049918,99891785,136606,62773,2067612655,2046968639,44.41,44.93,27.56,27.59,1.22,1.26,1.33,1.35
-15610,42,129,42129,2078,973,72481112,72336590,3738,1767,100049918,99891785,365169,168199,2683420993,2661353634,55.59,55.07,72.44,72.41,0.57,0.58,2.7,2.72
-15611,42,129,42129,543,306,1784469,1784469,543,306,1784469,1784469,365169,168199,2683420993,2661353634,100,100,100,100,0.15,0.18,0.07,0.07
-15612,42,129,42129,474,205,6494180,6494180,474,205,6494180,6494180,365169,168199,2683420993,2661353634,100,100,100,100,0.13,0.12,0.24,0.24
-15613,42,005,42005,5137,2329,59747302,59065613,13933,6138,156839320,154714575,68941,32520,1719343888,1691787010,36.87,37.94,38.09,38.18,7.45,7.16,3.48,3.49
-15613,42,129,42129,8796,3809,97092018,95648962,13933,6138,156839320,154714575,365169,168199,2683420993,2661353634,63.13,62.06,61.91,61.82,2.41,2.26,3.62,3.59
-15615,42,129,42129,387,154,2548093,2548093,387,154,2548093,2548093,365169,168199,2683420993,2661353634,100,100,100,100,0.11,0.09,0.09,0.1
-15616,42,129,42129,23,13,156251,138418,23,13,156251,138418,365169,168199,2683420993,2661353634,100,100,100,100,0.01,0.01,0.01,0.01
-15617,42,129,42129,367,164,1147481,1140917,367,164,1147481,1140917,365169,168199,2683420993,2661353634,100,100,100,100,0.1,0.1,0.04,0.04
-15618,42,005,42005,797,348,48251694,47905099,2634,1202,72569948,71771097,68941,32520,1719343888,1691787010,30.26,28.95,66.49,66.75,1.16,1.07,2.81,2.83
-15618,42,063,42063,27,14,4048483,4048483,2634,1202,72569948,71771097,88880,38236,2160811828,2141997762,1.03,1.16,5.58,5.64,0.03,0.04,0.19,0.19
-15618,42,129,42129,1810,840,20269771,19817515,2634,1202,72569948,71771097,365169,168199,2683420993,2661353634,68.72,69.88,27.93,27.61,0.5,0.5,0.76,0.74
-15620,42,129,42129,911,441,2475983,2475983,911,441,2475983,2475983,365169,168199,2683420993,2661353634,100,100,100,100,0.25,0.26,0.09,0.09
-15621,42,129,42129,47,20,16634,16634,47,20,16634,16634,365169,168199,2683420993,2661353634,100,100,100,100,0.01,0.01,0,0
-15622,42,051,42051,940,679,36567763,36567763,1387,1903,83912212,83898073,136606,62773,2067612655,2046968639,67.77,35.68,43.58,43.59,0.69,1.08,1.77,1.79
-15622,42,111,42111,133,956,21561386,21547247,1387,1903,83912212,83898073,77742,38113,2799600068,2782615877,9.59,50.24,25.7,25.68,0.17,2.51,0.77,0.77
-15622,42,129,42129,314,268,25783063,25783063,1387,1903,83912212,83898073,365169,168199,2683420993,2661353634,22.64,14.08,30.73,30.73,0.09,0.16,0.96,0.97
-15623,42,129,42129,762,329,4507343,4507343,762,329,4507343,4507343,365169,168199,2683420993,2661353634,100,100,100,100,0.21,0.2,0.17,0.17
-15624,42,129,42129,410,217,1610872,1610872,410,217,1610872,1610872,365169,168199,2683420993,2661353634,100,100,100,100,0.11,0.13,0.06,0.06
-15625,42,129,42129,144,61,1519026,1519026,144,61,1519026,1519026,365169,168199,2683420993,2661353634,100,100,100,100,0.04,0.04,0.06,0.06
-15626,42,129,42129,5105,2493,10217810,10217810,5105,2493,10217810,10217810,365169,168199,2683420993,2661353634,100,100,100,100,1.4,1.48,0.38,0.38
-15627,42,129,42129,6544,3034,73740020,73550737,6544,3034,73740020,73550737,365169,168199,2683420993,2661353634,100,100,100,100,1.79,1.8,2.75,2.76
-15628,42,129,42129,525,292,6611007,6611007,525,292,6611007,6611007,365169,168199,2683420993,2661353634,100,100,100,100,0.14,0.17,0.25,0.25
-15629,42,129,42129,676,367,380966,332499,676,367,380966,332499,365169,168199,2683420993,2661353634,100,100,100,100,0.19,0.22,0.01,0.01
-15631,42,051,42051,1075,494,2022063,2022063,1075,494,2022063,2022063,136606,62773,2067612655,2046968639,100,100,100,100,0.79,0.79,0.1,0.1
-15632,42,129,42129,9363,4154,71920008,70186315,9363,4154,71920008,70186315,365169,168199,2683420993,2661353634,100,100,100,100,2.56,2.47,2.68,2.64
-15633,42,129,42129,293,137,1632462,1632462,293,137,1632462,1632462,365169,168199,2683420993,2661353634,100,100,100,100,0.08,0.08,0.06,0.06
-15634,42,129,42129,523,264,391411,391411,523,264,391411,391411,365169,168199,2683420993,2661353634,100,100,100,100,0.14,0.16,0.01,0.01
-15635,42,129,42129,220,115,795716,782033,220,115,795716,782033,365169,168199,2683420993,2661353634,100,100,100,100,0.06,0.07,0.03,0.03
-15636,42,129,42129,3946,1433,7678207,7678207,3946,1433,7678207,7678207,365169,168199,2683420993,2661353634,100,100,100,100,1.08,0.85,0.29,0.29
-15637,42,129,42129,1861,893,12093561,12093561,1861,893,12093561,12093561,365169,168199,2683420993,2661353634,100,100,100,100,0.51,0.53,0.45,0.45
-15638,42,129,42129,288,149,461825,461825,288,149,461825,461825,365169,168199,2683420993,2661353634,100,100,100,100,0.08,0.09,0.02,0.02
-15639,42,129,42129,2301,1033,29935674,29854633,2301,1033,29935674,29854633,365169,168199,2683420993,2661353634,100,100,100,100,0.63,0.61,1.12,1.12
-15640,42,129,42129,378,160,1871235,1871235,378,160,1871235,1871235,365169,168199,2683420993,2661353634,100,100,100,100,0.1,0.1,0.07,0.07
-15641,42,129,42129,500,237,765919,622689,500,237,765919,622689,365169,168199,2683420993,2661353634,100,100,100,100,0.14,0.14,0.03,0.02
-15642,42,003,42003,180,81,999025,999025,45286,19410,114629807,114475840,1223348,589201,1928303169,1890884266,0.4,0.42,0.87,0.87,0.01,0.01,0.05,0.05
-15642,42,129,42129,45106,19329,113630782,113476815,45286,19410,114629807,114475840,365169,168199,2683420993,2661353634,99.6,99.58,99.13,99.13,12.35,11.49,4.23,4.26
-15644,42,129,42129,18836,9046,57207317,57207317,18836,9046,57207317,57207317,365169,168199,2683420993,2661353634,100,100,100,100,5.16,5.38,2.13,2.15
-15646,42,129,42129,233,123,3697987,3697987,233,123,3697987,3697987,365169,168199,2683420993,2661353634,100,100,100,100,0.06,0.07,0.14,0.14
-15647,42,129,42129,314,153,737101,737101,314,153,737101,737101,365169,168199,2683420993,2661353634,100,100,100,100,0.09,0.09,0.03,0.03
-15650,42,129,42129,28432,12619,193588466,193336516,28432,12619,193588466,193336516,365169,168199,2683420993,2661353634,100,100,100,100,7.79,7.5,7.21,7.26
-15655,42,129,42129,423,239,33397491,33374728,423,239,33397491,33374728,365169,168199,2683420993,2661353634,100,100,100,100,0.12,0.14,1.24,1.25
-15656,42,005,42005,4575,2245,47961486,46133845,10298,4787,100449514,97476844,68941,32520,1719343888,1691787010,44.43,46.9,47.75,47.33,6.64,6.9,2.79,2.73
-15656,42,129,42129,5723,2542,52488028,51342999,10298,4787,100449514,97476844,365169,168199,2683420993,2661353634,55.57,53.1,52.25,52.67,1.57,1.51,1.96,1.93
-15658,42,129,42129,8916,4835,255143295,254326324,8916,4835,255143295,254326324,365169,168199,2683420993,2661353634,100,100,100,100,2.44,2.87,9.51,9.56
-15660,42,129,42129,323,142,1351936,1351936,323,142,1351936,1351936,365169,168199,2683420993,2661353634,100,100,100,100,0.09,0.08,0.05,0.05
-15661,42,129,42129,504,241,958675,958675,504,241,958675,958675,365169,168199,2683420993,2661353634,100,100,100,100,0.14,0.14,0.04,0.04
-15662,42,129,42129,271,127,424967,424967,271,127,424967,424967,365169,168199,2683420993,2661353634,100,100,100,100,0.07,0.08,0.02,0.02
-15663,42,129,42129,455,220,2543196,2543196,455,220,2543196,2543196,365169,168199,2683420993,2661353634,100,100,100,100,0.12,0.13,0.09,0.1
-15665,42,129,42129,1472,664,2237022,2237022,1472,664,2237022,2237022,365169,168199,2683420993,2661353634,100,100,100,100,0.4,0.39,0.08,0.08
-15666,42,051,42051,1948,844,36482429,36223978,16461,7631,142942601,142447025,136606,62773,2067612655,2046968639,11.83,11.06,25.52,25.43,1.43,1.34,1.76,1.77
-15666,42,129,42129,14513,6787,106460172,106223047,16461,7631,142942601,142447025,365169,168199,2683420993,2661353634,88.17,88.94,74.48,74.57,3.97,4.04,3.97,3.99
-15668,42,003,42003,23,11,84860,84860,13139,5446,61053709,61036704,1223348,589201,1928303169,1890884266,0.18,0.2,0.14,0.14,0,0,0,0
-15668,42,129,42129,13116,5435,60968849,60951844,13139,5446,61053709,61036704,365169,168199,2683420993,2661353634,99.82,99.8,99.86,99.86,3.59,3.23,2.27,2.29
-15670,42,129,42129,3649,1627,99300810,99026685,3649,1627,99300810,99026685,365169,168199,2683420993,2661353634,100,100,100,100,1,0.97,3.7,3.72
-15671,42,129,42129,865,381,8269715,8269715,865,381,8269715,8269715,365169,168199,2683420993,2661353634,100,100,100,100,0.24,0.23,0.31,0.31
-15672,42,129,42129,3334,1633,30135017,30067677,3334,1633,30135017,30067677,365169,168199,2683420993,2661353634,100,100,100,100,0.91,0.97,1.12,1.13
-15673,42,005,42005,1296,599,1541069,1398119,1296,599,1541069,1398119,68941,32520,1719343888,1691787010,100,100,100,100,1.88,1.84,0.09,0.08
-15675,42,129,42129,1003,444,2397734,2397734,1003,444,2397734,2397734,365169,168199,2683420993,2661353634,100,100,100,100,0.27,0.26,0.09,0.09
-15676,42,129,42129,437,199,2406431,2406431,437,199,2406431,2406431,365169,168199,2683420993,2661353634,100,100,100,100,0.12,0.12,0.09,0.09
-15677,42,129,42129,389,297,50883961,50883961,389,297,50883961,50883961,365169,168199,2683420993,2661353634,100,100,100,100,0.11,0.18,1.9,1.91
-15678,42,129,42129,476,235,1485175,1485175,476,235,1485175,1485175,365169,168199,2683420993,2661353634,100,100,100,100,0.13,0.14,0.06,0.06
-15679,42,129,42129,3343,1494,61003361,60879861,3343,1494,61003361,60879861,365169,168199,2683420993,2661353634,100,100,100,100,0.92,0.89,2.27,2.29
-15680,42,129,42129,101,45,30739,30739,101,45,30739,30739,365169,168199,2683420993,2661353634,100,100,100,100,0.03,0.03,0,0
-15681,42,063,42063,2686,1227,73784428,72754183,5241,2288,139525181,135416464,88880,38236,2160811828,2141997762,51.25,53.63,52.88,53.73,3.02,3.21,3.41,3.4
-15681,42,129,42129,2555,1061,65740753,62662281,5241,2288,139525181,135416464,365169,168199,2683420993,2661353634,48.75,46.37,47.12,46.27,0.7,0.63,2.45,2.35
-15683,42,051,42051,1023,423,7537630,7537630,8248,3805,40432373,40413195,136606,62773,2067612655,2046968639,12.4,11.12,18.64,18.65,0.75,0.67,0.36,0.37
-15683,42,129,42129,7225,3382,32894743,32875565,8248,3805,40432373,40413195,365169,168199,2683420993,2661353634,87.6,88.88,81.36,81.35,1.98,2.01,1.23,1.24
-15684,42,129,42129,841,410,13008184,13008184,841,410,13008184,13008184,365169,168199,2683420993,2661353634,100,100,100,100,0.23,0.24,0.48,0.49
-15686,42,005,42005,972,418,26523968,26309733,972,418,26523968,26309733,68941,32520,1719343888,1691787010,100,100,100,100,1.41,1.29,1.54,1.56
-15687,42,129,42129,1476,686,75113465,74773608,1476,686,75113465,74773608,365169,168199,2683420993,2661353634,100,100,100,100,0.4,0.41,2.8,2.81
-15688,42,129,42129,641,302,4029923,4029923,641,302,4029923,4029923,365169,168199,2683420993,2661353634,100,100,100,100,0.18,0.18,0.15,0.15
-15689,42,129,42129,229,111,261668,261668,229,111,261668,261668,365169,168199,2683420993,2661353634,100,100,100,100,0.06,0.07,0.01,0.01
-15690,42,005,42005,3401,1568,57287180,56781480,9078,4513,63928181,63204969,68941,32520,1719343888,1691787010,37.46,34.74,89.61,89.84,4.93,4.82,3.33,3.36
-15690,42,129,42129,5677,2945,6641001,6423489,9078,4513,63928181,63204969,365169,168199,2683420993,2661353634,62.54,65.26,10.39,10.16,1.55,1.75,0.25,0.24
-15691,42,129,42129,70,32,86131,86131,70,32,86131,86131,365169,168199,2683420993,2661353634,100,100,100,100,0.02,0.02,0,0
-15692,42,129,42129,941,433,1178838,1178838,941,433,1178838,1178838,365169,168199,2683420993,2661353634,100,100,100,100,0.26,0.26,0.04,0.04
-15693,42,129,42129,189,89,179063,179063,189,89,179063,179063,365169,168199,2683420993,2661353634,100,100,100,100,0.05,0.05,0.01,0.01
-15695,42,129,42129,337,153,1395835,1395835,337,153,1395835,1395835,365169,168199,2683420993,2661353634,100,100,100,100,0.09,0.09,0.05,0.05
-15696,42,129,42129,384,186,339420,339420,384,186,339420,339420,365169,168199,2683420993,2661353634,100,100,100,100,0.11,0.11,0.01,0.01
-15697,42,129,42129,3038,1589,4676790,4652835,3038,1589,4676790,4652835,365169,168199,2683420993,2661353634,100,100,100,100,0.83,0.94,0.17,0.17
-15698,42,129,42129,791,406,3957107,3914196,791,406,3957107,3914196,365169,168199,2683420993,2661353634,100,100,100,100,0.22,0.24,0.15,0.15
-15701,42,063,42063,34704,14369,303082764,298614884,34704,14369,303082764,298614884,88880,38236,2160811828,2141997762,100,100,100,100,39.05,37.58,14.03,13.94
-15710,42,063,42063,266,119,4325028,4313724,266,119,4325028,4313724,88880,38236,2160811828,2141997762,100,100,100,100,0.3,0.31,0.2,0.2
-15711,42,065,42065,412,192,3248035,3234775,412,192,3248035,3234775,45200,22434,1701105972,1689783371,100,100,100,100,0.91,0.86,0.19,0.19
-15712,42,063,42063,151,72,4202679,4202679,151,72,4202679,4202679,88880,38236,2160811828,2141997762,100,100,100,100,0.17,0.19,0.19,0.2
-15713,42,063,42063,294,116,3405399,3405399,294,116,3405399,3405399,88880,38236,2160811828,2141997762,100,100,100,100,0.33,0.3,0.16,0.16
-15714,42,021,42021,4840,2208,44174220,44173515,5323,2409,71066569,71058754,143679,65650,1796500413,1782819861,90.93,91.66,62.16,62.16,3.37,3.36,2.46,2.48
-15714,42,063,42063,483,201,26892349,26885239,5323,2409,71066569,71058754,88880,38236,2160811828,2141997762,9.07,8.34,37.84,37.84,0.54,0.53,1.24,1.26
-15715,42,065,42065,621,294,1800427,1750897,621,294,1800427,1750897,45200,22434,1701105972,1689783371,100,100,100,100,1.37,1.31,0.11,0.1
-15716,42,063,42063,683,297,2101269,2095417,683,297,2101269,2095417,88880,38236,2160811828,2141997762,100,100,100,100,0.77,0.78,0.1,0.1
-15717,42,063,42063,8512,3932,170853258,167832147,10847,5018,251525075,245945346,88880,38236,2160811828,2141997762,78.47,78.36,67.93,68.24,9.58,10.28,7.91,7.84
-15717,42,129,42129,2335,1086,80671817,78113199,10847,5018,251525075,245945346,365169,168199,2683420993,2661353634,21.53,21.64,32.07,31.76,0.64,0.65,3.01,2.94
-15721,42,033,42033,234,107,5135187,4987441,234,107,5135187,4987441,81642,38644,2988750110,2964816225,100,100,100,100,0.29,0.28,0.17,0.17
-15722,42,021,42021,2432,1067,52911914,52883999,2432,1067,52911914,52883999,143679,65650,1796500413,1782819861,100,100,100,100,1.69,1.63,2.95,2.97
-15723,42,063,42063,46,28,2736410,2718491,46,28,2736410,2718491,88880,38236,2160811828,2141997762,100,100,100,100,0.05,0.07,0.13,0.13
-15724,42,021,42021,185,80,14569427,14559990,2412,1123,122818878,122370366,143679,65650,1796500413,1782819861,7.67,7.12,11.86,11.9,0.13,0.12,0.81,0.82
-15724,42,033,42033,411,228,35077021,34809562,2412,1123,122818878,122370366,81642,38644,2988750110,2964816225,17.04,20.3,28.56,28.45,0.5,0.59,1.17,1.17
-15724,42,063,42063,1816,815,73172430,73000814,2412,1123,122818878,122370366,88880,38236,2160811828,2141997762,75.29,72.57,59.58,59.66,2.04,2.13,3.39,3.41
-15725,42,063,42063,1446,636,79072918,77558381,1446,636,79072918,77558381,88880,38236,2160811828,2141997762,100,100,100,100,1.63,1.66,3.66,3.62
-15727,42,063,42063,168,92,3548955,3548955,168,92,3548955,3548955,88880,38236,2160811828,2141997762,100,100,100,100,0.19,0.24,0.16,0.17
-15728,42,063,42063,3701,1635,111075445,110850354,3701,1635,111075445,110850354,88880,38236,2160811828,2141997762,100,100,100,100,4.16,4.28,5.14,5.18
-15729,42,063,42063,1537,655,49332814,49266620,1537,655,49332814,49266620,88880,38236,2160811828,2141997762,100,100,100,100,1.73,1.71,2.28,2.3
-15730,42,065,42065,69,34,2169331,2152509,69,34,2169331,2152509,45200,22434,1701105972,1689783371,100,100,100,100,0.15,0.15,0.13,0.13
-15731,42,063,42063,315,166,616923,616923,315,166,616923,616923,88880,38236,2160811828,2141997762,100,100,100,100,0.35,0.43,0.03,0.03
-15732,42,005,42005,123,49,7362806,7361254,1669,693,76532724,76332518,68941,32520,1719343888,1691787010,7.37,7.07,9.62,9.64,0.18,0.15,0.43,0.44
-15732,42,063,42063,1546,644,69169918,68971264,1669,693,76532724,76332518,88880,38236,2160811828,2141997762,92.63,92.93,90.38,90.36,1.74,1.68,3.2,3.22
-15733,42,065,42065,108,45,1047891,1029791,108,45,1047891,1029791,45200,22434,1701105972,1689783371,100,100,100,100,0.24,0.2,0.06,0.06
-15734,42,063,42063,322,147,3710171,3710171,322,147,3710171,3710171,88880,38236,2160811828,2141997762,100,100,100,100,0.36,0.38,0.17,0.17
-15736,42,005,42005,613,287,8532605,8532605,613,287,8532605,8532605,68941,32520,1719343888,1691787010,100,100,100,100,0.89,0.88,0.5,0.5
-15737,42,021,42021,83,46,457561,457561,83,46,457561,457561,143679,65650,1796500413,1782819861,100,100,100,100,0.06,0.07,0.03,0.03
-15738,42,021,42021,265,127,6789686,6789686,265,127,6789686,6789686,143679,65650,1796500413,1782819861,100,100,100,100,0.18,0.19,0.38,0.38
-15739,42,063,42063,462,212,1674947,1646097,462,212,1674947,1646097,88880,38236,2160811828,2141997762,100,100,100,100,0.52,0.55,0.08,0.08
-15741,42,063,42063,83,45,4549171,4543298,83,45,4549171,4543298,88880,38236,2160811828,2141997762,100,100,100,100,0.09,0.12,0.21,0.21
-15742,42,033,42033,73,34,3537842,3438439,950,462,60985169,60815797,81642,38644,2988750110,2964816225,7.68,7.36,5.8,5.65,0.09,0.09,0.12,0.12
-15742,42,063,42063,877,428,57447327,57377358,950,462,60985169,60815797,88880,38236,2160811828,2141997762,92.32,92.64,94.2,94.35,0.99,1.12,2.66,2.68
-15744,42,065,42065,105,60,11796625,11502187,105,60,11796625,11502187,45200,22434,1701105972,1689783371,100,100,100,100,0.23,0.27,0.69,0.68
-15745,42,063,42063,337,148,3682946,3682946,337,148,3682946,3682946,88880,38236,2160811828,2141997762,100,100,100,100,0.38,0.39,0.17,0.17
-15746,42,063,42063,135,71,3982573,3964649,135,71,3982573,3964649,88880,38236,2160811828,2141997762,100,100,100,100,0.15,0.19,0.18,0.19
-15747,42,063,42063,2027,857,79267609,79163372,2027,857,79267609,79163372,88880,38236,2160811828,2141997762,100,100,100,100,2.28,2.24,3.67,3.7
-15748,42,063,42063,7060,3144,193901683,192179624,7060,3144,193901683,192179624,88880,38236,2160811828,2141997762,100,100,100,100,7.94,8.22,8.97,8.97
-15750,42,063,42063,245,125,1257773,1257773,245,125,1257773,1257773,88880,38236,2160811828,2141997762,100,100,100,100,0.28,0.33,0.06,0.06
-15752,42,063,42063,54,31,117143,117143,54,31,117143,117143,88880,38236,2160811828,2141997762,100,100,100,100,0.06,0.08,0.01,0.01
-15753,42,033,42033,513,313,101791571,101349794,513,313,101791571,101349794,81642,38644,2988750110,2964816225,100,100,100,100,0.63,0.81,3.41,3.42
-15754,42,063,42063,502,227,1120886,1120886,502,227,1120886,1120886,88880,38236,2160811828,2141997762,100,100,100,100,0.56,0.59,0.05,0.05
-15756,42,063,42063,207,97,2283224,2280580,207,97,2283224,2280580,88880,38236,2160811828,2141997762,100,100,100,100,0.23,0.25,0.11,0.11
-15757,42,033,42033,1562,1088,196074657,194890937,1618,1105,206645371,205459653,81642,38644,2988750110,2964816225,96.54,98.46,94.88,94.86,1.91,2.82,6.56,6.57
-15757,42,063,42063,56,17,10570714,10568716,1618,1105,206645371,205459653,88880,38236,2160811828,2141997762,3.46,1.54,5.12,5.14,0.06,0.04,0.49,0.49
-15759,42,063,42063,3004,1229,148456865,148326467,3004,1229,148456865,148326467,88880,38236,2160811828,2141997762,100,100,100,100,3.38,3.21,6.87,6.92
-15760,42,021,42021,152,56,4079589,4079589,152,56,4079589,4079589,143679,65650,1796500413,1782819861,100,100,100,100,0.11,0.09,0.23,0.23
-15761,42,063,42063,111,46,2681155,2681155,111,46,2681155,2681155,88880,38236,2160811828,2141997762,100,100,100,100,0.12,0.12,0.12,0.13
-15762,42,021,42021,823,332,34648555,34615657,823,332,34648555,34615657,143679,65650,1796500413,1782819861,100,100,100,100,0.57,0.51,1.93,1.94
-15764,42,065,42065,163,77,4417131,4399310,163,77,4417131,4399310,45200,22434,1701105972,1689783371,100,100,100,100,0.36,0.34,0.26,0.26
-15765,42,063,42063,1707,766,98763741,97165620,1707,766,98763741,97165620,88880,38236,2160811828,2141997762,100,100,100,100,1.92,2,4.57,4.54
-15767,42,033,42033,124,72,39104945,39007163,14668,6738,430259484,428089161,81642,38644,2988750110,2964816225,0.85,1.07,9.09,9.11,0.15,0.19,1.31,1.32
-15767,42,063,42063,761,327,37114830,37089166,14668,6738,430259484,428089161,88880,38236,2160811828,2141997762,5.19,4.85,8.63,8.66,0.86,0.86,1.72,1.73
-15767,42,065,42065,13783,6339,354039709,351992832,14668,6738,430259484,428089161,45200,22434,1701105972,1689783371,93.97,94.08,82.29,82.22,30.49,28.26,20.81,20.83
-15770,42,065,42065,184,89,10644512,10592931,184,89,10644512,10592931,45200,22434,1701105972,1689783371,100,100,100,100,0.41,0.4,0.63,0.63
-15771,42,063,42063,991,524,87041785,86597248,991,524,87041785,86597248,88880,38236,2160811828,2141997762,100,100,100,100,1.11,1.37,4.03,4.04
-15772,42,063,42063,1715,762,82950580,82609749,1715,762,82950580,82609749,88880,38236,2160811828,2141997762,100,100,100,100,1.93,1.99,3.84,3.86
-15773,42,021,42021,516,207,9852899,9852899,516,207,9852899,9852899,143679,65650,1796500413,1782819861,100,100,100,100,0.36,0.32,0.55,0.55
-15774,42,005,42005,1479,657,77079269,75350532,3029,1335,140973467,138968033,68941,32520,1719343888,1691787010,48.83,49.21,54.68,54.22,2.15,2.02,4.48,4.45
-15774,42,063,42063,1550,678,63894198,63617501,3029,1335,140973467,138968033,88880,38236,2160811828,2141997762,51.17,50.79,45.32,45.78,1.74,1.77,2.96,2.97
-15775,42,021,42021,751,340,8976082,8961331,751,340,8976082,8961331,143679,65650,1796500413,1782819861,100,100,100,100,0.52,0.52,0.5,0.5
-15776,42,065,42065,52,31,5650061,5632759,52,31,5650061,5632759,45200,22434,1701105972,1689783371,100,100,100,100,0.12,0.14,0.33,0.33
-15777,42,063,42063,170,85,2906493,2906493,170,85,2906493,2906493,88880,38236,2160811828,2141997762,100,100,100,100,0.19,0.22,0.13,0.14
-15778,42,065,42065,140,67,2357949,2354798,140,67,2357949,2354798,45200,22434,1701105972,1689783371,100,100,100,100,0.31,0.3,0.14,0.14
-15779,42,129,42129,414,100,20797451,20486348,414,100,20797451,20486348,365169,168199,2683420993,2661353634,100,100,100,100,0.11,0.06,0.78,0.77
-15780,42,065,42065,148,60,3321664,3320410,148,60,3321664,3320410,45200,22434,1701105972,1689783371,100,100,100,100,0.33,0.27,0.2,0.2
-15781,42,065,42065,94,50,2714810,2714810,94,50,2714810,2714810,45200,22434,1701105972,1689783371,100,100,100,100,0.21,0.22,0.16,0.16
-15783,42,063,42063,140,62,5424205,5379304,140,62,5424205,5379304,88880,38236,2160811828,2141997762,100,100,100,100,0.16,0.16,0.25,0.25
-15784,42,065,42065,67,35,886796,864326,67,35,886796,864326,45200,22434,1701105972,1689783371,100,100,100,100,0.15,0.16,0.05,0.05
-15801,42,033,42033,19270,9247,170291453,167419747,19270,9247,170291453,167419747,81642,38644,2988750110,2964816225,100,100,100,100,23.6,23.93,5.7,5.65
-15821,42,047,42047,164,486,92668957,92000991,164,486,92668957,92000991,31946,17585,2155666906,2142848183,100,100,100,100,0.51,2.76,4.3,4.29
-15823,42,047,42047,1164,581,80861804,80666089,1431,694,95659018,95419042,31946,17585,2155666906,2142848183,81.34,83.72,84.53,84.54,3.64,3.3,3.75,3.76
-15823,42,065,42065,267,113,14797214,14752953,1431,694,95659018,95419042,45200,22434,1701105972,1689783371,18.66,16.28,15.47,15.46,0.59,0.5,0.87,0.87
-15824,42,033,42033,97,40,15829303,15820609,5407,2475,189937164,189121805,81642,38644,2988750110,2964816225,1.79,1.62,8.33,8.37,0.12,0.1,0.53,0.53
-15824,42,065,42065,5310,2435,174107861,173301196,5407,2475,189937164,189121805,45200,22434,1701105972,1689783371,98.21,98.38,91.67,91.63,11.75,10.85,10.23,10.26
-15825,42,065,42065,9562,4773,417626715,415347068,9562,4773,417626715,415347068,45200,22434,1701105972,1689783371,100,100,100,100,21.15,21.28,24.55,24.58
-15827,42,047,42047,231,107,7455502,7455502,231,107,7455502,7455502,31946,17585,2155666906,2142848183,100,100,100,100,0.72,0.61,0.35,0.35
-15828,42,053,42053,129,357,36409994,36387085,286,555,61843807,60820778,7716,8760,1114980555,1106404231,45.1,64.32,58.87,59.83,1.67,4.08,3.27,3.29
-15828,42,065,42065,157,198,25433813,24433693,286,555,61843807,60820778,45200,22434,1701105972,1689783371,54.9,35.68,41.13,40.17,0.35,0.88,1.5,1.45
-15829,42,031,42031,295,179,35080447,34976920,1274,661,92075666,91603501,39988,19962,1579489787,1556153827,23.16,27.08,38.1,38.18,0.74,0.9,2.22,2.25
-15829,42,065,42065,979,482,56995219,56626581,1274,661,92075666,91603501,45200,22434,1701105972,1689783371,76.84,72.92,61.9,61.82,2.17,2.15,3.35,3.35
-15832,42,023,42023,312,758,251573993,249565263,328,834,282888440,280879710,5085,4455,1031896619,1026232612,95.12,90.89,88.93,88.85,6.14,17.01,24.38,24.32
-15832,42,047,42047,16,76,31314447,31314447,328,834,282888440,280879710,31946,17585,2155666906,2142848183,4.88,9.11,11.07,11.15,0.05,0.43,1.45,1.46
-15834,42,023,42023,4533,2887,530254148,528717827,4533,2887,530254148,528717827,5085,4455,1031896619,1026232612,100,100,100,100,89.14,64.8,51.39,51.52
-15840,42,033,42033,71,39,1279595,1256400,1993,913,50407179,49715366,81642,38644,2988750110,2964816225,3.56,4.27,2.54,2.53,0.09,0.1,0.04,0.04
-15840,42,065,42065,1922,874,49127584,48458966,1993,913,50407179,49715366,45200,22434,1701105972,1689783371,96.44,95.73,97.46,97.47,4.25,3.9,2.89,2.87
-15841,42,047,42047,389,177,10826872,10826872,389,177,10826872,10826872,31946,17585,2155666906,2142848183,100,100,100,100,1.22,1.01,0.5,0.51
-15845,42,047,42047,3197,1611,81715795,80380824,3197,1611,81715795,80380824,31946,17585,2155666906,2142848183,100,100,100,100,10.01,9.16,3.79,3.75
-15846,42,047,42047,3636,1730,240318149,240145320,3636,1730,240318149,240145320,31946,17585,2155666906,2142848183,100,100,100,100,11.38,9.84,11.15,11.21
-15847,42,065,42065,255,127,7043109,7032509,255,127,7043109,7032509,45200,22434,1701105972,1689783371,100,100,100,100,0.56,0.57,0.41,0.42
-15848,42,033,42033,1027,427,52558529,52308145,1027,427,52558529,52308145,81642,38644,2988750110,2964816225,100,100,100,100,1.26,1.1,1.76,1.76
-15849,42,033,42033,1399,1012,203421215,202898179,1399,1012,203421215,202898179,81642,38644,2988750110,2964816225,100,100,100,100,1.71,2.62,6.81,6.84
-15851,42,065,42065,6671,3062,243532267,242432841,6671,3062,243532267,242432841,45200,22434,1701105972,1689783371,100,100,100,100,14.76,13.65,14.32,14.35
-15853,42,047,42047,6562,3651,371592828,368930205,6578,3721,392897796,390223574,31946,17585,2155666906,2142848183,99.76,98.12,94.58,94.54,20.54,20.76,17.24,17.22
-15853,42,065,42065,16,70,21304968,21293369,6578,3721,392897796,390223574,45200,22434,1701105972,1689783371,0.24,1.88,5.42,5.46,0.04,0.31,1.25,1.26
-15856,42,033,42033,889,517,95117829,94124910,889,517,95117829,94124910,81642,38644,2988750110,2964816225,100,100,100,100,1.09,1.34,3.18,3.17
-15857,42,047,42047,13212,6190,259927665,259401633,13212,6190,259927665,259401633,31946,17585,2155666906,2142848183,100,100,100,100,41.36,35.2,12.06,12.11
-15860,42,031,42031,67,59,7938574,7938574,1065,1725,323989699,321805149,39988,19962,1579489787,1556153827,6.29,3.42,2.45,2.47,0.17,0.3,0.5,0.51
-15860,42,047,42047,98,371,157638138,156776880,1065,1725,323989699,321805149,31946,17585,2155666906,2142848183,9.2,21.51,48.66,48.72,0.31,2.11,7.31,7.32
-15860,42,065,42065,900,1295,158412987,157089695,1065,1725,323989699,321805149,45200,22434,1701105972,1689783371,84.51,75.07,48.89,48.82,1.99,5.77,9.31,9.3
-15861,42,023,42023,174,575,176148790,174553491,174,575,176148790,174553491,5085,4455,1031896619,1026232612,100,100,100,100,3.42,12.91,17.07,17.01
-15863,42,065,42065,225,108,1739826,1739826,225,108,1739826,1739826,45200,22434,1701105972,1689783371,100,100,100,100,0.5,0.48,0.1,0.1
-15864,42,031,42031,696,281,42971249,42873556,1845,854,95204275,94709389,39988,19962,1579489787,1556153827,37.72,32.9,45.14,45.27,1.74,1.41,2.72,2.76
-15864,42,065,42065,1149,573,52233026,51835833,1845,854,95204275,94709389,45200,22434,1701105972,1689783371,62.28,67.1,54.86,54.73,2.54,2.55,3.07,3.07
-15865,42,065,42065,1295,642,8718889,8699006,1295,642,8718889,8699006,45200,22434,1701105972,1689783371,100,100,100,100,2.87,2.86,0.51,0.51
-15866,42,033,42033,261,97,3212796,3211867,261,97,3212796,3211867,81642,38644,2988750110,2964816225,100,100,100,100,0.32,0.25,0.11,0.11
-15868,42,047,42047,1350,1012,246330430,245151790,1350,1012,246330430,245151790,31946,17585,2155666906,2142848183,100,100,100,100,4.23,5.75,11.43,11.44
-15870,42,047,42047,1309,1046,295568011,290628437,1326,1115,335436186,330472174,31946,17585,2155666906,2142848183,98.72,93.81,88.11,87.94,4.1,5.95,13.71,13.56
-15870,42,083,42083,17,69,39868175,39843737,1326,1115,335436186,330472174,43450,21225,2549116804,2536109386,1.28,6.19,11.89,12.06,0.04,0.33,1.56,1.57
-15901,42,021,42021,4190,2851,3976949,3836779,4190,2851,3976949,3836779,143679,65650,1796500413,1782819861,100,100,100,100,2.92,4.34,0.22,0.22
-15902,42,021,42021,12513,6503,23726853,23599705,12513,6503,23726853,23599705,143679,65650,1796500413,1782819861,100,100,100,100,8.71,9.91,1.32,1.32
-15904,42,021,42021,16608,7309,79962056,79445855,16608,7309,79962056,79445855,143679,65650,1796500413,1782819861,100,100,100,100,11.56,11.13,4.45,4.46
-15905,42,021,42021,18802,8871,47910552,47666336,21226,9971,93539213,92832747,143679,65650,1796500413,1782819861,88.58,88.97,51.22,51.35,13.09,13.51,2.67,2.67
-15905,42,111,42111,2424,1100,45628661,45166411,21226,9971,93539213,92832747,77742,38113,2799600068,2782615877,11.42,11.03,48.78,48.65,3.12,2.89,1.63,1.62
-15906,42,021,42021,11144,5876,91193095,90230908,11144,5876,91193095,90230908,143679,65650,1796500413,1782819861,100,100,100,100,7.76,8.95,5.08,5.06
-15909,42,021,42021,5611,2642,44711252,44494654,5611,2642,44711252,44494654,143679,65650,1796500413,1782819861,100,100,100,100,3.91,4.02,2.49,2.5
-15920,42,063,42063,922,396,20198695,20187128,922,396,20198695,20187128,88880,38236,2160811828,2141997762,100,100,100,100,1.04,1.04,0.93,0.94
-15921,42,021,42021,176,77,851113,851113,176,77,851113,851113,143679,65650,1796500413,1782819861,100,100,100,100,0.12,0.12,0.05,0.05
-15922,42,021,42021,177,81,1784285,1784285,177,81,1784285,1784285,143679,65650,1796500413,1782819861,100,100,100,100,0.12,0.12,0.1,0.1
-15923,42,129,42129,1770,788,67870274,67452166,1770,788,67870274,67452166,365169,168199,2683420993,2661353634,100,100,100,100,0.48,0.47,2.53,2.53
-15924,42,111,42111,1034,519,68967450,68917847,1034,519,68967450,68917847,77742,38113,2799600068,2782615877,100,100,100,100,1.33,1.36,2.46,2.48
-15925,42,021,42021,147,71,197872,197872,147,71,197872,197872,143679,65650,1796500413,1782819861,100,100,100,100,0.1,0.11,0.01,0.01
-15926,42,111,42111,2676,1613,74778247,72740383,2676,1613,74778247,72740383,77742,38113,2799600068,2782615877,100,100,100,100,3.44,4.23,2.67,2.61
-15927,42,021,42021,1176,496,12326706,12326706,1176,496,12326706,12326706,143679,65650,1796500413,1782819861,100,100,100,100,0.82,0.76,0.69,0.69
-15928,42,111,42111,1974,945,16260642,16182997,1974,945,16260642,16182997,77742,38113,2799600068,2782615877,100,100,100,100,2.54,2.48,0.58,0.58
-15929,42,063,42063,75,36,1609761,1496033,75,36,1609761,1496033,88880,38236,2160811828,2141997762,100,100,100,100,0.08,0.09,0.07,0.07
-15930,42,021,42021,241,142,736773,736773,241,142,736773,736773,143679,65650,1796500413,1782819861,100,100,100,100,0.17,0.22,0.04,0.04
-15931,42,021,42021,9148,3778,201805810,200843582,9148,3778,201805810,200843582,143679,65650,1796500413,1782819861,100,100,100,100,6.37,5.75,11.23,11.27
-15934,42,021,42021,218,102,882866,882866,218,102,882866,882866,143679,65650,1796500413,1782819861,100,100,100,100,0.15,0.16,0.05,0.05
-15935,42,111,42111,2620,1157,66031021,62442265,2620,1157,66031021,62442265,77742,38113,2799600068,2782615877,100,100,100,100,3.37,3.04,2.36,2.24
-15936,42,111,42111,1620,735,63765789,63681731,1620,735,63765789,63681731,77742,38113,2799600068,2782615877,100,100,100,100,2.08,1.93,2.28,2.29
-15937,42,111,42111,779,348,2498262,2498262,779,348,2498262,2498262,77742,38113,2799600068,2782615877,100,100,100,100,1,0.91,0.09,0.09
-15938,42,021,42021,2583,1086,51353596,51290685,2583,1086,51353596,51290685,143679,65650,1796500413,1782819861,100,100,100,100,1.8,1.65,2.86,2.88
-15940,42,021,42021,3992,770,69083837,68904348,3992,770,69083837,68904348,143679,65650,1796500413,1782819861,100,100,100,100,2.78,1.17,3.85,3.86
-15942,42,021,42021,2079,889,48583467,48015006,2079,889,48583467,48015006,143679,65650,1796500413,1782819861,100,100,100,100,1.45,1.35,2.7,2.69
-15943,42,021,42021,3942,1836,50030561,49907726,3942,1836,50030561,49907726,143679,65650,1796500413,1782819861,100,100,100,100,2.74,2.8,2.78,2.8
-15944,42,063,42063,1384,587,60671823,60141705,3472,1613,171847104,170784467,88880,38236,2160811828,2141997762,39.86,36.39,35.31,35.21,1.56,1.54,2.81,2.81
-15944,42,129,42129,2088,1026,111175281,110642762,3472,1613,171847104,170784467,365169,168199,2683420993,2661353634,60.14,63.61,64.69,64.79,0.57,0.61,4.14,4.16
-15945,42,021,42021,198,74,1642627,1524817,198,74,1642627,1524817,143679,65650,1796500413,1782819861,100,100,100,100,0.14,0.11,0.09,0.09
-15946,42,009,42009,54,41,9444458,9444458,7093,3218,131487189,130795324,49762,23954,2633772365,2621835502,0.76,1.27,7.18,7.22,0.11,0.17,0.36,0.36
-15946,42,013,42013,441,199,32356237,32356237,7093,3218,131487189,130795324,127089,56276,1365100822,1361815301,6.22,6.18,24.61,24.74,0.35,0.35,2.37,2.38
-15946,42,021,42021,6598,2978,89686494,88994629,7093,3218,131487189,130795324,143679,65650,1796500413,1782819861,93.02,92.54,68.21,68.04,4.59,4.54,4.99,4.99
-15948,42,021,42021,550,235,1912268,1912268,550,235,1912268,1912268,143679,65650,1796500413,1782819861,100,100,100,100,0.38,0.36,0.11,0.11
-15949,42,063,42063,672,294,7159020,6691010,672,294,7159020,6691010,88880,38236,2160811828,2141997762,100,100,100,100,0.76,0.77,0.33,0.31
-15951,42,021,42021,453,239,2819809,2802468,453,239,2819809,2802468,143679,65650,1796500413,1782819861,100,100,100,100,0.32,0.36,0.16,0.16
-15952,42,021,42021,1413,611,8572842,8572842,1413,611,8572842,8572842,143679,65650,1796500413,1782819861,100,100,100,100,0.98,0.93,0.48,0.48
-15953,42,111,42111,83,37,2147247,2145376,83,37,2147247,2145376,77742,38113,2799600068,2782615877,100,100,100,100,0.11,0.1,0.08,0.08
-15954,42,063,42063,1261,588,30658390,30357651,2413,1102,47621624,46996990,88880,38236,2160811828,2141997762,52.26,53.36,64.38,64.59,1.42,1.54,1.42,1.42
-15954,42,129,42129,1152,514,16963234,16639339,2413,1102,47621624,46996990,365169,168199,2683420993,2661353634,47.74,46.64,35.62,35.41,0.32,0.31,0.63,0.63
-15955,42,021,42021,2551,1140,66750152,65283483,2551,1140,66750152,65283483,143679,65650,1796500413,1782819861,100,100,100,100,1.78,1.74,3.72,3.66
-15956,42,021,42021,2739,1269,21092980,20853620,2739,1269,21092980,20853620,143679,65650,1796500413,1782819861,100,100,100,100,1.91,1.93,1.17,1.17
-15957,42,021,42021,165,73,6231912,6231912,755,311,24583527,24551669,143679,65650,1796500413,1782819861,21.85,23.47,25.35,25.38,0.11,0.11,0.35,0.35
-15957,42,063,42063,590,238,18351615,18319757,755,311,24583527,24551669,88880,38236,2160811828,2141997762,78.15,76.53,74.65,74.62,0.66,0.62,0.85,0.86
-15958,42,021,42021,2301,949,49522150,49426462,2301,949,49522150,49426462,143679,65650,1796500413,1782819861,100,100,100,100,1.6,1.45,2.76,2.77
-15960,42,021,42021,425,198,12367450,12244862,425,198,12367450,12244862,143679,65650,1796500413,1782819861,100,100,100,100,0.3,0.3,0.69,0.69
-15961,42,021,42021,399,212,15913593,15869563,854,401,43785723,43358311,143679,65650,1796500413,1782819861,46.72,52.87,36.34,36.6,0.28,0.32,0.89,0.89
-15961,42,063,42063,455,189,27872130,27488748,854,401,43785723,43358311,88880,38236,2160811828,2141997762,53.28,47.13,63.66,63.4,0.51,0.49,1.29,1.28
-15962,42,021,42021,149,65,523371,523371,149,65,523371,523371,143679,65650,1796500413,1782819861,100,100,100,100,0.1,0.1,0.03,0.03
-15963,42,021,42021,2789,1252,79171610,78975901,11114,5264,253641376,253107104,143679,65650,1796500413,1782819861,25.09,23.78,31.21,31.2,1.94,1.91,4.41,4.43
-15963,42,111,42111,8325,4012,174469766,174131203,11114,5264,253641376,253107104,77742,38113,2799600068,2782615877,74.91,76.22,68.79,68.8,10.71,10.53,6.23,6.26
-16001,42,019,42019,40371,19019,193196981,190155984,40371,19019,193196981,190155984,183862,78167,2058397354,2042475490,100,100,100,100,21.96,24.33,9.39,9.31
-16002,42,019,42019,15877,6366,187180543,187002976,15877,6366,187180543,187002976,183862,78167,2058397354,2042475490,100,100,100,100,8.64,8.14,9.09,9.16
-16020,42,019,42019,1150,490,66025419,66025419,1150,490,66025419,66025419,183862,78167,2058397354,2042475490,100,100,100,100,0.63,0.63,3.21,3.23
-16022,42,019,42019,368,156,2079662,2079662,368,156,2079662,2079662,183862,78167,2058397354,2042475490,100,100,100,100,0.2,0.2,0.1,0.1
-16023,42,019,42019,4169,1923,68120212,68120212,4169,1923,68120212,68120212,183862,78167,2058397354,2042475490,100,100,100,100,2.27,2.46,3.31,3.34
-16024,42,019,42019,209,86,611593,611593,209,86,611593,611593,183862,78167,2058397354,2042475490,100,100,100,100,0.11,0.11,0.03,0.03
-16025,42,005,42005,429,170,17041566,17041566,5564,2284,137963212,137814359,68941,32520,1719343888,1691787010,7.71,7.44,12.35,12.37,0.62,0.52,0.99,1.01
-16025,42,019,42019,5135,2114,120921646,120772793,5564,2284,137963212,137814359,183862,78167,2058397354,2042475490,92.29,92.56,87.65,87.63,2.79,2.7,5.87,5.91
-16027,42,019,42019,306,116,1373158,1373158,306,116,1373158,1373158,183862,78167,2058397354,2042475490,100,100,100,100,0.17,0.15,0.07,0.07
-16028,42,005,42005,908,598,36442087,36442087,1886,1184,42575198,41291276,68941,32520,1719343888,1691787010,48.14,50.51,85.59,88.26,1.32,1.84,2.12,2.15
-16028,42,031,42031,978,586,6133111,4849189,1886,1184,42575198,41291276,39988,19962,1579489787,1556153827,51.86,49.49,14.41,11.74,2.45,2.94,0.39,0.31
-16029,42,019,42019,705,318,2241392,2241392,705,318,2241392,2241392,183862,78167,2058397354,2042475490,100,100,100,100,0.38,0.41,0.11,0.11
-16030,42,019,42019,316,146,2806303,2806303,316,146,2806303,2806303,183862,78167,2058397354,2042475490,100,100,100,100,0.17,0.19,0.14,0.14
-16033,42,019,42019,6165,2640,80073461,80026877,6165,2640,80073461,80026877,183862,78167,2058397354,2042475490,100,100,100,100,3.35,3.38,3.89,3.92
-16034,42,019,42019,2054,815,51421432,51397356,2054,815,51421432,51397356,183862,78167,2058397354,2042475490,100,100,100,100,1.12,1.04,2.5,2.52
-16035,42,019,42019,122,48,1457182,1450105,122,48,1457182,1450105,183862,78167,2058397354,2042475490,100,100,100,100,0.07,0.06,0.07,0.07
-16036,42,031,42031,200,112,6979127,5784808,200,112,6979127,5784808,39988,19962,1579489787,1556153827,100,100,100,100,0.5,0.56,0.44,0.37
-16037,42,007,42007,72,32,5077490,4807954,4589,1850,90706466,90256741,170539,78211,1150067104,1125900054,1.57,1.73,5.6,5.33,0.04,0.04,0.44,0.43
-16037,42,019,42019,4294,1726,75136616,74999743,4589,1850,90706466,90256741,183862,78167,2058397354,2042475490,93.57,93.3,82.83,83.1,2.34,2.21,3.65,3.67
-16037,42,073,42073,223,92,10492360,10449044,4589,1850,90706466,90256741,91108,40975,939428291,927669548,4.86,4.97,11.57,11.58,0.24,0.22,1.12,1.13
-16038,42,019,42019,2225,971,76682661,76668399,3517,1515,123904385,123890123,183862,78167,2058397354,2042475490,63.26,64.09,61.89,61.88,1.21,1.24,3.73,3.75
-16038,42,121,42121,1292,544,47221724,47221724,3517,1515,123904385,123890123,54984,27464,1768535866,1746387330,36.74,35.91,38.11,38.12,2.35,1.98,2.67,2.7
-16040,42,019,42019,975,421,50820903,50811920,975,421,50820903,50811920,183862,78167,2058397354,2042475490,100,100,100,100,0.53,0.54,2.47,2.49
-16041,42,005,42005,453,292,29381537,29381537,1888,929,71988736,71988736,68941,32520,1719343888,1691787010,23.99,31.43,40.81,40.81,0.66,0.9,1.71,1.74
-16041,42,019,42019,1435,637,42607199,42607199,1888,929,71988736,71988736,183862,78167,2058397354,2042475490,76.01,68.57,59.19,59.19,0.78,0.81,2.07,2.09
-16045,42,019,42019,1195,626,1496365,1496365,1195,626,1496365,1496365,183862,78167,2058397354,2042475490,100,100,100,100,0.65,0.8,0.07,0.07
-16046,42,003,42003,1764,571,11885849,11885849,14396,5799,58900568,58879357,1223348,589201,1928303169,1890884266,12.25,9.85,20.18,20.19,0.14,0.1,0.62,0.63
-16046,42,019,42019,12632,5228,47014719,46993508,14396,5799,58900568,58879357,183862,78167,2058397354,2042475490,87.75,90.15,79.82,79.81,6.87,6.69,2.28,2.3
-16048,42,019,42019,139,55,2861880,2861880,139,55,2861880,2861880,183862,78167,2058397354,2042475490,100,100,100,100,0.08,0.07,0.14,0.14
-16049,42,005,42005,1000,552,26642970,26642970,3241,1715,244904326,239133719,68941,32520,1719343888,1691787010,30.85,32.19,10.88,11.14,1.45,1.7,1.55,1.57
-16049,42,019,42019,1029,482,102619022,102619022,3241,1715,244904326,239133719,183862,78167,2058397354,2042475490,31.75,28.1,41.9,42.91,0.56,0.62,4.99,5.02
-16049,42,031,42031,1212,681,115642334,109871727,3241,1715,244904326,239133719,39988,19962,1579489787,1556153827,37.4,39.71,47.22,45.95,3.03,3.41,7.32,7.06
-16050,42,019,42019,1546,640,63704992,63687358,1546,640,63704992,63687358,183862,78167,2058397354,2042475490,100,100,100,100,0.84,0.82,3.09,3.12
-16051,42,019,42019,1870,870,69854145,62433421,3043,1373,108713573,100846238,183862,78167,2058397354,2042475490,61.45,63.36,64.26,61.91,1.02,1.11,3.39,3.06
-16051,42,073,42073,1173,503,38859428,38412817,3043,1373,108713573,100846238,91108,40975,939428291,927669548,38.55,36.64,35.74,38.09,1.29,1.23,4.14,4.14
-16052,42,019,42019,2447,1056,54423087,52113467,2447,1056,54423087,52113467,183862,78167,2058397354,2042475490,100,100,100,100,1.33,1.35,2.64,2.55
-16053,42,019,42019,4020,1699,55566721,55566721,4020,1699,55566721,55566721,183862,78167,2058397354,2042475490,100,100,100,100,2.19,2.17,2.7,2.72
-16054,42,031,42031,497,229,5006029,4893130,497,229,5006029,4893130,39988,19962,1579489787,1556153827,100,100,100,100,1.24,1.15,0.32,0.31
-16055,42,003,42003,11,4,17386,17386,8486,3455,101088725,100864587,1223348,589201,1928303169,1890884266,0.13,0.12,0.02,0.02,0,0,0,0
-16055,42,005,42005,255,104,10247264,10137219,8486,3455,101088725,100864587,68941,32520,1719343888,1691787010,3,3.01,10.14,10.05,0.37,0.32,0.6,0.6
-16055,42,019,42019,8220,3347,90824075,90709982,8486,3455,101088725,100864587,183862,78167,2058397354,2042475490,96.87,96.87,89.85,89.93,4.47,4.28,4.41,4.44
-16056,42,019,42019,4791,2185,54904434,54870543,4791,2185,54904434,54870543,183862,78167,2058397354,2042475490,100,100,100,100,2.61,2.8,2.67,2.69
-16057,42,019,42019,13030,4849,195882922,194684231,13909,5236,227563228,225939411,183862,78167,2058397354,2042475490,93.68,92.61,86.08,86.17,7.09,6.2,9.52,9.53
-16057,42,073,42073,740,333,30255375,29830249,13909,5236,227563228,225939411,91108,40975,939428291,927669548,5.32,6.36,13.3,13.2,0.81,0.81,3.22,3.22
-16057,42,085,42085,139,54,1424931,1424931,13909,5236,227563228,225939411,116638,51733,1767939666,1741960803,1,1.03,0.63,0.63,0.12,0.1,0.08,0.08
-16059,42,003,42003,230,102,2127535,2127535,7738,3283,66668045,66478812,1223348,589201,1928303169,1890884266,2.97,3.11,3.19,3.2,0.02,0.02,0.11,0.11
-16059,42,019,42019,7508,3181,64540510,64351277,7738,3283,66668045,66478812,183862,78167,2058397354,2042475490,97.03,96.89,96.81,96.8,4.08,4.07,3.14,3.15
-16061,42,019,42019,2761,1151,114608677,113835425,2761,1151,114608677,113835425,183862,78167,2058397354,2042475490,100,100,100,100,1.5,1.47,5.57,5.57
-16063,42,007,42007,492,219,10292285,10244694,6559,3264,46224931,46058024,170539,78211,1150067104,1125900054,7.5,6.71,22.27,22.24,0.29,0.28,0.89,0.91
-16063,42,019,42019,6067,3045,35932646,35813330,6559,3264,46224931,46058024,183862,78167,2058397354,2042475490,92.5,93.29,77.73,77.76,3.3,3.9,1.75,1.75
-16066,42,019,42019,28060,10756,57900915,57887280,28060,10756,57900915,57887280,183862,78167,2058397354,2042475490,100,100,100,100,15.26,13.76,2.81,2.83
-16101,42,073,42073,34042,15658,186327607,184511410,34042,15658,186327607,184511410,91108,40975,939428291,927669548,100,100,100,100,37.36,38.21,19.83,19.89
-16102,42,073,42073,5755,2564,63103029,62263838,5755,2564,63103029,62263838,91108,40975,939428291,927669548,100,100,100,100,6.32,6.26,6.72,6.71
-16105,42,073,42073,15448,7172,71790590,71042479,15448,7172,71790590,71042479,91108,40975,939428291,927669548,100,100,100,100,16.96,17.5,7.64,7.66
-16110,42,039,42039,275,136,17508829,17464217,314,156,19543902,19499290,88765,44686,2687149903,2621839209,87.58,87.18,89.59,89.56,0.31,0.3,0.65,0.67
-16110,42,085,42085,39,20,2035073,2035073,314,156,19543902,19499290,116638,51733,1767939666,1741960803,12.42,12.82,10.41,10.44,0.03,0.04,0.12,0.12
-16111,42,039,42039,1409,476,72702699,72702699,1409,476,72702699,72702699,88765,44686,2687149903,2621839209,100,100,100,100,1.59,1.07,2.71,2.77
-16112,42,073,42073,1571,691,18183346,17409600,1571,691,18183346,17409600,91108,40975,939428291,927669548,100,100,100,100,1.72,1.69,1.94,1.88
-16113,42,085,42085,448,175,2127003,1890756,448,175,2127003,1890756,116638,51733,1767939666,1741960803,100,100,100,100,0.38,0.34,0.12,0.11
-16114,42,085,42085,606,249,26711143,26285241,606,249,26711143,26285241,116638,51733,1767939666,1741960803,100,100,100,100,0.52,0.48,1.51,1.51
-16115,42,007,42007,3287,1422,104456492,104141404,3287,1422,104456492,104141404,170539,78211,1150067104,1125900054,100,100,100,100,1.93,1.82,9.08,9.25
-16116,42,073,42073,3074,1395,70083901,68435087,3074,1395,70083901,68435087,91108,40975,939428291,927669548,100,100,100,100,3.37,3.4,7.46,7.38
-16117,42,007,42007,5472,2416,33166874,32493733,17185,7914,96902517,95301308,170539,78211,1150067104,1125900054,31.84,30.53,34.23,34.1,3.21,3.09,2.88,2.89
-16117,42,073,42073,11713,5498,63735643,62807575,17185,7914,96902517,95301308,91108,40975,939428291,927669548,68.16,69.47,65.77,65.9,12.86,13.42,6.78,6.77
-16120,42,007,42007,219,98,8261183,8261183,2463,1107,86113158,85729592,170539,78211,1150067104,1125900054,8.89,8.85,9.59,9.64,0.13,0.13,0.72,0.73
-16120,42,073,42073,2244,1009,77851975,77468409,2463,1107,86113158,85729592,91108,40975,939428291,927669548,91.11,91.15,90.41,90.36,2.46,2.46,8.29,8.35
-16121,42,085,42085,4941,2520,5879404,5879404,4941,2520,5879404,5879404,116638,51733,1767939666,1741960803,100,100,100,100,4.24,4.87,0.33,0.34
-16123,42,007,42007,2115,933,47618218,46995841,2237,977,53045896,52423519,170539,78211,1150067104,1125900054,94.55,95.5,89.77,89.65,1.24,1.19,4.14,4.17
-16123,42,073,42073,122,44,5427678,5427678,2237,977,53045896,52423519,91108,40975,939428291,927669548,5.45,4.5,10.23,10.35,0.13,0.11,0.58,0.59
-16124,42,085,42085,2228,888,72573059,72566019,2228,888,72573059,72566019,116638,51733,1767939666,1741960803,100,100,100,100,1.91,1.72,4.1,4.17
-16125,42,039,42039,108,35,3249554,3249554,18186,8157,283563622,283333404,88765,44686,2687149903,2621839209,0.59,0.43,1.15,1.15,0.12,0.08,0.12,0.12
-16125,42,085,42085,18078,8122,280314068,280083850,18186,8157,283563622,283333404,116638,51733,1767939666,1741960803,99.41,99.57,98.85,98.85,15.5,15.7,15.86,16.08
-16127,42,019,42019,38,10,95957,95957,16145,5888,187388884,186045536,183862,78167,2058397354,2042475490,0.24,0.17,0.05,0.05,0.02,0.01,0,0
-16127,42,073,42073,30,14,1714789,1714789,16145,5888,187388884,186045536,91108,40975,939428291,927669548,0.19,0.24,0.92,0.92,0.03,0.03,0.18,0.18
-16127,42,085,42085,15928,5776,174675391,173332043,16145,5888,187388884,186045536,116638,51733,1767939666,1741960803,98.66,98.1,93.22,93.17,13.66,11.17,9.88,9.95
-16127,42,121,42121,149,88,10902747,10902747,16145,5888,187388884,186045536,54984,27464,1768535866,1746387330,0.92,1.49,5.82,5.86,0.27,0.32,0.62,0.62
-16130,42,085,42085,2023,904,81449709,80148638,2023,904,81449709,80148638,116638,51733,1767939666,1741960803,100,100,100,100,1.73,1.75,4.61,4.6
-16131,42,039,42039,933,400,54569204,54121371,933,400,54569204,54121371,88765,44686,2687149903,2621839209,100,100,100,100,1.05,0.9,2.03,2.06
-16132,42,073,42073,355,178,5198509,4577508,355,178,5198509,4577508,91108,40975,939428291,927669548,100,100,100,100,0.39,0.43,0.55,0.49
-16133,42,085,42085,1573,668,72559900,71833114,1573,668,72559900,71833114,116638,51733,1767939666,1741960803,100,100,100,100,1.35,1.29,4.1,4.12
-16134,42,039,42039,2311,2117,83417488,69088189,3886,2819,135691530,121305027,88765,44686,2687149903,2621839209,59.47,75.1,61.48,56.95,2.6,4.74,3.1,2.64
-16134,42,085,42085,1575,702,52274042,52216838,3886,2819,135691530,121305027,116638,51733,1767939666,1741960803,40.53,24.9,38.52,43.05,1.35,1.36,2.96,3
-16136,42,007,42007,801,401,2000591,1909517,801,401,2000591,1909517,170539,78211,1150067104,1125900054,100,100,100,100,0.47,0.51,0.17,0.17
-16137,42,085,42085,12941,5179,281283872,279692703,12941,5179,281283872,279692703,116638,51733,1767939666,1741960803,100,100,100,100,11.1,10.01,15.91,16.06
-16140,42,073,42073,123,66,446348,446348,123,66,446348,446348,91108,40975,939428291,927669548,100,100,100,100,0.14,0.16,0.05,0.05
-16141,42,007,42007,889,407,18065421,17972265,1806,839,53445260,53149607,170539,78211,1150067104,1125900054,49.22,48.51,33.8,33.81,0.52,0.52,1.57,1.6
-16141,42,073,42073,917,432,35379839,35177342,1806,839,53445260,53149607,91108,40975,939428291,927669548,50.78,51.49,66.2,66.19,1.01,1.05,3.77,3.79
-16142,42,073,42073,4483,1371,39302385,39096163,7056,2282,108913832,108651272,91108,40975,939428291,927669548,63.53,60.08,36.09,35.98,4.92,3.35,4.18,4.21
-16142,42,085,42085,2573,911,69611447,69555109,7056,2282,108913832,108651272,116638,51733,1767939666,1741960803,36.47,39.92,63.91,64.02,2.21,1.76,3.94,3.99
-16143,42,073,42073,2299,1032,48824245,48414314,2901,1293,68090029,67680098,91108,40975,939428291,927669548,79.25,79.81,71.71,71.53,2.52,2.52,5.2,5.22
-16143,42,085,42085,602,261,19265784,19265784,2901,1293,68090029,67680098,116638,51733,1767939666,1741960803,20.75,20.19,28.29,28.47,0.52,0.5,1.09,1.11
-16145,42,085,42085,2726,1326,130570360,125366980,2726,1326,130570360,125366980,116638,51733,1767939666,1741960803,100,100,100,100,2.34,2.56,7.39,7.2
-16146,42,085,42085,14040,7138,9896383,9896383,14040,7138,9896383,9896383,116638,51733,1767939666,1741960803,100,100,100,100,12.04,13.8,0.56,0.57
-16148,42,085,42085,16959,8086,83328357,83053048,16959,8086,83328357,83053048,116638,51733,1767939666,1741960803,100,100,100,100,14.54,15.63,4.71,4.77
-16150,42,085,42085,7426,3328,65883285,59502091,7426,3328,65883285,59502091,116638,51733,1767939666,1741960803,100,100,100,100,6.37,6.43,3.73,3.42
-16151,42,085,42085,77,38,302185,302185,77,38,302185,302185,116638,51733,1767939666,1741960803,100,100,100,100,0.07,0.07,0.02,0.02
-16153,42,085,42085,2454,1123,97711162,97201766,2624,1213,112501578,111992182,116638,51733,1767939666,1741960803,93.52,92.58,86.85,86.79,2.1,2.17,5.53,5.58
-16153,42,121,42121,170,90,14790416,14790416,2624,1213,112501578,111992182,54984,27464,1768535866,1746387330,6.48,7.42,13.15,13.21,0.31,0.33,0.84,0.85
-16154,42,085,42085,2492,1094,74607131,67463760,2492,1094,74607131,67463760,116638,51733,1767939666,1741960803,100,100,100,100,2.14,2.11,4.22,3.87
-16155,42,073,42073,103,46,1754358,1754358,103,46,1754358,1754358,91108,40975,939428291,927669548,100,100,100,100,0.11,0.11,0.19,0.19
-16156,42,073,42073,2529,1017,105154621,104084524,3319,1347,130100692,128997997,91108,40975,939428291,927669548,76.2,75.5,80.83,80.69,2.78,2.48,11.19,11.22
-16156,42,085,42085,790,330,24946071,24913473,3319,1347,130100692,128997997,116638,51733,1767939666,1741960803,23.8,24.5,19.17,19.31,0.68,0.64,1.41,1.43
-16157,42,007,42007,559,259,11508715,11422860,3477,1532,65954883,64856557,170539,78211,1150067104,1125900054,16.08,16.91,17.45,17.61,0.33,0.33,1,1.01
-16157,42,073,42073,2918,1273,54446168,53433697,3477,1532,65954883,64856557,91108,40975,939428291,927669548,83.92,83.09,82.55,82.39,3.2,3.11,5.8,5.76
-16159,42,073,42073,382,157,7678099,7678099,4706,2109,70702188,70592696,91108,40975,939428291,927669548,8.12,7.44,10.86,10.88,0.42,0.38,0.82,0.83
-16159,42,085,42085,4324,1952,63024089,62914597,4706,2109,70702188,70592696,116638,51733,1767939666,1741960803,91.88,92.56,89.14,89.12,3.71,3.77,3.56,3.61
-16160,42,073,42073,864,430,3417998,3234220,864,430,3417998,3234220,91108,40975,939428291,927669548,100,100,100,100,0.95,1.05,0.36,0.35
-16161,42,085,42085,644,374,2264627,2264627,644,374,2264627,2264627,116638,51733,1767939666,1741960803,100,100,100,100,0.55,0.72,0.13,0.13
-16201,42,005,42005,18214,8360,299562300,296949508,18214,8360,299562300,296949508,68941,32520,1719343888,1691787010,100,100,100,100,26.42,25.71,17.42,17.55
-16210,42,005,42005,1014,523,53974675,51149310,1014,523,53974675,51149310,68941,32520,1719343888,1691787010,100,100,100,100,1.47,1.61,3.14,3.02
-16211,42,063,42063,104,47,2621590,2621590,104,47,2621590,2621590,88880,38236,2160811828,2141997762,100,100,100,100,0.12,0.12,0.12,0.12
-16212,42,005,42005,339,163,2818194,2504442,339,163,2818194,2504442,68941,32520,1719343888,1691787010,100,100,100,100,0.49,0.5,0.16,0.15
-16213,42,031,42031,204,100,374052,372959,204,100,374052,372959,39988,19962,1579489787,1556153827,100,100,100,100,0.51,0.5,0.02,0.02
-16214,42,031,42031,10127,4410,129959070,127467255,10127,4410,129959070,127467255,39988,19962,1579489787,1556153827,100,100,100,100,25.33,22.09,8.23,8.19
-16217,42,053,42053,72,114,12076846,12076846,101,163,14720535,14606240,7716,8760,1114980555,1106404231,71.29,69.94,82.04,82.68,0.93,1.3,1.08,1.09
-16217,42,065,42065,29,49,2643689,2529394,101,163,14720535,14606240,45200,22434,1701105972,1689783371,28.71,30.06,17.96,17.32,0.06,0.22,0.16,0.15
-16218,42,005,42005,1195,561,74076943,73462230,1195,561,74076943,73462230,68941,32520,1719343888,1691787010,100,100,100,100,1.73,1.73,4.31,4.34
-16222,42,005,42005,2272,1006,147137540,145830482,2526,1104,171927805,170416350,68941,32520,1719343888,1691787010,89.94,91.12,85.58,85.57,3.3,3.09,8.56,8.62
-16222,42,063,42063,184,58,12136736,11940970,2526,1104,171927805,170416350,88880,38236,2160811828,2141997762,7.28,5.25,7.06,7.01,0.21,0.15,0.56,0.56
-16222,42,065,42065,70,40,12653529,12644898,2526,1104,171927805,170416350,45200,22434,1701105972,1689783371,2.77,3.62,7.36,7.42,0.15,0.18,0.74,0.75
-16223,42,005,42005,154,73,2802938,2802938,154,73,2802938,2802938,68941,32520,1719343888,1691787010,100,100,100,100,0.22,0.22,0.16,0.17
-16224,42,005,42005,107,45,4315775,4315775,1181,527,52185055,51937648,68941,32520,1719343888,1691787010,9.06,8.54,8.27,8.31,0.16,0.14,0.25,0.26
-16224,42,031,42031,1074,482,47869280,47621873,1181,527,52185055,51937648,39988,19962,1579489787,1556153827,90.94,91.46,91.73,91.69,2.69,2.41,3.03,3.06
-16226,42,005,42005,8279,4197,154266881,149901519,8279,4197,154266881,149901519,68941,32520,1719343888,1691787010,100,100,100,100,12.01,12.91,8.97,8.86
-16228,42,005,42005,371,180,196837,196837,371,180,196837,196837,68941,32520,1719343888,1691787010,100,100,100,100,0.54,0.55,0.01,0.01
-16229,42,005,42005,4033,1811,60883509,58789051,4997,2198,67064700,64478444,68941,32520,1719343888,1691787010,80.71,82.39,90.78,91.18,5.85,5.57,3.54,3.47
-16229,42,019,42019,848,334,5140624,5062101,4997,2198,67064700,64478444,183862,78167,2058397354,2042475490,16.97,15.2,7.67,7.85,0.46,0.43,0.25,0.25
-16229,42,129,42129,116,53,1040567,627292,4997,2198,67064700,64478444,365169,168199,2683420993,2661353634,2.32,2.41,1.55,0.97,0.03,0.03,0.04,0.02
-16230,42,031,42031,494,204,2808251,2653923,494,204,2808251,2653923,39988,19962,1579489787,1556153827,100,100,100,100,1.24,1.02,0.18,0.17
-16232,42,031,42031,4271,1967,146918683,145965738,4281,1973,148704665,147751720,39988,19962,1579489787,1556153827,99.77,99.7,98.8,98.79,10.68,9.85,9.3,9.38
-16232,42,121,42121,10,6,1785982,1785982,4281,1973,148704665,147751720,54984,27464,1768535866,1746387330,0.23,0.3,1.2,1.21,0.02,0.02,0.1,0.1
-16233,42,031,42031,1246,1180,105309359,104766751,1246,1180,105309359,104766751,39988,19962,1579489787,1556153827,100,100,100,100,3.12,5.91,6.67,6.73
-16235,42,031,42031,1256,590,73208528,72958168,1256,590,73208528,72958168,39988,19962,1579489787,1556153827,100,100,100,100,3.14,2.96,4.63,4.69
-16236,42,005,42005,262,127,379360,170198,262,127,379360,170198,68941,32520,1719343888,1691787010,100,100,100,100,0.38,0.39,0.02,0.01
-16238,42,005,42005,410,183,289048,240096,410,183,289048,240096,68941,32520,1719343888,1691787010,100,100,100,100,0.59,0.56,0.02,0.01
-16239,42,053,42053,4172,2489,510987168,510545777,4172,2489,510987168,510545777,7716,8760,1114980555,1106404231,100,100,100,100,54.07,28.41,45.83,46.14
-16240,42,005,42005,500,256,49944100,49912873,1533,736,140001617,138983329,68941,32520,1719343888,1691787010,32.62,34.78,35.67,35.91,0.73,0.79,2.9,2.95
-16240,42,031,42031,586,260,39417182,39047248,1533,736,140001617,138983329,39988,19962,1579489787,1556153827,38.23,35.33,28.15,28.09,1.47,1.3,2.5,2.51
-16240,42,065,42065,447,220,50640335,50023208,1533,736,140001617,138983329,45200,22434,1701105972,1689783371,29.16,29.89,36.17,35.99,0.99,0.98,2.98,2.96
-16242,42,005,42005,2128,995,109664583,108149345,4693,2217,237611974,234358726,68941,32520,1719343888,1691787010,45.34,44.88,46.15,46.15,3.09,3.06,6.38,6.39
-16242,42,031,42031,2565,1222,127947391,126209381,4693,2217,237611974,234358726,39988,19962,1579489787,1556153827,54.66,55.12,53.85,53.85,6.41,6.12,8.1,8.11
-16244,42,005,42005,265,112,3123148,3123148,265,112,3123148,3123148,68941,32520,1719343888,1691787010,100,100,100,100,0.38,0.34,0.18,0.18
-16245,42,005,42005,207,95,1536450,1536450,207,95,1536450,1536450,68941,32520,1719343888,1691787010,100,100,100,100,0.3,0.29,0.09,0.09
-16246,42,063,42063,252,118,876661,876661,252,118,876661,876661,88880,38236,2160811828,2141997762,100,100,100,100,0.28,0.31,0.04,0.04
-16248,42,031,42031,3130,1487,137658192,134934581,3130,1487,137658192,134934581,39988,19962,1579489787,1556153827,100,100,100,100,7.83,7.45,8.72,8.67
-16249,42,005,42005,2089,931,72915694,71904500,2089,931,72915694,71904500,68941,32520,1719343888,1691787010,100,100,100,100,3.03,2.86,4.24,4.25
-16250,42,005,42005,315,149,7940316,7137729,315,149,7940316,7137729,68941,32520,1719343888,1691787010,100,100,100,100,0.46,0.46,0.46,0.42
-16253,42,005,42005,91,45,547158,547158,91,45,547158,547158,68941,32520,1719343888,1691787010,100,100,100,100,0.13,0.14,0.03,0.03
-16254,42,031,42031,3471,1605,133456981,132044957,3471,1605,133456981,132044957,39988,19962,1579489787,1556153827,100,100,100,100,8.68,8.04,8.45,8.49
-16255,42,031,42031,1943,848,106862518,105947691,1943,848,106862518,105947691,39988,19962,1579489787,1556153827,100,100,100,100,4.86,4.25,6.77,6.81
-16256,42,063,42063,2084,639,104433918,103207236,2084,639,104433918,103207236,88880,38236,2160811828,2141997762,100,100,100,100,2.34,1.67,4.83,4.82
-16258,42,031,42031,1869,1200,89190308,88369628,1869,1200,89190308,88369628,39988,19962,1579489787,1556153827,100,100,100,100,4.67,6.01,5.65,5.68
-16259,42,005,42005,1934,1066,124302869,120056995,1934,1066,124302869,120056995,68941,32520,1719343888,1691787010,100,100,100,100,2.81,3.28,7.23,7.1
-16260,42,031,42031,296,266,24186942,24078247,296,266,24186942,24078247,39988,19962,1579489787,1556153827,100,100,100,100,0.74,1.33,1.53,1.55
-16262,42,005,42005,3007,1288,90556479,90556479,3007,1288,90556479,90556479,68941,32520,1719343888,1691787010,100,100,100,100,4.36,3.96,5.27,5.35
-16263,42,005,42005,317,138,4066288,4066288,317,138,4066288,4066288,68941,32520,1719343888,1691787010,100,100,100,100,0.46,0.42,0.24,0.24
-16301,42,121,42121,16321,8118,281906057,276087712,16321,8118,281906057,276087712,54984,27464,1768535866,1746387330,100,100,100,100,29.68,29.56,15.94,15.81
-16311,42,085,42085,541,301,36578094,36263124,564,312,38347095,38032125,116638,51733,1767939666,1741960803,95.92,96.47,95.39,95.35,0.46,0.58,2.07,2.08
-16311,42,121,42121,23,11,1769001,1769001,564,312,38347095,38032125,54984,27464,1768535866,1746387330,4.08,3.53,4.61,4.65,0.04,0.04,0.1,0.1
-16312,42,123,42123,25,12,72297,72297,25,12,72297,72297,41815,23560,2327266611,2289898600,100,100,100,100,0.06,0.05,0,0
-16313,42,123,42123,1848,1377,255084761,254732911,1848,1377,255084761,254732911,41815,23560,2327266611,2289898600,100,100,100,100,4.42,5.84,10.96,11.12
-16314,42,039,42039,4788,2376,186774249,185560294,5507,2714,237236563,235998628,88765,44686,2687149903,2621839209,86.94,87.55,78.73,78.63,5.39,5.32,6.95,7.08
-16314,42,085,42085,379,167,28568852,28544872,5507,2714,237236563,235998628,116638,51733,1767939666,1741960803,6.88,6.15,12.04,12.1,0.32,0.32,1.62,1.64
-16314,42,121,42121,340,171,21893462,21893462,5507,2714,237236563,235998628,54984,27464,1768535866,1746387330,6.17,6.3,9.23,9.28,0.62,0.62,1.24,1.25
-16316,42,039,42039,5436,4141,127105773,123002962,5436,4141,127105773,123002962,88765,44686,2687149903,2621839209,100,100,100,100,6.12,9.27,4.73,4.69
-16317,42,039,42039,23,15,3687308,3687308,1456,703,77374554,77374554,88765,44686,2687149903,2621839209,1.58,2.13,4.77,4.77,0.03,0.03,0.14,0.14
-16317,42,121,42121,1433,688,73687246,73687246,1456,703,77374554,77374554,54984,27464,1768535866,1746387330,98.42,97.87,95.23,95.23,2.61,2.51,4.17,4.22
-16319,42,031,42031,332,150,21105397,21060719,1355,581,88819209,88774531,39988,19962,1579489787,1556153827,24.5,25.82,23.76,23.72,0.83,0.75,1.34,1.35
-16319,42,121,42121,1023,431,67713812,67713812,1355,581,88819209,88774531,54984,27464,1768535866,1746387330,75.5,74.18,76.24,76.28,1.86,1.57,3.83,3.88
-16321,42,053,42053,76,95,3298560,3298560,76,95,3298560,3298560,7716,8760,1114980555,1106404231,100,100,100,100,0.98,1.08,0.3,0.3
-16322,42,053,42053,158,146,15812230,15812230,158,146,15812230,15812230,7716,8760,1114980555,1106404231,100,100,100,100,2.05,1.67,1.42,1.43
-16323,42,121,42121,16372,7587,266250618,260759368,16372,7587,266250618,260759368,54984,27464,1768535866,1746387330,100,100,100,100,29.78,27.63,15.05,14.93
-16326,42,031,42031,391,169,17717095,17696870,391,169,17717095,17696870,39988,19962,1579489787,1556153827,100,100,100,100,0.98,0.85,1.12,1.14
-16327,42,039,42039,2978,1277,172358545,171473356,2978,1277,172358545,171473356,88765,44686,2687149903,2621839209,100,100,100,100,3.35,2.86,6.41,6.54
-16328,42,039,42039,80,43,146501,146501,80,43,146501,146501,88765,44686,2687149903,2621839209,100,100,100,100,0.09,0.1,0.01,0.01
-16329,42,123,42123,528,396,23137426,21283419,528,396,23137426,21283419,41815,23560,2327266611,2289898600,100,100,100,100,1.26,1.68,0.99,0.93
-16331,42,031,42031,88,32,3424333,3410081,88,32,3424333,3410081,39988,19962,1579489787,1556153827,100,100,100,100,0.22,0.16,0.22,0.22
-16332,42,031,42031,53,34,7788839,7763614,53,34,7788839,7763614,39988,19962,1579489787,1556153827,100,100,100,100,0.13,0.17,0.49,0.5
-16333,42,083,42083,240,186,16967926,16967118,240,186,16967926,16967118,43450,21225,2549116804,2536109386,100,100,100,100,0.55,0.88,0.67,0.67
-16334,42,031,42031,338,141,14094332,14090077,338,141,14094332,14090077,39988,19962,1579489787,1556153827,100,100,100,100,0.85,0.71,0.89,0.91
-16335,42,039,42039,28445,13013,293526333,290584091,28445,13013,293526333,290584091,88765,44686,2687149903,2621839209,100,100,100,100,32.05,29.12,10.92,11.08
-16340,42,123,42123,1990,1322,249424925,249424925,1990,1322,249424925,249424925,41815,23560,2327266611,2289898600,100,100,100,100,4.76,5.61,10.72,10.89
-16341,42,053,42053,253,287,48899772,48899772,2030,1169,175020637,175020637,7716,8760,1114980555,1106404231,12.46,24.55,27.94,27.94,3.28,3.28,4.39,4.42
-16341,42,121,42121,1777,882,126120865,126120865,2030,1169,175020637,175020637,54984,27464,1768535866,1746387330,87.54,75.45,72.06,72.06,3.23,3.21,7.13,7.22
-16342,42,085,42085,10,7,1936345,1936345,2281,1142,161840358,159926421,116638,51733,1767939666,1741960803,0.44,0.61,1.2,1.21,0.01,0.01,0.11,0.11
-16342,42,121,42121,2271,1135,159904013,157990076,2281,1142,161840358,159926421,54984,27464,1768535866,1746387330,99.56,99.39,98.8,98.79,4.13,4.13,9.04,9.05
-16343,42,121,42121,449,210,14177281,12312620,449,210,14177281,12312620,54984,27464,1768535866,1746387330,100,100,100,100,0.82,0.76,0.8,0.71
-16344,42,121,42121,523,230,2313735,2313735,523,230,2313735,2313735,54984,27464,1768535866,1746387330,100,100,100,100,0.95,0.84,0.13,0.13
-16345,42,123,42123,3543,1788,238756608,231070362,3543,1788,238756608,231070362,41815,23560,2327266611,2289898600,100,100,100,100,8.47,7.59,10.26,10.09
-16346,42,121,42121,3247,1494,42560123,42560123,3247,1494,42560123,42560123,54984,27464,1768535866,1746387330,100,100,100,100,5.91,5.44,2.41,2.44
-16347,42,053,42053,117,516,112517641,112514615,2238,1787,266398682,266382063,7716,8760,1114980555,1106404231,5.23,28.88,42.24,42.24,1.52,5.89,10.09,10.17
-16347,42,123,42123,2121,1271,153881041,153867448,2238,1787,266398682,266382063,41815,23560,2327266611,2289898600,94.77,71.12,57.76,57.76,5.07,5.39,6.61,6.72
-16350,42,123,42123,2737,1051,119311839,119224759,2737,1051,119311839,119224759,41815,23560,2327266611,2289898600,100,100,100,100,6.55,4.46,5.13,5.21
-16351,42,053,42053,90,122,12168834,11595531,1716,2609,262016306,257430753,7716,8760,1114980555,1106404231,5.24,4.68,4.64,4.5,1.17,1.39,1.09,1.05
-16351,42,123,42123,1626,2487,249847472,245835222,1716,2609,262016306,257430753,41815,23560,2327266611,2289898600,94.76,95.32,95.36,95.5,3.89,10.56,10.74,10.74
-16352,42,123,42123,245,164,33168304,33168304,245,164,33168304,33168304,41815,23560,2327266611,2289898600,100,100,100,100,0.59,0.7,1.43,1.45
-16353,42,031,42031,956,847,45725510,45597166,3348,5036,382706487,376178737,39988,19962,1579489787,1556153827,28.55,16.82,11.95,12.12,2.39,4.24,2.89,2.93
-16353,42,053,42053,2291,4048,329086004,322686598,3348,5036,382706487,376178737,7716,8760,1114980555,1106404231,68.43,80.38,85.99,85.78,29.69,46.21,29.51,29.17
-16353,42,121,42121,101,141,7894973,7894973,3348,5036,382706487,376178737,54984,27464,1768535866,1746387330,3.02,2.8,2.06,2.1,0.18,0.51,0.45,0.45
-16354,42,039,42039,8329,3935,127789549,127789549,11379,5388,320850567,320850567,88765,44686,2687149903,2621839209,73.2,73.03,39.83,39.83,9.38,8.81,4.76,4.87
-16354,42,121,42121,2801,1313,168604651,168604651,11379,5388,320850567,320850567,54984,27464,1768535866,1746387330,24.62,24.37,52.55,52.55,5.09,4.78,9.53,9.65
-16354,42,123,42123,249,140,24456367,24456367,11379,5388,320850567,320850567,41815,23560,2327266611,2289898600,2.19,2.6,7.62,7.62,0.6,0.59,1.05,1.07
-16360,42,039,42039,1383,608,74700169,74434920,1383,608,74700169,74434920,88765,44686,2687149903,2621839209,100,100,100,100,1.56,1.36,2.78,2.84
-16361,42,031,42031,53,44,5652124,5645684,53,44,5652124,5645684,39988,19962,1579489787,1556153827,100,100,100,100,0.13,0.22,0.36,0.36
-16362,42,085,42085,82,40,6137899,6128049,1102,582,69018721,68180387,116638,51733,1767939666,1741960803,7.44,6.87,8.89,8.99,0.07,0.08,0.35,0.35
-16362,42,121,42121,1020,542,62880822,62052338,1102,582,69018721,68180387,54984,27464,1768535866,1746387330,92.56,93.13,91.11,91.01,1.86,1.97,3.56,3.55
-16364,42,031,42031,410,179,16213362,16186679,1347,582,86552963,86526280,39988,19962,1579489787,1556153827,30.44,30.76,18.73,18.71,1.03,0.9,1.03,1.04
-16364,42,121,42121,937,403,70339601,70339601,1347,582,86552963,86526280,54984,27464,1768535866,1746387330,69.56,69.24,81.27,81.29,1.7,1.47,3.98,4.03
-16365,42,123,42123,18579,9299,383365360,377505325,18579,9299,383365360,377505325,41815,23560,2327266611,2289898600,100,100,100,100,44.43,39.47,16.47,16.49
-16370,42,053,42053,358,586,33723506,32587217,358,586,33723506,32587217,7716,8760,1114980555,1106404231,100,100,100,100,4.64,6.69,3.02,2.95
-16371,42,123,42123,3260,1580,79348784,79337796,3260,1580,79348784,79337796,41815,23560,2327266611,2289898600,100,100,100,100,7.8,6.71,3.41,3.46
-16372,42,121,42121,499,240,3080903,3073209,499,240,3080903,3073209,54984,27464,1768535866,1746387330,100,100,100,100,0.91,0.87,0.17,0.18
-16373,42,019,42019,362,170,14193045,14193045,3510,1926,213914642,207239582,183862,78167,2058397354,2042475490,10.31,8.83,6.63,6.85,0.2,0.22,0.69,0.69
-16373,42,031,42031,890,418,62851187,61076633,3510,1926,213914642,207239582,39988,19962,1579489787,1556153827,25.36,21.7,29.38,29.47,2.23,2.09,3.98,3.92
-16373,42,121,42121,2258,1338,136870410,131969904,3510,1926,213914642,207239582,54984,27464,1768535866,1746387330,64.33,69.47,63.98,63.68,4.11,4.87,7.74,7.56
-16374,42,121,42121,1968,1802,185867424,184543765,1968,1802,185867424,184543765,54984,27464,1768535866,1746387330,100,100,100,100,3.58,6.56,10.51,10.57
-16401,42,039,42039,106,50,5561618,5561618,6581,1902,148662176,147670104,88765,44686,2687149903,2621839209,1.61,2.63,3.74,3.77,0.12,0.11,0.21,0.21
-16401,42,049,42049,6475,1852,143100558,142108486,6581,1902,148662176,147670104,280566,119138,4035800438,2069799485,98.39,97.37,96.26,96.23,2.31,1.55,3.55,6.87
-16402,42,123,42123,956,414,57384465,57294362,956,414,57384465,57294362,41815,23560,2327266611,2289898600,100,100,100,100,2.29,1.76,2.47,2.5
-16403,42,039,42039,6644,2567,223325841,222494196,7029,2718,240658445,239709397,88765,44686,2687149903,2621839209,94.52,94.44,92.8,92.82,7.48,5.74,8.31,8.49
-16403,42,049,42049,385,151,17332604,17215201,7029,2718,240658445,239709397,280566,119138,4035800438,2069799485,5.48,5.56,7.2,7.18,0.14,0.13,0.43,0.83
-16404,42,039,42039,3269,1497,233689167,233528699,3269,1497,233689167,233528699,88765,44686,2687149903,2621839209,100,100,100,100,3.68,3.35,8.7,8.91
-16405,42,123,42123,922,411,62809730,62801609,922,411,62809730,62801609,41815,23560,2327266611,2289898600,100,100,100,100,2.2,1.74,2.7,2.74
-16406,42,039,42039,3509,1470,198253899,198130948,3509,1470,198253899,198130948,88765,44686,2687149903,2621839209,100,100,100,100,3.95,3.29,7.38,7.56
-16407,42,039,42039,176,71,8761651,8324002,11317,4851,279207600,278349557,88765,44686,2687149903,2621839209,1.56,1.46,3.14,2.99,0.2,0.16,0.33,0.32
-16407,42,049,42049,9806,4189,206309122,205889366,11317,4851,279207600,278349557,280566,119138,4035800438,2069799485,86.65,86.35,73.89,73.97,3.5,3.52,5.11,9.95
-16407,42,123,42123,1335,591,64136827,64136189,11317,4851,279207600,278349557,41815,23560,2327266611,2289898600,11.8,12.18,22.97,23.04,3.19,2.51,2.76,2.8
-16410,42,049,42049,1854,704,58581090,58348756,1854,704,58581090,58348756,280566,119138,4035800438,2069799485,100,100,100,100,0.66,0.59,1.45,2.82
-16411,42,049,42049,1477,762,51202333,46020067,1477,762,51202333,46020067,280566,119138,4035800438,2069799485,100,100,100,100,0.53,0.64,1.27,2.22
-16412,42,039,42039,666,278,41100348,41078572,10480,4711,209111138,207444932,88765,44686,2687149903,2621839209,6.35,5.9,19.65,19.8,0.75,0.62,1.53,1.57
-16412,42,049,42049,9814,4433,168010790,166366360,10480,4711,209111138,207444932,280566,119138,4035800438,2069799485,93.65,94.1,80.35,80.2,3.5,3.72,4.16,8.04
-16415,42,049,42049,8916,3399,63656845,61399724,8916,3399,63656845,61399724,280566,119138,4035800438,2069799485,100,100,100,100,3.18,2.85,1.58,2.97
-16416,42,123,42123,203,103,10128460,10128460,203,103,10128460,10128460,41815,23560,2327266611,2289898600,100,100,100,100,0.49,0.44,0.44,0.44
-16417,42,049,42049,8329,3516,121104771,120190870,8329,3516,121104771,120190870,280566,119138,4035800438,2069799485,100,100,100,100,2.97,2.95,3,5.81
-16420,42,123,42123,650,472,125967298,125967298,650,472,125967298,125967298,41815,23560,2327266611,2289898600,100,100,100,100,1.55,2,5.41,5.5
-16421,42,049,42049,2518,1012,27498094,27451943,2518,1012,27498094,27451943,280566,119138,4035800438,2069799485,100,100,100,100,0.9,0.85,0.68,1.33
-16422,42,039,42039,401,184,3643308,3565315,401,184,3643308,3565315,88765,44686,2687149903,2621839209,100,100,100,100,0.45,0.41,0.14,0.14
-16423,42,049,42049,4450,1854,27457996,24508036,4450,1854,27457996,24508036,280566,119138,4035800438,2069799485,100,100,100,100,1.59,1.56,0.68,1.18
-16424,42,039,42039,4676,3939,213695855,176844902,4676,3939,213695855,176844902,88765,44686,2687149903,2621839209,100,100,100,100,5.27,8.81,7.95,6.75
-16426,42,049,42049,3730,1558,70431320,70136937,3730,1558,70431320,70136937,280566,119138,4035800438,2069799485,100,100,100,100,1.33,1.31,1.75,3.39
-16427,42,049,42049,193,76,671496,671496,193,76,671496,671496,280566,119138,4035800438,2069799485,100,100,100,100,0.07,0.06,0.02,0.03
-16428,42,049,42049,12478,5251,199898046,190106239,12478,5251,199898046,190106239,280566,119138,4035800438,2069799485,100,100,100,100,4.45,4.41,4.95,9.18
-16433,42,039,42039,5384,2207,147062970,145596780,5384,2207,147062970,145596780,88765,44686,2687149903,2621839209,100,100,100,100,6.07,4.94,5.47,5.55
-16434,42,039,42039,2761,930,134640427,134512493,2990,1069,162467236,162200615,88765,44686,2687149903,2621839209,92.34,87,82.87,82.93,3.11,2.08,5.01,5.13
-16434,42,123,42123,229,139,27826809,27688122,2990,1069,162467236,162200615,41815,23560,2327266611,2289898600,7.66,13,17.13,17.07,0.55,0.59,1.2,1.21
-16435,42,039,42039,2061,894,143878030,143875715,2108,910,144521592,144519277,88765,44686,2687149903,2621839209,97.77,98.24,99.55,99.55,2.32,2,5.35,5.49
-16435,42,049,42049,47,16,643562,643562,2108,910,144521592,144519277,280566,119138,4035800438,2069799485,2.23,1.76,0.45,0.45,0.02,0.01,0.02,0.03
-16436,42,123,42123,756,520,120495284,120415166,756,520,120495284,120415166,41815,23560,2327266611,2289898600,100,100,100,100,1.81,2.21,5.18,5.26
-16438,42,039,42039,1554,1495,80472277,79639698,8083,4164,269492867,267438486,88765,44686,2687149903,2621839209,19.23,35.9,29.86,29.78,1.75,3.35,2.99,3.04
-16438,42,049,42049,6529,2669,189020590,187798788,8083,4164,269492867,267438486,280566,119138,4035800438,2069799485,80.77,64.1,70.14,70.22,2.33,2.24,4.68,9.07
-16440,42,039,42039,891,464,28393034,28350628,891,464,28393034,28350628,88765,44686,2687149903,2621839209,100,100,100,100,1,1.04,1.06,1.08
-16441,42,039,42039,169,68,7135277,7030632,10136,4045,294039695,291772575,88765,44686,2687149903,2621839209,1.67,1.68,2.43,2.41,0.19,0.15,0.27,0.27
-16441,42,049,42049,9967,3977,286904418,284741943,10136,4045,294039695,291772575,280566,119138,4035800438,2069799485,98.33,98.32,97.57,97.59,3.55,3.34,7.11,13.76
-16442,42,049,42049,2958,1132,131116222,130298072,2958,1132,131116222,130298072,280566,119138,4035800438,2069799485,100,100,100,100,1.05,0.95,3.25,6.3
-16443,42,049,42049,1425,594,29525537,29206878,1425,594,29525537,29206878,280566,119138,4035800438,2069799485,100,100,100,100,0.51,0.5,0.73,1.41
-16444,42,049,42049,1717,0,713085,679444,1717,0,713085,679444,280566,119138,4035800438,2069799485,100,0,100,100,0.61,0,0.02,0.03
-16501,42,049,42049,2044,1471,1776053,1762373,2044,1471,1776053,1762373,280566,119138,4035800438,2069799485,100,100,100,100,0.73,1.23,0.04,0.09
-16502,42,049,42049,16664,7894,6606084,6606084,16664,7894,6606084,6606084,280566,119138,4035800438,2069799485,100,100,100,100,5.94,6.63,0.16,0.32
-16503,42,049,42049,16850,6980,6347930,6336664,16850,6980,6347930,6336664,280566,119138,4035800438,2069799485,100,100,100,100,6.01,5.86,0.16,0.31
-16504,42,049,42049,17322,7159,7220367,7220367,17322,7159,7220367,7220367,280566,119138,4035800438,2069799485,100,100,100,100,6.17,6.01,0.18,0.35
-16505,42,049,42049,17168,8554,47035560,30734858,17168,8554,47035560,30734858,280566,119138,4035800438,2069799485,100,100,100,100,6.12,7.18,1.17,1.48
-16506,42,049,42049,23720,10345,36333129,36260590,23720,10345,36333129,36260590,280566,119138,4035800438,2069799485,100,100,100,100,8.45,8.68,0.9,1.75
-16507,42,049,42049,11088,4766,7899457,5441490,11088,4766,7899457,5441490,280566,119138,4035800438,2069799485,100,100,100,100,3.95,4,0.2,0.26
-16508,42,049,42049,16050,7214,7343923,7316297,16050,7214,7343923,7316297,280566,119138,4035800438,2069799485,100,100,100,100,5.72,6.06,0.18,0.35
-16509,42,049,42049,26810,12307,98851841,98751206,26810,12307,98851841,98751206,280566,119138,4035800438,2069799485,100,100,100,100,9.56,10.33,2.45,4.77
-16510,42,049,42049,25625,10299,84925344,84885083,25625,10299,84925344,84885083,280566,119138,4035800438,2069799485,100,100,100,100,9.13,8.64,2.1,4.1
-16511,42,049,42049,11382,5004,25084224,19410241,11382,5004,25084224,19410241,280566,119138,4035800438,2069799485,100,100,100,100,4.06,4.2,0.62,0.94
-16546,42,049,42049,1154,0,142166,142166,1154,0,142166,142166,280566,119138,4035800438,2069799485,100,0,100,100,0.41,0,0,0.01
-16563,42,049,42049,1621,0,1150788,1149898,1621,0,1150788,1149898,280566,119138,4035800438,2069799485,100,0,100,100,0.58,0,0.03,0.06
-16601,42,013,42013,33870,14980,225125150,224050639,33870,14980,225125150,224050639,127089,56276,1365100822,1361815301,100,100,100,100,26.65,26.62,16.49,16.45
-16602,42,013,42013,29554,13515,38396401,38334662,29554,13515,38396401,38334662,127089,56276,1365100822,1361815301,100,100,100,100,23.25,24.02,2.81,2.81
-16611,42,061,42061,2410,1125,110832336,110715008,2410,1125,110832336,110715008,45913,22365,2303188808,2265305450,100,100,100,100,5.25,5.03,4.81,4.89
-16613,42,013,42013,11,7,11569532,11569532,1535,639,66397717,66397717,127089,56276,1365100822,1361815301,0.72,1.1,17.42,17.42,0.01,0.01,0.85,0.85
-16613,42,021,42021,1524,632,54828185,54828185,1535,639,66397717,66397717,143679,65650,1796500413,1782819861,99.28,98.9,82.58,82.58,1.06,0.96,3.05,3.08
-16616,42,033,42033,116,66,5937115,5918790,116,66,5937115,5918790,81642,38644,2988750110,2964816225,100,100,100,100,0.14,0.17,0.2,0.2
-16617,42,013,42013,2806,1255,4230785,4205263,2806,1255,4230785,4205263,127089,56276,1365100822,1361815301,100,100,100,100,2.21,2.23,0.31,0.31
-16619,42,021,42021,347,168,34543453,34502521,347,168,34543453,34502521,143679,65650,1796500413,1782819861,100,100,100,100,0.24,0.26,1.92,1.94
-16620,42,033,42033,414,194,2252786,2215232,414,194,2252786,2215232,81642,38644,2988750110,2964816225,100,100,100,100,0.51,0.5,0.08,0.07
-16621,42,061,42061,737,346,33781232,33781232,737,346,33781232,33781232,45913,22365,2303188808,2265305450,100,100,100,100,1.61,1.55,1.47,1.49
-16622,42,061,42061,175,94,19289629,19289629,175,94,19289629,19289629,45913,22365,2303188808,2265305450,100,100,100,100,0.38,0.42,0.84,0.85
-16623,42,061,42061,567,329,33440032,33440032,567,329,33440032,33440032,45913,22365,2303188808,2265305450,100,100,100,100,1.23,1.47,1.45,1.48
-16624,42,021,42021,204,95,3039410,3039410,204,95,3039410,3039410,143679,65650,1796500413,1782819861,100,100,100,100,0.14,0.14,0.17,0.17
-16625,42,009,42009,890,569,39059835,39049301,3868,1938,83019826,83009292,49762,23954,2633772365,2621835502,23.01,29.36,47.05,47.04,1.79,2.38,1.48,1.49
-16625,42,013,42013,2978,1369,43959991,43959991,3868,1938,83019826,83009292,127089,56276,1365100822,1361815301,76.99,70.64,52.95,52.96,2.34,2.43,3.22,3.23
-16627,42,021,42021,88,46,7879667,7879667,2278,1130,84772502,84273984,143679,65650,1796500413,1782819861,3.86,4.07,9.3,9.35,0.06,0.07,0.44,0.44
-16627,42,033,42033,2190,1084,76892835,76394317,2278,1130,84772502,84273984,81642,38644,2988750110,2964816225,96.14,95.93,90.7,90.65,2.68,2.81,2.57,2.58
-16630,42,021,42021,5080,2169,28375242,28375242,5080,2169,28375242,28375242,143679,65650,1796500413,1782819861,100,100,100,100,3.54,3.3,1.58,1.59
-16631,42,013,42013,90,35,1558077,1558077,90,35,1558077,1558077,127089,56276,1365100822,1361815301,100,100,100,100,0.07,0.06,0.11,0.11
-16633,42,009,42009,200,90,875263,875263,200,90,875263,875263,49762,23954,2633772365,2621835502,100,100,100,100,0.4,0.38,0.03,0.03
-16634,42,061,42061,302,158,8881648,8881648,302,158,8881648,8881648,45913,22365,2303188808,2265305450,100,100,100,100,0.66,0.71,0.39,0.39
-16635,42,013,42013,11321,4990,147247892,147002596,11321,4990,147247892,147002596,127089,56276,1365100822,1361815301,100,100,100,100,8.91,8.87,10.79,10.79
-16636,42,013,42013,39,17,2835560,2835560,742,349,72726309,72708568,127089,56276,1365100822,1361815301,5.26,4.87,3.9,3.9,0.03,0.03,0.21,0.21
-16636,42,021,42021,703,332,69890749,69873008,742,349,72726309,72708568,143679,65650,1796500413,1782819861,94.74,95.13,96.1,96.1,0.49,0.51,3.89,3.92
-16637,42,013,42013,2873,1322,48557976,48557976,2873,1322,48557976,48557976,127089,56276,1365100822,1361815301,100,100,100,100,2.26,2.35,3.56,3.57
-16638,42,061,42061,67,37,1781343,1781343,67,37,1781343,1781343,45913,22365,2303188808,2265305450,100,100,100,100,0.15,0.17,0.08,0.08
-16639,42,021,42021,1355,706,81473674,81473575,1494,793,93645775,93562147,143679,65650,1796500413,1782819861,90.7,89.03,87,87.08,0.94,1.08,4.54,4.57
-16639,42,033,42033,139,87,12172101,12088572,1494,793,93645775,93562147,81642,38644,2988750110,2964816225,9.3,10.97,13,12.92,0.17,0.23,0.41,0.41
-16640,42,021,42021,817,571,34526635,34256424,817,571,34526635,34256424,143679,65650,1796500413,1782819861,100,100,100,100,0.57,0.87,1.92,1.92
-16641,42,013,42013,141,64,19154921,19154921,2598,1158,43653057,43653057,127089,56276,1365100822,1361815301,5.43,5.53,43.88,43.88,0.11,0.11,1.4,1.41
-16641,42,021,42021,2457,1094,24498136,24498136,2598,1158,43653057,43653057,143679,65650,1796500413,1782819861,94.57,94.47,56.12,56.12,1.71,1.67,1.36,1.37
-16645,42,033,42033,142,63,4684117,4569468,142,63,4684117,4569468,81642,38644,2988750110,2964816225,100,100,100,100,0.17,0.16,0.16,0.15
-16646,42,021,42021,2542,1066,49046726,49046726,2558,1072,49542847,49542594,143679,65650,1796500413,1782819861,99.37,99.44,99,99,1.77,1.62,2.73,2.75
-16646,42,033,42033,16,6,496121,495868,2558,1072,49542847,49542594,81642,38644,2988750110,2964816225,0.63,0.56,1,1,0.02,0.02,0.02,0.02
-16647,42,061,42061,764,694,72396410,57005716,764,694,72396410,57005716,45913,22365,2303188808,2265305450,100,100,100,100,1.66,3.1,3.14,2.52
-16648,42,013,42013,15538,6548,150391182,149190055,15538,6548,150391182,149190055,127089,56276,1365100822,1361815301,100,100,100,100,12.23,11.64,11.02,10.96
-16650,42,009,42009,2036,1023,117433225,116335746,2036,1023,117433225,116335746,49762,23954,2633772365,2621835502,100,100,100,100,4.09,4.27,4.46,4.44
-16651,42,033,42033,5813,1762,110580471,109915455,5813,1762,110580471,109915455,81642,38644,2988750110,2964816225,100,100,100,100,7.12,4.56,3.7,3.71
-16652,42,061,42061,18028,7329,468406448,457912424,18028,7329,468406448,457912424,45913,22365,2303188808,2265305450,100,100,100,100,39.27,32.77,20.34,20.21
-16655,42,009,42009,1514,653,88993292,88922688,1601,687,90470409,90399805,49762,23954,2633772365,2621835502,94.57,95.05,98.37,98.37,3.04,2.73,3.38,3.39
-16655,42,013,42013,87,34,1477117,1477117,1601,687,90470409,90399805,127089,56276,1365100822,1361815301,5.43,4.95,1.63,1.63,0.07,0.06,0.11,0.11
-16656,42,033,42033,1297,608,74679933,74273398,1297,608,74679933,74273398,81642,38644,2988750110,2964816225,100,100,100,100,1.59,1.57,2.5,2.51
-16657,42,009,42009,11,5,2330798,2330798,1343,1017,141756871,134711792,49762,23954,2633772365,2621835502,0.82,0.49,1.64,1.73,0.02,0.02,0.09,0.09
-16657,42,061,42061,1332,1012,139426073,132380994,1343,1017,141756871,134711792,45913,22365,2303188808,2265305450,99.18,99.51,98.36,98.27,2.9,4.52,6.05,5.84
-16659,42,009,42009,303,135,4710037,4710037,303,135,4710037,4710037,49762,23954,2633772365,2621835502,100,100,100,100,0.61,0.56,0.18,0.18
-16661,42,033,42033,951,472,53140207,52403609,951,472,53140207,52403609,81642,38644,2988750110,2964816225,100,100,100,100,1.16,1.22,1.78,1.77
-16662,42,009,42009,385,140,21879808,21866092,6040,2565,153044807,153031091,49762,23954,2633772365,2621835502,6.37,5.46,14.3,14.29,0.77,0.58,0.83,0.83
-16662,42,013,42013,5655,2425,131164999,131164999,6040,2565,153044807,153031091,127089,56276,1365100822,1361815301,93.63,94.54,85.7,85.71,4.45,4.31,9.61,9.63
-16664,42,009,42009,2104,768,105922114,105830724,2104,768,105922114,105830724,49762,23954,2633772365,2621835502,100,100,100,100,4.23,3.21,4.02,4.04
-16665,42,013,42013,299,134,1046105,1046105,299,134,1046105,1046105,127089,56276,1365100822,1361815301,100,100,100,100,0.24,0.24,0.08,0.08
-16666,42,027,42027,411,189,6559721,6559721,2960,1393,67687548,67398715,153990,63297,2882561458,2874682925,13.89,13.57,9.69,9.73,0.27,0.3,0.23,0.23
-16666,42,033,42033,2549,1204,61127827,60838994,2960,1393,67687548,67398715,81642,38644,2988750110,2964816225,86.11,86.43,90.31,90.27,3.12,3.12,2.05,2.05
-16667,42,009,42009,1392,582,44090858,43914102,1392,582,44090858,43914102,49762,23954,2633772365,2621835502,100,100,100,100,2.8,2.43,1.67,1.67
-16668,42,021,42021,3569,1633,146448766,140276407,3569,1633,146448766,140276407,143679,65650,1796500413,1782819861,100,100,100,100,2.48,2.49,8.15,7.87
-16669,42,061,42061,2351,1333,275376134,274597062,2351,1333,275376134,274597062,45913,22365,2303188808,2265305450,100,100,100,100,5.12,5.96,11.96,12.12
-16670,42,009,42009,47,25,412436,412436,47,25,412436,412436,49762,23954,2633772365,2621835502,100,100,100,100,0.09,0.1,0.02,0.02
-16671,42,033,42033,505,247,6340129,6322535,505,247,6340129,6322535,81642,38644,2988750110,2964816225,100,100,100,100,0.62,0.64,0.21,0.21
-16672,42,009,42009,187,91,11334552,11222306,187,91,11334552,11222306,49762,23954,2633772365,2621835502,100,100,100,100,0.38,0.38,0.43,0.43
-16673,42,009,42009,723,288,25286384,25286384,5519,2421,80427830,80427830,49762,23954,2633772365,2621835502,13.1,11.9,31.44,31.44,1.45,1.2,0.96,0.96
-16673,42,013,42013,4796,2133,55141446,55141446,5519,2421,80427830,80427830,127089,56276,1365100822,1361815301,86.9,88.1,68.56,68.56,3.77,3.79,4.04,4.05
-16674,42,057,42057,34,17,143037,143037,736,450,58511292,58511292,14845,7122,1134558266,1133252780,4.62,3.78,0.24,0.24,0.23,0.24,0.01,0.01
-16674,42,061,42061,702,433,58368255,58368255,736,450,58511292,58511292,45913,22365,2303188808,2265305450,95.38,96.22,99.76,99.76,1.53,1.94,2.53,2.58
-16677,42,027,42027,481,236,5971505,5971505,481,236,5971505,5971505,153990,63297,2882561458,2874682925,100,100,100,100,0.31,0.37,0.21,0.21
-16678,42,009,42009,2106,1056,69933917,69033856,2689,1371,120637427,117554742,49762,23954,2633772365,2621835502,78.32,77.02,57.97,58.72,4.23,4.41,2.66,2.63
-16678,42,061,42061,583,315,50703510,48520886,2689,1371,120637427,117554742,45913,22365,2303188808,2265305450,21.68,22.98,42.03,41.28,1.27,1.41,2.2,2.14
-16679,42,009,42009,844,405,54488499,54486580,844,405,54488499,54486580,49762,23954,2633772365,2621835502,100,100,100,100,1.7,1.69,2.07,2.08
-16680,42,033,42033,427,219,17552522,17494136,427,219,17552522,17494136,81642,38644,2988750110,2964816225,100,100,100,100,0.52,0.57,0.59,0.59
-16682,42,013,42013,117,51,555565,555565,117,51,555565,555565,127089,56276,1365100822,1361815301,100,100,100,100,0.09,0.09,0.04,0.04
-16683,42,061,42061,383,249,39550588,39337631,383,249,39550588,39337631,45913,22365,2303188808,2265305450,100,100,100,100,0.83,1.11,1.72,1.74
-16685,42,061,42061,249,231,23609324,23609324,249,231,23609324,23609324,45913,22365,2303188808,2265305450,100,100,100,100,0.54,1.03,1.03,1.04
-16686,42,013,42013,12288,5418,256204990,255638836,13488,5970,350535112,349968958,127089,56276,1365100822,1361815301,91.1,90.75,73.09,73.05,9.67,9.63,18.77,18.77
-16686,42,027,42027,225,111,19441517,19441517,13488,5970,350535112,349968958,153990,63297,2882561458,2874682925,1.67,1.86,5.55,5.56,0.15,0.18,0.67,0.68
-16686,42,061,42061,975,441,74888605,74888605,13488,5970,350535112,349968958,45913,22365,2303188808,2265305450,7.23,7.39,21.36,21.4,2.12,1.97,3.25,3.31
-16689,42,057,42057,462,215,53070466,53070466,462,215,53070466,53070466,14845,7122,1134558266,1133252780,100,100,100,100,3.11,3.02,4.68,4.68
-16691,42,057,42057,314,172,74803851,74803851,314,172,74803851,74803851,14845,7122,1134558266,1133252780,100,100,100,100,2.12,2.42,6.59,6.6
-16692,42,033,42033,753,342,43856685,43621628,753,342,43856685,43621628,81642,38644,2988750110,2964816225,100,100,100,100,0.92,0.89,1.47,1.47
-16693,42,013,42013,4185,1780,194126896,194015724,4185,1780,194126896,194015724,127089,56276,1365100822,1361815301,100,100,100,100,3.29,3.16,14.22,14.25
-16694,42,009,42009,127,63,5114083,5090826,254,118,5757029,5733772,49762,23954,2633772365,2621835502,50,53.39,88.83,88.79,0.26,0.26,0.19,0.19
-16694,42,057,42057,8,7,49246,49246,254,118,5757029,5733772,14845,7122,1134558266,1133252780,3.15,5.93,0.86,0.86,0.05,0.1,0,0
-16694,42,061,42061,119,48,593700,593700,254,118,5757029,5733772,45913,22365,2303188808,2265305450,46.85,40.68,10.31,10.35,0.26,0.21,0.03,0.03
-16695,42,009,42009,1198,445,40911759,40839971,1198,445,40911759,40839971,49762,23954,2633772365,2621835502,100,100,100,100,2.41,1.86,1.55,1.56
-16699,42,021,42021,1469,0,164936,164936,1469,0,164936,164936,143679,65650,1796500413,1782819861,100,0,100,100,1.02,0,0.01,0.01
-16701,42,083,42083,17967,8189,532738986,527326979,17980,8212,581401540,558815238,43450,21225,2549116804,2536109386,99.93,99.72,91.63,94.37,41.35,38.58,20.9,20.79
-16701,42,123,42123,13,23,48662554,31488259,17980,8212,581401540,558815238,41815,23560,2327266611,2289898600,0.07,0.28,8.37,5.63,0.03,0.1,2.09,1.38
-16720,42,023,42023,66,235,73919688,73396031,1392,2257,758734665,758188102,5085,4455,1031896619,1026232612,4.74,10.41,9.74,9.68,1.3,5.27,7.16,7.15
-16720,42,083,42083,37,44,70208080,70193218,1392,2257,758734665,758188102,43450,21225,2549116804,2536109386,2.66,1.95,9.25,9.26,0.09,0.21,2.75,2.77
-16720,42,105,42105,1289,1978,614606897,614598853,1392,2257,758734665,758188102,17457,12932,2801174077,2800614301,92.6,87.64,81,81.06,7.38,15.3,21.94,21.95
-16724,42,083,42083,143,80,5867121,5831725,143,80,5867121,5831725,43450,21225,2549116804,2536109386,100,100,100,100,0.33,0.38,0.23,0.23
-16725,42,083,42083,166,77,1152399,1133071,166,77,1152399,1133071,43450,21225,2549116804,2536109386,100,100,100,100,0.38,0.36,0.05,0.04
-16726,42,083,42083,542,248,65973332,65960730,542,248,65973332,65960730,43450,21225,2549116804,2536109386,100,100,100,100,1.25,1.17,2.59,2.6
-16727,42,083,42083,211,91,11163493,11163493,211,91,11163493,11163493,43450,21225,2549116804,2536109386,100,100,100,100,0.49,0.43,0.44,0.44
-16728,42,047,42047,25,21,14440369,14440369,25,21,14440369,14440369,31946,17585,2155666906,2142848183,100,100,100,100,0.08,0.12,0.67,0.67
-16729,42,083,42083,761,352,35885279,35867187,761,352,35885279,35867187,43450,21225,2549116804,2536109386,100,100,100,100,1.75,1.66,1.41,1.41
-16730,42,083,42083,121,67,1551390,1515059,121,67,1551390,1515059,43450,21225,2549116804,2536109386,100,100,100,100,0.28,0.32,0.06,0.06
-16731,42,083,42083,2818,1349,155019044,153650944,2818,1349,155019044,153650944,43450,21225,2549116804,2536109386,100,100,100,100,6.49,6.36,6.08,6.06
-16732,42,083,42083,293,134,17083316,17083316,293,134,17083316,17083316,43450,21225,2549116804,2536109386,100,100,100,100,0.67,0.63,0.67,0.67
-16733,42,083,42083,222,128,29716574,29709580,222,128,29716574,29709580,43450,21225,2549116804,2536109386,100,100,100,100,0.51,0.6,1.17,1.17
-16734,42,047,42047,287,134,2105711,2102805,287,134,2105711,2102805,31946,17585,2155666906,2142848183,100,100,100,100,0.9,0.76,0.1,0.1
-16735,42,047,42047,306,392,262902228,262626019,6309,3879,711729370,709157128,31946,17585,2155666906,2142848183,4.85,10.11,36.94,37.03,0.96,2.23,12.2,12.26
-16735,42,083,42083,6003,3487,448827142,446531109,6309,3879,711729370,709157128,43450,21225,2549116804,2536109386,95.15,89.89,63.06,62.97,13.82,16.43,17.61,17.61
-16738,42,083,42083,2679,823,169805179,169533611,2679,823,169805179,169533611,43450,21225,2549116804,2536109386,100,100,100,100,6.17,3.88,6.66,6.68
-16740,42,083,42083,1032,649,109853956,109598885,1032,649,109853956,109598885,43450,21225,2549116804,2536109386,100,100,100,100,2.38,3.06,4.31,4.32
-16743,42,083,42083,3847,1922,245753238,244682503,3942,1980,279007027,277936292,43450,21225,2549116804,2536109386,97.59,97.07,88.08,88.04,8.85,9.06,9.64,9.65
-16743,42,105,42105,95,58,33253789,33253789,3942,1980,279007027,277936292,17457,12932,2801174077,2800614301,2.41,2.93,11.92,11.96,0.54,0.45,1.19,1.19
-16744,42,083,42083,332,136,17809438,17809438,332,136,17809438,17809438,43450,21225,2549116804,2536109386,100,100,100,100,0.76,0.64,0.7,0.7
-16745,42,083,42083,611,252,29071729,29026965,611,252,29071729,29026965,43450,21225,2549116804,2536109386,100,100,100,100,1.41,1.19,1.14,1.14
-16746,42,105,42105,1265,749,107819002,107816789,1265,749,107819002,107816789,17457,12932,2801174077,2800614301,100,100,100,100,7.25,5.79,3.85,3.85
-16748,42,083,42083,672,347,68603961,68179339,2997,1602,267871414,267341057,43450,21225,2549116804,2536109386,22.42,21.66,25.61,25.5,1.55,1.63,2.69,2.69
-16748,42,105,42105,2325,1255,199267453,199161718,2997,1602,267871414,267341057,17457,12932,2801174077,2800614301,77.58,78.34,74.39,74.5,13.32,9.7,7.11,7.11
-16749,42,083,42083,4319,2392,426030823,424543204,4319,2392,426030823,424543204,43450,21225,2549116804,2536109386,100,100,100,100,9.94,11.27,16.71,16.74
-16750,42,083,42083,417,203,50166223,49958175,417,203,50166223,49958175,43450,21225,2549116804,2536109386,100,100,100,100,0.96,0.96,1.97,1.97
-16801,42,027,42027,42812,18494,81068153,81068153,42812,18494,81068153,81068153,153990,63297,2882561458,2874682925,100,100,100,100,27.8,29.22,2.81,2.82
-16802,42,027,42027,12764,5,2159902,2159902,12764,5,2159902,2159902,153990,63297,2882561458,2874682925,100,100,100,100,8.29,0.01,0.07,0.08
-16803,42,027,42027,23685,11144,62776845,62776845,23685,11144,62776845,62776845,153990,63297,2882561458,2874682925,100,100,100,100,15.38,17.61,2.18,2.18
-16820,42,027,42027,1217,547,73607250,73607250,1217,547,73607250,73607250,153990,63297,2882561458,2874682925,100,100,100,100,0.79,0.86,2.55,2.56
-16821,42,033,42033,318,129,2782776,2777818,318,129,2782776,2777818,81642,38644,2988750110,2964816225,100,100,100,100,0.39,0.33,0.09,0.09
-16822,42,027,42027,376,192,10010331,10010331,2283,1237,255256732,254640586,153990,63297,2882561458,2874682925,16.47,15.52,3.92,3.93,0.24,0.3,0.35,0.35
-16822,42,035,42035,1907,1045,245246401,244630255,2283,1237,255256732,254640586,39238,19080,2323047197,2299868539,83.53,84.48,96.08,96.07,4.86,5.48,10.56,10.64
-16823,42,027,42027,26617,11023,332437694,332236712,26617,11023,332437694,332236712,153990,63297,2882561458,2874682925,100,100,100,100,17.28,17.41,11.53,11.56
-16825,42,033,42033,240,107,1397044,1391036,240,107,1397044,1391036,81642,38644,2988750110,2964816225,100,100,100,100,0.29,0.28,0.05,0.05
-16826,42,027,42027,616,311,8492327,8492327,616,311,8492327,8492327,153990,63297,2882561458,2874682925,100,100,100,100,0.4,0.49,0.29,0.3
-16827,42,027,42027,3991,1755,45394549,45389704,3991,1755,45394549,45389704,153990,63297,2882561458,2874682925,100,100,100,100,2.59,2.77,1.57,1.58
-16828,42,027,42027,4478,2120,146020687,145736965,4478,2120,146020687,145736965,153990,63297,2882561458,2874682925,100,100,100,100,2.91,3.35,5.07,5.07
-16829,42,027,42027,666,406,83502266,83493718,666,406,83502266,83493718,153990,63297,2882561458,2874682925,100,100,100,100,0.43,0.64,2.9,2.9
-16830,42,033,42033,13695,6840,334814206,331562276,13695,6840,334814206,331562276,81642,38644,2988750110,2964816225,100,100,100,100,16.77,17.7,11.2,11.18
-16832,42,027,42027,510,391,44794694,44744515,510,391,44794694,44744515,153990,63297,2882561458,2874682925,100,100,100,100,0.33,0.62,1.55,1.56
-16833,42,033,42033,5342,2505,188469603,185014736,5342,2505,188469603,185014736,81642,38644,2988750110,2964816225,100,100,100,100,6.54,6.48,6.31,6.24
-16834,42,033,42033,299,151,47844045,47202846,299,151,47844045,47202846,81642,38644,2988750110,2964816225,100,100,100,100,0.37,0.39,1.6,1.59
-16835,42,027,42027,238,109,432101,432101,238,109,432101,432101,153990,63297,2882561458,2874682925,100,100,100,100,0.15,0.17,0.01,0.02
-16836,42,033,42033,1152,1112,317784938,316048008,1152,1112,317784938,316048008,81642,38644,2988750110,2964816225,100,100,100,100,1.41,2.88,10.63,10.66
-16837,42,033,42033,186,79,2197522,2191681,186,79,2197522,2191681,81642,38644,2988750110,2964816225,100,100,100,100,0.23,0.2,0.07,0.07
-16838,42,033,42033,1821,873,106255971,105884038,1821,873,106255971,105884038,81642,38644,2988750110,2964816225,100,100,100,100,2.23,2.26,3.56,3.57
-16839,42,033,42033,489,222,2771896,2769408,489,222,2771896,2769408,81642,38644,2988750110,2964816225,100,100,100,100,0.6,0.57,0.09,0.09
-16840,42,033,42033,510,250,1972487,1964018,510,250,1972487,1964018,81642,38644,2988750110,2964816225,100,100,100,100,0.62,0.65,0.07,0.07
-16841,42,027,42027,5882,2755,344919243,340420454,5934,2784,345460676,340961887,153990,63297,2882561458,2874682925,99.12,98.96,99.84,99.84,3.82,4.35,11.97,11.84
-16841,42,035,42035,52,29,541433,541433,5934,2784,345460676,340961887,39238,19080,2323047197,2299868539,0.88,1.04,0.16,0.16,0.13,0.15,0.02,0.02
-16843,42,033,42033,657,358,1043189,1034053,657,358,1043189,1034053,81642,38644,2988750110,2964816225,100,100,100,100,0.8,0.93,0.03,0.03
-16844,42,027,42027,2769,1251,162272147,162272147,2769,1251,162272147,162272147,153990,63297,2882561458,2874682925,100,100,100,100,1.8,1.98,5.63,5.64
-16845,42,027,42027,371,291,203622736,201594798,1088,546,317129200,314452197,153990,63297,2882561458,2874682925,34.1,53.3,64.21,64.11,0.24,0.46,7.06,7.01
-16845,42,033,42033,717,255,113506464,112857399,1088,546,317129200,314452197,81642,38644,2988750110,2964816225,65.9,46.7,35.79,35.89,0.88,0.66,3.8,3.81
-16847,42,033,42033,335,145,3349989,3340046,335,145,3349989,3340046,81642,38644,2988750110,2964816225,100,100,100,100,0.41,0.38,0.11,0.11
-16848,42,035,42035,319,165,1047042,989733,319,165,1047042,989733,39238,19080,2323047197,2299868539,100,100,100,100,0.81,0.86,0.05,0.04
-16849,42,033,42033,331,159,10671475,10659502,331,159,10671475,10659502,81642,38644,2988750110,2964816225,100,100,100,100,0.41,0.41,0.36,0.36
-16851,42,027,42027,866,354,10665992,10665992,866,354,10665992,10665992,153990,63297,2882561458,2874682925,100,100,100,100,0.56,0.56,0.37,0.37
-16852,42,027,42027,371,146,8708295,8708295,371,146,8708295,8708295,153990,63297,2882561458,2874682925,100,100,100,100,0.24,0.23,0.3,0.3
-16853,42,027,42027,300,151,689779,689779,300,151,689779,689779,153990,63297,2882561458,2874682925,100,100,100,100,0.19,0.24,0.02,0.02
-16854,42,027,42027,947,444,6186551,6186551,947,444,6186551,6186551,153990,63297,2882561458,2874682925,100,100,100,100,0.61,0.7,0.21,0.22
-16855,42,033,42033,282,129,7005991,6930244,282,129,7005991,6930244,81642,38644,2988750110,2964816225,100,100,100,100,0.35,0.33,0.23,0.23
-16858,42,033,42033,3688,1674,139980201,139079393,3688,1674,139980201,139079393,81642,38644,2988750110,2964816225,100,100,100,100,4.52,4.33,4.68,4.69
-16859,42,027,42027,542,306,59074158,59074158,542,306,59074158,59074158,153990,63297,2882561458,2874682925,100,100,100,100,0.35,0.48,2.05,2.05
-16860,42,027,42027,184,85,3486395,3486395,451,216,14129197,14092488,153990,63297,2882561458,2874682925,40.8,39.35,24.68,24.74,0.12,0.13,0.12,0.12
-16860,42,033,42033,267,131,10642802,10606093,451,216,14129197,14092488,81642,38644,2988750110,2964816225,59.2,60.65,75.32,75.26,0.33,0.34,0.36,0.36
-16861,42,033,42033,311,166,31474023,31399543,311,166,31474023,31399543,81642,38644,2988750110,2964816225,100,100,100,100,0.38,0.43,1.05,1.06
-16863,42,033,42033,718,353,66767574,65836404,718,353,66767574,65836404,81642,38644,2988750110,2964816225,100,100,100,100,0.88,0.91,2.23,2.22
-16865,42,027,42027,1657,675,51138575,51126224,1839,775,90862784,90836624,153990,63297,2882561458,2874682925,90.1,87.1,56.28,56.28,1.08,1.07,1.77,1.78
-16865,42,061,42061,182,100,39724209,39710400,1839,775,90862784,90836624,45913,22365,2303188808,2265305450,9.9,12.9,43.72,43.72,0.4,0.45,1.72,1.75
-16866,42,027,42027,5702,3032,370381997,369735483,9881,4268,416170681,415045559,153990,63297,2882561458,2874682925,57.71,71.04,89,89.08,3.7,4.79,12.85,12.86
-16866,42,033,42033,4179,1236,45788684,45310076,9881,4268,416170681,415045559,81642,38644,2988750110,2964816225,42.29,28.96,11,10.92,5.12,3.2,1.53,1.53
-16868,42,027,42027,483,231,1554749,1554749,483,231,1554749,1554749,153990,63297,2882561458,2874682925,100,100,100,100,0.31,0.36,0.05,0.05
-16870,42,027,42027,7046,2765,176404737,176357636,7046,2765,176404737,176357636,153990,63297,2882561458,2874682925,100,100,100,100,4.58,4.37,6.12,6.13
-16871,42,033,42033,25,48,16308419,16304829,46,112,65432434,64531742,81642,38644,2988750110,2964816225,54.35,42.86,24.92,25.27,0.03,0.12,0.55,0.55
-16871,42,035,42035,21,64,49124015,48226913,46,112,65432434,64531742,39238,19080,2323047197,2299868539,45.65,57.14,75.08,74.73,0.05,0.34,2.11,2.1
-16872,42,027,42027,1546,692,149858139,149858139,1551,696,150012648,150012648,153990,63297,2882561458,2874682925,99.68,99.43,99.9,99.9,1,1.09,5.2,5.21
-16872,42,035,42035,5,4,154509,154509,1551,696,150012648,150012648,39238,19080,2323047197,2299868539,0.32,0.57,0.1,0.1,0.01,0.02,0.01,0.01
-16874,42,027,42027,1371,669,89433857,89408104,1371,669,89433857,89408104,153990,63297,2882561458,2874682925,100,100,100,100,0.89,1.06,3.1,3.11
-16875,42,027,42027,3945,1910,201704504,201632693,3945,1910,201704504,201632693,153990,63297,2882561458,2874682925,100,100,100,100,2.56,3.02,7,7.01
-16876,42,033,42033,311,129,2831109,2825600,311,129,2831109,2825600,81642,38644,2988750110,2964816225,100,100,100,100,0.38,0.33,0.09,0.1
-16877,42,027,42027,621,253,51442582,51442582,1762,727,81875742,81875742,153990,63297,2882561458,2874682925,35.24,34.8,62.83,62.83,0.4,0.4,1.78,1.79
-16877,42,061,42061,1141,474,30433160,30433160,1762,727,81875742,81875742,45913,22365,2303188808,2265305450,64.76,65.2,37.17,37.17,2.49,2.12,1.32,1.34
-16878,42,033,42033,1762,820,52936042,52845398,1762,820,52936042,52845398,81642,38644,2988750110,2964816225,100,100,100,100,2.16,2.12,1.77,1.78
-16879,42,033,42033,532,229,5642960,5625442,532,229,5642960,5625442,81642,38644,2988750110,2964816225,100,100,100,100,0.65,0.59,0.19,0.19
-16881,42,033,42033,2232,969,82365908,81281143,2232,969,82365908,81281143,81642,38644,2988750110,2964816225,100,100,100,100,2.73,2.51,2.76,2.74
-16882,42,027,42027,300,254,68347480,68347480,300,254,68347480,68347480,153990,63297,2882561458,2874682925,100,100,100,100,0.19,0.4,2.37,2.38
-16901,42,117,42117,10243,5342,603920788,602389595,10243,5342,603920788,602389595,41981,21364,2944727632,2936496911,100,100,100,100,24.4,25,20.51,20.51
-16911,42,117,42117,332,188,22600441,22477009,332,188,22600441,22477009,41981,21364,2944727632,2936496911,100,100,100,100,0.79,0.88,0.77,0.77
-16912,42,117,42117,1776,920,65597730,65519066,1776,920,65597730,65519066,41981,21364,2944727632,2936496911,100,100,100,100,4.23,4.31,2.23,2.23
-16914,42,015,42015,2253,1063,183033310,182108442,2347,1105,196841737,195875063,62622,29979,3007025199,2971749132,95.99,96.2,92.99,92.97,3.6,3.55,6.09,6.13
-16914,42,117,42117,94,42,13808427,13766621,2347,1105,196841737,195875063,41981,21364,2944727632,2936496911,4.01,3.8,7.01,7.03,0.22,0.2,0.47,0.47
-16915,42,105,42105,5929,3631,631014096,630950568,5929,3631,631014096,630950568,17457,12932,2801174077,2800614301,100,100,100,100,33.96,28.08,22.53,22.53
-16917,42,117,42117,1437,735,115285443,115203745,1437,735,115285443,115203745,41981,21364,2944727632,2936496911,100,100,100,100,3.42,3.44,3.91,3.92
-16920,42,117,42117,2006,899,24766111,24740195,2006,899,24766111,24740195,41981,21364,2944727632,2936496911,100,100,100,100,4.78,4.21,0.84,0.84
-16921,42,117,42117,475,658,159432467,159397876,475,658,159432467,159397876,41981,21364,2944727632,2936496911,100,100,100,100,1.13,3.08,5.41,5.43
-16922,42,105,42105,2002,2049,396958040,396722131,2002,2049,396958040,396722131,17457,12932,2801174077,2800614301,100,100,100,100,11.47,15.84,14.17,14.17
-16923,42,105,42105,1470,880,202935321,202874370,1470,880,202935321,202874370,17457,12932,2801174077,2800614301,100,100,100,100,8.42,6.8,7.24,7.24
-16925,42,015,42015,3186,1505,200430562,199819643,3186,1505,200430562,199819643,62622,29979,3007025199,2971749132,100,100,100,100,5.09,5.02,6.67,6.72
-16926,42,015,42015,872,373,62962078,62750792,872,373,62962078,62750792,62622,29979,3007025199,2971749132,100,100,100,100,1.39,1.24,2.09,2.11
-16927,42,105,42105,651,338,48903927,48903927,651,338,48903927,48903927,17457,12932,2801174077,2800614301,100,100,100,100,3.73,2.61,1.75,1.75
-16928,42,117,42117,1387,649,89399158,89399158,1387,649,89399158,89399158,41981,21364,2944727632,2936496911,100,100,100,100,3.3,3.04,3.04,3.04
-16929,42,117,42117,2320,1078,119729767,119696142,2320,1078,119729767,119696142,41981,21364,2944727632,2936496911,100,100,100,100,5.53,5.05,4.07,4.08
-16930,42,081,42081,232,116,47706535,47428501,1300,635,173172644,172842934,116111,52500,3221518155,3182044798,17.85,18.27,27.55,27.44,0.2,0.22,1.48,1.49
-16930,42,117,42117,1068,519,125466109,125414433,1300,635,173172644,172842934,41981,21364,2944727632,2936496911,82.15,81.73,72.45,72.56,2.54,2.43,4.26,4.27
-16932,42,117,42117,734,330,55160591,55061345,734,330,55160591,55061345,41981,21364,2944727632,2936496911,100,100,100,100,1.75,1.54,1.87,1.88
-16933,42,117,42117,7488,2917,252707035,252456480,7488,2917,252707035,252456480,41981,21364,2944727632,2936496911,100,100,100,100,17.84,13.65,8.58,8.6
-16935,42,117,42117,1256,672,129596081,129575530,1256,672,129596081,129575530,41981,21364,2944727632,2936496911,100,100,100,100,2.99,3.15,4.4,4.41
-16936,42,015,42015,195,99,19875940,19767911,2095,972,125112816,124966031,62622,29979,3007025199,2971749132,9.31,10.19,15.89,15.82,0.31,0.33,0.66,0.67
-16936,42,117,42117,1900,873,105236876,105198120,2095,972,125112816,124966031,41981,21364,2944727632,2936496911,90.69,89.81,84.11,84.18,4.53,4.09,3.57,3.58
-16937,42,105,42105,172,100,19018759,19005921,172,100,19018759,19005921,17457,12932,2801174077,2800614301,100,100,100,100,0.99,0.77,0.68,0.68
-16938,42,081,42081,145,176,66710629,66358196,747,813,274297946,273885553,116111,52500,3221518155,3182044798,19.41,21.65,24.32,24.23,0.12,0.34,2.07,2.09
-16938,42,117,42117,602,637,207587317,207527357,747,813,274297946,273885553,41981,21364,2944727632,2936496911,80.59,78.35,75.68,75.77,1.43,2.98,7.05,7.07
-16939,42,117,42117,295,144,6989897,6970422,295,144,6989897,6970422,41981,21364,2944727632,2936496911,100,100,100,100,0.7,0.67,0.24,0.24
-16940,42,117,42117,302,132,6051912,6051912,302,132,6051912,6051912,41981,21364,2944727632,2936496911,100,100,100,100,0.72,0.62,0.21,0.21
-16941,42,105,42105,69,34,6306921,6306921,69,34,6306921,6306921,17457,12932,2801174077,2800614301,100,100,100,100,0.4,0.26,0.23,0.23
-16942,42,117,42117,847,400,61318720,61318720,847,400,61318720,61318720,41981,21364,2944727632,2936496911,100,100,100,100,2.02,1.87,2.08,2.09
-16943,42,105,42105,187,209,54177023,54176602,549,447,97695334,97651807,17457,12932,2801174077,2800614301,34.06,46.76,55.46,55.48,1.07,1.62,1.93,1.93
-16943,42,117,42117,362,238,43518311,43475205,549,447,97695334,97651807,41981,21364,2944727632,2936496911,65.94,53.24,44.54,44.52,0.86,1.11,1.48,1.48
-16946,42,117,42117,2484,1207,164344489,159585866,2484,1207,164344489,159585866,41981,21364,2944727632,2936496911,100,100,100,100,5.92,5.65,5.58,5.43
-16947,42,015,42015,4601,2103,258311466,257051424,4818,2344,299922506,298543687,62622,29979,3007025199,2971749132,95.5,89.72,86.13,86.1,7.35,7.01,8.59,8.65
-16947,42,117,42117,217,241,41611040,41492263,4818,2344,299922506,298543687,41981,21364,2944727632,2936496911,4.5,10.28,13.87,13.9,0.52,1.13,1.41,1.41
-16948,42,105,42105,1634,1142,239477539,239426102,1634,1142,239477539,239426102,17457,12932,2801174077,2800614301,100,100,100,100,9.36,8.83,8.55,8.55
-16950,42,105,42105,295,203,52294902,52276927,3378,2011,297353320,296876604,17457,12932,2801174077,2800614301,8.73,10.09,17.59,17.61,1.69,1.57,1.87,1.87
-16950,42,117,42117,3083,1808,245058418,244599677,3378,2011,297353320,296876604,41981,21364,2944727632,2936496911,91.27,89.91,82.41,82.39,7.34,8.46,8.32,8.33
-17002,42,061,42061,159,63,20450171,20450171,784,287,35404886,35400284,45913,22365,2303188808,2265305450,20.28,21.95,57.76,57.77,0.35,0.28,0.89,0.9
-17002,42,087,42087,625,224,14954715,14950113,784,287,35404886,35400284,46682,21537,1074110362,1064565502,79.72,78.05,42.24,42.23,1.34,1.04,1.39,1.4
-17003,42,075,42075,11720,4495,123417814,122909251,11720,4495,123417814,122909251,133568,55592,938866351,937142582,100,100,100,100,8.77,8.09,13.15,13.12
-17004,42,087,42087,5000,1811,126631929,126490774,5000,1811,126631929,126490774,46682,21537,1074110362,1064565502,100,100,100,100,10.71,8.41,11.79,11.88
-17005,42,043,42043,368,162,1473762,1473762,368,162,1473762,1473762,268100,120406,1445674118,1359864507,100,100,100,100,0.14,0.13,0.1,0.11
-17006,42,099,42099,1052,699,199687828,199107502,1052,699,199687828,199107502,45969,20424,1438834102,1428236088,100,100,100,100,2.29,3.42,13.88,13.94
-17007,42,041,42041,5591,2240,54301949,53812369,5591,2240,54301949,53812369,235406,99988,1425275321,1412732365,100,100,100,100,2.38,2.24,3.81,3.81
-17009,42,087,42087,2007,909,3885370,3849241,2007,909,3885370,3849241,46682,21537,1074110362,1064565502,100,100,100,100,4.3,4.22,0.36,0.36
-17010,42,075,42075,182,77,89253,89253,182,77,89253,89253,133568,55592,938866351,937142582,100,100,100,100,0.14,0.14,0.01,0.01
-17011,42,041,42041,33215,13763,33143662,31557560,34586,14266,35296466,33710364,235406,99988,1425275321,1412732365,96.04,96.47,93.9,93.61,14.11,13.76,2.33,2.23
-17011,42,133,42133,1371,503,2152804,2152804,34586,14266,35296466,33710364,434972,178671,2358760577,2341819225,3.96,3.53,6.1,6.39,0.32,0.28,0.09,0.09
-17013,42,041,42041,34575,14956,112446105,111114300,34575,14956,112446105,111114300,235406,99988,1425275321,1412732365,100,100,100,100,14.69,14.96,7.89,7.87
-17015,42,041,42041,20798,8579,296515398,294442609,20798,8579,296515398,294442609,235406,99988,1425275321,1412732365,100,100,100,100,8.83,8.58,20.8,20.84
-17016,42,075,42075,799,440,1876777,1876777,799,440,1876777,1876777,133568,55592,938866351,937142582,100,100,100,100,0.6,0.79,0.2,0.2
-17017,42,043,42043,128,68,4612117,4612117,1755,797,66144830,56658971,268100,120406,1445674118,1359864507,7.29,8.53,6.97,8.14,0.05,0.06,0.32,0.34
-17017,42,097,42097,1627,729,61532713,52046854,1755,797,66144830,56658971,94528,45125,1236782640,1187166553,92.71,91.47,93.03,91.86,1.72,1.62,4.98,4.38
-17018,42,043,42043,4313,1933,113005252,103162756,4313,1933,113005252,103162756,268100,120406,1445674118,1359864507,100,100,100,100,1.61,1.61,7.82,7.59
-17019,42,001,42001,87,35,1877029,1811218,17721,7207,163303176,163068595,101407,40820,1351424281,1343342705,0.49,0.49,1.15,1.11,0.09,0.09,0.14,0.13
-17019,42,041,42041,120,48,6237875,6185712,17721,7207,163303176,163068595,235406,99988,1425275321,1412732365,0.68,0.67,3.82,3.79,0.05,0.05,0.44,0.44
-17019,42,133,42133,17514,7124,155188272,155071665,17721,7207,163303176,163068595,434972,178671,2358760577,2341819225,98.83,98.85,95.03,95.1,4.03,3.99,6.58,6.62
-17020,42,043,42043,15,9,5379575,4601575,9047,3836,151634201,148973301,268100,120406,1445674118,1359864507,0.17,0.23,3.55,3.09,0.01,0.01,0.37,0.34
-17020,42,099,42099,9032,3827,146254626,144371726,9047,3836,151634201,148973301,45969,20424,1438834102,1428236088,99.83,99.77,96.45,96.91,19.65,18.74,10.16,10.11
-17021,42,055,42055,10,8,3918520,3918520,1088,661,135111910,135084676,149618,63219,2001596464,2000050083,0.92,1.21,2.9,2.9,0.01,0.01,0.2,0.2
-17021,42,067,42067,975,571,108699538,108699538,1088,661,135111910,135084676,24636,10978,1019199069,1013592984,89.61,86.38,80.45,80.47,3.96,5.2,10.67,10.72
-17021,42,099,42099,103,82,22493852,22466618,1088,661,135111910,135084676,45969,20424,1438834102,1428236088,9.47,12.41,16.65,16.63,0.22,0.4,1.56,1.57
-17022,42,043,42043,3397,1306,41316691,41316691,29602,11592,143064943,142485582,268100,120406,1445674118,1359864507,11.48,11.27,28.88,29,1.27,1.08,2.86,3.04
-17022,42,071,42071,26205,10286,101748252,101168891,29602,11592,143064943,142485582,519445,202952,2548038153,2444457103,88.52,88.73,71.12,71,5.04,5.07,3.99,4.14
-17023,42,043,42043,3535,1507,58298725,58298725,3535,1507,58298725,58298725,268100,120406,1445674118,1359864507,100,100,100,100,1.32,1.25,4.03,4.29
-17024,42,099,42099,1893,817,81861330,81775013,1893,817,81861330,81775013,45969,20424,1438834102,1428236088,100,100,100,100,4.12,4,5.69,5.73
-17025,42,041,42041,16778,7195,39253273,39092898,16778,7195,39253273,39092898,235406,99988,1425275321,1412732365,100,100,100,100,7.13,7.2,2.75,2.77
-17026,42,011,42011,328,109,7217019,7193239,3616,1417,58277544,58184912,411442,164827,2242297348,2218341544,9.07,7.69,12.38,12.36,0.08,0.07,0.32,0.32
-17026,42,075,42075,3288,1308,51060525,50991673,3616,1417,58277544,58184912,133568,55592,938866351,937142582,90.93,92.31,87.62,87.64,2.46,2.35,5.44,5.44
-17027,42,041,42041,2141,152,1003251,970341,2141,152,1003251,970341,235406,99988,1425275321,1412732365,100,100,100,100,0.91,0.15,0.07,0.07
-17028,42,043,42043,2660,1182,38591204,38577609,3720,1577,63135655,63106345,268100,120406,1445674118,1359864507,71.51,74.95,61.12,61.13,0.99,0.98,2.67,2.84
-17028,42,075,42075,1060,395,24544451,24528736,3720,1577,63135655,63106345,133568,55592,938866351,937142582,28.49,25.05,38.88,38.87,0.79,0.71,2.61,2.62
-17029,42,087,42087,371,154,3684098,3536348,371,154,3684098,3536348,46682,21537,1074110362,1064565502,100,100,100,100,0.79,0.72,0.34,0.33
-17030,42,043,42043,832,366,10534586,10534586,832,366,10534586,10534586,268100,120406,1445674118,1359864507,100,100,100,100,0.31,0.3,0.73,0.77
-17032,42,043,42043,8192,3502,302887641,286109168,8192,3502,302887641,286109168,268100,120406,1445674118,1359864507,100,100,100,100,3.06,2.91,20.95,21.04
-17033,42,043,42043,16914,6889,62903518,62500604,16972,6912,66965697,66562783,268100,120406,1445674118,1359864507,99.66,99.67,93.93,93.9,6.31,5.72,4.35,4.6
-17033,42,075,42075,58,23,4062179,4062179,16972,6912,66965697,66562783,133568,55592,938866351,937142582,0.34,0.33,6.07,6.1,0.04,0.04,0.43,0.43
-17034,42,043,42043,2414,1280,1982986,1926206,2414,1280,1982986,1926206,268100,120406,1445674118,1359864507,100,100,100,100,0.9,1.06,0.14,0.14
-17035,42,067,42067,828,486,86210072,86208100,839,497,91497830,91495858,24636,10978,1019199069,1013592984,98.69,97.79,94.22,94.22,3.36,4.43,8.46,8.51
-17035,42,099,42099,11,11,5287758,5287758,839,497,91497830,91495858,45969,20424,1438834102,1428236088,1.31,2.21,5.78,5.78,0.02,0.05,0.37,0.37
-17036,42,043,42043,21913,9208,71488813,70854854,21913,9208,71488813,70854854,268100,120406,1445674118,1359864507,100,100,100,100,8.17,7.65,4.95,5.21
-17037,42,099,42099,1126,621,64037850,63930702,1126,621,64037850,63930702,45969,20424,1438834102,1428236088,100,100,100,100,2.45,3.04,4.45,4.48
-17038,42,075,42075,8219,3292,186710185,186611277,8219,3292,186710185,186611277,133568,55592,938866351,937142582,100,100,100,100,6.15,5.92,19.89,19.91
-17039,42,075,42075,37,14,1580004,1554716,37,14,1580004,1554716,133568,55592,938866351,937142582,100,100,100,100,0.03,0.03,0.17,0.17
-17040,42,099,42099,2787,1200,130360890,129493740,2787,1200,130360890,129493740,45969,20424,1438834102,1428236088,100,100,100,100,6.06,5.88,9.06,9.07
-17041,42,075,42075,213,76,1457661,1457661,213,76,1457661,1457661,133568,55592,938866351,937142582,100,100,100,100,0.16,0.14,0.16,0.16
-17042,42,075,42075,37133,15622,171727599,171321585,37133,15622,171727599,171321585,133568,55592,938866351,937142582,100,100,100,100,27.8,28.1,18.29,18.28
-17043,42,041,42041,5957,3152,5240783,5234306,5957,3152,5240783,5234306,235406,99988,1425275321,1412732365,100,100,100,100,2.53,3.15,0.37,0.37
-17044,42,087,42087,21209,10147,258152294,254084999,21209,10147,258152294,254084999,46682,21537,1074110362,1064565502,100,100,100,100,45.43,47.11,24.03,23.87
-17045,42,067,42067,801,331,25250763,25250763,3350,1477,101768095,101566658,24636,10978,1019199069,1013592984,23.91,22.41,24.81,24.86,3.25,3.02,2.48,2.49
-17045,42,099,42099,2272,1055,68419566,68302564,3350,1477,101768095,101566658,45969,20424,1438834102,1428236088,67.82,71.43,67.23,67.25,4.94,5.17,4.76,4.78
-17045,42,109,42109,277,91,8097766,8013331,3350,1477,101768095,101566658,39702,16027,858635810,851343254,8.27,6.16,7.96,7.89,0.7,0.57,0.94,0.94
-17046,42,075,42075,29790,12370,99391249,99030512,29790,12370,99391249,99030512,133568,55592,938866351,937142582,100,100,100,100,22.3,22.25,10.59,10.57
-17047,42,099,42099,2526,1018,119878043,119278826,2526,1018,119878043,119278826,45969,20424,1438834102,1428236088,100,100,100,100,5.5,4.98,8.33,8.35
-17048,42,043,42043,4046,1757,89859173,89841200,4046,1757,89859173,89841200,268100,120406,1445674118,1359864507,100,100,100,100,1.51,1.46,6.22,6.61
-17049,42,067,42067,3360,1472,103697139,103697139,3360,1472,103697139,103697139,24636,10978,1019199069,1013592984,100,100,100,100,13.64,13.41,10.17,10.23
-17050,42,041,42041,32815,14292,85093447,83118906,32815,14292,85093447,83118906,235406,99988,1425275321,1412732365,100,100,100,100,13.94,14.29,5.97,5.88
-17051,42,087,42087,4653,2300,230719988,228108823,4653,2300,230719988,228108823,46682,21537,1074110362,1064565502,100,100,100,100,9.97,10.68,21.48,21.43
-17052,42,061,42061,1635,814,104593775,103938441,1635,814,104593775,103938441,45913,22365,2303188808,2265305450,100,100,100,100,3.56,3.64,4.54,4.59
-17053,42,041,42041,81,45,549944,549944,5001,2200,74532278,74492551,235406,99988,1425275321,1412732365,1.62,2.05,0.74,0.74,0.03,0.05,0.04,0.04
-17053,42,099,42099,4920,2155,73982334,73942607,5001,2200,74532278,74492551,45969,20424,1438834102,1428236088,98.38,97.95,99.26,99.26,10.7,10.55,5.14,5.18
-17055,42,041,42041,33505,15090,97194411,96495866,34237,15388,108609801,107911256,235406,99988,1425275321,1412732365,97.86,98.06,89.49,89.42,14.23,15.09,6.82,6.83
-17055,42,133,42133,732,298,11415390,11415390,34237,15388,108609801,107911256,434972,178671,2358760577,2341819225,2.14,1.94,10.51,10.58,0.17,0.17,0.48,0.49
-17056,42,067,42067,128,54,218736,218736,128,54,218736,218736,24636,10978,1019199069,1013592984,100,100,100,100,0.52,0.49,0.02,0.02
-17057,42,043,42043,21329,9602,101121543,83672014,21329,9602,101121543,83672014,268100,120406,1445674118,1359864507,100,100,100,100,7.96,7.97,6.99,6.15
-17058,42,067,42067,1909,896,102597705,102191734,1909,896,102597705,102191734,24636,10978,1019199069,1013592984,100,100,100,100,7.75,8.16,10.07,10.08
-17059,42,067,42067,7579,3176,214961293,212691369,7579,3176,214961293,212691369,24636,10978,1019199069,1013592984,100,100,100,100,30.76,28.93,21.09,20.98
-17060,42,061,42061,1334,563,65284672,65156288,1334,563,65284672,65156288,45913,22365,2303188808,2265305450,100,100,100,100,2.91,2.52,2.83,2.88
-17061,42,043,42043,7157,3193,102337881,88498717,7157,3193,102337881,88498717,268100,120406,1445674118,1359864507,100,100,100,100,2.67,2.65,7.08,6.51
-17062,42,067,42067,964,401,52417817,51374037,3979,1738,213094777,210586649,24636,10978,1019199069,1013592984,24.23,23.07,24.6,24.4,3.91,3.65,5.14,5.07
-17062,42,099,42099,3015,1337,160676960,159212612,3979,1738,213094777,210586649,45969,20424,1438834102,1428236088,75.77,76.93,75.4,75.6,6.56,6.55,11.17,11.15
-17063,42,087,42087,3294,1828,229249820,228478296,3311,1866,243387069,242609926,46682,21537,1074110362,1064565502,99.49,97.96,94.19,94.18,7.06,8.49,21.34,21.46
-17063,42,109,42109,17,38,14137249,14131630,3311,1866,243387069,242609926,39702,16027,858635810,851343254,0.51,2.04,5.81,5.82,0.04,0.24,1.65,1.66
-17064,42,075,42075,645,543,3068576,3068576,645,543,3068576,3068576,133568,55592,938866351,937142582,100,100,100,100,0.48,0.98,0.33,0.33
-17065,42,041,42041,4222,1771,22789590,22350839,4222,1771,22789590,22350839,235406,99988,1425275321,1412732365,100,100,100,100,1.79,1.77,1.6,1.58
-17066,42,061,42061,4076,2032,69012141,68180634,5348,2675,84842991,82875708,45913,22365,2303188808,2265305450,76.22,75.96,81.34,82.27,8.88,9.09,3,3.01
-17066,42,087,42087,1272,643,15830850,14695074,5348,2675,84842991,82875708,46682,21537,1074110362,1064565502,23.78,24.04,18.66,17.73,2.72,2.99,1.47,1.38
-17067,42,011,42011,1835,650,33552650,33440921,14232,5725,127294738,127074339,411442,164827,2242297348,2218341544,12.89,11.35,26.36,26.32,0.45,0.39,1.5,1.51
-17067,42,075,42075,12397,5075,93742088,93633418,14232,5725,127294738,127074339,133568,55592,938866351,937142582,87.11,88.65,73.64,73.68,9.28,9.13,9.98,9.99
-17068,42,099,42099,4298,1759,87244394,86973347,4298,1759,87244394,86973347,45969,20424,1438834102,1428236088,100,100,100,100,9.35,8.61,6.06,6.09
-17069,42,099,42099,133,71,126935,126935,133,71,126935,126935,45969,20424,1438834102,1428236088,100,100,100,100,0.29,0.35,0.01,0.01
-17070,42,041,42041,8365,4038,5130104,5093149,15692,7269,34890228,34738655,235406,99988,1425275321,1412732365,53.31,55.55,14.7,14.66,3.55,4.04,0.36,0.36
-17070,42,133,42133,7327,3231,29760124,29645506,15692,7269,34890228,34738655,434972,178671,2358760577,2341819225,46.69,44.45,85.3,85.34,1.68,1.81,1.26,1.27
-17071,42,099,42099,108,140,21562247,21551203,108,140,21562247,21551203,45969,20424,1438834102,1428236088,100,100,100,100,0.23,0.69,1.5,1.51
-17072,42,041,42041,193,81,172924,172924,193,81,172924,172924,235406,99988,1425275321,1412732365,100,100,100,100,0.08,0.08,0.01,0.01
-17073,42,071,42071,10,5,1943359,1876561,5271,1989,67435980,67346997,519445,202952,2548038153,2444457103,0.19,0.25,2.88,2.79,0,0,0.08,0.08
-17073,42,075,42075,5261,1984,65492621,65470436,5271,1989,67435980,67346997,133568,55592,938866351,937142582,99.81,99.75,97.12,97.21,3.94,3.57,6.98,6.99
-17074,42,099,42099,7477,3441,168639069,164773975,7477,3441,168639069,164773975,45969,20424,1438834102,1428236088,100,100,100,100,16.27,16.85,11.72,11.54
-17075,42,087,42087,123,63,445078,386640,123,63,445078,386640,46682,21537,1074110362,1064565502,100,100,100,100,0.26,0.29,0.04,0.04
-17076,42,067,42067,48,21,394260,394260,48,21,394260,394260,24636,10978,1019199069,1013592984,100,100,100,100,0.19,0.19,0.04,0.04
-17077,42,075,42075,46,16,9293,9293,46,16,9293,9293,133568,55592,938866351,937142582,100,100,100,100,0.03,0.03,0,0
-17078,42,043,42043,1378,604,12949766,12867849,20218,8852,78583476,78486293,268100,120406,1445674118,1359864507,6.82,6.82,16.48,16.4,0.51,0.5,0.9,0.95
-17078,42,075,42075,18840,8248,65633710,65618444,20218,8852,78583476,78486293,133568,55592,938866351,937142582,93.18,93.18,83.52,83.6,14.11,14.84,6.99,7
-17080,42,043,42043,298,138,1241600,1241600,298,138,1241600,1241600,268100,120406,1445674118,1359864507,100,100,100,100,0.11,0.11,0.09,0.09
-17081,42,041,42041,352,155,1582454,1582454,352,155,1582454,1582454,235406,99988,1425275321,1412732365,100,100,100,100,0.15,0.16,0.11,0.11
-17082,42,067,42067,3588,1616,152091310,150702238,3588,1616,152091310,150702238,24636,10978,1019199069,1013592984,100,100,100,100,14.56,14.72,14.92,14.87
-17083,42,075,42075,109,46,92567,92567,109,46,92567,92567,133568,55592,938866351,937142582,100,100,100,100,0.08,0.08,0.01,0.01
-17084,42,087,42087,4340,1847,83145075,82832455,4340,1847,83145075,82832455,46682,21537,1074110362,1064565502,100,100,100,100,9.3,8.58,7.74,7.78
-17086,42,067,42067,1599,604,36126465,36126465,2499,1014,99020086,98910376,24636,10978,1019199069,1013592984,63.99,59.57,36.48,36.52,6.49,5.5,3.54,3.56
-17086,42,109,42109,900,410,62893621,62783911,2499,1014,99020086,98910376,39702,16027,858635810,851343254,36.01,40.43,63.52,63.48,2.27,2.56,7.32,7.37
-17087,42,011,42011,714,236,19914703,19875637,2767,1039,31907582,31775066,411442,164827,2242297348,2218341544,25.8,22.71,62.41,62.55,0.17,0.14,0.89,0.9
-17087,42,075,42075,2053,803,11992879,11899429,2767,1039,31907582,31775066,133568,55592,938866351,937142582,74.2,77.29,37.59,37.45,1.54,1.44,1.28,1.27
-17088,42,075,42075,823,335,4734916,4734916,823,335,4734916,4734916,133568,55592,938866351,937142582,100,100,100,100,0.62,0.6,0.5,0.51
-17090,42,099,42099,5216,2191,88320420,87640960,5216,2191,88320420,87640960,45969,20424,1438834102,1428236088,100,100,100,100,11.35,10.73,6.14,6.14
-17093,42,041,42041,801,304,971723,971094,801,304,971723,971094,235406,99988,1425275321,1412732365,100,100,100,100,0.34,0.3,0.07,0.07
-17094,42,067,42067,2392,1086,78120874,77625508,2392,1086,78120874,77625508,24636,10978,1019199069,1013592984,100,100,100,100,9.71,9.89,7.66,7.66
-17097,42,043,42043,925,432,7807976,7807976,925,432,7807976,7807976,268100,120406,1445674118,1359864507,100,100,100,100,0.35,0.36,0.54,0.57
-17098,42,043,42043,2528,1209,25205627,25205627,2528,1209,25205627,25205627,268100,120406,1445674118,1359864507,100,100,100,100,0.94,1,1.74,1.85
-17099,42,087,42087,1179,530,4020898,3972809,1179,530,4020898,3972809,46682,21537,1074110362,1064565502,100,100,100,100,2.53,2.46,0.37,0.37
-17101,42,043,42043,2212,1867,2743060,1227958,2212,1867,2743060,1227958,268100,120406,1445674118,1359864507,100,100,100,100,0.83,1.55,0.19,0.09
-17102,42,043,42043,7628,5072,4246939,2032017,7628,5072,4246939,2032017,268100,120406,1445674118,1359864507,100,100,100,100,2.85,4.21,0.29,0.15
-17103,42,043,42043,11848,5421,5327541,5327541,11848,5421,5327541,5327541,268100,120406,1445674118,1359864507,100,100,100,100,4.42,4.5,0.37,0.39
-17104,42,043,42043,20962,8747,8747027,6952677,20962,8747,8747027,6952677,268100,120406,1445674118,1359864507,100,100,100,100,7.82,7.26,0.61,0.51
-17109,42,043,42043,23131,11230,19466799,19466799,23131,11230,19466799,19466799,268100,120406,1445674118,1359864507,100,100,100,100,8.63,9.33,1.35,1.43
-17110,42,043,42043,24433,11559,44645740,33056665,24433,11559,44645740,33056665,268100,120406,1445674118,1359864507,100,100,100,100,9.11,9.6,3.09,2.43
-17111,42,043,42043,30714,13097,47771972,47726884,30714,13097,47771972,47726884,268100,120406,1445674118,1359864507,100,100,100,100,11.46,10.88,3.3,3.51
-17112,42,043,42043,33850,14220,178728041,178728041,33850,14220,178728041,178728041,268100,120406,1445674118,1359864507,100,100,100,100,12.63,11.81,12.36,13.14
-17113,42,043,42043,10749,4741,17389771,11046325,10749,4741,17389771,11046325,268100,120406,1445674118,1359864507,100,100,100,100,4.01,3.94,1.2,0.81
-17120,42,043,42043,0,0,246180,246180,0,0,246180,246180,268100,120406,1445674118,1359864507,0,0,100,100,0,0,0.02,0.02
-17201,42,055,42055,25293,11323,49063905,49063905,25293,11323,49063905,49063905,149618,63219,2001596464,2000050083,100,100,100,100,16.91,17.91,2.45,2.45
-17202,42,055,42055,30200,12214,308403129,308313411,30200,12214,308403129,308313411,149618,63219,2001596464,2000050083,100,100,100,100,20.18,19.32,15.41,15.42
-17210,42,055,42055,193,102,31042504,31028817,193,102,31042504,31028817,149618,63219,2001596464,2000050083,100,100,100,100,0.13,0.16,1.55,1.55
-17211,42,009,42009,368,250,64866200,64820580,368,250,64866200,64820580,49762,23954,2633772365,2621835502,100,100,100,100,0.74,1.04,2.46,2.47
-17212,42,057,42057,702,324,91280066,91273810,702,324,91280066,91273810,14845,7122,1134558266,1133252780,100,100,100,100,4.73,4.55,8.05,8.05
-17213,42,061,42061,639,363,103140721,103130935,639,363,103140721,103130935,45913,22365,2303188808,2265305450,100,100,100,100,1.39,1.62,4.48,4.55
-17214,42,055,42055,1089,543,10303654,10303654,1089,543,10303654,10303654,149618,63219,2001596464,2000050083,100,100,100,100,0.73,0.86,0.51,0.52
-17215,42,057,42057,204,96,21027508,21011750,347,163,30887654,30871896,14845,7122,1134558266,1133252780,58.79,58.9,68.08,68.06,1.37,1.35,1.85,1.85
-17215,42,061,42061,143,67,9860146,9860146,347,163,30887654,30871896,45913,22365,2303188808,2265305450,41.21,41.1,31.92,31.94,0.31,0.3,0.43,0.44
-17217,42,055,42055,150,57,9995047,9995047,150,57,9995047,9995047,149618,63219,2001596464,2000050083,100,100,100,100,0.1,0.09,0.5,0.5
-17219,42,055,42055,405,247,33904761,33901497,405,247,33904761,33901497,149618,63219,2001596464,2000050083,100,100,100,100,0.27,0.39,1.69,1.7
-17220,42,055,42055,534,188,33811721,33797592,534,188,33811721,33797592,149618,63219,2001596464,2000050083,100,100,100,100,0.36,0.3,1.69,1.69
-17221,42,055,42055,637,316,26885763,26709102,637,316,26885763,26709102,149618,63219,2001596464,2000050083,100,100,100,100,0.43,0.5,1.34,1.34
-17222,42,001,42001,679,289,49383909,48492819,10749,4900,153054049,152141418,101407,40820,1351424281,1343342705,6.32,5.9,32.27,31.87,0.67,0.71,3.65,3.61
-17222,42,055,42055,10070,4611,103670140,103648599,10749,4900,153054049,152141418,149618,63219,2001596464,2000050083,93.68,94.1,67.73,68.13,6.73,7.29,5.18,5.18
-17223,42,057,42057,289,146,28251083,28202453,289,146,28251083,28202453,14845,7122,1134558266,1133252780,100,100,100,100,1.95,2.05,2.49,2.49
-17224,42,055,42055,1834,888,91289309,91289309,1834,893,94897222,94897222,149618,63219,2001596464,2000050083,100,99.44,96.2,96.2,1.23,1.4,4.56,4.56
-17224,42,057,42057,0,5,3607913,3607913,1834,893,94897222,94897222,14845,7122,1134558266,1133252780,0,0.56,3.8,3.8,0,0.07,0.32,0.32
-17225,42,055,42055,18879,7495,211253133,210895410,18879,7495,211253133,210895410,149618,63219,2001596464,2000050083,100,100,100,100,12.62,11.86,10.55,10.54
-17228,42,057,42057,1183,529,74271741,74271741,1183,529,74271741,74271741,14845,7122,1134558266,1133252780,100,100,100,100,7.97,7.43,6.55,6.55
-17229,42,057,42057,1106,524,59767131,59753551,1276,643,70382231,70368651,14845,7122,1134558266,1133252780,86.68,81.49,84.92,84.92,7.45,7.36,5.27,5.27
-17229,42,061,42061,170,119,10615100,10615100,1276,643,70382231,70368651,45913,22365,2303188808,2265305450,13.32,18.51,15.08,15.08,0.37,0.53,0.46,0.47
-17233,42,057,42057,5047,2475,207528367,206560917,5047,2475,207528367,206560917,14845,7122,1134558266,1133252780,100,100,100,100,34,34.75,18.29,18.23
-17235,42,055,42055,672,268,1540549,1540549,672,268,1540549,1540549,149618,63219,2001596464,2000050083,100,100,100,100,0.45,0.42,0.08,0.08
-17236,42,055,42055,8665,3633,302748419,302594652,8895,3738,321139163,320918005,149618,63219,2001596464,2000050083,97.41,97.19,94.27,94.29,5.79,5.75,15.13,15.13
-17236,42,057,42057,230,105,18390744,18323353,8895,3738,321139163,320918005,14845,7122,1134558266,1133252780,2.59,2.81,5.73,5.71,1.55,1.47,1.62,1.62
-17237,42,055,42055,1917,649,7469337,7469337,1917,649,7469337,7469337,149618,63219,2001596464,2000050083,100,100,100,100,1.28,1.03,0.37,0.37
-17238,42,057,42057,1794,790,141521979,141521979,1794,790,141521979,141521979,14845,7122,1134558266,1133252780,100,100,100,100,12.08,11.09,12.47,12.49
-17239,42,061,42061,203,118,23203903,23203903,203,118,23203903,23203903,45913,22365,2303188808,2265305450,100,100,100,100,0.44,0.53,1.01,1.02
-17240,42,041,42041,2358,849,75621221,75184795,3345,1196,124686207,124223525,235406,99988,1425275321,1412732365,70.49,70.99,60.65,60.52,1,0.85,5.31,5.32
-17240,42,055,42055,987,347,49064986,49038730,3345,1196,124686207,124223525,149618,63219,2001596464,2000050083,29.51,29.01,39.35,39.48,0.66,0.55,2.45,2.45
-17241,42,041,42041,11853,4854,292643841,290683071,11853,4854,292643841,290683071,235406,99988,1425275321,1412732365,100,100,100,100,5.04,4.85,20.53,20.58
-17243,42,061,42061,1298,788,113541531,113541531,1329,889,154653073,154653073,45913,22365,2303188808,2265305450,97.67,88.64,73.42,73.42,2.83,3.52,4.93,5.01
-17243,42,067,42067,31,101,41111542,41111542,1329,889,154653073,154653073,24636,10978,1019199069,1013592984,2.33,11.36,26.58,26.58,0.13,0.92,4.03,4.06
-17244,42,055,42055,2407,959,67361857,67056482,2407,959,67361857,67056482,149618,63219,2001596464,2000050083,100,100,100,100,1.61,1.52,3.37,3.35
-17246,42,055,42055,195,84,4213929,4213929,195,84,4213929,4213929,149618,63219,2001596464,2000050083,100,100,100,100,0.13,0.13,0.21,0.21
-17247,42,055,42055,366,200,376686,376686,366,200,376686,376686,149618,63219,2001596464,2000050083,100,100,100,100,0.24,0.32,0.02,0.02
-17249,42,061,42061,371,168,809379,809379,371,168,809379,809379,45913,22365,2303188808,2265305450,100,100,100,100,0.81,0.75,0.04,0.04
-17250,42,055,42055,68,42,22724,22724,68,42,22724,22724,149618,63219,2001596464,2000050083,100,100,100,100,0.05,0.07,0,0
-17251,42,055,42055,158,92,5876652,5773034,158,92,5876652,5773034,149618,63219,2001596464,2000050083,100,100,100,100,0.11,0.15,0.29,0.29
-17252,42,055,42055,3608,1478,72066770,72053336,3608,1478,72066770,72053336,149618,63219,2001596464,2000050083,100,100,100,100,2.41,2.34,3.6,3.6
-17253,42,061,42061,337,139,686397,686397,337,139,686397,686397,45913,22365,2303188808,2265305450,100,100,100,100,0.73,0.62,0.03,0.03
-17254,42,055,42055,89,47,919800,919800,89,47,919800,919800,149618,63219,2001596464,2000050083,100,100,100,100,0.06,0.07,0.05,0.05
-17255,42,061,42061,1125,577,77760816,77760816,1125,577,77760816,77760816,45913,22365,2303188808,2265305450,100,100,100,100,2.45,2.58,3.38,3.43
-17256,42,055,42055,91,33,275089,275089,91,33,275089,275089,149618,63219,2001596464,2000050083,100,100,100,100,0.06,0.05,0.01,0.01
-17257,42,041,42041,18550,6891,187206761,186403962,27996,10635,305001676,304175849,235406,99988,1425275321,1412732365,66.26,64.8,61.38,61.28,7.88,6.89,13.13,13.19
-17257,42,055,42055,9446,3744,117794915,117771887,27996,10635,305001676,304175849,149618,63219,2001596464,2000050083,33.74,35.2,38.62,38.72,6.31,5.92,5.89,5.89
-17260,42,061,42061,1164,569,92739435,92716675,1164,569,92739435,92716675,45913,22365,2303188808,2265305450,100,100,100,100,2.54,2.54,4.03,4.09
-17261,42,055,42055,193,0,6218769,6218769,193,0,6218769,6218769,149618,63219,2001596464,2000050083,100,0,100,100,0.13,0,0.31,0.31
-17262,42,055,42055,1462,542,69699002,69691840,1462,542,69699002,69691840,149618,63219,2001596464,2000050083,100,100,100,100,0.98,0.86,3.48,3.48
-17263,42,055,42055,467,194,912016,912016,467,194,912016,912016,149618,63219,2001596464,2000050083,100,100,100,100,0.31,0.31,0.05,0.05
-17264,42,057,42057,113,47,11002696,11002696,2305,1284,141010681,141010681,14845,7122,1134558266,1133252780,4.9,3.66,7.8,7.8,0.76,0.66,0.97,0.97
-17264,42,061,42061,2192,1237,130007985,130007985,2305,1284,141010681,141010681,45913,22365,2303188808,2265305450,95.1,96.34,92.2,92.2,4.77,5.53,5.64,5.74
-17265,42,055,42055,496,294,98356218,98233899,496,294,98356218,98233899,149618,63219,2001596464,2000050083,100,100,100,100,0.33,0.47,4.91,4.91
-17266,42,041,42041,581,228,3489673,3485165,581,228,3489673,3485165,235406,99988,1425275321,1412732365,100,100,100,100,0.25,0.23,0.24,0.25
-17267,42,057,42057,2810,1317,248162226,248143781,2810,1317,248162226,248143781,14845,7122,1134558266,1133252780,100,100,100,100,18.93,18.49,21.87,21.9
-17268,42,055,42055,28285,12283,204992202,204952038,28285,12283,204992202,204952038,149618,63219,2001596464,2000050083,100,100,100,100,18.9,19.43,10.24,10.25
-17270,42,055,42055,115,45,253687,253687,115,45,253687,253687,149618,63219,2001596464,2000050083,100,100,100,100,0.08,0.07,0.01,0.01
-17271,42,055,42055,339,145,27585794,27585794,339,145,27585794,27585794,149618,63219,2001596464,2000050083,100,100,100,100,0.23,0.23,1.38,1.38
-17272,42,055,42055,294,146,474482,474482,294,146,474482,474482,149618,63219,2001596464,2000050083,100,100,100,100,0.2,0.23,0.02,0.02
-17301,42,001,42001,3009,1166,20111103,20010453,4053,1579,34116096,34007289,101407,40820,1351424281,1343342705,74.24,73.84,58.95,58.84,2.97,2.86,1.49,1.49
-17301,42,133,42133,1044,413,14004993,13996836,4053,1579,34116096,34007289,434972,178671,2358760577,2341819225,25.76,26.16,41.05,41.16,0.24,0.23,0.59,0.6
-17302,42,133,42133,3083,1259,99908545,99554417,3083,1259,99908545,99554417,434972,178671,2358760577,2341819225,100,100,100,100,0.71,0.7,4.24,4.25
-17304,42,001,42001,3059,1191,63162008,62824964,3059,1191,63162008,62824964,101407,40820,1351424281,1343342705,100,100,100,100,3.02,2.92,4.67,4.68
-17306,42,001,42001,318,129,891013,891013,318,129,891013,891013,101407,40820,1351424281,1343342705,100,100,100,100,0.31,0.32,0.07,0.07
-17307,42,001,42001,5869,2462,136235698,135986553,5899,2482,154611708,154361597,101407,40820,1351424281,1343342705,99.49,99.19,88.11,88.1,5.79,6.03,10.08,10.12
-17307,42,041,42041,30,20,18376010,18375044,5899,2482,154611708,154361597,235406,99988,1425275321,1412732365,0.51,0.81,11.89,11.9,0.01,0.02,1.29,1.3
-17309,42,133,42133,2086,881,64194622,64194622,2086,881,64194622,64194622,434972,178671,2358760577,2341819225,100,100,100,100,0.48,0.49,2.72,2.74
-17311,42,133,42133,252,114,142108,142108,252,114,142108,142108,434972,178671,2358760577,2341819225,100,100,100,100,0.06,0.06,0.01,0.01
-17313,42,133,42133,10899,4562,27514509,27424127,10899,4562,27514509,27424127,434972,178671,2358760577,2341819225,100,100,100,100,2.51,2.55,1.17,1.17
-17314,42,133,42133,5929,2475,93532332,91971692,5929,2475,93532332,91971692,434972,178671,2358760577,2341819225,100,100,100,100,1.36,1.39,3.97,3.93
-17315,42,133,42133,25756,10641,163370303,161886444,25756,10641,163370303,161886444,434972,178671,2358760577,2341819225,100,100,100,100,5.92,5.96,6.93,6.91
-17316,42,001,42001,6470,2622,65082729,63397709,8266,3316,109780034,108076237,101407,40820,1351424281,1343342705,78.27,79.07,59.28,58.66,6.38,6.42,4.82,4.72
-17316,42,133,42133,1796,694,44697305,44678528,8266,3316,109780034,108076237,434972,178671,2358760577,2341819225,21.73,20.93,40.72,41.34,0.41,0.39,1.89,1.91
-17317,42,133,42133,755,272,587515,587515,755,272,587515,587515,434972,178671,2358760577,2341819225,100,100,100,100,0.17,0.15,0.02,0.03
-17318,42,133,42133,344,155,1551605,1551605,344,155,1551605,1551605,434972,178671,2358760577,2341819225,100,100,100,100,0.08,0.09,0.07,0.07
-17319,42,133,42133,10417,4092,44899016,44891589,10417,4092,44899016,44891589,434972,178671,2358760577,2341819225,100,100,100,100,2.39,2.29,1.9,1.92
-17320,42,001,42001,7823,3196,144334971,143912415,7823,3196,144334971,143912415,101407,40820,1351424281,1343342705,100,100,100,100,7.71,7.83,10.68,10.71
-17321,42,133,42133,2238,862,42255782,42239673,2238,862,42255782,42239673,434972,178671,2358760577,2341819225,100,100,100,100,0.51,0.48,1.79,1.8
-17322,42,133,42133,6012,2280,98863144,98863144,6012,2280,98863144,98863144,434972,178671,2358760577,2341819225,100,100,100,100,1.38,1.28,4.19,4.22
-17324,42,001,42001,1694,683,49375017,49203400,4219,1968,135685939,135058457,101407,40820,1351424281,1343342705,40.15,34.71,36.39,36.43,1.67,1.67,3.65,3.66
-17324,42,041,42041,2525,1285,86310922,85855057,4219,1968,135685939,135058457,235406,99988,1425275321,1412732365,59.85,65.29,63.61,63.57,1.07,1.29,6.06,6.08
-17325,42,001,42001,27619,10978,334513143,332807406,27619,10978,334513143,332807406,101407,40820,1351424281,1343342705,100,100,100,100,27.24,26.89,24.75,24.77
-17327,42,133,42133,7565,3149,118948572,118948572,7565,3149,118948572,118948572,434972,178671,2358760577,2341819225,100,100,100,100,1.74,1.76,5.04,5.08
-17329,42,133,42133,2494,953,42368642,42368642,2494,953,42368642,42368642,434972,178671,2358760577,2341819225,100,100,100,100,0.57,0.53,1.8,1.81
-17331,42,001,42001,9927,3903,78391806,77624889,50292,21115,201725702,196321654,101407,40820,1351424281,1343342705,19.74,18.48,38.86,39.54,9.79,9.56,5.8,5.78
-17331,42,133,42133,40365,17212,123333896,118696765,50292,21115,201725702,196321654,434972,178671,2358760577,2341819225,80.26,81.52,61.14,60.46,9.28,9.63,5.23,5.07
-17339,42,133,42133,6940,2833,72911493,72665773,6940,2833,72911493,72665773,434972,178671,2358760577,2341819225,100,100,100,100,1.6,1.59,3.09,3.1
-17340,42,001,42001,10896,4382,100429355,100227087,10896,4382,100429355,100227087,101407,40820,1351424281,1343342705,100,100,100,100,10.74,10.73,7.43,7.46
-17343,42,001,42001,180,80,1988311,1981369,180,80,1988311,1981369,101407,40820,1351424281,1343342705,100,100,100,100,0.18,0.2,0.15,0.15
-17344,42,001,42001,3656,1600,2069376,2069376,3656,1600,2069376,2069376,101407,40820,1351424281,1343342705,100,100,100,100,3.61,3.92,0.15,0.15
-17345,42,133,42133,7679,3212,26651681,26125068,7679,3212,26651681,26125068,434972,178671,2358760577,2341819225,100,100,100,100,1.77,1.8,1.13,1.12
-17347,42,133,42133,6202,2367,36865486,35589213,6202,2367,36865486,35589213,434972,178671,2358760577,2341819225,100,100,100,100,1.43,1.32,1.56,1.52
-17349,42,133,42133,7570,2953,53734057,53711748,7570,2953,53734057,53711748,434972,178671,2358760577,2341819225,100,100,100,100,1.74,1.65,2.28,2.29
-17350,42,001,42001,12886,5071,113463248,112376999,12886,5071,113463248,112376999,101407,40820,1351424281,1343342705,100,100,100,100,12.71,12.42,8.4,8.37
-17352,42,133,42133,1292,484,35706027,35706027,1292,484,35706027,35706027,434972,178671,2358760577,2341819225,100,100,100,100,0.3,0.27,1.51,1.52
-17353,42,001,42001,3228,1436,105829450,105676905,3228,1436,105829450,105676905,101407,40820,1351424281,1343342705,100,100,100,100,3.18,3.52,7.83,7.87
-17355,42,133,42133,261,114,1581217,1581217,261,114,1581217,1581217,434972,178671,2358760577,2341819225,100,100,100,100,0.06,0.06,0.07,0.07
-17356,42,133,42133,21610,8835,84216263,84216263,21610,8835,84216263,84216263,434972,178671,2358760577,2341819225,100,100,100,100,4.97,4.94,3.57,3.6
-17360,42,133,42133,5927,2299,69899902,69539556,5927,2299,69899902,69539556,434972,178671,2358760577,2341819225,100,100,100,100,1.36,1.29,2.96,2.97
-17361,42,133,42133,5806,2414,8108044,8108044,5806,2414,8108044,8108044,434972,178671,2358760577,2341819225,100,100,100,100,1.33,1.35,0.34,0.35
-17362,42,133,42133,13397,5264,127076469,124904992,13397,5264,127076469,124904992,434972,178671,2358760577,2341819225,100,100,100,100,3.08,2.95,5.39,5.33
-17363,42,133,42133,9413,3621,97450914,97450914,9413,3621,97450914,97450914,434972,178671,2358760577,2341819225,100,100,100,100,2.16,2.03,4.13,4.16
-17364,42,133,42133,3907,1526,43265464,43265464,3907,1526,43265464,43265464,434972,178671,2358760577,2341819225,100,100,100,100,0.9,0.85,1.83,1.85
-17365,42,133,42133,2510,1091,52840467,51281885,2510,1091,52840467,51281885,434972,178671,2358760577,2341819225,100,100,100,100,0.58,0.61,2.24,2.19
-17366,42,133,42133,5499,2209,29212211,29174253,5499,2209,29212211,29174253,434972,178671,2358760577,2341819225,100,100,100,100,1.26,1.24,1.24,1.25
-17368,42,133,42133,7322,3212,47477991,47477991,7322,3212,47477991,47477991,434972,178671,2358760577,2341819225,100,100,100,100,1.68,1.8,2.01,2.03
-17370,42,133,42133,5683,2250,29565796,29155958,5683,2250,29565796,29155958,434972,178671,2358760577,2341819225,100,100,100,100,1.31,1.26,1.25,1.25
-17371,42,133,42133,257,111,519495,519495,257,111,519495,519495,434972,178671,2358760577,2341819225,100,100,100,100,0.06,0.06,0.02,0.02
-17372,42,001,42001,4007,1597,84286115,84048130,4101,1629,84949504,84711519,101407,40820,1351424281,1343342705,97.71,98.04,99.22,99.22,3.95,3.91,6.24,6.26
-17372,42,133,42133,94,32,663389,663389,4101,1629,84949504,84711519,434972,178671,2358760577,2341819225,2.29,1.96,0.78,0.78,0.02,0.02,0.03,0.03
-17401,42,133,42133,17687,7458,3833869,3720684,17687,7458,3833869,3720684,434972,178671,2358760577,2341819225,100,100,100,100,4.07,4.17,0.16,0.16
-17402,42,133,42133,36360,14346,49850366,49809181,36360,14346,49850366,49809181,434972,178671,2358760577,2341819225,100,100,100,100,8.36,8.03,2.11,2.13
-17403,42,133,42133,39042,15987,54116434,52958231,39042,15987,54116434,52958231,434972,178671,2358760577,2341819225,100,100,100,100,8.98,8.95,2.29,2.26
-17404,42,133,42133,35517,14804,54925288,54888993,35517,14804,54925288,54888993,434972,178671,2358760577,2341819225,100,100,100,100,8.17,8.29,2.33,2.34
-17406,42,133,42133,22156,9547,128457390,128337058,22156,9547,128457390,128337058,434972,178671,2358760577,2341819225,100,100,100,100,5.09,5.34,5.45,5.48
-17407,42,133,42133,2355,857,3979682,3724019,2355,857,3979682,3724019,434972,178671,2358760577,2341819225,100,100,100,100,0.54,0.48,0.17,0.16
-17408,42,133,42133,22507,9675,67161703,66962165,22507,9675,67161703,66962165,434972,178671,2358760577,2341819225,100,100,100,100,5.17,5.41,2.85,2.86
-17501,42,071,42071,4307,1880,3620670,3603127,4307,1880,3620670,3603127,519445,202952,2548038153,2444457103,100,100,100,100,0.83,0.93,0.14,0.15
-17502,42,071,42071,2464,973,35618510,25630797,2464,973,35618510,25630797,519445,202952,2548038153,2444457103,100,100,100,100,0.47,0.48,1.4,1.05
-17505,42,071,42071,1785,517,18122255,17870793,1785,517,18122255,17870793,519445,202952,2548038153,2444457103,100,100,100,100,0.34,0.25,0.71,0.73
-17507,42,071,42071,62,31,55706,55706,62,31,55706,55706,519445,202952,2548038153,2444457103,100,100,100,100,0.01,0.02,0,0
-17508,42,071,42071,423,157,382285,382285,423,157,382285,382285,519445,202952,2548038153,2444457103,100,100,100,100,0.08,0.08,0.02,0.02
-17509,42,071,42071,4664,1411,67008712,66791567,4664,1411,67008712,66791567,519445,202952,2548038153,2444457103,100,100,100,100,0.9,0.7,2.63,2.73
-17512,42,071,42071,17836,7580,54779861,42161806,17836,7580,54779861,42161806,519445,202952,2548038153,2444457103,100,100,100,100,3.43,3.73,2.15,1.72
-17516,42,071,42071,4496,1768,55200391,53818300,4496,1768,55200391,53818300,519445,202952,2548038153,2444457103,100,100,100,100,0.87,0.87,2.17,2.2
-17517,42,071,42071,15391,5705,92987836,90502733,15391,5705,92987836,90502733,519445,202952,2548038153,2444457103,100,100,100,100,2.96,2.81,3.65,3.7
-17518,42,071,42071,1355,456,48092626,36641569,1355,456,48092626,36641569,519445,202952,2548038153,2444457103,100,100,100,100,0.26,0.22,1.89,1.5
-17519,42,071,42071,6824,2246,57973304,57461231,6824,2246,57973304,57461231,519445,202952,2548038153,2444457103,100,100,100,100,1.31,1.11,2.28,2.35
-17520,42,071,42071,4686,1844,4851799,4830491,4686,1844,4851799,4830491,519445,202952,2548038153,2444457103,100,100,100,100,0.9,0.91,0.19,0.2
-17522,42,071,42071,32483,12752,114363895,113172567,32483,12752,114363895,113172567,519445,202952,2548038153,2444457103,100,100,100,100,6.25,6.28,4.49,4.63
-17527,42,029,42029,224,74,2463524,2461371,6080,1950,53182257,52902008,498886,192462,1966408761,1943805957,3.68,3.79,4.63,4.65,0.04,0.04,0.13,0.13
-17527,42,071,42071,5856,1876,50718733,50440637,6080,1950,53182257,52902008,519445,202952,2548038153,2444457103,96.32,96.21,95.37,95.35,1.13,0.92,1.99,2.06
-17529,42,071,42071,4317,1403,40852016,40651128,4317,1403,40852016,40651128,519445,202952,2548038153,2444457103,100,100,100,100,0.83,0.69,1.6,1.66
-17532,42,071,42071,3381,1236,62106760,54906914,3381,1236,62106760,54906914,519445,202952,2548038153,2444457103,100,100,100,100,0.65,0.61,2.44,2.25
-17535,42,071,42071,2458,720,28257130,28069388,2458,720,28257130,28069388,519445,202952,2548038153,2444457103,100,100,100,100,0.47,0.35,1.11,1.15
-17536,42,071,42071,2839,884,57870297,56076111,2839,884,57870297,56076111,519445,202952,2548038153,2444457103,100,100,100,100,0.55,0.44,2.27,2.29
-17538,42,071,42071,6045,2415,9954263,9941068,6045,2415,9954263,9941068,519445,202952,2548038153,2444457103,100,100,100,100,1.16,1.19,0.39,0.41
-17540,42,071,42071,9791,3518,51131227,50689597,9791,3518,51131227,50689597,519445,202952,2548038153,2444457103,100,100,100,100,1.88,1.73,2.01,2.07
-17543,42,071,42071,42626,16960,181091990,179550792,42626,16960,181091990,179550792,519445,202952,2548038153,2444457103,100,100,100,100,8.21,8.36,7.11,7.35
-17545,42,071,42071,20708,8223,171044206,169913351,21256,8531,184799582,183668606,519445,202952,2548038153,2444457103,97.42,96.39,92.56,92.51,3.99,4.05,6.71,6.95
-17545,42,075,42075,548,308,13755376,13755255,21256,8531,184799582,183668606,133568,55592,938866351,937142582,2.58,3.61,7.44,7.49,0.41,0.55,1.47,1.47
-17547,42,071,42071,7378,3037,36919488,31078180,7378,3037,36919488,31078180,519445,202952,2548038153,2444457103,100,100,100,100,1.42,1.5,1.45,1.27
-17550,42,071,42071,790,349,460033,460033,790,349,460033,460033,519445,202952,2548038153,2444457103,100,100,100,100,0.15,0.17,0.02,0.02
-17551,42,071,42071,10857,3622,26674325,26128822,10857,3622,26674325,26128822,519445,202952,2548038153,2444457103,100,100,100,100,2.09,1.78,1.05,1.07
-17552,42,071,42071,17831,7551,84676124,84055411,17831,7551,84676124,84055411,519445,202952,2548038153,2444457103,100,100,100,100,3.43,3.72,3.32,3.44
-17554,42,071,42071,7525,3254,8135845,8113381,7525,3254,8135845,8113381,519445,202952,2548038153,2444457103,100,100,100,100,1.45,1.6,0.32,0.33
-17555,42,011,42011,19,8,40504,40504,7525,2318,90953162,90439624,411442,164827,2242297348,2218341544,0.25,0.35,0.04,0.04,0,0,0,0
-17555,42,071,42071,7506,2310,90912658,90399120,7525,2318,90953162,90439624,519445,202952,2548038153,2444457103,99.75,99.65,99.96,99.96,1.45,1.14,3.57,3.7
-17557,42,071,42071,13811,5302,84475529,84062366,13811,5302,84475529,84062366,519445,202952,2548038153,2444457103,100,100,100,100,2.66,2.61,3.32,3.44
-17560,42,071,42071,5118,1976,41830173,41575314,5118,1976,41830173,41575314,519445,202952,2548038153,2444457103,100,100,100,100,0.99,0.97,1.64,1.7
-17562,42,071,42071,4464,1394,44450696,44228388,4464,1394,44450696,44228388,519445,202952,2548038153,2444457103,100,100,100,100,0.86,0.69,1.74,1.81
-17563,42,071,42071,3849,1374,90756375,81780550,3849,1374,90756375,81780550,519445,202952,2548038153,2444457103,100,100,100,100,0.74,0.68,3.56,3.35
-17565,42,071,42071,2537,967,42670534,35666455,2537,967,42670534,35666455,519445,202952,2548038153,2444457103,100,100,100,100,0.49,0.48,1.67,1.46
-17566,42,071,42071,12019,4245,151803811,151145811,12019,4245,151803811,151145811,519445,202952,2548038153,2444457103,100,100,100,100,2.31,2.09,5.96,6.18
-17569,42,011,42011,923,375,9741746,9702500,5448,2025,42661387,42369724,411442,164827,2242297348,2218341544,16.94,18.52,22.84,22.9,0.22,0.23,0.43,0.44
-17569,42,071,42071,4525,1650,32919641,32667224,5448,2025,42661387,42369724,519445,202952,2548038153,2444457103,83.06,81.48,77.16,77.1,0.87,0.81,1.29,1.34
-17570,42,071,42071,291,120,178897,178897,291,120,178897,178897,519445,202952,2548038153,2444457103,100,100,100,100,0.06,0.06,0.01,0.01
-17572,42,071,42071,3859,1251,45487338,45068053,3859,1251,45487338,45068053,519445,202952,2548038153,2444457103,100,100,100,100,0.74,0.62,1.79,1.84
-17576,42,071,42071,129,53,141363,132304,129,53,141363,132304,519445,202952,2548038153,2444457103,100,100,100,100,0.02,0.03,0.01,0.01
-17578,42,071,42071,7485,2684,39976089,39645549,7485,2684,39976089,39645549,519445,202952,2548038153,2444457103,100,100,100,100,1.44,1.32,1.57,1.62
-17579,42,071,42071,5935,2179,36254331,36055738,5935,2179,36254331,36055738,519445,202952,2548038153,2444457103,100,100,100,100,1.14,1.07,1.42,1.47
-17581,42,071,42071,951,367,868119,867072,951,367,868119,867072,519445,202952,2548038153,2444457103,100,100,100,100,0.18,0.18,0.03,0.04
-17582,42,071,42071,2026,772,42987832,23002339,2026,772,42987832,23002339,519445,202952,2548038153,2444457103,100,100,100,100,0.39,0.38,1.69,0.94
-17584,42,071,42071,8957,3859,37918485,37573006,8957,3859,37918485,37573006,519445,202952,2548038153,2444457103,100,100,100,100,1.72,1.9,1.49,1.54
-17601,42,071,42071,49779,20711,86986913,86274459,49779,20711,86986913,86274459,519445,202952,2548038153,2444457103,100,100,100,100,9.58,10.2,3.41,3.53
-17602,42,071,42071,52452,20395,67491344,66383156,52452,20395,67491344,66383156,519445,202952,2548038153,2444457103,100,100,100,100,10.1,10.05,2.65,2.72
-17603,42,071,42071,61973,26317,78193902,77195090,61973,26317,78193902,77195090,519445,202952,2548038153,2444457103,100,100,100,100,11.93,12.97,3.07,3.16
-17606,42,071,42071,392,247,121495,121495,392,247,121495,121495,519445,202952,2548038153,2444457103,100,100,100,100,0.08,0.12,0,0
-17701,42,081,42081,44638,20019,225073536,221112397,44661,20039,235618167,231657028,116111,52500,3221518155,3182044798,99.95,99.9,95.52,95.45,38.44,38.13,6.99,6.95
-17701,42,113,42113,23,20,10544631,10544631,44661,20039,235618167,231657028,6428,6304,1171955361,1165338335,0.05,0.1,4.48,4.55,0.36,0.32,0.9,0.9
-17702,42,081,42081,10721,4792,165200619,160297404,10721,4792,165200619,160297404,116111,52500,3221518155,3182044798,100,100,100,100,9.23,9.13,5.13,5.04
-17721,42,035,42035,1604,740,1913700,1913700,1604,740,1913700,1913700,39238,19080,2323047197,2299868539,100,100,100,100,4.09,3.88,0.08,0.08
-17723,42,081,42081,34,94,34292889,34291055,34,94,34292889,34291055,116111,52500,3221518155,3182044798,100,100,100,100,0.03,0.18,1.06,1.08
-17724,42,015,42015,5078,2308,221879964,220673138,5424,2547,291622207,290329056,62622,29979,3007025199,2971749132,93.62,90.62,76.08,76.01,8.11,7.7,7.38,7.43
-17724,42,081,42081,12,29,13650740,13564415,5424,2547,291622207,290329056,116111,52500,3221518155,3182044798,0.22,1.14,4.68,4.67,0.01,0.06,0.42,0.43
-17724,42,117,42117,334,210,56091503,56091503,5424,2547,291622207,290329056,41981,21364,2944727632,2936496911,6.16,8.24,19.23,19.32,0.8,0.98,1.9,1.91
-17727,42,081,42081,68,294,169880834,168357921,72,347,278635933,276830160,116111,52500,3221518155,3182044798,94.44,84.73,60.97,60.82,0.06,0.56,5.27,5.29
-17727,42,117,42117,4,53,108755099,108472239,72,347,278635933,276830160,41981,21364,2944727632,2936496911,5.56,15.27,39.03,39.18,0.01,0.25,3.69,3.69
-17728,42,081,42081,5120,2173,123668541,122963170,5120,2173,123668541,122963170,116111,52500,3221518155,3182044798,100,100,100,100,4.41,4.14,3.84,3.86
-17729,42,035,42035,85,332,87848241,87713773,159,638,282988649,282853456,39238,19080,2323047197,2299868539,53.46,52.04,31.04,31.01,0.22,1.74,3.78,3.81
-17729,42,105,42105,74,306,195140408,195139683,159,638,282988649,282853456,17457,12932,2801174077,2800614301,46.54,47.96,68.96,68.99,0.42,2.37,6.97,6.97
-17730,42,097,42097,257,109,437727,437727,257,109,437727,437727,94528,45125,1236782640,1187166553,100,100,100,100,0.27,0.24,0.04,0.04
-17731,42,113,42113,185,466,36424042,35875346,185,466,36424042,35875346,6428,6304,1171955361,1165338335,100,100,100,100,2.88,7.39,3.11,3.08
-17737,42,081,42081,6210,2838,178261960,177178795,6220,2852,187713765,186630600,116111,52500,3221518155,3182044798,99.84,99.51,94.96,94.94,5.35,5.41,5.53,5.57
-17737,42,113,42113,10,14,9451805,9451805,6220,2852,187713765,186630600,6428,6304,1171955361,1165338335,0.16,0.49,5.04,5.06,0.16,0.22,0.81,0.81
-17739,42,081,42081,32,118,32848777,32485064,32,118,32848777,32485064,116111,52500,3221518155,3182044798,100,100,100,100,0.03,0.22,1.02,1.02
-17740,42,035,42035,2356,998,58736938,57672891,12754,5542,358086832,352740680,39238,19080,2323047197,2299868539,18.47,18.01,16.4,16.35,6,5.23,2.53,2.51
-17740,42,081,42081,10398,4544,299349894,295067789,12754,5542,358086832,352740680,116111,52500,3221518155,3182044798,81.53,81.99,83.6,83.65,8.96,8.66,9.29,9.27
-17742,42,081,42081,39,23,205378,196904,39,23,205378,196904,116111,52500,3221518155,3182044798,100,100,100,100,0.03,0.04,0.01,0.01
-17744,42,081,42081,3175,1370,63533787,61989508,3175,1370,63533787,61989508,116111,52500,3221518155,3182044798,100,100,100,100,2.73,2.61,1.97,1.95
-17745,42,035,42035,18953,7958,422729372,416641143,19063,8305,565924959,559176112,39238,19080,2323047197,2299868539,99.42,95.82,74.7,74.51,48.3,41.71,18.2,18.12
-17745,42,081,42081,110,347,143195587,142534969,19063,8305,565924959,559176112,116111,52500,3221518155,3182044798,0.58,4.18,25.3,25.49,0.09,0.66,4.44,4.48
-17747,42,035,42035,3073,1382,250793063,249898954,3073,1382,250793063,249898954,39238,19080,2323047197,2299868539,100,100,100,100,7.83,7.24,10.8,10.87
-17748,42,035,42035,300,143,1366099,1366099,300,143,1366099,1366099,39238,19080,2323047197,2299868539,100,100,100,100,0.76,0.75,0.06,0.06
-17749,42,097,42097,244,106,277672,277672,244,106,277672,277672,94528,45125,1236782640,1187166553,100,100,100,100,0.26,0.23,0.02,0.02
-17750,42,035,42035,167,68,3951987,3935431,167,68,3951987,3935431,39238,19080,2323047197,2299868539,100,100,100,100,0.43,0.36,0.17,0.17
-17751,42,035,42035,7084,3185,331516429,326919577,7084,3185,331516429,326919577,39238,19080,2323047197,2299868539,100,100,100,100,18.05,16.69,14.27,14.21
-17752,42,081,42081,4635,1934,93412341,91712871,4635,1934,93412341,91712871,116111,52500,3221518155,3182044798,100,100,100,100,3.99,3.68,2.9,2.88
-17754,42,081,42081,12233,5318,159376511,155741260,12233,5318,159376511,155741260,116111,52500,3221518155,3182044798,100,100,100,100,10.54,10.13,4.95,4.89
-17756,42,037,42037,71,34,5610117,5610117,12408,4755,295313485,291198069,67295,29498,1269507017,1251244127,0.57,0.72,1.9,1.93,0.11,0.12,0.44,0.45
-17756,42,081,42081,11218,4271,242535311,238423468,12408,4755,295313485,291198069,116111,52500,3221518155,3182044798,90.41,89.82,82.13,81.88,9.66,8.14,7.53,7.49
-17756,42,093,42093,200,83,8282344,8280684,12408,4755,295313485,291198069,18267,7965,342734164,337326235,1.61,1.75,2.8,2.84,1.09,1.04,2.42,2.45
-17756,42,097,42097,919,367,38885713,38883800,12408,4755,295313485,291198069,94528,45125,1236782640,1187166553,7.41,7.72,13.17,13.35,0.97,0.81,3.14,3.28
-17758,42,081,42081,184,117,12874045,12462808,919,789,213816382,212052208,116111,52500,3221518155,3182044798,20.02,14.83,6.02,5.88,0.16,0.22,0.4,0.39
-17758,42,113,42113,735,672,200942337,199589400,919,789,213816382,212052208,6428,6304,1171955361,1165338335,79.98,85.17,93.98,94.12,11.43,10.66,17.15,17.13
-17760,42,035,42035,557,564,216512109,214802141,557,564,216512109,214802141,39238,19080,2323047197,2299868539,100,100,100,100,1.42,2.96,9.32,9.34
-17762,42,081,42081,503,218,1546394,1503792,503,218,1546394,1503792,116111,52500,3221518155,3182044798,100,100,100,100,0.43,0.42,0.05,0.05
-17763,42,081,42081,309,152,65699906,64298378,309,152,65699906,64298378,116111,52500,3221518155,3182044798,100,100,100,100,0.27,0.29,2.04,2.02
-17764,42,035,42035,2327,1884,419449639,414515252,2327,1884,419449639,414515252,39238,19080,2323047197,2299868539,100,100,100,100,5.93,9.87,18.06,18.02
-17765,42,081,42081,227,185,94439956,93409295,1162,657,215133858,214025727,116111,52500,3221518155,3182044798,19.54,28.16,43.9,43.64,0.2,0.35,2.93,2.94
-17765,42,117,42117,935,472,120693902,120616432,1162,657,215133858,214025727,41981,21364,2944727632,2936496911,80.46,71.84,56.1,56.36,2.23,2.21,4.1,4.11
-17767,42,035,42035,91,41,66744,66744,91,41,66744,66744,39238,19080,2323047197,2299868539,100,100,100,100,0.23,0.21,0,0
-17768,42,113,42113,377,577,76331043,76095175,377,577,76331043,76095175,6428,6304,1171955361,1165338335,100,100,100,100,5.86,9.15,6.51,6.53
-17771,42,081,42081,3158,1735,563570977,558902828,3158,1735,563570977,558902828,116111,52500,3221518155,3182044798,100,100,100,100,2.72,3.3,17.49,17.56
-17772,42,093,42093,950,342,40319967,40202278,2399,941,58429516,58295718,18267,7965,342734164,337326235,39.6,36.34,69.01,68.96,5.2,4.29,11.76,11.92
-17772,42,097,42097,1449,599,18109549,18093440,2399,941,58429516,58295718,94528,45125,1236782640,1187166553,60.4,63.66,30.99,31.04,1.53,1.33,1.46,1.52
-17774,42,037,42037,29,8,505970,504581,1277,690,123833704,123469321,67295,29498,1269507017,1251244127,2.27,1.16,0.41,0.41,0.04,0.03,0.04,0.04
-17774,42,081,42081,1120,558,76405440,76072599,1277,690,123833704,123469321,116111,52500,3221518155,3182044798,87.71,80.87,61.7,61.61,0.96,1.06,2.37,2.39
-17774,42,113,42113,128,124,46922294,46892141,1277,690,123833704,123469321,6428,6304,1171955361,1165338335,10.02,17.97,37.89,37.98,1.99,1.97,4,4.02
-17776,42,081,42081,295,524,228810315,226664314,295,524,228810315,226664314,116111,52500,3221518155,3182044798,100,100,100,100,0.25,1,7.1,7.12
-17777,42,093,42093,156,48,4453862,4452820,7056,3064,100929534,97612638,18267,7965,342734164,337326235,2.21,1.57,4.41,4.56,0.85,0.6,1.3,1.32
-17777,42,097,42097,6900,3016,96475672,93159818,7056,3064,100929534,97612638,94528,45125,1236782640,1187166553,97.79,98.43,95.59,95.44,7.3,6.68,7.8,7.85
-17778,42,035,42035,102,351,228273068,226113763,102,351,228273068,226113763,39238,19080,2323047197,2299868539,100,100,100,100,0.26,1.84,9.83,9.83
-17779,42,035,42035,235,127,3776408,3766228,235,127,3776408,3766228,39238,19080,2323047197,2299868539,100,100,100,100,0.6,0.67,0.16,0.16
-17801,42,097,42097,16671,7763,185400884,171249352,16671,7763,185400884,171249352,94528,45125,1236782640,1187166553,100,100,100,100,17.64,17.2,14.99,14.43
-17810,42,081,42081,1181,485,112102308,111871218,4683,832,147793218,146975389,116111,52500,3221518155,3182044798,25.22,58.29,75.85,76.12,1.02,0.92,3.48,3.52
-17810,42,119,42119,3502,347,35690910,35104171,4683,832,147793218,146975389,44947,16997,823038441,818389897,74.78,41.71,24.15,23.88,7.79,2.04,4.34,4.29
-17812,42,109,42109,1480,664,58820559,57979282,1480,664,58820559,57979282,39702,16027,858635810,851343254,100,100,100,100,3.73,4.14,6.85,6.81
-17813,42,109,42109,1979,890,90191724,88791490,1979,890,90191724,88791490,39702,16027,858635810,851343254,100,100,100,100,4.98,5.55,10.5,10.43
-17814,42,037,42037,3687,2136,188762775,187700096,4860,2752,359475773,357316802,67295,29498,1269507017,1251244127,75.86,77.62,52.51,52.53,5.48,7.24,14.87,15
-17814,42,079,42079,744,369,58378588,57901473,4860,2752,359475773,357316802,320918,148748,2347214193,2305950580,15.31,13.41,16.24,16.2,0.23,0.25,2.49,2.51
-17814,42,081,42081,84,53,3762438,3760378,4860,2752,359475773,357316802,116111,52500,3221518155,3182044798,1.73,1.93,1.05,1.05,0.07,0.1,0.12,0.12
-17814,42,113,42113,345,194,108571972,107954855,4860,2752,359475773,357316802,6428,6304,1171955361,1165338335,7.1,7.05,30.2,30.21,5.37,3.08,9.26,9.26
-17815,42,037,42037,30661,11870,353412775,345223004,30967,12002,360089406,351898233,67295,29498,1269507017,1251244127,99.01,98.9,98.15,98.1,45.56,40.24,27.84,27.59
-17815,42,079,42079,230,107,4925393,4925393,30967,12002,360089406,351898233,320918,148748,2347214193,2305950580,0.74,0.89,1.37,1.4,0.07,0.07,0.21,0.21
-17815,42,093,42093,76,25,1751238,1749836,30967,12002,360089406,351898233,18267,7965,342734164,337326235,0.25,0.21,0.49,0.5,0.42,0.31,0.51,0.52
-17820,42,037,42037,5394,2642,225226558,221870277,5556,2732,238085575,234198002,67295,29498,1269507017,1251244127,97.08,96.71,94.6,94.74,8.02,8.96,17.74,17.73
-17820,42,093,42093,162,90,12859017,12327725,5556,2732,238085575,234198002,18267,7965,342734164,337326235,2.92,3.29,5.4,5.26,0.89,1.13,3.75,3.65
-17821,42,037,42037,406,165,17597014,17567907,18219,8053,353429965,345884664,67295,29498,1269507017,1251244127,2.23,2.05,4.98,5.08,0.6,0.56,1.39,1.4
-17821,42,093,42093,15727,6977,248549747,243943788,18219,8053,353429965,345884664,18267,7965,342734164,337326235,86.32,86.64,70.33,70.53,86.1,87.6,72.52,72.32
-17821,42,097,42097,2086,911,87283204,84372969,18219,8053,353429965,345884664,94528,45125,1236782640,1187166553,11.45,11.31,24.7,24.39,2.21,2.02,7.06,7.11
-17822,42,093,42093,0,0,191017,191017,0,0,191017,191017,18267,7965,342734164,337326235,0,0,100,100,0,0,0.06,0.06
-17823,42,097,42097,1273,532,89207237,88929476,1273,532,89207237,88929476,94528,45125,1236782640,1187166553,100,100,100,100,1.35,1.18,7.21,7.49
-17824,42,037,42037,638,341,34840893,34518759,4115,1944,68736605,68396595,67295,29498,1269507017,1251244127,15.5,17.54,50.69,50.47,0.95,1.16,2.74,2.76
-17824,42,097,42097,3477,1603,33895712,33877836,4115,1944,68736605,68396595,94528,45125,1236782640,1187166553,84.5,82.46,49.31,49.53,3.68,3.55,2.74,2.85
-17827,42,109,42109,657,310,4971809,4969541,657,310,4971809,4969541,39702,16027,858635810,851343254,100,100,100,100,1.65,1.93,0.58,0.58
-17829,42,119,42119,244,89,2110442,2110442,244,89,2110442,2110442,44947,16997,823038441,818389897,100,100,100,100,0.54,0.52,0.26,0.26
-17830,42,097,42097,1947,950,85969115,79158822,1947,950,85969115,79158822,94528,45125,1236782640,1187166553,100,100,100,100,2.06,2.11,6.95,6.67
-17832,42,097,42097,628,365,1011505,1011505,628,365,1011505,1011505,94528,45125,1236782640,1187166553,100,100,100,100,0.66,0.81,0.08,0.09
-17834,42,097,42097,3565,1814,13387494,13294452,3565,1814,13387494,13294452,94528,45125,1236782640,1187166553,100,100,100,100,3.77,4.02,1.08,1.12
-17835,42,119,42119,219,97,1317275,1315283,219,97,1317275,1315283,44947,16997,823038441,818389897,100,100,100,100,0.49,0.57,0.16,0.16
-17836,42,097,42097,266,118,10623619,10605537,266,118,10623619,10605537,94528,45125,1236782640,1187166553,100,100,100,100,0.28,0.26,0.86,0.89
-17837,42,119,42119,19815,7047,162165275,161382144,19815,7047,162165275,161382144,44947,16997,823038441,818389897,100,100,100,100,44.09,41.46,19.7,19.72
-17840,42,097,42097,533,234,6451810,6451810,533,234,6451810,6451810,94528,45125,1236782640,1187166553,100,100,100,100,0.56,0.52,0.52,0.54
-17841,42,087,42087,2609,1081,103390247,103179930,4779,2023,205538013,205092567,46682,21537,1074110362,1064565502,54.59,53.44,50.3,50.31,5.59,5.02,9.63,9.69
-17841,42,109,42109,2170,942,102147766,101912637,4779,2023,205538013,205092567,39702,16027,858635810,851343254,45.41,46.56,49.7,49.69,5.47,5.88,11.9,11.97
-17842,42,109,42109,8910,3687,216156468,214643788,8910,3687,216156468,214643788,39702,16027,858635810,851343254,100,100,100,100,22.44,23,25.17,25.21
-17844,42,119,42119,10042,4431,291262036,290236118,10042,4431,291262036,290236118,44947,16997,823038441,818389897,100,100,100,100,22.34,26.07,35.39,35.46
-17845,42,119,42119,2245,1361,170868218,169609264,2245,1361,170868218,169609264,44947,16997,823038441,818389897,100,100,100,100,4.99,8.01,20.76,20.72
-17846,42,037,42037,3708,1633,117369946,116893708,3738,1650,120772453,120289209,67295,29498,1269507017,1251244127,99.2,98.97,97.18,97.18,5.51,5.54,9.25,9.34
-17846,42,081,42081,30,17,3402507,3395501,3738,1650,120772453,120289209,116111,52500,3221518155,3182044798,0.8,1.03,2.82,2.82,0.03,0.03,0.11,0.11
-17847,42,093,42093,691,248,25036605,24899322,12051,5597,125980110,121550349,18267,7965,342734164,337326235,5.73,4.43,19.87,20.48,3.78,3.11,7.3,7.38
-17847,42,097,42097,11360,5349,100943505,96651027,12051,5597,125980110,121550349,94528,45125,1236782640,1187166553,94.27,95.57,80.13,79.52,12.02,11.85,8.16,8.14
-17850,42,097,42097,645,289,843921,843921,645,289,843921,843921,94528,45125,1236782640,1187166553,100,100,100,100,0.68,0.64,0.07,0.07
-17851,42,097,42097,7841,4549,39610309,39235762,7841,4549,39610309,39235762,94528,45125,1236782640,1187166553,100,100,100,100,8.29,10.08,3.2,3.3
-17853,42,067,42067,434,163,17301555,17301555,3221,1227,109841811,109537750,24636,10978,1019199069,1013592984,13.47,13.28,15.75,15.8,1.76,1.48,1.7,1.71
-17853,42,109,42109,2787,1064,92540256,92236195,3221,1227,109841811,109537750,39702,16027,858635810,851343254,86.53,86.72,84.25,84.2,7.02,6.64,10.78,10.83
-17855,42,119,42119,992,427,5098535,5056387,992,427,5098535,5056387,44947,16997,823038441,818389897,100,100,100,100,2.21,2.51,0.62,0.62
-17856,42,119,42119,3365,1482,92296479,91943618,3365,1482,92296479,91943618,44947,16997,823038441,818389897,100,100,100,100,7.49,8.72,11.21,11.23
-17857,42,097,42097,7505,3536,75346514,69369169,7505,3536,75346514,69369169,94528,45125,1236782640,1187166553,100,100,100,100,7.94,7.84,6.09,5.84
-17859,42,037,42037,3106,1449,100765917,99862393,3106,1449,100765917,99862393,67295,29498,1269507017,1251244127,100,100,100,100,4.62,4.91,7.94,7.98
-17860,42,097,42097,1994,869,68642886,68368801,1994,869,68642886,68368801,94528,45125,1236782640,1187166553,100,100,100,100,2.11,1.93,5.55,5.76
-17861,42,109,42109,143,59,374029,373434,143,59,374029,373434,39702,16027,858635810,851343254,100,100,100,100,0.36,0.37,0.04,0.04
-17862,42,109,42109,577,187,1069374,1065111,577,187,1069374,1065111,39702,16027,858635810,851343254,100,100,100,100,1.45,1.17,0.12,0.13
-17864,42,109,42109,2445,826,51963230,51852569,2445,826,51963230,51852569,39702,16027,858635810,851343254,100,100,100,100,6.16,5.15,6.05,6.09
-17865,42,097,42097,92,43,402744,402744,92,43,402744,402744,94528,45125,1236782640,1187166553,100,100,100,100,0.1,0.1,0.03,0.03
-17866,42,097,42097,10310,4181,65235020,64989398,10310,4181,65235020,64989398,94528,45125,1236782640,1187166553,100,100,100,100,10.91,9.27,5.27,5.47
-17867,42,097,42097,169,77,9197320,9197320,169,77,9197320,9197320,94528,45125,1236782640,1187166553,100,100,100,100,0.18,0.17,0.74,0.77
-17868,42,097,42097,1052,464,2100214,1738796,1052,464,2100214,1738796,94528,45125,1236782640,1187166553,100,100,100,100,1.11,1.03,0.17,0.15
-17870,42,109,42109,14420,5553,115843758,113727054,14564,5623,118897668,116780964,39702,16027,858635810,851343254,99.01,98.76,97.43,97.38,36.32,34.65,13.49,13.36
-17870,42,119,42119,144,70,3053910,3053910,14564,5623,118897668,116780964,44947,16997,823038441,818389897,0.99,1.24,2.57,2.62,0.32,0.41,0.37,0.37
-17872,42,097,42097,9943,5681,106030871,105062512,9943,5681,106030871,105062512,94528,45125,1236782640,1187166553,100,100,100,100,10.52,12.59,8.57,8.85
-17876,42,109,42109,1698,837,4898463,4799224,1698,837,4898463,4799224,39702,16027,858635810,851343254,100,100,100,100,4.28,5.22,0.57,0.56
-17878,42,037,42037,901,414,38243328,37688671,1528,634,55172033,54597894,67295,29498,1269507017,1251244127,58.97,65.3,69.32,69.03,1.34,1.4,3.01,3.01
-17878,42,079,42079,627,220,16928705,16909223,1528,634,55172033,54597894,320918,148748,2347214193,2305950580,41.03,34.7,30.68,30.97,0.2,0.15,0.72,0.73
-17880,42,119,42119,72,27,321697,321697,72,27,321697,321697,44947,16997,823038441,818389897,100,100,100,100,0.16,0.16,0.04,0.04
-17881,42,097,42097,1556,767,12323147,12312416,1556,767,12323147,12312416,94528,45125,1236782640,1187166553,100,100,100,100,1.65,1.7,1,1.04
-17884,42,093,42093,305,152,1290367,1278765,305,152,1290367,1278765,18267,7965,342734164,337326235,100,100,100,100,1.67,1.91,0.38,0.38
-17885,42,119,42119,141,269,28442955,28040583,141,269,28442955,28040583,44947,16997,823038441,818389897,100,100,100,100,0.31,1.58,3.46,3.43
-17886,42,119,42119,895,484,2522769,2522769,895,484,2522769,2522769,44947,16997,823038441,818389897,100,100,100,100,1.99,2.85,0.31,0.31
-17887,42,119,42119,1778,209,2971311,2920322,1778,209,2971311,2920322,44947,16997,823038441,818389897,100,100,100,100,3.96,1.23,0.36,0.36
-17888,42,037,42037,326,163,7409908,7373768,326,163,7409908,7373768,67295,29498,1269507017,1251244127,100,100,100,100,0.48,0.55,0.58,0.59
-17889,42,109,42109,1242,469,34529738,34064057,2735,1126,59446367,58837246,39702,16027,858635810,851343254,45.41,41.65,58.09,57.9,3.13,2.93,4.02,4
-17889,42,119,42119,1493,657,24916629,24773189,2735,1126,59446367,58837246,44947,16997,823038441,818389897,54.59,58.35,41.91,42.1,3.32,3.87,3.03,3.03
-17901,42,107,42107,23990,11387,202988850,202084600,23990,11387,202988850,202084600,148289,69323,2027480747,2016651953,100,100,100,100,16.18,16.43,10.01,10.02
-17920,42,037,42037,331,169,11587653,11510672,331,169,11587653,11510672,67295,29498,1269507017,1251244127,100,100,100,100,0.49,0.57,0.91,0.92
-17921,42,037,42037,14,8,8776432,8765072,7676,3227,97841509,97757756,67295,29498,1269507017,1251244127,0.18,0.25,8.97,8.97,0.02,0.03,0.69,0.7
-17921,42,107,42107,7662,3219,89065077,88992684,7676,3227,97841509,97757756,148289,69323,2027480747,2016651953,99.82,99.75,91.03,91.03,5.17,4.64,4.39,4.41
-17922,42,107,42107,4783,2172,80346335,78720194,4783,2172,80346335,78720194,148289,69323,2027480747,2016651953,100,100,100,100,3.23,3.13,3.96,3.9
-17923,42,107,42107,433,226,22508900,22461758,433,226,22508900,22461758,148289,69323,2027480747,2016651953,100,100,100,100,0.29,0.33,1.11,1.11
-17925,42,107,42107,376,183,2532183,2531380,376,183,2532183,2531380,148289,69323,2027480747,2016651953,100,100,100,100,0.25,0.26,0.12,0.13
-17929,42,107,42107,1606,686,2608385,2608385,1606,686,2608385,2608385,148289,69323,2027480747,2016651953,100,100,100,100,1.08,0.99,0.13,0.13
-17930,42,107,42107,476,214,7911630,7911630,476,214,7911630,7911630,148289,69323,2027480747,2016651953,100,100,100,100,0.32,0.31,0.39,0.39
-17931,42,107,42107,8472,2676,27553547,27075278,8472,2676,27553547,27075278,148289,69323,2027480747,2016651953,100,100,100,100,5.71,3.86,1.36,1.34
-17933,42,107,42107,89,38,232629,232629,89,38,232629,232629,148289,69323,2027480747,2016651953,100,100,100,100,0.06,0.05,0.01,0.01
-17934,42,107,42107,469,268,2503999,2451023,469,268,2503999,2451023,148289,69323,2027480747,2016651953,100,100,100,100,0.32,0.39,0.12,0.12
-17935,42,107,42107,1737,958,11354625,11295485,1737,958,11354625,11295485,148289,69323,2027480747,2016651953,100,100,100,100,1.17,1.38,0.56,0.56
-17936,42,107,42107,763,362,1535778,1535778,763,362,1535778,1535778,148289,69323,2027480747,2016651953,100,100,100,100,0.51,0.52,0.08,0.08
-17938,42,107,42107,2442,1087,102606518,102594837,2442,1087,102606518,102594837,148289,69323,2027480747,2016651953,100,100,100,100,1.65,1.57,5.06,5.09
-17941,42,097,42097,176,84,21710727,21709299,834,386,63914991,63913563,94528,45125,1236782640,1187166553,21.1,21.76,33.97,33.97,0.19,0.19,1.76,1.83
-17941,42,107,42107,658,302,42204264,42204264,834,386,63914991,63913563,148289,69323,2027480747,2016651953,78.9,78.24,66.03,66.03,0.44,0.44,2.08,2.09
-17943,42,107,42107,229,105,1502351,1502351,229,105,1502351,1502351,148289,69323,2027480747,2016651953,100,100,100,100,0.15,0.15,0.07,0.07
-17944,42,107,42107,205,103,354772,354772,205,103,354772,354772,148289,69323,2027480747,2016651953,100,100,100,100,0.14,0.15,0.02,0.02
-17945,42,037,42037,93,54,2633237,2616324,180,99,2702791,2685878,67295,29498,1269507017,1251244127,51.67,54.55,97.43,97.41,0.14,0.18,0.21,0.21
-17945,42,107,42107,87,45,69554,69554,180,99,2702791,2685878,148289,69323,2027480747,2016651953,48.33,45.45,2.57,2.59,0.06,0.06,0,0
-17946,42,107,42107,263,160,4986158,4950553,263,160,4986158,4950553,148289,69323,2027480747,2016651953,100,100,100,100,0.18,0.23,0.25,0.25
-17948,42,107,42107,5029,2880,66828263,66322801,5029,2880,66828263,66322801,148289,69323,2027480747,2016651953,100,100,100,100,3.39,4.15,3.3,3.29
-17949,42,107,42107,263,150,260751,260751,263,150,260751,260751,148289,69323,2027480747,2016651953,100,100,100,100,0.18,0.22,0.01,0.01
-17951,42,107,42107,325,141,478498,478498,325,141,478498,478498,148289,69323,2027480747,2016651953,100,100,100,100,0.22,0.2,0.02,0.02
-17952,42,107,42107,282,149,9010610,9010610,282,149,9010610,9010610,148289,69323,2027480747,2016651953,100,100,100,100,0.19,0.21,0.44,0.45
-17953,42,107,42107,469,264,35883869,35405549,469,264,35883869,35405549,148289,69323,2027480747,2016651953,100,100,100,100,0.32,0.38,1.77,1.76
-17954,42,107,42107,4564,2390,1802835,1802835,4564,2390,1802835,1802835,148289,69323,2027480747,2016651953,100,100,100,100,3.08,3.45,0.09,0.09
-17957,42,107,42107,328,145,407086,407086,328,145,407086,407086,148289,69323,2027480747,2016651953,100,100,100,100,0.22,0.21,0.02,0.02
-17959,42,107,42107,1422,737,23374824,23370187,1422,737,23374824,23370187,148289,69323,2027480747,2016651953,100,100,100,100,0.96,1.06,1.15,1.16
-17960,42,107,42107,3868,1768,133778698,133731728,3868,1768,133778698,133731728,148289,69323,2027480747,2016651953,100,100,100,100,2.61,2.55,6.6,6.63
-17961,42,107,42107,6958,3012,69074181,68942694,6958,3012,69074181,68942694,148289,69323,2027480747,2016651953,100,100,100,100,4.69,4.34,3.41,3.42
-17963,42,075,42075,63,22,4861167,4861167,9317,4064,235594077,235046336,133568,55592,938866351,937142582,0.68,0.54,2.06,2.07,0.05,0.04,0.52,0.52
-17963,42,107,42107,9254,4042,230732910,230185169,9317,4064,235594077,235046336,148289,69323,2027480747,2016651953,99.32,99.46,97.94,97.93,6.24,5.83,11.38,11.41
-17964,42,097,42097,43,20,5445836,5434318,798,326,59334085,59322567,94528,45125,1236782640,1187166553,5.39,6.13,9.18,9.16,0.05,0.04,0.44,0.46
-17964,42,107,42107,755,306,53888249,53888249,798,326,59334085,59322567,148289,69323,2027480747,2016651953,94.61,93.87,90.82,90.84,0.51,0.44,2.66,2.67
-17965,42,107,42107,2067,975,1849199,1849199,2067,975,1849199,1849199,148289,69323,2027480747,2016651953,100,100,100,100,1.39,1.41,0.09,0.09
-17967,42,107,42107,2457,1171,75846425,75397526,2457,1171,75846425,75397526,148289,69323,2027480747,2016651953,100,100,100,100,1.66,1.69,3.74,3.74
-17968,42,107,42107,329,136,10125928,10125928,329,136,10125928,10125928,148289,69323,2027480747,2016651953,100,100,100,100,0.22,0.2,0.5,0.5
-17970,42,107,42107,3241,1716,3550463,3550463,3241,1716,3550463,3550463,148289,69323,2027480747,2016651953,100,100,100,100,2.19,2.48,0.18,0.18
-17972,42,107,42107,11627,5050,106136392,106065174,11627,5050,106136392,106065174,148289,69323,2027480747,2016651953,100,100,100,100,7.84,7.28,5.23,5.26
-17974,42,107,42107,344,154,176177,176177,344,154,176177,176177,148289,69323,2027480747,2016651953,100,100,100,100,0.23,0.22,0.01,0.01
-17976,42,107,42107,6937,4022,20202611,19867252,6937,4022,20202611,19867252,148289,69323,2027480747,2016651953,100,100,100,100,4.68,5.8,1,0.99
-17978,42,107,42107,224,110,7189159,7189159,224,110,7189159,7189159,148289,69323,2027480747,2016651953,100,100,100,100,0.15,0.16,0.35,0.36
-17979,42,107,42107,168,90,2735393,2735393,168,90,2735393,2735393,148289,69323,2027480747,2016651953,100,100,100,100,0.11,0.13,0.13,0.14
-17980,42,043,42043,231,105,63362612,60949784,3238,1542,105534806,103105399,268100,120406,1445674118,1359864507,7.13,6.81,60.04,59.11,0.09,0.09,4.38,4.48
-17980,42,107,42107,3007,1437,42172194,42155615,3238,1542,105534806,103105399,148289,69323,2027480747,2016651953,92.87,93.19,39.96,40.89,2.03,2.07,2.08,2.09
-17981,42,107,42107,2751,1153,71016065,70921777,2751,1153,71016065,70921777,148289,69323,2027480747,2016651953,100,100,100,100,1.86,1.66,3.5,3.52
-17982,42,107,42107,430,217,12637039,12637039,430,217,12637039,12637039,148289,69323,2027480747,2016651953,100,100,100,100,0.29,0.31,0.62,0.63
-17983,42,107,42107,1620,763,6498258,6498258,1620,763,6498258,6498258,148289,69323,2027480747,2016651953,100,100,100,100,1.09,1.1,0.32,0.32
-17985,42,037,42037,151,82,13811210,13514689,1226,638,68315962,67970633,67295,29498,1269507017,1251244127,12.32,12.85,20.22,19.88,0.22,0.28,1.09,1.08
-17985,42,107,42107,1075,556,54504752,54455944,1226,638,68315962,67970633,148289,69323,2027480747,2016651953,87.68,87.15,79.78,80.12,0.72,0.8,2.69,2.7
-18011,42,011,42011,1604,660,32782331,32676444,5450,2164,42875708,42688619,411442,164827,2242297348,2218341544,29.43,30.5,76.46,76.55,0.39,0.4,1.46,1.47
-18011,42,077,42077,3846,1504,10093377,10012175,5450,2164,42875708,42688619,349497,142613,901935827,893975782,70.57,69.5,23.54,23.45,1.1,1.05,1.12,1.12
-18013,42,095,42095,17802,7381,160105589,155703566,17802,7381,160105589,155703566,297735,120363,977450674,957444154,100,100,100,100,5.98,6.13,16.38,16.26
-18014,42,095,42095,11387,4833,87367606,86423058,11387,4833,87367606,86423058,297735,120363,977450674,957444154,100,100,100,100,3.82,4.02,8.94,9.03
-18015,42,077,42077,7181,2962,19289867,18907547,32832,11814,55852504,55003170,349497,142613,901935827,893975782,21.87,25.07,34.54,34.38,2.05,2.08,2.14,2.11
-18015,42,095,42095,25651,8852,36562637,36095623,32832,11814,55852504,55003170,297735,120363,977450674,957444154,78.13,74.93,65.46,65.62,8.62,7.35,3.74,3.77
-18016,42,077,42077,0,0,153758,153758,0,0,153758,153758,349497,142613,901935827,893975782,0,0,100,100,0,0,0.02,0.02
-18017,42,077,42077,1215,522,2234572,2234572,37549,15682,42312768,41992344,349497,142613,901935827,893975782,3.24,3.33,5.28,5.32,0.35,0.37,0.25,0.25
-18017,42,095,42095,36334,15160,40078196,39757772,37549,15682,42312768,41992344,297735,120363,977450674,957444154,96.76,96.67,94.72,94.68,12.2,12.6,4.1,4.15
-18018,42,077,42077,18128,8405,9004498,8744512,32413,14698,13710650,13344934,349497,142613,901935827,893975782,55.93,57.18,65.68,65.53,5.19,5.89,1,0.98
-18018,42,095,42095,14285,6293,4706152,4600422,32413,14698,13710650,13344934,297735,120363,977450674,957444154,44.07,42.82,34.32,34.47,4.8,5.23,0.48,0.48
-18020,42,095,42095,20447,7772,36394573,35827006,20447,7772,36394573,35827006,297735,120363,977450674,957444154,100,100,100,100,6.87,6.46,3.72,3.74
-18030,42,025,42025,623,295,1236239,1162121,623,295,1236239,1162121,65249,34299,1003327508,987977465,100,100,100,100,0.95,0.86,0.12,0.12
-18031,42,011,42011,18,8,144599,144599,7528,3217,35744869,35657452,411442,164827,2242297348,2218341544,0.24,0.25,0.4,0.41,0,0,0.01,0.01
-18031,42,077,42077,7510,3209,35600270,35512853,7528,3217,35744869,35657452,349497,142613,901935827,893975782,99.76,99.75,99.6,99.59,2.15,2.25,3.95,3.97
-18032,42,077,42077,6436,2792,3440775,3343131,9285,4034,5354609,5200219,349497,142613,901935827,893975782,69.32,69.21,64.26,64.29,1.84,1.96,0.38,0.37
-18032,42,095,42095,2849,1242,1913834,1857088,9285,4034,5354609,5200219,297735,120363,977450674,957444154,30.68,30.79,35.74,35.71,0.96,1.03,0.2,0.19
-18034,42,077,42077,8256,2791,29551958,29355784,8256,2791,29551958,29355784,349497,142613,901935827,893975782,100,100,100,100,2.36,1.96,3.28,3.28
-18035,42,095,42095,241,95,911978,909615,241,95,911978,909615,297735,120363,977450674,957444154,100,100,100,100,0.08,0.08,0.09,0.1
-18036,42,017,42017,2138,909,29331210,29252096,12822,4970,76097242,75885082,625249,245956,1610646492,1565148677,16.67,18.29,38.54,38.55,0.34,0.37,1.82,1.87
-18036,42,077,42077,10684,4061,46766032,46632986,12822,4970,76097242,75885082,349497,142613,901935827,893975782,83.33,81.71,61.46,61.45,3.06,2.85,5.19,5.22
-18037,42,077,42077,7070,3006,19311922,18892795,7070,3006,19311922,18892795,349497,142613,901935827,893975782,100,100,100,100,2.02,2.11,2.14,2.11
-18038,42,095,42095,3091,1208,34390106,33641110,3091,1208,34390106,33641110,297735,120363,977450674,957444154,100,100,100,100,1.04,1,3.52,3.51
-18040,42,095,42095,15742,6017,44612679,43874273,15742,6017,44612679,43874273,297735,120363,977450674,957444154,100,100,100,100,5.29,5,4.56,4.58
-18041,42,011,42011,125,47,2753634,2752784,5424,2105,35977234,35968461,411442,164827,2242297348,2218341544,2.3,2.23,7.65,7.65,0.03,0.03,0.12,0.12
-18041,42,017,42017,27,14,453943,450927,5424,2105,35977234,35968461,625249,245956,1610646492,1565148677,0.5,0.67,1.26,1.25,0,0.01,0.03,0.03
-18041,42,077,42077,533,197,11196188,11191281,5424,2105,35977234,35968461,349497,142613,901935827,893975782,9.83,9.36,31.12,31.11,0.15,0.14,1.24,1.25
-18041,42,091,42091,4739,1847,21573469,21573469,5424,2105,35977234,35968461,799874,325735,1261828565,1251067046,87.37,87.74,59.96,59.98,0.59,0.57,1.71,1.72
-18042,42,095,42095,41570,16642,57653119,54817856,41570,16642,57653119,54817856,297735,120363,977450674,957444154,100,100,100,100,13.96,13.83,5.9,5.73
-18045,42,095,42095,26391,10502,48182905,47869633,26391,10502,48182905,47869633,297735,120363,977450674,957444154,100,100,100,100,8.86,8.73,4.93,5
-18046,42,077,42077,64,24,47260,47260,64,24,47260,47260,349497,142613,901935827,893975782,100,100,100,100,0.02,0.02,0.01,0.01
-18049,42,077,42077,17341,7662,38989525,38841955,17341,7662,38989525,38841955,349497,142613,901935827,893975782,100,100,100,100,4.96,5.37,4.32,4.34
-18051,42,077,42077,3327,1275,21701403,21657180,3327,1275,21701403,21657180,349497,142613,901935827,893975782,100,100,100,100,0.95,0.89,2.41,2.42
-18052,42,077,42077,26902,11699,33641441,32809262,26902,11699,33641441,32809262,349497,142613,901935827,893975782,100,100,100,100,7.7,8.2,3.73,3.67
-18053,42,077,42077,2375,907,42622483,42497913,2375,907,42622483,42497913,349497,142613,901935827,893975782,100,100,100,100,0.68,0.64,4.73,4.75
-18054,42,017,42017,794,343,9704478,9670232,4278,1824,43133173,42469973,625249,245956,1610646492,1565148677,18.56,18.8,22.5,22.77,0.13,0.14,0.6,0.62
-18054,42,091,42091,3484,1481,33428695,32799741,4278,1824,43133173,42469973,799874,325735,1261828565,1251067046,81.44,81.2,77.5,77.23,0.44,0.45,2.65,2.62
-18055,42,017,42017,124,56,1978711,1972178,11780,5324,56073143,55492712,625249,245956,1610646492,1565148677,1.05,1.05,3.53,3.55,0.02,0.02,0.12,0.13
-18055,42,095,42095,11656,5268,54094432,53520534,11780,5324,56073143,55492712,297735,120363,977450674,957444154,98.95,98.95,96.47,96.45,3.91,4.38,5.53,5.59
-18056,42,011,42011,943,435,4360427,4345873,943,435,4360427,4345873,411442,164827,2242297348,2218341544,100,100,100,100,0.23,0.26,0.19,0.2
-18058,42,025,42025,1191,523,22989197,22557482,9464,4146,135186675,133768252,65249,34299,1003327508,987977465,12.58,12.61,17.01,16.86,1.83,1.52,2.29,2.28
-18058,42,089,42089,8273,3623,112197478,111210770,9464,4146,135186675,133768252,169842,80359,1598691136,1575452175,87.42,87.39,82.99,83.14,4.87,4.51,7.02,7.06
-18059,42,077,42077,1228,469,4494731,4143034,1228,469,4494731,4143034,349497,142613,901935827,893975782,100,100,100,100,0.35,0.33,0.5,0.46
-18062,42,011,42011,1938,802,20026006,19944522,24351,9644,55361066,55168217,411442,164827,2242297348,2218341544,7.96,8.32,36.17,36.15,0.47,0.49,0.89,0.9
-18062,42,077,42077,22413,8842,35335060,35223695,24351,9644,55361066,55168217,349497,142613,901935827,893975782,92.04,91.68,63.83,63.85,6.41,6.2,3.92,3.94
-18063,42,095,42095,548,262,2964629,2599264,548,262,2964629,2599264,297735,120363,977450674,957444154,100,100,100,100,0.18,0.22,0.3,0.27
-18064,42,095,42095,24073,9438,100433585,99491064,24073,9438,100433585,99491064,297735,120363,977450674,957444154,100,100,100,100,8.09,7.84,10.28,10.39
-18066,42,077,42077,6005,2326,118884416,118243859,6005,2326,118884416,118243859,349497,142613,901935827,893975782,100,100,100,100,1.72,1.63,13.18,13.23
-18067,42,095,42095,17852,7672,65975140,64560354,17852,7672,65975140,64560354,297735,120363,977450674,957444154,100,100,100,100,6,6.37,6.75,6.74
-18068,42,077,42077,42,19,10470,10470,42,19,10470,10470,349497,142613,901935827,893975782,100,100,100,100,0.01,0.01,0,0
-18069,42,077,42077,8017,2945,36046645,35787750,8017,2945,36046645,35787750,349497,142613,901935827,893975782,100,100,100,100,2.29,2.07,4,4
-18070,42,011,42011,157,72,1532910,1531338,739,306,6175534,6173962,411442,164827,2242297348,2218341544,21.24,23.53,24.82,24.8,0.04,0.04,0.07,0.07
-18070,42,091,42091,582,234,4642624,4642624,739,306,6175534,6173962,799874,325735,1261828565,1251067046,78.76,76.47,75.18,75.2,0.07,0.07,0.37,0.37
-18071,42,025,42025,10493,4613,78503881,78262879,10578,4648,79206210,78965208,65249,34299,1003327508,987977465,99.2,99.25,99.11,99.11,16.08,13.45,7.82,7.92
-18071,42,089,42089,85,35,702329,702329,10578,4648,79206210,78965208,169842,80359,1598691136,1575452175,0.8,0.75,0.89,0.89,0.05,0.04,0.04,0.04
-18072,42,095,42095,6571,2682,39527273,39041918,6571,2682,39527273,39041918,297735,120363,977450674,957444154,100,100,100,100,2.21,2.23,4.04,4.08
-18073,42,017,42017,674,276,8979663,8978635,9350,3440,51970884,49541139,625249,245956,1610646492,1565148677,7.21,8.02,17.28,18.12,0.11,0.11,0.56,0.57
-18073,42,091,42091,8676,3164,42991221,40562504,9350,3440,51970884,49541139,799874,325735,1261828565,1251067046,92.79,91.98,82.72,81.88,1.08,0.97,3.41,3.24
-18074,42,091,42091,5775,2287,49226637,48916560,5775,2287,49226637,48916560,799874,325735,1261828565,1251067046,100,100,100,100,0.72,0.7,3.9,3.91
-18076,42,091,42091,2662,1229,3109083,3109083,2662,1229,3109083,3109083,799874,325735,1261828565,1251067046,100,100,100,100,0.33,0.38,0.25,0.25
-18077,42,017,42017,2179,995,34813705,34560594,2370,1075,37994011,37739579,625249,245956,1610646492,1565148677,91.94,92.56,91.63,91.58,0.35,0.4,2.16,2.21
-18077,42,095,42095,191,80,3180306,3178985,2370,1075,37994011,37739579,297735,120363,977450674,957444154,8.06,7.44,8.37,8.42,0.06,0.07,0.33,0.33
-18078,42,077,42077,7074,2776,41103765,40815001,7074,2776,41103765,40815001,349497,142613,901935827,893975782,100,100,100,100,2.02,1.95,4.56,4.57
-18079,42,077,42077,436,184,612817,610352,436,184,612817,610352,349497,142613,901935827,893975782,100,100,100,100,0.12,0.13,0.07,0.07
-18080,42,077,42077,11456,4881,80442909,79594197,11456,4881,80442909,79594197,349497,142613,901935827,893975782,100,100,100,100,3.28,3.42,8.92,8.9
-18081,42,017,42017,357,153,1374793,1364577,357,153,1374793,1364577,625249,245956,1610646492,1565148677,100,100,100,100,0.06,0.06,0.09,0.09
-18083,42,095,42095,530,221,1637163,1586877,530,221,1637163,1586877,297735,120363,977450674,957444154,100,100,100,100,0.18,0.18,0.17,0.17
-18085,42,095,42095,1119,421,1361334,1322057,1119,421,1361334,1322057,297735,120363,977450674,957444154,100,100,100,100,0.38,0.35,0.14,0.14
-18086,42,095,42095,398,164,1237646,1230512,398,164,1237646,1230512,297735,120363,977450674,957444154,100,100,100,100,0.13,0.14,0.13,0.13
-18087,42,077,42077,738,345,2909253,2867323,738,345,2909253,2867323,349497,142613,901935827,893975782,100,100,100,100,0.21,0.24,0.32,0.32
-18088,42,095,42095,8375,3559,51455536,50240303,8375,3559,51455536,50240303,297735,120363,977450674,957444154,100,100,100,100,2.81,2.96,5.26,5.25
-18091,42,095,42095,5926,2520,40592175,39868957,5926,2520,40592175,39868957,297735,120363,977450674,957444154,100,100,100,100,1.99,2.09,4.15,4.16
-18092,42,011,42011,90,38,1806275,1800809,3223,1279,38846661,38755178,411442,164827,2242297348,2218341544,2.79,2.97,4.65,4.65,0.02,0.02,0.08,0.08
-18092,42,077,42077,3133,1241,37040386,36954369,3223,1279,38846661,38755178,349497,142613,901935827,893975782,97.21,97.03,95.35,95.35,0.9,0.87,4.11,4.13
-18101,42,077,42077,3897,1821,907941,903911,3897,1821,907941,903911,349497,142613,901935827,893975782,100,100,100,100,1.12,1.28,0.1,0.1
-18102,42,077,42077,49779,18434,8019217,7762017,49779,18434,8019217,7762017,349497,142613,901935827,893975782,100,100,100,100,14.24,12.93,0.89,0.87
-18103,42,077,42077,45336,18827,45920330,45607987,45336,18827,45920330,45607987,349497,142613,901935827,893975782,100,100,100,100,12.97,13.2,5.09,5.1
-18104,42,077,42077,43236,17599,60381835,59828337,43236,17599,60381835,59828337,349497,142613,901935827,893975782,100,100,100,100,12.37,12.34,6.69,6.69
-18105,42,077,42077,12,0,19947,19947,12,0,19947,19947,349497,142613,901935827,893975782,100,0,100,100,0,0,0,0
-18106,42,077,42077,6889,2836,21313073,20997049,6889,2836,21313073,20997049,349497,142613,901935827,893975782,100,100,100,100,1.97,1.99,2.36,2.35
-18109,42,077,42077,16726,7171,20914623,20274524,16932,7269,21869164,21229065,349497,142613,901935827,893975782,98.78,98.65,95.64,95.5,4.79,5.03,2.32,2.27
-18109,42,095,42095,206,98,954541,954541,16932,7269,21869164,21229065,297735,120363,977450674,957444154,1.22,1.35,4.36,4.5,0.07,0.08,0.1,0.1
-18195,42,077,42077,0,0,29340,29340,0,0,29340,29340,349497,142613,901935827,893975782,0,0,100,100,0,0,0,0
-18201,42,025,42025,72,37,1067988,1067988,27516,12432,56182747,55774251,65249,34299,1003327508,987977465,0.26,0.3,1.9,1.91,0.11,0.11,0.11,0.11
-18201,42,079,42079,27331,12339,53347822,52939326,27516,12432,56182747,55774251,320918,148748,2347214193,2305950580,99.33,99.25,94.95,94.92,8.52,8.3,2.27,2.3
-18201,42,107,42107,113,56,1766937,1766937,27516,12432,56182747,55774251,148289,69323,2027480747,2016651953,0.41,0.45,3.14,3.17,0.08,0.08,0.09,0.09
-18202,42,079,42079,11651,5313,79126400,78621952,12083,5608,85195875,84642385,320918,148748,2347214193,2305950580,96.42,94.74,92.88,92.89,3.63,3.57,3.37,3.41
-18202,42,107,42107,432,295,6069475,6020433,12083,5608,85195875,84642385,148289,69323,2027480747,2016651953,3.58,5.26,7.12,7.11,0.29,0.43,0.3,0.3
-18210,42,025,42025,6396,4868,75857390,74918083,8258,5992,82158461,81054008,65249,34299,1003327508,987977465,77.45,81.24,92.33,92.43,9.8,14.19,7.56,7.58
-18210,42,089,42089,1862,1124,6301071,6135925,8258,5992,82158461,81054008,169842,80359,1598691136,1575452175,22.55,18.76,7.67,7.57,1.1,1.4,0.39,0.39
-18211,42,025,42025,34,13,1657419,1657419,1304,574,55803769,55290765,65249,34299,1003327508,987977465,2.61,2.26,2.97,3,0.05,0.04,0.17,0.17
-18211,42,107,42107,1270,561,54146350,53633346,1304,574,55803769,55290765,148289,69323,2027480747,2016651953,97.39,97.74,97.03,97,0.86,0.81,2.67,2.66
-18212,42,025,42025,131,65,4422596,4422596,131,65,4422596,4422596,65249,34299,1003327508,987977465,100,100,100,100,0.2,0.19,0.44,0.45
-18214,42,107,42107,2078,958,62962052,61961896,2078,958,62962052,61961896,148289,69323,2027480747,2016651953,100,100,100,100,1.4,1.38,3.11,3.07
-18216,42,025,42025,1031,523,12876711,12876711,1067,542,13387793,13387793,65249,34299,1003327508,987977465,96.63,96.49,96.18,96.18,1.58,1.52,1.28,1.3
-18216,42,079,42079,36,19,511082,511082,1067,542,13387793,13387793,320918,148748,2347214193,2305950580,3.37,3.51,3.82,3.82,0.01,0.01,0.02,0.02
-18218,42,107,42107,2281,1154,5634253,5634253,2281,1154,5634253,5634253,148289,69323,2027480747,2016651953,100,100,100,100,1.54,1.66,0.28,0.28
-18219,42,079,42079,1436,659,2138821,2138821,1436,659,2138821,2138821,320918,148748,2347214193,2305950580,100,100,100,100,0.45,0.44,0.09,0.09
-18220,42,107,42107,344,172,2381279,2381279,344,172,2381279,2381279,148289,69323,2027480747,2016651953,100,100,100,100,0.23,0.25,0.12,0.12
-18221,42,079,42079,389,173,5119940,5119940,389,173,5119940,5119940,320918,148748,2347214193,2305950580,100,100,100,100,0.12,0.12,0.22,0.22
-18222,42,079,42079,9020,3760,97902691,97252165,9020,3760,97902691,97252165,320918,148748,2347214193,2305950580,100,100,100,100,2.81,2.53,4.17,4.22
-18223,42,079,42079,115,74,3230031,3230031,115,74,3230031,3230031,320918,148748,2347214193,2305950580,100,100,100,100,0.04,0.05,0.14,0.14
-18224,42,079,42079,6017,2916,41567302,41293154,6017,2916,41567302,41293154,320918,148748,2347214193,2305950580,100,100,100,100,1.87,1.96,1.77,1.79
-18225,42,079,42079,114,63,111343,111343,114,63,111343,111343,320918,148748,2347214193,2305950580,100,100,100,100,0.04,0.04,0,0
-18229,42,025,42025,8498,4636,162982232,160743330,8498,4636,162982232,160743330,65249,34299,1003327508,987977465,100,100,100,100,13.02,13.52,16.24,16.27
-18230,42,025,42025,132,64,7053071,7053071,132,64,7053071,7053071,65249,34299,1003327508,987977465,100,100,100,100,0.2,0.19,0.7,0.71
-18231,42,107,42107,535,259,2570208,2570208,535,259,2570208,2570208,148289,69323,2027480747,2016651953,100,100,100,100,0.36,0.37,0.13,0.13
-18232,42,025,42025,3941,2161,3980749,3979138,3941,2161,3980749,3979138,65249,34299,1003327508,987977465,100,100,100,100,6.04,6.3,0.4,0.4
-18234,42,079,42079,401,188,670491,670491,401,188,670491,670491,320918,148748,2347214193,2305950580,100,100,100,100,0.12,0.13,0.03,0.03
-18235,42,025,42025,19353,8489,211841117,205052612,19353,8489,211841117,205052612,65249,34299,1003327508,987977465,100,100,100,100,29.66,24.75,21.11,20.75
-18237,42,025,42025,20,9,267113,267113,3110,1577,17085777,16805400,65249,34299,1003327508,987977465,0.64,0.57,1.56,1.59,0.03,0.03,0.03,0.03
-18237,42,107,42107,3090,1568,16818664,16538287,3110,1577,17085777,16805400,148289,69323,2027480747,2016651953,99.36,99.43,98.44,98.41,2.08,2.26,0.83,0.82
-18239,42,079,42079,232,117,697589,697589,232,117,697589,697589,320918,148748,2347214193,2305950580,100,100,100,100,0.07,0.08,0.03,0.03
-18240,42,025,42025,3349,1701,55814182,54808279,3891,2034,79663387,76333827,65249,34299,1003327508,987977465,86.07,83.63,70.06,71.8,5.13,4.96,5.56,5.55
-18240,42,107,42107,542,333,23849205,21525548,3891,2034,79663387,76333827,148289,69323,2027480747,2016651953,13.93,16.37,29.94,28.2,0.37,0.48,1.18,1.07
-18241,42,079,42079,304,167,5125279,5125279,646,343,6067584,6067584,320918,148748,2347214193,2305950580,47.06,48.69,84.47,84.47,0.09,0.11,0.22,0.22
-18241,42,107,42107,342,176,942305,942305,646,343,6067584,6067584,148289,69323,2027480747,2016651953,52.94,51.31,15.53,15.53,0.23,0.25,0.05,0.05
-18242,42,107,42107,235,156,3263164,3263164,235,156,3263164,3263164,148289,69323,2027480747,2016651953,100,100,100,100,0.16,0.23,0.16,0.16
-18244,42,025,42025,300,147,1600526,1590459,402,214,2477857,2467790,65249,34299,1003327508,987977465,74.63,68.69,64.59,64.45,0.46,0.43,0.16,0.16
-18244,42,079,42079,102,67,877331,877331,402,214,2477857,2467790,320918,148748,2347214193,2305950580,25.37,31.31,35.41,35.55,0.03,0.05,0.04,0.04
-18245,42,107,42107,348,158,9338162,9338162,348,158,9338162,9338162,148289,69323,2027480747,2016651953,100,100,100,100,0.23,0.23,0.46,0.46
-18246,42,079,42079,143,71,5494920,5494920,143,71,5494920,5494920,320918,148748,2347214193,2305950580,100,100,100,100,0.04,0.05,0.23,0.24
-18248,42,107,42107,631,295,37366974,37322753,631,295,37366974,37322753,148289,69323,2027480747,2016651953,100,100,100,100,0.43,0.43,1.84,1.85
-18249,42,079,42079,4129,1724,82749399,82682997,4129,1724,82749399,82682997,320918,148748,2347214193,2305950580,100,100,100,100,1.29,1.16,3.53,3.59
-18250,42,025,42025,3034,1458,23581606,22510426,3034,1458,23581606,22510426,65249,34299,1003327508,987977465,100,100,100,100,4.65,4.25,2.35,2.28
-18251,42,079,42079,46,23,275049,275049,46,23,275049,275049,320918,148748,2347214193,2305950580,100,100,100,100,0.01,0.02,0.01,0.01
-18252,42,107,42107,11188,5322,153710342,153137563,11188,5322,153710342,153137563,148289,69323,2027480747,2016651953,100,100,100,100,7.54,7.68,7.58,7.59
-18254,42,025,42025,871,420,4572626,4572626,871,420,4572626,4572626,65249,34299,1003327508,987977465,100,100,100,100,1.33,1.22,0.46,0.46
-18255,42,025,42025,4244,1911,168935186,168166776,4337,2000,190158683,189310879,65249,34299,1003327508,987977465,97.86,95.55,88.84,88.83,6.5,5.57,16.84,17.02
-18255,42,079,42079,93,89,21223497,21144103,4337,2000,190158683,189310879,320918,148748,2347214193,2305950580,2.14,4.45,11.16,11.17,0.03,0.06,0.9,0.92
-18256,42,079,42079,359,170,2814971,2814971,359,170,2814971,2814971,320918,148748,2347214193,2305950580,100,100,100,100,0.11,0.11,0.12,0.12
-18301,42,089,42089,28561,11168,104517794,102189326,28561,11168,104517794,102189326,169842,80359,1598691136,1575452175,100,100,100,100,16.82,13.9,6.54,6.49
-18302,42,089,42089,17224,8319,163203162,159956620,17362,8396,163591093,160300805,169842,80359,1598691136,1575452175,99.21,99.08,99.76,99.79,10.14,10.35,10.21,10.15
-18302,42,103,42103,138,77,387931,344185,17362,8396,163591093,160300805,57369,38350,1468133426,1411441365,0.79,0.92,0.24,0.21,0.24,0.2,0.03,0.02
-18321,42,089,42089,1711,732,7196021,7098385,1711,732,7196021,7098385,169842,80359,1598691136,1575452175,100,100,100,100,1.01,0.91,0.45,0.45
-18322,42,089,42089,2781,1105,17996838,17868187,2781,1105,17996838,17868187,169842,80359,1598691136,1575452175,100,100,100,100,1.64,1.38,1.13,1.13
-18323,42,089,42089,275,325,4817238,4817238,275,325,4817238,4817238,169842,80359,1598691136,1575452175,100,100,100,100,0.16,0.4,0.3,0.31
-18324,42,089,42089,199,127,291015,291015,9714,5650,121768770,118258652,169842,80359,1598691136,1575452175,2.05,2.25,0.24,0.25,0.12,0.16,0.02,0.02
-18324,42,103,42103,9515,5523,121477755,117967637,9714,5650,121768770,118258652,57369,38350,1468133426,1411441365,97.95,97.75,99.76,99.75,16.59,14.4,8.27,8.36
-18325,42,089,42089,1965,1152,99607750,98333407,2465,1559,113251443,111459161,169842,80359,1598691136,1575452175,79.72,73.89,87.95,88.22,1.16,1.43,6.23,6.24
-18325,42,103,42103,500,407,13643693,13125754,2465,1559,113251443,111459161,57369,38350,1468133426,1411441365,20.28,26.11,12.05,11.78,0.87,1.06,0.93,0.93
-18326,42,089,42089,4152,2115,86446354,86255814,4152,2115,86446354,86255814,169842,80359,1598691136,1575452175,100,100,100,100,2.44,2.63,5.41,5.47
-18327,42,089,42089,700,370,5203303,4860055,700,370,5203303,4860055,169842,80359,1598691136,1575452175,100,100,100,100,0.41,0.46,0.33,0.31
-18328,42,103,42103,7759,4842,224714019,215719411,7759,4842,224714019,215719411,57369,38350,1468133426,1411441365,100,100,100,100,13.52,12.63,15.31,15.28
-18330,42,089,42089,8927,3438,42587923,42465648,8927,3438,42587923,42465648,169842,80359,1598691136,1575452175,100,100,100,100,5.26,4.28,2.66,2.7
-18331,42,089,42089,867,373,8897626,8874238,867,373,8897626,8874238,169842,80359,1598691136,1575452175,100,100,100,100,0.51,0.46,0.56,0.56
-18332,42,089,42089,3085,1349,36253691,36031553,3085,1349,36253691,36031553,169842,80359,1598691136,1575452175,100,100,100,100,1.82,1.68,2.27,2.29
-18333,42,089,42089,712,243,5579087,5563500,712,243,5579087,5563500,169842,80359,1598691136,1575452175,100,100,100,100,0.42,0.3,0.35,0.35
-18334,42,089,42089,4156,2134,57069310,56442790,4156,2134,57069310,56442790,169842,80359,1598691136,1575452175,100,100,100,100,2.45,2.66,3.57,3.58
-18335,42,089,42089,672,340,2369566,2325582,672,340,2369566,2325582,169842,80359,1598691136,1575452175,100,100,100,100,0.4,0.42,0.15,0.15
-18336,42,103,42103,4082,1819,36911597,36190886,4082,1819,36911597,36190886,57369,38350,1468133426,1411441365,100,100,100,100,7.12,4.74,2.51,2.56
-18337,42,103,42103,14572,6697,208569629,204437918,14572,6697,208569629,204437918,57369,38350,1468133426,1411441365,100,100,100,100,25.4,17.46,14.21,14.48
-18340,42,103,42103,174,104,8737608,8032703,174,104,8737608,8032703,57369,38350,1468133426,1411441365,100,100,100,100,0.3,0.27,0.6,0.57
-18342,42,089,42089,492,262,2845569,2845569,492,262,2845569,2845569,169842,80359,1598691136,1575452175,100,100,100,100,0.29,0.33,0.18,0.18
-18343,42,095,42095,3982,1740,60016713,57518125,3982,1740,60016713,57518125,297735,120363,977450674,957444154,100,100,100,100,1.34,1.45,6.14,6.01
-18344,42,089,42089,3589,1628,18288932,18180738,3589,1628,18288932,18180738,169842,80359,1598691136,1575452175,100,100,100,100,2.11,2.03,1.14,1.15
-18346,42,089,42089,2964,1397,30447118,28583716,2964,1397,30447118,28583716,169842,80359,1598691136,1575452175,100,100,100,100,1.75,1.74,1.9,1.81
-18347,42,089,42089,3364,4272,73477745,70019147,3364,4272,73477745,70019147,169842,80359,1598691136,1575452175,100,100,100,100,1.98,5.32,4.6,4.44
-18349,42,089,42089,132,83,3633981,3633677,132,83,3633981,3633677,169842,80359,1598691136,1575452175,100,100,100,100,0.08,0.1,0.23,0.23
-18350,42,089,42089,1931,2862,59158500,57445793,1931,2862,59158500,57445793,169842,80359,1598691136,1575452175,100,100,100,100,1.14,3.56,3.7,3.65
-18351,42,095,42095,518,241,1140827,953641,518,241,1140827,953641,297735,120363,977450674,957444154,100,100,100,100,0.17,0.2,0.12,0.1
-18352,42,089,42089,1098,496,10422494,9732440,1098,496,10422494,9732440,169842,80359,1598691136,1575452175,100,100,100,100,0.65,0.62,0.65,0.62
-18353,42,089,42089,12779,5000,122590438,122145849,12779,5000,122590438,122145849,169842,80359,1598691136,1575452175,100,100,100,100,7.52,6.22,7.67,7.75
-18354,42,089,42089,951,388,8803953,8769224,951,388,8803953,8769224,169842,80359,1598691136,1575452175,100,100,100,100,0.56,0.48,0.55,0.56
-18355,42,089,42089,1492,800,18666040,18529489,1492,800,18666040,18529489,169842,80359,1598691136,1575452175,100,100,100,100,0.88,1,1.17,1.18
-18356,42,089,42089,136,435,1684805,1684805,136,435,1684805,1684805,169842,80359,1598691136,1575452175,100,100,100,100,0.08,0.54,0.11,0.11
-18357,42,089,42089,104,143,10748820,10319276,104,143,10748820,10319276,169842,80359,1598691136,1575452175,100,100,100,100,0.06,0.18,0.67,0.66
-18360,42,089,42089,28362,11667,206273412,205552867,28362,11667,206273412,205552867,169842,80359,1598691136,1575452175,100,100,100,100,16.7,14.52,12.9,13.05
-18370,42,089,42089,1096,527,13594925,13500747,1096,527,13594925,13500747,169842,80359,1598691136,1575452175,100,100,100,100,0.65,0.66,0.85,0.86
-18371,42,103,42103,747,434,9486166,9143461,747,434,9486166,9143461,57369,38350,1468133426,1411441365,100,100,100,100,1.3,1.13,0.65,0.65
-18372,42,089,42089,3210,1877,22903895,22876750,3210,1877,22903895,22876750,169842,80359,1598691136,1575452175,100,100,100,100,1.89,2.34,1.43,1.45
-18403,42,069,42069,7087,2957,61654206,61618058,7087,2957,61654206,61618058,214437,96832,1204111576,1189006298,100,100,100,100,3.3,3.05,5.12,5.18
-18405,42,103,42103,211,158,21489918,20572028,2561,1383,99464474,95549735,57369,38350,1468133426,1411441365,8.24,11.42,21.61,21.53,0.37,0.41,1.46,1.46
-18405,42,127,42127,2350,1225,77974556,74977707,2561,1383,99464474,95549735,52822,31653,1944081812,1879304853,91.76,88.58,78.39,78.47,4.45,3.87,4.01,3.99
-18407,42,069,42069,13548,6358,102785253,100883982,13862,6566,110528672,108471599,214437,96832,1204111576,1189006298,97.73,96.83,92.99,93,6.32,6.57,8.54,8.48
-18407,42,115,42115,314,208,7743419,7587617,13862,6566,110528672,108471599,43356,22968,2155239073,2132685970,2.27,3.17,7.01,7,0.72,0.91,0.36,0.36
-18411,42,069,42069,21985,9081,143076433,140723101,21985,9081,143076433,140723101,214437,96832,1204111576,1189006298,100,100,100,100,10.25,9.38,11.88,11.84
-18413,42,115,42115,151,80,2317909,2317909,151,80,2317909,2317909,43356,22968,2155239073,2132685970,100,100,100,100,0.35,0.35,0.11,0.11
-18414,42,069,42069,3979,1716,78807786,78354848,5452,2328,109388267,108920003,214437,96832,1204111576,1189006298,72.98,73.71,72.04,71.94,1.86,1.77,6.54,6.59
-18414,42,131,42131,1473,612,30580481,30565155,5452,2328,109388267,108920003,28276,13254,1049084182,1029063118,27.02,26.29,27.96,28.06,5.21,4.62,2.91,2.97
-18415,42,127,42127,1245,909,86950367,85339112,1245,909,86950367,85339112,52822,31653,1944081812,1879304853,100,100,100,100,2.36,2.87,4.47,4.54
-18417,42,127,42127,1121,980,155321536,151469642,1121,980,155321536,151469642,52822,31653,1944081812,1879304853,100,100,100,100,2.12,3.1,7.99,8.06
-18419,42,069,42069,1123,636,39264481,38476514,4634,2070,101351560,100109485,214437,96832,1204111576,1189006298,24.23,30.72,38.74,38.43,0.52,0.66,3.26,3.24
-18419,42,115,42115,25,12,3205200,3201622,4634,2070,101351560,100109485,43356,22968,2155239073,2132685970,0.54,0.58,3.16,3.2,0.06,0.05,0.15,0.15
-18419,42,131,42131,3486,1422,58881879,58431349,4634,2070,101351560,100109485,28276,13254,1049084182,1029063118,75.23,68.7,58.1,58.37,12.33,10.73,5.61,5.68
-18420,42,069,42069,57,22,726672,726672,57,22,726672,726672,214437,96832,1204111576,1189006298,100,100,100,100,0.03,0.02,0.06,0.06
-18421,42,069,42069,926,421,5486867,5486696,4754,2287,92283428,91234923,214437,96832,1204111576,1189006298,19.48,18.41,5.95,6.01,0.43,0.43,0.46,0.46
-18421,42,115,42115,2787,1346,38645677,38535632,4754,2287,92283428,91234923,43356,22968,2155239073,2132685970,58.62,58.85,41.88,42.24,6.43,5.86,1.79,1.81
-18421,42,127,42127,1041,520,48150884,47212595,4754,2287,92283428,91234923,52822,31653,1944081812,1879304853,21.9,22.74,52.18,51.75,1.97,1.64,2.48,2.51
-18424,42,069,42069,3445,2324,114451999,112737555,5613,4182,218468662,213719432,214437,96832,1204111576,1189006298,61.38,55.57,52.39,52.75,1.61,2.4,9.51,9.48
-18424,42,079,42079,61,33,5033258,5033258,5613,4182,218468662,213719432,320918,148748,2347214193,2305950580,1.09,0.79,2.3,2.36,0.02,0.02,0.21,0.22
-18424,42,089,42089,260,210,66966878,65490591,5613,4182,218468662,213719432,169842,80359,1598691136,1575452175,4.63,5.02,30.65,30.64,0.15,0.26,4.19,4.16
-18424,42,127,42127,1847,1615,32016527,30458028,5613,4182,218468662,213719432,52822,31653,1944081812,1879304853,32.91,38.62,14.65,14.25,3.5,5.1,1.65,1.62
-18425,42,103,42103,1354,704,59613912,58178535,1354,704,59613912,58178535,57369,38350,1468133426,1411441365,100,100,100,100,2.36,1.84,4.06,4.12
-18426,42,103,42103,4526,4665,160949252,153153856,4526,4665,160949252,153153856,57369,38350,1468133426,1411441365,100,100,100,100,7.89,12.16,10.96,10.85
-18427,42,127,42127,118,55,1782414,1764317,118,55,1782414,1764317,52822,31653,1944081812,1879304853,100,100,100,100,0.22,0.17,0.09,0.09
-18428,42,103,42103,7743,6946,346488796,336892379,12012,9505,443255305,430000893,57369,38350,1468133426,1411441365,64.46,73.08,78.17,78.35,13.5,18.11,23.6,23.87
-18428,42,127,42127,4269,2559,96766509,93108514,12012,9505,443255305,430000893,52822,31653,1944081812,1879304853,35.54,26.92,21.83,21.65,8.08,8.08,4.98,4.95
-18430,42,115,42115,33,14,4625560,4607510,33,14,4625560,4607510,43356,22968,2155239073,2132685970,100,100,100,100,0.08,0.06,0.21,0.22
-18431,42,127,42127,12666,6251,356143958,347731101,12666,6251,356143958,347731101,52822,31653,1944081812,1879304853,100,100,100,100,23.98,19.75,18.32,18.5
-18433,42,069,42069,6508,3041,72819758,71808138,6508,3041,72819758,71808138,214437,96832,1204111576,1189006298,100,100,100,100,3.03,3.14,6.05,6.04
-18434,42,069,42069,4192,1954,17334113,17208312,4192,1954,17334113,17208312,214437,96832,1204111576,1189006298,100,100,100,100,1.95,2.02,1.44,1.45
-18435,42,103,42103,795,1175,27059234,25679808,795,1175,27059234,25679808,57369,38350,1468133426,1411441365,100,100,100,100,1.39,3.06,1.84,1.82
-18436,42,069,42069,3402,1551,59488411,58751145,13853,9944,244573811,235317804,214437,96832,1204111576,1189006298,24.56,15.6,24.32,24.97,1.59,1.6,4.94,4.94
-18436,42,127,42127,10451,8393,185085400,176566659,13853,9944,244573811,235317804,52822,31653,1944081812,1879304853,75.44,84.4,75.68,75.03,19.79,26.52,9.52,9.4
-18437,42,127,42127,211,160,31507330,30646452,211,160,31507330,30646452,52822,31653,1944081812,1879304853,100,100,100,100,0.4,0.51,1.62,1.63
-18438,42,127,42127,1172,1345,20124522,19043636,1172,1345,20124522,19043636,52822,31653,1944081812,1879304853,100,100,100,100,2.22,4.25,1.04,1.01
-18439,42,127,42127,500,418,82250045,79046546,500,418,82250045,79046546,52822,31653,1944081812,1879304853,100,100,100,100,0.95,1.32,4.23,4.21
-18441,42,115,42115,289,134,7639734,7564000,289,134,7639734,7564000,43356,22968,2155239073,2132685970,100,100,100,100,0.67,0.58,0.35,0.35
-18443,42,127,42127,458,309,36046547,35550828,458,309,36046547,35550828,52822,31653,1944081812,1879304853,100,100,100,100,0.87,0.98,1.85,1.89
-18444,42,069,42069,12078,4950,272065670,268020488,13778,5683,307677859,303363956,214437,96832,1204111576,1189006298,87.66,87.1,88.43,88.35,5.63,5.11,22.59,22.54
-18444,42,127,42127,1700,733,35612189,35343468,13778,5683,307677859,303363956,52822,31653,1944081812,1879304853,12.34,12.9,11.57,11.65,3.22,2.32,1.83,1.88
-18445,42,103,42103,478,281,19496633,18852701,2329,1301,95880747,94377434,57369,38350,1468133426,1411441365,20.52,21.6,20.33,19.98,0.83,0.73,1.33,1.34
-18445,42,127,42127,1851,1020,76384114,75524733,2329,1301,95880747,94377434,52822,31653,1944081812,1879304853,79.48,78.4,79.67,80.02,3.5,3.22,3.93,4.02
-18446,42,069,42069,261,218,8181552,7562737,3733,1797,133220359,131487778,214437,96832,1204111576,1189006298,6.99,12.13,6.14,5.75,0.12,0.23,0.68,0.64
-18446,42,115,42115,1549,663,76252776,75781100,3733,1797,133220359,131487778,43356,22968,2155239073,2132685970,41.49,36.89,57.24,57.63,3.57,2.89,3.54,3.55
-18446,42,131,42131,1923,916,48786031,48143941,3733,1797,133220359,131487778,28276,13254,1049084182,1029063118,51.51,50.97,36.62,36.61,6.8,6.91,4.65,4.68
-18447,42,069,42069,10548,4829,53174271,53123945,10548,4829,53174271,53123945,214437,96832,1204111576,1189006298,100,100,100,100,4.92,4.99,4.42,4.47
-18451,42,103,42103,448,580,22640543,12721679,448,580,22640543,12721679,57369,38350,1468133426,1411441365,100,100,100,100,0.78,1.51,1.54,0.9
-18452,42,069,42069,4802,2312,5094438,5094438,4802,2312,5094438,5094438,214437,96832,1204111576,1189006298,100,100,100,100,2.24,2.39,0.42,0.43
-18453,42,127,42127,1104,721,134281807,130925368,1104,721,134281807,130925368,52822,31653,1944081812,1879304853,100,100,100,100,2.09,2.28,6.91,6.97
-18454,42,127,42127,64,185,7999671,7008449,64,185,7999671,7008449,52822,31653,1944081812,1879304853,100,100,100,100,0.12,0.58,0.41,0.37
-18455,42,127,42127,105,53,12147232,11554153,105,53,12147232,11554153,52822,31653,1944081812,1879304853,100,100,100,100,0.2,0.17,0.62,0.61
-18456,42,127,42127,423,201,13240358,12290440,423,201,13240358,12290440,52822,31653,1944081812,1879304853,100,100,100,100,0.8,0.64,0.68,0.65
-18457,42,103,42103,82,54,1286464,1245085,82,54,1286464,1245085,57369,38350,1468133426,1411441365,100,100,100,100,0.14,0.14,0.09,0.09
-18458,42,103,42103,3017,2597,146344829,141041671,3017,2597,146344829,141041671,57369,38350,1468133426,1411441365,100,100,100,100,5.26,6.77,9.97,9.99
-18459,42,127,42127,51,57,281465,172879,51,57,281465,172879,52822,31653,1944081812,1879304853,100,100,100,100,0.1,0.18,0.01,0.01
-18460,42,103,42103,35,30,7020053,6973371,184,107,8720290,8571564,57369,38350,1468133426,1411441365,19.02,28.04,80.5,81.35,0.06,0.08,0.48,0.49
-18460,42,127,42127,149,77,1700237,1598193,184,107,8720290,8571564,52822,31653,1944081812,1879304853,80.98,71.96,19.5,18.65,0.28,0.24,0.09,0.09
-18461,42,127,42127,404,331,57163771,55496872,404,331,57163771,55496872,52822,31653,1944081812,1879304853,100,100,100,100,0.76,1.05,2.94,2.95
-18462,42,127,42127,427,393,70777436,69474038,427,393,70777436,69474038,52822,31653,1944081812,1879304853,100,100,100,100,0.81,1.24,3.64,3.7
-18463,42,127,42127,199,87,7476769,7391394,199,87,7476769,7391394,52822,31653,1944081812,1879304853,100,100,100,100,0.38,0.27,0.38,0.39
-18464,42,103,42103,1193,1257,31815394,31168297,1193,1257,31815394,31168297,57369,38350,1468133426,1411441365,100,100,100,100,2.08,3.28,2.17,2.21
-18465,42,115,42115,1242,992,101473976,99097941,1340,1156,124938073,121867677,43356,22968,2155239073,2132685970,92.69,85.81,81.22,81.32,2.86,4.32,4.71,4.65
-18465,42,127,42127,98,164,23464097,22769736,1340,1156,124938073,121867677,52822,31653,1944081812,1879304853,7.31,14.19,18.78,18.68,0.19,0.52,1.21,1.21
-18466,42,089,42089,16681,7697,94614948,93141335,16681,7697,94614948,93141335,169842,80359,1598691136,1575452175,100,100,100,100,9.82,9.58,5.92,5.91
-18469,42,127,42127,357,203,24511383,23998260,357,203,24511383,23998260,52822,31653,1944081812,1879304853,100,100,100,100,0.68,0.64,1.26,1.28
-18470,42,115,42115,2082,1528,140332080,138687246,2226,1620,161370696,159328538,43356,22968,2155239073,2132685970,93.53,94.32,86.96,87.04,4.8,6.65,6.51,6.5
-18470,42,127,42127,144,92,21038616,20641292,2226,1620,161370696,159328538,52822,31653,1944081812,1879304853,6.47,5.68,13.04,12.96,0.27,0.29,1.08,1.1
-18471,42,069,42069,685,285,7163714,7156861,685,285,7163714,7156861,214437,96832,1204111576,1189006298,100,100,100,100,0.32,0.29,0.59,0.6
-18472,42,127,42127,7521,2150,171611305,165941132,7521,2150,171611305,165941132,52822,31653,1944081812,1879304853,100,100,100,100,14.24,6.79,8.83,8.83
-18473,42,127,42127,495,254,3316531,3226016,495,254,3316531,3226016,52822,31653,1944081812,1879304853,100,100,100,100,0.94,0.8,0.17,0.17
-18503,42,069,42069,1182,589,1199397,1199397,1182,589,1199397,1199397,214437,96832,1204111576,1189006298,100,100,100,100,0.55,0.61,0.1,0.1
-18504,42,069,42069,21265,10093,22328294,22328294,21265,10093,22328294,22328294,214437,96832,1204111576,1189006298,100,100,100,100,9.92,10.42,1.85,1.88
-18505,42,069,42069,20586,9559,22619936,22039188,20586,9559,22619936,22039188,214437,96832,1204111576,1189006298,100,100,100,100,9.6,9.87,1.88,1.85
-18507,42,069,42069,4891,2175,25311071,25200110,4891,2175,25311071,25200110,214437,96832,1204111576,1189006298,100,100,100,100,2.28,2.25,2.1,2.12
-18508,42,069,42069,12292,5530,17620285,17620285,12292,5530,17620285,17620285,214437,96832,1204111576,1189006298,100,100,100,100,5.73,5.71,1.46,1.48
-18509,42,069,42069,13589,5573,7434725,7434725,13589,5573,7434725,7434725,214437,96832,1204111576,1189006298,100,100,100,100,6.34,5.76,0.62,0.63
-18510,42,069,42069,14119,5500,5624852,5551978,14119,5500,5624852,5551978,214437,96832,1204111576,1189006298,100,100,100,100,6.58,5.68,0.47,0.47
-18512,42,069,42069,12218,5990,29255765,28989888,12218,5990,29255765,28989888,214437,96832,1204111576,1189006298,100,100,100,100,5.7,6.19,2.43,2.44
-18517,42,069,42069,5274,2276,10862246,10862246,5274,2276,10862246,10862246,214437,96832,1204111576,1189006298,100,100,100,100,2.46,2.35,0.9,0.91
-18518,42,069,42069,8313,4040,10464474,10464474,8313,4040,10464474,10464474,214437,96832,1204111576,1189006298,100,100,100,100,3.88,4.17,0.87,0.88
-18519,42,069,42069,5104,2472,6236104,6236104,5104,2472,6236104,6236104,214437,96832,1204111576,1189006298,100,100,100,100,2.38,2.55,0.52,0.52
-18602,42,079,42079,257,155,5273220,5018058,257,155,5273220,5018058,320918,148748,2347214193,2305950580,100,100,100,100,0.08,0.1,0.22,0.22
-18603,42,037,42037,15407,7198,82285149,80747875,19320,9021,137672804,133538080,67295,29498,1269507017,1251244127,79.75,79.79,59.77,60.47,22.89,24.4,6.48,6.45
-18603,42,079,42079,3913,1823,55387655,52790205,19320,9021,137672804,133538080,320918,148748,2347214193,2305950580,20.25,20.21,40.23,39.53,1.22,1.23,2.36,2.29
-18610,42,025,42025,9,7,2762540,2762540,5008,2559,78891496,78138149,65249,34299,1003327508,987977465,0.18,0.27,3.5,3.54,0.01,0.02,0.28,0.28
-18610,42,079,42079,5,9,3797829,3797829,5008,2559,78891496,78138149,320918,148748,2347214193,2305950580,0.1,0.35,4.81,4.86,0,0.01,0.16,0.16
-18610,42,089,42089,4994,2543,72331127,71577780,5008,2559,78891496,78138149,169842,80359,1598691136,1575452175,99.72,99.37,91.68,91.6,2.94,3.16,4.52,4.54
-18612,42,079,42079,17709,6430,129364806,126243447,18051,6590,142758201,139594539,320918,148748,2347214193,2305950580,98.11,97.57,90.62,90.44,5.52,4.32,5.51,5.47
-18612,42,131,42131,342,160,13393395,13351092,18051,6590,142758201,139594539,28276,13254,1049084182,1029063118,1.89,2.43,9.38,9.56,1.21,1.21,1.28,1.3
-18614,42,113,42113,2408,2049,301044465,299617613,2426,2105,358882058,357037465,6428,6304,1171955361,1165338335,99.26,97.34,83.88,83.92,37.46,32.5,25.69,25.71
-18614,42,131,42131,18,56,57837593,57419852,2426,2105,358882058,357037465,28276,13254,1049084182,1029063118,0.74,2.66,16.12,16.08,0.06,0.42,5.51,5.58
-18615,42,069,42069,16,6,669844,669844,1867,900,48800724,47456438,214437,96832,1204111576,1189006298,0.86,0.67,1.37,1.41,0.01,0.01,0.06,0.06
-18615,42,079,42079,88,41,2255880,2082504,1867,900,48800724,47456438,320918,148748,2347214193,2305950580,4.71,4.56,4.62,4.39,0.03,0.03,0.1,0.09
-18615,42,131,42131,1763,853,45875000,44704090,1867,900,48800724,47456438,28276,13254,1049084182,1029063118,94.43,94.78,94,94.2,6.23,6.44,4.37,4.34
-18616,42,113,42113,738,711,143763204,143221392,738,711,143763204,143221392,6428,6304,1171955361,1165338335,100,100,100,100,11.48,11.28,12.27,12.29
-18617,42,079,42079,1924,1061,16104060,15681772,1924,1061,16104060,15681772,320918,148748,2347214193,2305950580,100,100,100,100,0.6,0.71,0.69,0.68
-18618,42,079,42079,3270,2044,34281999,31681129,3793,2249,48405886,45805016,320918,148748,2347214193,2305950580,86.21,90.88,70.82,69.17,1.02,1.37,1.46,1.37
-18618,42,131,42131,523,205,14123887,14123887,3793,2249,48405886,45805016,28276,13254,1049084182,1029063118,13.79,9.12,29.18,30.83,1.85,1.55,1.35,1.37
-18619,42,113,42113,273,382,89497476,89448639,273,382,89497476,89448639,6428,6304,1171955361,1165338335,100,100,100,100,4.25,6.06,7.64,7.68
-18621,42,079,42079,6248,2358,119055608,115116651,6248,2358,119055608,115116651,320918,148748,2347214193,2305950580,100,100,100,100,1.95,1.59,5.07,4.99
-18622,42,079,42079,257,110,9542974,9511391,257,110,9542974,9511391,320918,148748,2347214193,2305950580,100,100,100,100,0.08,0.07,0.41,0.41
-18623,42,015,42015,880,396,63909796,62794807,2733,1363,149371755,146083403,62622,29979,3007025199,2971749132,32.2,29.05,42.79,42.99,1.41,1.32,2.13,2.11
-18623,42,115,42115,430,197,29190646,29009850,2733,1363,149371755,146083403,43356,22968,2155239073,2132685970,15.73,14.45,19.54,19.86,0.99,0.86,1.35,1.36
-18623,42,131,42131,1423,770,56271313,54278746,2733,1363,149371755,146083403,28276,13254,1049084182,1029063118,52.07,56.49,37.67,37.16,5.03,5.81,5.36,5.27
-18624,42,025,42025,718,1594,42863994,41588819,718,1594,42863994,41588819,65249,34299,1003327508,987977465,100,100,100,100,1.1,4.65,4.27,4.21
-18625,42,131,42131,491,437,2723690,1975030,491,437,2723690,1975030,28276,13254,1049084182,1029063118,100,100,100,100,1.74,3.3,0.26,0.19
-18626,42,113,42113,516,504,66865990,66247756,516,504,66865990,66247756,6428,6304,1171955361,1165338335,100,100,100,100,8.03,7.99,5.71,5.68
-18628,42,113,42113,192,292,54038197,52927714,192,292,54038197,52927714,6428,6304,1171955361,1165338335,100,100,100,100,2.99,4.63,4.61,4.54
-18629,42,131,42131,1801,923,245227467,241795753,1801,923,245227467,241795753,28276,13254,1049084182,1029063118,100,100,100,100,6.37,6.96,23.38,23.5
-18630,42,115,42115,1714,844,113523523,113035033,3556,1696,172559646,170601750,43356,22968,2155239073,2132685970,48.2,49.76,65.79,66.26,3.95,3.67,5.27,5.3
-18630,42,131,42131,1842,852,59036123,57566717,3556,1696,172559646,170601750,28276,13254,1049084182,1029063118,51.8,50.24,34.21,33.74,6.51,6.43,5.63,5.59
-18631,42,037,42037,1286,580,4868484,4445859,1286,580,4868484,4445859,67295,29498,1269507017,1251244127,100,100,100,100,1.91,1.97,0.38,0.36
-18632,42,113,42113,409,235,13510783,13478975,409,235,13510783,13478975,6428,6304,1171955361,1165338335,100,100,100,100,6.36,3.73,1.15,1.16
-18634,42,079,42079,13569,6831,39255893,38407890,13569,6831,39255893,38407890,320918,148748,2347214193,2305950580,100,100,100,100,4.23,4.59,1.67,1.67
-18635,42,037,42037,841,356,38526732,37771388,3881,1696,100214564,98942406,67295,29498,1269507017,1251244127,21.67,20.99,38.44,38.18,1.25,1.21,3.03,3.02
-18635,42,079,42079,3040,1340,61687832,61171018,3881,1696,100214564,98942406,320918,148748,2347214193,2305950580,78.33,79.01,61.56,61.82,0.95,0.9,2.63,2.65
-18636,42,079,42079,255,106,28981629,28940594,1438,660,115371450,115229353,320918,148748,2347214193,2305950580,17.73,16.06,25.12,25.12,0.08,0.07,1.23,1.26
-18636,42,131,42131,1183,554,86389821,86288759,1438,660,115371450,115229353,28276,13254,1049084182,1029063118,82.27,83.94,74.88,74.88,4.18,4.18,8.23,8.39
-18640,42,079,42079,17155,8135,74667440,73464127,17155,8135,74667440,73464127,320918,148748,2347214193,2305950580,100,100,100,100,5.35,5.47,3.18,3.19
-18641,42,069,42069,830,326,2086937,2036154,6812,3183,11362307,11311524,214437,96832,1204111576,1189006298,12.18,10.24,18.37,18,0.39,0.34,0.17,0.17
-18641,42,079,42079,5982,2857,9275370,9275370,6812,3183,11362307,11311524,320918,148748,2347214193,2305950580,87.82,89.76,81.63,82,1.86,1.92,0.4,0.4
-18642,42,079,42079,4345,2062,14539686,14043916,4345,2062,14539686,14043916,320918,148748,2347214193,2305950580,100,100,100,100,1.35,1.39,0.62,0.61
-18643,42,079,42079,12908,6013,51537916,49247546,12908,6013,51537916,49247546,320918,148748,2347214193,2305950580,100,100,100,100,4.02,4.04,2.2,2.14
-18644,42,079,42079,7546,3543,43519821,42491904,7546,3543,43519821,42491904,320918,148748,2347214193,2305950580,100,100,100,100,2.35,2.38,1.85,1.84
-18651,42,079,42079,8880,4519,32539626,31252323,8880,4519,32539626,31252323,320918,148748,2347214193,2305950580,100,100,100,100,2.77,3.04,1.39,1.36
-18653,42,069,42069,132,48,822022,640121,132,48,822022,640121,214437,96832,1204111576,1189006298,100,100,100,100,0.06,0.05,0.07,0.05
-18655,42,037,42037,245,196,17272919,17058967,6278,3050,190063331,187086660,67295,29498,1269507017,1251244127,3.9,6.43,9.09,9.12,0.36,0.66,1.36,1.36
-18655,42,079,42079,6033,2854,172790412,170027693,6278,3050,190063331,187086660,320918,148748,2347214193,2305950580,96.1,93.57,90.91,90.88,1.88,1.92,7.36,7.37
-18656,42,079,42079,2195,1029,136333273,134939487,2195,1029,136333273,134939487,320918,148748,2347214193,2305950580,100,100,100,100,0.68,0.69,5.81,5.85
-18657,42,131,42131,11985,5484,329112201,319573446,11985,5484,329112201,319573446,28276,13254,1049084182,1029063118,100,100,100,100,42.39,41.38,31.37,31.05
-18660,42,079,42079,3702,1654,113992709,110054152,3702,1654,113992709,110054152,320918,148748,2347214193,2305950580,100,100,100,100,1.15,1.11,4.86,4.77
-18661,42,025,42025,809,765,118461145,117956997,5730,3589,352057266,349685566,65249,34299,1003327508,987977465,14.12,21.32,33.65,33.73,1.24,2.23,11.81,11.94
-18661,42,079,42079,4921,2824,233596121,231728569,5730,3589,352057266,349685566,320918,148748,2347214193,2305950580,85.88,78.68,66.35,66.27,1.53,1.9,9.95,10.05
-18701,42,079,42079,3447,1277,1384069,1384069,3447,1277,1384069,1384069,320918,148748,2347214193,2305950580,100,100,100,100,1.07,0.86,0.06,0.06
-18702,42,079,42079,40295,19284,183787146,179515934,40295,19284,183787146,179515934,320918,148748,2347214193,2305950580,100,100,100,100,12.56,12.96,7.83,7.78
-18704,42,079,42079,31206,15230,27081726,25918724,31206,15230,27081726,25918724,320918,148748,2347214193,2305950580,100,100,100,100,9.72,10.24,1.15,1.12
-18705,42,079,42079,14806,7210,14300965,14136973,14806,7210,14300965,14136973,320918,148748,2347214193,2305950580,100,100,100,100,4.61,4.85,0.61,0.61
-18706,42,079,42079,16105,7811,69455677,68627226,16105,7811,69455677,68627226,320918,148748,2347214193,2305950580,100,100,100,100,5.02,5.25,2.96,2.98
-18707,42,079,42079,15557,6229,130086642,128790227,15557,6229,130086642,128790227,320918,148748,2347214193,2305950580,100,100,100,100,4.85,4.19,5.54,5.59
-18708,42,079,42079,8817,3705,43042189,42795843,8817,3705,43042189,42795843,320918,148748,2347214193,2305950580,100,100,100,100,2.75,2.49,1.83,1.86
-18709,42,079,42079,2903,1543,2044118,2044118,2903,1543,2044118,2044118,320918,148748,2347214193,2305950580,100,100,100,100,0.9,1.04,0.09,0.09
-18801,42,115,42115,8266,4166,423485949,420653870,8266,4166,423485949,420653870,43356,22968,2155239073,2132685970,100,100,100,100,19.07,18.14,19.65,19.72
-18810,42,015,42015,6162,2696,122469371,119055433,6162,2696,122469371,119055433,62622,29979,3007025199,2971749132,100,100,100,100,9.84,8.99,4.07,4.01
-18812,42,115,42115,1644,1077,83177805,81611587,1644,1077,83177805,81611587,43356,22968,2155239073,2132685970,100,100,100,100,3.79,4.69,3.86,3.83
-18814,42,015,42015,156,70,1548612,1511365,156,70,1548612,1511365,62622,29979,3007025199,2971749132,100,100,100,100,0.25,0.23,0.05,0.05
-18816,42,115,42115,128,72,3062190,3014382,128,72,3062190,3014382,43356,22968,2155239073,2132685970,100,100,100,100,0.3,0.31,0.14,0.14
-18817,42,015,42015,306,126,4781487,4768290,306,126,4781487,4768290,62622,29979,3007025199,2971749132,100,100,100,100,0.49,0.42,0.16,0.16
-18818,42,115,42115,1394,731,118915394,118489500,1394,731,118915394,118489500,43356,22968,2155239073,2132685970,100,100,100,100,3.22,3.18,5.52,5.56
-18821,42,115,42115,1153,559,9452634,8947397,1153,559,9452634,8947397,43356,22968,2155239073,2132685970,100,100,100,100,2.66,2.43,0.44,0.42
-18822,42,115,42115,3642,1642,108267529,107710248,3642,1642,108267529,107710248,43356,22968,2155239073,2132685970,100,100,100,100,8.4,7.15,5.02,5.05
-18823,42,115,42115,193,106,6906125,6905966,193,106,6906125,6905966,43356,22968,2155239073,2132685970,100,100,100,100,0.45,0.46,0.32,0.32
-18824,42,115,42115,1401,715,78302525,77362836,1401,715,78302525,77362836,43356,22968,2155239073,2132685970,100,100,100,100,3.23,3.11,3.63,3.63
-18825,42,115,42115,111,80,8753748,8575609,111,80,8753748,8575609,43356,22968,2155239073,2132685970,100,100,100,100,0.26,0.35,0.41,0.4
-18826,42,115,42115,1910,958,119414632,118218767,1910,958,119414632,118218767,43356,22968,2155239073,2132685970,100,100,100,100,4.41,4.17,5.54,5.54
-18828,42,115,42115,352,179,25975318,25967879,352,179,25975318,25967879,43356,22968,2155239073,2132685970,100,100,100,100,0.81,0.78,1.21,1.22
-18829,42,015,42015,868,413,67190250,66842515,868,413,67190250,66842515,62622,29979,3007025199,2971749132,100,100,100,100,1.39,1.38,2.23,2.25
-18830,42,015,42015,25,13,1610072,1599639,735,427,63201452,62514600,62622,29979,3007025199,2971749132,3.4,3.04,2.55,2.56,0.04,0.04,0.05,0.05
-18830,42,115,42115,710,414,61591380,60914961,735,427,63201452,62514600,43356,22968,2155239073,2132685970,96.6,96.96,97.45,97.44,1.64,1.8,2.86,2.86
-18831,42,015,42015,1039,507,76277064,75558360,1039,507,76277064,75558360,62622,29979,3007025199,2971749132,100,100,100,100,1.66,1.69,2.54,2.54
-18832,42,015,42015,1874,947,155397698,154354215,1874,947,155397698,154354215,62622,29979,3007025199,2971749132,100,100,100,100,2.99,3.16,5.17,5.19
-18833,42,015,42015,1967,1288,263017296,261456801,2056,1352,277064418,275449694,62622,29979,3007025199,2971749132,95.67,95.27,94.93,94.92,3.14,4.3,8.75,8.8
-18833,42,113,42113,89,64,14047122,13992893,2056,1352,277064418,275449694,6428,6304,1171955361,1165338335,4.33,4.73,5.07,5.08,1.38,1.02,1.2,1.2
-18834,42,115,42115,3691,2042,174017130,171937387,3691,2042,174017130,171937387,43356,22968,2155239073,2132685970,100,100,100,100,8.51,8.89,8.07,8.06
-18837,42,015,42015,3267,1466,234788216,233446847,3267,1466,234788216,233446847,62622,29979,3007025199,2971749132,100,100,100,100,5.22,4.89,7.81,7.86
-18840,42,015,42015,10731,5037,118677542,116630232,10731,5037,118677542,116630232,62622,29979,3007025199,2971749132,100,100,100,100,17.14,16.8,3.95,3.92
-18842,42,115,42115,278,132,10683833,10667928,278,132,10683833,10667928,43356,22968,2155239073,2132685970,100,100,100,100,0.64,0.57,0.5,0.5
-18843,42,115,42115,277,135,2270571,2270571,277,135,2270571,2270571,43356,22968,2155239073,2132685970,100,100,100,100,0.64,0.59,0.11,0.11
-18844,42,115,42115,1847,816,88556148,87718807,1870,826,89401449,88564108,43356,22968,2155239073,2132685970,98.77,98.79,99.05,99.05,4.26,3.55,4.11,4.11
-18844,42,131,42131,23,10,845301,845301,1870,826,89401449,88564108,28276,13254,1049084182,1029063118,1.23,1.21,0.95,0.95,0.08,0.08,0.08,0.08
-18845,42,015,42015,297,172,25369431,25048667,297,172,25369431,25048667,62622,29979,3007025199,2971749132,100,100,100,100,0.47,0.57,0.84,0.84
-18846,42,015,42015,847,503,71517696,69779390,847,503,71517696,69779390,62622,29979,3007025199,2971749132,100,100,100,100,1.35,1.68,2.38,2.35
-18847,42,115,42115,5743,3126,307455662,302292815,6024,3319,371192061,365326108,43356,22968,2155239073,2132685970,95.34,94.18,82.83,82.75,13.25,13.61,14.27,14.17
-18847,42,127,42127,281,193,63736399,63033293,6024,3319,371192061,365326108,52822,31653,1944081812,1879304853,4.66,5.82,17.17,17.25,0.53,0.61,3.28,3.35
-18848,42,015,42015,9193,4494,281055413,274467812,9193,4494,281055413,274467812,62622,29979,3007025199,2971749132,100,100,100,100,14.68,14.99,9.35,9.24
-18850,42,015,42015,2357,1041,157948882,155895516,2357,1041,157948882,155895516,62622,29979,3007025199,2971749132,100,100,100,100,3.76,3.47,5.25,5.25
-18851,42,015,42015,706,483,73205775,72576739,706,483,73205775,72576739,62622,29979,3007025199,2971749132,100,100,100,100,1.13,1.61,2.43,2.44
-18853,42,015,42015,4252,2205,271294033,265087140,4252,2205,271294033,265087140,62622,29979,3007025199,2971749132,100,100,100,100,6.79,7.36,9.02,8.92
-18854,42,015,42015,1510,671,70473245,68704014,1510,671,70473245,68704014,62622,29979,3007025199,2971749132,100,100,100,100,2.41,2.24,2.34,2.31
-18901,42,017,42017,27598,11351,54300585,52197146,27598,11351,54300585,52197146,625249,245956,1610646492,1565148677,100,100,100,100,4.41,4.62,3.37,3.33
-18902,42,017,42017,20973,7377,72215789,72051064,20973,7377,72215789,72051064,625249,245956,1610646492,1565148677,100,100,100,100,3.35,3,4.48,4.6
-18912,42,017,42017,39,16,1032603,1028451,39,16,1032603,1028451,625249,245956,1610646492,1565148677,100,100,100,100,0.01,0.01,0.06,0.07
-18913,42,017,42017,185,111,3828755,3808373,185,111,3828755,3808373,625249,245956,1610646492,1565148677,100,100,100,100,0.03,0.05,0.24,0.24
-18914,42,017,42017,21063,7620,46152114,45958106,21063,7620,46152114,45958106,625249,245956,1610646492,1565148677,100,100,100,100,3.37,3.1,2.87,2.94
-18915,42,091,42091,1063,391,2727022,2727022,1063,391,2727022,2727022,799874,325735,1261828565,1251067046,100,100,100,100,0.13,0.12,0.22,0.22
-18917,42,017,42017,2158,959,1510703,1509625,2158,959,1510703,1509625,625249,245956,1610646492,1565148677,100,100,100,100,0.35,0.39,0.09,0.1
-18920,42,017,42017,361,181,7344798,7068268,361,181,7344798,7068268,625249,245956,1610646492,1565148677,100,100,100,100,0.06,0.07,0.46,0.45
-18923,42,017,42017,998,354,4507341,4502416,998,354,4507341,4502416,625249,245956,1610646492,1565148677,100,100,100,100,0.16,0.14,0.28,0.29
-18925,42,017,42017,6195,2270,28044900,27816696,6195,2270,28044900,27816696,625249,245956,1610646492,1565148677,100,100,100,100,0.99,0.92,1.74,1.78
-18929,42,017,42017,9306,3096,21286285,21042404,9306,3096,21286285,21042404,625249,245956,1610646492,1565148677,100,100,100,100,1.49,1.26,1.32,1.34
-18930,42,017,42017,2721,1145,59826846,57790609,2721,1145,59826846,57790609,625249,245956,1610646492,1565148677,100,100,100,100,0.44,0.47,3.71,3.69
-18932,42,017,42017,388,158,3256610,3252770,388,158,3256610,3252770,625249,245956,1610646492,1565148677,100,100,100,100,0.06,0.06,0.2,0.21
-18935,42,017,42017,116,58,187250,186331,116,58,187250,186331,625249,245956,1610646492,1565148677,100,100,100,100,0.02,0.02,0.01,0.01
-18936,42,091,42091,4,2,1898739,1898739,4,2,1898739,1898739,799874,325735,1261828565,1251067046,100,100,100,100,0,0,0.15,0.15
-18938,42,017,42017,13989,6510,108409024,105989503,13989,6510,108409024,105989503,625249,245956,1610646492,1565148677,100,100,100,100,2.24,2.65,6.73,6.77
-18940,42,017,42017,28825,11274,85203133,84642791,28825,11274,85203133,84642791,625249,245956,1610646492,1565148677,100,100,100,100,4.61,4.58,5.29,5.41
-18942,42,017,42017,3260,1410,58877224,58180099,3260,1410,58877224,58180099,625249,245956,1610646492,1565148677,100,100,100,100,0.52,0.57,3.66,3.72
-18944,42,017,42017,24479,9262,122007664,119648058,24479,9262,122007664,119648058,625249,245956,1610646492,1565148677,100,100,100,100,3.92,3.77,7.58,7.64
-18947,42,017,42017,6172,2323,62273916,61924904,6172,2323,62273916,61924904,625249,245956,1610646492,1565148677,100,100,100,100,0.99,0.94,3.87,3.96
-18950,42,017,42017,252,102,3619782,3009442,252,102,3619782,3009442,625249,245956,1610646492,1565148677,100,100,100,100,0.04,0.04,0.22,0.19
-18951,42,017,42017,34613,13663,174419547,171737014,34651,13675,175221089,172538556,625249,245956,1610646492,1565148677,99.89,99.91,99.54,99.54,5.54,5.56,10.83,10.97
-18951,42,077,42077,38,12,801542,801542,34651,13675,175221089,172538556,349497,142613,901935827,893975782,0.11,0.09,0.46,0.46,0.01,0.01,0.09,0.09
-18954,42,017,42017,9745,3292,17588906,17470536,9745,3292,17588906,17470536,625249,245956,1610646492,1565148677,100,100,100,100,1.56,1.34,1.09,1.12
-18955,42,017,42017,1662,639,6839529,6821574,1662,639,6839529,6821574,625249,245956,1610646492,1565148677,100,100,100,100,0.27,0.26,0.42,0.44
-18960,42,017,42017,12473,5131,50181087,49882601,12473,5131,50181087,49882601,625249,245956,1610646492,1565148677,100,100,100,100,1.99,2.09,3.12,3.19
-18962,42,017,42017,515,202,617797,616824,515,202,617797,616824,625249,245956,1610646492,1565148677,100,100,100,100,0.08,0.08,0.04,0.04
-18964,42,017,42017,448,166,2510748,2509573,13812,5386,24216423,24215248,625249,245956,1610646492,1565148677,3.24,3.08,10.37,10.36,0.07,0.07,0.16,0.16
-18964,42,091,42091,13364,5220,21705675,21705675,13812,5386,24216423,24215248,799874,325735,1261828565,1251067046,96.76,96.92,89.63,89.64,1.67,1.6,1.72,1.73
-18966,42,017,42017,37999,14644,42831360,42020031,37999,14644,42831360,42020031,625249,245956,1610646492,1565148677,100,100,100,100,6.08,5.95,2.66,2.68
-18969,42,017,42017,4667,2128,8334159,8238785,15273,5989,44034997,43876641,625249,245956,1610646492,1565148677,30.56,35.53,18.93,18.78,0.75,0.87,0.52,0.53
-18969,42,091,42091,10606,3861,35700838,35637856,15273,5989,44034997,43876641,799874,325735,1261828565,1251067046,69.44,64.47,81.07,81.22,1.33,1.19,2.83,2.85
-18970,42,017,42017,696,286,1055021,1055021,696,286,1055021,1055021,625249,245956,1610646492,1565148677,100,100,100,100,0.11,0.12,0.07,0.07
-18972,42,017,42017,3512,1691,63142096,60964965,3512,1691,63142096,60964965,625249,245956,1610646492,1565148677,100,100,100,100,0.56,0.69,3.92,3.9
-18974,42,017,42017,40953,16602,49667940,49402752,40953,16602,49667940,49402752,625249,245956,1610646492,1565148677,100,100,100,100,6.55,6.75,3.08,3.16
-18976,42,017,42017,19795,7215,28237312,28055013,19795,7215,28237312,28055013,625249,245956,1610646492,1565148677,100,100,100,100,3.17,2.93,1.75,1.79
-18977,42,017,42017,4291,1750,14703114,13540795,4291,1750,14703114,13540795,625249,245956,1610646492,1565148677,100,100,100,100,0.69,0.71,0.91,0.87
-18980,42,017,42017,510,197,6182765,6153923,510,197,6182765,6153923,625249,245956,1610646492,1565148677,100,100,100,100,0.08,0.08,0.38,0.39
-19001,42,091,42091,17020,6562,8967866,8967866,17020,6562,8967866,8967866,799874,325735,1261828565,1251067046,100,100,100,100,2.13,2.01,0.71,0.72
-19002,42,091,42091,32412,12717,53902728,53797902,32412,12717,53902728,53797902,799874,325735,1261828565,1251067046,100,100,100,100,4.05,3.9,4.27,4.3
-19003,42,045,42045,6117,2459,2866894,2866894,12519,5722,5029553,5029553,558979,222902,493661185,476152313,48.86,42.97,57,57,1.09,1.1,0.58,0.6
-19003,42,091,42091,6402,3263,2162659,2162659,12519,5722,5029553,5029553,799874,325735,1261828565,1251067046,51.14,57.03,43,43,0.8,1,0.17,0.17
-19004,42,091,42091,9416,4046,7175785,7157127,9416,4046,7175785,7157127,799874,325735,1261828565,1251067046,100,100,100,100,1.18,1.24,0.57,0.57
-19006,42,017,42017,1147,425,2785705,2785705,21423,8313,33252628,33252628,625249,245956,1610646492,1565148677,5.35,5.11,8.38,8.38,0.18,0.17,0.17,0.18
-19006,42,091,42091,20276,7888,30466923,30466923,21423,8313,33252628,33252628,799874,325735,1261828565,1251067046,94.65,94.89,91.62,91.62,2.53,2.42,2.41,2.44
-19007,42,017,42017,21125,8904,20172151,17658290,21125,8904,20172151,17658290,625249,245956,1610646492,1565148677,100,100,100,100,3.38,3.62,1.25,1.13
-19008,42,045,42045,20535,7697,16982897,16979770,20535,7697,16982897,16979770,558979,222902,493661185,476152313,100,100,100,100,3.67,3.45,3.44,3.57
-19009,42,091,42091,864,267,3369251,3369251,864,267,3369251,3369251,799874,325735,1261828565,1251067046,100,100,100,100,0.11,0.08,0.27,0.27
-19010,42,045,42045,12928,5382,12054134,12054134,21103,8404,21830408,21830408,558979,222902,493661185,476152313,61.26,64.04,55.22,55.22,2.31,2.41,2.44,2.53
-19010,42,091,42091,8175,3022,9776274,9776274,21103,8404,21830408,21830408,799874,325735,1261828565,1251067046,38.74,35.96,44.78,44.78,1.02,0.93,0.77,0.78
-19012,42,091,42091,6670,2385,4551521,4551521,6670,2385,4551521,4551521,799874,325735,1261828565,1251067046,100,100,100,100,0.83,0.73,0.36,0.36
-19013,42,045,42045,35130,14253,14843034,14821318,35130,14253,14843034,14821318,558979,222902,493661185,476152313,100,100,100,100,6.28,6.39,3.01,3.11
-19014,42,045,42045,21206,7955,23306422,23301954,21206,7955,23306422,23301954,558979,222902,493661185,476152313,100,100,100,100,3.79,3.57,4.72,4.89
-19015,42,045,42045,16632,7009,8498958,8491589,16632,7009,8498958,8491589,558979,222902,493661185,476152313,100,100,100,100,2.98,3.14,1.72,1.78
-19017,42,045,42045,348,105,2310733,2305368,348,105,2310733,2305368,558979,222902,493661185,476152313,100,100,100,100,0.06,0.05,0.47,0.48
-19018,42,045,42045,23360,10291,7005033,7005033,23360,10291,7005033,7005033,558979,222902,493661185,476152313,100,100,100,100,4.18,4.62,1.42,1.47
-19020,42,017,42017,55493,23235,47454268,44639241,55493,23235,47454268,44639241,625249,245956,1610646492,1565148677,100,100,100,100,8.88,9.45,2.95,2.85
-19021,42,017,42017,10074,3965,10657828,8841287,10074,3965,10657828,8841287,625249,245956,1610646492,1565148677,100,100,100,100,1.61,1.61,0.66,0.56
-19022,42,045,42045,3669,1652,3408153,3408153,3669,1652,3408153,3408153,558979,222902,493661185,476152313,100,100,100,100,0.66,0.74,0.69,0.72
-19023,42,045,42045,22164,8317,5172710,5172710,22164,8317,5172710,5172710,558979,222902,493661185,476152313,100,100,100,100,3.97,3.73,1.05,1.09
-19025,42,091,42091,5395,2022,7763440,7763440,5395,2022,7763440,7763440,799874,325735,1261828565,1251067046,100,100,100,100,0.67,0.62,0.62,0.62
-19026,42,045,42045,30738,13014,9378736,9378736,30738,13014,9378736,9378736,558979,222902,493661185,476152313,100,100,100,100,5.5,5.84,1.9,1.97
-19027,42,091,42091,19067,8422,10241852,10237780,19067,8422,10241852,10237780,799874,325735,1261828565,1251067046,100,100,100,100,2.38,2.59,0.81,0.82
-19029,42,045,42045,3971,1788,6313266,5987237,3971,1788,6313266,5987237,558979,222902,493661185,476152313,100,100,100,100,0.71,0.8,1.28,1.26
-19030,42,017,42017,12122,4810,11944632,11728264,12122,4810,11944632,11728264,625249,245956,1610646492,1565148677,100,100,100,100,1.94,1.96,0.74,0.75
-19031,42,091,42091,4700,1993,7440789,7440789,4700,1993,7440789,7440789,799874,325735,1261828565,1251067046,100,100,100,100,0.59,0.61,0.59,0.59
-19032,42,045,42045,6606,2600,2712667,2631295,6606,2600,2712667,2631295,558979,222902,493661185,476152313,100,100,100,100,1.18,1.17,0.55,0.55
-19033,42,045,42045,7777,3108,2856123,2856123,7777,3108,2856123,2856123,558979,222902,493661185,476152313,100,100,100,100,1.39,1.39,0.58,0.6
-19034,42,091,42091,5999,2255,16174631,16174631,5999,2255,16174631,16174631,799874,325735,1261828565,1251067046,100,100,100,100,0.75,0.69,1.28,1.29
-19035,42,091,42091,3780,1599,12618470,12328946,3780,1599,12618470,12328946,799874,325735,1261828565,1251067046,100,100,100,100,0.47,0.49,1,0.99
-19036,42,045,42045,12942,5580,3959660,3959660,12942,5580,3959660,3959660,558979,222902,493661185,476152313,100,100,100,100,2.32,2.5,0.8,0.83
-19038,42,091,42091,31595,11875,20409263,20405047,31595,11875,20409263,20405047,799874,325735,1261828565,1251067046,100,100,100,100,3.95,3.65,1.62,1.63
-19040,42,017,42017,224,121,89882,89882,20536,8551,15342762,15342762,625249,245956,1610646492,1565148677,1.09,1.42,0.59,0.59,0.04,0.05,0.01,0.01
-19040,42,091,42091,20312,8430,15252880,15252880,20536,8551,15342762,15342762,799874,325735,1261828565,1251067046,98.91,98.58,99.41,99.41,2.54,2.59,1.21,1.22
-19041,42,045,42045,3261,1157,5603406,5603406,6248,2642,8572303,8552583,558979,222902,493661185,476152313,52.19,43.79,65.37,65.52,0.58,0.52,1.14,1.18
-19041,42,091,42091,2987,1485,2968897,2949177,6248,2642,8572303,8552583,799874,325735,1261828565,1251067046,47.81,56.21,34.63,34.48,0.37,0.46,0.24,0.24
-19043,42,045,42045,2664,1086,1025248,1025248,2664,1086,1025248,1025248,558979,222902,493661185,476152313,100,100,100,100,0.48,0.49,0.21,0.22
-19044,42,091,42091,15853,6919,21009428,21009428,15853,6919,21009428,21009428,799874,325735,1261828565,1251067046,100,100,100,100,1.98,2.12,1.66,1.68
-19046,42,091,42091,17809,8152,17154190,17154190,17809,8152,17154190,17154190,799874,325735,1261828565,1251067046,100,100,100,100,2.23,2.5,1.36,1.37
-19047,42,017,42017,35056,13507,46464001,45298748,35056,13507,46464001,45298748,625249,245956,1610646492,1565148677,100,100,100,100,5.61,5.49,2.88,2.89
-19050,42,045,42045,28073,12192,9542323,9542323,28073,12192,9542323,9542323,558979,222902,493661185,476152313,100,100,100,100,5.02,5.47,1.93,2
-19053,42,017,42017,25966,10086,27356768,27156876,25966,10086,27356768,27156876,625249,245956,1610646492,1565148677,100,100,100,100,4.15,4.1,1.7,1.74
-19054,42,017,42017,17437,6564,11056792,10717438,17437,6564,11056792,10717438,625249,245956,1610646492,1565148677,100,100,100,100,2.79,2.67,0.69,0.68
-19055,42,017,42017,13924,5016,7425829,7374405,13924,5016,7425829,7374405,625249,245956,1610646492,1565148677,100,100,100,100,2.23,2.04,0.46,0.47
-19056,42,017,42017,15486,5661,9575108,9525374,15486,5661,9575108,9525374,625249,245956,1610646492,1565148677,100,100,100,100,2.48,2.3,0.59,0.61
-19057,42,017,42017,17191,6523,11518535,11445666,17191,6523,11518535,11445666,625249,245956,1610646492,1565148677,100,100,100,100,2.75,2.65,0.72,0.73
-19060,42,045,42045,11368,3923,20328240,20328240,11368,3923,20328240,20328240,558979,222902,493661185,476152313,100,100,100,100,2.03,1.76,4.12,4.27
-19061,42,045,42045,19997,8305,18177438,18171550,19997,8305,18177438,18171550,558979,222902,493661185,476152313,100,100,100,100,3.58,3.73,3.68,3.82
-19063,42,045,42045,35704,15241,60480445,59767519,35704,15241,60480445,59767519,558979,222902,493661185,476152313,100,100,100,100,6.39,6.84,12.25,12.55
-19064,42,045,42045,24459,8963,20689068,20617933,24459,8963,20689068,20617933,558979,222902,493661185,476152313,100,100,100,100,4.38,4.02,4.19,4.33
-19066,42,091,42091,5864,1846,3534651,3534651,5864,1846,3534651,3534651,799874,325735,1261828565,1251067046,100,100,100,100,0.73,0.57,0.28,0.28
-19067,42,017,42017,51334,20684,80239728,73826009,51334,20684,80239728,73826009,625249,245956,1610646492,1565148677,100,100,100,100,8.21,8.41,4.98,4.72
-19070,42,045,42045,7277,2907,2807422,2807422,7277,2907,2807422,2807422,558979,222902,493661185,476152313,100,100,100,100,1.3,1.3,0.57,0.59
-19072,42,091,42091,9539,4261,8459754,8383326,9539,4261,8459754,8383326,799874,325735,1261828565,1251067046,100,100,100,100,1.19,1.31,0.67,0.67
-19073,42,029,42029,2017,974,11610300,11483039,18332,8072,54627585,53612613,498886,192462,1966408761,1943805957,11,12.07,21.25,21.42,0.4,0.51,0.59,0.59
-19073,42,045,42045,16315,7098,43017285,42129574,18332,8072,54627585,53612613,558979,222902,493661185,476152313,89,87.93,78.75,78.58,2.92,3.18,8.71,8.85
-19074,42,045,42045,5890,2334,2108631,2012801,5890,2334,2108631,2012801,558979,222902,493661185,476152313,100,100,100,100,1.05,1.05,0.43,0.42
-19075,42,091,42091,7354,2833,5879766,5852593,7354,2833,5879766,5852593,799874,325735,1261828565,1251067046,100,100,100,100,0.92,0.87,0.47,0.47
-19076,42,045,42045,6525,2731,1960601,1930469,6525,2731,1960601,1930469,558979,222902,493661185,476152313,100,100,100,100,1.17,1.23,0.4,0.41
-19078,42,045,42045,11067,4837,5314239,5238033,11067,4837,5314239,5238033,558979,222902,493661185,476152313,100,100,100,100,1.98,2.17,1.08,1.1
-19079,42,045,42045,9168,3714,5175865,4783082,9168,3714,5175865,4783082,558979,222902,493661185,476152313,100,100,100,100,1.64,1.67,1.05,1
-19081,42,045,42045,10337,3719,5786081,5786081,10337,3719,5786081,5786081,558979,222902,493661185,476152313,100,100,100,100,1.85,1.67,1.17,1.22
-19082,42,045,42045,40997,16142,6707198,6707198,40997,16142,6707198,6707198,558979,222902,493661185,476152313,100,100,100,100,7.33,7.24,1.36,1.41
-19083,42,045,42045,35813,13532,14363381,14363381,35878,13558,14391685,14391685,558979,222902,493661185,476152313,99.82,99.81,99.8,99.8,6.41,6.07,2.91,3.02
-19083,42,091,42091,65,26,28304,28304,35878,13558,14391685,14391685,799874,325735,1261828565,1251067046,0.18,0.19,0.2,0.2,0.01,0.01,0,0
-19085,42,045,42045,6095,953,8940156,8940156,8932,2028,15664422,15653036,558979,222902,493661185,476152313,68.24,46.99,57.07,57.11,1.09,0.43,1.81,1.88
-19085,42,091,42091,2837,1075,6724266,6712880,8932,2028,15664422,15653036,799874,325735,1261828565,1251067046,31.76,53.01,42.93,42.89,0.35,0.33,0.53,0.54
-19086,42,045,42045,11420,4476,9979474,9979474,11420,4476,9979474,9979474,558979,222902,493661185,476152313,100,100,100,100,2.04,2.01,2.02,2.1
-19087,42,029,42029,14590,6316,20667715,20628834,32225,12978,41422949,41348851,498886,192462,1966408761,1943805957,45.28,48.67,49.89,49.89,2.92,3.28,1.05,1.06
-19087,42,045,42045,13894,5123,14637900,14602683,32225,12978,41422949,41348851,558979,222902,493661185,476152313,43.12,39.47,35.34,35.32,2.49,2.3,2.97,3.07
-19087,42,091,42091,3741,1539,6117334,6117334,32225,12978,41422949,41348851,799874,325735,1261828565,1251067046,11.61,11.86,14.77,14.79,0.47,0.47,0.48,0.49
-19090,42,091,42091,18832,7756,13929760,13917221,18832,7756,13929760,13917221,799874,325735,1261828565,1251067046,100,100,100,100,2.35,2.38,1.1,1.11
-19094,42,045,42045,4406,1886,2077894,2077894,4406,1886,2077894,2077894,558979,222902,493661185,476152313,100,100,100,100,0.79,0.85,0.42,0.44
-19095,42,091,42091,7063,3385,5533178,5533178,7063,3385,5533178,5533178,799874,325735,1261828565,1251067046,100,100,100,100,0.88,1.04,0.44,0.44
-19096,42,045,42045,538,225,414585,414585,13572,5671,9075011,9075011,558979,222902,493661185,476152313,3.96,3.97,4.57,4.57,0.1,0.1,0.08,0.09
-19096,42,091,42091,13034,5446,8660426,8660426,13572,5671,9075011,9075011,799874,325735,1261828565,1251067046,96.04,96.03,95.43,95.43,1.63,1.67,0.69,0.69
-19102,42,101,42101,4705,3513,489123,489123,4705,3513,489123,489123,1526006,670171,369610537,347321129,100,100,100,100,0.31,0.52,0.13,0.14
-19103,42,101,42101,21908,16612,1690201,1655022,21908,16612,1690201,1655022,1526006,670171,369610537,347321129,100,100,100,100,1.44,2.48,0.46,0.48
-19104,42,101,42101,51808,20039,8118938,7786929,51808,20039,8118938,7786929,1526006,670171,369610537,347321129,100,100,100,100,3.4,2.99,2.2,2.24
-19106,42,101,42101,11740,7576,3135805,2093078,11740,7576,3135805,2093078,1526006,670171,369610537,347321129,100,100,100,100,0.77,1.13,0.85,0.6
-19107,42,101,42101,14875,8400,1422418,1422418,14875,8400,1422418,1422418,1526006,670171,369610537,347321129,100,100,100,100,0.97,1.25,0.38,0.41
-19109,42,101,42101,0,0,8800,8800,0,0,8800,8800,1526006,670171,369610537,347321129,0,0,100,100,0,0,0,0
-19111,42,101,42101,63090,25613,12513792,12513063,63090,25613,12513792,12513063,1526006,670171,369610537,347321129,100,100,100,100,4.13,3.82,3.39,3.6
-19112,42,101,42101,13,1,7844753,4504459,13,1,7844753,4504459,1526006,670171,369610537,347321129,100,100,100,100,0,0,2.12,1.3
-19113,42,045,42045,120,50,9010512,8953142,120,50,9010512,8953142,558979,222902,493661185,476152313,100,100,100,100,0.02,0.02,1.83,1.88
-19114,42,101,42101,30907,14010,15300303,14502413,30907,14010,15300303,14502413,1526006,670171,369610537,347321129,100,100,100,100,2.03,2.09,4.14,4.18
-19115,42,101,42101,33207,14507,14691270,14540073,33207,14507,14691270,14540073,1526006,670171,369610537,347321129,100,100,100,100,2.18,2.16,3.97,4.19
-19116,42,101,42101,33112,13729,12974662,12962332,33112,13729,12974662,12962332,1526006,670171,369610537,347321129,100,100,100,100,2.17,2.05,3.51,3.73
-19118,42,091,42091,80,35,78116,78116,9808,4708,8370600,8261391,799874,325735,1261828565,1251067046,0.82,0.74,0.93,0.95,0.01,0.01,0.01,0.01
-19118,42,101,42101,9728,4673,8292484,8183275,9808,4708,8370600,8261391,1526006,670171,369610537,347321129,99.18,99.26,99.07,99.05,0.64,0.7,2.24,2.36
-19119,42,101,42101,27035,12980,8396042,8382957,27035,12980,8396042,8382957,1526006,670171,369610537,347321129,100,100,100,100,1.77,1.94,2.27,2.41
-19120,42,101,42101,68104,24009,8888637,8815347,68104,24009,8888637,8815347,1526006,670171,369610537,347321129,100,100,100,100,4.46,3.58,2.4,2.54
-19121,42,101,42101,36572,16390,6070453,5726826,36572,16390,6070453,5726826,1526006,670171,369610537,347321129,100,100,100,100,2.4,2.45,1.64,1.65
-19122,42,101,42101,21653,7427,3287314,3287314,21653,7427,3287314,3287314,1526006,670171,369610537,347321129,100,100,100,100,1.42,1.11,0.89,0.95
-19123,42,101,42101,13416,7012,3578800,3273535,13416,7012,3578800,3273535,1526006,670171,369610537,347321129,100,100,100,100,0.88,1.05,0.97,0.94
-19124,42,101,42101,66691,24872,12714638,12625778,66691,24872,12714638,12625778,1526006,670171,369610537,347321129,100,100,100,100,4.37,3.71,3.44,3.64
-19125,42,101,42101,22958,10557,4058836,3564096,22958,10557,4058836,3564096,1526006,670171,369610537,347321129,100,100,100,100,1.5,1.58,1.1,1.03
-19126,42,101,42101,15758,6465,2959831,2959831,15758,6465,2959831,2959831,1526006,670171,369610537,347321129,100,100,100,100,1.03,0.96,0.8,0.85
-19127,42,101,42101,5913,3053,1707953,1423543,5913,3053,1707953,1423543,1526006,670171,369610537,347321129,100,100,100,100,0.39,0.46,0.46,0.41
-19128,42,101,42101,35239,17333,18564481,18297700,35239,17333,18564481,18297700,1526006,670171,369610537,347321129,100,100,100,100,2.31,2.59,5.02,5.27
-19129,42,101,42101,10975,5192,5950526,5694606,10975,5192,5950526,5694606,1526006,670171,369610537,347321129,100,100,100,100,0.72,0.77,1.61,1.64
-19130,42,101,42101,24870,14360,3575284,3352518,24870,14360,3575284,3352518,1526006,670171,369610537,347321129,100,100,100,100,1.63,2.14,0.97,0.97
-19131,42,101,42101,43172,21192,14562986,13667979,43172,21192,14562986,13667979,1526006,670171,369610537,347321129,100,100,100,100,2.83,3.16,3.94,3.94
-19132,42,101,42101,36268,17675,5605765,5605765,36268,17675,5605765,5605765,1526006,670171,369610537,347321129,100,100,100,100,2.38,2.64,1.52,1.61
-19133,42,101,42101,26063,10227,3374946,3368694,26063,10227,3374946,3368694,1526006,670171,369610537,347321129,100,100,100,100,1.71,1.53,0.91,0.97
-19134,42,101,42101,60675,23000,9869495,9086101,60675,23000,9869495,9086101,1526006,670171,369610537,347321129,100,100,100,100,3.98,3.43,2.67,2.62
-19135,42,101,42101,33091,13264,6888509,6031000,33091,13264,6888509,6031000,1526006,670171,369610537,347321129,100,100,100,100,2.17,1.98,1.86,1.74
-19136,42,101,42101,40647,14039,14332994,11926152,40647,14039,14332994,11926152,1526006,670171,369610537,347321129,100,100,100,100,2.66,2.09,3.88,3.43
-19137,42,101,42101,8638,3515,8450226,6235598,8638,3515,8450226,6235598,1526006,670171,369610537,347321129,100,100,100,100,0.57,0.52,2.29,1.8
-19138,42,101,42101,32273,13267,4462480,4462480,32273,13267,4462480,4462480,1526006,670171,369610537,347321129,100,100,100,100,2.11,1.98,1.21,1.28
-19139,42,101,42101,41271,20327,4588310,4584293,41271,20327,4588310,4584293,1526006,670171,369610537,347321129,100,100,100,100,2.7,3.03,1.24,1.32
-19140,42,101,42101,54133,22209,7919869,7905263,54133,22209,7919869,7905263,1526006,670171,369610537,347321129,100,100,100,100,3.55,3.31,2.14,2.28
-19141,42,101,42101,31376,14086,4697165,4697165,31376,14086,4697165,4697165,1526006,670171,369610537,347321129,100,100,100,100,2.06,2.1,1.27,1.35
-19142,42,101,42101,29595,10958,4393726,4366610,29595,10958,4393726,4366610,1526006,670171,369610537,347321129,100,100,100,100,1.94,1.64,1.19,1.26
-19143,42,101,42101,64849,29507,8423961,8256598,64849,29507,8423961,8256598,1526006,670171,369610537,347321129,100,100,100,100,4.25,4.4,2.28,2.38
-19144,42,101,42101,43329,21796,8927850,8891943,43329,21796,8927850,8891943,1526006,670171,369610537,347321129,100,100,100,100,2.84,3.25,2.42,2.56
-19145,42,101,42101,47261,20874,13524604,12604559,47261,20874,13524604,12604559,1526006,670171,369610537,347321129,100,100,100,100,3.1,3.11,3.66,3.63
-19146,42,101,42101,35113,19058,4595619,4376019,35113,19058,4595619,4376019,1526006,670171,369610537,347321129,100,100,100,100,2.3,2.84,1.24,1.26
-19147,42,101,42101,36228,19209,4150928,3645140,36228,19209,4150928,3645140,1526006,670171,369610537,347321129,100,100,100,100,2.37,2.87,1.12,1.05
-19148,42,101,42101,49732,21567,12517251,10937281,49732,21567,12517251,10937281,1526006,670171,369610537,347321129,100,100,100,100,3.26,3.22,3.39,3.15
-19149,42,101,42101,55006,19984,6290280,6290280,55006,19984,6290280,6290280,1526006,670171,369610537,347321129,100,100,100,100,3.6,2.98,1.7,1.81
-19150,42,091,42091,0,0,28979,28979,23378,10504,3904759,3904759,799874,325735,1261828565,1251067046,0,0,0.74,0.74,0,0,0,0
-19150,42,101,42101,23378,10504,3875780,3875780,23378,10504,3904759,3904759,1526006,670171,369610537,347321129,100,100,99.26,99.26,1.53,1.57,1.05,1.12
-19151,42,101,42101,29883,13090,6239777,6194458,29883,13090,6239777,6194458,1526006,670171,369610537,347321129,100,100,100,100,1.96,1.95,1.69,1.78
-19152,42,101,42101,33293,13730,7339061,7300416,33293,13730,7339061,7300416,1526006,670171,369610537,347321129,100,100,100,100,2.18,2.05,1.99,2.1
-19153,42,101,42101,12259,5524,21771063,18537214,12259,5524,21771063,18537214,1526006,670171,369610537,347321129,100,100,100,100,0.8,0.82,5.89,5.34
-19154,42,101,42101,34196,13246,16572548,16409305,34196,13246,16572548,16409305,1526006,670171,369610537,347321129,100,100,100,100,2.24,1.98,4.48,4.72
-19301,42,029,42029,6402,2765,8711004,8705453,6402,2765,8711004,8705453,498886,192462,1966408761,1943805957,100,100,100,100,1.28,1.44,0.44,0.45
-19310,42,029,42029,2974,985,32491766,32256511,3066,1016,33967925,33732040,498886,192462,1966408761,1943805957,97,96.95,95.65,95.63,0.6,0.51,1.65,1.66
-19310,42,071,42071,92,31,1476159,1475529,3066,1016,33967925,33732040,519445,202952,2548038153,2444457103,3,3.05,4.35,4.37,0.02,0.02,0.06,0.06
-19311,42,029,42029,8584,2729,32810357,32619007,8584,2729,32810357,32619007,498886,192462,1966408761,1943805957,100,100,100,100,1.72,1.42,1.67,1.68
-19312,42,029,42029,11516,4498,24676739,24454609,11539,4507,24771402,24549272,498886,192462,1966408761,1943805957,99.8,99.8,99.62,99.61,2.31,2.34,1.25,1.26
-19312,42,045,42045,23,9,94663,94663,11539,4507,24771402,24549272,558979,222902,493661185,476152313,0.2,0.2,0.38,0.39,0,0,0.02,0.02
-19316,42,029,42029,186,73,2319774,2306880,186,73,2319774,2306880,498886,192462,1966408761,1943805957,100,100,100,100,0.04,0.04,0.12,0.12
-19317,42,029,42029,4256,1703,30731864,30399117,9530,3873,55155269,54664198,498886,192462,1966408761,1943805957,44.66,43.97,55.72,55.61,0.85,0.88,1.56,1.56
-19317,42,045,42045,5274,2170,24423405,24265081,9530,3873,55155269,54664198,558979,222902,493661185,476152313,55.34,56.03,44.28,44.39,0.94,0.97,4.95,5.1
-19319,42,029,42029,2,1,171193,171193,1130,58,1639447,1638822,498886,192462,1966408761,1943805957,0.18,1.72,10.44,10.45,0,0,0.01,0.01
-19319,42,045,42045,1128,57,1468254,1467629,1130,58,1639447,1638822,558979,222902,493661185,476152313,99.82,98.28,89.56,89.55,0.2,0.03,0.3,0.31
-19320,42,029,42029,52342,20279,220846943,218888709,52342,20279,220846943,218888709,498886,192462,1966408761,1943805957,100,100,100,100,10.49,10.54,11.23,11.26
-19330,42,029,42029,5421,1962,87661784,87275400,5421,1962,87661784,87275400,498886,192462,1966408761,1943805957,100,100,100,100,1.09,1.02,4.46,4.49
-19333,42,029,42029,6895,3236,8980609,8941452,6895,3236,8980609,8941452,498886,192462,1966408761,1943805957,100,100,100,100,1.38,1.68,0.46,0.46
-19335,42,029,42029,46984,17889,113153308,110157148,46984,17889,113153308,110157148,498886,192462,1966408761,1943805957,100,100,100,100,9.42,9.29,5.75,5.67
-19341,42,029,42029,16709,7109,33665965,33409495,16709,7109,33665965,33409495,498886,192462,1966408761,1943805957,100,100,100,100,3.35,3.69,1.71,1.72
-19342,42,029,42029,236,83,566800,565176,18099,7770,50613547,50510129,498886,192462,1966408761,1943805957,1.3,1.07,1.12,1.12,0.05,0.04,0.03,0.03
-19342,42,045,42045,17863,7687,50046747,49944953,18099,7770,50613547,50510129,558979,222902,493661185,476152313,98.7,98.93,98.88,98.88,3.2,3.45,10.14,10.49
-19343,42,029,42029,8142,2871,70998777,70186123,8142,2871,70998777,70186123,498886,192462,1966408761,1943805957,100,100,100,100,1.63,1.49,3.61,3.61
-19344,42,029,42029,11612,4324,84150649,82785922,11919,4436,85893623,84521003,498886,192462,1966408761,1943805957,97.42,97.48,97.97,97.95,2.33,2.25,4.28,4.26
-19344,42,071,42071,307,112,1742974,1735081,11919,4436,85893623,84521003,519445,202952,2548038153,2444457103,2.58,2.52,2.03,2.05,0.06,0.06,0.07,0.07
-19345,42,029,42029,689,1,523562,523562,689,1,523562,523562,498886,192462,1966408761,1943805957,100,100,100,100,0.14,0,0.03,0.03
-19348,42,029,42029,22232,8388,96584946,95892423,22232,8388,96584946,95892423,498886,192462,1966408761,1943805957,100,100,100,100,4.46,4.36,4.91,4.93
-19350,42,029,42029,10921,3854,72885803,72164459,10921,3854,72885803,72164459,498886,192462,1966408761,1943805957,100,100,100,100,2.19,2,3.71,3.71
-19352,42,029,42029,10622,2796,50056347,49707754,10622,2796,50056347,49707754,498886,192462,1966408761,1943805957,100,100,100,100,2.13,1.45,2.55,2.56
-19355,42,029,42029,24760,9708,99938050,99340208,24760,9708,99938050,99340208,498886,192462,1966408761,1943805957,100,100,100,100,4.96,5.04,5.08,5.11
-19358,42,029,42029,526,205,833294,812330,526,205,833294,812330,498886,192462,1966408761,1943805957,100,100,100,100,0.11,0.11,0.04,0.04
-19362,42,029,42029,3497,1333,47247993,46685363,5815,2120,78960088,78170590,498886,192462,1966408761,1943805957,60.14,62.88,59.84,59.72,0.7,0.69,2.4,2.4
-19362,42,071,42071,2318,787,31712095,31485227,5815,2120,78960088,78170590,519445,202952,2548038153,2444457103,39.86,37.12,40.16,40.28,0.45,0.39,1.24,1.29
-19363,42,029,42029,16633,5788,125080265,123679218,17055,5941,130544490,128884255,498886,192462,1966408761,1943805957,97.53,97.42,95.81,95.96,3.33,3.01,6.36,6.36
-19363,42,071,42071,422,153,5464225,5205037,17055,5941,130544490,128884255,519445,202952,2548038153,2444457103,2.47,2.58,4.19,4.04,0.08,0.08,0.21,0.21
-19365,42,029,42029,7006,2725,46458344,46287924,7006,2725,46458344,46287924,498886,192462,1966408761,1943805957,100,100,100,100,1.4,1.42,2.36,2.38
-19367,42,029,42029,171,78,437705,437705,171,78,437705,437705,498886,192462,1966408761,1943805957,100,100,100,100,0.03,0.04,0.02,0.02
-19372,42,029,42029,1360,610,1516493,1513179,1360,610,1516493,1513179,498886,192462,1966408761,1943805957,100,100,100,100,0.27,0.32,0.08,0.08
-19373,42,045,42045,4273,864,10768297,10730219,4273,864,10768297,10730219,558979,222902,493661185,476152313,100,100,100,100,0.76,0.39,2.18,2.25
-19374,42,029,42029,1252,353,4501741,4454859,1252,353,4501741,4454859,498886,192462,1966408761,1943805957,100,100,100,100,0.25,0.18,0.23,0.23
-19375,42,029,42029,104,56,1083228,1068270,104,56,1083228,1068270,498886,192462,1966408761,1943805957,100,100,100,100,0.02,0.03,0.06,0.05
-19380,42,029,42029,49534,20728,82636073,81710611,49534,20728,82636073,81710611,498886,192462,1966408761,1943805957,100,100,100,100,9.93,10.77,4.2,4.2
-19382,42,029,42029,51481,19704,118740808,117222145,52388,20015,121388390,119869727,498886,192462,1966408761,1943805957,98.27,98.45,97.82,97.79,10.32,10.24,6.04,6.03
-19382,42,045,42045,907,311,2647582,2647582,52388,20015,121388390,119869727,558979,222902,493661185,476152313,1.73,1.55,2.18,2.21,0.16,0.14,0.54,0.56
-19383,42,029,42029,3169,0,155201,155201,3169,0,155201,155201,498886,192462,1966408761,1943805957,100,0,100,100,0.64,0,0.01,0.01
-19390,42,029,42029,13425,4933,67990924,67625256,13425,4933,67990924,67625256,498886,192462,1966408761,1943805957,100,100,100,100,2.69,2.56,3.46,3.48
-19401,42,091,42091,41753,17061,15880380,15621931,41753,17061,15880380,15621931,799874,325735,1261828565,1251067046,100,100,100,100,5.22,5.24,1.26,1.25
-19403,42,091,42091,44260,18538,62328100,61462348,44260,18538,62328100,61462348,799874,325735,1261828565,1251067046,100,100,100,100,5.53,5.69,4.94,4.91
-19405,42,091,42091,5127,2378,2026822,1873570,5127,2378,2026822,1873570,799874,325735,1261828565,1251067046,100,100,100,100,0.64,0.73,0.16,0.15
-19406,42,091,42091,23441,10758,36614653,35808742,23441,10758,36614653,35808742,799874,325735,1261828565,1251067046,100,100,100,100,2.93,3.3,2.9,2.86
-19422,42,091,42091,18506,7924,32877229,32865251,18506,7924,32877229,32865251,799874,325735,1261828565,1251067046,100,100,100,100,2.31,2.43,2.61,2.63
-19425,42,029,42029,13922,4970,70371953,69784310,13922,4970,70371953,69784310,498886,192462,1966408761,1943805957,100,100,100,100,2.79,2.58,3.58,3.59
-19426,42,091,42091,38831,12067,88459931,87804306,38831,12067,88459931,87804306,799874,325735,1261828565,1251067046,100,100,100,100,4.85,3.7,7.01,7.02
-19428,42,091,42091,16580,8665,20484653,19684970,16580,8665,20484653,19684970,799874,325735,1261828565,1251067046,100,100,100,100,2.07,2.66,1.62,1.57
-19435,42,091,42091,100,42,2010172,2010172,100,42,2010172,2010172,799874,325735,1261828565,1251067046,100,100,100,100,0.01,0.01,0.16,0.16
-19436,42,091,42091,640,377,908158,908158,640,377,908158,908158,799874,325735,1261828565,1251067046,100,100,100,100,0.08,0.12,0.07,0.07
-19437,42,091,42091,757,290,2830590,2830590,757,290,2830590,2830590,799874,325735,1261828565,1251067046,100,100,100,100,0.09,0.09,0.22,0.23
-19438,42,091,42091,23765,9165,57961895,57775571,23765,9165,57961895,57775571,799874,325735,1261828565,1251067046,100,100,100,100,2.97,2.81,4.59,4.62
-19440,42,017,42017,1420,526,7948273,7925539,18038,7267,29211575,29188841,625249,245956,1610646492,1565148677,7.87,7.24,27.21,27.15,0.23,0.21,0.49,0.51
-19440,42,091,42091,16618,6741,21263302,21263302,18038,7267,29211575,29188841,799874,325735,1261828565,1251067046,92.13,92.76,72.79,72.85,2.08,2.07,1.69,1.7
-19442,42,029,42029,45,17,51079,51079,45,17,51079,51079,498886,192462,1966408761,1943805957,100,100,100,100,0.01,0.01,0,0
-19444,42,091,42091,10519,4396,12546429,12546429,10519,4396,12546429,12546429,799874,325735,1261828565,1251067046,100,100,100,100,1.32,1.35,0.99,1
-19446,42,091,42091,55138,23035,58426416,58411963,55138,23035,58426416,58411963,799874,325735,1261828565,1251067046,100,100,100,100,6.89,7.07,4.63,4.67
-19453,42,091,42091,1483,751,1828320,1706091,1483,751,1828320,1706091,799874,325735,1261828565,1251067046,100,100,100,100,0.19,0.23,0.14,0.14
-19454,42,091,42091,27870,11495,33808028,33802112,27870,11495,33808028,33802112,799874,325735,1261828565,1251067046,100,100,100,100,3.48,3.53,2.68,2.7
-19456,42,091,42091,737,283,1092413,1061248,737,283,1092413,1061248,799874,325735,1261828565,1251067046,100,100,100,100,0.09,0.09,0.09,0.08
-19457,42,029,42029,125,45,517409,509931,125,45,517409,509931,498886,192462,1966408761,1943805957,100,100,100,100,0.03,0.02,0.03,0.03
-19460,42,029,42029,35283,14886,76848510,74626322,40154,16748,94781820,91570030,498886,192462,1966408761,1943805957,87.87,88.88,81.08,81.5,7.07,7.73,3.91,3.84
-19460,42,091,42091,4871,1862,17933310,16943708,40154,16748,94781820,91570030,799874,325735,1261828565,1251067046,12.13,11.12,18.92,18.5,0.61,0.57,1.42,1.35
-19462,42,091,42091,14658,6015,21942401,21925949,14658,6015,21942401,21925949,799874,325735,1261828565,1251067046,100,100,100,100,1.83,1.85,1.74,1.75
-19464,42,011,42011,52,21,246902,238505,45788,19323,66320465,65736738,411442,164827,2242297348,2218341544,0.11,0.11,0.37,0.36,0.01,0.01,0.01,0.01
-19464,42,091,42091,45736,19302,66073563,65498233,45788,19323,66320465,65736738,799874,325735,1261828565,1251067046,99.89,99.89,99.63,99.64,5.72,5.93,5.24,5.24
-19465,42,029,42029,17038,6934,94382080,92713114,17038,6934,94382080,92713114,498886,192462,1966408761,1943805957,100,100,100,100,3.42,3.6,4.8,4.77
-19468,42,091,42091,25536,10468,43157163,42442583,25536,10468,43157163,42442583,799874,325735,1261828565,1251067046,100,100,100,100,3.19,3.21,3.42,3.39
-19472,42,091,42091,74,32,436572,436572,74,32,436572,436572,799874,325735,1261828565,1251067046,100,100,100,100,0.01,0.01,0.03,0.03
-19473,42,091,42091,15726,5872,64131433,63582665,15726,5872,64131433,63582665,799874,325735,1261828565,1251067046,100,100,100,100,1.97,1.8,5.08,5.08
-19474,42,091,42091,733,356,503583,503583,733,356,503583,503583,799874,325735,1261828565,1251067046,100,100,100,100,0.09,0.11,0.04,0.04
-19475,42,029,42029,11283,4496,43719815,42857227,11283,4496,43719815,42857227,498886,192462,1966408761,1943805957,100,100,100,100,2.26,2.34,2.22,2.2
-19477,42,091,42091,146,17,132204,132204,146,17,132204,132204,799874,325735,1261828565,1251067046,100,100,100,100,0.02,0.01,0.01,0.01
-19492,42,091,42091,717,369,3040747,3040747,717,369,3040747,3040747,799874,325735,1261828565,1251067046,100,100,100,100,0.09,0.11,0.24,0.24
-19501,42,071,42071,1047,440,2622125,2612833,1047,440,2622125,2612833,519445,202952,2548038153,2444457103,100,100,100,100,0.2,0.22,0.1,0.11
-19503,42,011,42011,1142,485,3882769,3873503,1142,485,3882769,3873503,411442,164827,2242297348,2218341544,100,100,100,100,0.28,0.29,0.17,0.17
-19504,42,011,42011,3252,1279,41067717,40943766,4998,1912,58464660,58340709,411442,164827,2242297348,2218341544,65.07,66.89,70.24,70.18,0.79,0.78,1.83,1.85
-19504,42,091,42091,1746,633,17396943,17396943,4998,1912,58464660,58340709,799874,325735,1261828565,1251067046,34.93,33.11,29.76,29.82,0.22,0.19,1.38,1.39
-19505,42,011,42011,2991,1237,20178702,20121968,3226,1331,22996619,22939885,411442,164827,2242297348,2218341544,92.72,92.94,87.75,87.72,0.73,0.75,0.9,0.91
-19505,42,091,42091,235,94,2817917,2817917,3226,1331,22996619,22939885,799874,325735,1261828565,1251067046,7.28,7.06,12.25,12.28,0.03,0.03,0.22,0.23
-19506,42,011,42011,7356,2893,179148803,175934896,7356,2893,179148803,175934896,411442,164827,2242297348,2218341544,100,100,100,100,1.79,1.76,7.99,7.93
-19507,42,011,42011,3280,1285,97884209,97603533,3280,1285,97884209,97603533,411442,164827,2242297348,2218341544,100,100,100,100,0.8,0.78,4.37,4.4
-19508,42,011,42011,15725,6236,100409797,98496778,15725,6236,100409797,98496778,411442,164827,2242297348,2218341544,100,100,100,100,3.82,3.78,4.48,4.44
-19510,42,011,42011,7639,2733,14518649,14478770,7639,2733,14518649,14478770,411442,164827,2242297348,2218341544,100,100,100,100,1.86,1.66,0.65,0.65
-19511,42,011,42011,215,92,816794,812715,215,92,816794,812715,411442,164827,2242297348,2218341544,100,100,100,100,0.05,0.06,0.04,0.04
-19512,42,011,42011,15586,6674,110984911,110557231,16954,7260,112664331,112236651,411442,164827,2242297348,2218341544,91.93,91.93,98.51,98.5,3.79,4.05,4.95,4.98
-19512,42,091,42091,1368,586,1679420,1679420,16954,7260,112664331,112236651,799874,325735,1261828565,1251067046,8.07,8.07,1.49,1.5,0.17,0.18,0.13,0.13
-19518,42,011,42011,14734,5500,94878646,93615164,14734,5500,94878646,93615164,411442,164827,2242297348,2218341544,100,100,100,100,3.58,3.34,4.23,4.22
-19519,42,011,42011,101,43,313063,300556,101,43,313063,300556,411442,164827,2242297348,2218341544,100,100,100,100,0.02,0.03,0.01,0.01
-19520,42,011,42011,985,396,23811581,23447982,5465,2299,97925118,96685029,411442,164827,2242297348,2218341544,18.02,17.22,24.32,24.25,0.24,0.24,1.06,1.06
-19520,42,029,42029,4480,1903,74113537,73237047,5465,2299,97925118,96685029,498886,192462,1966408761,1943805957,81.98,82.78,75.68,75.75,0.9,0.99,3.77,3.77
-19522,42,011,42011,14229,5686,119695441,116385337,14229,5686,119695441,116385337,411442,164827,2242297348,2218341544,100,100,100,100,3.46,3.45,5.34,5.25
-19523,42,011,42011,250,103,3725396,3673253,250,103,3725396,3673253,411442,164827,2242297348,2218341544,100,100,100,100,0.06,0.06,0.17,0.17
-19525,42,091,42091,14107,4943,43850434,43843656,14107,4943,43850434,43843656,799874,325735,1261828565,1251067046,100,100,100,100,1.76,1.52,3.48,3.5
-19526,42,011,42011,11039,4835,150873988,149588946,11039,4835,150873988,149588946,411442,164827,2242297348,2218341544,100,100,100,100,2.68,2.93,6.73,6.74
-19529,42,011,42011,1685,704,102390076,102229123,3131,1289,150929925,150379759,411442,164827,2242297348,2218341544,53.82,54.62,67.84,67.98,0.41,0.43,4.57,4.61
-19529,42,077,42077,1446,585,48539849,48150636,3131,1289,150929925,150379759,349497,142613,901935827,893975782,46.18,45.38,32.16,32.02,0.41,0.41,5.38,5.39
-19530,42,011,42011,15781,4987,133262484,132956754,16432,5235,144924290,144578130,411442,164827,2242297348,2218341544,96.04,95.26,91.95,91.96,3.84,3.03,5.94,5.99
-19530,42,077,42077,651,248,11661806,11621376,16432,5235,144924290,144578130,349497,142613,901935827,893975782,3.96,4.74,8.05,8.04,0.19,0.17,1.29,1.3
-19533,42,011,42011,7686,2483,47038390,46398502,7686,2483,47038390,46398502,411442,164827,2242297348,2218341544,100,100,100,100,1.87,1.51,2.1,2.09
-19534,42,011,42011,2041,905,52392619,52075448,2041,905,52392619,52075448,411442,164827,2242297348,2218341544,100,100,100,100,0.5,0.55,2.34,2.35
-19535,42,011,42011,23,10,125188,118464,23,10,125188,118464,411442,164827,2242297348,2218341544,100,100,100,100,0.01,0.01,0.01,0.01
-19536,42,011,42011,490,226,1001775,1000482,490,226,1001775,1000482,411442,164827,2242297348,2218341544,100,100,100,100,0.12,0.14,0.04,0.05
-19538,42,011,42011,64,30,1249227,1247522,64,30,1249227,1247522,411442,164827,2242297348,2218341544,100,100,100,100,0.02,0.02,0.06,0.06
-19539,42,011,42011,4520,1823,54550351,54395486,4597,1859,57450894,57289588,411442,164827,2242297348,2218341544,98.32,98.06,94.95,94.95,1.1,1.11,2.43,2.45
-19539,42,077,42077,77,36,2900543,2894102,4597,1859,57450894,57289588,349497,142613,901935827,893975782,1.68,1.94,5.05,5.05,0.02,0.03,0.32,0.32
-19540,42,011,42011,10835,4311,80278112,79941678,11723,4605,88460443,88112721,411442,164827,2242297348,2218341544,92.43,93.62,90.75,90.73,2.63,2.62,3.58,3.6
-19540,42,071,42071,888,294,8182331,8171043,11723,4605,88460443,88112721,519445,202952,2548038153,2444457103,7.57,6.38,9.25,9.27,0.17,0.14,0.32,0.33
-19541,42,011,42011,4403,1670,58320717,57956792,4403,1670,58320717,57956792,411442,164827,2242297348,2218341544,100,100,100,100,1.07,1.01,2.6,2.61
-19542,42,011,42011,67,30,120316,120316,67,30,120316,120316,411442,164827,2242297348,2218341544,100,100,100,100,0.02,0.02,0.01,0.01
-19543,42,011,42011,4786,1729,41876292,41150019,5905,2100,58176263,57384025,411442,164827,2242297348,2218341544,81.05,82.33,71.98,71.71,1.16,1.05,1.87,1.85
-19543,42,029,42029,236,80,3054530,3051021,5905,2100,58176263,57384025,498886,192462,1966408761,1943805957,4,3.81,5.25,5.32,0.05,0.04,0.16,0.16
-19543,42,071,42071,883,291,13245441,13182985,5905,2100,58176263,57384025,519445,202952,2548038153,2444457103,14.95,13.86,22.77,22.97,0.17,0.14,0.52,0.54
-19544,42,011,42011,196,92,435361,433423,196,92,435361,433423,411442,164827,2242297348,2218341544,100,100,100,100,0.05,0.06,0.02,0.02
-19545,42,011,42011,428,186,1155290,1155290,428,186,1155290,1155290,411442,164827,2242297348,2218341544,100,100,100,100,0.1,0.11,0.05,0.05
-19547,42,011,42011,4222,1758,74574226,74017467,4222,1758,74574226,74017467,411442,164827,2242297348,2218341544,100,100,100,100,1.03,1.07,3.33,3.34
-19549,42,107,42107,326,135,3634993,3607603,326,135,3634993,3607603,148289,69323,2027480747,2016651953,100,100,100,100,0.22,0.19,0.18,0.18
-19550,42,011,42011,641,178,4195191,4183756,641,178,4195191,4183756,411442,164827,2242297348,2218341544,100,100,100,100,0.16,0.11,0.19,0.19
-19551,42,011,42011,4713,1886,55129479,54324491,5034,1998,65220320,64413697,411442,164827,2242297348,2218341544,93.62,94.39,84.53,84.34,1.15,1.14,2.46,2.45
-19551,42,071,42071,37,12,525380,523745,5034,1998,65220320,64413697,519445,202952,2548038153,2444457103,0.74,0.6,0.81,0.81,0.01,0.01,0.02,0.02
-19551,42,075,42075,284,100,9565461,9565461,5034,1998,65220320,64413697,133568,55592,938866351,937142582,5.64,5.01,14.67,14.85,0.21,0.18,1.02,1.02
-19554,42,011,42011,374,158,1172496,1172496,374,158,1172496,1172496,411442,164827,2242297348,2218341544,100,100,100,100,0.09,0.1,0.05,0.05
-19555,42,011,42011,3406,1498,37011610,35319873,3406,1498,37011610,35319873,411442,164827,2242297348,2218341544,100,100,100,100,0.83,0.91,1.65,1.59
-19559,42,011,42011,362,157,733879,732795,362,157,733879,732795,411442,164827,2242297348,2218341544,100,100,100,100,0.09,0.1,0.03,0.03
-19560,42,011,42011,7805,3254,21198913,21048459,7805,3254,21198913,21048459,411442,164827,2242297348,2218341544,100,100,100,100,1.9,1.97,0.95,0.95
-19562,42,011,42011,2622,1208,2634409,2631129,2622,1208,2634409,2631129,411442,164827,2242297348,2218341544,100,100,100,100,0.64,0.73,0.12,0.12
-19564,42,011,42011,90,52,534289,534289,90,52,534289,534289,411442,164827,2242297348,2218341544,100,100,100,100,0.02,0.03,0.02,0.02
-19565,42,011,42011,8531,3497,50568178,49454218,8531,3497,50568178,49454218,411442,164827,2242297348,2218341544,100,100,100,100,2.07,2.12,2.26,2.23
-19567,42,011,42011,5388,2230,58622168,58466363,5388,2230,58622168,58466363,411442,164827,2242297348,2218341544,100,100,100,100,1.31,1.35,2.61,2.64
-19601,42,011,42011,32998,13282,10142305,9611864,32998,13282,10142305,9611864,411442,164827,2242297348,2218341544,100,100,100,100,8.02,8.06,0.45,0.43
-19602,42,011,42011,17900,8060,6576301,6400727,17900,8060,6576301,6400727,411442,164827,2242297348,2218341544,100,100,100,100,4.35,4.89,0.29,0.29
-19604,42,011,42011,27658,9295,5687884,5686935,27658,9295,5687884,5686935,411442,164827,2242297348,2218341544,100,100,100,100,6.72,5.64,0.25,0.26
-19605,42,011,42011,18985,7949,44563601,43379611,18985,7949,44563601,43379611,411442,164827,2242297348,2218341544,100,100,100,100,4.61,4.82,1.99,1.96
-19606,42,011,42011,34416,14034,71931756,71222504,34416,14034,71931756,71222504,411442,164827,2242297348,2218341544,100,100,100,100,8.36,8.51,3.21,3.21
-19607,42,011,42011,22544,10383,29137688,28980307,22544,10383,29137688,28980307,411442,164827,2242297348,2218341544,100,100,100,100,5.48,6.3,1.3,1.31
-19608,42,011,42011,22719,8484,67203324,66514966,22719,8484,67203324,66514966,411442,164827,2242297348,2218341544,100,100,100,100,5.52,5.15,3,3
-19609,42,011,42011,9946,4293,6537836,6536441,9946,4293,6537836,6536441,411442,164827,2242297348,2218341544,100,100,100,100,2.42,2.6,0.29,0.29
-19610,42,011,42011,15258,6917,18304294,18179359,15258,6917,18304294,18179359,411442,164827,2242297348,2218341544,100,100,100,100,3.71,4.2,0.82,0.82
-19611,42,011,42011,10589,4130,5331151,5242122,10589,4130,5331151,5242122,411442,164827,2242297348,2218341544,100,100,100,100,2.57,2.51,0.24,0.24
-19701,10,003,10003,39194,14873,70977210,68921004,39194,14873,70977210,68921004,538479,217511,1279460557,1104074798,100,100,100,100,7.28,6.84,5.55,6.24
-19702,10,003,10003,51899,20138,73962901,73325367,51899,20138,73962901,73325367,538479,217511,1279460557,1104074798,100,100,100,100,9.64,9.26,5.78,6.64
-19703,10,003,10003,14471,6511,13027474,10163643,14471,6511,13027474,10163643,538479,217511,1279460557,1104074798,100,100,100,100,2.69,2.99,1.02,0.92
-19706,10,003,10003,1822,759,11326973,9543807,1822,759,11326973,9543807,538479,217511,1279460557,1104074798,100,100,100,100,0.34,0.35,0.89,0.86
-19707,10,003,10003,16483,6066,34237778,34191434,16483,6066,34237778,34191434,538479,217511,1279460557,1104074798,100,100,100,100,3.06,2.79,2.68,3.1
-19709,10,003,10003,35107,12065,221944456,206236428,35107,12065,221944456,206236428,538479,217511,1279460557,1104074798,100,100,100,100,6.52,5.55,17.35,18.68
-19710,10,003,10003,41,15,289077,289077,41,15,289077,289077,538479,217511,1279460557,1104074798,100,100,100,100,0.01,0.01,0.02,0.03
-19711,10,003,10003,51322,20429,70927171,70921117,51322,20429,70927171,70921117,538479,217511,1279460557,1104074798,100,100,100,100,9.53,9.39,5.54,6.42
-19713,10,003,10003,30408,12622,35454077,35454077,30408,12622,35454077,35454077,538479,217511,1279460557,1104074798,100,100,100,100,5.65,5.8,2.77,3.21
-19716,10,003,10003,1568,2,136115,136115,1568,2,136115,136115,538479,217511,1279460557,1104074798,100,100,100,100,0.29,0,0.01,0.01
-19717,10,003,10003,3770,3,481212,481212,3770,3,481212,481212,538479,217511,1279460557,1104074798,100,100,100,100,0.7,0,0.04,0.04
-19720,10,003,10003,59250,22765,106173450,96096581,59250,22765,106173450,96096581,538479,217511,1279460557,1104074798,100,100,100,100,11,10.47,8.3,8.7
-19730,10,003,10003,451,188,3707157,3542019,451,188,3707157,3542019,538479,217511,1279460557,1104074798,100,100,100,100,0.08,0.09,0.29,0.32
-19731,10,003,10003,252,114,2724134,2482501,252,114,2724134,2482501,538479,217511,1279460557,1104074798,100,100,100,100,0.05,0.05,0.21,0.22
-19732,10,003,10003,25,9,1637589,1637589,25,9,1637589,1637589,538479,217511,1279460557,1104074798,100,100,100,100,0,0,0.13,0.15
-19733,10,003,10003,110,50,106227,106227,110,50,106227,106227,538479,217511,1279460557,1104074798,100,100,100,100,0.02,0.02,0.01,0.01
-19734,10,003,10003,11651,4079,212674376,202495535,11651,4079,212674376,202495535,538479,217511,1279460557,1104074798,100,100,100,100,2.16,1.88,16.62,18.34
-19735,10,003,10003,12,8,501400,501400,12,8,501400,501400,538479,217511,1279460557,1104074798,100,100,100,100,0,0,0.04,0.05
-19736,10,003,10003,32,14,357961,343561,32,14,357961,343561,538479,217511,1279460557,1104074798,100,100,100,100,0.01,0.01,0.03,0.03
-19801,10,003,10003,16286,7590,13422283,10721983,16286,7590,13422283,10721983,538479,217511,1279460557,1104074798,100,100,100,100,3.02,3.49,1.05,0.97
-19802,10,003,10003,24621,11195,8314070,8216055,24621,11195,8314070,8216055,538479,217511,1279460557,1104074798,100,100,100,100,4.57,5.15,0.65,0.74
-19803,10,003,10003,21364,9046,32659398,32633427,21364,9046,32659398,32633427,538479,217511,1279460557,1104074798,100,100,100,100,3.97,4.16,2.55,2.96
-19804,10,003,10003,17944,7726,19715271,19366704,17944,7726,19715271,19366704,538479,217511,1279460557,1104074798,100,100,100,100,3.33,3.55,1.54,1.75
-19805,10,003,10003,40937,17071,13780465,13776226,40937,17071,13780465,13776226,538479,217511,1279460557,1104074798,100,100,100,100,7.6,7.85,1.08,1.25
-19806,10,003,10003,9560,6081,5052816,4992923,9560,6081,5052816,4992923,538479,217511,1279460557,1104074798,100,100,100,100,1.78,2.8,0.39,0.45
-19807,10,003,10003,7405,3615,51688146,50800985,7405,3615,51688146,50800985,538479,217511,1279460557,1104074798,100,100,100,100,1.38,1.66,4.04,4.6
-19808,10,003,10003,38442,16318,36221463,36215724,38442,16318,36221463,36215724,538479,217511,1279460557,1104074798,100,100,100,100,7.14,7.5,2.83,3.28
-19809,10,003,10003,14049,6656,22213231,18110812,14049,6656,22213231,18110812,538479,217511,1279460557,1104074798,100,100,100,100,2.61,3.06,1.74,1.64
-19810,10,003,10003,25011,10593,20450519,20450519,25011,10593,20450519,20450519,538479,217511,1279460557,1104074798,100,100,100,100,4.64,4.87,1.6,1.85
-19901,10,001,10001,35055,14389,231742006,206602384,35055,14389,231742006,206602384,162310,65338,2067666624,1518196116,100,100,100,100,21.6,22.02,11.21,13.61
-19902,10,001,10001,283,0,942108,942108,283,0,942108,942108,162310,65338,2067666624,1518196116,100,0,100,100,0.17,0,0.05,0.06
-19904,10,001,10001,34132,13728,114911663,114145194,34132,13728,114911663,114145194,162310,65338,2067666624,1518196116,100,100,100,100,21.03,21.01,5.56,7.52
-19930,10,005,10005,2768,8388,20892744,14612514,2768,8388,20892744,14612514,197145,123036,3098637571,2424432871,100,100,100,100,1.4,6.82,0.67,0.6
-19931,10,005,10005,211,123,2360498,2360498,211,123,2360498,2360498,197145,123036,3098637571,2424432871,100,100,100,100,0.11,0.1,0.08,0.1
-19933,10,005,10005,8535,3441,164417636,163945059,8535,3441,164417636,163945059,197145,123036,3098637571,2424432871,100,100,100,100,4.33,2.8,5.31,6.76
-19934,10,001,10001,12805,5087,113545889,113499072,12805,5087,113545889,113499072,162310,65338,2067666624,1518196116,100,100,100,100,7.89,7.79,5.49,7.48
-19936,10,001,10001,302,124,572563,572563,302,124,572563,572563,162310,65338,2067666624,1518196116,100,100,100,100,0.19,0.19,0.03,0.04
-19938,10,001,10001,7728,2870,105415257,105393367,8357,3115,126292122,126270232,162310,65338,2067666624,1518196116,92.47,92.13,83.47,83.47,4.76,4.39,5.1,6.94
-19938,10,003,10003,629,245,20876865,20876865,8357,3115,126292122,126270232,538479,217511,1279460557,1104074798,7.53,7.87,16.53,16.53,0.12,0.11,1.63,1.89
-19939,10,005,10005,5979,3165,82511142,67446276,5979,3165,82511142,67446276,197145,123036,3098637571,2424432871,100,100,100,100,3.03,2.57,2.66,2.78
-19940,10,005,10005,5574,2271,107166629,107149243,5574,2271,107166629,107149243,197145,123036,3098637571,2424432871,100,100,100,100,2.83,1.85,3.46,4.42
-19941,10,005,10005,2522,1015,87218501,87053537,2522,1015,87218501,87053537,197145,123036,3098637571,2424432871,100,100,100,100,1.28,0.82,2.81,3.59
-19943,10,001,10001,11425,4761,171690605,170749870,11425,4761,171690605,170749870,162310,65338,2067666624,1518196116,100,100,100,100,7.04,7.29,8.3,11.25
-19944,10,005,10005,620,1703,6027020,3281449,620,1703,6027020,3281449,197145,123036,3098637571,2424432871,100,100,100,100,0.31,1.38,0.19,0.14
-19945,10,005,10005,6862,3936,166665545,162025236,6862,3936,166665545,162025236,197145,123036,3098637571,2424432871,100,100,100,100,3.48,3.2,5.38,6.68
-19946,10,001,10001,4420,1962,57803701,57339866,4420,1962,57803701,57339866,162310,65338,2067666624,1518196116,100,100,100,100,2.72,3,2.8,3.78
-19947,10,005,10005,18799,6408,310504212,309966671,18799,6408,310504212,309966671,197145,123036,3098637571,2424432871,100,100,100,100,9.54,5.21,10.02,12.79
-19950,10,001,10001,1456,573,47592252,47589734,6951,2810,193471740,193463934,162310,65338,2067666624,1518196116,20.95,20.39,24.6,24.6,0.9,0.88,2.3,3.13
-19950,10,005,10005,5495,2237,145879488,145874200,6951,2810,193471740,193463934,197145,123036,3098637571,2424432871,79.05,79.61,75.4,75.4,2.79,1.82,4.71,6.02
-19951,10,005,10005,1733,787,26556911,26187882,1733,787,26556911,26187882,197145,123036,3098637571,2424432871,100,100,100,100,0.88,0.64,0.86,1.08
-19952,10,001,10001,10125,4165,224988600,224697293,10220,4201,228305032,228013725,162310,65338,2067666624,1518196116,99.07,99.14,98.55,98.55,6.24,6.37,10.88,14.8
-19952,10,005,10005,95,36,3316432,3316432,10220,4201,228305032,228013725,197145,123036,3098637571,2424432871,0.93,0.86,1.45,1.45,0.05,0.03,0.11,0.14
-19953,10,001,10001,4386,1694,75913562,75892243,4386,1694,75913562,75892243,162310,65338,2067666624,1518196116,100,100,100,100,2.7,2.59,3.67,5
-19954,10,001,10001,1464,619,22462257,22352178,1464,619,22462257,22352178,162310,65338,2067666624,1518196116,100,100,100,100,0.9,0.95,1.09,1.47
-19955,10,001,10001,72,23,133154,133154,72,23,133154,133154,162310,65338,2067666624,1518196116,100,100,100,100,0.04,0.04,0.01,0.01
-19956,10,005,10005,15500,6419,264402348,261786215,15500,6419,264402348,261786215,197145,123036,3098637571,2424432871,100,100,100,100,7.86,5.22,8.53,10.8
-19958,10,005,10005,19650,15089,152169728,127069786,19650,15089,152169728,127069786,197145,123036,3098637571,2424432871,100,100,100,100,9.97,12.26,4.91,5.24
-19960,10,005,10005,6295,2588,77241659,76518554,6295,2588,77241659,76518554,197145,123036,3098637571,2424432871,100,100,100,100,3.19,2.1,2.49,3.16
-19962,10,001,10001,10206,3821,37609220,37591415,10206,3821,37609220,37591415,162310,65338,2067666624,1518196116,100,100,100,100,6.29,5.85,1.82,2.48
-19963,10,001,10001,7849,3403,154141835,142918595,19206,8507,297357927,276214766,162310,65338,2067666624,1518196116,40.87,40,51.84,51.74,4.84,5.21,7.45,9.41
-19963,10,005,10005,11357,5104,143216092,133296171,19206,8507,297357927,276214766,197145,123036,3098637571,2424432871,59.13,60,48.16,48.26,5.76,4.15,4.62,5.5
-19964,10,001,10001,1340,514,24726062,24601677,1340,514,24726062,24601677,162310,65338,2067666624,1518196116,100,100,100,100,0.83,0.79,1.2,1.62
-19966,10,005,10005,24601,16163,245642385,224234158,24601,16163,245642385,224234158,197145,123036,3098637571,2424432871,100,100,100,100,12.48,13.14,7.93,9.25
-19967,10,005,10005,354,268,3725917,3725917,354,268,3725917,3725917,197145,123036,3098637571,2424432871,100,100,100,100,0.18,0.22,0.12,0.15
-19968,10,005,10005,9549,4989,164596416,162410878,9549,4989,164596416,162410878,197145,123036,3098637571,2424432871,100,100,100,100,4.84,4.05,5.31,6.7
-19970,10,005,10005,6170,6934,33799126,25093019,6170,6934,33799126,25093019,197145,123036,3098637571,2424432871,100,100,100,100,3.13,5.64,1.09,1.04
-19971,10,005,10005,12385,15406,71951880,42848729,12385,15406,71951880,42848729,197145,123036,3098637571,2424432871,100,100,100,100,6.28,12.52,2.32,1.77
-19973,10,005,10005,23838,9902,208682550,203730949,23838,9902,208682550,203730949,197145,123036,3098637571,2424432871,100,100,100,100,12.09,8.05,6.73,8.4
-19975,10,005,10005,8253,6664,75063219,70499498,8253,6664,75063219,70499498,197145,123036,3098637571,2424432871,100,100,100,100,4.19,5.42,2.42,2.91
-19977,10,001,10001,18630,7349,182326162,167940215,22984,8011,229753785,215286331,162310,65338,2067666624,1518196116,81.06,91.74,79.36,78.01,11.48,11.25,8.82,11.06
-19977,10,003,10003,4354,662,47427623,47346116,22984,8011,229753785,215286331,538479,217511,1279460557,1104074798,18.94,8.26,20.64,21.99,0.81,0.3,3.71,4.29
-19979,10,001,10001,632,256,5235188,5235188,632,256,5235188,5235188,162310,65338,2067666624,1518196116,100,100,100,100,0.39,0.39,0.25,0.34
-20001,11,001,11001,38551,18751,5804197,5644604,38551,18751,5804197,5644604,601723,296719,176999650,158114680,100,100,100,100,6.41,6.32,3.28,3.57
-20002,11,001,11001,52370,26166,14195549,13616347,52370,26166,14195549,13616347,601723,296719,176999650,158114680,100,100,100,100,8.7,8.82,8.02,8.61
-20003,11,001,11001,26454,13216,6478316,5806697,26454,13216,6478316,5806697,601723,296719,176999650,158114680,100,100,100,100,4.4,4.45,3.66,3.67
-20004,11,001,11001,1622,1543,901753,901753,1622,1543,901753,901753,601723,296719,176999650,158114680,100,100,100,100,0.27,0.52,0.51,0.57
-20005,11,001,11001,12775,9218,1103659,1103659,12775,9218,1103659,1103659,601723,296719,176999650,158114680,100,100,100,100,2.12,3.11,0.62,0.7
-20006,11,001,11001,3227,940,878122,878122,3227,940,878122,878122,601723,296719,176999650,158114680,100,100,100,100,0.54,0.32,0.5,0.56
-20007,11,001,11001,26866,13849,9060828,7787301,26866,13849,9060828,7787301,601723,296719,176999650,158114680,100,100,100,100,4.46,4.67,5.12,4.93
-20008,11,001,11001,27525,17244,7898155,7865022,27525,17244,7898155,7865022,601723,296719,176999650,158114680,100,100,100,100,4.57,5.81,4.46,4.97
-20009,11,001,11001,47992,29093,3431536,3405906,47992,29093,3431536,3405906,601723,296719,176999650,158114680,100,100,100,100,7.98,9.8,1.94,2.15
-20010,11,001,11001,30138,13861,2824131,2807752,30138,13861,2824131,2807752,601723,296719,176999650,158114680,100,100,100,100,5.01,4.67,1.6,1.78
-20011,11,001,11001,58536,25082,12738136,12631549,58536,25082,12738136,12631549,601723,296719,176999650,158114680,100,100,100,100,9.73,8.45,7.2,7.99
-20012,11,001,11001,13414,6058,5925258,5857663,13414,6058,5925258,5857663,601723,296719,176999650,158114680,100,100,100,100,2.23,2.04,3.35,3.7
-20015,11,001,11001,15332,6756,8952637,8940121,15332,6756,8952637,8940121,601723,296719,176999650,158114680,100,100,100,100,2.55,2.28,5.06,5.65
-20016,11,001,11001,32519,14842,11892104,11499363,32519,14842,11892104,11499363,601723,296719,176999650,158114680,100,100,100,100,5.4,5,6.72,7.27
-20017,11,001,11001,17735,7729,5723539,5722793,17735,7729,5723539,5722793,601723,296719,176999650,158114680,100,100,100,100,2.95,2.6,3.23,3.62
-20018,11,001,11001,16894,7652,7841992,7810833,16894,7652,7841992,7810833,601723,296719,176999650,158114680,100,100,100,100,2.81,2.58,4.43,4.94
-20019,11,001,11001,54358,25109,16785352,15980842,54358,25109,16785352,15980842,601723,296719,176999650,158114680,100,100,100,100,9.03,8.46,9.48,10.11
-20020,11,001,11001,49864,22753,12329572,11948308,49864,22753,12329572,11948308,601723,296719,176999650,158114680,100,100,100,100,8.29,7.67,6.97,7.56
-20024,11,001,11001,11510,7732,8773595,6770280,11510,7732,8773595,6770280,601723,296719,176999650,158114680,100,100,100,100,1.91,2.61,4.96,4.28
-20032,11,001,11001,35653,15681,13800113,13604123,35653,15681,13800113,13604123,601723,296719,176999650,158114680,100,100,100,100,5.93,5.28,7.8,8.6
-20036,11,001,11001,5435,4269,862180,862180,5435,4269,862180,862180,601723,296719,176999650,158114680,100,100,100,100,0.9,1.44,0.49,0.55
-20037,11,001,11001,14642,8154,2520640,1668857,14642,8154,2520640,1668857,601723,296719,176999650,158114680,100,100,100,100,2.43,2.75,1.42,1.06
-20045,11,001,11001,0,0,27766,27766,0,0,27766,27766,601723,296719,176999650,158114680,0,0,100,100,0,0,0.02,0.02
-20052,11,001,11001,470,6,7062,7062,470,6,7062,7062,601723,296719,176999650,158114680,100,100,100,100,0.08,0,0,0
-20053,11,001,11001,0,0,85108,85108,0,0,85108,85108,601723,296719,176999650,158114680,0,0,100,100,0,0,0.05,0.05
-20057,11,001,11001,3888,0,434173,434173,3888,0,434173,434173,601723,296719,176999650,158114680,100,0,100,100,0.65,0,0.25,0.27
-20064,11,001,11001,1890,1,506097,506097,1890,1,506097,506097,601723,296719,176999650,158114680,100,100,100,100,0.31,0,0.29,0.32
-20105,51,107,51107,11315,3855,97133227,96165403,11315,3855,97133227,96165403,312311,109442,1349742374,1335297272,100,100,100,100,3.62,3.52,7.2,7.2
-20106,51,047,51047,3158,1142,40381983,40216870,5142,2040,156778108,156013615,46689,17657,990782908,982210871,61.42,55.98,25.76,25.78,6.76,6.47,4.08,4.09
-20106,51,061,51061,190,81,15033095,14942038,5142,2040,156778108,156013615,65203,25600,1686665365,1676885536,3.7,3.97,9.59,9.58,0.29,0.32,0.89,0.89
-20106,51,157,51157,1794,817,101363030,100854707,5142,2040,156778108,156013615,7373,3839,691593651,689525028,34.89,40.05,64.65,64.64,24.33,21.28,14.66,14.63
-20109,51,153,51153,37161,13522,53460629,52984569,37265,13584,53545074,53069014,402002,137115,902545527,871276091,99.72,99.54,99.84,99.84,9.24,9.86,5.92,6.08
-20109,51,683,51683,104,62,84445,84445,37265,13584,53545074,53069014,37821,13123,25739402,25590863,0.28,0.46,0.16,0.16,0.27,0.47,0.33,0.33
-20110,51,153,51153,6159,1653,7223878,7197521,43876,14714,32878835,32703939,402002,137115,902545527,871276091,14.04,11.23,21.97,22.01,1.53,1.21,0.8,0.83
-20110,51,683,51683,37717,13061,25654957,25506418,43876,14714,32878835,32703939,37821,13123,25739402,25590863,85.96,88.77,78.03,77.99,99.73,99.53,99.67,99.67
-20111,51,153,51153,16317,5170,36686666,35605737,30590,10074,43251683,42168131,402002,137115,902545527,871276091,53.34,51.32,84.82,84.44,4.06,3.77,4.06,4.09
-20111,51,685,51685,14273,4904,6565017,6562394,30590,10074,43251683,42168131,14273,4904,6565017,6562394,46.66,48.68,15.18,15.56,100,100,100,100
-20112,51,153,51153,25833,8448,102646576,101267184,25833,8448,102646576,101267184,402002,137115,902545527,871276091,100,100,100,100,6.43,6.16,11.37,11.62
-20115,51,061,51061,5838,2522,247728257,246556232,5838,2522,247728257,246556232,65203,25600,1686665365,1676885536,100,100,100,100,8.95,9.85,14.69,14.7
-20117,51,061,51061,169,109,12805708,12744410,2693,1469,117167843,115874751,65203,25600,1686665365,1676885536,6.28,7.42,10.93,11,0.26,0.43,0.76,0.76
-20117,51,107,51107,2524,1360,104362135,103130341,2693,1469,117167843,115874751,312311,109442,1349742374,1335297272,93.72,92.58,89.07,89,0.81,1.24,7.73,7.72
-20118,51,107,51107,7,3,26677,26677,7,3,26677,26677,312311,109442,1349742374,1335297272,100,100,100,100,0,0,0,0
-20119,51,061,51061,3946,1515,166496775,165400790,3946,1515,166496775,165400790,65203,25600,1686665365,1676885536,100,100,100,100,6.05,5.92,9.87,9.86
-20120,51,059,51059,40677,14210,42840477,42158922,40695,14217,45180005,44481402,1081726,407998,1052171762,1012604465,99.96,99.95,94.82,94.78,3.76,3.48,4.07,4.16
-20120,51,107,51107,18,7,2339528,2322480,40695,14217,45180005,44481402,312311,109442,1349742374,1335297272,0.04,0.05,5.18,5.22,0.01,0.01,0.17,0.17
-20121,51,059,51059,27988,10357,23473867,22384742,27988,10357,23473867,22384742,1081726,407998,1052171762,1012604465,100,100,100,100,2.59,2.54,2.23,2.21
-20124,51,059,51059,14857,5052,56758423,55085565,14857,5052,56758423,55085565,1081726,407998,1052171762,1012604465,100,100,100,100,1.37,1.24,5.39,5.44
-20129,51,107,51107,618,216,8349552,8318702,618,216,8349552,8318702,312311,109442,1349742374,1335297272,100,100,100,100,0.2,0.2,0.62,0.62
-20130,51,043,51043,218,121,16002894,15996107,281,161,21543149,21492906,14034,6235,461956291,456297605,77.58,75.16,74.28,74.43,1.55,1.94,3.46,3.51
-20130,51,061,51061,63,40,5540255,5496799,281,161,21543149,21492906,65203,25600,1686665365,1676885536,22.42,24.84,25.72,25.57,0.1,0.16,0.33,0.33
-20132,51,107,51107,15900,5466,216664863,214735943,15900,5466,216664863,214735943,312311,109442,1349742374,1335297272,100,100,100,100,5.09,4.99,16.05,16.08
-20135,51,043,51043,1786,898,63333956,61944129,2834,1349,117069175,115422750,14034,6235,461956291,456297605,63.02,66.57,54.1,53.67,12.73,14.4,13.71,13.58
-20135,51,107,51107,908,395,40146801,39890203,2834,1349,117069175,115422750,312311,109442,1349742374,1335297272,32.04,29.28,34.29,34.56,0.29,0.36,2.97,2.99
-20135,54,037,54037,140,56,13588418,13588418,2834,1349,117069175,115422750,53498,22037,548225759,542951079,4.94,4.15,11.61,11.77,0.26,0.25,2.48,2.5
-20136,51,153,51153,28498,8483,38634926,37985987,28498,8483,38634926,37985987,402002,137115,902545527,871276091,100,100,100,100,7.09,6.19,4.28,4.36
-20137,51,061,51061,1024,414,31633793,31474209,1510,580,44779875,44574607,65203,25600,1686665365,1676885536,67.81,71.38,70.64,70.61,1.57,1.62,1.88,1.88
-20137,51,153,51153,486,166,13146082,13100398,1510,580,44779875,44574607,402002,137115,902545527,871276091,32.19,28.62,29.36,29.39,0.12,0.12,1.46,1.5
-20139,51,061,51061,217,100,8493454,8476253,217,100,8493454,8476253,65203,25600,1686665365,1676885536,100,100,100,100,0.33,0.39,0.5,0.51
-20141,51,107,51107,6131,2116,71277869,70525657,6131,2116,71277869,70525657,312311,109442,1349742374,1335297272,100,100,100,100,1.96,1.93,5.28,5.28
-20143,51,153,51153,1216,408,20182109,19987138,1216,408,20182109,19987138,402002,137115,902545527,871276091,100,100,100,100,0.3,0.3,2.24,2.29
-20144,51,061,51061,1012,496,104579520,104135326,1012,496,104579520,104135326,65203,25600,1686665365,1676885536,100,100,100,100,1.55,1.94,6.2,6.21
-20147,51,107,51107,54086,19719,52295239,51473450,54086,19719,52295239,51473450,312311,109442,1349742374,1335297272,100,100,100,100,17.32,18.02,3.87,3.85
-20148,51,107,51107,28310,9170,43767118,42153348,28310,9170,43767118,42153348,312311,109442,1349742374,1335297272,100,100,100,100,9.06,8.38,3.24,3.16
-20151,51,059,51059,21374,6828,40587334,40238355,21374,6828,40587334,40238355,1081726,407998,1052171762,1012604465,100,100,100,100,1.98,1.67,3.86,3.97
-20152,51,107,51107,24946,7876,65264361,64475266,24946,7876,65264361,64475266,312311,109442,1349742374,1335297272,100,100,100,100,7.99,7.2,4.84,4.83
-20155,51,153,51153,29411,10357,77261291,74850910,29411,10357,77261291,74850910,402002,137115,902545527,871276091,100,100,100,100,7.32,7.55,8.56,8.59
-20158,51,107,51107,4288,1588,37917333,37695398,4288,1588,37917333,37695398,312311,109442,1349742374,1335297272,100,100,100,100,1.37,1.45,2.81,2.82
-20164,51,107,51107,37747,12565,19320272,19193264,37747,12565,19320272,19193264,312311,109442,1349742374,1335297272,100,100,100,100,12.09,11.48,1.43,1.44
-20165,51,107,51107,32383,11774,26020311,25410814,32383,11774,26020311,25410814,312311,109442,1349742374,1335297272,100,100,100,100,10.37,10.76,1.93,1.9
-20166,51,107,51107,9521,3464,45759022,45191352,9521,3464,45759022,45191352,312311,109442,1349742374,1335297272,100,100,100,100,3.05,3.17,3.39,3.38
-20169,51,153,51153,19801,6746,84029527,83476681,19801,6746,84029527,83476681,402002,137115,902545527,871276091,100,100,100,100,4.93,4.92,9.31,9.58
-20170,51,059,51059,41236,13713,22793020,22695973,41236,13713,22793020,22695973,1081726,407998,1052171762,1012604465,100,100,100,100,3.81,3.36,2.17,2.24
-20171,51,059,51059,45887,16823,31539971,31347306,45887,16823,31539971,31347306,1081726,407998,1052171762,1012604465,100,100,100,100,4.24,4.12,3,3.1
-20175,51,107,51107,27169,10083,163676646,161750462,27169,10083,163676646,161750462,312311,109442,1349742374,1335297272,100,100,100,100,8.7,9.21,12.13,12.11
-20176,51,107,51107,46506,16166,148685000,147566009,46506,16166,148685000,147566009,312311,109442,1349742374,1335297272,100,100,100,100,14.89,14.77,11.02,11.05
-20180,51,107,51107,6549,2395,111308174,110690177,6549,2395,111308174,110690177,312311,109442,1349742374,1335297272,100,100,100,100,2.1,2.19,8.25,8.29
-20181,51,061,51061,775,299,11832666,11774207,7877,2758,155658256,153267360,65203,25600,1686665365,1676885536,9.84,10.84,7.6,7.68,1.19,1.17,0.7,0.7
-20181,51,153,51153,7102,2459,143825590,141493153,7877,2758,155658256,153267360,402002,137115,902545527,871276091,90.16,89.16,92.4,92.32,1.77,1.79,15.94,16.24
-20184,51,061,51061,464,265,43691183,43475278,839,471,103346779,102613083,65203,25600,1686665365,1676885536,55.3,56.26,42.28,42.37,0.71,1.04,2.59,2.59
-20184,51,107,51107,375,206,59655596,59137805,839,471,103346779,102613083,312311,109442,1349742374,1335297272,44.7,43.74,57.72,57.63,0.12,0.19,4.42,4.43
-20186,51,047,51047,14,9,3373323,3344543,14557,5977,167868331,166908469,46689,17657,990782908,982210871,0.1,0.15,2.01,2,0.03,0.05,0.34,0.34
-20186,51,061,51061,14543,5968,164495008,163563926,14557,5977,167868331,166908469,65203,25600,1686665365,1676885536,99.9,99.85,97.99,98,22.3,23.31,9.75,9.75
-20187,51,061,51061,15252,5343,127066840,125588620,15252,5343,127066840,125588620,65203,25600,1686665365,1676885536,100,100,100,100,23.39,20.87,7.53,7.49
-20190,51,059,51059,17529,9231,11940658,11681387,17529,9231,11940658,11681387,1081726,407998,1052171762,1012604465,100,100,100,100,1.62,2.26,1.13,1.15
-20191,51,059,51059,29128,12071,21763138,21299805,29128,12071,21763138,21299805,1081726,407998,1052171762,1012604465,100,100,100,100,2.69,2.96,2.07,2.1
-20194,51,059,51059,13165,5900,8320068,8177771,13165,5900,8320068,8177771,1081726,407998,1052171762,1012604465,100,100,100,100,1.22,1.45,0.79,0.81
-20197,51,107,51107,1840,661,35114927,34787023,1840,661,35114927,34787023,312311,109442,1349742374,1335297272,100,100,100,100,0.59,0.6,2.6,2.61
-20198,51,061,51061,2492,1229,189397232,188600032,2492,1229,189397232,188600032,65203,25600,1686665365,1676885536,100,100,100,100,3.82,4.8,11.23,11.25
-20202,11,001,11001,0,0,18721,18721,0,0,18721,18721,601723,296719,176999650,158114680,0,0,100,100,0,0,0.01,0.01
-20204,11,001,11001,0,0,14638,14638,0,0,14638,14638,601723,296719,176999650,158114680,0,0,100,100,0,0,0.01,0.01
-20228,11,001,11001,0,0,81628,81628,0,0,81628,81628,601723,296719,176999650,158114680,0,0,100,100,0,0,0.05,0.05
-20230,11,001,11001,0,0,55495,55495,0,0,55495,55495,601723,296719,176999650,158114680,0,0,100,100,0,0,0.03,0.04
-20240,11,001,11001,0,0,31673,31673,0,0,31673,31673,601723,296719,176999650,158114680,0,0,100,100,0,0,0.02,0.02
-20245,11,001,11001,0,0,64474,64474,0,0,64474,64474,601723,296719,176999650,158114680,0,0,100,100,0,0,0.04,0.04
-20260,11,001,11001,0,0,44402,44402,0,0,44402,44402,601723,296719,176999650,158114680,0,0,100,100,0,0,0.03,0.03
-20307,11,001,11001,353,0,342547,342486,353,0,342547,342486,601723,296719,176999650,158114680,100,0,100,100,0.06,0,0.19,0.22
-20317,11,001,11001,903,1014,1185529,1180231,903,1014,1185529,1180231,601723,296719,176999650,158114680,100,100,100,100,0.15,0.34,0.67,0.75
-20319,11,001,11001,84,0,641887,361932,84,0,641887,361932,601723,296719,176999650,158114680,100,0,100,100,0.01,0,0.36,0.23
-20373,11,001,11001,131,0,938611,936803,131,0,938611,936803,601723,296719,176999650,158114680,100,0,100,100,0.02,0,0.53,0.59
-20390,11,001,11001,584,0,10935,10935,584,0,10935,10935,601723,296719,176999650,158114680,100,0,100,100,0.1,0,0.01,0.01
-20405,11,001,11001,0,0,33011,33011,0,0,33011,33011,601723,296719,176999650,158114680,0,0,100,100,0,0,0.02,0.02
-20418,11,001,11001,0,0,29418,29418,0,0,29418,29418,601723,296719,176999650,158114680,0,0,100,100,0,0,0.02,0.02
-20427,11,001,11001,0,0,17366,17366,0,0,17366,17366,601723,296719,176999650,158114680,0,0,100,100,0,0,0.01,0.01
-20506,11,001,11001,0,0,49203,49203,0,0,49203,49203,601723,296719,176999650,158114680,0,0,100,100,0,0,0.03,0.03
-20510,11,001,11001,0,0,30810,30810,0,0,30810,30810,601723,296719,176999650,158114680,0,0,100,100,0,0,0.02,0.02
-20520,11,001,11001,0,0,83728,83728,0,0,83728,83728,601723,296719,176999650,158114680,0,0,100,100,0,0,0.05,0.05
-20535,11,001,11001,8,0,12919,12919,8,0,12919,12919,601723,296719,176999650,158114680,100,0,100,100,0,0,0.01,0.01
-20540,11,001,11001,0,0,86892,86892,0,0,86892,86892,601723,296719,176999650,158114680,0,0,100,100,0,0,0.05,0.05
-20551,11,001,11001,0,0,23513,23513,0,0,23513,23513,601723,296719,176999650,158114680,0,0,100,100,0,0,0.01,0.01
-20553,11,001,11001,0,0,25135,25135,0,0,25135,25135,601723,296719,176999650,158114680,0,0,100,100,0,0,0.01,0.02
-20560,11,001,11001,0,0,51472,51472,0,0,51472,51472,601723,296719,176999650,158114680,0,0,100,100,0,0,0.03,0.03
-20565,11,001,11001,0,0,173126,173126,0,0,173126,173126,601723,296719,176999650,158114680,0,0,100,100,0,0,0.1,0.11
-20566,11,001,11001,0,0,102187,102187,0,0,102187,102187,601723,296719,176999650,158114680,0,0,100,100,0,0,0.06,0.06
-20593,11,001,11001,0,0,78201,78201,0,0,78201,78201,601723,296719,176999650,158114680,0,0,100,100,0,0,0.04,0.05
-20601,24,017,24017,23867,8602,105128653,104779243,24156,8722,116022950,115635266,146551,54963,1665279509,1185563933,98.8,98.62,90.61,90.61,16.29,15.65,6.31,8.84
-20601,24,033,24033,289,120,10894297,10856023,24156,8722,116022950,115635266,863420,328182,1291979801,1250163582,1.2,1.38,9.39,9.39,0.03,0.04,0.84,0.87
-20602,24,017,24017,24955,9736,36183485,35830723,24955,9736,36183485,35830723,146551,54963,1665279509,1185563933,100,100,100,100,17.03,17.71,2.17,3.02
-20603,24,017,24017,28967,10317,44458993,44239637,28967,10317,44458993,44239637,146551,54963,1665279509,1185563933,100,100,100,100,19.77,18.77,2.67,3.73
-20606,24,037,24037,431,230,8749771,7501011,431,230,8749771,7501011,105151,41282,1979402010,925092041,100,100,100,100,0.41,0.56,0.44,0.81
-20607,24,017,24017,43,24,1844459,1844459,9802,3504,54805811,54357590,146551,54963,1665279509,1185563933,0.44,0.68,3.37,3.39,0.03,0.04,0.11,0.16
-20607,24,033,24033,9759,3480,52961352,52513131,9802,3504,54805811,54357590,863420,328182,1291979801,1250163582,99.56,99.32,96.63,96.61,1.13,1.06,4.1,4.2
-20608,24,033,24033,919,426,50913393,45583064,919,426,50913393,45583064,863420,328182,1291979801,1250163582,100,100,100,100,0.11,0.13,3.94,3.65
-20609,24,037,24037,1120,554,32326029,25723294,1120,554,32326029,25723294,105151,41282,1979402010,925092041,100,100,100,100,1.07,1.34,1.63,2.78
-20611,24,017,24017,1078,413,18277267,18243786,1078,413,18277267,18243786,146551,54963,1665279509,1185563933,100,100,100,100,0.74,0.75,1.1,1.54
-20612,24,017,24017,261,142,1942313,604744,261,142,1942313,604744,146551,54963,1665279509,1185563933,100,100,100,100,0.18,0.26,0.12,0.05
-20613,24,017,24017,1577,543,15426248,15426248,11860,4424,199548197,195821362,146551,54963,1665279509,1185563933,13.3,12.27,7.73,7.88,1.08,0.99,0.93,1.3
-20613,24,033,24033,10283,3881,184121949,180395114,11860,4424,199548197,195821362,863420,328182,1291979801,1250163582,86.7,87.73,92.27,92.12,1.19,1.18,14.25,14.43
-20615,24,009,24009,405,204,2104138,1883242,405,204,2104138,1883242,88737,33780,893730716,552061078,100,100,100,100,0.46,0.6,0.24,0.34
-20616,24,017,24017,5857,2203,29114816,25397165,5857,2203,29114816,25397165,146551,54963,1665279509,1185563933,100,100,100,100,4,4.01,1.75,2.14
-20617,24,017,24017,781,301,16967134,16949455,781,301,16967134,16949455,146551,54963,1665279509,1185563933,100,100,100,100,0.53,0.55,1.02,1.43
-20618,24,037,24037,607,280,16932120,14439547,607,280,16932120,14439547,105151,41282,1979402010,925092041,100,100,100,100,0.58,0.68,0.86,1.56
-20619,24,037,24037,10503,4366,44231776,40517011,10503,4366,44231776,40517011,105151,41282,1979402010,925092041,100,100,100,100,9.99,10.58,2.23,4.38
-20620,24,037,24037,1443,557,10263700,10023159,1443,557,10263700,10023159,105151,41282,1979402010,925092041,100,100,100,100,1.37,1.35,0.52,1.08
-20621,24,037,24037,1373,777,39997496,35945451,1373,777,39997496,35945451,105151,41282,1979402010,925092041,100,100,100,100,1.31,1.88,2.02,3.89
-20622,24,017,24017,3130,987,82575827,81294489,4900,1485,98466681,96821277,146551,54963,1665279509,1185563933,63.88,66.46,83.86,83.96,2.14,1.8,4.96,6.86
-20622,24,037,24037,1770,498,15890854,15526788,4900,1485,98466681,96821277,105151,41282,1979402010,925092041,36.12,33.54,16.14,16.04,1.68,1.21,0.8,1.68
-20623,24,033,24033,2744,892,5006407,4987134,2744,892,5006407,4987134,863420,328182,1291979801,1250163582,100,100,100,100,0.32,0.27,0.39,0.4
-20624,24,037,24037,1282,487,33608715,32369763,1282,487,33608715,32369763,105151,41282,1979402010,925092041,100,100,100,100,1.22,1.18,1.7,3.5
-20625,24,017,24017,1062,609,1534517,1244964,1062,609,1534517,1244964,146551,54963,1665279509,1185563933,100,100,100,100,0.72,1.11,0.09,0.11
-20626,24,037,24037,373,230,7133146,3135030,373,230,7133146,3135030,105151,41282,1979402010,925092041,100,100,100,100,0.35,0.56,0.36,0.34
-20628,24,037,24037,594,271,31808902,17224678,594,271,31808902,17224678,105151,41282,1979402010,925092041,100,100,100,100,0.56,0.66,1.61,1.86
-20629,24,009,24009,535,341,1565496,1116993,535,341,1565496,1116993,88737,33780,893730716,552061078,100,100,100,100,0.6,1.01,0.18,0.2
-20630,24,037,24037,348,174,21313438,14747899,348,174,21313438,14747899,105151,41282,1979402010,925092041,100,100,100,100,0.33,0.42,1.08,1.59
-20632,24,017,24017,347,131,19460150,19035978,347,131,19460150,19035978,146551,54963,1665279509,1185563933,100,100,100,100,0.24,0.24,1.17,1.61
-20634,24,037,24037,5927,2375,18658602,17757492,5927,2375,18658602,17757492,105151,41282,1979402010,925092041,100,100,100,100,5.64,5.75,0.94,1.92
-20636,24,037,24037,9937,3796,116506246,95184610,9937,3796,116506246,95184610,105151,41282,1979402010,925092041,100,100,100,100,9.45,9.2,5.89,10.29
-20637,24,017,24017,5423,1882,83586971,80158456,5423,1882,83586971,80158456,146551,54963,1665279509,1185563933,100,100,100,100,3.7,3.42,5.02,6.76
-20639,24,009,24009,14227,4832,113389925,108425050,14227,4832,113389925,108425050,88737,33780,893730716,552061078,100,100,100,100,16.03,14.3,12.69,19.64
-20640,24,017,24017,10438,4089,126401505,107965919,10438,4089,126401505,107965919,146551,54963,1665279509,1185563933,100,100,100,100,7.12,7.44,7.59,9.11
-20645,24,017,24017,857,386,9761671,5686073,857,386,9761671,5686073,146551,54963,1665279509,1185563933,100,100,100,100,0.58,0.7,0.59,0.48
-20646,24,017,24017,18890,7015,215434179,213580764,18890,7015,215434179,213580764,146551,54963,1665279509,1185563933,100,100,100,100,12.89,12.76,12.94,18.02
-20650,24,037,24037,13717,5412,187953914,155914556,13717,5412,187953914,155914556,105151,41282,1979402010,925092041,100,100,100,100,13.05,13.11,9.5,16.85
-20653,24,037,24037,24481,10066,93487725,84244771,24481,10066,93487725,84244771,105151,41282,1979402010,925092041,100,100,100,100,23.28,24.38,4.72,9.11
-20657,24,009,24009,20483,7765,100386785,77903257,20483,7765,100386785,77903257,88737,33780,893730716,552061078,100,100,100,100,23.08,22.99,11.23,14.11
-20658,24,017,24017,854,377,7808158,7793913,854,377,7808158,7793913,146551,54963,1665279509,1185563933,100,100,100,100,0.58,0.69,0.47,0.66
-20659,24,017,24017,368,104,10737133,10462337,23498,8150,272117227,242995087,146551,54963,1665279509,1185563933,1.57,1.28,3.95,4.31,0.25,0.19,0.64,0.88
-20659,24,037,24037,23130,8046,261380094,232532750,23498,8150,272117227,242995087,105151,41282,1979402010,925092041,98.43,98.72,96.05,95.69,22,19.49,13.21,25.14
-20660,24,037,24037,97,32,2358430,2358430,97,32,2358430,2358430,105151,41282,1979402010,925092041,100,100,100,100,0.09,0.08,0.12,0.25
-20662,24,017,24017,2934,1229,172926797,147909322,2934,1229,172926797,147909322,146551,54963,1665279509,1185563933,100,100,100,100,2,2.24,10.38,12.48
-20664,24,017,24017,2987,1384,120635943,106512338,2987,1384,120635943,106512338,146551,54963,1665279509,1185563933,100,100,100,100,2.04,2.52,7.24,8.98
-20667,24,037,24037,494,222,6176991,5225924,494,222,6176991,5225924,105151,41282,1979402010,925092041,100,100,100,100,0.47,0.54,0.31,0.56
-20670,24,037,24037,1014,225,39068046,24425828,1014,225,39068046,24425828,105151,41282,1979402010,925092041,100,100,100,100,0.96,0.55,1.97,2.64
-20674,24,037,24037,830,511,15549709,5149701,830,511,15549709,5149701,105151,41282,1979402010,925092041,100,100,100,100,0.79,1.24,0.79,0.56
-20675,24,017,24017,1671,613,15647644,15647644,1671,613,15647644,15647644,146551,54963,1665279509,1185563933,100,100,100,100,1.14,1.12,0.94,1.32
-20676,24,009,24009,3871,1545,45864629,42872913,3871,1545,45864629,42872913,88737,33780,893730716,552061078,100,100,100,100,4.36,4.57,5.13,7.77
-20677,24,017,24017,2322,878,44929781,39910132,2322,878,44929781,39910132,146551,54963,1665279509,1185563933,100,100,100,100,1.58,1.6,2.7,3.37
-20678,24,009,24009,11045,4121,131728263,110719859,11045,4121,131728263,110719859,88737,33780,893730716,552061078,100,100,100,100,12.45,12.2,14.74,20.06
-20680,24,037,24037,1119,585,20728131,15940938,1119,585,20728131,15940938,105151,41282,1979402010,925092041,100,100,100,100,1.06,1.42,1.05,1.72
-20684,24,037,24037,1125,503,27311047,23553634,1125,503,27311047,23553634,105151,41282,1979402010,925092041,100,100,100,100,1.07,1.22,1.38,2.55
-20685,24,009,24009,6471,2499,80811430,57649594,6471,2499,80811430,57649594,88737,33780,893730716,552061078,100,100,100,100,7.29,7.4,9.04,10.44
-20686,24,037,24037,1332,38,2948992,2818991,1332,38,2948992,2818991,105151,41282,1979402010,925092041,100,100,100,100,1.27,0.09,0.15,0.3
-20687,24,037,24037,313,244,36330605,15402392,313,244,36330605,15402392,105151,41282,1979402010,925092041,100,100,100,100,0.3,0.59,1.84,1.66
-20688,24,009,24009,1828,1188,9515716,3708374,1828,1188,9515716,3708374,88737,33780,893730716,552061078,100,100,100,100,2.06,3.52,1.06,0.67
-20689,24,009,24009,1694,579,20216679,20155032,1694,579,20216679,20155032,88737,33780,893730716,552061078,100,100,100,100,1.91,1.71,2.26,3.65
-20690,24,037,24037,740,369,6216143,4685435,740,369,6216143,4685435,105151,41282,1979402010,925092041,100,100,100,100,0.7,0.89,0.31,0.51
-20692,24,037,24037,1051,434,23632757,22533055,1051,434,23632757,22533055,105151,41282,1979402010,925092041,100,100,100,100,1,1.05,1.19,2.44
-20693,24,017,24017,1088,424,65970622,52285009,1088,424,65970622,52285009,146551,54963,1665279509,1185563933,100,100,100,100,0.74,0.77,3.96,4.41
-20695,24,017,24017,6794,2574,32894618,32761135,6794,2574,32894618,32761135,146551,54963,1665279509,1185563933,100,100,100,100,4.64,4.68,1.98,2.76
-20701,24,003,24003,0,0,1927901,1927901,2,1,3435084,3428521,537656,212562,1522395776,1074590684,0,0,56.12,56.23,0,0,0.13,0.18
-20701,24,027,24027,2,1,1507183,1500620,2,1,3435084,3428521,287085,109282,656288081,649416399,100,100,43.88,43.77,0,0,0.23,0.23
-20705,24,031,24031,169,101,462876,462876,26188,9281,41196301,40930151,971777,375905,1312988649,1272343169,0.65,1.09,1.12,1.13,0.02,0.03,0.04,0.04
-20705,24,033,24033,26019,9180,40733425,40467275,26188,9281,41196301,40930151,863420,328182,1291979801,1250163582,99.35,98.91,98.88,98.87,3.01,2.8,3.15,3.24
-20706,24,033,24033,38692,13065,26964340,26832451,38692,13065,26964340,26832451,863420,328182,1291979801,1250163582,100,100,100,100,4.48,3.98,2.09,2.15
-20707,24,031,24031,298,86,1926398,1826071,31538,13576,29377515,28896187,971777,375905,1312988649,1272343169,0.94,0.63,6.56,6.32,0.03,0.02,0.15,0.14
-20707,24,033,24033,31240,13490,27451117,27070116,31538,13576,29377515,28896187,863420,328182,1291979801,1250163582,99.06,99.37,93.44,93.68,3.62,4.11,2.12,2.17
-20708,24,033,24033,25546,10733,37029781,36245211,25546,10733,37029781,36245211,863420,328182,1291979801,1250163582,100,100,100,100,2.96,3.27,2.87,2.9
-20710,24,033,24033,9313,3882,2855237,2847143,9313,3882,2855237,2847143,863420,328182,1291979801,1250163582,100,100,100,100,1.08,1.18,0.22,0.23
-20711,24,003,24003,6643,2710,89472218,88051334,6643,2710,89472218,88051334,537656,212562,1522395776,1074590684,100,100,100,100,1.24,1.27,5.88,8.19
-20712,24,033,24033,9031,3927,1905205,1892811,9031,3927,1905205,1892811,863420,328182,1291979801,1250163582,100,100,100,100,1.05,1.2,0.15,0.15
-20714,24,003,24003,905,526,7270163,4461795,4345,2179,10573329,6037605,537656,212562,1522395776,1074590684,20.83,24.14,68.76,73.9,0.17,0.25,0.48,0.42
-20714,24,009,24009,3440,1653,3303166,1575810,4345,2179,10573329,6037605,88737,33780,893730716,552061078,79.17,75.86,31.24,26.1,3.88,4.89,0.37,0.29
-20715,24,033,24033,26382,9357,37813449,37644219,26382,9357,37813449,37644219,863420,328182,1291979801,1250163582,100,100,100,100,3.06,2.85,2.93,3.01
-20716,24,033,24033,20787,8469,30063385,29884962,20787,8469,30063385,29884962,863420,328182,1291979801,1250163582,100,100,100,100,2.41,2.58,2.33,2.39
-20720,24,033,24033,21031,7229,29149861,28942710,21031,7229,29149861,28942710,863420,328182,1291979801,1250163582,100,100,100,100,2.44,2.2,2.26,2.32
-20721,24,033,24033,27016,9595,43612274,43235668,27016,9595,43612274,43235668,863420,328182,1291979801,1250163582,100,100,100,100,3.13,2.92,3.38,3.46
-20722,24,033,24033,5711,1945,3889653,3810192,5711,1945,3889653,3810192,863420,328182,1291979801,1250163582,100,100,100,100,0.66,0.59,0.3,0.3
-20723,24,027,24027,28972,10491,35113654,34017963,28972,10491,35113654,34017963,287085,109282,656288081,649416399,100,100,100,100,10.09,9.6,5.35,5.24
-20724,24,003,24003,16093,6615,20761159,20761159,16093,6615,20761159,20761159,537656,212562,1522395776,1074590684,100,100,100,100,2.99,3.11,1.36,1.93
-20732,24,009,24009,9919,3957,33004354,26384774,9919,3957,33004354,26384774,88737,33780,893730716,552061078,100,100,100,100,11.18,11.71,3.69,4.78
-20733,24,003,24003,2672,1108,9564611,8509429,2672,1108,9564611,8509429,537656,212562,1522395776,1074590684,100,100,100,100,0.5,0.52,0.63,0.79
-20735,24,033,24033,35421,12617,67452384,67167555,35421,12617,67452384,67167555,863420,328182,1291979801,1250163582,100,100,100,100,4.1,3.84,5.22,5.37
-20736,24,003,24003,13,4,957282,957282,8904,3037,67811745,66156497,537656,212562,1522395776,1074590684,0.15,0.13,1.41,1.45,0,0,0.06,0.09
-20736,24,009,24009,8891,3033,66854463,65199215,8904,3037,67811745,66156497,88737,33780,893730716,552061078,99.85,99.87,98.59,98.55,10.02,8.98,7.48,11.81
-20737,24,033,24033,20684,6227,10800821,10724278,20684,6227,10800821,10724278,863420,328182,1291979801,1250163582,100,100,100,100,2.4,1.9,0.84,0.86
-20740,24,033,24033,28780,11011,20873575,20714189,28780,11011,20873575,20714189,863420,328182,1291979801,1250163582,100,100,100,100,3.33,3.36,1.62,1.66
-20742,24,033,24033,7808,1,1918801,1918801,7808,1,1918801,1918801,863420,328182,1291979801,1250163582,100,100,100,100,0.9,0,0.15,0.15
-20743,24,033,24033,38621,15511,25212154,25190668,38621,15511,25212154,25190668,863420,328182,1291979801,1250163582,100,100,100,100,4.47,4.73,1.95,2.01
-20744,24,033,24033,50722,19468,68535214,68211790,50722,19468,68535214,68211790,863420,328182,1291979801,1250163582,100,100,100,100,5.87,5.93,5.3,5.46
-20745,24,033,24033,28451,12165,17004269,16741975,28451,12165,17004269,16741975,863420,328182,1291979801,1250163582,100,100,100,100,3.3,3.71,1.32,1.34
-20746,24,033,24033,28838,12548,20447095,20404769,28838,12548,20447095,20404769,863420,328182,1291979801,1250163582,100,100,100,100,3.34,3.82,1.58,1.63
-20747,24,033,24033,40054,16486,19776402,19771363,40054,16486,19776402,19771363,863420,328182,1291979801,1250163582,100,100,100,100,4.64,5.02,1.53,1.58
-20748,24,033,24033,38792,16684,23533966,23521810,38792,16684,23533966,23521810,863420,328182,1291979801,1250163582,100,100,100,100,4.49,5.08,1.82,1.88
-20751,24,003,24003,2343,1107,16245546,13138777,2343,1107,16245546,13138777,537656,212562,1522395776,1074590684,100,100,100,100,0.44,0.52,1.07,1.22
-20754,24,003,24003,1023,357,9217144,9217144,6951,2420,45815372,43684109,537656,212562,1522395776,1074590684,14.72,14.75,20.12,21.1,0.19,0.17,0.61,0.86
-20754,24,009,24009,5928,2063,36598228,34466965,6951,2420,45815372,43684109,88737,33780,893730716,552061078,85.28,85.25,79.88,78.9,6.68,6.11,4.09,6.24
-20755,24,003,24003,9302,2714,21733083,21701209,9302,2714,21733083,21701209,537656,212562,1522395776,1074590684,100,100,100,100,1.73,1.28,1.43,2.02
-20758,24,003,24003,721,283,10432083,10432083,721,283,10432083,10432083,537656,212562,1522395776,1074590684,100,100,100,100,0.13,0.13,0.69,0.97
-20759,24,027,24027,3355,1155,17137731,16425882,3355,1155,17137731,16425882,287085,109282,656288081,649416399,100,100,100,100,1.17,1.06,2.61,2.53
-20762,24,033,24033,2973,1385,15277701,15270777,2973,1385,15277701,15270777,863420,328182,1291979801,1250163582,100,100,100,100,0.34,0.42,1.18,1.22
-20763,24,027,24027,2664,1059,3667364,3662440,2664,1059,3667364,3662440,287085,109282,656288081,649416399,100,100,100,100,0.93,0.97,0.56,0.56
-20764,24,003,24003,4176,1945,18080737,10576066,4176,1945,18080737,10576066,537656,212562,1522395776,1074590684,100,100,100,100,0.78,0.92,1.19,0.98
-20765,24,003,24003,514,246,1723994,1207947,514,246,1723994,1207947,537656,212562,1522395776,1074590684,100,100,100,100,0.1,0.12,0.11,0.11
-20769,24,033,24033,6604,2150,20166196,19897450,6604,2150,20166196,19897450,863420,328182,1291979801,1250163582,100,100,100,100,0.76,0.66,1.56,1.59
-20770,24,033,24033,25173,11407,21475808,21280621,25173,11407,21475808,21280621,863420,328182,1291979801,1250163582,100,100,100,100,2.92,3.48,1.66,1.7
-20772,24,033,24033,42625,16207,188908182,185336844,42625,16207,188908182,185336844,863420,328182,1291979801,1250163582,100,100,100,100,4.94,4.94,14.62,14.83
-20774,24,033,24033,43013,17131,90448248,89954196,43013,17131,90448248,89954196,863420,328182,1291979801,1250163582,100,100,100,100,4.98,5.22,7,7.2
-20776,24,003,24003,3289,1224,64371563,58404040,3289,1224,64371563,58404040,537656,212562,1522395776,1074590684,100,100,100,100,0.61,0.58,4.23,5.44
-20777,24,027,24027,3269,1096,19340831,19230167,3314,1111,19679508,19568844,287085,109282,656288081,649416399,98.64,98.65,98.28,98.27,1.14,1,2.95,2.96
-20777,24,031,24031,45,15,338677,338677,3314,1111,19679508,19568844,971777,375905,1312988649,1272343169,1.36,1.35,1.72,1.73,0,0,0.03,0.03
-20778,24,003,24003,2009,813,22081340,20343335,2009,813,22081340,20343335,537656,212562,1522395776,1074590684,100,100,100,100,0.37,0.38,1.45,1.89
-20779,24,003,24003,1182,534,18442151,16812673,1182,534,18442151,16812673,537656,212562,1522395776,1074590684,100,100,100,100,0.22,0.25,1.21,1.56
-20781,24,033,24033,11440,4093,6517325,6312229,11440,4093,6517325,6312229,863420,328182,1291979801,1250163582,100,100,100,100,1.32,1.25,0.5,0.5
-20782,24,033,24033,30560,11552,11072686,10973600,30560,11552,11072686,10973600,863420,328182,1291979801,1250163582,100,100,100,100,3.54,3.52,0.86,0.88
-20783,24,033,24033,44487,13891,14605112,14579957,44487,13891,14605112,14579957,863420,328182,1291979801,1250163582,100,100,100,100,5.15,4.23,1.13,1.17
-20784,24,033,24033,29449,10155,11029244,11027347,29449,10155,11029244,11027347,863420,328182,1291979801,1250163582,100,100,100,100,3.41,3.09,0.85,0.88
-20785,24,033,24033,35052,14864,25590873,25546966,35052,14864,25590873,25546966,863420,328182,1291979801,1250163582,100,100,100,100,4.06,4.53,1.98,2.04
-20794,24,003,24003,6494,777,8852238,8852238,14098,3202,26452301,26420064,537656,212562,1522395776,1074590684,46.06,24.27,33.46,33.51,1.21,0.37,0.58,0.82
-20794,24,027,24027,7604,2425,17600063,17567826,14098,3202,26452301,26420064,287085,109282,656288081,649416399,53.94,75.73,66.54,66.49,2.65,2.22,2.68,2.71
-20812,24,031,24031,255,100,867792,496734,255,100,867792,496734,971777,375905,1312988649,1272343169,100,100,100,100,0.03,0.03,0.07,0.04
-20814,24,031,24031,27642,14103,13219099,13166146,27642,14103,13219099,13166146,971777,375905,1312988649,1272343169,100,100,100,100,2.84,3.75,1.01,1.03
-20815,24,031,24031,29082,13850,14101145,14066048,29082,13850,14101145,14066048,971777,375905,1312988649,1272343169,100,100,100,100,2.99,3.68,1.07,1.11
-20816,24,031,24031,16208,6666,10527835,8975177,16208,6666,10527835,8975177,971777,375905,1312988649,1272343169,100,100,100,100,1.67,1.77,0.8,0.71
-20817,24,031,24031,36240,14020,36109668,35923615,36240,14020,36109668,35923615,971777,375905,1312988649,1272343169,100,100,100,100,3.73,3.73,2.75,2.82
-20818,24,031,24031,1962,789,3795094,2676591,1962,789,3795094,2676591,971777,375905,1312988649,1272343169,100,100,100,100,0.2,0.21,0.29,0.21
-20832,24,031,24031,24965,8863,26134067,26075340,24965,8863,26134067,26075340,971777,375905,1312988649,1272343169,100,100,100,100,2.57,2.36,1.99,2.05
-20833,24,027,24027,84,35,4876660,4833370,7735,2545,52402120,49836780,287085,109282,656288081,649416399,1.09,1.38,9.31,9.7,0.03,0.03,0.74,0.74
-20833,24,031,24031,7651,2510,47525460,45003410,7735,2545,52402120,49836780,971777,375905,1312988649,1272343169,98.91,98.62,90.69,90.3,0.79,0.67,3.62,3.54
-20837,24,031,24031,5789,2059,118217713,109773948,5789,2059,118217713,109773948,971777,375905,1312988649,1272343169,100,100,100,100,0.6,0.55,9,8.63
-20838,24,031,24031,259,109,7019154,6997600,259,109,7019154,6997600,971777,375905,1312988649,1272343169,100,100,100,100,0.03,0.03,0.53,0.55
-20839,24,031,24031,214,81,12731744,12690683,214,81,12731744,12690683,971777,375905,1312988649,1272343169,100,100,100,100,0.02,0.02,0.97,1
-20841,24,031,24031,10460,2908,69665539,67289814,10460,2908,69665539,67289814,971777,375905,1312988649,1272343169,100,100,100,100,1.08,0.77,5.31,5.29
-20842,24,021,24021,357,146,38967176,37570687,1824,781,144934469,135898668,233385,90136,1728501977,1709964627,19.57,18.69,26.89,27.65,0.15,0.16,2.25,2.2
-20842,24,031,24031,1467,635,105967293,98327981,1824,781,144934469,135898668,971777,375905,1312988649,1272343169,80.43,81.31,73.11,72.35,0.15,0.17,8.07,7.73
-20850,24,031,24031,46340,19085,36722874,36523908,46340,19085,36722874,36523908,971777,375905,1312988649,1272343169,100,100,100,100,4.77,5.08,2.8,2.87
-20851,24,031,24031,14191,5042,6149528,6147440,14191,5042,6149528,6147440,971777,375905,1312988649,1272343169,100,100,100,100,1.46,1.34,0.47,0.48
-20852,24,031,24031,40365,20062,21653308,21555966,40365,20062,21653308,21555966,971777,375905,1312988649,1272343169,100,100,100,100,4.15,5.34,1.65,1.69
-20853,24,031,24031,29673,10035,23578554,23335068,29673,10035,23578554,23335068,971777,375905,1312988649,1272343169,100,100,100,100,3.05,2.67,1.8,1.83
-20854,24,031,24031,49611,17262,94638766,87422942,49611,17262,94638766,87422942,971777,375905,1312988649,1272343169,100,100,100,100,5.11,4.59,7.21,6.87
-20855,24,031,24031,14295,5018,34596668,33961240,14295,5018,34596668,33961240,971777,375905,1312988649,1272343169,100,100,100,100,1.47,1.33,2.63,2.67
-20860,24,031,24031,2396,849,9884331,9857358,2396,849,9884331,9857358,971777,375905,1312988649,1272343169,100,100,100,100,0.25,0.23,0.75,0.77
-20861,24,031,24031,1875,668,9965694,9947174,1875,668,9965694,9947174,971777,375905,1312988649,1272343169,100,100,100,100,0.19,0.18,0.76,0.78
-20862,24,031,24031,343,124,3045181,3029792,343,124,3045181,3029792,971777,375905,1312988649,1272343169,100,100,100,100,0.04,0.03,0.23,0.24
-20866,24,031,24031,13344,4652,18923096,18304211,13344,4652,18923096,18304211,971777,375905,1312988649,1272343169,100,100,100,100,1.37,1.24,1.44,1.44
-20868,24,031,24031,790,250,5198927,5193925,790,250,5198927,5193925,971777,375905,1312988649,1272343169,100,100,100,100,0.08,0.07,0.4,0.41
-20871,24,021,24021,333,137,2637740,2637740,13130,4295,53314094,53176080,233385,90136,1728501977,1709964627,2.54,3.19,4.95,4.96,0.14,0.15,0.15,0.15
-20871,24,031,24031,12797,4158,50676354,50538340,13130,4295,53314094,53176080,971777,375905,1312988649,1272343169,97.46,96.81,95.05,95.04,1.32,1.11,3.86,3.97
-20872,24,031,24031,13104,4575,54136097,54025176,13104,4575,54136097,54025176,971777,375905,1312988649,1272343169,100,100,100,100,1.35,1.22,4.12,4.25
-20874,24,031,24031,57367,22256,58494193,54952005,57367,22256,58494193,54952005,971777,375905,1312988649,1272343169,100,100,100,100,5.9,5.92,4.46,4.32
-20876,24,031,24031,25496,8738,30342590,30193838,25496,8738,30342590,30193838,971777,375905,1312988649,1272343169,100,100,100,100,2.62,2.32,2.31,2.37
-20877,24,031,24031,34321,12249,15053829,14964274,34321,12249,15053829,14964274,971777,375905,1312988649,1272343169,100,100,100,100,3.53,3.26,1.15,1.18
-20878,24,031,24031,62446,23155,57687387,56550922,62446,23155,57687387,56550922,971777,375905,1312988649,1272343169,100,100,100,100,6.43,6.16,4.39,4.44
-20879,24,031,24031,24360,8371,19959436,19855864,24360,8371,19959436,19855864,971777,375905,1312988649,1272343169,100,100,100,100,2.51,2.23,1.52,1.56
-20880,24,031,24031,450,204,615162,615162,450,204,615162,615162,971777,375905,1312988649,1272343169,100,100,100,100,0.05,0.05,0.05,0.05
-20882,24,031,24031,14063,4654,100410149,99982538,14063,4654,100410149,99982538,971777,375905,1312988649,1272343169,100,100,100,100,1.45,1.24,7.65,7.86
-20886,24,031,24031,33282,12759,12381934,12189201,33282,12759,12381934,12189201,971777,375905,1312988649,1272343169,100,100,100,100,3.42,3.39,0.94,0.96
-20895,24,031,24031,19054,7475,10592775,10514230,19054,7475,10592775,10514230,971777,375905,1312988649,1272343169,100,100,100,100,1.96,1.99,0.81,0.83
-20896,24,031,24031,906,352,644312,640940,906,352,644312,640940,971777,375905,1312988649,1272343169,100,100,100,100,0.09,0.09,0.05,0.05
-20899,24,031,24031,142,130,192140,192140,142,130,192140,192140,971777,375905,1312988649,1272343169,100,100,100,100,0.01,0.03,0.01,0.02
-20901,24,031,24031,34832,12912,14016829,13946891,34832,12912,14016829,13946891,971777,375905,1312988649,1272343169,100,100,100,100,3.58,3.43,1.07,1.1
-20902,24,031,24031,48841,17073,19709664,19634280,48841,17073,19709664,19634280,971777,375905,1312988649,1272343169,100,100,100,100,5.03,4.54,1.5,1.54
-20903,24,031,24031,18293,5672,8188285,8186438,23625,7318,9340396,9335645,971777,375905,1312988649,1272343169,77.43,77.51,87.67,87.69,1.88,1.51,0.62,0.64
-20903,24,033,24033,5332,1646,1152111,1149207,23625,7318,9340396,9335645,863420,328182,1291979801,1250163582,22.57,22.49,12.33,12.31,0.62,0.5,0.09,0.09
-20904,24,031,24031,54289,21369,35177536,35080101,54612,21452,35499948,35402513,971777,375905,1312988649,1272343169,99.41,99.61,99.09,99.09,5.59,5.68,2.68,2.76
-20904,24,033,24033,323,83,322412,322412,54612,21452,35499948,35402513,863420,328182,1291979801,1250163582,0.59,0.39,0.91,0.91,0.04,0.03,0.02,0.03
-20905,24,031,24031,18044,5977,33883846,33328393,18044,5977,33883846,33328393,971777,375905,1312988649,1272343169,100,100,100,100,1.86,1.59,2.58,2.62
-20906,24,031,24031,64696,25715,31557442,31358675,64696,25715,31557442,31358675,971777,375905,1312988649,1272343169,100,100,100,100,6.66,6.84,2.4,2.46
-20910,24,031,24031,37445,19047,11826649,11796743,37445,19047,11826649,11796743,971777,375905,1312988649,1272343169,100,100,100,100,3.85,5.07,0.9,0.93
-20912,24,031,24031,21351,9028,6311549,6297623,24807,10257,6917239,6903313,971777,375905,1312988649,1272343169,86.07,88.02,91.24,91.23,2.2,2.4,0.48,0.49
-20912,24,033,24033,3456,1229,605690,605690,24807,10257,6917239,6903313,863420,328182,1291979801,1250163582,13.93,11.98,8.76,8.77,0.4,0.37,0.05,0.05
-21001,24,025,24025,21487,8942,81550716,77441232,21487,8942,81550716,77441232,244826,95554,1363999420,1132055422,100,100,100,100,8.78,9.36,5.98,6.84
-21005,24,025,24025,2112,760,22790774,20637751,2112,760,22790774,20637751,244826,95554,1363999420,1132055422,100,100,100,100,0.86,0.8,1.67,1.82
-21009,24,025,24025,29766,11620,31407259,29377217,29766,11620,31407259,29377217,244826,95554,1363999420,1132055422,100,100,100,100,12.16,12.16,2.3,2.6
-21010,24,025,24025,104,107,13878408,13302293,104,107,13878408,13302293,244826,95554,1363999420,1132055422,100,100,100,100,0.04,0.11,1.02,1.18
-21012,24,003,24003,21317,8140,32354774,25280394,21317,8140,32354774,25280394,537656,212562,1522395776,1074590684,100,100,100,100,3.96,3.83,2.13,2.35
-21013,24,005,24005,3166,1218,30363034,30324269,4653,1743,39201738,39130829,805029,335622,1765739322,1549594703,68.04,69.88,77.45,77.49,0.39,0.36,1.72,1.96
-21013,24,025,24025,1487,525,8838704,8806560,4653,1743,39201738,39130829,244826,95554,1363999420,1132055422,31.96,30.12,22.55,22.51,0.61,0.55,0.65,0.78
-21014,24,025,24025,36047,14355,36665884,36477493,36047,14355,36665884,36477493,244826,95554,1363999420,1132055422,100,100,100,100,14.72,15.02,2.69,3.22
-21015,24,025,24025,27763,10221,80648517,80085894,27763,10221,80648517,80085894,244826,95554,1363999420,1132055422,100,100,100,100,11.34,10.7,5.91,7.07
-21017,24,025,24025,7062,2880,7141323,7134553,7062,2880,7141323,7134553,244826,95554,1363999420,1132055422,100,100,100,100,2.88,3.01,0.52,0.63
-21028,24,025,24025,3460,1296,35349641,35213245,3460,1296,35349641,35213245,244826,95554,1363999420,1132055422,100,100,100,100,1.41,1.36,2.59,3.11
-21029,24,027,24027,11333,3515,41841383,41304709,11333,3515,41841383,41304709,287085,109282,656288081,649416399,100,100,100,100,3.95,3.22,6.38,6.36
-21030,24,005,24005,24355,10994,62832129,61585318,24355,10994,62832129,61585318,805029,335622,1765739322,1549594703,100,100,100,100,3.03,3.28,3.56,3.97
-21031,24,005,24005,4,2,2515565,2515565,4,2,2515565,2515565,805029,335622,1765739322,1549594703,100,100,100,100,0,0,0.14,0.16
-21032,24,003,24003,8848,3488,50176095,45682249,8848,3488,50176095,45682249,537656,212562,1522395776,1074590684,100,100,100,100,1.65,1.64,3.3,4.25
-21034,24,025,24025,3387,1402,72404147,65082100,3387,1402,72404147,65082100,244826,95554,1363999420,1132055422,100,100,100,100,1.38,1.47,5.31,5.75
-21035,24,003,24003,7815,2733,73915089,73449277,7815,2733,73915089,73449277,537656,212562,1522395776,1074590684,100,100,100,100,1.45,1.29,4.86,6.84
-21036,24,027,24027,2114,717,17548356,15774195,2114,717,17548356,15774195,287085,109282,656288081,649416399,100,100,100,100,0.74,0.66,2.67,2.43
-21037,24,003,24003,20618,8449,56791181,44708019,20618,8449,56791181,44708019,537656,212562,1522395776,1074590684,100,100,100,100,3.83,3.97,3.73,4.16
-21040,24,025,24025,24420,9281,23622216,20633014,24420,9281,23622216,20633014,244826,95554,1363999420,1132055422,100,100,100,100,9.97,9.71,1.73,1.82
-21042,24,027,24027,38076,13587,97535318,97095136,38076,13587,97535318,97095136,287085,109282,656288081,649416399,100,100,100,100,13.26,12.43,14.86,14.95
-21043,24,005,24005,897,443,1251554,1129608,42246,16308,44203184,44017823,805029,335622,1765739322,1549594703,2.12,2.72,2.83,2.57,0.11,0.13,0.07,0.07
-21043,24,027,24027,41349,15865,42951630,42888215,42246,16308,44203184,44017823,287085,109282,656288081,649416399,97.88,97.28,97.17,97.43,14.4,14.52,6.54,6.6
-21044,24,027,24027,41704,18371,31338434,31075560,41704,18371,31338434,31075560,287085,109282,656288081,649416399,100,100,100,100,14.53,16.81,4.78,4.79
-21045,24,027,24027,38288,15283,25382654,25138579,38288,15283,25382654,25138579,287085,109282,656288081,649416399,100,100,100,100,13.34,13.98,3.87,3.87
-21046,24,027,24027,15080,6262,20333980,20186665,15080,6262,20333980,20186665,287085,109282,656288081,649416399,100,100,100,100,5.25,5.73,3.1,3.11
-21047,24,025,24025,11873,4293,61098461,60927725,11873,4293,61098461,60927725,244826,95554,1363999420,1132055422,100,100,100,100,4.85,4.49,4.48,5.38
-21048,24,013,24013,10650,3993,73675506,70073338,10650,3993,73675506,70073338,167134,62406,1172454846,1159264845,100,100,100,100,6.37,6.4,6.28,6.04
-21050,24,025,24025,18202,6609,73873638,73589819,18202,6609,73873638,73589819,244826,95554,1363999420,1132055422,100,100,100,100,7.43,6.92,5.42,6.5
-21051,24,005,24005,279,105,1031052,1029627,279,105,1031052,1029627,805029,335622,1765739322,1549594703,100,100,100,100,0.03,0.03,0.06,0.07
-21052,24,005,24005,303,131,369702,193870,303,131,369702,193870,805029,335622,1765739322,1549594703,100,100,100,100,0.04,0.04,0.02,0.01
-21053,24,005,24005,3305,1223,58269153,58128997,3305,1223,58269153,58128997,805029,335622,1765739322,1549594703,100,100,100,100,0.41,0.36,3.3,3.75
-21054,24,003,24003,10127,3850,46193666,46167989,10127,3850,46193666,46167989,537656,212562,1522395776,1074590684,100,100,100,100,1.88,1.81,3.03,4.3
-21056,24,003,24003,267,230,13746190,3564220,267,230,13746190,3564220,537656,212562,1522395776,1074590684,100,100,100,100,0.05,0.11,0.9,0.33
-21057,24,005,24005,4112,1695,44762331,43517294,4112,1695,44762331,43517294,805029,335622,1765739322,1549594703,100,100,100,100,0.51,0.51,2.54,2.81
-21060,24,003,24003,29223,12076,35126111,32403463,29223,12076,35126111,32403463,537656,212562,1522395776,1074590684,100,100,100,100,5.44,5.68,2.31,3.02
-21061,24,003,24003,53684,22143,31484557,31439237,53684,22143,31484557,31439237,537656,212562,1522395776,1074590684,100,100,100,100,9.98,10.42,2.07,2.93
-21071,24,005,24005,497,222,2568339,2568339,497,222,2568339,2568339,805029,335622,1765739322,1549594703,100,100,100,100,0.06,0.07,0.15,0.17
-21074,24,005,24005,1364,541,28814181,28304315,15084,5777,97825235,97032422,805029,335622,1765739322,1549594703,9.04,9.36,29.45,29.17,0.17,0.16,1.63,1.83
-21074,24,013,24013,13720,5236,69011054,68728107,15084,5777,97825235,97032422,167134,62406,1172454846,1159264845,90.96,90.64,70.55,70.83,8.21,8.39,5.89,5.93
-21075,24,027,24027,26344,10215,37736071,37583125,26344,10215,37736071,37583125,287085,109282,656288081,649416399,100,100,100,100,9.18,9.35,5.75,5.79
-21076,24,003,24003,11311,4427,30908137,30902137,12952,4956,32602991,32594710,537656,212562,1522395776,1074590684,87.33,89.33,94.8,94.81,2.1,2.08,2.03,2.88
-21076,24,027,24027,1641,529,1694854,1692573,12952,4956,32602991,32594710,287085,109282,656288081,649416399,12.67,10.67,5.2,5.19,0.57,0.48,0.26,0.26
-21077,24,003,24003,224,98,1704393,1704393,224,98,1704393,1704393,537656,212562,1522395776,1074590684,100,100,100,100,0.04,0.05,0.11,0.16
-21078,24,025,24025,17603,7797,92022417,78161496,17603,7797,92022417,78161496,244826,95554,1363999420,1132055422,100,100,100,100,7.19,8.16,6.75,6.9
-21082,24,005,24005,605,246,11300299,11288986,654,263,11537739,11526426,805029,335622,1765739322,1549594703,92.51,93.54,97.94,97.94,0.08,0.07,0.64,0.73
-21082,24,025,24025,49,17,237440,237440,654,263,11537739,11526426,244826,95554,1363999420,1132055422,7.49,6.46,2.06,2.06,0.02,0.02,0.02,0.02
-21084,24,025,24025,7652,2806,63798462,63526032,7652,2806,63798462,63526032,244826,95554,1363999420,1132055422,100,100,100,100,3.13,2.94,4.68,5.61
-21085,24,005,24005,22,21,266553,266295,16171,6552,47569081,46410077,805029,335622,1765739322,1549594703,0.14,0.32,0.56,0.57,0,0.01,0.02,0.02
-21085,24,025,24025,16149,6531,47302528,46143782,16171,6552,47569081,46410077,244826,95554,1363999420,1132055422,99.86,99.68,99.44,99.43,6.6,6.83,3.47,4.08
-21087,24,005,24005,4638,1763,32946020,32687769,5451,2076,36550403,36286190,805029,335622,1765739322,1549594703,85.09,84.92,90.14,90.08,0.58,0.53,1.87,2.11
-21087,24,025,24025,813,313,3604383,3598421,5451,2076,36550403,36286190,244826,95554,1363999420,1132055422,14.91,15.08,9.86,9.92,0.33,0.33,0.26,0.32
-21090,24,003,24003,9784,3962,17265700,17065249,9784,3962,17265700,17065249,537656,212562,1522395776,1074590684,100,100,100,100,1.82,1.86,1.13,1.59
-21093,24,005,24005,36465,16205,54543550,52336899,36465,16205,54543550,52336899,805029,335622,1765739322,1549594703,100,100,100,100,4.53,4.83,3.09,3.38
-21102,24,005,24005,993,346,24801524,23331861,11751,4245,106440029,104814610,805029,335622,1765739322,1549594703,8.45,8.15,23.3,22.26,0.12,0.1,1.4,1.51
-21102,24,013,24013,10758,3899,81638505,81482749,11751,4245,106440029,104814610,167134,62406,1172454846,1159264845,91.55,91.85,76.7,77.74,6.44,6.25,6.96,7.03
-21104,24,005,24005,150,69,5854306,5582945,4601,1506,45891717,43981935,805029,335622,1765739322,1549594703,3.26,4.58,12.76,12.69,0.02,0.02,0.33,0.36
-21104,24,013,24013,2525,812,15711055,14139905,4601,1506,45891717,43981935,167134,62406,1172454846,1159264845,54.88,53.92,34.24,32.15,1.51,1.3,1.34,1.22
-21104,24,027,24027,1926,625,24326356,24259085,4601,1506,45891717,43981935,287085,109282,656288081,649416399,41.86,41.5,53.01,55.16,0.67,0.57,3.71,3.74
-21105,24,005,24005,65,28,303220,303220,65,28,303220,303220,805029,335622,1765739322,1549594703,100,100,100,100,0.01,0.01,0.02,0.02
-21108,24,003,24003,17964,6517,34047390,33861012,17964,6517,34047390,33861012,537656,212562,1522395776,1074590684,100,100,100,100,3.34,3.07,2.24,3.15
-21111,24,005,24005,3967,1501,68837610,68401930,4903,1883,91314838,90824166,805029,335622,1765739322,1549594703,80.91,79.71,75.38,75.31,0.49,0.45,3.9,4.41
-21111,24,025,24025,936,382,22477228,22422236,4903,1883,91314838,90824166,244826,95554,1363999420,1132055422,19.09,20.29,24.62,24.69,0.38,0.4,1.65,1.98
-21113,24,003,24003,30469,12705,37362578,37362578,30469,12705,37362578,37362578,537656,212562,1522395776,1074590684,100,100,100,100,5.67,5.98,2.45,3.48
-21114,24,003,24003,25225,9857,14422422,14422422,25225,9857,14422422,14422422,537656,212562,1522395776,1074590684,100,100,100,100,4.69,4.64,0.95,1.34
-21117,24,005,24005,53778,23010,84670138,84222858,53778,23010,84670138,84222858,805029,335622,1765739322,1549594703,100,100,100,100,6.68,6.86,4.8,5.44
-21120,24,005,24005,6967,2540,113032023,109677132,6967,2540,113032023,109677132,805029,335622,1765739322,1549594703,100,100,100,100,0.87,0.76,6.4,7.08
-21122,24,003,24003,60576,22896,111149044,81061475,60576,22896,111149044,81061475,537656,212562,1522395776,1074590684,100,100,100,100,11.27,10.77,7.3,7.54
-21128,24,005,24005,12802,5053,17301408,17286862,12802,5053,17301408,17286862,805029,335622,1765739322,1549594703,100,100,100,100,1.59,1.51,0.98,1.12
-21130,24,025,24025,187,90,1956896,1956896,187,90,1956896,1956896,244826,95554,1363999420,1132055422,100,100,100,100,0.08,0.09,0.14,0.17
-21131,24,005,24005,7253,2656,61141069,57565142,7253,2656,61141069,57565142,805029,335622,1765739322,1549594703,100,100,100,100,0.9,0.79,3.46,3.71
-21132,24,025,24025,2634,954,55117056,54914875,2634,954,55117056,54914875,244826,95554,1363999420,1132055422,100,100,100,100,1.08,1,4.04,4.85
-21133,24,005,24005,29998,11630,26288551,26247594,29998,11630,26288551,26247594,805029,335622,1765739322,1549594703,100,100,100,100,3.73,3.47,1.49,1.69
-21136,24,005,24005,32794,12799,143693098,139505365,33781,13146,149303279,145011700,805029,335622,1765739322,1549594703,97.08,97.36,96.24,96.2,4.07,3.81,8.14,9
-21136,24,013,24013,987,347,5610181,5506335,33781,13146,149303279,145011700,167134,62406,1172454846,1159264845,2.92,2.64,3.76,3.8,0.59,0.56,0.48,0.47
-21140,24,003,24003,3457,1364,4496340,3500425,3457,1364,4496340,3500425,537656,212562,1522395776,1074590684,100,100,100,100,0.64,0.64,0.3,0.33
-21144,24,003,24003,31884,11447,41454184,41454184,31884,11447,41454184,41454184,537656,212562,1522395776,1074590684,100,100,100,100,5.93,5.39,2.72,3.86
-21146,24,003,24003,26705,9747,33593507,26495118,26705,9747,33593507,26495118,537656,212562,1522395776,1074590684,100,100,100,100,4.97,4.59,2.21,2.47
-21152,24,005,24005,5544,2425,59478568,59270022,5544,2425,59478568,59270022,805029,335622,1765739322,1549594703,100,100,100,100,0.69,0.72,3.37,3.82
-21153,24,005,24005,323,131,5101842,5085252,323,131,5101842,5085252,805029,335622,1765739322,1549594703,100,100,100,100,0.04,0.04,0.29,0.33
-21154,24,025,24025,6464,2396,105028714,104556045,6464,2396,105028714,104556045,244826,95554,1363999420,1132055422,100,100,100,100,2.64,2.51,7.7,9.24
-21155,24,005,24005,2046,868,50648956,50490276,2371,1002,56842961,56668337,805029,335622,1765739322,1549594703,86.29,86.63,89.1,89.1,0.25,0.26,2.87,3.26
-21155,24,013,24013,325,134,6194005,6178061,2371,1002,56842961,56668337,167134,62406,1172454846,1159264845,13.71,13.37,10.9,10.9,0.19,0.21,0.53,0.53
-21156,24,005,24005,358,142,3736850,3735257,358,142,3736850,3735257,805029,335622,1765739322,1549594703,100,100,100,100,0.04,0.04,0.21,0.24
-21157,24,013,24013,36920,14399,198975010,198509198,36920,14399,198975010,198509198,167134,62406,1172454846,1159264845,100,100,100,100,22.09,23.07,16.97,17.12
-21158,24,013,24013,20234,7692,193427456,192837563,20234,7692,193427456,192837563,167134,62406,1172454846,1159264845,100,100,100,100,12.11,12.33,16.5,16.63
-21160,24,025,24025,2408,924,45155010,42825657,2408,924,45155010,42825657,244826,95554,1363999420,1132055422,100,100,100,100,0.98,0.97,3.31,3.78
-21161,24,005,24005,2729,1021,59973149,59792884,5490,2074,125833300,125375715,805029,335622,1765739322,1549594703,49.71,49.23,47.66,47.69,0.34,0.3,3.4,3.86
-21161,24,025,24025,2761,1053,65860151,65582831,5490,2074,125833300,125375715,244826,95554,1363999420,1132055422,50.29,50.77,52.34,52.31,1.13,1.1,4.83,5.79
-21162,24,005,24005,3655,1392,22088121,19321366,3655,1392,22088121,19321366,805029,335622,1765739322,1549594703,100,100,100,100,0.45,0.41,1.25,1.25
-21163,24,005,24005,2594,789,25288065,24827908,7026,2542,33172755,32691039,805029,335622,1765739322,1549594703,36.92,31.04,76.23,75.95,0.32,0.24,1.43,1.6
-21163,24,027,24027,4432,1753,7884690,7863131,7026,2542,33172755,32691039,287085,109282,656288081,649416399,63.08,68.96,23.77,24.05,1.54,1.6,1.2,1.21
-21201,24,510,24510,16972,11255,3340677,3340677,16972,11255,3340677,3340677,620961,296685,238411543,209643241,100,100,100,100,2.73,3.79,1.4,1.59
-21202,24,510,24510,22832,10372,4442355,4111039,22832,10372,4442355,4111039,620961,296685,238411543,209643241,100,100,100,100,3.68,3.5,1.86,1.96
-21204,24,005,24005,20253,8274,15795078,15615168,20253,8274,15795078,15615168,805029,335622,1765739322,1549594703,100,100,100,100,2.52,2.47,0.89,1.01
-21205,24,510,24510,16146,7059,5304530,5304530,16146,7059,5304530,5304530,620961,296685,238411543,209643241,100,100,100,100,2.6,2.38,2.22,2.53
-21206,24,005,24005,10462,4034,5953351,5953351,50846,21762,18671099,18667230,805029,335622,1765739322,1549594703,20.58,18.54,31.89,31.89,1.3,1.2,0.34,0.38
-21206,24,510,24510,40384,17728,12717748,12713879,50846,21762,18671099,18667230,620961,296685,238411543,209643241,79.42,81.46,68.11,68.11,6.5,5.98,5.33,6.06
-21207,24,005,24005,33912,13818,19508821,19435202,48133,20272,26791956,26710727,805029,335622,1765739322,1549594703,70.45,68.16,72.82,72.76,4.21,4.12,1.1,1.25
-21207,24,510,24510,14221,6454,7283135,7275525,48133,20272,26791956,26710727,620961,296685,238411543,209643241,29.55,31.84,27.18,27.24,2.29,2.18,3.05,3.47
-21208,24,005,24005,31951,14686,31547130,31481389,33917,15621,31991700,31925959,805029,335622,1765739322,1549594703,94.2,94.01,98.61,98.61,3.97,4.38,1.79,2.03
-21208,24,510,24510,1966,935,444570,444570,33917,15621,31991700,31925959,620961,296685,238411543,209643241,5.8,5.99,1.39,1.39,0.32,0.32,0.19,0.21
-21209,24,005,24005,14255,6182,10873807,10798217,26465,12054,18456397,18354471,805029,335622,1765739322,1549594703,53.86,51.29,58.92,58.83,1.77,1.84,0.62,0.7
-21209,24,510,24510,12210,5872,7582590,7556254,26465,12054,18456397,18354471,620961,296685,238411543,209643241,46.14,48.71,41.08,41.17,1.97,1.98,3.18,3.6
-21210,24,005,24005,940,517,1242228,1242228,14292,5949,8584685,8579050,805029,335622,1765739322,1549594703,6.58,8.69,14.47,14.48,0.12,0.15,0.07,0.08
-21210,24,510,24510,13352,5432,7342457,7336822,14292,5949,8584685,8579050,620961,296685,238411543,209643241,93.42,91.31,85.53,85.52,2.15,1.83,3.08,3.5
-21211,24,510,24510,17351,9287,7244226,7219042,17351,9287,7244226,7219042,620961,296685,238411543,209643241,100,100,100,100,2.79,3.13,3.04,3.44
-21212,24,005,24005,10936,4709,5451263,5354880,32322,14380,12140257,12042941,805029,335622,1765739322,1549594703,33.83,32.75,44.9,44.46,1.36,1.4,0.31,0.35
-21212,24,510,24510,21386,9671,6688994,6688061,32322,14380,12140257,12042941,620961,296685,238411543,209643241,66.17,67.25,55.1,55.54,3.44,3.26,2.81,3.19
-21213,24,510,24510,32733,14968,8835156,8833257,32733,14968,8835156,8833257,620961,296685,238411543,209643241,100,100,100,100,5.27,5.05,3.71,4.21
-21214,24,510,24510,20564,8981,7394837,7394837,20564,8981,7394837,7394837,620961,296685,238411543,209643241,100,100,100,100,3.31,3.03,3.1,3.53
-21215,24,005,24005,1746,738,567079,567079,60161,26995,17656169,17645223,805029,335622,1765739322,1549594703,2.9,2.73,3.21,3.21,0.22,0.22,0.03,0.04
-21215,24,510,24510,58415,26257,17089090,17078144,60161,26995,17656169,17645223,620961,296685,238411543,209643241,97.1,97.27,96.79,96.79,9.41,8.85,7.17,8.15
-21216,24,510,24510,32071,14934,8780030,8634688,32071,14934,8780030,8634688,620961,296685,238411543,209643241,100,100,100,100,5.16,5.03,3.68,4.12
-21217,24,510,24510,37111,21096,6191150,5999196,37111,21096,6191150,5999196,620961,296685,238411543,209643241,100,100,100,100,5.98,7.11,2.6,2.86
-21218,24,510,24510,49796,23730,11152441,10836080,49796,23730,11152441,10836080,620961,296685,238411543,209643241,100,100,100,100,8.02,8,4.68,5.17
-21219,24,005,24005,9379,3816,32025687,21258354,9379,3816,32025687,21258354,805029,335622,1765739322,1549594703,100,100,100,100,1.17,1.14,1.81,1.37
-21220,24,005,24005,39199,16245,72622413,55824029,39199,16245,72622413,55824029,805029,335622,1765739322,1549594703,100,100,100,100,4.87,4.84,4.11,3.6
-21221,24,005,24005,42154,17966,54536409,38242330,42154,17966,54536409,38242330,805029,335622,1765739322,1549594703,100,100,100,100,5.24,5.35,3.09,2.47
-21222,24,005,24005,53934,22449,32541680,27020170,55786,23231,34078526,28389988,805029,335622,1765739322,1549594703,96.68,96.63,95.49,95.17,6.7,6.69,1.84,1.74
-21222,24,510,24510,1852,782,1536846,1369818,55786,23231,34078526,28389988,620961,296685,238411543,209643241,3.32,3.37,4.51,4.83,0.3,0.26,0.64,0.65
-21223,24,510,24510,26366,14343,6865527,6817146,26366,14343,6865527,6817146,620961,296685,238411543,209643241,100,100,100,100,4.25,4.83,2.88,3.25
-21224,24,005,24005,8650,3401,7483659,6311663,49134,23112,33420459,24539976,805029,335622,1765739322,1549594703,17.6,14.72,22.39,25.72,1.07,1.01,0.42,0.41
-21224,24,510,24510,40484,19711,25936800,18228313,49134,23112,33420459,24539976,620961,296685,238411543,209643241,82.4,85.28,77.61,74.28,6.52,6.64,10.88,8.69
-21225,24,003,24003,14400,5559,11019978,10837104,33545,13715,17383426,16741531,537656,212562,1522395776,1074590684,42.93,40.53,63.39,64.73,2.68,2.62,0.72,1.01
-21225,24,510,24510,19145,8156,6363448,5904427,33545,13715,17383426,16741531,620961,296685,238411543,209643241,57.07,59.47,36.61,35.27,3.08,2.75,2.67,2.82
-21226,24,003,24003,4273,1768,16850544,12989890,7561,3347,43172633,25718732,537656,212562,1522395776,1074590684,56.51,52.82,39.03,50.51,0.79,0.83,1.11,1.21
-21226,24,510,24510,3288,1579,26322089,12728842,7561,3347,43172633,25718732,620961,296685,238411543,209643241,43.49,47.18,60.97,49.49,0.53,0.53,11.04,6.07
-21227,24,005,24005,32685,13178,29299017,28728050,33534,13611,30424652,29853685,805029,335622,1765739322,1549594703,97.47,96.82,96.3,96.23,4.06,3.93,1.66,1.85
-21227,24,510,24510,849,433,1125635,1125635,33534,13611,30424652,29853685,620961,296685,238411543,209643241,2.53,3.18,3.7,3.77,0.14,0.15,0.47,0.54
-21228,24,005,24005,47311,19860,40186678,40079116,47577,19985,40251216,40143654,805029,335622,1765739322,1549594703,99.44,99.37,99.84,99.84,5.88,5.92,2.28,2.59
-21228,24,510,24510,266,125,64538,64538,47577,19985,40251216,40143654,620961,296685,238411543,209643241,0.56,0.63,0.16,0.16,0.04,0.04,0.03,0.03
-21229,24,005,24005,7001,3101,2180638,2171419,45213,19681,15237358,15227940,805029,335622,1765739322,1549594703,15.48,15.76,14.31,14.26,0.87,0.92,0.12,0.14
-21229,24,510,24510,38212,16580,13056720,13056521,45213,19681,15237358,15227940,620961,296685,238411543,209643241,84.52,84.24,85.69,85.74,6.15,5.59,5.48,6.23
-21230,24,510,24510,33568,17478,21661917,16325575,33568,17478,21661917,16325575,620961,296685,238411543,209643241,100,100,100,100,5.41,5.89,9.09,7.79
-21231,24,510,24510,15748,9108,2643694,2259604,15748,9108,2643694,2259604,620961,296685,238411543,209643241,100,100,100,100,2.54,3.07,1.11,1.08
-21234,24,005,24005,61038,27553,30937407,30928395,69752,31527,33659187,33648163,805029,335622,1765739322,1549594703,87.51,87.39,91.91,91.92,7.58,8.21,1.75,2
-21234,24,510,24510,8714,3974,2721780,2719768,69752,31527,33659187,33648163,620961,296685,238411543,209643241,12.49,12.61,8.09,8.08,1.4,1.34,1.14,1.3
-21236,24,005,24005,38281,16256,21893828,21866660,38474,16332,22215075,22187907,805029,335622,1765739322,1549594703,99.5,99.53,98.55,98.55,4.76,4.84,1.24,1.41
-21236,24,510,24510,193,76,321247,321247,38474,16332,22215075,22187907,620961,296685,238411543,209643241,0.5,0.47,1.45,1.45,0.03,0.03,0.13,0.15
-21237,24,005,24005,30012,12442,28595777,27929980,30059,12461,30374737,29708940,805029,335622,1765739322,1549594703,99.84,99.85,94.14,94.01,3.73,3.71,1.62,1.8
-21237,24,510,24510,47,19,1778960,1778960,30059,12461,30374737,29708940,620961,296685,238411543,209643241,0.16,0.15,5.86,5.99,0.01,0.01,0.75,0.85
-21239,24,005,24005,5008,2215,2660441,2660441,28793,12505,8377373,8375263,805029,335622,1765739322,1549594703,17.39,17.71,31.76,31.77,0.62,0.66,0.15,0.17
-21239,24,510,24510,23785,10290,5716932,5714822,28793,12505,8377373,8375263,620961,296685,238411543,209643241,82.61,82.29,68.24,68.23,3.83,3.47,2.4,2.73
-21240,24,003,24003,0,0,12554538,12553482,0,0,12554538,12553482,537656,212562,1522395776,1074590684,0,0,100,100,0,0,0.82,1.17
-21244,24,005,24005,34611,14378,34919159,34747180,34611,14378,34919159,34747180,805029,335622,1765739322,1549594703,100,100,100,100,4.3,4.28,1.98,2.24
-21250,24,005,24005,3205,1,634718,634718,3205,1,634718,634718,805029,335622,1765739322,1549594703,100,100,100,100,0.4,0,0.04,0.04
-21251,24,510,24510,934,0,461424,461424,934,0,461424,461424,620961,296685,238411543,209643241,100,0,100,100,0.15,0,0.19,0.22
-21252,24,005,24005,2872,0,372524,372524,2872,0,372524,372524,805029,335622,1765739322,1549594703,100,0,100,100,0.36,0,0.02,0.02
-21286,24,005,24005,19206,8594,23104395,22060767,19206,8594,23104395,22060767,805029,335622,1765739322,1549594703,100,100,100,100,2.39,2.56,1.31,1.42
-21401,24,003,24003,36012,17412,57030839,51116387,36012,17412,57030839,51116387,537656,212562,1522395776,1074590684,100,100,100,100,6.7,8.19,3.75,4.76
-21402,24,003,24003,5217,344,7704973,5017093,5217,344,7704973,5017093,537656,212562,1522395776,1074590684,100,100,100,100,0.97,0.16,0.51,0.47
-21403,24,003,24003,30269,14329,35805649,23530922,30269,14329,35805649,23530922,537656,212562,1522395776,1074590684,100,100,100,100,5.63,6.74,2.35,2.19
-21405,24,003,24003,544,340,4517824,2566889,544,340,4517824,2566889,537656,212562,1522395776,1074590684,100,100,100,100,0.1,0.16,0.3,0.24
-21409,24,003,24003,20064,7718,47878407,36247301,20064,7718,47878407,36247301,537656,212562,1522395776,1074590684,100,100,100,100,3.73,3.63,3.14,3.37
-21502,24,001,24001,44400,19499,236190212,232035115,44400,19499,236190212,232035115,75087,33311,1113517664,1098563627,100,100,100,100,59.13,58.54,21.21,21.12
-21520,24,023,24023,2074,1054,158522417,158522417,2074,1054,158522417,158522417,30097,18854,1698352489,1675989023,100,100,100,100,6.89,5.59,9.33,9.46
-21521,24,001,24001,1192,567,27505989,27453504,1265,605,60155385,60100158,75087,33311,1113517664,1098563627,94.23,93.72,45.72,45.68,1.59,1.7,2.47,2.5
-21521,24,023,24023,73,38,32649396,32646654,1265,605,60155385,60100158,30097,18854,1698352489,1675989023,5.77,6.28,54.28,54.32,0.24,0.2,1.92,1.95
-21522,24,023,24023,141,53,6684501,6684501,141,53,6684501,6684501,30097,18854,1698352489,1675989023,100,100,100,100,0.47,0.28,0.39,0.4
-21523,24,023,24023,286,124,1898817,1834884,286,124,1898817,1834884,30097,18854,1698352489,1675989023,100,100,100,100,0.95,0.66,0.11,0.11
-21524,24,001,24001,626,275,8959348,8959348,626,275,8959348,8959348,75087,33311,1113517664,1098563627,100,100,100,100,0.83,0.83,0.8,0.82
-21529,24,001,24001,631,287,9468349,9382408,631,287,9468349,9382408,75087,33311,1113517664,1098563627,100,100,100,100,0.84,0.86,0.85,0.85
-21530,24,001,24001,1591,801,146586286,146146286,1591,801,146586286,146146286,75087,33311,1113517664,1098563627,100,100,100,100,2.12,2.4,13.16,13.3
-21531,24,023,24023,2227,1278,162503740,160031728,2227,1278,162503740,160031728,30097,18854,1698352489,1675989023,100,100,100,100,7.4,6.78,9.57,9.55
-21532,24,001,24001,14099,5812,113562892,113394805,15620,6425,202048330,201557315,75087,33311,1113517664,1098563627,90.26,90.46,56.21,56.26,18.78,17.45,10.2,10.32
-21532,24,023,24023,1521,613,88485438,88162510,15620,6425,202048330,201557315,30097,18854,1698352489,1675989023,9.74,9.54,43.79,43.74,5.05,3.25,5.21,5.26
-21536,24,023,24023,4121,1890,258050558,257799183,4121,1890,258050558,257799183,30097,18854,1698352489,1675989023,100,100,100,100,13.69,10.02,15.19,15.38
-21538,24,023,24023,716,358,46824204,46293462,716,358,46824204,46293462,30097,18854,1698352489,1675989023,100,100,100,100,2.38,1.9,2.76,2.76
-21539,24,001,24001,2281,1008,37952134,37881205,2819,1240,89905211,89834282,75087,33311,1113517664,1098563627,80.92,81.29,42.21,42.17,3.04,3.03,3.41,3.45
-21539,24,023,24023,538,232,51953077,51953077,2819,1240,89905211,89834282,30097,18854,1698352489,1675989023,19.08,18.71,57.79,57.83,1.79,1.23,3.06,3.1
-21540,24,001,24001,65,61,810142,698918,65,61,810142,698918,75087,33311,1113517664,1098563627,100,100,100,100,0.09,0.18,0.07,0.06
-21541,24,023,24023,1546,2293,71373845,68154240,1546,2293,71373845,68154240,30097,18854,1698352489,1675989023,100,100,100,100,5.14,12.16,4.2,4.07
-21542,24,001,24001,483,229,1772593,1772593,483,229,1772593,1772593,75087,33311,1113517664,1098563627,100,100,100,100,0.64,0.69,0.16,0.16
-21543,24,001,24001,140,61,3525386,3524518,140,61,3525386,3524518,75087,33311,1113517664,1098563627,100,100,100,100,0.19,0.18,0.32,0.32
-21545,24,001,24001,1940,868,37256081,37234974,1940,868,37256081,37234974,75087,33311,1113517664,1098563627,100,100,100,100,2.58,2.61,3.35,3.39
-21550,24,023,24023,14194,8203,533608457,526785492,14194,8203,533608457,526785492,30097,18854,1698352489,1675989023,100,100,100,100,47.16,43.51,31.42,31.43
-21555,24,001,24001,1936,1054,280311507,274428331,1936,1054,280311507,274428331,75087,33311,1113517664,1098563627,100,100,100,100,2.58,3.16,25.17,24.98
-21557,24,001,24001,1895,876,70996013,69760972,1895,876,70996013,69760972,75087,33311,1113517664,1098563627,100,100,100,100,2.52,2.63,6.38,6.35
-21561,24,023,24023,2627,2699,248707811,240038317,2627,2699,248707811,240038317,30097,18854,1698352489,1675989023,100,100,100,100,8.73,14.32,14.64,14.32
-21562,24,001,24001,3108,1517,38458782,37985441,3141,1536,75549010,75067999,75087,33311,1113517664,1098563627,98.95,98.76,50.91,50.6,4.14,4.55,3.45,3.46
-21562,24,023,24023,33,19,37090228,37082558,3141,1536,75549010,75067999,30097,18854,1698352489,1675989023,1.05,1.24,49.09,49.4,0.11,0.1,2.18,2.21
-21601,24,041,24041,23597,11292,337069351,283350581,23597,11292,337069351,283350581,37782,19577,1234920318,695511159,100,100,100,100,62.46,57.68,27.29,40.74
-21607,24,035,24035,583,236,47395591,47395591,583,236,47395591,47395591,47798,20140,1322685885,963235987,100,100,100,100,1.22,1.17,3.58,4.92
-21610,24,029,24029,378,347,8211562,4580667,378,347,8211562,4580667,20197,10549,1070818566,717505271,100,100,100,100,1.87,3.29,0.77,0.64
-21612,24,041,24041,492,377,31341822,14905132,492,377,31341822,14905132,37782,19577,1234920318,695511159,100,100,100,100,1.3,1.93,2.54,2.14
-21613,24,019,24019,17330,8985,506184017,402573173,17330,8985,506184017,402573173,32618,16554,2545968559,1400575316,100,100,100,100,53.13,54.28,19.88,28.74
-21617,24,035,24035,9907,3897,306314950,283247829,9907,3897,306314950,283247829,47798,20140,1322685885,963235987,100,100,100,100,20.73,19.35,23.16,29.41
-21619,24,035,24035,5848,2715,49547035,24230812,5848,2715,49547035,24230812,47798,20140,1322685885,963235987,100,100,100,100,12.23,13.48,3.75,2.52
-21620,24,029,24029,9601,4686,275754888,237404895,12853,6159,346285581,302566585,20197,10549,1070818566,717505271,74.7,76.08,79.63,78.46,47.54,44.42,25.75,33.09
-21620,24,035,24035,3252,1473,70530693,65161690,12853,6159,346285581,302566585,47798,20140,1322685885,963235987,25.3,23.92,20.37,21.54,6.8,7.31,5.33,6.76
-21622,24,019,24019,558,354,172941460,140619350,558,354,172941460,140619350,32618,16554,2545968559,1400575316,100,100,100,100,1.71,2.14,6.79,10.04
-21623,24,035,24035,2111,816,99089081,97170955,2111,816,99089081,97170955,47798,20140,1322685885,963235987,100,100,100,100,4.42,4.05,7.49,10.09
-21624,24,041,24041,143,99,9042044,2862461,143,99,9042044,2862461,37782,19577,1234920318,695511159,100,100,100,100,0.38,0.51,0.73,0.41
-21625,24,041,24041,2719,1083,109520336,108023258,2719,1083,109520336,108023258,37782,19577,1234920318,695511159,100,100,100,100,7.2,5.53,8.87,15.53
-21626,24,019,24019,120,122,83669342,75270424,120,122,83669342,75270424,32618,16554,2545968559,1400575316,100,100,100,100,0.37,0.74,3.29,5.37
-21627,24,019,24019,18,27,4158890,3633354,18,27,4158890,3633354,32618,16554,2545968559,1400575316,100,100,100,100,0.06,0.16,0.16,0.26
-21628,24,035,24035,556,251,3253120,2733675,556,251,3253120,2733675,47798,20140,1322685885,963235987,100,100,100,100,1.16,1.25,0.25,0.28
-21629,24,011,24011,9555,3897,221029792,214651886,9555,3897,221029792,214651886,33066,13482,844082086,827292416,100,100,100,100,28.9,28.91,26.19,25.95
-21631,24,019,24019,2731,1216,78262564,67544406,2731,1216,78262564,67544406,32618,16554,2545968559,1400575316,100,100,100,100,8.37,7.35,3.07,4.82
-21632,24,011,24011,5649,2454,163876975,163212814,6353,2742,193193372,191895132,33066,13482,844082086,827292416,88.92,89.5,84.83,85.05,17.08,18.2,19.41,19.73
-21632,24,019,24019,704,288,29316397,28682318,6353,2742,193193372,191895132,32618,16554,2545968559,1400575316,11.08,10.5,15.17,14.95,2.16,1.74,1.15,2.05
-21634,24,019,24019,305,307,33023422,12200561,305,307,33023422,12200561,32618,16554,2545968559,1400575316,100,100,100,100,0.94,1.85,1.3,0.87
-21635,24,029,24029,2098,1034,83718026,79654483,2098,1034,83718026,79654483,20197,10549,1070818566,717505271,100,100,100,100,10.39,9.8,7.82,11.1
-21636,24,011,24011,1186,486,57331763,57175453,1186,486,57331763,57175453,33066,13482,844082086,827292416,100,100,100,100,3.59,3.6,6.79,6.91
-21638,24,035,24035,4934,2191,39779132,25480164,4934,2191,39779132,25480164,47798,20140,1322685885,963235987,100,100,100,100,10.32,10.88,3.01,2.65
-21639,24,011,24011,4408,1779,85363218,85021451,4408,1779,85363218,85021451,33066,13482,844082086,827292416,100,100,100,100,13.33,13.2,10.11,10.28
-21640,24,011,24011,1540,618,60018701,59833527,1632,651,71831515,71646341,33066,13482,844082086,827292416,94.36,94.93,83.55,83.51,4.66,4.58,7.11,7.23
-21640,24,035,24035,92,33,11812814,11812814,1632,651,71831515,71646341,47798,20140,1322685885,963235987,5.64,5.07,16.45,16.49,0.19,0.16,0.89,1.23
-21641,24,011,24011,117,55,239648,233483,117,55,239648,233483,33066,13482,844082086,827292416,100,100,100,100,0.35,0.41,0.03,0.03
-21643,24,019,24019,5979,2576,128738585,123412463,5979,2576,128738585,123412463,32618,16554,2545968559,1400575316,100,100,100,100,18.33,15.56,5.06,8.81
-21644,24,035,24035,111,41,11140680,11140680,111,41,11140680,11140680,47798,20140,1322685885,963235987,100,100,100,100,0.23,0.2,0.84,1.16
-21645,24,029,24029,1039,594,106450348,98637796,1039,594,106450348,98637796,20197,10549,1070818566,717505271,100,100,100,100,5.14,5.63,9.94,13.75
-21647,24,041,24041,289,184,10183763,8550190,289,184,10183763,8550190,37782,19577,1234920318,695511159,100,100,100,100,0.76,0.94,0.82,1.23
-21648,24,019,24019,255,150,56485324,45632511,255,150,56485324,45632511,32618,16554,2545968559,1400575316,100,100,100,100,0.78,0.91,2.22,3.26
-21649,24,011,24011,1539,471,24235120,24210828,1858,593,44142320,44118028,33066,13482,844082086,827292416,82.83,79.43,54.9,54.88,4.65,3.49,2.87,2.93
-21649,24,035,24035,319,122,19907200,19907200,1858,593,44142320,44118028,47798,20140,1322685885,963235987,17.17,20.57,45.1,45.12,0.67,0.61,1.51,2.07
-21650,24,029,24029,238,98,28804243,28668471,238,98,28804243,28668471,20197,10549,1070818566,717505271,100,100,100,100,1.18,0.93,2.69,4
-21651,24,029,24029,1579,699,73495789,72060903,2898,1234,102839043,100850231,20197,10549,1070818566,717505271,54.49,56.65,71.47,71.45,7.82,6.63,6.86,10.04
-21651,24,035,24035,1319,535,29343254,28789328,2898,1234,102839043,100850231,47798,20140,1322685885,963235987,45.51,43.35,28.53,28.55,2.76,2.66,2.22,2.99
-21652,24,041,24041,183,154,4281089,1552741,183,154,4281089,1552741,37782,19577,1234920318,695511159,100,100,100,100,0.48,0.79,0.35,0.22
-21653,24,041,24041,114,77,573851,450150,114,77,573851,450150,37782,19577,1234920318,695511159,100,100,100,100,0.3,0.39,0.05,0.06
-21654,24,041,24041,1236,974,38304595,28411730,1236,974,38304595,28411730,37782,19577,1234920318,695511159,100,100,100,100,3.27,4.98,3.1,4.09
-21655,24,011,24011,5009,2165,145907625,137258137,5009,2165,145907625,137258137,33066,13482,844082086,827292416,100,100,100,100,15.15,16.06,17.29,16.59
-21657,24,035,24035,691,281,58738622,58694303,777,310,64472052,64427733,47798,20140,1322685885,963235987,88.93,90.65,91.11,91.1,1.45,1.4,4.44,6.09
-21657,24,041,24041,86,29,5733430,5733430,777,310,64472052,64427733,37782,19577,1234920318,695511159,11.07,9.35,8.89,8.9,0.23,0.15,0.46,0.82
-21658,24,035,24035,3862,1679,120450033,101617928,3862,1679,120450033,101617928,47798,20140,1322685885,963235987,100,100,100,100,8.08,8.34,9.11,10.55
-21659,24,019,24019,1551,702,127584265,124235193,1551,702,127584265,124235193,32618,16554,2545968559,1400575316,100,100,100,100,4.76,4.24,5.01,8.87
-21660,24,011,24011,4063,1557,86079244,85694837,4063,1557,86079244,85694837,33066,13482,844082086,827292416,100,100,100,100,12.29,11.55,10.2,10.36
-21661,24,029,24029,2653,1792,140899303,83954615,2653,1792,140899303,83954615,20197,10549,1070818566,717505271,100,100,100,100,13.14,16.99,13.16,11.7
-21662,24,041,24041,555,422,35383628,20686112,555,422,35383628,20686112,37782,19577,1234920318,695511159,100,100,100,100,1.47,2.16,2.87,2.97
-21663,24,041,24041,3308,2167,49003822,31660228,3308,2167,49003822,31660228,37782,19577,1234920318,695511159,100,100,100,100,8.76,11.07,3.97,4.55
-21664,24,019,24019,539,236,1191142,1121671,539,236,1191142,1121671,32618,16554,2545968559,1400575316,100,100,100,100,1.65,1.43,0.05,0.08
-21665,24,041,24041,287,195,23447870,10578736,287,195,23447870,10578736,37782,19577,1234920318,695511159,100,100,100,100,0.76,1,1.9,1.52
-21666,24,035,24035,12309,5085,85021788,57244987,12309,5085,85021788,57244987,47798,20140,1322685885,963235987,100,100,100,100,25.75,25.25,6.43,5.94
-21667,24,029,24029,310,155,16711088,15242720,310,155,16711088,15242720,20197,10549,1070818566,717505271,100,100,100,100,1.53,1.47,1.56,2.12
-21668,24,035,24035,1904,785,128677221,128608031,1904,785,128677221,128608031,47798,20140,1322685885,963235987,100,100,100,100,3.98,3.9,9.73,13.35
-21669,24,019,24019,229,228,48138257,32129918,229,228,48138257,32129918,32618,16554,2545968559,1400575316,100,100,100,100,0.7,1.38,1.89,2.29
-21671,24,041,24041,756,619,14397773,5472625,756,619,14397773,5472625,37782,19577,1234920318,695511159,100,100,100,100,2,3.16,1.17,0.79
-21672,24,019,24019,241,216,32518544,24966397,241,216,32518544,24966397,32618,16554,2545968559,1400575316,100,100,100,100,0.74,1.3,1.28,1.78
-21673,24,041,24041,3136,1456,176936431,133831191,3136,1456,176936431,133831191,37782,19577,1234920318,695511159,100,100,100,100,8.3,7.44,14.33,19.24
-21675,24,019,24019,105,103,10361816,8431831,105,103,10361816,8431831,32618,16554,2545968559,1400575316,100,100,100,100,0.32,0.62,0.41,0.6
-21676,24,041,24041,398,260,37129808,16266947,398,260,37129808,16266947,37782,19577,1234920318,695511159,100,100,100,100,1.05,1.33,3.01,2.34
-21677,24,019,24019,440,248,31054037,24178723,440,248,31054037,24178723,32618,16554,2545968559,1400575316,100,100,100,100,1.35,1.5,1.22,1.73
-21678,24,029,24029,2301,1144,109888544,97300721,2301,1144,109888544,97300721,20197,10549,1070818566,717505271,100,100,100,100,11.39,10.84,10.26,13.56
-21679,24,041,24041,483,189,24066511,23175647,483,189,24066511,23175647,37782,19577,1234920318,695511159,100,100,100,100,1.28,0.97,1.95,3.33
-21701,24,021,24021,35293,15847,102534964,100783138,35293,15847,102534964,100783138,233385,90136,1728501977,1709964627,100,100,100,100,15.12,17.58,5.93,5.89
-21702,24,021,24021,38847,15617,104938281,104655311,38847,15617,104938281,104655311,233385,90136,1728501977,1709964627,100,100,100,100,16.65,17.33,6.07,6.12
-21703,24,021,24021,32854,12772,86243425,86136850,32854,12772,86243425,86136850,233385,90136,1728501977,1709964627,100,100,100,100,14.08,14.17,4.99,5.04
-21704,24,021,24021,13321,4439,68320753,67773106,13321,4439,68320753,67773106,233385,90136,1728501977,1709964627,100,100,100,100,5.71,4.92,3.95,3.96
-21705,24,021,24021,8,0,61289,61289,8,0,61289,61289,233385,90136,1728501977,1709964627,100,0,100,100,0,0,0,0
-21710,24,021,24021,4515,1710,67336972,66189037,4515,1710,67336972,66189037,233385,90136,1728501977,1709964627,100,100,100,100,1.93,1.9,3.9,3.87
-21711,24,043,24043,1029,418,63549116,61780568,1029,418,63549116,61780568,147430,60814,1210413331,1185644157,100,100,100,100,0.7,0.69,5.25,5.21
-21713,24,043,24043,9502,3769,109552332,109393375,9502,3769,109552332,109393375,147430,60814,1210413331,1185644157,100,100,100,100,6.45,6.2,9.05,9.23
-21714,24,021,24021,99,61,74855,74855,99,61,74855,74855,233385,90136,1728501977,1709964627,100,100,100,100,0.04,0.07,0,0
-21716,24,021,24021,4885,2054,10111172,8365222,4885,2054,10111172,8365222,233385,90136,1728501977,1709964627,100,100,100,100,2.09,2.28,0.58,0.49
-21717,24,021,24021,54,25,960626,950042,54,25,960626,950042,233385,90136,1728501977,1709964627,100,100,100,100,0.02,0.03,0.06,0.06
-21718,24,021,24021,151,74,1185718,1175291,151,74,1185718,1175291,233385,90136,1728501977,1709964627,100,100,100,100,0.06,0.08,0.07,0.07
-21719,24,021,24021,39,22,237767,237767,1548,660,8773881,8705488,233385,90136,1728501977,1709964627,2.52,3.33,2.71,2.73,0.02,0.02,0.01,0.01
-21719,24,043,24043,1509,638,8536114,8467721,1548,660,8773881,8705488,147430,60814,1210413331,1185644157,97.48,96.67,97.29,97.27,1.02,1.05,0.71,0.71
-21722,24,043,24043,5545,2186,157090471,153722385,5545,2186,157090471,153722385,147430,60814,1210413331,1185644157,100,100,100,100,3.76,3.59,12.98,12.97
-21723,24,027,24027,803,252,7982839,7900647,803,252,7982839,7900647,287085,109282,656288081,649416399,100,100,100,100,0.28,0.23,1.22,1.22
-21727,24,021,24021,5850,1811,83426261,82894708,5850,1811,83426261,82894708,233385,90136,1728501977,1709964627,100,100,100,100,2.51,2.01,4.83,4.85
-21733,24,043,24043,1163,428,15657081,15657081,1163,428,15657081,15657081,147430,60814,1210413331,1185644157,100,100,100,100,0.79,0.7,1.29,1.32
-21734,24,043,24043,771,392,585226,585226,771,392,585226,585226,147430,60814,1210413331,1185644157,100,100,100,100,0.52,0.64,0.05,0.05
-21737,24,027,24027,1458,466,13272976,13133861,1458,466,13272976,13133861,287085,109282,656288081,649416399,100,100,100,100,0.51,0.43,2.02,2.02
-21738,24,027,24027,3268,1062,18985944,18881608,3268,1062,18985944,18881608,287085,109282,656288081,649416399,100,100,100,100,1.14,0.97,2.89,2.91
-21740,24,043,24043,61859,25858,181655120,180896936,61859,25858,181655120,180896936,147430,60814,1210413331,1185644157,100,100,100,100,41.96,42.52,15.01,15.26
-21742,24,043,24043,31444,13555,130762786,130689423,31444,13555,130762786,130689423,147430,60814,1210413331,1185644157,100,100,100,100,21.33,22.29,10.8,11.02
-21746,24,043,24043,1883,0,932545,932545,1883,0,932545,932545,147430,60814,1210413331,1185644157,100,0,100,100,1.28,0,0.08,0.08
-21750,24,043,24043,3766,1779,160573004,156366138,3766,1779,160573004,156366138,147430,60814,1210413331,1185644157,100,100,100,100,2.55,2.93,13.27,13.19
-21754,24,021,24021,6323,2198,61533248,61427395,6323,2198,61533248,61427395,233385,90136,1728501977,1709964627,100,100,100,100,2.71,2.44,3.56,3.59
-21755,24,021,24021,5591,2103,90833767,89210936,5591,2103,90833767,89210936,233385,90136,1728501977,1709964627,100,100,100,100,2.4,2.33,5.26,5.22
-21756,24,043,24043,3612,1340,54140576,54112474,3612,1340,54140576,54112474,147430,60814,1210413331,1185644157,100,100,100,100,2.45,2.2,4.47,4.56
-21757,24,013,24013,1394,543,52768067,52616997,3036,1170,97712988,97513958,167134,62406,1172454846,1159264845,45.92,46.41,54,53.96,0.83,0.87,4.5,4.54
-21757,24,021,24021,1642,627,44944921,44896961,3036,1170,97712988,97513958,233385,90136,1728501977,1709964627,54.08,53.59,46,46.04,0.7,0.7,2.6,2.63
-21758,24,021,24021,3130,1105,42022213,40113231,4921,1882,90284570,83996318,233385,90136,1728501977,1709964627,63.6,58.71,46.54,47.76,1.34,1.23,2.43,2.35
-21758,24,043,24043,1791,777,48262357,43883087,4921,1882,90284570,83996318,147430,60814,1210413331,1185644157,36.4,41.29,53.46,52.24,1.21,1.28,3.99,3.7
-21762,24,021,24021,249,100,952882,952882,249,100,952882,952882,233385,90136,1728501977,1709964627,100,100,100,100,0.11,0.11,0.06,0.06
-21766,24,001,24001,700,396,100161950,97905209,700,396,100161950,97905209,75087,33311,1113517664,1098563627,100,100,100,100,0.93,1.19,9,8.91
-21767,24,043,24043,991,463,737107,737107,991,463,737107,737107,147430,60814,1210413331,1185644157,100,100,100,100,0.67,0.76,0.06,0.06
-21769,24,021,24021,11198,4135,105765512,105018756,11236,4149,106373097,105626341,233385,90136,1728501977,1709964627,99.66,99.66,99.43,99.42,4.8,4.59,6.12,6.14
-21769,24,043,24043,38,14,607585,607585,11236,4149,106373097,105626341,147430,60814,1210413331,1185644157,0.34,0.34,0.57,0.58,0.03,0.02,0.05,0.05
-21770,24,021,24021,5164,1780,28513774,28486330,5164,1780,28513774,28486330,233385,90136,1728501977,1709964627,100,100,100,100,2.21,1.97,1.65,1.67
-21771,24,013,24013,12568,4462,61840247,61670010,29563,10200,220756024,220312876,167134,62406,1172454846,1159264845,42.51,43.75,28.01,27.99,7.52,7.15,5.27,5.32
-21771,24,021,24021,13736,4615,110548762,110367837,29563,10200,220756024,220312876,233385,90136,1728501977,1709964627,46.46,45.25,50.08,50.1,5.89,5.12,6.4,6.45
-21771,24,027,24027,2990,1029,40203005,40145369,29563,10200,220756024,220312876,287085,109282,656288081,649416399,10.11,10.09,18.21,18.22,1.04,0.94,6.13,6.18
-21771,24,031,24031,269,94,8164010,8129660,29563,10200,220756024,220312876,971777,375905,1312988649,1272343169,0.91,0.92,3.7,3.69,0.03,0.03,0.62,0.64
-21773,24,021,24021,5460,2080,100502407,100274686,5460,2080,100502407,100274686,233385,90136,1728501977,1709964627,100,100,100,100,2.34,2.31,5.81,5.86
-21774,24,021,24021,11662,4073,37957844,37289821,11662,4073,37957844,37289821,233385,90136,1728501977,1709964627,100,100,100,100,5,4.52,2.2,2.18
-21776,24,013,24013,4929,1877,69297870,69018759,5735,2159,91494231,91194849,167134,62406,1172454846,1159264845,85.95,86.94,75.74,75.68,2.95,3.01,5.91,5.95
-21776,24,021,24021,806,282,22196361,22176090,5735,2159,91494231,91194849,233385,90136,1728501977,1709964627,14.05,13.06,24.26,24.32,0.35,0.31,1.28,1.3
-21777,24,021,24021,1470,528,7795755,5447272,1470,528,7795755,5447272,233385,90136,1728501977,1709964627,100,100,100,100,0.63,0.59,0.45,0.32
-21778,24,021,24021,1094,438,46338843,45182828,1094,438,46338843,45182828,233385,90136,1728501977,1709964627,100,100,100,100,0.47,0.49,2.68,2.64
-21779,24,043,24043,983,394,23202464,23202464,983,394,23202464,23202464,147430,60814,1210413331,1185644157,100,100,100,100,0.67,0.65,1.92,1.96
-21780,24,021,24021,1542,624,56671125,56631673,1625,661,58278984,58239532,233385,90136,1728501977,1709964627,94.89,94.4,97.24,97.24,0.66,0.69,3.28,3.31
-21780,24,043,24043,83,37,1607859,1607859,1625,661,58278984,58239532,147430,60814,1210413331,1185644157,5.11,5.6,2.76,2.76,0.06,0.06,0.13,0.14
-21781,24,043,24043,136,7,656097,656097,136,7,656097,656097,147430,60814,1210413331,1185644157,100,100,100,100,0.09,0.01,0.05,0.06
-21782,24,043,24043,4097,1730,83167322,77664726,4097,1730,83167322,77664726,147430,60814,1210413331,1185644157,100,100,100,100,2.78,2.84,6.87,6.55
-21783,24,021,24021,1135,451,29931102,29842622,9130,3522,116436019,116295091,233385,90136,1728501977,1709964627,12.43,12.81,25.71,25.66,0.49,0.5,1.73,1.75
-21783,24,043,24043,7995,3071,86504917,86452469,9130,3522,116436019,116295091,147430,60814,1210413331,1185644157,87.57,87.19,74.29,74.34,5.42,5.05,7.15,7.29
-21784,24,013,24013,35829,12703,126437394,121328415,37941,13454,154275180,149010950,167134,62406,1172454846,1159264845,94.43,94.42,81.96,81.42,21.44,20.36,10.78,10.47
-21784,24,027,24027,2112,751,27837786,27682535,37941,13454,154275180,149010950,287085,109282,656288081,649416399,5.57,5.58,18.04,18.58,0.74,0.69,4.24,4.26
-21787,24,013,24013,10449,4059,131725976,131217005,10693,4171,149434167,148804253,167134,62406,1172454846,1159264845,97.72,97.31,88.15,88.18,6.25,6.5,11.24,11.32
-21787,24,021,24021,244,112,17708191,17587248,10693,4171,149434167,148804253,233385,90136,1728501977,1709964627,2.28,2.69,11.85,11.82,0.1,0.12,1.02,1.03
-21788,24,021,24021,11622,4718,174278062,172898559,11622,4718,174278062,172898559,233385,90136,1728501977,1709964627,100,100,100,100,4.98,5.23,10.08,10.11
-21790,24,021,24021,100,44,10181200,10146412,100,44,10181200,10146412,233385,90136,1728501977,1709964627,100,100,100,100,0.04,0.05,0.59,0.59
-21791,24,013,24013,2790,1132,50934983,50822689,5281,2053,127876475,127672231,167134,62406,1172454846,1159264845,52.83,55.14,39.83,39.81,1.67,1.81,4.34,4.38
-21791,24,021,24021,2491,921,76941492,76849542,5281,2053,127876475,127672231,233385,90136,1728501977,1709964627,47.17,44.86,60.17,60.19,1.07,1.02,4.45,4.49
-21793,24,021,24021,9775,3591,52867849,52831424,9775,3591,52867849,52831424,233385,90136,1728501977,1709964627,100,100,100,100,4.19,3.98,3.06,3.09
-21794,24,027,24027,2434,777,22690058,22605176,2434,777,22690058,22605176,287085,109282,656288081,649416399,100,100,100,100,0.85,0.71,3.46,3.48
-21795,24,043,24043,9233,3958,82633252,78228891,9233,3958,82633252,78228891,147430,60814,1210413331,1185644157,100,100,100,100,6.26,6.51,6.83,6.6
-21797,24,013,24013,3056,1118,35207537,35135714,8839,3079,112705798,112103676,167134,62406,1172454846,1159264845,34.57,36.31,31.24,31.34,1.83,1.79,3,3.03
-21797,24,027,24027,5783,1961,77498261,76967962,8839,3079,112705798,112103676,287085,109282,656288081,649416399,65.43,63.69,68.76,68.66,2.01,1.79,11.81,11.85
-21798,24,021,24021,2345,896,42979668,42827079,2345,896,42979668,42827079,233385,90136,1728501977,1709964627,100,100,100,100,1,0.99,2.49,2.5
-21801,24,045,24045,29961,11922,113408333,109651385,29961,11922,113408333,109651385,98733,41192,1036612863,969804281,100,100,100,100,30.35,28.94,10.94,11.31
-21802,24,045,24045,89,0,136027,136027,89,0,136027,136027,98733,41192,1036612863,969804281,100,0,100,100,0.09,0,0.01,0.01
-21804,24,045,24045,38214,16062,142138757,140803306,38491,16184,193811218,192412299,98733,41192,1036612863,969804281,99.28,99.25,73.34,73.18,38.7,38.99,13.71,14.52
-21804,24,047,24047,277,122,51672461,51608993,38491,16184,193811218,192412299,51454,55749,1799675982,1212841011,0.72,0.75,26.66,26.82,0.54,0.22,2.87,4.26
-21810,24,045,24045,487,221,25293206,25003387,487,221,25293206,25003387,98733,41192,1036612863,969804281,100,100,100,100,0.49,0.54,2.44,2.58
-21811,24,047,24047,22550,14832,292989278,260737100,22550,14832,292989278,260737100,51454,55749,1799675982,1212841011,100,100,100,100,43.83,26.6,16.28,21.5
-21813,24,047,24047,2852,1345,82482244,64314060,2852,1345,82482244,64314060,51454,55749,1799675982,1212841011,100,100,100,100,5.54,2.41,4.58,5.3
-21814,24,045,24045,380,224,17359717,9597311,380,224,17359717,9597311,98733,41192,1036612863,969804281,100,100,100,100,0.38,0.54,1.67,0.99
-21817,24,039,24039,5236,2897,48080268,37916876,5236,2897,48080268,37916876,26470,11130,1580804803,828079452,100,100,100,100,19.78,26.03,3.04,4.58
-21821,24,039,24039,991,734,40887071,28297631,991,734,40887071,28297631,26470,11130,1580804803,828079452,100,100,100,100,3.74,6.59,2.59,3.42
-21822,24,039,24039,972,431,23758747,23611430,1930,827,75430580,73145717,26470,11130,1580804803,828079452,50.36,52.12,31.5,32.28,3.67,3.87,1.5,2.85
-21822,24,045,24045,783,319,25514616,23432649,1930,827,75430580,73145717,98733,41192,1036612863,969804281,40.57,38.57,33.83,32.04,0.79,0.77,2.46,2.42
-21822,24,047,24047,175,77,26157217,26101638,1930,827,75430580,73145717,51454,55749,1799675982,1212841011,9.07,9.31,34.68,35.68,0.34,0.14,1.45,2.15
-21824,24,039,24039,198,181,6881744,5692314,198,181,6881744,5692314,26470,11130,1580804803,828079452,100,100,100,100,0.75,1.63,0.44,0.69
-21826,24,045,24045,4837,2028,11588641,11422761,4837,2028,11588641,11422761,98733,41192,1036612863,969804281,100,100,100,100,4.9,4.92,1.12,1.18
-21829,24,047,24047,527,247,53097768,47170995,527,247,53097768,47170995,51454,55749,1799675982,1212841011,100,100,100,100,1.02,0.44,2.95,3.89
-21830,24,045,24045,4026,1591,83407106,81112328,4026,1591,83407106,81112328,98733,41192,1036612863,969804281,100,100,100,100,4.08,3.86,8.05,8.36
-21835,24,019,24019,507,235,21168221,20827542,507,235,21168221,20827542,32618,16554,2545968559,1400575316,100,100,100,100,1.55,1.42,0.83,1.49
-21837,24,045,24045,2614,1119,123480519,115023862,2614,1119,123480519,115023862,98733,41192,1036612863,969804281,100,100,100,100,2.65,2.72,11.91,11.86
-21838,24,039,24039,1736,894,157016435,138436073,1736,894,157016435,138436073,26470,11130,1580804803,828079452,100,100,100,100,6.56,8.03,9.93,16.72
-21840,24,045,24045,375,276,32886328,13555319,375,276,32886328,13555319,98733,41192,1036612863,969804281,100,100,100,100,0.38,0.67,3.17,1.4
-21841,24,047,24047,860,394,82232137,79837188,860,394,82232137,79837188,51454,55749,1799675982,1212841011,100,100,100,100,1.67,0.71,4.57,6.58
-21842,24,047,24047,11089,32844,40227396,23029459,11089,32844,40227396,23029459,51454,55749,1799675982,1212841011,100,100,100,100,21.55,58.91,2.24,1.9
-21849,24,045,24045,3238,1375,90359499,90013651,3238,1375,90359499,90013651,98733,41192,1036612863,969804281,100,100,100,100,3.28,3.34,8.72,9.28
-21850,24,045,24045,2790,1279,80708331,80528167,2790,1279,80708331,80528167,98733,41192,1036612863,969804281,100,100,100,100,2.83,3.1,7.79,8.3
-21851,24,039,24039,655,339,53588076,52595463,7315,3365,279035032,273836833,26470,11130,1580804803,828079452,8.95,10.07,19.2,19.21,2.47,3.05,3.39,6.35
-21851,24,047,24047,6660,3026,225446956,221241370,7315,3365,279035032,273836833,51454,55749,1799675982,1212841011,91.05,89.93,80.8,80.79,12.94,5.43,12.53,18.24
-21853,24,039,24039,11126,4431,334185869,308185662,11126,4431,334185869,308185662,26470,11130,1580804803,828079452,100,100,100,100,42.03,39.81,21.14,37.22
-21856,24,045,24045,1035,440,99740494,90719319,1035,440,99740494,90719319,98733,41192,1036612863,969804281,100,100,100,100,1.05,1.07,9.62,9.35
-21861,24,045,24045,757,337,8047799,6787689,757,337,8047799,6787689,98733,41192,1036612863,969804281,100,100,100,100,0.77,0.82,0.78,0.7
-21862,24,047,24047,106,54,3294539,3289065,106,54,3294539,3289065,51454,55749,1799675982,1212841011,100,100,100,100,0.21,0.1,0.18,0.27
-21863,24,047,24047,5029,2192,309843225,300061689,5029,2192,309843225,300061689,51454,55749,1799675982,1212841011,100,100,100,100,9.77,3.93,17.22,24.74
-21864,24,047,24047,611,309,61627891,55088003,611,309,61627891,55088003,51454,55749,1799675982,1212841011,100,100,100,100,1.19,0.55,3.42,4.54
-21865,24,045,24045,470,286,52132678,41813534,470,286,52132678,41813534,98733,41192,1036612863,969804281,100,100,100,100,0.48,0.69,5.03,4.31
-21866,24,039,24039,78,74,318387,318387,78,74,318387,318387,26470,11130,1580804803,828079452,100,100,100,100,0.29,0.66,0.02,0.04
-21867,24,039,24039,114,69,709892,709892,114,69,709892,709892,26470,11130,1580804803,828079452,100,100,100,100,0.43,0.62,0.04,0.09
-21869,24,019,24019,1006,561,279893864,245571192,1006,561,279893864,245571192,32618,16554,2545968559,1400575316,100,100,100,100,3.08,3.39,10.99,17.53
-21871,24,039,24039,2124,1080,193531546,175572653,2124,1080,193531546,175572653,26470,11130,1580804803,828079452,100,100,100,100,8.02,9.7,12.24,21.2
-21872,24,047,24047,718,307,47025028,46808316,718,307,47025028,46808316,51454,55749,1799675982,1212841011,100,100,100,100,1.4,0.55,2.61,3.86
-21874,24,045,24045,2210,917,69520342,69407025,2210,917,69520342,69407025,98733,41192,1036612863,969804281,100,100,100,100,2.24,2.23,6.71,7.16
-21875,24,045,24045,6467,2796,60890470,60796561,6467,2796,60890470,60796561,98733,41192,1036612863,969804281,100,100,100,100,6.55,6.79,5.87,6.27
-21890,24,039,24039,3240,0,344055,342406,3240,0,344055,342406,26470,11130,1580804803,828079452,100,0,100,100,12.24,0,0.02,0.04
-21901,24,015,24015,15875,6648,135835976,127422037,15875,6648,135835976,127422037,101108,41103,1082193770,896842957,100,100,100,100,15.7,16.17,12.55,14.21
-21902,24,015,24015,471,43,2083319,2083319,471,43,2083319,2083319,101108,41103,1082193770,896842957,100,100,100,100,0.47,0.1,0.19,0.23
-21903,24,015,24015,5687,2613,31673788,31427354,5687,2613,31673788,31427354,101108,41103,1082193770,896842957,100,100,100,100,5.62,6.36,2.93,3.5
-21904,24,015,24015,7252,2871,67741732,61208326,7252,2871,67741732,61208326,101108,41103,1082193770,896842957,100,100,100,100,7.17,6.98,6.26,6.82
-21911,24,015,24015,11004,4081,97406598,96719926,11004,4081,97406598,96719926,101108,41103,1082193770,896842957,100,100,100,100,10.88,9.93,9,10.78
-21912,10,003,10003,9,3,312015,267635,1240,511,85322050,81697797,538479,217511,1279460557,1104074798,0.73,0.59,0.37,0.33,0,0,0.02,0.02
-21912,24,015,24015,1231,508,85010035,81430162,1240,511,85322050,81697797,101108,41103,1082193770,896842957,99.27,99.41,99.63,99.67,1.22,1.24,7.86,9.08
-21913,24,015,24015,663,264,1165581,1165581,663,264,1165581,1165581,101108,41103,1082193770,896842957,100,100,100,100,0.66,0.64,0.11,0.13
-21914,24,015,24015,765,428,2380275,1903165,765,428,2380275,1903165,101108,41103,1082193770,896842957,100,100,100,100,0.76,1.04,0.22,0.21
-21915,24,015,24015,3030,1582,77786441,65591600,3030,1582,77786441,65591600,101108,41103,1082193770,896842957,100,100,100,100,3,3.85,7.19,7.31
-21916,24,015,24015,37,0,233632,233632,37,0,233632,233632,101108,41103,1082193770,896842957,100,0,100,100,0.04,0,0.02,0.03
-21917,24,015,24015,2520,907,20411650,20265281,2520,907,20411650,20265281,101108,41103,1082193770,896842957,100,100,100,100,2.49,2.21,1.89,2.26
-21918,24,015,24015,4284,1589,52369507,45741330,4284,1589,52369507,45741330,101108,41103,1082193770,896842957,100,100,100,100,4.24,3.87,4.84,5.1
-21919,24,015,24015,3467,2179,135289724,112736603,3467,2179,135289724,112736603,101108,41103,1082193770,896842957,100,100,100,100,3.43,5.3,12.5,12.57
-21920,24,015,24015,257,100,1290392,1290392,257,100,1290392,1290392,101108,41103,1082193770,896842957,100,100,100,100,0.25,0.24,0.12,0.14
-21921,24,015,24015,44471,17232,259037534,244939298,44471,17232,259037534,244939298,101108,41103,1082193770,896842957,100,100,100,100,43.98,41.92,23.94,27.31
-21930,24,015,24015,94,58,2093959,1907039,94,58,2093959,1907039,101108,41103,1082193770,896842957,100,100,100,100,0.09,0.14,0.19,0.21
-22003,51,059,51059,55990,19923,32356309,32219579,55990,19923,32356309,32219579,1081726,407998,1052171762,1012604465,100,100,100,100,5.18,4.88,3.08,3.18
-22015,51,059,51059,43102,15133,21917763,21686318,43102,15133,21917763,21686318,1081726,407998,1052171762,1012604465,100,100,100,100,3.98,3.71,2.08,2.14
-22025,51,153,51153,17379,6235,18061998,17633663,17379,6235,18061998,17633663,402002,137115,902545527,871276091,100,100,100,100,4.32,4.55,2,2.02
-22026,51,153,51153,14258,4737,25027328,20883576,14258,4737,25027328,20883576,402002,137115,902545527,871276091,100,100,100,100,3.55,3.45,2.77,2.4
-22027,51,059,51059,2362,781,1650482,1650280,2362,781,1650482,1650280,1081726,407998,1052171762,1012604465,100,100,100,100,0.22,0.19,0.16,0.16
-22030,51,059,51059,37539,12809,36929403,36740361,55066,19487,49118976,48873146,1081726,407998,1052171762,1012604465,68.17,65.73,75.18,75.17,3.47,3.14,3.51,3.63
-22030,51,600,51600,17527,6678,12189573,12132785,55066,19487,49118976,48873146,22565,8680,16254519,16159465,31.83,34.27,24.82,24.83,77.67,76.94,74.99,75.08
-22031,51,059,51059,25807,10421,14525652,14424974,29795,12048,17766014,17627151,1081726,407998,1052171762,1012604465,86.62,86.5,81.76,81.83,2.39,2.55,1.38,1.42
-22031,51,600,51600,3988,1627,3240362,3202177,29795,12048,17766014,17627151,22565,8680,16254519,16159465,13.38,13.5,18.24,18.17,17.67,18.74,19.94,19.82
-22032,51,059,51059,28327,9634,18656174,18403305,29377,10009,19480758,19227808,1081726,407998,1052171762,1012604465,96.43,96.25,95.77,95.71,2.62,2.36,1.77,1.82
-22032,51,600,51600,1050,375,824584,824503,29377,10009,19480758,19227808,22565,8680,16254519,16159465,3.57,3.75,4.23,4.29,4.65,4.32,5.07,5.1
-22033,51,059,51059,37691,16083,19769538,19587566,37691,16083,19769538,19587566,1081726,407998,1052171762,1012604465,100,100,100,100,3.48,3.94,1.88,1.93
-22035,51,059,51059,0,0,450806,438985,0,0,450806,438985,1081726,407998,1052171762,1012604465,0,0,100,100,0,0,0.04,0.04
-22039,51,059,51059,18364,6104,63499609,61231662,18364,6104,63499609,61231662,1081726,407998,1052171762,1012604465,100,100,100,100,1.7,1.5,6.04,6.05
-22041,51,059,51059,27989,11174,7592269,7243208,27989,11174,7592269,7243208,1081726,407998,1052171762,1012604465,100,100,100,100,2.59,2.74,0.72,0.72
-22042,51,059,51059,33255,12404,17089821,16973187,33537,12495,17240066,17123432,1081726,407998,1052171762,1012604465,99.16,99.27,99.13,99.12,3.07,3.04,1.62,1.68
-22042,51,610,51610,282,91,150245,150245,33537,12495,17240066,17123432,12332,5489,5176819,5176813,0.84,0.73,0.87,0.88,2.29,1.66,2.9,2.9
-22043,51,059,51059,24302,9767,12361235,12344913,24302,9767,12361235,12344913,1081726,407998,1052171762,1012604465,100,100,100,100,2.25,2.39,1.17,1.22
-22044,51,059,51059,12593,5008,5575070,5341885,14092,5909,5897327,5664142,1081726,407998,1052171762,1012604465,89.36,84.75,94.54,94.31,1.16,1.23,0.53,0.53
-22044,51,610,51610,1499,901,322257,322257,14092,5909,5897327,5664142,12332,5489,5176819,5176813,10.64,15.25,5.46,5.69,12.16,16.41,6.23,6.23
-22046,51,059,51059,5701,2158,2626962,2626962,16235,6649,7327558,7327552,1081726,407998,1052171762,1012604465,35.12,32.46,35.85,35.85,0.53,0.53,0.25,0.26
-22046,51,610,51610,10534,4491,4700596,4700590,16235,6649,7327558,7327552,12332,5489,5176819,5176813,64.88,67.54,64.15,64.15,85.42,81.82,90.8,90.8
-22060,51,059,51059,8878,2928,38282745,33717935,8878,2928,38282745,33717935,1081726,407998,1052171762,1012604465,100,100,100,100,0.82,0.72,3.64,3.33
-22066,51,059,51059,16929,5697,69849964,69220330,18099,6054,70507687,69877828,1081726,407998,1052171762,1012604465,93.54,94.1,99.07,99.06,1.56,1.4,6.64,6.84
-22066,51,107,51107,1170,357,657723,657498,18099,6054,70507687,69877828,312311,109442,1349742374,1335297272,6.46,5.9,0.93,0.94,0.37,0.33,0.05,0.05
-22079,51,059,51059,32059,11245,92845236,75732023,32059,11245,92845236,75732023,1081726,407998,1052171762,1012604465,100,100,100,100,2.96,2.76,8.82,7.48
-22101,51,013,51013,37,20,168726,167245,29887,11345,35449930,35335050,207627,105404,67517698,67273573,0.12,0.18,0.48,0.47,0.02,0.02,0.25,0.25
-22101,51,059,51059,29850,11325,35281204,35167805,29887,11345,35449930,35335050,1081726,407998,1052171762,1012604465,99.88,99.82,99.52,99.53,2.76,2.78,3.35,3.47
-22102,51,059,51059,21985,10608,27321409,27151826,21985,10608,27321409,27151826,1081726,407998,1052171762,1012604465,100,100,100,100,2.03,2.6,2.6,2.68
-22124,51,059,51059,17558,6834,26478132,26244050,17558,6834,26478132,26244050,1081726,407998,1052171762,1012604465,100,100,100,100,1.62,1.68,2.52,2.59
-22125,51,153,51153,711,400,438136,391803,711,400,438136,391803,402002,137115,902545527,871276091,100,100,100,100,0.18,0.29,0.05,0.04
-22134,51,153,51153,4932,1378,21677802,19016021,6862,1379,65272871,61306654,402002,137115,902545527,871276091,71.87,99.93,33.21,31.02,1.23,1,2.4,2.18
-22134,51,179,51179,1930,1,43595069,42290633,6862,1379,65272871,61306654,128961,43978,725011349,696591933,28.13,0.07,66.79,68.98,1.5,0,6.01,6.07
-22150,51,059,51059,27105,9489,19591215,19456840,27105,9489,19591215,19456840,1081726,407998,1052171762,1012604465,100,100,100,100,2.51,2.33,1.86,1.92
-22151,51,059,51059,17456,5932,13672443,13247339,17456,5932,13672443,13247339,1081726,407998,1052171762,1012604465,100,100,100,100,1.61,1.45,1.3,1.31
-22152,51,059,51059,28550,10636,15507408,15386574,28550,10636,15507408,15386574,1081726,407998,1052171762,1012604465,100,100,100,100,2.64,2.61,1.47,1.52
-22153,51,059,51059,31285,10676,23466638,23030919,31285,10676,23466638,23030919,1081726,407998,1052171762,1012604465,100,100,100,100,2.89,2.62,2.23,2.27
-22172,51,153,51153,8699,3361,33148162,32710843,8699,3361,33148162,32710843,402002,137115,902545527,871276091,100,100,100,100,2.16,2.45,3.67,3.75
-22180,51,059,51059,23491,8812,15070035,15052842,23491,8812,15070035,15052842,1081726,407998,1052171762,1012604465,100,100,100,100,2.17,2.16,1.43,1.49
-22181,51,059,51059,14879,5519,14809071,14741144,14879,5519,14809071,14741144,1081726,407998,1052171762,1012604465,100,100,100,100,1.38,1.35,1.41,1.46
-22182,51,059,51059,24863,9143,30597133,30458271,24863,9143,30597133,30458271,1081726,407998,1052171762,1012604465,100,100,100,100,2.3,2.24,2.91,3.01
-22185,51,059,51059,0,0,164619,164619,0,0,164619,164619,1081726,407998,1052171762,1012604465,0,0,100,100,0,0,0.02,0.02
-22191,51,153,51153,57598,20329,53253905,40948790,57598,20329,53253905,40948790,402002,137115,902545527,871276091,100,100,100,100,14.33,14.83,5.9,4.7
-22192,51,153,51153,53394,20113,49888742,48032111,53394,20113,49888742,48032111,402002,137115,902545527,871276091,100,100,100,100,13.28,14.67,5.53,5.51
-22193,51,153,51153,73047,23150,45859627,45776872,73047,23150,45859627,45776872,402002,137115,902545527,871276091,100,100,100,100,18.17,16.88,5.08,5.25
-22201,51,013,51013,33476,18985,6058557,6058557,33476,18985,6058557,6058557,207627,105404,67517698,67273573,100,100,100,100,16.12,18.01,8.97,9.01
-22202,51,013,51013,22543,15278,10262355,10024542,22543,15278,10262355,10024542,207627,105404,67517698,67273573,100,100,100,100,10.86,14.49,15.2,14.9
-22203,51,013,51013,21850,12018,3973848,3973848,21850,12018,3973848,3973848,207627,105404,67517698,67273573,100,100,100,100,10.52,11.4,5.89,5.91
-22204,51,013,51013,47233,21078,10647712,10647712,47233,21078,10647712,10647712,207627,105404,67517698,67273573,100,100,100,100,22.75,20,15.77,15.83
-22205,51,013,51013,17070,6622,7005676,7005676,17087,6628,7009397,7009397,207627,105404,67517698,67273573,99.9,99.91,99.95,99.95,8.22,6.28,10.38,10.41
-22205,51,610,51610,17,6,3721,3721,17087,6628,7009397,7009397,12332,5489,5176819,5176813,0.1,0.09,0.05,0.05,0.14,0.11,0.07,0.07
-22206,51,013,51013,18686,10440,5135618,5134278,19051,10689,5309450,5303722,207627,105404,67517698,67273573,98.08,97.67,96.73,96.81,9,9.9,7.61,7.63
-22206,51,510,51510,365,249,173832,169444,19051,10689,5309450,5303722,139966,72376,40060104,38919733,1.92,2.33,3.27,3.19,0.26,0.34,0.43,0.44
-22207,51,013,51013,30834,11696,16596327,16592836,30920,11729,16707556,16704065,207627,105404,67517698,67273573,99.72,99.72,99.33,99.33,14.85,11.1,24.58,24.66
-22207,51,059,51059,86,33,111229,111229,30920,11729,16707556,16704065,1081726,407998,1052171762,1012604465,0.28,0.28,0.67,0.67,0.01,0.01,0.01,0.01
-22209,51,013,51013,12314,7975,1553657,1553657,12314,7975,1553657,1553657,207627,105404,67517698,67273573,100,100,100,100,5.93,7.57,2.3,2.31
-22211,51,013,51013,648,61,4533967,4533967,648,61,4533967,4533967,207627,105404,67517698,67273573,100,100,100,100,0.31,0.06,6.72,6.74
-22213,51,013,51013,2936,1231,1475803,1475803,2936,1231,1475803,1475803,207627,105404,67517698,67273573,100,100,100,100,1.41,1.17,2.19,2.19
-22214,51,013,51013,0,0,105452,105452,0,0,105452,105452,207627,105404,67517698,67273573,0,0,100,100,0,0,0.16,0.16
-22301,51,510,51510,11162,5017,3606878,3606878,11162,5017,3606878,3606878,139966,72376,40060104,38919733,100,100,100,100,7.97,6.93,9,9.27
-22302,51,059,51059,887,669,249780,249780,16485,8935,5826218,5819967,1081726,407998,1052171762,1012604465,5.38,7.49,4.29,4.29,0.08,0.16,0.02,0.02
-22302,51,510,51510,15598,8266,5576438,5570187,16485,8935,5826218,5819967,139966,72376,40060104,38919733,94.62,92.51,95.71,95.71,11.14,11.42,13.92,14.31
-22303,51,059,51059,12601,6858,3886527,3773866,12601,6858,3886527,3773866,1081726,407998,1052171762,1012604465,100,100,100,100,1.16,1.68,0.37,0.37
-22304,51,059,51059,165,76,29551,29551,44300,22966,12237923,12000790,1081726,407998,1052171762,1012604465,0.37,0.33,0.24,0.25,0.02,0.02,0,0
-22304,51,510,51510,44135,22890,12208372,11971239,44300,22966,12237923,12000790,139966,72376,40060104,38919733,99.63,99.67,99.76,99.75,31.53,31.63,30.48,30.76
-22305,51,510,51510,15440,6863,3666050,3497411,15440,6863,3666050,3497411,139966,72376,40060104,38919733,100,100,100,100,11.03,9.48,9.15,8.99
-22306,51,059,51059,32326,12312,18957424,18763296,32326,12312,18957424,18763296,1081726,407998,1052171762,1012604465,100,100,100,100,2.99,3.02,1.8,1.85
-22307,51,059,51059,9581,4655,9771412,7472846,9581,4655,9771412,7472846,1081726,407998,1052171762,1012604465,100,100,100,100,0.89,1.14,0.93,0.74
-22308,51,059,51059,12737,4741,12690726,11642034,12737,4741,12690726,11642034,1081726,407998,1052171762,1012604465,100,100,100,100,1.18,1.16,1.21,1.15
-22309,51,059,51059,33220,12264,21701989,19515246,33220,12264,21701989,19515246,1081726,407998,1052171762,1012604465,100,100,100,100,3.07,3.01,2.06,1.93
-22310,51,059,51059,29609,11818,18596002,18558813,29609,11818,18596002,18558813,1081726,407998,1052171762,1012604465,100,100,100,100,2.74,2.9,1.77,1.83
-22311,51,059,51059,1238,437,858027,857470,17560,8744,3997703,3981467,1081726,407998,1052171762,1012604465,7.05,5,21.46,21.54,0.11,0.11,0.08,0.08
-22311,51,510,51510,16322,8307,3139676,3123997,17560,8744,3997703,3981467,139966,72376,40060104,38919733,92.95,95,78.54,78.46,11.66,11.48,7.84,8.03
-22312,51,059,51059,23323,8719,12792917,12717497,30614,11919,13972166,13874964,1081726,407998,1052171762,1012604465,76.18,73.15,91.56,91.66,2.16,2.14,1.22,1.26
-22312,51,510,51510,7291,3200,1179249,1157467,30614,11919,13972166,13874964,139966,72376,40060104,38919733,23.82,26.85,8.44,8.34,5.21,4.42,2.94,2.97
-22314,51,510,51510,29653,17584,10509609,9823110,29653,17584,10509609,9823110,139966,72376,40060104,38919733,100,100,100,100,21.19,24.3,26.23,25.24
-22315,51,059,51059,26202,10988,14570877,14157309,26202,10988,14570877,14157309,1081726,407998,1052171762,1012604465,100,100,100,100,2.42,2.69,1.38,1.4
-22401,51,630,51630,24286,10467,27222391,27039905,24286,10467,27222391,27039905,24286,10467,27222391,27039905,100,100,100,100,100,100,100,100
-22405,51,179,51179,29152,10632,141636259,136222590,29152,10632,141636259,136222590,128961,43978,725011349,696591933,100,100,100,100,22.61,24.18,19.54,19.56
-22406,51,061,51061,16,6,42433,42433,20757,7695,191664214,188091844,65203,25600,1686665365,1676885536,0.08,0.08,0.02,0.02,0.02,0.02,0,0
-22406,51,179,51179,20741,7689,191621781,188049411,20757,7695,191664214,188091844,128961,43978,725011349,696591933,99.92,99.92,99.98,99.98,16.08,17.48,26.43,27
-22407,51,177,51177,54962,19758,150355783,146857832,54962,19758,150355783,146857832,122397,45185,1072918470,1039870690,100,100,100,100,44.9,43.73,14.01,14.12
-22408,51,033,51033,247,98,14101246,13208681,26851,9728,121271027,118934414,28545,11729,1390485480,1366252458,0.92,1.01,11.63,11.11,0.87,0.84,1.01,0.97
-22408,51,177,51177,26604,9630,107169781,105725733,26851,9728,121271027,118934414,122397,45185,1072918470,1039870690,99.08,98.99,88.37,88.89,21.74,21.31,9.99,10.17
-22427,51,033,51033,3286,1318,398889130,394653345,3286,1318,398889130,394653345,28545,11729,1390485480,1366252458,100,100,100,100,11.51,11.24,28.69,28.89
-22432,51,133,51133,394,241,12702391,10708414,394,241,12702391,10708414,12330,8995,739754451,495452184,100,100,100,100,3.2,2.68,1.72,2.16
-22433,51,137,51137,232,89,10891316,10856312,232,89,10891316,10856312,33481,14616,889050632,882624058,100,100,100,100,0.69,0.61,1.23,1.23
-22435,51,133,51133,2308,1136,66194902,61679315,2439,1193,70678958,66163371,12330,8995,739754451,495452184,94.63,95.22,93.66,93.22,18.72,12.63,8.95,12.45
-22435,51,159,51159,102,45,4142773,4142773,2439,1193,70678958,66163371,9254,3850,560362940,495962821,4.18,3.77,5.86,6.26,1.1,1.17,0.74,0.84
-22435,51,193,51193,29,12,341283,341283,2439,1193,70678958,66163371,17454,10618,655179987,594077407,1.19,1.01,0.48,0.52,0.17,0.11,0.05,0.06
-22436,51,057,51057,746,323,74268813,73924512,746,323,74268813,73924512,11151,5757,740738004,665944393,100,100,100,100,6.69,5.61,10.03,11.1
-22437,51,057,51057,614,429,54647923,45956777,725,494,116185696,107388492,11151,5757,740738004,665944393,84.69,86.84,47.03,42.79,5.51,7.45,7.38,6.9
-22437,51,097,51097,111,65,61537773,61431715,725,494,116185696,107388492,6945,3414,845076601,816203901,15.31,13.16,52.97,57.21,1.6,1.9,7.28,7.53
-22438,51,057,51057,463,232,120539260,107462271,463,232,120539260,107462271,11151,5757,740738004,665944393,100,100,100,100,4.15,4.03,16.27,16.14
-22443,51,193,51193,8083,4807,173779871,158004207,8083,4807,173779871,158004207,17454,10618,655179987,594077407,100,100,100,100,46.31,45.27,26.52,26.6
-22448,51,099,51099,599,192,12338985,10894986,599,192,12338985,10894986,23584,9477,486290472,465255721,100,100,100,100,2.54,2.03,2.54,2.34
-22454,51,057,51057,1796,1184,121006955,105303643,1796,1184,121006955,105303643,11151,5757,740738004,665944393,100,100,100,100,16.11,20.57,16.34,15.81
-22460,51,159,51159,1876,1082,162996215,149359948,1876,1082,162996215,149359948,9254,3850,560362940,495962821,100,100,100,100,20.27,28.1,29.09,30.12
-22469,51,193,51193,1921,1346,88597341,80671408,1921,1346,88597341,80671408,17454,10618,655179987,594077407,100,100,100,100,11.01,12.68,13.52,13.58
-22473,51,103,51103,82,41,2983041,2983041,5099,3618,318429779,291457357,11391,7402,599317469,345115848,1.61,1.13,0.94,1.02,0.72,0.55,0.5,0.86
-22473,51,133,51133,5017,3577,315446738,288474316,5099,3618,318429779,291457357,12330,8995,739754451,495452184,98.39,98.87,99.06,98.98,40.69,39.77,42.64,58.22
-22476,51,057,51057,369,170,46326748,45371650,369,170,46326748,45371650,11151,5757,740738004,665944393,100,100,100,100,3.31,2.95,6.25,6.81
-22480,51,103,51103,714,601,7461448,6616764,714,601,7461448,6616764,11391,7402,599317469,345115848,100,100,100,100,6.27,8.12,1.24,1.92
-22482,51,103,51103,1966,1092,32061726,31043733,2993,1889,97538450,78884931,11391,7402,599317469,345115848,65.69,57.81,32.87,39.35,17.26,14.75,5.35,9
-22482,51,133,51133,1027,797,65476724,47841198,2993,1889,97538450,78884931,12330,8995,739754451,495452184,34.31,42.19,67.13,60.65,8.33,8.86,8.85,9.66
-22485,51,099,51099,22985,9285,473951487,454360735,23004,9293,474446214,454855462,23584,9477,486290472,465255721,99.92,99.91,99.9,99.89,97.46,97.97,97.46,97.66
-22485,51,193,51193,19,8,494727,494727,23004,9293,474446214,454855462,17454,10618,655179987,594077407,0.08,0.09,0.1,0.11,0.11,0.08,0.08,0.08
-22488,51,193,51193,1398,888,77620987,70279291,1398,888,77620987,70279291,17454,10618,655179987,594077407,100,100,100,100,8.01,8.36,11.85,11.83
-22503,51,103,51103,4334,2812,299105704,227860765,4334,2812,299105704,227860765,11391,7402,599317469,345115848,100,100,100,100,38.05,37.99,49.91,66.02
-22504,51,057,51057,217,134,23675433,15643651,263,153,31535886,23504104,11151,5757,740738004,665944393,82.51,87.58,75.07,66.56,1.95,2.33,3.2,2.35
-22504,51,119,51119,46,19,7860453,7860453,263,153,31535886,23504104,10959,7133,545870514,337492226,17.49,12.42,24.93,33.44,0.42,0.27,1.44,2.33
-22508,51,137,51137,11664,5326,128374043,125801892,12696,5686,146112974,143471299,33481,14616,889050632,882624058,91.87,93.67,87.86,87.68,34.84,36.44,14.44,14.25
-22508,51,177,51177,1032,360,17738931,17669407,12696,5686,146112974,143471299,122397,45185,1072918470,1039870690,8.13,6.33,12.14,12.32,0.84,0.8,1.65,1.7
-22509,51,057,51057,31,18,37645970,29726069,31,18,37645970,29726069,11151,5757,740738004,665944393,100,100,100,100,0.28,0.31,5.08,4.46
-22511,51,133,51133,1240,1007,48645286,36563995,1240,1007,48645286,36563995,12330,8995,739754451,495452184,100,100,100,100,10.06,11.2,6.58,7.38
-22514,51,033,51033,2596,1096,225802258,222700836,2603,1101,228559012,225429178,28545,11729,1390485480,1366252458,99.73,99.55,98.79,98.79,9.09,9.34,16.24,16.3
-22514,51,097,51097,7,5,2756754,2728342,2603,1101,228559012,225429178,6945,3414,845076601,816203901,0.27,0.45,1.21,1.21,0.1,0.15,0.33,0.33
-22520,51,193,51193,5402,3268,266970994,236923522,5402,3268,266970994,236923522,17454,10618,655179987,594077407,100,100,100,100,30.95,30.78,40.75,39.88
-22529,51,193,51193,335,161,28598072,28586257,335,161,28598072,28586257,17454,10618,655179987,594077407,100,100,100,100,1.92,1.52,4.36,4.81
-22530,51,133,51133,126,192,5341519,3896605,126,192,5341519,3896605,12330,8995,739754451,495452184,100,100,100,100,1.02,2.13,0.72,0.79
-22534,51,177,51177,2796,990,88191994,87904005,2796,990,88191994,87904005,122397,45185,1072918470,1039870690,100,100,100,100,2.28,2.19,8.22,8.45
-22535,51,033,51033,580,284,30036590,24816444,580,284,30036590,24816444,28545,11729,1390485480,1366252458,100,100,100,100,2.03,2.42,2.16,1.82
-22538,51,033,51033,307,133,37660038,34314276,307,133,37660038,34314276,28545,11729,1390485480,1366252458,100,100,100,100,1.08,1.13,2.71,2.51
-22539,51,133,51133,2063,1921,58252996,44111431,2063,1921,58252996,44111431,12330,8995,739754451,495452184,100,100,100,100,16.73,21.36,7.87,8.9
-22542,51,137,51137,1950,758,53660544,53523500,1950,758,53660544,53523500,33481,14616,889050632,882624058,100,100,100,100,5.82,5.19,6.04,6.06
-22546,51,033,51033,15352,6279,398302340,393677023,15850,6479,425259435,420439733,28545,11729,1390485480,1366252458,96.86,96.91,93.66,93.63,53.78,53.53,28.64,28.81
-22546,51,085,51085,498,200,26957095,26762710,15850,6479,425259435,420439733,99863,38360,1227151698,1213502928,3.14,3.09,6.34,6.37,0.5,0.52,2.2,2.21
-22548,51,159,51159,73,69,7662452,2588677,73,69,7662452,2588677,9254,3850,560362940,495962821,100,100,100,100,0.79,1.79,1.37,0.52
-22551,51,177,51177,19242,7274,457792612,450195610,19242,7274,457792612,450195610,122397,45185,1072918470,1039870690,100,100,100,100,15.72,16.1,42.67,43.29
-22553,51,177,51177,13935,4975,118794789,115586467,13935,4975,118794789,115586467,122397,45185,1072918470,1039870690,100,100,100,100,11.39,11.01,11.07,11.12
-22554,51,179,51179,51463,17173,187379925,171877394,51463,17173,187379925,171877394,128961,43978,725011349,696591933,100,100,100,100,39.91,39.05,25.85,24.67
-22556,51,179,51179,25675,8483,82679426,81931126,25675,8483,82679426,81931126,128961,43978,725011349,696591933,100,100,100,100,19.91,19.29,11.4,11.76
-22560,51,057,51057,6536,3110,226598139,206527057,6704,3198,256477646,236169015,11151,5757,740738004,665944393,97.49,97.25,88.35,87.45,58.61,54.02,30.59,31.01
-22560,51,097,51097,168,88,29879507,29641958,6704,3198,256477646,236169015,6945,3414,845076601,816203901,2.51,2.75,11.65,12.55,2.42,2.58,3.54,3.63
-22567,51,137,51137,3163,1227,122692393,122492528,3163,1227,122692393,122492528,33481,14616,889050632,882624058,100,100,100,100,9.45,8.39,13.8,13.88
-22572,51,159,51159,7203,2654,385561500,339871423,7470,2782,404338212,358648135,9254,3850,560362940,495962821,96.43,95.4,95.36,94.76,77.84,68.94,68.81,68.53
-22572,51,193,51193,267,128,18776712,18776712,7470,2782,404338212,358648135,17454,10618,655179987,594077407,3.57,4.6,4.64,5.24,1.53,1.21,2.87,3.16
-22576,51,103,51103,1785,1055,44132328,28520156,1785,1055,44132328,28520156,11391,7402,599317469,345115848,100,100,100,100,15.67,14.25,7.36,8.26
-22578,51,103,51103,2510,1801,102154536,48091389,2510,1801,102154536,48091389,11391,7402,599317469,345115848,100,100,100,100,22.03,24.33,17.05,13.93
-22579,51,133,51133,155,124,3429331,2176910,155,124,3429331,2176910,12330,8995,739754451,495452184,100,100,100,100,1.26,1.38,0.46,0.44
-22580,51,033,51033,4715,1926,214891082,212832806,5160,2104,234714314,232513274,28545,11729,1390485480,1366252458,91.38,91.54,91.55,91.54,16.52,16.42,15.45,15.58
-22580,51,177,51177,445,178,19823232,19680468,5160,2104,234714314,232513274,122397,45185,1072918470,1039870690,8.62,8.46,8.45,8.46,0.36,0.39,1.85,1.89
-22601,51,069,51069,1610,649,1653635,1653635,27813,12521,25620347,25566246,78305,31346,1076157631,1070949703,5.79,5.18,6.45,6.47,2.06,2.07,0.15,0.15
-22601,51,840,51840,26203,11872,23966712,23912611,27813,12521,25620347,25566246,26203,11872,23966712,23912611,94.21,94.82,93.55,93.53,100,100,100,100
-22602,51,069,51069,28443,11156,286658397,285534178,28443,11156,286658397,285534178,78305,31346,1076157631,1070949703,100,100,100,100,36.32,35.59,26.64,26.66
-22603,51,069,51069,13910,5671,254801131,253869993,13910,5671,254801131,253869993,78305,31346,1076157631,1070949703,100,100,100,100,17.76,18.09,23.68,23.71
-22610,51,187,51187,1842,898,135698174,133716751,1842,898,135698174,133716751,37575,16034,561355858,552872306,100,100,100,100,4.9,5.6,24.17,24.19
-22611,51,043,51043,8757,3676,210745378,209280984,8757,3676,210745378,209280984,14034,6235,461956291,456297605,100,100,100,100,62.4,58.96,45.62,45.87
-22620,51,043,51043,2348,1147,121121475,118474411,2348,1147,121121475,118474411,14034,6235,461956291,456297605,100,100,100,100,16.73,18.4,26.22,25.96
-22623,51,157,51157,537,212,2791204,2790325,670,271,3145183,3144304,7373,3839,691593651,689525028,80.15,78.23,88.75,88.74,7.28,5.52,0.4,0.4
-22623,51,187,51187,133,59,353979,353979,670,271,3145183,3144304,37575,16034,561355858,552872306,19.85,21.77,11.25,11.26,0.35,0.37,0.06,0.06
-22624,51,069,51069,2565,999,50129519,49949933,2565,999,50129519,49949933,78305,31346,1076157631,1070949703,100,100,100,100,3.28,3.19,4.66,4.66
-22625,51,069,51069,3641,1534,114264994,113500475,3641,1534,114264994,113500475,78305,31346,1076157631,1070949703,100,100,100,100,4.65,4.89,10.62,10.6
-22627,51,157,51157,637,362,85257553,84946969,637,362,85257553,84946969,7373,3839,691593651,689525028,100,100,100,100,8.64,9.43,12.33,12.32
-22630,51,043,51043,22,11,314011,313427,30292,12856,343626777,338156945,14034,6235,461956291,456297605,0.07,0.09,0.09,0.09,0.16,0.18,0.07,0.07
-22630,51,061,51061,12,6,13823780,13790315,30292,12856,343626777,338156945,65203,25600,1686665365,1676885536,0.04,0.05,4.02,4.08,0.02,0.02,0.82,0.82
-22630,51,069,51069,465,217,6955962,6665356,30292,12856,343626777,338156945,78305,31346,1076157631,1070949703,1.54,1.69,2.02,1.97,0.59,0.69,0.65,0.62
-22630,51,187,51187,29793,12622,322533024,317387847,30292,12856,343626777,338156945,37575,16034,561355858,552872306,98.35,98.18,93.86,93.86,79.29,78.72,57.46,57.41
-22637,51,069,51069,1970,881,116232472,115363165,1970,881,116232472,115363165,78305,31346,1076157631,1070949703,100,100,100,100,2.52,2.81,10.8,10.77
-22639,51,061,51061,560,267,48783176,48357435,560,267,48783176,48357435,65203,25600,1686665365,1676885536,100,100,100,100,0.86,1.04,2.89,2.88
-22640,51,157,51157,532,284,61284346,61127958,532,284,61284346,61127958,7373,3839,691593651,689525028,100,100,100,100,7.22,7.4,8.86,8.87
-22641,51,171,51171,361,178,17377627,17342788,361,178,17377627,17342788,41993,20876,1326524794,1317722983,100,100,100,100,0.86,0.85,1.31,1.32
-22642,51,061,51061,706,342,96182597,95866565,4414,1894,132766383,132262929,65203,25600,1686665365,1676885536,15.99,18.06,72.44,72.48,1.08,1.34,5.7,5.72
-22642,51,187,51187,3708,1552,36583786,36396364,4414,1894,132766383,132262929,37575,16034,561355858,552872306,84.01,81.94,27.56,27.52,9.87,9.68,6.52,6.58
-22643,51,061,51061,197,95,14898229,14874100,197,95,14898229,14874100,65203,25600,1686665365,1676885536,100,100,100,100,0.3,0.37,0.88,0.89
-22644,51,171,51171,2177,1057,97743087,97286012,2177,1057,97743087,97286012,41993,20876,1326524794,1317722983,100,100,100,100,5.18,5.06,7.37,7.38
-22645,51,069,51069,2717,1186,53859008,53474316,3880,1675,93310456,92372136,78305,31346,1076157631,1070949703,70.03,70.81,57.72,57.89,3.47,3.78,5,4.99
-22645,51,187,51187,1163,489,39451448,38897820,3880,1675,93310456,92372136,37575,16034,561355858,552872306,29.97,29.19,42.28,42.11,3.1,3.05,7.03,7.04
-22646,51,043,51043,205,107,5094136,5090172,205,107,5094136,5090172,14034,6235,461956291,456297605,100,100,100,100,1.46,1.72,1.1,1.12
-22650,51,139,51139,978,541,75621343,74304098,978,541,75621343,74304098,24042,11600,813451058,805112691,100,100,100,100,4.07,4.66,9.3,9.23
-22652,51,171,51171,1399,810,182834549,182088626,1399,810,182834549,182088626,41993,20876,1326524794,1317722983,100,100,100,100,3.33,3.88,13.78,13.82
-22654,51,069,51069,523,282,73574794,73474045,640,374,160311535,160178306,78305,31346,1076157631,1070949703,81.72,75.4,45.89,45.87,0.67,0.9,6.84,6.86
-22654,51,171,51171,117,92,86736741,86704261,640,374,160311535,160178306,41993,20876,1326524794,1317722983,18.28,24.6,54.11,54.13,0.28,0.44,6.54,6.58
-22655,51,069,51069,19242,7521,83999230,83658075,19328,7559,91487839,91139222,78305,31346,1076157631,1070949703,99.56,99.5,91.81,91.79,24.57,23.99,7.81,7.81
-22655,51,187,51187,86,38,7488609,7481147,19328,7559,91487839,91139222,37575,16034,561355858,552872306,0.44,0.5,8.19,8.21,0.23,0.24,1.33,1.35
-22656,51,069,51069,2381,947,21865341,21720233,2381,947,21865341,21720233,78305,31346,1076157631,1070949703,100,100,100,100,3.04,3.02,2.03,2.03
-22657,51,171,51171,10106,4587,143486160,141763479,10956,4963,162732998,160401877,41993,20876,1326524794,1317722983,92.24,92.42,88.17,88.38,24.07,21.97,10.82,10.76
-22657,51,187,51187,850,376,19246838,18638398,10956,4963,162732998,160401877,37575,16034,561355858,552872306,7.76,7.58,11.83,11.62,2.26,2.35,3.43,3.37
-22660,51,171,51171,1689,749,24177954,23793441,1689,749,24177954,23793441,41993,20876,1326524794,1317722983,100,100,100,100,4.02,3.59,1.82,1.81
-22663,51,043,51043,698,275,45344441,45198375,1536,578,57507589,57284674,14034,6235,461956291,456297605,45.44,47.58,78.85,78.9,4.97,4.41,9.82,9.91
-22663,51,069,51069,838,303,12163148,12086299,1536,578,57507589,57284674,78305,31346,1076157631,1070949703,54.56,52.42,21.15,21.1,1.07,0.97,1.13,1.13
-22664,51,171,51171,8753,4013,131471555,129464517,8753,4013,131471555,129464517,41993,20876,1326524794,1317722983,100,100,100,100,20.84,19.22,9.91,9.82
-22701,51,047,51047,30033,11833,338128911,334903538,31444,12394,426756860,423232022,46689,17657,990782908,982210871,95.51,95.47,79.23,79.13,64.33,67.02,34.13,34.1
-22701,51,113,51113,579,240,28424877,28364947,31444,12394,426756860,423232022,13308,5932,833651492,830565702,1.84,1.94,6.66,6.7,4.35,4.05,3.41,3.42
-22701,51,137,51137,832,321,60203072,59963537,31444,12394,426756860,423232022,33481,14616,889050632,882624058,2.65,2.59,14.11,14.17,2.48,2.2,6.77,6.79
-22709,51,113,51113,874,369,33428139,33326994,874,369,33428139,33326994,13308,5932,833651492,830565702,100,100,100,100,6.57,6.22,4.01,4.01
-22711,51,113,51113,92,43,5980939,5977554,92,43,5980939,5977554,13308,5932,833651492,830565702,100,100,100,100,0.69,0.72,0.72,0.72
-22712,51,061,51061,8415,3013,94325289,93810456,8415,3013,94325289,93810456,65203,25600,1686665365,1676885536,100,100,100,100,12.91,11.77,5.59,5.59
-22713,51,047,51047,1100,465,41000328,40763864,1406,605,69280237,69025933,46689,17657,990782908,982210871,78.24,76.86,59.18,59.06,2.36,2.63,4.14,4.15
-22713,51,157,51157,306,140,28279909,28262069,1406,605,69280237,69025933,7373,3839,691593651,689525028,21.76,23.14,40.82,40.94,4.15,3.65,4.09,4.1
-22714,51,047,51047,1129,416,58352020,57820752,1129,416,58352020,57820752,46689,17657,990782908,982210871,100,100,100,100,2.42,2.36,5.89,5.89
-22715,51,113,51113,1082,451,23559573,23490584,1082,451,23559573,23490584,13308,5932,833651492,830565702,100,100,100,100,8.13,7.6,2.83,2.83
-22716,51,157,51157,853,434,65107445,64747114,853,434,65107445,64747114,7373,3839,691593651,689525028,100,100,100,100,11.57,11.31,9.41,9.39
-22718,51,047,51047,534,223,64060249,63588457,534,223,64060249,63588457,46689,17657,990782908,982210871,100,100,100,100,1.14,1.26,6.47,6.47
-22719,51,113,51113,395,245,52756376,52715602,395,245,52756376,52715602,13308,5932,833651492,830565702,100,100,100,100,2.97,4.13,6.33,6.35
-22720,51,061,51061,1059,445,53821991,53530640,1059,445,53821991,53530640,65203,25600,1686665365,1676885536,100,100,100,100,1.62,1.74,3.19,3.19
-22722,51,113,51113,273,121,9130290,9112554,273,121,9130290,9112554,13308,5932,833651492,830565702,100,100,100,100,2.05,2.04,1.1,1.1
-22723,51,113,51113,128,61,11106903,11045506,128,61,11106903,11045506,13308,5932,833651492,830565702,100,100,100,100,0.96,1.03,1.33,1.33
-22724,51,047,51047,2282,825,55061488,54642748,2282,825,55061488,54642748,46689,17657,990782908,982210871,100,100,100,100,4.89,4.67,5.56,5.56
-22726,51,047,51047,776,276,41250993,40835666,776,276,41250993,40835666,46689,17657,990782908,982210871,100,100,100,100,1.66,1.56,4.16,4.16
-22727,51,113,51113,5547,2471,263024641,261922309,5547,2471,263024641,261922309,13308,5932,833651492,830565702,100,100,100,100,41.68,41.66,31.55,31.54
-22728,51,061,51061,3310,1241,117778611,117164798,3310,1241,117778611,117164798,65203,25600,1686665365,1676885536,100,100,100,100,5.08,4.85,6.98,6.99
-22729,51,047,51047,1338,58,14455906,14315687,1338,58,14455906,14315687,46689,17657,990782908,982210871,100,100,100,100,2.87,0.33,1.46,1.46
-22730,51,113,51113,115,52,8864919,8806341,115,52,8864919,8806341,13308,5932,833651492,830565702,100,100,100,100,0.86,0.88,1.06,1.06
-22731,51,113,51113,139,60,2296850,2296850,139,60,2296850,2296850,13308,5932,833651492,830565702,100,100,100,100,1.04,1.01,0.28,0.28
-22732,51,113,51113,191,80,4379734,4379734,191,80,4379734,4379734,13308,5932,833651492,830565702,100,100,100,100,1.44,1.35,0.53,0.53
-22733,51,047,51047,893,305,67625970,67273942,1469,559,123734690,123003363,46689,17657,990782908,982210871,60.79,54.56,54.65,54.69,1.91,1.73,6.83,6.85
-22733,51,113,51113,54,20,1092081,1045285,1469,559,123734690,123003363,13308,5932,833651492,830565702,3.68,3.58,0.88,0.85,0.41,0.34,0.13,0.13
-22733,51,137,51137,522,234,55016639,54684136,1469,559,123734690,123003363,33481,14616,889050632,882624058,35.53,41.86,44.46,44.46,1.56,1.6,6.19,6.2
-22734,51,047,51047,170,63,18240688,17980631,3187,1172,78665214,77805050,46689,17657,990782908,982210871,5.33,5.38,23.19,23.11,0.36,0.36,1.84,1.83
-22734,51,061,51061,3017,1109,60424526,59824419,3187,1172,78665214,77805050,65203,25600,1686665365,1676885536,94.67,94.62,76.81,76.89,4.63,4.33,3.58,3.57
-22735,51,047,51047,1357,526,39812711,39694917,2277,905,86289720,85970946,46689,17657,990782908,982210871,59.6,58.12,46.14,46.17,2.91,2.98,4.02,4.04
-22735,51,113,51113,920,379,46477009,46276029,2277,905,86289720,85970946,13308,5932,833651492,830565702,40.4,41.88,53.86,53.83,6.91,6.39,5.58,5.57
-22736,51,047,51047,732,269,75651516,74656779,732,269,75651516,74656779,46689,17657,990782908,982210871,100,100,100,100,1.57,1.52,7.64,7.6
-22737,51,047,51047,2936,1144,105427731,104357420,2936,1144,105427731,104357420,46689,17657,990782908,982210871,100,100,100,100,6.29,6.48,10.64,10.62
-22738,51,113,51113,1149,491,70436189,69922811,1149,491,70436189,69922811,13308,5932,833651492,830565702,100,100,100,100,8.63,8.28,8.45,8.42
-22740,51,047,51047,55,23,6296877,6296021,1313,757,204659358,204490936,46689,17657,990782908,982210871,4.19,3.04,3.08,3.08,0.12,0.13,0.64,0.64
-22740,51,113,51113,25,14,1788315,1788315,1313,757,204659358,204490936,13308,5932,833651492,830565702,1.9,1.85,0.87,0.87,0.19,0.24,0.21,0.22
-22740,51,157,51157,1233,720,196574166,196406600,1313,757,204659358,204490936,7373,3839,691593651,689525028,93.91,95.11,96.05,96.05,16.72,18.75,28.42,28.48
-22741,51,047,51047,182,80,21662214,21519036,182,80,21662214,21519036,46689,17657,990782908,982210871,100,100,100,100,0.39,0.45,2.19,2.19
-22742,51,061,51061,1926,695,57790947,57396255,1926,695,57790947,57396255,65203,25600,1686665365,1676885536,100,100,100,100,2.95,2.71,3.43,3.42
-22743,51,113,51113,204,163,157659170,157622804,204,163,157659170,157622804,13308,5932,833651492,830565702,100,100,100,100,1.53,2.75,18.91,18.98
-22747,51,157,51157,1132,676,100906137,100537784,1132,676,100906137,100537784,7373,3839,691593651,689525028,100,100,100,100,15.35,17.61,14.59,14.58
-22749,51,157,51157,349,194,50029861,49851502,349,194,50029861,49851502,7373,3839,691593651,689525028,100,100,100,100,4.73,5.05,7.23,7.23
-22801,51,165,51165,9979,4088,55848683,55556271,37989,14072,84441000,84113556,76314,33660,2210182485,2199121564,26.27,29.05,66.14,66.05,13.08,12.14,2.53,2.53
-22801,51,660,51660,28010,9984,28592317,28557285,37989,14072,84441000,84113556,48914,17444,45262568,45112613,73.73,70.95,33.86,33.95,57.26,57.23,63.17,63.3
-22802,51,165,51165,8700,3363,219390950,218947170,26293,10815,234901776,234379912,76314,33660,2210182485,2199121564,33.09,31.1,93.4,93.42,11.4,9.99,9.93,9.96
-22802,51,660,51660,17593,7452,15510826,15432742,26293,10815,234901776,234379912,48914,17444,45262568,45112613,66.91,68.9,6.6,6.58,35.97,42.72,34.27,34.21
-22807,51,660,51660,3311,8,1159425,1122586,3311,8,1159425,1122586,48914,17444,45262568,45112613,100,100,100,100,6.77,0.05,2.56,2.49
-22810,51,171,51171,863,1257,64856854,64606971,863,1257,64856854,64606971,41993,20876,1326524794,1317722983,100,100,100,100,2.06,6.02,4.89,4.9
-22811,51,165,51165,500,286,82115349,82037098,500,286,82115349,82037098,76314,33660,2210182485,2199121564,100,100,100,100,0.66,0.85,3.72,3.73
-22812,51,015,51015,736,275,35457047,35391783,8927,3359,112734841,111520567,73750,31194,2514503621,2504515631,8.24,8.19,31.45,31.74,1,0.88,1.41,1.41
-22812,51,165,51165,8191,3084,77277794,76128784,8927,3359,112734841,111520567,76314,33660,2210182485,2199121564,91.76,91.81,68.55,68.26,10.73,9.16,3.5,3.46
-22815,51,165,51165,8327,3625,181450974,180893190,8355,3660,186746995,186178655,76314,33660,2210182485,2199121564,99.66,99.04,97.16,97.16,10.91,10.77,8.21,8.23
-22815,51,171,51171,28,35,5296021,5285465,8355,3660,186746995,186178655,41993,20876,1326524794,1317722983,0.34,0.96,2.84,2.84,0.07,0.17,0.4,0.4
-22820,51,165,51165,214,153,58366582,58277406,214,153,58366582,58277406,76314,33660,2210182485,2199121564,100,100,100,100,0.28,0.45,2.64,2.65
-22821,51,165,51165,5753,2314,212552161,211779889,5753,2314,212552161,211779889,76314,33660,2210182485,2199121564,100,100,100,100,7.54,6.87,9.62,9.63
-22824,51,171,51171,6018,2789,224167316,222746565,6018,2789,224167316,222746565,41993,20876,1326524794,1317722983,100,100,100,100,14.33,13.36,16.9,16.9
-22827,51,139,51139,605,285,89198986,89188266,10388,4651,355603750,353223269,24042,11600,813451058,805112691,5.82,6.13,25.08,25.25,2.52,2.46,10.97,11.08
-22827,51,165,51165,9783,4366,266404764,264035003,10388,4651,355603750,353223269,76314,33660,2210182485,2199121564,94.18,93.87,74.92,74.75,12.82,12.97,12.05,12.01
-22830,51,165,51165,1773,824,292254960,291501615,1773,824,292254960,291501615,76314,33660,2210182485,2199121564,100,100,100,100,2.32,2.45,13.22,13.26
-22831,51,165,51165,813,402,157730737,157043481,813,402,157730737,157043481,76314,33660,2210182485,2199121564,100,100,100,100,1.07,1.19,7.14,7.14
-22832,51,165,51165,1091,469,63241730,63175118,1091,469,63241730,63175118,76314,33660,2210182485,2199121564,100,100,100,100,1.43,1.39,2.86,2.87
-22834,51,165,51165,1250,499,46154376,46023805,1250,499,46154376,46023805,76314,33660,2210182485,2199121564,100,100,100,100,1.64,1.48,2.09,2.09
-22835,51,113,51113,0,10,1177147,1177147,11634,5803,394673330,390276888,13308,5932,833651492,830565702,0,0.17,0.3,0.3,0,0.17,0.14,0.14
-22835,51,139,51139,11634,5793,393496183,389099741,11634,5803,394673330,390276888,24042,11600,813451058,805112691,100,99.83,99.7,99.7,48.39,49.94,48.37,48.33
-22840,51,165,51165,4354,3530,68812746,68309756,4354,3530,68812746,68309756,76314,33660,2210182485,2199121564,100,100,100,100,5.71,10.49,3.11,3.11
-22841,51,015,51015,104,41,3539232,3530905,2791,1153,82003414,80932486,73750,31194,2514503621,2504515631,3.73,3.56,4.32,4.36,0.14,0.13,0.14,0.14
-22841,51,165,51165,2687,1112,78464182,77401581,2791,1153,82003414,80932486,76314,33660,2210182485,2199121564,96.27,96.44,95.68,95.64,3.52,3.3,3.55,3.52
-22842,51,171,51171,5063,2698,188532635,187692899,5063,2698,188532635,187692899,41993,20876,1326524794,1317722983,100,100,100,100,12.06,12.92,14.21,14.24
-22843,51,015,51015,2458,1084,294234893,293158395,2458,1084,294234893,293158395,73750,31194,2514503621,2504515631,100,100,100,100,3.33,3.48,11.7,11.71
-22844,51,165,51165,249,126,26541598,26436112,4528,2222,126474772,125612513,76314,33660,2210182485,2199121564,5.5,5.67,20.99,21.05,0.33,0.37,1.2,1.2
-22844,51,171,51171,4279,2096,99933174,99176401,4528,2222,126474772,125612513,41993,20876,1326524794,1317722983,94.5,94.33,79.01,78.95,10.19,10.04,7.53,7.53
-22845,51,171,51171,33,28,3426433,3422513,33,28,3426433,3422513,41993,20876,1326524794,1317722983,100,100,100,100,0.08,0.13,0.26,0.26
-22846,51,165,51165,1855,694,28879123,28806456,1855,694,28879123,28806456,76314,33660,2210182485,2199121564,100,100,100,100,2.43,2.06,1.31,1.31
-22847,51,171,51171,1066,467,53898019,53766267,1066,467,53898019,53766267,41993,20876,1326524794,1317722983,100,100,100,100,2.54,2.24,4.06,4.08
-22849,51,139,51139,4869,2233,111448084,109597963,5044,2306,123608157,121696107,24042,11600,813451058,805112691,96.53,96.83,90.16,90.06,20.25,19.25,13.7,13.61
-22849,51,165,51165,175,73,12160073,12098144,5044,2306,123608157,121696107,76314,33660,2210182485,2199121564,3.47,3.17,9.84,9.94,0.23,0.22,0.55,0.55
-22850,51,165,51165,899,418,31238225,31198992,899,418,31238225,31198992,76314,33660,2210182485,2199121564,100,100,100,100,1.18,1.24,1.41,1.42
-22851,51,139,51139,5956,2748,143686462,142922623,5956,2748,143686462,142922623,24042,11600,813451058,805112691,100,100,100,100,24.77,23.69,17.66,17.75
-22853,51,165,51165,4326,1937,92487680,91896167,4367,1957,95074349,94478945,76314,33660,2210182485,2199121564,99.06,98.98,97.28,97.27,5.67,5.75,4.18,4.18
-22853,51,171,51171,41,20,2586669,2582778,4367,1957,95074349,94478945,41993,20876,1326524794,1317722983,0.94,1.02,2.72,2.73,0.1,0.1,0.19,0.2
-22901,51,003,51003,26792,12520,130422874,127887837,32532,15139,137657422,135070759,98970,42122,1880635577,1866599905,82.36,82.7,94.74,94.68,27.07,29.72,6.94,6.85
-22901,51,540,51540,5740,2619,7234548,7182922,32532,15139,137657422,135070759,43475,19189,26570336,26517362,17.64,17.3,5.26,5.32,13.2,13.65,27.23,27.09
-22902,51,003,51003,9186,3754,156433891,155477890,21223,9921,163556855,162600854,98970,42122,1880635577,1866599905,43.28,37.84,95.64,95.62,9.28,8.91,8.32,8.33
-22902,51,540,51540,12037,6167,7122964,7122964,21223,9921,163556855,162600854,43475,19189,26570336,26517362,56.72,62.16,4.36,4.38,27.69,32.14,26.81,26.86
-22903,51,003,51003,12728,5731,184835484,183694447,38229,16133,197026417,195884032,98970,42122,1880635577,1866599905,33.29,35.52,93.81,93.78,12.86,13.61,9.83,9.84
-22903,51,540,51540,25501,10402,12190933,12189585,38229,16133,197026417,195884032,43475,19189,26570336,26517362,66.71,64.48,6.19,6.22,58.66,54.21,45.88,45.97
-22904,51,003,51003,4436,13,1698204,1694214,4633,14,1720095,1716105,98970,42122,1880635577,1866599905,95.75,92.86,98.73,98.72,4.48,0.03,0.09,0.09
-22904,51,540,51540,197,1,21891,21891,4633,14,1720095,1716105,43475,19189,26570336,26517362,4.25,7.14,1.27,1.28,0.45,0.01,0.08,0.08
-22911,51,003,51003,15971,7055,133727355,132251328,15971,7055,133727355,132251328,98970,42122,1880635577,1866599905,100,100,100,100,16.14,16.75,7.11,7.09
-22920,51,003,51003,1418,670,82865201,82738084,4186,1997,196289992,195965133,98970,42122,1880635577,1866599905,33.87,33.55,42.22,42.22,1.43,1.59,4.41,4.43
-22920,51,015,51015,41,19,554946,554946,4186,1997,196289992,195965133,73750,31194,2514503621,2504515631,0.98,0.95,0.28,0.28,0.06,0.06,0.02,0.02
-22920,51,125,51125,2727,1308,112869845,112672103,4186,1997,196289992,195965133,15020,9931,1228444659,1219510167,65.15,65.5,57.5,57.5,18.16,13.17,9.19,9.24
-22922,51,009,51009,82,53,6695743,6633456,1993,962,131953722,130952389,32353,13976,1240214627,1227484444,4.11,5.51,5.07,5.07,0.25,0.38,0.54,0.54
-22922,51,125,51125,1911,909,125257979,124318933,1993,962,131953722,130952389,15020,9931,1228444659,1219510167,95.89,94.49,94.93,94.93,12.72,9.15,10.2,10.19
-22923,51,003,51003,1264,498,54575203,54392780,5035,1949,130734047,130240743,98970,42122,1880635577,1866599905,25.1,25.55,41.75,41.76,1.28,1.18,2.9,2.91
-22923,51,079,51079,2202,786,18904135,18718596,5035,1949,130734047,130240743,18403,7509,406382739,404675804,43.73,40.33,14.46,14.37,11.97,10.47,4.65,4.63
-22923,51,137,51137,1569,665,57254709,57129367,5035,1949,130734047,130240743,33481,14616,889050632,882624058,31.16,34.12,43.79,43.86,4.69,4.55,6.44,6.47
-22931,51,003,51003,382,203,47043954,46970224,382,203,47043954,46970224,98970,42122,1880635577,1866599905,100,100,100,100,0.39,0.48,2.5,2.52
-22932,51,003,51003,7488,3129,281495657,280653553,7488,3129,281495657,280653553,98970,42122,1880635577,1866599905,100,100,100,100,7.57,7.43,14.97,15.04
-22935,51,003,51003,413,166,18042229,17887265,926,417,55942081,55747290,98970,42122,1880635577,1866599905,44.6,39.81,32.25,32.09,0.42,0.39,0.96,0.96
-22935,51,079,51079,513,251,37899852,37860025,926,417,55942081,55747290,18403,7509,406382739,404675804,55.4,60.19,67.75,67.91,2.79,3.34,9.33,9.36
-22936,51,003,51003,4853,2001,96095076,94359819,4853,2001,96095076,94359819,98970,42122,1880635577,1866599905,100,100,100,100,4.9,4.75,5.11,5.06
-22937,51,003,51003,1486,680,119273780,118302603,1486,680,119273780,118302603,98970,42122,1880635577,1866599905,100,100,100,100,1.5,1.61,6.34,6.34
-22938,51,003,51003,72,33,5157560,5156840,1444,701,110295818,109962610,98970,42122,1880635577,1866599905,4.99,4.71,4.68,4.69,0.07,0.08,0.27,0.28
-22938,51,125,51125,1372,668,105138258,104805770,1444,701,110295818,109962610,15020,9931,1228444659,1219510167,95.01,95.29,95.32,95.31,9.13,6.73,8.56,8.59
-22939,51,015,51015,5398,2109,43482470,43246068,5398,2109,43482470,43246068,73750,31194,2514503621,2504515631,100,100,100,100,7.32,6.76,1.73,1.73
-22940,51,003,51003,978,430,61759768,61380582,1119,504,81809492,81426695,98970,42122,1880635577,1866599905,87.4,85.32,75.49,75.38,0.99,1.02,3.28,3.29
-22940,51,079,51079,141,74,20049724,20046113,1119,504,81809492,81426695,18403,7509,406382739,404675804,12.6,14.68,24.51,24.62,0.77,0.99,4.93,4.95
-22942,51,003,51003,471,267,43140191,42920497,8113,3893,291433852,289411195,98970,42122,1880635577,1866599905,5.81,6.86,14.8,14.83,0.48,0.63,2.29,2.3
-22942,51,109,51109,3906,1885,144049989,142587110,8113,3893,291433852,289411195,33153,16319,1323151069,1285411656,48.14,48.42,49.43,49.27,11.78,11.55,10.89,11.09
-22942,51,137,51137,3736,1741,104243672,103903588,8113,3893,291433852,289411195,33481,14616,889050632,882624058,46.05,44.72,35.77,35.9,11.16,11.91,11.73,11.77
-22943,51,003,51003,444,219,14797372,14713930,444,219,14797372,14713930,98970,42122,1880635577,1866599905,100,100,100,100,0.45,0.52,0.79,0.79
-22946,51,003,51003,244,111,11133918,11124098,244,111,11133918,11124098,98970,42122,1880635577,1866599905,100,100,100,100,0.25,0.26,0.59,0.6
-22947,51,003,51003,3946,1823,105115356,104560547,4198,1931,113773809,113148348,98970,42122,1880635577,1866599905,94,94.41,92.39,92.41,3.99,4.33,5.59,5.6
-22947,51,065,51065,63,29,2671664,2611480,4198,1931,113773809,113148348,25691,10383,751481384,740750095,1.5,1.5,2.35,2.31,0.25,0.28,0.36,0.35
-22947,51,109,51109,189,79,5986789,5976321,4198,1931,113773809,113148348,33153,16319,1323151069,1285411656,4.5,4.09,5.26,5.28,0.57,0.48,0.45,0.46
-22948,51,113,51113,305,104,15037623,14741730,305,104,15037623,14741730,13308,5932,833651492,830565702,100,100,100,100,2.29,1.75,1.8,1.77
-22949,51,125,51125,1300,655,95310007,95279840,1300,655,95310007,95279840,15020,9931,1228444659,1219510167,100,100,100,100,8.66,6.6,7.76,7.81
-22952,51,015,51015,2029,922,127814141,127253774,2029,922,127814141,127253774,73750,31194,2514503621,2504515631,100,100,100,100,2.75,2.96,5.08,5.08
-22958,51,015,51015,19,172,2015788,2015788,1637,2931,75444014,75240115,73750,31194,2514503621,2504515631,1.16,5.87,2.67,2.68,0.03,0.55,0.08,0.08
-22958,51,125,51125,1618,2759,73428226,73224327,1637,2931,75444014,75240115,15020,9931,1228444659,1219510167,98.84,94.13,97.33,97.32,10.77,27.78,5.98,6
-22959,51,003,51003,1578,705,100810105,100631555,1578,705,100810105,100631555,98970,42122,1880635577,1866599905,100,100,100,100,1.59,1.67,5.36,5.39
-22960,51,113,51113,1014,431,65359071,64969282,10722,4689,337459302,332214417,13308,5932,833651492,830565702,9.46,9.19,19.37,19.56,7.62,7.27,7.84,7.82
-22960,51,137,51137,9374,4049,259499402,257241348,10722,4689,337459302,332214417,33481,14616,889050632,882624058,87.43,86.35,76.9,77.43,28,27.7,29.19,29.15
-22960,51,177,51177,334,209,12600829,10003787,10722,4689,337459302,332214417,122397,45185,1072918470,1039870690,3.12,4.46,3.73,3.01,0.27,0.46,1.17,0.96
-22963,51,065,51065,15401,6489,319369847,315201052,15401,6489,319369847,315201052,25691,10383,751481384,740750095,100,100,100,100,59.95,62.5,42.5,42.55
-22964,51,125,51125,261,127,19463676,19312045,261,127,19463676,19312045,15020,9931,1228444659,1219510167,100,100,100,100,1.74,1.28,1.58,1.58
-22967,51,009,51009,261,132,46194059,46063977,1956,1359,202693533,202051935,32353,13976,1240214627,1227484444,13.34,9.71,22.79,22.8,0.81,0.94,3.72,3.75
-22967,51,125,51125,1695,1227,156499474,155987958,1956,1359,202693533,202051935,15020,9931,1228444659,1219510167,86.66,90.29,77.21,77.2,11.28,12.36,12.74,12.79
-22968,51,003,51003,349,144,9073154,9026168,9815,3792,100638560,99904293,98970,42122,1880635577,1866599905,3.56,3.8,9.02,9.03,0.35,0.34,0.48,0.48
-22968,51,079,51079,9466,3648,91565406,90878125,9815,3792,100638560,99904293,18403,7509,406382739,404675804,96.44,96.2,90.98,90.97,51.44,48.58,22.53,22.46
-22969,51,003,51003,716,333,51834577,51743154,1437,706,113606945,113220305,98970,42122,1880635577,1866599905,49.83,47.17,45.63,45.7,0.72,0.79,2.76,2.77
-22969,51,125,51125,721,373,61772368,61477151,1437,706,113606945,113220305,15020,9931,1228444659,1219510167,50.17,52.83,54.37,54.3,4.8,3.76,5.03,5.04
-22971,51,125,51125,1735,873,139494877,139213548,1735,873,139494877,139213548,15020,9931,1228444659,1219510167,100,100,100,100,11.55,8.79,11.36,11.42
-22972,51,137,51137,439,206,37214842,37027850,439,206,37214842,37027850,33481,14616,889050632,882624058,100,100,100,100,1.31,1.41,4.19,4.2
-22973,51,079,51079,6081,2750,237963622,237172945,6191,2837,265740700,264947287,18403,7509,406382739,404675804,98.22,96.93,89.55,89.52,33.04,36.62,58.56,58.61
-22973,51,113,51113,110,87,27777078,27774342,6191,2837,265740700,264947287,13308,5932,833651492,830565702,1.78,3.07,10.45,10.48,0.83,1.47,3.33,3.34
-22974,51,003,51003,408,148,10354928,10157628,5385,1715,105536527,104482898,98970,42122,1880635577,1866599905,7.58,8.63,9.81,9.72,0.41,0.35,0.55,0.54
-22974,51,065,51065,4006,1178,81285420,80491679,5385,1715,105536527,104482898,25691,10383,751481384,740750095,74.39,68.69,77.02,77.04,15.59,11.35,10.82,10.87
-22974,51,109,51109,971,389,13896179,13833591,5385,1715,105536527,104482898,33153,16319,1323151069,1285411656,18.03,22.68,13.17,13.24,2.93,2.38,1.05,1.08
-22976,51,125,51125,339,214,100505956,100185087,339,214,100505956,100185087,15020,9931,1228444659,1219510167,100,100,100,100,2.26,2.15,8.18,8.22
-22980,51,015,51015,10445,4505,154477801,153584141,31451,14222,193847707,192534958,73750,31194,2514503621,2504515631,33.21,31.68,79.69,79.77,14.16,14.44,6.14,6.13
-22980,51,820,51820,21006,9717,39369906,38950817,31451,14222,193847707,192534958,21006,9717,39369906,38950817,66.79,68.32,20.31,20.23,100,100,100,100
-22989,51,113,51113,112,40,3894568,3808982,112,40,3894568,3808982,13308,5932,833651492,830565702,100,100,100,100,0.84,0.67,0.47,0.46
-23002,51,007,51007,10383,4330,670732323,665537764,10439,4351,677963422,672736972,12690,5359,928567434,920142596,99.46,99.52,98.93,98.93,81.82,80.8,72.23,72.33
-23002,51,135,51135,56,21,7231099,7199208,10439,4351,677963422,672736972,15853,6650,818563487,814271729,0.54,0.48,1.07,1.07,0.35,0.32,0.88,0.88
-23004,51,029,51029,851,433,102817675,102193630,851,433,102817675,102193630,17146,7244,1511403487,1501304577,100,100,100,100,4.96,5.98,6.8,6.81
-23005,51,085,51085,15227,6156,175897468,174500594,15227,6156,175897468,174500594,99863,38360,1227151698,1213502928,100,100,100,100,15.25,16.05,14.33,14.38
-23009,51,101,51101,6279,2500,203474809,201252692,6279,2500,203474809,201252692,15935,6522,739790085,709504582,100,100,100,100,39.4,38.33,27.5,28.37
-23011,51,127,51127,1429,420,67435231,56500937,1429,420,67435231,56500937,18429,7295,578788917,543196546,100,100,100,100,7.75,5.76,11.65,10.4
-23015,51,033,51033,408,183,18675753,18536996,4249,1638,211922475,210393268,28545,11729,1390485480,1366252458,9.6,11.17,8.81,8.81,1.43,1.56,1.34,1.36
-23015,51,085,51085,3175,1205,162989344,161768552,4249,1638,211922475,210393268,99863,38360,1227151698,1213502928,74.72,73.57,76.91,76.89,3.18,3.14,13.28,13.33
-23015,51,109,51109,51,23,3619274,3617850,4249,1638,211922475,210393268,33153,16319,1323151069,1285411656,1.2,1.4,1.71,1.72,0.15,0.14,0.27,0.28
-23015,51,177,51177,615,227,26638104,26469870,4249,1638,211922475,210393268,122397,45185,1072918470,1039870690,14.47,13.86,12.57,12.58,0.5,0.5,2.48,2.55
-23021,51,115,51115,345,165,13241909,9263141,345,165,13241909,9263141,8978,5669,652579064,222555448,100,100,100,100,3.84,2.91,2.03,4.16
-23022,51,065,51065,930,459,69609767,67695110,930,459,69609767,67695110,25691,10383,751481384,740750095,100,100,100,100,3.62,4.42,9.26,9.14
-23023,51,097,51097,323,153,52075707,51647104,323,153,52075707,51647104,6945,3414,845076601,816203901,100,100,100,100,4.65,4.48,6.16,6.33
-23024,51,085,51085,70,26,3014132,2994558,8120,4180,301839446,274504098,99863,38360,1227151698,1213502928,0.86,0.62,1,1.09,0.07,0.07,0.25,0.25
-23024,51,109,51109,6890,3440,254957675,236410872,8120,4180,301839446,274504098,33153,16319,1323151069,1285411656,84.85,82.3,84.47,86.12,20.78,21.08,19.27,18.39
-23024,51,177,51177,1160,714,43867639,35098668,8120,4180,301839446,274504098,122397,45185,1072918470,1039870690,14.29,17.08,14.53,12.79,0.95,1.58,4.09,3.38
-23025,51,115,51115,233,134,3819792,3365700,233,134,3819792,3365700,8978,5669,652579064,222555448,100,100,100,100,2.6,2.36,0.59,1.51
-23027,51,049,51049,1413,619,118648752,118073399,1413,619,118648752,118073399,10052,4626,776351364,770419651,100,100,100,100,14.06,13.38,15.28,15.33
-23030,51,036,51036,5095,2300,434187244,379012486,5128,2314,437890832,382705907,7256,3229,528984611,473494077,99.36,99.39,99.15,99.03,70.22,71.23,82.08,80.05
-23030,51,087,51087,33,14,3703588,3693421,5128,2314,437890832,382705907,306935,132778,634306836,605271846,0.64,0.61,0.85,0.97,0.01,0.01,0.58,0.61
-23032,51,119,51119,283,147,44127407,44076309,283,147,44127407,44076309,10959,7133,545870514,337492226,100,100,100,100,2.58,2.06,8.08,13.06
-23035,51,115,51115,1473,813,45513327,38092085,1473,813,45513327,38092085,8978,5669,652579064,222555448,100,100,100,100,16.41,14.34,6.97,17.12
-23038,51,049,51049,520,320,76876350,76049969,1775,908,196672548,194141983,10052,4626,776351364,770419651,29.3,35.24,39.09,39.17,5.17,6.92,9.9,9.87
-23038,51,065,51065,391,182,41299215,41034218,1775,908,196672548,194141983,25691,10383,751481384,740750095,22.03,20.04,21,21.14,1.52,1.75,5.5,5.54
-23038,51,075,51075,864,406,78496983,77057796,1775,908,196672548,194141983,21717,8618,750849856,728861838,48.68,44.71,39.91,39.69,3.98,4.71,10.45,10.57
-23039,51,075,51075,1056,468,39489190,38355463,1056,468,39489190,38355463,21717,8618,750849856,728861838,100,100,100,100,4.86,5.43,5.26,5.26
-23040,51,029,51029,296,141,26779678,26702866,4661,2068,384156327,381632865,17146,7244,1511403487,1501304577,6.35,6.82,6.97,7,1.73,1.95,1.77,1.78
-23040,51,049,51049,4365,1927,357376649,354929999,4661,2068,384156327,381632865,10052,4626,776351364,770419651,93.65,93.18,93.03,93,43.42,41.66,46.03,46.07
-23043,51,119,51119,1692,1715,39958571,19478530,1692,1715,39958571,19478530,10959,7133,545870514,337492226,100,100,100,100,15.44,24.04,7.32,5.77
-23045,51,115,51115,96,72,7519040,6293741,96,72,7519040,6293741,8978,5669,652579064,222555448,100,100,100,100,1.07,1.27,1.15,2.83
-23047,51,033,51033,339,129,26911773,26415464,1952,811,124835912,122778552,28545,11729,1390485480,1366252458,17.37,15.91,21.56,21.51,1.19,1.1,1.94,1.93
-23047,51,085,51085,1613,682,97924139,96363088,1952,811,124835912,122778552,99863,38360,1227151698,1213502928,82.63,84.09,78.44,78.49,1.62,1.78,7.98,7.94
-23050,51,073,51073,106,54,4413163,3823408,598,282,11932136,10715038,36858,15852,745865692,564116907,17.73,19.15,36.99,35.68,0.29,0.34,0.59,0.68
-23050,51,115,51115,492,228,7518973,6891630,598,282,11932136,10715038,8978,5669,652579064,222555448,82.27,80.85,63.01,64.32,5.48,4.02,1.15,3.1
-23055,51,065,51065,915,375,40984602,40184632,915,375,40984602,40184632,25691,10383,751481384,740750095,100,100,100,100,3.56,3.61,5.45,5.42
-23056,51,115,51115,458,249,25469178,15442376,458,249,25469178,15442376,8978,5669,652579064,222555448,100,100,100,100,5.1,4.39,3.9,6.94
-23059,51,085,51085,4200,1757,73380760,72884664,31919,12235,120117198,118919338,99863,38360,1227151698,1213502928,13.16,14.36,61.09,61.29,4.21,4.58,5.98,6.01
-23059,51,087,51087,27719,10478,46736438,46034674,31919,12235,120117198,118919338,306935,132778,634306836,605271846,86.84,85.64,38.91,38.71,9.03,7.89,7.37,7.61
-23060,51,087,51087,33417,13488,39709493,39294586,33417,13488,39709493,39294586,306935,132778,634306836,605271846,100,100,100,100,10.89,10.16,6.26,6.49
-23061,51,073,51073,21208,8854,495613237,405632941,21208,8854,495613237,405632941,36858,15852,745865692,564116907,100,100,100,100,57.54,55.85,66.45,71.91
-23062,51,073,51073,2340,1150,8945697,3734104,2340,1150,8945697,3734104,36858,15852,745865692,564116907,100,100,100,100,6.35,7.25,1.2,0.66
-23063,51,075,51075,5278,2008,269524781,259686582,5278,2008,269524781,259686582,21717,8618,750849856,728861838,100,100,100,100,24.3,23.3,35.9,35.63
-23064,51,115,51115,131,128,1246449,890813,131,128,1246449,890813,8978,5669,652579064,222555448,100,100,100,100,1.46,2.26,0.19,0.4
-23065,51,075,51075,1118,460,34874280,34464562,1909,811,56688587,56193678,21717,8618,750849856,728861838,58.56,56.72,61.52,61.33,5.15,5.34,4.64,4.73
-23065,51,109,51109,791,351,21814307,21729116,1909,811,56688587,56193678,33153,16319,1323151069,1285411656,41.44,43.28,38.48,38.67,2.39,2.15,1.65,1.69
-23066,51,115,51115,471,526,12729189,5217679,471,526,12729189,5217679,8978,5669,652579064,222555448,100,100,100,100,5.25,9.28,1.95,2.34
-23068,51,115,51115,257,201,6438837,2255618,257,201,6438837,2255618,8978,5669,652579064,222555448,100,100,100,100,2.86,3.55,0.99,1.01
-23069,51,033,51033,715,283,25215270,25096587,3197,1073,143447553,141205537,28545,11729,1390485480,1366252458,22.36,26.37,17.58,17.77,2.5,2.41,1.81,1.84
-23069,51,085,51085,1839,564,52833827,51592770,3197,1073,143447553,141205537,99863,38360,1227151698,1213502928,57.52,52.56,36.83,36.54,1.84,1.47,4.31,4.25
-23069,51,101,51101,643,226,65398456,64516180,3197,1073,143447553,141205537,15935,6522,739790085,709504582,20.11,21.06,45.59,45.69,4.04,3.47,8.84,9.09
-23070,51,119,51119,431,227,9338100,7479562,431,227,9338100,7479562,10959,7133,545870514,337492226,100,100,100,100,3.93,3.18,1.71,2.22
-23071,51,119,51119,1563,1050,39824261,31028215,1563,1050,39824261,31028215,10959,7133,545870514,337492226,100,100,100,100,14.26,14.72,7.3,9.19
-23072,51,073,51073,11541,5103,180830778,95221648,11541,5103,180830778,95221648,36858,15852,745865692,564116907,100,100,100,100,31.31,32.19,24.24,16.88
-23075,51,087,51087,9819,4308,12509258,11873171,9819,4308,12509258,11873171,306935,132778,634306836,605271846,100,100,100,100,3.2,3.24,1.97,1.96
-23076,51,115,51115,606,403,15079414,9792994,606,403,15079414,9792994,8978,5669,652579064,222555448,100,100,100,100,6.75,7.11,2.31,4.4
-23079,51,119,51119,437,289,71709887,54872083,437,289,71709887,54872083,10959,7133,545870514,337492226,100,100,100,100,3.99,4.05,13.14,16.26
-23083,51,007,51007,1717,753,144780147,144570462,1732,760,147429032,147212467,12690,5359,928567434,920142596,99.13,99.08,98.2,98.21,13.53,14.05,15.59,15.71
-23083,51,135,51135,15,7,2648885,2642005,1732,760,147429032,147212467,15853,6650,818563487,814271729,0.87,0.92,1.8,1.79,0.09,0.11,0.32,0.32
-23084,51,065,51065,1161,501,75888741,75685041,1799,776,107060390,106722222,25691,10383,751481384,740750095,64.54,64.56,70.88,70.92,4.52,4.83,10.1,10.22
-23084,51,075,51075,432,185,24117473,24006601,1799,776,107060390,106722222,21717,8618,750849856,728861838,24.01,23.84,22.53,22.49,1.99,2.15,3.21,3.29
-23084,51,109,51109,206,90,7054176,7030580,1799,776,107060390,106722222,33153,16319,1323151069,1285411656,11.45,11.6,6.59,6.59,0.62,0.55,0.53,0.55
-23085,51,097,51097,364,199,113030897,111497591,364,199,113030897,111497591,6945,3414,845076601,816203901,100,100,100,100,5.24,5.83,13.38,13.66
-23086,51,101,51101,3247,1348,222350266,214079107,3247,1348,222350266,214079107,15935,6522,739790085,709504582,100,100,100,100,20.38,20.67,30.06,30.17
-23089,51,095,51095,1716,862,36823325,33074564,4914,2242,173526217,156976953,67009,29797,464230019,368909132,34.92,38.45,21.22,21.07,2.56,2.89,7.93,8.97
-23089,51,127,51127,3198,1380,136702892,123902389,4914,2242,173526217,156976953,18429,7295,578788917,543196546,65.08,61.55,78.78,78.93,17.35,18.92,23.62,22.81
-23091,51,097,51097,309,154,61768885,60033075,309,154,61768885,60033075,6945,3414,845076601,816203901,100,100,100,100,4.45,4.51,7.31,7.36
-23092,51,119,51119,584,294,18596779,12706441,584,294,18596779,12706441,10959,7133,545870514,337492226,100,100,100,100,5.33,4.12,3.41,3.76
-23093,51,065,51065,36,17,2416311,2414802,12694,5822,545579681,540403334,25691,10383,751481384,740750095,0.28,0.29,0.44,0.45,0.14,0.16,0.32,0.33
-23093,51,075,51075,740,297,22785128,22642899,12694,5822,545579681,540403334,21717,8618,750849856,728861838,5.83,5.1,4.18,4.19,3.41,3.45,3.03,3.11
-23093,51,109,51109,11918,5508,520378242,515345633,12694,5822,545579681,540403334,33153,16319,1323151069,1285411656,93.89,94.61,95.38,95.36,35.95,33.75,39.33,40.09
-23102,51,075,51075,2306,938,62060761,59470946,2659,1096,79501476,76852108,21717,8618,750849856,728861838,86.72,85.58,78.06,77.38,10.62,10.88,8.27,8.16
-23102,51,085,51085,109,48,4895097,4852058,2659,1096,79501476,76852108,99863,38360,1227151698,1213502928,4.1,4.38,6.16,6.31,0.11,0.13,0.4,0.4
-23102,51,109,51109,244,110,12545618,12529104,2659,1096,79501476,76852108,33153,16319,1323151069,1285411656,9.18,10.04,15.78,16.3,0.74,0.67,0.95,0.97
-23103,51,075,51075,4634,1998,100490625,96917345,4634,1998,100490625,96917345,21717,8618,750849856,728861838,100,100,100,100,21.34,23.18,13.38,13.3
-23106,51,101,51101,976,407,70692689,69705534,976,407,70692689,69705534,15935,6522,739790085,709504582,100,100,100,100,6.12,6.24,9.56,9.82
-23108,51,097,51097,161,73,33193150,33031155,161,73,33193150,33031155,6945,3414,845076601,816203901,100,100,100,100,2.32,2.14,3.93,4.05
-23109,51,115,51115,1821,958,49001112,44520881,1821,958,49001112,44520881,8978,5669,652579064,222555448,100,100,100,100,20.28,16.9,7.51,20
-23110,51,097,51097,794,393,63313313,57313395,794,393,63313313,57313395,6945,3414,845076601,816203901,100,100,100,100,11.43,11.51,7.49,7.02
-23111,51,085,51085,36490,14351,204585929,202251211,36490,14351,204585929,202251211,99863,38360,1227151698,1213502928,100,100,100,100,36.54,37.41,16.67,16.67
-23112,51,041,51041,46982,18372,90010167,83923263,46982,18372,90010167,83923263,316236,122555,1131707103,1096334108,100,100,100,100,14.86,14.99,7.95,7.65
-23113,51,041,51041,22816,8981,52280897,51862887,23848,9471,92560345,91683844,316236,122555,1131707103,1096334108,95.67,94.83,56.48,56.57,7.21,7.33,4.62,4.73
-23113,51,145,51145,1032,490,40279448,39820957,23848,9471,92560345,91683844,28046,10043,679474762,673969480,4.33,5.17,43.52,43.43,3.68,4.88,5.93,5.91
-23114,51,041,51041,17449,6719,29342664,29171308,17449,6719,29342664,29171308,316236,122555,1131707103,1096334108,100,100,100,100,5.52,5.48,2.59,2.66
-23115,51,057,51057,146,62,14316106,14316106,146,62,14316106,14316106,11151,5757,740738004,665944393,100,100,100,100,1.31,1.08,1.93,2.15
-23116,51,085,51085,27228,9796,164181596,162693753,27228,9796,164181596,162693753,99863,38360,1227151698,1213502928,100,100,100,100,27.27,25.54,13.38,13.41
-23117,51,075,51075,221,93,10271673,10233319,9141,5286,372067502,354284136,21717,8618,750849856,728861838,2.42,1.76,2.76,2.89,1.02,1.08,1.37,1.4
-23117,51,109,51109,7648,4323,331851053,319371974,9141,5286,372067502,354284136,33153,16319,1323151069,1285411656,83.67,81.78,89.19,90.15,23.07,26.49,25.08,24.85
-23117,51,177,51177,1272,870,29944776,24678843,9141,5286,372067502,354284136,122397,45185,1072918470,1039870690,13.92,16.46,8.05,6.97,1.04,1.93,2.79,2.37
-23119,51,115,51115,295,214,13873067,8550434,295,214,13873067,8550434,8978,5669,652579064,222555448,100,100,100,100,3.29,3.77,2.13,3.84
-23120,51,041,51041,5211,1664,156014677,154151207,5971,1935,167359688,165488923,316236,122555,1131707103,1096334108,87.27,85.99,93.22,93.15,1.65,1.36,13.79,14.06
-23120,51,145,51145,760,271,11345011,11337716,5971,1935,167359688,165488923,28046,10043,679474762,673969480,12.73,14.01,6.78,6.85,2.71,2.7,1.67,1.68
-23123,51,029,51029,1798,874,94833171,93813322,1860,916,107192568,105975331,17146,7244,1511403487,1501304577,96.67,95.41,88.47,88.52,10.49,12.07,6.27,6.25
-23123,51,049,51049,62,42,12359397,12162009,1860,916,107192568,105975331,10052,4626,776351364,770419651,3.33,4.59,11.53,11.48,0.62,0.91,1.59,1.58
-23124,51,127,51127,3185,1212,148449430,141165931,3185,1212,148449430,141165931,18429,7295,578788917,543196546,100,100,100,100,17.28,16.61,25.65,25.99
-23125,51,115,51115,223,222,10491969,5640041,223,222,10491969,5640041,8978,5669,652579064,222555448,100,100,100,100,2.48,3.92,1.61,2.53
-23126,51,097,51097,534,242,58126767,57849061,534,242,58126767,57849061,6945,3414,845076601,816203901,100,100,100,100,7.69,7.09,6.88,7.09
-23128,51,073,51073,409,164,6254732,6009418,1045,574,39063407,30163349,36858,15852,745865692,564116907,39.14,28.57,16.01,19.92,1.11,1.03,0.84,1.07
-23128,51,115,51115,636,410,32808675,24153931,1045,574,39063407,30163349,8978,5669,652579064,222555448,60.86,71.43,83.99,80.08,7.08,7.23,5.03,10.85
-23129,51,075,51075,374,145,10519333,10408770,374,145,10519333,10408770,21717,8618,750849856,728861838,100,100,100,100,1.72,1.68,1.4,1.43
-23130,51,115,51115,268,160,21480520,15346854,268,160,21480520,15346854,8978,5669,652579064,222555448,100,100,100,100,2.99,2.82,3.29,6.9
-23138,51,115,51115,953,610,56984247,21712227,953,610,56984247,21712227,8978,5669,652579064,222555448,100,100,100,100,10.61,10.76,8.73,9.76
-23139,51,049,51049,192,77,6120908,6088596,24425,9358,624174189,619225632,10052,4626,776351364,770419651,0.79,0.82,0.98,0.98,1.91,1.66,0.79,0.79
-23139,51,145,51145,24233,9281,618053281,613137036,24425,9358,624174189,619225632,28046,10043,679474762,673969480,99.21,99.18,99.02,99.02,86.4,92.41,90.96,90.97
-23140,51,036,51036,1771,763,80896362,80896362,5175,2140,195685341,194053204,7256,3229,528984611,473494077,34.22,35.65,41.34,41.69,24.41,23.63,15.29,17.08
-23140,51,127,51127,3404,1377,114788979,113156842,5175,2140,195685341,194053204,18429,7295,578788917,543196546,65.78,64.35,58.66,58.31,18.47,18.88,19.83,20.83
-23141,51,127,51127,6471,2597,94968422,94184113,6471,2597,94968422,94184113,18429,7295,578788917,543196546,100,100,100,100,35.11,35.6,16.41,17.34
-23146,51,075,51075,407,175,20434437,20243662,3093,1205,88010170,86699747,21717,8618,750849856,728861838,13.16,14.52,23.22,23.35,1.87,2.03,2.72,2.78
-23146,51,085,51085,2686,1030,67575733,66456085,3093,1205,88010170,86699747,99863,38360,1227151698,1213502928,86.84,85.48,76.78,76.65,2.69,2.69,5.51,5.48
-23148,51,057,51057,233,95,21712657,21712657,1827,810,169246420,168150067,11151,5757,740738004,665944393,12.75,11.73,12.83,12.91,2.09,1.65,2.93,3.26
-23148,51,097,51097,1594,715,147533763,146437410,1827,810,169246420,168150067,6945,3414,845076601,816203901,87.25,88.27,87.17,87.09,22.95,20.94,17.46,17.94
-23149,51,073,51073,1254,527,49808085,49695388,3190,1357,140024546,130670904,36858,15852,745865692,564116907,39.31,38.84,35.57,38.03,3.4,3.32,6.68,8.81
-23149,51,097,51097,342,166,24883679,24786307,3190,1357,140024546,130670904,6945,3414,845076601,816203901,10.72,12.23,17.77,18.97,4.92,4.86,2.94,3.04
-23149,51,119,51119,1594,664,65332782,56189209,3190,1357,140024546,130670904,10959,7133,545870514,337492226,49.97,48.93,46.66,43,14.55,9.31,11.97,16.65
-23150,51,087,51087,12045,5264,80733393,77188557,12045,5264,80733393,77188557,306935,132778,634306836,605271846,100,100,100,100,3.92,3.96,12.73,12.75
-23153,51,075,51075,1334,524,34995858,34241758,1334,524,34995858,34241758,21717,8618,750849856,728861838,100,100,100,100,6.14,6.08,4.66,4.7
-23156,51,097,51097,1555,775,116671613,103472068,1555,775,116671613,103472068,6945,3414,845076601,816203901,100,100,100,100,22.39,22.7,13.81,12.68
-23160,51,075,51075,687,0,60923,60923,2708,1,9857945,9734694,21717,8618,750849856,728861838,25.37,0,0.62,0.63,3.16,0,0.01,0.01
-23160,51,145,51145,2021,1,9797022,9673771,2708,1,9857945,9734694,28046,10043,679474762,673969480,74.63,100,99.38,99.37,7.21,0.01,1.44,1.44
-23161,51,097,51097,173,106,29463094,28089502,173,106,29463094,28089502,6945,3414,845076601,816203901,100,100,100,100,2.49,3.1,3.49,3.44
-23163,51,115,51115,220,176,6754357,5125303,220,176,6754357,5125303,8978,5669,652579064,222555448,100,100,100,100,2.45,3.1,1.04,2.3
-23168,51,095,51095,6115,2360,64773136,60576347,6115,2360,64773136,60576347,67009,29797,464230019,368909132,100,100,100,100,9.13,7.92,13.95,16.42
-23169,51,119,51119,1325,820,46454241,24164947,1325,820,46454241,24164947,10959,7133,545870514,337492226,100,100,100,100,12.09,11.5,8.51,7.16
-23173,51,760,51760,2820,39,1109237,1054356,2820,39,1109237,1054356,204214,98349,161775020,154894705,100,100,100,100,1.38,0.04,0.69,0.68
-23175,51,119,51119,1907,1285,51020508,42175414,1907,1285,51020508,42175414,10959,7133,545870514,337492226,100,100,100,100,17.4,18.01,9.35,12.5
-23176,51,119,51119,656,356,19271359,11169742,656,356,19271359,11169742,10959,7133,545870514,337492226,100,100,100,100,5.99,4.99,3.53,3.31
-23177,51,097,51097,510,280,50841699,48245218,616,329,55945850,52900087,6945,3414,845076601,816203901,82.79,85.11,90.88,91.2,7.34,8.2,6.02,5.91
-23177,51,101,51101,106,49,5104151,4654869,616,329,55945850,52900087,15935,6522,739790085,709504582,17.21,14.89,9.12,8.8,0.67,0.75,0.69,0.66
-23180,51,119,51119,441,267,46803742,26291321,441,267,46803742,26291321,10959,7133,545870514,337492226,100,100,100,100,4.02,3.74,8.57,7.79
-23181,51,101,51101,4684,1992,172769714,155296200,5426,2301,189213677,169582534,15935,6522,739790085,709504582,86.33,86.57,91.31,91.58,29.39,30.54,23.35,21.89
-23181,51,127,51127,742,309,16443963,14286334,5426,2301,189213677,169582534,18429,7295,578788917,543196546,13.67,13.43,8.69,8.42,4.03,4.24,2.84,2.63
-23185,51,036,51036,57,29,949940,936324,46370,20544,210757864,145107471,7256,3229,528984611,473494077,0.12,0.14,0.45,0.65,0.79,0.9,0.18,0.2
-23185,51,095,51095,24350,10928,152391231,88816244,46370,20544,210757864,145107471,67009,29797,464230019,368909132,52.51,53.19,72.31,61.21,36.34,36.67,32.83,24.08
-23185,51,199,51199,9332,5109,36142987,34389317,46370,20544,210757864,145107471,65464,26849,556739753,271379438,20.13,24.87,17.15,23.7,14.26,19.03,6.49,12.67
-23185,51,830,51830,12631,4478,21273706,20965586,46370,20544,210757864,145107471,14068,5176,23784843,23366983,27.24,21.8,10.09,14.45,89.79,86.51,89.44,89.72
-23187,51,830,51830,267,0,309985,251971,267,0,309985,251971,14068,5176,23784843,23366983,100,0,100,100,1.9,0,1.3,1.08
-23188,51,095,51095,34828,15647,210242327,186441977,38733,17482,280188135,253699615,67009,29797,464230019,368909132,89.92,89.5,75.04,73.49,51.98,52.51,45.29,50.54
-23188,51,199,51199,2735,1137,67744656,65108212,38733,17482,280188135,253699615,65464,26849,556739753,271379438,7.06,6.5,24.18,25.66,4.18,4.23,12.17,23.99
-23188,51,830,51830,1170,698,2201152,2149426,38733,17482,280188135,253699615,14068,5176,23784843,23366983,3.02,3.99,0.79,0.85,8.32,13.49,9.25,9.2
-23192,51,085,51085,6728,2545,192916578,190382885,7067,2666,199914345,197362390,99863,38360,1227151698,1213502928,95.2,95.46,96.5,96.46,6.74,6.63,15.72,15.69
-23192,51,109,51109,339,121,6997767,6979505,7067,2666,199914345,197362390,33153,16319,1323151069,1285411656,4.8,4.54,3.5,3.54,1.02,0.74,0.53,0.54
-23219,51,760,51760,3781,2135,4703647,3974414,3781,2135,4703647,3974414,204214,98349,161775020,154894705,100,100,100,100,1.85,2.17,2.91,2.57
-23220,51,760,51760,35545,16609,13159385,12440992,35545,16609,13159385,12440992,204214,98349,161775020,154894705,100,100,100,100,17.41,16.89,8.13,8.03
-23221,51,760,51760,13680,7816,10246242,8552740,13680,7816,10246242,8552740,204214,98349,161775020,154894705,100,100,100,100,6.7,7.95,6.33,5.52
-23222,51,087,51087,7502,3065,12680407,12578124,24563,11001,21606978,21501009,306935,132778,634306836,605271846,30.54,27.86,58.69,58.5,2.44,2.31,2,2.08
-23222,51,760,51760,17061,7936,8926571,8922885,24563,11001,21606978,21501009,204214,98349,161775020,154894705,69.46,72.14,41.31,41.5,8.35,8.07,5.52,5.76
-23223,51,087,51087,25019,10610,34403694,33598706,47677,22017,44617883,43634302,306935,132778,634306836,605271846,52.48,48.19,77.11,77,8.15,7.99,5.42,5.55
-23223,51,760,51760,22658,11407,10214189,10035596,47677,22017,44617883,43634302,204214,98349,161775020,154894705,47.52,51.81,22.89,23,11.1,11.6,6.31,6.48
-23224,51,041,51041,2788,1225,1893042,1893042,33461,14828,30948031,30204495,316236,122555,1131707103,1096334108,8.33,8.26,6.12,6.27,0.88,1,0.17,0.17
-23224,51,760,51760,30673,13603,29054989,28311453,33461,14828,30948031,30204495,204214,98349,161775020,154894705,91.67,91.74,93.88,93.73,15.02,13.83,17.96,18.28
-23225,51,041,51041,4224,1982,7997364,7846061,39169,19869,38815019,37035106,316236,122555,1131707103,1096334108,10.78,9.98,20.6,21.19,1.34,1.62,0.71,0.72
-23225,51,760,51760,34945,17887,30817655,29189045,39169,19869,38815019,37035106,204214,98349,161775020,154894705,89.22,90.02,79.4,78.81,17.11,18.19,19.05,18.84
-23226,51,087,51087,7776,3627,8712342,7658744,15805,7500,16341809,15287094,306935,132778,634306836,605271846,49.2,48.36,53.31,50.1,2.53,2.73,1.37,1.27
-23226,51,760,51760,8029,3873,7629467,7628350,15805,7500,16341809,15287094,204214,98349,161775020,154894705,50.8,51.64,46.69,49.9,3.93,3.94,4.72,4.92
-23227,51,087,51087,14375,7026,22551505,21498869,24440,12763,30525977,29452838,306935,132778,634306836,605271846,58.82,55.05,73.88,72.99,4.68,5.29,3.56,3.55
-23227,51,760,51760,10065,5737,7974472,7953969,24440,12763,30525977,29452838,204214,98349,161775020,154894705,41.18,44.95,26.12,27.01,4.93,5.83,4.93,5.14
-23228,51,087,51087,34198,16089,29229189,29005136,34198,16089,29229189,29005136,306935,132778,634306836,605271846,100,100,100,100,11.14,12.12,4.61,4.79
-23229,51,087,51087,32283,13736,38548707,36956986,32283,13736,38548707,36956986,306935,132778,634306836,605271846,100,100,100,100,10.52,10.35,6.08,6.11
-23230,51,087,51087,3635,1550,7690199,7621435,5852,2917,10874136,10805372,306935,132778,634306836,605271846,62.12,53.14,70.72,70.53,1.18,1.17,1.21,1.26
-23230,51,760,51760,2217,1367,3183937,3183937,5852,2917,10874136,10805372,204214,98349,161775020,154894705,37.88,46.86,29.28,29.47,1.09,1.39,1.97,2.06
-23231,51,036,51036,333,137,12951065,12648905,34685,14438,246537765,228691699,7256,3229,528984611,473494077,0.96,0.95,5.25,5.53,4.59,4.24,2.45,2.67
-23231,51,087,51087,29780,12334,230538166,212994260,34685,14438,246537765,228691699,306935,132778,634306836,605271846,85.86,85.43,93.51,93.14,9.7,9.29,36.34,35.19
-23231,51,760,51760,4572,1967,3048534,3048534,34685,14438,246537765,228691699,204214,98349,161775020,154894705,13.18,13.62,1.24,1.33,2.24,2,1.88,1.97
-23233,51,075,51075,311,125,7309733,7267706,28908,12145,32352583,31970186,21717,8618,750849856,728861838,1.08,1.03,22.59,22.73,1.43,1.45,0.97,1
-23233,51,087,51087,28597,12020,25042850,24702480,28908,12145,32352583,31970186,306935,132778,634306836,605271846,98.92,98.97,77.41,77.27,9.32,9.05,3.95,4.08
-23234,51,041,51041,30766,12002,33586062,32888375,42989,16952,52834269,51093298,316236,122555,1131707103,1096334108,71.57,70.8,63.57,64.37,9.73,9.79,2.97,3
-23234,51,760,51760,12223,4950,19248207,18204923,42989,16952,52834269,51093298,204214,98349,161775020,154894705,28.43,29.2,36.43,35.63,5.99,5.03,11.9,11.75
-23235,51,041,51041,24220,10426,32900343,32842907,30165,13449,45358831,45236418,316236,122555,1131707103,1096334108,80.29,77.52,72.53,72.6,7.66,8.51,2.91,3
-23235,51,760,51760,5945,3023,12458488,12393511,30165,13449,45358831,45236418,204214,98349,161775020,154894705,19.71,22.48,27.47,27.4,2.91,3.07,7.7,8
-23236,51,041,51041,25822,10219,37534187,37306118,25822,10219,37534187,37306118,316236,122555,1131707103,1096334108,100,100,100,100,8.17,8.34,3.32,3.4
-23237,51,041,51041,21192,8311,52979153,52955796,21192,8311,52979153,52955796,316236,122555,1131707103,1096334108,100,100,100,100,6.7,6.78,4.68,4.83
-23238,51,075,51075,1955,796,35418678,33803506,25134,11598,58096280,55597515,21717,8618,750849856,728861838,7.78,6.86,60.97,60.8,9,9.24,4.72,4.64
-23238,51,087,51087,23179,10802,22677602,21794009,25134,11598,58096280,55597515,306935,132778,634306836,605271846,92.22,93.14,39.03,39.2,7.55,8.14,3.58,3.6
-23250,51,087,51087,0,0,8094810,8056933,0,0,8094810,8056933,306935,132778,634306836,605271846,0,0,100,100,0,0,1.28,1.33
-23294,51,087,51087,17558,8367,10745195,10721755,17558,8367,10745195,10721755,306935,132778,634306836,605271846,100,100,100,100,5.72,6.3,1.69,1.77
-23301,51,001,51001,1831,795,87931975,70543263,1831,795,87931975,70543263,33164,21002,3392983302,1164189289,100,100,100,100,5.52,3.79,2.59,6.06
-23302,51,001,51001,155,79,9217283,8610832,155,79,9217283,8610832,33164,21002,3392983302,1164189289,100,100,100,100,0.47,0.38,0.27,0.74
-23303,51,001,51001,741,366,19029493,18425723,741,366,19029493,18425723,33164,21002,3392983302,1164189289,100,100,100,100,2.23,1.74,0.56,1.58
-23304,51,093,51093,71,37,678272,470952,71,37,678272,470952,35270,14633,939720830,817432028,100,100,100,100,0.2,0.25,0.07,0.06
-23306,51,001,51001,1088,523,46266241,37765473,1088,523,46266241,37765473,33164,21002,3392983302,1164189289,100,100,100,100,3.28,2.49,1.36,3.24
-23307,51,131,51131,769,391,20471352,20180527,769,391,20471352,20180527,12389,7301,2059685295,548073024,100,100,100,100,6.21,5.36,0.99,3.68
-23308,51,001,51001,2106,955,143796369,85475065,2106,955,143796369,85475065,33164,21002,3392983302,1164189289,100,100,100,100,6.35,4.55,4.24,7.34
-23310,51,131,51131,4736,2955,179568435,155544834,4736,2955,179568435,155544834,12389,7301,2059685295,548073024,100,100,100,100,38.23,40.47,8.72,28.38
-23313,51,131,51131,78,45,3260795,3172322,78,45,3260795,3172322,12389,7301,2059685295,548073024,100,100,100,100,0.63,0.62,0.16,0.58
-23314,51,093,51093,6991,2919,92525579,49593721,6991,2919,92525579,49593721,35270,14633,939720830,817432028,100,100,100,100,19.82,19.95,9.85,6.07
-23315,51,093,51093,1525,674,76014795,75495164,1525,674,76014795,75495164,35270,14633,939720830,817432028,100,100,100,100,4.32,4.61,8.09,9.24
-23316,51,131,51131,342,171,4694123,3622473,342,171,4694123,3622473,12389,7301,2059685295,548073024,100,100,100,100,2.76,2.34,0.23,0.66
-23320,51,550,51550,51797,21820,87494344,84467231,51797,21820,87494344,84467231,222209,83196,908722010,882669156,100,100,100,100,23.31,26.23,9.63,9.57
-23321,51,550,51550,33590,12598,69460916,68177302,33653,12619,69489808,68206194,222209,83196,908722010,882669156,99.81,99.83,99.96,99.96,15.12,15.14,7.64,7.72
-23321,51,800,51800,63,21,28892,28892,33653,12619,69489808,68206194,84585,33035,1111338608,1036429624,0.19,0.17,0.04,0.04,0.07,0.06,0,0
-23322,51,550,51550,60473,19878,394530616,390590521,60473,19878,394530616,390590521,222209,83196,908722010,882669156,100,100,100,100,27.21,23.89,43.42,44.25
-23323,51,550,51550,35906,12548,326892964,312217201,35906,12548,326892964,312217201,222209,83196,908722010,882669156,100,100,100,100,16.16,15.08,35.97,35.37
-23324,51,550,51550,22851,9259,19136732,17304420,22851,9259,19136732,17304420,222209,83196,908722010,882669156,100,100,100,100,10.28,11.13,2.11,1.96
-23325,51,550,51550,17592,7093,11206438,9912481,17592,7093,11206438,9912481,222209,83196,908722010,882669156,100,100,100,100,7.92,8.53,1.23,1.12
-23336,51,001,51001,2941,4519,126190486,50017669,2941,4519,126190486,50017669,33164,21002,3392983302,1164189289,100,100,100,100,8.87,21.52,3.72,4.3
-23337,51,001,51001,377,199,4901564,4727251,377,199,4901564,4727251,33164,21002,3392983302,1164189289,100,100,100,100,1.14,0.95,0.14,0.41
-23347,51,131,51131,671,365,41635044,30515873,671,365,41635044,30515873,12389,7301,2059685295,548073024,100,100,100,100,5.42,5,2.02,5.57
-23350,51,131,51131,3403,1920,81096335,72426780,3403,1920,81096335,72426780,12389,7301,2059685295,548073024,100,100,100,100,27.47,26.3,3.94,13.21
-23354,51,131,51131,207,109,11289872,8786934,207,109,11289872,8786934,12389,7301,2059685295,548073024,100,100,100,100,1.67,1.49,0.55,1.6
-23356,51,001,51001,1246,996,41000842,9194551,1246,996,41000842,9194551,33164,21002,3392983302,1164189289,100,100,100,100,3.76,4.74,1.21,0.79
-23357,51,001,51001,776,316,16274584,16125199,776,316,16274584,16125199,33164,21002,3392983302,1164189289,100,100,100,100,2.34,1.5,0.48,1.39
-23358,51,001,51001,152,119,23080623,14412743,152,119,23080623,14412743,33164,21002,3392983302,1164189289,100,100,100,100,0.46,0.57,0.68,1.24
-23359,51,001,51001,776,374,38865104,38751873,776,374,38865104,38751873,33164,21002,3392983302,1164189289,100,100,100,100,2.34,1.78,1.15,3.33
-23389,51,001,51001,137,103,1882968,1504845,137,103,1882968,1504845,33164,21002,3392983302,1164189289,100,100,100,100,0.41,0.49,0.06,0.13
-23395,51,001,51001,645,1177,34942242,33159805,645,1177,34942242,33159805,33164,21002,3392983302,1164189289,100,100,100,100,1.94,5.6,1.03,2.85
-23398,51,131,51131,153,144,13592092,10398415,153,144,13592092,10398415,12389,7301,2059685295,548073024,100,100,100,100,1.23,1.97,0.66,1.9
-23401,51,001,51001,212,112,5812909,5812909,212,112,5812909,5812909,33164,21002,3392983302,1164189289,100,100,100,100,0.64,0.53,0.17,0.5
-23405,51,131,51131,973,605,93255181,70720760,973,605,93255181,70720760,12389,7301,2059685295,548073024,100,100,100,100,7.85,8.29,4.53,12.9
-23407,51,001,51001,411,166,16826783,16359165,411,166,16826783,16359165,33164,21002,3392983302,1164189289,100,100,100,100,1.24,0.79,0.5,1.41
-23408,51,131,51131,77,48,4754221,4720356,77,48,4754221,4720356,12389,7301,2059685295,548073024,100,100,100,100,0.62,0.66,0.23,0.86
-23409,51,001,51001,84,49,24031407,21006112,84,49,24031407,21006112,33164,21002,3392983302,1164189289,100,100,100,100,0.25,0.23,0.71,1.8
-23410,51,001,51001,2015,997,76935628,74934072,2015,997,76935628,74934072,33164,21002,3392983302,1164189289,100,100,100,100,6.08,4.75,2.27,6.44
-23413,51,131,51131,840,462,35255343,32647917,840,462,35255343,32647917,12389,7301,2059685295,548073024,100,100,100,100,6.78,6.33,1.71,5.96
-23414,51,001,51001,100,46,3774456,3766302,100,46,3774456,3766302,33164,21002,3392983302,1164189289,100,100,100,100,0.3,0.22,0.11,0.32
-23415,51,001,51001,1893,937,78410324,76578183,1893,937,78410324,76578183,33164,21002,3392983302,1164189289,100,100,100,100,5.71,4.46,2.31,6.58
-23416,51,001,51001,356,169,14099875,14099875,356,169,14099875,14099875,33164,21002,3392983302,1164189289,100,100,100,100,1.07,0.8,0.42,1.21
-23417,51,001,51001,4047,2352,230444399,127796304,4047,2352,230444399,127796304,33164,21002,3392983302,1164189289,100,100,100,100,12.2,11.2,6.79,10.98
-23418,51,001,51001,863,465,26470571,25824321,863,465,26470571,25824321,33164,21002,3392983302,1164189289,100,100,100,100,2.6,2.21,0.78,2.22
-23420,51,001,51001,2376,1172,95551423,83980981,2376,1172,95551423,83980981,33164,21002,3392983302,1164189289,100,100,100,100,7.16,5.58,2.82,7.21
-23421,51,001,51001,4255,1965,98052391,83707362,4255,1965,98052391,83707362,33164,21002,3392983302,1164189289,100,100,100,100,12.83,9.36,2.89,7.19
-23422,51,001,51001,278,142,11294723,10822531,278,142,11294723,10822531,33164,21002,3392983302,1164189289,100,100,100,100,0.84,0.68,0.33,0.93
-23423,51,001,51001,344,265,173476651,88097659,344,265,173476651,88097659,33164,21002,3392983302,1164189289,100,100,100,100,1.04,1.26,5.11,7.57
-23426,51,001,51001,225,133,17969555,13478987,225,133,17969555,13478987,33164,21002,3392983302,1164189289,100,100,100,100,0.68,0.63,0.53,1.16
-23427,51,001,51001,243,181,49220855,12991465,243,181,49220855,12991465,33164,21002,3392983302,1164189289,100,100,100,100,0.73,0.86,1.45,1.12
-23430,51,093,51093,17281,7104,331124268,260403273,17281,7104,331124268,260403273,35270,14633,939720830,817432028,100,100,100,100,49,48.55,35.24,31.86
-23432,51,800,51800,1538,669,39669134,34273725,1538,669,39669134,34273725,84585,33035,1111338608,1036429624,100,100,100,100,1.82,2.03,3.57,3.31
-23433,51,800,51800,1218,543,19696393,4401701,1218,543,19696393,4401701,84585,33035,1111338608,1036429624,100,100,100,100,1.44,1.64,1.77,0.42
-23434,51,800,51800,47670,18973,548033350,526811515,47670,18973,548033350,526811515,84585,33035,1111338608,1036429624,100,100,100,100,56.36,57.43,49.31,50.83
-23435,51,800,51800,27053,9937,128483192,102435681,27053,9937,128483192,102435681,84585,33035,1111338608,1036429624,100,100,100,100,31.98,30.08,11.56,9.88
-23436,51,800,51800,942,382,6712229,4087121,942,382,6712229,4087121,84585,33035,1111338608,1036429624,100,100,100,100,1.11,1.16,0.6,0.39
-23437,51,800,51800,4283,1777,262361367,258036938,4283,1777,262361367,258036938,84585,33035,1111338608,1036429624,100,100,100,100,5.06,5.38,23.61,24.9
-23438,51,800,51800,1818,733,106354051,106354051,1818,733,106354051,106354051,84585,33035,1111338608,1036429624,100,100,100,100,2.15,2.22,9.57,10.26
-23440,51,001,51001,727,377,6382487,4629052,727,377,6382487,4629052,33164,21002,3392983302,1164189289,100,100,100,100,2.19,1.8,0.19,0.4
-23441,51,001,51001,171,80,1607058,1607058,171,80,1607058,1607058,33164,21002,3392983302,1164189289,100,100,100,100,0.52,0.38,0.05,0.14
-23442,51,001,51001,1059,496,34724614,34581394,1059,496,34724614,34581394,33164,21002,3392983302,1164189289,100,100,100,100,3.19,2.36,1.02,2.97
-23451,51,810,51810,41544,23513,53713485,47651742,41544,23513,53713485,47651742,437994,177879,1288099134,644948896,100,100,100,100,9.49,13.22,4.17,7.39
-23452,51,810,51810,59321,23662,44194664,37917640,59321,23662,44194664,37917640,437994,177879,1288099134,644948896,100,100,100,100,13.54,13.3,3.43,5.88
-23453,51,810,51810,35960,12701,24029232,23841380,35960,12701,24029232,23841380,437994,177879,1288099134,644948896,100,100,100,100,8.21,7.14,1.87,3.7
-23454,51,810,51810,60283,24246,87896730,79273283,60283,24246,87896730,79273283,437994,177879,1288099134,644948896,100,100,100,100,13.76,13.63,6.82,12.29
-23455,51,810,51810,47938,20439,50172008,41758611,47938,20439,50172008,41758611,437994,177879,1288099134,644948896,100,100,100,100,10.94,11.49,3.9,6.47
-23456,51,810,51810,51748,18247,138680562,131040728,51748,18247,138680562,131040728,437994,177879,1288099134,644948896,100,100,100,100,11.81,10.26,10.77,20.32
-23457,51,810,51810,4289,1656,264806232,176838245,4289,1656,264806232,176838245,437994,177879,1288099134,644948896,100,100,100,100,0.98,0.93,20.56,27.42
-23459,51,810,51810,1091,270,3533561,3533561,1091,270,3533561,3533561,437994,177879,1288099134,644948896,100,100,100,100,0.25,0.15,0.27,0.55
-23460,51,810,51810,1201,0,562519,562519,1201,0,562519,562519,437994,177879,1288099134,644948896,100,0,100,100,0.27,0,0.04,0.09
-23461,51,810,51810,287,0,157396,157396,287,0,157396,157396,437994,177879,1288099134,644948896,100,0,100,100,0.07,0,0.01,0.02
-23462,51,810,51810,61973,26087,31068900,30327788,61973,26087,31068900,30327788,437994,177879,1288099134,644948896,100,100,100,100,14.15,14.67,2.41,4.7
-23464,51,810,51810,72359,27058,46217987,43436767,72359,27058,46217987,43436767,437994,177879,1288099134,644948896,100,100,100,100,16.52,15.21,3.59,6.73
-23480,51,001,51001,328,286,5148430,5001165,328,286,5148430,5001165,33164,21002,3392983302,1164189289,100,100,100,100,0.99,1.36,0.15,0.43
-23486,51,131,51131,140,81,1193573,1001782,140,81,1193573,1001782,12389,7301,2059685295,548073024,100,100,100,100,1.13,1.11,0.06,0.18
-23487,51,093,51093,6298,2579,247379439,243727918,6298,2579,247379439,243727918,35270,14633,939720830,817432028,100,100,100,100,17.86,17.62,26.32,29.82
-23488,51,001,51001,201,90,21430271,18836359,201,90,21430271,18836359,33164,21002,3392983302,1164189289,100,100,100,100,0.61,0.43,0.63,1.62
-23502,51,710,51710,20678,8440,28403324,26178732,20678,8440,28403324,26178732,242803,95018,249548292,140171293,100,100,100,100,8.52,8.88,11.38,18.68
-23503,51,710,51710,30856,15006,19955619,13392436,30856,15006,19955619,13392436,242803,95018,249548292,140171293,100,100,100,100,12.71,15.79,8,9.55
-23504,51,710,51710,23483,8789,11645142,10749172,23483,8789,11645142,10749172,242803,95018,249548292,140171293,100,100,100,100,9.67,9.25,4.67,7.67
-23505,51,710,51710,28503,13097,19225135,16624796,28503,13097,19225135,16624796,242803,95018,249548292,140171293,100,100,100,100,11.74,13.78,7.7,11.86
-23507,51,710,51710,25818,3535,2570953,2300013,25818,3535,2570953,2300013,242803,95018,249548292,140171293,100,100,100,100,10.63,3.72,1.03,1.64
-23508,51,710,51710,20263,6696,14613472,9113420,20263,6696,14613472,9113420,242803,95018,249548292,140171293,100,100,100,100,8.35,7.05,5.86,6.5
-23509,51,710,51710,12817,5459,7638304,6649454,12817,5459,7638304,6649454,242803,95018,249548292,140171293,100,100,100,100,5.28,5.75,3.06,4.74
-23510,51,710,51710,7031,3557,3922144,2913325,7031,3557,3922144,2913325,242803,95018,249548292,140171293,100,100,100,100,2.9,3.74,1.57,2.08
-23511,51,710,51710,2457,141,21802603,14240854,2457,141,21802603,14240854,242803,95018,249548292,140171293,100,100,100,100,1.01,0.15,8.74,10.16
-23513,51,710,51710,29595,12341,13297095,13297095,29595,12341,13297095,13297095,242803,95018,249548292,140171293,100,100,100,100,12.19,12.99,5.33,9.49
-23517,51,710,51710,4484,2502,2067449,2067449,4484,2502,2067449,2067449,242803,95018,249548292,140171293,100,100,100,100,1.85,2.63,0.83,1.47
-23518,51,710,51710,28095,12581,18075919,16171981,28095,12581,18075919,16171981,242803,95018,249548292,140171293,100,100,100,100,11.57,13.24,7.24,11.54
-23523,51,710,51710,7793,2874,7529181,5597063,7793,2874,7529181,5597063,242803,95018,249548292,140171293,100,100,100,100,3.21,3.02,3.02,3.99
-23551,51,710,51710,930,0,875503,875503,930,0,875503,875503,242803,95018,249548292,140171293,100,0,100,100,0.38,0,0.35,0.62
-23601,51,700,51700,25127,11500,41719409,19354371,25127,11500,41719409,19354371,180719,76198,309443889,177967764,100,100,100,100,13.9,15.09,13.48,10.88
-23602,51,199,51199,94,48,91864,91864,39676,16806,37072909,34597719,65464,26849,556739753,271379438,0.24,0.29,0.25,0.27,0.14,0.18,0.02,0.03
-23602,51,700,51700,39582,16758,36981045,34505855,39676,16806,37072909,34597719,180719,76198,309443889,177967764,99.76,99.71,99.75,99.73,21.9,21.99,11.95,19.39
-23603,51,199,51199,560,77,1160429,1160429,3899,1499,19697432,18758267,65464,26849,556739753,271379438,14.36,5.14,5.89,6.19,0.86,0.29,0.21,0.43
-23603,51,700,51700,3339,1422,18537003,17597838,3899,1499,19697432,18758267,180719,76198,309443889,177967764,85.64,94.86,94.11,93.81,1.85,1.87,5.99,9.89
-23604,51,700,51700,5720,899,34955044,31356474,5720,899,34955044,31356474,180719,76198,309443889,177967764,100,100,100,100,3.17,1.18,11.3,17.62
-23605,51,650,51650,3622,1669,1668790,1661052,13854,6683,9738794,9731056,137436,59566,353013196,133160054,26.14,24.97,17.14,17.07,2.64,2.8,0.47,1.25
-23605,51,700,51700,10232,5014,8070004,8070004,13854,6683,9738794,9731056,180719,76198,309443889,177967764,73.86,75.03,82.86,82.93,5.66,6.58,2.61,4.53
-23606,51,700,51700,29283,12297,51460619,24275625,29283,12297,51460619,24275625,180719,76198,309443889,177967764,100,100,100,100,16.2,16.14,16.63,13.64
-23607,51,700,51700,24519,10689,56062975,15085852,24519,10689,56062975,15085852,180719,76198,309443889,177967764,100,100,100,100,13.57,14.03,18.12,8.48
-23608,51,700,51700,42917,17619,28278425,27721745,42917,17619,28278425,27721745,180719,76198,309443889,177967764,100,100,100,100,23.75,23.12,9.14,15.58
-23651,51,650,51650,696,329,7735940,1987424,696,329,7735940,1987424,137436,59566,353013196,133160054,100,100,100,100,0.51,0.55,2.19,1.49
-23661,51,650,51650,14113,6337,12239726,12171471,14113,6337,12239726,12171471,137436,59566,353013196,133160054,100,100,100,100,10.27,10.64,3.47,9.14
-23662,51,735,51735,12150,4726,57457692,39669842,12150,4726,57457692,39669842,12150,4726,203121542,39669842,100,100,100,100,100,100,28.29,100
-23663,51,650,51650,14495,5837,8085967,7196095,14495,5837,8085967,7196095,137436,59566,353013196,133160054,100,100,100,100,10.55,9.8,2.29,5.4
-23664,51,650,51650,10194,4799,21096052,13540727,10194,4799,21096052,13540727,137436,59566,353013196,133160054,100,100,100,100,7.42,8.06,5.98,10.17
-23665,51,199,51199,3777,1217,1485933,1268610,5120,1466,19816502,14334885,65464,26849,556739753,271379438,73.77,83.02,7.5,8.85,5.77,4.53,0.27,0.47
-23665,51,650,51650,1343,249,18330569,13066275,5120,1466,19816502,14334885,137436,59566,353013196,133160054,26.23,16.98,92.5,91.15,0.98,0.42,5.19,9.81
-23666,51,650,51650,49825,22464,53179083,51259800,49825,22464,53179083,51259800,137436,59566,353013196,133160054,100,100,100,100,36.25,37.71,15.06,38.49
-23669,51,650,51650,43148,17882,37502128,32277210,43148,17882,37502128,32277210,137436,59566,353013196,133160054,100,100,100,100,31.39,30.02,10.62,24.24
-23690,51,199,51199,3032,1176,24551724,19643435,3032,1176,24551724,19643435,65464,26849,556739753,271379438,100,100,100,100,4.63,4.38,4.41,7.24
-23691,51,199,51199,127,35,5013947,4727685,127,35,5013947,4727685,65464,26849,556739753,271379438,100,100,100,100,0.19,0.13,0.9,1.74
-23692,51,199,51199,18846,7824,83087705,59070108,18846,7824,83087705,59070108,65464,26849,556739753,271379438,100,100,100,100,28.79,29.14,14.92,21.77
-23693,51,199,51199,23292,8745,37142025,35020571,23292,8745,37142025,35020571,65464,26849,556739753,271379438,100,100,100,100,35.58,32.57,6.67,12.9
-23696,51,199,51199,3669,1481,19774092,14542700,3669,1481,19774092,14542700,65464,26849,556739753,271379438,100,100,100,100,5.6,5.52,3.55,5.36
-23701,51,740,51740,25161,10336,21461111,19583028,25161,10336,21461111,19583028,95535,40806,121036206,87159966,100,100,100,100,26.34,25.33,17.73,22.47
-23702,51,740,51740,11424,4954,6603766,6558890,11424,4954,6603766,6558890,95535,40806,121036206,87159966,100,100,100,100,11.96,12.14,5.46,7.53
-23703,51,740,51740,25739,10536,62189626,36651966,25739,10536,62189626,36651966,95535,40806,121036206,87159966,100,100,100,100,26.94,25.82,51.38,42.05
-23704,51,740,51740,18716,8682,15060286,13103745,18716,8682,15060286,13103745,95535,40806,121036206,87159966,100,100,100,100,19.59,21.28,12.44,15.03
-23707,51,740,51740,14236,6298,14258192,10441673,14236,6298,14258192,10441673,95535,40806,121036206,87159966,100,100,100,100,14.9,15.43,11.78,11.98
-23708,51,740,51740,181,0,1069956,427395,181,0,1069956,427395,95535,40806,121036206,87159966,100,0,100,100,0.19,0,0.88,0.49
-23709,51,740,51740,78,0,393269,393269,78,0,393269,393269,95535,40806,121036206,87159966,100,0,100,100,0.08,0,0.32,0.45
-23801,51,149,51149,3393,866,16380888,16380888,3393,866,16380888,16380888,35725,12056,729964280,686749234,100,100,100,100,9.5,7.18,2.24,2.39
-23803,51,041,51041,10711,4197,80654360,77191615,40542,18437,191837721,187057519,316236,122555,1131707103,1096334108,26.42,22.76,42.04,41.27,3.39,3.42,7.13,7.04
-23803,51,053,51053,10560,4137,83531894,82583722,40542,18437,191837721,187057519,28001,11422,1313620672,1304619086,26.05,22.44,43.54,44.15,37.71,36.22,6.36,6.33
-23803,51,730,51730,19271,10103,27651467,27282182,40542,18437,191837721,187057519,32420,16326,60030702,59393052,47.53,54.8,14.41,14.58,59.44,61.88,46.06,45.93
-23805,51,053,51053,1901,721,80536300,80494938,19490,8723,190822590,189853579,28001,11422,1313620672,1304619086,9.75,8.27,42.2,42.4,6.79,6.31,6.13,6.17
-23805,51,149,51149,4440,1779,77907055,77247771,19490,8723,190822590,189853579,35725,12056,729964280,686749234,22.78,20.39,40.83,40.69,12.43,14.76,10.67,11.25
-23805,51,730,51730,13149,6223,32379235,32110870,19490,8723,190822590,189853579,32420,16326,60030702,59393052,67.47,71.34,16.97,16.91,40.56,38.12,53.94,54.07
-23806,51,041,51041,2251,1,431312,431312,2251,1,431312,431312,316236,122555,1131707103,1096334108,100,100,100,100,0.71,0,0.04,0.04
-23821,51,025,51025,1597,820,168465000,168205899,1597,820,168465000,168205899,17434,8166,1474699562,1466381601,100,100,100,100,9.16,10.04,11.42,11.47
-23824,51,025,51025,224,126,40895694,39865621,7214,3374,462463634,458728087,17434,8166,1474699562,1466381601,3.11,3.73,8.84,8.69,1.28,1.54,2.77,2.72
-23824,51,053,51053,94,46,13133852,13133852,7214,3374,462463634,458728087,28001,11422,1313620672,1304619086,1.3,1.36,2.84,2.86,0.34,0.4,1,1.01
-23824,51,111,51111,54,33,11818842,11800559,7214,3374,462463634,458728087,12914,5935,1119849326,1118054299,0.75,0.98,2.56,2.57,0.42,0.56,1.06,1.06
-23824,51,135,51135,6842,3169,396615246,393928055,7214,3374,462463634,458728087,15853,6650,818563487,814271729,94.84,93.92,85.76,85.87,43.16,47.65,48.45,48.38
-23827,51,175,51175,1443,681,133140203,132947772,1443,681,133140203,132947772,18570,7473,1560025370,1551777074,100,100,100,100,7.77,9.11,8.53,8.57
-23828,51,175,51175,395,180,91615024,91519492,395,180,91615024,91519492,18570,7473,1560025370,1551777074,100,100,100,100,2.13,2.41,5.87,5.9
-23829,51,175,51175,2622,541,212770607,211952323,2622,541,212770607,211952323,18570,7473,1560025370,1551777074,100,100,100,100,14.12,7.24,13.64,13.66
-23830,51,053,51053,600,263,61534684,61407302,1491,638,121020906,120524744,28001,11422,1313620672,1304619086,40.24,41.22,50.85,50.95,2.14,2.3,4.68,4.71
-23830,51,149,51149,656,263,25863802,25615085,1491,638,121020906,120524744,35725,12056,729964280,686749234,44,41.22,21.37,21.25,1.84,2.18,3.54,3.73
-23830,51,183,51183,235,112,33622420,33502357,1491,638,121020906,120524744,12087,4696,1276419517,1269664203,15.76,17.55,27.78,27.8,1.94,2.39,2.63,2.64
-23831,51,041,51041,33079,13140,62965112,62332748,33079,13140,62965112,62332748,316236,122555,1131707103,1096334108,100,100,100,100,10.46,10.72,5.56,5.69
-23832,51,041,51041,33739,11953,103402335,102252358,33739,11953,103402335,102252358,316236,122555,1131707103,1096334108,100,100,100,100,10.67,9.75,9.14,9.33
-23833,51,007,51007,171,77,33279710,30661531,2297,970,153193583,147945456,12690,5359,928567434,920142596,7.44,7.94,21.72,20.72,1.35,1.44,3.58,3.33
-23833,51,053,51053,2126,893,119913873,117283925,2297,970,153193583,147945456,28001,11422,1313620672,1304619086,92.56,92.06,78.28,79.28,7.59,7.82,9.13,8.99
-23834,51,041,51041,8201,3103,40348121,39010645,25612,10934,60581664,58486879,316236,122555,1131707103,1096334108,32.02,28.38,66.6,66.7,2.59,2.53,3.57,3.56
-23834,51,570,51570,17411,7831,20233543,19476234,25612,10934,60581664,58486879,17411,7831,20233543,19476234,67.98,71.62,33.4,33.3,100,100,100,100
-23836,51,041,51041,11444,4674,70789353,65582986,11444,4674,70789353,65582986,316236,122555,1131707103,1096334108,100,100,100,100,3.62,3.81,6.26,5.98
-23837,51,175,51175,4234,1785,266331726,265112369,4298,1817,276063569,274844212,18570,7473,1560025370,1551777074,98.51,98.24,96.47,96.46,22.8,23.89,17.07,17.08
-23837,51,183,51183,64,32,9731843,9731843,4298,1817,276063569,274844212,12087,4696,1276419517,1269664203,1.49,1.76,3.53,3.54,0.53,0.68,0.76,0.77
-23838,51,041,51041,15341,5586,265588635,258831440,15341,5586,265588635,258831440,316236,122555,1131707103,1096334108,100,100,100,100,4.85,4.56,23.47,23.61
-23839,51,181,51181,741,347,64957740,64837990,741,347,64957740,64837990,7058,3444,803692722,722475771,100,100,100,100,10.5,10.08,8.08,8.97
-23840,51,053,51053,1858,754,123832043,123661919,1858,754,123832043,123661919,28001,11422,1313620672,1304619086,100,100,100,100,6.64,6.6,9.43,9.48
-23841,51,053,51053,3479,1440,190034762,189417672,3479,1440,190034762,189417672,28001,11422,1313620672,1304619086,100,100,100,100,12.42,12.61,14.47,14.52
-23842,51,149,51149,6467,2525,279352760,277730861,6906,2746,340636217,338134706,35725,12056,729964280,686749234,93.64,91.95,82.01,82.14,18.1,20.94,38.27,40.44
-23842,51,181,51181,32,24,15482245,14807756,6906,2746,340636217,338134706,7058,3444,803692722,722475771,0.46,0.87,4.55,4.38,0.45,0.7,1.93,2.05
-23842,51,183,51183,407,197,45801212,45596089,6906,2746,340636217,338134706,12087,4696,1276419517,1269664203,5.89,7.17,13.45,13.48,3.37,4.2,3.59,3.59
-23843,51,025,51025,654,354,76359433,76240960,654,354,76359433,76240960,17434,8166,1474699562,1466381601,100,100,100,100,3.75,4.34,5.18,5.2
-23844,51,175,51175,788,364,117482822,116906568,788,364,117482822,116906568,18570,7473,1560025370,1551777074,100,100,100,100,4.24,4.87,7.53,7.53
-23845,51,025,51025,356,253,35813690,35360099,356,253,35813690,35360099,17434,8166,1474699562,1466381601,100,100,100,100,2.04,3.1,2.43,2.41
-23846,51,181,51181,933,397,111475732,110889193,933,397,111475732,110889193,7058,3444,803692722,722475771,100,100,100,100,13.22,11.53,13.87,15.35
-23847,51,025,51025,424,214,50386988,50355432,16962,6092,731690336,727787101,17434,8166,1474699562,1466381601,2.5,3.51,6.89,6.92,2.43,2.62,3.42,3.43
-23847,51,081,51081,10280,3162,579538720,575986325,16962,6092,731690336,727787101,12243,4090,768726462,764632769,60.61,51.9,79.21,79.14,83.97,77.31,75.39,75.33
-23847,51,175,51175,212,94,51322076,51294051,16962,6092,731690336,727787101,18570,7473,1560025370,1551777074,1.25,1.54,7.01,7.05,1.14,1.26,3.29,3.31
-23847,51,183,51183,119,57,32395846,32296386,16962,6092,731690336,727787101,12087,4696,1276419517,1269664203,0.7,0.94,4.43,4.44,0.98,1.21,2.54,2.54
-23847,51,595,51595,5927,2565,18046706,17854907,16962,6092,731690336,727787101,5927,2565,18046706,17854907,34.94,42.1,2.47,2.45,100,100,100,100
-23850,51,007,51007,241,119,54459341,54179973,1051,477,130548670,129985260,12690,5359,928567434,920142596,22.93,24.95,41.72,41.68,1.9,2.22,5.86,5.89
-23850,51,053,51053,810,358,76089329,75805287,1051,477,130548670,129985260,28001,11422,1313620672,1304619086,77.07,75.05,58.28,58.32,2.89,3.13,5.79,5.81
-23851,51,093,51093,1160,516,43172728,41273793,13715,6088,282003092,276466475,35270,14633,939720830,817432028,8.46,8.48,15.31,14.93,3.29,3.53,4.59,5.05
-23851,51,175,51175,3973,1671,217207650,213939798,13715,6088,282003092,276466475,18570,7473,1560025370,1551777074,28.97,27.45,77.02,77.38,21.39,22.36,13.92,13.79
-23851,51,620,51620,8582,3901,21622714,21252884,13715,6088,282003092,276466475,8582,3901,21622714,21252884,62.57,64.08,7.67,7.69,100,100,100,100
-23856,51,025,51025,994,509,115075901,114405789,1033,529,121518112,120838761,17434,8166,1474699562,1466381601,96.22,96.22,94.7,94.68,5.7,6.23,7.8,7.8
-23856,51,081,51081,39,20,6442211,6432972,1033,529,121518112,120838761,12243,4090,768726462,764632769,3.78,3.78,5.3,5.32,0.32,0.49,0.84,0.84
-23857,51,025,51025,525,388,39880204,38936391,525,388,39880204,38936391,17434,8166,1474699562,1466381601,100,100,100,100,3.01,4.75,2.7,2.66
-23860,51,149,51149,9379,1929,128036495,103843150,31970,12050,156014033,130463654,35725,12056,729964280,686749234,29.34,16.01,82.07,79.6,26.25,16,17.54,15.12
-23860,51,670,51670,22591,10121,27977538,26620504,31970,12050,156014033,130463654,22591,10121,27977538,26620504,70.66,83.99,17.93,20.4,100,100,100,100
-23866,51,093,51093,487,220,81898822,80078129,2237,977,228094225,225484817,35270,14633,939720830,817432028,21.77,22.52,35.91,35.51,1.38,1.5,8.72,9.8
-23866,51,175,51175,1750,757,146195403,145406688,2237,977,228094225,225484817,18570,7473,1560025370,1551777074,78.23,77.48,64.09,64.49,9.42,10.13,9.37,9.37
-23867,51,081,51081,1245,564,95208977,94992801,2189,1089,239939565,239024545,12243,4090,768726462,764632769,56.88,51.79,39.68,39.74,10.17,13.79,12.39,12.42
-23867,51,183,51183,944,525,144730588,144031744,2189,1089,239939565,239024545,12087,4696,1276419517,1269664203,43.12,48.21,60.32,60.26,7.81,11.18,11.34,11.34
-23868,51,025,51025,7367,2503,314582727,314080723,7367,2503,314582727,314080723,17434,8166,1474699562,1466381601,100,100,100,100,42.26,30.65,21.33,21.42
-23872,51,053,51053,2376,1038,248747701,248531101,2376,1038,248747701,248531101,28001,11422,1313620672,1304619086,100,100,100,100,8.49,9.09,18.94,19.05
-23874,51,175,51175,1004,463,104055874,103931626,1004,463,104055874,103931626,18570,7473,1560025370,1551777074,100,100,100,100,5.41,6.2,6.67,6.7
-23875,51,149,51149,10878,4477,92156895,90940482,10878,4477,92156895,90940482,35725,12056,729964280,686749234,100,100,100,100,30.45,37.14,12.62,13.24
-23876,51,025,51025,456,237,93183784,93051886,456,237,93183784,93051886,17434,8166,1474699562,1466381601,100,100,100,100,2.62,2.9,6.32,6.35
-23878,51,175,51175,1118,502,102849962,102095845,1118,502,102849962,102095845,18570,7473,1560025370,1551777074,100,100,100,100,6.02,6.72,6.59,6.58
-23879,51,081,51081,679,344,87536554,87220671,679,344,87536554,87220671,12243,4090,768726462,764632769,100,100,100,100,5.55,8.41,11.39,11.41
-23881,51,149,51149,512,217,110266385,94990997,2176,1096,353583963,309808917,35725,12056,729964280,686749234,23.53,19.8,31.19,30.66,1.43,1.8,15.11,13.83
-23881,51,181,51181,1664,879,243317578,214817920,2176,1096,353583963,309808917,7058,3444,803692722,722475771,76.47,80.2,68.81,69.34,23.58,25.52,30.27,29.73
-23882,51,053,51053,717,333,88562050,88117377,2516,1232,416982755,415080534,28001,11422,1313620672,1304619086,28.5,27.03,21.24,21.23,2.56,2.92,6.74,6.75
-23882,51,183,51183,1799,899,328420705,326963157,2516,1232,416982755,415080534,12087,4696,1276419517,1269664203,71.5,72.97,78.76,78.77,14.88,19.14,25.73,25.75
-23883,51,181,51181,2551,1227,195277169,148005519,2551,1227,195277169,148005519,7058,3444,803692722,722475771,100,100,100,100,36.14,35.63,24.3,20.49
-23884,51,183,51183,93,6,917010,917010,93,6,917010,917010,12087,4696,1276419517,1269664203,100,100,100,100,0.77,0.13,0.07,0.07
-23885,51,053,51053,2807,1138,90800311,87893350,2807,1138,90800311,87893350,28001,11422,1313620672,1304619086,100,100,100,100,10.02,9.96,6.91,6.74
-23887,51,025,51025,574,611,55358079,52880790,574,611,55358079,52880790,17434,8166,1474699562,1466381601,100,100,100,100,3.29,7.48,3.75,3.61
-23888,51,175,51175,265,122,54613230,54522272,2275,1093,227152192,225824991,18570,7473,1560025370,1551777074,11.65,11.16,24.04,24.14,1.43,1.63,3.5,3.51
-23888,51,181,51181,241,123,62164928,62043834,2275,1093,227152192,225824991,7058,3444,803692722,722475771,10.59,11.25,27.37,27.47,3.41,3.57,7.73,8.59
-23888,51,183,51183,1769,848,110374034,109258885,2275,1093,227152192,225824991,12087,4696,1276419517,1269664203,77.76,77.58,48.59,48.38,14.64,18.06,8.65,8.61
-23889,51,025,51025,581,276,87457573,87232081,581,276,87457573,87232081,17434,8166,1474699562,1466381601,100,100,100,100,3.33,3.38,5.93,5.95
-23890,51,181,51181,545,240,100698380,100584791,4249,1946,510585124,508111675,7058,3444,803692722,722475771,12.83,12.33,19.72,19.8,7.72,6.97,12.53,13.92
-23890,51,183,51183,3704,1706,409886744,407526884,4249,1946,510585124,508111675,12087,4696,1276419517,1269664203,87.17,87.67,80.28,80.2,30.64,36.33,32.11,32.1
-23891,51,183,51183,2358,1,5994504,5994504,2358,1,5994504,5994504,12087,4696,1276419517,1269664203,100,100,100,100,19.51,0.02,0.47,0.47
-23893,51,025,51025,454,227,67167595,67086614,454,227,67167595,67086614,17434,8166,1474699562,1466381601,100,100,100,100,2.6,2.78,4.55,4.57
-23894,51,053,51053,673,301,83933339,83786376,673,301,83933339,83786376,28001,11422,1313620672,1304619086,100,100,100,100,2.4,2.64,6.39,6.42
-23897,51,183,51183,595,313,154544611,153845344,595,313,154544611,153845344,12087,4696,1276419517,1269664203,100,100,100,100,4.92,6.67,12.11,12.12
-23898,51,093,51093,1457,584,66926927,66389078,2223,897,129367720,128537348,35270,14633,939720830,817432028,65.54,65.11,51.73,51.65,4.13,3.99,7.12,8.12
-23898,51,175,51175,766,313,62440793,62148270,2223,897,129367720,128537348,18570,7473,1560025370,1551777074,34.46,34.89,48.27,48.35,4.12,4.19,4,4
-23899,51,181,51181,351,207,10318950,6488768,351,207,10318950,6488768,7058,3444,803692722,722475771,100,100,100,100,4.97,6.01,1.28,0.9
-23901,51,029,51029,1077,499,94384643,93733925,16399,6858,525540831,518735927,17146,7244,1511403487,1501304577,6.57,7.28,17.96,18.07,6.28,6.89,6.24,6.24
-23901,51,049,51049,3363,1577,197219197,195443984,16399,6858,525540831,518735927,10052,4626,776351364,770419651,20.51,23,37.53,37.68,33.46,34.09,25.4,25.37
-23901,51,147,51147,11959,4782,233936991,229558018,16399,6858,525540831,518735927,23368,9149,916432881,906392425,72.93,69.73,44.51,44.25,51.18,52.27,25.53,25.33
-23909,51,147,51147,2027,0,99065,99065,2027,0,99065,99065,23368,9149,916432881,906392425,100,0,100,100,8.67,0,0.01,0.01
-23915,51,117,51117,1220,347,85011595,84797987,1220,347,85011595,84797987,32727,18591,1759193072,1619998831,100,100,100,100,3.73,1.87,4.83,5.23
-23917,51,117,51117,3684,1890,350119367,280920386,3684,1890,350119367,280920386,32727,18591,1759193072,1619998831,100,100,100,100,11.26,10.17,19.9,17.34
-23919,51,025,51025,110,110,10148134,8893948,2666,2857,93663246,84561295,17434,8166,1474699562,1466381601,4.13,3.85,10.83,10.52,0.63,1.35,0.69,0.61
-23919,51,117,51117,2556,2747,83515112,75667347,2666,2857,93663246,84561295,32727,18591,1759193072,1619998831,95.87,96.15,89.17,89.48,7.81,14.78,4.75,4.67
-23920,51,025,51025,2557,1246,257980522,257896936,3489,1686,315412668,315290971,17434,8166,1474699562,1466381601,73.29,73.9,81.79,81.8,14.67,15.26,17.49,17.59
-23920,51,111,51111,135,61,18290831,18290831,3489,1686,315412668,315290971,12914,5935,1119849326,1118054299,3.87,3.62,5.8,5.8,1.05,1.03,1.63,1.64
-23920,51,117,51117,797,379,39141315,39103204,3489,1686,315412668,315290971,32727,18591,1759193072,1619998831,22.84,22.48,12.41,12.4,2.44,2.04,2.22,2.41
-23921,51,029,51029,1991,1045,210509586,209303882,1991,1045,210509586,209303882,17146,7244,1511403487,1501304577,100,100,100,100,11.61,14.43,13.93,13.94
-23922,51,135,51135,3250,783,133448952,133174177,3785,1014,176194862,175775470,15853,6650,818563487,814271729,85.87,77.22,75.74,75.76,20.5,11.77,16.3,16.36
-23922,51,147,51147,535,231,42745910,42601293,3785,1014,176194862,175775470,23368,9149,916432881,906392425,14.13,22.78,24.26,24.24,2.29,2.52,4.66,4.7
-23923,51,037,51037,2493,1210,218394586,218101876,2592,1263,230187999,229738607,12586,6273,1236773483,1230945745,96.18,95.8,94.88,94.93,19.81,19.29,17.66,17.72
-23923,51,147,51147,99,53,11793413,11636731,2592,1263,230187999,229738607,23368,9149,916432881,906392425,3.82,4.2,5.12,5.07,0.42,0.58,1.29,1.28
-23924,51,037,51037,120,53,13440846,13381551,6232,3114,356359770,355894300,12586,6273,1236773483,1230945745,1.93,1.7,3.77,3.76,0.95,0.84,1.09,1.09
-23924,51,111,51111,193,118,30883947,30817248,6232,3114,356359770,355894300,12914,5935,1119849326,1118054299,3.1,3.79,8.67,8.66,1.49,1.99,2.76,2.76
-23924,51,117,51117,5919,2943,312034977,311695501,6232,3114,356359770,355894300,32727,18591,1759193072,1619998831,94.98,94.51,87.56,87.58,18.09,15.83,17.74,19.24
-23927,51,117,51117,4381,3330,248760512,195821573,4381,3330,248760512,195821573,32727,18591,1759193072,1619998831,100,100,100,100,13.39,17.91,14.14,12.09
-23930,51,135,51135,5690,2670,278619305,277328284,5690,2670,278619305,277328284,15853,6650,818563487,814271729,100,100,100,100,35.89,40.15,34.04,34.06
-23934,51,037,51037,408,177,44297169,44073355,681,338,93585243,93122438,12586,6273,1236773483,1230945745,59.91,52.37,47.33,47.33,3.24,2.82,3.58,3.58
-23934,51,147,51147,273,161,49288074,49049083,681,338,93585243,93122438,23368,9149,916432881,906392425,40.09,47.63,52.67,52.67,1.17,1.76,5.38,5.41
-23936,51,029,51029,8075,2756,560605486,558096350,8212,2820,568355597,565768045,17146,7244,1511403487,1501304577,98.33,97.73,98.64,98.64,47.1,38.05,37.09,37.17
-23936,51,049,51049,137,64,7750111,7671695,8212,2820,568355597,565768045,10052,4626,776351364,770419651,1.67,2.27,1.36,1.36,1.36,1.38,1,1
-23937,51,037,51037,1754,852,147410436,146769434,1970,974,189455854,188663422,12586,6273,1236773483,1230945745,89.04,87.47,77.81,77.79,13.94,13.58,11.92,11.92
-23937,51,111,51111,216,122,42045418,41893988,1970,974,189455854,188663422,12914,5935,1119849326,1118054299,10.96,12.53,22.19,22.21,1.67,2.06,3.75,3.75
-23938,51,025,51025,269,137,36911057,36855251,407,208,51379984,51244920,17434,8166,1474699562,1466381601,66.09,65.87,71.84,71.92,1.54,1.68,2.5,2.51
-23938,51,111,51111,138,71,14468927,14389669,407,208,51379984,51244920,12914,5935,1119849326,1118054299,33.91,34.13,28.16,28.08,1.07,1.2,1.29,1.29
-23942,51,111,51111,262,145,54706675,54662184,1112,554,153888500,153026760,12914,5935,1119849326,1118054299,23.56,26.17,35.55,35.72,2.03,2.44,4.89,4.89
-23942,51,147,51147,850,409,99181825,98364576,1112,554,153888500,153026760,23368,9149,916432881,906392425,76.44,73.83,64.45,64.28,3.64,4.47,10.82,10.85
-23943,51,147,51147,225,42,704558,690570,225,42,704558,690570,23368,9149,916432881,906392425,100,100,100,100,0.96,0.46,0.08,0.08
-23944,51,111,51111,4261,2134,363366823,362844404,4261,2134,363366823,362844404,12914,5935,1119849326,1118054299,100,100,100,100,33,35.96,32.45,32.45
-23947,51,037,51037,2488,1228,139201934,138676682,4293,2133,346023130,345308266,12586,6273,1236773483,1230945745,57.95,57.57,40.23,40.16,19.77,19.58,11.26,11.27
-23947,51,111,51111,1458,721,168769193,168662590,4293,2133,346023130,345308266,12914,5935,1119849326,1118054299,33.96,33.8,48.77,48.84,11.29,12.15,15.07,15.09
-23947,51,147,51147,347,184,38052003,37968994,4293,2133,346023130,345308266,23368,9149,916432881,906392425,8.08,8.63,11,11,1.48,2.01,4.15,4.19
-23950,51,025,51025,292,155,25033181,25033181,3348,1573,158366731,158161667,17434,8166,1474699562,1466381601,8.72,9.85,15.81,15.83,1.67,1.9,1.7,1.71
-23950,51,117,51117,3056,1418,133333550,133128486,3348,1573,158366731,158161667,32727,18591,1759193072,1619998831,91.28,90.15,84.19,84.17,9.34,7.63,7.58,8.22
-23952,51,111,51111,217,105,34261803,34232250,217,105,34261803,34232250,12914,5935,1119849326,1118054299,100,100,100,100,1.68,1.77,3.06,3.06
-23954,51,111,51111,523,255,57723189,57663540,2017,973,164842749,164598188,12914,5935,1119849326,1118054299,25.93,26.21,35.02,35.03,4.05,4.3,5.15,5.16
-23954,51,147,51147,1494,718,107119560,106934648,2017,973,164842749,164598188,23368,9149,916432881,906392425,74.07,73.79,64.98,64.97,6.39,7.85,11.69,11.8
-23958,51,011,51011,1536,709,116366739,116221331,3170,1536,254300948,253330522,14973,6921,866949083,863744566,48.45,46.16,45.76,45.88,10.26,10.24,13.42,13.46
-23958,51,037,51037,190,96,29016621,29016621,3170,1536,254300948,253330522,12586,6273,1236773483,1230945745,5.99,6.25,11.41,11.45,1.51,1.53,2.35,2.36
-23958,51,147,51147,1444,731,108917588,108092570,3170,1536,254300948,253330522,23368,9149,916432881,906392425,45.55,47.59,42.83,42.67,6.18,7.99,11.88,11.93
-23959,51,037,51037,1264,614,151771236,151726014,1264,614,151771236,151726014,12586,6273,1236773483,1230945745,100,100,100,100,10.04,9.79,12.27,12.33
-23960,51,011,51011,34,19,3046496,3046496,1990,890,111993860,111381937,14973,6921,866949083,863744566,1.71,2.13,2.72,2.74,0.23,0.27,0.35,0.35
-23960,51,147,51147,1956,871,108947364,108335441,1990,890,111993860,111381937,23368,9149,916432881,906392425,98.29,97.87,97.28,97.26,8.37,9.52,11.89,11.95
-23962,51,037,51037,467,250,101033271,99835668,670,342,124259183,122395754,12586,6273,1236773483,1230945745,69.7,73.1,81.31,81.57,3.71,3.99,8.17,8.11
-23962,51,083,51083,203,92,23225912,22560086,670,342,124259183,122395754,36241,18004,2148740960,2118193284,30.3,26.9,18.69,18.43,0.56,0.51,1.08,1.07
-23963,51,011,51011,38,16,2123591,2123591,587,264,56516208,56495512,14973,6921,866949083,863744566,6.47,6.06,3.76,3.76,0.25,0.23,0.24,0.25
-23963,51,031,51031,81,34,14713866,14693170,587,264,56516208,56495512,54842,24769,1313971001,1305008854,13.8,12.88,26.03,26.01,0.15,0.14,1.12,1.13
-23963,51,037,51037,468,214,39678751,39678751,587,264,56516208,56495512,12586,6273,1236773483,1230945745,79.73,81.06,70.21,70.23,3.72,3.41,3.21,3.22
-23964,51,037,51037,1041,560,100357703,98411014,1138,612,116135654,114174496,12586,6273,1236773483,1230945745,91.48,91.5,86.41,86.19,8.27,8.93,8.11,7.99
-23964,51,117,51117,97,52,15777951,15763482,1138,612,116135654,114174496,32727,18591,1759193072,1619998831,8.52,8.5,13.59,13.81,0.3,0.28,0.9,0.97
-23966,51,007,51007,178,80,25315913,25192866,2337,1047,140962443,138254302,12690,5359,928567434,920142596,7.62,7.64,17.96,18.22,1.4,1.49,2.73,2.74
-23966,51,147,51147,2159,967,115646530,113061436,2337,1047,140962443,138254302,23368,9149,916432881,906392425,92.38,92.36,82.04,81.78,9.24,10.57,12.62,12.47
-23967,51,037,51037,1118,581,123037898,122818202,1118,581,123037898,122818202,12586,6273,1236773483,1230945745,100,100,100,100,8.88,9.26,9.95,9.98
-23968,51,117,51117,837,464,82118107,81966746,837,464,82118107,81966746,32727,18591,1759193072,1619998831,100,100,100,100,2.56,2.5,4.67,5.06
-23970,51,111,51111,445,205,68390091,68152425,8254,3918,315011557,314008276,12914,5935,1119849326,1118054299,5.39,5.23,21.71,21.7,3.45,3.45,6.11,6.1
-23970,51,117,51117,7809,3713,246621466,245855851,8254,3918,315011557,314008276,32727,18591,1759193072,1619998831,94.61,94.77,78.29,78.3,23.86,19.97,14.02,15.18
-23974,51,111,51111,5012,1965,255123587,254644611,5012,1965,255123587,254644611,12914,5935,1119849326,1118054299,100,100,100,100,38.81,33.11,22.78,22.78
-23976,51,037,51037,230,137,19952495,19915591,230,137,19952495,19915591,12586,6273,1236773483,1230945745,100,100,100,100,1.83,2.18,1.61,1.62
-24011,51,770,51770,219,153,445644,444735,219,153,445644,444735,97032,47453,111118286,110234185,100,100,100,100,0.23,0.32,0.4,0.4
-24012,51,023,51023,1167,445,12763134,12752943,29015,13586,52984818,52860333,33148,14562,1413902436,1401706839,4.02,3.28,24.09,24.13,3.52,3.06,0.9,0.91
-24012,51,161,51161,6238,2651,11996530,11976724,29015,13586,52984818,52860333,92376,40016,650725489,648838102,21.5,19.51,22.64,22.66,6.75,6.62,1.84,1.85
-24012,51,770,51770,21610,10490,28225154,28130666,29015,13586,52984818,52860333,97032,47453,111118286,110234185,74.48,77.21,53.27,53.22,22.27,22.11,25.4,25.52
-24013,51,770,51770,8684,3609,5976782,5854429,8684,3609,5976782,5854429,97032,47453,111118286,110234185,100,100,100,100,8.95,7.61,5.38,5.31
-24014,51,161,51161,4659,2071,54427510,54074933,16570,8335,74732176,74151426,92376,40016,650725489,648838102,28.12,24.85,72.83,72.93,5.04,5.18,8.36,8.33
-24014,51,770,51770,11911,6264,20304666,20076493,16570,8335,74732176,74151426,97032,47453,111118286,110234185,71.88,75.15,27.17,27.07,12.28,13.2,18.27,18.21
-24015,51,161,51161,249,108,203684,203684,15255,7799,11766614,11667524,92376,40016,650725489,648838102,1.63,1.38,1.73,1.75,0.27,0.27,0.03,0.03
-24015,51,770,51770,15006,7691,11562930,11463840,15255,7799,11766614,11667524,97032,47453,111118286,110234185,98.37,98.62,98.27,98.25,15.47,16.21,10.41,10.4
-24016,51,770,51770,9047,4751,8523040,8409197,9047,4751,8523040,8409197,97032,47453,111118286,110234185,100,100,100,100,9.32,10.01,7.67,7.63
-24017,51,770,51770,23392,10877,23318192,23224281,23392,10877,23318192,23224281,97032,47453,111118286,110234185,100,100,100,100,24.11,22.92,20.99,21.07
-24018,51,161,51161,32786,14827,110774138,110655148,36432,16867,117817839,117608670,92376,40016,650725489,648838102,89.99,87.91,94.02,94.09,35.49,37.05,17.02,17.05
-24018,51,770,51770,3646,2040,6992531,6902352,36432,16867,117817839,117608670,97032,47453,111118286,110234185,10.01,12.09,5.94,5.87,3.76,4.3,6.29,6.26
-24018,51,775,51775,0,0,51170,51170,36432,16867,117817839,117608670,24802,10832,37654062,37390584,0,0,0.04,0.04,0,0,0.14,0.14
-24019,51,023,51023,4149,1640,22797412,22141433,26502,11276,81166972,80114031,33148,14562,1413902436,1401706839,15.66,14.54,28.09,27.64,12.52,11.26,1.61,1.58
-24019,51,161,51161,18836,8058,52600213,52244406,26502,11276,81166972,80114031,92376,40016,650725489,648838102,71.07,71.46,64.8,65.21,20.39,20.14,8.08,8.05
-24019,51,770,51770,3517,1578,5769347,5728192,26502,11276,81166972,80114031,97032,47453,111118286,110234185,13.27,13.99,7.11,7.15,3.62,3.33,5.19,5.2
-24020,51,161,51161,455,34,708517,708517,455,34,708517,708517,92376,40016,650725489,648838102,100,100,100,100,0.49,0.08,0.11,0.11
-24053,51,035,51035,87,48,2141347,2135388,2715,1452,142434358,142321016,30042,16569,1237089412,1229441060,3.2,3.31,1.5,1.5,0.29,0.29,0.17,0.17
-24053,51,141,51141,2628,1404,140293011,140185628,2715,1452,142434358,142321016,18490,10083,1258377638,1251212174,96.8,96.69,98.5,98.5,14.21,13.92,11.15,11.2
-24054,51,089,51089,4841,2253,186378694,185860947,6797,3171,279116957,278575842,54151,26268,995540242,990240760,71.22,71.05,66.77,66.72,8.94,8.58,18.72,18.77
-24054,51,143,51143,1956,918,92738263,92714895,6797,3171,279116957,278575842,63506,31307,2533462228,2509545576,28.78,28.95,33.23,33.28,3.08,2.93,3.66,3.69
-24055,51,067,51067,576,296,24796571,24791835,13674,6652,227231452,225080088,56159,29315,1842901899,1788195297,4.21,4.45,10.91,11.01,1.03,1.01,1.35,1.39
-24055,51,089,51089,12523,6097,181450472,179421074,13674,6652,227231452,225080088,54151,26268,995540242,990240760,91.58,91.66,79.85,79.71,23.13,23.21,18.23,18.12
-24055,51,141,51141,575,259,20984409,20867179,13674,6652,227231452,225080088,18490,10083,1258377638,1251212174,4.21,3.89,9.23,9.27,3.11,2.57,1.67,1.67
-24058,51,155,51155,324,160,6479256,6065190,324,160,6479256,6065190,34872,17235,853643607,828427584,100,100,100,100,0.93,0.93,0.76,0.73
-24059,51,067,51067,32,20,6366609,6364734,872,420,61380485,61294393,56159,29315,1842901899,1788195297,3.67,4.76,10.37,10.38,0.06,0.07,0.35,0.36
-24059,51,161,51161,840,400,55013876,54929659,872,420,61380485,61294393,92376,40016,650725489,648838102,96.33,95.24,89.63,89.62,0.91,1,8.45,8.47
-24060,51,121,51121,53311,20255,345576075,343481683,53311,20255,345576075,343481683,94392,38569,1008191489,1002361193,100,100,100,100,56.48,52.52,34.28,34.27
-24064,51,019,51019,1434,642,57118860,57088526,4963,2070,85079287,85043782,68676,31937,1992358844,1950314965,28.89,31.01,67.14,67.13,2.09,2.01,2.87,2.93
-24064,51,023,51023,3529,1428,27960427,27955256,4963,2070,85079287,85043782,33148,14562,1413902436,1401706839,71.11,68.99,32.86,32.87,10.65,9.81,1.98,1.99
-24065,51,067,51067,5057,2299,193100596,192779506,6141,2771,221354857,221012683,56159,29315,1842901899,1788195297,82.35,82.97,87.24,87.23,9,7.84,10.48,10.78
-24065,51,161,51161,1084,472,28254261,28233177,6141,2771,221354857,221012683,92376,40016,650725489,648838102,17.65,17.03,12.76,12.77,1.17,1.18,4.34,4.35
-24066,51,023,51023,4804,2344,412203244,408780094,4883,2387,419493134,416069984,33148,14562,1413902436,1401706839,98.38,98.2,98.26,98.25,14.49,16.1,29.15,29.16
-24066,51,163,51163,79,43,7289890,7289890,4883,2387,419493134,416069984,22307,11152,1556509985,1547668571,1.62,1.8,1.74,1.75,0.35,0.39,0.47,0.47
-24067,51,067,51067,2230,1067,145645207,145483163,2230,1067,145645207,145483163,56159,29315,1842901899,1788195297,100,100,100,100,3.97,3.64,7.9,8.14
-24069,51,143,51143,1879,884,86585721,85856363,1879,884,86585721,85856363,63506,31307,2533462228,2509545576,100,100,100,100,2.96,2.82,3.42,3.42
-24070,51,045,51045,288,153,62023248,61817751,1363,608,149933517,149686054,5190,2809,856288429,853489575,21.13,25.16,41.37,41.3,5.55,5.45,7.24,7.24
-24070,51,121,51121,11,9,8722524,8722524,1363,608,149933517,149686054,94392,38569,1008191489,1002361193,0.81,1.48,5.82,5.83,0.01,0.02,0.87,0.87
-24070,51,161,51161,1064,446,79187745,79145779,1363,608,149933517,149686054,92376,40016,650725489,648838102,78.06,73.36,52.82,52.87,1.15,1.11,12.17,12.2
-24072,51,063,51063,1298,605,71958208,71943295,1298,605,71958208,71943295,15279,7790,987541424,985283867,100,100,100,100,8.5,7.77,7.29,7.3
-24073,51,121,51121,29793,13314,230488978,229847653,29793,13314,230488978,229847653,94392,38569,1008191489,1002361193,100,100,100,100,31.56,34.52,22.86,22.93
-24076,51,141,51141,972,517,93122979,93110822,972,517,93122979,93110822,18490,10083,1258377638,1251212174,100,100,100,100,5.26,5.13,7.4,7.44
-24077,51,023,51023,932,447,2116633,2095509,932,447,2116633,2095509,33148,14562,1413902436,1401706839,100,100,100,100,2.81,3.07,0.15,0.15
-24078,51,089,51089,7115,3559,17990184,17930807,7115,3559,17990184,17930807,54151,26268,995540242,990240760,100,100,100,100,13.14,13.55,1.81,1.81
-24079,51,063,51063,1764,940,100089915,100010580,1766,946,100167287,100087952,15279,7790,987541424,985283867,99.89,99.37,99.92,99.92,11.55,12.07,10.14,10.15
-24079,51,067,51067,2,6,77372,77372,1766,946,100167287,100087952,56159,29315,1842901899,1788195297,0.11,0.63,0.08,0.08,0,0.02,0,0
-24082,51,141,51141,419,182,19393811,19372549,419,182,19393811,19372549,18490,10083,1258377638,1251212174,100,100,100,100,2.27,1.81,1.54,1.55
-24083,51,023,51023,2587,1172,21193529,20676492,2587,1172,21193529,20676492,33148,14562,1413902436,1401706839,100,100,100,100,7.8,8.05,1.5,1.48
-24084,51,021,51021,280,161,78083192,77894347,11304,5188,312360970,306084399,6824,3265,929101498,926503435,2.48,3.1,25,25.45,4.1,4.93,8.4,8.41
-24084,51,155,51155,11024,5027,234277778,228190052,11304,5188,312360970,306084399,34872,17235,853643607,828427584,97.52,96.9,75,74.55,31.61,29.17,27.44,27.54
-24085,51,005,51005,11,5,169507,169507,2182,1295,459776285,454913498,16250,8074,1162262851,1153727336,0.5,0.39,0.04,0.04,0.07,0.06,0.01,0.01
-24085,51,023,51023,2171,1290,459606778,454743991,2182,1295,459776285,454913498,33148,14562,1413902436,1401706839,99.5,99.61,99.96,99.96,6.55,8.86,32.51,32.44
-24086,51,071,51071,210,112,16833096,16495460,210,112,16833096,16495460,17286,8319,933486073,921469073,100,100,100,100,1.21,1.35,1.8,1.79
-24087,51,121,51121,3789,1651,116064043,115509938,3914,1707,119622348,119038664,94392,38569,1008191489,1002361193,96.81,96.72,97.03,97.04,4.01,4.28,11.51,11.52
-24087,51,161,51161,125,56,3558305,3528726,3914,1707,119622348,119038664,92376,40016,650725489,648838102,3.19,3.28,2.97,2.96,0.14,0.14,0.55,0.54
-24088,51,067,51067,5238,2243,263063927,262344723,5408,2359,309283143,303566417,56159,29315,1842901899,1788195297,96.86,95.08,85.06,86.42,9.33,7.65,14.27,14.67
-24088,51,141,51141,170,116,46219216,41221694,5408,2359,309283143,303566417,18490,10083,1258377638,1251212174,3.14,4.92,14.94,13.58,0.92,1.15,3.67,3.29
-24089,51,089,51089,2640,1327,29179989,29158110,2640,1327,29179989,29158110,54151,26268,995540242,990240760,100,100,100,100,4.88,5.05,2.93,2.94
-24090,51,023,51023,4781,2057,246790302,245964294,4781,2057,246790302,245964294,33148,14562,1413902436,1401706839,100,100,100,100,14.42,14.13,17.45,17.55
-24091,51,063,51063,7139,3580,429142457,427665953,7215,3650,454198102,452721598,15279,7790,987541424,985283867,98.95,98.08,94.48,94.47,46.72,45.96,43.46,43.41
-24091,51,067,51067,35,36,8015404,8015404,7215,3650,454198102,452721598,56159,29315,1842901899,1788195297,0.49,0.99,1.76,1.77,0.06,0.12,0.43,0.45
-24091,51,141,51141,41,34,17040241,17040241,7215,3650,454198102,452721598,18490,10083,1258377638,1251212174,0.57,0.93,3.75,3.76,0.22,0.34,1.35,1.36
-24092,51,067,51067,3063,1473,93574637,92066535,3063,1473,93574637,92066535,56159,29315,1842901899,1788195297,100,100,100,100,5.45,5.02,5.08,5.15
-24093,51,071,51071,192,97,15497514,13390572,192,97,15497514,13390572,17286,8319,933486073,921469073,100,100,100,100,1.11,1.17,1.66,1.45
-24095,51,019,51019,4677,2177,69310772,65352262,4677,2177,69310772,65352262,68676,31937,1992358844,1950314965,100,100,100,100,6.81,6.82,3.48,3.35
-24101,51,019,51019,893,373,10943280,10666441,6132,2942,148007303,143665288,68676,31937,1992358844,1950314965,14.56,12.68,7.39,7.42,1.3,1.17,0.55,0.55
-24101,51,067,51067,5239,2569,137064023,132998847,6132,2942,148007303,143665288,56159,29315,1842901899,1788195297,85.44,87.32,92.61,92.58,9.33,8.76,7.44,7.44
-24102,51,067,51067,1585,981,79527368,75934459,1697,1039,86685300,83092391,56159,29315,1842901899,1788195297,93.4,94.42,91.74,91.39,2.82,3.35,4.32,4.25
-24102,51,089,51089,112,58,7157932,7157932,1697,1039,86685300,83092391,54151,26268,995540242,990240760,6.6,5.58,8.26,8.61,0.21,0.22,0.72,0.72
-24104,51,019,51019,3469,2608,213755976,193697219,3469,2608,213755976,193697219,68676,31937,1992358844,1950314965,100,100,100,100,5.05,8.17,10.73,9.93
-24105,51,035,51035,31,42,19820231,19820231,500,267,55574304,55572380,30042,16569,1237089412,1229441060,6.2,15.73,35.66,35.67,0.1,0.25,1.6,1.61
-24105,51,063,51063,469,225,35754073,35752149,500,267,55574304,55572380,15279,7790,987541424,985283867,93.8,84.27,64.34,64.33,3.07,2.89,3.62,3.63
-24112,51,067,51067,1161,497,55248886,55203396,32646,16192,395104536,392877913,56159,29315,1842901899,1788195297,3.56,3.07,13.98,14.05,2.07,1.7,3,3.09
-24112,51,089,51089,17664,8490,311345415,309297897,32646,16192,395104536,392877913,54151,26268,995540242,990240760,54.11,52.43,78.8,78.73,32.62,32.32,31.27,31.23
-24112,51,690,51690,13821,7205,28510235,28376620,32646,16192,395104536,392877913,13821,7205,28510235,28376620,42.34,44.5,7.22,7.22,100,100,100,100
-24120,51,035,51035,214,130,15241230,15233711,1860,1288,186439524,185756167,30042,16569,1237089412,1229441060,11.51,10.09,8.17,8.2,0.71,0.78,1.23,1.24
-24120,51,063,51063,299,274,35767390,35730469,1860,1288,186439524,185756167,15279,7790,987541424,985283867,16.08,21.27,19.18,19.24,1.96,3.52,3.62,3.63
-24120,51,141,51141,1347,884,135430904,134791987,1860,1288,186439524,185756167,18490,10083,1258377638,1251212174,72.42,68.63,72.64,72.56,7.29,8.77,10.76,10.77
-24121,51,019,51019,6750,3832,202404360,195223452,10501,7241,273128005,245800014,68676,31937,1992358844,1950314965,64.28,52.92,74.11,79.42,9.83,12,10.16,10.01
-24121,51,067,51067,3751,3409,70723645,50576562,10501,7241,273128005,245800014,56159,29315,1842901899,1788195297,35.72,47.08,25.89,20.58,6.68,11.63,3.84,2.83
-24122,51,019,51019,1683,778,74470599,74442010,1683,778,74470599,74442010,68676,31937,1992358844,1950314965,100,100,100,100,2.45,2.44,3.74,3.82
-24124,51,021,51021,229,127,12291633,12086067,4352,2057,189768256,187378628,6824,3265,929101498,926503435,5.26,6.17,6.48,6.45,3.36,3.89,1.32,1.3
-24124,51,071,51071,4123,1930,177476623,175292561,4352,2057,189768256,187378628,17286,8319,933486073,921469073,94.74,93.83,93.52,93.55,23.85,23.2,19.01,19.02
-24127,51,045,51045,4261,2298,625228964,623013401,4261,2298,625228964,623013401,5190,2809,856288429,853489575,100,100,100,100,82.1,81.81,73.02,73
-24128,51,045,51045,501,254,56930873,56853398,1872,949,187404346,186689996,5190,2809,856288429,853489575,26.76,26.77,30.38,30.45,9.65,9.04,6.65,6.66
-24128,51,071,51071,1371,695,130473473,129836598,1872,949,187404346,186689996,17286,8319,933486073,921469073,73.24,73.23,69.62,69.55,7.93,8.35,13.98,14.09
-24130,51,023,51023,8,15,6035686,5889885,8,15,6035686,5889885,33148,14562,1413902436,1401706839,100,100,100,100,0.02,0.1,0.43,0.42
-24131,51,045,51045,140,104,112105344,111805025,140,104,112105344,111805025,5190,2809,856288429,853489575,100,100,100,100,2.7,3.7,13.09,13.1
-24132,51,155,51155,460,241,31442669,30363363,460,241,31442669,30363363,34872,17235,853643607,828427584,100,100,100,100,1.32,1.4,3.68,3.67
-24133,51,141,51141,2626,1340,112105546,112105546,2626,1340,112105546,112105546,18490,10083,1258377638,1251212174,100,100,100,100,14.2,13.29,8.91,8.96
-24134,51,071,51071,5741,2665,268727306,265803763,5741,2665,268727306,265803763,17286,8319,933486073,921469073,100,100,100,100,33.21,32.04,28.79,28.85
-24136,51,071,51071,3393,1671,128474086,126359359,3393,1671,128474086,126359359,17286,8319,933486073,921469073,100,100,100,100,19.63,20.09,13.76,13.71
-24137,51,067,51067,2125,1654,159053462,152786003,2582,2290,203744852,192299660,56159,29315,1842901899,1788195297,82.3,72.23,78.07,79.45,3.78,5.64,8.63,8.54
-24137,51,143,51143,457,636,44691390,39513657,2582,2290,203744852,192299660,63506,31307,2533462228,2509545576,17.7,27.77,21.93,20.55,0.72,2.03,1.76,1.57
-24138,51,063,51063,645,315,35917430,35911898,1613,699,70092514,70079183,15279,7790,987541424,985283867,39.99,45.06,51.24,51.24,4.22,4.04,3.64,3.64
-24138,51,121,51121,968,384,34175084,34167285,1613,699,70092514,70079183,94392,38569,1008191489,1002361193,60.01,54.94,48.76,48.76,1.03,1,3.39,3.41
-24139,51,019,51019,65,70,18717541,16827349,575,394,67551309,63379847,68676,31937,1992358844,1950314965,11.3,17.77,27.71,26.55,0.09,0.22,0.94,0.86
-24139,51,143,51143,510,324,48833768,46552498,575,394,67551309,63379847,63506,31307,2533462228,2509545576,88.7,82.23,72.29,73.45,0.8,1.03,1.93,1.86
-24141,51,063,51063,148,74,15577261,15462373,20668,9967,173747766,165316693,15279,7790,987541424,985283867,0.72,0.74,8.97,9.35,0.97,0.95,1.58,1.57
-24141,51,121,51121,1508,684,51044432,49550298,20668,9967,173747766,165316693,94392,38569,1008191489,1002361193,7.3,6.86,29.38,29.97,1.6,1.77,5.06,4.94
-24141,51,155,51155,5074,2782,80948278,74994221,20668,9967,173747766,165316693,34872,17235,853643607,828427584,24.55,27.91,46.59,45.36,14.55,16.14,9.48,9.05
-24141,51,750,51750,13938,6427,26177795,25309801,20668,9967,173747766,165316693,16408,6427,26435140,25567146,67.44,64.48,15.07,15.31,84.95,100,99.03,98.99
-24142,51,750,51750,2470,0,257345,257345,2470,0,257345,257345,16408,6427,26435140,25567146,100,0,100,100,15.05,0,0.97,1.01
-24147,51,071,51071,1201,541,17924674,16793566,1201,541,17924674,16793566,17286,8319,933486073,921469073,100,100,100,100,6.95,6.5,1.92,1.82
-24148,51,089,51089,8013,3853,185185967,184596896,8013,3853,185185967,184596896,54151,26268,995540242,990240760,100,100,100,100,14.8,14.67,18.6,18.64
-24149,51,063,51063,866,420,43497818,43043147,3339,1516,138632594,137598522,15279,7790,987541424,985283867,25.94,27.7,31.38,31.28,5.67,5.39,4.4,4.37
-24149,51,121,51121,2473,1096,95134776,94555375,3339,1516,138632594,137598522,94392,38569,1008191489,1002361193,74.06,72.3,68.62,68.72,2.62,2.84,9.44,9.43
-24150,51,071,51071,693,436,145033592,144524113,693,436,145033592,144524113,17286,8319,933486073,921469073,100,100,100,100,4.01,5.24,15.54,15.68
-24151,51,067,51067,20000,9057,423710109,420911880,20000,9057,423710109,420911880,56159,29315,1842901899,1788195297,100,100,100,100,35.61,30.9,22.99,23.54
-24153,51,023,51023,27,12,12984069,11845181,37761,15939,274058351,272001342,33148,14562,1413902436,1401706839,0.07,0.08,4.74,4.35,0.08,0.08,0.92,0.85
-24153,51,161,51161,12932,5095,223471390,222816747,37761,15939,274058351,272001342,92376,40016,650725489,648838102,34.25,31.97,81.54,81.92,14,12.73,34.34,34.34
-24153,51,775,51775,24802,10832,37602892,37339414,37761,15939,274058351,272001342,24802,10832,37654062,37390584,65.68,67.96,13.72,13.73,100,100,99.86,99.86
-24161,51,143,51143,471,288,70085236,68494290,471,288,70085236,68494290,63506,31307,2533462228,2509545576,100,100,100,100,0.74,0.92,2.77,2.73
-24162,51,063,51063,23,15,2686515,2665747,2421,1123,121344422,120933678,15279,7790,987541424,985283867,0.95,1.34,2.21,2.2,0.15,0.19,0.27,0.27
-24162,51,121,51121,2398,1108,118657907,118267931,2421,1123,121344422,120933678,94392,38569,1008191489,1002361193,99.05,98.66,97.79,97.8,2.54,2.87,11.77,11.8
-24165,51,089,51089,1046,524,61322966,61322966,1613,822,112374309,112374309,54151,26268,995540242,990240760,64.85,63.75,54.57,54.57,1.93,1.99,6.16,6.19
-24165,51,141,51141,567,298,51051343,51051343,1613,822,112374309,112374309,18490,10083,1258377638,1251212174,35.15,36.25,45.43,45.43,3.07,2.96,4.06,4.08
-24167,51,071,51071,345,157,13805954,13738803,345,157,13805954,13738803,17286,8319,933486073,921469073,100,100,100,100,2,1.89,1.48,1.49
-24168,51,089,51089,187,102,2567395,2567395,187,102,2567395,2567395,54151,26268,995540242,990240760,100,100,100,100,0.35,0.39,0.26,0.26
-24171,51,141,51141,8250,4362,518465695,517194702,8250,4362,518465695,517194702,18490,10083,1258377638,1251212174,100,100,100,100,44.62,43.26,41.2,41.34
-24174,51,019,51019,2539,1200,88562667,88498862,2539,1200,88562667,88498862,68676,31937,1992358844,1950314965,100,100,100,100,3.7,3.76,4.45,4.54
-24175,51,023,51023,8774,3624,179905870,179319433,8818,3645,186972555,186383436,33148,14562,1413902436,1401706839,99.5,99.42,96.22,96.21,26.47,24.89,12.72,12.79
-24175,51,161,51161,44,21,7066685,7064003,8818,3645,186972555,186383436,92376,40016,650725489,648838102,0.5,0.58,3.78,3.79,0.05,0.05,1.09,1.09
-24176,51,067,51067,1360,1300,65999746,56942013,1360,1300,65999746,56942013,56159,29315,1842901899,1788195297,100,100,100,100,2.42,4.43,3.58,3.18
-24179,51,019,51019,5552,2541,100084312,99239530,18616,8318,123546947,122496129,68676,31937,1992358844,1950314965,29.82,30.55,81.01,81.01,8.08,7.96,5.02,5.09
-24179,51,161,51161,13064,5777,23462635,23256599,18616,8318,123546947,122496129,92376,40016,650725489,648838102,70.18,69.45,18.99,18.99,14.14,14.44,3.61,3.58
-24184,51,067,51067,4705,2408,116934337,110918865,4705,2408,116934337,110918865,56159,29315,1842901899,1788195297,100,100,100,100,8.38,8.21,6.35,6.2
-24185,51,141,51141,854,503,97665409,97665409,854,503,97665409,97665409,18490,10083,1258377638,1251212174,100,100,100,100,4.62,4.99,7.76,7.81
-24201,51,520,51520,17116,8469,26979923,26832166,17116,8469,26979923,26832166,17835,8831,34066672,33703512,100,100,100,100,95.97,95.9,79.2,79.61
-24202,51,169,51169,444,232,57011104,56762889,12905,5916,331113335,330214604,23177,11916,1395069324,1387017232,3.44,3.92,17.22,17.19,1.92,1.95,4.09,4.09
-24202,51,191,51191,11742,5322,267015482,266580369,12905,5916,331113335,330214604,54876,25601,1465917303,1452917904,90.99,89.96,80.64,80.73,21.4,20.79,18.21,18.35
-24202,51,520,51520,719,362,7086749,6871346,12905,5916,331113335,330214604,17835,8831,34066672,33703512,5.57,6.12,2.14,2.08,4.03,4.1,20.8,20.39
-24210,51,191,51191,16840,7966,367580226,366159371,16840,7966,367580226,366159371,54876,25601,1465917303,1452917904,100,100,100,100,30.69,31.12,25.08,25.2
-24211,51,191,51191,9922,4730,190598240,183082958,9922,4730,190598240,183082958,54876,25601,1465917303,1452917904,100,100,100,100,18.08,18.48,13,12.6
-24216,51,195,51195,2939,1436,175131921,174656225,2939,1436,175131921,174656225,41452,17940,1049537947,1044253435,100,100,100,100,7.09,8,16.69,16.73
-24217,51,027,51027,76,48,13491978,13434816,406,224,52975589,52849306,24098,11576,1304947073,1302149008,18.72,21.43,25.47,25.42,0.32,0.41,1.03,1.03
-24217,51,051,51051,330,176,39483611,39414490,406,224,52975589,52849306,15903,7579,864181898,856074924,81.28,78.57,74.53,74.58,2.08,2.32,4.57,4.6
-24219,51,105,51105,1327,605,53861318,53645851,11265,4652,189745777,188613531,25587,11745,1132885023,1127987182,11.78,13.01,28.39,28.44,5.19,5.15,4.75,4.76
-24219,51,195,51195,9938,4047,135884459,134967680,11265,4652,189745777,188613531,41452,17940,1049537947,1044253435,88.22,86.99,71.61,71.56,23.97,22.56,12.95,12.92
-24220,51,051,51051,895,404,64596455,64479391,895,404,64596455,64479391,15903,7579,864181898,856074924,100,100,100,100,5.63,5.33,7.47,7.53
-24221,51,105,51105,544,324,81479399,81465777,938,552,132013671,131980525,25587,11745,1132885023,1127987182,58,58.7,61.72,61.73,2.13,2.76,7.19,7.22
-24221,51,169,51169,394,228,50534272,50514748,938,552,132013671,131980525,23177,11916,1395069324,1387017232,42,41.3,38.28,38.27,1.7,1.91,3.62,3.64
-24224,51,167,51167,6734,3114,282890940,281240877,6734,3114,282890940,281240877,28897,13484,1234786652,1227192858,100,100,100,100,23.3,23.09,22.91,22.92
-24225,51,167,51167,1697,862,150293925,148954658,1697,862,150293925,148954658,28897,13484,1234786652,1227192858,100,100,100,100,5.87,6.39,12.17,12.14
-24226,51,051,51051,1433,720,69680451,69341077,1433,720,69680451,69341077,15903,7579,864181898,856074924,100,100,100,100,9.01,9.5,8.06,8.1
-24228,51,051,51051,7016,3423,245147712,240776885,7016,3423,245147712,240776885,15903,7579,864181898,856074924,100,100,100,100,44.12,45.16,28.37,28.13
-24230,51,051,51051,1689,762,109535959,109356663,9597,4386,334097490,332845222,15903,7579,864181898,856074924,17.6,17.37,32.79,32.86,10.62,10.05,12.68,12.77
-24230,51,169,51169,202,174,44217270,44075309,9597,4386,334097490,332845222,23177,11916,1395069324,1387017232,2.1,3.97,13.23,13.24,0.87,1.46,3.17,3.18
-24230,51,195,51195,7706,3450,180344261,179413250,9597,4386,334097490,332845222,41452,17940,1049537947,1044253435,80.3,78.66,53.98,53.9,18.59,19.23,17.18,17.18
-24236,51,191,51191,3085,1655,146997210,146329293,3085,1655,146997210,146329293,54876,25601,1465917303,1452917904,100,100,100,100,5.62,6.46,10.03,10.07
-24237,51,051,51051,624,309,112487831,112357945,1192,625,148144994,147971234,15903,7579,864181898,856074924,52.35,49.44,75.93,75.93,3.92,4.08,13.02,13.12
-24237,51,167,51167,568,316,35657163,35613289,1192,625,148144994,147971234,28897,13484,1234786652,1227192858,47.65,50.56,24.07,24.07,1.97,2.34,2.89,2.9
-24239,51,027,51027,113,65,7200125,7174704,113,65,7200125,7174704,24098,11576,1304947073,1302149008,100,100,100,100,0.47,0.56,0.55,0.55
-24243,51,105,51105,2222,943,58550371,58015656,2222,943,58550371,58015656,25587,11745,1132885023,1127987182,100,100,100,100,8.68,8.03,5.17,5.14
-24244,51,105,51105,955,457,63613059,63609285,5723,2828,442534744,441215859,25587,11745,1132885023,1127987182,16.69,16.16,14.37,14.42,3.73,3.89,5.62,5.64
-24244,51,169,51169,4768,2371,378921685,377606574,5723,2828,442534744,441215859,23177,11916,1395069324,1387017232,83.31,83.84,85.63,85.58,20.57,19.9,27.16,27.22
-24245,51,169,51169,1129,640,135303738,134352797,1129,640,135303738,134352797,23177,11916,1395069324,1387017232,100,100,100,100,4.87,5.37,9.7,9.69
-24246,51,195,51195,455,202,1278811,1271674,455,202,1278811,1271674,41452,17940,1049537947,1044253435,100,100,100,100,1.1,1.13,0.12,0.12
-24248,51,105,51105,2596,1283,135955819,135704253,2596,1283,135955819,135704253,25587,11745,1132885023,1127987182,100,100,100,100,10.15,10.92,12,12.03
-24250,51,169,51169,1319,703,137263451,136188215,1319,703,137263451,136188215,23177,11916,1395069324,1387017232,100,100,100,100,5.69,5.9,9.84,9.82
-24251,51,169,51169,8773,4417,309072590,306911839,8773,4417,309072590,306911839,23177,11916,1395069324,1387017232,100,100,100,100,37.85,37.07,22.15,22.13
-24256,51,027,51027,671,339,26714980,26693508,3491,1590,153500613,150648983,24098,11576,1304947073,1302149008,19.22,21.32,17.4,17.72,2.78,2.93,2.05,2.05
-24256,51,051,51051,2820,1251,126785633,123955475,3491,1590,153500613,150648983,15903,7579,864181898,856074924,80.78,78.68,82.6,82.28,17.73,16.51,14.67,14.48
-24258,51,169,51169,1585,790,105633982,104648639,1624,807,108613334,107565253,23177,11916,1395069324,1387017232,97.6,97.89,97.26,97.29,6.84,6.63,7.57,7.54
-24258,51,191,51191,39,17,2979352,2916614,1624,807,108613334,107565253,54876,25601,1465917303,1452917904,2.4,2.11,2.74,2.71,0.07,0.07,0.2,0.2
-24260,51,027,51027,1085,537,59461132,59443214,5734,2686,205537552,204746499,24098,11576,1304947073,1302149008,18.92,19.99,28.93,29.03,4.5,4.64,4.56,4.57
-24260,51,167,51167,4649,2149,146076420,145303285,5734,2686,205537552,204746499,28897,13484,1234786652,1227192858,81.08,80.01,71.07,70.97,16.09,15.94,11.83,11.84
-24263,51,105,51105,7950,3185,315412468,313755217,7950,3185,315412468,313755217,25587,11745,1132885023,1127987182,100,100,100,100,31.07,27.12,27.84,27.82
-24265,51,105,51105,930,441,102554708,101604638,930,441,102554708,101604638,25587,11745,1132885023,1127987182,100,100,100,100,3.63,3.75,9.05,9.01
-24266,51,167,51167,9521,4427,315569324,313995878,9521,4427,315569324,313995878,28897,13484,1234786652,1227192858,100,100,100,100,32.95,32.83,25.56,25.59
-24269,51,051,51051,324,158,19847665,19844121,324,158,19847665,19844121,15903,7579,864181898,856074924,100,100,100,100,2.04,2.08,2.3,2.32
-24270,51,191,51191,582,305,56258150,55449140,582,305,56258150,55449140,54876,25601,1465917303,1452917904,100,100,100,100,1.06,1.19,3.84,3.82
-24271,51,169,51169,2689,1405,163936333,163128898,2689,1405,163936333,163128898,23177,11916,1395069324,1387017232,100,100,100,100,11.6,11.79,11.75,11.76
-24272,51,051,51051,527,255,54191687,54153359,527,255,54191687,54153359,15903,7579,864181898,856074924,100,100,100,100,3.31,3.36,6.27,6.33
-24273,51,195,51195,2304,1068,145057428,144537628,6262,3013,164521931,163912962,41452,17940,1049537947,1044253435,36.79,35.45,88.17,88.18,5.56,5.95,13.82,13.84
-24273,51,720,51720,3958,1945,19464503,19375334,6262,3013,164521931,163912962,3958,1945,19464503,19375334,63.21,64.55,11.83,11.82,100,100,100,100
-24277,51,105,51105,5849,2868,137849375,136947514,5849,2868,137849375,136947514,25587,11745,1132885023,1127987182,100,100,100,100,22.86,24.42,12.17,12.14
-24279,51,195,51195,5541,2197,210187486,208995795,5541,2197,210187486,208995795,41452,17940,1049537947,1044253435,100,100,100,100,13.37,12.25,20.03,20.01
-24280,51,167,51167,823,363,27426070,27360425,823,363,27426070,27360425,28897,13484,1234786652,1227192858,100,100,100,100,2.85,2.69,2.22,2.23
-24281,51,105,51105,2487,1272,142733788,142395669,2487,1272,142733788,142395669,25587,11745,1132885023,1127987182,100,100,100,100,9.72,10.83,12.6,12.62
-24282,51,105,51105,727,367,40874718,40843322,727,367,40874718,40843322,25587,11745,1132885023,1127987182,100,100,100,100,2.84,3.12,3.61,3.62
-24283,51,051,51051,153,77,9306512,9285796,2171,1053,66592031,66190378,15903,7579,864181898,856074924,7.05,7.31,13.98,14.03,0.96,1.02,1.08,1.08
-24283,51,167,51167,240,101,8045724,8022208,2171,1053,66592031,66190378,28897,13484,1234786652,1227192858,11.05,9.59,12.08,12.12,0.83,0.75,0.65,0.65
-24283,51,195,51195,1778,875,49239795,48882374,2171,1053,66592031,66190378,41452,17940,1049537947,1044253435,81.9,83.1,73.94,73.85,4.29,4.88,4.69,4.68
-24290,51,169,51169,1874,956,13174899,12827324,1874,956,13174899,12827324,23177,11916,1395069324,1387017232,100,100,100,100,8.09,8.02,0.94,0.92
-24292,51,077,51077,535,341,69468879,69448171,535,341,69468879,69448171,15533,9156,1155018452,1145227587,100,100,100,100,3.44,3.72,6.01,6.06
-24293,51,195,51195,10791,4665,152413786,151528809,10791,4665,152413786,151528809,41452,17940,1049537947,1044253435,100,100,100,100,26.03,26,14.52,14.51
-24301,51,155,51155,14366,7053,212207844,207790450,14366,7053,212207844,207790450,34872,17235,853643607,828427584,100,100,100,100,41.2,40.92,24.86,25.08
-24311,51,173,51173,1977,972,105011916,104992148,1977,972,105011916,104992148,32208,15427,1171423882,1167897823,100,100,100,100,6.14,6.3,8.96,8.99
-24312,51,035,51035,1365,684,61995725,61403899,2401,1199,98570648,96550195,30042,16569,1237089412,1229441060,56.85,57.05,62.89,63.6,4.54,4.13,5.01,4.99
-24312,51,197,51197,1036,515,36574923,35146296,2401,1199,98570648,96550195,29235,14079,1203430440,1196118581,43.15,42.95,37.11,36.4,3.54,3.66,3.04,2.94
-24313,51,155,51155,13,5,811902,811275,884,400,18577108,18498985,34872,17235,853643607,828427584,1.47,1.25,4.37,4.39,0.04,0.03,0.1,0.1
-24313,51,197,51197,871,395,17765206,17687710,884,400,18577108,18498985,29235,14079,1203430440,1196118581,98.53,98.75,95.63,95.61,2.98,2.81,1.48,1.48
-24314,51,021,51021,1396,685,205389311,204604757,1560,763,229266022,228480089,6824,3265,929101498,926503435,89.49,89.78,89.59,89.55,20.46,20.98,22.11,22.08
-24314,51,185,51185,164,78,23876711,23875332,1560,763,229266022,228480089,45078,20826,1346719908,1343805085,10.51,10.22,10.41,10.45,0.36,0.37,1.77,1.78
-24315,51,021,51021,3757,1577,454485682,453103160,3774,1592,473725437,472337438,6824,3265,929101498,926503435,99.55,99.06,95.94,95.93,55.06,48.3,48.92,48.9
-24315,51,071,51071,17,15,19239755,19234278,3774,1592,473725437,472337438,17286,8319,933486073,921469073,0.45,0.94,4.06,4.07,0.1,0.18,2.06,2.09
-24316,51,185,51185,50,20,10614530,10559708,50,20,10614530,10559708,45078,20826,1346719908,1343805085,100,100,100,100,0.11,0.1,0.79,0.79
-24317,51,035,51035,3858,1995,97516217,97368475,3858,1995,97516217,97368475,30042,16569,1237089412,1229441060,100,100,100,100,12.84,12.04,7.88,7.92
-24318,51,021,51021,381,300,107917124,107910855,639,442,173440136,173292895,6824,3265,929101498,926503435,59.62,67.87,62.22,62.27,5.58,9.19,11.62,11.65
-24318,51,173,51173,258,142,65523012,65382040,639,442,173440136,173292895,32208,15427,1171423882,1167897823,40.38,32.13,37.78,37.73,0.8,0.92,5.59,5.6
-24319,51,173,51173,6310,2793,151823397,151436065,6979,3144,208838795,208215525,32208,15427,1171423882,1167897823,90.41,88.84,72.7,72.73,19.59,18.1,12.96,12.97
-24319,51,191,51191,669,351,57015398,56779460,6979,3144,208838795,208215525,54876,25601,1465917303,1452917904,9.59,11.16,27.3,27.27,1.22,1.37,3.89,3.91
-24322,51,197,51197,174,98,35109594,34902108,174,98,35109594,34902108,29235,14079,1203430440,1196118581,100,100,100,100,0.6,0.7,2.92,2.92
-24323,51,197,51197,644,314,48622748,48583069,644,314,48622748,48583069,29235,14079,1203430440,1196118581,100,100,100,100,2.2,2.23,4.04,4.06
-24324,51,155,51155,1857,975,80687037,78533777,2013,1050,93361624,90587943,34872,17235,853643607,828427584,92.25,92.86,86.42,86.69,5.33,5.66,9.45,9.48
-24324,51,197,51197,156,75,12674587,12054166,2013,1050,93361624,90587943,29235,14079,1203430440,1196118581,7.75,7.14,13.58,13.31,0.53,0.53,1.05,1.01
-24325,51,035,51035,1039,813,135818021,135116321,1039,813,135818021,135116321,30042,16569,1237089412,1229441060,100,100,100,100,3.46,4.91,10.98,10.99
-24326,51,077,51077,1058,752,140937387,140887109,1058,752,140937387,140887109,15533,9156,1155018452,1145227587,100,100,100,100,6.81,8.21,12.2,12.3
-24328,51,035,51035,1726,1610,97451942,97319163,1726,1610,97451942,97319163,30042,16569,1237089412,1229441060,100,100,100,100,5.75,9.72,7.88,7.92
-24330,51,035,51035,722,407,25234038,24755043,3401,1913,109594415,107554935,30042,16569,1237089412,1229441060,21.23,21.28,23.02,23.02,2.4,2.46,2.04,2.01
-24330,51,077,51077,2679,1506,84360377,82799892,3401,1913,109594415,107554935,15533,9156,1155018452,1145227587,78.77,78.72,76.98,76.98,17.25,16.45,7.3,7.23
-24333,51,035,51035,6069,3092,159241806,157933932,17996,8879,378248913,373409421,30042,16569,1237089412,1229441060,33.72,34.82,42.1,42.3,20.2,18.66,12.87,12.85
-24333,51,077,51077,4885,2535,197562897,194135061,17996,8879,378248913,373409421,15533,9156,1155018452,1145227587,27.14,28.55,52.23,51.99,31.45,27.69,17.1,16.95
-24333,51,640,51640,7042,3252,21444210,21340428,17996,8879,378248913,373409421,7042,3252,21444210,21340428,39.13,36.63,5.67,5.72,100,100,100,100
-24340,51,191,51191,5657,2608,153215729,152633512,5657,2608,153215729,152633512,54876,25601,1465917303,1452917904,100,100,100,100,10.31,10.19,10.45,10.51
-24343,51,035,51035,9186,4673,329157158,327720841,9267,4883,344664899,343154679,30042,16569,1237089412,1229441060,99.13,95.7,95.5,95.5,30.58,28.2,26.61,26.66
-24343,51,141,51141,41,184,6605074,6605074,9267,4883,344664899,343154679,18490,10083,1258377638,1251212174,0.44,3.77,1.92,1.92,0.22,1.82,0.52,0.53
-24343,51,197,51197,40,26,8902667,8828764,9267,4883,344664899,343154679,29235,14079,1203430440,1196118581,0.43,0.53,2.58,2.57,0.14,0.18,0.74,0.74
-24347,51,035,51035,36,34,13756993,13489023,1931,1094,210134216,205574956,30042,16569,1237089412,1229441060,1.86,3.11,6.55,6.56,0.12,0.21,1.11,1.1
-24347,51,121,51121,141,68,8327670,8258506,1931,1094,210134216,205574956,94392,38569,1008191489,1002361193,7.3,6.22,3.96,4.02,0.15,0.18,0.83,0.82
-24347,51,155,51155,1754,992,188049553,183827427,1931,1094,210134216,205574956,34872,17235,853643607,828427584,90.83,90.68,89.49,89.42,5.03,5.76,22.03,22.19
-24348,51,077,51077,3958,2388,277812698,274825194,3958,2388,277812698,274825194,15533,9156,1155018452,1145227587,100,100,100,100,25.48,26.08,24.05,24
-24350,51,035,51035,324,169,38913667,37679961,1261,653,124772445,122922835,30042,16569,1237089412,1229441060,25.69,25.88,31.19,30.65,1.08,1.02,3.15,3.06
-24350,51,077,51077,58,51,23760123,23759330,1261,653,124772445,122922835,15533,9156,1155018452,1145227587,4.6,7.81,19.04,19.33,0.37,0.56,2.06,2.07
-24350,51,197,51197,879,433,62098655,61483544,1261,653,124772445,122922835,29235,14079,1203430440,1196118581,69.71,66.31,49.77,50.02,3.01,3.08,5.16,5.14
-24351,51,035,51035,668,345,29567622,29534821,668,345,29567622,29534821,30042,16569,1237089412,1229441060,100,100,100,100,2.22,2.08,2.39,2.4
-24352,51,035,51035,889,562,74331411,74053772,890,565,74730346,74452707,30042,16569,1237089412,1229441060,99.89,99.47,99.47,99.46,2.96,3.39,6.01,6.02
-24352,51,063,51063,1,3,398935,398935,890,565,74730346,74452707,15279,7790,987541424,985283867,0.11,0.53,0.53,0.54,0.01,0.04,0.04,0.04
-24354,51,173,51173,15315,7295,275977636,274863795,15315,7295,275977636,274863795,32208,15427,1171423882,1167897823,100,100,100,100,47.55,47.29,23.56,23.53
-24360,51,197,51197,6169,2737,223050868,220653911,6169,2737,223050868,220653911,29235,14079,1203430440,1196118581,100,100,100,100,21.1,19.44,18.53,18.45
-24361,51,191,51191,5431,2185,146368769,145474222,5431,2185,146368769,145474222,54876,25601,1465917303,1452917904,100,100,100,100,9.9,8.53,9.98,10.01
-24363,51,077,51077,1365,908,197082386,195466252,1365,908,197082386,195466252,15533,9156,1155018452,1145227587,100,100,100,100,8.79,9.92,17.06,17.07
-24366,51,021,51021,781,415,70934556,70904249,781,415,70934556,70904249,6824,3265,929101498,926503435,100,100,100,100,11.44,12.71,7.63,7.65
-24368,51,173,51173,840,399,51065575,51018480,4953,2303,214820917,214334212,32208,15427,1171423882,1167897823,16.96,17.33,23.77,23.8,2.61,2.59,4.36,4.37
-24368,51,197,51197,4113,1904,163755342,163315732,4953,2303,214820917,214334212,29235,14079,1203430440,1196118581,83.04,82.67,76.23,76.2,14.07,13.52,13.61,13.65
-24370,51,173,51173,5663,2684,313986247,312315487,6572,3146,391874994,389828452,32208,15427,1171423882,1167897823,86.17,85.31,80.12,80.12,17.58,17.4,26.8,26.74
-24370,51,191,51191,909,462,77888747,77512965,6572,3146,391874994,389828452,54876,25601,1465917303,1452917904,13.83,14.69,19.88,19.88,1.66,1.8,5.31,5.33
-24374,51,197,51197,787,393,75207493,74967409,787,393,75207493,74967409,29235,14079,1203430440,1196118581,100,100,100,100,2.69,2.79,6.25,6.27
-24375,51,173,51173,1611,991,159577478,159435199,1611,991,159577478,159435199,32208,15427,1171423882,1167897823,100,100,100,100,5,6.42,13.62,13.65
-24377,51,185,51185,348,220,91564477,91483456,348,220,91564477,91483456,45078,20826,1346719908,1343805085,100,100,100,100,0.77,1.06,6.8,6.81
-24378,51,077,51077,995,675,164033705,163906578,1229,826,212492326,212361187,15533,9156,1155018452,1145227587,80.96,81.72,77.2,77.18,6.41,7.37,14.2,14.31
-24378,51,173,51173,234,151,48458621,48454609,1229,826,212492326,212361187,32208,15427,1171423882,1167897823,19.04,18.28,22.8,22.82,0.73,0.98,4.14,4.15
-24380,51,035,51035,12,10,1890779,1890011,2639,1349,218642201,218589332,30042,16569,1237089412,1229441060,0.45,0.74,0.86,0.86,0.04,0.06,0.15,0.15
-24380,51,063,51063,2627,1339,216751422,216699321,2639,1349,218642201,218589332,15279,7790,987541424,985283867,99.55,99.26,99.14,99.14,17.19,17.19,21.95,21.99
-24381,51,035,51035,3816,1955,135011225,133986468,3816,1955,135011225,133986468,30042,16569,1237089412,1229441060,100,100,100,100,12.7,11.8,10.91,10.9
-24382,51,197,51197,14366,7189,519668357,518495872,14366,7189,519668357,518495872,29235,14079,1203430440,1196118581,100,100,100,100,49.14,51.06,43.18,43.35
-24401,51,015,51015,11753,5267,295136672,293835185,35499,17005,346546886,345091793,73750,31194,2514503621,2504515631,33.11,30.97,85.17,85.15,15.94,16.88,11.74,11.73
-24401,51,790,51790,23746,11738,51410214,51256608,35499,17005,346546886,345091793,23746,11738,51890711,51735515,66.89,69.03,14.83,14.85,100,100,99.07,99.07
-24411,51,015,51015,112,50,1082560,1082560,112,50,1082560,1082560,73750,31194,2514503621,2504515631,100,100,100,100,0.15,0.16,0.04,0.04
-24412,51,017,51017,131,73,6828240,6793367,131,73,6828240,6793367,4731,3270,1384562521,1370512659,100,100,100,100,2.77,2.23,0.49,0.5
-24413,51,091,51091,178,140,104420216,104321111,178,140,104420216,104321111,2321,1837,1077054715,1075249079,100,100,100,100,7.67,7.62,9.69,9.7
-24415,51,163,51163,41,25,520770,520770,41,25,520770,520770,22307,11152,1556509985,1547668571,100,100,100,100,0.18,0.22,0.03,0.03
-24416,51,163,51163,2157,951,127058945,126589360,8807,3887,144645036,143951596,22307,11152,1556509985,1547668571,24.49,24.47,87.84,87.94,9.67,8.53,8.16,8.18
-24416,51,530,51530,6650,2936,17586091,17362236,8807,3887,144645036,143951596,6650,2936,17586091,17362236,75.51,75.53,12.16,12.06,100,100,100,100
-24421,51,015,51015,3868,1678,198674958,198277412,3868,1678,198674958,198277412,73750,31194,2514503621,2504515631,100,100,100,100,5.24,5.38,7.9,7.92
-24422,51,005,51005,6096,3182,207829952,206288369,6315,3270,217375304,215830697,16250,8074,1162262851,1153727336,96.53,97.31,95.61,95.58,37.51,39.41,17.88,17.88
-24422,51,023,51023,219,88,9545352,9542328,6315,3270,217375304,215830697,33148,14562,1413902436,1401706839,3.47,2.69,4.39,4.42,0.66,0.6,0.68,0.68
-24426,51,005,51005,8368,4043,854237610,847634785,14329,7110,868923011,861798125,16250,8074,1162262851,1153727336,58.4,56.86,98.31,98.36,51.5,50.07,73.5,73.47
-24426,51,580,51580,5961,3067,14685401,14163340,14329,7110,868923011,861798125,5961,3067,14685401,14163340,41.6,43.14,1.69,1.64,100,100,100,100
-24430,51,015,51015,2643,718,91401690,91307847,2643,718,91401690,91307847,73750,31194,2514503621,2504515631,100,100,100,100,3.58,2.3,3.63,3.65
-24431,51,015,51015,2656,1137,37066808,36805475,2656,1137,37066808,36805475,73750,31194,2514503621,2504515631,100,100,100,100,3.6,3.64,1.47,1.47
-24432,51,015,51015,315,205,118625241,118145018,336,221,130733138,130252915,73750,31194,2514503621,2504515631,93.75,92.76,90.74,90.7,0.43,0.66,4.72,4.72
-24432,51,017,51017,21,16,12107897,12107897,336,221,130733138,130252915,4731,3270,1384562521,1370512659,6.25,7.24,9.26,9.3,0.44,0.49,0.87,0.88
-24433,51,091,51091,99,59,38649890,38644107,99,59,38649890,38644107,2321,1837,1077054715,1075249079,100,100,100,100,4.27,3.21,3.59,3.59
-24435,51,163,51163,1925,913,81064678,80997302,1925,913,81064678,80997302,22307,11152,1556509985,1547668571,100,100,100,100,8.63,8.19,5.21,5.23
-24437,51,015,51015,904,374,34684324,34514971,904,374,34684324,34514971,73750,31194,2514503621,2504515631,100,100,100,100,1.23,1.2,1.38,1.38
-24439,51,015,51015,225,116,35907960,35805290,1253,733,248462329,245437770,73750,31194,2514503621,2504515631,17.96,15.83,14.45,14.59,0.31,0.37,1.43,1.43
-24439,51,163,51163,1028,617,212554369,209632480,1253,733,248462329,245437770,22307,11152,1556509985,1547668571,82.04,84.17,85.55,85.41,4.61,5.53,13.66,13.55
-24440,51,015,51015,2916,1108,72103278,71846580,2916,1108,72103278,71846580,73750,31194,2514503621,2504515631,100,100,100,100,3.95,3.55,2.87,2.87
-24441,51,015,51015,2311,957,91546092,90818854,6140,2569,115450371,114371896,73750,31194,2514503621,2504515631,37.64,37.25,79.29,79.41,3.13,3.07,3.64,3.63
-24441,51,165,51165,3829,1612,23904279,23553042,6140,2569,115450371,114371896,76314,33660,2210182485,2199121564,62.36,62.75,20.71,20.59,5.02,4.79,1.08,1.07
-24442,51,091,51091,120,144,125532411,125388661,120,144,125532411,125388661,2321,1837,1077054715,1075249079,100,100,100,100,5.17,7.84,11.66,11.66
-24445,51,005,51005,585,281,78746994,78571108,2673,1590,275146729,274521746,16250,8074,1162262851,1153727336,21.89,17.67,28.62,28.62,3.6,3.48,6.78,6.81
-24445,51,017,51017,2088,1309,196399735,195950638,2673,1590,275146729,274521746,4731,3270,1384562521,1370512659,78.11,82.33,71.38,71.38,44.13,40.03,14.18,14.3
-24448,51,005,51005,376,177,842724,794329,376,177,842724,794329,16250,8074,1162262851,1153727336,100,100,100,100,2.31,2.19,0.07,0.07
-24450,51,163,51163,9699,4836,528861969,526538142,16741,7382,535397338,533005082,22307,11152,1556509985,1547668571,57.94,65.51,98.78,98.79,43.48,43.36,33.98,34.02
-24450,51,678,51678,7042,2546,6535369,6466940,16741,7382,535397338,533005082,7042,2546,6535369,6466940,42.06,34.49,1.22,1.21,100,100,100,100
-24457,51,005,51005,270,140,18704392,18604298,270,140,18704392,18604298,16250,8074,1162262851,1153727336,100,100,100,100,1.66,1.73,1.61,1.61
-24458,51,091,51091,442,370,225268658,224735867,442,370,225268658,224735867,2321,1837,1077054715,1075249079,100,100,100,100,19.04,20.14,20.92,20.9
-24459,51,015,51015,753,364,113573228,113517736,818,408,131061601,131001983,73750,31194,2514503621,2504515631,92.05,89.22,86.66,86.65,1.02,1.17,4.52,4.53
-24459,51,163,51163,65,44,17488373,17484247,818,408,131061601,131001983,22307,11152,1556509985,1547668571,7.95,10.78,13.34,13.35,0.29,0.39,1.12,1.13
-24460,51,017,51017,1530,1090,640243602,636833120,1530,1090,640243602,636833120,4731,3270,1384562521,1370512659,100,100,100,100,32.34,33.33,46.24,46.47
-24464,51,125,51125,213,213,58722901,58683500,213,213,58722901,58683500,15020,9931,1228444659,1219510167,100,100,100,100,1.42,2.14,4.78,4.81
-24465,51,091,51091,1382,1001,455367832,454476101,1382,1001,455367832,454476101,2321,1837,1077054715,1075249079,100,100,100,100,59.54,54.49,42.28,42.27
-24467,51,015,51015,2212,918,61363449,60984718,2212,918,61363449,60984718,73750,31194,2514503621,2504515631,100,100,100,100,3,2.94,2.44,2.43
-24471,51,165,51165,1355,598,42754932,41973423,1355,598,42754932,41973423,76314,33660,2210182485,2199121564,100,100,100,100,1.78,1.78,1.93,1.91
-24472,51,015,51015,922,420,84963086,84836288,2271,1092,165873819,165641660,73750,31194,2514503621,2504515631,40.6,38.46,51.22,51.22,1.25,1.35,3.38,3.39
-24472,51,163,51163,1349,672,80910733,80805372,2271,1092,165873819,165641660,22307,11152,1556509985,1547668571,59.4,61.54,48.78,48.78,6.05,6.03,5.2,5.22
-24473,51,163,51163,922,534,140732878,140055529,922,534,140732878,140055529,22307,11152,1556509985,1547668571,100,100,100,100,4.13,4.79,9.04,9.05
-24474,51,005,51005,544,246,1731672,1664940,544,246,1731672,1664940,16250,8074,1162262851,1153727336,100,100,100,100,3.35,3.05,0.15,0.14
-24476,51,015,51015,280,129,18217666,18199989,280,129,18217666,18199989,73750,31194,2514503621,2504515631,100,100,100,100,0.38,0.41,0.72,0.73
-24477,51,015,51015,10573,4539,126550822,125697057,10573,4539,126550822,125697057,73750,31194,2514503621,2504515631,100,100,100,100,14.34,14.55,5.03,5.02
-24479,51,015,51015,1537,709,157164927,156743042,1537,709,157164927,156743042,73750,31194,2514503621,2504515631,100,100,100,100,2.08,2.27,6.25,6.26
-24482,51,015,51015,4872,1840,39930012,39234974,4872,1840,40410509,39713881,73750,31194,2514503621,2504515631,100,100,98.81,98.79,6.61,5.9,1.59,1.57
-24482,51,790,51790,0,0,480497,478907,4872,1840,40410509,39713881,23746,11738,51890711,51735515,0,0,1.19,1.21,0,0,0.93,0.93
-24483,51,009,51009,130,105,64084111,64076618,587,381,186752361,186440102,32353,13976,1240214627,1227484444,22.15,27.56,34.32,34.37,0.4,0.75,5.17,5.22
-24483,51,163,51163,457,276,122668250,122363484,587,381,186752361,186440102,22307,11152,1556509985,1547668571,77.85,72.44,65.68,65.63,2.05,2.47,7.88,7.91
-24484,51,017,51017,675,585,420015333,410196590,741,643,471068095,461245444,4731,3270,1384562521,1370512659,91.09,90.98,89.16,88.93,14.27,17.89,30.34,29.93
-24484,51,091,51091,66,58,51052762,51048854,741,643,471068095,461245444,2321,1837,1077054715,1075249079,8.91,9.02,10.84,11.07,2.84,3.16,4.74,4.75
-24485,51,015,51015,389,297,219718225,219337484,389,297,219718225,219337484,73750,31194,2514503621,2504515631,100,100,100,100,0.53,0.95,8.74,8.76
-24486,51,015,51015,3279,1241,55216305,54789351,3490,1328,59626421,59097941,73750,31194,2514503621,2504515631,93.95,93.45,92.6,92.71,4.45,3.98,2.2,2.19
-24486,51,165,51165,211,87,4410116,4308590,3490,1328,59626421,59097941,76314,33660,2210182485,2199121564,6.05,6.55,7.4,7.29,0.28,0.26,0.2,0.2
-24487,51,017,51017,286,197,108967714,108631047,320,262,185730660,185265425,4731,3270,1384562521,1370512659,89.38,75.19,58.67,58.64,6.05,6.02,7.87,7.93
-24487,51,091,51091,34,65,76762946,76634378,320,262,185730660,185265425,2321,1837,1077054715,1075249079,10.63,24.81,41.33,41.36,1.46,3.54,7.13,7.13
-24501,51,031,51031,4692,2250,63762778,63522602,26757,11838,100267550,99789009,54842,24769,1313971001,1305008854,17.54,19.01,63.59,63.66,8.56,9.08,4.85,4.87
-24501,51,680,51680,22065,9588,36504772,36266407,26757,11838,100267550,99789009,75568,31992,128584693,127239697,82.46,80.99,36.41,36.34,29.2,29.97,28.39,28.5
-24502,51,019,51019,875,348,3090778,3077259,43426,17489,72348320,71834485,68676,31937,1992358844,1950314965,2.01,1.99,4.27,4.28,1.27,1.09,0.16,0.16
-24502,51,031,51031,10981,5046,25322740,24931662,43426,17489,72348320,71834485,54842,24769,1313971001,1305008854,25.29,28.85,35,34.71,20.02,20.37,1.93,1.91
-24502,51,680,51680,31570,12095,43934802,43825564,43426,17489,72348320,71834485,75568,31992,128584693,127239697,72.7,69.16,60.73,61.01,41.78,37.81,34.17,34.44
-24503,51,019,51019,4632,1912,75689561,74168238,19331,8724,110488136,108323580,68676,31937,1992358844,1950314965,23.96,21.92,68.5,68.47,6.74,5.99,3.8,3.8
-24503,51,680,51680,14699,6812,34798575,34155342,19331,8724,110488136,108323580,75568,31992,128584693,127239697,76.04,78.08,31.5,31.53,19.45,21.29,27.06,26.84
-24504,51,011,51011,99,32,4628368,4416109,9777,4586,84203651,83163981,14973,6921,866949083,863744566,1.01,0.7,5.5,5.31,0.66,0.46,0.53,0.51
-24504,51,031,51031,2616,1127,67325395,66852144,9777,4586,84203651,83163981,54842,24769,1313971001,1305008854,26.76,24.57,79.96,80.39,4.77,4.55,5.12,5.12
-24504,51,680,51680,7062,3427,12249888,11895728,9777,4586,84203651,83163981,75568,31992,128584693,127239697,72.23,74.73,14.55,14.3,9.35,10.71,9.53,9.35
-24517,51,031,51031,5693,2688,94261007,93328821,5693,2688,94261007,93328821,54842,24769,1313971001,1305008854,100,100,100,100,10.38,10.85,7.17,7.15
-24520,51,083,51083,2450,1200,242192949,240284634,2450,1200,242192949,240284634,36241,18004,2148740960,2118193284,100,100,100,100,6.76,6.67,11.27,11.34
-24521,51,009,51009,10339,4656,577674127,575422187,10576,4767,602427669,599832088,32353,13976,1240214627,1227484444,97.76,97.67,95.89,95.93,31.96,33.31,46.58,46.88
-24521,51,125,51125,237,111,24753542,24409901,10576,4767,602427669,599832088,15020,9931,1228444659,1219510167,2.24,2.33,4.11,4.07,1.58,1.12,2.02,2
-24522,51,011,51011,9173,4250,494704158,493698148,9213,4276,511429525,510235999,14973,6921,866949083,863744566,99.57,99.39,96.73,96.76,61.26,61.41,57.06,57.16
-24522,51,029,51029,40,26,16725367,16537851,9213,4276,511429525,510235999,17146,7244,1511403487,1501304577,0.43,0.61,3.27,3.24,0.23,0.36,1.11,1.1
-24523,51,019,51019,12730,5840,567632826,565757032,18952,8760,585508319,583571207,68676,31937,1992358844,1950314965,67.17,66.67,96.95,96.95,18.54,18.29,28.49,29.01
-24523,51,515,51515,6222,2920,17875493,17814175,18952,8760,585508319,583571207,6222,2920,17875493,17814175,32.83,33.33,3.05,3.05,100,100,100,100
-24526,51,009,51009,0,0,31026787,30424993,1593,780,170899058,169045958,32353,13976,1240214627,1227484444,0,0,18.16,18,0,0,2.5,2.48
-24526,51,019,51019,1593,780,139872271,138620965,1593,780,170899058,169045958,68676,31937,1992358844,1950314965,100,100,81.84,82,2.32,2.44,7.02,7.11
-24527,51,143,51143,3027,1326,82545648,81781794,3027,1326,82545648,81781794,63506,31307,2533462228,2509545576,100,100,100,100,4.77,4.24,3.26,3.26
-24528,51,031,51031,2655,1314,145927021,145171779,3200,1615,255107558,253712765,54842,24769,1313971001,1305008854,82.97,81.36,57.2,57.22,4.84,5.31,11.11,11.12
-24528,51,037,51037,545,301,109180537,108540986,3200,1615,255107558,253712765,12586,6273,1236773483,1230945745,17.03,18.64,42.8,42.78,4.33,4.8,8.83,8.82
-24529,51,117,51117,1724,994,104077060,96753420,1724,994,104077060,96753420,32727,18591,1759193072,1619998831,100,100,100,100,5.27,5.35,5.92,5.97
-24530,51,089,51089,10,5,12961228,12926736,1088,591,91117974,90877335,54151,26268,995540242,990240760,0.92,0.85,14.22,14.22,0.02,0.02,1.3,1.31
-24530,51,143,51143,1078,586,78156746,77950599,1088,591,91117974,90877335,63506,31307,2533462228,2509545576,99.08,99.15,85.78,85.78,1.7,1.87,3.08,3.11
-24531,51,143,51143,9203,4596,514671434,511478603,9203,4596,514671434,511478603,63506,31307,2533462228,2509545576,100,100,100,100,14.49,14.68,20.31,20.38
-24534,51,083,51083,1740,956,150366254,149823119,1740,956,150366254,149823119,36241,18004,2148740960,2118193284,100,100,100,100,4.8,5.31,7,7.07
-24536,51,019,51019,194,99,15435516,15258290,194,99,15435516,15258290,68676,31937,1992358844,1950314965,100,100,100,100,0.28,0.31,0.77,0.78
-24538,51,011,51011,1633,716,90336955,89606913,4742,2097,239811133,238465935,14973,6921,866949083,863744566,34.44,34.14,37.67,37.58,10.91,10.35,10.42,10.37
-24538,51,031,51031,3109,1381,149474178,148859022,4742,2097,239811133,238465935,54842,24769,1313971001,1305008854,65.56,65.86,62.33,62.42,5.67,5.58,11.38,11.41
-24539,51,083,51083,134,86,19621787,19610518,134,86,19621787,19610518,36241,18004,2148740960,2118193284,100,100,100,100,0.37,0.48,0.91,0.93
-24540,51,143,51143,12837,5842,152832110,152346829,32170,15757,198191081,196953985,63506,31307,2533462228,2509545576,39.9,37.08,77.11,77.35,20.21,18.66,6.03,6.07
-24540,51,590,51590,19333,9915,45358971,44607156,32170,15757,198191081,196953985,43055,22438,113825782,111198695,60.1,62.92,22.89,22.65,44.9,44.19,39.85,40.11
-24541,51,143,51143,4499,2128,123374977,122481238,28221,14651,191841788,189072777,63506,31307,2533462228,2509545576,15.94,14.52,64.31,64.78,7.08,6.8,4.87,4.88
-24541,51,590,51590,23722,12523,68466811,66591539,28221,14651,191841788,189072777,43055,22438,113825782,111198695,84.06,85.48,35.69,35.22,55.1,55.81,60.15,59.89
-24549,51,143,51143,4292,1964,132521013,132234851,4292,1964,132521013,132234851,63506,31307,2533462228,2509545576,100,100,100,100,6.76,6.27,5.23,5.27
-24550,51,019,51019,422,177,16697686,16636952,7258,3126,169192615,168603358,68676,31937,1992358844,1950314965,5.81,5.66,9.87,9.87,0.61,0.55,0.84,0.85
-24550,51,031,51031,6836,2949,152494929,151966406,7258,3126,169192615,168603358,54842,24769,1313971001,1305008854,94.19,94.34,90.13,90.13,12.46,11.91,11.61,11.64
-24551,51,019,51019,17671,7021,171334385,170342013,20667,8302,177472241,176471454,68676,31937,1992358844,1950314965,85.5,84.57,96.54,96.53,25.73,21.98,8.6,8.73
-24551,51,031,51031,2824,1211,5041200,5032785,20667,8302,177472241,176471454,54842,24769,1313971001,1305008854,13.66,14.59,2.84,2.85,5.15,4.89,0.38,0.39
-24551,51,680,51680,172,70,1096656,1096656,20667,8302,177472241,176471454,75568,31992,128584693,127239697,0.83,0.84,0.62,0.62,0.23,0.22,0.85,0.86
-24553,51,009,51009,490,226,53703907,52622483,1902,969,333269774,327852446,32353,13976,1240214627,1227484444,25.76,23.32,16.11,16.05,1.51,1.62,4.33,4.29
-24553,51,011,51011,497,263,61537392,60658651,1902,969,333269774,327852446,14973,6921,866949083,863744566,26.13,27.14,18.46,18.5,3.32,3.8,7.1,7.02
-24553,51,029,51029,396,209,143347525,142392069,1902,969,333269774,327852446,17146,7244,1511403487,1501304577,20.82,21.57,43.01,43.43,2.31,2.89,9.48,9.48
-24553,51,125,51125,519,271,74680950,72179243,1902,969,333269774,327852446,15020,9931,1228444659,1219510167,27.29,27.97,22.41,22.02,3.46,2.73,6.08,5.92
-24554,51,031,51031,3995,1876,307298643,305731851,3995,1876,307298643,305731851,54842,24769,1313971001,1305008854,100,100,100,100,7.28,7.57,23.39,23.43
-24555,51,163,51163,2140,1044,61015703,60247386,2140,1044,61015703,60247386,22307,11152,1556509985,1547668571,100,100,100,100,9.59,9.36,3.92,3.89
-24556,51,019,51019,3053,1267,110965141,110607552,3053,1267,110965141,110607552,68676,31937,1992358844,1950314965,100,100,100,100,4.45,3.97,5.57,5.67
-24557,51,083,51083,37,23,1586857,1575561,7977,4286,429711224,425540689,36241,18004,2148740960,2118193284,0.46,0.54,0.37,0.37,0.1,0.13,0.07,0.07
-24557,51,143,51143,7940,4263,428124367,423965128,7977,4286,429711224,425540689,63506,31307,2533462228,2509545576,99.54,99.46,99.63,99.63,12.5,13.62,16.9,16.89
-24558,51,083,51083,6347,3042,246007768,243047410,6347,3042,246007768,243047410,36241,18004,2148740960,2118193284,100,100,100,100,17.51,16.9,11.45,11.47
-24562,51,003,51003,15,11,2833049,2628704,426,220,48306784,46514040,98970,42122,1880635577,1866599905,3.52,5,5.86,5.65,0.02,0.03,0.15,0.14
-24562,51,029,51029,333,156,28188602,27963454,426,220,48306784,46514040,17146,7244,1511403487,1501304577,78.17,70.91,58.35,60.12,1.94,2.15,1.87,1.86
-24562,51,125,51125,78,53,17285133,15921882,426,220,48306784,46514040,15020,9931,1228444659,1219510167,18.31,24.09,35.78,34.23,0.52,0.53,1.41,1.31
-24563,51,143,51143,5489,2779,176099124,174593798,5489,2779,176099124,174593798,63506,31307,2533462228,2509545576,100,100,100,100,8.64,8.88,6.95,6.96
-24565,51,083,51083,74,60,19564703,19550830,1026,656,149834873,148789733,36241,18004,2148740960,2118193284,7.21,9.15,13.06,13.14,0.2,0.33,0.91,0.92
-24565,51,143,51143,952,596,130270170,129238903,1026,656,149834873,148789733,63506,31307,2533462228,2509545576,92.79,90.85,86.94,86.86,1.5,1.9,5.14,5.15
-24566,51,143,51143,1402,640,96478747,96247594,1402,640,96478747,96247594,63506,31307,2533462228,2509545576,100,100,100,100,2.21,2.04,3.81,3.84
-24569,51,031,51031,158,76,17284031,16294876,1064,489,95379324,93707329,54842,24769,1313971001,1305008854,14.85,15.54,18.12,17.39,0.29,0.31,1.32,1.25
-24569,51,083,51083,218,107,21060374,20905863,1064,489,95379324,93707329,36241,18004,2148740960,2118193284,20.49,21.88,22.08,22.31,0.6,0.59,0.98,0.99
-24569,51,143,51143,688,306,57034919,56506590,1064,489,95379324,93707329,63506,31307,2533462228,2509545576,64.66,62.58,59.8,60.3,1.08,0.98,2.25,2.25
-24570,51,019,51019,20,10,2378172,2352797,20,10,2378172,2352797,68676,31937,1992358844,1950314965,100,100,100,100,0.03,0.03,0.12,0.12
-24571,51,019,51019,424,262,53894141,52458216,1979,1054,136297968,132886965,68676,31937,1992358844,1950314965,21.42,24.86,39.54,39.48,0.62,0.82,2.71,2.69
-24571,51,031,51031,1555,792,82403827,80428749,1979,1054,136297968,132886965,54842,24769,1313971001,1305008854,78.58,75.14,60.46,60.52,2.84,3.2,6.27,6.16
-24572,51,009,51009,16395,7016,170692274,165597603,16395,7016,170692274,165597603,32353,13976,1240214627,1227484444,100,100,100,100,50.68,50.2,13.76,13.49
-24574,51,009,51009,3977,1714,285316306,281871959,3977,1714,285316306,281871959,32353,13976,1240214627,1227484444,100,100,100,100,12.29,12.26,23.01,22.96
-24577,51,083,51083,5239,2775,500112699,497249391,5239,2775,500112699,497249391,36241,18004,2148740960,2118193284,100,100,100,100,14.46,15.41,23.27,23.48
-24578,51,163,51163,1056,516,90297573,90241052,1056,516,90297573,90241052,22307,11152,1556509985,1547668571,100,100,100,100,4.73,4.63,5.8,5.83
-24579,51,163,51163,1389,681,86045854,84903557,1389,681,86045854,84903557,22307,11152,1556509985,1547668571,100,100,100,100,6.23,6.11,5.53,5.49
-24580,51,117,51117,613,298,53745926,53605412,613,298,53745926,53605412,32727,18591,1759193072,1619998831,100,100,100,100,1.87,1.6,3.06,3.31
-24581,51,125,51125,23,27,12117032,11318824,23,27,12117032,11318824,15020,9931,1228444659,1219510167,100,100,100,100,0.15,0.27,0.99,0.93
-24586,51,143,51143,5562,2618,138016869,137397857,5562,2618,138016869,137397857,63506,31307,2533462228,2509545576,100,100,100,100,8.76,8.36,5.45,5.48
-24588,51,031,51031,9647,4025,188661386,188194987,9647,4025,188661386,188194987,54842,24769,1313971001,1305008854,100,100,100,100,17.59,16.25,14.36,14.42
-24589,51,083,51083,2271,1099,214824889,201220989,2271,1099,214824889,201220989,36241,18004,2148740960,2118193284,100,100,100,100,6.27,6.1,10,9.5
-24590,51,003,51003,3332,1478,158116691,156246158,8074,3549,438329124,431586458,98970,42122,1880635577,1866599905,41.27,41.65,36.07,36.2,3.37,3.51,8.41,8.37
-24590,51,029,51029,1954,918,162256616,159908219,8074,3549,438329124,431586458,17146,7244,1511403487,1501304577,24.2,25.87,37.02,37.05,11.4,12.67,10.74,10.65
-24590,51,065,51065,2788,1153,117955817,115432081,8074,3549,438329124,431586458,25691,10383,751481384,740750095,34.53,32.49,26.91,26.75,10.85,11.1,15.7,15.58
-24592,51,083,51083,13934,6707,328637577,325327013,13934,6707,328637577,325327013,36241,18004,2148740960,2118193284,100,100,100,100,38.45,37.25,15.29,15.36
-24593,51,011,51011,1963,916,94205384,93973327,1963,916,94205384,93973327,14973,6921,866949083,863744566,100,100,100,100,13.11,13.24,10.87,10.88
-24594,51,083,51083,510,277,79157785,78670845,1651,816,142813955,142184115,36241,18004,2148740960,2118193284,30.89,33.95,55.43,55.33,1.41,1.54,3.68,3.71
-24594,51,143,51143,1141,539,63656170,63513270,1651,816,142813955,142184115,63506,31307,2533462228,2509545576,69.11,66.05,44.57,44.67,1.8,1.72,2.51,2.53
-24595,51,009,51009,679,74,4827313,4771168,679,74,4827313,4771168,32353,13976,1240214627,1227484444,100,100,100,100,2.1,0.53,0.39,0.39
-24597,51,083,51083,1134,562,112600378,111991149,1257,636,129345934,128667968,36241,18004,2148740960,2118193284,90.21,88.36,87.05,87.04,3.13,3.12,5.24,5.29
-24597,51,143,51143,123,74,16745556,16676819,1257,636,129345934,128667968,63506,31307,2533462228,2509545576,9.79,11.64,12.95,12.96,0.19,0.24,0.66,0.66
-24598,51,083,51083,1950,1018,189781028,186375876,1984,1034,194717162,191295312,36241,18004,2148740960,2118193284,98.29,98.45,97.46,97.43,5.38,5.65,8.83,8.8
-24598,51,117,51117,34,16,4936134,4919436,1984,1034,194717162,191295312,32727,18591,1759193072,1619998831,1.71,1.55,2.54,2.57,0.1,0.09,0.28,0.3
-24599,51,029,51029,335,187,70955138,70659009,606,330,122099573,121179064,17146,7244,1511403487,1501304577,55.28,56.67,58.11,58.31,1.95,2.58,4.69,4.71
-24599,51,125,51125,271,143,51144435,50520055,606,330,122099573,121179064,15020,9931,1228444659,1219510167,44.72,43.33,41.89,41.69,1.8,1.44,4.16,4.14
-24601,51,185,51185,77,55,4958332,4958332,77,55,4958332,4958332,45078,20826,1346719908,1343805085,100,100,100,100,0.17,0.26,0.37,0.37
-24602,51,185,51185,962,456,128708016,128705229,962,456,128708016,128705229,45078,20826,1346719908,1343805085,100,100,100,100,2.13,2.19,9.56,9.58
-24603,51,027,51027,978,499,53691265,53375504,978,499,53691265,53375504,24098,11576,1304947073,1302149008,100,100,100,100,4.06,4.31,4.11,4.1
-24604,51,185,51185,262,132,8503302,8499889,342,176,10570729,10567316,45078,20826,1346719908,1343805085,76.61,75,80.44,80.44,0.58,0.63,0.63,0.63
-24604,54,047,54047,80,44,2067427,2067427,342,176,10570729,10567316,22113,11322,1385380127,1381643483,23.39,25,19.56,19.56,0.36,0.39,0.15,0.15
-24605,51,185,51185,9301,4293,124808033,124691736,9301,4293,124808033,124691736,45078,20826,1346719908,1343805085,100,100,100,100,20.63,20.61,9.27,9.28
-24606,51,185,51185,170,92,6060280,6059118,170,92,6060280,6059118,45078,20826,1346719908,1343805085,100,100,100,100,0.38,0.44,0.45,0.45
-24607,51,027,51027,370,176,19789290,19769571,462,220,32907672,32879293,24098,11576,1304947073,1302149008,80.09,80,60.14,60.13,1.54,1.52,1.52,1.52
-24607,51,051,51051,92,44,13118382,13109722,462,220,32907672,32879293,15903,7579,864181898,856074924,19.91,20,39.86,39.87,0.58,0.58,1.52,1.53
-24609,51,167,51167,1898,888,154729854,153274028,7630,3569,271246848,269275611,28897,13484,1234786652,1227192858,24.88,24.88,57.04,56.92,6.57,6.59,12.53,12.49
-24609,51,185,51185,5732,2681,116516994,116001583,7630,3569,271246848,269275611,45078,20826,1346719908,1343805085,75.12,75.12,42.96,43.08,12.72,12.87,8.65,8.63
-24612,51,185,51185,229,126,1372079,1372079,229,126,1372079,1372079,45078,20826,1346719908,1343805085,100,100,100,100,0.51,0.61,0.1,0.1
-24613,51,185,51185,911,433,30257114,29812404,911,433,30257114,29812404,45078,20826,1346719908,1343805085,100,100,100,100,2.02,2.08,2.25,2.22
-24614,51,027,51027,8061,3925,332634278,331636907,8061,3925,332634278,331636907,24098,11576,1304947073,1302149008,100,100,100,100,33.45,33.91,25.49,25.47
-24620,51,027,51027,2774,1344,199086769,198829348,2774,1344,199086769,198829348,24098,11576,1304947073,1302149008,100,100,100,100,11.51,11.61,15.26,15.27
-24622,51,027,51027,546,279,81479359,81461371,1028,509,128031515,128010243,24098,11576,1304947073,1302149008,53.11,54.81,63.64,63.64,2.27,2.41,6.24,6.26
-24622,51,185,51185,482,230,46552156,46548872,1028,509,128031515,128010243,45078,20826,1346719908,1343805085,46.89,45.19,36.36,36.36,1.07,1.1,3.46,3.46
-24628,51,027,51027,295,139,16543107,16513263,295,139,16543107,16513263,24098,11576,1304947073,1302149008,100,100,100,100,1.22,1.2,1.27,1.27
-24630,51,185,51185,6774,3150,170153485,169941223,6774,3150,170153485,169941223,45078,20826,1346719908,1343805085,100,100,100,100,15.03,15.13,12.63,12.65
-24631,51,027,51027,2843,1105,131615494,131058521,2843,1105,131615494,131058521,24098,11576,1304947073,1302149008,100,100,100,100,11.8,9.55,10.09,10.06
-24634,51,027,51027,574,274,37782442,37660616,574,274,37782442,37660616,24098,11576,1304947073,1302149008,100,100,100,100,2.38,2.37,2.9,2.89
-24635,51,185,51185,1650,330,15222774,15146544,1650,330,15222774,15146544,45078,20826,1346719908,1343805085,100,100,100,100,3.66,1.58,1.13,1.13
-24637,51,185,51185,3410,1480,74260267,73714394,3410,1480,74260267,73714394,45078,20826,1346719908,1343805085,100,100,100,100,7.56,7.11,5.51,5.49
-24639,51,027,51027,1227,573,72859001,72824187,3533,1646,109216372,109097052,24098,11576,1304947073,1302149008,34.73,34.81,66.71,66.75,5.09,4.95,5.58,5.59
-24639,51,167,51167,17,8,21776,21776,3533,1646,109216372,109097052,28897,13484,1234786652,1227192858,0.48,0.49,0.02,0.02,0.06,0.06,0,0
-24639,51,185,51185,2289,1065,36335595,36251089,3533,1646,109216372,109097052,45078,20826,1346719908,1343805085,64.79,64.7,33.27,33.23,5.08,5.11,2.7,2.7
-24641,51,185,51185,5953,2934,49543929,49392455,5953,2934,49543929,49392455,45078,20826,1346719908,1343805085,100,100,100,100,13.21,14.09,3.68,3.68
-24646,51,027,51027,750,372,30474531,30470177,750,372,30474531,30470177,24098,11576,1304947073,1302149008,100,100,100,100,3.11,3.21,2.34,2.34
-24649,51,027,51027,10,4,1249649,1248449,2760,1260,115325105,114654883,24098,11576,1304947073,1302149008,0.36,0.32,1.08,1.09,0.04,0.03,0.1,0.1
-24649,51,167,51167,2750,1256,114075456,113406434,2760,1260,115325105,114654883,28897,13484,1234786652,1227192858,99.64,99.68,98.92,98.91,9.52,9.31,9.24,9.24
-24651,51,185,51185,6314,3051,407411834,406791642,6314,3051,407411834,406791642,45078,20826,1346719908,1343805085,100,100,100,100,14.01,14.65,30.25,30.27
-24656,51,027,51027,3404,1724,177492575,177290531,3404,1724,177492575,177290531,24098,11576,1304947073,1302149008,100,100,100,100,14.13,14.89,13.6,13.62
-24657,51,027,51027,321,173,43381098,43264321,321,173,43381098,43264321,24098,11576,1304947073,1302149008,100,100,100,100,1.33,1.49,3.32,3.32
-24701,54,055,54055,20786,10339,167929882,166863182,20786,10339,167929882,166863182,62264,30115,1089669489,1085187156,100,100,100,100,33.38,34.33,15.41,15.38
-24712,54,055,54055,2063,731,23022550,22924880,2063,731,23022550,22924880,62264,30115,1089669489,1085187156,100,100,100,100,3.31,2.43,2.11,2.11
-24714,54,055,54055,257,132,32643569,32640588,257,132,32643569,32640588,62264,30115,1089669489,1085187156,100,100,100,100,0.41,0.44,3,3.01
-24715,54,055,54055,594,332,25545384,25393556,594,332,25545384,25393556,62264,30115,1089669489,1085187156,100,100,100,100,0.95,1.1,2.34,2.34
-24716,54,109,54109,508,238,53473578,53416359,508,238,53473578,53416359,23796,10958,1299704404,1293577717,100,100,100,100,2.13,2.17,4.11,4.13
-24719,54,109,54109,223,98,2622539,2622539,223,98,2622539,2622539,23796,10958,1299704404,1293577717,100,100,100,100,0.94,0.89,0.2,0.2
-24724,54,055,54055,66,39,407737,407737,66,39,407737,407737,62264,30115,1089669489,1085187156,100,100,100,100,0.11,0.13,0.04,0.04
-24726,54,109,54109,566,253,95672933,95381961,566,253,95672933,95381961,23796,10958,1299704404,1293577717,100,100,100,100,2.38,2.31,7.36,7.37
-24729,54,055,54055,149,79,12606087,12576815,149,79,12606087,12576815,62264,30115,1089669489,1085187156,100,100,100,100,0.24,0.26,1.16,1.16
-24731,54,055,54055,255,122,3307492,3307492,255,122,3307492,3307492,62264,30115,1089669489,1085187156,100,100,100,100,0.41,0.41,0.3,0.3
-24733,54,055,54055,853,385,15057855,15035083,853,385,15057855,15035083,62264,30115,1089669489,1085187156,100,100,100,100,1.37,1.28,1.38,1.39
-24736,54,055,54055,753,396,45774871,45754407,902,477,74064312,74035461,62264,30115,1089669489,1085187156,83.48,83.02,61.8,61.8,1.21,1.31,4.2,4.22
-24736,54,109,54109,149,81,28289441,28281054,902,477,74064312,74035461,23796,10958,1299704404,1293577717,16.52,16.98,38.2,38.2,0.63,0.74,2.18,2.19
-24737,54,055,54055,243,107,274511,270585,243,107,274511,270585,62264,30115,1089669489,1085187156,100,100,100,100,0.39,0.36,0.03,0.02
-24738,54,055,54055,308,145,3335400,3281432,308,145,3335400,3281432,62264,30115,1089669489,1085187156,100,100,100,100,0.49,0.48,0.31,0.3
-24740,54,055,54055,30435,14522,416800074,415274147,30435,14522,416800074,415274147,62264,30115,1089669489,1085187156,100,100,100,100,48.88,48.22,38.25,38.27
-24747,54,055,54055,3006,1386,103767778,102996799,3006,1386,103767778,102996799,62264,30115,1089669489,1085187156,100,100,100,100,4.83,4.6,9.52,9.49
-24801,54,047,54047,3576,1802,104019506,103896093,3858,1940,142450871,142241881,22113,11322,1385380127,1381643483,92.69,92.89,73.02,73.04,16.17,15.92,7.51,7.52
-24801,54,109,54109,282,138,38431365,38345788,3858,1940,142450871,142241881,23796,10958,1299704404,1293577717,7.31,7.11,26.98,26.96,1.19,1.26,2.96,2.96
-24808,54,047,54047,675,419,42302131,42281851,675,419,42302131,42281851,22113,11322,1385380127,1381643483,100,100,100,100,3.05,3.7,3.05,3.06
-24811,54,047,54047,599,276,40790557,40453363,599,276,40790557,40453363,22113,11322,1385380127,1381643483,100,100,100,100,2.71,2.44,2.94,2.93
-24813,54,047,54047,511,235,33427634,33312873,511,235,33427634,33312873,22113,11322,1385380127,1381643483,100,100,100,100,2.31,2.08,2.41,2.41
-24815,54,047,54047,559,292,55683934,55453464,559,292,55683934,55453464,22113,11322,1385380127,1381643483,100,100,100,100,2.53,2.58,4.02,4.01
-24816,54,047,54047,151,88,1314420,1267333,151,88,1314420,1267333,22113,11322,1385380127,1381643483,100,100,100,100,0.68,0.78,0.09,0.09
-24817,54,047,54047,954,451,29569917,29419425,954,451,29569917,29419425,22113,11322,1385380127,1381643483,100,100,100,100,4.31,3.98,2.13,2.13
-24818,54,109,54109,1409,618,66685632,66405233,1409,618,66685632,66405233,23796,10958,1299704404,1293577717,100,100,100,100,5.92,5.64,5.13,5.13
-24822,54,109,54109,955,425,48625200,48091516,955,425,48625200,48091516,23796,10958,1299704404,1293577717,100,100,100,100,4.01,3.88,3.74,3.72
-24823,54,109,54109,383,176,35340018,35309758,383,176,35340018,35309758,23796,10958,1299704404,1293577717,100,100,100,100,1.61,1.61,2.72,2.73
-24826,54,047,54047,150,85,35937087,35888742,150,85,35937087,35888742,22113,11322,1385380127,1381643483,100,100,100,100,0.68,0.75,2.59,2.6
-24827,54,109,54109,1501,618,100861239,100756161,1501,618,100861239,100756161,23796,10958,1299704404,1293577717,100,100,100,100,6.31,5.64,7.76,7.79
-24828,54,047,54047,890,411,54688575,54485862,927,430,57009071,56806358,22113,11322,1385380127,1381643483,96.01,95.58,95.93,95.92,4.02,3.63,3.95,3.94
-24828,54,109,54109,37,19,2320496,2320496,927,430,57009071,56806358,23796,10958,1299704404,1293577717,3.99,4.42,4.07,4.08,0.16,0.17,0.18,0.18
-24830,54,047,54047,139,111,22341338,22332919,139,111,22341338,22332919,22113,11322,1385380127,1381643483,100,100,100,100,0.63,0.98,1.61,1.62
-24831,54,047,54047,250,119,4554067,4553564,250,119,4554067,4553564,22113,11322,1385380127,1381643483,100,100,100,100,1.13,1.05,0.33,0.33
-24834,54,109,54109,412,190,31968368,31842988,412,190,31968368,31842988,23796,10958,1299704404,1293577717,100,100,100,100,1.73,1.73,2.46,2.46
-24836,54,047,54047,800,417,98643340,98388183,800,417,98643340,98388183,22113,11322,1385380127,1381643483,100,100,100,100,3.62,3.68,7.12,7.12
-24839,54,109,54109,1523,757,122060509,120608570,1523,757,122060509,120608570,23796,10958,1299704404,1293577717,100,100,100,100,6.4,6.91,9.39,9.32
-24843,54,047,54047,158,68,8632263,8624445,158,68,8632263,8624445,22113,11322,1385380127,1381643483,100,100,100,100,0.71,0.6,0.62,0.62
-24844,54,047,54047,1810,909,147229405,146436604,1810,909,147229405,146436604,22113,11322,1385380127,1381643483,100,100,100,100,8.19,8.03,10.63,10.6
-24845,54,109,54109,282,155,8626822,8626822,282,155,8626822,8626822,23796,10958,1299704404,1293577717,100,100,100,100,1.19,1.41,0.66,0.67
-24846,54,047,54047,92,55,7972937,7972174,244,117,18962962,18536951,22113,11322,1385380127,1381643483,37.7,47.01,42.04,43.01,0.42,0.49,0.58,0.58
-24846,54,059,54059,152,62,10990025,10564777,244,117,18962962,18536951,26839,12699,1098070479,1095846454,62.3,52.99,57.96,56.99,0.57,0.49,1,0.96
-24847,54,109,54109,293,138,4678214,4626832,293,138,4678214,4626832,23796,10958,1299704404,1293577717,100,100,100,100,1.23,1.26,0.36,0.36
-24848,54,047,54047,262,152,34506021,34460796,262,152,34506021,34460796,22113,11322,1385380127,1381643483,100,100,100,100,1.18,1.34,2.49,2.49
-24849,54,109,54109,337,157,27011216,26914006,337,157,27011216,26914006,23796,10958,1299704404,1293577717,100,100,100,100,1.42,1.43,2.08,2.08
-24850,54,047,54047,1093,524,39392869,39392526,1093,524,39392869,39392526,22113,11322,1385380127,1381643483,100,100,100,100,4.94,4.63,2.84,2.85
-24851,54,059,54059,398,191,2049844,1914970,419,203,2081278,1939182,26839,12699,1098070479,1095846454,94.99,94.09,98.49,98.75,1.48,1.5,0.19,0.17
-24851,54,109,54109,21,12,31434,24212,419,203,2081278,1939182,23796,10958,1299704404,1293577717,5.01,5.91,1.51,1.25,0.09,0.11,0,0
-24853,54,047,54047,793,446,56543803,56506005,793,446,56543803,56506005,22113,11322,1385380127,1381643483,100,100,100,100,3.59,3.94,4.08,4.09
-24854,54,109,54109,550,218,15259283,15235020,550,218,15259283,15235020,23796,10958,1299704404,1293577717,100,100,100,100,2.31,1.99,1.17,1.18
-24857,54,109,54109,984,426,21470367,21356141,984,426,21470367,21356141,23796,10958,1299704404,1293577717,100,100,100,100,4.14,3.89,1.65,1.65
-24860,54,109,54109,552,278,15498035,15405704,552,278,15498035,15405704,23796,10958,1299704404,1293577717,100,100,100,100,2.32,2.54,1.19,1.19
-24861,54,047,54047,307,167,10370342,10367198,307,167,10370342,10367198,22113,11322,1385380127,1381643483,100,100,100,100,1.39,1.48,0.75,0.75
-24862,54,047,54047,651,326,27866793,27758331,651,326,27866793,27758331,22113,11322,1385380127,1381643483,100,100,100,100,2.94,2.88,2.01,2.01
-24866,54,047,54047,240,114,26391099,26391099,240,114,26391099,26391099,22113,11322,1385380127,1381643483,100,100,100,100,1.09,1.01,1.9,1.91
-24867,54,109,54109,409,166,34221550,34097864,409,166,34221550,34097864,23796,10958,1299704404,1293577717,100,100,100,100,1.72,1.51,2.63,2.64
-24868,54,047,54047,1686,948,104880929,104792643,1686,948,104880929,104792643,22113,11322,1385380127,1381643483,100,100,100,100,7.62,8.37,7.57,7.58
-24869,54,109,54109,351,164,12002975,11998464,351,164,12002975,11998464,23796,10958,1299704404,1293577717,100,100,100,100,1.48,1.5,0.92,0.93
-24870,54,109,54109,2874,1308,101290301,100875168,2874,1308,101290301,100875168,23796,10958,1299704404,1293577717,100,100,100,100,12.08,11.94,7.79,7.8
-24871,54,047,54047,309,141,22767358,22651063,309,141,22767358,22651063,22113,11322,1385380127,1381643483,100,100,100,100,1.4,1.25,1.64,1.64
-24872,54,047,54047,783,391,80544835,80236526,783,391,80544835,80236526,22113,11322,1385380127,1381643483,100,100,100,100,3.54,3.45,5.81,5.81
-24873,54,047,54047,600,331,42778828,42773936,600,331,42778828,42773936,22113,11322,1385380127,1381643483,100,100,100,100,2.71,2.92,3.09,3.1
-24874,54,109,54109,2729,1340,171773929,170934729,2729,1340,171773929,170934729,23796,10958,1299704404,1293577717,100,100,100,100,11.47,12.23,13.22,13.21
-24878,54,047,54047,337,163,23065356,22935941,337,163,23065356,22935941,22113,11322,1385380127,1381643483,100,100,100,100,1.52,1.44,1.66,1.66
-24879,54,047,54047,657,314,40535509,40474688,657,314,40535509,40474688,22113,11322,1385380127,1381643483,100,100,100,100,2.97,2.77,2.93,2.93
-24880,54,109,54109,356,167,12653007,12648685,356,167,12653007,12648685,23796,10958,1299704404,1293577717,100,100,100,100,1.5,1.52,0.97,0.98
-24881,54,047,54047,601,303,31553570,31435371,601,303,31553570,31435371,22113,11322,1385380127,1381643483,100,100,100,100,2.72,2.68,2.28,2.28
-24882,54,109,54109,483,198,32762581,32122520,483,198,32762581,32122520,23796,10958,1299704404,1293577717,100,100,100,100,2.03,1.81,2.52,2.48
-24884,54,047,54047,265,145,57810872,57801317,265,145,57810872,57801317,22113,11322,1385380127,1381643483,100,100,100,100,1.2,1.28,4.17,4.18
-24887,54,047,54047,67,28,7538347,7537386,67,28,7538347,7537386,22113,11322,1385380127,1381643483,100,100,100,100,0.3,0.25,0.54,0.55
-24888,54,047,54047,167,93,14271737,14245525,167,93,14271737,14245525,22113,11322,1385380127,1381643483,100,100,100,100,0.76,0.82,1.03,1.03
-24892,54,047,54047,1513,778,56795916,56511082,1513,778,56795916,56511082,22113,11322,1385380127,1381643483,100,100,100,100,6.84,6.87,4.1,4.09
-24894,54,047,54047,388,176,18591405,18537728,388,176,18591405,18537728,22113,11322,1385380127,1381643483,100,100,100,100,1.75,1.55,1.34,1.34
-24898,54,109,54109,198,96,723820,616023,198,96,723820,616023,23796,10958,1299704404,1293577717,100,100,100,100,0.83,0.88,0.06,0.05
-24901,54,025,54025,9128,4696,226978280,225846369,9128,4696,226978280,225846369,35480,18980,2653468249,2640671499,100,100,100,100,25.73,24.74,8.55,8.55
-24910,54,025,54025,2434,1346,154272960,153514909,5383,2449,358141623,356198915,35480,18980,2653468249,2640671499,45.22,54.96,43.08,43.1,6.86,7.09,5.81,5.81
-24910,54,063,54063,958,560,105867268,105589245,5383,2449,358141623,356198915,13502,7601,1226721080,1224422242,17.8,22.87,29.56,29.64,7.1,7.37,8.63,8.62
-24910,54,089,54089,1991,543,98001395,97094761,5383,2449,358141623,356198915,13927,7680,952408167,933586742,36.99,22.17,27.36,27.26,14.3,7.07,10.29,10.4
-24915,54,075,54075,590,517,130150303,130150271,590,517,130150303,130150271,8719,8847,2439301935,2435323587,100,100,100,100,6.77,5.84,5.34,5.34
-24916,54,025,54025,558,289,43591271,43567320,558,289,43591271,43567320,35480,18980,2653468249,2640671499,100,100,100,100,1.57,1.52,1.64,1.65
-24918,54,063,54063,1562,779,109488416,109128183,1677,825,113421550,113057935,13502,7601,1226721080,1224422242,93.14,94.42,96.53,96.52,11.57,10.25,8.93,8.91
-24918,54,089,54089,115,46,3933134,3929752,1677,825,113421550,113057935,13927,7680,952408167,933586742,6.86,5.58,3.47,3.48,0.83,0.6,0.41,0.42
-24920,54,075,54075,346,283,182305576,182220145,346,283,182305576,182220145,8719,8847,2439301935,2435323587,100,100,100,100,3.97,3.2,7.47,7.48
-24924,54,075,54075,512,369,62299654,61686939,512,369,62299654,61686939,8719,8847,2439301935,2435323587,100,100,100,100,5.87,4.17,2.55,2.53
-24925,54,025,54025,846,415,64227876,63720255,935,463,90572146,90063531,35480,18980,2653468249,2640671499,90.48,89.63,70.91,70.75,2.38,2.19,2.42,2.41
-24925,54,063,54063,89,48,26344270,26343276,935,463,90572146,90063531,13502,7601,1226721080,1224422242,9.52,10.37,29.09,29.25,0.66,0.63,2.15,2.15
-24927,54,075,54075,365,424,103759342,103736433,365,424,103759342,103736433,8719,8847,2439301935,2435323587,100,100,100,100,4.19,4.79,4.25,4.26
-24931,54,025,54025,1544,732,164479212,164265800,1544,732,164479212,164265800,35480,18980,2653468249,2640671499,100,100,100,100,4.35,3.86,6.2,6.22
-24934,54,075,54075,503,542,170168175,170027505,503,542,170168175,170027505,8719,8847,2439301935,2435323587,100,100,100,100,5.77,6.13,6.98,6.98
-24935,54,089,54089,688,515,75581272,74376165,688,515,75581272,74376165,13927,7680,952408167,933586742,100,100,100,100,4.94,6.71,7.94,7.97
-24938,54,025,54025,1518,774,72193567,71927670,1518,774,72193567,71927670,35480,18980,2653468249,2640671499,100,100,100,100,4.28,4.08,2.72,2.72
-24941,54,063,54063,1059,837,183026585,182777576,1059,837,183026585,182777576,13502,7601,1226721080,1224422242,100,100,100,100,7.84,11.01,14.92,14.93
-24944,54,075,54075,401,416,77419563,77419563,401,416,77419563,77419563,8719,8847,2439301935,2435323587,100,100,100,100,4.6,4.7,3.17,3.18
-24945,54,063,54063,393,229,43292384,43139377,393,229,43292384,43139377,13502,7601,1226721080,1224422242,100,100,100,100,2.91,3.01,3.53,3.52
-24946,54,075,54075,1533,1051,456565685,455456923,1533,1051,456565685,455456923,8719,8847,2439301935,2435323587,100,100,100,100,17.58,11.88,18.72,18.7
-24951,54,063,54063,1489,695,95198702,95170248,1489,695,95198702,95170248,13502,7601,1226721080,1224422242,100,100,100,100,11.03,9.14,7.76,7.77
-24954,54,075,54075,3514,2518,739467764,737484952,3514,2518,739467764,737484952,8719,8847,2439301935,2435323587,100,100,100,100,40.3,28.46,30.31,30.28
-24957,54,025,54025,346,155,9779809,9771661,346,155,9779809,9771661,35480,18980,2653468249,2640671499,100,100,100,100,0.98,0.82,0.37,0.37
-24962,54,089,54089,186,112,8688994,8215584,186,112,8688994,8215584,13927,7680,952408167,933586742,100,100,100,100,1.34,1.46,0.91,0.88
-24963,54,063,54063,3957,1851,117586666,117365450,4095,2023,139977254,138903044,13502,7601,1226721080,1224422242,96.63,91.5,84,84.49,29.31,24.35,9.59,9.59
-24963,54,089,54089,138,172,22390588,21537594,4095,2023,139977254,138903044,13927,7680,952408167,933586742,3.37,8.5,16,15.51,0.99,2.24,2.35,2.31
-24966,54,025,54025,1286,847,513748783,510271628,1286,847,513748783,510271628,35480,18980,2653468249,2640671499,100,100,100,100,3.62,4.46,19.36,19.32
-24970,54,025,54025,4525,2244,102424767,100722018,4575,2273,106215689,104445251,35480,18980,2653468249,2640671499,98.91,98.72,96.43,96.44,12.75,11.82,3.86,3.81
-24970,54,063,54063,50,29,3790922,3723233,4575,2273,106215689,104445251,13502,7601,1226721080,1224422242,1.09,1.28,3.57,3.56,0.37,0.38,0.31,0.3
-24974,54,063,54063,299,128,18963262,18899578,299,128,18963262,18899578,13502,7601,1226721080,1224422242,100,100,100,100,2.21,1.68,1.55,1.54
-24976,54,025,54025,52,23,5338345,5337569,1005,478,75441631,75213290,35480,18980,2653468249,2640671499,5.17,4.81,7.08,7.1,0.15,0.12,0.2,0.2
-24976,54,063,54063,953,455,70103286,69875721,1005,478,75441631,75213290,13502,7601,1226721080,1224422242,94.83,95.19,92.92,92.9,7.06,5.99,5.71,5.71
-24977,54,025,54025,441,205,34399418,34189769,441,205,34399418,34189769,35480,18980,2653468249,2640671499,100,100,100,100,1.24,1.08,1.3,1.29
-24981,54,063,54063,65,33,8775936,8769155,631,471,32665406,31870452,13502,7601,1226721080,1224422242,10.3,7.01,26.87,27.52,0.48,0.43,0.72,0.72
-24981,54,089,54089,566,438,23889470,23101297,631,471,32665406,31870452,13927,7680,952408167,933586742,89.7,92.99,73.13,72.48,4.06,5.7,2.51,2.47
-24983,54,063,54063,2443,1448,322474017,321969144,2443,1448,322474017,321969144,13502,7601,1226721080,1224422242,100,100,100,100,18.09,19.05,26.29,26.3
-24984,54,063,54063,185,509,121809366,121672056,185,509,121809366,121672056,13502,7601,1226721080,1224422242,100,100,100,100,1.37,6.7,9.93,9.94
-24986,54,025,54025,5180,3218,570370186,568117419,5216,3267,582224260,579971493,35480,18980,2653468249,2640671499,99.31,98.5,97.96,97.96,14.6,16.95,21.5,21.51
-24986,54,075,54075,36,49,11854074,11854074,5216,3267,582224260,579971493,8719,8847,2439301935,2435323587,0.69,1.5,2.04,2.04,0.41,0.55,0.49,0.49
-24991,54,025,54025,521,327,123387911,123333065,521,327,123387911,123333065,35480,18980,2653468249,2640671499,100,100,100,100,1.47,1.72,4.65,4.67
-25002,54,019,54019,112,68,6557573,6557573,112,68,6557573,6557573,46039,21618,1731012578,1713406009,100,100,100,100,0.24,0.31,0.38,0.38
-25003,54,039,54039,1213,552,61742584,61017479,2782,1243,93728074,92856230,193063,92618,2359273486,2335100448,43.6,44.41,65.87,65.71,0.63,0.6,2.62,2.61
-25003,54,043,54043,1569,691,31985490,31838751,2782,1243,93728074,92856230,21720,9887,1135948713,1131924510,56.4,55.59,34.13,34.29,7.22,6.99,2.82,2.81
-25005,54,087,54087,264,132,19153838,19153838,264,132,19153838,19153838,14926,7351,1252826385,1252421705,100,100,100,100,1.77,1.8,1.53,1.53
-25007,54,081,54081,604,246,13691974,13624518,604,246,13691974,13624518,78859,35931,1578201465,1567850996,100,100,100,100,0.77,0.68,0.87,0.87
-25008,54,081,54081,210,91,29301081,29287088,210,91,29301081,29287088,78859,35931,1578201465,1567850996,100,100,100,100,0.27,0.25,1.86,1.87
-25009,54,005,54005,1153,517,74929635,74643983,1153,517,74929635,74643983,24629,11070,1303273345,1298991045,100,100,100,100,4.68,4.67,5.75,5.75
-25011,54,079,54079,800,346,1203122,1032853,800,346,1203122,1032853,55486,23438,907529236,895279233,100,100,100,100,1.44,1.48,0.13,0.12
-25015,54,039,54039,4691,2277,68896002,66515040,4691,2277,68896002,66515040,193063,92618,2359273486,2335100448,100,100,100,100,2.43,2.46,2.92,2.85
-25019,54,015,54015,575,249,58612930,58582157,575,249,58612930,58582157,9386,4572,890479886,885522451,100,100,100,100,6.13,5.45,6.58,6.62
-25021,54,005,54005,305,149,17234611,17142462,305,149,17234611,17142462,24629,11070,1303273345,1298991045,100,100,100,100,1.24,1.35,1.32,1.32
-25022,54,045,54045,153,89,91505697,91300082,153,89,91505697,91300082,36743,16743,1180039747,1175173524,100,100,100,100,0.42,0.53,7.75,7.77
-25024,54,005,54005,586,252,14939136,14864376,586,252,14939136,14864376,24629,11070,1303273345,1298991045,100,100,100,100,2.38,2.28,1.15,1.14
-25025,54,039,54039,230,102,40132329,40129946,230,102,40132329,40129946,193063,92618,2359273486,2335100448,100,100,100,100,0.12,0.11,1.7,1.72
-25028,54,005,54005,381,167,8351853,8289480,381,167,8351853,8289480,24629,11070,1303273345,1298991045,100,100,100,100,1.55,1.51,0.64,0.64
-25030,54,015,54015,414,205,40331811,40193597,414,205,40331811,40193597,9386,4572,890479886,885522451,100,100,100,100,4.41,4.48,4.53,4.54
-25031,54,019,54019,615,342,12216636,11863023,615,342,12216636,11863023,46039,21618,1731012578,1713406009,100,100,100,100,1.34,1.58,0.71,0.69
-25033,54,079,54079,2234,1013,66353715,64411946,2234,1013,66353715,64411946,55486,23438,907529236,895279233,100,100,100,100,4.03,4.32,7.31,7.19
-25035,54,039,54039,1112,567,30595815,29950088,1112,567,30595815,29950088,193063,92618,2359273486,2335100448,100,100,100,100,0.58,0.61,1.3,1.28
-25036,54,019,54019,413,184,21352853,21320588,468,209,21586180,21553915,46039,21618,1731012578,1713406009,88.25,88.04,98.92,98.92,0.9,0.85,1.23,1.24
-25036,54,039,54039,55,25,233327,233327,468,209,21586180,21553915,193063,92618,2359273486,2335100448,11.75,11.96,1.08,1.08,0.03,0.03,0.01,0.01
-25039,54,039,54039,1304,592,66245156,66242425,1304,592,66245156,66242425,193063,92618,2359273486,2335100448,100,100,100,100,0.68,0.64,2.81,2.84
-25040,54,019,54019,546,278,1998127,1365002,546,278,1998127,1365002,46039,21618,1731012578,1713406009,100,100,100,100,1.19,1.29,0.12,0.08
-25043,54,015,54015,1608,870,270706036,268800926,1659,890,311288289,309380149,9386,4572,890479886,885522451,96.93,97.75,86.96,86.88,17.13,19.03,30.4,30.36
-25043,54,067,54067,51,20,40582253,40579223,1659,890,311288289,309380149,26233,13064,1694905116,1675266140,3.07,2.25,13.04,13.12,0.19,0.15,2.39,2.42
-25044,54,081,54081,384,173,38183731,38017324,384,173,38183731,38017324,78859,35931,1578201465,1567850996,100,100,100,100,0.49,0.48,2.42,2.42
-25045,54,015,54015,419,198,24789518,24629950,5801,2667,375678304,373940549,9386,4572,890479886,885522451,7.22,7.42,6.6,6.59,4.46,4.33,2.78,2.78
-25045,54,039,54039,4622,2118,301766799,300188612,5801,2667,375678304,373940549,193063,92618,2359273486,2335100448,79.68,79.42,80.33,80.28,2.39,2.29,12.79,12.86
-25045,54,087,54087,760,351,49121987,49121987,5801,2667,375678304,373940549,14926,7351,1252826385,1252421705,13.1,13.16,13.08,13.14,5.09,4.77,3.92,3.92
-25047,54,005,54005,161,69,19118088,18992982,411,181,19895024,19726215,24629,11070,1303273345,1298991045,39.17,38.12,96.09,96.28,0.65,0.62,1.47,1.46
-25047,54,045,54045,250,112,776936,733233,411,181,19895024,19726215,36743,16743,1180039747,1175173524,60.83,61.88,3.91,3.72,0.68,0.67,0.07,0.06
-25048,54,081,54081,38,23,68930,68930,38,23,68930,68930,78859,35931,1578201465,1567850996,100,100,100,100,0.05,0.06,0,0
-25049,54,005,54005,630,262,40413878,40330045,630,262,40413878,40330045,24629,11070,1303273345,1298991045,100,100,100,100,2.56,2.37,3.1,3.1
-25051,54,005,54005,164,75,1180980,1158527,164,75,1180980,1158527,24629,11070,1303273345,1298991045,100,100,100,100,0.67,0.68,0.09,0.09
-25053,54,005,54005,4296,1933,122237669,121814413,4296,1933,122237669,121814413,24629,11070,1303273345,1298991045,100,100,100,100,17.44,17.46,9.38,9.38
-25054,54,039,54039,426,182,43381811,43235959,426,182,43381811,43235959,193063,92618,2359273486,2335100448,100,100,100,100,0.22,0.2,1.84,1.85
-25057,54,019,54019,337,158,2646048,2358981,337,158,2646048,2358981,46039,21618,1731012578,1713406009,100,100,100,100,0.73,0.73,0.15,0.14
-25059,54,019,54019,386,164,21381658,21377312,678,291,27908581,27904235,46039,21618,1731012578,1713406009,56.93,56.36,76.61,76.61,0.84,0.76,1.24,1.25
-25059,54,067,54067,292,127,6526923,6526923,678,291,27908581,27904235,26233,13064,1694905116,1675266140,43.07,43.64,23.39,23.39,1.11,0.97,0.39,0.39
-25060,54,081,54081,618,276,64874802,64599708,618,276,64874802,64599708,78859,35931,1578201465,1567850996,100,100,100,100,0.78,0.77,4.11,4.12
-25061,54,039,54039,756,327,26219537,26092525,756,327,26219537,26092525,193063,92618,2359273486,2335100448,100,100,100,100,0.39,0.35,1.11,1.12
-25062,54,081,54081,230,108,8244807,8222394,230,108,8244807,8222394,78859,35931,1578201465,1567850996,100,100,100,100,0.29,0.3,0.52,0.52
-25063,54,007,54007,1051,592,125587766,124712538,1797,975,225786800,224631261,14523,7415,1337141156,1322996847,58.49,60.72,55.62,55.52,7.24,7.98,9.39,9.43
-25063,54,015,54015,697,365,96023631,95744439,1797,975,225786800,224631261,9386,4572,890479886,885522451,38.79,37.44,42.53,42.62,7.43,7.98,10.78,10.81
-25063,54,067,54067,49,18,4175403,4174284,1797,975,225786800,224631261,26233,13064,1694905116,1675266140,2.73,1.85,1.85,1.86,0.19,0.14,0.25,0.25
-25064,54,039,54039,9962,5102,18884274,17737460,9962,5102,18884274,17737460,193063,92618,2359273486,2335100448,100,100,100,100,5.16,5.51,0.8,0.76
-25067,54,039,54039,1120,525,14657269,14028089,1120,525,14657269,14028089,193063,92618,2359273486,2335100448,100,100,100,100,0.58,0.57,0.62,0.6
-25070,54,079,54079,1683,723,12526929,12091749,1683,723,12526929,12091749,55486,23438,907529236,895279233,100,100,100,100,3.03,3.08,1.38,1.35
-25071,54,039,54039,11572,5178,258954613,257424226,11697,5237,269308052,267777665,193063,92618,2359273486,2335100448,98.93,98.87,96.16,96.13,5.99,5.59,10.98,11.02
-25071,54,087,54087,125,59,10353439,10353439,11697,5237,269308052,267777665,14926,7351,1252826385,1252421705,1.07,1.13,3.84,3.87,0.84,0.8,0.83,0.83
-25075,54,039,54039,976,421,141657002,141444354,976,421,141657002,141444354,193063,92618,2359273486,2335100448,100,100,100,100,0.51,0.45,6,6.06
-25076,54,045,54045,298,128,21141544,21134306,298,128,21141544,21134306,36743,16743,1180039747,1175173524,100,100,100,100,0.81,0.76,1.79,1.8
-25081,54,005,54005,1251,498,36454536,36452849,1251,498,36454536,36452849,24629,11070,1303273345,1298991045,100,100,100,100,5.08,4.5,2.8,2.81
-25082,54,053,54053,522,281,67260555,66222958,1673,773,137566787,135547580,27324,13006,1151807713,1115632960,31.2,36.35,48.89,48.86,1.91,2.16,5.84,5.94
-25082,54,079,54079,1151,492,70306232,69324622,1673,773,137566787,135547580,55486,23438,907529236,895279233,68.8,63.65,51.11,51.14,2.07,2.1,7.75,7.74
-25083,54,019,54019,42,21,26574546,26520714,672,299,72960814,72510211,46039,21618,1731012578,1713406009,6.25,7.02,36.42,36.58,0.09,0.1,1.54,1.55
-25083,54,039,54039,630,278,46386268,45989497,672,299,72960814,72510211,193063,92618,2359273486,2335100448,93.75,92.98,63.58,63.42,0.33,0.3,1.97,1.97
-25085,54,019,54019,830,472,36958287,35883497,830,472,36958287,35883497,46039,21618,1731012578,1713406009,100,100,100,100,1.8,2.18,2.14,2.09
-25086,54,039,54039,928,361,1980701,1423150,928,361,1980701,1423150,193063,92618,2359273486,2335100448,100,100,100,100,0.48,0.39,0.08,0.06
-25088,54,015,54015,164,80,40321690,40262267,164,80,40321690,40262267,9386,4572,890479886,885522451,100,100,100,100,1.75,1.75,4.53,4.55
-25090,54,019,54019,203,104,4298075,3649430,203,104,4298075,3649430,46039,21618,1731012578,1713406009,100,100,100,100,0.44,0.48,0.25,0.21
-25093,54,005,54005,207,98,19309114,19306518,207,98,19309114,19306518,24629,11070,1303273345,1298991045,100,100,100,100,0.84,0.89,1.48,1.49
-25102,54,039,54039,349,156,2745591,2497413,349,156,2745591,2497413,193063,92618,2359273486,2335100448,100,100,100,100,0.18,0.17,0.12,0.11
-25103,54,039,54039,366,184,11332023,10921842,366,184,11332023,10921842,193063,92618,2359273486,2335100448,100,100,100,100,0.19,0.2,0.48,0.47
-25106,54,053,54053,642,310,43780978,42141046,642,310,43780978,42141046,27324,13006,1151807713,1115632960,100,100,100,100,2.35,2.38,3.8,3.78
-25107,54,039,54039,739,344,79553261,79542846,739,344,79553261,79542846,193063,92618,2359273486,2335100448,100,100,100,100,0.38,0.37,3.37,3.41
-25108,54,005,54005,634,269,18617144,18616685,692,294,18791840,18791381,24629,11070,1303273345,1298991045,91.62,91.5,99.07,99.07,2.57,2.43,1.43,1.43
-25108,54,045,54045,58,25,174696,174696,692,294,18791840,18791381,36743,16743,1180039747,1175173524,8.38,8.5,0.93,0.93,0.16,0.15,0.01,0.01
-25109,54,079,54079,661,295,2450927,2010914,661,295,2450927,2010914,55486,23438,907529236,895279233,100,100,100,100,1.19,1.26,0.27,0.22
-25110,54,039,54039,599,287,57866016,57719180,599,287,57866016,57719180,193063,92618,2359273486,2335100448,100,100,100,100,0.31,0.31,2.45,2.47
-25111,54,015,54015,556,255,46629298,46521824,694,322,79646920,79522145,9386,4572,890479886,885522451,80.12,79.19,58.55,58.5,5.92,5.58,5.24,5.25
-25111,54,067,54067,138,67,33017622,33000321,694,322,79646920,79522145,26233,13064,1694905116,1675266140,19.88,20.81,41.45,41.5,0.53,0.51,1.95,1.97
-25112,54,039,54039,166,0,85139,85139,166,0,85139,85139,193063,92618,2359273486,2335100448,100,0,100,100,0.09,0,0,0
-25113,54,015,54015,957,449,83443707,82470156,957,449,83443707,82470156,9386,4572,890479886,885522451,100,100,100,100,10.2,9.82,9.37,9.31
-25114,54,005,54005,557,266,29180095,29118534,557,266,29180095,29118534,24629,11070,1303273345,1298991045,100,100,100,100,2.26,2.4,2.24,2.24
-25115,54,019,54019,90,48,22167905,20866626,90,48,22167905,20866626,46039,21618,1731012578,1713406009,100,100,100,100,0.2,0.22,1.28,1.22
-25118,54,019,54019,998,462,44143875,44089533,998,462,44143875,44089533,46039,21618,1731012578,1713406009,100,100,100,100,2.17,2.14,2.55,2.57
-25119,54,019,54019,444,189,30746873,30592880,444,189,30746873,30592880,46039,21618,1731012578,1713406009,100,100,100,100,0.96,0.87,1.78,1.79
-25121,54,045,54045,972,431,43105563,43105563,972,431,43105563,43105563,36743,16743,1180039747,1175173524,100,100,100,100,2.65,2.57,3.65,3.67
-25123,54,053,54053,2955,1466,254328977,251891946,3535,1748,311177969,308724990,27324,13006,1151807713,1115632960,83.59,83.87,81.73,81.59,10.81,11.27,22.08,22.58
-25123,54,079,54079,580,282,56848992,56833044,3535,1748,311177969,308724990,55486,23438,907529236,895279233,16.41,16.13,18.27,18.41,1.05,1.2,6.26,6.35
-25124,54,035,54035,33,15,420006,420006,1214,556,77211587,77200736,29211,13305,1221513901,1202654983,2.72,2.7,0.54,0.54,0.11,0.11,0.03,0.03
-25124,54,039,54039,8,4,19694,19694,1214,556,77211587,77200736,193063,92618,2359273486,2335100448,0.66,0.72,0.03,0.03,0,0,0,0
-25124,54,079,54079,1173,537,76771887,76761036,1214,556,77211587,77200736,55486,23438,907529236,895279233,96.62,96.58,99.43,99.43,2.11,2.29,8.46,8.57
-25125,54,015,54015,895,399,64345245,64337838,1011,462,69725308,69717154,9386,4572,890479886,885522451,88.53,86.36,92.28,92.28,9.54,8.73,7.23,7.27
-25125,54,067,54067,116,63,5380063,5379316,1011,462,69725308,69717154,26233,13064,1694905116,1675266140,11.47,13.64,7.72,7.72,0.44,0.48,0.32,0.32
-25126,54,039,54039,58,33,280904,253087,58,33,280904,253087,193063,92618,2359273486,2335100448,100,100,100,100,0.03,0.04,0.01,0.01
-25130,54,005,54005,3846,1777,59065291,58619413,3846,1777,59065291,58619413,24629,11070,1303273345,1298991045,100,100,100,100,15.62,16.05,4.53,4.51
-25132,54,039,54039,276,125,47181059,47171775,276,125,47181059,47171775,193063,92618,2359273486,2335100448,100,100,100,100,0.14,0.13,2,2.02
-25133,54,015,54015,922,420,41277884,41269738,922,420,41277884,41269738,9386,4572,890479886,885522451,100,100,100,100,9.82,9.19,4.64,4.66
-25134,54,039,54039,423,223,19791686,19703646,423,223,19791686,19703646,193063,92618,2359273486,2335100448,100,100,100,100,0.22,0.24,0.84,0.84
-25136,54,019,54019,1055,498,12133000,11812719,1798,933,22868516,22283481,46039,21618,1731012578,1713406009,58.68,53.38,53.06,53.01,2.29,2.3,0.7,0.69
-25136,54,039,54039,743,435,10735516,10470762,1798,933,22868516,22283481,193063,92618,2359273486,2335100448,41.32,46.62,46.94,46.99,0.38,0.47,0.46,0.45
-25139,54,019,54019,440,183,1875023,1432286,440,183,1875023,1432286,46039,21618,1731012578,1713406009,100,100,100,100,0.96,0.85,0.11,0.08
-25140,54,081,54081,1012,520,145749956,145360926,1012,520,145749956,145360926,78859,35931,1578201465,1567850996,100,100,100,100,1.28,1.45,9.24,9.27
-25141,54,015,54015,195,98,14839276,14837949,195,98,14839276,14837949,9386,4572,890479886,885522451,100,100,100,100,2.08,2.14,1.67,1.68
-25142,54,005,54005,416,190,11073731,11030773,416,190,11073731,11030773,24629,11070,1303273345,1298991045,100,100,100,100,1.69,1.72,0.85,0.85
-25143,54,039,54039,6335,3072,16844077,15786762,8579,4134,24535154,22706211,193063,92618,2359273486,2335100448,73.84,74.31,68.65,69.53,3.28,3.32,0.71,0.68
-25143,54,079,54079,2244,1062,7691077,6919449,8579,4134,24535154,22706211,55486,23438,907529236,895279233,26.16,25.69,31.35,30.47,4.04,4.53,0.85,0.77
-25148,54,005,54005,332,145,10201130,10032992,332,145,10201130,10032992,24629,11070,1303273345,1298991045,100,100,100,100,1.35,1.31,0.78,0.77
-25149,54,005,54005,242,116,23208417,23073046,242,116,23208417,23073046,24629,11070,1303273345,1298991045,100,100,100,100,0.98,1.05,1.78,1.78
-25152,54,019,54019,368,173,9173315,9158188,368,173,9173315,9158188,46039,21618,1731012578,1713406009,100,100,100,100,0.8,0.8,0.53,0.53
-25154,54,005,54005,868,379,48137496,48020979,868,379,48137496,48020979,24629,11070,1303273345,1298991045,100,100,100,100,3.52,3.42,3.69,3.7
-25156,54,039,54039,105,64,1345952,654477,105,64,1345952,654477,193063,92618,2359273486,2335100448,100,100,100,100,0.05,0.07,0.06,0.03
-25159,54,079,54079,5163,2179,92958397,91256277,5163,2179,92958397,91256277,55486,23438,907529236,895279233,100,100,100,100,9.31,9.3,10.24,10.19
-25160,54,039,54039,303,135,15441349,15438225,303,135,15441349,15438225,193063,92618,2359273486,2335100448,100,100,100,100,0.16,0.15,0.65,0.66
-25161,54,019,54019,369,151,29223449,29220522,369,151,29223449,29220522,46039,21618,1731012578,1713406009,100,100,100,100,0.8,0.7,1.69,1.71
-25162,54,039,54039,571,261,839526,714800,571,261,839526,714800,193063,92618,2359273486,2335100448,100,100,100,100,0.3,0.28,0.04,0.03
-25164,54,015,54015,1018,532,45012522,43830417,1257,656,79598968,78416863,9386,4572,890479886,885522451,80.99,81.1,56.55,55.89,10.85,11.64,5.05,4.95
-25164,54,087,54087,239,124,34586446,34586446,1257,656,79598968,78416863,14926,7351,1252826385,1252421705,19.01,18.9,43.45,44.11,1.6,1.69,2.76,2.76
-25165,54,005,54005,612,289,10465631,10343348,612,289,10465631,10343348,24629,11070,1303273345,1298991045,100,100,100,100,2.48,2.61,0.8,0.8
-25168,54,079,54079,2503,1108,84596835,83462079,2503,1108,84596835,83462079,55486,23438,907529236,895279233,100,100,100,100,4.51,4.73,9.32,9.32
-25169,54,005,54005,516,217,48953988,48945681,516,217,48953988,48945681,24629,11070,1303273345,1298991045,100,100,100,100,2.1,1.96,3.76,3.77
-25173,54,019,54019,452,211,38825883,38768753,452,211,38825883,38768753,46039,21618,1731012578,1713406009,100,100,100,100,0.98,0.98,2.24,2.26
-25174,54,081,54081,420,177,25621328,25581207,420,177,25621328,25581207,78859,35931,1578201465,1567850996,100,100,100,100,0.53,0.49,1.62,1.63
-25177,54,039,54039,24039,11225,80040818,77514436,24084,11249,80310445,77784063,193063,92618,2359273486,2335100448,99.81,99.79,99.66,99.65,12.45,12.12,3.39,3.32
-25177,54,079,54079,45,24,269627,269627,24084,11249,80310445,77784063,55486,23438,907529236,895279233,0.19,0.21,0.34,0.35,0.08,0.1,0.03,0.03
-25180,54,081,54081,83,41,8774015,8760874,83,41,8774015,8760874,78859,35931,1578201465,1567850996,100,100,100,100,0.11,0.11,0.56,0.56
-25181,54,005,54005,1853,810,165074864,164444013,1853,810,165074864,164444013,24629,11070,1303273345,1298991045,100,100,100,100,7.52,7.32,12.67,12.66
-25183,54,045,54045,73,29,39621110,39482200,73,29,39621110,39482200,36743,16743,1180039747,1175173524,100,100,100,100,0.2,0.17,3.36,3.36
-25185,54,019,54019,1042,0,178917,178917,1042,0,178917,178917,46039,21618,1731012578,1713406009,100,0,100,100,2.26,0,0.01,0.01
-25186,54,019,54019,881,507,23673696,23112924,881,507,23673696,23112924,46039,21618,1731012578,1713406009,100,100,100,100,1.91,2.35,1.37,1.35
-25187,54,053,54053,719,370,107283588,106052340,719,370,107283588,106052340,27324,13006,1151807713,1115632960,100,100,100,100,2.63,2.84,9.31,9.51
-25193,54,005,54005,477,239,56300935,56064310,477,239,56300935,56064310,24629,11070,1303273345,1298991045,100,100,100,100,1.94,2.16,4.32,4.32
-25201,54,039,54039,55,29,157383,157383,55,29,157383,157383,193063,92618,2359273486,2335100448,100,100,100,100,0.03,0.03,0.01,0.01
-25202,54,039,54039,1171,463,17995149,17648524,1370,548,29987016,29583087,193063,92618,2359273486,2335100448,85.47,84.49,60.01,59.66,0.61,0.5,0.76,0.76
-25202,54,043,54043,199,85,11991867,11934563,1370,548,29987016,29583087,21720,9887,1135948713,1131924510,14.53,15.51,39.99,40.34,0.92,0.86,1.06,1.05
-25203,54,005,54005,89,31,4120369,4120369,89,31,4120369,4120369,24629,11070,1303273345,1298991045,100,100,100,100,0.36,0.28,0.32,0.32
-25204,54,005,54005,211,122,56116745,55997754,211,122,56116745,55997754,24629,11070,1303273345,1298991045,100,100,100,100,0.86,1.1,4.31,4.31
-25205,54,005,54005,391,160,14350515,14304681,391,160,14350515,14304681,24629,11070,1303273345,1298991045,100,100,100,100,1.59,1.45,1.1,1.1
-25206,54,005,54005,601,278,37297301,37165595,601,278,37297301,37165595,24629,11070,1303273345,1298991045,100,100,100,100,2.44,2.51,2.86,2.86
-25208,54,005,54005,992,444,198325624,198022190,992,444,198325624,198022190,24629,11070,1303273345,1298991045,100,100,100,100,4.03,4.01,15.22,15.24
-25209,54,005,54005,812,442,37018856,36928377,1227,639,70254142,69872781,24629,11070,1303273345,1298991045,66.18,69.17,52.69,52.85,3.3,3.99,2.84,2.84
-25209,54,081,54081,415,197,33235286,32944404,1227,639,70254142,69872781,78859,35931,1578201465,1567850996,33.82,30.83,47.31,47.15,0.53,0.55,2.11,2.1
-25211,54,015,54015,135,64,20735546,20636477,135,64,20735546,20636477,9386,4572,890479886,885522451,100,100,100,100,1.44,1.4,2.33,2.33
-25213,54,079,54079,5512,2306,96275749,92822649,5512,2306,96275749,92822649,55486,23438,907529236,895279233,100,100,100,100,9.93,9.84,10.61,10.37
-25214,54,039,54039,614,280,32785936,32768262,614,280,32785936,32768262,193063,92618,2359273486,2335100448,100,100,100,100,0.32,0.3,1.39,1.4
-25234,54,013,54013,1200,598,120374589,119672522,1200,598,120374589,119672522,7627,3963,726956877,723252287,100,100,100,100,15.73,15.09,16.56,16.55
-25235,54,013,54013,850,380,83394931,83385950,949,419,88825106,88816125,7627,3963,726956877,723252287,89.57,90.69,93.89,93.89,11.14,9.59,11.47,11.53
-25235,54,015,54015,99,39,5430175,5430175,949,419,88825106,88816125,9386,4572,890479886,885522451,10.43,9.31,6.11,6.11,1.05,0.85,0.61,0.61
-25239,54,035,54035,1654,774,56091605,55475200,1732,816,68083752,67467347,29211,13305,1221513901,1202654983,95.5,94.85,82.39,82.23,5.66,5.82,4.59,4.61
-25239,54,053,54053,78,42,11992147,11992147,1732,816,68083752,67467347,27324,13006,1151807713,1115632960,4.5,5.15,17.61,17.77,0.29,0.32,1.04,1.07
-25241,54,035,54035,1515,656,40117058,39783690,1710,756,57197920,56861411,29211,13305,1221513901,1202654983,88.6,86.77,70.14,69.97,5.19,4.93,3.28,3.31
-25241,54,053,54053,195,100,17080862,17077721,1710,756,57197920,56861411,27324,13006,1151807713,1115632960,11.4,13.23,29.86,30.03,0.71,0.77,1.48,1.53
-25243,54,087,54087,899,444,122508290,122508290,899,444,122508290,122508290,14926,7351,1252826385,1252421705,100,100,100,100,6.02,6.04,9.78,9.78
-25244,54,035,54035,644,268,57960859,57813034,732,329,76453406,76305581,29211,13305,1221513901,1202654983,87.98,81.46,75.81,75.77,2.2,2.01,4.75,4.81
-25244,54,087,54087,88,61,18492547,18492547,732,329,76453406,76305581,14926,7351,1252826385,1252421705,12.02,18.54,24.19,24.23,0.59,0.83,1.48,1.48
-25245,54,035,54035,632,286,62758849,62717997,739,341,76454226,76411275,29211,13305,1221513901,1202654983,85.52,83.87,82.09,82.08,2.16,2.15,5.14,5.21
-25245,54,079,54079,107,55,13695377,13693278,739,341,76454226,76411275,55486,23438,907529236,895279233,14.48,16.13,17.91,17.92,0.19,0.23,1.51,1.53
-25247,54,053,54053,509,319,6426785,5352428,509,319,6426785,5352428,27324,13006,1151807713,1115632960,100,100,100,100,1.86,2.45,0.56,0.48
-25248,54,035,54035,3069,1352,189416896,189307140,3090,1361,190491704,190379508,29211,13305,1221513901,1202654983,99.32,99.34,99.44,99.44,10.51,10.16,15.51,15.74
-25248,54,039,54039,21,9,1074808,1072368,3090,1361,190491704,190379508,193063,92618,2359273486,2335100448,0.68,0.66,0.56,0.56,0.01,0.01,0.05,0.05
-25251,54,087,54087,429,204,38453831,38453831,429,204,38453831,38453831,14926,7351,1252826385,1252421705,100,100,100,100,2.87,2.78,3.07,3.07
-25252,54,035,54035,624,314,73665996,73485291,1071,540,152368368,152185630,29211,13305,1221513901,1202654983,58.26,58.15,48.35,48.29,2.14,2.36,6.03,6.11
-25252,54,087,54087,210,114,41850522,41850522,1071,540,152368368,152185630,14926,7351,1252826385,1252421705,19.61,21.11,27.47,27.5,1.41,1.55,3.34,3.34
-25252,54,105,54105,237,112,36851850,36849817,1071,540,152368368,152185630,5717,3231,608040860,602195193,22.13,20.74,24.19,24.21,4.15,3.47,6.06,6.12
-25253,54,053,54053,2051,935,127173693,122613656,2051,935,127173693,122613656,27324,13006,1151807713,1115632960,100,100,100,100,7.51,7.19,11.04,10.99
-25259,54,087,54087,699,349,98230825,98230825,699,349,98230825,98230825,14926,7351,1252826385,1252421705,100,100,100,100,4.68,4.75,7.84,7.84
-25260,54,053,54053,1577,918,8741199,7080183,1577,918,8741199,7080183,27324,13006,1151807713,1115632960,100,100,100,100,5.77,7.06,0.76,0.63
-25261,54,013,54013,335,165,27961555,27954102,335,165,27961555,27954102,7627,3963,726956877,723252287,100,100,100,100,4.39,4.16,3.85,3.87
-25262,54,035,54035,898,401,21759730,19284148,898,401,21759730,19284148,29211,13305,1221513901,1202654983,100,100,100,100,3.07,3.01,1.78,1.6
-25264,54,035,54035,248,117,9643406,8371871,441,220,18277648,17003872,29211,13305,1221513901,1202654983,56.24,53.18,52.76,49.24,0.85,0.88,0.79,0.7
-25264,54,053,54053,193,103,8634242,8632001,441,220,18277648,17003872,27324,13006,1151807713,1115632960,43.76,46.82,47.24,50.76,0.71,0.79,0.75,0.77
-25265,54,053,54053,1564,769,5704888,4356202,1564,769,5704888,4356202,27324,13006,1151807713,1115632960,100,100,100,100,5.72,5.91,0.5,0.39
-25266,54,087,54087,797,400,97845588,97845588,797,400,97845588,97845588,14926,7351,1252826385,1252421705,100,100,100,100,5.34,5.44,7.81,7.81
-25267,54,013,54013,16,8,4622634,4612313,758,441,175336806,174545695,7627,3963,726956877,723252287,2.11,1.81,2.64,2.64,0.21,0.2,0.64,0.64
-25267,54,021,54021,742,433,170714172,169933382,758,441,175336806,174545695,8693,3448,880800061,876717515,97.89,98.19,97.36,97.36,8.54,12.56,19.38,19.38
-25268,54,013,54013,871,458,102532658,102473739,871,458,102532658,102473739,7627,3963,726956877,723252287,100,100,100,100,11.42,11.56,14.1,14.17
-25270,54,087,54087,972,471,103210080,103208542,972,471,103210080,103208542,14926,7351,1252826385,1252421705,100,100,100,100,6.51,6.41,8.24,8.24
-25271,54,035,54035,9304,4220,254432870,252954192,9304,4220,254432870,252954192,29211,13305,1221513901,1202654983,100,100,100,100,31.85,31.72,20.83,21.03
-25275,54,035,54035,2287,1058,167299298,166875302,2287,1058,167299298,166875302,29211,13305,1221513901,1202654983,100,100,100,100,7.83,7.95,13.7,13.88
-25276,54,087,54087,7752,3789,440612084,440208942,7752,3789,440612084,440208942,14926,7351,1252826385,1252421705,100,100,100,100,51.94,51.54,35.17,35.15
-25285,54,015,54015,595,268,28897234,28892154,595,268,28897234,28892154,9386,4572,890479886,885522451,100,100,100,100,6.34,5.86,3.25,3.26
-25286,54,087,54087,1692,853,178406908,178406908,1692,853,178406908,178406908,14926,7351,1252826385,1252421705,100,100,100,100,11.34,11.6,14.24,14.24
-25287,54,053,54053,1272,325,52350917,49249648,1272,325,52350917,49249648,27324,13006,1151807713,1115632960,100,100,100,100,4.66,2.5,4.55,4.41
-25301,54,039,54039,2771,1904,3072454,2835823,2771,1904,3072454,2835823,193063,92618,2359273486,2335100448,100,100,100,100,1.44,2.06,0.13,0.12
-25302,54,039,54039,15078,8016,32343541,31650322,15078,8016,32343541,31650322,193063,92618,2359273486,2335100448,100,100,100,100,7.81,8.65,1.37,1.36
-25303,54,039,54039,7112,3557,10385922,9121644,7112,3557,10385922,9121644,193063,92618,2359273486,2335100448,100,100,100,100,3.68,3.84,0.44,0.39
-25304,54,039,54039,8773,4150,27590353,26486664,8773,4150,27590353,26486664,193063,92618,2359273486,2335100448,100,100,100,100,4.54,4.48,1.17,1.13
-25305,54,039,54039,0,0,202349,202349,0,0,202349,202349,193063,92618,2359273486,2335100448,0,0,100,100,0,0,0.01,0.01
-25306,54,039,54039,6417,3057,97282250,96429454,6417,3057,97282250,96429454,193063,92618,2359273486,2335100448,100,100,100,100,3.32,3.3,4.12,4.13
-25309,54,039,54039,13356,6176,91919454,91503803,13356,6176,91919454,91503803,193063,92618,2359273486,2335100448,100,100,100,100,6.92,6.67,3.9,3.92
-25311,54,039,54039,10815,5671,73993790,73178520,10815,5671,73993790,73178520,193063,92618,2359273486,2335100448,100,100,100,100,5.6,6.12,3.14,3.13
-25312,54,039,54039,14886,6922,183322133,182487881,14886,6922,183322133,182487881,193063,92618,2359273486,2335100448,100,100,100,100,7.71,7.47,7.77,7.81
-25313,54,039,54039,13436,6139,54019708,53880136,13436,6139,54019708,53880136,193063,92618,2359273486,2335100448,100,100,100,100,6.96,6.63,2.29,2.31
-25314,54,039,54039,14542,6752,65423011,65148639,14542,6752,65423011,65148639,193063,92618,2359273486,2335100448,100,100,100,100,7.53,7.29,2.77,2.79
-25315,54,039,54039,3255,1616,20011458,19326605,3255,1616,20011458,19326605,193063,92618,2359273486,2335100448,100,100,100,100,1.69,1.74,0.85,0.83
-25320,54,039,54039,6084,2722,181857689,181055810,6084,2722,181857689,181055810,193063,92618,2359273486,2335100448,100,100,100,100,3.15,2.94,7.71,7.75
-25401,54,003,54003,14622,6970,15230628,15187751,14622,6970,15230628,15187751,104169,44762,832828619,831754462,100,100,100,100,14.04,15.57,1.83,1.83
-25403,54,003,54003,12591,4980,96702856,96698569,12591,4980,96702856,96698569,104169,44762,832828619,831754462,100,100,100,100,12.09,11.13,11.61,11.63
-25404,54,003,54003,19551,8584,103806388,103651805,19551,8584,103806388,103651805,104169,44762,832828619,831754462,100,100,100,100,18.77,19.18,12.46,12.46
-25405,54,003,54003,12029,4628,53912029,53912029,12029,4628,53912029,53912029,104169,44762,832828619,831754462,100,100,100,100,11.55,10.34,6.47,6.48
-25411,54,065,54065,12633,6579,363969642,363770054,12633,6579,363969642,363770054,17541,9753,594696975,593295447,100,100,100,100,72.02,67.46,61.2,61.31
-25413,54,003,54003,7508,3067,57834158,57819472,7508,3067,57834158,57819472,104169,44762,832828619,831754462,100,100,100,100,7.21,6.85,6.94,6.95
-25414,54,037,54037,17024,7008,143364772,141466646,17024,7008,143364772,141466646,53498,22037,548225759,542951079,100,100,100,100,31.82,31.8,26.15,26.06
-25419,54,003,54003,9251,4063,45521441,45509458,9251,4063,45521441,45509458,104169,44762,832828619,831754462,100,100,100,100,8.88,9.08,5.47,5.47
-25420,54,003,54003,4024,1670,72473870,72473870,4024,1670,72473870,72473870,104169,44762,832828619,831754462,100,100,100,100,3.86,3.73,8.7,8.71
-25422,54,027,54027,15,77,7454666,7345708,1700,1728,182513764,181202866,23964,13688,1669580113,1658236572,0.88,4.46,4.08,4.05,0.06,0.56,0.45,0.44
-25422,54,065,54065,1685,1651,175059098,173857158,1700,1728,182513764,181202866,17541,9753,594696975,593295447,99.12,95.54,95.92,95.95,9.61,16.93,29.44,29.3
-25425,54,037,54037,12835,5603,107468839,104227205,12835,5603,107468839,104227205,53498,22037,548225759,542951079,100,100,100,100,23.99,25.43,19.6,19.2
-25427,54,003,54003,11984,5821,314480270,313652152,14322,6882,352859035,352030917,104169,44762,832828619,831754462,83.68,84.58,89.12,89.1,11.5,13,37.76,37.71
-25427,54,065,54065,2338,1061,38378765,38378765,14322,6882,352859035,352030917,17541,9753,594696975,593295447,16.32,15.42,10.88,10.9,13.33,10.88,6.45,6.47
-25428,54,003,54003,10776,4231,59614791,59597168,10776,4231,59614791,59597168,104169,44762,832828619,831754462,100,100,100,100,10.34,9.45,7.16,7.17
-25430,54,003,54003,1675,676,10500583,10500583,8112,3156,124014897,123959752,104169,44762,832828619,831754462,20.65,21.42,8.47,8.47,1.61,1.51,1.26,1.26
-25430,54,037,54037,6437,2480,113514314,113459169,8112,3156,124014897,123959752,53498,22037,548225759,542951079,79.35,78.58,91.53,91.53,12.03,11.25,20.71,20.9
-25431,54,027,54027,453,307,37802472,37569700,453,307,37802472,37569700,23964,13688,1669580113,1658236572,100,100,100,100,1.89,2.24,2.26,2.27
-25432,54,037,54037,121,54,2129722,2129722,121,54,2129722,2129722,53498,22037,548225759,542951079,100,100,100,100,0.23,0.25,0.39,0.39
-25434,54,027,54027,1636,1150,160760717,159173665,2521,1612,178050187,176463135,23964,13688,1669580113,1658236572,64.89,71.34,90.29,90.2,6.83,8.4,9.63,9.6
-25434,54,065,54065,885,462,17289470,17289470,2521,1612,178050187,176463135,17541,9753,594696975,593295447,35.11,28.66,9.71,9.8,5.05,4.74,2.91,2.91
-25437,54,027,54027,212,128,29132745,29054751,212,128,29132745,29054751,23964,13688,1669580113,1658236572,100,100,100,100,0.88,0.94,1.74,1.75
-25438,54,037,54037,6266,2697,23010303,23007462,6266,2697,23010303,23007462,53498,22037,548225759,542951079,100,100,100,100,11.71,12.24,4.2,4.24
-25442,54,037,54037,1925,737,36789844,36789844,1925,737,36789844,36789844,53498,22037,548225759,542951079,100,100,100,100,3.6,3.34,6.71,6.78
-25443,54,003,54003,158,72,2751605,2751605,7445,2907,71251095,71174161,104169,44762,832828619,831754462,2.12,2.48,3.86,3.87,0.15,0.16,0.33,0.33
-25443,54,037,54037,7287,2835,68499490,68422556,7445,2907,71251095,71174161,53498,22037,548225759,542951079,97.88,97.52,96.14,96.13,13.62,12.86,12.49,12.6
-25444,54,027,54027,605,349,50816209,50538567,605,349,50816209,50538567,23964,13688,1669580113,1658236572,100,100,100,100,2.52,2.55,3.04,3.05
-25446,54,037,54037,1463,567,39860057,39860057,1463,567,39860057,39860057,53498,22037,548225759,542951079,100,100,100,100,2.73,2.57,7.27,7.34
-25501,54,043,54043,1130,524,64768351,64755315,1130,524,64768351,64755315,21720,9887,1135948713,1131924510,100,100,100,100,5.2,5.3,5.7,5.72
-25502,54,053,54053,1034,498,56577455,55996213,1034,498,56577455,55996213,27324,13006,1151807713,1115632960,100,100,100,100,3.78,3.83,4.91,5.02
-25503,54,053,54053,729,350,41380257,39550759,729,350,41380257,39550759,27324,13006,1151807713,1115632960,100,100,100,100,2.67,2.69,3.59,3.55
-25504,54,011,54011,12561,5401,118136141,116827920,12661,5452,129762546,128454325,96319,46169,745960248,727832268,99.21,99.06,91.04,90.95,13.04,11.7,15.84,16.05
-25504,54,099,54099,100,51,11626405,11626405,12661,5452,129762546,128454325,42481,19227,1326364808,1310486007,0.79,0.94,8.96,9.05,0.24,0.27,0.88,0.89
-25505,54,043,54043,70,28,1825153,1825153,477,210,5898950,5803500,21720,9887,1135948713,1131924510,14.68,13.33,30.94,31.45,0.32,0.28,0.16,0.16
-25505,54,045,54045,407,182,4073797,3978347,477,210,5898950,5803500,36743,16743,1180039747,1175173524,85.32,86.67,69.06,68.55,1.11,1.09,0.35,0.34
-25506,54,011,54011,682,292,41427668,41424556,5037,2361,270903397,269565316,96319,46169,745960248,727832268,13.54,12.37,15.29,15.37,0.71,0.63,5.55,5.69
-25506,54,043,54043,4355,2069,229475729,228140760,5037,2361,270903397,269565316,21720,9887,1135948713,1131924510,86.46,87.63,84.71,84.63,20.05,20.93,20.2,20.16
-25507,54,099,54099,987,481,1878625,1750509,987,481,1878625,1750509,42481,19227,1326364808,1310486007,100,100,100,100,2.32,2.5,0.14,0.13
-25508,54,005,54005,747,336,30261306,30259362,9837,4493,202200763,201488775,24629,11070,1303273345,1298991045,7.59,7.48,14.97,15.02,3.03,3.04,2.32,2.33
-25508,54,045,54045,9090,4157,171939457,171229413,9837,4493,202200763,201488775,36743,16743,1180039747,1175173524,92.41,92.52,85.03,84.98,24.74,24.83,14.57,14.57
-25510,54,011,54011,3245,1455,44231821,44175464,5074,2213,84367926,84198909,96319,46169,745960248,727832268,63.95,65.75,52.43,52.47,3.37,3.15,5.93,6.07
-25510,54,043,54043,235,115,24278700,24170005,5074,2213,84367926,84198909,21720,9887,1135948713,1131924510,4.63,5.2,28.78,28.71,1.08,1.16,2.14,2.14
-25510,54,079,54079,1594,643,15857405,15853440,5074,2213,84367926,84198909,55486,23438,907529236,895279233,31.42,29.06,18.8,18.83,2.87,2.74,1.75,1.77
-25511,54,099,54099,1092,520,238876858,236557902,1092,520,238876858,236557902,42481,19227,1326364808,1310486007,100,100,100,100,2.57,2.7,18.01,18.05
-25512,54,099,54099,1237,631,124739755,124596063,1237,631,124739755,124596063,42481,19227,1326364808,1310486007,100,100,100,100,2.91,3.28,9.4,9.51
-25514,54,099,54099,4024,1836,182291707,180454645,4024,1836,182291707,180454645,42481,19227,1326364808,1310486007,100,100,100,100,9.47,9.55,13.74,13.77
-25515,54,053,54053,2335,1131,124749023,116478548,2335,1131,124749023,116478548,27324,13006,1151807713,1115632960,100,100,100,100,8.55,8.7,10.83,10.44
-25517,54,099,54099,2071,875,105626139,105565433,2071,875,105626139,105565433,42481,19227,1326364808,1310486007,100,100,100,100,4.88,4.55,7.96,8.06
-25520,54,011,54011,677,327,55610453,55526782,1561,734,104094505,102241815,96319,46169,745960248,727832268,43.37,44.55,53.42,54.31,0.7,0.71,7.45,7.63
-25520,54,053,54053,884,407,48484052,46715033,1561,734,104094505,102241815,27324,13006,1151807713,1115632960,56.63,55.45,46.58,45.69,3.24,3.13,4.21,4.19
-25521,54,043,54043,1101,486,80067025,80051015,1101,486,80067025,80051015,21720,9887,1135948713,1131924510,100,100,100,100,5.07,4.92,7.05,7.07
-25523,54,043,54043,2491,1191,97880181,97468205,2647,1267,108995170,108583194,21720,9887,1135948713,1131924510,94.11,94,89.8,89.76,11.47,12.05,8.62,8.61
-25523,54,079,54079,156,76,11114989,11114989,2647,1267,108995170,108583194,55486,23438,907529236,895279233,5.89,6,10.2,10.24,0.28,0.32,1.22,1.24
-25524,54,043,54043,2799,1224,201115890,200634005,3486,1543,250015304,249533419,21720,9887,1135948713,1131924510,80.29,79.33,80.44,80.4,12.89,12.38,17.7,17.73
-25524,54,045,54045,687,319,48899414,48899414,3486,1543,250015304,249533419,36743,16743,1180039747,1175173524,19.71,20.67,19.56,19.6,1.87,1.91,4.14,4.16
-25526,54,053,54053,19,10,620904,620904,21902,9047,238558516,237898732,27324,13006,1151807713,1115632960,0.09,0.11,0.26,0.26,0.07,0.08,0.05,0.06
-25526,54,079,54079,21883,9037,237937612,237277828,21902,9047,238558516,237898732,55486,23438,907529236,895279233,99.91,99.89,99.74,99.74,39.44,38.56,26.22,26.5
-25529,54,005,54005,995,406,48166642,47719543,1013,415,53954531,53429142,24629,11070,1303273345,1298991045,98.22,97.83,89.27,89.31,4.04,3.67,3.7,3.67
-25529,54,043,54043,18,9,5787889,5709599,1013,415,53954531,53429142,21720,9887,1135948713,1131924510,1.78,2.17,10.73,10.69,0.08,0.09,0.51,0.5
-25530,54,099,54099,5877,2750,41500634,39388540,5877,2750,41500634,39388540,42481,19227,1326364808,1310486007,100,100,100,100,13.83,14.3,3.13,3.01
-25534,54,043,54043,12,5,229461,229461,282,164,62659359,60322999,21720,9887,1135948713,1131924510,4.26,3.05,0.37,0.38,0.06,0.05,0.02,0.02
-25534,54,099,54099,270,159,62429898,60093538,282,164,62659359,60322999,42481,19227,1326364808,1310486007,95.74,96.95,99.63,99.62,0.64,0.83,4.71,4.59
-25535,54,099,54099,2783,1228,47389580,46343935,2783,1228,47389580,46343935,42481,19227,1326364808,1310486007,100,100,100,100,6.55,6.39,3.57,3.54
-25537,54,011,54011,1993,925,62169534,55003138,1993,925,62169534,55003138,96319,46169,745960248,727832268,100,100,100,100,2.07,2,8.33,7.56
-25540,54,043,54043,290,137,32660808,32609808,290,137,32660808,32609808,21720,9887,1135948713,1131924510,100,100,100,100,1.34,1.39,2.88,2.88
-25541,54,011,54011,8381,3777,145759125,145115990,9350,4179,181856714,181207869,96319,46169,745960248,727832268,89.64,90.38,80.15,80.08,8.7,8.18,19.54,19.94
-25541,54,053,54053,969,402,36097589,36091879,9350,4179,181856714,181207869,27324,13006,1151807713,1115632960,10.36,9.62,19.85,19.92,3.55,3.09,3.13,3.24
-25545,54,011,54011,4512,1872,72674693,72109917,4512,1872,72674693,72109917,96319,46169,745960248,727832268,100,100,100,100,4.68,4.05,9.74,9.91
-25547,54,045,54045,969,457,20198977,19993800,969,457,20198977,19993800,36743,16743,1180039747,1175173524,100,100,100,100,2.64,2.73,1.71,1.7
-25550,54,053,54053,9077,4270,133139602,127517348,9077,4270,133139602,127517348,27324,13006,1151807713,1115632960,100,100,100,100,33.22,32.83,11.56,11.43
-25555,54,099,54099,2325,1027,89160727,87965372,2325,1027,89160727,87965372,42481,19227,1326364808,1310486007,100,100,100,100,5.47,5.34,6.72,6.71
-25557,54,043,54043,1754,811,117642945,116865757,1754,811,117642945,116865757,21720,9887,1135948713,1131924510,100,100,100,100,8.08,8.2,10.36,10.32
-25559,54,011,54011,2152,941,53252290,52747892,2152,941,53252290,52747892,96319,46169,745960248,727832268,100,100,100,100,2.23,2.04,7.14,7.25
-25560,54,079,54079,7997,3260,60670364,60143453,7997,3260,60670364,60143453,55486,23438,907529236,895279233,100,100,100,100,14.41,13.91,6.69,6.72
-25564,54,043,54043,1250,527,56561694,56479613,1250,527,56561694,56479613,21720,9887,1135948713,1131924510,100,100,100,100,5.76,5.33,4.98,4.99
-25565,54,005,54005,304,134,43167765,43167765,651,288,89348637,89346624,24629,11070,1303273345,1298991045,46.7,46.53,48.31,48.31,1.23,1.21,3.31,3.32
-25565,54,043,54043,347,154,46180872,46178859,651,288,89348637,89346624,21720,9887,1135948713,1131924510,53.3,53.47,51.69,51.69,1.6,1.56,4.07,4.08
-25567,54,043,54043,924,409,43838812,43654788,924,409,43838812,43654788,21720,9887,1135948713,1131924510,100,100,100,100,4.25,4.14,3.86,3.86
-25570,54,099,54099,6640,2903,204411347,202580200,6640,2903,204411347,202580200,42481,19227,1326364808,1310486007,100,100,100,100,15.63,15.1,15.41,15.46
-25571,54,043,54043,2206,987,60859390,60584721,2206,987,60859390,60584721,21720,9887,1135948713,1131924510,100,100,100,100,10.16,9.98,5.36,5.35
-25573,54,043,54043,970,435,28798456,28794132,970,435,28798456,28794132,21720,9887,1135948713,1131924510,100,100,100,100,4.47,4.4,2.54,2.54
-25601,54,045,54045,5206,2576,51871659,51242955,5206,2576,51871659,51242955,36743,16743,1180039747,1175173524,100,100,100,100,14.17,15.39,4.4,4.36
-25606,54,045,54045,964,399,18244791,18207274,964,399,18244791,18207274,36743,16743,1180039747,1175173524,100,100,100,100,2.62,2.38,1.55,1.55
-25607,54,045,54045,1140,480,25240953,25117494,1140,480,25240953,25117494,36743,16743,1180039747,1175173524,100,100,100,100,3.1,2.87,2.14,2.14
-25608,54,059,54059,1004,483,35554299,35554299,1004,483,35554299,35554299,26839,12699,1098070479,1095846454,100,100,100,100,3.74,3.8,3.24,3.24
-25611,54,045,54045,682,287,10265876,10177221,682,287,10265876,10177221,36743,16743,1180039747,1175173524,100,100,100,100,1.86,1.71,0.87,0.87
-25617,54,045,54045,999,451,44109388,43975251,999,451,44109388,43975251,36743,16743,1180039747,1175173524,100,100,100,100,2.72,2.69,3.74,3.74
-25621,54,059,54059,2155,1048,119298649,118180344,2155,1048,119298649,118180344,26839,12699,1098070479,1095846454,100,100,100,100,8.03,8.25,10.86,10.78
-25624,54,045,54045,480,222,3028314,2920224,480,222,3028314,2920224,36743,16743,1180039747,1175173524,100,100,100,100,1.31,1.33,0.26,0.25
-25625,54,045,54045,1452,550,38410716,38405791,1452,550,38410716,38405791,36743,16743,1180039747,1175173524,100,100,100,100,3.95,3.28,3.26,3.27
-25628,54,045,54045,539,250,5535402,5505123,539,250,5535402,5505123,36743,16743,1180039747,1175173524,100,100,100,100,1.47,1.49,0.47,0.47
-25630,54,045,54045,683,276,60111889,60038073,683,276,60111889,60038073,36743,16743,1180039747,1175173524,100,100,100,100,1.86,1.65,5.09,5.11
-25632,54,045,54045,834,375,64048592,63392249,834,375,64048592,63392249,36743,16743,1180039747,1175173524,100,100,100,100,2.27,2.24,5.43,5.39
-25634,54,045,54045,771,309,13926410,13841017,771,309,13926410,13841017,36743,16743,1180039747,1175173524,100,100,100,100,2.1,1.85,1.18,1.18
-25635,54,045,54045,1227,552,36384845,36022465,1227,552,36384845,36022465,36743,16743,1180039747,1175173524,100,100,100,100,3.34,3.3,3.08,3.07
-25637,54,045,54045,936,486,9305869,9304873,936,486,9305869,9304873,36743,16743,1180039747,1175173524,100,100,100,100,2.55,2.9,0.79,0.79
-25638,54,045,54045,1148,511,87679841,87557461,1148,511,87679841,87557461,36743,16743,1180039747,1175173524,100,100,100,100,3.12,3.05,7.43,7.45
-25639,54,045,54045,608,313,18015944,17942525,608,313,18015944,17942525,36743,16743,1180039747,1175173524,100,100,100,100,1.65,1.87,1.53,1.53
-25644,54,045,54045,536,221,31894383,31888681,536,221,31894383,31888681,36743,16743,1180039747,1175173524,100,100,100,100,1.46,1.32,2.7,2.71
-25646,54,045,54045,940,470,56344128,55978171,940,470,56344128,55978171,36743,16743,1180039747,1175173524,100,100,100,100,2.56,2.81,4.77,4.76
-25647,54,045,54045,768,386,8347144,8267287,768,386,8347144,8267287,36743,16743,1180039747,1175173524,100,100,100,100,2.09,2.31,0.71,0.7
-25649,54,045,54045,1397,660,28562714,28557557,1397,660,28562714,28557557,36743,16743,1180039747,1175173524,100,100,100,100,3.8,3.94,2.42,2.43
-25650,54,045,54045,99,41,47847922,47666430,547,259,63469957,63017776,36743,16743,1180039747,1175173524,18.1,15.83,75.39,75.64,0.27,0.24,4.05,4.06
-25650,54,059,54059,448,218,15622035,15351346,547,259,63469957,63017776,26839,12699,1098070479,1095846454,81.9,84.17,24.61,24.36,1.67,1.72,1.42,1.4
-25651,54,059,54059,737,333,65304633,65143566,737,333,65304633,65143566,26839,12699,1098070479,1095846454,100,100,100,100,2.75,2.62,5.95,5.94
-25652,54,045,54045,1608,677,43782570,43766514,1608,677,43782570,43766514,36743,16743,1180039747,1175173524,100,100,100,100,4.38,4.04,3.71,3.72
-25653,54,045,54045,459,222,4691612,4661182,459,222,4691612,4661182,36743,16743,1180039747,1175173524,100,100,100,100,1.25,1.33,0.4,0.4
-25654,54,045,54045,310,100,30951594,30706652,310,100,30951594,30706652,36743,16743,1180039747,1175173524,100,100,100,100,0.84,0.6,2.62,2.61
-25661,54,059,54059,6837,3506,150761976,150761976,6837,3506,150761976,150761976,26839,12699,1098070479,1095846454,100,100,100,100,25.47,27.61,13.73,13.76
-25666,54,059,54059,654,283,73739949,73739949,654,283,73739949,73739949,26839,12699,1098070479,1095846454,100,100,100,100,2.44,2.23,6.72,6.73
-25669,54,099,54099,887,374,52916432,52866221,887,374,52916432,52866221,42481,19227,1326364808,1310486007,100,100,100,100,2.09,1.95,3.99,4.03
-25670,54,059,54059,5829,2641,242926013,242903924,5829,2641,242926013,242903924,26839,12699,1098070479,1095846454,100,100,100,100,21.72,20.8,22.12,22.17
-25671,54,059,54059,1286,580,81575525,81575525,1286,580,81575525,81575525,26839,12699,1098070479,1095846454,100,100,100,100,4.79,4.57,7.43,7.44
-25672,54,059,54059,408,180,22192079,22192079,408,180,22192079,22192079,26839,12699,1098070479,1095846454,100,100,100,100,1.52,1.42,2.02,2.03
-25674,54,059,54059,2073,912,88974771,88974771,3202,1379,116383448,116383448,26839,12699,1098070479,1095846454,64.74,66.13,76.45,76.45,7.72,7.18,8.1,8.12
-25674,54,099,54099,1129,467,27408677,27408677,3202,1379,116383448,116383448,42481,19227,1326364808,1310486007,35.26,33.87,23.55,23.55,2.66,2.43,2.07,2.09
-25676,54,059,54059,1250,526,76092332,76000579,1250,526,76092332,76000579,26839,12699,1098070479,1095846454,100,100,100,100,4.66,4.14,6.93,6.94
-25678,54,059,54059,1595,834,65617284,65617284,1595,834,65617284,65617284,26839,12699,1098070479,1095846454,100,100,100,100,5.94,6.57,5.98,5.99
-25688,54,059,54059,448,184,12051970,12051970,448,184,12051970,12051970,26839,12699,1098070479,1095846454,100,100,100,100,1.67,1.45,1.1,1.1
-25690,54,059,54059,249,113,4544135,4544135,249,113,4544135,4544135,26839,12699,1098070479,1095846454,100,100,100,100,0.93,0.89,0.41,0.41
-25692,54,059,54059,1021,462,25688146,25688146,1021,462,25688146,25688146,26839,12699,1098070479,1095846454,100,100,100,100,3.8,3.64,2.34,2.34
-25696,54,059,54059,295,143,5086814,5086814,295,143,5086814,5086814,26839,12699,1098070479,1095846454,100,100,100,100,1.1,1.13,0.46,0.46
-25699,54,099,54099,200,77,38240230,38240230,200,77,38240230,38240230,42481,19227,1326364808,1310486007,100,100,100,100,0.47,0.4,2.88,2.92
-25701,54,011,54011,21870,12010,76673098,75741081,23284,12666,92983675,92051658,96319,46169,745960248,727832268,93.93,94.82,82.46,82.28,22.71,26.01,10.28,10.41
-25701,54,099,54099,1414,656,16310577,16310577,23284,12666,92983675,92051658,42481,19227,1326364808,1310486007,6.07,5.18,17.54,17.72,3.33,3.41,1.23,1.24
-25702,54,011,54011,7788,4004,34164273,30143680,7788,4004,34164273,30143680,96319,46169,745960248,727832268,100,100,100,100,8.09,8.67,4.58,4.14
-25703,54,011,54011,6751,2518,3480288,3089403,6751,2518,3480288,3089403,96319,46169,745960248,727832268,100,100,100,100,7.01,5.45,0.47,0.42
-25704,54,011,54011,4996,2672,6986156,4935501,16441,7864,88543373,83673261,96319,46169,745960248,727832268,30.39,33.98,7.89,5.9,5.19,5.79,0.94,0.68
-25704,54,099,54099,11445,5192,81557217,78737760,16441,7864,88543373,83673261,42481,19227,1326364808,1310486007,69.61,66.02,92.11,94.1,26.94,27,6.15,6.01
-25705,54,011,54011,20711,9975,31394708,30990944,20711,9975,31394708,30990944,96319,46169,745960248,727832268,100,100,100,100,21.5,21.61,4.21,4.26
-25801,54,081,54081,33590,16078,215599919,213919453,33590,16078,215599919,213919453,78859,35931,1578201465,1567850996,100,100,100,100,42.6,44.75,13.66,13.64
-25810,54,109,54109,261,119,6228522,6123845,261,119,6228522,6123845,23796,10958,1299704404,1293577717,100,100,100,100,1.1,1.09,0.48,0.47
-25811,54,081,54081,76,44,16737730,16695356,154,82,16880329,16809702,78859,35931,1578201465,1567850996,49.35,53.66,99.16,99.32,0.1,0.12,1.06,1.06
-25811,54,109,54109,78,38,142599,114346,154,82,16880329,16809702,23796,10958,1299704404,1293577717,50.65,46.34,0.84,0.68,0.33,0.35,0.01,0.01
-25812,54,019,54019,1902,929,49157538,48795349,1902,929,49157538,48795349,46039,21618,1731012578,1713406009,100,100,100,100,4.13,4.3,2.84,2.85
-25813,54,081,54081,8063,2552,156474897,155260311,8063,2552,156474897,155260311,78859,35931,1578201465,1567850996,100,100,100,100,10.22,7.1,9.91,9.9
-25817,54,081,54081,784,338,29269341,29142726,784,338,29269341,29142726,78859,35931,1578201465,1567850996,100,100,100,100,0.99,0.94,1.85,1.86
-25818,54,081,54081,472,250,1316103,1314197,472,250,1316103,1314197,78859,35931,1578201465,1567850996,100,100,100,100,0.6,0.7,0.08,0.08
-25820,54,055,54055,437,211,79149229,79007278,437,211,79149229,79007278,62264,30115,1089669489,1085187156,100,100,100,100,0.7,0.7,7.26,7.28
-25823,54,081,54081,2176,980,36362591,36262669,2176,980,36362591,36262669,78859,35931,1578201465,1567850996,100,100,100,100,2.76,2.73,2.3,2.31
-25825,54,081,54081,2195,980,48692496,48278482,2390,1079,67557463,67136068,78859,35931,1578201465,1567850996,91.84,90.82,72.08,71.91,2.78,2.73,3.09,3.08
-25825,54,089,54089,195,99,18864967,18857586,2390,1079,67557463,67136068,13927,7680,952408167,933586742,8.16,9.18,27.92,28.09,1.4,1.29,1.98,2.02
-25826,54,109,54109,296,121,567835,549751,296,121,567835,549751,23796,10958,1299704404,1293577717,100,100,100,100,1.24,1.1,0.04,0.04
-25827,54,081,54081,2488,1159,16542299,16511758,2488,1159,16542299,16511758,78859,35931,1578201465,1567850996,100,100,100,100,3.15,3.23,1.05,1.05
-25831,54,019,54019,1421,731,155288746,154783549,1421,731,155288746,154783549,46039,21618,1731012578,1713406009,100,100,100,100,3.09,3.38,8.97,9.03
-25832,54,081,54081,3994,1848,31359347,31172767,3994,1848,31359347,31172767,78859,35931,1578201465,1567850996,100,100,100,100,5.06,5.14,1.99,1.99
-25836,54,081,54081,488,232,5020790,5009982,488,232,5020790,5009982,78859,35931,1578201465,1567850996,100,100,100,100,0.62,0.65,0.32,0.32
-25837,54,019,54019,391,177,14142960,14128689,391,177,14142960,14128689,46039,21618,1731012578,1713406009,100,100,100,100,0.85,0.82,0.82,0.82
-25839,54,081,54081,691,300,8751719,8706326,691,300,8751719,8706326,78859,35931,1578201465,1567850996,100,100,100,100,0.88,0.83,0.55,0.56
-25840,54,019,54019,8179,3683,189399008,187077506,8179,3683,189399008,187077506,46039,21618,1731012578,1713406009,100,100,100,100,17.77,17.04,10.94,10.92
-25841,54,055,54055,503,262,73490091,73332472,575,300,90063521,89900318,62264,30115,1089669489,1085187156,87.48,87.33,81.6,81.57,0.81,0.87,6.74,6.76
-25841,54,089,54089,72,38,16573430,16567846,575,300,90063521,89900318,13927,7680,952408167,933586742,12.52,12.67,18.4,18.43,0.52,0.49,1.74,1.77
-25843,54,081,54081,791,562,37396096,36501137,791,562,37396096,36501137,78859,35931,1578201465,1567850996,100,100,100,100,1,1.56,2.37,2.33
-25844,54,081,54081,1417,620,31684715,31605877,1417,620,31684715,31605877,78859,35931,1578201465,1567850996,100,100,100,100,1.8,1.73,2.01,2.02
-25845,54,109,54109,627,264,14643476,14605154,627,264,14643476,14605154,23796,10958,1299704404,1293577717,100,100,100,100,2.63,2.41,1.13,1.13
-25846,54,019,54019,363,174,33897279,33861450,363,174,33897279,33861450,46039,21618,1731012578,1713406009,100,100,100,100,0.79,0.8,1.96,1.98
-25848,54,109,54109,443,216,22604537,22595256,443,216,22604537,22595256,23796,10958,1299704404,1293577717,100,100,100,100,1.86,1.97,1.74,1.75
-25849,54,081,54081,266,125,1311304,1311070,266,125,1311304,1311070,78859,35931,1578201465,1567850996,100,100,100,100,0.34,0.35,0.08,0.08
-25853,54,081,54081,182,79,1668808,1668498,182,79,1668808,1668498,78859,35931,1578201465,1567850996,100,100,100,100,0.23,0.22,0.11,0.11
-25854,54,019,54019,1101,538,95407782,94708864,1101,538,95407782,94708864,46039,21618,1731012578,1713406009,100,100,100,100,2.39,2.49,5.51,5.53
-25855,54,019,54019,209,41,544587,541374,209,41,544587,541374,46039,21618,1731012578,1713406009,100,100,100,100,0.45,0.19,0.03,0.03
-25857,54,081,54081,308,143,56064194,56044917,308,143,56064194,56044917,78859,35931,1578201465,1567850996,100,100,100,100,0.39,0.4,3.55,3.57
-25862,54,019,54019,266,160,11256527,11246232,266,160,11256527,11246232,46039,21618,1731012578,1713406009,100,100,100,100,0.58,0.74,0.65,0.66
-25864,54,019,54019,279,139,44326870,44317127,309,172,59414640,59059600,46039,21618,1731012578,1713406009,90.29,80.81,74.61,75.04,0.61,0.64,2.56,2.59
-25864,54,081,54081,30,33,15087770,14742473,309,172,59414640,59059600,78859,35931,1578201465,1567850996,9.71,19.19,25.39,24.96,0.04,0.09,0.96,0.94
-25865,54,081,54081,1475,651,65970041,65884741,1475,651,65970041,65884741,78859,35931,1578201465,1567850996,100,100,100,100,1.87,1.81,4.18,4.2
-25868,54,019,54019,432,215,32757595,32740252,432,215,32757595,32740252,46039,21618,1731012578,1713406009,100,100,100,100,0.94,0.99,1.89,1.91
-25870,54,109,54109,103,44,614014,585331,103,44,614014,585331,23796,10958,1299704404,1293577717,100,100,100,100,0.43,0.4,0.05,0.05
-25871,54,081,54081,695,347,1046665,1046665,695,347,1046665,1046665,78859,35931,1578201465,1567850996,100,100,100,100,0.88,0.97,0.07,0.07
-25873,54,081,54081,607,307,1803015,1798964,607,307,1803015,1798964,78859,35931,1578201465,1567850996,100,100,100,100,0.77,0.85,0.11,0.11
-25875,54,109,54109,486,189,22510229,22508899,486,189,22510229,22508899,23796,10958,1299704404,1293577717,100,100,100,100,2.04,1.72,1.73,1.74
-25876,54,109,54109,128,57,10891287,10878994,128,57,10891287,10878994,23796,10958,1299704404,1293577717,100,100,100,100,0.54,0.52,0.84,0.84
-25878,54,081,54081,930,425,5292143,5270701,930,425,5292143,5270701,78859,35931,1578201465,1567850996,100,100,100,100,1.18,1.18,0.34,0.34
-25879,54,019,54019,359,179,4213384,4207801,359,179,4213384,4207801,46039,21618,1731012578,1713406009,100,100,100,100,0.78,0.83,0.24,0.25
-25880,54,019,54019,2543,1314,42261065,42230349,6928,3199,102408925,102307368,46039,21618,1731012578,1713406009,36.71,41.08,41.27,41.28,5.52,6.08,2.44,2.46
-25880,54,081,54081,4385,1885,60147860,60077019,6928,3199,102408925,102307368,78859,35931,1578201465,1567850996,63.29,58.92,58.73,58.72,5.56,5.25,3.81,3.83
-25882,54,109,54109,2033,1045,84685014,84389630,2033,1045,84685014,84389630,23796,10958,1299704404,1293577717,100,100,100,100,8.54,9.54,6.52,6.52
-25901,54,019,54019,11920,5649,86077089,85063880,11920,5649,86077089,85063880,46039,21618,1731012578,1713406009,100,100,100,100,25.89,26.13,4.97,4.96
-25902,54,055,54055,82,39,16661190,16657686,420,193,72178286,72133183,62264,30115,1089669489,1085187156,19.52,20.21,23.08,23.09,0.13,0.13,1.53,1.54
-25902,54,081,54081,338,154,55517096,55475497,420,193,72178286,72133183,78859,35931,1578201465,1567850996,80.48,79.79,76.92,76.91,0.43,0.43,3.52,3.54
-25904,54,019,54019,365,168,17843520,17820375,365,168,17843520,17820375,46039,21618,1731012578,1713406009,100,100,100,100,0.79,0.78,1.03,1.04
-25906,54,081,54081,287,136,3568144,3547206,287,136,3568144,3547206,78859,35931,1578201465,1567850996,100,100,100,100,0.36,0.38,0.23,0.23
-25907,54,019,54019,123,85,5324956,4823492,123,85,5324956,4823492,46039,21618,1731012578,1713406009,100,100,100,100,0.27,0.39,0.31,0.28
-25908,54,081,54081,172,94,18495927,18489653,172,94,18495927,18489653,78859,35931,1578201465,1567850996,100,100,100,100,0.22,0.26,1.17,1.18
-25911,54,081,54081,55,46,94400,85549,55,46,94400,85549,78859,35931,1578201465,1567850996,100,100,100,100,0.07,0.13,0.01,0.01
-25913,54,109,54109,397,159,17229027,17229027,397,159,17229027,17229027,23796,10958,1299704404,1293577717,100,100,100,100,1.67,1.45,1.33,1.33
-25915,54,081,54081,311,174,23558564,23520763,311,174,23558564,23520763,78859,35931,1578201465,1567850996,100,100,100,100,0.39,0.48,1.49,1.5
-25916,54,109,54109,202,91,5031733,5031733,202,91,5031733,5031733,23796,10958,1299704404,1293577717,100,100,100,100,0.85,0.83,0.39,0.39
-25917,54,019,54019,2139,1008,116916389,116114994,2139,1008,116916389,116114994,46039,21618,1731012578,1713406009,100,100,100,100,4.65,4.66,6.75,6.78
-25918,54,081,54081,4430,1959,176406111,174528935,4430,1959,176406111,174528935,78859,35931,1578201465,1567850996,100,100,100,100,5.62,5.45,11.18,11.13
-25920,54,081,54081,221,97,13128394,13123190,221,97,13128394,13123190,78859,35931,1578201465,1567850996,100,100,100,100,0.28,0.27,0.83,0.84
-25921,54,081,54081,2157,1059,41706117,41618441,2157,1059,41706117,41618441,78859,35931,1578201465,1567850996,100,100,100,100,2.74,2.95,2.64,2.65
-25922,54,055,54055,299,128,12163249,11914754,299,128,12163249,11914754,62264,30115,1089669489,1085187156,100,100,100,100,0.48,0.43,1.12,1.1
-25928,54,109,54109,375,181,30201279,30101138,375,181,30201279,30101138,23796,10958,1299704404,1293577717,100,100,100,100,1.58,1.65,2.32,2.33
-25932,54,081,54081,339,133,10123205,10112292,339,133,10123205,10112292,78859,35931,1578201465,1567850996,100,100,100,100,0.43,0.37,0.64,0.64
-25936,54,019,54019,43,62,39182434,37680293,43,62,39182434,37680293,46039,21618,1731012578,1713406009,100,100,100,100,0.09,0.29,2.26,2.2
-25938,54,019,54019,1287,598,85172468,84180109,1287,598,85172468,84180109,46039,21618,1731012578,1713406009,100,100,100,100,2.8,2.77,4.92,4.91
-25942,54,019,54019,162,77,33308613,33083922,162,77,33308613,33083922,46039,21618,1731012578,1713406009,100,100,100,100,0.35,0.36,1.92,1.93
-25951,54,081,54081,152,166,17856499,16432820,6208,3717,288093831,279093796,78859,35931,1578201465,1567850996,2.45,4.47,6.2,5.89,0.19,0.46,1.13,1.05
-25951,54,089,54089,6056,3551,270237332,262660976,6208,3717,288093831,279093796,13927,7680,952408167,933586742,97.55,95.53,93.8,94.11,43.48,46.24,28.37,28.13
-25958,54,025,54025,851,459,59402615,59007024,851,459,59402615,59007024,35480,18980,2653468249,2640671499,100,100,100,100,2.4,2.42,2.24,2.23
-25962,54,019,54019,945,472,147005126,146403759,3806,1989,226944504,225999837,46039,21618,1731012578,1713406009,24.83,23.73,64.78,64.78,2.05,2.18,8.49,8.54
-25962,54,025,54025,2861,1517,79939378,79596078,3806,1989,226944504,225999837,35480,18980,2653468249,2640671499,75.17,76.27,35.22,35.22,8.06,7.99,3.01,3.01
-25969,54,089,54089,973,527,76334213,75921297,973,527,76334213,75921297,13927,7680,952408167,933586742,100,100,100,100,6.99,6.86,8.01,8.13
-25971,54,055,54055,1130,739,52690111,52506984,1130,739,52690111,52506984,62264,30115,1089669489,1085187156,100,100,100,100,1.81,2.45,4.84,4.84
-25972,54,025,54025,299,151,10453243,10432868,299,151,10453243,10432868,35480,18980,2653468249,2640671499,100,100,100,100,0.84,0.8,0.39,0.4
-25976,54,019,54019,1454,744,115006845,113973680,2663,1362,234585850,233343103,46039,21618,1731012578,1713406009,54.6,54.63,49.03,48.84,3.16,3.44,6.64,6.65
-25976,54,025,54025,301,147,37986795,37979692,2663,1362,234585850,233343103,35480,18980,2653468249,2640671499,11.3,10.79,16.19,16.28,0.85,0.77,1.43,1.44
-25976,54,089,54089,908,471,81592210,81389731,2663,1362,234585850,233343103,13927,7680,952408167,933586742,34.1,34.58,34.78,34.88,6.52,6.13,8.57,8.72
-25977,54,089,54089,155,101,13135389,12734903,155,101,13135389,12734903,13927,7680,952408167,933586742,100,100,100,100,1.11,1.32,1.38,1.36
-25978,54,089,54089,606,303,31372224,30253427,606,303,31372224,30253427,13927,7680,952408167,933586742,100,100,100,100,4.35,3.95,3.29,3.24
-25979,54,055,54055,45,21,5042429,5041279,893,542,124900745,120196641,62264,30115,1089669489,1085187156,5.04,3.87,4.04,4.19,0.07,0.07,0.46,0.46
-25979,54,089,54089,848,521,119858316,115155362,893,542,124900745,120196641,13927,7680,952408167,933586742,94.96,96.13,95.96,95.81,6.09,6.78,12.58,12.33
-25981,54,025,54025,743,380,107136492,107038059,951,511,153248655,153113052,35480,18980,2653468249,2640671499,78.13,74.36,69.91,69.91,2.09,2,4.04,4.05
-25981,54,067,54067,208,131,46112163,46074993,951,511,153248655,153113052,26233,13064,1694905116,1675266140,21.87,25.64,30.09,30.09,0.79,1,2.72,2.75
-25984,54,025,54025,1886,958,127965686,127287923,1886,958,127965686,127287923,35480,18980,2653468249,2640671499,100,100,100,100,5.32,5.05,4.82,4.82
-25985,54,089,54089,430,243,91955233,91790461,430,243,91955233,91790461,13927,7680,952408167,933586742,100,100,100,100,3.09,3.16,9.66,9.83
-25989,54,081,54081,280,123,6401255,6223188,280,123,6401255,6223188,78859,35931,1578201465,1567850996,100,100,100,100,0.36,0.34,0.41,0.4
-26003,54,009,54009,311,131,18272907,18255755,43002,20880,254279391,245440446,24069,10967,239759388,231038789,0.72,0.63,7.19,7.44,1.29,1.19,7.62,7.9
-26003,54,051,54051,4395,1986,83380062,82511226,43002,20880,254279391,245440446,33107,15918,808475142,791062651,10.22,9.51,32.79,33.62,13.28,12.48,10.31,10.43
-26003,54,069,54069,38296,18763,152626422,144673465,43002,20880,254279391,245440446,44443,21172,282370859,274072974,89.06,89.86,60.02,58.94,86.17,88.62,54.05,52.79
-26030,54,009,54009,516,254,3215294,2169733,516,254,3215294,2169733,24069,10967,239759388,231038789,100,100,100,100,2.14,2.32,1.34,0.94
-26031,54,051,54051,1755,906,8546597,7087716,1755,906,8546597,7087716,33107,15918,808475142,791062651,100,100,100,100,5.3,5.69,1.06,0.9
-26032,54,009,54009,1243,292,31515727,31226728,1243,292,31515727,31226728,24069,10967,239759388,231038789,100,100,100,100,5.16,2.66,13.14,13.52
-26033,54,051,54051,3044,1680,241788071,240993303,3044,1680,241788071,240993303,33107,15918,808475142,791062651,100,100,100,100,9.19,10.55,29.91,30.46
-26034,54,029,54029,4905,2378,42390853,39204086,4905,2378,42390853,39204086,30676,14541,227836578,213957204,100,100,100,100,15.99,16.35,18.61,18.32
-26035,54,009,54009,2491,1071,47652595,46694641,2491,1071,47652595,46694641,24069,10967,239759388,231038789,100,100,100,100,10.35,9.77,19.88,20.21
-26036,54,051,54051,425,214,29271722,29193725,425,214,29271722,29193725,33107,15918,808475142,791062651,100,100,100,100,1.28,1.34,3.62,3.69
-26037,54,009,54009,6642,3041,19004044,17529587,6642,3041,19004044,17529587,24069,10967,239759388,231038789,100,100,100,100,27.6,27.73,7.93,7.59
-26038,54,051,54051,2855,1348,18646791,17088371,2855,1348,18646791,17088371,33107,15918,808475142,791062651,100,100,100,100,8.62,8.47,2.31,2.16
-26039,54,051,54051,1061,562,102195767,101619814,1061,562,102195767,101619814,33107,15918,808475142,791062651,100,100,100,100,3.2,3.53,12.64,12.85
-26040,54,051,54051,2103,1045,6695859,6009187,2103,1045,6695859,6009187,33107,15918,808475142,791062651,100,100,100,100,6.35,6.56,0.83,0.76
-26041,54,051,54051,16183,7511,164145034,158952007,16183,7511,164145034,158952007,33107,15918,808475142,791062651,100,100,100,100,48.88,47.19,20.3,20.09
-26047,54,029,54029,6222,2880,114236890,110946815,6222,2880,114236890,110946815,30676,14541,227836578,213957204,100,100,100,100,20.28,19.81,50.14,51.85
-26050,54,029,54029,1575,768,12724403,7515128,1575,768,12724403,7515128,30676,14541,227836578,213957204,100,100,100,100,5.13,5.28,5.58,3.51
-26055,54,051,54051,1248,615,143511262,137563516,1756,857,197679597,190390468,33107,15918,808475142,791062651,71.07,71.76,72.6,72.25,3.77,3.86,17.75,17.39
-26055,54,103,54103,508,242,54168335,52826952,1756,857,197679597,190390468,16583,8173,935839100,927378346,28.93,28.24,27.4,27.75,3.06,2.96,5.79,5.7
-26056,54,029,54029,93,41,300056,300056,93,41,300056,300056,30676,14541,227836578,213957204,100,100,100,100,0.3,0.28,0.13,0.14
-26059,54,069,54069,3082,1348,63850705,63644493,3082,1348,63850705,63644493,44443,21172,282370859,274072974,100,100,100,100,6.93,6.37,22.61,23.22
-26060,54,069,54069,1881,831,61625283,61494455,1881,831,61625283,61494455,44443,21172,282370859,274072974,100,100,100,100,4.23,3.92,21.82,22.44
-26062,54,009,54009,3920,2058,16835847,15897114,21801,10532,75020223,71888233,24069,10967,239759388,231038789,17.98,19.54,22.44,22.11,16.29,18.77,7.02,6.88
-26062,54,029,54029,17881,8474,58184376,55991119,21801,10532,75020223,71888233,30676,14541,227836578,213957204,82.02,80.46,77.56,77.89,58.29,58.28,25.54,26.17
-26070,54,009,54009,8441,3895,98751604,95737239,8441,3895,98751604,95737239,24069,10967,239759388,231038789,100,100,100,100,35.07,35.52,41.19,41.44
-26074,54,069,54069,1184,230,4268449,4260561,1184,230,4268449,4260561,44443,21172,282370859,274072974,100,100,100,100,2.66,1.09,1.51,1.55
-26075,54,009,54009,505,225,4511370,3527992,505,225,4511370,3527992,24069,10967,239759388,231038789,100,100,100,100,2.1,2.05,1.88,1.53
-26101,54,107,54107,29999,14314,81536400,76426643,29999,14314,81536400,76426643,86956,40215,975820561,948607826,100,100,100,100,34.5,35.59,8.36,8.06
-26104,54,107,54107,16769,8044,96764777,96234378,16769,8044,96764777,96234378,86956,40215,975820561,948607826,100,100,100,100,19.28,20,9.92,10.14
-26105,54,107,54107,12333,5905,35046438,32418567,12333,5905,35046438,32418567,86956,40215,975820561,948607826,100,100,100,100,14.18,14.68,3.59,3.42
-26133,54,107,54107,1415,623,104048920,101594399,1415,623,104048920,101594399,86956,40215,975820561,948607826,100,100,100,100,1.63,1.55,10.66,10.71
-26134,54,073,54073,888,393,8849774,5470035,888,393,8849774,5470035,7605,3390,348475641,336966345,100,100,100,100,11.68,11.59,2.54,1.62
-26136,54,013,54013,644,368,70049856,69301101,644,368,70049856,69301101,7627,3963,726956877,723252287,100,100,100,100,8.44,9.29,9.64,9.58
-26137,54,013,54013,626,333,59819205,59809236,939,529,135674014,135618308,7627,3963,726956877,723252287,66.67,62.95,44.09,44.1,8.21,8.4,8.23,8.27
-26137,54,021,54021,254,156,58848491,58804384,939,529,135674014,135618308,8693,3448,880800061,876717515,27.05,29.49,43.37,43.36,2.92,4.52,6.68,6.71
-26137,54,085,54085,59,40,17006318,17004688,939,529,135674014,135618308,10449,5843,1175073413,1170650137,6.28,7.56,12.53,12.54,0.56,0.68,1.45,1.45
-26138,54,105,54105,127,74,13793200,13792941,127,74,13793200,13792941,5717,3231,608040860,602195193,100,100,100,100,2.22,2.29,2.27,2.29
-26141,54,013,54013,218,136,53899935,53672540,364,242,88610556,87758758,7627,3963,726956877,723252287,59.89,56.2,60.83,61.16,2.86,3.43,7.41,7.42
-26141,54,105,54105,146,106,34710621,34086218,364,242,88610556,87758758,5717,3231,608040860,602195193,40.11,43.8,39.17,38.84,2.55,3.28,5.71,5.66
-26142,54,107,54107,2574,1074,33325631,32864458,2574,1074,33325631,32864458,86956,40215,975820561,948607826,100,100,100,100,2.96,2.67,3.42,3.46
-26143,54,013,54013,28,19,4120752,4120200,4547,2520,380599700,377141897,7627,3963,726956877,723252287,0.62,0.75,1.08,1.09,0.37,0.48,0.57,0.57
-26143,54,035,54035,106,39,9084944,9082992,4547,2520,380599700,377141897,29211,13305,1221513901,1202654983,2.33,1.55,2.39,2.41,0.36,0.29,0.74,0.76
-26143,54,085,54085,41,24,17982470,17965595,4547,2520,380599700,377141897,10449,5843,1175073413,1170650137,0.9,0.95,4.72,4.76,0.39,0.41,1.53,1.53
-26143,54,105,54105,4054,2287,326801714,323530071,4547,2520,380599700,377141897,5717,3231,608040860,602195193,89.16,90.75,85.86,85.78,70.91,70.78,53.75,53.73
-26143,54,107,54107,318,151,22609820,22443039,4547,2520,380599700,377141897,86956,40215,975820561,948607826,6.99,5.99,5.94,5.95,0.37,0.38,2.32,2.37
-26146,54,073,54073,300,206,46389738,45863156,1003,665,103472664,102311753,7605,3390,348475641,336966345,29.91,30.98,44.83,44.83,3.94,6.08,13.31,13.61
-26146,54,095,54095,703,459,57082926,56448597,1003,665,103472664,102311753,9208,5000,675200241,663797222,70.09,69.02,55.17,55.17,7.63,9.18,8.45,8.5
-26147,54,013,54013,2188,1157,120860641,119447875,2188,1157,120860641,119447875,7627,3963,726956877,723252287,100,100,100,100,28.69,29.2,16.63,16.52
-26148,54,085,54085,245,217,46562187,46248568,245,217,46562187,46248568,10449,5843,1175073413,1170650137,100,100,100,100,2.34,3.71,3.96,3.95
-26149,54,095,54095,2452,1347,193989797,193046357,2452,1347,193989797,193046357,9208,5000,675200241,663797222,100,100,100,100,26.63,26.94,28.73,29.08
-26150,54,107,54107,6309,2646,120653298,119947237,6309,2646,120653298,119947237,86956,40215,975820561,948607826,100,100,100,100,7.26,6.58,12.36,12.64
-26151,54,013,54013,558,298,64007424,63490285,558,298,64007424,63490285,7627,3963,726956877,723252287,100,100,100,100,7.32,7.52,8.8,8.78
-26152,54,105,54105,56,25,4702285,4702285,56,25,4702285,4702285,5717,3231,608040860,602195193,100,100,100,100,0.98,0.77,0.77,0.78
-26155,54,051,54051,38,51,10293977,10043786,8823,4311,311985737,306083784,33107,15918,808475142,791062651,0.43,1.18,3.3,3.28,0.11,0.32,1.27,1.27
-26155,54,095,54095,361,174,44076747,44005403,8823,4311,311985737,306083784,9208,5000,675200241,663797222,4.09,4.04,14.13,14.38,3.92,3.48,6.53,6.63
-26155,54,103,54103,8424,4086,257615013,252034595,8823,4311,311985737,306083784,16583,8173,935839100,927378346,95.48,94.78,82.57,82.34,50.8,49.99,27.53,27.18
-26159,54,095,54095,838,392,1017286,846711,2745,1313,4543795,4372666,9208,5000,675200241,663797222,30.53,29.86,22.39,19.36,9.1,7.84,0.15,0.13
-26159,54,103,54103,1907,921,3526509,3525955,2745,1313,4543795,4372666,16583,8173,935839100,927378346,69.47,70.14,77.61,80.64,11.5,11.27,0.38,0.38
-26160,54,105,54105,960,534,171040431,169463749,960,534,171040431,169463749,5717,3231,608040860,602195193,100,100,100,100,16.79,16.53,28.13,28.14
-26161,54,085,54085,476,330,124588926,123972926,480,333,125017455,124401455,10449,5843,1175073413,1170650137,99.17,99.1,99.66,99.66,4.56,5.65,10.6,10.59
-26161,54,105,54105,4,3,428529,428529,480,333,125017455,124401455,5717,3231,608040860,602195193,0.83,0.9,0.34,0.34,0.07,0.09,0.07,0.07
-26164,54,035,54035,8197,3805,278862384,267084120,8262,3833,288598106,276804355,29211,13305,1221513901,1202654983,99.21,99.27,96.63,96.49,28.06,28.6,22.83,22.21
-26164,54,107,54107,65,28,9735722,9720235,8262,3833,288598106,276804355,86956,40215,975820561,948607826,0.79,0.73,3.37,3.51,0.07,0.07,1,1.02
-26167,54,103,54103,865,397,47071318,46715167,865,397,47071318,46715167,16583,8173,935839100,927378346,100,100,100,100,5.22,4.86,5.03,5.04
-26169,54,107,54107,842,378,68988909,68967019,842,378,68988909,68967019,86956,40215,975820561,948607826,100,100,100,100,0.97,0.94,7.07,7.27
-26170,54,073,54073,6017,2623,269115857,261517499,6137,2673,279274130,271673491,7605,3390,348475641,336966345,98.04,98.13,96.36,96.26,79.12,77.37,77.23,77.61
-26170,54,085,54085,120,50,10158273,10155992,6137,2673,279274130,271673491,10449,5843,1175073413,1170650137,1.96,1.87,3.64,3.74,1.15,0.86,0.86,0.87
-26175,54,095,54095,3326,1668,124873758,116574200,3326,1668,124873758,116574200,9208,5000,675200241,663797222,100,100,100,100,36.12,33.36,18.49,17.56
-26178,54,085,54085,587,402,107836416,107339837,587,402,107836416,107339837,10449,5843,1175073413,1170650137,100,100,100,100,5.62,6.88,9.18,9.17
-26180,54,105,54105,133,90,19712230,19341583,2284,1049,168773808,167695707,5717,3231,608040860,602195193,5.82,8.58,11.68,11.53,2.33,2.79,3.24,3.21
-26180,54,107,54107,2151,959,149061578,148354124,2284,1049,168773808,167695707,86956,40215,975820561,948607826,94.18,91.42,88.32,88.47,2.47,2.38,15.28,15.64
-26181,54,107,54107,6127,2560,105734041,98654763,6127,2560,105734041,98654763,86956,40215,975820561,948607826,100,100,100,100,7.05,6.37,10.84,10.4
-26184,54,073,54073,289,119,12036946,12032329,2361,977,101045847,100677568,7605,3390,348475641,336966345,12.24,12.18,11.91,11.95,3.8,3.51,3.45,3.57
-26184,54,107,54107,2072,858,89008901,88645239,2361,977,101045847,100677568,86956,40215,975820561,948607826,87.76,87.82,88.09,88.05,2.38,2.13,9.12,9.34
-26187,54,107,54107,5982,2675,59306126,52337725,5982,2675,59306126,52337725,86956,40215,975820561,948607826,100,100,100,100,6.88,6.65,6.08,5.52
-26201,54,001,54001,461,264,36832631,36718821,19701,8703,465021344,464579408,16589,7849,887977995,883338809,2.34,3.03,7.92,7.9,2.78,3.36,4.15,4.16
-26201,54,041,54041,207,86,18371850,18346430,19701,8703,465021344,464579408,16372,7958,1009180251,996874721,1.05,0.99,3.95,3.95,1.26,1.08,1.82,1.84
-26201,54,097,54097,19033,8353,409816863,409514157,19701,8703,465021344,464579408,24254,11099,918809615,918506909,96.61,95.98,88.13,88.15,78.47,75.26,44.6,44.58
-26202,54,067,54067,641,316,36420572,36125404,641,316,36420572,36125404,26233,13064,1694905116,1675266140,100,100,100,100,2.44,2.42,2.15,2.16
-26203,54,101,54101,198,119,65626883,65477242,198,119,65626883,65477242,9154,5428,1440625535,1433476012,100,100,100,100,2.16,2.19,4.56,4.57
-26205,54,067,54067,3690,1712,68008771,67077917,3690,1712,68008771,67077917,26233,13064,1694905116,1675266140,100,100,100,100,14.07,13.1,4.01,4
-26206,54,101,54101,2976,1453,192448272,191261964,2976,1453,192448272,191261964,9154,5428,1440625535,1433476012,100,100,100,100,32.51,26.77,13.36,13.34
-26208,54,067,54067,17,39,36405436,35957294,973,500,218960412,217248722,26233,13064,1694905116,1675266140,1.75,7.8,16.63,16.55,0.06,0.3,2.15,2.15
-26208,54,101,54101,956,461,182554976,181291428,973,500,218960412,217248722,9154,5428,1440625535,1433476012,98.25,92.2,83.37,83.45,10.44,8.49,12.67,12.65
-26209,54,075,54075,112,2067,73089100,73064083,112,2067,73089100,73064083,8719,8847,2439301935,2435323587,100,100,100,100,1.28,23.36,3,3
-26215,54,101,54101,167,99,25108597,25052315,167,99,25108597,25052315,9154,5428,1440625535,1433476012,100,100,100,100,1.82,1.82,1.74,1.75
-26217,54,101,54101,354,284,71542791,71254004,354,284,71542791,71254004,9154,5428,1440625535,1433476012,100,100,100,100,3.87,5.23,4.97,4.97
-26218,54,097,54097,2583,1307,171405813,171405813,2583,1307,171405813,171405813,24254,11099,918809615,918506909,100,100,100,100,10.65,11.78,18.66,18.66
-26222,54,101,54101,454,358,196287097,196084319,454,358,196287097,196084319,9154,5428,1440625535,1433476012,100,100,100,100,4.96,6.6,13.63,13.68
-26224,54,083,54083,181,157,53829079,53829079,221,187,88537671,88537671,29405,14189,2693448574,2692760964,81.9,83.96,60.8,60.8,0.62,1.11,2,2
-26224,54,097,54097,40,30,34708592,34708592,221,187,88537671,88537671,24254,11099,918809615,918506909,18.1,16.04,39.2,39.2,0.16,0.27,3.78,3.78
-26228,54,097,54097,109,55,23526138,23526138,109,55,23526138,23526138,24254,11099,918809615,918506909,100,100,100,100,0.45,0.5,2.56,2.56
-26230,54,083,54083,124,149,121250666,121216222,124,149,121250666,121216222,29405,14189,2693448574,2692760964,100,100,100,100,0.42,1.05,4.5,4.5
-26234,54,097,54097,1454,812,137407333,137407333,1454,812,137407333,137407333,24254,11099,918809615,918506909,100,100,100,100,5.99,7.32,14.95,14.96
-26236,54,097,54097,29,27,641559,641559,29,27,641559,641559,24254,11099,918809615,918506909,100,100,100,100,0.12,0.24,0.07,0.07
-26237,54,097,54097,571,302,101595292,101595292,571,302,101595292,101595292,24254,11099,918809615,918506909,100,100,100,100,2.35,2.72,11.06,11.06
-26238,54,001,54001,609,310,50604649,50593911,739,363,56438963,56428225,16589,7849,887977995,883338809,82.41,85.4,89.66,89.66,3.67,3.95,5.7,5.73
-26238,54,097,54097,130,53,5834314,5834314,739,363,56438963,56428225,24254,11099,918809615,918506909,17.59,14.6,10.34,10.34,0.54,0.48,0.63,0.64
-26241,54,083,54083,14591,6929,335513799,335163400,14591,6929,335513799,335163400,29405,14189,2693448574,2692760964,100,100,100,100,49.62,48.83,12.46,12.45
-26250,54,001,54001,5028,2275,216883992,216065271,5570,2364,228603820,227785099,16589,7849,887977995,883338809,90.27,96.24,94.87,94.85,30.31,28.98,24.42,24.46
-26250,54,083,54083,542,89,11719828,11719828,5570,2364,228603820,227785099,29405,14189,2693448574,2692760964,9.73,3.76,5.13,5.15,1.84,0.63,0.44,0.44
-26253,54,083,54083,3490,1628,178692776,178649519,3490,1628,178692776,178649519,29405,14189,2693448574,2692760964,100,100,100,100,11.87,11.47,6.63,6.63
-26254,54,083,54083,303,217,170008293,169970789,303,217,170008293,169970789,29405,14189,2693448574,2692760964,100,100,100,100,1.03,1.53,6.31,6.31
-26257,54,083,54083,957,393,49381849,49381849,957,393,49381849,49381849,29405,14189,2693448574,2692760964,100,100,100,100,3.25,2.77,1.83,1.83
-26259,54,083,54083,176,95,5091490,5091490,176,95,5091490,5091490,29405,14189,2693448574,2692760964,100,100,100,100,0.6,0.67,0.19,0.19
-26260,54,093,54093,1377,2068,408244122,407730358,1377,2068,408244122,407730358,7141,5346,1090533016,1085004058,100,100,100,100,19.28,38.68,37.44,37.58
-26261,54,025,54025,73,44,115365442,115078686,2701,1634,256933602,255575404,35480,18980,2653468249,2640671499,2.7,2.69,44.9,45.03,0.21,0.23,4.35,4.36
-26261,54,067,54067,2628,1590,141568160,140496718,2701,1634,256933602,255575404,26233,13064,1694905116,1675266140,97.3,97.31,55.1,54.97,10.02,12.17,8.35,8.39
-26263,54,083,54083,199,253,72086198,72086198,316,351,79050932,79050932,29405,14189,2693448574,2692760964,62.97,72.08,91.19,91.19,0.68,1.78,2.68,2.68
-26263,54,093,54093,117,98,6964734,6964734,316,351,79050932,79050932,7141,5346,1090533016,1085004058,37.03,27.92,8.81,8.81,1.64,1.83,0.64,0.64
-26264,54,075,54075,642,455,269199097,269199097,642,455,269199097,269199097,8719,8847,2439301935,2435323587,100,100,100,100,7.36,5.14,11.04,11.05
-26266,54,101,54101,252,113,10411833,10349753,252,113,10411833,10349753,9154,5428,1440625535,1433476012,100,100,100,100,2.75,2.08,0.72,0.72
-26267,54,001,54001,30,11,1256880,1256880,369,166,61515533,61515533,16589,7849,887977995,883338809,8.13,6.63,2.04,2.04,0.18,0.14,0.14,0.14
-26267,54,083,54083,203,94,47207016,47207016,369,166,61515533,61515533,29405,14189,2693448574,2692760964,55.01,56.63,76.74,76.74,0.69,0.66,1.75,1.75
-26267,54,097,54097,136,61,13051637,13051637,369,166,61515533,61515533,24254,11099,918809615,918506909,36.86,36.75,21.22,21.22,0.56,0.55,1.42,1.42
-26268,54,083,54083,82,190,160149939,160149939,82,190,160149939,160149939,29405,14189,2693448574,2692760964,100,100,100,100,0.28,1.34,5.95,5.95
-26269,54,093,54093,1018,483,54774070,54213667,1018,483,54774070,54213667,7141,5346,1090533016,1085004058,100,100,100,100,14.26,9.03,5.02,5
-26270,54,083,54083,755,490,198035813,198035813,755,490,198035813,198035813,29405,14189,2693448574,2692760964,100,100,100,100,2.57,3.45,7.35,7.35
-26271,54,093,54093,383,259,82759844,82741480,383,259,82759844,82741480,7141,5346,1090533016,1085004058,100,100,100,100,5.36,4.84,7.59,7.63
-26273,54,083,54083,2041,500,328842476,328830477,2041,500,328842476,328830477,29405,14189,2693448574,2692760964,100,100,100,100,6.94,3.52,12.21,12.21
-26275,54,001,54001,744,318,10838525,10640797,744,318,10838525,10640797,16589,7849,887977995,883338809,100,100,100,100,4.48,4.05,1.22,1.2
-26276,54,083,54083,285,134,31944427,31837998,356,179,39184482,39078053,29405,14189,2693448574,2692760964,80.06,74.86,81.52,81.47,0.97,0.94,1.19,1.18
-26276,54,093,54093,71,45,7240055,7240055,356,179,39184482,39078053,7141,5346,1090533016,1085004058,19.94,25.14,18.48,18.53,0.99,0.84,0.66,0.67
-26278,54,083,54083,591,268,158961733,158961733,591,268,158961733,158961733,29405,14189,2693448574,2692760964,100,100,100,100,2.01,1.89,5.9,5.9
-26280,54,083,54083,1710,811,179271169,179271169,1710,811,179271169,179271169,29405,14189,2693448574,2692760964,100,100,100,100,5.82,5.72,6.66,6.66
-26282,54,083,54083,60,84,141936946,141936946,60,84,141936946,141936946,29405,14189,2693448574,2692760964,100,100,100,100,0.2,0.59,5.27,5.27
-26283,54,001,54001,221,237,20529569,20386768,1734,945,155451110,155308309,16589,7849,887977995,883338809,12.75,25.08,13.21,13.13,1.33,3.02,2.31,2.31
-26283,54,083,54083,1305,594,85787559,85787559,1734,945,155451110,155308309,29405,14189,2693448574,2692760964,75.26,62.86,55.19,55.24,4.44,4.19,3.19,3.19
-26283,54,093,54093,208,114,49133982,49133982,1734,945,155451110,155308309,7141,5346,1090533016,1085004058,12,12.06,31.61,31.64,2.91,2.13,4.51,4.53
-26285,54,083,54083,304,153,27698199,27698199,304,153,27698199,27698199,29405,14189,2693448574,2692760964,100,100,100,100,1.03,1.08,1.03,1.03
-26287,54,093,54093,3131,1811,397765058,393585687,3131,1811,397765058,393585687,7141,5346,1090533016,1085004058,100,100,100,100,43.85,33.88,36.47,36.28
-26288,54,101,54101,3603,2408,599756597,595907379,3603,2408,599756597,595907379,9154,5428,1440625535,1433476012,100,100,100,100,39.36,44.36,41.63,41.57
-26291,54,075,54075,165,156,163023602,163023602,165,156,163023602,163023602,8719,8847,2439301935,2435323587,100,100,100,100,1.89,1.76,6.68,6.69
-26292,54,093,54093,836,467,43054901,42937904,836,467,43054901,42937904,7141,5346,1090533016,1085004058,100,100,100,100,11.71,8.74,3.95,3.96
-26293,54,083,54083,600,282,15205151,15205151,600,282,15205151,15205151,29405,14189,2693448574,2692760964,100,100,100,100,2.04,1.99,0.56,0.56
-26294,54,083,54083,729,557,204748382,204748382,729,557,204748382,204748382,29405,14189,2693448574,2692760964,100,100,100,100,2.48,3.93,7.6,7.6
-26296,54,083,54083,177,122,116085786,115982208,177,122,116085786,115982208,29405,14189,2693448574,2692760964,100,100,100,100,0.6,0.86,4.31,4.31
-26298,54,101,54101,96,84,28789364,28739804,96,84,28789364,28739804,9154,5428,1440625535,1433476012,100,100,100,100,1.05,1.55,2,2
-26301,54,033,54033,30435,14313,192191494,192146611,30435,14313,192191494,192146611,69099,31431,1078775092,1077454759,100,100,100,100,44.05,45.54,17.82,17.83
-26320,54,095,54095,1000,627,146016117,145055298,1000,627,146016117,145055298,9208,5000,675200241,663797222,100,100,100,100,10.86,12.54,21.63,21.85
-26321,54,041,54041,354,202,64607804,64288455,354,202,64607804,64288455,16372,7958,1009180251,996874721,100,100,100,100,2.16,2.54,6.4,6.45
-26323,54,033,54033,602,274,2945965,2945965,602,274,2945965,2945965,69099,31431,1078775092,1077454759,100,100,100,100,0.87,0.87,0.27,0.27
-26325,54,085,54085,320,198,64883172,64849768,320,198,64883172,64849768,10449,5843,1175073413,1170650137,100,100,100,100,3.06,3.39,5.52,5.54
-26327,54,085,54085,83,65,22452856,22233364,83,65,22452856,22233364,10449,5843,1175073413,1170650137,100,100,100,100,0.79,1.11,1.91,1.9
-26330,54,001,54001,143,65,12868022,12868022,14377,6293,187717851,187382939,16589,7849,887977995,883338809,0.99,1.03,6.85,6.87,0.86,0.83,1.45,1.46
-26330,54,033,54033,12472,5504,135445794,135110882,14377,6293,187717851,187382939,69099,31431,1078775092,1077454759,86.75,87.46,72.15,72.1,18.05,17.51,12.56,12.54
-26330,54,091,54091,1762,724,39404035,39404035,14377,6293,187717851,187382939,16895,7541,455007771,447474960,12.26,11.5,20.99,21.03,10.43,9.6,8.66,8.81
-26335,54,007,54007,1152,583,90293322,89453334,1378,693,123958689,122957387,14523,7415,1337141156,1322996847,83.6,84.13,72.84,72.75,7.93,7.86,6.75,6.76
-26335,54,021,54021,226,110,33665367,33504053,1378,693,123958689,122957387,8693,3448,880800061,876717515,16.4,15.87,27.16,27.25,2.6,3.19,3.82,3.82
-26337,54,085,54085,1218,743,168338880,167692652,1218,743,168338880,167692652,10449,5843,1175073413,1170650137,100,100,100,100,11.66,12.72,14.33,14.32
-26338,54,041,54041,629,327,102407730,102252733,629,327,102407730,102252733,16372,7958,1009180251,996874721,100,100,100,100,3.84,4.11,10.15,10.26
-26339,54,017,54017,255,159,54248181,54243700,255,159,54248181,54243700,8202,3946,830029347,828070906,100,100,100,100,3.11,4.03,6.54,6.55
-26342,54,021,54021,509,279,124232899,124042254,509,279,124232899,124042254,8693,3448,880800061,876717515,100,100,100,100,5.86,8.09,14.1,14.15
-26343,54,041,54041,276,165,34105127,33984690,445,264,54927201,54806764,16372,7958,1009180251,996874721,62.02,62.5,62.09,62.01,1.69,2.07,3.38,3.41
-26343,54,097,54097,169,99,20822074,20822074,445,264,54927201,54806764,24254,11099,918809615,918506909,37.98,37.5,37.91,37.99,0.7,0.89,2.27,2.27
-26346,54,073,54073,111,49,12083326,12083326,972,480,72364774,72154994,7605,3390,348475641,336966345,11.42,10.21,16.7,16.75,1.46,1.45,3.47,3.59
-26346,54,085,54085,861,431,60281448,60071668,972,480,72364774,72154994,10449,5843,1175073413,1170650137,88.58,89.79,83.3,83.25,8.24,7.38,5.13,5.13
-26347,54,001,54001,486,207,35806437,35806437,2068,889,102155407,102155407,16589,7849,887977995,883338809,23.5,23.28,35.05,35.05,2.93,2.64,4.03,4.05
-26347,54,091,54091,1582,682,66348970,66348970,2068,889,102155407,102155407,16895,7541,455007771,447474960,76.5,76.72,64.95,64.95,9.36,9.04,14.58,14.83
-26348,54,103,54103,196,95,32090937,32089531,196,95,32090937,32089531,16583,8173,935839100,927378346,100,100,100,100,1.18,1.16,3.43,3.46
-26349,54,001,54001,132,58,1619980,1619980,132,58,1619980,1619980,16589,7849,887977995,883338809,100,100,100,100,0.8,0.74,0.18,0.18
-26351,54,021,54021,5120,1533,221071226,219368098,5120,1533,221071226,219368098,8693,3448,880800061,876717515,100,100,100,100,58.9,44.46,25.1,25.02
-26354,54,049,54049,31,12,253946,253946,11135,5035,269199083,261669237,56418,26463,806828811,799620921,0.28,0.24,0.09,0.1,0.05,0.05,0.03,0.03
-26354,54,091,54091,11104,5023,268945137,261415291,11135,5035,269199083,261669237,16895,7541,455007771,447474960,99.72,99.76,99.91,99.9,65.72,66.61,59.11,58.42
-26361,54,033,54033,263,112,723362,723362,263,112,723362,723362,69099,31431,1078775092,1077454759,100,100,100,100,0.38,0.36,0.07,0.07
-26362,54,085,54085,3378,1806,272480470,271612217,3378,1806,272480470,271612217,10449,5843,1175073413,1170650137,100,100,100,100,32.33,30.91,23.19,23.2
-26366,54,033,54033,144,60,1033348,1033348,144,60,1033348,1033348,69099,31431,1078775092,1077454759,100,100,100,100,0.21,0.19,0.1,0.1
-26369,54,033,54033,762,330,3544055,3544055,762,330,3544055,3544055,69099,31431,1078775092,1077454759,100,100,100,100,1.1,1.05,0.33,0.33
-26372,54,041,54041,686,368,83150613,78883077,686,368,83150613,78883077,16372,7958,1009180251,996874721,100,100,100,100,4.19,4.62,8.24,7.91
-26374,54,061,54061,138,66,10577836,10570625,1375,632,84598553,84591342,96189,43238,947624590,932556578,10.04,10.44,12.5,12.5,0.14,0.15,1.12,1.13
-26374,54,077,54077,1175,532,64142114,64142114,1375,632,84598553,84591342,33520,15097,1687088319,1680396095,85.45,84.18,75.82,75.83,3.51,3.52,3.8,3.82
-26374,54,091,54091,62,34,9878603,9878603,1375,632,84598553,84591342,16895,7541,455007771,447474960,4.51,5.38,11.68,11.68,0.37,0.45,2.17,2.21
-26376,54,007,54007,162,100,34405427,34317013,463,295,81761259,81478520,14523,7415,1337141156,1322996847,34.99,33.9,42.08,42.12,1.12,1.35,2.57,2.59
-26376,54,041,54041,301,195,47355832,47161507,463,295,81761259,81478520,16372,7958,1009180251,996874721,65.01,66.1,57.92,57.88,1.84,2.45,4.69,4.73
-26377,54,095,54095,200,142,46880922,46869353,700,385,145023788,144702453,9208,5000,675200241,663797222,28.57,36.88,32.33,32.39,2.17,2.84,6.94,7.06
-26377,54,103,54103,500,243,98142866,97833100,700,385,145023788,144702453,16583,8173,935839100,927378346,71.43,63.12,67.67,67.61,3.02,2.97,10.49,10.55
-26378,54,033,54033,955,414,58643718,58595560,3820,1635,161766720,160969622,69099,31431,1078775092,1077454759,25,25.32,36.25,36.4,1.38,1.32,5.44,5.44
-26378,54,041,54041,2865,1221,103123002,102374062,3820,1635,161766720,160969622,16372,7958,1009180251,996874721,75,74.68,63.75,63.6,17.5,15.34,10.22,10.27
-26384,54,021,54021,469,240,76138239,75716076,520,265,87331765,86898334,8693,3448,880800061,876717515,90.19,90.57,87.18,87.13,5.4,6.96,8.64,8.64
-26384,54,041,54041,51,25,11193526,11182258,520,265,87331765,86898334,16372,7958,1009180251,996874721,9.81,9.43,12.82,12.87,0.31,0.31,1.11,1.12
-26385,54,033,54033,3872,1660,159913585,159612168,3872,1660,159913585,159612168,69099,31431,1078775092,1077454759,100,100,100,100,5.6,5.28,14.82,14.81
-26386,54,033,54033,2411,1050,68679248,68537273,2411,1050,68679248,68537273,69099,31431,1078775092,1077454759,100,100,100,100,3.49,3.34,6.37,6.36
-26404,54,033,54033,458,210,8803104,8796731,458,210,8803104,8796731,69099,31431,1078775092,1077454759,100,100,100,100,0.66,0.67,0.82,0.82
-26405,54,001,54001,1101,557,116211641,114793048,1179,602,138183541,136764948,16589,7849,887977995,883338809,93.38,92.52,84.1,83.93,6.64,7.1,13.09,13
-26405,54,077,54077,78,45,21971900,21971900,1179,602,138183541,136764948,33520,15097,1687088319,1680396095,6.62,7.48,15.9,16.07,0.23,0.3,1.3,1.31
-26408,54,033,54033,2852,1187,78238293,78220747,2852,1187,78238293,78220747,69099,31431,1078775092,1077454759,100,100,100,100,4.13,3.78,7.25,7.26
-26410,54,077,54077,1037,510,59387684,59364840,1037,510,59387684,59364840,33520,15097,1687088319,1680396095,100,100,100,100,3.09,3.38,3.52,3.53
-26411,54,017,54017,707,411,190408341,190067376,707,411,190408341,190067376,8202,3946,830029347,828070906,100,100,100,100,8.62,10.42,22.94,22.95
-26412,54,007,54007,213,117,53423826,52648252,546,300,119622658,118834488,14523,7415,1337141156,1322996847,39.01,39,44.66,44.3,1.47,1.58,4,3.98
-26412,54,021,54021,61,34,15813963,15813647,546,300,119622658,118834488,8693,3448,880800061,876717515,11.17,11.33,13.22,13.31,0.7,0.99,1.8,1.8
-26412,54,041,54041,272,149,50384869,50372589,546,300,119622658,118834488,16372,7958,1009180251,996874721,49.82,49.67,42.12,42.39,1.66,1.87,4.99,5.05
-26415,54,017,54017,1099,289,34042183,34027769,4016,1751,266742585,265824161,8202,3946,830029347,828070906,27.37,16.5,12.76,12.8,13.4,7.32,4.1,4.11
-26415,54,085,54085,2746,1363,188378246,187645872,4016,1751,266742585,265824161,10449,5843,1175073413,1170650137,68.38,77.84,70.62,70.59,26.28,23.33,16.03,16.03
-26415,54,095,54095,171,99,44322156,44150520,4016,1751,266742585,265824161,9208,5000,675200241,663797222,4.26,5.65,16.62,16.61,1.86,1.98,6.56,6.65
-26416,54,001,54001,7529,3498,358376306,356447750,7529,3498,358376306,356447750,16589,7849,887977995,883338809,100,100,100,100,45.39,44.57,40.36,40.35
-26419,54,103,54103,1131,564,97399560,96882595,1131,564,97399560,96882595,16583,8173,935839100,927378346,100,100,100,100,6.82,6.9,10.41,10.45
-26421,54,085,54085,262,141,43915600,43890326,262,141,43915600,43890326,10449,5843,1175073413,1170650137,100,100,100,100,2.51,2.41,3.74,3.75
-26422,54,033,54033,606,265,8075780,8075780,606,265,8075780,8075780,69099,31431,1078775092,1077454759,100,100,100,100,0.88,0.84,0.75,0.75
-26424,54,091,54091,318,138,6513383,6513383,318,138,6513383,6513383,16895,7541,455007771,447474960,100,100,100,100,1.88,1.83,1.43,1.46
-26425,54,077,54077,1216,643,132853522,131043425,1216,643,132853522,131043425,33520,15097,1687088319,1680396095,100,100,100,100,3.63,4.26,7.87,7.8
-26426,54,017,54017,2372,1043,187634254,187572873,7003,3198,342768261,342330557,8202,3946,830029347,828070906,33.87,32.61,54.74,54.79,28.92,26.43,22.61,22.65
-26426,54,033,54033,4631,2155,155134007,154757684,7003,3198,342768261,342330557,69099,31431,1078775092,1077454759,66.13,67.39,45.26,45.21,6.7,6.86,14.38,14.36
-26430,54,021,54021,466,217,31927145,31743119,466,217,31927145,31743119,8693,3448,880800061,876717515,100,100,100,100,5.36,6.29,3.62,3.62
-26431,54,033,54033,5379,2493,93893201,93856492,5950,2767,96446671,96409962,69099,31431,1078775092,1077454759,90.4,90.1,97.35,97.35,7.78,7.93,8.7,8.71
-26431,54,091,54091,571,274,2553470,2553470,5950,2767,96446671,96409962,16895,7541,455007771,447474960,9.6,9.9,2.65,2.65,3.38,3.63,0.56,0.57
-26435,54,091,54091,98,40,391023,391023,98,40,391023,391023,16895,7541,455007771,447474960,100,100,100,100,0.58,0.53,0.09,0.09
-26436,54,017,54017,204,85,6325773,6257505,204,85,6325773,6257505,8202,3946,830029347,828070906,100,100,100,100,2.49,2.15,0.76,0.76
-26437,54,049,54049,10,4,3033263,3033263,645,334,83519434,83501047,56418,26463,806828811,799620921,1.55,1.2,3.63,3.63,0.02,0.02,0.38,0.38
-26437,54,103,54103,635,330,80486171,80467784,645,334,83519434,83501047,16583,8173,935839100,927378346,98.45,98.8,96.37,96.37,3.83,4.04,8.6,8.68
-26438,54,033,54033,176,81,151413,151413,176,81,151413,151413,69099,31431,1078775092,1077454759,100,100,100,100,0.25,0.26,0.01,0.01
-26440,54,001,54001,105,49,26149363,26141124,1135,541,111315399,111299270,16589,7849,887977995,883338809,9.25,9.06,23.49,23.49,0.63,0.62,2.94,2.96
-26440,54,077,54077,311,152,30352552,30347627,1135,541,111315399,111299270,33520,15097,1687088319,1680396095,27.4,28.1,27.27,27.27,0.93,1.01,1.8,1.81
-26440,54,091,54091,719,340,54813484,54810519,1135,541,111315399,111299270,16895,7541,455007771,447474960,63.35,62.85,49.24,49.25,4.26,4.51,12.05,12.25
-26443,54,017,54017,16,12,7233410,7233410,258,147,49770071,49560956,8202,3946,830029347,828070906,6.2,8.16,14.53,14.59,0.2,0.3,0.87,0.87
-26443,54,021,54021,242,135,42536661,42327546,258,147,49770071,49560956,8693,3448,880800061,876717515,93.8,91.84,85.47,85.41,2.78,3.92,4.83,4.83
-26444,54,077,54077,3639,1626,187122041,186840198,3639,1626,187122041,186840198,33520,15097,1687088319,1680396095,100,100,100,100,10.86,10.77,11.09,11.12
-26447,54,041,54041,1055,537,169291090,165094693,1055,537,169291090,165094693,16372,7958,1009180251,996874721,100,100,100,100,6.44,6.75,16.78,16.56
-26448,54,017,54017,25,13,3457669,3457669,1421,603,97252977,97236304,8202,3946,830029347,828070906,1.76,2.16,3.56,3.56,0.3,0.33,0.42,0.42
-26448,54,033,54033,1306,556,88283451,88271414,1421,603,97252977,97236304,69099,31431,1078775092,1077454759,91.91,92.21,90.78,90.78,1.89,1.77,8.18,8.19
-26448,54,049,54049,90,34,5511857,5507221,1421,603,97252977,97236304,56418,26463,806828811,799620921,6.33,5.64,5.67,5.66,0.16,0.13,0.68,0.69
-26451,54,033,54033,685,306,3245562,3245562,685,306,3245562,3245562,69099,31431,1078775092,1077454759,100,100,100,100,0.99,0.97,0.3,0.3
-26452,54,041,54041,9676,4683,325188808,322934227,9676,4683,325188808,322934227,16372,7958,1009180251,996874721,100,100,100,100,59.1,58.85,32.22,32.39
-26456,54,017,54017,3524,1934,346679536,345210604,3734,2059,393828219,391978051,8202,3946,830029347,828070906,94.38,93.93,88.03,88.07,42.97,49.01,41.77,41.69
-26456,54,085,54085,53,33,30208151,29966664,3734,2059,393828219,391978051,10449,5843,1175073413,1170650137,1.42,1.6,7.67,7.64,0.51,0.56,2.57,2.56
-26456,54,095,54095,157,92,16940532,16800783,3734,2059,393828219,391978051,9208,5000,675200241,663797222,4.2,4.47,4.3,4.29,1.71,1.84,2.51,2.53
-26501,54,061,54061,19616,8905,158351612,156032962,19616,8905,158351612,156032962,96189,43238,947624590,932556578,100,100,100,100,20.39,20.6,16.71,16.73
-26505,54,061,54061,38772,17781,34820711,33990087,38772,17781,34820711,33990087,96189,43238,947624590,932556578,100,100,100,100,40.31,41.12,3.67,3.64
-26508,54,061,54061,29170,12705,323876441,315158376,29170,12705,323876441,315158376,96189,43238,947624590,932556578,100,100,100,100,30.33,29.38,34.18,33.8
-26519,54,077,54077,1836,867,167930201,167016248,1836,867,167930201,167016248,33520,15097,1687088319,1680396095,100,100,100,100,5.48,5.74,9.95,9.94
-26520,54,077,54077,778,372,5389858,5389858,778,372,5389858,5389858,33520,15097,1687088319,1680396095,100,100,100,100,2.32,2.46,0.32,0.32
-26521,54,061,54061,346,161,5890438,5814911,346,161,5890438,5814911,96189,43238,947624590,932556578,100,100,100,100,0.36,0.37,0.62,0.62
-26525,54,077,54077,7064,2372,360430445,359694833,7064,2372,360430445,359694833,33520,15097,1687088319,1680396095,100,100,100,100,21.07,15.71,21.36,21.41
-26534,54,061,54061,789,399,3614085,3479168,789,399,3614085,3479168,96189,43238,947624590,932556578,100,100,100,100,0.82,0.92,0.38,0.37
-26537,54,077,54077,5721,2600,107741721,106877346,5721,2600,107741721,106877346,33520,15097,1687088319,1680396095,100,100,100,100,17.07,17.22,6.39,6.36
-26541,54,061,54061,2624,1171,99114183,97850593,2624,1171,99114183,97850593,96189,43238,947624590,932556578,100,100,100,100,2.73,2.71,10.46,10.49
-26542,54,061,54061,261,105,23208628,22851136,2547,1221,93992537,93238463,96189,43238,947624590,932556578,10.25,8.6,24.69,24.51,0.27,0.24,2.45,2.45
-26542,54,077,54077,2286,1116,70783909,70387327,2547,1221,93992537,93238463,33520,15097,1687088319,1680396095,89.75,91.4,75.31,75.49,6.82,7.39,4.2,4.19
-26543,54,061,54061,252,141,2370714,2340223,252,141,2370714,2340223,96189,43238,947624590,932556578,100,100,100,100,0.26,0.33,0.25,0.25
-26547,54,077,54077,2376,1007,39147264,38661524,2376,1007,39147264,38661524,33520,15097,1687088319,1680396095,100,100,100,100,7.09,6.67,2.32,2.3
-26554,54,033,54033,230,104,6266088,6266088,41369,19466,355912329,350408858,69099,31431,1078775092,1077454759,0.56,0.53,1.76,1.79,0.33,0.33,0.58,0.58
-26554,54,049,54049,39551,18694,312009212,307558544,41369,19466,355912329,350408858,56418,26463,806828811,799620921,95.61,96.03,87.66,87.77,70.1,70.64,38.67,38.46
-26554,54,061,54061,909,382,31477363,30424560,41369,19466,355912329,350408858,96189,43238,947624590,932556578,2.2,1.96,8.84,8.68,0.95,0.88,3.32,3.26
-26554,54,091,54091,679,286,6159666,6159666,41369,19466,355912329,350408858,16895,7541,455007771,447474960,1.64,1.47,1.73,1.76,4.02,3.79,1.35,1.38
-26559,54,049,54049,1269,584,1665861,1582041,1269,584,1665861,1582041,56418,26463,806828811,799620921,100,100,100,100,2.25,2.21,0.21,0.2
-26560,54,049,54049,227,99,569846,535012,227,99,569846,535012,56418,26463,806828811,799620921,100,100,100,100,0.4,0.37,0.07,0.07
-26562,54,061,54061,239,113,42544747,42530821,634,337,104098782,104073720,96189,43238,947624590,932556578,37.7,33.53,40.87,40.87,0.25,0.26,4.49,4.56
-26562,54,103,54103,395,224,61554035,61542899,634,337,104098782,104073720,16583,8173,935839100,927378346,62.3,66.47,59.13,59.13,2.38,2.74,6.58,6.64
-26563,54,049,54049,381,184,1520764,1518719,381,184,1520764,1518719,56418,26463,806828811,799620921,100,100,100,100,0.68,0.7,0.19,0.19
-26568,54,033,54033,679,279,3411763,3411763,679,279,3411763,3411763,69099,31431,1078775092,1077454759,100,100,100,100,0.98,0.89,0.32,0.32
-26570,54,049,54049,1607,727,46270682,46054012,3595,1563,174806493,174492560,56418,26463,806828811,799620921,44.7,46.51,26.47,26.39,2.85,2.75,5.73,5.76
-26570,54,061,54061,1988,836,128535811,128438548,3595,1563,174806493,174492560,96189,43238,947624590,932556578,55.3,53.49,73.53,73.61,2.07,1.93,13.56,13.77
-26571,54,049,54049,1833,847,39491564,39248904,1833,847,39491564,39248904,56418,26463,806828811,799620921,100,100,100,100,3.25,3.2,4.89,4.91
-26572,54,049,54049,136,61,1195509,1184316,136,61,1195509,1184316,56418,26463,806828811,799620921,100,100,100,100,0.24,0.23,0.15,0.15
-26574,54,049,54049,664,329,7302229,7262060,664,329,7302229,7262060,56418,26463,806828811,799620921,100,100,100,100,1.18,1.24,0.91,0.91
-26575,54,103,54103,827,457,55793553,55736152,827,457,55793553,55736152,16583,8173,935839100,927378346,100,100,100,100,4.99,5.59,5.96,6.01
-26576,54,049,54049,608,264,2267036,2265417,608,264,2267036,2265417,56418,26463,806828811,799620921,100,100,100,100,1.08,1,0.28,0.28
-26581,54,103,54103,1104,557,126995107,126727920,1104,557,126995107,126727920,16583,8173,935839100,927378346,100,100,100,100,6.66,6.82,13.57,13.67
-26582,54,033,54033,56,27,8950379,8950379,5335,2448,260074888,259457343,69099,31431,1078775092,1077454759,1.05,1.1,3.44,3.45,0.08,0.09,0.83,0.83
-26582,54,049,54049,5279,2421,251124509,250506964,5335,2448,260074888,259457343,56418,26463,806828811,799620921,98.95,98.9,96.56,96.55,9.36,9.15,31.12,31.33
-26585,54,049,54049,388,202,40477509,40439705,479,259,61473205,61435401,56418,26463,806828811,799620921,81,77.99,65.85,65.82,0.69,0.76,5.02,5.06
-26585,54,103,54103,91,57,20995696,20995696,479,259,61473205,61435401,16583,8173,935839100,927378346,19,22.01,34.15,34.18,0.55,0.7,2.24,2.26
-26586,54,049,54049,209,86,1752904,1649198,209,86,1752904,1649198,56418,26463,806828811,799620921,100,100,100,100,0.37,0.32,0.22,0.21
-26587,54,049,54049,432,183,3433212,3344079,432,183,3433212,3344079,56418,26463,806828811,799620921,100,100,100,100,0.77,0.69,0.43,0.42
-26588,54,049,54049,2317,1086,53704716,52725036,2611,1213,72184954,71176823,56418,26463,806828811,799620921,88.74,89.53,74.4,74.08,4.11,4.1,6.66,6.59
-26588,54,061,54061,294,127,18480238,18451787,2611,1213,72184954,71176823,96189,43238,947624590,932556578,11.26,10.47,25.6,25.92,0.31,0.29,1.95,1.98
-26590,54,061,54061,791,346,64761783,64622781,791,346,64761783,64622781,96189,43238,947624590,932556578,100,100,100,100,0.82,0.8,6.83,6.93
-26591,54,033,54033,125,51,1201482,1201482,1511,697,36445674,36153966,69099,31431,1078775092,1077454759,8.27,7.32,3.3,3.32,0.18,0.16,0.11,0.11
-26591,54,049,54049,1386,646,35244192,34952484,1511,697,36445674,36153966,56418,26463,806828811,799620921,91.73,92.68,96.7,96.68,2.46,2.44,4.37,4.37
-26601,54,007,54007,4898,2363,347283398,339918368,4898,2363,347283398,339918368,14523,7415,1337141156,1322996847,100,100,100,100,33.73,31.87,25.97,25.69
-26610,54,067,54067,1051,508,130343546,130051411,1090,532,146258672,145928241,26233,13064,1694905116,1675266140,96.42,95.49,89.12,89.12,4.01,3.89,7.69,7.76
-26610,54,101,54101,39,24,15915126,15876830,1090,532,146258672,145928241,9154,5428,1440625535,1433476012,3.58,4.51,10.88,10.88,0.43,0.44,1.1,1.11
-26611,54,021,54021,224,117,29431030,29163581,224,117,29431030,29163581,8693,3448,880800061,876717515,100,100,100,100,2.58,3.39,3.34,3.33
-26615,54,007,54007,245,120,29793307,29778833,245,120,29793307,29778833,14523,7415,1337141156,1322996847,100,100,100,100,1.69,1.62,2.23,2.25
-26617,54,015,54015,137,81,9083383,9082387,187,112,19338776,19337780,9386,4572,890479886,885522451,73.26,72.32,46.97,46.97,1.46,1.77,1.02,1.03
-26617,54,067,54067,50,31,10255393,10255393,187,112,19338776,19337780,26233,13064,1694905116,1675266140,26.74,27.68,53.03,53.03,0.19,0.24,0.61,0.61
-26619,54,007,54007,606,300,80521193,80414203,606,300,80521193,80414203,14523,7415,1337141156,1322996847,100,100,100,100,4.17,4.05,6.02,6.08
-26621,54,007,54007,757,389,70286280,69912911,757,389,70286280,69912911,14523,7415,1337141156,1322996847,100,100,100,100,5.21,5.25,5.26,5.28
-26623,54,007,54007,1189,618,151227066,150582771,1189,618,151227066,150582771,14523,7415,1337141156,1322996847,100,100,100,100,8.19,8.33,11.31,11.38
-26624,54,007,54007,2950,1511,190557632,189834785,2950,1511,190557632,189834785,14523,7415,1337141156,1322996847,100,100,100,100,20.31,20.38,14.25,14.35
-26627,54,007,54007,447,242,51819904,51549922,447,242,51819904,51549922,14523,7415,1337141156,1322996847,100,100,100,100,3.08,3.26,3.88,3.9
-26629,54,007,54007,309,137,18017054,17944933,309,137,18017054,17944933,14523,7415,1337141156,1322996847,100,100,100,100,2.13,1.85,1.35,1.36
-26631,54,007,54007,352,252,68167120,66171934,352,252,68167120,66171934,14523,7415,1337141156,1322996847,100,100,100,100,2.42,3.4,5.1,5
-26636,54,007,54007,192,91,25757861,25757050,487,240,75328718,75233549,14523,7415,1337141156,1322996847,39.43,37.92,34.19,34.24,1.32,1.23,1.93,1.95
-26636,54,013,54013,41,19,7113451,7113451,487,240,75328718,75233549,7627,3963,726956877,723252287,8.42,7.92,9.44,9.46,0.54,0.48,0.98,0.98
-26636,54,021,54021,254,130,42457406,42363048,487,240,75328718,75233549,8693,3448,880800061,876717515,52.16,54.17,56.36,56.31,2.92,3.77,4.82,4.83
-26638,54,013,54013,52,24,8199246,8198973,178,88,42162708,42137300,7627,3963,726956877,723252287,29.21,27.27,19.45,19.46,0.68,0.61,1.13,1.13
-26638,54,021,54021,126,64,33963462,33938327,178,88,42162708,42137300,8693,3448,880800061,876717515,70.79,72.73,80.55,80.54,1.45,1.86,3.86,3.87
-26651,54,067,54067,9650,4652,638523619,626825003,9650,4652,638523619,626825003,26233,13064,1694905116,1675266140,100,100,100,100,36.79,35.61,37.67,37.42
-26656,54,019,54019,42,22,236057,225145,401,177,23531931,23181378,46039,21618,1731012578,1713406009,10.47,12.43,1,0.97,0.09,0.1,0.01,0.01
-26656,54,067,54067,359,155,23295874,22956233,401,177,23531931,23181378,26233,13064,1694905116,1675266140,89.53,87.57,99,99.03,1.37,1.19,1.37,1.37
-26660,54,067,54067,255,119,15329588,15297587,255,119,15329588,15297587,26233,13064,1694905116,1675266140,100,100,100,100,0.97,0.91,0.9,0.91
-26662,54,067,54067,1154,508,38025902,37964753,1154,508,38025902,37964753,26233,13064,1694905116,1675266140,100,100,100,100,4.4,3.89,2.24,2.27
-26676,54,067,54067,435,244,68949910,68910103,435,244,68949910,68910103,26233,13064,1694905116,1675266140,100,100,100,100,1.66,1.87,4.07,4.11
-26678,54,067,54067,1247,578,37768461,37202625,1247,578,37768461,37202625,26233,13064,1694905116,1675266140,100,100,100,100,4.75,4.42,2.23,2.22
-26679,54,067,54067,1896,1137,139061940,136687212,1896,1137,139061940,136687212,26233,13064,1694905116,1675266140,100,100,100,100,7.23,8.7,8.2,8.16
-26680,54,019,54019,172,88,24695813,24433482,340,180,71170274,70383297,46039,21618,1731012578,1713406009,50.59,48.89,34.7,34.71,0.37,0.41,1.43,1.43
-26680,54,025,54025,87,53,30026213,29665717,340,180,71170274,70383297,35480,18980,2653468249,2640671499,25.59,29.44,42.19,42.15,0.25,0.28,1.13,1.12
-26680,54,067,54067,81,39,16448248,16284098,340,180,71170274,70383297,26233,13064,1694905116,1675266140,23.82,21.67,23.11,23.14,0.31,0.3,0.97,0.97
-26681,54,067,54067,1486,689,93705581,93160084,1486,689,93705581,93160084,26233,13064,1694905116,1675266140,100,100,100,100,5.66,5.27,5.53,5.56
-26684,54,067,54067,116,54,4272547,4270492,116,54,4272547,4270492,26233,13064,1694905116,1675266140,100,100,100,100,0.44,0.41,0.25,0.25
-26690,54,019,54019,319,152,41464188,40834868,584,265,75714940,74402694,46039,21618,1731012578,1713406009,54.62,57.36,54.76,54.88,0.69,0.7,2.4,2.38
-26690,54,067,54067,265,113,34250752,33567826,584,265,75714940,74402694,26233,13064,1694905116,1675266140,45.38,42.64,45.24,45.12,1.01,0.86,2.02,2
-26691,54,067,54067,358,154,26476389,26440927,417,179,36503904,36467086,26233,13064,1694905116,1675266140,85.85,86.03,72.53,72.51,1.36,1.18,1.56,1.58
-26691,54,101,54101,59,25,10027515,10026159,417,179,36503904,36467086,9154,5428,1440625535,1433476012,14.15,13.97,27.47,27.49,0.64,0.46,0.7,0.7
-26704,54,027,54027,5663,2797,249484436,248428271,5663,2797,249484436,248428271,23964,13688,1669580113,1658236572,100,100,100,100,23.63,20.43,14.94,14.98
-26705,54,077,54077,1077,537,146242085,145530962,1077,537,146242085,145530962,33520,15097,1687088319,1680396095,100,100,100,100,3.21,3.56,8.67,8.66
-26707,54,023,54023,344,194,67969905,67905217,344,194,67969905,67905217,11937,6366,1243936631,1236391168,100,100,100,100,2.88,3.05,5.46,5.49
-26710,54,023,54023,92,62,45212873,45014340,2133,1079,214029465,213572210,11937,6366,1243936631,1236391168,4.31,5.75,21.12,21.08,0.77,0.97,3.63,3.64
-26710,54,027,54027,187,102,12455381,12437472,2133,1079,214029465,213572210,23964,13688,1669580113,1658236572,8.77,9.45,5.82,5.82,0.78,0.75,0.75,0.75
-26710,54,057,54057,1854,915,156361211,156120398,2133,1079,214029465,213572210,28212,13039,852670322,849075073,86.92,84.8,73.06,73.1,6.57,7.02,18.34,18.39
-26711,54,027,54027,2655,1390,152754286,152083201,2655,1390,152754286,152083201,23964,13688,1669580113,1658236572,100,100,100,100,11.08,10.15,9.15,9.17
-26714,54,027,54027,482,424,49782867,49505555,482,424,49782867,49505555,23964,13688,1669580113,1658236572,100,100,100,100,2.01,3.1,2.98,2.99
-26716,54,077,54077,706,366,62226597,62187925,706,366,62226597,62187925,33520,15097,1687088319,1680396095,100,100,100,100,2.11,2.42,3.69,3.7
-26717,54,023,54023,165,80,20757872,20747807,1170,549,109570217,108131425,11937,6366,1243936631,1236391168,14.1,14.57,18.94,19.19,1.38,1.26,1.67,1.68
-26717,54,057,54057,1005,469,88812345,87383618,1170,549,109570217,108131425,28212,13039,852670322,849075073,85.9,85.43,81.06,80.81,3.56,3.6,10.42,10.29
-26719,54,057,54057,2785,1233,69807944,69576222,2785,1233,69807944,69576222,28212,13039,852670322,849075073,100,100,100,100,9.87,9.46,8.19,8.19
-26720,54,023,54023,174,100,14987621,14987621,174,100,14987621,14987621,11937,6366,1243936631,1236391168,100,100,100,100,1.46,1.57,1.2,1.21
-26722,54,027,54027,599,404,56210520,55543378,599,404,56210520,55543378,23964,13688,1669580113,1658236572,100,100,100,100,2.5,2.95,3.37,3.35
-26726,54,023,54023,237,130,55895272,55851242,13306,6096,379703452,378152145,11937,6366,1243936631,1236391168,1.78,2.13,14.72,14.77,1.99,2.04,4.49,4.52
-26726,54,057,54057,13069,5966,323808180,322300903,13306,6096,379703452,378152145,28212,13039,852670322,849075073,98.22,97.87,85.28,85.23,46.32,45.76,37.98,37.96
-26731,54,023,54023,382,172,42830933,42760854,382,172,42830933,42760854,11937,6366,1243936631,1236391168,100,100,100,100,3.2,2.7,3.44,3.46
-26739,54,023,54023,889,680,175766700,171028515,889,680,175766700,171028515,11937,6366,1243936631,1236391168,100,100,100,100,7.45,10.68,14.13,13.83
-26743,54,023,54023,309,195,91730667,91418840,1613,803,192916920,192565116,11937,6366,1243936631,1236391168,19.16,24.28,47.55,47.47,2.59,3.06,7.37,7.39
-26743,54,057,54057,1304,608,101186253,101146276,1613,803,192916920,192565116,28212,13039,852670322,849075073,80.84,75.72,52.45,52.53,4.62,4.66,11.87,11.91
-26750,54,057,54057,891,487,1146110,1146110,891,487,1146110,1146110,28212,13039,852670322,849075073,100,100,100,100,3.16,3.73,0.13,0.13
-26753,54,057,54057,6254,2826,66813861,66764842,6254,2826,66813861,66764842,28212,13039,852670322,849075073,100,100,100,100,22.17,21.67,7.84,7.86
-26755,54,027,54027,449,292,56712928,56620867,833,540,114248774,114132259,23964,13688,1669580113,1658236572,53.9,54.07,49.64,49.61,1.87,2.13,3.4,3.41
-26755,54,031,54031,384,248,57535846,57511392,833,540,114248774,114132259,14025,8078,1513806873,1508182025,46.1,45.93,50.36,50.39,2.74,3.07,3.8,3.81
-26757,54,027,54027,6464,3316,365019278,362202029,6464,3316,365019278,362202029,23964,13688,1669580113,1658236572,100,100,100,100,26.97,24.23,21.86,21.84
-26761,54,027,54027,685,303,28500443,28472599,685,303,28500443,28472599,23964,13688,1669580113,1658236572,100,100,100,100,2.86,2.21,1.71,1.72
-26763,54,027,54027,1258,1122,85103287,83698886,1540,1272,123716240,122214125,23964,13688,1669580113,1658236572,81.69,88.21,68.79,68.49,5.25,8.2,5.1,5.05
-26763,54,057,54057,282,150,38612953,38515239,1540,1272,123716240,122214125,28212,13039,852670322,849075073,18.31,11.79,31.21,31.51,1,1.15,4.53,4.54
-26764,54,077,54077,4220,2352,231366426,230939968,4220,2352,231366426,230939968,33520,15097,1687088319,1680396095,100,100,100,100,12.59,15.58,13.71,13.74
-26767,54,057,54057,768,385,6121465,6121465,768,385,6121465,6121465,28212,13039,852670322,849075073,100,100,100,100,2.72,2.95,0.72,0.72
-26801,54,031,54031,1118,739,189918108,189681554,1118,739,189918108,189681554,14025,8078,1513806873,1508182025,100,100,100,100,7.97,9.15,12.55,12.58
-26802,54,071,54071,1357,842,313015791,311278887,1357,842,313015791,311278887,7695,5132,1808196830,1802759588,100,100,100,100,17.63,16.41,17.31,17.27
-26804,54,071,54071,709,430,217639785,216943703,709,430,217639785,216943703,7695,5132,1808196830,1802759588,100,100,100,100,9.21,8.38,12.04,12.03
-26807,54,071,54071,2947,1820,456821609,455897001,2947,1820,456821609,455897001,7695,5132,1808196830,1802759588,100,100,100,100,38.3,35.46,25.26,25.29
-26808,54,027,54027,967,476,51758239,51462388,967,476,51758239,51462388,23964,13688,1669580113,1658236572,100,100,100,100,4.04,3.48,3.1,3.1
-26810,54,031,54031,329,414,83975208,83541903,329,414,83975208,83541903,14025,8078,1513806873,1508182025,100,100,100,100,2.35,5.13,5.55,5.54
-26812,54,031,54031,1705,1273,267713142,267545097,1705,1273,267713142,267545097,14025,8078,1513806873,1508182025,100,100,100,100,12.16,15.76,17.68,17.74
-26814,54,071,54071,415,276,162340283,162065887,415,276,162340283,162065887,7695,5132,1808196830,1802759588,100,100,100,100,5.39,5.38,8.98,8.99
-26815,54,071,54071,646,515,218069908,217742844,646,515,218069908,217742844,7695,5132,1808196830,1802759588,100,100,100,100,8.4,10.04,12.06,12.08
-26817,54,027,54027,443,223,51849356,51366646,443,223,51849356,51366646,23964,13688,1669580113,1658236572,100,100,100,100,1.85,1.63,3.11,3.1
-26818,54,031,54031,709,292,50321667,50214636,709,292,50321667,50214636,14025,8078,1513806873,1508182025,100,100,100,100,5.06,3.61,3.32,3.33
-26823,54,027,54027,198,132,55460729,55424595,198,132,55460729,55424595,23964,13688,1669580113,1658236572,100,100,100,100,0.83,0.96,3.32,3.34
-26833,54,023,54023,2309,1107,314787844,312880978,2309,1107,314787844,312880978,11937,6366,1243936631,1236391168,100,100,100,100,19.34,17.39,25.31,25.31
-26836,54,031,54031,6578,3282,503532092,500422539,6578,3282,503532092,500422539,14025,8078,1513806873,1508182025,100,100,100,100,46.9,40.63,33.26,33.18
-26845,54,031,54031,898,463,91353477,90679356,898,463,91353477,90679356,14025,8078,1513806873,1508182025,100,100,100,100,6.4,5.73,6.03,6.01
-26847,54,023,54023,6263,3180,310520365,310321360,6277,3200,316245148,316046143,11937,6366,1243936631,1236391168,99.78,99.38,98.19,98.19,52.47,49.95,24.96,25.1
-26847,54,071,54071,14,20,5724783,5724783,6277,3200,316245148,316046143,7695,5132,1808196830,1802759588,0.22,0.63,1.81,1.81,0.18,0.39,0.32,0.32
-26851,54,027,54027,112,91,27841139,27686010,2180,1351,282390256,281370733,23964,13688,1669580113,1658236572,5.14,6.74,9.86,9.84,0.47,0.66,1.67,1.67
-26851,54,031,54031,2068,1260,254549117,253684723,2180,1351,282390256,281370733,14025,8078,1513806873,1508182025,94.86,93.26,90.14,90.16,14.75,15.6,16.82,16.82
-26852,54,027,54027,633,383,96001783,95382726,869,490,110909999,110283551,23964,13688,1669580113,1658236572,72.84,78.16,86.56,86.49,2.64,2.8,5.75,5.75
-26852,54,031,54031,236,107,14908216,14900825,869,490,110909999,110283551,14025,8078,1513806873,1508182025,27.16,21.84,13.44,13.51,1.68,1.32,0.98,0.99
-26855,54,023,54023,773,466,103476579,103474394,826,504,109750250,109663491,11937,6366,1243936631,1236391168,93.58,92.46,94.28,94.36,6.48,7.32,8.32,8.37
-26855,54,071,54071,53,38,6273671,6189097,826,504,109750250,109663491,7695,5132,1808196830,1802759588,6.42,7.54,5.72,5.64,0.69,0.74,0.35,0.34
-26865,54,027,54027,248,222,44678632,44239558,248,222,44678632,44239558,23964,13688,1669580113,1658236572,100,100,100,100,1.03,1.62,2.68,2.67
-26866,54,071,54071,929,722,207508322,206727433,929,722,207508322,206727433,7695,5132,1808196830,1802759588,100,100,100,100,12.07,14.07,11.48,11.47
-26884,54,071,54071,625,469,220802678,220189953,625,469,220802678,220189953,7695,5132,1808196830,1802759588,100,100,100,100,8.12,9.14,12.21,12.21
-27006,37,059,37059,14150,6358,168159428,165351964,14150,6358,168159428,165351964,41240,18238,691756076,684029311,100,100,100,100,34.31,34.86,24.31,24.17
-27007,37,171,37171,2162,924,55278291,54972688,2162,924,55278291,54972688,73673,33667,1389020036,1378304182,100,100,100,100,2.93,2.74,3.98,3.99
-27009,37,067,37067,2639,1107,38650194,36750190,2647,1113,45365744,40885454,350670,156872,1068878446,1057097245,99.7,99.46,85.2,89.89,0.75,0.71,3.62,3.48
-27009,37,169,37169,8,6,6715550,4135264,2647,1113,45365744,40885454,47401,21924,1180074409,1162535003,0.3,0.54,14.8,10.11,0.02,0.03,0.57,0.36
-27011,37,197,37197,5497,2608,138917456,137720300,5497,2608,138917456,137720300,38406,17341,874135787,867203563,100,100,100,100,14.31,15.04,15.89,15.88
-27012,37,057,37057,5082,2149,41270725,41080553,25461,10731,110095237,108494594,162878,72655,1468569902,1431421129,19.96,20.03,37.49,37.86,3.12,2.96,2.81,2.87
-27012,37,067,37067,20379,8582,68824512,67414041,25461,10731,110095237,108494594,350670,156872,1068878446,1057097245,80.04,79.97,62.51,62.14,5.81,5.47,6.44,6.38
-27013,37,097,37097,1751,740,37984304,37866535,6057,2562,195669366,195373700,159437,69013,1545970551,1486221270,28.91,28.88,19.41,19.38,1.1,1.07,2.46,2.55
-27013,37,159,37159,4306,1822,157685062,157507165,6057,2562,195669366,195373700,138428,60211,1356441101,1324451332,71.09,71.12,80.59,80.62,3.11,3.03,11.62,11.89
-27014,37,059,37059,840,407,1666958,1618473,840,407,1666958,1618473,41240,18238,691756076,684029311,100,100,100,100,2.04,2.23,0.24,0.24
-27016,37,169,37169,1936,964,104322122,103491930,1936,964,104322122,103491930,47401,21924,1180074409,1162535003,100,100,100,100,4.08,4.4,8.84,8.9
-27017,37,171,37171,9597,4020,280571434,277781142,9597,4020,280571434,277781142,73673,33667,1389020036,1378304182,100,100,100,100,13.03,11.94,20.2,20.15
-27018,37,197,37197,7655,3472,214843699,212324418,7655,3472,214843699,212324418,38406,17341,874135787,867203563,100,100,100,100,19.93,20.02,24.58,24.48
-27019,37,067,37067,1489,665,28615786,28591450,4032,1818,91504103,90794941,350670,156872,1068878446,1057097245,36.93,36.58,31.27,31.49,0.42,0.42,2.68,2.7
-27019,37,169,37169,2543,1153,62888317,62203491,4032,1818,91504103,90794941,47401,21924,1180074409,1162535003,63.07,63.42,68.73,68.51,5.36,5.26,5.33,5.35
-27020,37,097,37097,430,207,24979944,24601492,6421,2826,191179687,190225002,159437,69013,1545970551,1486221270,6.7,7.32,13.07,12.93,0.27,0.3,1.62,1.66
-27020,37,193,37193,389,181,13526668,13526668,6421,2826,191179687,190225002,69340,33065,1960414633,1953571382,6.06,6.4,7.08,7.11,0.56,0.55,0.69,0.69
-27020,37,197,37197,5602,2438,152673075,152096842,6421,2826,191179687,190225002,38406,17341,874135787,867203563,87.24,86.27,79.86,79.96,14.59,14.06,17.47,17.54
-27021,37,067,37067,137,53,906602,901109,18106,7967,139131429,137817974,350670,156872,1068878446,1057097245,0.76,0.67,0.65,0.65,0.04,0.03,0.08,0.09
-27021,37,169,37169,17969,7914,138224827,136916865,18106,7967,139131429,137817974,47401,21924,1180074409,1162535003,99.24,99.33,99.35,99.35,37.91,36.1,11.71,11.78
-27022,37,169,37169,1560,751,86455322,86149780,1560,751,86455322,86149780,47401,21924,1180074409,1162535003,100,100,100,100,3.29,3.43,7.33,7.41
-27023,37,067,37067,11873,4977,73493178,71895191,11873,4977,73493178,71895191,350670,156872,1068878446,1057097245,100,100,100,100,3.39,3.17,6.88,6.8
-27024,37,171,37171,2733,1379,114567331,114102457,2733,1379,114567331,114102457,73673,33667,1389020036,1378304182,100,100,100,100,3.71,4.1,8.25,8.28
-27025,37,157,37157,8862,4014,182714685,181465235,11138,5055,256216266,254672730,93643,43696,1483299987,1464770304,79.57,79.41,71.31,71.25,9.46,9.19,12.32,12.39
-27025,37,169,37169,2276,1041,73501581,73207495,11138,5055,256216266,254672730,47401,21924,1180074409,1162535003,20.43,20.59,28.69,28.75,4.8,4.75,6.23,6.3
-27027,37,157,37157,4385,2196,56719809,56571012,4385,2196,56719809,56571012,93643,43696,1483299987,1464770304,100,100,100,100,4.68,5.03,3.82,3.86
-27028,37,059,37059,25795,11267,503284991,498556536,25839,11278,504265725,499537270,41240,18238,691756076,684029311,99.83,99.9,99.81,99.8,62.55,61.78,72.75,72.89
-27028,37,097,37097,44,11,980734,980734,25839,11278,504265725,499537270,159437,69013,1545970551,1486221270,0.17,0.1,0.19,0.2,0.03,0.02,0.06,0.07
-27030,37,169,37169,332,227,21199142,20994180,38374,17735,444376066,441620720,47401,21924,1180074409,1162535003,0.87,1.28,4.77,4.75,0.7,1.04,1.8,1.81
-27030,37,171,37171,38042,17508,423176924,420626540,38374,17735,444376066,441620720,73673,33667,1389020036,1378304182,99.13,98.72,95.23,95.25,51.64,52,30.47,30.52
-27040,37,067,37067,10893,4627,70053060,69138136,10893,4627,70053060,69138136,350670,156872,1068878446,1057097245,100,100,100,100,3.11,2.95,6.55,6.54
-27041,37,169,37169,1269,616,33558744,33309507,7554,3511,153727143,152784855,47401,21924,1180074409,1162535003,16.8,17.54,21.83,21.8,2.68,2.81,2.84,2.87
-27041,37,171,37171,6285,2895,120168399,119475348,7554,3511,153727143,152784855,73673,33667,1389020036,1378304182,83.2,82.46,78.17,78.2,8.53,8.6,8.65,8.67
-27042,37,169,37169,834,378,22542267,22308808,834,378,22542267,22308808,47401,21924,1180074409,1162535003,100,100,100,100,1.76,1.72,1.91,1.92
-27043,37,067,37067,11,4,1179450,1106663,6615,3044,187408721,185563394,350670,156872,1068878446,1057097245,0.17,0.13,0.63,0.6,0,0,0.11,0.1
-27043,37,169,37169,3789,1713,93231609,92677602,6615,3044,187408721,185563394,47401,21924,1180074409,1162535003,57.28,56.27,49.75,49.94,7.99,7.81,7.9,7.97
-27043,37,171,37171,2815,1327,92997662,91779129,6615,3044,187408721,185563394,73673,33667,1389020036,1378304182,42.55,43.59,49.62,49.46,3.82,3.94,6.7,6.66
-27045,37,067,37067,8381,3761,55166063,55003695,8536,3828,60204708,60026851,350670,156872,1068878446,1057097245,98.18,98.25,91.63,91.63,2.39,2.4,5.16,5.2
-27045,37,169,37169,155,67,5038645,5023156,8536,3828,60204708,60026851,47401,21924,1180074409,1162535003,1.82,1.75,8.37,8.37,0.33,0.31,0.43,0.43
-27046,37,169,37169,2024,1014,105609995,105273495,2024,1014,105609995,105273495,47401,21924,1180074409,1162535003,100,100,100,100,4.27,4.63,8.95,9.06
-27047,37,171,37171,1191,532,53254273,52606673,1191,532,53254273,52606673,73673,33667,1389020036,1378304182,100,100,100,100,1.62,1.58,3.83,3.82
-27048,37,157,37157,8609,3792,216037380,214951600,8609,3792,216037380,214951600,93643,43696,1483299987,1464770304,100,100,100,100,9.19,8.68,14.56,14.67
-27050,37,067,37067,3270,1456,56721575,56293679,3893,1727,65036274,64499009,350670,156872,1068878446,1057097245,84,84.31,87.22,87.28,0.93,0.93,5.31,5.33
-27050,37,169,37169,623,271,8314699,8205330,3893,1727,65036274,64499009,47401,21924,1180074409,1162535003,16,15.69,12.78,12.72,1.31,1.24,0.7,0.71
-27051,37,067,37067,7369,3197,47691640,47586660,7369,3197,47691640,47586660,350670,156872,1068878446,1057097245,100,100,100,100,2.1,2.04,4.46,4.5
-27052,37,067,37067,1307,564,31388556,31215727,10624,4919,280309338,271486085,350670,156872,1068878446,1057097245,12.3,11.47,11.2,11.5,0.37,0.36,2.94,2.95
-27052,37,169,37169,9317,4355,248920782,240270358,10624,4919,280309338,271486085,47401,21924,1180074409,1162535003,87.7,88.53,88.8,88.5,19.66,19.86,21.09,20.67
-27053,37,169,37169,2759,1449,169214527,168226293,3007,1566,176053557,175045033,47401,21924,1180074409,1162535003,91.75,92.53,96.12,96.1,5.82,6.61,14.34,14.47
-27053,37,171,37171,248,117,6839030,6818740,3007,1566,176053557,175045033,73673,33667,1389020036,1378304182,8.25,7.47,3.88,3.9,0.34,0.35,0.49,0.49
-27054,37,159,37159,2567,1050,75901832,75796439,2567,1050,75901832,75796439,138428,60211,1356441101,1324451332,100,100,100,100,1.85,1.74,5.6,5.72
-27055,37,059,37059,34,17,1848436,1845787,14200,6227,278834705,276856922,41240,18238,691756076,684029311,0.24,0.27,0.66,0.67,0.08,0.09,0.27,0.27
-27055,37,097,37097,53,26,3773045,3763101,14200,6227,278834705,276856922,159437,69013,1545970551,1486221270,0.37,0.42,1.35,1.36,0.03,0.04,0.24,0.25
-27055,37,197,37197,14113,6184,273213224,271248034,14200,6227,278834705,276856922,38406,17341,874135787,867203563,99.39,99.31,97.98,97.97,36.75,35.66,31.26,31.28
-27101,37,067,37067,18901,9666,33811729,33046567,18901,9666,33811729,33046567,350670,156872,1068878446,1057097245,100,100,100,100,5.39,6.16,3.16,3.13
-27103,37,067,37067,33208,16906,48349020,48068162,33208,16906,48349020,48068162,350670,156872,1068878446,1057097245,100,100,100,100,9.47,10.78,4.52,4.55
-27104,37,067,37067,28485,14436,31974186,31921309,28485,14436,31974186,31921309,350670,156872,1068878446,1057097245,100,100,100,100,8.12,9.2,2.99,3.02
-27105,37,067,37067,39568,17161,87613013,87369476,39568,17161,87613013,87369476,350670,156872,1068878446,1057097245,100,100,100,100,11.28,10.94,8.2,8.27
-27106,37,067,37067,45015,21106,75096878,74226359,45015,21106,75096878,74226359,350670,156872,1068878446,1057097245,100,100,100,100,12.84,13.45,7.03,7.02
-27107,37,057,37057,12460,5158,89420649,88731371,46963,18890,169902370,168444615,162878,72655,1468569902,1431421129,26.53,27.31,52.63,52.68,7.65,7.1,6.09,6.2
-27107,37,067,37067,34503,13732,80481721,79713244,46963,18890,169902370,168444615,350670,156872,1068878446,1057097245,73.47,72.69,47.37,47.32,9.84,8.75,7.53,7.54
-27109,37,067,37067,2539,0,498745,498745,2539,0,498745,498745,350670,156872,1068878446,1057097245,100,0,100,100,0.72,0,0.05,0.05
-27110,37,067,37067,2127,0,488557,488557,2127,0,488557,488557,350670,156872,1068878446,1057097245,100,0,100,100,0.61,0,0.05,0.05
-27127,37,057,37057,4130,1730,14530767,14529799,34138,15310,77707688,77142347,162878,72655,1468569902,1431421129,12.1,11.3,18.7,18.84,2.54,2.38,0.99,1.02
-27127,37,067,37067,30008,13580,63176921,62612548,34138,15310,77707688,77142347,350670,156872,1068878446,1057097245,87.9,88.7,81.3,81.16,8.56,8.66,5.91,5.92
-27201,37,001,37001,63,35,352269,342167,63,35,352269,342167,151131,66576,1125965320,1098007863,100,100,100,100,0.04,0.05,0.03,0.03
-27203,37,151,37151,21108,9572,56905352,56702856,21108,9572,56905352,56702856,141752,61041,2044406937,2026710821,100,100,100,100,14.89,15.68,2.78,2.8
-27205,37,151,37151,33216,13853,582755692,580477655,33216,13853,582755692,580477655,141752,61041,2044406937,2026710821,100,100,100,100,23.43,22.69,28.5,28.64
-27207,37,037,37037,3795,1714,220751348,220063310,3795,1714,220751348,220063310,63505,28753,1838454595,1766851529,100,100,100,100,5.98,5.96,12.01,12.46
-27208,37,037,37037,895,421,52423210,52264353,1676,795,100796452,100626360,63505,28753,1838454595,1766851529,53.4,52.96,52.01,51.94,1.41,1.46,2.85,2.96
-27208,37,125,37125,206,98,9023810,9023810,1676,795,100796452,100626360,88247,43940,1828150573,1807404472,12.29,12.33,8.95,8.97,0.23,0.22,0.49,0.5
-27208,37,151,37151,575,276,39349432,39338197,1676,795,100796452,100626360,141752,61041,2044406937,2026710821,34.31,34.72,39.04,39.09,0.41,0.45,1.92,1.94
-27209,37,123,37123,3627,1366,81892849,81832289,3933,1514,118626942,118260474,27798,15914,1299640777,1273651813,92.22,90.22,69.03,69.2,13.05,8.58,6.3,6.43
-27209,37,125,37125,306,148,36734093,36428185,3933,1514,118626942,118260474,88247,43940,1828150573,1807404472,7.78,9.78,30.97,30.8,0.35,0.34,2.01,2.02
-27212,37,033,37033,2580,702,125781847,125448452,2580,702,125781847,125448452,23719,10619,1109167231,1100542142,100,100,100,100,10.88,6.61,11.34,11.4
-27214,37,081,37081,9836,3943,118999071,112979685,10294,4143,130613406,124513773,488406,218017,1703248486,1672364534,95.55,95.17,91.11,90.74,2.01,1.81,6.99,6.76
-27214,37,157,37157,458,200,11614335,11534088,10294,4143,130613406,124513773,93643,43696,1483299987,1464770304,4.45,4.83,8.89,9.26,0.49,0.46,0.78,0.79
-27215,37,001,37001,37377,18409,145554221,141066000,38807,18976,166047667,161282439,151131,66576,1125965320,1098007863,96.32,97.01,87.66,87.47,24.73,27.65,12.93,12.85
-27215,37,081,37081,1430,567,20493446,20216439,38807,18976,166047667,161282439,488406,218017,1703248486,1672364534,3.68,2.99,12.34,12.53,0.29,0.26,1.2,1.21
-27217,37,001,37001,35809,15128,271741186,262510241,36954,15633,328359508,319016251,151131,66576,1125965320,1098007863,96.9,96.77,82.76,82.29,23.69,22.72,24.13,23.91
-27217,37,033,37033,1145,505,56618322,56506010,36954,15633,328359508,319016251,23719,10619,1109167231,1100542142,3.1,3.23,17.24,17.71,4.83,4.76,5.1,5.13
-27229,37,123,37123,3929,1620,228671498,228273708,3929,1620,228671498,228273708,27798,15914,1299640777,1273651813,100,100,100,100,14.13,10.18,17.59,17.92
-27231,37,135,37135,2148,962,96018713,94342950,2148,962,96018713,94342950,133801,55597,1039692215,1030705790,100,100,100,100,1.61,1.73,9.24,9.15
-27233,37,081,37081,1280,535,20406321,20194649,3390,1442,63715197,63384839,488406,218017,1703248486,1672364534,37.76,37.1,32.03,31.86,0.26,0.25,1.2,1.21
-27233,37,151,37151,2110,907,43308876,43190190,3390,1442,63715197,63384839,141752,61041,2044406937,2026710821,62.24,62.9,67.97,68.14,1.49,1.49,2.12,2.13
-27235,37,081,37081,4136,1814,35206893,35107217,4136,1814,35206893,35107217,488406,218017,1703248486,1672364534,100,100,100,100,0.85,0.83,2.07,2.1
-27239,37,057,37057,6664,3172,235385677,229677933,9079,4261,397521901,391503586,162878,72655,1468569902,1431421129,73.4,74.44,59.21,58.67,4.09,4.37,16.03,16.05
-27239,37,151,37151,2415,1089,162136224,161825653,9079,4261,397521901,391503586,141752,61041,2044406937,2026710821,26.6,25.56,40.79,41.33,1.7,1.78,7.93,7.98
-27242,37,125,37125,2100,1031,140342349,139704483,2100,1031,140342349,139704483,88247,43940,1828150573,1807404472,100,100,100,100,2.38,2.35,7.68,7.73
-27243,37,135,37135,4337,1837,103297221,102588768,4337,1837,103297221,102588768,133801,55597,1039692215,1030705790,100,100,100,100,3.24,3.3,9.94,9.95
-27244,37,001,37001,12676,4461,68540292,66993035,14173,5049,132446779,130756709,151131,66576,1125965320,1098007863,89.44,88.35,51.75,51.23,8.39,6.7,6.09,6.1
-27244,37,033,37033,1128,485,50185274,50136743,14173,5049,132446779,130756709,23719,10619,1109167231,1100542142,7.96,9.61,37.89,38.34,4.76,4.57,4.52,4.56
-27244,37,081,37081,369,103,13721213,13626931,14173,5049,132446779,130756709,488406,218017,1703248486,1672364534,2.6,2.04,10.36,10.42,0.08,0.05,0.81,0.81
-27248,37,151,37151,4524,1937,89796009,89263433,4524,1937,89796009,89263433,141752,61041,2044406937,2026710821,100,100,100,100,3.19,3.17,4.39,4.4
-27249,37,001,37001,3376,1465,13582823,13402951,12486,5491,151304804,149330184,151131,66576,1125965320,1098007863,27.04,26.68,8.98,8.98,2.23,2.2,1.21,1.22
-27249,37,033,37033,607,257,5448675,5444443,12486,5491,151304804,149330184,23719,10619,1109167231,1100542142,4.86,4.68,3.6,3.65,2.56,2.42,0.49,0.49
-27249,37,081,37081,8408,3723,125153918,123415021,12486,5491,151304804,149330184,488406,218017,1703248486,1672364534,67.34,67.8,82.72,82.65,1.72,1.71,7.35,7.38
-27249,37,157,37157,95,46,7119388,7067769,12486,5491,151304804,149330184,93643,43696,1483299987,1464770304,0.76,0.84,4.71,4.73,0.1,0.11,0.48,0.48
-27252,37,037,37037,2003,973,111350659,110975166,2003,973,111350659,110975166,63505,28753,1838454595,1766851529,100,100,100,100,3.15,3.38,6.06,6.28
-27253,37,001,37001,29827,13187,232918314,228143899,29827,13187,232918314,228143899,151131,66576,1125965320,1098007863,100,100,100,100,19.74,19.81,20.69,20.78
-27258,37,001,37001,6006,2628,44785856,44194615,6006,2628,44785856,44194615,151131,66576,1125965320,1098007863,100,100,100,100,3.97,3.95,3.98,4.02
-27260,37,081,37081,23758,10760,30210291,30093058,24023,10903,31576693,31459460,488406,218017,1703248486,1672364534,98.9,98.69,95.67,95.66,4.86,4.94,1.77,1.8
-27260,37,151,37151,265,143,1366402,1366402,24023,10903,31576693,31459460,141752,61041,2044406937,2026710821,1.1,1.31,4.33,4.34,0.19,0.23,0.07,0.07
-27262,37,057,37057,1525,736,11463445,11463445,23934,10802,34133861,34117466,162878,72655,1468569902,1431421129,6.37,6.81,33.58,33.6,0.94,1.01,0.78,0.8
-27262,37,081,37081,22409,10066,22670416,22654021,23934,10802,34133861,34117466,488406,218017,1703248486,1672364534,93.63,93.19,66.42,66.4,4.59,4.62,1.33,1.35
-27263,37,081,37081,6866,2995,39840188,38927138,21414,9382,102478089,100976225,488406,218017,1703248486,1672364534,32.06,31.92,38.88,38.55,1.41,1.37,2.34,2.33
-27263,37,151,37151,14548,6387,62637901,62049087,21414,9382,102478089,100976225,141752,61041,2044406937,2026710821,67.94,68.08,61.12,61.45,10.26,10.46,3.06,3.06
-27265,37,057,37057,7636,3439,41463287,41463287,46690,20774,112091952,108586872,162878,72655,1468569902,1431421129,16.35,16.55,36.99,38.18,4.69,4.73,2.82,2.9
-27265,37,067,37067,470,260,2244616,2244616,46690,20774,112091952,108586872,350670,156872,1068878446,1057097245,1.01,1.25,2,2.07,0.13,0.17,0.21,0.21
-27265,37,081,37081,38584,17075,68384049,64878969,46690,20774,112091952,108586872,488406,218017,1703248486,1672364534,82.64,82.19,61.01,59.75,7.9,7.83,4.01,3.88
-27278,37,063,37063,1406,549,10098943,10033272,24286,10286,264872017,262605703,267587,120217,771470518,740672748,5.79,5.34,3.81,3.82,0.53,0.46,1.31,1.35
-27278,37,135,37135,22880,9737,254773074,252572431,24286,10286,264872017,262605703,133801,55597,1039692215,1030705790,94.21,94.66,96.19,96.18,17.1,17.51,24.5,24.5
-27281,37,123,37123,1412,467,47873865,47778118,3100,1356,135153337,134862267,27798,15914,1299640777,1273651813,45.55,34.44,35.42,35.43,5.08,2.93,3.68,3.75
-27281,37,125,37125,1688,889,87279472,87084149,3100,1356,135153337,134862267,88247,43940,1828150573,1807404472,54.45,65.56,64.58,64.57,1.91,2.02,4.77,4.82
-27282,37,081,37081,15906,6692,36348870,35779745,15906,6692,36348870,35779745,488406,218017,1703248486,1672364534,100,100,100,100,3.26,3.07,2.13,2.14
-27283,37,081,37081,3066,1354,67615072,67028625,3141,1388,68794847,68208400,488406,218017,1703248486,1672364534,97.61,97.55,98.29,98.27,0.63,0.62,3.97,4.01
-27283,37,151,37151,75,34,1179775,1179775,3141,1388,68794847,68208400,141752,61041,2044406937,2026710821,2.39,2.45,1.71,1.73,0.05,0.06,0.06,0.06
-27284,37,057,37057,516,227,5221123,5221123,51136,22239,208634336,206972768,162878,72655,1468569902,1431421129,1.01,1.02,2.5,2.52,0.32,0.31,0.36,0.36
-27284,37,067,37067,48098,21032,172452444,171011121,51136,22239,208634336,206972768,350670,156872,1068878446,1057097245,94.06,94.57,82.66,82.62,13.72,13.41,16.13,16.18
-27284,37,081,37081,2522,980,30960769,30740524,51136,22239,208634336,206972768,488406,218017,1703248486,1672364534,4.93,4.41,14.84,14.85,0.52,0.45,1.82,1.84
-27288,37,157,37157,24071,11813,177597830,175476018,24071,11813,177597830,175476018,93643,43696,1483299987,1464770304,100,100,100,100,25.71,27.03,11.97,11.98
-27291,37,033,37033,993,587,90723934,89181066,1662,1002,135903241,131428536,23719,10619,1109167231,1100542142,59.75,58.58,66.76,67.86,4.19,5.53,8.18,8.1
-27291,37,145,37145,669,415,45179307,42247470,1662,1002,135903241,131428536,39464,18193,1046558987,1016108548,40.25,41.42,33.24,32.14,1.7,2.28,4.32,4.16
-27292,37,057,37057,39727,18525,398478022,375496177,39787,18550,399537700,376548128,162878,72655,1468569902,1431421129,99.85,99.87,99.73,99.72,24.39,25.5,27.13,26.23
-27292,37,151,37151,60,25,1059678,1051951,39787,18550,399537700,376548128,141752,61041,2044406937,2026710821,0.15,0.13,0.27,0.28,0.04,0.04,0.05,0.05
-27295,37,057,37057,37211,16528,332984011,330459890,37211,16528,332984011,330459890,162878,72655,1468569902,1431421129,100,100,100,100,22.85,22.75,22.67,23.09
-27298,37,001,37001,2461,1062,78006293,76781917,10336,4633,248401324,246005551,151131,66576,1125965320,1098007863,23.81,22.92,31.4,31.21,1.63,1.6,6.93,6.99
-27298,37,037,37037,37,19,2398184,2391800,10336,4633,248401324,246005551,63505,28753,1838454595,1766851529,0.36,0.41,0.97,0.97,0.06,0.07,0.13,0.14
-27298,37,081,37081,1607,749,59022066,58579790,10336,4633,248401324,246005551,488406,218017,1703248486,1672364534,15.55,16.17,23.76,23.81,0.33,0.34,3.47,3.5
-27298,37,151,37151,6231,2803,108974781,108252044,10336,4633,248401324,246005551,141752,61041,2044406937,2026710821,60.28,60.5,43.87,44,4.4,4.59,5.33,5.34
-27299,37,057,37057,5190,2211,75252735,71283557,5190,2211,75252735,71283557,162878,72655,1468569902,1431421129,100,100,100,100,3.19,3.04,5.12,4.98
-27301,37,081,37081,8750,3569,87411049,86396685,8750,3569,87411049,86396685,488406,218017,1703248486,1672364534,100,100,100,100,1.79,1.64,5.13,5.17
-27302,37,001,37001,18173,7835,122745322,118635811,26412,11467,307434370,302409788,151131,66576,1125965320,1098007863,68.81,68.33,39.93,39.23,12.02,11.77,10.9,10.8
-27302,37,033,37033,892,428,73066937,73059977,26412,11467,307434370,302409788,23719,10619,1109167231,1100542142,3.38,3.73,23.77,24.16,3.76,4.03,6.59,6.64
-27302,37,135,37135,7347,3204,111622111,110714000,26412,11467,307434370,302409788,133801,55597,1039692215,1030705790,27.82,27.94,36.31,36.61,5.49,5.76,10.74,10.74
-27305,37,033,37033,1647,778,68332326,67480374,1685,792,69966238,69114286,23719,10619,1109167231,1100542142,97.74,98.23,97.66,97.64,6.94,7.33,6.16,6.13
-27305,37,145,37145,38,14,1633912,1633912,1685,792,69966238,69114286,39464,18193,1046558987,1016108548,2.26,1.77,2.34,2.36,0.1,0.08,0.16,0.16
-27306,37,123,37123,5856,4593,356393943,349553450,6176,4753,462961783,453884677,27798,15914,1299640777,1273651813,94.82,96.63,76.98,77.01,21.07,28.86,27.42,27.44
-27306,37,153,37153,320,160,106567840,104331227,6176,4753,462961783,453884677,46639,20738,1242982435,1227191624,5.18,3.37,23.02,22.99,0.69,0.77,8.57,8.5
-27310,37,081,37081,6710,2424,42063638,41677239,6710,2424,42063638,41677239,488406,218017,1703248486,1672364534,100,100,100,100,1.37,1.11,2.47,2.49
-27311,37,033,37033,2868,1318,100577948,100477861,3402,1607,119937184,119756923,23719,10619,1109167231,1100542142,84.3,82.02,83.86,83.9,12.09,12.41,9.07,9.13
-27311,37,157,37157,534,289,19359236,19279062,3402,1607,119937184,119756923,93643,43696,1483299987,1464770304,15.7,17.98,16.14,16.1,0.57,0.66,1.31,1.32
-27312,37,001,37001,53,20,2847303,2795217,18306,8666,457330024,440057980,151131,66576,1125965320,1098007863,0.29,0.23,0.62,0.64,0.04,0.03,0.25,0.25
-27312,37,037,37037,18253,8646,454482721,437262763,18306,8666,457330024,440057980,63505,28753,1838454595,1766851529,99.71,99.77,99.38,99.36,28.74,30.07,24.72,24.75
-27313,37,081,37081,4668,1892,51577774,51207078,6962,2839,73988287,73560619,488406,218017,1703248486,1672364534,67.05,66.64,69.71,69.61,0.96,0.87,3.03,3.06
-27313,37,151,37151,2294,947,22410513,22353541,6962,2839,73988287,73560619,141752,61041,2044406937,2026710821,32.95,33.36,30.29,30.39,1.62,1.55,1.1,1.1
-27314,37,033,37033,1051,509,69059643,67184768,1051,509,69059643,67184768,23719,10619,1109167231,1100542142,100,100,100,100,4.43,4.79,6.23,6.1
-27315,37,033,37033,2243,1058,68594996,68254906,2243,1058,68594996,68254906,23719,10619,1109167231,1100542142,100,100,100,100,9.46,9.96,6.18,6.2
-27316,37,151,37151,6650,2894,179730562,178917472,6650,2894,179730562,178917472,141752,61041,2044406937,2026710821,100,100,100,100,4.69,4.74,8.79,8.83
-27317,37,081,37081,533,233,7076091,7016575,16959,7172,148364962,139006302,488406,218017,1703248486,1672364534,3.14,3.25,4.77,5.05,0.11,0.11,0.42,0.42
-27317,37,151,37151,16426,6939,141288871,131989727,16959,7172,148364962,139006302,141752,61041,2044406937,2026710821,96.86,96.75,95.23,94.95,11.59,11.37,6.91,6.51
-27320,37,033,37033,2071,894,81283070,81220897,39351,18061,659627529,651220238,23719,10619,1109167231,1100542142,5.26,4.95,12.32,12.47,8.73,8.42,7.33,7.38
-27320,37,081,37081,216,78,4793994,4744646,39351,18061,659627529,651220238,488406,218017,1703248486,1672364534,0.55,0.43,0.73,0.73,0.04,0.04,0.28,0.28
-27320,37,157,37157,37064,17089,573550465,565254695,39351,18061,659627529,651220238,93643,43696,1483299987,1464770304,94.19,94.62,86.95,86.8,39.58,39.11,38.67,38.59
-27325,37,125,37125,6666,3099,225936727,224271296,6704,3123,229999536,228334105,88247,43940,1828150573,1807404472,99.43,99.23,98.23,98.22,7.55,7.05,12.36,12.41
-27325,37,151,37151,38,24,4062809,4062809,6704,3123,229999536,228334105,141752,61041,2044406937,2026710821,0.57,0.77,1.77,1.78,0.03,0.04,0.2,0.2
-27326,37,033,37033,1325,579,62215966,62203645,4008,1882,184434985,183562638,23719,10619,1109167231,1100542142,33.06,30.77,33.73,33.89,5.59,5.45,5.61,5.65
-27326,37,157,37157,2683,1303,122219019,121358993,4008,1882,184434985,183562638,93643,43696,1483299987,1464770304,66.94,69.23,66.27,66.11,2.87,2.98,8.24,8.29
-27330,37,037,37037,774,374,43395073,43023995,37947,15821,539497653,532332805,63505,28753,1838454595,1766851529,2.04,2.36,8.04,8.08,1.22,1.3,2.36,2.44
-27330,37,085,37085,11,1,1566587,1376778,37947,15821,539497653,532332805,114678,46731,1557369584,1541008895,0.03,0.01,0.29,0.26,0.01,0,0.1,0.09
-27330,37,105,37105,36993,15350,460823469,454799252,37947,15821,539497653,532332805,57866,24136,670918365,660341698,97.49,97.02,85.42,85.44,63.93,63.6,68.69,68.87
-27330,37,125,37125,169,96,33712524,33132780,37947,15821,539497653,532332805,88247,43940,1828150573,1807404472,0.45,0.61,6.25,6.22,0.19,0.22,1.84,1.83
-27332,37,085,37085,12029,4605,98382563,96425637,30236,12269,278057410,272020647,114678,46731,1557369584,1541008895,39.78,37.53,35.38,35.45,10.49,9.85,6.32,6.26
-27332,37,105,37105,18207,7664,179674847,175595010,30236,12269,278057410,272020647,57866,24136,670918365,660341698,60.22,62.47,64.62,64.55,31.46,31.75,26.78,26.59
-27340,37,001,37001,120,76,146351,146351,120,76,146351,146351,151131,66576,1125965320,1098007863,100,100,100,100,0.08,0.11,0.01,0.01
-27341,37,123,37123,552,253,23275726,23275726,5360,2475,245273451,245068497,27798,15914,1299640777,1273651813,10.3,10.22,9.49,9.5,1.99,1.59,1.79,1.83
-27341,37,125,37125,1320,597,65673183,65644711,5360,2475,245273451,245068497,88247,43940,1828150573,1807404472,24.63,24.12,26.78,26.79,1.5,1.36,3.59,3.63
-27341,37,151,37151,3488,1625,156324542,156148060,5360,2475,245273451,245068497,141752,61041,2044406937,2026710821,65.07,65.66,63.73,63.72,2.46,2.66,7.65,7.7
-27343,37,033,37033,492,294,33267841,32022537,1716,1248,133269685,119558869,23719,10619,1109167231,1100542142,28.67,23.56,24.96,26.78,2.07,2.77,3,2.91
-27343,37,145,37145,1224,954,100001844,87536332,1716,1248,133269685,119558869,39464,18193,1046558987,1016108548,71.33,76.44,75.04,73.22,3.1,5.24,9.56,8.61
-27344,37,037,37037,17734,7213,415010518,412076515,18022,7344,432478137,429544134,63505,28753,1838454595,1766851529,98.4,98.22,95.96,95.93,27.93,25.09,22.57,23.32
-27344,37,151,37151,288,131,17467619,17467619,18022,7344,432478137,429544134,141752,61041,2044406937,2026710821,1.6,1.78,4.04,4.07,0.2,0.21,0.85,0.86
-27349,37,001,37001,5190,2270,144745090,142995659,5511,2393,159736469,157911293,151131,66576,1125965320,1098007863,94.18,94.86,90.61,90.55,3.43,3.41,12.86,13.02
-27349,37,037,37037,321,123,14991379,14915634,5511,2393,159736469,157911293,63505,28753,1838454595,1766851529,5.82,5.14,9.39,9.45,0.51,0.43,0.82,0.84
-27350,37,151,37151,6530,2758,98040313,96391733,6530,2758,98040313,96391733,141752,61041,2044406937,2026710821,100,100,100,100,4.61,4.52,4.8,4.76
-27355,37,037,37037,548,238,27978474,27890524,2660,1167,89736265,89522312,63505,28753,1838454595,1766851529,20.6,20.39,31.18,31.15,0.86,0.83,1.52,1.58
-27355,37,151,37151,2112,929,61757791,61631788,2660,1167,89736265,89522312,141752,61041,2044406937,2026710821,79.4,79.61,68.82,68.85,1.49,1.52,3.02,3.04
-27356,37,123,37123,2902,1398,116424121,116292839,3205,1545,146127814,145972959,27798,15914,1299640777,1273651813,90.55,90.49,79.67,79.67,10.44,8.78,8.96,9.13
-27356,37,125,37125,303,147,29703693,29680120,3205,1545,146127814,145972959,88247,43940,1828150573,1807404472,9.45,9.51,20.33,20.33,0.34,0.33,1.62,1.64
-27357,37,081,37081,3495,1418,41737556,41487438,7894,3340,114458531,109859880,488406,218017,1703248486,1672364534,44.27,42.46,36.47,37.76,0.72,0.65,2.45,2.48
-27357,37,157,37157,4392,1917,72384695,68230993,7894,3340,114458531,109859880,93643,43696,1483299987,1464770304,55.64,57.4,63.24,62.11,4.69,4.39,4.88,4.66
-27357,37,169,37169,7,5,336280,141449,7894,3340,114458531,109859880,47401,21924,1180074409,1162535003,0.09,0.15,0.29,0.13,0.01,0.02,0.03,0.01
-27358,37,081,37081,11585,4312,100005131,97479603,14075,5349,143988276,141060442,488406,218017,1703248486,1672364534,82.31,80.61,69.45,69.1,2.37,1.98,5.87,5.83
-27358,37,157,37157,2490,1037,43983145,43580839,14075,5349,143988276,141060442,93643,43696,1483299987,1464770304,17.69,19.39,30.55,30.9,2.66,2.37,2.97,2.98
-27360,37,057,37057,42546,18583,201740707,200832854,46084,20070,229349714,228257879,162878,72655,1468569902,1431421129,92.32,92.59,87.96,87.99,26.12,25.58,13.74,14.03
-27360,37,151,37151,3538,1487,27609007,27425025,46084,20070,229349714,228257879,141752,61041,2044406937,2026710821,7.68,7.41,12.04,12.01,2.5,2.44,1.35,1.35
-27370,37,151,37151,15052,6194,157389189,156770205,15052,6194,157389189,156770205,141752,61041,2044406937,2026710821,100,100,100,100,10.62,10.15,7.7,7.74
-27371,37,123,37123,7923,3571,393742995,390330339,8132,3658,422598594,419185938,27798,15914,1299640777,1273651813,97.43,97.62,93.17,93.12,28.5,22.44,30.3,30.65
-27371,37,151,37151,209,87,28855599,28855599,8132,3658,422598594,419185938,141752,61041,2044406937,2026710821,2.57,2.38,6.83,6.88,0.15,0.14,1.41,1.42
-27376,37,125,37125,9386,4418,185507371,180672387,9386,4418,185507371,180672387,88247,43940,1828150573,1807404472,100,100,100,100,10.64,10.05,10.15,10
-27377,37,081,37081,7104,3323,66859761,66301306,7104,3323,66859761,66301306,488406,218017,1703248486,1672364534,100,100,100,100,1.45,1.52,3.93,3.96
-27379,37,033,37033,4661,2210,223342871,221252882,4661,2210,223342871,221252882,23719,10619,1109167231,1100542142,100,100,100,100,19.65,20.81,20.14,20.1
-27401,37,081,37081,21932,9340,16176660,16093119,21932,9340,16176660,16093119,488406,218017,1703248486,1672364534,100,100,100,100,4.49,4.28,0.95,0.96
-27403,37,081,37081,21958,9286,15620105,15609734,21958,9286,15620105,15609734,488406,218017,1703248486,1672364534,100,100,100,100,4.5,4.26,0.92,0.93
-27405,37,081,37081,44567,19784,81016487,80309965,44567,19784,81016487,80309965,488406,218017,1703248486,1672364534,100,100,100,100,9.12,9.07,4.76,4.8
-27406,37,081,37081,56458,24862,181848123,179767712,56458,24862,181848123,179767712,488406,218017,1703248486,1672364534,100,100,100,100,11.56,11.4,10.68,10.75
-27407,37,081,37081,46242,21134,79275107,78460914,46242,21134,79275107,78460914,488406,218017,1703248486,1672364534,100,100,100,100,9.47,9.69,4.65,4.69
-27408,37,081,37081,17296,8641,20101105,19749515,17296,8641,20101105,19749515,488406,218017,1703248486,1672364534,100,100,100,100,3.54,3.96,1.18,1.18
-27409,37,081,37081,15621,8561,50571612,50385075,15621,8561,50571612,50385075,488406,218017,1703248486,1672364534,100,100,100,100,3.2,3.93,2.97,3.01
-27410,37,081,37081,52388,24971,87165081,84668179,52388,24971,87165081,84668179,488406,218017,1703248486,1672364534,100,100,100,100,10.73,11.45,5.12,5.06
-27455,37,081,37081,28706,12833,80916629,76787939,28706,12833,80916629,76787939,488406,218017,1703248486,1672364534,100,100,100,100,5.88,5.89,4.75,4.59
-27501,37,085,37085,12188,4925,102148924,101042333,17571,7091,159755125,158391247,114678,46731,1557369584,1541008895,69.36,69.45,63.94,63.79,10.63,10.54,6.56,6.56
-27501,37,101,37101,5137,2064,56556677,56299390,17571,7091,159755125,158391247,168878,67682,2060346188,2049455206,29.24,29.11,35.4,35.54,3.04,3.05,2.75,2.75
-27501,37,183,37183,246,102,1049524,1049524,17571,7091,159755125,158391247,900993,371836,2220452951,2163206258,1.4,1.44,0.66,0.66,0.03,0.03,0.05,0.05
-27502,37,037,37037,85,47,19770550,13746820,30831,11175,79424301,73384488,63505,28753,1838454595,1766851529,0.28,0.42,24.89,18.73,0.13,0.16,1.08,0.78
-27502,37,183,37183,30746,11128,59653751,59637668,30831,11175,79424301,73384488,900993,371836,2220452951,2163206258,99.72,99.58,75.11,81.27,3.41,2.99,2.69,2.76
-27503,37,063,37063,3471,1470,97983176,94454745,3471,1470,97983176,94454745,267587,120217,771470518,740672748,100,100,100,100,1.3,1.22,12.7,12.75
-27504,37,085,37085,539,215,7220674,7079554,14566,6224,235404377,234096126,114678,46731,1557369584,1541008895,3.7,3.45,3.07,3.02,0.47,0.46,0.46,0.46
-27504,37,101,37101,14027,6009,228183703,227016572,14566,6224,235404377,234096126,168878,67682,2060346188,2049455206,96.3,96.55,96.93,96.98,8.31,8.88,11.08,11.08
-27505,37,085,37085,4613,1851,142061501,141525543,5896,2428,147840841,147186006,114678,46731,1557369584,1541008895,78.24,76.24,96.09,96.15,4.02,3.96,9.12,9.18
-27505,37,105,37105,1283,577,5779340,5660463,5896,2428,147840841,147186006,57866,24136,670918365,660341698,21.76,23.76,3.91,3.85,2.22,2.39,0.86,0.86
-27507,37,077,37077,1688,794,107503419,105436436,1929,913,125523665,123456682,59916,22827,1389524604,1376758990,87.51,86.97,85.64,85.4,2.82,3.48,7.74,7.66
-27507,37,181,37181,241,119,18020246,18020246,1929,913,125523665,123456682,45422,20082,698830276,656606884,12.49,13.03,14.36,14.6,0.53,0.59,2.58,2.74
-27508,37,069,37069,2053,781,27159773,27094655,2053,781,27159773,27094655,60619,26577,1280745757,1273451203,100,100,100,100,3.39,2.94,2.12,2.13
-27509,37,077,37077,10167,1617,40626272,40421069,10167,1617,40626272,40421069,59916,22827,1389524604,1376758990,100,100,100,100,16.97,7.08,2.92,2.94
-27510,37,135,37135,14644,7571,9712316,9698281,14644,7571,9712316,9698281,133801,55597,1039692215,1030705790,100,100,100,100,10.94,13.62,0.93,0.94
-27511,37,183,37183,32029,13926,30912293,30350436,32029,13926,30912293,30350436,900993,371836,2220452951,2163206258,100,100,100,100,3.55,3.75,1.39,1.4
-27513,37,183,37183,40755,17067,42011933,40936671,40755,17067,42011933,40936671,900993,371836,2220452951,2163206258,100,100,100,100,4.52,4.59,1.89,1.89
-27514,37,135,37135,32110,11631,50752184,50317319,32110,11631,50752184,50317319,133801,55597,1039692215,1030705790,100,100,100,100,24,20.92,4.88,4.88
-27516,37,037,37037,3134,1598,38601725,38268244,36139,14524,242800155,240587369,63505,28753,1838454595,1766851529,8.67,11,15.9,15.91,4.94,5.56,2.1,2.17
-27516,37,135,37135,33005,12926,204198430,202319125,36139,14524,242800155,240587369,133801,55597,1039692215,1030705790,91.33,89,84.1,84.09,24.67,23.25,19.64,19.63
-27517,37,037,37037,8243,3707,83152027,68909410,23346,11279,134027962,119052760,63505,28753,1838454595,1766851529,35.31,32.87,62.04,57.88,12.98,12.89,4.52,3.9
-27517,37,063,37063,5642,3255,23533607,22937282,23346,11279,134027962,119052760,267587,120217,771470518,740672748,24.17,28.86,17.56,19.27,2.11,2.71,3.05,3.1
-27517,37,135,37135,9461,4317,27342328,27206068,23346,11279,134027962,119052760,133801,55597,1039692215,1030705790,40.53,38.27,20.4,22.85,7.07,7.76,2.63,2.64
-27518,37,183,37183,19630,8315,25358420,24922416,19630,8315,25358420,24922416,900993,371836,2220452951,2163206258,100,100,100,100,2.18,2.24,1.14,1.15
-27519,37,037,37037,1434,853,4086490,4083187,39178,14829,56625408,56392086,63505,28753,1838454595,1766851529,3.66,5.75,7.22,7.24,2.26,2.97,0.22,0.23
-27519,37,183,37183,37744,13976,52538918,52308899,39178,14829,56625408,56392086,900993,371836,2220452951,2163206258,96.34,94.25,92.78,92.76,4.19,3.76,2.37,2.42
-27520,37,101,37101,35390,14169,178209761,177827833,36357,14567,189484928,189103000,168878,67682,2060346188,2049455206,97.34,97.27,94.05,94.04,20.96,20.93,8.65,8.68
-27520,37,183,37183,967,398,11275167,11275167,36357,14567,189484928,189103000,900993,371836,2220452951,2163206258,2.66,2.73,5.95,5.96,0.11,0.11,0.51,0.52
-27521,37,085,37085,6035,2519,67647259,67232974,6035,2519,67647259,67232974,114678,46731,1557369584,1541008895,100,100,100,100,5.26,5.39,4.34,4.36
-27522,37,077,37077,11964,5084,174760702,168511658,12335,5257,200991361,187269660,59916,22827,1389524604,1376758990,96.99,96.71,86.95,89.98,19.97,22.27,12.58,12.24
-27522,37,183,37183,371,173,26230659,18758002,12335,5257,200991361,187269660,900993,371836,2220452951,2163206258,3.01,3.29,13.05,10.02,0.04,0.05,1.18,0.87
-27523,37,037,37037,2166,972,89399611,75300288,9552,3984,121213775,107003318,63505,28753,1838454595,1766851529,22.68,24.4,73.75,70.37,3.41,3.38,4.86,4.26
-27523,37,183,37183,7386,3012,31814164,31703030,9552,3984,121213775,107003318,900993,371836,2220452951,2163206258,77.32,75.6,26.25,29.63,0.82,0.81,1.43,1.47
-27524,37,101,37101,12039,5168,318334508,314172594,12338,5324,345762047,341578686,168878,67682,2060346188,2049455206,97.58,97.07,92.07,91.98,7.13,7.64,15.45,15.33
-27524,37,191,37191,299,156,27427539,27406092,12338,5324,345762047,341578686,122623,52949,1442241153,1432488557,2.42,2.93,7.93,8.02,0.24,0.29,1.9,1.91
-27525,37,069,37069,9010,4050,174422401,173728816,13338,5797,240352258,239599847,60619,26577,1280745757,1273451203,67.55,69.86,72.57,72.51,14.86,15.24,13.62,13.64
-27525,37,077,37077,4328,1747,65929857,65871031,13338,5797,240352258,239599847,59916,22827,1389524604,1376758990,32.45,30.14,27.43,27.49,7.22,7.65,4.74,4.78
-27526,37,085,37085,7928,3141,153129503,151938080,38894,15278,253232099,251040959,114678,46731,1557369584,1541008895,20.38,20.56,60.47,60.52,6.91,6.72,9.83,9.86
-27526,37,183,37183,30966,12137,100102596,99102879,38894,15278,253232099,251040959,900993,371836,2220452951,2163206258,79.62,79.44,39.53,39.48,3.44,3.26,4.51,4.58
-27527,37,101,37101,18216,6510,114142049,113755736,18216,6510,114142049,113755736,168878,67682,2060346188,2049455206,100,100,100,100,10.79,9.62,5.54,5.55
-27529,37,101,37101,10607,3854,48040436,47931922,42128,16867,151168366,149627164,168878,67682,2060346188,2049455206,25.18,22.85,31.78,32.03,6.28,5.69,2.33,2.34
-27529,37,183,37183,31521,13013,103127930,101695242,42128,16867,151168366,149627164,900993,371836,2220452951,2163206258,74.82,77.15,68.22,67.97,3.5,3.5,4.64,4.7
-27530,37,191,37191,40117,17619,278282609,273979554,40117,17619,278282609,273979554,122623,52949,1442241153,1432488557,100,100,100,100,32.72,33.28,19.3,19.13
-27531,37,191,37191,594,0,9295097,9295097,594,0,9295097,9295097,122623,52949,1442241153,1432488557,100,0,100,100,0.48,0,0.64,0.65
-27534,37,191,37191,31364,14048,189073701,187217437,31364,14048,189073701,187217437,122623,52949,1442241153,1432488557,100,100,100,100,25.58,26.53,13.11,13.07
-27536,37,181,37181,17289,7971,33144453,33045199,17289,7971,33144453,33045199,45422,20082,698830276,656606884,100,100,100,100,38.06,39.69,4.74,5.03
-27537,37,069,37069,913,430,36727469,36688146,24319,10468,525059481,495400108,60619,26577,1280745757,1273451203,3.75,4.11,6.99,7.41,1.51,1.62,2.87,2.88
-27537,37,181,37181,22892,9819,465995352,436448627,24319,10468,525059481,495400108,45422,20082,698830276,656606884,94.13,93.8,88.75,88.1,50.4,48.89,66.68,66.47
-27537,37,185,37185,514,219,22336660,22263335,24319,10468,525059481,495400108,20972,11806,1149337894,1109696231,2.11,2.09,4.25,4.49,2.45,1.85,1.94,2.01
-27539,37,183,37183,18692,7020,83356538,81691157,18692,7020,83356538,81691157,900993,371836,2220452951,2163206258,100,100,100,100,2.07,1.89,3.75,3.78
-27540,37,037,37037,7,2,5551969,5509639,29363,10393,121483747,120103694,63505,28753,1838454595,1766851529,0.02,0.02,4.57,4.59,0.01,0.01,0.3,0.31
-27540,37,085,37085,1043,439,24013976,23999169,29363,10393,121483747,120103694,114678,46731,1557369584,1541008895,3.55,4.22,19.77,19.98,0.91,0.94,1.54,1.56
-27540,37,183,37183,28313,9952,91917802,90594886,29363,10393,121483747,120103694,900993,371836,2220452951,2163206258,96.42,95.76,75.66,75.43,3.14,2.68,4.14,4.19
-27541,37,033,37033,16,15,667581,667581,3770,1684,180531852,179875200,23719,10619,1109167231,1100542142,0.42,0.89,0.37,0.37,0.07,0.14,0.06,0.06
-27541,37,135,37135,1259,556,54834828,54578093,3770,1684,180531852,179875200,133801,55597,1039692215,1030705790,33.4,33.02,30.37,30.34,0.94,1,5.27,5.3
-27541,37,145,37145,2495,1113,125029443,124629526,3770,1684,180531852,179875200,39464,18193,1046558987,1016108548,66.18,66.09,69.26,69.29,6.32,6.12,11.95,12.27
-27542,37,101,37101,6420,2815,151516209,151133966,9133,3983,226828178,222750480,168878,67682,2060346188,2049455206,70.29,70.68,66.8,67.85,3.8,4.16,7.35,7.37
-27542,37,191,37191,690,294,11288023,11181847,9133,3983,226828178,222750480,122623,52949,1442241153,1432488557,7.56,7.38,4.98,5.02,0.56,0.56,0.78,0.78
-27542,37,195,37195,2023,874,64023946,60434667,9133,3983,226828178,222750480,81234,35511,967962737,953567109,22.15,21.94,28.23,27.13,2.49,2.46,6.61,6.34
-27544,37,069,37069,976,430,47061480,46996169,4449,1809,158357243,158147393,60619,26577,1280745757,1273451203,21.94,23.77,29.72,29.72,1.61,1.62,3.67,3.69
-27544,37,077,37077,501,213,30803400,30725380,4449,1809,158357243,158147393,59916,22827,1389524604,1376758990,11.26,11.77,19.45,19.43,0.84,0.93,2.22,2.23
-27544,37,181,37181,2972,1166,80492363,80425844,4449,1809,158357243,158147393,45422,20082,698830276,656606884,66.8,64.46,50.83,50.85,6.54,5.81,11.52,12.25
-27545,37,183,37183,23006,9242,75327765,75112251,23006,9242,75327765,75112251,900993,371836,2220452951,2163206258,100,100,100,100,2.55,2.49,3.39,3.47
-27546,37,085,37085,19471,7449,325900719,320547647,19471,7449,325900719,320547647,114678,46731,1557369584,1541008895,100,100,100,100,16.98,15.94,20.93,20.8
-27549,37,069,37069,24112,11332,629537049,625306525,24112,11332,629537049,625306525,60619,26577,1280745757,1273451203,100,100,100,100,39.78,42.64,49.15,49.1
-27551,37,185,37185,1962,1625,226125545,217709969,1962,1625,226125545,217709969,20972,11806,1149337894,1109696231,100,100,100,100,9.36,13.76,19.67,19.62
-27553,37,181,37181,889,510,47456837,35074077,2937,1202,112080615,95818381,45422,20082,698830276,656606884,30.27,42.43,42.34,36.6,1.96,2.54,6.79,5.34
-27553,37,185,37185,2048,692,64623778,60744304,2937,1202,112080615,95818381,20972,11806,1149337894,1109696231,69.73,57.57,57.66,63.4,9.77,5.86,5.62,5.47
-27555,37,101,37101,441,212,1003888,1003888,441,212,1003888,1003888,168878,67682,2060346188,2049455206,100,100,100,100,0.26,0.31,0.05,0.05
-27556,37,181,37181,346,146,4966279,4966279,346,146,4966279,4966279,45422,20082,698830276,656606884,100,100,100,100,0.76,0.73,0.71,0.76
-27557,37,101,37101,3162,1250,56149754,55731877,7509,3121,161287680,159318285,168878,67682,2060346188,2049455206,42.11,40.05,34.81,34.98,1.87,1.85,2.73,2.72
-27557,37,127,37127,4266,1837,98739066,98650575,7509,3121,161287680,159318285,95840,42286,1405764460,1399646368,56.81,58.86,61.22,61.92,4.45,4.34,7.02,7.05
-27557,37,195,37195,81,34,6398860,4935833,7509,3121,161287680,159318285,81234,35511,967962737,953567109,1.08,1.09,3.97,3.1,0.1,0.1,0.66,0.52
-27559,37,037,37037,2288,1024,129836105,125170083,2288,1024,129836105,125170083,63505,28753,1838454595,1766851529,100,100,100,100,3.6,3.56,7.06,7.08
-27560,37,063,37063,2684,1710,11523490,11349355,22623,10576,77685963,75500429,267587,120217,771470518,740672748,11.86,16.17,14.83,15.03,1,1.42,1.49,1.53
-27560,37,183,37183,19939,8866,66162473,64151074,22623,10576,77685963,75500429,900993,371836,2220452951,2163206258,88.14,83.83,85.17,84.97,2.21,2.38,2.98,2.97
-27562,37,037,37037,1089,527,108492655,98359878,1938,893,150925145,139267939,63505,28753,1838454595,1766851529,56.19,59.01,71.89,70.63,1.71,1.83,5.9,5.57
-27562,37,183,37183,849,366,42432490,40908061,1938,893,150925145,139267939,900993,371836,2220452951,2163206258,43.81,40.99,28.11,29.37,0.09,0.1,1.91,1.89
-27563,37,181,37181,108,53,8533440,8516015,5008,2402,183940973,183419753,45422,20082,698830276,656606884,2.16,2.21,4.64,4.64,0.24,0.26,1.22,1.3
-27563,37,185,37185,4900,2349,175407533,174903738,5008,2402,183940973,183419753,20972,11806,1149337894,1109696231,97.84,97.79,95.36,95.36,23.36,19.9,15.26,15.76
-27565,37,077,37077,24460,10528,811003631,808686352,25255,10876,860635456,858201297,59916,22827,1389524604,1376758990,96.85,96.8,94.23,94.23,40.82,46.12,58.37,58.74
-27565,37,145,37145,110,50,9410519,9404348,25255,10876,860635456,858201297,39464,18193,1046558987,1016108548,0.44,0.46,1.09,1.1,0.28,0.27,0.9,0.93
-27565,37,181,37181,685,298,40221306,40110597,25255,10876,860635456,858201297,45422,20082,698830276,656606884,2.71,2.74,4.67,4.67,1.51,1.48,5.76,6.11
-27568,37,101,37101,480,246,607843,607843,480,246,607843,607843,168878,67682,2060346188,2049455206,100,100,100,100,0.28,0.36,0.03,0.03
-27569,37,101,37101,5822,2455,167843424,167415126,8022,3346,211593903,210880268,168878,67682,2060346188,2049455206,72.58,73.37,79.32,79.39,3.45,3.63,8.15,8.17
-27569,37,191,37191,2200,891,43750479,43465142,8022,3346,211593903,210880268,122623,52949,1442241153,1432488557,27.42,26.63,20.68,20.61,1.79,1.68,3.03,3.03
-27571,37,183,37183,3893,1386,11674554,11439843,3893,1386,11674554,11439843,900993,371836,2220452951,2163206258,100,100,100,100,0.43,0.37,0.53,0.53
-27572,37,063,37063,1916,840,70807720,70082770,6546,2883,267503404,266254203,267587,120217,771470518,740672748,29.27,29.14,26.47,26.32,0.72,0.7,9.18,9.46
-27572,37,077,37077,436,199,30844778,30761005,6546,2883,267503404,266254203,59916,22827,1389524604,1376758990,6.66,6.9,11.53,11.55,0.73,0.87,2.22,2.23
-27572,37,135,37135,1798,804,63085221,62853566,6546,2883,267503404,266254203,133801,55597,1039692215,1030705790,27.47,27.89,23.58,23.61,1.34,1.45,6.07,6.1
-27572,37,145,37145,2396,1040,102765685,102556862,6546,2883,267503404,266254203,39464,18193,1046558987,1016108548,36.6,36.07,38.42,38.52,6.07,5.72,9.82,10.09
-27573,37,145,37145,11414,5411,46228273,46115632,11414,5411,46228273,46115632,39464,18193,1046558987,1016108548,100,100,100,100,28.92,29.74,4.42,4.54
-27574,37,145,37145,14373,6374,499926966,485951291,14373,6374,499926966,485951291,39464,18193,1046558987,1016108548,100,100,100,100,36.42,35.04,47.77,47.82
-27576,37,101,37101,17091,7055,215642136,215299086,17091,7055,215642136,215299086,168878,67682,2060346188,2049455206,100,100,100,100,10.12,10.42,10.47,10.51
-27577,37,101,37101,22911,9197,271049621,269652901,22911,9197,271049621,269652901,168878,67682,2060346188,2049455206,100,100,100,100,13.57,13.59,13.16,13.16
-27581,37,077,37077,3049,1291,90634858,88997480,3049,1291,90634858,88997480,59916,22827,1389524604,1376758990,100,100,100,100,5.09,5.66,6.52,6.46
-27582,37,077,37077,289,141,8251124,8233520,289,141,8251124,8233520,59916,22827,1389524604,1376758990,100,100,100,100,0.48,0.62,0.59,0.6
-27583,37,135,37135,176,73,3840805,3829861,6921,2895,120223843,119863036,133801,55597,1039692215,1030705790,2.54,2.52,3.19,3.2,0.13,0.13,0.37,0.37
-27583,37,145,37145,6745,2822,116383038,116033175,6921,2895,120223843,119863036,39464,18193,1046558987,1016108548,97.46,97.48,96.81,96.8,17.09,15.51,11.12,11.42
-27587,37,069,37069,1767,635,4229655,4202376,53078,20117,285012562,271400446,60619,26577,1280745757,1273451203,3.33,3.16,1.48,1.55,2.91,2.39,0.33,0.33
-27587,37,077,37077,1920,777,23169132,23147163,53078,20117,285012562,271400446,59916,22827,1389524604,1376758990,3.62,3.86,8.13,8.53,3.2,3.4,1.67,1.68
-27587,37,183,37183,49391,18705,257613775,244050907,53078,20117,285012562,271400446,900993,371836,2220452951,2163206258,93.05,92.98,90.39,89.92,5.48,5.03,11.6,11.28
-27589,37,069,37069,248,129,16027028,16002367,8370,4027,450855370,449720248,60619,26577,1280745757,1273451203,2.96,3.2,3.55,3.56,0.41,0.49,1.25,1.26
-27589,37,185,37185,8122,3898,434828342,433717881,8370,4027,450855370,449720248,20972,11806,1149337894,1109696231,97.04,96.8,96.45,96.44,38.73,33.02,37.83,39.08
-27591,37,101,37101,3853,1466,52443280,51995249,19589,7677,172723803,171748830,168878,67682,2060346188,2049455206,19.67,19.1,30.36,30.27,2.28,2.17,2.55,2.54
-27591,37,183,37183,15736,6211,120280523,119753581,19589,7677,172723803,171748830,900993,371836,2220452951,2163206258,80.33,80.9,69.64,69.73,1.75,1.67,5.42,5.54
-27592,37,085,37085,34,13,546646,546646,15244,5731,108401577,107842113,114678,46731,1557369584,1541008895,0.22,0.23,0.5,0.51,0.03,0.03,0.04,0.04
-27592,37,101,37101,6372,2411,43585551,43453270,15244,5731,108401577,107842113,168878,67682,2060346188,2049455206,41.8,42.07,40.21,40.29,3.77,3.56,2.12,2.12
-27592,37,183,37183,8838,3307,64269380,63842197,15244,5731,108401577,107842113,900993,371836,2220452951,2163206258,57.98,57.7,59.29,59.2,0.98,0.89,2.89,2.95
-27596,37,069,37069,13828,5507,131129541,130393188,15619,6224,145205163,144387746,60619,26577,1280745757,1273451203,88.53,88.48,90.31,90.31,22.81,20.72,10.24,10.24
-27596,37,077,37077,1114,436,5997431,5967896,15619,6224,145205163,144387746,59916,22827,1389524604,1376758990,7.13,7.01,4.13,4.13,1.86,1.91,0.43,0.43
-27596,37,183,37183,677,281,8078191,8026662,15619,6224,145205163,144387746,900993,371836,2220452951,2163206258,4.33,4.51,5.56,5.56,0.08,0.08,0.36,0.37
-27597,37,069,37069,5594,2345,90225641,89549613,22181,9159,319756794,317628094,60619,26577,1280745757,1273451203,25.22,25.6,28.22,28.19,9.23,8.82,7.04,7.03
-27597,37,101,37101,3095,1254,69693905,69274249,22181,9159,319756794,317628094,168878,67682,2060346188,2049455206,13.95,13.69,21.8,21.81,1.83,1.85,3.38,3.38
-27597,37,127,37127,1224,508,28044722,27956026,22181,9159,319756794,317628094,95840,42286,1405764460,1399646368,5.52,5.55,8.77,8.8,1.28,1.2,1.99,2
-27597,37,183,37183,12268,5052,131792526,130848206,22181,9159,319756794,317628094,900993,371836,2220452951,2163206258,55.31,55.16,41.22,41.2,1.36,1.36,5.94,6.05
-27601,37,183,37183,9450,4189,4647348,4647348,9450,4189,4647348,4647348,900993,371836,2220452951,2163206258,100,100,100,100,1.05,1.13,0.21,0.21
-27603,37,101,37101,1470,517,6819609,6801245,47033,19550,134960525,133665621,168878,67682,2060346188,2049455206,3.13,2.64,5.05,5.09,0.87,0.76,0.33,0.33
-27603,37,183,37183,45563,19033,128140916,126864376,47033,19550,134960525,133665621,900993,371836,2220452951,2163206258,96.87,97.36,94.95,94.91,5.06,5.12,5.77,5.86
-27604,37,183,37183,42204,18433,56536127,55870836,42204,18433,56536127,55870836,900993,371836,2220452951,2163206258,100,100,100,100,4.68,4.96,2.55,2.58
-27605,37,183,37183,4495,3031,2555890,2555890,4495,3031,2555890,2555890,900993,371836,2220452951,2163206258,100,100,100,100,0.5,0.82,0.12,0.12
-27606,37,183,37183,43210,19275,66554435,64224192,43210,19275,66554435,64224192,900993,371836,2220452951,2163206258,100,100,100,100,4.8,5.18,3,2.97
-27607,37,183,37183,25188,8127,41769910,41698584,25188,8127,41769910,41698584,900993,371836,2220452951,2163206258,100,100,100,100,2.8,2.19,1.88,1.93
-27608,37,183,37183,10429,5196,8329144,8329144,10429,5196,8329144,8329144,900993,371836,2220452951,2163206258,100,100,100,100,1.16,1.4,0.38,0.39
-27609,37,183,37183,32964,16243,29057482,28937963,32964,16243,29057482,28937963,900993,371836,2220452951,2163206258,100,100,100,100,3.66,4.37,1.31,1.34
-27610,37,183,37183,65648,23846,111072574,110636045,65648,23846,111072574,110636045,900993,371836,2220452951,2163206258,100,100,100,100,7.29,6.41,5,5.11
-27612,37,183,37183,35028,18005,49191137,48588958,35028,18005,49191137,48588958,900993,371836,2220452951,2163206258,100,100,100,100,3.89,4.84,2.22,2.25
-27613,37,063,37063,900,423,8483767,8448467,42690,18784,64148272,63722629,267587,120217,771470518,740672748,2.11,2.25,13.23,13.26,0.34,0.35,1.1,1.14
-27613,37,183,37183,41790,18361,55664505,55274162,42690,18784,64148272,63722629,900993,371836,2220452951,2163206258,97.89,97.75,86.77,86.74,4.64,4.94,2.51,2.56
-27614,37,183,37183,31516,12279,76205970,70149827,31516,12279,76205970,70149827,900993,371836,2220452951,2163206258,100,100,100,100,3.5,3.3,3.43,3.24
-27615,37,183,37183,42166,18672,50425608,50073590,42166,18672,50425608,50073590,900993,371836,2220452951,2163206258,100,100,100,100,4.68,5.02,2.27,2.31
-27616,37,183,37183,42294,15973,57788564,57547787,42294,15973,57788564,57547787,900993,371836,2220452951,2163206258,100,100,100,100,4.69,4.3,2.6,2.66
-27617,37,063,37063,114,77,245363,241619,15199,7615,21775717,21770058,267587,120217,771470518,740672748,0.75,1.01,1.13,1.11,0.04,0.06,0.03,0.03
-27617,37,183,37183,15085,7538,21530354,21528439,15199,7615,21775717,21770058,900993,371836,2220452951,2163206258,99.25,98.99,98.87,98.89,1.67,2.03,0.97,1
-27701,37,063,37063,21288,10501,13668568,13667543,21288,10501,13668568,13667543,267587,120217,771470518,740672748,100,100,100,100,7.96,8.74,1.77,1.85
-27703,37,063,37063,41937,17221,149024560,140625726,41937,17221,149825445,141426611,267587,120217,771470518,740672748,100,100,99.47,99.43,15.67,14.32,19.32,18.99
-27703,37,183,37183,0,0,800885,800885,41937,17221,149825445,141426611,900993,371836,2220452951,2163206258,0,0,0.53,0.57,0,0,0.04,0.04
-27704,37,063,37063,34517,14504,117681390,104393188,34517,14504,117681390,104393188,267587,120217,771470518,740672748,100,100,100,100,12.9,12.06,15.25,14.09
-27705,37,063,37063,41855,18526,59303520,58879211,46282,20402,114576304,113643537,267587,120217,771470518,740672748,90.43,90.8,51.76,51.81,15.64,15.41,7.69,7.95
-27705,37,135,37135,4427,1876,55272784,54764326,46282,20402,114576304,113643537,133801,55597,1039692215,1030705790,9.57,9.2,48.24,48.19,3.31,3.37,5.32,5.31
-27707,37,063,37063,44814,20859,50386816,50181694,45023,20962,55329016,55102696,267587,120217,771470518,740672748,99.54,99.51,91.07,91.07,16.75,17.35,6.53,6.78
-27707,37,135,37135,209,103,4942200,4921002,45023,20962,55329016,55102696,133801,55597,1039692215,1030705790,0.46,0.49,8.93,8.93,0.16,0.19,0.48,0.48
-27709,37,063,37063,1047,407,1020521,1011976,1047,407,1020521,1011976,267587,120217,771470518,740672748,100,100,100,100,0.39,0.34,0.13,0.14
-27712,37,063,37063,20035,8276,89137411,86685575,20035,8276,89137411,86685575,267587,120217,771470518,740672748,100,100,100,100,7.49,6.88,11.55,11.7
-27713,37,037,37037,699,302,16781897,16639920,46660,21901,85353563,84320245,63505,28753,1838454595,1766851529,1.5,1.38,19.66,19.73,1.1,1.05,0.91,0.94
-27713,37,063,37063,45961,21599,68571666,67680325,46660,21901,85353563,84320245,267587,120217,771470518,740672748,98.5,98.62,80.34,80.27,17.18,17.97,8.89,9.14
-27801,37,065,37065,21740,9978,180937407,180246658,21740,9978,180937407,180246658,56552,24838,1312217026,1308814792,100,100,100,100,38.44,40.17,13.79,13.77
-27803,37,065,37065,349,143,5961640,5961640,21227,9786,106431651,104418772,56552,24838,1312217026,1308814792,1.64,1.46,5.6,5.71,0.62,0.58,0.45,0.46
-27803,37,127,37127,20427,9441,92614072,90605973,21227,9786,106431651,104418772,95840,42286,1405764460,1399646368,96.23,96.47,87.02,86.77,21.31,22.33,6.59,6.47
-27803,37,195,37195,451,202,7855939,7851159,21227,9786,106431651,104418772,81234,35511,967962737,953567109,2.12,2.06,7.38,7.52,0.56,0.57,0.81,0.82
-27804,37,127,37127,29058,13402,109965614,109416477,29058,13402,109965614,109416477,95840,42286,1405764460,1399646368,100,100,100,100,30.32,31.69,7.82,7.82
-27805,37,015,37015,1968,927,177743368,177743368,3992,1846,287320404,287320404,21282,9822,1919825720,1811100404,49.3,50.22,61.86,61.86,9.25,9.44,9.26,9.81
-27805,37,091,37091,2024,919,109577036,109577036,3992,1846,287320404,287320404,24669,10635,933313328,914421664,50.7,49.78,38.14,38.14,8.2,8.64,11.74,11.98
-27806,37,013,37013,2331,1568,450340361,357680009,2331,1568,450340361,357680009,47759,24688,2481766289,2142417945,100,100,100,100,4.88,6.35,18.15,16.7
-27807,37,127,37127,6251,2497,120594089,120107385,6629,2647,129986615,129452204,95840,42286,1405764460,1399646368,94.3,94.33,92.77,92.78,6.52,5.91,8.58,8.58
-27807,37,195,37195,378,150,9392526,9344819,6629,2647,129986615,129452204,81234,35511,967962737,953567109,5.7,5.67,7.23,7.22,0.47,0.42,0.97,0.98
-27808,37,013,37013,2225,1482,157251338,108336448,2225,1482,157251338,108336448,47759,24688,2481766289,2142417945,100,100,100,100,4.66,6,6.34,5.06
-27809,37,065,37065,2142,853,118591166,118346679,5091,2066,194174328,193815712,56552,24838,1312217026,1308814792,42.07,41.29,61.07,61.06,3.79,3.43,9.04,9.04
-27809,37,127,37127,2949,1213,75583162,75469033,5091,2066,194174328,193815712,95840,42286,1405764460,1399646368,57.93,58.71,38.93,38.94,3.08,2.87,5.38,5.39
-27810,37,013,37013,3894,2473,311192762,197179913,4377,2765,474059525,336920900,47759,24688,2481766289,2142417945,88.97,89.44,65.64,58.52,8.15,10.02,12.54,9.2
-27810,37,095,37095,483,292,162866763,139740987,4377,2765,474059525,336920900,5810,3347,3688208910,1586884785,11.03,10.56,34.36,41.48,8.31,8.72,4.42,8.81
-27812,37,065,37065,143,81,38254417,38254417,2593,1246,160362102,160362102,56552,24838,1312217026,1308814792,5.51,6.5,23.86,23.86,0.25,0.33,2.92,2.92
-27812,37,117,37117,92,49,30733961,30733961,2593,1246,160362102,160362102,24505,11704,1195301593,1194547357,3.55,3.93,19.17,19.17,0.38,0.42,2.57,2.57
-27812,37,147,37147,2358,1116,91373724,91373724,2593,1246,160362102,160362102,168148,74990,1695988287,1688606138,90.94,89.57,56.98,56.98,1.4,1.49,5.39,5.41
-27813,37,195,37195,747,329,2883967,2873801,747,329,2883967,2873801,81234,35511,967962737,953567109,100,100,100,100,0.92,0.93,0.3,0.3
-27814,37,013,37013,1676,1322,203133240,165410606,1676,1322,203133240,165410606,47759,24688,2481766289,2142417945,100,100,100,100,3.51,5.35,8.19,7.72
-27816,37,069,37069,1140,534,79384379,78921448,2516,1148,157211933,156581335,60619,26577,1280745757,1273451203,45.31,46.52,50.5,50.4,1.88,2.01,6.2,6.2
-27816,37,127,37127,1376,614,77827554,77659887,2516,1148,157211933,156581335,95840,42286,1405764460,1399646368,54.69,53.48,49.5,49.6,1.44,1.45,5.54,5.55
-27817,37,013,37013,7358,3601,302164996,291006008,7358,3601,302164996,291006008,47759,24688,2481766289,2142417945,100,100,100,100,15.41,14.59,12.18,13.58
-27818,37,091,37091,1344,679,161160901,158095299,1344,679,161160901,158095299,24669,10635,933313328,914421664,100,100,100,100,5.45,6.38,17.27,17.29
-27819,37,065,37065,330,152,2800259,2800259,330,152,2800259,2800259,56552,24838,1312217026,1308814792,100,100,100,100,0.58,0.61,0.21,0.21
-27820,37,131,37131,3088,1489,146164380,145740495,3088,1489,146164380,145740495,22099,11674,1426059122,1389757849,100,100,100,100,13.97,12.75,10.25,10.49
-27821,37,013,37013,358,199,17098142,16841458,358,199,17098142,16841458,47759,24688,2481766289,2142417945,100,100,100,100,0.75,0.81,0.69,0.79
-27822,37,065,37065,562,237,19937583,19872688,8143,3578,238424510,236915683,56552,24838,1312217026,1308814792,6.9,6.62,8.36,8.39,0.99,0.95,1.52,1.52
-27822,37,127,37127,1539,640,43793565,43052527,8143,3578,238424510,236915683,95840,42286,1405764460,1399646368,18.9,17.89,18.37,18.17,1.61,1.51,3.12,3.08
-27822,37,195,37195,6042,2701,174693362,173990468,8143,3578,238424510,236915683,81234,35511,967962737,953567109,74.2,75.49,73.27,73.44,7.44,7.61,18.05,18.25
-27823,37,083,37083,8201,3698,491182604,489295819,8201,3698,491182604,489295819,54691,25781,1893746331,1875375057,100,100,100,100,15,14.34,25.94,26.09
-27824,37,095,37095,1476,826,310725396,253883788,1476,826,310725396,253883788,5810,3347,3688208910,1586884785,100,100,100,100,25.4,24.68,8.42,16
-27825,37,117,37117,103,59,1210510,1210510,103,59,1210510,1210510,24505,11704,1195301593,1194547357,100,100,100,100,0.42,0.5,0.1,0.1
-27826,37,095,37095,1288,312,153787509,151638337,1379,363,193883408,190651231,5810,3347,3688208910,1586884785,93.4,85.95,79.32,79.54,22.17,9.32,4.17,9.56
-27826,37,177,37177,91,51,40095899,39012894,1379,363,193883408,190651231,4407,2068,1539017668,1007595142,6.6,14.05,20.68,20.46,2.06,2.47,2.61,3.87
-27827,37,147,37147,33,17,247835,247835,33,17,247835,247835,168148,74990,1695988287,1688606138,100,100,100,100,0.02,0.02,0.01,0.01
-27828,37,079,37079,1090,465,63784695,63743005,9071,4042,199237846,199132110,21362,8213,689971258,688749236,12.02,11.5,32.01,32.01,5.1,5.66,9.24,9.25
-27828,37,147,37147,7981,3577,135453151,135389105,9071,4042,199237846,199132110,168148,74990,1695988287,1688606138,87.98,88.5,67.99,67.99,4.75,4.77,7.99,8.02
-27829,37,065,37065,360,168,22855402,22786114,1930,956,127587223,127375095,56552,24838,1312217026,1308814792,18.65,17.57,17.91,17.89,0.64,0.68,1.74,1.74
-27829,37,147,37147,1348,673,76688897,76563804,1930,956,127587223,127375095,168148,74990,1695988287,1688606138,69.84,70.4,60.11,60.11,0.8,0.9,4.52,4.53
-27829,37,195,37195,222,115,28042924,28025177,1930,956,127587223,127375095,81234,35511,967962737,953567109,11.5,12.03,21.98,22,0.27,0.32,2.9,2.94
-27830,37,191,37191,4468,2198,143042905,142858392,4755,2324,157097210,156912697,122623,52949,1442241153,1432488557,93.96,94.58,91.05,91.04,3.64,4.15,9.92,9.97
-27830,37,195,37195,287,126,14054305,14054305,4755,2324,157097210,156912697,81234,35511,967962737,953567109,6.04,5.42,8.95,8.96,0.35,0.35,1.45,1.47
-27831,37,131,37131,3908,1895,176603591,170071959,3908,1895,176603591,170071959,22099,11674,1426059122,1389757849,100,100,100,100,17.68,16.23,12.38,12.24
-27832,37,131,37131,2847,1397,89307555,78295358,2847,1397,89307555,78295358,22099,11674,1426059122,1389757849,100,100,100,100,12.88,11.97,6.26,5.63
-27834,37,013,37013,44,28,12592555,12592555,52914,24429,461082069,458186307,47759,24688,2481766289,2142417945,0.08,0.11,2.73,2.75,0.09,0.11,0.51,0.59
-27834,37,065,37065,42,20,2540530,2540530,52914,24429,461082069,458186307,56552,24838,1312217026,1308814792,0.08,0.08,0.55,0.55,0.07,0.08,0.19,0.19
-27834,37,147,37147,52828,24381,445948984,443053222,52914,24429,461082069,458186307,168148,74990,1695988287,1688606138,99.84,99.8,96.72,96.7,31.42,32.51,26.29,26.24
-27837,37,013,37013,302,119,4490889,4490889,5903,2371,155311843,154340916,47759,24688,2481766289,2142417945,5.12,5.02,2.89,2.91,0.63,0.48,0.18,0.21
-27837,37,147,37147,5601,2252,150820954,149850027,5903,2371,155311843,154340916,168148,74990,1695988287,1688606138,94.88,94.98,97.11,97.09,3.33,3,8.89,8.87
-27839,37,083,37083,4001,1647,369395760,369104011,4001,1647,369395760,369104011,54691,25781,1893746331,1875375057,100,100,100,100,7.32,6.39,19.51,19.68
-27840,37,117,37117,514,269,32651488,32637901,514,269,32651488,32637901,24505,11704,1195301593,1194547357,100,100,100,100,2.1,2.3,2.73,2.73
-27841,37,117,37117,84,40,669650,669650,84,40,669650,669650,24505,11704,1195301593,1194547357,100,100,100,100,0.34,0.34,0.06,0.06
-27842,37,131,37131,1290,1611,37064197,23999925,1493,1867,42180643,27953453,22099,11674,1426059122,1389757849,86.4,86.29,87.87,85.86,5.84,13.8,2.6,1.73
-27842,37,185,37185,203,256,5116446,3953528,1493,1867,42180643,27953453,20972,11806,1149337894,1109696231,13.6,13.71,12.13,14.14,0.97,2.17,0.45,0.36
-27843,37,065,37065,241,114,55070793,55070793,1157,600,154298698,154276083,56552,24838,1312217026,1308814792,20.83,19,35.69,35.7,0.43,0.46,4.2,4.21
-27843,37,083,37083,716,370,57896119,57873504,1157,600,154298698,154276083,54691,25781,1893746331,1875375057,61.88,61.67,37.52,37.51,1.31,1.44,3.06,3.09
-27843,37,117,37117,200,116,41331786,41331786,1157,600,154298698,154276083,24505,11704,1195301593,1194547357,17.29,19.33,26.79,26.79,0.82,0.99,3.46,3.46
-27844,37,083,37083,2418,1080,86020329,85705658,2950,1317,110859311,110483543,54691,25781,1893746331,1875375057,81.97,82,77.59,77.57,4.42,4.19,4.54,4.57
-27844,37,185,37185,532,237,24838982,24777885,2950,1317,110859311,110483543,20972,11806,1149337894,1109696231,18.03,18,22.41,22.43,2.54,2.01,2.16,2.23
-27845,37,131,37131,2394,991,260254883,258807198,2394,991,260254883,258807198,22099,11674,1426059122,1389757849,100,100,100,100,10.83,8.49,18.25,18.62
-27846,37,117,37117,2988,1411,251202448,250829531,2988,1411,251202448,250829531,24505,11704,1195301593,1194547357,100,100,100,100,12.19,12.06,21.02,21
-27847,37,015,37015,936,452,97067220,96622019,936,452,97067220,96622019,21282,9822,1919825720,1811100404,100,100,100,100,4.4,4.6,5.06,5.33
-27849,37,015,37015,1544,705,199821640,198105542,1544,705,199821640,198105542,21282,9822,1919825720,1811100404,100,100,100,100,7.25,7.18,10.41,10.94
-27850,37,083,37083,4556,2881,317752332,312020339,7247,5411,513812940,483645930,54691,25781,1893746331,1875375057,62.87,53.24,61.84,64.51,8.33,11.17,16.78,16.64
-27850,37,185,37185,2691,2530,196060608,171625591,7247,5411,513812940,483645930,20972,11806,1149337894,1109696231,37.13,46.76,38.16,35.49,12.83,21.43,17.06,15.47
-27851,37,195,37195,5268,2213,116066390,116011820,5268,2213,116066390,116011820,81234,35511,967962737,953567109,100,100,100,100,6.48,6.23,11.99,12.17
-27852,37,065,37065,2554,1151,104599558,104333847,2977,1349,126441129,125911614,56552,24838,1312217026,1308814792,85.79,85.32,82.73,82.86,4.52,4.63,7.97,7.97
-27852,37,147,37147,117,59,11472702,11279061,2977,1349,126441129,125911614,168148,74990,1695988287,1688606138,3.93,4.37,9.07,8.96,0.07,0.08,0.68,0.67
-27852,37,195,37195,306,139,10368869,10298706,2977,1349,126441129,125911614,81234,35511,967962737,953567109,10.28,10.3,8.2,8.18,0.38,0.39,1.07,1.08
-27853,37,131,37131,673,320,110469012,110202533,673,320,110469012,110202533,22099,11674,1426059122,1389757849,100,100,100,100,3.05,2.74,7.75,7.93
-27855,37,091,37091,5977,2515,119948234,118995541,6456,2752,142528036,141575343,24669,10635,933313328,914421664,92.58,91.39,84.16,84.05,24.23,23.65,12.85,13.01
-27855,37,131,37131,479,237,22579802,22579802,6456,2752,142528036,141575343,22099,11674,1426059122,1389757849,7.42,8.61,15.84,15.95,2.17,2.03,1.58,1.62
-27856,37,127,37127,17141,6917,337232168,336211410,17141,6917,337232168,336211410,95840,42286,1405764460,1399646368,100,100,100,100,17.89,16.36,23.99,24.02
-27857,37,117,37117,1298,699,163730771,163598581,1298,699,163730771,163598581,24505,11704,1195301593,1194547357,100,100,100,100,5.3,5.97,13.7,13.7
-27858,37,147,37147,55781,25070,156559588,156028841,55781,25070,156559588,156028841,168148,74990,1695988287,1688606138,100,100,100,100,33.17,33.43,9.23,9.24
-27860,37,013,37013,1994,990,282002907,279773366,2246,1093,375608968,371217107,47759,24688,2481766289,2142417945,88.78,90.58,75.08,75.37,4.18,4.01,11.36,13.06
-27860,37,095,37095,114,33,53291611,51129291,2246,1093,375608968,371217107,5810,3347,3688208910,1586884785,5.08,3.02,14.19,13.77,1.96,0.99,1.44,3.22
-27860,37,187,37187,138,70,40314450,40314450,2246,1093,375608968,371217107,13228,6491,1097757588,901664508,6.14,6.4,10.73,10.86,1.04,1.08,3.67,4.47
-27861,37,117,37117,71,42,1576350,1576350,71,42,1576350,1576350,24505,11704,1195301593,1194547357,100,100,100,100,0.29,0.36,0.13,0.13
-27862,37,131,37131,877,429,104441733,103832393,877,429,104441733,103832393,22099,11674,1426059122,1389757849,100,100,100,100,3.97,3.67,7.32,7.47
-27863,37,079,37079,107,46,4206261,4206261,11735,4796,175504379,175044059,21362,8213,689971258,688749236,0.91,0.96,2.4,2.4,0.5,0.56,0.61,0.61
-27863,37,191,37191,11628,4750,171298118,170837798,11735,4796,175504379,175044059,122623,52949,1442241153,1432488557,99.09,99.04,97.6,97.6,9.48,8.97,11.88,11.93
-27864,37,065,37065,4779,2004,104677056,104552165,4779,2004,104677056,104552165,56552,24838,1312217026,1308814792,100,100,100,100,8.45,8.07,7.98,7.99
-27865,37,013,37013,1927,868,225353184,224094143,1927,868,225353184,224094143,47759,24688,2481766289,2142417945,100,100,100,100,4.03,3.52,9.08,10.46
-27866,37,131,37131,855,390,67410562,67184780,855,390,67410562,67184780,22099,11674,1426059122,1389757849,100,100,100,100,3.87,3.34,4.73,4.83
-27869,37,131,37131,2258,1177,214195434,212029688,2258,1177,214195434,212029688,22099,11674,1426059122,1389757849,100,100,100,100,10.22,10.08,15.02,15.26
-27870,37,083,37083,27236,12341,183412545,175988242,27236,12341,183412545,175988242,54691,25781,1893746331,1875375057,100,100,100,100,49.8,47.87,9.69,9.38
-27871,37,013,37013,14,5,1695704,1695704,4619,2223,249501262,249453081,47759,24688,2481766289,2142417945,0.3,0.22,0.68,0.68,0.03,0.02,0.07,0.08
-27871,37,117,37117,4022,1951,173957820,173957820,4619,2223,249501262,249453081,24505,11704,1195301593,1194547357,87.08,87.76,69.72,69.74,16.41,16.67,14.55,14.56
-27871,37,147,37147,583,267,73847738,73799557,4619,2223,249501262,249453081,168148,74990,1695988287,1688606138,12.62,12.01,29.6,29.58,0.35,0.36,4.35,4.37
-27872,37,015,37015,375,210,32755387,32696454,375,210,32755387,32696454,21282,9822,1919825720,1811100404,100,100,100,100,1.76,2.14,1.71,1.81
-27873,37,195,37195,397,187,1620173,1620173,397,187,1620173,1620173,81234,35511,967962737,953567109,100,100,100,100,0.49,0.53,0.17,0.17
-27874,37,083,37083,4861,2472,339972826,337809139,4861,2472,339972826,337809139,54691,25781,1893746331,1875375057,100,100,100,100,8.89,9.59,17.95,18.01
-27875,37,095,37095,517,285,241472874,142811214,517,285,241472874,142811214,5810,3347,3688208910,1586884785,100,100,100,100,8.9,8.52,6.55,9
-27876,37,131,37131,1302,705,108750520,108196265,1302,705,108750520,108196265,22099,11674,1426059122,1389757849,100,100,100,100,5.89,6.04,7.63,7.79
-27878,37,065,37065,155,75,778819,778819,1931,912,4756068,4756068,56552,24838,1312217026,1308814792,8.03,8.22,16.38,16.38,0.27,0.3,0.06,0.06
-27878,37,127,37127,1213,588,3388837,3388837,1931,912,4756068,4756068,95840,42286,1405764460,1399646368,62.82,64.47,71.25,71.25,1.27,1.39,0.24,0.24
-27878,37,195,37195,563,249,588412,588412,1931,912,4756068,4756068,81234,35511,967962737,953567109,29.16,27.3,12.37,12.37,0.69,0.7,0.06,0.06
-27879,37,147,37147,311,168,761808,761808,311,168,761808,761808,168148,74990,1695988287,1688606138,100,100,100,100,0.18,0.22,0.04,0.05
-27880,37,127,37127,154,65,2706921,2685081,3304,1319,71366408,67239591,95840,42286,1405764460,1399646368,4.66,4.93,3.79,3.99,0.16,0.15,0.19,0.19
-27880,37,195,37195,3150,1254,68659487,64554510,3304,1319,71366408,67239591,81234,35511,967962737,953567109,95.34,95.07,96.21,96.01,3.88,3.53,7.09,6.77
-27881,37,065,37065,61,31,1760083,1760083,61,31,1760083,1760083,56552,24838,1312217026,1308814792,100,100,100,100,0.11,0.12,0.13,0.13
-27882,37,069,37069,978,404,44841341,44567900,7413,3335,257447827,256674000,60619,26577,1280745757,1273451203,13.19,12.11,17.42,17.36,1.61,1.52,3.5,3.5
-27882,37,127,37127,6435,2931,212606486,212106100,7413,3335,257447827,256674000,95840,42286,1405764460,1399646368,86.81,87.89,82.58,82.64,6.71,6.93,15.12,15.15
-27883,37,079,37079,934,385,67239460,66843591,3565,1578,199169204,198494531,21362,8213,689971258,688749236,26.2,24.4,33.76,33.68,4.37,4.69,9.75,9.71
-27883,37,191,37191,606,266,26726205,26716336,3565,1578,199169204,198494531,122623,52949,1442241153,1432488557,17,16.86,13.42,13.46,0.49,0.5,1.85,1.87
-27883,37,195,37195,2025,927,105203539,104934604,3565,1578,199169204,198494531,81234,35511,967962737,953567109,56.8,58.75,52.82,52.87,2.49,2.61,10.87,11
-27884,37,147,37147,1282,554,85762313,85630148,1282,554,85762313,85630148,168148,74990,1695988287,1688606138,100,100,100,100,0.76,0.74,5.06,5.07
-27885,37,095,37095,984,616,431315685,322728826,984,616,431315685,322728826,5810,3347,3688208910,1586884785,100,100,100,100,16.94,18.4,11.69,20.34
-27886,37,065,37065,21251,8997,486999693,485142935,21591,9121,502046330,499879103,56552,24838,1312217026,1308814792,98.43,98.64,97,97.05,37.58,36.22,37.11,37.07
-27886,37,147,37147,340,124,15046637,14736168,21591,9121,502046330,499879103,168148,74990,1695988287,1688606138,1.57,1.36,3,2.95,0.2,0.17,0.89,0.87
-27888,37,079,37079,2390,974,103876060,103815951,2560,1046,123327562,123267453,21362,8213,689971258,688749236,93.36,93.12,84.23,84.22,11.19,11.86,15.06,15.07
-27888,37,147,37147,125,50,13488775,13488775,2560,1046,123327562,123267453,168148,74990,1695988287,1688606138,4.88,4.78,10.94,10.94,0.07,0.07,0.8,0.8
-27888,37,195,37195,45,22,5962727,5962727,2560,1046,123327562,123267453,81234,35511,967962737,953567109,1.76,2.1,4.83,4.84,0.06,0.06,0.62,0.63
-27889,37,013,37013,25210,11834,499217874,468084509,27468,12692,541451929,508396512,47759,24688,2481766289,2142417945,91.78,93.24,92.2,92.07,52.79,47.93,20.12,21.85
-27889,37,147,37147,2258,858,42234055,40312003,27468,12692,541451929,508396512,168148,74990,1695988287,1688606138,8.22,6.76,7.8,7.93,1.34,1.14,2.49,2.39
-27890,37,083,37083,2521,1217,23324268,23191883,2521,1217,23324268,23191883,54691,25781,1893746331,1875375057,100,100,100,100,4.61,4.72,1.23,1.24
-27891,37,065,37065,1843,834,166452620,166367165,5227,2299,366793148,366219966,56552,24838,1312217026,1308814792,35.26,36.28,45.38,45.43,3.26,3.36,12.68,12.71
-27891,37,083,37083,181,75,24789548,24386462,5227,2299,366793148,366219966,54691,25781,1893746331,1875375057,3.46,3.26,6.76,6.66,0.33,0.29,1.31,1.3
-27891,37,127,37127,3203,1390,175550980,175466339,5227,2299,366793148,366219966,95840,42286,1405764460,1399646368,61.28,60.46,47.86,47.91,3.34,3.29,12.49,12.54
-27892,37,013,37013,49,27,2167544,2167544,15182,7095,500404353,500168811,47759,24688,2481766289,2142417945,0.32,0.38,0.43,0.43,0.1,0.11,0.09,0.1
-27892,37,117,37117,15133,7068,498236809,498001267,15182,7095,500404353,500168811,24505,11704,1195301593,1194547357,99.68,99.62,99.57,99.57,61.75,60.39,41.68,41.69
-27893,37,195,37195,39723,17743,288461694,285389492,39723,17743,288461694,285389492,81234,35511,967962737,953567109,100,100,100,100,48.9,49.96,29.8,29.93
-27896,37,127,37127,604,243,27117224,26870718,20130,8489,90802841,89567154,95840,42286,1405764460,1399646368,3,2.86,29.86,30,0.63,0.57,1.93,1.92
-27896,37,195,37195,19526,8246,63685617,62696436,20130,8489,90802841,89567154,81234,35511,967962737,953567109,97,97.14,70.14,70,24.04,23.22,6.58,6.57
-27897,37,091,37091,137,65,22167240,22167240,2265,1098,110984693,110984693,24669,10635,933313328,914421664,6.05,5.92,19.97,19.97,0.56,0.61,2.38,2.42
-27897,37,131,37131,2128,1033,88817453,88817453,2265,1098,110984693,110984693,22099,11674,1426059122,1389757849,93.95,94.08,80.03,80.03,9.63,8.85,6.23,6.39
-27909,37,029,37029,38,28,431286,53365,40699,16861,656172297,587670225,9980,4104,803450384,623038021,0.09,0.17,0.07,0.01,0.38,0.68,0.05,0.01
-27909,37,139,37139,40661,16833,655741011,587616860,40699,16861,656172297,587670225,40661,16833,749637914,587616860,99.91,99.83,99.93,99.99,100,100,87.47,100
-27910,37,015,37015,1208,559,87755005,87755005,12007,5413,352156258,351996713,21282,9822,1919825720,1811100404,10.06,10.33,24.92,24.93,5.68,5.69,4.57,4.85
-27910,37,091,37091,10799,4854,264401253,264241708,12007,5413,352156258,351996713,24669,10635,933313328,914421664,89.94,89.67,75.08,75.07,43.78,45.64,28.33,28.9
-27915,37,055,37055,777,1650,32886214,20597769,777,1650,32886214,20597769,33920,33492,4047021990,993052150,100,100,100,100,2.29,4.93,0.81,2.07
-27916,37,053,37053,747,333,20081953,20081953,747,333,20081953,20081953,23547,14453,1363868003,678194049,100,100,100,100,3.17,2.3,1.47,2.96
-27917,37,053,37053,833,329,62801079,52096680,833,329,62801079,52096680,23547,14453,1363868003,678194049,100,100,100,100,3.54,2.28,4.6,7.68
-27919,37,041,37041,161,75,13513104,13513104,1130,576,150808128,150799622,14793,7289,604238502,446702391,14.25,13.02,8.96,8.96,1.09,1.03,2.24,3.03
-27919,37,143,37143,969,501,137295024,137286518,1130,576,150808128,150799622,13453,6986,852018438,639957337,85.75,86.98,91.04,91.04,7.2,7.17,16.11,21.45
-27920,37,055,37055,1326,877,11928224,9470003,1326,877,11928224,9470003,33920,33492,4047021990,993052150,100,100,100,100,3.91,2.62,0.29,0.95
-27921,37,029,37029,4805,1965,197662181,187556987,4805,1965,197662181,187556987,9980,4104,803450384,623038021,100,100,100,100,48.15,47.88,24.6,30.1
-27922,37,091,37091,1030,514,111297453,108746232,1030,514,111297453,108746232,24669,10635,933313328,914421664,100,100,100,100,4.18,4.83,11.92,11.89
-27923,37,053,37053,598,329,85034749,18664473,598,329,85034749,18664473,23547,14453,1363868003,678194049,100,100,100,100,2.54,2.28,6.23,2.75
-27924,37,015,37015,3113,1554,254177264,237396143,3140,1565,260531952,243750831,21282,9822,1919825720,1811100404,99.14,99.3,97.56,97.39,14.63,15.82,13.24,13.11
-27924,37,091,37091,27,11,6354688,6354688,3140,1565,260531952,243750831,24669,10635,933313328,914421664,0.86,0.7,2.44,2.61,0.11,0.1,0.68,0.69
-27925,37,177,37177,4217,1965,735660444,624589597,4217,1965,735660444,624589597,4407,2068,1539017668,1007595142,100,100,100,100,95.69,95.02,47.8,61.99
-27926,37,073,37073,1915,770,92617203,92604145,1915,770,92617203,92604145,12197,5208,895325732,881747682,100,100,100,100,15.7,14.78,10.34,10.5
-27927,37,053,37053,542,4394,181646714,68957855,542,4394,181646714,68957855,23547,14453,1363868003,678194049,100,100,100,100,2.3,30.4,13.32,10.17
-27928,37,177,37177,97,51,21927856,21459235,1986,986,242542660,177630143,4407,2068,1539017668,1007595142,4.88,5.17,9.04,12.08,2.2,2.47,1.42,2.13
-27928,37,187,37187,1889,935,220614804,156170908,1986,986,242542660,177630143,13228,6491,1097757588,901664508,95.12,94.83,90.96,87.92,14.28,14.4,20.1,17.32
-27929,37,053,37053,1166,537,32300658,15347523,1166,537,32300658,15347523,23547,14453,1363868003,678194049,100,100,100,100,4.95,3.72,2.37,2.26
-27932,37,041,37041,12562,6209,318137234,306027666,12562,6209,318137234,306027666,14793,7289,604238502,446702391,100,100,100,100,84.92,85.18,52.65,68.51
-27935,37,073,37073,1698,764,160425539,155303288,1698,764,160425539,155303288,12197,5208,895325732,881747682,100,100,100,100,13.92,14.67,17.92,17.61
-27936,37,055,37055,1091,1071,28224567,24333536,1091,1071,28224567,24333536,33920,33492,4047021990,993052150,100,100,100,100,3.22,3.2,0.7,2.45
-27937,37,073,37073,4333,1763,220190546,218638474,4333,1763,220190546,218638474,12197,5208,895325732,881747682,100,100,100,100,35.53,33.85,24.59,24.8
-27938,37,073,37073,1505,659,137713159,131719675,1505,659,137713159,131719675,12197,5208,895325732,881747682,100,100,100,100,12.34,12.65,15.38,14.94
-27939,37,053,37053,2361,1274,43594723,17120910,2361,1274,43594723,17120910,23547,14453,1363868003,678194049,100,100,100,100,10.03,8.81,3.2,2.52
-27941,37,053,37053,536,259,8158609,8158609,536,259,8158609,8158609,23547,14453,1363868003,678194049,100,100,100,100,2.28,1.79,0.6,1.2
-27942,37,091,37091,901,447,95463998,86253480,901,447,95463998,86253480,24669,10635,933313328,914421664,100,100,100,100,3.65,4.2,10.23,9.43
-27943,37,055,37055,504,876,12875530,7334054,504,876,12875530,7334054,33920,33492,4047021990,993052150,100,100,100,100,1.49,2.62,0.32,0.74
-27944,37,143,37143,11909,6200,548925635,479101756,11909,6200,548925635,479101756,13453,6986,852018438,639957337,100,100,100,100,88.52,88.75,64.43,74.86
-27946,37,041,37041,180,90,13823681,13823681,1207,573,110577988,110576673,14793,7289,604238502,446702391,14.91,15.71,12.5,12.5,1.22,1.23,2.29,3.09
-27946,37,073,37073,1027,483,96754307,96752992,1207,573,110577988,110576673,12197,5208,895325732,881747682,85.09,84.29,87.5,87.5,8.42,9.27,10.81,10.97
-27947,37,053,37053,1230,587,34932181,31260825,1230,587,34932181,31260825,23547,14453,1363868003,678194049,100,100,100,100,5.22,4.06,2.56,4.61
-27948,37,055,37055,10862,9024,39840565,23945936,10862,9024,39840565,23945936,33920,33492,4047021990,993052150,100,100,100,100,32.02,26.94,0.98,2.41
-27949,37,055,37055,6947,8569,97461017,39333499,6947,8569,97461017,39333499,33920,33492,4047021990,993052150,100,100,100,100,20.48,25.59,2.41,3.96
-27950,37,053,37053,2006,912,134409406,77400757,2006,912,134409406,77400757,23547,14453,1363868003,678194049,100,100,100,100,8.52,6.31,9.86,11.41
-27953,37,055,37055,1021,573,888485609,713484971,1021,573,888485609,713484971,33920,33492,4047021990,993052150,100,100,100,100,3.01,1.71,21.95,71.85
-27954,37,055,37055,6111,3479,36739008,22887074,6111,3479,36739008,22887074,33920,33492,4047021990,993052150,100,100,100,100,18.02,10.39,0.91,2.3
-27956,37,053,37053,340,130,12060990,12030150,340,130,12060990,12030150,23547,14453,1363868003,678194049,100,100,100,100,1.44,0.9,0.88,1.77
-27957,37,015,37015,1356,728,136368262,110061573,1356,728,136368262,110061573,21282,9822,1919825720,1811100404,100,100,100,100,6.37,7.41,7.1,6.08
-27958,37,053,37053,10144,3887,248156399,228430869,10144,3887,248156399,228430869,23547,14453,1363868003,678194049,100,100,100,100,43.08,26.89,18.2,33.68
-27959,37,055,37055,2789,4946,83450540,38034428,2789,4946,83450540,38034428,33920,33492,4047021990,993052150,100,100,100,100,8.22,14.77,2.06,3.83
-27960,37,095,37095,948,983,41872872,22725476,948,983,41872872,22725476,5810,3347,3688208910,1586884785,100,100,100,100,16.32,29.37,1.14,1.43
-27962,37,187,37187,7792,3668,231262519,230788315,7792,3668,231262519,230788315,13228,6491,1097757588,901664508,100,100,100,100,58.91,56.51,21.07,25.6
-27964,37,053,37053,545,327,13479037,3823958,545,327,13479037,3823958,23547,14453,1363868003,678194049,100,100,100,100,2.31,2.26,0.99,0.56
-27965,37,053,37053,527,285,72369762,41698460,527,285,72369762,41698460,23547,14453,1363868003,678194049,100,100,100,100,2.24,1.97,5.31,6.15
-27966,37,053,37053,1052,485,70342823,26488239,1052,485,70342823,26488239,23547,14453,1363868003,678194049,100,100,100,100,4.47,3.36,5.16,3.91
-27967,37,015,37015,366,201,9594502,9594502,366,201,9594502,9594502,21282,9822,1919825720,1811100404,100,100,100,100,1.72,2.05,0.5,0.53
-27968,37,055,37055,298,654,33409056,20189282,298,654,33409056,20189282,33920,33492,4047021990,993052150,100,100,100,100,0.88,1.95,0.83,2.03
-27970,37,187,37187,3409,1818,311854785,293904269,3409,1818,311854785,293904269,13228,6491,1097757588,901664508,100,100,100,100,25.77,28.01,28.41,32.6
-27972,37,055,37055,244,641,7102768,3682046,244,641,7102768,3682046,33920,33492,4047021990,993052150,100,100,100,100,0.72,1.91,0.18,0.37
-27973,37,029,37029,403,161,40985695,40844011,1323,546,97632915,97476799,9980,4104,803450384,623038021,30.46,29.49,41.98,41.9,4.04,3.92,5.1,6.56
-27973,37,053,37053,920,385,56647220,56632788,1323,546,97632915,97476799,23547,14453,1363868003,678194049,69.54,70.51,58.02,58.1,3.91,2.66,4.15,8.35
-27974,37,029,37029,1285,585,185131455,118838909,1285,585,185131455,118838909,9980,4104,803450384,623038021,100,100,100,100,12.88,14.25,23.04,19.07
-27976,37,029,37029,3449,1365,275744749,275744749,3449,1365,275744749,275744749,9980,4104,803450384,623038021,100,100,100,100,34.56,33.26,34.32,44.26
-27978,37,055,37055,225,127,59185969,41620340,225,127,59185969,41620340,33920,33492,4047021990,993052150,100,100,100,100,0.66,0.38,1.46,4.19
-27979,37,073,37073,1719,769,187624978,186729108,1719,769,187624978,186729108,12197,5208,895325732,881747682,100,100,100,100,14.09,14.77,20.96,21.18
-27980,37,041,37041,1890,915,112840428,112608942,2182,1052,134002945,133771459,14793,7289,604238502,446702391,86.62,86.98,84.21,84.18,12.78,12.55,18.67,25.21
-27980,37,143,37143,292,137,21162517,21162517,2182,1052,134002945,133771459,13453,6986,852018438,639957337,13.38,13.02,15.79,15.82,2.17,1.96,2.48,3.31
-27981,37,055,37055,1643,794,25530721,20458029,1643,794,25530721,20458029,33920,33492,4047021990,993052150,100,100,100,100,4.84,2.37,0.63,2.06
-27982,37,055,37055,82,211,818871,818871,82,211,818871,818871,33920,33492,4047021990,993052150,100,100,100,100,0.24,0.63,0.02,0.08
-27983,37,015,37015,10416,4486,924543072,861125798,10416,4486,924543072,861125798,21282,9822,1919825720,1811100404,100,100,100,100,48.94,45.67,48.16,47.55
-27985,37,143,37143,283,148,2411422,2406546,283,148,2411422,2406546,13453,6986,852018438,639957337,100,100,100,100,2.1,2.12,0.28,0.38
-27986,37,091,37091,2430,631,42942525,39990440,2430,631,42942525,39990440,24669,10635,933313328,914421664,100,100,100,100,9.85,5.93,4.6,4.37
-28001,37,167,37167,26760,12475,348893533,344382730,26760,12475,348893533,344382730,60585,27110,1048529413,1023267267,100,100,100,100,44.17,46.02,33.27,33.66
-28006,37,071,37071,730,333,7220115,7209346,1130,509,13896476,13877819,206086,88686,943019554,922106205,64.6,65.42,51.96,51.95,0.35,0.38,0.77,0.78
-28006,37,109,37109,400,176,6676361,6668473,1130,509,13896476,13877819,78265,33641,795232690,771655597,35.4,34.58,48.04,48.05,0.51,0.52,0.84,0.86
-28007,37,007,37007,611,299,3402388,3402388,611,299,3402388,3402388,26948,11576,1391065976,1376453053,100,100,100,100,2.27,2.58,0.24,0.25
-28009,37,167,37167,1121,601,8817438,7413324,1121,601,8817438,7413324,60585,27110,1048529413,1023267267,100,100,100,100,1.85,2.22,0.84,0.72
-28012,37,071,37071,20048,8633,80764071,70867161,20048,8633,80764071,70867161,206086,88686,943019554,922106205,100,100,100,100,9.73,9.73,8.56,7.69
-28016,37,071,37071,13463,5963,112225051,111199231,13463,5963,112225051,111199231,206086,88686,943019554,922106205,100,100,100,100,6.53,6.72,11.9,12.06
-28017,37,045,37045,695,0,441239,441239,695,0,441239,441239,98078,43373,1212764639,1202408392,100,0,100,100,0.71,0,0.04,0.04
-28018,37,161,37161,5562,2720,257280366,257096443,5562,2720,257280366,257096443,67810,33878,1465543918,1461144059,100,100,100,100,8.2,8.03,17.56,17.6
-28019,37,161,37161,123,53,392422,392422,123,53,392422,392422,67810,33878,1465543918,1461144059,100,100,100,100,0.18,0.16,0.03,0.03
-28020,37,045,37045,2251,1062,103440552,103440552,2322,1102,112819111,112819111,98078,43373,1212764639,1202408392,96.94,96.37,91.69,91.69,2.3,2.45,8.53,8.6
-28020,37,161,37161,71,40,9378559,9378559,2322,1102,112819111,112819111,67810,33878,1465543918,1461144059,3.06,3.63,8.31,8.31,0.1,0.12,0.64,0.64
-28021,37,045,37045,2761,1205,41384431,39120404,13612,6030,164985970,162239295,98078,43373,1212764639,1202408392,20.28,19.98,25.08,24.11,2.82,2.78,3.41,3.25
-28021,37,071,37071,8902,3995,69948134,69645320,13612,6030,164985970,162239295,206086,88686,943019554,922106205,65.4,66.25,42.4,42.93,4.32,4.5,7.42,7.55
-28021,37,109,37109,1949,830,53653405,53473571,13612,6030,164985970,162239295,78265,33641,795232690,771655597,14.32,13.76,32.52,32.96,2.49,2.47,6.75,6.93
-28023,37,159,37159,14175,5966,120359356,120001693,14175,5966,120359356,120001693,138428,60211,1356441101,1324451332,100,100,100,100,10.24,9.91,8.87,9.06
-28025,37,025,37025,49160,20326,282429126,282046539,49160,20326,282429126,282046539,178011,71937,943958493,936925455,100,100,100,100,27.62,28.26,29.92,30.1
-28027,37,025,37025,55435,22169,182785813,177682005,55435,22169,182785813,177682005,178011,71937,943958493,936925455,100,100,100,100,31.14,30.82,19.36,18.96
-28031,37,119,37119,24390,11619,67948013,37508358,24390,11619,67948013,37508358,919628,398510,1413898706,1356745512,100,100,100,100,2.65,2.92,4.81,2.76
-28032,37,071,37071,3105,1464,6488722,6037220,3105,1464,6488722,6037220,206086,88686,943019554,922106205,100,100,100,100,1.51,1.65,0.69,0.65
-28033,37,071,37071,933,379,15580415,15525019,2749,1127,40464359,40241719,206086,88686,943019554,922106205,33.94,33.63,38.5,38.58,0.45,0.43,1.65,1.68
-28033,37,109,37109,1816,748,24883944,24716700,2749,1127,40464359,40241719,78265,33641,795232690,771655597,66.06,66.37,61.5,61.42,2.32,2.22,3.13,3.2
-28034,37,071,37071,16642,7004,118405715,117454608,16642,7004,118405715,117454608,206086,88686,943019554,922106205,100,100,100,100,8.08,7.9,12.56,12.74
-28036,37,025,37025,2633,1008,20906667,20884686,14654,5640,60068324,58511314,178011,71937,943958493,936925455,17.97,17.87,34.8,35.69,1.48,1.4,2.21,2.23
-28036,37,097,37097,414,148,2985341,2985341,14654,5640,60068324,58511314,159437,69013,1545970551,1486221270,2.83,2.62,4.97,5.1,0.26,0.21,0.19,0.2
-28036,37,119,37119,11607,4484,36176316,34641287,14654,5640,60068324,58511314,919628,398510,1413898706,1356745512,79.21,79.5,60.23,59.2,1.26,1.13,2.56,2.55
-28037,37,035,37035,1775,817,12751486,11340812,18287,8266,137128947,114852360,154358,67886,1070740822,1032683744,9.71,9.88,9.3,9.87,1.15,1.2,1.19,1.1
-28037,37,109,37109,16512,7449,124377461,103511548,18287,8266,137128947,114852360,78265,33641,795232690,771655597,90.29,90.12,90.7,90.13,21.1,22.14,15.64,13.41
-28039,37,159,37159,116,59,220166,220166,116,59,220166,220166,138428,60211,1356441101,1324451332,100,100,100,100,0.08,0.1,0.02,0.02
-28040,37,045,37045,129,54,5472730,5472730,7969,3648,184368564,184345258,98078,43373,1212764639,1202408392,1.62,1.48,2.97,2.97,0.13,0.12,0.45,0.46
-28040,37,161,37161,7840,3594,178895834,178872528,7969,3648,184368564,184345258,67810,33878,1465543918,1461144059,98.38,98.52,97.03,97.03,11.56,10.61,12.21,12.24
-28043,37,161,37161,21055,9723,164404946,164111048,21055,9723,164404946,164111048,67810,33878,1465543918,1461144059,100,100,100,100,31.05,28.7,11.22,11.23
-28052,37,071,37071,34932,14814,109715938,109155761,34932,14814,109715938,109155761,206086,88686,943019554,922106205,100,100,100,100,16.95,16.7,11.63,11.84
-28054,37,071,37071,36270,16398,51967686,51784967,36270,16398,51967686,51784967,206086,88686,943019554,922106205,100,100,100,100,17.6,18.49,5.51,5.62
-28056,37,071,37071,31418,12943,124002138,123160930,31418,12943,124002138,123160930,206086,88686,943019554,922106205,100,100,100,100,15.25,14.59,13.15,13.36
-28071,37,025,37025,699,287,37362239,37357487,2802,1226,118196951,118071317,178011,71937,943958493,936925455,24.95,23.41,31.61,31.64,0.39,0.4,3.96,3.99
-28071,37,159,37159,1941,866,73814184,73693302,2802,1226,118196951,118071317,138428,60211,1356441101,1324451332,69.27,70.64,62.45,62.41,1.4,1.44,5.44,5.56
-28071,37,167,37167,162,73,7020528,7020528,2802,1226,118196951,118071317,60585,27110,1048529413,1023267267,5.78,5.95,5.94,5.95,0.27,0.27,0.67,0.69
-28072,37,159,37159,1357,578,2810890,2810890,1357,578,2810890,2810890,138428,60211,1356441101,1324451332,100,100,100,100,0.98,0.96,0.21,0.21
-28073,37,045,37045,5621,2360,66566938,66431183,5621,2360,66566938,66431183,98078,43373,1212764639,1202408392,100,100,100,100,5.73,5.44,5.49,5.52
-28075,37,025,37025,16143,5781,54811475,54811475,16143,5781,54811475,54811475,178011,71937,943958493,936925455,100,100,100,100,9.07,8.04,5.81,5.85
-28076,37,161,37161,722,358,3462588,3462588,722,358,3462588,3462588,67810,33878,1465543918,1461144059,100,100,100,100,1.06,1.06,0.24,0.24
-28077,37,071,37071,482,227,1538787,1514405,482,227,1538787,1514405,206086,88686,943019554,922106205,100,100,100,100,0.23,0.26,0.16,0.16
-28078,37,025,37025,2270,718,4170094,4170094,52133,20596,169020203,165245152,178011,71937,943958493,936925455,4.35,3.49,2.47,2.52,1.28,1,0.44,0.45
-28078,37,119,37119,49863,19878,164850109,161075058,52133,20596,169020203,165245152,919628,398510,1413898706,1356745512,95.65,96.51,97.53,97.48,5.42,4.99,11.66,11.87
-28079,37,179,37179,31979,11431,114745839,113714884,31979,11431,114745839,113714884,201292,72870,1656366481,1635630037,100,100,100,100,15.89,15.69,6.93,6.95
-28080,37,109,37109,7299,2986,102671449,102312527,7299,2986,102671449,102312527,78265,33641,795232690,771655597,100,100,100,100,9.33,8.88,12.91,13.26
-28081,37,025,37025,14549,6342,40627800,40618111,25190,10850,79896842,78789539,178011,71937,943958493,936925455,57.76,58.45,50.85,51.55,8.17,8.82,4.3,4.34
-28081,37,159,37159,10641,4508,39269042,38171428,25190,10850,79896842,78789539,138428,60211,1356441101,1324451332,42.24,41.55,49.15,48.45,7.69,7.49,2.9,2.88
-28083,37,025,37025,18210,8025,40030096,38991999,23820,10548,53209057,51914685,178011,71937,943958493,936925455,76.45,76.08,75.23,75.11,10.23,11.16,4.24,4.16
-28083,37,159,37159,5610,2523,13178961,12922686,23820,10548,53209057,51914685,138428,60211,1356441101,1324451332,23.55,23.92,24.77,24.89,4.05,4.19,0.97,0.98
-28086,37,045,37045,22202,9705,173338551,171455433,25895,11200,230053226,227955350,98078,43373,1212764639,1202408392,85.74,86.65,75.35,75.21,22.64,22.38,14.29,14.26
-28086,37,071,37071,3693,1495,56714675,56499917,25895,11200,230053226,227955350,206086,88686,943019554,922106205,14.26,13.35,24.65,24.79,1.79,1.69,6.01,6.13
-28088,37,159,37159,2862,1316,6859334,6859334,2862,1316,6859334,6859334,138428,60211,1356441101,1324451332,100,100,100,100,2.07,2.19,0.51,0.52
-28089,37,045,37045,248,53,642772,642772,248,53,642772,642772,98078,43373,1212764639,1202408392,100,100,100,100,0.25,0.12,0.05,0.05
-28090,37,023,37023,32,14,1787516,1787516,8342,3704,243205411,242502392,90912,40879,1334039248,1313381247,0.38,0.38,0.73,0.74,0.04,0.03,0.13,0.14
-28090,37,035,37035,41,16,2307577,2307577,8342,3704,243205411,242502392,154358,67886,1070740822,1032683744,0.49,0.43,0.95,0.95,0.03,0.02,0.22,0.22
-28090,37,045,37045,8103,3595,233533544,232836826,8342,3704,243205411,242502392,98078,43373,1212764639,1202408392,97.13,97.06,96.02,96.01,8.26,8.29,19.26,19.36
-28090,37,109,37109,166,79,5576774,5570473,8342,3704,243205411,242502392,78265,33641,795232690,771655597,1.99,2.13,2.29,2.3,0.21,0.23,0.7,0.72
-28091,37,007,37007,2158,1175,256775305,245190344,2158,1175,256775305,245190344,26948,11576,1391065976,1376453053,100,100,100,100,8.01,10.15,18.46,17.81
-28092,37,035,37035,381,149,14087066,13934315,38570,16585,319135191,317522973,154358,67886,1070740822,1032683744,0.99,0.9,4.41,4.39,0.25,0.22,1.32,1.35
-28092,37,071,37071,2048,858,23587315,23366197,38570,16585,319135191,317522973,206086,88686,943019554,922106205,5.31,5.17,7.39,7.36,0.99,0.97,2.5,2.53
-28092,37,109,37109,36141,15578,281460810,280222461,38570,16585,319135191,317522973,78265,33641,795232690,771655597,93.7,93.93,88.19,88.25,46.18,46.31,35.39,36.31
-28097,37,025,37025,196,93,1546698,1546698,5369,2282,78751049,78751049,178011,71937,943958493,936925455,3.65,4.08,1.96,1.96,0.11,0.13,0.16,0.17
-28097,37,167,37167,5173,2189,77204351,77204351,5369,2282,78751049,78751049,60585,27110,1048529413,1023267267,96.35,95.92,98.04,98.04,8.54,8.07,7.36,7.54
-28098,37,071,37071,3579,1568,8991996,8813403,3579,1568,8991996,8813403,206086,88686,943019554,922106205,100,100,100,100,1.74,1.77,0.95,0.96
-28101,37,071,37071,698,306,2452527,2318621,698,306,2452527,2318621,206086,88686,943019554,922106205,100,100,100,100,0.34,0.35,0.26,0.25
-28102,37,007,37007,78,33,1312799,1312799,78,33,1312799,1312799,26948,11576,1391065976,1376453053,100,100,100,100,0.29,0.29,0.09,0.1
-28103,37,007,37007,70,31,12157989,12134618,10311,4217,404813009,400268829,26948,11576,1391065976,1376453053,0.68,0.74,3,3.03,0.26,0.27,0.87,0.88
-28103,37,179,37179,10241,4186,392655020,388134211,10311,4217,404813009,400268829,201292,72870,1656366481,1635630037,99.32,99.26,97,96.97,5.09,5.74,23.71,23.73
-28104,37,119,37119,553,188,1862286,1858212,28040,10148,76580166,75706335,919628,398510,1413898706,1356745512,1.97,1.85,2.43,2.45,0.06,0.05,0.13,0.14
-28104,37,179,37179,27487,9960,74717880,73848123,28040,10148,76580166,75706335,201292,72870,1656366481,1635630037,98.03,98.15,97.57,97.55,13.66,13.67,4.51,4.51
-28105,37,119,37119,39150,15958,61656611,61228669,39586,16107,62081000,61653058,919628,398510,1413898706,1356745512,98.9,99.07,99.32,99.31,4.26,4,4.36,4.51
-28105,37,179,37179,436,149,424389,424389,39586,16107,62081000,61653058,201292,72870,1656366481,1635630037,1.1,0.93,0.68,0.69,0.22,0.2,0.03,0.03
-28107,37,025,37025,5917,2462,118903626,118868027,6422,2664,128557992,128457652,178011,71937,943958493,936925455,92.14,92.42,92.49,92.53,3.32,3.42,12.6,12.69
-28107,37,119,37119,329,136,4651770,4614312,6422,2664,128557992,128457652,919628,398510,1413898706,1356745512,5.12,5.11,3.62,3.59,0.04,0.03,0.33,0.34
-28107,37,167,37167,73,33,1406335,1406335,6422,2664,128557992,128457652,60585,27110,1048529413,1023267267,1.14,1.24,1.09,1.09,0.12,0.12,0.13,0.14
-28107,37,179,37179,103,33,3596261,3568978,6422,2664,128557992,128457652,201292,72870,1656366481,1635630037,1.6,1.24,2.8,2.78,0.05,0.05,0.22,0.22
-28108,37,179,37179,54,22,527656,516881,54,22,527656,516881,201292,72870,1656366481,1635630037,100,100,100,100,0.03,0.03,0.03,0.03
-28109,37,167,37167,387,88,4365722,4357146,387,88,4365722,4357146,60585,27110,1048529413,1023267267,100,100,100,100,0.64,0.32,0.42,0.43
-28110,37,179,37179,50365,18609,338174334,333162133,50365,18609,338174334,333162133,201292,72870,1656366481,1635630037,100,100,100,100,25.02,25.54,20.42,20.37
-28112,37,179,37179,26311,10254,346403533,342051649,26311,10254,346403533,342051649,201292,72870,1656366481,1635630037,100,100,100,100,13.07,14.07,20.91,20.91
-28114,37,045,37045,3068,1382,91510151,89955540,7554,3421,170652472,168974432,98078,43373,1212764639,1202408392,40.61,40.4,53.62,53.24,3.13,3.19,7.55,7.48
-28114,37,161,37161,4486,2039,79142321,79018892,7554,3421,170652472,168974432,67810,33878,1465543918,1461144059,59.39,59.6,46.38,46.76,6.62,6.02,5.4,5.41
-28115,37,097,37097,32012,13135,135474720,135128072,34339,14162,191452498,191023006,159437,69013,1545970551,1486221270,93.22,92.75,70.76,70.74,20.08,19.03,8.76,9.09
-28115,37,159,37159,2327,1027,55977778,55894934,34339,14162,191452498,191023006,138428,60211,1356441101,1324451332,6.78,7.25,29.24,29.26,1.68,1.71,4.13,4.22
-28117,37,097,37097,35454,15417,144577881,103356776,35454,15417,144577881,103356776,159437,69013,1545970551,1486221270,100,100,100,100,22.24,22.34,9.35,6.95
-28119,37,007,37007,2801,1279,171760119,170920359,2801,1279,171760119,170920359,26948,11576,1391065976,1376453053,100,100,100,100,10.39,11.05,12.35,12.42
-28120,37,071,37071,19807,8354,84089350,78768672,19807,8354,84089350,78768672,206086,88686,943019554,922106205,100,100,100,100,9.61,9.42,8.92,8.54
-28124,37,025,37025,6015,2390,126315018,125878493,6622,2654,147891193,147454668,178011,71937,943958493,936925455,90.83,90.05,85.41,85.37,3.38,3.32,13.38,13.44
-28124,37,167,37167,607,264,21576175,21576175,6622,2654,147891193,147454668,60585,27110,1048529413,1023267267,9.17,9.95,14.59,14.63,1,0.97,2.06,2.11
-28125,37,097,37097,516,228,6542000,6528635,2525,1069,99731168,99624303,159437,69013,1545970551,1486221270,20.44,21.33,6.56,6.55,0.32,0.33,0.42,0.44
-28125,37,159,37159,2009,841,93189168,93095668,2525,1069,99731168,99624303,138428,60211,1356441101,1324451332,79.56,78.67,93.44,93.45,1.45,1.4,6.87,7.03
-28127,37,057,37057,191,197,21358754,21181140,7594,5033,204789900,180012360,162878,72655,1468569902,1431421129,2.52,3.91,10.43,11.77,0.12,0.27,1.45,1.48
-28127,37,123,37123,1597,2646,51365780,36315344,7594,5033,204789900,180012360,27798,15914,1299640777,1273651813,21.03,52.57,25.08,20.17,5.75,16.63,3.95,2.85
-28127,37,167,37167,5806,2190,132065366,122515876,7594,5033,204789900,180012360,60585,27110,1048529413,1023267267,76.46,43.51,64.49,68.06,9.58,8.08,12.6,11.97
-28128,37,167,37167,7476,3750,186382036,176772900,7476,3750,186382036,176772900,60585,27110,1048529413,1023267267,100,100,100,100,12.34,13.83,17.78,17.28
-28129,37,167,37167,5399,2437,110558339,110558339,5399,2437,110558339,110558339,60585,27110,1048529413,1023267267,100,100,100,100,8.91,8.99,10.54,10.8
-28133,37,007,37007,2752,1248,200291027,200173157,2878,1306,207105806,206949214,26948,11576,1391065976,1376453053,95.62,95.56,96.71,96.73,10.21,10.78,14.4,14.54
-28133,37,179,37179,126,58,6814779,6776057,2878,1306,207105806,206949214,201292,72870,1656366481,1635630037,4.38,4.44,3.29,3.27,0.06,0.08,0.41,0.41
-28134,37,119,37119,9453,4287,22273540,22172460,9453,4287,22273540,22172460,919628,398510,1413898706,1356745512,100,100,100,100,1.03,1.08,1.58,1.63
-28135,37,007,37007,6123,1799,259428120,259249540,6123,1799,259428120,259249540,26948,11576,1391065976,1376453053,100,100,100,100,22.72,15.54,18.65,18.83
-28137,37,159,37159,732,476,60338964,55432023,3120,1380,119635638,114548670,138428,60211,1356441101,1324451332,23.46,34.49,50.44,48.39,0.53,0.79,4.45,4.19
-28137,37,167,37167,2388,904,59296674,59116647,3120,1380,119635638,114548670,60585,27110,1048529413,1023267267,76.54,65.51,49.56,51.61,3.94,3.33,5.66,5.78
-28138,37,025,37025,863,349,27196940,27196940,10495,4398,115112177,114937346,178011,71937,943958493,936925455,8.22,7.94,23.63,23.66,0.48,0.49,2.88,2.9
-28138,37,159,37159,9632,4049,87915237,87740406,10495,4398,115112177,114937346,138428,60211,1356441101,1324451332,91.78,92.06,76.37,76.34,6.96,6.72,6.48,6.62
-28139,37,149,37149,996,481,45053992,45006168,20111,9304,453692182,453255406,20510,11432,617803410,615871126,4.95,5.17,9.93,9.93,4.86,4.21,7.29,7.31
-28139,37,161,37161,19115,8823,408638190,408249238,20111,9304,453692182,453255406,67810,33878,1465543918,1461144059,95.05,94.83,90.07,90.07,28.19,26.04,27.88,27.94
-28144,37,159,37159,24734,11233,78540401,77427982,24734,11233,78540401,77427982,138428,60211,1356441101,1324451332,100,100,100,100,17.87,18.66,5.79,5.85
-28146,37,159,37159,27614,12701,280552341,257071758,27614,12701,280552341,257071758,138428,60211,1356441101,1324451332,100,100,100,100,19.95,21.09,20.68,19.41
-28147,37,159,37159,24697,9845,203444018,203421091,24697,9845,203444018,203421091,138428,60211,1356441101,1324451332,100,100,100,100,17.84,16.35,15,15.36
-28150,37,045,37045,28092,13063,279970092,276938212,28098,13068,280249616,277217736,98078,43373,1212764639,1202408392,99.98,99.96,99.9,99.9,28.64,30.12,23.09,23.03
-28150,37,161,37161,6,5,279524,279524,28098,13068,280249616,277217736,67810,33878,1465543918,1461144059,0.02,0.04,0.1,0.1,0.01,0.01,0.02,0.02
-28152,37,045,37045,24735,10811,215012662,214222524,24735,10811,215012662,214222524,98078,43373,1212764639,1202408392,100,100,100,100,25.22,24.93,17.73,17.82
-28159,37,159,37159,3108,1351,6384367,6384367,3108,1351,6384367,6384367,138428,60211,1356441101,1324451332,100,100,100,100,2.25,2.24,0.47,0.48
-28160,37,161,37161,3929,1866,14507217,14507217,3929,1866,14507217,14507217,67810,33878,1465543918,1461144059,100,100,100,100,5.79,5.51,0.99,0.99
-28163,37,167,37167,5233,2106,90942916,90942916,5233,2106,90942916,90942916,60585,27110,1048529413,1023267267,100,100,100,100,8.64,7.77,8.67,8.89
-28164,37,071,37071,9336,3952,69326919,68785427,14085,5857,110152189,109224682,206086,88686,943019554,922106205,66.28,67.47,62.94,62.98,4.53,4.46,7.35,7.46
-28164,37,109,37109,4749,1905,40825270,40439255,14085,5857,110152189,109224682,78265,33641,795232690,771655597,33.72,32.53,37.06,37.02,6.07,5.66,5.13,5.24
-28166,37,097,37097,8619,3836,78777917,74767961,8619,3836,78777917,74767961,159437,69013,1545970551,1486221270,100,100,100,100,5.41,5.56,5.1,5.03
-28167,37,111,37111,136,53,10689336,10687693,2362,1214,184410042,184327178,44996,20808,1155125933,1141169175,5.76,4.37,5.8,5.8,0.3,0.25,0.93,0.94
-28167,37,161,37161,2226,1161,173720706,173639485,2362,1214,184410042,184327178,67810,33878,1465543918,1461144059,94.24,95.63,94.2,94.2,3.28,3.43,11.85,11.88
-28168,37,035,37035,3494,1510,91375150,90811807,10230,4365,225568220,224665884,154358,67886,1070740822,1032683744,34.15,34.59,40.51,40.42,2.26,2.22,8.53,8.79
-28168,37,109,37109,6736,2855,134193070,133854077,10230,4365,225568220,224665884,78265,33641,795232690,771655597,65.85,65.41,59.49,59.58,8.61,8.49,16.87,17.35
-28169,37,045,37045,173,83,1450977,1450977,173,83,1450977,1450977,98078,43373,1212764639,1202408392,100,100,100,100,0.18,0.19,0.12,0.12
-28170,37,007,37007,12355,5712,485938229,484069848,12355,5712,485938229,484069848,26948,11576,1391065976,1376453053,100,100,100,100,45.85,49.34,34.93,35.17
-28173,37,179,37179,45097,15103,282213430,278478312,45097,15103,282213430,278478312,201292,72870,1656366481,1635630037,100,100,100,100,22.4,20.73,17.04,17.03
-28174,37,179,37179,8608,2905,94380287,93243223,8608,2905,94380287,93243223,201292,72870,1656366481,1635630037,100,100,100,100,4.28,3.99,5.7,5.7
-28202,37,119,37119,11195,6303,4671994,4666679,11195,6303,4671994,4666679,919628,398510,1413898706,1356745512,100,100,100,100,1.22,1.58,0.33,0.34
-28203,37,119,37119,11315,7544,8592352,8592352,11315,7544,8592352,8592352,919628,398510,1413898706,1356745512,100,100,100,100,1.23,1.89,0.61,0.63
-28204,37,119,37119,4796,2986,4477542,4477542,4796,2986,4477542,4477542,919628,398510,1413898706,1356745512,100,100,100,100,0.52,0.75,0.32,0.33
-28205,37,119,37119,43931,20944,30646988,30619956,43931,20944,30646988,30619956,919628,398510,1413898706,1356745512,100,100,100,100,4.78,5.26,2.17,2.26
-28206,37,119,37119,11898,4663,18281949,18279032,11898,4663,18281949,18279032,919628,398510,1413898706,1356745512,100,100,100,100,1.29,1.17,1.29,1.35
-28207,37,119,37119,9280,4205,6540999,6520758,9280,4205,6540999,6520758,919628,398510,1413898706,1356745512,100,100,100,100,1.01,1.06,0.46,0.48
-28208,37,119,37119,34167,14892,57078159,56999240,34167,14892,57078159,56999240,919628,398510,1413898706,1356745512,100,100,100,100,3.72,3.74,4.04,4.2
-28209,37,119,37119,20317,11007,14231483,14202148,20317,11007,14231483,14202148,919628,398510,1413898706,1356745512,100,100,100,100,2.21,2.76,1.01,1.05
-28210,37,119,37119,42263,21115,33109585,32901568,42263,21115,33109585,32901568,919628,398510,1413898706,1356745512,100,100,100,100,4.6,5.3,2.34,2.43
-28211,37,119,37119,28523,13788,27956288,27907606,28523,13788,27956288,27907606,919628,398510,1413898706,1356745512,100,100,100,100,3.1,3.46,1.98,2.06
-28212,37,119,37119,38457,16957,24080126,23932279,38457,16957,24080126,23932279,919628,398510,1413898706,1356745512,100,100,100,100,4.18,4.26,1.7,1.76
-28213,37,025,37025,836,304,883945,883945,37309,15784,36017914,35786462,178011,71937,943958493,936925455,2.24,1.93,2.45,2.47,0.47,0.42,0.09,0.09
-28213,37,119,37119,36473,15480,35133969,34902517,37309,15784,36017914,35786462,919628,398510,1413898706,1356745512,97.76,98.07,97.55,97.53,3.97,3.88,2.48,2.57
-28214,37,119,37119,34721,13701,89375928,84799291,34721,13701,89375928,84799291,919628,398510,1413898706,1356745512,100,100,100,100,3.78,3.44,6.32,6.25
-28215,37,025,37025,1520,589,3345632,3345632,53629,20940,79603829,79070842,178011,71937,943958493,936925455,2.83,2.81,4.2,4.23,0.85,0.82,0.35,0.36
-28215,37,119,37119,52109,20351,76258197,75725210,53629,20940,79603829,79070842,919628,398510,1413898706,1356745512,97.17,97.19,95.8,95.77,5.67,5.11,5.39,5.58
-28216,37,119,37119,47208,19213,79005088,77432284,47208,19213,79005088,77432284,919628,398510,1413898706,1356745512,100,100,100,100,5.13,4.82,5.59,5.71
-28217,37,119,37119,24204,10247,38725973,38369765,24204,10247,38725973,38369765,919628,398510,1413898706,1356745512,100,100,100,100,2.63,2.57,2.74,2.83
-28226,37,119,37119,37286,16730,39038209,38634466,37286,16730,39038209,38634466,919628,398510,1413898706,1356745512,100,100,100,100,4.05,4.2,2.76,2.85
-28227,37,119,37119,49150,19807,99312254,98509894,49635,19967,101025327,100221091,919628,398510,1413898706,1356745512,99.02,99.2,98.3,98.29,5.34,4.97,7.02,7.26
-28227,37,179,37179,485,160,1713073,1711197,49635,19967,101025327,100221091,201292,72870,1656366481,1635630037,0.98,0.8,1.7,1.71,0.24,0.22,0.1,0.1
-28244,37,119,37119,0,0,19679,19679,0,0,19679,19679,919628,398510,1413898706,1356745512,0,0,100,100,0,0,0,0
-28262,37,025,37025,3,1,179202,179202,37547,15104,56493629,56235018,178011,71937,943958493,936925455,0.01,0.01,0.32,0.32,0,0,0.02,0.02
-28262,37,119,37119,37544,15103,56314427,56055816,37547,15104,56493629,56235018,919628,398510,1413898706,1356745512,99.99,99.99,99.68,99.68,4.08,3.79,3.98,4.13
-28269,37,025,37025,3562,1093,2464122,2464122,71048,28886,79490180,78817035,178011,71937,943958493,936925455,5.01,3.78,3.1,3.13,2,1.52,0.26,0.26
-28269,37,119,37119,67486,27793,77026058,76352913,71048,28886,79490180,78817035,919628,398510,1413898706,1356745512,94.99,96.22,96.9,96.87,7.34,6.97,5.45,5.63
-28270,37,119,37119,31525,12854,32799792,32668901,31525,12854,32799792,32668901,919628,398510,1413898706,1356745512,100,100,100,100,3.43,3.23,2.32,2.41
-28273,37,119,37119,31478,13237,57034380,56686539,31478,13237,57034380,56686539,919628,398510,1413898706,1356745512,100,100,100,100,3.42,3.32,4.03,4.18
-28277,37,119,37119,59664,25176,61380116,60593549,59664,25176,61380116,60593549,919628,398510,1413898706,1356745512,100,100,100,100,6.49,6.32,4.34,4.47
-28278,37,119,37119,19283,7858,83350532,73759178,19283,7858,83350532,73759178,919628,398510,1413898706,1356745512,100,100,100,100,2.1,1.97,5.9,5.44
-28280,37,119,37119,10,6,19577,19577,10,6,19577,19577,919628,398510,1413898706,1356745512,100,100,100,100,0,0,0,0
-28282,37,119,37119,0,0,18417,18417,0,0,18417,18417,919628,398510,1413898706,1356745512,0,0,100,100,0,0,0,0
-28301,37,051,37051,17165,7693,32172174,31810217,17165,7693,32172174,31810217,319431,135524,1705163205,1689487711,100,100,100,100,5.37,5.68,1.89,1.88
-28303,37,051,37051,30909,14646,43961949,43339459,30909,14646,43961949,43339459,319431,135524,1705163205,1689487711,100,100,100,100,9.68,10.81,2.58,2.57
-28304,37,051,37051,36841,15909,42150238,41589868,37147,16029,43285927,42717170,319431,135524,1705163205,1689487711,99.18,99.25,97.38,97.36,11.53,11.74,2.47,2.46
-28304,37,093,37093,306,120,1135689,1127302,37147,16029,43285927,42717170,46952,18211,1016042059,1012022108,0.82,0.75,2.62,2.64,0.65,0.66,0.11,0.11
-28305,37,051,37051,6073,3366,6884904,6734527,6073,3366,6884904,6734527,319431,135524,1705163205,1689487711,100,100,100,100,1.9,2.48,0.4,0.4
-28306,37,017,37017,196,77,6331465,6331465,39683,16069,180394322,177909773,35190,17718,2297729208,2264498846,0.49,0.48,3.51,3.56,0.56,0.43,0.28,0.28
-28306,37,051,37051,38943,15791,172660662,170190136,39683,16069,180394322,177909773,319431,135524,1705163205,1689487711,98.14,98.27,95.71,95.66,12.19,11.65,10.13,10.07
-28306,37,093,37093,544,201,1402195,1388172,39683,16069,180394322,177909773,46952,18211,1016042059,1012022108,1.37,1.25,0.78,0.78,1.16,1.1,0.14,0.14
-28307,37,051,37051,17631,5294,30331577,30294513,17631,5294,30331577,30294513,319431,135524,1705163205,1689487711,100,100,100,100,5.52,3.91,1.78,1.79
-28308,37,051,37051,405,35,9631553,9593022,405,35,9631553,9593022,319431,135524,1705163205,1689487711,100,100,100,100,0.13,0.03,0.56,0.57
-28310,37,051,37051,3459,0,11809480,11754789,3459,0,11809480,11754789,319431,135524,1705163205,1689487711,100,0,100,100,1.08,0,0.69,0.7
-28311,37,051,37051,34567,15746,98491532,97177782,34567,15746,98491532,97177782,319431,135524,1705163205,1689487711,100,100,100,100,10.82,11.62,5.78,5.75
-28312,37,017,37017,234,111,62688653,60879963,18538,8043,439389640,435367175,35190,17718,2297729208,2264498846,1.26,1.38,14.27,13.98,0.66,0.63,2.73,2.69
-28312,37,051,37051,18304,7932,376700987,374487212,18538,8043,439389640,435367175,319431,135524,1705163205,1689487711,98.74,98.62,85.73,86.02,5.73,5.85,22.09,22.17
-28314,37,051,37051,54520,24124,60790919,59675644,54520,24124,60790919,59675644,319431,135524,1705163205,1689487711,100,100,100,100,17.07,17.8,3.57,3.53
-28315,37,093,37093,1554,692,55700145,55565231,11681,5323,166478554,165609669,46952,18211,1016042059,1012022108,13.3,13,33.46,33.55,3.31,3.8,5.48,5.49
-28315,37,125,37125,10127,4631,110778409,110044438,11681,5323,166478554,165609669,88247,43940,1828150573,1807404472,86.7,87,66.54,66.45,11.48,10.54,6.06,6.09
-28318,37,051,37051,758,326,59875455,59832500,4627,2085,206409191,206311818,319431,135524,1705163205,1689487711,16.38,15.64,29.01,29,0.24,0.24,3.51,3.54
-28318,37,163,37163,3869,1759,146533736,146479318,4627,2085,206409191,206311818,63431,27234,2451671196,2446865522,83.62,84.36,70.99,71,6.1,6.46,5.98,5.99
-28320,37,017,37017,8966,4215,292147812,291525508,9229,4345,309069181,308446877,35190,17718,2297729208,2264498846,97.15,97.01,94.53,94.51,25.48,23.79,12.71,12.87
-28320,37,047,37047,263,130,16921369,16921369,9229,4345,309069181,308446877,58098,26042,2469916377,2427578082,2.85,2.99,5.47,5.49,0.45,0.5,0.69,0.7
-28323,37,085,37085,3182,1365,98011222,97374249,3182,1365,98011222,97374249,114678,46731,1557369584,1541008895,100,100,100,100,2.77,2.92,6.29,6.32
-28325,37,061,37061,508,223,2203865,2203865,508,223,2203865,2203865,58505,25728,2128126685,2113998631,100,100,100,100,0.87,0.87,0.1,0.1
-28326,37,085,37085,13265,4709,175885075,175077451,17646,6599,303104190,301349381,114678,46731,1557369584,1541008895,75.17,71.36,58.03,58.1,11.57,10.08,11.29,11.36
-28326,37,105,37105,1383,545,24640709,24286973,17646,6599,303104190,301349381,57866,24136,670918365,660341698,7.84,8.26,8.13,8.06,2.39,2.26,3.67,3.68
-28326,37,125,37125,2998,1345,102578406,101984957,17646,6599,303104190,301349381,88247,43940,1828150573,1807404472,16.99,20.38,33.84,33.84,3.4,3.06,5.61,5.64
-28327,37,125,37125,15433,6958,496680354,493234981,15433,6958,496680354,493234981,88247,43940,1828150573,1807404472,100,100,100,100,17.49,15.84,27.17,27.29
-28328,37,163,37163,27042,11377,662523206,660855146,27042,11377,662523206,660855146,63431,27234,2451671196,2446865522,100,100,100,100,42.63,41.77,27.02,27.01
-28330,37,153,37153,346,160,641824,641824,346,160,641824,641824,46639,20738,1242982435,1227191624,100,100,100,100,0.74,0.77,0.05,0.05
-28332,37,017,37017,482,220,5126754,5126754,482,220,5126754,5126754,35190,17718,2297729208,2264498846,100,100,100,100,1.37,1.24,0.22,0.23
-28333,37,191,37191,11830,4906,123421753,122363731,11830,4906,123421753,122363731,122623,52949,1442241153,1432488557,100,100,100,100,9.65,9.27,8.56,8.54
-28334,37,051,37051,490,211,36101998,34704627,24908,11119,419140585,415086487,319431,135524,1705163205,1689487711,1.97,1.9,8.61,8.36,0.15,0.16,2.12,2.05
-28334,37,085,37085,16070,7463,154319538,152594539,24908,11119,419140585,415086487,114678,46731,1557369584,1541008895,64.52,67.12,36.82,36.76,14.01,15.97,9.91,9.9
-28334,37,101,37101,1389,591,35207506,34845067,24908,11119,419140585,415086487,168878,67682,2060346188,2049455206,5.58,5.32,8.4,8.39,0.82,0.87,1.71,1.7
-28334,37,163,37163,6959,2854,193511543,192942254,24908,11119,419140585,415086487,63431,27234,2451671196,2446865522,27.94,25.67,46.17,46.48,10.97,10.48,7.89,7.89
-28337,37,017,37017,10670,5994,424536643,413801824,10670,5994,424536643,413801824,35190,17718,2297729208,2264498846,100,100,100,100,30.32,33.83,18.48,18.27
-28338,37,153,37153,4607,2151,373717161,371233847,4607,2151,373717161,371233847,46639,20738,1242982435,1227191624,100,100,100,100,9.88,10.37,30.07,30.25
-28339,37,085,37085,6751,2962,94389519,92817363,6751,2962,94389519,92817363,114678,46731,1557369584,1541008895,100,100,100,100,5.89,6.34,6.06,6.02
-28340,37,155,37155,10765,4643,325318754,324660080,10765,4643,325318754,324660080,134168,52751,2463044627,2458470383,100,100,100,100,8.02,8.8,13.21,13.21
-28341,37,061,37061,2288,1054,95985755,95244183,4257,1863,243426723,242685151,58505,25728,2128126685,2113998631,53.75,56.58,39.43,39.25,3.91,4.1,4.51,4.51
-28341,37,163,37163,1969,809,147440968,147440968,4257,1863,243426723,242685151,63431,27234,2451671196,2446865522,46.25,43.42,60.57,60.75,3.1,2.97,6.01,6.03
-28342,37,051,37051,298,100,3216633,3212871,298,100,3216633,3212871,319431,135524,1705163205,1689487711,100,100,100,100,0.09,0.07,0.19,0.19
-28343,37,165,37165,1685,737,46350581,46282477,1685,737,46350581,46282477,36157,15193,829635395,825803818,100,100,100,100,4.66,4.85,5.59,5.6
-28344,37,051,37051,937,374,35900224,35773118,3415,1316,100393779,100198515,319431,135524,1705163205,1689487711,27.44,28.42,35.76,35.7,0.29,0.28,2.11,2.12
-28344,37,163,37163,2478,942,64493555,64425397,3415,1316,100393779,100198515,63431,27234,2451671196,2446865522,72.56,71.58,64.24,64.3,3.91,3.46,2.63,2.63
-28345,37,153,37153,12440,5526,180256907,179188318,12592,5605,184589816,183521227,46639,20738,1242982435,1227191624,98.79,98.59,97.65,97.64,26.67,26.65,14.5,14.6
-28345,37,165,37165,152,79,4332909,4332909,12592,5605,184589816,183521227,36157,15193,829635395,825803818,1.21,1.41,2.35,2.36,0.42,0.52,0.52,0.52
-28347,37,125,37125,15,8,15342054,15342054,1983,515,133611071,133123138,88247,43940,1828150573,1807404472,0.76,1.55,11.48,11.52,0.02,0.02,0.84,0.85
-28347,37,153,37153,1968,507,118269017,117781084,1983,515,133611071,133123138,46639,20738,1242982435,1227191624,99.24,98.45,88.52,88.48,4.22,2.44,9.51,9.6
-28348,37,051,37051,33307,12919,115931975,114691472,33307,12919,115931975,114691472,319431,135524,1705163205,1689487711,100,100,100,100,10.43,9.53,6.8,6.79
-28349,37,061,37061,3724,1645,176092185,174739238,3724,1645,176092185,174739238,58505,25728,2128126685,2113998631,100,100,100,100,6.37,6.39,8.27,8.27
-28350,37,125,37125,305,138,1892461,1675908,305,138,1892461,1675908,88247,43940,1828150573,1807404472,100,100,100,100,0.35,0.31,0.1,0.09
-28351,37,165,37165,4759,1998,147484608,146470607,4759,1998,147484608,146470607,36157,15193,829635395,825803818,100,100,100,100,13.16,13.15,17.78,17.74
-28352,37,165,37165,25641,10644,323459427,322296686,25641,10644,323459427,322296686,36157,15193,829635395,825803818,100,100,100,100,70.92,70.06,38.99,39.03
-28356,37,051,37051,3694,1513,113281852,111927439,5018,2098,143598067,142154953,319431,135524,1705163205,1689487711,73.61,72.12,78.89,78.74,1.16,1.12,6.64,6.62
-28356,37,085,37085,1324,585,30316215,30227514,5018,2098,143598067,142154953,114678,46731,1557369584,1541008895,26.39,27.88,21.11,21.26,1.15,1.25,1.95,1.96
-28357,37,093,37093,1187,477,42732372,42610932,3125,1272,91960285,91792034,46952,18211,1016042059,1012022108,37.98,37.5,46.47,46.42,2.53,2.62,4.21,4.21
-28357,37,155,37155,1938,795,49227913,49181102,3125,1272,91960285,91792034,134168,52751,2463044627,2458470383,62.02,62.5,53.53,53.58,1.44,1.51,2,2
-28358,37,155,37155,38738,15819,521490671,520480196,38738,15819,521490671,520480196,134168,52751,2463044627,2458470383,100,100,100,100,28.87,29.99,21.17,21.17
-28360,37,155,37155,14263,5322,170628680,170230377,14263,5322,170628680,170230377,134168,52751,2463044627,2458470383,100,100,100,100,10.63,10.09,6.93,6.92
-28363,37,153,37153,483,216,52039740,51647220,1202,531,149376207,148408744,46639,20738,1242982435,1227191624,40.18,40.68,34.84,34.8,1.04,1.04,4.19,4.21
-28363,37,165,37165,719,315,97336467,96761524,1202,531,149376207,148408744,36157,15193,829635395,825803818,59.82,59.32,65.16,65.2,1.99,2.07,11.73,11.72
-28364,37,093,37093,84,32,3688413,3688413,14809,5735,351950898,350911589,46952,18211,1016042059,1012022108,0.57,0.56,1.05,1.05,0.18,0.18,0.36,0.36
-28364,37,155,37155,14256,5512,327663139,326677852,14809,5735,351950898,350911589,134168,52751,2463044627,2458470383,96.27,96.11,93.1,93.09,10.63,10.45,13.3,13.29
-28364,37,165,37165,469,191,20599346,20545324,14809,5735,351950898,350911589,36157,15193,829635395,825803818,3.17,3.33,5.85,5.85,1.3,1.26,2.48,2.49
-28365,37,061,37061,6298,2656,247710562,245071355,17144,7425,501646051,498789986,58505,25728,2128126685,2113998631,36.74,35.77,49.38,49.13,10.76,10.32,11.64,11.59
-28365,37,163,37163,237,104,24281524,24281524,17144,7425,501646051,498789986,63431,27234,2451671196,2446865522,1.38,1.4,4.84,4.87,0.37,0.38,0.99,0.99
-28365,37,191,37191,10609,4665,229653965,229437107,17144,7425,501646051,498789986,122623,52949,1442241153,1432488557,61.88,62.83,45.78,46,8.65,8.81,15.92,16.02
-28366,37,101,37101,956,439,45316328,45237392,5061,2213,219832302,219057599,168878,67682,2060346188,2049455206,18.89,19.84,20.61,20.65,0.57,0.65,2.2,2.21
-28366,37,163,37163,4105,1774,174515974,173820207,5061,2213,219832302,219057599,63431,27234,2451671196,2446865522,81.11,80.16,79.39,79.35,6.47,6.51,7.12,7.1
-28367,37,153,37153,87,50,762765,762765,87,50,762765,762765,46639,20738,1242982435,1227191624,100,100,100,100,0.19,0.24,0.06,0.06
-28369,37,155,37155,2652,1137,192214247,192050923,2652,1137,192214247,192050923,134168,52751,2463044627,2458470383,100,100,100,100,1.98,2.16,7.8,7.81
-28371,37,051,37051,2419,939,16471331,16052507,6519,2601,90539734,89745915,319431,135524,1705163205,1689487711,37.11,36.1,18.19,17.89,0.76,0.69,0.97,0.95
-28371,37,093,37093,192,60,1834620,1775513,6519,2601,90539734,89745915,46952,18211,1016042059,1012022108,2.95,2.31,2.03,1.98,0.41,0.33,0.18,0.18
-28371,37,155,37155,3908,1602,72233783,71917895,6519,2601,90539734,89745915,134168,52751,2463044627,2458470383,59.95,61.59,79.78,80.14,2.91,3.04,2.93,2.93
-28372,37,155,37155,14783,5182,113441052,113441052,14783,5182,113441052,113441052,134168,52751,2463044627,2458470383,100,100,100,100,11.02,9.82,4.61,4.61
-28373,37,125,37125,2150,980,33645129,33485711,2150,980,33645129,33485711,88247,43940,1828150573,1807404472,100,100,100,100,2.44,2.23,1.84,1.85
-28374,37,125,37125,15990,9228,59361196,57526238,15990,9228,59361196,57526238,88247,43940,1828150573,1807404472,100,100,100,100,18.12,21,3.25,3.18
-28375,37,155,37155,102,49,740153,740153,102,49,740153,740153,134168,52751,2463044627,2458470383,100,100,100,100,0.08,0.09,0.03,0.03
-28376,37,093,37093,37991,14771,375620029,374131953,37991,14771,375620029,374131953,46952,18211,1016042059,1012022108,100,100,100,100,80.91,81.11,36.97,36.97
-28377,37,093,37093,3888,1409,135347518,134863178,12666,4849,262390387,261198414,46952,18211,1016042059,1012022108,30.7,29.06,51.58,51.63,8.28,7.74,13.32,13.33
-28377,37,155,37155,8778,3440,127042869,126335236,12666,4849,262390387,261198414,134168,52751,2463044627,2458470383,69.3,70.94,48.42,48.37,6.54,6.52,5.16,5.14
-28379,37,153,37153,26388,11968,410727181,401605339,26388,11968,410727181,401605339,46639,20738,1242982435,1227191624,100,100,100,100,56.58,57.71,33.04,32.73
-28382,37,051,37051,826,377,63039057,62955161,7056,3126,306695789,305868363,319431,135524,1705163205,1689487711,11.71,12.06,20.55,20.58,0.26,0.28,3.7,3.73
-28382,37,163,37163,6230,2749,243656732,242913202,7056,3126,306695789,305868363,63431,27234,2451671196,2446865522,88.29,87.94,79.45,79.42,9.82,10.09,9.94,9.93
-28383,37,155,37155,8080,3300,270326342,270280924,8080,3300,270326342,270280924,134168,52751,2463044627,2458470383,100,100,100,100,6.02,6.26,10.98,10.99
-28384,37,017,37017,844,359,25082507,24944963,12097,4717,252798736,252427298,35190,17718,2297729208,2264498846,6.98,7.61,9.92,9.88,2.4,2.03,1.09,1.1
-28384,37,051,37051,461,168,6003750,5999100,12097,4717,252798736,252427298,319431,135524,1705163205,1689487711,3.81,3.56,2.37,2.38,0.14,0.12,0.35,0.36
-28384,37,155,37155,10792,4190,221712479,221483235,12097,4717,252798736,252427298,134168,52751,2463044627,2458470383,89.21,88.83,87.7,87.74,8.04,7.94,9,9.01
-28385,37,163,37163,3029,1400,102603008,102224178,3029,1400,102603008,102224178,63431,27234,2451671196,2446865522,100,100,100,100,4.78,5.14,4.19,4.18
-28386,37,093,37093,1206,449,46000917,45653920,6319,2209,117005462,116645278,46952,18211,1016042059,1012022108,19.09,20.33,39.32,39.14,2.57,2.47,4.53,4.51
-28386,37,155,37155,5113,1760,71004545,70991358,6319,2209,117005462,116645278,134168,52751,2463044627,2458470383,80.91,79.67,60.68,60.86,3.81,3.34,2.88,2.89
-28387,37,125,37125,13921,7608,75943070,75431825,13921,7608,75943070,75431825,88247,43940,1828150573,1807404472,100,100,100,100,15.78,17.31,4.15,4.17
-28390,37,051,37051,9747,4768,72367659,71634371,19942,9257,154197322,152837789,319431,135524,1705163205,1689487711,48.88,51.51,46.93,46.87,3.05,3.52,4.24,4.24
-28390,37,085,37085,10195,4489,81829663,81203418,19942,9257,154197322,152837789,114678,46731,1557369584,1541008895,51.12,48.49,53.07,53.13,8.89,9.61,5.25,5.27
-28391,37,051,37051,5302,2262,91860219,91772755,5302,2262,91860219,91772755,319431,135524,1705163205,1689487711,100,100,100,100,1.66,1.67,5.39,5.43
-28392,37,017,37017,1579,739,103189756,101955329,1579,739,103189756,101955329,35190,17718,2297729208,2264498846,100,100,100,100,4.49,4.17,4.49,4.5
-28393,37,061,37061,5,2,909993,909993,2005,838,115391821,115182010,58505,25728,2128126685,2113998631,0.25,0.24,0.79,0.79,0.01,0.01,0.04,0.04
-28393,37,163,37163,2000,836,114481828,114272017,2005,838,115391821,115182010,63431,27234,2451671196,2446865522,99.75,99.76,99.21,99.21,3.15,3.07,4.67,4.67
-28394,37,125,37125,5164,2521,118016272,113036439,5164,2521,118016272,113036439,88247,43940,1828150573,1807404472,100,100,100,100,5.85,5.74,6.46,6.25
-28395,37,051,37051,2375,1031,124909973,124016266,2375,1031,124909973,124016266,319431,135524,1705163205,1689487711,100,100,100,100,0.74,0.76,7.33,7.34
-28396,37,165,37165,2732,1229,129893745,129511725,2732,1229,129893745,129511725,36157,15193,829635395,825803818,100,100,100,100,7.56,8.09,15.66,15.68
-28398,37,061,37061,8112,3566,253399546,251823873,8112,3566,253399546,251823873,58505,25728,2128126685,2113998631,100,100,100,100,13.87,13.86,11.91,11.91
-28399,37,017,37017,2140,947,247597553,241110180,2140,947,247597553,241110180,35190,17718,2297729208,2264498846,100,100,100,100,6.08,5.34,10.78,10.65
-28401,37,129,37129,22094,11685,75494585,62576261,22094,11685,75494585,62576261,202667,101436,850042714,496071702,100,100,100,100,10.9,11.52,8.88,12.61
-28403,37,129,37129,36063,18000,37165011,36446116,36063,18000,37165011,36446116,202667,101436,850042714,496071702,100,100,100,100,17.79,17.75,4.37,7.35
-28405,37,129,37129,29152,13933,63635833,62328515,29152,13933,63635833,62328515,202667,101436,850042714,496071702,100,100,100,100,14.38,13.74,7.49,12.56
-28409,37,129,37129,31296,13104,76886170,61681386,31296,13104,76886170,61681386,202667,101436,850042714,496071702,100,100,100,100,15.44,12.92,9.04,12.43
-28411,37,129,37129,30265,13394,88779361,84092000,31962,14105,113336924,108333518,202667,101436,850042714,496071702,94.69,94.96,78.33,77.62,14.93,13.2,10.44,16.95
-28411,37,141,37141,1697,711,24557563,24241518,31962,14105,113336924,108333518,52217,26724,2415904314,2252758539,5.31,5.04,21.67,22.38,3.25,2.66,1.02,1.08
-28412,37,129,37129,35573,17462,69627109,56229598,35573,17462,69627109,56229598,202667,101436,850042714,496071702,100,100,100,100,17.55,17.21,8.19,11.33
-28420,37,019,37019,3886,1742,364489470,363768364,3886,1742,364489470,363768364,107431,77482,2719030923,2193650178,100,100,100,100,3.62,2.25,13.41,16.58
-28421,37,141,37141,1521,769,144108638,143410746,1521,769,144108638,143410746,52217,26724,2415904314,2252758539,100,100,100,100,2.91,2.88,5.96,6.37
-28422,37,019,37019,6641,3747,240907651,236138990,6641,3747,240907651,236138990,107431,77482,2719030923,2193650178,100,100,100,100,6.18,4.84,8.86,10.76
-28423,37,017,37017,230,91,15010478,15010478,2290,1001,207595815,207389701,35190,17718,2297729208,2264498846,10.04,9.09,7.23,7.24,0.65,0.51,0.65,0.66
-28423,37,047,37047,2060,910,192585337,192379223,2290,1001,207595815,207389701,58098,26042,2469916377,2427578082,89.96,90.91,92.77,92.76,3.55,3.49,7.8,7.92
-28424,37,047,37047,128,66,382281,382281,128,66,382281,382281,58098,26042,2469916377,2427578082,100,100,100,100,0.22,0.25,0.02,0.02
-28425,37,141,37141,10906,4661,389267827,387767927,10906,4661,389267827,387767927,52217,26724,2415904314,2252758539,100,100,100,100,20.89,17.44,16.11,17.21
-28428,37,129,37129,6033,5941,19359272,13319527,6033,5941,19359272,13319527,202667,101436,850042714,496071702,100,100,100,100,2.98,5.86,2.28,2.69
-28429,37,129,37129,8026,3238,107303408,101486016,8026,3238,107303408,101486016,202667,101436,850042714,496071702,100,100,100,100,3.96,3.19,12.62,20.46
-28430,37,047,37047,1900,863,105194776,105067839,1900,863,105194776,105067839,58098,26042,2469916377,2427578082,100,100,100,100,3.27,3.31,4.26,4.33
-28431,37,047,37047,7102,3379,196108849,195695871,7102,3379,196108849,195695871,58098,26042,2469916377,2427578082,100,100,100,100,12.22,12.98,7.94,8.06
-28432,37,047,37047,1968,881,91821603,91369797,1968,881,91821603,91369797,58098,26042,2469916377,2427578082,100,100,100,100,3.39,3.38,3.72,3.76
-28433,37,017,37017,3914,1829,217812777,217346778,5050,2325,289550331,289084332,35190,17718,2297729208,2264498846,77.5,78.67,75.22,75.18,11.12,10.32,9.48,9.6
-28433,37,047,37047,1136,496,71737554,71737554,5050,2325,289550331,289084332,58098,26042,2469916377,2427578082,22.5,21.33,24.78,24.82,1.96,1.9,2.9,2.96
-28434,37,017,37017,1329,693,211212082,209432503,1329,693,211212082,209432503,35190,17718,2297729208,2264498846,100,100,100,100,3.78,3.91,9.19,9.25
-28435,37,141,37141,2490,1244,254071220,247647907,2490,1244,254071220,247647907,52217,26724,2415904314,2252758539,100,100,100,100,4.77,4.65,10.52,10.99
-28436,37,019,37019,7,4,3008161,3008161,2203,939,97843487,97838821,107431,77482,2719030923,2193650178,0.32,0.43,3.07,3.07,0.01,0.01,0.11,0.14
-28436,37,047,37047,2196,935,94835326,94830660,2203,939,97843487,97838821,58098,26042,2469916377,2427578082,99.68,99.57,96.93,96.93,3.78,3.59,3.84,3.91
-28438,37,017,37017,48,22,2593527,2593527,1845,877,121642331,121447744,35190,17718,2297729208,2264498846,2.6,2.51,2.13,2.14,0.14,0.12,0.11,0.11
-28438,37,047,37047,1797,855,119048804,118854217,1845,877,121642331,121447744,58098,26042,2469916377,2427578082,97.4,97.49,97.87,97.86,3.09,3.28,4.82,4.9
-28439,37,047,37047,1595,831,62408541,62210381,1595,831,62408541,62210381,58098,26042,2469916377,2427578082,100,100,100,100,2.75,3.19,2.53,2.56
-28441,37,017,37017,1060,478,152614646,152516023,3198,1473,331592377,331316838,35190,17718,2297729208,2264498846,33.15,32.45,46.02,46.03,3.01,2.7,6.64,6.74
-28441,37,163,37163,2138,995,178977731,178800815,3198,1473,331592377,331316838,63431,27234,2451671196,2446865522,66.85,67.55,53.98,53.97,3.37,3.65,7.3,7.31
-28442,37,047,37047,1647,829,145223325,145223325,1647,829,145223325,145223325,58098,26042,2469916377,2427578082,100,100,100,100,2.83,3.18,5.88,5.98
-28443,37,141,37141,17512,8455,298997986,296767471,17512,8455,298997986,296767471,52217,26724,2415904314,2252758539,100,100,100,100,33.54,31.64,12.38,13.17
-28444,37,017,37017,816,449,99810659,92350398,2085,1089,238623711,231149064,35190,17718,2297729208,2264498846,39.14,41.23,41.83,39.95,2.32,2.53,4.34,4.08
-28444,37,061,37061,36,17,2824587,2824587,2085,1089,238623711,231149064,58505,25728,2128126685,2113998631,1.73,1.56,1.18,1.22,0.06,0.07,0.13,0.13
-28444,37,163,37163,1233,623,135988465,135974079,2085,1089,238623711,231149064,63431,27234,2451671196,2446865522,59.14,57.21,56.99,58.83,1.94,2.29,5.55,5.56
-28445,37,133,37133,3838,2566,125545744,122416212,5676,6463,147694835,137371817,177772,68226,2346303610,1975496912,67.62,39.7,85,89.11,2.16,3.76,5.35,6.2
-28445,37,141,37141,1838,3897,22149091,14955605,5676,6463,147694835,137371817,52217,26724,2415904314,2252758539,32.38,60.3,15,10.89,3.52,14.58,0.92,0.66
-28447,37,017,37017,411,290,131605952,131545396,1391,749,300560470,300379245,35190,17718,2297729208,2264498846,29.55,38.72,43.79,43.79,1.17,1.64,5.73,5.81
-28447,37,141,37141,391,177,82711764,82633915,1391,749,300560470,300379245,52217,26724,2415904314,2252758539,28.11,23.63,27.52,27.51,0.75,0.66,3.42,3.67
-28447,37,163,37163,589,282,86242754,86199934,1391,749,300560470,300379245,63431,27234,2451671196,2446865522,42.34,37.65,28.69,28.7,0.93,1.04,3.52,3.52
-28448,37,017,37017,1197,660,234857985,233342898,1243,682,246572172,244618644,35190,17718,2297729208,2264498846,96.3,96.77,95.25,95.39,3.4,3.73,10.22,10.3
-28448,37,141,37141,46,22,11714187,11275746,1243,682,246572172,244618644,52217,26724,2415904314,2252758539,3.7,3.23,4.75,4.61,0.09,0.08,0.48,0.5
-28449,37,129,37129,1692,1929,21499174,10332016,1692,1929,21499174,10332016,202667,101436,850042714,496071702,100,100,100,100,0.83,1.9,2.53,2.08
-28450,37,047,37047,2438,1379,136835408,101006097,2438,1379,136835408,101006097,58098,26042,2469916377,2427578082,100,100,100,100,4.2,5.3,5.54,4.16
-28451,37,019,37019,27112,12260,368071101,362010808,27112,12260,368071101,362010808,107431,77482,2719030923,2193650178,100,100,100,100,25.24,15.82,13.54,16.5
-28452,37,019,37019,694,299,15082474,15077508,694,299,15082474,15077508,107431,77482,2719030923,2193650178,100,100,100,100,0.65,0.39,0.55,0.69
-28453,37,061,37061,3522,1492,158871495,157836964,3829,1636,215063295,213997786,58505,25728,2128126685,2113998631,91.98,91.2,73.87,73.76,6.02,5.8,7.47,7.47
-28453,37,163,37163,307,144,56191800,56160822,3829,1636,215063295,213997786,63431,27234,2451671196,2446865522,8.02,8.8,26.13,26.24,0.48,0.53,2.29,2.3
-28454,37,133,37133,1645,721,103072454,103072454,2545,1156,169487307,169487307,177772,68226,2346303610,1975496912,64.64,62.37,60.81,60.81,0.93,1.06,4.39,5.22
-28454,37,141,37141,900,435,66414853,66414853,2545,1156,169487307,169487307,52217,26724,2415904314,2252758539,35.36,37.63,39.19,39.19,1.72,1.63,2.75,2.95
-28455,37,047,37047,2117,967,197881093,197727962,2117,967,197881093,197727962,58098,26042,2469916377,2427578082,100,100,100,100,3.64,3.71,8.01,8.15
-28456,37,017,37017,1074,544,65509959,64684859,3658,1673,169759313,167060614,35190,17718,2297729208,2264498846,29.36,32.52,38.59,38.72,3.05,3.07,2.85,2.86
-28456,37,019,37019,290,112,20495272,20050207,3658,1673,169759313,167060614,107431,77482,2719030923,2193650178,7.93,6.69,12.07,12,0.27,0.14,0.75,0.91
-28456,37,047,37047,2294,1017,83754082,82325548,3658,1673,169759313,167060614,58098,26042,2469916377,2427578082,62.71,60.79,49.34,49.28,3.95,3.91,3.39,3.39
-28457,37,141,37141,9905,4019,339532989,334999903,9905,4019,339532989,334999903,52217,26724,2415904314,2252758539,100,100,100,100,18.97,15.04,14.05,14.87
-28458,37,061,37061,5460,2530,191642165,190088633,6444,2982,288054170,286347927,58505,25728,2128126685,2113998631,84.73,84.84,66.53,66.38,9.33,9.83,9.01,8.99
-28458,37,163,37163,984,452,96412005,96259294,6444,2982,288054170,286347927,63431,27234,2451671196,2446865522,15.27,15.16,33.47,33.62,1.55,1.66,3.93,3.93
-28460,37,133,37133,7652,6112,111838481,90360164,7652,6112,111838481,90360164,177772,68226,2346303610,1975496912,100,100,100,100,4.3,8.96,4.77,4.57
-28461,37,019,37019,16126,10667,238969085,196143516,16126,10667,238969085,196143516,107431,77482,2719030923,2193650178,100,100,100,100,15.01,13.77,8.79,8.94
-28462,37,019,37019,11680,11906,248246145,241882180,11680,11906,248246145,241882180,107431,77482,2719030923,2193650178,100,100,100,100,10.87,15.37,9.13,11.03
-28463,37,047,37047,9799,3733,306572487,304957807,9799,3733,306572487,304957807,58098,26042,2469916377,2427578082,100,100,100,100,16.87,14.33,12.41,12.56
-28464,37,061,37061,2457,1035,59427267,59081020,2457,1035,59427267,59081020,58505,25728,2128126685,2113998631,100,100,100,100,4.2,4.02,2.79,2.79
-28465,37,019,37019,6531,8714,36228040,27410876,6531,8714,36228040,27410876,107431,77482,2719030923,2193650178,100,100,100,100,6.08,11.25,1.33,1.25
-28466,37,061,37061,9411,4319,325116662,323026606,10103,4662,492963084,490873028,58505,25728,2128126685,2113998631,93.15,92.64,65.95,65.81,16.09,16.79,15.28,15.28
-28466,37,141,37141,692,343,167846422,167846422,10103,4662,492963084,490873028,52217,26724,2415904314,2252758539,6.85,7.36,34.05,34.19,1.33,1.28,6.95,7.45
-28467,37,019,37019,8703,6519,47957045,46605323,8703,6519,47957045,46605323,107431,77482,2719030923,2193650178,100,100,100,100,8.1,8.41,1.76,2.12
-28468,37,019,37019,4375,5741,50224448,45170839,4375,5741,50224448,45170839,107431,77482,2719030923,2193650178,100,100,100,100,4.07,7.41,1.85,2.06
-28469,37,019,37019,5839,7411,61005973,56826245,5839,7411,61005973,56826245,107431,77482,2719030923,2193650178,100,100,100,100,5.44,9.56,2.24,2.59
-28470,37,019,37019,10644,6182,127417950,122752678,10644,6182,127417950,122752678,107431,77482,2719030923,2193650178,100,100,100,100,9.91,7.98,4.69,5.6
-28472,37,047,37047,19658,8771,473702894,472005762,19658,8771,473702894,472005762,58098,26042,2469916377,2427578082,100,100,100,100,33.84,33.68,19.18,19.44
-28478,37,061,37061,7,4,1808014,1808014,4588,2129,314053100,313617217,58505,25728,2128126685,2113998631,0.15,0.19,0.58,0.58,0.01,0.02,0.08,0.09
-28478,37,141,37141,4319,1991,288428719,287992836,4588,2129,314053100,313617217,52217,26724,2415904314,2252758539,94.14,93.52,91.84,91.83,8.27,7.45,11.94,12.78
-28478,37,163,37163,262,134,23816367,23816367,4588,2129,314053100,313617217,63431,27234,2451671196,2446865522,5.71,6.29,7.58,7.59,0.41,0.49,0.97,0.97
-28479,37,019,37019,4903,2178,271876313,236533968,4903,2178,271876313,236533968,107431,77482,2719030923,2193650178,100,100,100,100,4.56,2.81,10,10.78
-28480,37,129,37129,2473,2750,9970509,7580267,2473,2750,9970509,7580267,202667,101436,850042714,496071702,100,100,100,100,1.22,2.71,1.17,1.53
-28501,37,103,37103,644,302,61634140,61584431,20389,10132,276887943,274891547,10153,4838,1225622434,1219128858,3.16,2.98,22.26,22.4,6.34,6.24,5.03,5.05
-28501,37,107,37107,19745,9830,215253803,213307116,20389,10132,276887943,274891547,59495,27437,1043295528,1037527054,96.84,97.02,77.74,77.6,33.19,35.83,20.63,20.56
-28504,37,103,37103,46,19,6289072,6256672,21642,9597,322549911,320884329,10153,4838,1225622434,1219128858,0.21,0.2,1.95,1.95,0.45,0.39,0.51,0.51
-28504,37,107,37107,21596,9578,316260839,314627657,21642,9597,322549911,320884329,59495,27437,1043295528,1037527054,99.79,99.8,98.05,98.05,36.3,34.91,30.31,30.32
-28508,37,061,37061,2737,1015,92067509,91455197,2737,1015,92067509,91455197,58505,25728,2128126685,2113998631,100,100,100,100,4.68,3.95,4.33,4.33
-28510,37,137,37137,1502,1067,87061015,53669945,1502,1067,87061015,53669945,13144,7534,1467875815,871627408,100,100,100,100,11.43,14.16,5.93,6.16
-28511,37,031,37031,694,522,42739522,21174431,694,522,42739522,21174431,66469,48179,3472203550,1311185243,100,100,100,100,1.04,1.08,1.23,1.61
-28512,37,031,37031,2896,7063,47033994,14925726,2896,7063,47033994,14925726,66469,48179,3472203550,1311185243,100,100,100,100,4.36,14.66,1.35,1.14
-28513,37,079,37079,524,225,29293854,29293854,10346,4645,235130235,235130235,21362,8213,689971258,688749236,5.06,4.84,12.46,12.46,2.45,2.74,4.25,4.25
-28513,37,147,37147,9822,4420,205836381,205836381,10346,4645,235130235,235130235,168148,74990,1695988287,1688606138,94.94,95.16,87.54,87.54,5.84,5.89,12.14,12.19
-28515,37,137,37137,2915,1263,159575947,142046279,2915,1263,159575947,142046279,13144,7534,1467875815,871627408,100,100,100,100,22.18,16.76,10.87,16.3
-28516,37,031,37031,11431,6796,811126755,545259559,11431,6796,811126755,545259559,66469,48179,3472203550,1311185243,100,100,100,100,17.2,14.11,23.36,41.59
-28518,37,061,37061,6660,3037,220760803,220176007,7909,3523,247450213,246865417,58505,25728,2128126685,2113998631,84.21,86.2,89.21,89.19,11.38,11.8,10.37,10.42
-28518,37,133,37133,1249,486,26689410,26689410,7909,3523,247450213,246865417,177772,68226,2346303610,1975496912,15.79,13.8,10.79,10.81,0.7,0.71,1.14,1.35
-28519,37,049,37049,404,215,1997177,794576,404,215,1997177,794576,103505,45002,2005068184,1836191667,100,100,100,100,0.39,0.48,0.1,0.04
-28520,37,031,37031,327,241,188386048,56986579,327,241,188386048,56986579,66469,48179,3472203550,1311185243,100,100,100,100,0.49,0.5,5.43,4.35
-28521,37,061,37061,2147,997,103430649,103179327,2287,1057,108884268,108602310,58505,25728,2128126685,2113998631,93.88,94.32,94.99,95.01,3.67,3.88,4.86,4.88
-28521,37,133,37133,140,60,5453619,5422983,2287,1057,108884268,108602310,177772,68226,2346303610,1975496912,6.12,5.68,5.01,4.99,0.08,0.09,0.23,0.27
-28523,37,049,37049,2456,1119,145456191,145167731,2456,1119,145456191,145167731,103505,45002,2005068184,1836191667,100,100,100,100,2.37,2.49,7.25,7.91
-28524,37,031,37031,426,267,39042799,14411177,426,267,39042799,14411177,66469,48179,3472203550,1311185243,100,100,100,100,0.64,0.55,1.12,1.1
-28525,37,061,37061,191,81,5093068,5091828,3132,1333,115480058,115053264,58505,25728,2128126685,2113998631,6.1,6.08,4.41,4.43,0.33,0.31,0.24,0.24
-28525,37,107,37107,2941,1252,110386990,109961436,3132,1333,115480058,115053264,59495,27437,1043295528,1037527054,93.9,93.92,95.59,95.57,4.94,4.56,10.58,10.6
-28526,37,049,37049,1959,949,169561862,168986949,2489,1205,222018826,221441791,103505,45002,2005068184,1836191667,78.71,78.76,76.37,76.31,1.89,2.11,8.46,9.2
-28526,37,103,37103,501,243,50176864,50174742,2489,1205,222018826,221441791,10153,4838,1225622434,1219128858,20.13,20.17,22.6,22.66,4.93,5.02,4.09,4.12
-28526,37,107,37107,29,13,2280100,2280100,2489,1205,222018826,221441791,59495,27437,1043295528,1037527054,1.17,1.08,1.03,1.03,0.05,0.05,0.22,0.22
-28527,37,049,37049,1140,499,144370400,143914334,1140,499,144370400,143914334,103505,45002,2005068184,1836191667,100,100,100,100,1.1,1.11,7.2,7.84
-28528,37,031,37031,644,395,9826948,7507805,644,395,9826948,7507805,66469,48179,3472203550,1311185243,100,100,100,100,0.97,0.82,0.28,0.57
-28529,37,137,37137,2193,1086,139772431,109508992,2193,1086,139772431,109508992,13144,7534,1467875815,871627408,100,100,100,100,16.68,14.41,9.52,12.56
-28530,37,049,37049,634,252,36476817,36230474,7332,3164,184592805,183798361,103505,45002,2005068184,1836191667,8.65,7.96,19.76,19.71,0.61,0.56,1.82,1.97
-28530,37,079,37079,272,140,16828271,16828271,7332,3164,184592805,183798361,21362,8213,689971258,688749236,3.71,4.42,9.12,9.16,1.27,1.7,2.44,2.44
-28530,37,107,37107,2590,1140,61518000,61131938,7332,3164,184592805,183798361,59495,27437,1043295528,1037527054,35.32,36.03,33.33,33.26,4.35,4.15,5.9,5.89
-28530,37,147,37147,3836,1632,69769717,69607678,7332,3164,184592805,183798361,168148,74990,1695988287,1688606138,52.32,51.58,37.8,37.87,2.28,2.18,4.11,4.12
-28531,37,031,37031,1207,1177,9966639,5804739,1207,1177,9966639,5804739,66469,48179,3472203550,1311185243,100,100,100,100,1.82,2.44,0.29,0.44
-28532,37,049,37049,23320,9350,525389798,431693466,23320,9350,525389798,431693466,103505,45002,2005068184,1836191667,100,100,100,100,22.53,20.78,26.2,23.51
-28533,37,049,37049,2952,0,1150938,1150938,2952,0,1150938,1150938,103505,45002,2005068184,1836191667,100,0,100,100,2.85,0,0.06,0.06
-28537,37,137,37137,137,147,99691587,65544780,137,147,99691587,65544780,13144,7534,1467875815,871627408,100,100,100,100,1.04,1.95,6.79,7.52
-28538,37,079,37079,1918,872,61574955,61574955,2175,991,75091470,75065502,21362,8213,689971258,688749236,88.18,87.99,82,82.03,8.98,10.62,8.92,8.94
-28538,37,107,37107,257,119,13516515,13490547,2175,991,75091470,75065502,59495,27437,1043295528,1037527054,11.82,12.01,18,17.97,0.43,0.43,1.3,1.3
-28539,37,133,37133,15469,6303,138882180,126805727,15469,6303,138882180,126805727,177772,68226,2346303610,1975496912,100,100,100,100,8.7,9.24,5.92,6.42
-28540,37,133,37133,49252,19803,268725436,267282866,49252,19803,268725436,267282866,177772,68226,2346303610,1975496912,100,100,100,100,27.71,29.03,11.45,13.53
-28543,37,133,37133,4699,1430,6643488,5339136,4699,1430,6643488,5339136,177772,68226,2346303610,1975496912,100,100,100,100,2.64,2.1,0.28,0.27
-28544,37,133,37133,5368,2273,29448470,29403011,5368,2273,29448470,29403011,177772,68226,2346303610,1975496912,100,100,100,100,3.02,3.33,1.26,1.49
-28546,37,133,37133,42696,16963,145381021,145098242,42696,16963,145381021,145098242,177772,68226,2346303610,1975496912,100,100,100,100,24.02,24.86,6.2,7.34
-28547,37,133,37133,21884,1437,95926218,67399409,21884,1437,95926218,67399409,177772,68226,2346303610,1975496912,100,100,100,100,12.31,2.11,4.09,3.41
-28551,37,079,37079,1259,486,48525594,47952650,14093,6144,344197053,342206638,21362,8213,689971258,688749236,8.93,7.91,14.1,14.01,5.89,5.92,7.03,6.96
-28551,37,107,37107,8821,3984,202791645,201946180,14093,6144,344197053,342206638,59495,27437,1043295528,1037527054,62.59,64.84,58.92,59.01,14.83,14.52,19.44,19.46
-28551,37,191,37191,4013,1674,92879814,92307808,14093,6144,344197053,342206638,122623,52949,1442241153,1432488557,28.48,27.25,26.98,26.97,3.27,3.16,6.44,6.44
-28552,37,137,37137,254,191,92688595,42409043,254,191,92688595,42409043,13144,7534,1467875815,871627408,100,100,100,100,1.93,2.54,6.31,4.87
-28553,37,031,37031,454,337,8356408,3183544,454,337,8356408,3183544,66469,48179,3472203550,1311185243,100,100,100,100,0.68,0.7,0.24,0.24
-28554,37,079,37079,243,106,722658,722658,243,106,722658,722658,21362,8213,689971258,688749236,100,100,100,100,1.14,1.29,0.1,0.1
-28555,37,103,37103,2038,989,216651181,214787969,5175,2259,398013418,395823640,10153,4838,1225622434,1219128858,39.38,43.78,54.43,54.26,20.07,20.44,17.68,17.62
-28555,37,133,37133,3137,1270,181362237,181035671,5175,2259,398013418,395823640,177772,68226,2346303610,1975496912,60.62,56.22,45.57,45.74,1.76,1.86,7.73,9.16
-28556,37,137,37137,963,681,191629463,117197002,963,681,191629463,117197002,13144,7534,1467875815,871627408,100,100,100,100,7.33,9.04,13.05,13.45
-28557,37,031,37031,14429,8037,60316407,36782091,14429,8037,60316407,36782091,66469,48179,3472203550,1311185243,100,100,100,100,21.71,16.68,1.74,2.81
-28560,37,049,37049,26980,12776,281200772,221506546,28921,13616,369487843,303893492,103505,45002,2005068184,1836191667,93.29,93.83,76.11,72.89,26.07,28.39,14.02,12.06
-28560,37,137,37137,1941,840,88287071,82386946,28921,13616,369487843,303893492,13144,7534,1467875815,871627408,6.71,6.17,23.89,27.11,14.77,11.15,6.01,9.45
-28562,37,049,37049,35791,16746,381745461,372848582,36176,16926,410429628,400972848,103505,45002,2005068184,1836191667,98.94,98.94,93.01,92.99,34.58,37.21,19.04,20.31
-28562,37,103,37103,385,180,28684167,28124266,36176,16926,410429628,400972848,10153,4838,1225622434,1219128858,1.06,1.06,6.99,7.01,3.79,3.72,2.34,2.31
-28570,37,031,37031,21432,9900,346308638,323343546,21432,9900,346308638,323343546,66469,48179,3472203550,1311185243,100,100,100,100,32.24,20.55,9.97,24.66
-28571,37,137,37137,2585,1899,194423092,133775154,2585,1899,194423092,133775154,13144,7534,1467875815,871627408,100,100,100,100,19.67,25.21,13.25,15.35
-28572,37,061,37061,3657,1656,153477335,152324395,6531,2896,275286187,274089208,58505,25728,2128126685,2113998631,55.99,57.18,55.75,55.57,6.25,6.44,7.21,7.21
-28572,37,103,37103,381,158,47909616,47865577,6531,2896,275286187,274089208,10153,4838,1225622434,1219128858,5.83,5.46,17.4,17.46,3.75,3.27,3.91,3.93
-28572,37,107,37107,2477,1073,72972108,72972108,6531,2896,275286187,274089208,59495,27437,1043295528,1037527054,37.93,37.05,26.51,26.62,4.16,3.91,6.99,7.03
-28572,37,133,37133,16,9,927128,927128,6531,2896,275286187,274089208,177772,68226,2346303610,1975496912,0.24,0.31,0.34,0.34,0.01,0.01,0.04,0.05
-28573,37,049,37049,165,56,557602,557602,2176,1068,195920663,193611155,103505,45002,2005068184,1836191667,7.58,5.24,0.28,0.29,0.16,0.12,0.03,0.03
-28573,37,103,37103,2011,1012,195363061,193053553,2176,1068,195920663,193611155,10153,4838,1225622434,1219128858,92.42,94.76,99.72,99.71,19.81,20.92,15.94,15.84
-28574,37,061,37061,134,64,13854782,13792095,15102,6007,332202125,331803082,58505,25728,2128126685,2113998631,0.89,1.07,4.17,4.16,0.23,0.25,0.65,0.65
-28574,37,103,37103,205,104,21861114,21854208,15102,6007,332202125,331803082,10153,4838,1225622434,1219128858,1.36,1.73,6.58,6.59,2.02,2.15,1.78,1.79
-28574,37,133,37133,14763,5839,296486229,296156779,15102,6007,332202125,331803082,177772,68226,2346303610,1975496912,97.76,97.2,89.25,89.26,8.3,8.56,12.64,14.99
-28575,37,031,37031,316,1730,13895383,1557491,316,1730,13895383,1557491,66469,48179,3472203550,1311185243,100,100,100,100,0.48,3.59,0.4,0.12
-28577,37,031,37031,522,308,21182366,6849785,522,308,21182366,6849785,66469,48179,3472203550,1311185243,100,100,100,100,0.79,0.64,0.61,0.52
-28578,37,061,37061,1151,335,23450443,23321451,6363,2250,166678065,165364788,58505,25728,2128126685,2113998631,18.09,14.89,14.07,14.1,1.97,1.3,1.1,1.1
-28578,37,107,37107,1007,433,47126677,46621121,6363,2250,166678065,165364788,59495,27437,1043295528,1037527054,15.83,19.24,28.27,28.19,1.69,1.58,4.52,4.49
-28578,37,191,37191,4205,1482,96100945,95422216,6363,2250,166678065,165364788,122623,52949,1442241153,1432488557,66.09,65.87,57.66,57.7,3.43,2.8,6.66,6.66
-28579,37,031,37031,622,326,17942819,9908690,622,326,17942819,9908690,66469,48179,3472203550,1311185243,100,100,100,100,0.94,0.68,0.52,0.76
-28580,37,079,37079,12625,4514,293919450,293768040,12657,4529,295108301,294956891,21362,8213,689971258,688749236,99.75,99.67,99.6,99.6,59.1,54.96,42.6,42.65
-28580,37,107,37107,32,15,1188851,1188851,12657,4529,295108301,294956891,59495,27437,1043295528,1037527054,0.25,0.33,0.4,0.4,0.05,0.05,0.11,0.11
-28581,37,031,37031,214,150,38847367,22737871,214,150,38847367,22737871,66469,48179,3472203550,1311185243,100,100,100,100,0.32,0.31,1.12,1.73
-28582,37,031,37031,734,367,18128838,15227361,1588,756,48528394,42063368,66469,48179,3472203550,1311185243,46.22,48.54,37.36,36.2,1.1,0.76,0.52,1.16
-28582,37,133,37133,854,389,30399556,26836007,1588,756,48528394,42063368,177772,68226,2346303610,1975496912,53.78,51.46,62.64,63.8,0.48,0.57,1.3,1.36
-28583,37,137,37137,281,143,5214495,4420021,281,143,5214495,4420021,13144,7534,1467875815,871627408,100,100,100,100,2.14,1.9,0.36,0.51
-28584,37,031,37031,6286,3729,135102613,121493788,11396,6294,178226471,149007656,66469,48179,3472203550,1311185243,55.16,59.25,75.8,81.54,9.46,7.74,3.89,9.27
-28584,37,133,37133,5110,2565,43123858,27513868,11396,6294,178226471,149007656,177772,68226,2346303610,1975496912,44.84,40.75,24.2,18.46,2.87,3.76,1.84,1.39
-28585,37,103,37103,3942,1831,461680796,460056487,3942,1831,461680796,460056487,10153,4838,1225622434,1219128858,100,100,100,100,38.83,37.85,37.67,37.74
-28586,37,013,37013,377,172,13064793,13064793,8218,3281,342768437,338947740,47759,24688,2481766289,2142417945,4.59,5.24,3.81,3.85,0.79,0.7,0.53,0.61
-28586,37,049,37049,7704,3040,317161166,313340469,8218,3281,342768437,338947740,103505,45002,2005068184,1836191667,93.75,92.65,92.53,92.45,7.44,6.76,15.82,17.06
-28586,37,147,37147,137,69,12542478,12542478,8218,3281,342768437,338947740,168148,74990,1695988287,1688606138,1.67,2.1,3.66,3.7,0.08,0.09,0.74,0.74
-28587,37,137,37137,369,216,10799917,8851246,369,216,10799917,8851246,13144,7534,1467875815,871627408,100,100,100,100,2.81,2.87,0.74,1.02
-28589,37,031,37031,180,99,30580695,28123030,180,99,30580695,28123030,66469,48179,3472203550,1311185243,100,100,100,100,0.27,0.21,0.88,2.14
-28590,37,147,37147,23407,9703,108132550,108105523,23407,9703,108132550,108105523,168148,74990,1695988287,1688606138,100,100,100,100,13.92,12.94,6.38,6.4
-28594,37,031,37031,3655,6735,53022528,14845458,3655,6735,53022528,14845458,66469,48179,3472203550,1311185243,100,100,100,100,5.5,13.98,1.53,1.13
-28601,37,003,37003,2695,1235,16956122,15690247,50026,22696,127653662,119275835,37198,16189,682851437,673381461,5.39,5.44,13.28,13.15,7.25,7.63,2.48,2.33
-28601,37,023,37023,3810,1678,19095877,17933864,50026,22696,127653662,119275835,90912,40879,1334039248,1313381247,7.62,7.39,14.96,15.04,4.19,4.1,1.43,1.37
-28601,37,027,37027,1933,859,9614423,8082486,50026,22696,127653662,119275835,83029,37659,1228465447,1221349765,3.86,3.78,7.53,6.78,2.33,2.28,0.78,0.66
-28601,37,035,37035,41588,18924,81987240,77569238,50026,22696,127653662,119275835,154358,67886,1070740822,1032683744,83.13,83.38,64.23,65.03,26.94,27.88,7.66,7.51
-28602,37,023,37023,3954,1704,36393058,36328190,28981,12677,181610013,180485428,90912,40879,1334039248,1313381247,13.64,13.44,20.04,20.13,4.35,4.17,2.73,2.77
-28602,37,035,37035,25027,10973,145216955,144157238,28981,12677,181610013,180485428,154358,67886,1070740822,1032683744,86.36,86.56,79.96,79.87,16.21,16.16,13.56,13.96
-28604,37,011,37011,2986,4237,71693223,71635432,6249,9051,170383703,170191767,17797,13890,640319183,639951854,47.78,46.81,42.08,42.09,16.78,30.5,11.2,11.19
-28604,37,189,37189,3263,4814,98690480,98556335,6249,9051,170383703,170191767,51079,32137,811837935,809515805,52.22,53.19,57.92,57.91,6.39,14.98,12.16,12.17
-28605,37,011,37011,45,44,4003233,4003233,3412,4239,75497297,74956882,17797,13890,640319183,639951854,1.32,1.04,5.3,5.34,0.25,0.32,0.63,0.63
-28605,37,027,37027,130,192,15167513,15167513,3412,4239,75497297,74956882,83029,37659,1228465447,1221349765,3.81,4.53,20.09,20.23,0.16,0.51,1.23,1.24
-28605,37,189,37189,3237,4003,56326551,55786136,3412,4239,75497297,74956882,51079,32137,811837935,809515805,94.87,94.43,74.61,74.42,6.34,12.46,6.94,6.89
-28606,37,027,37027,338,161,15254138,15254138,2158,1010,113361058,112331936,83029,37659,1228465447,1221349765,15.66,15.94,13.46,13.58,0.41,0.43,1.24,1.25
-28606,37,193,37193,1820,849,98106920,97077798,2158,1010,113361058,112331936,69340,33065,1960414633,1953571382,84.34,84.06,86.54,86.42,2.62,2.57,5,4.97
-28607,37,189,37189,33059,16428,257195627,256402734,33059,16428,257195627,256402734,51079,32137,811837935,809515805,100,100,100,100,64.72,51.12,31.68,31.67
-28609,37,035,37035,5864,2659,120480864,115276142,5864,2659,120480864,115276142,154358,67886,1070740822,1032683744,100,100,100,100,3.8,3.92,11.25,11.16
-28610,37,035,37035,9913,4154,105855161,104308867,9913,4154,105855161,104308867,154358,67886,1070740822,1032683744,100,100,100,100,6.42,6.12,9.89,10.1
-28611,37,011,37011,63,96,36405093,36405093,885,722,192703647,192703647,17797,13890,640319183,639951854,7.12,13.3,18.89,18.89,0.35,0.69,5.69,5.69
-28611,37,027,37027,822,626,156298554,156298554,885,722,192703647,192703647,83029,37659,1228465447,1221349765,92.88,86.7,81.11,81.11,0.99,1.66,12.72,12.8
-28612,37,023,37023,12337,5357,215821449,213769917,12397,5385,218673495,216616026,90912,40879,1334039248,1313381247,99.52,99.48,98.7,98.69,13.57,13.1,16.18,16.28
-28612,37,035,37035,60,28,2852046,2846109,12397,5385,218673495,216616026,154358,67886,1070740822,1032683744,0.48,0.52,1.3,1.31,0.04,0.04,0.27,0.28
-28613,37,035,37035,22759,9570,112423774,110627317,22759,9570,112423774,110627317,154358,67886,1070740822,1032683744,100,100,100,100,14.74,14.1,10.5,10.71
-28615,37,009,37009,1876,1236,173037603,172447339,1876,1236,173037603,172447339,27281,17342,1111801093,1103683753,100,100,100,100,6.88,7.13,15.56,15.62
-28616,37,011,37011,493,239,6993587,6993587,493,239,6993587,6993587,17797,13890,640319183,639951854,100,100,100,100,2.77,1.72,1.09,1.09
-28617,37,009,37009,2261,1400,90377591,89363726,2261,1400,90377591,89363726,27281,17342,1111801093,1103683753,100,100,100,100,8.29,8.07,8.13,8.1
-28618,37,189,37189,2313,1431,96849319,96819627,2352,1449,102463387,102433695,51079,32137,811837935,809515805,98.34,98.76,94.52,94.52,4.53,4.45,11.93,11.96
-28618,37,193,37193,39,18,5614068,5614068,2352,1449,102463387,102433695,69340,33065,1960414633,1953571382,1.66,1.24,5.48,5.48,0.06,0.05,0.29,0.29
-28619,37,023,37023,1520,715,3090899,3090899,1520,715,3090899,3090899,90912,40879,1334039248,1313381247,100,100,100,100,1.67,1.75,0.23,0.24
-28621,37,171,37171,7166,3323,122844269,121478108,10472,4858,183027004,181590160,73673,33667,1389020036,1378304182,68.43,68.4,67.12,66.9,9.73,9.87,8.84,8.81
-28621,37,193,37193,3306,1535,60182735,60112052,10472,4858,183027004,181590160,69340,33065,1960414633,1953571382,31.57,31.6,32.88,33.1,4.77,4.64,3.07,3.08
-28622,37,011,37011,2527,1500,80286175,80286175,2527,1500,80286175,80286175,17797,13890,640319183,639951854,100,100,100,100,14.2,10.8,12.54,12.55
-28623,37,005,37005,1653,1098,74504900,74040514,1653,1098,74504900,74040514,11155,8094,612656036,608801116,100,100,100,100,14.82,13.57,12.16,12.16
-28624,37,193,37193,1639,987,161583584,161550434,1639,987,161583584,161550434,69340,33065,1960414633,1953571382,100,100,100,100,2.36,2.99,8.24,8.27
-28625,37,003,37003,82,43,3387397,3379854,36189,15547,510243818,506953550,37198,16189,682851437,673381461,0.23,0.28,0.66,0.67,0.22,0.27,0.5,0.5
-28625,37,097,37097,36107,15504,506856421,503573696,36189,15547,510243818,506953550,159437,69013,1545970551,1486221270,99.77,99.72,99.34,99.33,22.65,22.47,32.79,33.88
-28626,37,009,37009,2714,1866,84128189,83448106,2714,1866,84128189,83448106,27281,17342,1111801093,1103683753,100,100,100,100,9.95,10.76,7.57,7.56
-28627,37,005,37005,1152,879,52091324,51940053,1152,879,52091324,51940053,11155,8094,612656036,608801116,100,100,100,100,10.33,10.86,8.5,8.53
-28628,37,023,37023,479,222,1334438,1334438,479,222,1334438,1334438,90912,40879,1334039248,1313381247,100,100,100,100,0.53,0.54,0.1,0.1
-28629,37,009,37009,75,51,6178470,6167955,75,51,6178470,6167955,27281,17342,1111801093,1103683753,100,100,100,100,0.27,0.29,0.56,0.56
-28630,37,003,37003,185,80,933260,928114,20041,8686,160749440,155404170,37198,16189,682851437,673381461,0.92,0.92,0.58,0.6,0.5,0.49,0.14,0.14
-28630,37,027,37027,19856,8606,159816180,154476056,20041,8686,160749440,155404170,83029,37659,1228465447,1221349765,99.08,99.08,99.42,99.4,23.91,22.85,13.01,12.65
-28631,37,005,37005,30,122,5718523,5396799,637,640,65192557,64606309,11155,8094,612656036,608801116,4.71,19.06,8.77,8.35,0.27,1.51,0.93,0.89
-28631,37,009,37009,607,518,59474034,59209510,637,640,65192557,64606309,27281,17342,1111801093,1103683753,95.29,80.94,91.23,91.65,2.22,2.99,5.35,5.36
-28634,37,059,37059,421,189,16796263,16656551,5225,2256,164251719,163160100,41240,18238,691756076,684029311,8.06,8.38,10.23,10.21,1.02,1.04,2.43,2.44
-28634,37,097,37097,4804,2067,147455456,146503549,5225,2256,164251719,163160100,159437,69013,1545970551,1486221270,91.94,91.62,89.77,89.79,3.01,3,9.54,9.86
-28635,37,193,37193,3901,1737,109115604,109115604,3901,1737,109115604,109115604,69340,33065,1960414633,1953571382,100,100,100,100,5.63,5.25,5.57,5.59
-28636,37,003,37003,5293,2276,144679553,144333350,5522,2368,154515574,154127455,37198,16189,682851437,673381461,95.85,96.11,93.63,93.65,14.23,14.06,21.19,21.43
-28636,37,097,37097,229,92,9836021,9794105,5522,2368,154515574,154127455,159437,69013,1545970551,1486221270,4.15,3.89,6.37,6.35,0.14,0.13,0.64,0.66
-28637,37,023,37023,1746,765,7441189,7441189,1746,765,7441189,7441189,90912,40879,1334039248,1313381247,100,100,100,100,1.92,1.87,0.56,0.57
-28638,37,027,37027,12302,5384,52477955,52472436,12302,5384,52477955,52472436,83029,37659,1228465447,1221349765,100,100,100,100,14.82,14.3,4.27,4.3
-28640,37,009,37009,4719,2722,101883036,100618043,4719,2722,101883036,100618043,27281,17342,1111801093,1103683753,100,100,100,100,17.3,15.7,9.16,9.12
-28642,37,193,37193,296,114,9586450,9585555,5745,2718,95097040,94425199,69340,33065,1960414633,1953571382,5.15,4.19,10.08,10.15,0.43,0.34,0.49,0.49
-28642,37,197,37197,5449,2604,85510590,84839644,5745,2718,95097040,94425199,38406,17341,874135787,867203563,94.85,95.81,89.92,89.85,14.19,15.02,9.78,9.78
-28643,37,009,37009,3521,2168,181200042,180304332,3521,2168,181200042,180304332,27281,17342,1111801093,1103683753,100,100,100,100,12.91,12.5,16.3,16.34
-28644,37,005,37005,785,644,97334674,97318494,1494,1209,177965193,177195022,11155,8094,612656036,608801116,52.54,53.27,54.69,54.92,7.04,7.96,15.89,15.99
-28644,37,009,37009,706,562,79592075,78838084,1494,1209,177965193,177195022,27281,17342,1111801093,1103683753,47.26,46.48,44.72,44.49,2.59,3.24,7.16,7.14
-28644,37,193,37193,3,3,1038444,1038444,1494,1209,177965193,177195022,69340,33065,1960414633,1953571382,0.2,0.25,0.58,0.59,0,0.01,0.05,0.05
-28645,37,023,37023,301,126,9312693,8228853,47703,21948,855110420,853994288,90912,40879,1334039248,1313381247,0.63,0.57,1.09,0.96,0.33,0.31,0.7,0.63
-28645,37,027,37027,47317,21689,818759208,818730965,47703,21948,855110420,853994288,83029,37659,1228465447,1221349765,99.19,98.82,95.75,95.87,56.99,57.59,66.65,67.03
-28645,37,189,37189,85,133,27038519,27034470,47703,21948,855110420,853994288,51079,32137,811837935,809515805,0.18,0.61,3.16,3.17,0.17,0.41,3.33,3.34
-28646,37,011,37011,342,1201,56106919,55964717,342,1201,56106919,55964717,17797,13890,640319183,639951854,100,100,100,100,1.92,8.65,8.76,8.75
-28647,37,011,37011,89,91,15651541,15651541,89,91,15651541,15651541,17797,13890,640319183,639951854,100,100,100,100,0.5,0.66,2.44,2.45
-28649,37,193,37193,993,516,90576355,90574524,993,516,90576355,90574524,69340,33065,1960414633,1953571382,100,100,100,100,1.43,1.56,4.62,4.64
-28650,37,035,37035,9485,4013,95654290,94992423,11883,4982,116090758,115401257,154358,67886,1070740822,1032683744,79.82,80.55,82.4,82.31,6.14,5.91,8.93,9.2
-28650,37,109,37109,2398,969,20436468,20408834,11883,4982,116090758,115401257,78265,33641,795232690,771655597,20.18,19.45,17.6,17.69,3.06,2.88,2.57,2.64
-28651,37,193,37193,7132,3567,227689796,227647989,7132,3567,227689796,227647989,69340,33065,1960414633,1953571382,100,100,100,100,10.29,10.79,11.61,11.65
-28652,37,011,37011,46,32,208819,208819,46,32,208819,208819,17797,13890,640319183,639951854,100,100,100,100,0.26,0.23,0.03,0.03
-28654,37,003,37003,194,85,15231413,15208958,3495,1704,162788900,162746355,37198,16189,682851437,673381461,5.55,4.99,9.36,9.35,0.52,0.53,2.23,2.26
-28654,37,193,37193,3301,1619,147557487,147537397,3495,1704,162788900,162746355,69340,33065,1960414633,1953571382,94.45,95.01,90.64,90.65,4.76,4.9,7.53,7.55
-28655,37,023,37023,54953,24321,829226152,822777946,54996,24339,830196976,823748770,90912,40879,1334039248,1313381247,99.92,99.93,99.88,99.88,60.45,59.5,62.16,62.65
-28655,37,111,37111,43,18,970824,970824,54996,24339,830196976,823748770,44996,20808,1155125933,1141169175,0.08,0.07,0.12,0.12,0.1,0.09,0.08,0.09
-28657,37,011,37011,8791,6092,347528510,347361174,9488,6748,413957412,413790076,17797,13890,640319183,639951854,92.65,90.28,83.95,83.95,49.4,43.86,54.27,54.28
-28657,37,023,37023,678,615,63071151,63071151,9488,6748,413957412,413790076,90912,40879,1334039248,1313381247,7.15,9.11,15.24,15.24,0.75,1.5,4.73,4.8
-28657,37,111,37111,19,41,3357751,3357751,9488,6748,413957412,413790076,44996,20808,1155125933,1141169175,0.2,0.61,0.81,0.81,0.04,0.2,0.29,0.29
-28658,37,035,37035,27022,11321,192039474,190776710,27022,11321,192039474,190776710,154358,67886,1070740822,1032683744,100,100,100,100,17.51,16.68,17.94,18.47
-28659,37,193,37193,21134,9765,264204246,264192527,21134,9765,264204246,264192527,69340,33065,1960414633,1953571382,100,100,100,100,30.48,29.53,13.48,13.52
-28660,37,097,37097,2249,944,83406890,82790920,2249,944,83406890,82790920,159437,69013,1545970551,1486221270,100,100,100,100,1.41,1.37,5.4,5.57
-28662,37,011,37011,140,86,4630794,4630794,140,86,4630794,4630794,17797,13890,640319183,639951854,100,100,100,100,0.79,0.62,0.72,0.72
-28663,37,005,37005,614,591,45932528,45266992,614,591,45932528,45266992,11155,8094,612656036,608801116,100,100,100,100,5.5,7.3,7.5,7.44
-28665,37,193,37193,2571,1431,163579216,163579216,2571,1431,163579216,163579216,69340,33065,1960414633,1953571382,100,100,100,100,3.71,4.33,8.34,8.37
-28666,37,023,37023,368,195,1205998,1205998,368,195,1205998,1205998,90912,40879,1334039248,1313381247,100,100,100,100,0.4,0.48,0.09,0.09
-28667,37,023,37023,228,108,778410,695319,559,250,1855886,1562936,90912,40879,1334039248,1313381247,40.79,43.2,41.94,44.49,0.25,0.26,0.06,0.05
-28667,37,027,37027,331,142,1077476,867617,559,250,1855886,1562936,83029,37659,1228465447,1221349765,59.21,56.8,58.06,55.51,0.4,0.38,0.09,0.07
-28668,37,005,37005,300,752,34099032,33855184,300,752,34099032,33855184,11155,8094,612656036,608801116,100,100,100,100,2.69,9.29,5.57,5.56
-28669,37,193,37193,3146,1416,120162760,119911352,3146,1416,120162760,119911352,69340,33065,1960414633,1953571382,100,100,100,100,4.54,4.28,6.13,6.14
-28670,37,193,37193,2719,1260,96930672,96255619,2719,1260,96930672,96255619,69340,33065,1960414633,1953571382,100,100,100,100,3.92,3.81,4.94,4.93
-28671,37,023,37023,597,224,1920038,1920038,597,224,1920038,1920038,90912,40879,1334039248,1313381247,100,100,100,100,0.66,0.55,0.14,0.15
-28672,37,009,37009,35,29,5480637,5055767,35,29,5480637,5055767,27281,17342,1111801093,1103683753,100,100,100,100,0.13,0.17,0.49,0.46
-28673,37,035,37035,5820,3059,77543535,65325950,5919,3125,78021213,65803628,154358,67886,1070740822,1032683744,98.33,97.89,99.39,99.27,3.77,4.51,7.24,6.33
-28673,37,109,37109,99,66,477678,477678,5919,3125,78021213,65803628,78265,33641,795232690,771655597,1.67,2.11,0.61,0.73,0.13,0.2,0.06,0.06
-28675,37,005,37005,6621,4008,302975055,300983080,6621,4008,302975055,300983080,11155,8094,612656036,608801116,100,100,100,100,59.35,49.52,49.45,49.44
-28676,37,171,37171,2509,1187,57091697,56732836,3483,1644,74405463,74046602,73673,33667,1389020036,1378304182,72.04,72.2,76.73,76.62,3.41,3.53,4.11,4.12
-28676,37,193,37193,974,457,17313766,17313766,3483,1644,74405463,74046602,69340,33065,1960414633,1953571382,27.96,27.8,23.27,23.38,1.4,1.38,0.88,0.89
-28677,37,097,37097,32940,14914,220551793,213449124,32940,14914,220551793,213449124,159437,69013,1545970551,1486221270,100,100,100,100,20.66,21.61,14.27,14.36
-28678,37,003,37003,2760,1172,51637542,50463259,5226,2286,118219988,115732239,37198,16189,682851437,673381461,52.81,51.27,43.68,43.6,7.42,7.24,7.56,7.49
-28678,37,097,37097,2466,1114,66582446,65268980,5226,2286,118219988,115732239,159437,69013,1545970551,1486221270,47.19,48.73,56.32,56.4,1.55,1.61,4.31,4.39
-28679,37,011,37011,78,45,3550353,3550353,2064,1133,67930054,67437479,17797,13890,640319183,639951854,3.78,3.97,5.23,5.26,0.44,0.32,0.55,0.55
-28679,37,189,37189,1986,1088,64379701,63887126,2064,1133,67930054,67437479,51079,32137,811837935,809515805,96.22,96.03,94.77,94.74,3.89,3.39,7.93,7.89
-28681,37,003,37003,25910,11264,439926757,433279304,25910,11264,439926757,433279304,37198,16189,682851437,673381461,100,100,100,100,69.65,69.58,64.42,64.34
-28682,37,035,37035,1129,693,16166204,8409239,1129,693,16166204,8409239,154358,67886,1070740822,1032683744,100,100,100,100,0.73,1.02,1.51,0.81
-28683,37,171,37171,925,455,62230726,61930521,1697,843,86712857,86412652,73673,33667,1389020036,1378304182,54.51,53.97,71.77,71.67,1.26,1.35,4.48,4.49
-28683,37,193,37193,772,388,24482131,24482131,1697,843,86712857,86412652,69340,33065,1960414633,1953571382,45.49,46.03,28.23,28.33,1.11,1.17,1.25,1.25
-28684,37,009,37009,1193,994,79133243,78753137,2141,1566,137378786,136761910,27281,17342,1111801093,1103683753,55.72,63.47,57.6,57.58,4.37,5.73,7.12,7.14
-28684,37,189,37189,948,572,58245543,58008773,2141,1566,137378786,136761910,51079,32137,811837935,809515805,44.28,36.53,42.4,42.42,1.86,1.78,7.17,7.17
-28685,37,193,37193,2076,1075,157913903,157913903,2076,1075,157913903,157913903,69340,33065,1960414633,1953571382,100,100,100,100,2.99,3.25,8.06,8.08
-28689,37,003,37003,79,34,10099393,10098375,1712,799,116143735,115707375,37198,16189,682851437,673381461,4.61,4.26,8.7,8.73,0.21,0.21,1.48,1.5
-28689,37,097,37097,1349,630,75205638,74862249,1712,799,116143735,115707375,159437,69013,1545970551,1486221270,78.8,78.85,64.75,64.7,0.85,0.91,4.86,5.04
-28689,37,193,37193,194,100,21860961,21772426,1712,799,116143735,115707375,69340,33065,1960414633,1953571382,11.33,12.52,18.82,18.82,0.28,0.3,1.12,1.11
-28689,37,197,37197,90,35,8977743,8974325,1712,799,116143735,115707375,38406,17341,874135787,867203563,5.26,4.38,7.73,7.76,0.23,0.2,1.03,1.03
-28690,37,023,37023,9295,4466,56228877,55933619,9295,4466,56228877,55933619,90912,40879,1334039248,1313381247,100,100,100,100,10.22,10.92,4.21,4.26
-28692,37,189,37189,4067,2443,99740030,99660102,4067,2443,99740030,99660102,51079,32137,811837935,809515805,100,100,100,100,7.96,7.6,12.29,12.31
-28693,37,009,37009,1700,954,67313231,66799244,1700,954,67313231,66799244,27281,17342,1111801093,1103683753,100,100,100,100,6.23,5.5,6.05,6.05
-28694,37,009,37009,7739,4729,172405733,171089134,7744,4733,172695157,171378558,27281,17342,1111801093,1103683753,99.94,99.92,99.83,99.83,28.37,27.27,15.51,15.5
-28694,37,193,37193,5,4,289424,289424,7744,4733,172695157,171378558,69340,33065,1960414633,1953571382,0.06,0.08,0.17,0.17,0.01,0.01,0.01,0.01
-28697,37,193,37193,12930,6043,169099443,164480485,12930,6043,169099443,164480485,69340,33065,1960414633,1953571382,100,100,100,100,18.65,18.28,8.63,8.42
-28698,37,009,37009,135,113,11597209,11589376,2256,1338,64969374,64949878,27281,17342,1111801093,1103683753,5.98,8.45,17.85,17.84,0.49,0.65,1.04,1.05
-28698,37,189,37189,2121,1225,53372165,53360502,2256,1338,64969374,64949878,51079,32137,811837935,809515805,94.02,91.55,82.15,82.16,4.15,3.81,6.57,6.59
-28701,37,021,37021,3635,1592,47497608,46253321,3635,1592,47497608,46253321,238318,113365,1709757499,1700772614,100,100,100,100,1.53,1.4,2.78,2.72
-28702,37,075,37075,288,419,40910230,38890190,366,524,56343326,51362547,8861,5930,781309855,756481641,78.69,79.96,72.61,75.72,3.25,7.07,5.24,5.14
-28702,37,173,37173,78,105,15433096,12472357,366,524,56343326,51362547,13981,8723,1400262522,1367504099,21.31,20.04,27.39,24.28,0.56,1.2,1.1,0.91
-28704,37,021,37021,18385,8431,75555271,73744073,18821,8636,87212392,85327690,238318,113365,1709757499,1700772614,97.68,97.63,86.63,86.42,7.71,7.44,4.42,4.34
-28704,37,089,37089,436,205,11657121,11583617,18821,8636,87212392,85327690,106740,54710,971844310,966241824,2.32,2.37,13.37,13.58,0.41,0.37,1.2,1.2
-28705,37,121,37121,6715,3867,327487416,326643062,6715,3867,327487416,326643062,15579,8713,575201944,573487628,100,100,100,100,43.1,44.38,56.93,56.96
-28707,37,099,37099,94,176,28531169,28531169,94,176,28531169,28531169,40271,25948,1280864610,1271048658,100,100,100,100,0.23,0.68,2.23,2.24
-28708,37,175,37175,754,398,126174017,126174017,754,398,126174017,126174017,33090,19163,985524092,980383414,100,100,100,100,2.28,2.08,12.8,12.87
-28709,37,021,37021,2225,1058,136705920,136692522,2225,1058,136705920,136692522,238318,113365,1709757499,1700772614,100,100,100,100,0.93,0.93,8,8.04
-28711,37,021,37021,13020,6812,216285882,214836753,13209,6968,260225776,258776647,238318,113365,1709757499,1700772614,98.57,97.76,83.11,83.02,5.46,6.01,12.65,12.63
-28711,37,089,37089,13,26,1614566,1614566,13209,6968,260225776,258776647,106740,54710,971844310,966241824,0.1,0.37,0.62,0.62,0.01,0.05,0.17,0.17
-28711,37,111,37111,77,80,17618300,17618300,13209,6968,260225776,258776647,44996,20808,1155125933,1141169175,0.58,1.15,6.77,6.81,0.17,0.38,1.53,1.54
-28711,37,161,37161,99,50,24707028,24707028,13209,6968,260225776,258776647,67810,33878,1465543918,1461144059,0.75,0.72,9.49,9.55,0.15,0.15,1.69,1.69
-28712,37,175,37175,19347,10759,327186126,325450559,19347,10759,327186126,325450559,33090,19163,985524092,980383414,100,100,100,100,58.47,56.14,33.2,33.2
-28713,37,173,37173,8686,5896,365307660,353434267,8686,5896,365307660,353434267,13981,8723,1400262522,1367504099,100,100,100,100,62.13,67.59,26.09,25.85
-28714,37,199,37199,16753,10215,754666147,753705145,16753,10215,754666147,753705145,17818,11032,811081734,809623022,100,100,100,100,94.02,92.59,93.04,93.09
-28715,37,021,37021,24582,11178,202107524,201729702,24582,11178,202107524,201729702,238318,113365,1709757499,1700772614,100,100,100,100,10.31,9.86,11.82,11.86
-28716,37,087,37087,17477,8718,409709362,409291009,17477,8718,409709362,409291009,59036,34954,1436471866,1434055217,100,100,100,100,29.6,24.94,28.52,28.54
-28717,37,099,37099,1729,2944,133387574,132758967,1729,2944,133387574,132758967,40271,25948,1280864610,1271048658,100,100,100,100,4.29,11.35,10.41,10.44
-28718,37,175,37175,553,377,42981312,42820631,553,377,42981312,42820631,33090,19163,985524092,980383414,100,100,100,100,1.67,1.97,4.36,4.37
-28719,37,099,37099,3667,1758,82115911,82115911,8048,3733,350060860,350060860,40271,25948,1280864610,1271048658,45.56,47.09,23.46,23.46,9.11,6.78,6.41,6.46
-28719,37,173,37173,4381,1975,267944949,267944949,8048,3733,350060860,350060860,13981,8723,1400262522,1367504099,54.44,52.91,76.54,76.54,31.34,22.64,19.14,19.59
-28720,37,161,37161,114,212,8215083,8215083,114,212,8215083,8215083,67810,33878,1465543918,1461144059,100,100,100,100,0.17,0.63,0.56,0.56
-28721,37,087,37087,10063,5216,285538784,285496831,10063,5216,285538784,285496831,59036,34954,1436471866,1434055217,100,100,100,100,17.05,14.92,19.88,19.91
-28722,37,149,37149,6371,3326,118121458,118038578,6371,3326,118121458,118038578,20510,11432,617803410,615871126,100,100,100,100,31.06,29.09,19.12,19.17
-28723,37,099,37099,11329,5424,295296402,289666605,11329,5424,295296402,289666605,40271,25948,1280864610,1271048658,100,100,100,100,28.13,20.9,23.05,22.79
-28725,37,099,37099,43,27,706580,706580,43,27,706580,706580,40271,25948,1280864610,1271048658,100,100,100,100,0.11,0.1,0.06,0.06
-28726,37,089,37089,3203,1473,6196306,6176921,3203,1473,6196306,6176921,106740,54710,971844310,966241824,100,100,100,100,3,2.69,0.64,0.64
-28729,37,089,37089,2894,1424,11489351,11348960,2894,1424,11489351,11348960,106740,54710,971844310,966241824,100,100,100,100,2.71,2.6,1.18,1.17
-28730,37,021,37021,9133,4193,128468494,128330892,9133,4193,128468494,128330892,238318,113365,1709757499,1700772614,100,100,100,100,3.83,3.7,7.51,7.55
-28731,37,089,37089,7778,4241,70393944,70009086,7778,4241,70393944,70009086,106740,54710,971844310,966241824,100,100,100,100,7.29,7.75,7.24,7.25
-28732,37,021,37021,4524,1894,37617164,37609272,16491,7220,111005300,110580921,238318,113365,1709757499,1700772614,27.43,26.23,33.89,34.01,1.9,1.67,2.2,2.21
-28732,37,089,37089,11967,5326,73388136,72971649,16491,7220,111005300,110580921,106740,54710,971844310,966241824,72.57,73.77,66.11,65.99,11.21,9.73,7.55,7.55
-28733,37,075,37075,21,138,22094979,20085516,21,138,22094979,20085516,8861,5930,781309855,756481641,100,100,100,100,0.24,2.33,2.83,2.66
-28734,37,113,37113,27040,16958,783613385,780246069,27040,16958,783613385,780246069,33922,25245,1345984570,1335290241,100,100,100,100,79.71,67.17,58.22,58.43
-28735,37,089,37089,256,325,9794309,9794309,256,325,9794309,9794309,106740,54710,971844310,966241824,100,100,100,100,0.24,0.59,1.01,1.01
-28736,37,099,37099,787,1089,91523241,91386875,787,1089,91523241,91386875,40271,25948,1280864610,1271048658,100,100,100,100,1.95,4.2,7.15,7.19
-28739,37,089,37089,19616,11105,164218556,162982377,19786,11204,175306063,173654103,106740,54710,971844310,966241824,99.14,99.12,93.68,93.85,18.38,20.3,16.9,16.87
-28739,37,175,37175,170,99,11087507,10671726,19786,11204,175306063,173654103,33090,19163,985524092,980383414,0.86,0.88,6.32,6.15,0.51,0.52,1.13,1.09
-28740,37,121,37121,589,409,99037458,98300311,1364,902,144341288,143106431,15579,8713,575201944,573487628,43.18,45.34,68.61,68.69,3.78,4.69,17.22,17.14
-28740,37,199,37199,775,493,45303830,44806120,1364,902,144341288,143106431,17818,11032,811081734,809623022,56.82,54.66,31.39,31.31,4.35,4.47,5.59,5.53
-28741,37,099,37099,138,386,26500365,26447725,3197,5691,226146078,225154953,40271,25948,1280864610,1271048658,4.32,6.78,11.72,11.75,0.34,1.49,2.07,2.08
-28741,37,113,37113,3059,5305,199645713,198707228,3197,5691,226146078,225154953,33922,25245,1345984570,1335290241,95.68,93.22,88.28,88.25,9.02,21.01,14.83,14.88
-28742,37,089,37089,2406,1084,61964103,61471020,2710,1230,63879882,63386799,106740,54710,971844310,966241824,88.78,88.13,97,96.98,2.25,1.98,6.38,6.36
-28742,37,175,37175,304,146,1915779,1915779,2710,1230,63879882,63386799,33090,19163,985524092,980383414,11.22,11.87,3,3.02,0.92,0.76,0.19,0.2
-28743,37,087,37087,11,12,59525956,59525956,2125,1408,321883504,320453524,59036,34954,1436471866,1434055217,0.52,0.85,18.49,18.58,0.02,0.03,4.14,4.15
-28743,37,115,37115,2114,1396,262357548,260927568,2125,1408,321883504,320453524,20764,10608,1169216446,1164379747,99.48,99.15,81.51,81.42,10.18,13.16,22.44,22.41
-28745,37,087,37087,551,685,2216022,1614121,551,685,2216022,1614121,59036,34954,1436471866,1434055217,100,100,100,100,0.93,1.96,0.15,0.11
-28746,37,161,37161,2388,3181,124825150,121529136,2388,3181,124825150,121529136,67810,33878,1465543918,1461144059,100,100,100,100,3.52,9.39,8.52,8.32
-28747,37,099,37099,4,2,8378315,8378315,2198,2015,138569822,136383237,40271,25948,1280864610,1271048658,0.18,0.1,6.05,6.14,0.01,0.01,0.65,0.66
-28747,37,175,37175,2194,2013,130191507,128004922,2198,2015,138569822,136383237,33090,19163,985524092,980383414,99.82,99.9,93.95,93.86,6.63,10.5,13.21,13.06
-28748,37,021,37021,11276,4987,211007095,211007095,11334,5021,219038138,219038138,238318,113365,1709757499,1700772614,99.49,99.32,96.33,96.33,4.73,4.4,12.34,12.41
-28748,37,115,37115,58,34,8031043,8031043,11334,5021,219038138,219038138,20764,10608,1169216446,1164379747,0.51,0.68,3.67,3.67,0.28,0.32,0.69,0.69
-28749,37,111,37111,39,107,2199021,2199021,50,134,2677224,2677224,44996,20808,1155125933,1141169175,78,79.85,82.14,82.14,0.09,0.51,0.19,0.19
-28749,37,121,37121,11,27,478203,478203,50,134,2677224,2677224,15579,8713,575201944,573487628,22,20.15,17.86,17.86,0.07,0.31,0.08,0.08
-28751,37,087,37087,2883,4018,90590082,90590082,2916,4091,115965926,115965926,59036,34954,1436471866,1434055217,98.87,98.22,78.12,78.12,4.88,11.5,6.31,6.32
-28751,37,099,37099,33,73,25375844,25375844,2916,4091,115965926,115965926,40271,25948,1280864610,1271048658,1.13,1.78,21.88,21.88,0.08,0.28,1.98,2
-28752,37,111,37111,30600,13773,640221789,634388853,30600,13773,640221789,634388853,44996,20808,1155125933,1141169175,100,100,100,100,68.01,66.19,55.42,55.59
-28753,37,021,37021,1113,474,15418402,15418402,11670,5756,686937721,683531002,238318,113365,1709757499,1700772614,9.54,8.23,2.24,2.26,0.47,0.42,0.9,0.91
-28753,37,115,37115,10557,5282,671519319,668112600,11670,5756,686937721,683531002,20764,10608,1169216446,1164379747,90.46,91.77,97.76,97.74,50.84,49.79,57.43,57.38
-28754,37,115,37115,7543,3664,216537909,216537909,7679,3912,223736883,223736883,20764,10608,1169216446,1164379747,98.23,93.66,96.78,96.78,36.33,34.54,18.52,18.6
-28754,37,199,37199,136,248,7198974,7198974,7679,3912,223736883,223736883,17818,11032,811081734,809623022,1.77,6.34,3.22,3.22,0.76,2.25,0.89,0.89
-28756,37,149,37149,4430,2347,216562864,215041842,4504,2400,234256848,232726710,20510,11432,617803410,615871126,98.36,97.79,92.45,92.4,21.6,20.53,35.05,34.92
-28756,37,161,37161,74,53,17693984,17684868,4504,2400,234256848,232726710,67810,33878,1465543918,1461144059,1.64,2.21,7.55,7.6,0.11,0.16,1.21,1.21
-28757,37,021,37021,280,417,3155383,3155383,280,417,3155383,3155383,238318,113365,1709757499,1700772614,100,100,100,100,0.12,0.37,0.18,0.19
-28759,37,021,37021,149,77,884154,884154,6922,3170,60659107,60130909,238318,113365,1709757499,1700772614,2.15,2.43,1.46,1.47,0.06,0.07,0.05,0.05
-28759,37,089,37089,6773,3093,59774953,59246755,6922,3170,60659107,60130909,106740,54710,971844310,966241824,97.85,97.57,98.54,98.53,6.35,5.65,6.15,6.13
-28761,37,023,37023,614,369,87331503,77862310,7816,3694,297342053,280245863,90912,40879,1334039248,1313381247,7.86,9.99,29.37,27.78,0.68,0.9,6.55,5.93
-28761,37,111,37111,7202,3325,210010550,202383553,7816,3694,297342053,280245863,44996,20808,1155125933,1141169175,92.14,90.01,70.63,72.22,16.01,15.98,18.18,17.73
-28762,37,111,37111,6857,3356,258796134,258300952,6857,3356,258796134,258300952,44996,20808,1155125933,1141169175,100,100,100,100,15.24,16.13,22.4,22.63
-28763,37,113,37113,2725,1743,143861282,143656024,2725,1743,143861282,143656024,33922,25245,1345984570,1335290241,100,100,100,100,8.03,6.9,10.69,10.76
-28766,37,089,37089,84,40,1119948,1119948,1262,635,15108018,15108018,106740,54710,971844310,966241824,6.66,6.3,7.41,7.41,0.08,0.07,0.12,0.12
-28766,37,175,37175,1178,595,13988070,13988070,1262,635,15108018,15108018,33090,19163,985524092,980383414,93.34,93.7,92.59,92.59,3.56,3.1,1.42,1.43
-28768,37,175,37175,6813,3423,215360526,214833637,6813,3423,215360526,214833637,33090,19163,985524092,980383414,100,100,100,100,20.59,17.86,21.85,21.91
-28771,37,075,37075,8552,5373,718304646,697505935,8558,5404,725364612,703906327,8861,5930,781309855,756481641,99.93,99.43,99.03,99.09,96.51,90.61,91.94,92.2
-28771,37,173,37173,6,31,7059966,6400392,8558,5404,725364612,703906327,13981,8723,1400262522,1367504099,0.07,0.57,0.97,0.91,0.04,0.36,0.5,0.47
-28772,37,175,37175,1239,657,32643917,32643917,1239,657,32643917,32643917,33090,19163,985524092,980383414,100,100,100,100,3.74,3.43,3.31,3.33
-28773,37,089,37089,1257,939,35605042,35173894,3378,2393,144727410,144288592,106740,54710,971844310,966241824,37.21,39.24,24.6,24.38,1.18,1.72,3.66,3.64
-28773,37,149,37149,2121,1454,109122368,109114698,3378,2393,144727410,144288592,20510,11432,617803410,615871126,62.79,60.76,75.4,75.62,10.34,12.72,17.66,17.72
-28774,37,099,37099,475,1400,33833104,33466564,1013,2096,117828435,117346720,40271,25948,1280864610,1271048658,46.89,66.79,28.71,28.52,1.18,5.4,2.64,2.63
-28774,37,175,37175,538,696,83995331,83880156,1013,2096,117828435,117346720,33090,19163,985524092,980383414,53.11,33.21,71.29,71.48,1.63,3.63,8.52,8.56
-28775,37,113,37113,296,309,25505398,25483900,296,309,25505398,25483900,33922,25245,1345984570,1335290241,100,100,100,100,0.87,1.22,1.89,1.91
-28777,37,011,37011,2197,227,13260936,13260936,10638,4768,176634814,176501999,17797,13890,640319183,639951854,20.65,4.76,7.51,7.51,12.34,1.63,2.07,2.07
-28777,37,111,37111,23,55,11262228,11262228,10638,4768,176634814,176501999,44996,20808,1155125933,1141169175,0.22,1.15,6.38,6.38,0.05,0.26,0.97,0.99
-28777,37,121,37121,8264,4410,148198867,148066052,10638,4768,176634814,176501999,15579,8713,575201944,573487628,77.68,92.49,83.9,83.89,53.05,50.61,25.76,25.82
-28777,37,199,37199,154,76,3912783,3912783,10638,4768,176634814,176501999,17818,11032,811081734,809623022,1.45,1.59,2.22,2.22,0.86,0.69,0.48,0.48
-28778,37,021,37021,10381,4413,89329995,89052068,10381,4413,89329995,89052068,238318,113365,1709757499,1700772614,100,100,100,100,4.36,3.89,5.22,5.24
-28779,37,099,37099,16111,8828,277918185,277918185,16111,8828,277918185,277918185,40271,25948,1280864610,1271048658,100,100,100,100,40.01,34.02,21.7,21.87
-28781,37,039,37039,137,86,15479389,15479389,939,1016,208838181,202676409,27444,17515,1208809934,1179547136,14.59,8.46,7.41,7.64,0.5,0.49,1.28,1.31
-28781,37,113,37113,802,930,193358792,187197020,939,1016,208838181,202676409,33922,25245,1345984570,1335290241,85.41,91.54,92.59,92.36,2.36,3.68,14.37,14.02
-28782,37,149,37149,6584,3819,128800754,128527866,6584,3819,128800754,128527866,20510,11432,617803410,615871126,100,100,100,100,32.1,33.41,20.85,20.87
-28783,37,099,37099,1593,1161,169258108,166267996,1593,1161,169258108,166267996,40271,25948,1280864610,1271048658,100,100,100,100,3.96,4.47,13.21,13.08
-28785,37,087,37087,7338,4821,396813745,395666892,7338,4821,396813745,395666892,59036,34954,1436471866,1434055217,100,100,100,100,12.43,13.79,27.62,27.59
-28786,37,087,37087,20713,11484,192077915,191870326,20714,11492,193182372,192974783,59036,34954,1436471866,1434055217,100,99.93,99.43,99.43,35.09,32.85,13.37,13.38
-28786,37,099,37099,1,8,1104457,1104457,20714,11492,193182372,192974783,40271,25948,1280864610,1271048658,0,0.07,0.57,0.57,0,0.03,0.09,0.09
-28787,37,021,37021,19226,8801,195274386,195227049,19718,9033,206045013,205997676,238318,113365,1709757499,1700772614,97.5,97.43,94.77,94.77,8.07,7.76,11.42,11.48
-28787,37,115,37115,492,232,10770627,10770627,19718,9033,206045013,205997676,20764,10608,1169216446,1164379747,2.5,2.57,5.23,5.23,2.37,2.19,0.92,0.93
-28789,37,099,37099,4267,2672,106935355,106923465,5097,3386,147905498,147711816,40271,25948,1280864610,1271048658,83.72,78.91,72.3,72.39,10.6,10.3,8.35,8.41
-28789,37,173,37173,830,714,40970143,40788351,5097,3386,147905498,147711816,13981,8723,1400262522,1367504099,16.28,21.09,27.7,27.61,5.94,8.19,2.93,2.98
-28790,37,089,37089,3205,1748,109175122,108463500,3205,1748,109175122,108463500,106740,54710,971844310,966241824,100,100,100,100,3,3.2,11.23,11.23
-28791,37,089,37089,14171,7184,42966357,42601991,14171,7184,42966357,42601991,106740,54710,971844310,966241824,100,100,100,100,13.28,13.13,4.42,4.41
-28792,37,089,37089,32681,16497,261133441,260412456,32689,16502,261275415,260554430,106740,54710,971844310,966241824,99.98,99.97,99.95,99.95,30.62,30.15,26.87,26.95
-28792,37,149,37149,8,5,141974,141974,32689,16502,261275415,260554430,20510,11432,617803410,615871126,0.02,0.03,0.05,0.05,0.04,0.04,0.02,0.02
-28801,37,021,37021,15019,7460,13410111,13162694,15019,7460,13410111,13162694,238318,113365,1709757499,1700772614,100,100,100,100,6.3,6.58,0.78,0.77
-28803,37,021,37021,28693,14756,100209347,99274489,28693,14756,100209347,99274489,238318,113365,1709757499,1700772614,100,100,100,100,12.04,13.02,5.86,5.84
-28804,37,021,37021,20507,9596,70333055,68832519,20507,9596,70333055,68832519,238318,113365,1709757499,1700772614,100,100,100,100,8.6,8.46,4.11,4.05
-28805,37,021,37021,17620,9221,67280535,67237743,17620,9221,67280535,67237743,238318,113365,1709757499,1700772614,100,100,100,100,7.39,8.13,3.94,3.95
-28806,37,021,37021,38550,18005,99217173,98324483,38550,18005,99217173,98324483,238318,113365,1709757499,1700772614,100,100,100,100,16.18,15.88,5.8,5.78
-28901,37,039,37039,5354,2990,163755960,163755960,5354,2990,163755960,163755960,27444,17515,1208809934,1179547136,100,100,100,100,19.51,17.07,13.55,13.88
-28902,37,039,37039,349,209,19466620,19466620,1373,811,58859770,58735974,27444,17515,1208809934,1179547136,25.42,25.77,33.07,33.14,1.27,1.19,1.61,1.65
-28902,37,043,37043,1024,602,39393150,39269354,1373,811,58859770,58735974,10587,7140,571424864,556201310,74.58,74.23,66.93,66.86,9.67,8.43,6.89,7.06
-28904,37,043,37043,8533,5936,506567204,491467446,8533,5936,506567204,491467446,10587,7140,571424864,556201310,100,100,100,100,80.6,83.14,88.65,88.36
-28905,37,039,37039,3129,1714,116495521,116495521,3129,1714,116495521,116495521,27444,17515,1208809934,1179547136,100,100,100,100,11.4,9.79,9.64,9.88
-28906,37,039,37039,18475,12516,893612444,864349646,18475,12516,893612444,864349646,27444,17515,1208809934,1179547136,100,100,100,100,67.32,71.46,73.92,73.28
-28909,37,043,37043,1030,602,25464510,25464510,1030,602,25464510,25464510,10587,7140,571424864,556201310,100,100,100,100,9.73,8.43,4.46,4.58
-29001,45,027,45027,1999,869,159103841,158980042,2148,942,170617057,170493258,34971,17467,1801724715,1571958092,93.06,92.25,93.25,93.25,5.72,4.98,8.83,10.11
-29001,45,085,45085,149,73,11513216,11513216,2148,942,170617057,170493258,107456,46011,1766591961,1722512472,6.94,7.75,6.75,6.75,0.14,0.16,0.65,0.67
-29003,45,009,45009,6989,3244,367915639,364959513,6989,3244,367915639,364959513,15987,7716,1024501392,1018822336,100,100,100,100,43.72,42.04,35.91,35.82
-29006,45,003,45003,1811,859,154653252,153030572,9565,4469,380854924,373930717,160099,72249,2798729341,2773965154,18.93,19.22,40.61,40.92,1.13,1.19,5.53,5.52
-29006,45,063,45063,5037,2362,74943355,74314063,9565,4469,380854924,373930717,262391,113957,1962508855,1810175317,52.66,52.85,19.68,19.87,1.92,2.07,3.82,4.11
-29006,45,081,45081,2717,1248,151258317,146586082,9565,4469,380854924,373930717,19875,9289,1196109919,1172690632,28.41,27.93,39.72,39.2,13.67,13.44,12.65,12.5
-29009,45,025,45025,116,58,6859097,6859097,2440,1175,281104982,280299379,46734,21482,2086870398,2069595909,4.75,4.94,2.44,2.45,0.25,0.27,0.33,0.33
-29009,45,055,45055,2260,1091,266734178,265928575,2440,1175,281104982,280299379,61697,27478,1917615566,1881787617,92.62,92.85,94.89,94.87,3.66,3.97,13.91,14.13
-29009,45,061,45061,64,26,7511707,7511707,2440,1175,281104982,280299379,19220,7775,1065087620,1062372545,2.62,2.21,2.67,2.68,0.33,0.33,0.71,0.71
-29010,45,055,45055,105,39,3547398,3528724,13491,5207,536282802,534716082,61697,27478,1917615566,1881787617,0.78,0.75,0.66,0.66,0.17,0.14,0.18,0.19
-29010,45,061,45061,13386,5168,532735404,531187358,13491,5207,536282802,534716082,19220,7775,1065087620,1062372545,99.22,99.25,99.34,99.34,69.65,66.47,50.02,50
-29014,45,023,45023,1267,602,180095029,180006596,1891,907,426648792,426285615,33140,14701,1518156768,1503894983,67,66.37,42.21,42.23,3.82,4.09,11.86,11.97
-29014,45,039,45039,624,305,246553763,246279019,1891,907,426648792,426285615,23956,11681,1838584522,1777449480,33,33.63,57.79,57.77,2.6,2.61,13.41,13.86
-29015,45,039,45039,1738,825,338262100,314370157,1738,825,338262100,314370157,23956,11681,1838584522,1777449480,100,100,100,100,7.25,7.06,18.4,17.69
-29016,45,039,45039,364,146,16560765,16505681,16393,6469,224702822,223080730,23956,11681,1838584522,1777449480,2.22,2.26,7.37,7.4,1.52,1.25,0.9,0.93
-29016,45,079,45079,16029,6323,208142057,206575049,16393,6469,224702822,223080730,384504,161725,1998723402,1960797690,97.78,97.74,92.63,92.6,4.17,3.91,10.41,10.54
-29018,45,035,45035,229,122,8082158,7974015,3749,1752,284864606,283888449,136555,55186,1491330917,1484665975,6.11,6.96,2.84,2.81,0.17,0.22,0.54,0.54
-29018,45,075,45075,3520,1630,276782448,275914434,3749,1752,284864606,283888449,92501,42504,2921252629,2864787762,93.89,93.04,97.16,97.19,3.81,3.83,9.47,9.63
-29020,45,055,45055,21866,10667,568565413,554803114,22463,10948,603291610,589290591,61697,27478,1917615566,1881787617,97.34,97.43,94.24,94.15,35.44,38.82,29.65,29.48
-29020,45,061,45061,597,281,34726197,34487477,22463,10948,603291610,589290591,19220,7775,1065087620,1062372545,2.66,2.57,5.76,5.85,3.11,3.61,3.26,3.25
-29030,45,017,45017,1463,765,199413303,189173816,1967,1018,245355426,235050121,15175,7340,1016527778,987176844,74.38,75.15,81.28,80.48,9.64,10.42,19.62,19.16
-29030,45,075,45075,504,253,45942123,45876305,1967,1018,245355426,235050121,92501,42504,2921252629,2864787762,25.62,24.85,18.72,19.52,0.54,0.6,1.57,1.6
-29031,45,023,45023,369,212,156092754,155074023,1349,750,318446101,316813523,33140,14701,1518156768,1503894983,27.35,28.27,49.02,48.95,1.11,1.44,10.28,10.31
-29031,45,039,45039,84,46,15903969,15903969,1349,750,318446101,316813523,23956,11681,1838584522,1777449480,6.23,6.13,4.99,5.02,0.35,0.39,0.87,0.89
-29031,45,087,45087,896,492,146449378,145835531,1349,750,318446101,316813523,28961,14153,1336501690,1331696606,66.42,65.6,45.99,46.03,3.09,3.48,10.96,10.95
-29032,45,055,45055,4300,1806,174057160,173398878,4424,1859,205377619,204580594,61697,27478,1917615566,1881787617,97.2,97.15,84.75,84.76,6.97,6.57,9.08,9.21
-29032,45,061,45061,124,53,31320459,31181716,4424,1859,205377619,204580594,19220,7775,1065087620,1062372545,2.8,2.85,15.25,15.24,0.65,0.68,2.94,2.94
-29033,45,063,45063,11603,5546,24418189,23106989,11603,5546,24418189,23106989,262391,113957,1962508855,1810175317,100,100,100,100,4.42,4.87,1.24,1.28
-29036,45,063,45063,13858,6210,135790637,97014959,19140,8296,183136586,139969420,262391,113957,1962508855,1810175317,72.4,74.86,74.15,69.31,5.28,5.45,6.92,5.36
-29036,45,071,45071,351,147,6677265,6669625,19140,8296,183136586,139969420,37508,17922,1676463477,1631788278,1.83,1.77,3.65,4.77,0.94,0.82,0.4,0.41
-29036,45,079,45079,4931,1939,40668684,36284836,19140,8296,183136586,139969420,384504,161725,1998723402,1960797690,25.76,23.37,22.21,25.92,1.28,1.2,2.03,1.85
-29037,45,071,45071,478,390,110734709,106039401,824,554,178795827,174068049,37508,17922,1676463477,1631788278,58.01,70.4,61.93,60.92,1.27,2.18,6.61,6.5
-29037,45,081,45081,346,164,68061118,68028648,824,554,178795827,174068049,19875,9289,1196109919,1172690632,41.99,29.6,38.07,39.08,1.74,1.77,5.69,5.8
-29038,45,075,45075,2445,1154,208708797,207790922,2445,1154,208708797,207790922,92501,42504,2921252629,2864787762,100,100,100,100,2.64,2.72,7.14,7.25
-29039,45,075,45075,4215,1774,67447107,66914393,4215,1774,67447107,66914393,92501,42504,2921252629,2864787762,100,100,100,100,4.56,4.17,2.31,2.34
-29040,45,061,45061,879,373,53128987,52864220,8767,3656,146319708,145616098,19220,7775,1065087620,1062372545,10.03,10.2,36.31,36.3,4.57,4.8,4.99,4.98
-29040,45,085,45085,7888,3283,93190721,92751878,8767,3656,146319708,145616098,107456,46011,1766591961,1722512472,89.97,89.8,63.69,63.7,7.34,7.14,5.28,5.38
-29042,45,009,45009,5868,2649,171026587,169250574,5868,2649,171026587,169250574,15987,7716,1024501392,1018822336,100,100,100,100,36.7,34.33,16.69,16.61
-29044,45,079,45079,5652,2611,361735400,356958084,5652,2611,361735400,356958084,384504,161725,1998723402,1960797690,100,100,100,100,1.47,1.61,18.1,18.2
-29045,45,055,45055,13168,5115,124081758,123021235,21871,8694,183941469,181527960,61697,27478,1917615566,1881787617,60.21,58.83,67.46,67.77,21.34,18.61,6.47,6.54
-29045,45,079,45079,8703,3579,59859711,58506725,21871,8694,183941469,181527960,384504,161725,1998723402,1960797690,39.79,41.17,32.54,32.23,2.26,2.21,2.99,2.98
-29046,45,061,45061,237,111,6481225,6456051,237,111,6481225,6456051,19220,7775,1065087620,1062372545,100,100,100,100,1.23,1.43,0.61,0.61
-29047,45,017,45017,1326,825,95872205,83857299,3683,2059,181859141,169519147,15175,7340,1016527778,987176844,36,40.07,52.72,49.47,8.74,11.24,9.43,8.49
-29047,45,075,45075,2357,1234,85986936,85661848,3683,2059,181859141,169519147,92501,42504,2921252629,2864787762,64,59.93,47.28,50.53,2.55,2.9,2.94,2.99
-29048,45,075,45075,4864,2864,149783679,123122222,4864,2864,149783679,123122222,92501,42504,2921252629,2864787762,100,100,100,100,5.26,6.74,5.13,4.3
-29051,45,027,45027,411,171,56543783,56337951,951,402,110189298,109938218,34971,17467,1801724715,1571958092,43.22,42.54,51.32,51.25,1.18,0.98,3.14,3.58
-29051,45,085,45085,540,231,53645515,53600267,951,402,110189298,109938218,107456,46011,1766591961,1722512472,56.78,57.46,48.68,48.75,0.5,0.5,3.04,3.11
-29052,45,079,45079,2021,835,149321069,148530092,2021,835,149321069,148530092,384504,161725,1998723402,1960797690,100,100,100,100,0.53,0.52,7.47,7.57
-29053,45,017,45017,1074,477,61871427,60256274,18830,7574,212902944,210177413,15175,7340,1016527778,987176844,5.7,6.3,29.06,28.67,7.08,6.5,6.09,6.1
-29053,45,063,45063,17756,7097,151031517,149921139,18830,7574,212902944,210177413,262391,113957,1962508855,1810175317,94.3,93.7,70.94,71.33,6.77,6.23,7.7,8.28
-29054,45,063,45063,9612,4269,162366938,147383317,9612,4269,162366938,147383317,262391,113957,1962508855,1810175317,100,100,100,100,3.66,3.75,8.27,8.14
-29055,45,023,45023,3383,1594,66888528,62662017,4337,2029,96132391,91240942,33140,14701,1518156768,1503894983,78,78.56,69.58,68.68,10.21,10.84,4.41,4.17
-29055,45,039,45039,954,435,29243863,28578925,4337,2029,96132391,91240942,23956,11681,1838584522,1777449480,22,21.44,30.42,31.32,3.98,3.72,1.59,1.61
-29056,45,027,45027,186,65,27841729,27811452,2448,1108,271107600,269935672,34971,17467,1801724715,1571958092,7.6,5.87,10.27,10.3,0.53,0.37,1.55,1.77
-29056,45,089,45089,2262,1043,243265871,242124220,2448,1108,271107600,269935672,34423,15359,2426929387,2419459980,92.4,94.13,89.73,89.7,6.57,6.79,10.02,10.01
-29058,45,055,45055,72,35,31837045,31738553,4746,2130,371870860,367723819,61697,27478,1917615566,1881787617,1.52,1.64,8.56,8.63,0.12,0.13,1.66,1.69
-29058,45,057,45057,4674,2095,340033815,335985266,4746,2130,371870860,367723819,76652,32687,1437759302,1422317473,98.48,98.36,91.44,91.37,6.1,6.41,23.65,23.62
-29059,45,015,45015,180,81,13965672,13965672,6068,2744,288891548,287508199,177843,73372,3183708107,2846025358,2.97,2.95,4.83,4.86,0.1,0.11,0.44,0.49
-29059,45,075,45075,5888,2663,274925876,273542527,6068,2744,288891548,287508199,92501,42504,2921252629,2864787762,97.03,97.05,95.17,95.14,6.37,6.27,9.41,9.55
-29061,45,079,45079,13717,5628,234363490,230585372,13717,5628,234363490,230585372,384504,161725,1998723402,1960797690,100,100,100,100,3.57,3.48,11.73,11.76
-29062,45,085,45085,176,99,43060598,41937859,176,99,43060598,41937859,107456,46011,1766591961,1722512472,100,100,100,100,0.16,0.22,2.44,2.43
-29063,45,063,45063,2474,1161,2670807,2670807,32717,12659,109306900,103766253,262391,113957,1962508855,1810175317,7.56,9.17,2.44,2.57,0.94,1.02,0.14,0.15
-29063,45,079,45079,30243,11498,106636093,101095446,32717,12659,109306900,103766253,384504,161725,1998723402,1960797690,92.44,90.83,97.56,97.43,7.87,7.11,5.34,5.16
-29065,45,039,45039,677,361,73205725,62561954,677,361,73205725,62561954,23956,11681,1838584522,1777449480,100,100,100,100,2.83,3.09,3.98,3.52
-29067,45,055,45055,2747,1230,233744759,233503658,10949,4329,506104600,505408577,61697,27478,1917615566,1881787617,25.09,28.41,46.19,46.2,4.45,4.48,12.19,12.41
-29067,45,057,45057,8202,3099,272359841,271904919,10949,4329,506104600,505408577,76652,32687,1437759302,1422317473,74.91,71.59,53.81,53.8,10.7,9.48,18.94,19.12
-29069,45,031,45031,4685,2066,157656106,157203657,5020,2229,198562447,198073646,68681,30297,1468017840,1453380435,93.33,92.69,79.4,79.37,6.82,6.82,10.74,10.82
-29069,45,061,45061,335,163,40906341,40869989,5020,2229,198562447,198073646,19220,7775,1065087620,1062372545,6.67,7.31,20.6,20.63,1.74,2.1,3.84,3.85
-29070,45,063,45063,13148,5887,351840916,336094889,15330,7370,450528490,428203657,262391,113957,1962508855,1810175317,85.77,79.88,78.1,78.49,5.01,5.17,17.93,18.57
-29070,45,081,45081,2182,1483,98687574,92108768,15330,7370,450528490,428203657,19875,9289,1196109919,1172690632,14.23,20.12,21.9,21.51,10.98,15.97,8.25,7.85
-29072,45,063,45063,49566,20521,226290785,177334052,49566,20521,226290785,177334052,262391,113957,1962508855,1810175317,100,100,100,100,18.89,18.01,11.53,9.8
-29073,45,063,45063,40775,16511,209906878,207866345,40775,16511,209906878,207866345,262391,113957,1962508855,1810175317,100,100,100,100,15.54,14.49,10.7,11.48
-29074,45,055,45055,241,451,61835923,52355801,241,451,61835923,52355801,61697,27478,1917615566,1881787617,100,100,100,100,0.39,1.64,3.22,2.78
-29075,45,063,45063,370,150,6939220,6939220,2963,1284,111283551,109847485,262391,113957,1962508855,1810175317,12.49,11.68,6.24,6.32,0.14,0.13,0.35,0.38
-29075,45,071,45071,1860,842,72776363,72055113,2963,1284,111283551,109847485,37508,17922,1676463477,1631788278,62.77,65.58,65.4,65.6,4.96,4.7,4.34,4.42
-29075,45,079,45079,733,292,31567968,30853152,2963,1284,111283551,109847485,384504,161725,1998723402,1960797690,24.74,22.74,28.37,28.09,0.19,0.18,1.58,1.57
-29078,45,055,45055,15036,5975,287358528,283852657,15293,6098,325372996,321408807,61697,27478,1917615566,1881787617,98.32,97.98,88.32,88.32,24.37,21.74,14.99,15.08
-29078,45,079,45079,257,123,38014468,37556150,15293,6098,325372996,321408807,384504,161725,1998723402,1960797690,1.68,2.02,11.68,11.68,0.07,0.08,1.9,1.92
-29079,45,031,45031,151,78,552438,552438,151,78,552438,552438,68681,30297,1468017840,1453380435,100,100,100,100,0.22,0.26,0.04,0.04
-29080,45,061,45061,1702,755,191957125,191944806,3240,1435,343108679,342755115,19220,7775,1065087620,1062372545,52.53,52.61,55.95,56,8.86,9.71,18.02,18.07
-29080,45,085,45085,1538,680,151151554,150810309,3240,1435,343108679,342755115,107456,46011,1766591961,1722512472,47.47,47.39,44.05,44,1.43,1.48,8.56,8.76
-29081,45,009,45009,1338,720,180671317,180310957,1352,732,209233644,208845300,15987,7716,1024501392,1018822336,98.96,98.36,86.35,86.34,8.37,9.33,17.64,17.7
-29081,45,029,45029,14,12,28562327,28534343,1352,732,209233644,208845300,38892,19901,2935196608,2736299047,1.04,1.64,13.65,13.66,0.04,0.06,0.97,1.04
-29082,45,009,45009,10,6,2071699,2071699,572,310,105300802,105234844,15987,7716,1024501392,1018822336,1.75,1.94,1.97,1.97,0.06,0.08,0.2,0.2
-29082,45,029,45029,562,304,103229103,103163145,572,310,105300802,105234844,38892,19901,2935196608,2736299047,98.25,98.06,98.03,98.03,1.45,1.53,3.52,3.77
-29101,45,025,45025,2452,1078,240170158,237483427,3023,1325,281781668,279028846,46734,21482,2086870398,2069595909,81.11,81.36,85.23,85.11,5.25,5.02,11.51,11.47
-29101,45,031,45031,571,247,41611510,41545419,3023,1325,281781668,279028846,68681,30297,1468017840,1453380435,18.89,18.64,14.77,14.89,0.83,0.82,2.83,2.86
-29102,45,027,45027,18248,9053,656879912,635559722,18248,9053,656879912,635559722,34971,17467,1801724715,1571958092,100,100,100,100,52.18,51.83,36.46,40.43
-29104,45,061,45061,683,289,76187881,76003647,1531,704,154808533,154624299,19220,7775,1065087620,1062372545,44.61,41.05,49.21,49.15,3.55,3.72,7.15,7.15
-29104,45,085,45085,848,415,78620652,78620652,1531,704,154808533,154624299,107456,46011,1766591961,1722512472,55.39,58.95,50.79,50.85,0.79,0.9,4.45,4.56
-29105,45,003,45003,1202,514,58589670,58171036,1514,629,76279063,75787683,160099,72249,2798729341,2773965154,79.39,81.72,76.81,76.76,0.75,0.71,2.09,2.1
-29105,45,081,45081,312,115,17689393,17616647,1514,629,76279063,75787683,19875,9289,1196109919,1172690632,20.61,18.28,23.19,23.24,1.57,1.24,1.48,1.5
-29107,45,075,45075,3166,1453,198302405,196883970,3166,1453,198302405,196883970,92501,42504,2921252629,2864787762,100,100,100,100,3.42,3.42,6.79,6.87
-29108,45,071,45071,20469,8784,544042924,539324317,20469,8784,544042924,539324317,37508,17922,1676463477,1631788278,100,100,100,100,54.57,49.01,32.45,33.05
-29111,45,027,45027,1531,609,146166385,146059227,1632,657,167549006,167441848,34971,17467,1801724715,1571958092,93.81,92.69,87.24,87.23,4.38,3.49,8.11,9.29
-29111,45,089,45089,101,48,21382621,21382621,1632,657,167549006,167441848,34423,15359,2426929387,2419459980,6.19,7.31,12.76,12.77,0.29,0.31,0.88,0.88
-29112,45,017,45017,161,89,28202745,28170553,4712,2296,301596915,299891455,15175,7340,1016527778,987176844,3.42,3.88,9.35,9.39,1.06,1.21,2.77,2.85
-29112,45,063,45063,298,111,9617952,9617952,4712,2296,301596915,299891455,262391,113957,1962508855,1810175317,6.32,4.83,3.19,3.21,0.11,0.1,0.49,0.53
-29112,45,075,45075,4253,2096,263776218,262102950,4712,2296,301596915,299891455,92501,42504,2921252629,2864787762,90.26,91.29,87.46,87.4,4.6,4.93,9.03,9.15
-29113,45,075,45075,1618,748,112121799,111531650,1618,748,112121799,111531650,92501,42504,2921252629,2864787762,100,100,100,100,1.75,1.76,3.84,3.89
-29114,45,027,45027,37,18,1140549,1140549,2190,960,96052023,96031719,34971,17467,1801724715,1571958092,1.69,1.88,1.19,1.19,0.11,0.1,0.06,0.07
-29114,45,041,45041,1625,719,59338881,59318577,2190,960,96052023,96031719,136885,58666,2081638394,2071897847,74.2,74.9,61.78,61.77,1.19,1.23,2.85,2.86
-29114,45,085,45085,528,223,35572593,35572593,2190,960,96052023,96031719,107456,46011,1766591961,1722512472,24.11,23.23,37.03,37.04,0.49,0.48,2.01,2.07
-29115,45,075,45075,31128,14125,340142600,338071859,31128,14125,340142600,338071859,92501,42504,2921252629,2864787762,100,100,100,100,33.65,33.23,11.64,11.8
-29117,45,075,45075,1160,0,230705,230705,1160,0,230705,230705,92501,42504,2921252629,2864787762,100,0,100,100,1.25,0,0.01,0.01
-29118,45,017,45017,560,217,14612305,14612305,15861,6790,202876160,201880891,15175,7340,1016527778,987176844,3.53,3.2,7.2,7.24,3.69,2.96,1.44,1.48
-29118,45,075,45075,15301,6573,188263855,187268586,15861,6790,202876160,201880891,92501,42504,2921252629,2864787762,96.47,96.8,92.8,92.76,16.54,15.46,6.44,6.54
-29122,45,071,45071,54,36,1231145,1131322,54,36,1231145,1131322,37508,17922,1676463477,1631788278,100,100,100,100,0.14,0.2,0.07,0.07
-29123,45,063,45063,7617,3097,179580170,178855546,7617,3097,179580170,178855546,262391,113957,1962508855,1810175317,100,100,100,100,2.9,2.72,9.15,9.88
-29125,45,027,45027,1484,736,164625751,145350123,3072,1509,324915905,274366569,34971,17467,1801724715,1571958092,48.31,48.77,50.67,52.98,4.24,4.21,9.14,9.25
-29125,45,085,45085,1588,773,160290154,129016446,3072,1509,324915905,274366569,107456,46011,1766591961,1722512472,51.69,51.23,49.33,47.02,1.48,1.68,9.07,7.49
-29126,45,071,45071,2267,1051,206396411,199587495,2267,1051,206396411,199587495,37508,17922,1676463477,1631788278,100,100,100,100,6.04,5.86,12.31,12.23
-29127,45,071,45071,7972,4462,275849861,249470014,8333,4757,297072043,265594645,37508,17922,1676463477,1631788278,95.67,93.8,92.86,93.93,21.25,24.9,16.45,15.29
-29127,45,081,45081,361,295,21222182,16124631,8333,4757,297072043,265594645,19875,9289,1196109919,1172690632,4.33,6.2,7.14,6.07,1.82,3.18,1.77,1.38
-29128,45,055,45055,389,184,68499977,67107058,5866,2274,282980322,279683401,61697,27478,1917615566,1881787617,6.63,8.09,24.21,23.99,0.63,0.67,3.57,3.57
-29128,45,061,45061,635,271,35768219,35685289,5866,2274,282980322,279683401,19220,7775,1065087620,1062372545,10.83,11.92,12.64,12.76,3.3,3.49,3.36,3.36
-29128,45,085,45085,4842,1819,178712126,176891054,5866,2274,282980322,279683401,107456,46011,1766591961,1722512472,82.54,79.99,63.15,63.25,4.51,3.95,10.12,10.27
-29129,45,003,45003,1647,738,127855358,127213903,3164,1370,215862316,214286199,160099,72249,2798729341,2773965154,52.05,53.87,59.23,59.37,1.03,1.02,4.57,4.59
-29129,45,037,45037,349,89,26018425,25677698,3164,1370,215862316,214286199,26985,10559,1312346522,1296046259,11.03,6.5,12.05,11.98,1.29,0.84,1.98,1.98
-29129,45,081,45081,1168,543,61988533,61394598,3164,1370,215862316,214286199,19875,9289,1196109919,1172690632,36.92,39.64,28.72,28.65,5.88,5.85,5.18,5.24
-29130,45,039,45039,5482,2818,345985881,331911363,6655,3495,409512754,390620096,23956,11681,1838584522,1777449480,82.37,80.63,84.49,84.97,22.88,24.12,18.82,18.67
-29130,45,055,45055,887,584,59374612,54588824,6655,3495,409512754,390620096,61697,27478,1917615566,1881787617,13.33,16.71,14.5,13.97,1.44,2.13,3.1,2.9
-29130,45,079,45079,286,93,4152261,4119909,6655,3495,409512754,390620096,384504,161725,1998723402,1960797690,4.3,2.66,1.01,1.05,0.07,0.06,0.21,0.21
-29133,45,075,45075,1044,467,141492388,141392332,1044,467,141492388,141392332,92501,42504,2921252629,2864787762,100,100,100,100,1.13,1.1,4.84,4.94
-29135,45,017,45017,8688,4046,500190863,496310368,8919,4154,502054089,498173594,15175,7340,1016527778,987176844,97.41,97.4,99.63,99.63,57.25,55.12,49.21,50.28
-29135,45,075,45075,231,108,1863226,1863226,8919,4154,502054089,498173594,92501,42504,2921252629,2864787762,2.59,2.6,0.37,0.37,0.25,0.25,0.06,0.07
-29137,45,003,45003,2285,1186,200716398,199622045,2539,1305,222014109,220670275,160099,72249,2798729341,2773965154,90,90.88,90.41,90.46,1.43,1.64,7.17,7.2
-29137,45,075,45075,254,119,21297711,21048230,2539,1305,222014109,220670275,92501,42504,2921252629,2864787762,10,9.12,9.59,9.54,0.27,0.28,0.73,0.73
-29138,45,037,45037,14,6,5228443,5228443,10883,4540,578675859,572853943,26985,10559,1312346522,1296046259,0.13,0.13,0.9,0.91,0.05,0.06,0.4,0.4
-29138,45,047,45047,168,75,14103537,14103537,10883,4540,578675859,572853943,69661,31054,1198973077,1177734978,1.54,1.65,2.44,2.46,0.24,0.24,1.18,1.2
-29138,45,081,45081,10701,4459,559343879,553521963,10883,4540,578675859,572853943,19875,9289,1196109919,1172690632,98.33,98.22,96.66,96.63,53.84,48,46.76,47.2
-29142,45,075,45075,4890,2484,150736297,133857445,4890,2484,150736297,133857445,92501,42504,2921252629,2864787762,100,100,100,100,5.29,5.84,5.16,4.67
-29145,45,071,45071,837,496,115743264,115458370,837,496,115743264,115458370,37508,17922,1676463477,1631788278,100,100,100,100,2.23,2.77,6.9,7.08
-29146,45,003,45003,453,235,49395088,49262791,1767,901,164945915,164577137,160099,72249,2798729341,2773965154,25.64,26.08,29.95,29.93,0.28,0.33,1.76,1.78
-29146,45,075,45075,1314,666,115550827,115314346,1767,901,164945915,164577137,92501,42504,2921252629,2864787762,74.36,73.92,70.05,70.07,1.42,1.57,3.96,4.03
-29147,45,079,45079,0,0,485430,485430,0,0,485430,485430,384504,161725,1998723402,1960797690,0,0,100,100,0,0,0.02,0.02
-29148,45,027,45027,6230,4496,458020328,269438444,6230,4496,458020328,269438444,34971,17467,1801724715,1571958092,100,100,100,100,17.81,25.74,25.42,17.14
-29150,45,085,45085,40031,17878,112496330,111300031,40031,17878,112496330,111300031,107456,46011,1766591961,1722512472,100,100,100,100,37.25,38.86,6.37,6.46
-29152,45,085,45085,2393,894,12104464,12039288,2393,894,12104464,12039288,107456,46011,1766591961,1722512472,100,100,100,100,2.23,1.94,0.69,0.7
-29153,45,061,45061,447,227,43054245,43018725,15633,6625,370606978,370082042,19220,7775,1065087620,1062372545,2.86,3.43,11.62,11.62,2.33,2.92,4.04,4.05
-29153,45,085,45085,15186,6398,327552733,327063317,15633,6625,370606978,370082042,107456,46011,1766591961,1722512472,97.14,96.57,88.38,88.38,14.13,13.91,18.54,18.99
-29154,45,085,45085,28135,11707,208135904,205710796,28135,11707,208135904,205710796,107456,46011,1766591961,1722512472,100,100,100,100,26.18,25.44,11.78,11.94
-29160,45,017,45017,1903,921,116364930,114796229,8255,3710,306788272,303697870,15175,7340,1016527778,987176844,23.05,24.82,37.93,37.8,12.54,12.55,11.45,11.63
-29160,45,063,45063,6352,2789,190423342,188901641,8255,3710,306788272,303697870,262391,113957,1962508855,1810175317,76.95,75.18,62.07,62.2,2.42,2.45,9.7,10.44
-29161,45,031,45031,2079,902,86240728,86113766,11383,4865,349127688,348728034,68681,30297,1468017840,1453380435,18.26,18.54,24.7,24.69,3.03,2.98,5.87,5.93
-29161,45,041,45041,9304,3963,262886960,262614268,11383,4865,349127688,348728034,136885,58666,2081638394,2071897847,81.74,81.46,75.3,75.31,6.8,6.76,12.63,12.68
-29162,45,027,45027,4090,1124,85907197,85785342,4122,1136,86975573,86853718,34971,17467,1801724715,1571958092,99.22,98.94,98.77,98.77,11.7,6.43,4.77,5.46
-29162,45,085,45085,32,12,1068376,1068376,4122,1136,86975573,86853718,107456,46011,1766591961,1722512472,0.78,1.06,1.23,1.23,0.03,0.03,0.06,0.06
-29163,45,075,45075,1975,971,78016350,76750775,1975,971,78016350,76750775,92501,42504,2921252629,2864787762,100,100,100,100,2.14,2.28,2.67,2.68
-29164,45,003,45003,4690,2147,263708434,261348813,4690,2147,263708434,261348813,160099,72249,2798729341,2773965154,100,100,100,100,2.93,2.97,9.42,9.42
-29166,45,081,45081,904,447,85311835,84970465,904,447,85311835,84970465,19875,9289,1196109919,1172690632,100,100,100,100,4.55,4.81,7.13,7.25
-29168,45,085,45085,3582,1526,299477025,294616390,3582,1526,299477025,294616390,107456,46011,1766591961,1722512472,100,100,100,100,3.33,3.32,16.95,17.1
-29169,45,063,45063,22845,11454,31979653,31065704,22845,11454,31979653,31065704,262391,113957,1962508855,1810175317,100,100,100,100,8.71,10.05,1.63,1.72
-29170,45,063,45063,19988,8588,63285946,62391008,19988,8588,63285946,62391008,262391,113957,1962508855,1810175317,100,100,100,100,7.62,7.54,3.22,3.45
-29172,45,063,45063,9293,3894,66255116,65038176,9293,3894,66255116,65038176,262391,113957,1962508855,1810175317,100,100,100,100,3.54,3.42,3.38,3.59
-29175,45,055,45055,378,186,19439166,19439166,378,186,19439166,19439166,61697,27478,1917615566,1881787617,100,100,100,100,0.61,0.68,1.01,1.03
-29178,45,059,45059,90,62,64519893,64100804,3377,1805,380455056,379204014,66537,30709,1874733356,1848742669,2.67,3.43,16.96,16.9,0.14,0.2,3.44,3.47
-29178,45,071,45071,2743,1451,209110574,208278621,3377,1805,380455056,379204014,37508,17922,1676463477,1631788278,81.23,80.39,54.96,54.93,7.31,8.1,12.47,12.76
-29178,45,087,45087,544,292,106824589,106824589,3377,1805,380455056,379204014,28961,14153,1336501690,1331696606,16.11,16.18,28.08,28.17,1.88,2.06,7.99,8.02
-29180,45,039,45039,14033,6745,772868456,761338412,14267,6868,801454500,789924456,23956,11681,1838584522,1777449480,98.36,98.21,96.43,96.38,58.58,57.74,42.04,42.83
-29180,45,079,45079,234,123,28586044,28586044,14267,6868,801454500,789924456,384504,161725,1998723402,1960797690,1.64,1.79,3.57,3.62,0.06,0.08,1.43,1.46
-29201,45,079,45079,20594,9861,31054580,29578724,20594,9861,31054580,29578724,384504,161725,1998723402,1960797690,100,100,100,100,5.36,6.1,1.55,1.51
-29202,45,079,45079,135,161,24408,24408,135,161,24408,24408,384504,161725,1998723402,1960797690,100,100,100,100,0.04,0.1,0,0
-29203,45,079,45079,39843,17023,166667854,164068680,39843,17023,166667854,164068680,384504,161725,1998723402,1960797690,100,100,100,100,10.36,10.53,8.34,8.37
-29204,45,079,45079,19952,8973,16753673,16731714,19952,8973,16753673,16731714,384504,161725,1998723402,1960797690,100,100,100,100,5.19,5.55,0.84,0.85
-29205,45,079,45079,24822,12913,17024521,17024521,24822,12913,17024521,17024521,384504,161725,1998723402,1960797690,100,100,100,100,6.46,7.98,0.85,0.87
-29206,45,079,45079,17788,9015,24179231,22201127,17788,9015,24179231,22201127,384504,161725,1998723402,1960797690,100,100,100,100,4.63,5.57,1.21,1.13
-29207,45,079,45079,11592,10,171392505,169398947,11592,10,171392505,169398947,384504,161725,1998723402,1960797690,100,100,100,100,3.01,0.01,8.58,8.64
-29208,45,079,45079,695,0,171571,171571,695,0,171571,171571,384504,161725,1998723402,1960797690,100,0,100,100,0.18,0,0.01,0.01
-29209,45,079,45079,33324,14765,136408343,134032184,33324,14765,136408343,134032184,384504,161725,1998723402,1960797690,100,100,100,100,8.67,9.13,6.82,6.84
-29210,45,063,45063,10968,5254,13219812,13000882,40356,18469,43232956,41346365,262391,113957,1962508855,1810175317,27.18,28.45,30.58,31.44,4.18,4.61,0.67,0.72
-29210,45,079,45079,29388,13215,30013144,28345483,40356,18469,43232956,41346365,384504,161725,1998723402,1960797690,72.82,71.55,69.42,68.56,7.64,8.17,1.5,1.45
-29212,45,063,45063,20831,9056,61947622,38658628,28798,12912,82320037,58491696,262391,113957,1962508855,1810175317,72.33,70.14,75.25,66.09,7.94,7.95,3.16,2.14
-29212,45,079,45079,7967,3856,20372415,19833068,28798,12912,82320037,58491696,384504,161725,1998723402,1960797690,27.67,29.86,24.75,33.91,2.07,2.38,1.02,1.01
-29223,45,079,45079,50141,22155,67641562,66070797,50141,22155,67641562,66070797,384504,161725,1998723402,1960797690,100,100,100,100,13.04,13.7,3.38,3.37
-29225,45,079,45079,1228,0,41936,41936,1228,0,41936,41936,384504,161725,1998723402,1960797690,100,0,100,100,0.32,0,0,0
-29229,45,079,45079,44229,16734,53444984,53138241,44229,16734,53444984,53138241,384504,161725,1998723402,1960797690,100,100,100,100,11.5,10.35,2.67,2.71
-29301,45,083,45083,31051,13806,71470017,70933338,31051,13806,71470017,70933338,284307,122628,2121828822,2092518606,100,100,100,100,10.92,11.26,3.37,3.39
-29302,45,083,45083,16571,7694,130196805,128697478,16571,7694,130196805,128697478,284307,122628,2121828822,2092518606,100,100,100,100,5.83,6.27,6.14,6.15
-29303,45,083,45083,25058,10308,81063042,80780452,25058,10308,81063042,80780452,284307,122628,2121828822,2092518606,100,100,100,100,8.81,8.41,3.82,3.86
-29306,45,083,45083,15861,7557,49985625,49276251,15861,7557,49985625,49276251,284307,122628,2121828822,2092518606,100,100,100,100,5.58,6.16,2.36,2.35
-29307,45,021,45021,397,168,11923968,11923968,18751,9252,118133499,116775125,55342,23997,1028686708,1016981703,2.12,1.82,10.09,10.21,0.72,0.7,1.16,1.17
-29307,45,083,45083,18354,9084,106209531,104851157,18751,9252,118133499,116775125,284307,122628,2121828822,2092518606,97.88,98.18,89.91,89.79,6.46,7.41,5.01,5.01
-29316,45,083,45083,22281,8986,56488233,56396320,22281,8986,56488233,56396320,284307,122628,2121828822,2092518606,100,100,100,100,7.84,7.33,2.66,2.7
-29320,45,083,45083,530,248,1406601,1405761,530,248,1406601,1405761,284307,122628,2121828822,2092518606,100,100,100,100,0.19,0.2,0.07,0.07
-29321,45,087,45087,2596,1236,101485382,101443132,2596,1236,101485382,101443132,28961,14153,1336501690,1331696606,100,100,100,100,8.96,8.73,7.59,7.62
-29322,45,045,45045,138,70,2378056,2373342,8781,3729,153052263,151491229,451225,195462,2058692278,2033451179,1.57,1.88,1.55,1.57,0.03,0.04,0.12,0.12
-29322,45,083,45083,8643,3659,150674207,149117887,8781,3729,153052263,151491229,284307,122628,2121828822,2092518606,98.43,98.12,98.45,98.43,3.04,2.98,7.1,7.13
-29323,45,021,45021,1542,684,23783610,23680181,14446,6129,185473935,182036855,55342,23997,1028686708,1016981703,10.67,11.16,12.82,13.01,2.79,2.85,2.31,2.33
-29323,45,083,45083,12904,5445,161690325,158356674,14446,6129,185473935,182036855,284307,122628,2121828822,2092518606,89.33,88.84,87.18,86.99,4.54,4.44,7.62,7.57
-29324,45,083,45083,167,79,603632,571230,167,79,603632,571230,284307,122628,2121828822,2092518606,100,100,100,100,0.06,0.06,0.03,0.03
-29325,45,059,45059,15222,6384,402110829,399943595,15222,6384,402110829,399943595,66537,30709,1874733356,1848742669,100,100,100,100,22.88,20.79,21.45,21.63
-29329,45,083,45083,278,119,623966,595408,278,119,623966,595408,284307,122628,2121828822,2092518606,100,100,100,100,0.1,0.1,0.03,0.03
-29330,45,021,45021,3055,1251,49794832,49276280,8401,3630,94645672,93785225,55342,23997,1028686708,1016981703,36.36,34.46,52.61,52.54,5.52,5.21,4.84,4.85
-29330,45,083,45083,5346,2379,44850840,44508945,8401,3630,94645672,93785225,284307,122628,2121828822,2092518606,63.64,65.54,47.39,47.46,1.88,1.94,2.11,2.13
-29331,45,083,45083,142,78,4614333,4604124,142,78,4614333,4604124,284307,122628,2121828822,2092518606,100,100,100,100,0.05,0.06,0.22,0.22
-29332,45,059,45059,2288,1792,128699845,120876654,2435,1897,131437910,123614719,66537,30709,1874733356,1848742669,93.96,94.46,97.92,97.79,3.44,5.84,6.86,6.54
-29332,45,071,45071,147,105,2738065,2738065,2435,1897,131437910,123614719,37508,17922,1676463477,1631788278,6.04,5.54,2.08,2.21,0.39,0.59,0.16,0.17
-29333,45,083,45083,374,175,984872,984872,374,175,984872,984872,284307,122628,2121828822,2092518606,100,100,100,100,0.13,0.14,0.05,0.05
-29334,45,083,45083,11331,4793,58974277,57473615,11331,4793,58974277,57473615,284307,122628,2121828822,2092518606,100,100,100,100,3.99,3.91,2.78,2.75
-29335,45,059,45059,592,306,48131412,47425748,5654,2024,232611325,230560585,66537,30709,1874733356,1848742669,10.47,15.12,20.69,20.57,0.89,1,2.57,2.57
-29335,45,083,45083,4846,1596,157217252,155889886,5654,2024,232611325,230560585,284307,122628,2121828822,2092518606,85.71,78.85,67.59,67.61,1.7,1.3,7.41,7.45
-29335,45,087,45087,216,122,27262661,27244951,5654,2024,232611325,230560585,28961,14153,1336501690,1331696606,3.82,6.03,11.72,11.82,0.75,0.86,2.04,2.05
-29338,45,083,45083,85,45,235165,235165,85,45,235165,235165,284307,122628,2121828822,2092518606,100,100,100,100,0.03,0.04,0.01,0.01
-29340,45,021,45021,20763,9049,427372966,422255926,20763,9049,427372966,422255926,55342,23997,1028686708,1016981703,100,100,100,100,37.52,37.71,41.55,41.52
-29341,45,021,45021,19330,8277,245506238,242750053,19330,8277,245506238,242750053,55342,23997,1028686708,1016981703,100,100,100,100,34.93,34.49,23.87,23.87
-29346,45,083,45083,307,129,550320,550320,307,129,550320,550320,284307,122628,2121828822,2092518606,100,100,100,100,0.11,0.11,0.03,0.03
-29349,45,083,45083,30129,12399,209419999,201801353,30129,12399,209419999,201801353,284307,122628,2121828822,2092518606,100,100,100,100,10.6,10.11,9.87,9.64
-29351,45,059,45059,1563,763,12331782,12311866,1563,763,12331782,12311866,66537,30709,1874733356,1848742669,100,100,100,100,2.35,2.48,0.66,0.67
-29353,45,087,45087,4174,1969,242277696,241500643,4174,1969,242277696,241500643,28961,14153,1336501690,1331696606,100,100,100,100,14.41,13.91,18.13,18.13
-29355,45,059,45059,480,218,46348761,46256720,810,376,177511657,177292655,66537,30709,1874733356,1848742669,59.26,57.98,26.11,26.09,0.72,0.71,2.47,2.5
-29355,45,071,45071,330,158,131162896,131035935,810,376,177511657,177292655,37508,17922,1676463477,1631788278,40.74,42.02,73.89,73.91,0.88,0.88,7.82,8.03
-29356,45,045,45045,3755,2110,164438274,162528300,8074,4214,214179671,212216093,451225,195462,2058692278,2033451179,46.51,50.07,76.78,76.59,0.83,1.08,7.99,7.99
-29356,45,083,45083,4319,2104,49741397,49687793,8074,4214,214179671,212216093,284307,122628,2121828822,2092518606,53.49,49.93,23.22,23.41,1.52,1.72,2.34,2.37
-29360,45,059,45059,20977,9453,376580297,375330590,20977,9453,376580297,375330590,66537,30709,1874733356,1848742669,100,100,100,100,31.53,30.78,20.09,20.3
-29364,45,087,45087,592,302,9174036,8162923,592,302,9174036,8162923,28961,14153,1336501690,1331696606,100,100,100,100,2.04,2.13,0.69,0.61
-29365,45,083,45083,10146,4268,49178486,47295963,10146,4268,49178486,47295963,284307,122628,2121828822,2092518606,100,100,100,100,3.57,3.48,2.32,2.26
-29368,45,083,45083,68,57,413636,413636,68,57,413636,413636,284307,122628,2121828822,2092518606,100,100,100,100,0.02,0.05,0.02,0.02
-29369,45,083,45083,13044,5338,74860293,73848623,13044,5338,74860293,73848623,284307,122628,2121828822,2092518606,100,100,100,100,4.59,4.35,3.53,3.53
-29370,45,059,45059,1045,475,124040588,123895647,1045,475,124040588,123895647,66537,30709,1874733356,1848742669,100,100,100,100,1.57,1.55,6.62,6.7
-29372,45,021,45021,602,286,45882952,45434929,4507,2176,110976031,110267217,55342,23997,1028686708,1016981703,13.36,13.14,41.34,41.2,1.09,1.19,4.46,4.47
-29372,45,083,45083,3317,1606,36509296,36324581,4507,2176,110976031,110267217,284307,122628,2121828822,2092518606,73.6,73.81,32.9,32.94,1.17,1.31,1.72,1.74
-29372,45,087,45087,588,284,28583783,28507707,4507,2176,110976031,110267217,28961,14153,1336501690,1331696606,13.05,13.05,25.76,25.85,2.03,2.01,2.14,2.14
-29373,45,083,45083,297,140,1887924,1713021,297,140,1887924,1713021,284307,122628,2121828822,2092518606,100,100,100,100,0.1,0.11,0.09,0.08
-29374,45,083,45083,3365,1448,123930933,123241593,3534,1526,134712926,133979406,284307,122628,2121828822,2092518606,95.22,94.89,92,91.99,1.18,1.18,5.84,5.89
-29374,45,087,45087,169,78,10781993,10737813,3534,1526,134712926,133979406,28961,14153,1336501690,1331696606,4.78,5.11,8,8.01,0.58,0.55,0.81,0.81
-29375,45,083,45083,95,49,368350,368350,95,49,368350,368350,284307,122628,2121828822,2092518606,100,100,100,100,0.03,0.04,0.02,0.02
-29376,45,083,45083,6909,2752,97731686,96581139,6909,2752,97731686,96581139,284307,122628,2121828822,2092518606,100,100,100,100,2.43,2.24,4.61,4.62
-29377,45,083,45083,761,359,3454981,3392652,761,359,3454981,3392652,284307,122628,2121828822,2092518606,100,100,100,100,0.27,0.29,0.16,0.16
-29378,45,083,45083,207,88,225320,225320,207,88,225320,225320,284307,122628,2121828822,2092518606,100,100,100,100,0.07,0.07,0.01,0.01
-29379,45,087,45087,19186,9378,663662172,661439317,19186,9378,663662172,661439317,28961,14153,1336501690,1331696606,100,100,100,100,66.25,66.26,49.66,49.67
-29384,45,059,45059,3945,2644,131690100,122650557,3945,2644,131690100,122650557,66537,30709,1874733356,1848742669,100,100,100,100,5.93,8.61,7.02,6.63
-29385,45,083,45083,7221,3029,50282842,49439616,7221,3029,50282842,49439616,284307,122628,2121828822,2092518606,100,100,100,100,2.54,2.47,2.37,2.36
-29388,45,059,45059,284,130,14390802,14194208,14470,6278,255264227,253365166,66537,30709,1874733356,1848742669,1.96,2.07,5.64,5.6,0.43,0.42,0.77,0.77
-29388,45,083,45083,14186,6148,240873425,239170958,14470,6278,255264227,253365166,284307,122628,2121828822,2092518606,98.04,97.93,94.36,94.4,4.99,5.01,11.35,11.43
-29401,45,019,45019,10895,5595,8431842,4017465,10895,5595,8431842,4017465,350209,169984,3517194111,2372659352,100,100,100,100,3.11,3.29,0.24,0.17
-29403,45,019,45019,20818,10689,19310258,13837181,20818,10689,19310258,13837181,350209,169984,3517194111,2372659352,100,100,100,100,5.94,6.29,0.55,0.58
-29404,45,019,45019,1348,377,13220372,13171747,1348,377,13220372,13171747,350209,169984,3517194111,2372659352,100,100,100,100,0.38,0.22,0.38,0.56
-29405,45,019,45019,26328,11347,45673262,38502950,26328,11347,45673262,38502950,350209,169984,3517194111,2372659352,100,100,100,100,7.52,6.68,1.3,1.62
-29406,45,015,45015,160,0,61170,61170,29314,13211,38665842,37637298,177843,73372,3183708107,2846025358,0.55,0,0.16,0.16,0.09,0,0,0
-29406,45,019,45019,29154,13211,38604672,37576128,29314,13211,38665842,37637298,350209,169984,3517194111,2372659352,99.45,100,99.84,99.84,8.32,7.77,1.1,1.58
-29407,45,019,45019,34827,17513,46405839,39752637,34827,17513,46405839,39752637,350209,169984,3517194111,2372659352,100,100,100,100,9.94,10.3,1.32,1.68
-29409,45,019,45019,2100,44,166970,166970,2100,44,166970,166970,350209,169984,3517194111,2372659352,100,100,100,100,0.6,0.03,0,0.01
-29410,45,015,45015,17816,7809,29509647,27386186,17816,7809,29509647,27386186,177843,73372,3183708107,2846025358,100,100,100,100,10.02,10.64,0.93,0.96
-29412,45,019,45019,35850,17302,133481249,101625607,35850,17302,133481249,101625607,350209,169984,3517194111,2372659352,100,100,100,100,10.24,10.18,3.8,4.28
-29414,45,019,45019,31841,15536,90417333,86946260,31883,15554,94971023,91340251,350209,169984,3517194111,2372659352,99.87,99.88,95.21,95.19,9.09,9.14,2.57,3.66
-29414,45,035,45035,42,18,4553690,4393991,31883,15554,94971023,91340251,136555,55186,1491330917,1484665975,0.13,0.12,4.79,4.81,0.03,0.03,0.31,0.3
-29418,45,019,45019,18134,8619,28001325,27223323,23540,10960,35907206,34927465,350209,169984,3517194111,2372659352,77.03,78.64,77.98,77.94,5.18,5.07,0.8,1.15
-29418,45,035,45035,5406,2341,7905881,7704142,23540,10960,35907206,34927465,136555,55186,1491330917,1484665975,22.97,21.36,22.02,22.06,3.96,4.24,0.53,0.52
-29420,45,019,45019,5298,2092,10824657,10750990,21834,8389,29461915,29046494,350209,169984,3517194111,2372659352,24.26,24.94,36.74,37.01,1.51,1.23,0.31,0.45
-29420,45,035,45035,16536,6297,18637258,18295504,21834,8389,29461915,29046494,136555,55186,1491330917,1484665975,75.74,75.06,63.26,62.99,12.11,11.41,1.25,1.23
-29423,45,019,45019,956,0,103115,103115,956,0,103115,103115,350209,169984,3517194111,2372659352,100,0,100,100,0.27,0,0,0
-29424,45,019,45019,389,7,47840,47840,389,7,47840,47840,350209,169984,3517194111,2372659352,100,100,100,100,0.11,0,0,0
-29426,45,019,45019,1522,729,136480493,135451425,1741,808,175590782,174299019,350209,169984,3517194111,2372659352,87.42,90.22,77.73,77.71,0.43,0.43,3.88,5.71
-29426,45,035,45035,219,79,39110289,38847594,1741,808,175590782,174299019,136555,55186,1491330917,1484665975,12.58,9.78,22.27,22.29,0.16,0.14,2.62,2.62
-29429,45,019,45019,2737,1202,341566254,281922927,2737,1202,341566254,281922927,350209,169984,3517194111,2372659352,100,100,100,100,0.78,0.71,9.71,11.88
-29431,45,015,45015,6071,2785,230404781,203852193,6071,2785,230404781,203852193,177843,73372,3183708107,2846025358,100,100,100,100,3.41,3.8,7.24,7.16
-29432,45,009,45009,453,298,89845978,89637970,2853,1462,303788348,303280315,15987,7716,1024501392,1018822336,15.88,20.38,29.58,29.56,2.83,3.86,8.77,8.8
-29432,45,035,45035,105,75,21812462,21744682,2853,1462,303788348,303280315,136555,55186,1491330917,1484665975,3.68,5.13,7.18,7.17,0.08,0.14,1.46,1.46
-29432,45,075,45075,2295,1089,192129908,191897663,2853,1462,303788348,303280315,92501,42504,2921252629,2864787762,80.44,74.49,63.24,63.27,2.48,2.56,6.58,6.7
-29434,45,015,45015,537,269,145906152,143755891,537,269,145906152,143755891,177843,73372,3183708107,2846025358,100,100,100,100,0.3,0.37,4.58,5.05
-29435,45,029,45029,4122,1859,178047624,177963473,4122,1859,178047624,177963473,38892,19901,2935196608,2736299047,100,100,100,100,10.6,9.34,6.07,6.5
-29436,45,015,45015,4392,2304,285898606,201120739,4471,2337,293649980,208872113,177843,73372,3183708107,2846025358,98.23,98.59,97.36,96.29,2.47,3.14,8.98,7.07
-29436,45,075,45075,79,33,7751374,7751374,4471,2337,293649980,208872113,92501,42504,2921252629,2864787762,1.77,1.41,2.64,3.71,0.09,0.08,0.27,0.27
-29437,45,035,45035,2380,1100,241927030,241247530,2380,1100,241927030,241247530,136555,55186,1491330917,1484665975,100,100,100,100,1.74,1.99,16.22,16.25
-29438,45,019,45019,1879,1145,209058169,175600792,2408,3481,241118215,193374218,350209,169984,3517194111,2372659352,78.03,32.89,86.7,90.81,0.54,0.67,5.94,7.4
-29438,45,029,45029,529,2336,32060046,17773426,2408,3481,241118215,193374218,38892,19901,2935196608,2736299047,21.97,67.11,13.3,9.19,1.36,11.74,1.09,0.65
-29439,45,019,45019,2399,2236,9606934,7531346,2399,2236,9606934,7531346,350209,169984,3517194111,2372659352,100,100,100,100,0.69,1.32,0.27,0.32
-29440,45,043,45043,28469,13117,1486290111,1354350578,28469,13117,1486290111,1354350578,60158,33672,2679722804,2107076193,100,100,100,100,47.32,38.96,55.46,64.28
-29445,45,015,45015,53588,20609,160832005,151553431,53588,20609,160832005,151553431,177843,73372,3183708107,2846025358,100,100,100,100,30.13,28.09,5.05,5.33
-29446,45,029,45029,1138,660,500368222,439149643,1138,660,500368222,439149643,38892,19901,2935196608,2736299047,100,100,100,100,2.93,3.32,17.05,16.05
-29448,45,035,45035,2356,1042,126290388,125367768,2356,1042,126290388,125367768,136555,55186,1491330917,1484665975,100,100,100,100,1.73,1.89,8.47,8.44
-29449,45,019,45019,7749,3545,233864886,204152028,7749,3545,233864886,204152028,350209,169984,3517194111,2372659352,100,100,100,100,2.21,2.09,6.65,8.6
-29450,45,015,45015,3052,1307,361309150,355972540,3105,1335,379415774,374079164,177843,73372,3183708107,2846025358,98.29,97.9,95.23,95.16,1.72,1.78,11.35,12.51
-29450,45,019,45019,53,28,18106624,18106624,3105,1335,379415774,374079164,350209,169984,3517194111,2372659352,1.71,2.1,4.77,4.84,0.02,0.02,0.51,0.76
-29451,45,019,45019,4205,4398,42820787,25927753,4205,4398,42820787,25927753,350209,169984,3517194111,2372659352,100,100,100,100,1.2,2.59,1.22,1.09
-29452,45,029,45029,394,187,164737654,149228073,394,187,164737654,149228073,38892,19901,2935196608,2736299047,100,100,100,100,1.01,0.94,5.61,5.45
-29453,45,015,45015,1252,578,362097693,359396994,1252,578,362097693,359396994,177843,73372,3183708107,2846025358,100,100,100,100,0.7,0.79,11.37,12.63
-29455,45,019,45019,20478,13079,305905618,277368420,20478,13079,305905618,277368420,350209,169984,3517194111,2372659352,100,100,100,100,5.85,7.69,8.7,11.69
-29456,45,015,45015,10602,3856,13815067,13815067,27864,10732,47329034,47223225,177843,73372,3183708107,2846025358,38.05,35.93,29.19,29.25,5.96,5.26,0.43,0.49
-29456,45,019,45019,4727,1978,21481392,21481392,27864,10732,47329034,47223225,350209,169984,3517194111,2372659352,16.96,18.43,45.39,45.49,1.35,1.16,0.61,0.91
-29456,45,035,45035,12535,4898,12032575,11926766,27864,10732,47329034,47223225,136555,55186,1491330917,1484665975,44.99,45.64,25.42,25.26,9.18,8.88,0.81,0.8
-29458,45,019,45019,2713,1400,498767270,427938395,2713,1400,498767270,427938395,350209,169984,3517194111,2372659352,100,100,100,100,0.77,0.82,14.18,18.04
-29461,45,015,45015,30141,12642,450173902,421519829,30141,12642,450173902,421519829,177843,73372,3183708107,2846025358,100,100,100,100,16.95,17.23,14.14,14.81
-29464,45,019,45019,43649,21157,95530655,77038429,43649,21157,95530655,77038429,350209,169984,3517194111,2372659352,100,100,100,100,12.46,12.45,2.72,3.25
-29466,45,019,45019,28725,11411,86398877,76030200,28725,11411,86398877,76030200,350209,169984,3517194111,2372659352,100,100,100,100,8.2,6.71,2.46,3.2
-29468,45,015,45015,2107,1147,288389521,193569412,2107,1147,288389521,193569412,177843,73372,3183708107,2846025358,100,100,100,100,1.18,1.56,9.06,6.8
-29469,45,015,45015,855,378,109131963,56890012,855,378,109131963,56890012,177843,73372,3183708107,2846025358,100,100,100,100,0.48,0.52,3.43,2
-29470,45,019,45019,3884,1612,147806782,146717200,4232,1767,218912291,217602781,350209,169984,3517194111,2372659352,91.78,91.23,67.52,67.42,1.11,0.95,4.2,6.18
-29470,45,035,45035,348,155,71105509,70885581,4232,1767,218912291,217602781,136555,55186,1491330917,1484665975,8.22,8.77,32.48,32.58,0.25,0.28,4.77,4.77
-29471,45,035,45035,1537,729,108285715,108150473,1537,729,108285715,108150473,136555,55186,1491330917,1484665975,100,100,100,100,1.13,1.32,7.26,7.28
-29472,45,015,45015,2327,787,151531931,151312661,9416,3234,482946925,480658585,177843,73372,3183708107,2846025358,24.71,24.34,31.38,31.48,1.31,1.07,4.76,5.32
-29472,45,029,45029,605,371,41222595,40321346,9416,3234,482946925,480658585,38892,19901,2935196608,2736299047,6.43,11.47,8.54,8.39,1.56,1.86,1.4,1.47
-29472,45,035,45035,6484,2076,290192399,289024578,9416,3234,482946925,480658585,136555,55186,1491330917,1484665975,68.86,64.19,60.09,60.13,4.75,3.76,19.46,19.47
-29474,45,029,45029,2176,1029,291066092,290782088,2176,1029,291066092,290782088,38892,19901,2935196608,2736299047,100,100,100,100,5.59,5.17,9.92,10.63
-29475,45,029,45029,2874,1344,278119425,277756893,2874,1344,278119425,277756893,38892,19901,2935196608,2736299047,100,100,100,100,7.39,6.75,9.48,10.15
-29477,45,035,45035,6789,3068,287528903,286842260,6789,3068,287528903,286842260,136555,55186,1491330917,1484665975,100,100,100,100,4.97,5.56,19.28,19.32
-29479,45,015,45015,7337,3203,243843914,240841545,7337,3203,243843914,240841545,177843,73372,3183708107,2846025358,100,100,100,100,4.13,4.37,7.66,8.46
-29481,45,009,45009,234,131,36116136,36104667,1841,854,231458276,231214884,15987,7716,1024501392,1018822336,12.71,15.34,15.6,15.62,1.46,1.7,3.53,3.54
-29481,45,029,45029,1607,723,195342140,195110217,1841,854,231458276,231214884,38892,19901,2935196608,2736299047,87.29,84.66,84.4,84.38,4.13,3.63,6.66,7.13
-29482,45,019,45019,1791,1054,21470667,6665124,1791,1054,21470667,6665124,350209,169984,3517194111,2372659352,100,100,100,100,0.51,0.62,0.61,0.28
-29483,45,015,45015,27164,10667,182220448,182180024,66731,26575,350847308,350429585,177843,73372,3183708107,2846025358,40.71,40.14,51.94,51.99,15.27,14.54,5.72,6.4
-29483,45,019,45019,77,53,121157,121157,66731,26575,350847308,350429585,350209,169984,3517194111,2372659352,0.12,0.2,0.03,0.03,0.02,0.03,0,0.01
-29483,45,035,45035,39490,15855,168505703,168128404,66731,26575,350847308,350429585,136555,55186,1491330917,1484665975,59.18,59.66,48.03,47.98,28.92,28.73,11.3,11.32
-29485,45,019,45019,2958,1301,8370549,8370549,45057,18632,93731506,92503236,350209,169984,3517194111,2372659352,6.57,6.98,8.93,9.05,0.84,0.77,0.24,0.35
-29485,45,035,45035,42099,17331,85360957,84132687,45057,18632,93731506,92503236,136555,55186,1491330917,1484665975,93.43,93.02,91.07,90.95,30.83,31.4,5.72,5.67
-29487,45,019,45019,2725,1324,131113892,108513378,2725,1324,131113892,108513378,350209,169984,3517194111,2372659352,100,100,100,100,0.78,0.78,3.73,4.57
-29488,45,029,45029,22220,9789,597455405,595926334,22220,9789,597455405,595926334,38892,19901,2935196608,2736299047,100,100,100,100,57.13,49.19,20.35,21.78
-29492,45,015,45015,10262,4950,154616485,128831992,10262,4950,154616485,128831992,177843,73372,3183708107,2846025358,100,100,100,100,5.77,6.75,4.86,4.53
-29493,45,029,45029,117,52,2194201,2194201,117,52,2194201,2194201,38892,19901,2935196608,2736299047,100,100,100,100,0.3,0.26,0.07,0.08
-29501,45,031,45031,3430,1527,24360465,24187129,43220,19447,140316299,139086997,68681,30297,1468017840,1453380435,7.94,7.85,17.36,17.39,4.99,5.04,1.66,1.66
-29501,45,041,45041,39790,17920,115955834,114899868,43220,19447,140316299,139086997,136885,58666,2081638394,2071897847,92.06,92.15,82.64,82.61,29.07,30.55,5.57,5.55
-29505,45,041,45041,24279,10370,133967649,133849311,24279,10370,133967649,133849311,136885,58666,2081638394,2071897847,100,100,100,100,17.74,17.68,6.44,6.46
-29506,45,031,45031,35,17,21924033,21376122,20960,8522,331638415,328288553,68681,30297,1468017840,1453380435,0.17,0.2,6.61,6.51,0.05,0.06,1.49,1.47
-29506,45,041,45041,20925,8505,309714382,306912431,20960,8522,331638415,328288553,136885,58666,2081638394,2071897847,99.83,99.8,93.39,93.49,15.29,14.5,14.88,14.81
-29510,45,043,45043,6550,2807,275259513,273775476,11060,4824,792315283,787383988,60158,33672,2679722804,2107076193,59.22,58.19,34.74,34.77,10.89,8.34,10.27,12.99
-29510,45,089,45089,4510,2017,517055770,513608512,11060,4824,792315283,787383988,34423,15359,2426929387,2419459980,40.78,41.81,65.26,65.23,13.1,13.13,21.3,21.23
-29511,45,051,45051,5146,2247,159300617,159108499,5146,2247,159300617,159108499,269291,185992,3250441466,2936777435,100,100,100,100,1.91,1.21,4.9,5.42
-29512,45,069,45069,19514,7730,568693991,561552670,19514,7730,568693991,561552670,28933,12072,1256854415,1242350170,100,100,100,100,67.45,64.03,45.25,45.2
-29516,45,069,45069,829,386,244381377,241746327,829,386,244381377,241746327,28933,12072,1256854415,1242350170,100,100,100,100,2.87,3.2,19.44,19.46
-29518,45,089,45089,1232,568,125964350,125964350,1232,568,125964350,125964350,34423,15359,2426929387,2419459980,100,100,100,100,3.58,3.7,5.19,5.21
-29519,45,067,45067,285,142,11110155,11110155,285,142,11110155,11110155,33062,14953,1279805326,1267092919,100,100,100,100,0.86,0.95,0.87,0.88
-29520,45,025,45025,14617,6608,353590380,347122331,14617,6608,353590380,347122331,46734,21482,2086870398,2069595909,100,100,100,100,31.28,30.76,16.94,16.77
-29525,45,069,45069,2029,903,129226234,129006633,2029,903,129226234,129006633,28933,12072,1256854415,1242350170,100,100,100,100,7.01,7.48,10.28,10.38
-29526,45,051,45051,39033,17160,479536033,475926328,39033,17160,479536033,475926328,269291,185992,3250441466,2936777435,100,100,100,100,14.49,9.23,14.75,16.21
-29527,45,051,45051,22027,9676,409585280,401205431,22027,9676,409585280,401205431,269291,185992,3250441466,2936777435,100,100,100,100,8.18,5.2,12.6,13.66
-29530,45,041,45041,2915,1210,99187011,99154864,2915,1210,99187011,99154864,136885,58666,2081638394,2071897847,100,100,100,100,2.13,2.06,4.76,4.79
-29532,45,031,45031,20871,9119,270352363,268986048,20871,9119,270352363,268986048,68681,30297,1468017840,1453380435,100,100,100,100,30.39,30.1,18.42,18.51
-29536,45,033,45033,17722,7473,337444301,336628398,17722,7473,337444301,336628398,32062,13742,1053068918,1048614230,100,100,100,100,55.27,54.38,32.04,32.1
-29540,45,031,45031,5599,2251,289314984,285909137,5599,2251,289314984,285909137,68681,30297,1468017840,1453380435,100,100,100,100,8.15,7.43,19.71,19.67
-29541,45,041,45041,9465,3766,203580276,203454231,9465,3766,203580276,203454231,136885,58666,2081638394,2071897847,100,100,100,100,6.91,6.42,9.78,9.82
-29543,45,033,45033,606,261,47857188,47857188,606,261,47857188,47857188,32062,13742,1053068918,1048614230,100,100,100,100,1.89,1.9,4.54,4.56
-29544,45,051,45051,4909,2133,297598653,295179013,4909,2133,297598653,295179013,269291,185992,3250441466,2936777435,100,100,100,100,1.82,1.15,9.16,10.05
-29545,45,051,45051,1657,747,93222884,93063087,1657,747,93222884,93063087,269291,185992,3250441466,2936777435,100,100,100,100,0.62,0.4,2.87,3.17
-29546,45,067,45067,2834,1253,385664531,377391402,2834,1253,385664531,377391402,33062,14953,1279805326,1267092919,100,100,100,100,8.57,8.38,30.13,29.78
-29547,45,033,45033,2917,1157,103249518,103033826,2917,1157,103249518,103033826,32062,13742,1053068918,1048614230,100,100,100,100,9.1,8.42,9.8,9.83
-29550,45,025,45025,2234,947,110106874,107444992,32284,14406,561540360,552379341,46734,21482,2086870398,2069595909,6.92,6.57,19.61,19.45,4.78,4.41,5.28,5.19
-29550,45,031,45031,29919,13401,440123656,433772789,32284,14406,561540360,552379341,68681,30297,1468017840,1453380435,92.67,93.02,78.38,78.53,43.56,44.23,29.98,29.85
-29550,45,061,45061,131,58,11309830,11161560,32284,14406,561540360,552379341,19220,7775,1065087620,1062372545,0.41,0.4,2.01,2.02,0.68,0.75,1.06,1.05
-29554,45,041,45041,118,35,3699568,3699568,9332,4198,586037775,582323949,136885,58666,2081638394,2071897847,1.26,0.83,0.63,0.64,0.09,0.06,0.18,0.18
-29554,45,043,45043,3668,1612,310152336,307220366,9332,4198,586037775,582323949,60158,33672,2679722804,2107076193,39.31,38.4,52.92,52.76,6.1,4.79,11.57,14.58
-29554,45,089,45089,5546,2551,272185871,271404015,9332,4198,586037775,582323949,34423,15359,2426929387,2419459980,59.43,60.77,46.45,46.61,16.11,16.61,11.22,11.22
-29555,45,041,45041,6345,2612,232666318,229197543,6440,2656,241923315,238347670,136885,58666,2081638394,2071897847,98.52,98.34,96.17,96.16,4.64,4.45,11.18,11.06
-29555,45,089,45089,95,44,9256997,9150127,6440,2656,241923315,238347670,34423,15359,2426929387,2419459980,1.48,1.66,3.83,3.84,0.28,0.29,0.38,0.38
-29556,45,089,45089,12870,5889,451957942,451481169,12870,5889,451957942,451481169,34423,15359,2426929387,2419459980,100,100,100,100,37.39,38.34,18.62,18.66
-29560,45,027,45027,755,326,45495240,45495240,13664,6022,418781093,418551360,34971,17467,1801724715,1571958092,5.53,5.41,10.86,10.87,2.16,1.87,2.53,2.89
-29560,45,041,45041,11214,4927,195607032,195444140,13664,6022,418781093,418551360,136885,58666,2081638394,2071897847,82.07,81.82,46.71,46.7,8.19,8.4,9.4,9.43
-29560,45,089,45089,1695,769,177678821,177611980,13664,6022,418781093,418551360,34423,15359,2426929387,2419459980,12.4,12.77,42.43,42.43,4.92,5.01,7.32,7.34
-29563,45,033,45033,2676,1245,98395180,98006524,2676,1245,98395180,98006524,32062,13742,1053068918,1048614230,100,100,100,100,8.35,9.06,9.34,9.35
-29564,45,089,45089,985,506,170292742,169391623,985,506,170292742,169391623,34423,15359,2426929387,2419459980,100,100,100,100,2.86,3.29,7.02,7
-29565,45,033,45033,6111,2708,297229804,295893782,7127,3134,321704270,320325211,32062,13742,1053068918,1048614230,85.74,86.41,92.39,92.37,19.06,19.71,28.23,28.22
-29565,45,067,45067,913,379,15524863,15524863,7127,3134,321704270,320325211,33062,14953,1279805326,1267092919,12.81,12.09,4.83,4.85,2.76,2.53,1.21,1.23
-29565,45,069,45069,103,47,8949603,8906566,7127,3134,321704270,320325211,28933,12072,1256854415,1242350170,1.45,1.5,2.78,2.78,0.36,0.39,0.71,0.72
-29566,45,051,45051,15179,10234,80185115,78678484,15179,10234,80185115,78678484,269291,185992,3250441466,2936777435,100,100,100,100,5.64,5.5,2.47,2.68
-29567,45,033,45033,564,237,55283534,55259926,564,237,55283534,55259926,32062,13742,1053068918,1048614230,100,100,100,100,1.76,1.72,5.25,5.27
-29568,45,051,45051,12224,6322,239176606,238462477,12224,6322,239176606,238462477,269291,185992,3250441466,2936777435,100,100,100,100,4.54,3.4,7.36,8.12
-29569,45,051,45051,15951,6898,452080051,451326154,15951,6898,452080051,451326154,269291,185992,3250441466,2936777435,100,100,100,100,5.92,3.71,13.91,15.37
-29570,45,069,45069,3913,1767,125043334,124168109,3913,1767,125043334,124168109,28933,12072,1256854415,1242350170,100,100,100,100,13.52,14.64,9.95,9.99
-29571,45,067,45067,15622,6932,501777079,498088735,15622,6932,501777079,498088735,33062,14953,1279805326,1267092919,100,100,100,100,47.25,46.36,39.21,39.31
-29572,45,051,45051,7893,15369,22125685,21224561,7893,15369,22125685,21224561,269291,185992,3250441466,2936777435,100,100,100,100,2.93,8.26,0.68,0.72
-29574,45,033,45033,30,18,1149150,1149150,11909,5513,260860857,260179761,32062,13742,1053068918,1048614230,0.25,0.33,0.44,0.44,0.09,0.13,0.11,0.11
-29574,45,067,45067,11879,5495,259711707,259030611,11909,5513,260860857,260179761,33062,14953,1279805326,1267092919,99.75,99.67,99.56,99.56,35.93,36.75,20.29,20.44
-29575,45,051,45051,15512,17103,26402427,26153033,15512,17103,26402427,26153033,269291,185992,3250441466,2936777435,100,100,100,100,5.76,9.2,0.81,0.89
-29576,45,043,45043,7865,5688,55172055,49670468,24446,18716,101644605,94767261,60158,33672,2679722804,2107076193,32.17,30.39,54.28,52.41,13.07,16.89,2.06,2.36
-29576,45,051,45051,16581,13028,46472550,45096793,24446,18716,101644605,94767261,269291,185992,3250441466,2936777435,67.83,69.61,45.72,47.59,6.16,7,1.43,1.54
-29577,45,051,45051,26996,20986,62250070,61381232,26996,20986,62250070,61381232,269291,185992,3250441466,2936777435,100,100,100,100,10.02,11.28,1.92,2.09
-29579,45,051,45051,32180,17058,114132855,113385932,32180,17058,114132855,113385932,269291,185992,3250441466,2936777435,100,100,100,100,11.95,9.17,3.51,3.86
-29580,45,089,45089,1450,686,180574535,180251622,1450,686,180574535,180251622,34423,15359,2426929387,2419459980,100,100,100,100,4.21,4.47,7.44,7.45
-29581,45,033,45033,646,318,67687551,66053800,4650,2279,421806631,419433142,32062,13742,1053068918,1048614230,13.89,13.95,16.05,15.75,2.01,2.31,6.43,6.3
-29581,45,051,45051,2882,1390,313016591,312277871,4650,2279,421806631,419433142,269291,185992,3250441466,2936777435,61.98,60.99,74.21,74.45,1.07,0.75,9.63,10.63
-29581,45,067,45067,1122,571,41102489,41101471,4650,2279,421806631,419433142,33062,14953,1279805326,1267092919,24.13,25.05,9.74,9.8,3.39,3.82,3.21,3.24
-29582,45,051,45051,14622,28082,61093996,56317313,14622,28082,61093996,56317313,269291,185992,3250441466,2936777435,100,100,100,100,5.43,15.1,1.88,1.92
-29583,45,041,45041,5438,2335,277361847,275788160,5438,2335,277361847,275788160,136885,58666,2081638394,2071897847,100,100,100,100,3.97,3.98,13.32,13.31
-29584,45,025,45025,2563,1231,282828591,281959054,2563,1231,282828591,281959054,46734,21482,2086870398,2069595909,100,100,100,100,5.48,5.73,13.55,13.62
-29585,45,043,45043,13606,10448,132479400,122059305,13606,10448,132479400,122059305,60158,33672,2679722804,2107076193,100,100,100,100,22.62,31.03,4.94,5.79
-29588,45,051,45051,36499,17559,110316463,107991227,36499,17559,110316463,107991227,269291,185992,3250441466,2936777435,100,100,100,100,13.55,9.44,3.39,3.68
-29590,45,089,45089,3677,1238,257313867,257089741,3677,1238,257313867,257089741,34423,15359,2426929387,2419459980,100,100,100,100,10.68,8.06,10.6,10.63
-29591,45,041,45041,5467,2304,187672636,187564886,5467,2304,187672636,187564886,136885,58666,2081638394,2071897847,100,100,100,100,3.99,3.93,9.02,9.05
-29592,45,033,45033,790,325,44772692,44731636,1197,506,109687194,109577318,32062,13742,1053068918,1048614230,66,64.23,40.82,40.82,2.46,2.37,4.25,4.27
-29592,45,067,45067,407,181,64914502,64845682,1197,506,109687194,109577318,33062,14953,1279805326,1267092919,34,35.77,59.18,59.18,1.23,1.21,5.07,5.12
-29593,45,025,45025,613,306,76328254,76058296,1954,995,212209811,209792226,46734,21482,2086870398,2069595909,31.37,30.75,35.97,36.25,1.31,1.42,3.66,3.68
-29593,45,031,45031,1341,689,135881557,133733930,1954,995,212209811,209792226,68681,30297,1468017840,1453380435,68.63,69.25,64.03,63.75,1.95,2.27,9.26,9.2
-29594,45,069,45069,121,68,5938085,5938085,121,68,5938085,5938085,28933,12072,1256854415,1242350170,100,100,100,100,0.42,0.56,0.47,0.48
-29596,45,069,45069,2424,1171,174621791,171031780,2424,1171,174621791,171031780,28933,12072,1256854415,1242350170,100,100,100,100,8.38,9.7,13.89,13.77
-29601,45,045,45045,10550,5683,11140772,11079356,10550,5683,11140772,11079356,451225,195462,2058692278,2033451179,100,100,100,100,2.34,2.91,0.54,0.54
-29605,45,045,45045,34414,15694,66703081,66249223,34414,15694,66703081,66249223,451225,195462,2058692278,2033451179,100,100,100,100,7.63,8.03,3.24,3.26
-29607,45,045,45045,34487,16564,75485017,74598493,34487,16564,75485017,74598493,451225,195462,2058692278,2033451179,100,100,100,100,7.64,8.47,3.67,3.67
-29609,45,045,45045,27722,12942,62849440,62545874,27722,12942,62849440,62545874,451225,195462,2058692278,2033451179,100,100,100,100,6.14,6.62,3.05,3.08
-29611,45,007,45007,1719,645,6983600,6883358,28799,12804,61193973,59891911,187126,84774,1961751110,1852945207,5.97,5.04,11.41,11.49,0.92,0.76,0.36,0.37
-29611,45,045,45045,26575,11932,52763391,51562447,28799,12804,61193973,59891911,451225,195462,2058692278,2033451179,92.28,93.19,86.22,86.09,5.89,6.1,2.56,2.54
-29611,45,077,45077,505,227,1446982,1446106,28799,12804,61193973,59891911,119224,51244,1326147673,1285687489,1.75,1.77,2.36,2.41,0.42,0.44,0.11,0.11
-29613,45,045,45045,2334,10,1870540,1757000,2334,10,1870540,1757000,451225,195462,2058692278,2033451179,100,100,100,100,0.52,0.01,0.09,0.09
-29614,45,045,45045,2720,107,497342,497342,2720,107,497342,497342,451225,195462,2058692278,2033451179,100,100,100,100,0.6,0.05,0.02,0.02
-29615,45,045,45045,35151,17340,50131676,49675319,35151,17340,50131676,49675319,451225,195462,2058692278,2033451179,100,100,100,100,7.79,8.87,2.44,2.44
-29617,45,045,45045,25685,11375,61046375,60193474,25685,11375,61046375,60193474,451225,195462,2058692278,2033451179,100,100,100,100,5.69,5.82,2.97,2.96
-29620,45,001,45001,12907,6252,634608164,629782842,12934,6272,653936269,649110765,25417,12079,1323463717,1270347571,99.79,99.68,97.04,97.02,50.78,51.76,47.95,49.58
-29620,45,065,45065,27,20,19328105,19327923,12934,6272,653936269,649110765,10233,5453,1020124870,930141770,0.21,0.32,2.96,2.98,0.26,0.37,1.89,2.08
-29621,45,007,45007,39101,17262,226763150,221780308,39101,17262,226763150,221780308,187126,84774,1961751110,1852945207,100,100,100,100,20.9,20.36,11.56,11.97
-29624,45,007,45007,14610,7145,72878483,72651257,14610,7145,72878483,72651257,187126,84774,1961751110,1852945207,100,100,100,100,7.81,8.43,3.71,3.92
-29625,45,007,45007,27538,13057,143469475,124261985,27538,13057,143469475,124261985,187126,84774,1961751110,1852945207,100,100,100,100,14.72,15.4,7.31,6.71
-29626,45,007,45007,12364,5847,159943715,133855101,12364,5847,159943715,133855101,187126,84774,1961751110,1852945207,100,100,100,100,6.61,6.9,8.15,7.22
-29627,45,001,45001,20,14,5279237,5279237,18367,8052,324400454,321803426,25417,12079,1323463717,1270347571,0.11,0.17,1.63,1.64,0.08,0.12,0.4,0.42
-29627,45,007,45007,16674,7311,262980560,261125702,18367,8052,324400454,321803426,187126,84774,1961751110,1852945207,90.78,90.8,81.07,81.14,8.91,8.62,13.41,14.09
-29627,45,045,45045,1673,727,56140657,55398487,18367,8052,324400454,321803426,451225,195462,2058692278,2033451179,9.11,9.03,17.31,17.22,0.37,0.37,2.73,2.72
-29628,45,001,45001,2723,1331,128898811,107956544,2759,1360,150527080,129584813,25417,12079,1323463717,1270347571,98.7,97.87,85.63,83.31,10.71,11.02,9.74,8.5
-29628,45,065,45065,36,29,21628269,21628269,2759,1360,150527080,129584813,10233,5453,1020124870,930141770,1.3,2.13,14.37,16.69,0.35,0.53,2.12,2.33
-29630,45,007,45007,678,323,16651040,16457156,14186,6529,162992811,157507945,187126,84774,1961751110,1852945207,4.78,4.95,10.22,10.45,0.36,0.38,0.85,0.89
-29630,45,077,45077,13508,6206,146341771,141050789,14186,6529,162992811,157507945,119224,51244,1326147673,1285687489,95.22,95.05,89.78,89.55,11.33,12.11,11.04,10.97
-29631,45,007,45007,45,21,167490,156687,13318,6131,24101042,22527647,187126,84774,1961751110,1852945207,0.34,0.34,0.69,0.7,0.02,0.02,0.01,0.01
-29631,45,077,45077,13273,6110,23933552,22370960,13318,6131,24101042,22527647,119224,51244,1326147673,1285687489,99.66,99.66,99.31,99.3,11.13,11.92,1.8,1.74
-29634,45,077,45077,5589,95,3705518,3632666,5589,95,3705518,3632666,119224,51244,1326147673,1285687489,100,100,100,100,4.69,0.19,0.28,0.28
-29635,45,045,45045,706,635,141851514,140509790,1254,938,181616693,179291357,451225,195462,2058692278,2033451179,56.3,67.7,78.1,78.37,0.16,0.32,6.89,6.91
-29635,45,077,45077,548,303,39765179,38781567,1254,938,181616693,179291357,119224,51244,1326147673,1285687489,43.7,32.3,21.9,21.63,0.46,0.59,3,3.02
-29638,45,001,45001,2469,1102,129166921,128763116,2944,1317,154238093,153820563,25417,12079,1323463717,1270347571,83.87,83.68,83.75,83.71,9.71,9.12,9.76,10.14
-29638,45,047,45047,475,215,25071172,25057447,2944,1317,154238093,153820563,69661,31054,1198973077,1177734978,16.13,16.32,16.25,16.29,0.68,0.69,2.09,2.13
-29639,45,001,45001,1742,564,44791071,44592189,1742,564,44791071,44592189,25417,12079,1323463717,1270347571,100,100,100,100,6.85,4.67,3.38,3.51
-29640,45,077,45077,30574,13303,227294940,226112144,30574,13303,227294940,226112144,119224,51244,1326147673,1285687489,100,100,100,100,25.64,25.96,17.14,17.59
-29642,45,007,45007,11768,4490,72606719,72073750,29561,12038,129534550,128876845,187126,84774,1961751110,1852945207,39.81,37.3,56.05,55.92,6.29,5.3,3.7,3.89
-29642,45,077,45077,17793,7548,56927831,56803095,29561,12038,129534550,128876845,119224,51244,1326147673,1285687489,60.19,62.7,43.95,44.08,14.92,14.73,4.29,4.42
-29643,45,007,45007,639,586,17533402,11424526,2756,1988,84499629,69438806,187126,84774,1961751110,1852945207,23.19,29.48,20.75,16.45,0.34,0.69,0.89,0.62
-29643,45,073,45073,2117,1402,66966227,58014280,2756,1988,84499629,69438806,74273,38763,1744388731,1622196811,76.81,70.52,79.25,83.55,2.85,3.62,3.84,3.58
-29644,45,045,45045,11128,4495,100819731,100091179,18578,7554,213824520,212438046,451225,195462,2058692278,2033451179,59.9,59.5,47.15,47.12,2.47,2.3,4.9,4.92
-29644,45,059,45059,7450,3059,113004789,112346867,18578,7554,213824520,212438046,66537,30709,1874733356,1848742669,40.1,40.5,52.85,52.88,11.2,9.96,6.03,6.08
-29645,45,059,45059,9982,4208,279091613,277270717,9982,4208,279091613,277270717,66537,30709,1874733356,1848742669,100,100,100,100,15,13.7,14.89,15
-29646,45,001,45001,137,53,22562721,22559843,28159,12334,294723135,291358811,25417,12079,1323463717,1270347571,0.49,0.43,7.66,7.74,0.54,0.44,1.7,1.78
-29646,45,047,45047,28022,12281,272160414,268798968,28159,12334,294723135,291358811,69661,31054,1198973077,1177734978,99.51,99.57,92.34,92.26,40.23,39.55,22.7,22.82
-29649,45,001,45001,247,94,4452338,4435850,26235,11427,144601693,140413445,25417,12079,1323463717,1270347571,0.94,0.82,3.08,3.16,0.97,0.78,0.34,0.35
-29649,45,047,45047,25988,11333,140149355,135977595,26235,11427,144601693,140413445,69661,31054,1198973077,1177734978,99.06,99.18,96.92,96.84,37.31,36.49,11.69,11.55
-29650,45,045,45045,32571,13798,46396572,46176453,32632,13832,46825597,46605478,451225,195462,2058692278,2033451179,99.81,99.75,99.08,99.08,7.22,7.06,2.25,2.27
-29650,45,083,45083,61,34,429025,429025,32632,13832,46825597,46605478,284307,122628,2121828822,2092518606,0.19,0.25,0.92,0.92,0.02,0.03,0.02,0.02
-29651,45,045,45045,26791,10985,135937958,131216195,42844,17614,240620144,234572295,451225,195462,2058692278,2033451179,62.53,62.37,56.49,55.94,5.94,5.62,6.6,6.45
-29651,45,083,45083,16053,6629,104682186,103356100,42844,17614,240620144,234572295,284307,122628,2121828822,2092518606,37.47,37.63,43.51,44.06,5.65,5.41,4.93,4.94
-29653,45,001,45001,132,55,13702608,13641136,4811,2170,183633755,179829523,25417,12079,1323463717,1270347571,2.74,2.53,7.46,7.59,0.52,0.46,1.04,1.07
-29653,45,047,45047,4679,2115,169931147,166188387,4811,2170,183633755,179829523,69661,31054,1198973077,1177734978,97.26,97.47,92.54,92.41,6.72,6.81,14.17,14.11
-29654,45,001,45001,2032,873,89448330,88856752,9937,4534,307126246,305121220,25417,12079,1323463717,1270347571,20.45,19.25,29.12,29.12,7.99,7.23,6.76,6.99
-29654,45,007,45007,6337,2974,113450718,112730872,9937,4534,307126246,305121220,187126,84774,1961751110,1852945207,63.77,65.59,36.94,36.95,3.39,3.51,5.78,6.08
-29654,45,045,45045,1077,486,69048069,68571290,9937,4534,307126246,305121220,451225,195462,2058692278,2033451179,10.84,10.72,22.48,22.47,0.24,0.25,3.35,3.37
-29654,45,059,45059,491,201,35179129,34962306,9937,4534,307126246,305121220,66537,30709,1874733356,1848742669,4.94,4.43,11.45,11.46,0.74,0.65,1.88,1.89
-29655,45,001,45001,2115,1296,229855568,203887041,7796,3954,415249953,385658187,25417,12079,1323463717,1270347571,27.13,32.78,55.35,52.87,8.32,10.73,17.37,16.05
-29655,45,007,45007,5681,2658,185394385,181771146,7796,3954,415249953,385658187,187126,84774,1961751110,1852945207,72.87,67.22,44.65,47.13,3.04,3.14,9.45,9.81
-29657,45,007,45007,2108,850,39887210,39691776,15116,6433,165529972,164676088,187126,84774,1961751110,1852945207,13.95,13.21,24.1,24.1,1.13,1,2.03,2.14
-29657,45,077,45077,13008,5583,125642762,124984312,15116,6433,165529972,164676088,119224,51244,1326147673,1285687489,86.05,86.79,75.9,75.9,10.91,10.89,9.47,9.72
-29658,45,073,45073,333,206,65778834,64546186,333,206,65778834,64546186,74273,38763,1744388731,1622196811,100,100,100,100,0.45,0.53,3.77,3.98
-29659,45,001,45001,118,92,1837885,1837885,118,92,1837885,1837885,25417,12079,1323463717,1270347571,100,100,100,100,0.46,0.76,0.14,0.14
-29661,45,045,45045,4599,2150,140343706,139589884,5648,2647,179133694,178346335,451225,195462,2058692278,2033451179,81.43,81.22,78.35,78.27,1.02,1.1,6.82,6.86
-29661,45,077,45077,1049,497,38789988,38756451,5648,2647,179133694,178346335,119224,51244,1326147673,1285687489,18.57,18.78,21.65,21.73,0.88,0.97,2.93,3.01
-29662,45,045,45045,15090,6645,14823667,14757707,15090,6645,14823667,14757707,451225,195462,2058692278,2033451179,100,100,100,100,3.34,3.4,0.72,0.73
-29664,45,073,45073,1808,1213,249338097,248197292,1808,1213,249338097,248197292,74273,38763,1744388731,1622196811,100,100,100,100,2.43,3.13,14.29,15.3
-29665,45,073,45073,127,81,545114,544297,127,81,545114,544297,74273,38763,1744388731,1622196811,100,100,100,100,0.17,0.21,0.03,0.03
-29666,45,047,45047,6388,3097,311059304,301786323,6590,3196,329046436,319773455,69661,31054,1198973077,1177734978,96.93,96.9,94.53,94.38,9.17,9.97,25.94,25.62
-29666,45,081,45081,202,99,17987132,17987132,6590,3196,329046436,319773455,19875,9289,1196109919,1172690632,3.07,3.1,5.47,5.62,1.02,1.07,1.5,1.53
-29667,45,077,45077,269,122,1357539,1357539,269,122,1357539,1357539,119224,51244,1326147673,1285687489,100,100,100,100,0.23,0.24,0.1,0.11
-29669,45,007,45007,6347,2785,47477639,46871609,12387,5432,163973429,162276978,187126,84774,1961751110,1852945207,51.24,51.27,28.95,28.88,3.39,3.29,2.42,2.53
-29669,45,045,45045,6040,2647,116495790,115405369,12387,5432,163973429,162276978,451225,195462,2058692278,2033451179,48.76,48.73,71.05,71.12,1.34,1.35,5.66,5.68
-29670,45,007,45007,8643,4236,137915382,137127498,8673,4249,143700682,142896901,187126,84774,1961751110,1852945207,99.65,99.69,95.97,95.96,4.62,5,7.03,7.4
-29670,45,077,45077,30,13,5785300,5769403,8673,4249,143700682,142896901,119224,51244,1326147673,1285687489,0.35,0.31,4.03,4.04,0.03,0.03,0.44,0.45
-29671,45,077,45077,18030,8261,332782362,331241876,18030,8261,332782362,331241876,119224,51244,1326147673,1285687489,100,100,100,100,15.12,16.12,25.09,25.76
-29672,45,073,45073,11868,6340,136078331,100434178,11868,6340,136078331,100434178,74273,38763,1744388731,1622196811,100,100,100,100,15.98,16.36,7.8,6.19
-29673,45,007,45007,12359,5075,87391911,86515889,25348,10565,183084956,181168763,187126,84774,1961751110,1852945207,48.76,48.04,47.73,47.75,6.6,5.99,4.45,4.67
-29673,45,045,45045,12989,5490,95693045,94652874,25348,10565,183084956,181168763,451225,195462,2058692278,2033451179,51.24,51.96,52.27,52.25,2.88,2.81,4.65,4.65
-29676,45,073,45073,5201,3606,224360180,189054940,5201,3606,224360180,189054940,74273,38763,1744388731,1622196811,100,100,100,100,7,9.3,12.86,11.65
-29678,45,073,45073,21676,10477,223106946,203592008,21676,10477,224225891,204707226,74273,38763,1744388731,1622196811,100,100,99.5,99.46,29.18,27.03,12.79,12.55
-29678,45,077,45077,0,0,1118945,1115218,21676,10477,224225891,204707226,119224,51244,1326147673,1285687489,0,0,0.5,0.54,0,0,0.08,0.09
-29680,45,045,45045,27285,10142,81354756,80382356,27285,10142,81354756,80382356,451225,195462,2058692278,2033451179,100,100,100,100,6.05,5.19,3.95,3.95
-29681,45,045,45045,46979,18131,107758001,107085041,46979,18131,107758001,107085041,451225,195462,2058692278,2033451179,100,100,100,100,10.41,9.28,5.23,5.27
-29682,45,077,45077,3818,1874,81111341,69034105,3818,1874,81111341,69034105,119224,51244,1326147673,1285687489,100,100,100,100,3.2,3.66,6.12,5.37
-29683,45,045,45045,291,139,202830,202830,291,139,202830,202830,451225,195462,2058692278,2033451179,100,100,100,100,0.06,0.07,0.01,0.01
-29684,45,007,45007,4862,2026,156867967,145571993,4862,2026,156867967,145571993,187126,84774,1961751110,1852945207,100,100,100,100,2.6,2.39,8,7.86
-29685,45,077,45077,1230,1102,240143663,223231258,1230,1102,240143663,223231258,119224,51244,1326147673,1285687489,100,100,100,100,1.03,2.15,18.11,17.36
-29686,45,073,45073,1027,648,80293727,79257760,1027,648,80293727,79257760,74273,38763,1744388731,1622196811,100,100,100,100,1.38,1.67,4.6,4.89
-29687,45,045,45045,39561,16808,124121486,122192334,39561,16808,124121486,122192334,451225,195462,2058692278,2033451179,100,100,100,100,8.77,8.6,6.03,6.01
-29689,45,007,45007,3446,2405,112613529,82407990,3889,2625,124021644,92237845,187126,84774,1961751110,1852945207,88.61,91.62,90.8,89.34,1.84,2.84,5.74,4.45
-29689,45,073,45073,443,220,11408115,9829855,3889,2625,124021644,92237845,74273,38763,1744388731,1622196811,11.39,8.38,9.2,10.66,0.6,0.57,0.65,0.61
-29690,45,045,45045,20914,8357,278400532,274159220,20914,8357,278400532,274159220,451225,195462,2058692278,2033451179,100,100,100,100,4.63,4.28,13.52,13.48
-29691,45,073,45073,11333,5092,178520371,177605377,11333,5092,178520371,177605377,74273,38763,1744388731,1622196811,100,100,100,100,15.26,13.14,10.23,10.95
-29692,45,001,45001,733,333,10577970,10473043,4856,2366,126944646,125151356,25417,12079,1323463717,1270347571,15.09,14.07,8.33,8.37,2.88,2.76,0.8,0.82
-29692,45,047,45047,1995,1019,17753160,17501923,4856,2366,126944646,125151356,69661,31054,1198973077,1177734978,41.08,43.07,13.98,13.98,2.86,3.28,1.48,1.49
-29692,45,059,45059,2128,1014,98613516,97176390,4856,2366,126944646,125151356,66537,30709,1874733356,1848742669,43.82,42.86,77.68,77.65,3.2,3.3,5.26,5.26
-29693,45,073,45073,14215,7341,444573973,430950469,14215,7341,444573973,430950469,74273,38763,1744388731,1622196811,100,100,100,100,19.14,18.94,25.49,26.57
-29696,45,073,45073,4125,2137,63418816,60170169,4125,2137,63418816,60170169,74273,38763,1744388731,1622196811,100,100,100,100,5.55,5.51,3.64,3.71
-29697,45,007,45007,12207,5078,100774735,99586604,12207,5078,100774735,99586604,187126,84774,1961751110,1852945207,100,100,100,100,6.52,5.99,5.14,5.37
-29702,45,021,45021,9653,4282,224422142,221660366,10059,4474,259060997,256299221,55342,23997,1028686708,1016981703,95.96,95.71,86.63,86.48,17.44,17.84,21.82,21.8
-29702,45,091,45091,406,192,34638855,34638855,10059,4474,259060997,256299221,226073,94196,1802133085,1762732402,4.04,4.29,13.37,13.52,0.18,0.2,1.92,1.97
-29704,45,023,45023,556,234,32904927,32014709,3721,1500,72026002,69999654,33140,14701,1518156768,1503894983,14.94,15.6,45.68,45.74,1.68,1.59,2.17,2.13
-29704,45,091,45091,3165,1266,39121075,37984945,3721,1500,72026002,69999654,226073,94196,1802133085,1762732402,85.06,84.4,54.32,54.26,1.4,1.34,2.17,2.15
-29706,45,023,45023,19824,8792,708113986,703952557,19847,8803,709257575,705090648,33140,14701,1518156768,1503894983,99.88,99.88,99.84,99.84,59.82,59.81,46.64,46.81
-29706,45,091,45091,23,11,1143589,1138091,19847,8803,709257575,705090648,226073,94196,1802133085,1762732402,0.12,0.12,0.16,0.16,0.01,0.01,0.06,0.06
-29707,45,057,45057,17735,7847,79919152,79672834,17742,7852,82492726,82245995,76652,32687,1437759302,1422317473,99.96,99.94,96.88,96.87,23.14,24.01,5.56,5.6
-29707,45,091,45091,7,5,2573574,2573161,17742,7852,82492726,82245995,226073,94196,1802133085,1762732402,0.04,0.06,3.12,3.13,0,0.01,0.14,0.15
-29708,45,091,45091,25035,9825,52470026,49234560,25035,9825,52470026,49234560,226073,94196,1802133085,1762732402,100,100,100,100,11.07,10.43,2.91,2.79
-29709,45,025,45025,6498,3099,254086957,252987008,6498,3099,254086957,252987008,46734,21482,2086870398,2069595909,100,100,100,100,13.9,14.43,12.18,12.22
-29710,45,091,45091,29449,12570,305436332,293968348,29449,12570,305436332,293968348,226073,94196,1802133085,1762732402,100,100,100,100,13.03,13.34,16.95,16.68
-29712,45,023,45023,1994,835,61124258,61106734,2317,979,72378800,72284647,33140,14701,1518156768,1503894983,86.06,85.29,84.45,84.54,6.02,5.68,4.03,4.06
-29712,45,091,45091,323,144,11254542,11177913,2317,979,72378800,72284647,226073,94196,1802133085,1762732402,13.94,14.71,15.55,15.46,0.14,0.15,0.62,0.63
-29714,45,023,45023,2927,1247,87881337,84651233,2927,1247,87881337,84651233,33140,14701,1518156768,1503894983,100,100,100,100,8.83,8.48,5.79,5.63
-29715,45,091,45091,24823,9931,90028480,87623715,24823,9931,90028480,87623715,226073,94196,1802133085,1762732402,100,100,100,100,10.98,10.54,5,4.97
-29717,45,091,45091,1251,550,100269148,99179431,1251,550,100269148,99179431,226073,94196,1802133085,1762732402,100,100,100,100,0.55,0.58,5.56,5.63
-29718,45,025,45025,3608,1672,286589903,285074747,3856,1787,305129552,303596121,46734,21482,2086870398,2069595909,93.57,93.56,93.92,93.9,7.72,7.78,13.73,13.77
-29718,45,055,45055,248,115,18539649,18521374,3856,1787,305129552,303596121,61697,27478,1917615566,1881787617,6.43,6.44,6.08,6.1,0.4,0.42,0.97,0.98
-29720,45,057,45057,46041,19646,745446494,734754454,46041,19646,745446494,734754454,76652,32687,1437759302,1422317473,100,100,100,100,60.06,60.1,51.85,51.66
-29724,45,023,45023,43,16,642770,642770,43,16,642770,642770,33140,14701,1518156768,1503894983,100,100,100,100,0.13,0.11,0.04,0.04
-29726,45,091,45091,1750,706,104718712,104320843,1750,706,104718712,104320843,226073,94196,1802133085,1762732402,100,100,100,100,0.77,0.75,5.81,5.92
-29727,45,025,45025,1650,778,127798256,127388459,1650,778,127798256,127388459,46734,21482,2086870398,2069595909,100,100,100,100,3.53,3.62,6.12,6.16
-29728,45,025,45025,10301,4640,251934510,251064708,10301,4640,251934510,251064708,46734,21482,2086870398,2069595909,100,100,100,100,22.04,21.6,12.07,12.13
-29729,45,023,45023,2271,922,174088002,173845684,2271,922,174088002,173845684,33140,14701,1518156768,1503894983,100,100,100,100,6.85,6.27,11.47,11.56
-29730,45,023,45023,277,112,17317071,17284694,52365,22700,314270695,310899381,33140,14701,1518156768,1503894983,0.53,0.49,5.51,5.56,0.84,0.76,1.14,1.15
-29730,45,091,45091,52088,22588,296953624,293614687,52365,22700,314270695,310899381,226073,94196,1802133085,1762732402,99.47,99.51,94.49,94.44,23.04,23.98,16.48,16.66
-29732,45,091,45091,53781,23431,142521445,138128208,53781,23431,142521445,138128208,226073,94196,1802133085,1762732402,100,100,100,100,23.79,24.87,7.91,7.84
-29733,45,091,45091,1751,0,305919,305919,1751,0,305919,305919,226073,94196,1802133085,1762732402,100,0,100,100,0.77,0,0.02,0.02
-29741,45,025,45025,2082,1065,96577418,96153790,2082,1065,96577418,96153790,46734,21482,2086870398,2069595909,100,100,100,100,4.46,4.96,4.63,4.65
-29742,45,023,45023,229,135,33008106,32653966,2460,1132,211504686,210638095,33140,14701,1518156768,1503894983,9.31,11.93,15.61,15.5,0.69,0.92,2.17,2.17
-29742,45,091,45091,2231,997,178496580,177984129,2460,1132,211504686,210638095,226073,94196,1802133085,1762732402,90.69,88.07,84.39,84.5,0.99,1.06,9.9,10.1
-29743,45,091,45091,1071,478,80957306,80816855,1071,478,80957306,80816855,226073,94196,1802133085,1762732402,100,100,100,100,0.47,0.51,4.49,4.58
-29745,45,091,45091,28919,11502,361243878,350042742,28919,11502,361243878,350042742,226073,94196,1802133085,1762732402,100,100,100,100,12.79,12.21,20.05,19.86
-29801,45,003,45003,26778,12180,227800278,226786387,26778,12180,227800278,226786387,160099,72249,2798729341,2773965154,100,100,100,100,16.73,16.86,8.14,8.18
-29803,45,003,45003,36843,17234,494958829,493022104,36843,17234,494958829,493022104,160099,72249,2798729341,2773965154,100,100,100,100,23.01,23.85,17.69,17.77
-29805,45,003,45003,5864,2571,257760643,255965685,5864,2571,257760643,255965685,160099,72249,2798729341,2773965154,100,100,100,100,3.66,3.56,9.21,9.23
-29809,45,003,45003,2206,1090,16226385,16222350,2206,1090,16226385,16222350,160099,72249,2798729341,2773965154,100,100,100,100,1.38,1.51,0.58,0.58
-29810,45,005,45005,4990,2382,318974347,315365008,4990,2382,318974347,315365008,10419,4486,1068156689,1056948617,100,100,100,100,47.89,53.1,29.86,29.84
-29812,45,005,45005,10,9,11335240,11263874,11864,5401,733348206,716340786,10419,4486,1068156689,1056948617,0.08,0.17,1.55,1.57,0.1,0.2,1.06,1.07
-29812,45,011,45011,11854,5392,722012966,705076912,11864,5401,733348206,716340786,22621,10484,1443303062,1420330485,99.92,99.83,98.45,98.43,52.4,51.43,50.03,49.64
-29816,45,003,45003,1033,486,2603190,2550550,1033,486,2603190,2550550,160099,72249,2798729341,2773965154,100,100,100,100,0.65,0.67,0.09,0.09
-29817,45,009,45009,229,169,37146357,37108433,4913,2419,280271458,278670512,15987,7716,1024501392,1018822336,4.66,6.99,13.25,13.32,1.43,2.19,3.63,3.64
-29817,45,011,45011,4684,2250,243125101,241562079,4913,2419,280271458,278670512,22621,10484,1443303062,1420330485,95.34,93.01,86.75,86.68,20.71,21.46,16.85,17.01
-29819,45,001,45001,42,20,8282093,8282093,1523,715,177032202,176671225,25417,12079,1323463717,1270347571,2.76,2.8,4.68,4.69,0.17,0.17,0.63,0.65
-29819,45,047,45047,1439,662,156212902,155923753,1523,715,177032202,176671225,69661,31054,1198973077,1177734978,94.48,92.59,88.24,88.26,2.07,2.13,13.03,13.24
-29819,45,065,45065,42,33,12537207,12465379,1523,715,177032202,176671225,10233,5453,1020124870,930141770,2.76,4.62,7.08,7.06,0.41,0.61,1.23,1.34
-29821,45,037,45037,694,284,94159827,88776573,1487,697,173803340,160617477,26985,10559,1312346522,1296046259,46.67,40.75,54.18,55.27,2.57,2.69,7.17,6.85
-29821,45,065,45065,793,413,79643513,71840904,1487,697,173803340,160617477,10233,5453,1020124870,930141770,53.33,59.25,45.82,44.73,7.75,7.57,7.81,7.72
-29824,45,037,45037,8487,2976,571955279,569087645,8535,2994,582759328,579891694,26985,10559,1312346522,1296046259,99.44,99.4,98.15,98.14,31.45,28.18,43.58,43.91
-29824,45,081,45081,48,18,10804049,10804049,8535,2994,582759328,579891694,19875,9289,1196109919,1172690632,0.56,0.6,1.85,1.86,0.24,0.19,0.9,0.92
-29826,45,011,45011,164,93,8707280,8694415,164,93,8707280,8694415,22621,10484,1443303062,1420330485,100,100,100,100,0.72,0.89,0.6,0.61
-29827,45,005,45005,4624,1640,272242266,271163490,4624,1640,272242266,271163490,10419,4486,1068156689,1056948617,100,100,100,100,44.38,36.56,25.49,25.66
-29828,45,003,45003,1003,518,1758309,1745048,1003,518,1758309,1745048,160099,72249,2798729341,2773965154,100,100,100,100,0.63,0.72,0.06,0.06
-29829,45,003,45003,8651,3633,86247084,85052464,8651,3633,86247084,85052464,160099,72249,2798729341,2773965154,100,100,100,100,5.4,5.03,3.08,3.07
-29831,45,003,45003,4146,1892,303645008,298282939,4146,1892,303645008,298282939,160099,72249,2798729341,2773965154,100,100,100,100,2.59,2.62,10.85,10.75
-29832,45,037,45037,4440,1994,171478407,169052431,5335,2392,253809114,251175193,26985,10559,1312346522,1296046259,83.22,83.36,67.56,67.3,16.45,18.88,13.07,13.04
-29832,45,081,45081,895,398,82330707,82122762,5335,2392,253809114,251175193,19875,9289,1196109919,1172690632,16.78,16.64,32.44,32.7,4.5,4.28,6.88,7
-29834,45,003,45003,1687,796,5140675,4882842,1687,796,5140675,4882842,160099,72249,2798729341,2773965154,100,100,100,100,1.05,1.1,0.18,0.18
-29835,45,037,45037,371,188,71963265,71638828,6566,3749,512719656,474257878,26985,10559,1312346522,1296046259,5.65,5.01,14.04,15.11,1.37,1.78,5.48,5.53
-29835,45,065,45065,6195,3561,440756391,402619050,6566,3749,512719656,474257878,10233,5453,1020124870,930141770,94.35,94.99,85.96,84.89,60.54,65.3,43.21,43.29
-29836,45,005,45005,427,250,232375751,229596598,482,285,444694789,440579783,10419,4486,1068156689,1056948617,88.59,87.72,52.26,52.11,4.1,5.57,21.75,21.72
-29836,45,011,45011,55,35,212319038,210983185,482,285,444694789,440579783,22621,10484,1443303062,1420330485,11.41,12.28,47.74,47.89,0.24,0.33,14.71,14.85
-29838,45,037,45037,273,124,56481390,56108706,501,417,84786046,75889331,26985,10559,1312346522,1296046259,54.49,29.74,66.62,73.93,1.01,1.17,4.3,4.33
-29838,45,065,45065,228,293,28304656,19780625,501,417,84786046,75889331,10233,5453,1020124870,930141770,45.51,70.26,33.38,26.07,2.23,5.37,2.77,2.13
-29840,45,065,45065,251,153,95313357,86239480,251,153,95313357,86239480,10233,5453,1020124870,930141770,100,100,100,100,2.45,2.81,9.34,9.27
-29841,45,003,45003,32494,14342,84403431,82449039,32494,14342,84403431,82449039,160099,72249,2798729341,2773965154,100,100,100,100,20.3,19.85,3.02,2.97
-29842,45,003,45003,7675,3382,102620269,101303286,7675,3382,102620269,101303286,160099,72249,2798729341,2773965154,100,100,100,100,4.79,4.68,3.67,3.65
-29843,45,009,45009,866,499,139707679,139378523,1291,682,166054412,165328236,15987,7716,1024501392,1018822336,67.08,73.17,84.13,84.3,5.42,6.47,13.64,13.68
-29843,45,011,45011,425,183,26346733,25949713,1291,682,166054412,165328236,22621,10484,1443303062,1420330485,32.92,26.83,15.87,15.7,1.88,1.75,1.83,1.83
-29844,45,065,45065,123,70,24948379,8613757,123,70,24948379,8613757,10233,5453,1020124870,930141770,100,100,100,100,1.2,1.28,2.45,0.93
-29845,45,037,45037,15,16,14352632,14352632,1104,761,180023191,170385434,26985,10559,1312346522,1296046259,1.36,2.1,7.97,8.42,0.06,0.15,1.09,1.11
-29845,45,065,45065,1089,745,165670559,156032802,1104,761,180023191,170385434,10233,5453,1020124870,930141770,98.64,97.9,92.03,91.58,10.64,13.66,16.24,16.78
-29847,45,003,45003,1082,479,51863871,51417788,5480,2154,238028425,235303530,160099,72249,2798729341,2773965154,19.74,22.24,21.79,21.85,0.68,0.66,1.85,1.85
-29847,45,037,45037,4398,1675,186164554,183885742,5480,2154,238028425,235303530,26985,10559,1312346522,1296046259,80.26,77.76,78.21,78.15,16.3,15.86,14.19,14.19
-29848,45,047,45047,507,257,92532086,92397045,751,413,244974448,244438241,69661,31054,1198973077,1177734978,67.51,62.23,37.77,37.8,0.73,0.83,7.72,7.85
-29848,45,065,45065,205,136,131017162,130616309,751,413,244974448,244438241,10233,5453,1020124870,930141770,27.3,32.93,53.48,53.44,2,2.49,12.84,14.04
-29848,45,081,45081,39,20,21425200,21424887,751,413,244974448,244438241,19875,9289,1196109919,1172690632,5.19,4.84,8.75,8.76,0.2,0.22,1.79,1.83
-29849,45,005,45005,282,157,79834290,79337871,294,161,95245032,94711945,10419,4486,1068156689,1056948617,95.92,97.52,83.82,83.77,2.71,3.5,7.47,7.51
-29849,45,011,45011,12,4,15410742,15374074,294,161,95245032,94711945,22621,10484,1443303062,1420330485,4.08,2.48,16.18,16.23,0.05,0.04,1.07,1.08
-29850,45,003,45003,111,75,5626787,5271467,111,75,5626787,5271467,160099,72249,2798729341,2773965154,100,100,100,100,0.07,0.1,0.2,0.19
-29851,45,003,45003,7524,3425,55094159,53720315,7524,3425,55094159,53720315,160099,72249,2798729341,2773965154,100,100,100,100,4.7,4.74,1.97,1.94
-29853,45,003,45003,1153,535,74750931,74160547,6580,3062,290132133,286850654,160099,72249,2798729341,2773965154,17.52,17.47,25.76,25.85,0.72,0.74,2.67,2.67
-29853,45,011,45011,5427,2527,215381202,212690107,6580,3062,290132133,286850654,22621,10484,1443303062,1420330485,82.48,82.53,74.24,74.15,23.99,24.1,14.92,14.97
-29856,45,003,45003,3255,1381,150386776,150025560,3255,1381,150386776,150025560,160099,72249,2798729341,2773965154,100,100,100,100,2.03,1.91,5.37,5.41
-29860,45,003,45003,6506,2551,22924516,22457623,14450,5758,137468816,134695184,160099,72249,2798729341,2773965154,45.02,44.3,16.68,16.67,4.06,3.53,0.82,0.81
-29860,45,037,45037,7944,3207,114544300,112237561,14450,5758,137468816,134695184,26985,10559,1312346522,1296046259,54.98,55.7,83.32,83.33,29.44,30.37,8.73,8.66
-29899,45,065,45065,1244,0,977272,977272,1244,0,977272,977272,10233,5453,1020124870,930141770,100,0,100,100,12.16,0,0.1,0.11
-29902,45,013,45013,14779,6706,77717608,48403801,14779,6706,77717608,48403801,162233,93023,2391586282,1492559284,100,100,100,100,9.11,7.21,3.25,3.24
-29904,45,013,45013,659,0,162113,162113,659,0,162113,162113,162233,93023,2391586282,1492559284,100,0,100,100,0.41,0,0.01,0.01
-29905,45,013,45013,3054,13,9246038,7167958,3054,13,9246038,7167958,162233,93023,2391586282,1492559284,100,100,100,100,1.88,0.01,0.39,0.48
-29906,45,013,45013,21765,9046,147581621,125643134,21765,9046,147581621,125643134,162233,93023,2391586282,1492559284,100,100,100,100,13.42,9.72,6.17,8.42
-29907,45,013,45013,12570,5333,164079601,108916131,12570,5333,164079601,108916131,162233,93023,2391586282,1492559284,100,100,100,100,7.75,5.73,6.86,7.3
-29909,45,013,45013,16337,9955,210876893,140230865,16394,10017,213595036,142949008,162233,93023,2391586282,1492559284,99.65,99.38,98.73,98.1,10.07,10.7,8.82,9.4
-29909,45,053,45053,57,62,2718143,2718143,16394,10017,213595036,142949008,24777,10299,1811340438,1697265756,0.35,0.62,1.27,1.9,0.23,0.6,0.15,0.16
-29910,45,013,45013,33954,14606,303511658,266890491,33954,14606,303511658,266890491,162233,93023,2391586282,1492559284,100,100,100,100,20.93,15.7,12.69,17.88
-29911,45,049,45049,1725,815,195369037,194574904,1725,815,195369037,194574904,21090,9140,1457399781,1450123027,100,100,100,100,8.18,8.92,13.41,13.42
-29912,45,053,45053,42,17,975647,900136,42,17,975647,900136,24777,10299,1811340438,1697265756,100,100,100,100,0.17,0.17,0.05,0.05
-29915,45,013,45013,416,602,34146673,27894302,416,602,34146673,27894302,162233,93023,2391586282,1492559284,100,100,100,100,0.26,0.65,1.43,1.87
-29916,45,049,45049,918,447,110765590,110639984,1533,742,189436891,189254791,21090,9140,1457399781,1450123027,59.88,60.24,58.47,58.46,4.35,4.89,7.6,7.63
-29916,45,053,45053,615,295,78671301,78614807,1533,742,189436891,189254791,24777,10299,1811340438,1697265756,40.12,39.76,41.53,41.54,2.48,2.86,4.34,4.63
-29918,45,049,45049,5278,1797,236586689,235123724,5278,1797,236586689,235123724,21090,9140,1457399781,1450123027,100,100,100,100,25.03,19.66,16.23,16.21
-29920,45,013,45013,9481,6964,373555667,253009275,9481,6964,373555667,253009275,162233,93023,2391586282,1492559284,100,100,100,100,5.84,7.49,15.62,16.95
-29921,45,049,45049,227,129,17328763,17328763,227,129,17328763,17328763,21090,9140,1457399781,1450123027,100,100,100,100,1.08,1.41,1.19,1.19
-29922,45,049,45049,860,426,269965073,266354995,1214,644,350995803,346977626,21090,9140,1457399781,1450123027,70.84,66.15,76.91,76.76,4.08,4.66,18.52,18.37
-29922,45,053,45053,354,218,81030730,80622631,1214,644,350995803,346977626,24777,10299,1811340438,1697265756,29.16,33.85,23.09,23.24,1.43,2.12,4.47,4.75
-29923,45,049,45049,392,199,34612199,34612199,392,199,34612199,34612199,21090,9140,1457399781,1450123027,100,100,100,100,1.86,2.18,2.37,2.39
-29924,45,049,45049,4331,2086,138989090,138298154,4331,2086,138989090,138298154,21090,9140,1457399781,1450123027,100,100,100,100,20.54,22.82,9.54,9.54
-29926,45,013,45013,23742,12241,121758031,78923762,23742,12241,121758031,78923762,162233,93023,2391586282,1492559284,100,100,100,100,14.63,13.16,5.09,5.29
-29927,45,013,45013,11,4,1546439,1546439,8237,3412,529637132,507940669,162233,93023,2391586282,1492559284,0.13,0.12,0.29,0.3,0.01,0,0.06,0.1
-29927,45,053,45053,8226,3408,528090693,506394230,8237,3412,529637132,507940669,24777,10299,1811340438,1697265756,99.87,99.88,99.71,99.7,33.2,33.09,29.15,29.84
-29928,45,013,45013,16110,22745,71250581,53436388,16110,22745,71250581,53436388,162233,93023,2391586282,1492559284,100,100,100,100,9.93,24.45,2.98,3.58
-29929,45,029,45029,1135,559,196164059,196122269,1135,559,196164059,196122269,38892,19901,2935196608,2736299047,100,100,100,100,2.92,2.81,6.68,7.17
-29932,45,005,45005,86,48,153394795,150221776,269,140,189336260,186105125,10419,4486,1068156689,1056948617,31.97,34.29,81.02,80.72,0.83,1.07,14.36,14.21
-29932,45,049,45049,183,92,35941465,35883349,269,140,189336260,186105125,21090,9140,1457399781,1450123027,68.03,65.71,18.98,19.28,0.87,1.01,2.47,2.47
-29934,45,049,45049,100,43,13540271,13540271,1172,530,180357875,180354564,21090,9140,1457399781,1450123027,8.53,8.11,7.51,7.51,0.47,0.47,0.93,0.93
-29934,45,053,45053,1072,487,166817604,166814293,1172,530,180357875,180354564,24777,10299,1811340438,1697265756,91.47,91.89,92.49,92.49,4.33,4.73,9.21,9.83
-29935,45,013,45013,3685,2123,8457462,5968863,3685,2123,8457462,5968863,162233,93023,2391586282,1492559284,100,100,100,100,2.27,2.28,0.35,0.4
-29936,45,053,45053,13354,5289,628475305,614357427,13354,5289,628475305,614357427,24777,10299,1811340438,1697265756,100,100,100,100,53.9,51.35,34.7,36.2
-29939,45,049,45049,302,126,27934636,27934636,302,126,27934636,27934636,21090,9140,1457399781,1450123027,100,100,100,100,1.43,1.38,1.92,1.93
-29940,45,013,45013,3967,1770,176402896,147939960,3967,1770,176402896,147939960,162233,93023,2391586282,1492559284,100,100,100,100,2.45,1.9,7.38,9.91
-29941,45,013,45013,497,350,49913042,41816748,497,350,49913042,41816748,162233,93023,2391586282,1492559284,100,100,100,100,0.31,0.38,2.09,2.8
-29943,45,053,45053,477,253,121320835,118674119,477,253,121320835,118674119,24777,10299,1811340438,1697265756,100,100,100,100,1.93,2.46,6.7,6.99
-29944,45,049,45049,5034,2197,293881117,293792193,5118,2239,342906507,342811586,21090,9140,1457399781,1450123027,98.36,98.12,85.7,85.7,23.87,24.04,20.16,20.26
-29944,45,053,45053,84,42,49025390,49019393,5118,2239,342906507,342811586,24777,10299,1811340438,1697265756,1.64,1.88,14.3,14.3,0.34,0.41,2.71,2.89
-29945,45,013,45013,1206,565,205216153,184597130,4841,2252,595665442,568057523,162233,93023,2391586282,1492559284,24.91,25.09,34.45,32.5,0.74,0.61,8.58,12.37
-29945,45,029,45029,1399,676,224008432,222273596,4841,2252,595665442,568057523,38892,19901,2935196608,2736299047,28.9,30.02,37.61,39.13,3.6,3.4,7.63,8.12
-29945,45,049,45049,1740,783,82485851,82039855,4841,2252,595665442,568057523,21090,9140,1457399781,1450123027,35.94,34.77,13.85,14.44,8.25,8.57,5.66,5.66
-29945,45,053,45053,496,228,83955006,79146942,4841,2252,595665442,568057523,24777,10299,1811340438,1697265756,10.25,10.12,14.09,13.93,2,2.21,4.63,4.66
-30002,13,089,13089,5861,2954,4427637,4392655,5861,2954,4427637,4392655,691893,304968,702254121,693033963,100,100,100,100,0.85,0.97,0.63,0.63
-30004,13,057,13057,2549,995,23195752,22818209,53033,20261,150564863,148642941,214346,82360,1125104307,1092129613,4.81,4.91,15.41,15.35,1.19,1.21,2.06,2.09
-30004,13,117,13117,8567,3153,23525074,23387847,53033,20261,150564863,148642941,175511,64052,640157353,580210822,16.15,15.56,15.62,15.73,4.88,4.92,3.67,4.03
-30004,13,121,13121,41917,16113,103844037,102436885,53033,20261,150564863,148642941,920581,437105,1383894532,1363977166,79.04,79.53,68.97,68.91,4.55,3.69,7.5,7.51
-30005,13,117,13117,4450,1680,12973402,12693574,34442,12397,38593204,37517959,175511,64052,640157353,580210822,12.92,13.55,33.62,33.83,2.54,2.62,2.03,2.19
-30005,13,121,13121,29992,10717,25619802,24824385,34442,12397,38593204,37517959,920581,437105,1383894532,1363977166,87.08,86.45,66.38,66.17,3.26,2.45,1.85,1.82
-30008,13,067,13067,29822,10922,24495316,24467923,29822,10922,24495316,24467923,688078,286490,892296837,879428364,100,100,100,100,4.33,3.81,2.75,2.78
-30009,13,121,13121,13722,6408,25070452,24858412,13722,6408,25070452,24858412,920581,437105,1383894532,1363977166,100,100,100,100,1.49,1.47,1.81,1.82
-30011,13,013,13013,10510,3948,51012878,50800732,14402,5229,69383296,68946079,69367,26400,422016274,415198674,72.98,75.5,73.52,73.68,15.15,14.95,12.09,12.24
-30011,13,135,13135,3892,1281,18370418,18145347,14402,5229,69383296,68946079,805321,291547,1131242872,1114687261,27.02,24.5,26.48,26.32,0.48,0.44,1.62,1.63
-30012,13,089,13089,500,221,679747,664753,27258,10658,113572753,110938856,691893,304968,702254121,693033963,1.83,2.07,0.6,0.6,0.07,0.07,0.1,0.1
-30012,13,247,13247,26580,10373,109946484,107392863,27258,10658,113572753,110938856,85215,33272,342131629,336161686,97.51,97.33,96.81,96.8,31.19,31.18,32.14,31.95
-30012,13,297,13297,178,64,2946522,2881240,27258,10658,113572753,110938856,83768,32435,854695735,843508113,0.65,0.6,2.59,2.6,0.21,0.2,0.34,0.34
-30013,13,217,13217,1329,654,1976668,1976668,25183,10141,74549275,73456443,99958,38342,723119276,704894510,5.28,6.45,2.65,2.69,1.33,1.71,0.27,0.28
-30013,13,247,13247,23854,9487,72572607,71479775,25183,10141,74549275,73456443,85215,33272,342131629,336161686,94.72,93.55,97.35,97.31,27.99,28.51,21.21,21.26
-30014,13,159,13159,172,94,1480543,1420986,35037,14218,314386318,300219669,13900,6153,967268653,953542690,0.49,0.66,0.47,0.47,1.24,1.53,0.15,0.15
-30014,13,217,13217,32195,13102,251895750,240651565,35037,14218,314386318,300219669,99958,38342,723119276,704894510,91.89,92.15,80.12,80.16,32.21,34.17,34.83,34.14
-30014,13,297,13297,2670,1022,61010025,58147118,35037,14218,314386318,300219669,83768,32435,854695735,843508113,7.62,7.19,19.41,19.37,3.19,3.15,7.14,6.89
-30016,13,217,13217,50978,18697,239780292,236625273,51140,18762,240325619,237170600,99958,38342,723119276,704894510,99.68,99.65,99.77,99.77,51,48.76,33.16,33.57
-30016,13,247,13247,162,65,545327,545327,51140,18762,240325619,237170600,85215,33272,342131629,336161686,0.32,0.35,0.23,0.23,0.19,0.2,0.16,0.16
-30017,13,135,13135,20160,7144,31515932,30977758,20160,7144,31515932,30977758,805321,291547,1131242872,1114687261,100,100,100,100,2.5,2.45,2.79,2.78
-30019,13,135,13135,40374,13336,116561871,115943292,40447,13367,120612233,119990413,805321,291547,1131242872,1114687261,99.82,99.77,96.64,96.63,5.01,4.57,10.3,10.4
-30019,13,297,13297,73,31,4050362,4047121,40447,13367,120612233,119990413,83768,32435,854695735,843508113,0.18,0.23,3.36,3.37,0.09,0.1,0.47,0.48
-30021,13,089,13089,21989,8963,9200832,9160340,21989,8963,9200832,9160340,691893,304968,702254121,693033963,100,100,100,100,3.18,2.94,1.31,1.32
-30022,13,121,13121,64359,24607,66761495,65879461,64359,24607,66761495,65879461,920581,437105,1383894532,1363977166,100,100,100,100,6.99,5.63,4.82,4.83
-30024,13,117,13117,17579,5630,33833444,33377219,64614,21682,112035615,110203286,175511,64052,640157353,580210822,27.21,25.97,30.2,30.29,10.02,8.79,5.29,5.75
-30024,13,121,13121,2465,701,5321271,5196168,64614,21682,112035615,110203286,920581,437105,1383894532,1363977166,3.81,3.23,4.75,4.72,0.27,0.16,0.38,0.38
-30024,13,135,13135,44570,15351,72880900,71629899,64614,21682,112035615,110203286,805321,291547,1131242872,1114687261,68.98,70.8,65.05,65,5.53,5.27,6.44,6.43
-30025,13,217,13217,2726,1040,52367404,51384508,9270,3635,177820172,175390724,99958,38342,723119276,704894510,29.41,28.61,29.45,29.3,2.73,2.71,7.24,7.29
-30025,13,297,13297,6544,2595,125452768,124006216,9270,3635,177820172,175390724,83768,32435,854695735,843508113,70.59,71.39,70.55,70.7,7.81,8,14.68,14.7
-30028,13,057,13057,620,267,10867625,10742715,22182,7921,134580776,132151947,214346,82360,1125104307,1092129613,2.8,3.37,8.08,8.13,0.29,0.32,0.97,0.98
-30028,13,117,13117,21562,7654,123713151,121409232,22182,7921,134580776,132151947,175511,64052,640157353,580210822,97.2,96.63,91.92,91.87,12.29,11.95,19.33,20.93
-30030,13,089,13089,26473,13327,16879009,16865049,26473,13327,16879009,16865049,691893,304968,702254121,693033963,100,100,100,100,3.83,4.37,2.4,2.43
-30032,13,089,13089,47222,20467,35384253,35305648,47222,20467,35384253,35305648,691893,304968,702254121,693033963,100,100,100,100,6.83,6.71,5.04,5.09
-30033,13,089,13089,30763,14786,24020067,23921835,30763,14786,24020067,23921835,691893,304968,702254121,693033963,100,100,100,100,4.45,4.85,3.42,3.45
-30034,13,089,13089,43113,18209,44509550,43902603,43113,18209,44509550,43902603,691893,304968,702254121,693033963,100,100,100,100,6.23,5.97,6.34,6.33
-30035,13,089,13089,20396,8694,22291855,22151468,20396,8694,22291855,22151468,691893,304968,702254121,693033963,100,100,100,100,2.95,2.85,3.17,3.2
-30038,13,089,13089,37233,16343,76251763,75254108,37233,16343,76251763,75254108,691893,304968,702254121,693033963,100,100,100,100,5.38,5.36,10.86,10.86
-30039,13,089,13089,511,206,2767013,2595101,41517,14700,66056378,64847001,691893,304968,702254121,693033963,1.23,1.4,4.19,4,0.07,0.07,0.39,0.37
-30039,13,135,13135,41006,14494,63289365,62251900,41517,14700,66056378,64847001,805321,291547,1131242872,1114687261,98.77,98.6,95.81,96,5.09,4.97,5.59,5.58
-30040,13,057,13057,326,152,5072603,5047461,54653,19873,153638390,151970506,214346,82360,1125104307,1092129613,0.6,0.76,3.3,3.32,0.15,0.18,0.45,0.46
-30040,13,117,13117,54327,19721,148565787,146923045,54653,19873,153638390,151970506,175511,64052,640157353,580210822,99.4,99.24,96.7,96.68,30.95,30.79,23.21,25.32
-30041,13,117,13117,52749,19731,175585571,152373584,52749,19731,175585571,152373584,175511,64052,640157353,580210822,100,100,100,100,30.05,30.8,27.43,26.26
-30043,13,135,13135,80241,27767,85257130,84251106,80241,27767,85257130,84251106,805321,291547,1131242872,1114687261,100,100,100,100,9.96,9.52,7.54,7.56
-30044,13,135,13135,79701,27851,63929635,63418406,79701,27851,63929635,63418406,805321,291547,1131242872,1114687261,100,100,100,100,9.9,9.55,5.65,5.69
-30045,13,135,13135,34402,11232,57175330,56297395,34402,11232,57175330,56297395,805321,291547,1131242872,1114687261,100,100,100,100,4.27,3.85,5.05,5.05
-30046,13,135,13135,34523,13171,40884543,40571712,34523,13171,40884543,40571712,805321,291547,1131242872,1114687261,100,100,100,100,4.29,4.52,3.61,3.64
-30047,13,135,13135,59660,21153,72708993,71773626,59660,21153,72708993,71773626,805321,291547,1131242872,1114687261,100,100,100,100,7.41,7.26,6.43,6.44
-30052,13,135,13135,28231,9821,62079236,61322248,59451,21387,228509596,226522023,805321,291547,1131242872,1114687261,47.49,45.92,27.17,27.07,3.51,3.37,5.49,5.5
-30052,13,217,13217,122,49,2821091,2767599,59451,21387,228509596,226522023,99958,38342,723119276,704894510,0.21,0.23,1.23,1.22,0.12,0.13,0.39,0.39
-30052,13,247,13247,297,124,7605105,7549518,59451,21387,228509596,226522023,85215,33272,342131629,336161686,0.5,0.58,3.33,3.33,0.35,0.37,2.22,2.25
-30052,13,297,13297,30801,11393,156004164,154882658,59451,21387,228509596,226522023,83768,32435,854695735,843508113,51.81,53.27,68.27,68.37,36.77,35.13,18.25,18.36
-30054,13,217,13217,9887,3677,93520948,91765521,11985,4431,108998971,107113672,99958,38342,723119276,704894510,82.49,82.98,85.8,85.67,9.89,9.59,12.93,13.02
-30054,13,297,13297,2098,754,15478023,15348151,11985,4431,108998971,107113672,83768,32435,854695735,843508113,17.51,17.02,14.2,14.33,2.5,2.32,1.81,1.82
-30055,13,159,13159,1533,705,55988055,54070424,3018,1312,135900819,132983323,13900,6153,967268653,953542690,50.8,53.73,41.2,40.66,11.03,11.46,5.79,5.67
-30055,13,211,13211,271,110,17321988,17196517,3018,1312,135900819,132983323,17868,7472,918463309,899630975,8.98,8.38,12.75,12.93,1.52,1.47,1.89,1.91
-30055,13,217,13217,1214,497,62590776,61716382,3018,1312,135900819,132983323,99958,38342,723119276,704894510,40.23,37.88,46.06,46.41,1.21,1.3,8.66,8.76
-30056,13,159,13159,1222,475,51658967,51288242,2500,948,100033489,99073235,13900,6153,967268653,953542690,48.88,50.11,51.64,51.77,8.79,7.72,5.34,5.38
-30056,13,211,13211,158,58,30723687,30241079,2500,948,100033489,99073235,17868,7472,918463309,899630975,6.32,6.12,30.71,30.52,0.88,0.78,3.35,3.36
-30056,13,217,13217,1120,415,17650835,17543914,2500,948,100033489,99073235,99958,38342,723119276,704894510,44.8,43.78,17.64,17.71,1.12,1.08,2.44,2.49
-30058,13,089,13089,52804,21208,80279932,78651242,52945,21269,81358887,79708450,691893,304968,702254121,693033963,99.73,99.71,98.67,98.67,7.63,6.95,11.43,11.35
-30058,13,247,13247,141,61,1078955,1057208,52945,21269,81358887,79708450,85215,33272,342131629,336161686,0.27,0.29,1.33,1.33,0.17,0.18,0.32,0.31
-30060,13,067,13067,34562,14338,42675759,42337178,34562,14338,42675759,42337178,688078,286490,892296837,879428364,100,100,100,100,5.02,5,4.78,4.81
-30062,13,067,13067,62136,24275,67584615,66841137,62136,24275,67584615,66841137,688078,286490,892296837,879428364,100,100,100,100,9.03,8.47,7.57,7.6
-30064,13,067,13067,46076,18704,83011810,82513745,46076,18704,83011810,82513745,688078,286490,892296837,879428364,100,100,100,100,6.7,6.53,9.3,9.38
-30066,13,067,13067,52936,20730,71260783,70562915,52936,20730,71260783,70562915,688078,286490,892296837,879428364,100,100,100,100,7.69,7.24,7.99,8.02
-30067,13,067,13067,45182,22586,39053545,38344887,45182,22586,39053545,38344887,688078,286490,892296837,879428364,100,100,100,100,6.57,7.88,4.38,4.36
-30068,13,067,13067,31595,12628,38189041,37119955,31595,12628,38189041,37119955,688078,286490,892296837,879428364,100,100,100,100,4.59,4.41,4.28,4.22
-30070,13,217,13217,342,181,160149,160149,342,181,160149,160149,99958,38342,723119276,704894510,100,100,100,100,0.34,0.47,0.02,0.02
-30071,13,135,13135,23005,8121,31065459,30949118,23005,8121,31065459,30949118,805321,291547,1131242872,1114687261,100,100,100,100,2.86,2.79,2.75,2.78
-30072,13,089,13089,730,425,572869,529078,730,425,572869,529078,691893,304968,702254121,693033963,100,100,100,100,0.11,0.14,0.08,0.08
-30075,13,057,13057,502,176,1211610,1194478,52573,20753,79408585,77240837,214346,82360,1125104307,1092129613,0.95,0.85,1.53,1.55,0.23,0.21,0.11,0.11
-30075,13,067,13067,11223,3937,11532345,11190881,52573,20753,79408585,77240837,688078,286490,892296837,879428364,21.35,18.97,14.52,14.49,1.63,1.37,1.29,1.27
-30075,13,121,13121,40848,16640,66664630,64855478,52573,20753,79408585,77240837,920581,437105,1383894532,1363977166,77.7,80.18,83.95,83.97,4.44,3.81,4.82,4.75
-30076,13,121,13121,42678,17373,41519891,40325186,42678,17373,41519891,40325186,920581,437105,1383894532,1363977166,100,100,100,100,4.64,3.97,3,2.96
-30078,13,135,13135,33057,12190,44614365,43957298,33057,12190,44614365,43957298,805321,291547,1131242872,1114687261,100,100,100,100,4.1,4.18,3.94,3.94
-30079,13,089,13089,2960,1346,3328389,3309688,2960,1346,3328389,3309688,691893,304968,702254121,693033963,100,100,100,100,0.43,0.44,0.47,0.48
-30080,13,067,13067,49905,26571,35455732,35280488,49905,26571,35455732,35280488,688078,286490,892296837,879428364,100,100,100,100,7.25,9.27,3.97,4.01
-30082,13,067,13067,25905,11929,27374028,27147332,25905,11929,27374028,27147332,688078,286490,892296837,879428364,100,100,100,100,3.76,4.16,3.07,3.09
-30083,13,089,13089,50384,21620,45330855,43952991,50384,21620,45330855,43952991,691893,304968,702254121,693033963,100,100,100,100,7.28,7.09,6.46,6.34
-30084,13,089,13089,24516,10856,32849929,32612221,35921,15049,39808151,39519992,691893,304968,702254121,693033963,68.25,72.14,82.52,82.52,3.54,3.56,4.68,4.71
-30084,13,135,13135,11405,4193,6958222,6907771,35921,15049,39808151,39519992,805321,291547,1131242872,1114687261,31.75,27.86,17.48,17.48,1.42,1.44,0.62,0.62
-30087,13,089,13089,25445,9818,43678815,42184073,36761,14385,62190622,60453782,691893,304968,702254121,693033963,69.22,68.25,70.23,69.78,3.68,3.22,6.22,6.09
-30087,13,135,13135,11316,4567,18511807,18269709,36761,14385,62190622,60453782,805321,291547,1131242872,1114687261,30.78,31.75,29.77,30.22,1.41,1.57,1.64,1.64
-30088,13,089,13089,25257,10462,20301501,20117617,25257,10462,20301501,20117617,691893,304968,702254121,693033963,100,100,100,100,3.65,3.43,2.89,2.9
-30092,13,121,13121,324,222,432312,432312,31704,13869,28880637,28400796,920581,437105,1383894532,1363977166,1.02,1.6,1.5,1.52,0.04,0.05,0.03,0.03
-30092,13,135,13135,31380,13647,28448325,27968484,31704,13869,28880637,28400796,805321,291547,1131242872,1114687261,98.98,98.4,98.5,98.48,3.9,4.68,2.51,2.51
-30093,13,135,13135,53351,19478,31398275,30891555,53351,19478,31398275,30891555,805321,291547,1131242872,1114687261,100,100,100,100,6.62,6.68,2.78,2.77
-30094,13,089,13089,103,33,647481,647481,31244,12003,106160171,104545218,691893,304968,702254121,693033963,0.33,0.27,0.61,0.62,0.01,0.01,0.09,0.09
-30094,13,247,13247,31141,11970,105512690,103897737,31244,12003,106160171,104545218,85215,33272,342131629,336161686,99.67,99.73,99.39,99.38,36.54,35.98,30.84,30.91
-30096,13,135,13135,62265,26268,60341546,59258058,62265,26268,60341546,59258058,805321,291547,1131242872,1114687261,100,100,100,100,7.73,9.01,5.33,5.32
-30097,13,117,13117,2582,842,4818712,4774726,41715,15168,59474953,58213654,175511,64052,640157353,580210822,6.19,5.55,8.1,8.2,1.47,1.31,0.75,0.82
-30097,13,121,13121,19831,7166,27826221,27282599,41715,15168,59474953,58213654,920581,437105,1383894532,1363977166,47.54,47.24,46.79,46.87,2.15,1.64,2.01,2
-30097,13,135,13135,19302,7160,26830020,26156329,41715,15168,59474953,58213654,805321,291547,1131242872,1114687261,46.27,47.2,45.11,44.93,2.4,2.46,2.37,2.35
-30101,13,015,13015,1104,487,5324706,4273141,54373,19771,110330253,104506754,100157,39823,1217587552,1190213681,2.03,2.46,4.83,4.09,1.1,1.22,0.44,0.36
-30101,13,057,13057,330,98,789375,789375,54373,19771,110330253,104506754,214346,82360,1125104307,1092129613,0.61,0.5,0.72,0.76,0.15,0.12,0.07,0.07
-30101,13,067,13067,42347,15592,75669905,71153784,54373,19771,110330253,104506754,688078,286490,892296837,879428364,77.88,78.86,68.58,68.09,6.15,5.44,8.48,8.09
-30101,13,223,13223,10592,3594,28546267,28290454,54373,19771,110330253,104506754,142324,52130,814141312,808643215,19.48,18.18,25.87,27.07,7.44,6.89,3.51,3.5
-30102,13,015,13015,6698,2652,35476817,27618779,37470,14106,87087566,75854408,100157,39823,1217587552,1190213681,17.88,18.8,40.74,36.41,6.69,6.66,2.91,2.32
-30102,13,057,13057,20060,7704,42770194,39562261,37470,14106,87087566,75854408,214346,82360,1125104307,1092129613,53.54,54.62,49.11,52.16,9.36,9.35,3.8,3.62
-30102,13,067,13067,10712,3750,8840555,8673368,37470,14106,87087566,75854408,688078,286490,892296837,879428364,28.59,26.58,10.15,11.43,1.56,1.31,0.99,0.99
-30103,13,015,13015,11070,4423,176073348,175831480,14781,5897,261968533,261586736,100157,39823,1217587552,1190213681,74.89,75,67.21,67.22,11.05,11.11,14.46,14.77
-30103,13,115,13115,756,324,18709251,18592175,14781,5897,261968533,261586736,96317,40551,1342818451,1320662374,5.11,5.49,7.14,7.11,0.78,0.8,1.39,1.41
-30103,13,129,13129,2955,1150,67185934,67163081,14781,5897,261968533,261586736,55186,22278,927326521,921538864,19.99,19.5,25.65,25.68,5.35,5.16,7.25,7.29
-30104,13,015,13015,205,66,10474296,10456626,4708,1884,100423576,99207388,100157,39823,1217587552,1190213681,4.35,3.5,10.43,10.54,0.2,0.17,0.86,0.88
-30104,13,115,13115,993,412,26566846,26070215,4708,1884,100423576,99207388,96317,40551,1342818451,1320662374,21.09,21.87,26.45,26.28,1.03,1.02,1.98,1.97
-30104,13,233,13233,3510,1406,63382434,62680547,4708,1884,100423576,99207388,41475,16908,808440844,803754838,74.55,74.63,63.12,63.18,8.46,8.32,7.84,7.8
-30105,13,055,13055,217,98,45077083,45066214,2294,984,155703578,154408342,26015,10977,812112574,811541767,9.46,9.96,28.95,29.19,0.83,0.89,5.55,5.55
-30105,13,115,13115,2077,886,110626495,109342128,2294,984,155703578,154408342,96317,40551,1342818451,1320662374,90.54,90.04,71.05,70.81,2.16,2.18,8.24,8.28
-30106,13,067,13067,20190,8637,31520283,31444007,20300,8684,32179767,32103491,688078,286490,892296837,879428364,99.46,99.46,97.95,97.95,2.93,3.01,3.53,3.58
-30106,13,097,13097,110,47,659484,659484,20300,8684,32179767,32103491,132403,51672,520655209,518170971,0.54,0.54,2.05,2.05,0.08,0.09,0.13,0.13
-30107,13,057,13057,10150,3980,228804712,226612899,12908,5016,284389406,281895627,214346,82360,1125104307,1092129613,78.63,79.35,80.45,80.39,4.74,4.83,20.34,20.75
-30107,13,117,13117,1195,412,13102110,12811228,12908,5016,284389406,281895627,175511,64052,640157353,580210822,9.26,8.21,4.61,4.54,0.68,0.64,2.05,2.21
-30107,13,227,13227,1563,624,42482584,42471500,12908,5016,284389406,281895627,29431,13692,602721655,601025731,12.11,12.44,14.94,15.07,5.31,4.56,7.05,7.07
-30108,13,045,13045,7058,3146,220116648,219735536,7256,3243,228460948,228079836,110527,44607,1304927905,1292600278,97.27,97.01,96.35,96.34,6.39,7.05,16.87,17
-30108,13,149,13149,198,97,8344300,8344300,7256,3243,228460948,228079836,11834,5148,779830983,766714528,2.73,2.99,3.65,3.66,1.67,1.88,1.07,1.09
-30110,13,045,13045,602,238,18596024,18482643,13349,5545,181084220,180207130,110527,44607,1304927905,1292600278,4.51,4.29,10.27,10.26,0.54,0.53,1.43,1.43
-30110,13,143,13143,12747,5307,162488196,161724487,13349,5545,181084220,180207130,28780,12287,733420059,730804051,95.49,95.71,89.73,89.74,44.29,43.19,22.15,22.13
-30113,13,143,13143,5781,2427,259220645,257836865,6218,2597,269060418,267676638,28780,12287,733420059,730804051,92.97,93.45,96.34,96.32,20.09,19.75,35.34,35.28
-30113,13,233,13233,437,170,9839773,9839773,6218,2597,269060418,267676638,41475,16908,808440844,803754838,7.03,6.55,3.66,3.68,1.05,1.01,1.22,1.22
-30114,13,057,13057,49774,19203,295487783,279435402,49774,19203,295487783,279435402,214346,82360,1125104307,1092129613,100,100,100,100,23.22,23.32,26.26,25.59
-30115,13,057,13057,35672,13078,159264808,157412255,35672,13078,159264808,157412255,214346,82360,1125104307,1092129613,100,100,100,100,16.64,15.88,14.16,14.41
-30116,13,045,13045,23156,8863,268335526,264801348,23156,8863,268335526,264801348,110527,44607,1304927905,1292600278,100,100,100,100,20.95,19.87,20.56,20.49
-30117,13,045,13045,34296,14894,286445880,283855933,34296,14894,286445880,283855933,110527,44607,1304927905,1292600278,100,100,100,100,31.03,33.39,21.95,21.96
-30118,13,045,13045,2373,1,948833,948833,2373,1,948833,948833,110527,44607,1304927905,1292600278,100,100,100,100,2.15,0,0.07,0.07
-30120,13,015,13015,38085,15155,241298433,238471714,38085,15155,241298433,238471714,100157,39823,1217587552,1190213681,100,100,100,100,38.03,38.06,19.82,20.04
-30121,13,015,13015,22078,8974,152824162,146301668,22078,8974,152824162,146301668,100157,39823,1217587552,1190213681,100,100,100,100,22.04,22.53,12.55,12.29
-30122,13,097,13097,21561,9550,62667316,62337699,21561,9550,62667316,62337699,132403,51672,520655209,518170971,100,100,100,100,16.28,18.48,12.04,12.03
-30124,13,115,13115,2978,1366,158414632,156159898,2978,1366,158414632,156159898,96317,40551,1342818451,1320662374,100,100,100,100,3.09,3.37,11.8,11.82
-30125,13,115,13115,575,222,12175808,12123986,24352,9710,476188681,474484829,96317,40551,1342818451,1320662374,2.36,2.29,2.56,2.56,0.6,0.55,0.91,0.92
-30125,13,233,13233,23777,9488,464012873,462360843,24352,9710,476188681,474484829,41475,16908,808440844,803754838,97.64,97.71,97.44,97.44,57.33,56.12,57.4,57.53
-30126,13,067,13067,37088,15212,54061641,53637641,37088,15212,54061641,53637641,688078,286490,892296837,879428364,100,100,100,100,5.39,5.31,6.06,6.1
-30127,13,067,13067,52139,18770,110976742,110537006,60347,21634,132523577,131480666,688078,286490,892296837,879428364,86.4,86.76,83.74,84.07,7.58,6.55,12.44,12.57
-30127,13,223,13223,8208,2864,21546835,20943660,60347,21634,132523577,131480666,142324,52130,814141312,808643215,13.6,13.24,16.26,15.93,5.77,5.49,2.65,2.59
-30132,13,223,13223,34215,12793,286656702,284749520,34215,12793,286656702,284749520,142324,52130,814141312,808643215,100,100,100,100,24.04,24.54,35.21,35.21
-30134,13,097,13097,29065,11374,87600632,87460077,43356,16218,128894754,128434474,132403,51672,520655209,518170971,67.04,70.13,67.96,68.1,21.95,22.01,16.83,16.88
-30134,13,223,13223,14291,4844,41294122,40974397,43356,16218,128894754,128434474,142324,52130,814141312,808643215,32.96,29.87,32.04,31.9,10.04,9.29,5.07,5.07
-30135,13,097,13097,61912,22875,218550327,216923399,61912,22875,218550327,216923399,132403,51672,520655209,518170971,100,100,100,100,46.76,44.27,41.98,41.86
-30137,13,015,13015,1650,683,10280545,10262407,1650,683,10280545,10262407,100157,39823,1217587552,1190213681,100,100,100,100,1.65,1.72,0.84,0.86
-30139,13,015,13015,340,165,31392258,31392258,3845,1722,185973975,185778875,100157,39823,1217587552,1190213681,8.84,9.58,16.88,16.9,0.34,0.41,2.58,2.64
-30139,13,129,13129,2639,1217,115358716,115163616,3845,1722,185973975,185778875,55186,22278,927326521,921538864,68.63,70.67,62.03,61.99,4.78,5.46,12.44,12.5
-30139,13,227,13227,866,340,39223001,39223001,3845,1722,185973975,185778875,29431,13692,602721655,601025731,22.52,19.74,21.09,21.11,2.94,2.48,6.51,6.53
-30141,13,067,13067,1713,719,4401228,4394557,22457,8622,76803852,76317343,688078,286490,892296837,879428364,7.63,8.34,5.73,5.76,0.25,0.25,0.49,0.5
-30141,13,223,13223,20744,7903,72402624,71922786,22457,8622,76803852,76317343,142324,52130,814141312,808643215,92.37,91.66,94.27,94.24,14.58,15.16,8.89,8.89
-30143,13,057,13057,166,55,4386966,4371214,21145,10589,361975747,360692463,214346,82360,1125104307,1092129613,0.79,0.52,1.21,1.21,0.08,0.07,0.39,0.4
-30143,13,085,13085,450,500,14255284,14242491,21145,10589,361975747,360692463,22330,10425,555315310,546046104,2.13,4.72,3.94,3.95,2.02,4.8,2.57,2.61
-30143,13,227,13227,20529,10034,343333497,342078758,21145,10589,361975747,360692463,29431,13692,602721655,601025731,97.09,94.76,94.85,94.84,69.75,73.28,56.96,56.92
-30144,13,067,13067,52252,20357,59008319,58464478,52252,20357,59008319,58464478,688078,286490,892296837,879428364,100,100,100,100,7.59,7.11,6.61,6.65
-30145,13,015,13015,6440,2333,170904193,169335790,8378,3077,207767108,205996136,100157,39823,1217587552,1190213681,76.87,75.82,82.26,82.2,6.43,5.86,14.04,14.23
-30145,13,115,13115,1938,744,36862915,36660346,8378,3077,207767108,205996136,96317,40551,1342818451,1320662374,23.13,24.18,17.74,17.8,2.01,1.83,2.75,2.78
-30147,13,115,13115,4268,1906,46059987,45670207,4365,1937,47444142,47054362,96317,40551,1342818451,1320662374,97.78,98.4,97.08,97.06,4.43,4.7,3.43,3.46
-30147,13,233,13233,97,31,1384155,1384155,4365,1937,47444142,47054362,41475,16908,808440844,803754838,2.22,1.6,2.92,2.94,0.23,0.18,0.17,0.17
-30148,13,085,13085,162,83,15838990,15768226,453,215,27952572,27794606,22330,10425,555315310,546046104,35.76,38.6,56.66,56.73,0.73,0.8,2.85,2.89
-30148,13,227,13227,291,132,12113582,12026380,453,215,27952572,27794606,29431,13692,602721655,601025731,64.24,61.4,43.34,43.27,0.99,0.96,2.01,2
-30149,13,115,13115,1569,46,22671341,22625348,1569,46,22671341,22625348,96317,40551,1342818451,1320662374,100,100,100,100,1.63,0.11,1.69,1.71
-30152,13,067,13067,40393,15221,55207716,54529036,40393,15221,55207716,54529036,688078,286490,892296837,879428364,100,100,100,100,5.87,5.31,6.19,6.2
-30153,13,143,13143,360,137,24760796,24521435,18411,7660,311189974,308580504,28780,12287,733420059,730804051,1.96,1.79,7.96,7.95,1.25,1.11,3.38,3.36
-30153,13,223,13223,4851,1890,47032918,46928884,18411,7660,311189974,308580504,142324,52130,814141312,808643215,26.35,24.67,15.11,15.21,3.41,3.63,5.78,5.8
-30153,13,233,13233,13200,5633,239396260,237130185,18411,7660,311189974,308580504,41475,16908,808440844,803754838,71.7,73.54,76.93,76.85,31.83,33.32,29.61,29.5
-30157,13,067,13067,1139,386,2634096,2610658,45123,16626,221535154,219982511,688078,286490,892296837,879428364,2.52,2.32,1.19,1.19,0.17,0.13,0.3,0.3
-30157,13,223,13223,43984,16240,218901058,217371853,45123,16626,221535154,219982511,142324,52130,814141312,808643215,97.48,97.68,98.81,98.81,30.9,31.15,26.89,26.88
-30161,13,015,13015,129,47,2968280,2968280,35058,15715,373714683,367260830,100157,39823,1217587552,1190213681,0.37,0.3,0.79,0.81,0.13,0.12,0.24,0.25
-30161,13,115,13115,34929,15668,370746403,364292550,35058,15715,373714683,367260830,96317,40551,1342818451,1320662374,99.63,99.7,99.21,99.19,36.26,38.64,27.61,27.58
-30164,13,217,13217,16,14,57815,48423,16,14,57815,48423,99958,38342,723119276,704894510,100,100,100,100,0.02,0.04,0.01,0.01
-30165,01,019,01019,70,64,4213877,4205502,39975,16505,440659670,430357974,25989,16267,1553934850,1434075952,0.18,0.39,0.96,0.98,0.27,0.39,0.27,0.29
-30165,13,055,13055,21,6,4057069,4057069,39975,16505,440659670,430357974,26015,10977,812112574,811541767,0.05,0.04,0.92,0.94,0.08,0.05,0.5,0.5
-30165,13,115,13115,39884,16435,432388724,422095403,39975,16505,440659670,430357974,96317,40551,1342818451,1320662374,99.77,99.58,98.12,98.08,41.41,40.53,32.2,31.96
-30168,13,067,13067,21393,9200,28971846,28689504,24241,10614,32680306,32385022,688078,286490,892296837,879428364,88.25,86.68,88.65,88.59,3.11,3.21,3.25,3.26
-30168,13,097,13097,2848,1414,3708460,3695518,24241,10614,32680306,32385022,132403,51672,520655209,518170971,11.75,13.32,11.35,11.41,2.15,2.74,0.71,0.71
-30170,13,045,13045,1826,757,60488565,60488565,2994,1266,118133855,118133855,110527,44607,1304927905,1292600278,60.99,59.79,51.2,51.2,1.65,1.7,4.64,4.68
-30170,13,149,13149,1168,509,57645290,57645290,2994,1266,118133855,118133855,11834,5148,779830983,766714528,39.01,40.21,48.8,48.8,9.87,9.89,7.39,7.52
-30171,13,015,13015,3177,1197,125521362,125513106,3491,1324,136811649,136790258,100157,39823,1217587552,1190213681,91.01,90.41,91.75,91.76,3.17,3.01,10.31,10.55
-30171,13,129,13129,314,127,11290287,11277152,3491,1324,136811649,136790258,55186,22278,927326521,921538864,8.99,9.59,8.25,8.24,0.57,0.57,1.22,1.22
-30173,13,115,13115,5940,2373,79583365,79152343,6221,2483,87856709,87402910,96317,40551,1342818451,1320662374,95.48,95.57,90.58,90.56,6.17,5.85,5.93,5.99
-30173,13,233,13233,281,110,8273344,8250567,6221,2483,87856709,87402910,41475,16908,808440844,803754838,4.52,4.43,9.42,9.44,0.68,0.65,1.02,1.03
-30175,13,123,13123,1482,690,97631303,97616465,6074,2580,228552729,228257179,28292,16564,1116923228,1104733530,24.4,26.74,42.72,42.77,5.24,4.17,8.74,8.84
-30175,13,227,13227,4592,1890,130921426,130640714,6074,2580,228552729,228257179,29431,13692,602721655,601025731,75.6,73.26,57.28,57.23,15.6,13.8,21.72,21.74
-30176,13,143,13143,7050,3167,217157142,216943667,7050,3167,217157142,216943667,28780,12287,733420059,730804051,100,100,100,100,24.5,25.78,29.61,29.69
-30177,13,227,13227,1049,454,13082156,13082156,1049,454,13082156,13082156,29431,13692,602721655,601025731,100,100,100,100,3.56,3.32,2.17,2.18
-30178,13,015,13015,3270,1219,92245682,91988386,3468,1300,140143441,139829665,100157,39823,1217587552,1190213681,94.29,93.77,65.82,65.79,3.26,3.06,7.58,7.73
-30178,13,223,13223,25,11,25745754,25732511,3468,1300,140143441,139829665,142324,52130,814141312,808643215,0.72,0.85,18.37,18.4,0.02,0.02,3.16,3.18
-30178,13,233,13233,173,70,22152005,22108768,3468,1300,140143441,139829665,41475,16908,808440844,803754838,4.99,5.38,15.81,15.81,0.42,0.41,2.74,2.75
-30179,13,045,13045,11226,4426,102233803,100181361,16807,6570,196042251,193712120,110527,44607,1304927905,1292600278,66.79,67.37,52.15,51.72,10.16,9.92,7.83,7.75
-30179,13,143,13143,1623,665,36216569,36200886,16807,6570,196042251,193712120,28780,12287,733420059,730804051,9.66,10.12,18.47,18.69,5.64,5.41,4.94,4.95
-30179,13,223,13223,3958,1479,57591879,57329873,16807,6570,196042251,193712120,142324,52130,814141312,808643215,23.55,22.51,29.38,29.6,2.78,2.84,7.07,7.09
-30180,13,045,13045,24853,10153,130146206,128284267,34274,13692,196166752,193960737,110527,44607,1304927905,1292600278,72.51,74.15,66.34,66.14,22.49,22.76,9.97,9.92
-30180,13,097,13097,7965,3027,51597393,51277193,34274,13692,196166752,193960737,132403,51672,520655209,518170971,23.24,22.11,26.3,26.44,6.02,5.86,9.91,9.9
-30180,13,223,13223,1456,512,14423153,14399277,34274,13692,196166752,193960737,142324,52130,814141312,808643215,4.25,3.74,7.35,7.42,1.02,0.98,1.77,1.78
-30182,13,045,13045,1447,595,58855459,58660032,2666,1179,92432170,92236743,110527,44607,1304927905,1292600278,54.28,50.47,63.67,63.6,1.31,1.33,4.51,4.54
-30182,13,143,13143,1219,584,33576711,33576711,2666,1179,92432170,92236743,28780,12287,733420059,730804051,45.72,49.53,36.33,36.4,4.24,4.75,4.58,4.59
-30183,13,015,13015,34,16,1773269,1773269,5282,2280,160877332,158781718,100157,39823,1217587552,1190213681,0.64,0.7,1.1,1.12,0.03,0.04,0.15,0.15
-30183,13,057,13057,5243,2261,158697216,156601602,5282,2280,160877332,158781718,214346,82360,1125104307,1092129613,99.26,99.17,98.64,98.63,2.45,2.75,14.11,14.34
-30183,13,227,13227,5,3,406847,406847,5282,2280,160877332,158781718,29431,13692,602721655,601025731,0.09,0.13,0.25,0.26,0.02,0.02,0.07,0.07
-30184,13,015,13015,5877,2406,161030201,154026777,6847,2768,181938644,174858293,100157,39823,1217587552,1190213681,85.83,86.92,88.51,88.09,5.87,6.04,13.23,12.94
-30184,13,057,13057,970,362,20908443,20831516,6847,2768,181938644,174858293,214346,82360,1125104307,1092129613,14.17,13.08,11.49,11.91,0.45,0.44,1.86,1.91
-30185,13,045,13045,3690,1534,158760961,157161760,3892,1614,165455410,163856209,110527,44607,1304927905,1292600278,94.81,95.04,95.95,95.91,3.34,3.44,12.17,12.16
-30185,13,097,13097,202,80,6694449,6694449,3892,1614,165455410,163856209,132403,51672,520655209,518170971,5.19,4.96,4.05,4.09,0.15,0.15,1.29,1.29
-30187,13,097,13097,8740,3305,89177148,89123152,8740,3305,89177148,89123152,132403,51672,520655209,518170971,100,100,100,100,6.6,6.4,17.13,17.2
-30188,13,057,13057,51060,20486,114228090,112862679,52380,20965,115243063,113874661,214346,82360,1125104307,1092129613,97.48,97.72,99.12,99.11,23.82,24.87,10.15,10.33
-30188,13,067,13067,1320,479,1014973,1011982,52380,20965,115243063,113874661,688078,286490,892296837,879428364,2.52,2.28,0.88,0.89,0.19,0.17,0.11,0.12
-30189,13,057,13057,36859,13512,55940309,50368726,36859,13512,55940309,50368726,214346,82360,1125104307,1092129613,100,100,100,100,17.2,16.41,4.97,4.61
-30204,13,171,13171,13007,5253,306500925,303532956,13493,5442,326554920,323474538,18317,7474,481308642,475262611,96.4,96.53,93.86,93.84,71.01,70.28,63.68,63.87
-30204,13,207,13207,213,82,8467930,8458903,13493,5442,326554920,323474538,26424,10710,1030326050,1024750743,1.58,1.51,2.59,2.62,0.81,0.77,0.82,0.83
-30204,13,293,13293,273,107,11586065,11482679,13493,5442,326554920,323474538,27153,12161,848360429,837697129,2.02,1.97,3.55,3.55,1.01,0.88,1.37,1.37
-30205,13,113,13113,2232,830,58070187,56528944,3061,1187,96221490,94153284,106567,40793,516240808,503344101,72.92,69.92,60.35,60.04,2.09,2.03,11.25,11.23
-30205,13,255,13255,829,357,38151303,37624340,3061,1187,96221490,94153284,64073,26777,516936743,508851760,27.08,30.08,39.65,39.96,1.29,1.33,7.38,7.39
-30206,13,231,13231,2958,1135,145811220,144008590,2958,1135,145811220,144008590,17869,6820,568256238,559659405,100,100,100,100,16.55,16.64,25.66,25.73
-30213,13,121,13121,29384,12120,168264464,166060288,29384,12120,168264464,166060288,920581,437105,1383894532,1363977166,100,100,100,100,3.19,2.77,12.16,12.17
-30214,13,113,13113,28913,11482,139592474,136546579,28913,11482,139592474,136546579,106567,40793,516240808,503344101,100,100,100,100,27.13,28.15,27.04,27.13
-30215,13,063,13063,3378,1330,4382719,4106155,33665,12312,190221927,185684579,259424,104705,373816856,366664243,10.03,10.8,2.3,2.21,1.3,1.27,1.17,1.12
-30215,13,113,13113,30287,10982,185839208,181578424,33665,12312,190221927,185684579,106567,40793,516240808,503344101,89.97,89.2,97.7,97.79,28.42,26.92,36,36.07
-30216,13,035,13035,2159,908,78518814,77920731,2159,908,78518814,77920731,23655,9357,487024429,477576117,100,100,100,100,9.13,9.7,16.12,16.32
-30217,13,149,13149,9338,4060,663803078,652041405,9433,4097,686805744,672742052,11834,5148,779830983,766714528,98.99,99.1,96.65,96.92,78.91,78.87,85.12,85.04
-30217,13,285,13285,95,37,23002666,20700647,9433,4097,686805744,672742052,67044,28046,1155036004,1072223976,1.01,0.9,3.35,3.08,0.14,0.13,1.99,1.93
-30218,13,199,13199,1974,813,176992931,174486765,1974,813,176992931,174486765,21992,9957,1308995757,1298161653,100,100,100,100,8.98,8.17,13.52,13.44
-30220,13,077,13077,4377,1673,78548841,78397221,5533,2138,142434914,142191536,127317,50171,1154660150,1141905439,79.11,78.25,55.15,55.13,3.44,3.33,6.8,6.87
-30220,13,199,13199,1156,465,63886073,63794315,5533,2138,142434914,142191536,21992,9957,1308995757,1298161653,20.89,21.75,44.85,44.87,5.26,4.67,4.88,4.91
-30222,13,199,13199,4042,1882,376445848,374332220,4042,1882,376445848,374332220,21992,9957,1308995757,1298161653,100,100,100,100,18.38,18.9,28.76,28.84
-30223,13,255,13255,36769,15424,285529654,280545698,36769,15424,285529654,280545698,64073,26777,516936743,508851760,100,100,100,100,57.39,57.6,55.23,55.13
-30224,13,171,13171,606,241,14903822,14829766,25197,10413,173986485,171298233,18317,7474,481308642,475262611,2.41,2.31,8.57,8.66,3.31,3.22,3.1,3.12
-30224,13,231,13231,2009,742,26039732,25509801,25197,10413,173986485,171298233,17869,6820,568256238,559659405,7.97,7.13,14.97,14.89,11.24,10.88,4.58,4.56
-30224,13,255,13255,22582,9430,133042931,130958666,25197,10413,173986485,171298233,64073,26777,516936743,508851760,89.62,90.56,76.47,76.45,35.24,35.22,25.74,25.74
-30228,13,063,13063,17397,6440,56072060,54093120,38569,14356,198279498,193793663,259424,104705,373816856,366664243,45.11,44.86,28.28,27.91,6.71,6.15,15,14.75
-30228,13,151,13151,19801,7387,132001846,129560943,38569,14356,198279498,193793663,203922,76533,845752075,834304554,51.34,51.46,66.57,66.86,9.71,9.65,15.61,15.53
-30228,13,255,13255,1371,529,10205592,10139600,38569,14356,198279498,193793663,64073,26777,516936743,508851760,3.55,3.68,5.15,5.23,2.14,1.98,1.97,1.99
-30230,13,077,13077,139,56,15493394,15493394,9103,3957,344366993,338419460,127317,50171,1154660150,1141905439,1.53,1.42,4.5,4.58,0.11,0.11,1.34,1.36
-30230,13,149,13149,1082,461,47353161,46016711,9103,3957,344366993,338419460,11834,5148,779830983,766714528,11.89,11.65,13.75,13.6,9.14,8.95,6.07,6
-30230,13,199,13199,693,325,74244721,74184897,9103,3957,344366993,338419460,21992,9957,1308995757,1298161653,7.61,8.21,21.56,21.92,3.15,3.26,5.67,5.71
-30230,13,285,13285,7189,3115,207275717,202724458,9103,3957,344366993,338419460,67044,28046,1155036004,1072223976,78.97,78.72,60.19,59.9,10.72,11.11,17.95,18.91
-30233,13,035,13035,19652,7683,365996723,357191066,23218,9242,414085948,403310013,23655,9357,487024429,477576117,84.64,83.13,88.39,88.56,83.08,82.11,75.15,74.79
-30233,13,151,13151,857,291,14531736,14499843,23218,9242,414085948,403310013,203922,76533,845752075,834304554,3.69,3.15,3.51,3.6,0.42,0.38,1.72,1.74
-30233,13,171,13171,565,243,11880501,11580877,23218,9242,414085948,403310013,18317,7474,481308642,475262611,2.43,2.63,2.87,2.87,3.08,3.25,2.47,2.44
-30233,13,207,13207,2115,1009,21379440,19783719,23218,9242,414085948,403310013,26424,10710,1030326050,1024750743,9.11,10.92,5.16,4.91,8,9.42,2.08,1.93
-30233,13,217,13217,29,16,297548,254508,23218,9242,414085948,403310013,99958,38342,723119276,704894510,0.12,0.17,0.07,0.06,0.03,0.04,0.04,0.04
-30234,13,035,13035,1672,690,28773917,28766494,1934,783,30666251,30658828,23655,9357,487024429,477576117,86.45,88.12,93.83,93.83,7.07,7.37,5.91,6.02
-30234,13,151,13151,262,93,1892334,1892334,1934,783,30666251,30658828,203922,76533,845752075,834304554,13.55,11.88,6.17,6.17,0.13,0.12,0.22,0.23
-30236,13,063,13063,43503,17825,77697973,74531766,46434,18927,87620574,83389301,259424,104705,373816856,366664243,93.69,94.18,88.68,89.38,16.77,17.02,20.79,20.33
-30236,13,151,13151,2931,1102,9922601,8857535,46434,18927,87620574,83389301,203922,76533,845752075,834304554,6.31,5.82,11.32,10.62,1.44,1.44,1.17,1.06
-30238,13,063,13063,33979,12919,37939998,37565459,34713,13200,44123604,43703050,259424,104705,373816856,366664243,97.89,97.87,85.99,85.96,13.1,12.34,10.15,10.25
-30238,13,113,13113,734,281,6183606,6137591,34713,13200,44123604,43703050,106567,40793,516240808,503344101,2.11,2.13,14.01,14.04,0.69,0.69,1.2,1.22
-30240,13,285,13285,30014,12541,432737226,361530187,30014,12541,432737226,361530187,67044,28046,1155036004,1072223976,100,100,100,100,44.77,44.72,37.47,33.72
-30241,13,285,13285,23176,9590,292072927,288440397,23176,9590,292072927,288440397,67044,28046,1155036004,1072223976,100,100,100,100,34.57,34.19,25.29,26.9
-30248,13,035,13035,167,70,10602110,10564961,23249,8290,184422645,182783894,23655,9357,487024429,477576117,0.72,0.84,5.75,5.78,0.71,0.75,2.18,2.21
-30248,13,151,13151,22408,7900,157964114,156467918,23249,8290,184422645,182783894,203922,76533,845752075,834304554,96.38,95.3,85.65,85.6,10.99,10.32,18.68,18.75
-30248,13,255,13255,674,320,15856421,15751015,23249,8290,184422645,182783894,64073,26777,516936743,508851760,2.9,3.86,8.6,8.62,1.05,1.2,3.07,3.1
-30250,13,063,13063,679,19,695475,695475,679,19,695475,695475,259424,104705,373816856,366664243,100,100,100,100,0.26,0.02,0.19,0.19
-30251,13,199,13199,2342,1003,89874875,89403529,2342,1003,89874875,89403529,21992,9957,1308995757,1298161653,100,100,100,100,10.65,10.07,6.87,6.89
-30252,13,151,13151,41130,14514,232505517,229286689,41428,14627,239484349,236240877,203922,76533,845752075,834304554,99.28,99.23,97.09,97.06,20.17,18.96,27.49,27.48
-30252,13,247,13247,298,113,6978832,6954188,41428,14627,239484349,236240877,85215,33272,342131629,336161686,0.72,0.77,2.91,2.94,0.35,0.34,2.04,2.07
-30253,13,151,13151,49380,19117,126948106,125672145,49380,19117,126948106,125672145,203922,76533,845752075,834304554,100,100,100,100,24.22,24.98,15.01,15.06
-30256,13,231,13231,2213,856,69044285,68123272,2826,1120,90050513,88966934,17869,6820,568256238,559659405,78.31,76.43,76.67,76.57,12.38,12.55,12.15,12.17
-30256,13,293,13293,613,264,21006228,20843662,2826,1120,90050513,88966934,27153,12161,848360429,837697129,21.69,23.57,23.33,23.43,2.26,2.17,2.48,2.49
-30257,13,171,13171,3738,1562,106502445,104586058,4138,1709,116624515,114434088,18317,7474,481308642,475262611,90.33,91.4,91.32,91.39,20.41,20.9,22.13,22.01
-30257,13,231,13231,400,147,10122070,9848030,4138,1709,116624515,114434088,17869,6820,568256238,559659405,9.67,8.6,8.68,8.61,2.24,2.16,1.78,1.76
-30258,13,231,13231,1959,777,82260997,81178930,2622,1062,147102004,144866774,17869,6820,568256238,559659405,74.71,73.16,55.92,56.04,10.96,11.39,14.48,14.51
-30258,13,293,13293,663,285,64841007,63687844,2622,1062,147102004,144866774,27153,12161,848360429,837697129,25.29,26.84,44.08,43.96,2.44,2.34,7.64,7.6
-30259,13,077,13077,3041,1230,90806490,90082531,3041,1230,90806490,90082531,127317,50171,1154660150,1141905439,100,100,100,100,2.39,2.45,7.86,7.89
-30260,13,063,13063,23244,9962,29502581,29187754,23244,9962,29502581,29187754,259424,104705,373816856,366664243,100,100,100,100,8.96,9.51,7.89,7.96
-30263,13,077,13077,52960,21382,520182195,514656402,53008,21403,522867349,517323224,127317,50171,1154660150,1141905439,99.91,99.9,99.49,99.48,41.6,42.62,45.05,45.07
-30263,13,149,13149,48,21,2685154,2666822,53008,21403,522867349,517323224,11834,5148,779830983,766714528,0.09,0.1,0.51,0.52,0.41,0.41,0.34,0.35
-30265,13,077,13077,31713,12484,111959349,110207660,31713,12484,111959349,110207660,127317,50171,1154660150,1141905439,100,100,100,100,24.91,24.88,9.7,9.65
-30268,13,077,13077,2258,892,21080572,21057952,9090,3870,172148193,169338042,127317,50171,1154660150,1141905439,24.84,23.05,12.25,12.44,1.77,1.78,1.83,1.84
-30268,13,121,13121,6832,2978,151067621,148280090,9090,3870,172148193,169338042,920581,437105,1383894532,1363977166,75.16,76.95,87.75,87.56,0.74,0.68,10.92,10.87
-30269,13,113,13113,35069,13845,67377462,64964461,35069,13845,67377462,64964461,106567,40793,516240808,503344101,100,100,100,100,32.91,33.94,13.05,12.91
-30273,13,063,13063,13847,5405,15111549,15009184,14709,5716,17048900,16893304,259424,104705,373816856,366664243,94.14,94.56,88.64,88.85,5.34,5.16,4.04,4.09
-30273,13,151,13151,862,311,1937351,1884120,14709,5716,17048900,16893304,203922,76533,845752075,834304554,5.86,5.44,11.36,11.15,0.42,0.41,0.23,0.23
-30274,13,063,13063,31893,13148,27503925,27349189,31893,13148,27503925,27349189,259424,104705,373816856,366664243,100,100,100,100,12.29,12.56,7.36,7.46
-30275,13,077,13077,19,13,277620,277620,19,13,277620,277620,127317,50171,1154660150,1141905439,100,100,100,100,0.01,0.03,0.02,0.02
-30276,13,077,13077,12458,4966,198593790,195980516,13866,5449,257704454,254332954,127317,50171,1154660150,1141905439,89.85,91.14,77.06,77.06,9.79,9.9,17.2,17.16
-30276,13,113,13113,1046,332,11609706,11308417,13866,5449,257704454,254332954,106567,40793,516240808,503344101,7.54,6.09,4.51,4.45,0.98,0.81,2.25,2.25
-30276,13,199,13199,362,151,47500958,47044021,13866,5449,257704454,254332954,21992,9957,1308995757,1298161653,2.61,2.77,18.43,18.5,1.65,1.52,3.63,3.62
-30277,13,077,13077,20270,7437,117157912,115192156,20270,7437,117157912,115192156,127317,50171,1154660150,1141905439,100,100,100,100,15.92,14.82,10.15,10.09
-30281,13,063,13063,6249,2735,3109529,3100789,66140,26239,184422052,182130671,259424,104705,373816856,366664243,9.45,10.42,1.69,1.7,2.41,2.61,0.83,0.85
-30281,13,151,13151,57247,22474,144416708,142734732,66140,26239,184422052,182130671,203922,76533,845752075,834304554,86.55,85.65,78.31,78.37,28.07,29.37,17.08,17.11
-30281,13,247,13247,2644,1030,36895815,36295150,66140,26239,184422052,182130671,85215,33272,342131629,336161686,4,3.93,20.01,19.93,3.1,3.1,10.78,10.8
-30284,13,255,13255,55,26,245033,241718,55,26,245033,241718,64073,26777,516936743,508851760,100,100,100,100,0.09,0.1,0.05,0.05
-30285,13,171,13171,116,41,15275771,15017398,707,287,44793840,44107477,18317,7474,481308642,475262611,16.41,14.29,34.1,34.05,0.63,0.55,3.17,3.16
-30285,13,231,13231,116,52,3463939,3431123,707,287,44793840,44107477,17869,6820,568256238,559659405,16.41,18.12,7.73,7.78,0.65,0.76,0.61,0.61
-30285,13,293,13293,475,194,26054130,25658956,707,287,44793840,44107477,27153,12161,848360429,837697129,67.19,67.6,58.16,58.17,1.75,1.6,3.07,3.06
-30286,13,293,13293,23490,10550,509652113,502956516,23490,10550,509652113,502956516,27153,12161,848360429,837697129,100,100,100,100,86.51,86.75,60.07,60.04
-30288,13,063,13063,4817,1795,5170605,5161985,8929,3343,20356224,20238627,259424,104705,373816856,366664243,53.95,53.69,25.4,25.51,1.86,1.71,1.38,1.41
-30288,13,089,13089,4112,1548,15185619,15076642,8929,3343,20356224,20238627,691893,304968,702254121,693033963,46.05,46.31,74.6,74.49,0.59,0.51,2.16,2.18
-30289,13,077,13077,82,38,559987,559987,82,38,559987,559987,127317,50171,1154660150,1141905439,100,100,100,100,0.06,0.08,0.05,0.05
-30290,13,113,13113,8286,3041,47568165,46279685,8286,3041,47568165,46279685,106567,40793,516240808,503344101,100,100,100,100,7.78,7.45,9.21,9.19
-30291,13,121,13121,21010,9624,31950144,31605281,21010,9624,31950144,31605281,920581,437105,1383894532,1363977166,100,100,100,100,2.28,2.2,2.31,2.32
-30292,13,231,13231,4150,1494,118835289,117032187,5943,2185,152741098,150622910,17869,6820,568256238,559659405,69.83,68.38,77.8,77.7,23.22,21.91,20.91,20.91
-30292,13,255,13255,1793,691,33905809,33590723,5943,2185,152741098,150622910,64073,26777,516936743,508851760,30.17,31.62,22.2,22.3,2.8,2.58,6.56,6.6
-30293,13,199,13199,2981,1435,211280181,208501902,2981,1435,211280181,208501902,21992,9957,1308995757,1298161653,100,100,100,100,13.55,14.41,16.14,16.06
-30294,13,063,13063,13452,4938,30841176,30714392,39865,14764,84558234,83815584,259424,104705,373816856,366664243,33.74,33.45,36.47,36.65,5.19,4.72,8.25,8.38
-30294,13,089,13089,17271,6433,29089482,28662977,39865,14764,84558234,83815584,691893,304968,702254121,693033963,43.32,43.57,34.4,34.2,2.5,2.11,4.14,4.14
-30294,13,151,13151,9044,3344,23631762,23448295,39865,14764,84558234,83815584,203922,76533,845752075,834304554,22.69,22.65,27.95,27.98,4.44,4.37,2.79,2.81
-30294,13,247,13247,98,49,995814,989920,39865,14764,84558234,83815584,85215,33272,342131629,336161686,0.25,0.33,1.18,1.18,0.12,0.15,0.29,0.29
-30295,13,171,13171,95,43,2541479,2538228,4159,1660,115220185,113065700,18317,7474,481308642,475262611,2.28,2.59,2.21,2.24,0.52,0.58,0.53,0.53
-30295,13,231,13231,4064,1617,112678706,110527472,4159,1660,115220185,113065700,17869,6820,568256238,559659405,97.72,97.41,97.79,97.76,22.74,23.71,19.83,19.75
-30296,13,063,13063,21534,8211,21879459,21587653,25840,9803,27555213,27134531,259424,104705,373816856,366664243,83.34,83.76,79.4,79.56,8.3,7.84,5.85,5.89
-30296,13,121,13121,4306,1592,5675754,5546878,25840,9803,27555213,27134531,920581,437105,1383894532,1363977166,16.66,16.24,20.6,20.44,0.47,0.36,0.41,0.41
-30297,13,063,13063,27188,10559,28577429,28422409,27188,10559,28577429,28422409,259424,104705,373816856,366664243,100,100,100,100,10.48,10.08,7.64,7.75
-30303,13,121,13121,5934,1749,2705518,2705518,5934,1749,2705518,2705518,920581,437105,1383894532,1363977166,100,100,100,100,0.64,0.4,0.2,0.2
-30305,13,121,13121,22999,14125,16740693,16667801,22999,14125,16740693,16667801,920581,437105,1383894532,1363977166,100,100,100,100,2.5,3.23,1.21,1.22
-30306,13,089,13089,8087,4186,4915573,4896216,22246,12373,11405429,11370386,691893,304968,702254121,693033963,36.35,33.83,43.1,43.06,1.17,1.37,0.7,0.71
-30306,13,121,13121,14159,8187,6489856,6474170,22246,12373,11405429,11370386,920581,437105,1383894532,1363977166,63.65,66.17,56.9,56.94,1.54,1.87,0.47,0.47
-30307,13,089,13089,13020,6287,9770951,9761436,18004,9348,11842668,11828687,691893,304968,702254121,693033963,72.32,67.26,82.51,82.52,1.88,2.06,1.39,1.41
-30307,13,121,13121,4984,3061,2071717,2067251,18004,9348,11842668,11828687,920581,437105,1383894532,1363977166,27.68,32.74,17.49,17.48,0.54,0.7,0.15,0.15
-30308,13,121,13121,15413,11205,4130055,4130055,15413,11205,4130055,4130055,920581,437105,1383894532,1363977166,100,100,100,100,1.67,2.56,0.3,0.3
-30309,13,121,13121,21845,16207,8947111,8852923,21845,16207,8947111,8852923,920581,437105,1383894532,1363977166,100,100,100,100,2.37,3.71,0.65,0.65
-30310,13,121,13121,26912,14349,22862583,22842592,26912,14349,22862583,22842592,920581,437105,1383894532,1363977166,100,100,100,100,2.92,3.28,1.65,1.67
-30311,13,121,13121,32218,15636,32287889,32193748,32218,15636,32287889,32193748,920581,437105,1383894532,1363977166,100,100,100,100,3.5,3.58,2.33,2.36
-30312,13,121,13121,19360,12007,8683550,8683550,19360,12007,8683550,8683550,920581,437105,1383894532,1363977166,100,100,100,100,2.1,2.75,0.63,0.64
-30313,13,121,13121,9495,2856,2880070,2880070,9495,2856,2880070,2880070,920581,437105,1383894532,1363977166,100,100,100,100,1.03,0.65,0.21,0.21
-30314,13,121,13121,22020,10614,12092212,12092212,22020,10614,12092212,12092212,920581,437105,1383894532,1363977166,100,100,100,100,2.39,2.43,0.87,0.89
-30315,13,089,13089,11,6,191405,191405,33857,14791,29346223,29303430,691893,304968,702254121,693033963,0.03,0.04,0.65,0.65,0,0,0.03,0.03
-30315,13,121,13121,33846,14785,29154818,29112025,33857,14791,29346223,29303430,920581,437105,1383894532,1363977166,99.97,99.96,99.35,99.35,3.68,3.38,2.11,2.13
-30316,13,089,13089,23693,11049,27357413,27216857,31110,15164,32569449,32428893,691893,304968,702254121,693033963,76.16,72.86,84,83.93,3.42,3.62,3.9,3.93
-30316,13,121,13121,7417,4115,5212036,5212036,31110,15164,32569449,32428893,920581,437105,1383894532,1363977166,23.84,27.14,16,16.07,0.81,0.94,0.38,0.38
-30317,13,089,13089,11941,6254,9187237,9090993,11970,6269,9197854,9101610,691893,304968,702254121,693033963,99.76,99.76,99.88,99.88,1.73,2.05,1.31,1.31
-30317,13,121,13121,29,15,10617,10617,11970,6269,9197854,9101610,920581,437105,1383894532,1363977166,0.24,0.24,0.12,0.12,0,0,0,0
-30318,13,121,13121,49736,25475,53217192,52742175,49736,25475,53217192,52742175,920581,437105,1383894532,1363977166,100,100,100,100,5.4,5.83,3.85,3.87
-30319,13,089,13089,32355,15776,22932957,22698002,38423,19500,27150292,26839643,691893,304968,702254121,693033963,84.21,80.9,84.47,84.57,4.68,5.17,3.27,3.28
-30319,13,121,13121,6068,3724,4217335,4141641,38423,19500,27150292,26839643,920581,437105,1383894532,1363977166,15.79,19.1,15.53,15.43,0.66,0.85,0.3,0.3
-30322,13,089,13089,2023,0,1070187,1068100,2023,0,1070187,1068100,691893,304968,702254121,693033963,100,0,100,100,0.29,0,0.15,0.15
-30324,13,089,13089,4362,2675,3372293,3372293,24267,15645,13743321,13628133,691893,304968,702254121,693033963,17.98,17.1,24.54,24.75,0.63,0.88,0.48,0.49
-30324,13,121,13121,19905,12970,10371028,10255840,24267,15645,13743321,13628133,920581,437105,1383894532,1363977166,82.02,82.9,75.46,75.25,2.16,2.97,0.75,0.75
-30326,13,121,13121,4802,3928,1791714,1791714,4802,3928,1791714,1791714,920581,437105,1383894532,1363977166,100,100,100,100,0.52,0.9,0.13,0.13
-30327,13,121,13121,22208,9929,44241468,43484137,22208,9929,44241468,43484137,920581,437105,1383894532,1363977166,100,100,100,100,2.41,2.27,3.2,3.19
-30328,13,121,13121,30348,16017,34016111,33429785,30348,16017,34016111,33429785,920581,437105,1383894532,1363977166,100,100,100,100,3.3,3.66,2.46,2.45
-30329,13,089,13089,28539,13149,14146997,14012097,28539,13149,14146997,14012097,691893,304968,702254121,693033963,100,100,100,100,4.12,4.31,2.01,2.02
-30331,13,121,13121,54094,25100,97514524,95884250,54094,25100,97514524,95884250,920581,437105,1383894532,1363977166,100,100,100,100,5.88,5.74,7.05,7.03
-30332,13,121,13121,2970,0,218051,218051,2970,0,218051,218051,920581,437105,1383894532,1363977166,100,0,100,100,0.32,0,0.02,0.02
-30334,13,121,13121,1,0,126610,126610,1,0,126610,126610,920581,437105,1383894532,1363977166,100,0,100,100,0,0,0.01,0.01
-30336,13,121,13121,971,460,27556035,26971197,971,460,27556035,26971197,920581,437105,1383894532,1363977166,100,100,100,100,0.11,0.11,1.99,1.98
-30337,13,063,13063,0,0,14774789,14772110,11505,6225,31267994,31231737,259424,104705,373816856,366664243,0,0,47.25,47.3,0,0,3.95,4.03
-30337,13,121,13121,11505,6225,16493205,16459627,11505,6225,31267994,31231737,920581,437105,1383894532,1363977166,100,100,52.75,52.7,1.25,1.42,1.19,1.21
-30338,13,089,13089,33366,15118,25437235,25212053,33617,15262,25652155,25426973,691893,304968,702254121,693033963,99.25,99.06,99.16,99.15,4.82,4.96,3.62,3.64
-30338,13,121,13121,251,144,214920,214920,33617,15262,25652155,25426973,920581,437105,1383894532,1363977166,0.75,0.94,0.84,0.85,0.03,0.03,0.02,0.02
-30339,13,067,13067,18050,11547,19356559,18475902,18304,12022,22253601,21254578,688078,286490,892296837,879428364,98.61,96.05,86.98,86.93,2.62,4.03,2.17,2.1
-30339,13,121,13121,254,475,2897042,2778676,18304,12022,22253601,21254578,920581,437105,1383894532,1363977166,1.39,3.95,13.02,13.07,0.03,0.11,0.21,0.2
-30340,13,089,13089,24962,9874,17788706,17772838,29394,11419,22087045,22045569,691893,304968,702254121,693033963,84.92,86.47,80.54,80.62,3.61,3.24,2.53,2.56
-30340,13,135,13135,4432,1545,4298339,4272731,29394,11419,22087045,22045569,805321,291547,1131242872,1114687261,15.08,13.53,19.46,19.38,0.55,0.53,0.38,0.38
-30341,13,089,13089,31793,14015,26381442,26345053,31793,14015,26381442,26345053,691893,304968,702254121,693033963,100,100,100,100,4.6,4.6,3.76,3.8
-30342,13,121,13121,29879,13798,23342564,23157587,29879,13798,23342564,23157587,920581,437105,1383894532,1363977166,100,100,100,100,3.25,3.16,1.69,1.7
-30344,13,121,13121,31776,15991,31362927,31322888,31776,15991,31362927,31322888,920581,437105,1383894532,1363977166,100,100,100,100,3.45,3.66,2.27,2.3
-30345,13,089,13089,23129,10492,18648261,18432938,23129,10492,18648261,18432938,691893,304968,702254121,693033963,100,100,100,100,3.34,3.44,2.66,2.66
-30346,13,089,13089,4696,3377,2607497,2607497,4696,3377,2607497,2607497,691893,304968,702254121,693033963,100,100,100,100,0.68,1.11,0.37,0.38
-30349,13,063,13063,18251,9418,17317887,17127101,67602,30002,119674592,118896456,259424,104705,373816856,366664243,27,31.39,14.47,14.41,7.04,8.99,4.63,4.67
-30349,13,121,13121,49351,20584,102356705,101769355,67602,30002,119674592,118896456,920581,437105,1383894532,1363977166,73,68.61,85.53,85.59,5.36,4.71,7.4,7.46
-30350,13,089,13089,101,47,131424,131424,34740,17631,34313563,32437664,691893,304968,702254121,693033963,0.29,0.27,0.38,0.41,0.01,0.02,0.02,0.02
-30350,13,121,13121,34639,17584,34182139,32306240,34740,17631,34313563,32437664,920581,437105,1383894532,1363977166,99.71,99.73,99.62,99.59,3.76,4.02,2.47,2.37
-30354,13,063,13063,13,1,3239702,3239702,14857,6855,27900508,27838448,259424,104705,373816856,366664243,0.09,0.01,11.61,11.64,0.01,0,0.87,0.88
-30354,13,121,13121,14844,6854,24660806,24598746,14857,6855,27900508,27838448,920581,437105,1383894532,1363977166,99.91,99.99,88.39,88.36,1.61,1.57,1.78,1.8
-30360,13,089,13089,12172,4744,10637945,10267191,14536,5640,15481282,15082723,691893,304968,702254121,693033963,83.74,84.11,68.71,68.07,1.76,1.56,1.51,1.48
-30360,13,135,13135,2364,896,4843337,4815532,14536,5640,15481282,15082723,805321,291547,1131242872,1114687261,16.26,15.89,31.29,31.93,0.29,0.31,0.43,0.43
-30363,13,121,13121,2680,2675,827337,815736,2680,2675,827337,815736,920581,437105,1383894532,1363977166,100,100,100,100,0.29,0.61,0.06,0.06
-30401,13,107,13107,13500,5853,662659664,654795210,13500,5853,662659664,654795210,22598,9968,1787562254,1762755669,100,100,100,100,59.74,58.72,37.07,37.15
-30410,13,209,13209,2168,807,174085402,173075067,2168,807,174085402,173075067,9123,3921,633751560,620362830,100,100,100,100,23.76,20.58,27.47,27.9
-30411,13,175,13175,228,132,82963871,82478682,4371,1206,396393472,392263635,48434,21368,2119828490,2090886200,5.22,10.95,20.93,21.03,0.47,0.62,3.91,3.94
-30411,13,271,13271,0,2,10967496,10791354,4371,1206,396393472,392263635,16500,7297,1149977507,1132610545,0,0.17,2.77,2.75,0,0.03,0.95,0.95
-30411,13,309,13309,4143,1072,302462105,298993599,4371,1206,396393472,392263635,7421,2625,777691389,765301286,94.78,88.89,76.3,76.22,55.83,40.84,38.89,39.07
-30412,13,209,13209,80,40,3997548,3957266,80,40,3997548,3957266,9123,3921,633751560,620362830,100,100,100,100,0.88,1.02,0.63,0.64
-30413,13,163,13163,1186,551,187284895,185802974,1575,770,322050993,319812258,16930,7298,1371831156,1363589314,75.3,71.56,58.15,58.1,7.01,7.55,13.65,13.63
-30413,13,167,13167,94,55,34275211,33992503,1575,770,322050993,319812258,9980,4120,794071977,784793399,5.97,7.14,10.64,10.63,0.94,1.33,4.32,4.33
-30413,13,303,13303,295,164,100490887,100016781,1575,770,322050993,319812258,21187,9047,1772472988,1757182927,18.73,21.3,31.2,31.27,1.39,1.81,5.67,5.69
-30415,13,031,13031,6780,2725,421046354,416278970,6780,2725,421046354,416278970,70217,28794,1783531569,1742568254,100,100,100,100,9.66,9.46,23.61,23.89
-30417,13,031,13031,13,5,363073,361054,11090,4763,457375056,447073456,70217,28794,1783531569,1742568254,0.12,0.1,0.08,0.08,0.02,0.02,0.02,0.02
-30417,13,109,13109,10660,4526,401235445,392026583,11090,4763,457375056,447073456,11000,4664,483989980,473586453,96.12,95.02,87.73,87.69,96.91,97.04,82.9,82.78
-30417,13,267,13267,417,232,55776538,54685819,11090,4763,457375056,447073456,25520,9966,1264817535,1241648097,3.76,4.87,12.19,12.23,1.63,2.33,4.41,4.4
-30420,13,043,13043,185,100,20407960,19826702,1460,783,100287635,98133230,10998,4761,644539101,629480666,12.67,12.77,20.35,20.2,1.68,2.1,3.17,3.15
-30420,13,267,13267,1275,683,79879675,78306528,1460,783,100287635,98133230,25520,9966,1264817535,1241648097,87.33,87.23,79.65,79.8,5,6.85,6.32,6.31
-30421,13,267,13267,3381,1746,265273871,261721298,3381,1746,265273871,261721298,25520,9966,1264817535,1241648097,100,100,100,100,13.25,17.52,20.97,21.08
-30423,13,109,13109,120,63,2067418,1944008,120,63,2067418,1944008,11000,4664,483989980,473586453,100,100,100,100,1.09,1.35,0.43,0.41
-30425,13,031,13031,210,98,28965893,28492943,1198,593,188347024,185352388,70217,28794,1783531569,1742568254,17.53,16.53,15.38,15.37,0.3,0.34,1.62,1.64
-30425,13,107,13107,618,282,88721781,87146357,1198,593,188347024,185352388,22598,9968,1787562254,1762755669,51.59,47.55,47.11,47.02,2.73,2.83,4.96,4.94
-30425,13,165,13165,370,213,70659350,69713088,1198,593,188347024,185352388,8340,4221,912901251,899448996,30.88,35.92,37.52,37.61,4.44,5.05,7.74,7.75
-30426,13,033,13033,1011,502,222564830,219056737,1100,565,312969443,307635639,23316,9865,2162595133,2141836337,91.91,88.85,71.11,71.21,4.34,5.09,10.29,10.23
-30426,13,251,13251,89,63,90404613,88578902,1100,565,312969443,307635639,14593,6739,1698692678,1670803650,8.09,11.15,28.89,28.79,0.61,0.93,5.32,5.3
-30427,13,109,13109,15,6,3462628,3451492,12864,4977,627789382,615610279,11000,4664,483989980,473586453,0.12,0.12,0.55,0.56,0.14,0.13,0.72,0.73
-30427,13,183,13183,2251,873,115642548,113053396,12864,4977,627789382,615610279,14464,6039,1045871677,1036755278,17.5,17.54,18.42,18.36,15.56,14.46,11.06,10.9
-30427,13,267,13267,10598,4098,508684206,499105391,12864,4977,627789382,615610279,25520,9966,1264817535,1241648097,82.38,82.34,81.03,81.07,41.53,41.12,40.22,40.2
-30428,13,175,13175,273,136,97779951,96341884,2766,1278,392461029,385392148,48434,21368,2119828490,2090886200,9.87,10.64,24.91,25,0.56,0.64,4.61,4.61
-30428,13,309,13309,2493,1142,294681078,289050264,2766,1278,392461029,385392148,7421,2625,777691389,765301286,90.13,89.36,75.09,75,33.59,43.5,37.89,37.77
-30429,13,109,13109,205,69,563524,563524,205,69,563524,563524,11000,4664,483989980,473586453,100,100,100,100,1.86,1.48,0.12,0.12
-30434,13,033,13033,310,146,77180898,76900169,5728,2348,516507240,511881832,23316,9865,2162595133,2141836337,5.41,6.22,14.94,15.02,1.33,1.48,3.57,3.59
-30434,13,163,13163,5418,2202,439326342,434981663,5728,2348,516507240,511881832,16930,7298,1371831156,1363589314,94.59,93.78,85.06,84.98,32,30.17,32.02,31.9
-30436,13,107,13107,820,430,128318779,126104910,11961,5348,745645315,731618130,22598,9968,1787562254,1762755669,6.86,8.04,17.21,17.24,3.63,4.31,7.18,7.15
-30436,13,267,13267,72,35,10680227,10597095,11961,5348,745645315,731618130,25520,9966,1264817535,1241648097,0.6,0.65,1.43,1.45,0.28,0.35,0.84,0.85
-30436,13,279,13279,11069,4883,606646309,594916125,11961,5348,745645315,731618130,27223,12144,960866707,942767920,92.54,91.31,81.36,81.32,40.66,40.21,63.14,63.1
-30438,13,267,13267,74,27,830674,822332,74,27,830674,822332,25520,9966,1264817535,1241648097,100,100,100,100,0.29,0.27,0.07,0.07
-30439,13,043,13043,10780,4640,623932905,609455728,10877,4677,641851084,627085434,10998,4761,644539101,629480666,99.11,99.21,97.21,97.19,98.02,97.46,96.8,96.82
-30439,13,107,13107,97,37,17918179,17629706,10877,4677,641851084,627085434,22598,9968,1787562254,1762755669,0.89,0.79,2.79,2.81,0.43,0.37,1,1
-30441,13,033,13033,592,290,199042587,195615173,1663,868,478798791,472740656,23316,9865,2162595133,2141836337,35.6,33.41,41.57,41.38,2.54,2.94,9.2,9.13
-30441,13,107,13107,1053,570,276883072,274259902,1663,868,478798791,472740656,22598,9968,1787562254,1762755669,63.32,65.67,57.83,58.01,4.66,5.72,15.49,15.56
-30441,13,165,13165,18,8,2873132,2865581,1663,868,478798791,472740656,8340,4221,912901251,899448996,1.08,0.92,0.6,0.61,0.22,0.19,0.31,0.32
-30442,13,033,13033,272,111,71400031,70350945,7698,3845,819511339,806792494,23316,9865,2162595133,2141836337,3.53,2.89,8.71,8.72,1.17,1.13,3.3,3.28
-30442,13,165,13165,7426,3734,748111308,736441549,7698,3845,819511339,806792494,8340,4221,912901251,899448996,96.47,97.11,91.29,91.28,89.04,88.46,81.95,81.88
-30445,13,209,13209,3285,1422,212552348,206470951,3285,1422,212552348,206470951,9123,3921,633751560,620362830,100,100,100,100,36.01,36.27,33.54,33.28
-30446,13,103,13103,169,84,59403066,59252258,1357,622,173080712,170697698,52250,19884,1250784074,1237236175,12.45,13.5,34.32,34.71,0.32,0.42,4.75,4.79
-30446,13,251,13251,1188,538,113677646,111445440,1357,622,173080712,170697698,14593,6739,1698692678,1670803650,87.55,86.5,65.68,65.29,8.14,7.98,6.69,6.67
-30448,13,107,13107,81,29,7539309,7461573,81,29,7539309,7461573,22598,9968,1787562254,1762755669,100,100,100,100,0.36,0.29,0.42,0.42
-30449,13,251,13251,119,65,20003371,19836426,119,65,20003371,19836426,14593,6739,1698692678,1670803650,100,100,100,100,0.82,0.96,1.18,1.19
-30450,13,031,13031,2583,1114,131469248,128170418,2583,1114,131469248,128170418,70217,28794,1783531569,1742568254,100,100,100,100,3.68,3.87,7.37,7.36
-30451,13,043,13043,33,21,198236,198236,33,21,198236,198236,10998,4761,644539101,629480666,100,100,100,100,0.3,0.44,0.03,0.03
-30452,13,031,13031,1567,698,145283559,139335758,1567,698,145283559,139335758,70217,28794,1783531569,1742568254,100,100,100,100,2.23,2.42,8.15,8
-30453,13,267,13267,9703,3145,326115920,319227019,9703,3145,326115920,319227019,25520,9966,1264817535,1241648097,100,100,100,100,38.02,31.56,25.78,25.71
-30454,13,175,13175,538,281,94294034,92712660,538,281,94294034,92712660,48434,21368,2119828490,2090886200,100,100,100,100,1.11,1.32,4.45,4.43
-30455,13,251,13251,597,290,115204458,113323814,597,290,115204458,113323814,14593,6739,1698692678,1670803650,100,100,100,100,4.09,4.3,6.78,6.78
-30456,13,033,13033,2119,931,210378781,208854497,2119,931,210378781,208854497,23316,9865,2162595133,2141836337,100,100,100,100,9.09,9.44,9.73,9.75
-30457,13,107,13107,23,12,14733876,14613455,6424,2785,465017445,458089214,22598,9968,1787562254,1762755669,0.36,0.43,3.17,3.19,0.1,0.12,0.82,0.83
-30457,13,175,13175,14,7,378267,376174,6424,2785,465017445,458089214,48434,21368,2119828490,2090886200,0.22,0.25,0.08,0.08,0.03,0.03,0.02,0.02
-30457,13,209,13209,31,11,5392336,5348309,6424,2785,465017445,458089214,9123,3921,633751560,620362830,0.48,0.39,1.16,1.17,0.34,0.28,0.85,0.86
-30457,13,283,13283,6356,2755,444512966,437751276,6424,2785,465017445,458089214,6885,2992,524342203,516536589,98.94,98.92,95.59,95.56,92.32,92.08,84.78,84.75
-30458,13,031,13031,41139,17038,390763207,377986792,41139,17038,390763207,377986792,70217,28794,1783531569,1742568254,100,100,100,100,58.59,59.17,21.91,21.69
-30460,13,031,13031,427,0,47737,40019,427,0,47737,40019,70217,28794,1783531569,1742568254,100,0,100,100,0.61,0,0,0
-30461,13,031,13031,13390,5436,428677199,417150158,13390,5436,428677199,417150158,70217,28794,1783531569,1742568254,100,100,100,100,19.07,18.88,24.04,23.94
-30464,13,107,13107,78,23,2172688,2102226,78,23,2172688,2102226,22598,9968,1787562254,1762755669,100,100,100,100,0.35,0.23,0.12,0.12
-30467,13,251,13251,12600,5783,1359402590,1337619068,12600,5783,1359402590,1337619068,14593,6739,1698692678,1670803650,100,100,100,100,86.34,85.81,80.03,80.06
-30470,13,209,13209,287,136,43245577,42821377,517,236,76072244,75365485,9123,3921,633751560,620362830,55.51,57.63,56.85,56.82,3.15,3.47,6.82,6.9
-30470,13,283,13283,230,100,32826667,32544108,517,236,76072244,75365485,6885,2992,524342203,516536589,44.49,42.37,43.15,43.18,3.34,3.34,6.26,6.3
-30471,13,031,13031,215,118,15891516,15462834,4702,1943,383900526,376471169,70217,28794,1783531569,1742568254,4.57,6.07,4.14,4.11,0.31,0.41,0.89,0.89
-30471,13,107,13107,4487,1825,368009010,361008335,4702,1943,383900526,376471169,22598,9968,1787562254,1762755669,95.43,93.93,95.86,95.89,19.86,18.31,20.59,20.48
-30473,13,209,13209,1630,807,99654715,94758089,2972,1528,223036652,215027175,9123,3921,633751560,620362830,54.85,52.81,44.68,44.07,17.87,20.58,15.72,15.27
-30473,13,279,13279,1342,721,123381937,120269086,2972,1528,223036652,215027175,27223,12144,960866707,942767920,45.15,47.19,55.32,55.93,4.93,5.94,12.84,12.76
-30474,13,107,13107,133,65,24701551,24585360,16594,7312,365665713,361230742,22598,9968,1787562254,1762755669,0.8,0.89,6.76,6.81,0.59,0.65,1.38,1.39
-30474,13,209,13209,1642,698,94823634,93931771,16594,7312,365665713,361230742,9123,3921,633751560,620362830,9.9,9.55,25.93,26,18,17.8,14.96,15.14
-30474,13,279,13279,14760,6518,230597402,227341650,16594,7312,365665713,361230742,27223,12144,960866707,942767920,88.95,89.14,63.06,62.94,54.22,53.67,24,24.11
-30474,13,283,13283,59,31,15543126,15371961,16594,7312,365665713,361230742,6885,2992,524342203,516536589,0.36,0.42,4.25,4.26,0.86,1.04,2.96,2.98
-30475,13,279,13279,52,22,241059,241059,52,22,241059,241059,27223,12144,960866707,942767920,100,100,100,100,0.19,0.18,0.03,0.03
-30477,13,163,13163,3070,1367,184690497,183168065,3070,1367,184690497,183168065,16930,7298,1371831156,1363589314,100,100,100,100,18.13,18.73,13.46,13.43
-30501,13,139,13139,28048,10673,63506933,56588725,28048,10673,63506933,56588725,179684,68825,1111868247,1017300166,100,100,100,100,15.61,15.51,5.71,5.56
-30504,13,139,13139,22463,8134,55858744,42908340,22463,8134,55858744,42908340,179684,68825,1111868247,1017300166,100,100,100,100,12.5,11.82,5.02,4.22
-30506,13,117,13117,10889,4598,83670962,54433158,41667,17783,321888686,259878709,175511,64052,640157353,580210822,26.13,25.86,25.99,20.95,6.2,7.18,13.07,9.38
-30506,13,139,13139,30778,13185,238217724,205445551,41667,17783,321888686,259878709,179684,68825,1111868247,1017300166,73.87,74.14,74.01,79.05,17.13,19.16,21.42,20.2
-30507,13,139,13139,28399,8861,184767417,183996242,28399,8861,184767417,183996242,179684,68825,1111868247,1017300166,100,100,100,100,15.8,12.87,16.62,18.09
-30510,13,011,13011,2275,950,67384373,67228983,8291,2690,116427990,116167939,18395,7595,605763417,601112234,27.44,35.32,57.88,57.87,12.37,12.51,11.12,11.18
-30510,13,137,13137,5505,1520,31700045,31633103,8291,2690,116427990,116167939,43041,18146,722671890,716752092,66.4,56.51,27.23,27.23,12.79,8.38,4.39,4.41
-30510,13,139,13139,511,220,17343572,17305853,8291,2690,116427990,116167939,179684,68825,1111868247,1017300166,6.16,8.18,14.9,14.9,0.28,0.32,1.56,1.7
-30511,13,011,13011,2238,958,71695603,71218226,3186,1385,77725834,77235665,18395,7595,605763417,601112234,70.24,69.17,92.24,92.21,12.17,12.61,11.84,11.85
-30511,13,137,13137,908,412,3036533,3032490,3186,1385,77725834,77235665,43041,18146,722671890,716752092,28.5,29.75,3.91,3.93,2.11,2.27,0.42,0.42
-30511,13,257,13257,40,15,2993698,2984949,3186,1385,77725834,77235665,26175,12662,477070083,463948106,1.26,1.08,3.85,3.86,0.15,0.12,0.63,0.64
-30512,13,111,13111,179,134,7081772,7081772,19490,12614,592791995,575006653,23682,16207,1015172418,1001608266,0.92,1.06,1.19,1.23,0.76,0.83,0.7,0.71
-30512,13,291,13291,19311,12480,585710223,567924881,19490,12614,592791995,575006653,21356,14052,852118318,833785120,99.08,98.94,98.81,98.77,90.42,88.81,68.74,68.11
-30513,13,111,13111,10706,7354,372169739,365947869,11172,8117,391218994,384997124,23682,16207,1015172418,1001608266,95.83,90.6,95.13,95.05,45.21,45.38,36.66,36.54
-30513,13,123,13123,466,763,19049255,19049255,11172,8117,391218994,384997124,28292,16564,1116923228,1104733530,4.17,9.4,4.87,4.95,1.65,4.61,1.71,1.72
-30516,13,147,13147,2054,885,54590604,54378552,2054,885,54590604,54378552,25213,13007,665492104,601897046,100,100,100,100,8.15,6.8,8.2,9.03
-30517,13,013,13013,1085,403,5362720,5270245,11963,4515,73078334,72378772,69367,26400,422016274,415198674,9.07,8.93,7.34,7.28,1.56,1.53,1.27,1.27
-30517,13,135,13135,2919,1138,8276886,8267934,11963,4515,73078334,72378772,805321,291547,1131242872,1114687261,24.4,25.2,11.33,11.42,0.36,0.39,0.73,0.74
-30517,13,139,13139,2927,1095,22109860,21714304,11963,4515,73078334,72378772,179684,68825,1111868247,1017300166,24.47,24.25,30.26,30,1.63,1.59,1.99,2.13
-30517,13,157,13157,5032,1879,37328868,37126289,11963,4515,73078334,72378772,60485,23752,888623125,879722928,42.06,41.62,51.08,51.29,8.32,7.91,4.2,4.22
-30518,13,135,13135,41423,15218,85350492,81638288,45211,16972,121591395,102935334,805321,291547,1131242872,1114687261,91.62,89.67,70.19,79.31,5.14,5.22,7.54,7.32
-30518,13,139,13139,3788,1754,36240903,21297046,45211,16972,121591395,102935334,179684,68825,1111868247,1017300166,8.38,10.33,29.81,20.69,2.11,2.55,3.26,2.09
-30519,13,135,13135,36833,12722,78100776,77465322,39812,13725,89462951,88805697,805321,291547,1131242872,1114687261,92.52,92.69,87.3,87.23,4.57,4.36,6.9,6.95
-30519,13,139,13139,2979,1003,11362175,11340375,39812,13725,89462951,88805697,179684,68825,1111868247,1017300166,7.48,7.31,12.7,12.77,1.66,1.46,1.02,1.11
-30520,13,119,13119,2409,1050,69105050,68623209,4426,1936,149072539,148093102,22084,10553,690105316,677273046,54.43,54.24,46.36,46.34,10.91,9.95,10.01,10.13
-30520,13,147,13147,2017,886,79967489,79469893,4426,1936,149072539,148093102,25213,13007,665492104,601897046,45.57,45.76,53.64,53.66,8,6.81,12.02,13.2
-30521,13,011,13011,235,88,12758136,12493468,4944,2252,247042345,244705536,18395,7595,605763417,601112234,4.75,3.91,5.16,5.11,1.28,1.16,2.11,2.08
-30521,13,119,13119,4709,2164,234284209,232212068,4944,2252,247042345,244705536,22084,10553,690105316,677273046,95.25,96.09,94.84,94.89,21.32,20.51,33.95,34.29
-30522,13,111,13111,394,470,37111944,37082300,1092,1007,117590522,117431875,23682,16207,1015172418,1001608266,36.08,46.67,31.56,31.58,1.66,2.9,3.66,3.7
-30522,13,123,13123,698,537,80478578,80349575,1092,1007,117590522,117431875,28292,16564,1116923228,1104733530,63.92,53.33,68.44,68.42,2.47,3.24,7.21,7.27
-30523,13,137,13137,12671,6305,409012907,406410250,12904,6922,453094974,446132304,43041,18146,722671890,716752092,98.19,91.09,90.27,91.1,29.44,34.75,56.6,56.7
-30523,13,241,13241,233,617,44082067,39722054,12904,6922,453094974,446132304,16276,12313,976121913,958276574,1.81,8.91,9.73,8.9,1.43,5.01,4.52,4.15
-30525,13,241,13241,7364,4889,538296777,533158048,7364,4889,538296777,533158048,16276,12313,976121913,958276574,100,100,100,100,45.24,39.71,55.15,55.64
-30527,13,139,13139,4043,1657,66003757,65674632,4043,1657,66003757,65674632,179684,68825,1111868247,1017300166,100,100,100,100,2.25,2.41,5.94,6.46
-30528,13,187,13187,255,219,90609189,90552309,22679,12111,465040547,462190727,29966,12925,736066489,732793111,1.12,1.81,19.48,19.59,0.85,1.69,12.31,12.36
-30528,13,311,13311,22424,11892,374431358,371638418,22679,12111,465040547,462190727,27144,16062,627314935,623374958,98.88,98.19,80.52,80.41,82.61,74.04,59.69,59.62
-30529,13,011,13011,1200,462,36442283,35977839,10920,4567,134627092,133240584,18395,7595,605763417,601112234,10.99,10.12,27.07,27,6.52,6.08,6.02,5.99
-30529,13,157,13157,9720,4105,98184809,97262745,10920,4567,134627092,133240584,60485,23752,888623125,879722928,89.01,89.88,72.93,73,16.07,17.28,11.05,11.06
-30530,13,011,13011,3115,1176,87636352,86844420,6752,2690,204626125,202731328,18395,7595,605763417,601112234,46.13,43.72,42.83,42.84,16.93,15.48,14.47,14.45
-30530,13,119,13119,539,240,27029704,26820384,6752,2690,204626125,202731328,22084,10553,690105316,677273046,7.98,8.92,13.21,13.23,2.44,2.27,3.92,3.96
-30530,13,157,13157,1633,665,52753345,52155680,6752,2690,204626125,202731328,60485,23752,888623125,879722928,24.19,24.72,25.78,25.73,2.7,2.8,5.94,5.93
-30530,13,195,13195,1465,609,37206724,36910844,6752,2690,204626125,202731328,28120,11784,739668966,731181736,21.7,22.64,18.18,18.21,5.21,5.17,5.03,5.05
-30531,13,137,13137,11158,4447,84803778,84222969,11279,4501,100073332,99303373,43041,18146,722671890,716752092,98.93,98.8,84.74,84.81,25.92,24.51,11.73,11.75
-30531,13,139,13139,121,54,15269554,15080404,11279,4501,100073332,99303373,179684,68825,1111868247,1017300166,1.07,1.2,15.26,15.19,0.07,0.08,1.37,1.48
-30533,13,085,13085,14,6,3482926,3413656,25296,10863,569819049,566867571,22330,10425,555315310,546046104,0.06,0.06,0.61,0.6,0.06,0.06,0.63,0.63
-30533,13,139,13139,378,140,8858965,8746478,25296,10863,569819049,566867571,179684,68825,1111868247,1017300166,1.49,1.29,1.55,1.54,0.21,0.2,0.8,0.86
-30533,13,187,13187,24814,10676,554888921,552138529,25296,10863,569819049,566867571,29966,12925,736066489,732793111,98.09,98.28,97.38,97.4,82.81,82.6,75.39,75.35
-30533,13,311,13311,90,41,2588237,2568908,25296,10863,569819049,566867571,27144,16062,627314935,623374958,0.36,0.38,0.45,0.45,0.33,0.26,0.41,0.41
-30534,13,057,13057,65,31,3478821,3478821,26685,11876,604991274,593154710,214346,82360,1125104307,1092129613,0.24,0.26,0.58,0.59,0.03,0.04,0.31,0.32
-30534,13,085,13085,21690,9831,521439762,512323383,26685,11876,604991274,593154710,22330,10425,555315310,546046104,81.28,82.78,86.19,86.37,97.13,94.3,93.9,93.82
-30534,13,117,13117,1611,631,20369140,18027209,26685,11876,604991274,593154710,175511,64052,640157353,580210822,6.04,5.31,3.37,3.04,0.92,0.99,3.18,3.11
-30534,13,187,13187,3311,1379,58931103,58552849,26685,11876,604991274,593154710,29966,12925,736066489,732793111,12.41,11.61,9.74,9.87,11.05,10.67,8.01,7.99
-30534,13,227,13227,8,4,772448,772448,26685,11876,604991274,593154710,29431,13692,602721655,601025731,0.03,0.03,0.13,0.13,0.03,0.03,0.13,0.13
-30535,13,137,13137,7042,3054,76422145,75020919,7042,3054,76422145,75020919,43041,18146,722671890,716752092,100,100,100,100,16.36,16.83,10.57,10.47
-30536,13,085,13085,14,5,298348,298348,8363,4694,399902173,399562854,22330,10425,555315310,546046104,0.17,0.11,0.07,0.07,0.06,0.05,0.05,0.05
-30536,13,123,13123,8349,4689,399603825,399264506,8363,4694,399902173,399562854,28292,16564,1116923228,1104733530,99.83,99.89,99.93,99.93,29.51,28.31,35.78,36.14
-30537,13,241,13241,1249,1604,52505792,52303999,1249,1604,52505792,52303999,16276,12313,976121913,958276574,100,100,100,100,7.67,13.03,5.38,5.46
-30538,13,119,13119,92,46,6844391,6764465,2854,1246,66611191,65937119,22084,10553,690105316,677273046,3.22,3.69,10.28,10.26,0.42,0.44,0.99,1
-30538,13,257,13257,2762,1200,59766800,59172654,2854,1246,66611191,65937119,26175,12662,477070083,463948106,96.78,96.31,89.72,89.74,10.55,9.48,12.53,12.75
-30540,13,123,13123,17297,9885,520160267,508453729,17297,9885,520160267,508453729,28292,16564,1116923228,1104733530,100,100,100,100,61.14,59.68,46.57,46.03
-30541,13,111,13111,1603,900,182196720,182196720,1603,900,182196720,182196720,23682,16207,1015172418,1001608266,100,100,100,100,6.77,5.55,17.95,18.19
-30542,13,139,13139,31946,12438,128998806,109297111,31946,12438,128998806,109297111,179684,68825,1111868247,1017300166,100,100,100,100,17.78,18.07,11.6,10.74
-30543,13,011,13011,740,321,29713313,29510631,4487,1657,98191791,97748945,18395,7595,605763417,601112234,16.49,19.37,30.26,30.19,4.02,4.23,4.91,4.91
-30543,13,139,13139,3266,1165,54980199,54799333,4487,1657,98191791,97748945,179684,68825,1111868247,1017300166,72.79,70.31,55.99,56.06,1.82,1.69,4.94,5.39
-30543,13,157,13157,481,171,13498279,13438981,4487,1657,98191791,97748945,60485,23752,888623125,879722928,10.72,10.32,13.75,13.75,0.8,0.72,1.52,1.53
-30545,13,311,13311,936,1228,102831764,102699682,936,1228,102831764,102699682,27144,16062,627314935,623374958,100,100,100,100,3.45,7.65,16.39,16.47
-30546,13,281,13281,6496,5457,363713008,350204738,6496,5457,363713008,350204738,10471,7731,445433478,431395530,100,100,100,100,62.04,70.59,81.65,81.18
-30547,13,011,13011,3268,1412,136557739,136065337,3268,1412,136557739,136065337,18395,7595,605763417,601112234,100,100,100,100,17.77,18.59,22.54,22.64
-30548,13,013,13013,3063,1138,22301714,22077944,15870,5937,101199401,100279584,69367,26400,422016274,415198674,19.3,19.17,22.04,22.02,4.42,4.31,5.28,5.32
-30548,13,135,13135,3542,1141,9078265,9065629,15870,5937,101199401,100279584,805321,291547,1131242872,1114687261,22.32,19.22,8.97,9.04,0.44,0.39,0.8,0.81
-30548,13,139,13139,2792,1257,8453580,8429641,15870,5937,101199401,100279584,179684,68825,1111868247,1017300166,17.59,21.17,8.35,8.41,1.55,1.83,0.76,0.83
-30548,13,157,13157,6473,2401,61365842,60706370,15870,5937,101199401,100279584,60485,23752,888623125,879722928,40.79,40.44,60.64,60.54,10.7,10.11,6.91,6.9
-30549,13,157,13157,22500,8659,286173297,283210656,22500,8659,286173297,283210656,60485,23752,888623125,879722928,100,100,100,100,37.2,36.46,32.2,32.19
-30552,13,241,13241,1697,1757,146268880,141200121,1697,1757,146268880,141200121,16276,12313,976121913,958276574,100,100,100,100,10.43,14.27,14.98,14.73
-30553,13,119,13119,5354,3065,95310969,88644511,7232,4277,167037494,153465820,22084,10553,690105316,677273046,74.03,71.66,57.06,57.76,24.24,29.04,13.81,13.09
-30553,13,147,13147,1878,1212,71726525,64821309,7232,4277,167037494,153465820,25213,13007,665492104,601897046,25.97,28.34,42.94,42.24,7.45,9.32,10.78,10.77
-30554,13,011,13011,2548,1050,76707699,76389265,8535,3431,191740560,188934859,18395,7595,605763417,601112234,29.85,30.6,40.01,40.43,13.85,13.82,12.66,12.71
-30554,13,139,13139,5987,2381,115032861,112545594,8535,3431,191740560,188934859,179684,68825,1111868247,1017300166,70.15,69.4,59.99,59.57,3.33,3.46,10.35,11.06
-30555,13,111,13111,2061,1240,34302184,34176931,2061,1240,34302184,34176931,23682,16207,1015172418,1001608266,100,100,100,100,8.7,7.65,3.38,3.41
-30557,13,119,13119,2391,1081,95765805,94078247,4975,2770,150897521,144351718,22084,10553,690105316,677273046,48.06,39.03,63.46,65.17,10.83,10.24,13.88,13.89
-30557,13,257,13257,2584,1689,55131716,50273471,4975,2770,150897521,144351718,26175,12662,477070083,463948106,51.94,60.97,36.54,34.83,9.87,13.34,11.56,10.84
-30558,13,011,13011,2533,1069,78397262,77020501,5456,2248,155207079,153071961,18395,7595,605763417,601112234,46.43,47.55,50.51,50.32,13.77,14.08,12.94,12.81
-30558,13,157,13157,2923,1179,76809817,76051460,5456,2248,155207079,153071961,60485,23752,888623125,879722928,53.57,52.45,49.49,49.68,4.83,4.96,8.64,8.64
-30559,13,111,13111,4333,2773,128422981,127860605,4333,2773,128422981,127860605,23682,16207,1015172418,1001608266,100,100,100,100,18.3,17.11,12.65,12.77
-30560,13,111,13111,3982,2877,171162311,164539511,4599,3324,195506993,188871216,23682,16207,1015172418,1001608266,86.58,86.55,87.55,87.12,16.81,17.75,16.86,16.43
-30560,13,291,13291,617,447,24344682,24331705,4599,3324,195506993,188871216,21356,14052,852118318,833785120,13.42,13.45,12.45,12.88,2.89,3.18,2.86,2.92
-30562,13,241,13241,1128,619,7727146,7698938,1128,619,7727146,7698938,16276,12313,976121913,958276574,100,100,100,100,6.93,5.03,0.79,0.8
-30563,13,137,13137,5373,2227,90866533,90097908,5373,2227,90866533,90097908,43041,18146,722671890,716752092,100,100,100,100,12.48,12.27,12.57,12.57
-30564,13,139,13139,2865,1243,48750777,47563835,4463,1900,81346377,80067617,179684,68825,1111868247,1017300166,64.19,65.42,59.93,59.4,1.59,1.81,4.38,4.68
-30564,13,187,13187,1586,651,31637276,31549424,4463,1900,81346377,80067617,29966,12925,736066489,732793111,35.54,34.26,38.89,39.4,5.29,5.04,4.3,4.31
-30564,13,311,13311,12,6,958324,954358,4463,1900,81346377,80067617,27144,16062,627314935,623374958,0.27,0.32,1.18,1.19,0.04,0.04,0.15,0.15
-30565,13,157,13157,4206,1656,76861522,76115920,4758,1877,89212307,88298643,60485,23752,888623125,879722928,88.4,88.23,86.16,86.2,6.95,6.97,8.65,8.65
-30565,13,195,13195,552,221,12350785,12182723,4758,1877,89212307,88298643,28120,11784,739668966,731181736,11.6,11.77,13.84,13.8,1.96,1.88,1.67,1.67
-30566,13,139,13139,7906,3394,25580711,24107218,7906,3394,25580711,24107218,179684,68825,1111868247,1017300166,100,100,100,100,4.4,4.93,2.3,2.37
-30567,13,139,13139,38,13,1013712,992591,2981,1118,81714344,81024221,179684,68825,1111868247,1017300166,1.27,1.16,1.24,1.23,0.02,0.02,0.09,0.1
-30567,13,157,13157,2943,1105,80700632,80031630,2981,1118,81714344,81024221,60485,23752,888623125,879722928,98.73,98.84,98.76,98.77,4.87,4.65,9.08,9.1
-30568,13,241,13241,1877,1043,75100059,74887743,1877,1043,75100059,74887743,16276,12313,976121913,958276574,100,100,100,100,11.53,8.47,7.69,7.81
-30571,13,311,13311,3682,2895,146505252,145513592,3682,2895,146505252,145513592,27144,16062,627314935,623374958,100,100,100,100,13.56,18.02,23.35,23.34
-30572,13,111,13111,424,459,82724767,82722558,1260,1201,276707780,276179858,23682,16207,1015172418,1001608266,33.65,38.22,29.9,29.95,1.79,2.83,8.15,8.26
-30572,13,291,13291,836,742,193983013,193457300,1260,1201,276707780,276179858,21356,14052,852118318,833785120,66.35,61.78,70.1,70.05,3.91,5.28,22.76,23.2
-30573,13,137,13137,29,11,1484822,1484822,163,99,12652717,12372571,43041,18146,722671890,716752092,17.79,11.11,11.74,12,0.07,0.06,0.21,0.21
-30573,13,241,13241,134,88,11167895,10887749,163,99,12652717,12372571,16276,12313,976121913,958276574,82.21,88.89,88.26,88,0.82,0.71,1.14,1.14
-30575,13,139,13139,449,158,9517997,9466893,1375,552,29996575,29849971,179684,68825,1111868247,1017300166,32.65,28.62,31.73,31.71,0.25,0.23,0.86,0.93
-30575,13,157,13157,926,394,20478578,20383078,1375,552,29996575,29849971,60485,23752,888623125,879722928,67.35,71.38,68.27,68.29,1.53,1.66,2.3,2.32
-30576,13,241,13241,2521,1661,100453629,97898254,2521,1661,100453629,97898254,16276,12313,976121913,958276574,100,100,100,100,15.49,13.49,10.29,10.22
-30577,13,011,13011,187,90,7744418,7639511,22230,10427,428750174,420641950,18395,7595,605763417,601112234,0.84,0.86,1.81,1.82,1.02,1.18,1.28,1.27
-30577,13,119,13119,899,409,44094694,43807258,22230,10427,428750174,420641950,22084,10553,690105316,677273046,4.04,3.92,10.28,10.41,4.07,3.88,6.39,6.47
-30577,13,137,13137,355,170,17733193,17678149,22230,10427,428750174,420641950,43041,18146,722671890,716752092,1.6,1.63,4.14,4.2,0.82,0.94,2.45,2.47
-30577,13,257,13257,20789,9758,359177869,351517032,22230,10427,428750174,420641950,26175,12662,477070083,463948106,93.52,93.58,83.77,83.57,79.42,77.07,75.29,75.77
-30581,13,241,13241,73,35,519668,519668,73,35,519668,519668,16276,12313,976121913,958276574,100,100,100,100,0.45,0.28,0.05,0.05
-30582,13,281,13281,3975,2274,81720470,81190792,4567,2657,129800870,129262026,10471,7731,445433478,431395530,87.04,85.59,62.96,62.81,37.96,29.41,18.35,18.82
-30582,13,291,13291,592,383,48080400,48071234,4567,2657,129800870,129262026,21356,14052,852118318,833785120,12.96,14.41,37.04,37.19,2.77,2.73,5.64,5.77
-30601,13,059,13059,20480,9508,55237342,54765866,20835,9644,61991107,61128407,116714,51068,313479727,308727523,98.3,98.59,89.11,89.59,17.55,18.62,17.62,17.74
-30601,13,157,13157,63,32,2702110,2334016,20835,9644,61991107,61128407,60485,23752,888623125,879722928,0.3,0.33,4.36,3.82,0.1,0.13,0.3,0.27
-30601,13,195,13195,292,104,4051655,4028525,20835,9644,61991107,61128407,28120,11784,739668966,731181736,1.4,1.08,6.54,6.59,1.04,0.88,0.55,0.55
-30602,13,059,13059,2409,1,1879058,1853033,2409,1,1879058,1853033,116714,51068,313479727,308727523,100,100,100,100,2.06,0,0.6,0.6
-30605,13,059,13059,39745,17588,92550989,90918962,39952,17663,96638492,94864699,116714,51068,313479727,308727523,99.48,99.58,95.77,95.84,34.05,34.44,29.52,29.45
-30605,13,219,13219,207,75,4087503,3945737,39952,17663,96638492,94864699,32808,12383,482701411,477308229,0.52,0.42,4.23,4.16,0.63,0.61,0.85,0.83
-30606,13,059,13059,36474,17640,60326239,59485753,40225,19040,80030028,78942956,116714,51068,313479727,308727523,90.67,92.65,75.38,75.35,31.25,34.54,19.24,19.27
-30606,13,219,13219,3751,1400,19703789,19457203,40225,19040,80030028,78942956,32808,12383,482701411,477308229,9.33,7.35,24.62,24.65,11.43,11.31,4.08,4.08
-30607,13,059,13059,8055,2912,33071953,32204496,10895,4113,93110566,91671950,116714,51068,313479727,308727523,73.93,70.8,35.52,35.13,6.9,5.7,10.55,10.43
-30607,13,157,13157,2840,1201,60038613,59467454,10895,4113,93110566,91671950,60485,23752,888623125,879722928,26.07,29.2,64.48,64.87,4.7,5.06,6.76,6.76
-30609,13,059,13059,1956,0,60531,60531,1956,0,60531,60531,116714,51068,313479727,308727523,100,0,100,100,1.68,0,0.02,0.02
-30619,13,219,13219,92,38,3525265,3437245,1440,639,69920122,69132389,32808,12383,482701411,477308229,6.39,5.95,5.04,4.97,0.28,0.31,0.73,0.72
-30619,13,221,13221,1348,601,66394857,65695144,1440,639,69920122,69132389,14899,6484,1144873934,1137034709,93.61,94.05,94.96,95.03,9.05,9.27,5.8,5.78
-30620,13,013,13013,9867,3507,49843851,48425849,12486,4408,63862283,61575754,69367,26400,422016274,415198674,79.02,79.56,78.05,78.64,14.22,13.28,11.81,11.66
-30620,13,135,13135,1967,662,8473405,8220814,12486,4408,63862283,61575754,805321,291547,1131242872,1114687261,15.75,15.02,13.27,13.35,0.24,0.23,0.75,0.74
-30620,13,297,13297,652,239,5545027,4929091,12486,4408,63862283,61575754,83768,32435,854695735,843508113,5.22,5.42,8.68,8,0.78,0.74,0.65,0.58
-30621,13,211,13211,811,325,47551640,47077968,5109,1843,128088813,126280001,17868,7472,918463309,899630975,15.87,17.63,37.12,37.28,4.54,4.35,5.18,5.23
-30621,13,219,13219,4298,1518,80537173,79202033,5109,1843,128088813,126280001,32808,12383,482701411,477308229,84.13,82.37,62.88,62.72,13.1,12.26,16.68,16.59
-30622,13,013,13013,36,12,1298734,1294015,10344,4370,107961059,106665236,69367,26400,422016274,415198674,0.35,0.27,1.2,1.21,0.05,0.05,0.31,0.31
-30622,13,059,13059,3814,1794,27530302,27186883,10344,4370,107961059,106665236,116714,51068,313479727,308727523,36.87,41.05,25.5,25.49,3.27,3.51,8.78,8.81
-30622,13,157,13157,499,201,8730659,8623536,10344,4370,107961059,106665236,60485,23752,888623125,879722928,4.82,4.6,8.09,8.08,0.82,0.85,0.98,0.98
-30622,13,219,13219,5995,2363,70401364,69560802,10344,4370,107961059,106665236,32808,12383,482701411,477308229,57.96,54.07,65.21,65.21,18.27,19.08,14.58,14.57
-30623,13,211,13211,154,57,5609196,5596026,154,57,5609196,5596026,17868,7472,918463309,899630975,100,100,100,100,0.86,0.76,0.61,0.62
-30624,13,105,13105,2332,1061,86088590,85180545,2611,1191,112595458,111487377,20166,9583,969215571,909228765,89.31,89.08,76.46,76.4,11.56,11.07,8.88,9.37
-30624,13,147,13147,117,53,12670472,12666160,2611,1191,112595458,111487377,25213,13007,665492104,601897046,4.48,4.45,11.25,11.36,0.46,0.41,1.9,2.1
-30624,13,195,13195,162,77,13836396,13640672,2611,1191,112595458,111487377,28120,11784,739668966,731181736,6.2,6.47,12.29,12.24,0.58,0.65,1.87,1.87
-30625,13,211,13211,1958,983,110084587,101890068,2438,1273,126118780,117464169,17868,7472,918463309,899630975,80.31,77.22,87.29,86.74,10.96,13.16,11.99,11.33
-30625,13,237,13237,480,290,16034193,15574101,2438,1273,126118780,117464169,21218,12804,934173666,892610760,19.69,22.78,12.71,13.26,2.26,2.26,1.72,1.74
-30627,13,195,13195,957,451,54848125,54117514,2273,1072,325456734,322394914,28120,11784,739668966,731181736,42.1,42.07,16.85,16.79,3.4,3.83,7.42,7.4
-30627,13,221,13221,1316,621,270608609,268277400,2273,1072,325456734,322394914,14899,6484,1144873934,1137034709,57.9,57.93,83.15,83.21,8.83,9.58,23.64,23.59
-30628,13,195,13195,5122,2061,87564036,86423460,6556,2610,125955403,124302583,28120,11784,739668966,731181736,78.13,78.97,69.52,69.53,18.21,17.49,11.84,11.82
-30628,13,221,13221,1434,549,38391367,37879123,6556,2610,125955403,124302583,14899,6484,1144873934,1137034709,21.87,21.03,30.48,30.47,9.62,8.47,3.35,3.33
-30629,13,195,13195,3623,1524,141493877,139524708,4531,1947,196277268,193636431,28120,11784,739668966,731181736,79.96,78.27,72.09,72.05,12.88,12.93,19.13,19.08
-30629,13,221,13221,908,423,54783391,54111723,4531,1947,196277268,193636431,14899,6484,1144873934,1137034709,20.04,21.73,27.91,27.95,6.09,6.52,4.79,4.76
-30630,13,221,13221,2438,1032,95052199,94290852,2438,1032,95052199,94290852,14899,6484,1144873934,1137034709,100,100,100,100,16.36,15.92,8.3,8.29
-30631,13,265,13265,1611,963,487131408,485281802,1767,1036,503516847,501556379,1717,1015,505947499,504031776,91.17,92.95,96.75,96.76,93.83,94.88,96.28,96.28
-30631,13,317,13317,156,73,16385439,16274577,1767,1036,503516847,501556379,10593,5158,1227898669,1215973866,8.83,7.05,3.25,3.24,1.47,1.42,1.33,1.34
-30633,13,011,13011,56,19,726239,724053,8474,3578,261040398,258940104,18395,7595,605763417,601112234,0.66,0.53,0.28,0.28,0.3,0.25,0.12,0.12
-30633,13,119,13119,122,43,5065340,5046699,8474,3578,261040398,258940104,22084,10553,690105316,677273046,1.44,1.2,1.94,1.95,0.55,0.41,0.73,0.75
-30633,13,195,13195,8296,3516,255248819,253169352,8474,3578,261040398,258940104,28120,11784,739668966,731181736,97.9,98.27,97.78,97.77,29.5,29.84,34.51,34.62
-30634,13,105,13105,1696,742,90805307,90057083,2281,993,125564742,124719321,20166,9583,969215571,909228765,74.35,74.72,72.32,72.21,8.41,7.74,9.37,9.9
-30634,13,147,13147,585,251,34759435,34662238,2281,993,125564742,124719321,25213,13007,665492104,601897046,25.65,25.28,27.68,27.79,2.32,1.93,5.22,5.76
-30635,13,105,13105,16051,7738,788863553,730548000,16109,7766,793735162,735408914,20166,9583,969215571,909228765,99.64,99.64,99.39,99.34,79.59,80.75,81.39,80.35
-30635,13,147,13147,58,28,4871609,4860914,16109,7766,793735162,735408914,25213,13007,665492104,601897046,0.36,0.36,0.61,0.66,0.23,0.22,0.73,0.81
-30641,13,211,13211,275,114,15434331,15266422,1810,743,89032579,88286888,17868,7472,918463309,899630975,15.19,15.34,17.34,17.29,1.54,1.53,1.68,1.7
-30641,13,297,13297,1535,629,73598248,73020466,1810,743,89032579,88286888,83768,32435,854695735,843508113,84.81,84.66,82.66,82.71,1.83,1.94,8.61,8.66
-30642,13,133,13133,11001,6289,546528727,506670722,11001,6289,546528727,506670722,15994,8688,1052081403,1003453171,100,100,100,100,68.78,72.39,51.95,50.49
-30643,13,147,13147,16382,8705,354989714,299388590,16382,8705,354989714,299388590,25213,13007,665492104,601897046,100,100,100,100,64.97,66.93,53.34,49.74
-30646,13,059,13059,54,25,229213,229213,6946,2902,91620335,90194553,116714,51068,313479727,308727523,0.78,0.86,0.25,0.25,0.05,0.05,0.07,0.07
-30646,13,195,13195,6892,2877,91391122,89965340,6946,2902,91620335,90194553,28120,11784,739668966,731181736,99.22,99.14,99.75,99.75,24.51,24.41,12.36,12.3
-30648,13,221,13221,2988,1285,219605756,218294585,2988,1285,219605756,218294585,14899,6484,1144873934,1137034709,100,100,100,100,20.06,19.82,19.18,19.2
-30650,13,133,13133,434,188,31087339,30504403,11708,4802,580448339,572934119,15994,8688,1052081403,1003453171,3.71,3.92,5.36,5.32,2.71,2.16,2.95,3.04
-30650,13,211,13211,11209,4589,546274640,539363744,11708,4802,580448339,572934119,17868,7472,918463309,899630975,95.74,95.56,94.11,94.14,62.73,61.42,59.48,59.95
-30650,13,297,13297,65,25,3086360,3065972,11708,4802,580448339,572934119,83768,32435,854695735,843508113,0.56,0.52,0.53,0.54,0.08,0.08,0.36,0.36
-30655,13,297,13297,24136,9818,225614358,223315930,24136,9818,225614358,223315930,83768,32435,854695735,843508113,100,100,100,100,28.81,30.27,26.4,26.47
-30656,13,013,13013,117,43,897060,897060,15133,5908,182806938,180761210,69367,26400,422016274,415198674,0.77,0.73,0.49,0.5,0.17,0.16,0.21,0.22
-30656,13,297,13297,15016,5865,181909878,179864150,15133,5908,182806938,180761210,83768,32435,854695735,843508113,99.23,99.27,99.51,99.5,17.93,18.08,21.28,21.32
-30660,13,221,13221,255,138,107310193,107098119,1191,606,260158152,259547021,14899,6484,1144873934,1137034709,21.41,22.77,41.25,41.26,1.71,2.13,9.37,9.42
-30660,13,317,13317,936,468,152847959,152448902,1191,606,260158152,259547021,10593,5158,1227898669,1215973866,78.59,77.23,58.75,58.74,8.84,9.07,12.45,12.54
-30662,13,105,13105,87,42,3458121,3443137,8537,3828,209656958,207587330,20166,9583,969215571,909228765,1.02,1.1,1.65,1.66,0.43,0.44,0.36,0.38
-30662,13,119,13119,5569,2455,112605154,111276205,8537,3828,209656958,207587330,22084,10553,690105316,677273046,65.23,64.13,53.71,53.6,25.22,23.26,16.32,16.43
-30662,13,147,13147,2122,987,51916256,51649390,8537,3828,209656958,207587330,25213,13007,665492104,601897046,24.86,25.78,24.76,24.88,8.42,7.59,7.8,8.58
-30662,13,195,13195,759,344,41677427,41218598,8537,3828,209656958,207587330,28120,11784,739668966,731181736,8.89,8.99,19.88,19.86,2.7,2.92,5.63,5.64
-30663,13,211,13211,3032,1236,145463240,142999151,3032,1236,145463240,142999151,17868,7472,918463309,899630975,100,100,100,100,16.97,16.54,15.84,15.9
-30664,13,265,13265,38,16,727033,720635,38,16,727033,720635,1717,1015,505947499,504031776,100,100,100,100,2.21,1.58,0.14,0.14
-30665,13,133,13133,80,39,6308915,6220339,80,39,6308915,6220339,15994,8688,1052081403,1003453171,100,100,100,100,0.5,0.45,0.6,0.62
-30666,13,013,13013,7153,2819,57401503,56705319,8659,3391,96246984,95069640,69367,26400,422016274,415198674,82.61,83.13,59.64,59.65,10.31,10.68,13.6,13.66
-30666,13,157,13157,158,69,8861750,8746872,8659,3391,96246984,95069640,60485,23752,888623125,879722928,1.82,2.03,9.21,9.2,0.26,0.29,1,0.99
-30666,13,219,13219,1348,503,29983731,29617449,8659,3391,96246984,95069640,32808,12383,482701411,477308229,15.57,14.83,31.15,31.15,4.11,4.06,6.21,6.21
-30667,13,221,13221,1035,460,203022218,202348775,1035,460,203022218,202348775,14899,6484,1144873934,1137034709,100,100,100,100,6.95,7.09,17.73,17.8
-30668,13,181,13181,391,542,77946979,59324757,1924,1453,435133121,413932214,7996,4786,666397846,544880697,20.32,37.3,17.91,14.33,4.89,11.32,11.7,10.89
-30668,13,317,13317,1533,911,357186142,354607457,1924,1453,435133121,413932214,10593,5158,1227898669,1215973866,79.68,62.7,82.09,85.67,14.47,17.66,29.09,29.16
-30669,13,133,13133,3110,1428,277586014,276575019,3313,1530,323155859,322072496,15994,8688,1052081403,1003453171,93.87,93.33,85.9,85.87,19.44,16.44,26.38,27.56
-30669,13,221,13221,155,74,29853140,29792528,3313,1530,323155859,322072496,14899,6484,1144873934,1137034709,4.68,4.84,9.24,9.25,1.04,1.14,2.61,2.62
-30669,13,265,13265,48,28,15716705,15704949,3313,1530,323155859,322072496,1717,1015,505947499,504031776,1.45,1.83,4.86,4.88,2.8,2.76,3.11,3.12
-30673,13,317,13317,7897,3669,685215824,679338813,7897,3669,685215824,679338813,10593,5158,1227898669,1215973866,100,100,100,100,74.55,71.13,55.8,55.87
-30677,13,133,13133,161,76,38273723,37541666,17065,6493,309104817,306007170,15994,8688,1052081403,1003453171,0.94,1.17,12.38,12.27,1.01,0.87,3.64,3.74
-30677,13,219,13219,16904,6417,270831094,268465504,17065,6493,309104817,306007170,32808,12383,482701411,477308229,99.06,98.83,87.62,87.73,51.52,51.82,56.11,56.25
-30678,13,133,13133,1208,668,152296685,145941022,1294,710,188089347,181495447,15994,8688,1052081403,1003453171,93.35,94.08,80.97,80.41,7.55,7.69,14.48,14.54
-30678,13,141,13141,66,34,33420309,33230035,1294,710,188089347,181495447,9429,5360,1239776488,1222061286,5.1,4.79,17.77,18.31,0.7,0.63,2.7,2.72
-30678,13,265,13265,20,8,2372353,2324390,1294,710,188089347,181495447,1717,1015,505947499,504031776,1.55,1.13,1.26,1.28,1.16,0.79,0.47,0.46
-30680,13,013,13013,37536,14530,233897814,229727510,37837,14634,241664310,237418007,69367,26400,422016274,415198674,99.2,99.29,96.79,96.76,54.11,55.04,55.42,55.33
-30680,13,157,13157,88,35,4135004,4068241,37837,14634,241664310,237418007,60485,23752,888623125,879722928,0.23,0.24,1.71,1.71,0.15,0.15,0.47,0.46
-30680,13,219,13219,213,69,3631492,3622256,37837,14634,241664310,237418007,32808,12383,482701411,477308229,0.56,0.47,1.5,1.53,0.65,0.56,0.75,0.76
-30683,13,059,13059,3727,1600,42594100,42022786,6749,2901,102446304,101269246,116714,51068,313479727,308727523,55.22,55.15,41.58,41.5,3.19,3.13,13.59,13.61
-30683,13,221,13221,3022,1301,59852204,59246460,6749,2901,102446304,101269246,14899,6484,1144873934,1137034709,44.78,44.85,58.42,58.5,20.28,20.06,5.23,5.21
-30701,13,115,13115,336,140,24194076,24082106,40053,15825,395545360,392112403,96317,40551,1342818451,1320662374,0.84,0.88,6.12,6.14,0.35,0.35,1.8,1.82
-30701,13,129,13129,39717,15685,371351284,368030297,40053,15825,395545360,392112403,55186,22278,927326521,921538864,99.16,99.12,93.88,93.86,71.97,70.41,40.05,39.94
-30705,13,213,13213,33566,13407,622206994,616638243,33566,13407,622206994,616638243,39628,15979,897851721,892163642,100,100,100,100,84.7,83.9,69.3,69.12
-30707,13,047,13047,554,206,13139672,13139672,16483,6967,333943510,333698846,63942,26606,420770563,419990951,3.36,2.96,3.93,3.94,0.87,0.77,3.12,3.13
-30707,13,295,13295,15929,6761,320803838,320559174,16483,6967,333943510,333698846,68756,30100,1157789773,1156117093,96.64,97.04,96.07,96.06,23.17,22.46,27.71,27.73
-30708,13,213,13213,293,133,37945750,37945750,293,133,37945750,37945750,39628,15979,897851721,892163642,100,100,100,100,0.74,0.83,4.23,4.25
-30710,13,047,13047,7,4,262368,262368,6661,2604,123250652,123053093,63942,26606,420770563,419990951,0.11,0.15,0.21,0.21,0.01,0.02,0.06,0.06
-30710,13,313,13313,6654,2600,122988284,122790725,6661,2604,123250652,123053093,102599,39899,753827297,752297142,99.89,99.85,99.79,99.79,6.49,6.52,16.32,16.32
-30711,13,213,13213,3569,1579,180252943,180133615,3569,1579,180252943,180133615,39628,15979,897851721,892163642,100,100,100,100,9.01,9.88,20.08,20.19
-30720,13,313,13313,26895,11319,125909209,125547120,26895,11319,125909209,125547120,102599,39899,753827297,752297142,100,100,100,100,26.21,28.37,16.7,16.69
-30721,13,213,13213,829,330,8141694,8141694,53601,19749,322324370,321780577,39628,15979,897851721,892163642,1.55,1.67,2.53,2.53,2.09,2.07,0.91,0.91
-30721,13,313,13313,52772,19419,314182676,313638883,53601,19749,322324370,321780577,102599,39899,753827297,752297142,98.45,98.33,97.47,97.47,51.44,48.67,41.68,41.69
-30725,13,295,13295,4647,1986,38707324,38700940,4647,1986,38707324,38700940,68756,30100,1157789773,1156117093,100,100,100,100,6.76,6.6,3.34,3.35
-30726,13,047,13047,56,35,340984,340984,56,35,340984,340984,63942,26606,420770563,419990951,100,100,100,100,0.09,0.13,0.08,0.08
-30728,13,295,13295,19612,8621,450493814,449513210,19612,8621,450493814,449513210,68756,30100,1157789773,1156117093,100,100,100,100,28.52,28.64,38.91,38.88
-30730,13,055,13055,1993,845,143479612,143462067,1993,845,143479612,143462067,26015,10977,812112574,811541767,100,100,100,100,7.66,7.7,17.67,17.68
-30731,13,055,13055,1792,985,119642099,119557623,2428,1368,224881529,224642148,26015,10977,812112574,811541767,73.81,72,53.2,53.22,6.89,8.97,14.73,14.73
-30731,13,083,13083,372,218,37871825,37799549,2428,1368,224881529,224642148,16633,7305,451072880,450609395,15.32,15.94,16.84,16.83,2.24,2.98,8.4,8.39
-30731,13,295,13295,264,165,67367605,67284976,2428,1368,224881529,224642148,68756,30100,1157789773,1156117093,10.87,12.06,29.96,29.95,0.38,0.55,5.82,5.82
-30733,13,115,13115,74,29,3818608,3795669,2080,874,39977278,39587762,96317,40551,1342818451,1320662374,3.56,3.32,9.55,9.59,0.08,0.07,0.28,0.29
-30733,13,129,13129,2006,845,36158670,35792093,2080,874,39977278,39587762,55186,22278,927326521,921538864,96.44,96.68,90.45,90.41,3.63,3.79,3.9,3.88
-30734,13,129,13129,2938,1364,177896593,177617811,3466,1575,198282707,197941738,55186,22278,927326521,921538864,84.77,86.6,89.72,89.73,5.32,6.12,19.18,19.27
-30734,13,227,13227,528,211,20386114,20323927,3466,1575,198282707,197941738,29431,13692,602721655,601025731,15.23,13.4,10.28,10.27,1.79,1.54,3.38,3.38
-30735,13,129,13129,3394,1397,104846335,103256112,6153,2445,162851220,161260997,55186,22278,927326521,921538864,55.16,57.14,64.38,64.03,6.15,6.27,11.31,11.2
-30735,13,213,13213,1280,489,47832981,47832981,6153,2445,162851220,161260997,39628,15979,897851721,892163642,20.8,20,29.37,29.66,3.23,3.06,5.33,5.36
-30735,13,313,13313,1479,559,10171904,10171904,6153,2445,162851220,161260997,102599,39899,753827297,752297142,24.04,22.86,6.25,6.31,1.44,1.4,1.35,1.35
-30736,13,047,13047,40372,16090,321214231,320507400,41029,16345,333607136,332900305,63942,26606,420770563,419990951,98.4,98.44,96.29,96.28,63.14,60.48,76.34,76.31
-30736,13,295,13295,263,110,4256312,4256312,41029,16345,333607136,332900305,68756,30100,1157789773,1156117093,0.64,0.67,1.28,1.28,0.38,0.37,0.37,0.37
-30736,13,313,13313,394,145,8136593,8136593,41029,16345,333607136,332900305,102599,39899,753827297,752297142,0.96,0.89,2.44,2.44,0.38,0.36,1.08,1.08
-30738,13,083,13083,2646,1326,150866061,150674535,3799,1930,223073591,222822188,16633,7305,451072880,450609395,69.65,68.7,67.63,67.62,15.91,18.15,33.45,33.44
-30738,13,295,13295,1153,604,72207530,72147653,3799,1930,223073591,222822188,68756,30100,1157789773,1156117093,30.35,31.3,32.37,32.38,1.68,2.01,6.24,6.24
-30739,13,047,13047,993,364,16063434,16063434,5571,2020,65115377,64956508,63942,26606,420770563,419990951,17.82,18.02,24.67,24.73,1.55,1.37,3.82,3.82
-30739,13,295,13295,4578,1656,49051943,48893074,5571,2020,65115377,64956508,68756,30100,1157789773,1156117093,82.18,81.98,75.33,75.27,6.66,5.5,4.24,4.23
-30740,13,295,13295,224,91,8652342,8647941,8600,3468,131921393,131694284,68756,30100,1157789773,1156117093,2.6,2.62,6.56,6.57,0.33,0.3,0.75,0.75
-30740,13,313,13313,8376,3377,123269051,123046343,8600,3468,131921393,131694284,102599,39899,753827297,752297142,97.4,97.38,93.44,93.43,8.16,8.46,16.35,16.36
-30741,13,047,13047,10872,4990,17548673,17516099,29290,13551,64570043,64531856,63942,26606,420770563,419990951,37.12,36.82,27.18,27.14,17,18.76,4.17,4.17
-30741,13,295,13295,18418,8561,47021370,47015757,29290,13551,64570043,64531856,68756,30100,1157789773,1156117093,62.88,63.18,72.82,72.86,26.79,28.44,4.06,4.07
-30742,13,047,13047,7453,3414,8649038,8649038,7460,3424,8675876,8675876,63942,26606,420770563,419990951,99.91,99.71,99.69,99.69,11.66,12.83,2.06,2.06
-30742,13,295,13295,7,10,26838,26838,7460,3424,8675876,8675876,68756,30100,1157789773,1156117093,0.09,0.29,0.31,0.31,0.01,0.03,0,0
-30746,13,129,13129,1223,493,43238702,43238702,1223,493,43238702,43238702,55186,22278,927326521,921538864,100,100,100,100,2.22,2.21,4.66,4.69
-30747,13,055,13055,16629,6766,437958804,437532578,16859,6880,474615758,474059893,26015,10977,812112574,811541767,98.64,98.34,92.28,92.29,63.92,61.64,53.93,53.91
-30747,13,295,13295,230,114,36656954,36527315,16859,6880,474615758,474059893,68756,30100,1157789773,1156117093,1.36,1.66,7.72,7.71,0.33,0.38,3.17,3.16
-30750,13,083,13083,2028,550,15840572,15840572,4125,1421,34172682,34172682,16633,7305,451072880,450609395,49.16,38.71,46.35,46.35,12.19,7.53,3.51,3.52
-30750,13,295,13295,2097,871,18332110,18332110,4125,1421,34172682,34172682,68756,30100,1157789773,1156117093,50.84,61.29,53.65,53.65,3.05,2.89,1.58,1.59
-30751,13,213,13213,91,41,1471359,1471359,91,41,1471359,1471359,39628,15979,897851721,892163642,100,100,100,100,0.23,0.26,0.16,0.16
-30752,13,083,13083,9800,4365,202008347,201978217,9800,4365,202008347,201978217,16633,7305,451072880,450609395,100,100,100,100,58.92,59.75,44.78,44.82
-30753,13,055,13055,5363,2277,61897907,61866216,6697,2827,106109700,106078009,26015,10977,812112574,811541767,80.08,80.54,58.33,58.32,20.62,20.74,7.62,7.62
-30753,13,295,13295,1334,550,44211793,44211793,6697,2827,106109700,106078009,68756,30100,1157789773,1156117093,19.92,19.46,41.67,41.68,1.94,1.83,3.82,3.82
-30755,13,047,13047,3635,1503,43552163,43511956,9590,3950,92371539,92127326,63942,26606,420770563,419990951,37.9,38.05,47.15,47.23,5.68,5.65,10.35,10.36
-30755,13,313,13313,5955,2447,48819376,48615370,9590,3950,92371539,92127326,102599,39899,753827297,752297142,62.1,61.95,52.85,52.77,5.8,6.13,6.48,6.46
-30756,13,313,13313,74,33,350204,350204,74,33,350204,350204,102599,39899,753827297,752297142,100,100,100,100,0.07,0.08,0.05,0.05
-30757,13,083,13083,1787,846,44486075,44316522,1787,846,44486075,44316522,16633,7305,451072880,450609395,100,100,100,100,10.74,11.58,9.86,9.83
-30802,13,073,13073,6285,2697,377259274,337529621,6321,2712,382835014,343081516,124053,48626,796692158,751329062,99.43,99.45,98.54,98.38,5.07,5.55,47.35,44.92
-30802,13,189,13189,36,15,5575740,5551895,6321,2712,382835014,343081516,21875,9319,689941352,666820495,0.57,0.55,1.46,1.62,0.16,0.16,0.81,0.83
-30803,13,163,13163,741,365,143380007,142999339,741,365,143380007,142999339,16930,7298,1371831156,1363589314,100,100,100,100,4.38,5,10.45,10.49
-30805,13,033,13033,798,329,43244001,43185220,2734,1117,91798948,91557584,23316,9865,2162595133,2141836337,29.19,29.45,47.11,47.17,3.42,3.34,2,2.02
-30805,13,245,13245,1936,788,48554947,48372364,2734,1117,91798948,91557584,200549,86331,851046911,840000029,70.81,70.55,52.89,52.83,0.97,0.91,5.71,5.76
-30807,13,301,13301,92,57,1603470,1600592,92,57,1603470,1600592,5834,2985,742518102,736328597,100,100,100,100,1.58,1.91,0.22,0.22
-30808,13,189,13189,4615,1908,167249246,164180218,4615,1908,167249246,164180218,21875,9319,689941352,666820495,100,100,100,100,21.1,20.47,24.24,24.62
-30809,13,073,13073,38168,14211,115861417,113101540,38168,14211,115861417,113101540,124053,48626,796692158,751329062,100,100,100,100,30.77,29.23,14.54,15.05
-30810,13,125,13125,2080,1005,200635264,199609906,2138,1040,213912826,212862636,3082,1519,374131824,372283969,97.29,96.63,93.79,93.77,67.49,66.16,53.63,53.62
-30810,13,163,13163,13,8,1471960,1471960,2138,1040,213912826,212862636,16930,7298,1371831156,1363589314,0.61,0.77,0.69,0.69,0.08,0.11,0.11,0.11
-30810,13,301,13301,45,27,11805602,11780770,2138,1040,213912826,212862636,5834,2985,742518102,736328597,2.1,2.6,5.52,5.53,0.77,0.9,1.59,1.6
-30812,13,245,13245,363,0,364696,364696,363,0,364696,364696,200549,86331,851046911,840000029,100,0,100,100,0.18,0,0.04,0.04
-30813,13,073,13073,29076,11486,126049783,125687642,30415,11567,129026570,128664429,124053,48626,796692158,751329062,95.6,99.3,97.69,97.69,23.44,23.62,15.82,16.73
-30813,13,245,13245,1339,81,2976787,2976787,30415,11567,129026570,128664429,200549,86331,851046911,840000029,4.4,0.7,2.31,2.31,0.67,0.09,0.35,0.35
-30814,13,073,13073,8039,3281,125371011,125272639,8150,3332,132682711,132490142,124053,48626,796692158,751329062,98.64,98.47,94.49,94.55,6.48,6.75,15.74,16.67
-30814,13,189,13189,111,51,7311700,7217503,8150,3332,132682711,132490142,21875,9319,689941352,666820495,1.36,1.53,5.51,5.45,0.51,0.55,1.06,1.08
-30815,13,033,13033,2437,1010,98298632,97665687,39640,15269,340010024,338559540,23316,9865,2162595133,2141836337,6.15,6.61,28.91,28.85,10.45,10.24,4.55,4.56
-30815,13,245,13245,37203,14259,241711392,240893853,39640,15269,340010024,338559540,200549,86331,851046911,840000029,93.85,93.39,71.09,71.15,18.55,16.52,28.4,28.68
-30816,13,033,13033,1811,807,300960317,298665602,2109,932,340860160,338551327,23316,9865,2162595133,2141836337,85.87,86.59,88.29,88.22,7.77,8.18,13.92,13.94
-30816,13,163,13163,298,125,39899843,39885725,2109,932,340860160,338551327,16930,7298,1371831156,1363589314,14.13,13.41,11.71,11.78,1.76,1.71,2.91,2.93
-30817,13,181,13181,7605,4244,588450867,485555940,7676,4281,604714172,498860057,7996,4786,666397846,544880697,99.08,99.14,97.31,97.33,95.11,88.68,88.3,89.11
-30817,13,317,13317,71,37,16263305,13304117,7676,4281,604714172,498860057,10593,5158,1227898669,1215973866,0.92,0.86,2.69,2.67,0.67,0.72,1.32,1.09
-30818,13,163,13163,555,242,86756890,86668982,555,242,86756890,86668982,16930,7298,1371831156,1363589314,100,100,100,100,3.28,3.32,6.32,6.36
-30820,13,125,13125,845,436,130291645,129519985,1205,643,219668186,217816976,3082,1519,374131824,372283969,70.12,67.81,59.31,59.46,27.42,28.7,34.83,34.79
-30820,13,301,13301,263,148,41431144,41287009,1205,643,219668186,217816976,5834,2985,742518102,736328597,21.83,23.02,18.86,18.95,4.51,4.96,5.58,5.61
-30820,13,303,13303,97,59,47945397,47009982,1205,643,219668186,217816976,21187,9047,1772472988,1757182927,8.05,9.18,21.83,21.58,0.46,0.65,2.71,2.68
-30821,13,301,13301,882,505,269579852,267786294,882,505,269579852,267786294,5834,2985,742518102,736328597,100,100,100,100,15.12,16.92,36.31,36.37
-30822,13,165,13165,526,266,91257461,90428778,526,266,91257461,90428778,8340,4221,912901251,899448996,100,100,100,100,6.31,6.3,10,10.05
-30823,13,125,13125,86,47,28028340,27998275,1800,770,188589297,188064177,3082,1519,374131824,372283969,4.78,6.1,14.86,14.89,2.79,3.09,7.49,7.52
-30823,13,163,13163,1606,650,112151034,111915370,1800,770,188589297,188064177,16930,7298,1371831156,1363589314,89.22,84.42,59.47,59.51,9.49,8.91,8.18,8.21
-30823,13,301,13301,108,73,48409923,48150532,1800,770,188589297,188064177,5834,2985,742518102,736328597,6,9.48,25.67,25.6,1.85,2.45,6.52,6.54
-30824,13,189,13189,17113,7345,509804666,489870879,17201,7390,534544263,514423207,21875,9319,689941352,666820495,99.49,99.39,95.37,95.23,78.23,78.82,73.89,73.46
-30824,13,301,13301,88,45,24739597,24552328,17201,7390,534544263,514423207,5834,2985,742518102,736328597,0.51,0.61,4.63,4.77,1.51,1.51,3.33,3.33
-30828,13,125,13125,71,31,15176575,15155803,4368,2121,355000707,351373373,3082,1519,374131824,372283969,1.63,1.46,4.28,4.31,2.3,2.04,4.06,4.07
-30828,13,301,13301,4297,2090,339824132,336217570,4368,2121,355000707,351373373,5834,2985,742518102,736328597,98.37,98.54,95.72,95.69,73.65,70.02,45.77,45.66
-30830,13,033,13033,13966,5739,939525056,931542307,13966,5739,939525056,931542307,23316,9865,2162595133,2141836337,100,100,100,100,59.9,58.18,43.44,43.49
-30833,13,163,13163,4043,1788,176869688,176695236,4043,1788,176869688,176695236,16930,7298,1371831156,1363589314,100,100,100,100,23.88,24.5,12.89,12.96
-30901,13,245,13245,16445,8382,55671452,53192004,16445,8382,55671452,53192004,200549,86331,851046911,840000029,100,100,100,100,8.2,9.71,6.54,6.33
-30903,13,073,13073,585,214,439876,439876,585,214,439876,439876,124053,48626,796692158,751329062,100,100,100,100,0.47,0.44,0.06,0.06
-30904,13,245,13245,25666,13210,28717409,26835309,25666,13210,28717409,26835309,200549,86331,851046911,840000029,100,100,100,100,12.8,15.3,3.37,3.19
-30905,13,245,13245,8955,1148,36330262,36227115,8955,1148,36330262,36227115,200549,86331,851046911,840000029,100,100,100,100,4.47,1.33,4.27,4.31
-30906,13,245,13245,57748,23181,222412019,218731463,57748,23181,222412019,218731463,200549,86331,851046911,840000029,100,100,100,100,28.79,26.85,26.13,26.04
-30907,13,073,13073,41474,16560,50756607,48343554,50913,21289,65306858,62153036,124053,48626,796692158,751329062,81.46,77.79,77.72,77.78,33.43,34.06,6.37,6.43
-30907,13,245,13245,9439,4729,14550251,13809482,50913,21289,65306858,62153036,200549,86331,851046911,840000029,18.54,22.21,22.28,22.22,4.71,5.48,1.71,1.64
-30909,13,073,13073,426,177,954190,954190,41585,20730,67641456,67361823,124053,48626,796692158,751329062,1.02,0.85,1.41,1.42,0.34,0.36,0.12,0.13
-30909,13,245,13245,41159,20553,66687266,66407633,41585,20730,67641456,67361823,200549,86331,851046911,840000029,98.98,99.15,98.59,98.58,20.52,23.81,7.84,7.91
-30912,13,245,13245,296,0,380017,380017,296,0,380017,380017,200549,86331,851046911,840000029,100,0,100,100,0.15,0,0.04,0.05
-31001,13,315,13315,4816,1412,461094886,453343818,4816,1412,461094886,453343818,9255,3510,989694391,978250169,100,100,100,100,52.04,40.23,46.59,46.34
-31002,13,107,13107,1223,602,148172228,146096679,2910,1378,303788268,299317557,22598,9968,1787562254,1762755669,42.03,43.69,48.77,48.81,5.41,6.04,8.29,8.29
-31002,13,167,13167,1201,552,76537205,75178941,2910,1378,303788268,299317557,9980,4120,794071977,784793399,41.27,40.06,25.19,25.12,12.03,13.4,9.64,9.58
-31002,13,175,13175,246,118,47619391,47172693,2910,1378,303788268,299317557,48434,21368,2119828490,2090886200,8.45,8.56,15.68,15.76,0.51,0.55,2.25,2.26
-31002,13,283,13283,240,106,31459444,30869244,2910,1378,303788268,299317557,6885,2992,524342203,516536589,8.25,7.69,10.36,10.31,3.49,3.54,6,5.98
-31003,13,319,13319,112,79,11977911,11977911,112,79,11977911,11977911,9563,4487,1170544616,1158522024,100,100,100,100,1.17,1.76,1.02,1.03
-31005,13,153,13153,15102,5931,50788655,49761223,15102,5931,50788655,49761223,139900,58325,983990584,972645761,100,100,100,100,10.79,10.17,5.16,5.12
-31006,13,269,13269,4923,2364,473112891,470066030,4923,2364,473112891,470066030,8906,4563,983415850,975612230,100,100,100,100,55.28,51.81,48.11,48.18
-31007,13,093,13093,1117,561,162830364,159593331,1117,561,162830364,159593331,14918,6328,1028961239,1015120132,100,100,100,100,7.49,8.87,15.82,15.72
-31008,13,079,13079,2292,938,63483290,62950161,18453,7614,181649240,180675013,12630,5292,845510993,841456435,12.42,12.32,34.95,34.84,18.15,17.72,7.51,7.48
-31008,13,153,13153,4888,1899,7678940,7621264,18453,7614,181649240,180675013,139900,58325,983990584,972645761,26.49,24.94,4.23,4.22,3.49,3.26,0.78,0.78
-31008,13,225,13225,11273,4777,110487010,110103588,18453,7614,181649240,180675013,27695,11050,391866954,389190656,61.09,62.74,60.82,60.94,40.7,43.23,28.2,28.29
-31009,13,175,13175,1477,650,186539270,185162923,1477,650,186539270,185162923,48434,21368,2119828490,2090886200,100,100,100,100,3.05,3.04,8.8,8.86
-31011,13,091,13091,923,436,129557516,128358794,923,436,129557516,128358794,21796,9857,1303058329,1284348917,100,100,100,100,4.23,4.42,9.94,9.99
-31012,13,023,13023,281,140,35739187,35425246,2683,786,142959621,140871848,13063,5304,567547533,559100179,10.47,17.81,25,25.15,2.15,2.64,6.3,6.34
-31012,13,091,13091,2402,646,107220434,105446602,2683,786,142959621,140871848,21796,9857,1303058329,1284348917,89.53,82.19,75,74.85,11.02,6.55,8.23,8.21
-31014,13,023,13023,12136,4869,431617748,424230184,13756,5683,555428547,546408725,13063,5304,567547533,559100179,88.22,85.68,77.71,77.64,92.9,91.8,76.05,75.88
-31014,13,091,13091,1223,642,78892746,77714613,13756,5683,555428547,546408725,21796,9857,1303058329,1284348917,8.89,11.3,14.2,14.22,5.61,6.51,6.05,6.05
-31014,13,289,13289,397,172,44918053,44463928,13756,5683,555428547,546408725,9023,4235,939218397,928246376,2.89,3.03,8.09,8.14,4.4,4.06,4.78,4.79
-31015,13,081,13081,21906,10044,567110477,546500923,21938,10058,584161881,563512902,23439,10734,727660293,705987965,99.85,99.86,97.08,96.98,93.46,93.57,77.94,77.41
-31015,13,315,13315,32,14,17051404,17011979,21938,10058,584161881,563512902,9255,3510,989694391,978250169,0.15,0.14,2.92,3.02,0.35,0.4,1.72,1.74
-31016,13,079,13079,35,19,18325190,18308595,1517,704,237828892,236139635,12630,5292,845510993,841456435,2.31,2.7,7.71,7.75,0.28,0.36,2.17,2.18
-31016,13,171,13171,129,63,13113006,12817305,1517,704,237828892,236139635,18317,7474,481308642,475262611,8.5,8.95,5.51,5.43,0.7,0.84,2.72,2.7
-31016,13,207,13207,902,405,117957835,117697970,1517,704,237828892,236139635,26424,10710,1030326050,1024750743,59.46,57.53,49.6,49.84,3.41,3.78,11.45,11.49
-31016,13,293,13293,451,217,88432861,87315765,1517,704,237828892,236139635,27153,12161,848360429,837697129,29.73,30.82,37.18,36.98,1.66,1.78,10.42,10.42
-31017,13,023,13023,387,173,48610390,48132588,1985,993,244457597,243154510,13063,5304,567547533,559100179,19.5,17.42,19.88,19.8,2.96,3.26,8.56,8.61
-31017,13,289,13289,1052,528,66883402,66386283,1985,993,244457597,243154510,9023,4235,939218397,928246376,53,53.17,27.36,27.3,11.66,12.47,7.12,7.15
-31017,13,319,13319,546,292,128963805,128635639,1985,993,244457597,243154510,9563,4487,1170544616,1158522024,27.51,29.41,52.76,52.9,5.71,6.51,11.02,11.1
-31018,13,303,13303,2837,598,238925112,236819830,2837,598,238925112,236819830,21187,9047,1772472988,1757182927,100,100,100,100,13.39,6.61,13.48,13.48
-31019,13,175,13175,2318,1048,142912980,141102828,2318,1048,142912980,141102828,48434,21368,2119828490,2090886200,100,100,100,100,4.79,4.9,6.74,6.75
-31020,13,021,13021,323,162,18115624,18115624,2541,1166,283355395,276913325,155547,69662,661393695,646879637,12.71,13.89,6.39,6.54,0.21,0.23,2.74,2.8
-31020,13,289,13289,2218,1004,265239771,258797701,2541,1166,283355395,276913325,9023,4235,939218397,928246376,87.29,86.11,93.61,93.46,24.58,23.71,28.24,27.88
-31021,13,175,13175,28549,12471,627930499,620120112,28549,12471,627930499,620120112,48434,21368,2119828490,2090886200,100,100,100,100,58.94,58.36,29.62,29.66
-31022,13,023,13023,21,12,4226693,4207630,1424,566,113013825,112119855,13063,5304,567547533,559100179,1.47,2.12,3.74,3.75,0.16,0.23,0.74,0.75
-31022,13,175,13175,1403,554,108787132,107912225,1424,566,113013825,112119855,48434,21368,2119828490,2090886200,98.53,97.88,96.26,96.25,2.9,2.59,5.13,5.16
-31023,13,091,13091,15190,6998,712793531,702302511,15383,7091,745149872,734647297,21796,9857,1303058329,1284348917,98.75,98.69,95.66,95.6,69.69,71,54.7,54.68
-31023,13,235,13235,193,93,32356341,32344786,15383,7091,745149872,734647297,12010,5151,650622078,644987096,1.25,1.31,4.34,4.4,1.61,1.81,4.97,5.01
-31024,13,237,13237,20039,12015,907995182,869744487,20039,12015,907995182,869744487,21218,12804,934173666,892610760,100,100,100,100,94.44,93.84,97.2,97.44
-31025,13,153,13153,1226,508,164643176,163729739,1226,508,164643176,163729739,139900,58325,983990584,972645761,100,100,100,100,0.88,0.87,16.73,16.83
-31027,13,175,13175,10012,4450,466708501,456313092,10012,4450,466708501,456313092,48434,21368,2119828490,2090886200,100,100,100,100,20.67,20.83,22.02,21.82
-31028,13,153,13153,5912,2580,9264221,9216640,5912,2580,9264221,9216640,139900,58325,983990584,972645761,100,100,100,100,4.23,4.42,0.94,0.95
-31029,13,035,13035,5,6,3132865,3132865,16287,6532,668165902,666267368,23655,9357,487024429,477576117,0.03,0.09,0.47,0.47,0.02,0.06,0.64,0.66
-31029,13,207,13207,16282,6526,665033037,663134503,16287,6532,668165902,666267368,26424,10710,1030326050,1024750743,99.97,99.91,99.53,99.53,61.62,60.93,64.55,64.71
-31030,13,079,13079,2620,1054,172697600,171610610,18977,7315,454466351,450995876,12630,5292,845510993,841456435,13.81,14.41,38,38.05,20.74,19.92,20.43,20.39
-31030,13,153,13153,48,2,637796,637796,18977,7315,454466351,450995876,139900,58325,983990584,972645761,0.25,0.03,0.14,0.14,0.03,0,0.06,0.07
-31030,13,193,13193,118,53,6914135,6823526,18977,7315,454466351,450995876,14740,6136,1051513250,1037654091,0.62,0.72,1.52,1.51,0.8,0.86,0.66,0.66
-31030,13,225,13225,16191,6206,274216820,271923944,18977,7315,454466351,450995876,27695,11050,391866954,389190656,85.32,84.84,60.34,60.29,58.46,56.16,69.98,69.87
-31031,13,009,13009,1562,678,41467454,41439543,6576,2962,347804625,345075555,45720,20159,692591215,667812053,23.75,22.89,11.92,12.01,3.42,3.36,5.99,6.21
-31031,13,169,13169,285,132,13690974,13520440,6576,2962,347804625,345075555,28669,11688,1024124462,1020281755,4.33,4.46,3.94,3.92,0.99,1.13,1.34,1.33
-31031,13,289,13289,537,256,70968609,70389377,6576,2962,347804625,345075555,9023,4235,939218397,928246376,8.17,8.64,20.4,20.4,5.95,6.04,7.56,7.58
-31031,13,319,13319,4192,1896,221677588,219726195,6576,2962,347804625,345075555,9563,4487,1170544616,1158522024,63.75,64.01,63.74,63.67,43.84,42.26,18.94,18.97
-31032,13,169,13169,13993,5496,394680751,392833360,13993,5496,394680751,392833360,28669,11688,1024124462,1020281755,100,100,100,100,48.81,47.02,38.54,38.5
-31033,13,009,13009,389,166,18294056,18294056,2660,1148,192564138,192249523,45720,20159,692591215,667812053,14.62,14.46,9.5,9.52,0.85,0.82,2.64,2.74
-31033,13,169,13169,2271,982,174270082,173955467,2660,1148,192564138,192249523,28669,11688,1024124462,1020281755,85.38,85.54,90.5,90.48,7.92,8.4,17.02,17.05
-31035,13,303,13303,1364,622,135161257,133954919,1364,622,135161257,133954919,21187,9047,1772472988,1757182927,100,100,100,100,6.44,6.88,7.63,7.62
-31036,13,153,13153,1659,678,131499046,130454262,12998,5499,658742310,652158512,139900,58325,983990584,972645761,12.76,12.33,19.96,20,1.19,1.16,13.36,13.41
-31036,13,235,13235,11339,4821,527243264,521704250,12998,5499,658742310,652158512,12010,5151,650622078,644987096,87.24,87.67,80.04,80,94.41,93.59,81.04,80.89
-31037,13,091,13091,385,180,56794097,56561444,4313,1530,154904466,153410807,21796,9857,1303058329,1284348917,8.93,11.76,36.66,36.87,1.77,1.83,4.36,4.4
-31037,13,271,13271,3317,1037,46138610,45665858,4313,1530,154904466,153410807,16500,7297,1149977507,1132610545,76.91,67.78,29.79,29.77,20.1,14.21,4.01,4.03
-31037,13,309,13309,611,313,51971759,51183505,4313,1530,154904466,153410807,7421,2625,777691389,765301286,14.17,20.46,33.55,33.36,8.23,11.92,6.68,6.69
-31038,13,159,13159,480,241,78866069,78415075,761,392,241020508,240352268,13900,6153,967268653,953542690,63.07,61.48,32.72,32.63,3.45,3.92,8.15,8.22
-31038,13,169,13169,281,151,162154439,161937193,761,392,241020508,240352268,28669,11688,1024124462,1020281755,36.93,38.52,67.28,67.37,0.98,1.29,15.83,15.87
-31039,13,269,13269,74,38,7497362,7358269,74,38,7497362,7358269,8906,4563,983415850,975612230,100,100,100,100,0.83,0.83,0.76,0.75
-31041,13,193,13193,988,547,142721601,141578969,988,547,142721601,141578969,14740,6136,1051513250,1037654091,100,100,100,100,6.7,8.91,13.57,13.64
-31042,13,319,13319,1841,861,251359673,251070101,1841,861,251359673,251070101,9563,4487,1170544616,1158522024,100,100,100,100,19.25,19.19,21.47,21.67
-31044,13,289,13289,2825,1367,422215519,420019766,2911,1414,450305528,448109775,9023,4235,939218397,928246376,97.05,96.68,93.76,93.73,31.31,32.28,44.95,45.25
-31044,13,319,13319,86,47,28090009,28090009,2911,1414,450305528,448109775,9563,4487,1170544616,1158522024,2.95,3.32,6.24,6.27,0.9,1.05,2.4,2.42
-31045,13,141,13141,14,14,4464593,4450276,73,54,9588975,9403778,9429,5360,1239776488,1222061286,19.18,25.93,46.56,47.32,0.15,0.26,0.36,0.36
-31045,13,301,13301,59,40,5124382,4953502,73,54,9588975,9403778,5834,2985,742518102,736328597,80.82,74.07,53.44,52.68,1.01,1.34,0.69,0.67
-31046,13,169,13169,294,131,63719372,62945062,3343,1337,196006956,193744946,28669,11688,1024124462,1020281755,8.79,9.8,32.51,32.49,1.03,1.12,6.22,6.17
-31046,13,207,13207,3049,1206,132287584,130799884,3343,1337,196006956,193744946,26424,10710,1030326050,1024750743,91.21,90.2,67.49,67.51,11.54,11.26,12.84,12.76
-31047,13,153,13153,11193,4346,189374003,186130586,11193,4346,189374003,186130586,139900,58325,983990584,972645761,100,100,100,100,8,7.45,19.25,19.14
-31049,13,107,13107,485,240,47732117,46951956,1806,940,256144110,252469193,22598,9968,1787562254,1762755669,26.85,25.53,18.63,18.6,2.15,2.41,2.67,2.66
-31049,13,167,13167,1321,700,208411993,205517237,1806,940,256144110,252469193,9980,4120,794071977,784793399,73.15,74.47,81.37,81.4,13.24,16.99,26.25,26.19
-31050,13,079,13079,965,403,56900197,56834999,965,403,56900197,56834999,12630,5292,845510993,841456435,100,100,100,100,7.64,7.62,6.73,6.75
-31051,13,093,13093,187,85,4900428,4895724,187,85,4900428,4895724,14918,6328,1028961239,1015120132,100,100,100,100,1.25,1.34,0.48,0.48
-31052,13,021,13021,6568,2677,97565856,96041662,8652,3536,184161709,182097012,155547,69662,661393695,646879637,75.91,75.71,52.98,52.74,4.22,3.84,14.75,14.85
-31052,13,079,13079,2084,859,86595853,86055350,8652,3536,184161709,182097012,12630,5292,845510993,841456435,24.09,24.29,47.02,47.26,16.5,16.23,10.24,10.23
-31054,13,319,13319,1671,749,132339238,131452798,1671,749,132339238,131452798,9563,4487,1170544616,1158522024,100,100,100,100,17.47,16.69,11.31,11.35
-31055,13,271,13271,8245,3353,352817903,348655526,8245,3353,352817903,348655526,16500,7297,1149977507,1132610545,100,100,100,100,49.97,45.95,30.68,30.78
-31057,13,193,13193,2182,1086,227483296,225128626,2182,1086,227483296,225128626,14740,6136,1051513250,1037654091,100,100,100,100,14.8,17.7,21.63,21.7
-31058,13,197,13197,1372,648,100029913,99475746,2123,1022,258653956,257717768,8742,4156,951769583,947944161,64.63,63.41,38.67,38.6,15.69,15.59,10.51,10.49
-31058,13,269,13269,751,374,158624043,158242022,2123,1022,258653956,257717768,8906,4563,983415850,975612230,35.37,36.59,61.33,61.4,8.43,8.2,16.13,16.22
-31060,13,091,13091,798,452,78294467,77445479,1915,1212,266631539,263639327,21796,9857,1303058329,1284348917,41.67,37.29,29.36,29.38,3.66,4.59,6.01,6.03
-31060,13,271,13271,1117,760,188337072,186193848,1915,1212,266631539,263639327,16500,7297,1149977507,1132610545,58.33,62.71,70.64,70.62,6.77,10.42,16.38,16.44
-31061,13,009,13009,42887,19086,605978891,585782522,43755,19679,636298635,612538404,45720,20159,692591215,667812053,98.02,96.99,95.23,95.63,93.8,94.68,87.49,87.72
-31061,13,141,13141,61,45,4278725,3635703,43755,19679,636298635,612538404,9429,5360,1239776488,1222061286,0.14,0.23,0.67,0.59,0.65,0.84,0.35,0.3
-31061,13,169,13169,31,14,504836,504836,43755,19679,636298635,612538404,28669,11688,1024124462,1020281755,0.07,0.07,0.08,0.08,0.11,0.12,0.05,0.05
-31061,13,237,13237,699,499,10144291,7292172,43755,19679,636298635,612538404,21218,12804,934173666,892610760,1.6,2.54,1.59,1.19,3.29,3.9,1.09,0.82
-31061,13,319,13319,77,35,15391892,15323171,43755,19679,636298635,612538404,9563,4487,1170544616,1158522024,0.18,0.18,2.42,2.5,0.81,0.78,1.31,1.32
-31062,13,009,13009,495,10,696373,696373,495,10,696373,696373,45720,20159,692591215,667812053,100,100,100,100,1.08,0.05,0.1,0.1
-31063,13,093,13093,250,127,41127792,40792951,5666,2479,299179892,295745417,14918,6328,1028961239,1015120132,4.41,5.12,13.75,13.79,1.68,2.01,4,4.02
-31063,13,193,13193,5416,2352,258052100,254952466,5666,2479,299179892,295745417,14740,6136,1051513250,1037654091,95.59,94.88,86.25,86.21,36.74,38.33,24.54,24.57
-31064,13,159,13159,9450,4225,663124233,653682125,9450,4225,663124233,653682125,13900,6153,967268653,953542690,100,100,100,100,67.99,68.67,68.56,68.55
-31065,13,023,13023,238,110,47353515,47104531,1118,506,168652641,166949673,13063,5304,567547533,559100179,21.29,21.74,28.08,28.21,1.82,2.07,8.34,8.43
-31065,13,175,13175,880,396,121299126,119845142,1118,506,168652641,166949673,48434,21368,2119828490,2090886200,78.71,78.26,71.92,71.79,1.82,1.85,5.72,5.73
-31066,13,021,13021,24,15,518951,518951,1147,518,176583660,176252692,155547,69662,661393695,646879637,2.09,2.9,0.29,0.29,0.02,0.02,0.08,0.08
-31066,13,079,13079,1068,474,172512844,172181876,1147,518,176583660,176252692,12630,5292,845510993,841456435,93.11,91.51,97.69,97.69,8.46,8.96,20.4,20.46
-31066,13,207,13207,55,29,3551865,3551865,1147,518,176583660,176252692,26424,10710,1030326050,1024750743,4.8,5.6,2.01,2.02,0.21,0.27,0.34,0.35
-31067,13,303,13303,222,95,9001517,9001517,222,95,9001517,9001517,21187,9047,1772472988,1757182927,100,100,100,100,1.05,1.05,0.51,0.51
-31068,13,193,13193,5425,1779,237586522,232661534,5425,1779,237586522,232661534,14740,6136,1051513250,1037654091,100,100,100,100,36.8,28.99,22.59,22.42
-31069,13,153,13153,18717,7900,245042373,242646944,18948,7967,252205497,249810068,139900,58325,983990584,972645761,98.78,99.16,97.16,97.13,13.38,13.54,24.9,24.95
-31069,13,225,13225,231,67,7163124,7163124,18948,7967,252205497,249810068,27695,11050,391866954,389190656,1.22,0.84,2.84,2.87,0.83,0.61,1.83,1.84
-31070,13,093,13093,998,452,133711503,131555510,998,452,133711503,131555510,14918,6328,1028961239,1015120132,100,100,100,100,6.69,7.14,12.99,12.96
-31071,13,235,13235,450,222,85239101,85239101,1199,555,143632318,143292349,12010,5151,650622078,644987096,37.53,40,59.35,59.49,3.75,4.31,13.1,13.22
-31071,13,315,13315,749,333,58393217,58053248,1199,555,143632318,143292349,9255,3510,989694391,978250169,62.47,60,40.65,40.51,8.09,9.49,5.9,5.93
-31072,13,081,13081,72,33,9240570,9189941,1326,634,197086871,196074625,23439,10734,727660293,705987965,5.43,5.21,4.69,4.69,0.31,0.31,1.27,1.3
-31072,13,315,13315,1254,601,187846301,186884684,1326,634,197086871,196074625,9255,3510,989694391,978250169,94.57,94.79,95.31,95.31,13.55,17.12,18.98,19.1
-31075,13,175,13175,2496,1125,142615468,141347785,2496,1125,142615468,141347785,48434,21368,2119828490,2090886200,100,100,100,100,5.15,5.26,6.73,6.76
-31076,13,193,13193,273,145,98847055,97512565,3064,1703,315514320,310462777,14740,6136,1051513250,1037654091,8.91,8.51,31.33,31.41,1.85,2.36,9.4,9.4
-31076,13,269,13269,2791,1558,216667265,212950212,3064,1703,315514320,310462777,8906,4563,983415850,975612230,91.09,91.49,68.67,68.59,31.34,34.14,22.03,21.83
-31077,13,091,13091,875,503,139505538,136519474,1275,717,251320054,245743516,21796,9857,1303058329,1284348917,68.63,70.15,55.51,55.55,4.01,5.1,10.71,10.63
-31077,13,271,13271,400,214,111814516,109224042,1275,717,251320054,245743516,16500,7297,1149977507,1132610545,31.37,29.85,44.49,44.45,2.42,2.93,9.72,9.64
-31078,13,079,13079,3566,1545,274996019,273514844,3566,1545,274996019,273514844,12630,5292,845510993,841456435,100,100,100,100,28.23,29.2,32.52,32.5
-31079,13,017,13017,131,58,27876585,27584157,2398,1138,292324498,289713492,17634,7942,657616297,647809208,5.46,5.1,9.54,9.52,0.74,0.73,4.24,4.26
-31079,13,315,13315,2267,1080,264447913,262129335,2398,1138,292324498,289713492,9255,3510,989694391,978250169,94.54,94.9,90.46,90.48,24.49,30.77,26.72,26.8
-31081,13,269,13269,251,151,91917955,91698092,251,151,91917955,91698092,8906,4563,983415850,975612230,100,100,100,100,2.82,3.31,9.35,9.4
-31082,13,009,13009,37,16,7162961,7162961,10408,4674,588486180,582415185,45720,20159,692591215,667812053,0.36,0.34,1.22,1.23,0.08,0.08,1.03,1.07
-31082,13,303,13303,10371,4658,581323219,575252224,10408,4674,588486180,582415185,21187,9047,1772472988,1757182927,99.64,99.66,98.78,98.77,48.95,51.49,32.8,32.74
-31083,13,271,13271,333,171,4943405,4912652,362,185,5386147,5330660,16500,7297,1149977507,1132610545,91.99,92.43,91.78,92.16,2.02,2.34,0.43,0.43
-31083,13,309,13309,29,14,442742,418008,362,185,5386147,5330660,7421,2625,777691389,765301286,8.01,7.57,8.22,7.84,0.39,0.53,0.06,0.05
-31084,13,315,13315,129,63,720270,686811,129,63,720270,686811,9255,3510,989694391,978250169,100,100,100,100,1.39,1.79,0.07,0.07
-31085,13,159,13159,1043,413,116150786,114665838,1043,413,116150786,114665838,13900,6153,967268653,953542690,100,100,100,100,7.5,6.71,12.01,12.03
-31087,13,009,13009,350,203,18991480,14436598,9656,5478,1222616127,1201184265,45720,20159,692591215,667812053,3.62,3.71,1.55,1.2,0.77,1.01,2.74,2.16
-31087,13,141,13141,9288,5267,1197612861,1180745272,9656,5478,1222616127,1201184265,9429,5360,1239776488,1222061286,96.19,96.15,97.95,98.3,98.5,98.26,96.6,96.62
-31087,13,303,13303,18,8,6011786,6002395,9656,5478,1222616127,1201184265,21187,9047,1772472988,1757182927,0.19,0.15,0.49,0.5,0.08,0.09,0.34,0.34
-31088,13,153,13153,50163,20915,81987656,81408813,50163,20915,81987656,81408813,139900,58325,983990584,972645761,100,100,100,100,35.86,35.86,8.33,8.37
-31089,13,167,13167,137,75,55466586,54585631,4838,2250,400183940,397330613,9980,4120,794071977,784793399,2.83,3.33,13.86,13.74,1.37,1.82,6.99,6.96
-31089,13,303,13303,4701,2175,344717354,342744982,4838,2250,400183940,397330613,21187,9047,1772472988,1757182927,97.17,96.67,86.14,86.26,22.19,24.04,19.45,19.51
-31090,13,319,13319,1038,528,380744500,372246200,1038,528,380744500,372246200,9563,4487,1170544616,1158522024,100,100,100,100,10.85,11.77,32.53,32.13
-31091,13,093,13093,5144,1649,219061102,215564045,5189,1674,228312219,224730749,14918,6328,1028961239,1015120132,99.13,98.51,95.95,95.92,34.48,26.06,21.29,21.24
-31091,13,153,13153,17,10,3467745,3467745,5189,1674,228312219,224730749,139900,58325,983990584,972645761,0.33,0.6,1.52,1.54,0.01,0.02,0.35,0.36
-31091,13,235,13235,28,15,5783372,5698959,5189,1674,228312219,224730749,12010,5151,650622078,644987096,0.54,0.9,2.53,2.54,0.23,0.29,0.89,0.88
-31092,13,081,13081,198,108,23330020,23075910,7420,3562,490660070,485794481,23439,10734,727660293,705987965,2.67,3.03,4.75,4.75,0.84,1.01,3.21,3.27
-31092,13,093,13093,7222,3454,467330050,462718571,7420,3562,490660070,485794481,14918,6328,1028961239,1015120132,97.33,96.97,95.25,95.25,48.41,54.58,45.42,45.58
-31093,13,153,13153,28087,12662,51431149,50846509,28087,12662,51431149,50846509,139900,58325,983990584,972645761,100,100,100,100,20.08,21.71,5.23,5.23
-31094,13,303,13303,1114,585,281932449,279527208,1114,585,281932449,279527208,21187,9047,1772472988,1757182927,100,100,100,100,5.26,6.47,15.91,15.91
-31096,13,167,13167,7227,2738,419380982,415519087,7395,2821,446344992,442372176,9980,4120,794071977,784793399,97.73,97.06,93.96,93.93,72.41,66.46,52.81,52.95
-31096,13,303,13303,168,83,26964010,26853089,7395,2821,446344992,442372176,21187,9047,1772472988,1757182927,2.27,2.94,6.04,6.07,0.79,0.92,1.52,1.53
-31097,13,171,13171,61,28,10590693,10360023,1302,591,139717591,138450603,18317,7474,481308642,475262611,4.69,4.74,7.58,7.48,0.33,0.37,2.2,2.18
-31097,13,207,13207,53,19,2338873,2338873,1302,591,139717591,138450603,26424,10710,1030326050,1024750743,4.07,3.21,1.67,1.69,0.2,0.18,0.23,0.23
-31097,13,293,13293,1188,544,126788025,125751707,1302,591,139717591,138450603,27153,12161,848360429,837697129,91.24,92.05,90.75,90.83,4.38,4.47,14.95,15.01
-31098,13,153,13153,2888,894,48175824,46724240,2888,894,48175824,46724240,139900,58325,983990584,972645761,100,100,100,100,2.06,1.53,4.9,4.8
-31201,13,021,13021,8761,4552,28431251,27562134,8761,4552,28431251,27562134,155547,69662,661393695,646879637,100,100,100,100,5.63,6.53,4.3,4.26
-31204,13,021,13021,31482,15486,38355725,37887020,31482,15486,38355725,37887020,155547,69662,661393695,646879637,100,100,100,100,20.24,22.23,5.8,5.86
-31206,13,021,13021,29072,12298,72930454,72325015,29072,12298,72930454,72325015,155547,69662,661393695,646879637,100,100,100,100,18.69,17.65,11.03,11.18
-31207,13,021,13021,974,1,445440,445440,974,1,445440,445440,155547,69662,661393695,646879637,100,100,100,100,0.63,0,0.07,0.07
-31210,13,021,13021,28324,12966,80338953,79610015,30968,13972,108036946,107042614,155547,69662,661393695,646879637,91.46,92.8,74.36,74.37,18.21,18.61,12.15,12.31
-31210,13,207,13207,2644,1006,27697993,27432599,30968,13972,108036946,107042614,26424,10710,1030326050,1024750743,8.54,7.2,25.64,25.63,10.01,9.39,2.69,2.68
-31211,13,021,13021,8818,4404,21313176,20889804,16282,7499,127997723,127334757,155547,69662,661393695,646879637,54.16,58.73,16.65,16.41,5.67,6.32,3.22,3.23
-31211,13,169,13169,7464,3095,106684547,106444953,16282,7499,127997723,127334757,28669,11688,1024124462,1020281755,45.84,41.27,83.35,83.59,26.04,26.48,10.42,10.43
-31213,13,021,13021,0,0,26043,26043,0,0,26043,26043,155547,69662,661393695,646879637,0,0,100,100,0,0,0,0
-31216,13,021,13021,16109,6245,143979435,142722386,16109,6245,143979435,142722386,155547,69662,661393695,646879637,100,100,100,100,10.36,8.96,21.77,22.06
-31217,13,021,13021,12364,5438,81184420,79289386,18408,8033,258596924,255619151,155547,69662,661393695,646879637,67.17,67.7,31.39,31.02,7.95,7.81,12.27,12.26
-31217,13,169,13169,4050,1687,108419461,108140444,18408,8033,258596924,255619151,28669,11688,1024124462,1020281755,22,21,41.93,42.31,14.13,14.43,10.59,10.6
-31217,13,289,13289,1994,908,68993043,68189321,18408,8033,258596924,255619151,9023,4235,939218397,928246376,10.83,11.3,26.68,26.68,22.1,21.44,7.35,7.35
-31220,13,021,13021,12728,5418,78188367,71446157,13839,5846,129799860,122998584,155547,69662,661393695,646879637,91.97,92.68,60.24,58.09,8.18,7.78,11.82,11.04
-31220,13,207,13207,1111,428,51611493,51552427,13839,5846,129799860,122998584,26424,10710,1030326050,1024750743,8.03,7.32,39.76,41.91,4.2,4,5.01,5.03
-31301,13,179,13179,3197,1436,16052131,15702847,4591,2114,30762950,30196537,63453,26731,1560538804,1268578765,69.64,67.93,52.18,52,5.04,5.37,1.03,1.24
-31301,13,183,13183,1394,678,14710819,14493690,4591,2114,30762950,30196537,14464,6039,1045871677,1036755278,30.36,32.07,47.82,48,9.64,11.23,1.41,1.4
-31302,13,051,13051,3856,1628,71140868,64898987,7853,3141,117621939,109847005,265128,119323,1637551365,1104465640,49.1,51.83,60.48,59.08,1.45,1.36,4.34,5.88
-31302,13,103,13103,3997,1513,46481071,44948018,7853,3141,117621939,109847005,52250,19884,1250784074,1237236175,50.9,48.17,39.52,40.92,7.65,7.61,3.72,3.63
-31303,13,103,13103,1999,881,214961059,210702449,1999,881,214961059,210702449,52250,19884,1250784074,1237236175,100,100,100,100,3.83,4.43,17.19,17.03
-31304,13,191,13191,132,81,6873214,5895320,132,81,6873214,5895320,14333,9220,1486376765,1098929183,100,100,100,100,0.92,0.88,0.46,0.54
-31305,13,191,13191,5989,3193,119633605,109053177,5989,3193,119633605,109053177,14333,9220,1486376765,1098929183,100,100,100,100,41.78,34.63,8.05,9.92
-31307,13,103,13103,998,418,10279171,9780132,998,418,10279171,9780132,52250,19884,1250784074,1237236175,100,100,100,100,1.91,2.1,0.82,0.79
-31308,13,029,13029,5655,2276,181333912,179013882,7305,2916,225031379,222284353,30233,11842,1177035196,1129148153,77.41,78.05,80.58,80.53,18.7,19.22,15.41,15.85
-31308,13,031,13031,1650,640,43697467,43270471,7305,2916,225031379,222284353,70217,28794,1783531569,1742568254,22.59,21.95,19.42,19.47,2.35,2.22,2.45,2.48
-31309,13,179,13179,1210,497,67556606,63205065,1210,497,67556606,63205065,63453,26731,1560538804,1268578765,100,100,100,100,1.91,1.86,4.33,4.98
-31312,13,103,13103,16443,6046,415479586,413123852,16443,6046,415479586,413123852,52250,19884,1250784074,1237236175,100,100,100,100,31.47,30.41,33.22,33.39
-31313,13,179,13179,39252,17229,167163267,156467007,40302,17651,174283227,163586041,63453,26731,1560538804,1268578765,97.39,97.61,95.91,95.65,61.86,64.45,10.71,12.33
-31313,13,183,13183,1050,422,7119960,7119034,40302,17651,174283227,163586041,14464,6039,1045871677,1036755278,2.61,2.39,4.09,4.35,7.26,6.99,0.68,0.69
-31314,13,179,13179,1931,0,24493499,23532161,1931,0,24493499,23532161,63453,26731,1560538804,1268578765,100,0,100,100,3.04,0,1.57,1.86
-31315,13,179,13179,7488,2524,30953899,30638949,7488,2524,30953899,30638949,63453,26731,1560538804,1268578765,100,100,100,100,11.8,9.44,1.98,2.42
-31316,13,183,13183,9749,4061,755187251,749281398,9749,4061,755187251,749281398,14464,6039,1045871677,1036755278,100,100,100,100,67.4,67.25,72.21,72.27
-31318,13,103,13103,341,157,3518205,3518205,341,157,3518205,3518205,52250,19884,1250784074,1237236175,100,100,100,100,0.65,0.79,0.28,0.28
-31320,13,179,13179,8794,4334,337095184,298681658,8794,4334,337095184,298681658,63453,26731,1560538804,1268578765,100,100,100,100,13.86,16.21,21.6,23.54
-31321,13,029,13029,4083,1756,183714366,182510113,6326,2678,361040682,358528950,30233,11842,1177035196,1129148153,64.54,65.57,50.88,50.91,13.51,14.83,15.61,16.16
-31321,13,031,13031,2243,922,177326316,176018837,6326,2678,361040682,358528950,70217,28794,1783531569,1742568254,35.46,34.43,49.12,49.09,3.19,3.2,9.94,10.1
-31322,13,051,13051,21137,8940,75771114,73184421,21137,8940,75771114,73184421,265128,119323,1637551365,1104465640,100,100,100,100,7.97,7.49,4.63,6.63
-31323,13,179,13179,1581,711,268289595,242163241,1762,788,350296252,322843557,63453,26731,1560538804,1268578765,89.73,90.23,76.59,75.01,2.49,2.66,17.19,19.09
-31323,13,183,13183,20,5,39642942,39576609,1762,788,350296252,322843557,14464,6039,1045871677,1036755278,1.14,0.63,11.32,12.26,0.14,0.08,3.79,3.82
-31323,13,191,13191,161,72,42363715,41103707,1762,788,350296252,322843557,14333,9220,1486376765,1098929183,9.14,9.14,12.09,12.73,1.12,0.78,2.85,3.74
-31324,13,029,13029,20495,7810,369126043,330695526,20495,7810,369126043,330695526,30233,11842,1177035196,1129148153,100,100,100,100,67.79,65.95,31.36,29.29
-31326,13,103,13103,19269,7509,182378675,181457012,19269,7509,182378675,181457012,52250,19884,1250784074,1237236175,100,100,100,100,36.88,37.76,14.58,14.67
-31327,13,191,13191,195,235,133928973,99422632,195,235,133928973,99422632,14333,9220,1486376765,1098929183,100,100,100,100,1.36,2.55,9.01,9.05
-31328,13,051,13051,3306,3548,16314886,12887602,3306,3548,16314886,12887602,265128,119323,1637551365,1104465640,100,100,100,100,1.25,2.97,1,1.17
-31329,13,103,13103,9034,3276,274858552,273699195,9034,3276,274858552,273699195,52250,19884,1250784074,1237236175,100,100,100,100,17.29,16.48,21.97,22.12
-31331,13,191,13191,7856,5630,843350533,765538151,7856,5630,843350533,765538151,14333,9220,1486376765,1098929183,100,100,100,100,54.81,61.06,56.74,69.66
-31401,13,051,13051,21696,11389,13632862,12391658,21696,11389,13632862,12391658,265128,119323,1637551365,1104465640,100,100,100,100,8.18,9.54,0.83,1.12
-31404,13,051,13051,31024,13105,42116292,38168875,31024,13105,42116292,38168875,265128,119323,1637551365,1104465640,100,100,100,100,11.7,10.98,2.57,3.46
-31405,13,051,13051,37207,15933,80087527,77778884,37207,15933,80087527,77778884,265128,119323,1637551365,1104465640,100,100,100,100,14.03,13.35,4.89,7.04
-31406,13,051,13051,33965,15008,75279732,66153625,33965,15008,75279732,66153625,265128,119323,1637551365,1104465640,100,100,100,100,12.81,12.58,4.6,5.99
-31407,13,051,13051,7244,3116,75602622,73360209,7244,3116,75602622,73360209,265128,119323,1637551365,1104465640,100,100,100,100,2.73,2.61,4.62,6.64
-31408,13,051,13051,9952,3438,64319592,63184987,9952,3438,64319592,63184987,265128,119323,1637551365,1104465640,100,100,100,100,3.75,2.88,3.93,5.72
-31409,13,051,13051,652,0,17251377,17221974,652,0,17251377,17221974,265128,119323,1637551365,1104465640,100,0,100,100,0.25,0,1.05,1.56
-31410,13,051,13051,23654,10852,59541538,50427575,23654,10852,59541538,50427575,265128,119323,1637551365,1104465640,100,100,100,100,8.92,9.09,3.64,4.57
-31411,13,051,13051,8384,4376,64505366,54764023,8384,4376,64505366,54764023,265128,119323,1637551365,1104465640,100,100,100,100,3.16,3.67,3.94,4.96
-31415,13,051,13051,12091,5462,16320188,15774534,12091,5462,16320188,15774534,265128,119323,1637551365,1104465640,100,100,100,100,4.56,4.58,1,1.43
-31419,13,051,13051,50954,22521,176982809,164587779,50954,22521,176982809,164587779,265128,119323,1637551365,1104465640,100,100,100,100,19.22,18.87,10.81,14.9
-31501,13,299,13299,15576,7189,34397429,34124867,15576,7189,34397429,34124867,36312,16326,2351677722,2311462171,100,100,100,100,42.89,44.03,1.46,1.48
-31503,13,025,13025,2467,1049,70014511,68092698,21116,9235,871960517,858695501,18411,8086,1158248854,1145713216,11.68,11.36,8.03,7.93,13.4,12.97,6.04,5.94
-31503,13,299,13299,18649,8186,801946006,790602803,21116,9235,871960517,858695501,36312,16326,2351677722,2311462171,88.32,88.64,91.97,92.07,51.36,50.14,34.1,34.2
-31510,13,005,13005,9500,4082,516312186,471305596,9848,4230,589333160,541736820,11096,4801,740276799,669707907,96.47,96.5,87.61,87,85.62,85.02,69.75,70.37
-31510,13,161,13161,12,6,5603332,5524425,9848,4230,589333160,541736820,15068,6488,868676913,856613114,0.12,0.14,0.95,1.02,0.08,0.09,0.65,0.64
-31510,13,229,13229,336,142,67417642,64906799,9848,4230,589333160,541736820,18758,7986,888961186,819714945,3.41,3.36,11.44,11.98,1.79,1.78,7.58,7.92
-31512,13,069,13069,2248,963,211328261,204499907,2248,963,211328261,204499907,42356,17061,1560856918,1489494986,100,100,100,100,5.31,5.64,13.54,13.73
-31513,13,001,13001,16052,7294,862530206,852177948,16084,7306,866015475,855657275,18236,8512,1326751346,1313333924,99.8,99.84,99.6,99.59,88.02,85.69,65.01,64.89
-31513,13,161,13161,32,12,3485269,3479327,16084,7306,866015475,855657275,15068,6488,868676913,856613114,0.2,0.16,0.4,0.41,0.21,0.18,0.4,0.41
-31516,13,229,13229,14735,6192,426306966,389809672,14735,6192,426306966,389809672,18758,7986,888961186,819714945,100,100,100,100,78.55,77.54,47.96,47.55
-31518,13,001,13001,367,195,78417961,78134018,704,353,121149114,116990029,18236,8512,1326751346,1313333924,52.13,55.24,64.73,66.79,2.01,2.29,5.91,5.95
-31518,13,229,13229,242,118,33206323,29370976,704,353,121149114,116990029,18758,7986,888961186,819714945,34.38,33.43,27.41,25.11,1.29,1.48,3.74,3.58
-31518,13,305,13305,95,40,9524830,9485035,704,353,121149114,116990029,30099,12199,1680373988,1662194319,13.49,11.33,7.86,8.11,0.32,0.33,0.57,0.57
-31519,13,069,13069,3477,1591,328309076,315360354,3569,1634,353976710,340698893,42356,17061,1560856918,1489494986,97.42,97.37,92.75,92.56,8.21,9.33,21.03,21.17
-31519,13,161,13161,92,43,25667634,25338539,3569,1634,353976710,340698893,15068,6488,868676913,856613114,2.58,2.63,7.25,7.44,0.61,0.66,2.95,2.96
-31520,13,127,13127,22336,10032,48067785,43687965,22336,10032,48067785,43687965,79626,40716,1515785202,1087155362,100,100,100,100,28.05,24.64,3.17,4.02
-31522,13,127,13127,14447,11029,186806161,139641874,14447,11029,186806161,139641874,79626,40716,1515785202,1087155362,100,100,100,100,18.14,27.09,12.32,12.84
-31523,13,127,13127,13229,5444,513214463,479192154,13229,5444,513214463,479192154,79626,40716,1515785202,1087155362,100,100,100,100,16.61,13.37,33.86,44.08
-31524,13,127,13127,0,0,4436364,4373531,0,0,4436364,4373531,79626,40716,1515785202,1087155362,0,0,100,100,0,0,0.29,0.4
-31525,13,127,13127,28247,12443,260756671,254287775,28247,12443,260756671,254287775,79626,40716,1515785202,1087155362,100,100,100,100,35.47,30.56,17.2,23.39
-31527,13,127,13127,805,798,83895380,45709416,805,798,83895380,45709416,79626,40716,1515785202,1087155362,100,100,100,100,1.01,1.96,5.53,4.2
-31532,13,161,13161,727,321,134251767,132989663,727,321,134251767,132989663,15068,6488,868676913,856613114,100,100,100,100,4.82,4.95,15.45,15.53
-31533,13,069,13069,17494,7421,176828671,165310624,17494,7421,176828671,165310624,42356,17061,1560856918,1489494986,100,100,100,100,41.3,43.5,11.33,11.1
-31535,13,069,13069,11264,4480,266195390,252860623,11264,4480,266195390,252860623,42356,17061,1560856918,1489494986,100,100,100,100,26.59,26.26,17.05,16.98
-31537,13,039,13039,132,84,66585583,61086270,10097,3557,760844331,751287515,50513,21114,2025020899,1587727882,1.31,2.36,8.75,8.13,0.26,0.4,3.29,3.85
-31537,13,049,13049,9965,3473,694258748,690201245,10097,3557,760844331,751287515,12171,4475,2026339661,2003553604,98.69,97.64,91.25,91.87,81.87,77.61,34.26,34.45
-31539,13,001,13001,263,125,9762164,9711523,14468,6231,709431075,698992683,18236,8512,1326751346,1313333924,1.82,2.01,1.38,1.39,1.44,1.47,0.74,0.74
-31539,13,161,13161,14205,6106,699668911,689281160,14468,6231,709431075,698992683,15068,6488,868676913,856613114,98.18,97.99,98.62,98.61,94.27,94.11,80.54,80.47
-31542,13,025,13025,2811,1169,266417153,264411111,2811,1169,266417153,264411111,18411,8086,1158248854,1145713216,100,100,100,100,15.27,14.46,23,23.08
-31543,13,025,13025,4386,1936,216091808,214926670,4796,2113,324765233,323500824,18411,8086,1158248854,1145713216,91.45,91.62,66.54,66.44,23.82,23.94,18.66,18.76
-31543,13,127,13127,114,47,23172678,23159754,4796,2113,324765233,323500824,79626,40716,1515785202,1087155362,2.38,2.22,7.14,7.16,0.14,0.12,1.53,2.13
-31543,13,305,13305,296,130,85500747,85414400,4796,2113,324765233,323500824,30099,12199,1680373988,1662194319,6.17,6.15,26.33,26.4,0.98,1.07,5.09,5.14
-31544,13,271,13271,994,601,267375032,262611017,994,601,267375032,262611017,16500,7297,1149977507,1132610545,100,100,100,100,6.02,8.24,23.25,23.19
-31545,13,305,13305,16133,6870,262267769,256393500,16133,6870,262267769,256393500,30099,12199,1680373988,1662194319,100,100,100,100,53.6,56.32,15.61,15.43
-31546,13,305,13305,8095,2765,447301242,439990819,8095,2765,447301242,439990819,30099,12199,1680373988,1662194319,100,100,100,100,26.89,22.67,26.62,26.47
-31547,13,039,13039,1293,84,6652621,6518673,1293,84,6652621,6518673,50513,21114,2025020899,1587727882,100,100,100,100,2.56,0.4,0.33,0.41
-31548,13,039,13039,20020,8173,151401885,144829795,20020,8173,151401885,144829795,50513,21114,2025020899,1587727882,100,100,100,100,39.63,38.71,7.48,9.12
-31549,13,271,13271,2094,1159,167583473,164556248,2239,1243,295717178,290212158,16500,7297,1149977507,1132610545,93.52,93.24,56.67,56.7,12.69,15.88,14.57,14.53
-31549,13,309,13309,145,84,128133705,125655910,2239,1243,295717178,290212158,7421,2625,777691389,765301286,6.48,6.76,43.33,43.3,1.95,3.2,16.48,16.42
-31550,13,299,13299,780,357,134522880,132130740,780,357,134522880,132130740,36312,16326,2351677722,2311462171,100,100,100,100,2.15,2.19,5.72,5.72
-31551,13,005,13005,479,213,92572716,83869861,1020,442,186376622,168345089,11096,4801,740276799,669707907,46.96,48.19,49.67,49.82,4.32,4.44,12.51,12.52
-31551,13,229,13229,541,229,93803906,84475228,1020,442,186376622,168345089,18758,7986,888961186,819714945,53.04,51.81,50.33,50.18,2.88,2.87,10.55,10.31
-31552,13,003,13003,49,27,17891517,17764876,932,435,224158111,221632440,8375,3522,892337644,878994487,5.26,6.21,7.98,8.02,0.59,0.77,2.01,2.02
-31552,13,069,13069,7,5,6328827,6328661,932,435,224158111,221632440,42356,17061,1560856918,1489494986,0.75,1.15,2.82,2.86,0.02,0.03,0.41,0.42
-31552,13,299,13299,876,403,199937767,197538903,932,435,224158111,221632440,36312,16326,2351677722,2311462171,93.99,92.64,89.19,89.13,2.41,2.47,8.5,8.55
-31553,13,025,13025,5220,2305,447351588,442909298,5237,2311,447812485,443370195,18411,8086,1158248854,1145713216,99.68,99.74,99.9,99.9,28.35,28.51,38.62,38.66
-31553,13,049,13049,17,6,460897,460897,5237,2311,447812485,443370195,12171,4475,2026339661,2003553604,0.32,0.26,0.1,0.1,0.14,0.13,0.02,0.02
-31554,13,005,13005,1117,506,131391897,114532450,7076,2301,544298866,510617984,11096,4801,740276799,669707907,15.79,21.99,24.14,22.43,10.07,10.54,17.75,17.1
-31554,13,069,13069,5576,1621,298672703,283403332,7076,2301,544298866,510617984,42356,17061,1560856918,1489494986,78.8,70.45,54.87,55.5,13.16,9.5,19.14,19.03
-31554,13,299,13299,383,174,114234266,112682202,7076,2301,544298866,510617984,36312,16326,2351677722,2311462171,5.41,7.56,20.99,22.07,1.05,1.07,4.86,4.87
-31555,13,001,13001,230,127,85197343,84836162,2868,1255,384824746,382076654,18236,8512,1326751346,1313333924,8.02,10.12,22.14,22.2,1.26,1.49,6.42,6.46
-31555,13,305,13305,2638,1128,299627403,297240492,2868,1255,384824746,382076654,30099,12199,1680373988,1662194319,91.98,89.88,77.86,77.8,8.76,9.25,17.83,17.88
-31556,13,229,13229,67,28,1288684,1202933,67,28,1288684,1202933,18758,7986,888961186,819714945,100,100,100,100,0.36,0.35,0.14,0.15
-31557,13,025,13025,206,77,21571455,20541706,3043,1354,288509120,270491043,18411,8086,1158248854,1145713216,6.77,5.69,7.48,7.59,1.12,0.95,1.86,1.79
-31557,13,229,13229,2837,1277,266937665,249949337,3043,1354,288509120,270491043,18758,7986,888961186,819714945,93.23,94.31,92.52,92.41,15.12,15.99,30.03,30.49
-31558,13,039,13039,20373,8762,264179564,194812375,20373,8762,264179564,194812375,50513,21114,2025020899,1587727882,100,100,100,100,40.33,41.5,13.05,12.27
-31560,13,305,13305,2842,1266,356973212,354525895,2842,1266,356973212,354525895,30099,12199,1680373988,1662194319,100,100,100,100,9.44,10.38,21.24,21.33
-31561,13,127,13127,298,870,22946592,12837659,298,870,22946592,12837659,79626,40716,1515785202,1087155362,100,100,100,100,0.37,2.14,1.51,1.18
-31562,13,049,13049,2177,977,278526644,275819192,2177,977,278526644,275819192,12171,4475,2026339661,2003553604,100,100,100,100,17.89,21.83,13.75,13.77
-31563,13,001,13001,1324,771,290843672,288474273,1324,771,290843672,288474273,18236,8512,1326751346,1313333924,100,100,100,100,7.26,9.06,21.92,21.97
-31565,13,039,13039,1841,1013,383976744,333626853,1841,1013,383976744,333626853,50513,21114,2025020899,1587727882,100,100,100,100,3.64,4.8,18.96,21.01
-31566,13,025,13025,3321,1550,136802339,134831733,3471,1603,165923176,163938345,18411,8086,1158248854,1145713216,95.68,96.69,82.45,82.25,18.04,19.17,11.81,11.77
-31566,13,127,13127,150,53,29120837,29106612,3471,1603,165923176,163938345,79626,40716,1515785202,1087155362,4.32,3.31,17.55,17.75,0.19,0.13,1.92,2.68
-31567,13,069,13069,782,341,111079565,105633331,782,341,111079565,105633331,42356,17061,1560856918,1489494986,100,100,100,100,1.85,2,7.12,7.09
-31568,13,039,13039,1273,644,342051404,324057357,1273,644,342051404,324057357,50513,21114,2025020899,1587727882,100,100,100,100,2.52,3.05,16.89,20.41
-31569,13,039,13039,5580,2353,179958231,168722231,5580,2353,179958231,168722231,50513,21114,2025020899,1587727882,100,100,100,100,11.05,11.14,8.89,10.63
-31601,13,185,13185,32730,13344,409259655,397263853,32730,13344,409259655,397263853,109233,43921,1322384276,1284805506,100,100,100,100,29.96,30.38,30.95,30.92
-31602,13,027,13027,2777,1297,41891682,41500029,34702,14747,107155715,105576888,16243,7706,1289296945,1276982395,8,8.8,39.09,39.31,17.1,16.83,3.25,3.25
-31602,13,185,13185,31925,13450,65264033,64076859,34702,14747,107155715,105576888,109233,43921,1322384276,1284805506,92,91.2,60.91,60.69,29.23,30.62,4.94,4.99
-31605,13,185,13185,20188,8135,139813609,137916577,20188,8135,139813609,137916577,109233,43921,1322384276,1284805506,100,100,100,100,18.48,18.52,10.57,10.73
-31606,13,185,13185,3861,1553,115249984,114148267,3861,1553,115249984,114148267,109233,43921,1322384276,1284805506,100,100,100,100,3.53,3.54,8.72,8.88
-31620,13,075,13075,10690,4546,330268069,321185199,10690,4546,330268069,321185199,17212,7287,603992745,588345665,100,100,100,100,62.11,62.39,54.68,54.59
-31622,13,019,13019,2178,1078,288499007,286931944,2178,1078,288499007,286931944,19286,8709,1185910843,1170407787,100,100,100,100,11.29,12.38,24.33,24.52
-31623,13,065,13065,120,82,2302039,2302039,120,82,2302039,2302039,6798,3007,2134132216,2072566618,100,100,100,100,1.77,2.73,0.11,0.11
-31624,13,003,13003,1165,498,191572331,189876172,1273,540,207486416,204811034,8375,3522,892337644,878994487,91.52,92.22,92.33,92.71,13.91,14.14,21.47,21.6
-31624,13,069,13069,60,25,12311722,11352466,1273,540,207486416,204811034,42356,17061,1560856918,1489494986,4.71,4.63,5.93,5.54,0.14,0.15,0.79,0.76
-31624,13,299,13299,48,17,3602363,3582396,1273,540,207486416,204811034,36312,16326,2351677722,2311462171,3.77,3.15,1.74,1.75,0.13,0.1,0.15,0.15
-31625,13,027,13027,1171,561,157140356,155223749,1171,561,157140356,155223749,16243,7706,1289296945,1276982395,100,100,100,100,7.21,7.28,12.19,12.16
-31626,13,027,13027,244,135,34597410,34371051,3463,1670,373594583,370132317,16243,7706,1289296945,1276982395,7.05,8.08,9.26,9.29,1.5,1.75,2.68,2.69
-31626,13,275,13275,3219,1535,338997173,335761266,3463,1670,373594583,370132317,44720,20177,1430238286,1410495980,92.95,91.92,90.74,90.71,7.2,7.61,23.7,23.8
-31627,13,075,13075,239,127,2287726,2213639,239,127,2287726,2213639,17212,7287,603992745,588345665,100,100,100,100,1.39,1.74,0.38,0.38
-31629,13,027,13027,902,448,114533255,112934806,902,448,114533255,112934806,16243,7706,1289296945,1276982395,100,100,100,100,5.55,5.81,8.88,8.84
-31630,13,065,13065,341,161,185339484,179664268,419,194,236256829,230581613,6798,3007,2134132216,2072566618,81.38,82.99,78.45,77.92,5.02,5.35,8.68,8.67
-31630,13,101,13101,78,33,50917345,50917345,419,194,236256829,230581613,4034,1558,1089659090,1074571687,18.62,17.01,21.55,22.08,1.93,2.12,4.67,4.74
-31631,13,049,13049,7,17,53904763,53454634,559,318,324237770,317203981,12171,4475,2026339661,2003553604,1.25,5.35,16.63,16.85,0.06,0.38,2.66,2.67
-31631,13,065,13065,431,223,97174369,93758297,559,318,324237770,317203981,6798,3007,2134132216,2072566618,77.1,70.13,29.97,29.56,6.34,7.42,4.55,4.52
-31631,13,101,13101,121,78,163279405,160131893,559,318,324237770,317203981,4034,1558,1089659090,1074571687,21.65,24.53,50.36,50.48,3,5.01,14.98,14.9
-31631,13,299,13299,0,0,9879233,9859157,559,318,324237770,317203981,36312,16326,2351677722,2311462171,0,0,3.05,3.11,0,0,0.42,0.43
-31632,13,075,13075,1090,455,62038293,59975475,10295,4068,294427348,287360001,17212,7287,603992745,588345665,10.59,11.18,21.07,20.87,6.33,6.24,10.27,10.19
-31632,13,185,13185,9205,3613,232389055,227384526,10295,4068,294427348,287360001,109233,43921,1322384276,1284805506,89.41,88.82,78.93,79.13,8.43,8.23,17.57,17.7
-31634,13,065,13065,5844,2506,739911948,704046169,5844,2506,739911948,704046169,6798,3007,2134132216,2072566618,100,100,100,100,85.97,83.34,34.67,33.97
-31635,13,003,13003,28,7,37242914,36096083,6560,2746,314134730,291646089,8375,3522,892337644,878994487,0.43,0.25,11.86,12.38,0.33,0.2,4.17,4.11
-31635,13,065,13065,47,22,12741827,12346442,6560,2746,314134730,291646089,6798,3007,2134132216,2072566618,0.72,0.8,4.06,4.23,0.69,0.73,0.6,0.6
-31635,13,173,13173,6485,2717,264149989,243203564,6560,2746,314134730,291646089,10078,4249,517449728,479824426,98.86,98.94,84.09,83.39,64.35,63.94,51.05,50.69
-31636,13,101,13101,2795,1059,311895876,311895532,9539,4135,525985881,511532418,4034,1558,1089659090,1074571687,29.3,25.61,59.3,60.97,69.29,67.97,28.62,29.03
-31636,13,185,13185,6744,3076,214090005,199636886,9539,4135,525985881,511532418,109233,43921,1322384276,1284805506,70.7,74.39,40.7,39.03,6.17,7,16.19,15.54
-31637,13,019,13019,857,370,72239449,71439898,2848,1273,208345771,203687859,19286,8709,1185910843,1170407787,30.09,29.07,34.67,35.07,4.44,4.25,6.09,6.1
-31637,13,071,13071,200,91,32455565,31276765,2848,1273,208345771,203687859,45498,18311,1441688666,1409350694,7.02,7.15,15.58,15.36,0.44,0.5,2.25,2.22
-31637,13,075,13075,1658,754,90270325,88421401,2848,1273,208345771,203687859,17212,7287,603992745,588345665,58.22,59.23,43.33,43.41,9.63,10.35,14.95,15.03
-31637,13,277,13277,133,58,13380432,12549795,2848,1273,208345771,203687859,40118,16434,696160501,670585617,4.67,4.56,6.42,6.16,0.33,0.35,1.92,1.87
-31638,13,027,13027,1045,468,70921658,69955594,1045,468,70921658,69955594,16243,7706,1289296945,1276982395,100,100,100,100,6.43,6.07,5.5,5.48
-31639,13,019,13019,10499,4733,571782695,565060775,10537,4751,577218959,570486234,19286,8709,1185910843,1170407787,99.64,99.62,99.06,99.05,54.44,54.35,48.21,48.28
-31639,13,173,13173,38,18,5436264,5425459,10537,4751,577218959,570486234,10078,4249,517449728,479824426,0.36,0.38,0.94,0.95,0.38,0.42,1.05,1.13
-31641,13,173,13173,772,312,91041281,76761523,1831,758,220334474,204178050,10078,4249,517449728,479824426,42.16,41.16,41.32,37.6,7.66,7.34,17.59,16
-31641,13,185,13185,1059,446,129293193,127416527,1831,758,220334474,204178050,109233,43921,1322384276,1284805506,57.84,58.84,58.68,62.4,0.97,1.02,9.78,9.92
-31642,13,003,13003,4892,1987,478207792,468956802,4898,1991,481678490,471657792,8375,3522,892337644,878994487,99.88,99.8,99.28,99.43,58.41,56.42,53.59,53.35
-31642,13,065,13065,6,4,3470698,2700990,4898,1991,481678490,471657792,6798,3007,2134132216,2072566618,0.12,0.2,0.72,0.57,0.09,0.13,0.16,0.13
-31643,13,027,13027,8709,4142,685666799,680195599,8709,4142,685666799,680195599,16243,7706,1289296945,1276982395,100,100,100,100,53.62,53.75,53.18,53.27
-31645,13,019,13019,2743,1252,88467066,86311169,5147,2285,131618624,128529839,19286,8709,1185910843,1170407787,53.29,54.79,67.21,67.15,14.22,14.38,7.46,7.37
-31645,13,173,13173,1727,731,27738841,26868684,5147,2285,131618624,128529839,10078,4249,517449728,479824426,33.55,31.99,21.08,20.9,17.14,17.2,5.36,5.6
-31645,13,185,13185,677,302,15412717,15349986,5147,2285,131618624,128529839,109233,43921,1322384276,1284805506,13.15,13.22,11.71,11.94,0.62,0.69,1.17,1.19
-31647,13,075,13075,3535,1405,119128332,116549951,3535,1405,119128332,116549951,17212,7287,603992745,588345665,100,100,100,100,20.54,19.28,19.72,19.81
-31648,13,101,13101,1040,388,11955938,11955938,1040,388,11955938,11955938,4034,1558,1089659090,1074571687,100,100,100,100,25.78,24.9,1.1,1.11
-31649,13,173,13173,1056,471,129083353,127565196,1056,471,129083353,127565196,10078,4249,517449728,479824426,100,100,100,100,10.48,11.08,24.95,26.59
-31650,13,003,13003,2241,1003,167423090,166300554,3311,1469,266656148,261983691,8375,3522,892337644,878994487,67.68,68.28,62.79,63.48,26.76,28.48,18.76,18.92
-31650,13,069,13069,1070,466,99233058,95683137,3311,1469,266656148,261983691,42356,17061,1560856918,1489494986,32.32,31.72,37.21,36.52,2.53,2.73,6.36,6.42
-31698,13,185,13185,2223,0,217408,217408,2223,0,217408,217408,109233,43921,1322384276,1284805506,100,0,100,100,2.04,0,0.02,0.02
-31699,13,185,13185,621,2,1394617,1394617,621,2,1394617,1394617,109233,43921,1322384276,1284805506,100,100,100,100,0.57,0,0.11,0.11
-31701,13,095,13095,19786,8959,69578160,65257142,20552,9242,74495019,70019893,94565,40801,866694475,851299438,96.27,96.94,93.4,93.2,20.92,21.96,8.03,7.67
-31701,13,177,13177,766,283,4916859,4762751,20552,9242,74495019,70019893,28298,10276,936883554,921475641,3.73,3.06,6.6,6.8,2.71,2.75,0.52,0.52
-31705,13,095,13095,32488,12460,281897038,278340510,35565,13724,402371796,398502655,94565,40801,866694475,851299438,91.35,90.79,70.06,69.85,34.36,30.54,32.53,32.7
-31705,13,205,13205,711,316,39269114,39139927,35565,13724,402371796,398502655,23498,8996,1330797363,1326293194,2,2.3,9.76,9.82,3.03,3.51,2.95,2.95
-31705,13,321,13321,2366,948,81205644,81022218,35565,13724,402371796,398502655,21679,9251,1488609501,1478111101,6.65,6.91,20.18,20.33,10.91,10.25,5.46,5.48
-31707,13,095,13095,24442,11891,43566863,43086145,25299,12219,49059625,48578907,94565,40801,866694475,851299438,96.61,97.32,88.8,88.69,25.85,29.14,5.03,5.06
-31707,13,177,13177,857,328,5492762,5492762,25299,12219,49059625,48578907,28298,10276,936883554,921475641,3.39,2.68,11.2,11.31,3.03,3.19,0.59,0.6
-31709,13,261,13261,16019,6765,334073219,328890375,16019,6765,334073219,328890375,32819,13909,1275967547,1250179595,100,100,100,100,48.81,48.64,26.18,26.31
-31711,13,193,13193,282,145,68237054,67400980,867,447,154101770,152174672,14740,6136,1051513250,1037654091,32.53,32.44,44.28,44.29,1.91,2.36,6.49,6.5
-31711,13,261,13261,585,302,85864716,84773692,867,447,154101770,152174672,32819,13909,1275967547,1250179595,67.47,67.56,55.72,55.71,1.78,2.17,6.73,6.78
-31712,13,081,13081,1263,549,127979226,127221191,1263,549,127979226,127221191,23439,10734,727660293,705987965,100,100,100,100,5.39,5.11,17.59,18.02
-31714,13,287,13287,6304,2784,448868010,442543473,6474,2860,492784185,486272033,8930,3841,751045849,739164599,97.37,97.34,91.09,91.01,70.59,72.48,59.77,59.87
-31714,13,321,13321,170,76,43916175,43728560,6474,2860,492784185,486272033,21679,9251,1488609501,1478111101,2.63,2.66,8.91,8.99,0.78,0.82,2.95,2.96
-31716,13,205,13205,2896,1207,210184972,209496922,2896,1207,210184972,209496922,23498,8996,1330797363,1326293194,100,100,100,100,12.32,13.42,15.79,15.8
-31719,13,261,13261,10977,4137,245858044,243726560,10977,4137,245858044,243726560,32819,13909,1275967547,1250179595,100,100,100,100,33.45,29.74,19.27,19.5
-31720,13,027,13027,215,99,11500661,11134298,455,223,12372204,12003577,16243,7706,1289296945,1276982395,47.25,44.39,92.96,92.76,1.32,1.28,0.89,0.87
-31720,13,275,13275,240,124,871543,869279,455,223,12372204,12003577,44720,20177,1430238286,1410495980,52.75,55.61,7.04,7.24,0.54,0.61,0.06,0.06
-31721,13,007,13007,71,42,88324124,84915547,20095,8309,561279704,552028537,3451,1652,904264104,885629946,0.35,0.51,15.74,15.38,2.06,2.54,9.77,9.59
-31721,13,095,13095,17734,7428,463551987,457709397,20095,8309,561279704,552028537,94565,40801,866694475,851299438,88.25,89.4,82.59,82.91,18.75,18.21,53.49,53.77
-31721,13,177,13177,2183,783,5766880,5766880,20095,8309,561279704,552028537,28298,10276,936883554,921475641,10.86,9.42,1.03,1.04,7.71,7.62,0.62,0.63
-31721,13,273,13273,107,56,3636713,3636713,20095,8309,561279704,552028537,9315,4080,874647028,868783601,0.53,0.67,0.65,0.66,1.15,1.37,0.42,0.42
-31722,13,071,13071,494,212,1977920,1936592,494,212,1977920,1936592,45498,18311,1441688666,1409350694,100,100,100,100,1.09,1.16,0.14,0.14
-31730,13,087,13087,86,54,21395207,21218565,9682,3919,655959118,654839875,27842,12125,1613997327,1546584607,0.89,1.38,3.26,3.24,0.31,0.45,1.33,1.37
-31730,13,205,13205,9596,3865,634563911,633621310,9682,3919,655959118,654839875,23498,8996,1330797363,1326293194,99.11,98.62,96.74,96.76,40.84,42.96,47.68,47.77
-31733,13,155,13155,465,237,87469502,84941067,1580,730,152221725,147717872,9538,4033,939551490,917743923,29.43,32.47,57.46,57.5,4.88,5.88,9.31,9.26
-31733,13,277,13277,1113,492,63000879,61025461,1580,730,152221725,147717872,40118,16434,696160501,670585617,70.44,67.4,41.39,41.31,2.77,2.99,9.05,9.1
-31733,13,287,13287,2,1,1751344,1751344,1580,730,152221725,147717872,8930,3841,751045849,739164599,0.13,0.14,1.15,1.19,0.02,0.03,0.23,0.24
-31735,13,261,13261,817,758,67946405,56340603,817,758,67946405,56340603,32819,13909,1275967547,1250179595,100,100,100,100,2.49,5.45,5.33,4.51
-31738,13,071,13071,169,89,39789866,39022279,2102,970,163617600,161232473,45498,18311,1441688666,1409350694,8.04,9.18,24.32,24.2,0.37,0.49,2.76,2.77
-31738,13,275,13275,1933,881,123827734,122210194,2102,970,163617600,161232473,44720,20177,1430238286,1410495980,91.96,90.82,75.68,75.8,4.32,4.37,8.66,8.66
-31743,13,177,13177,57,27,82013366,76502939,630,267,146561312,140330352,28298,10276,936883554,921475641,9.05,10.11,55.96,54.52,0.2,0.26,8.75,8.3
-31743,13,261,13261,573,240,64547946,63827413,630,267,146561312,140330352,32819,13909,1275967547,1250179595,90.95,89.89,44.04,45.48,1.75,1.73,5.06,5.11
-31744,13,071,13071,1899,879,131888647,129694169,3202,1464,321529130,317664142,45498,18311,1441688666,1409350694,59.31,60.04,41.02,40.83,4.17,4.8,9.15,9.2
-31744,13,205,13205,69,31,13174087,13174087,3202,1464,321529130,317664142,23498,8996,1330797363,1326293194,2.15,2.12,4.1,4.15,0.29,0.34,0.99,0.99
-31744,13,321,13321,1234,554,176466396,174795886,3202,1464,321529130,317664142,21679,9251,1488609501,1478111101,38.54,37.84,54.88,55.03,5.69,5.99,11.85,11.83
-31747,13,071,13071,281,120,2059074,2048724,281,120,2059074,2048724,45498,18311,1441688666,1409350694,100,100,100,100,0.62,0.66,0.14,0.15
-31749,13,019,13019,2415,1020,134167819,130400672,2783,1170,157047151,152404294,19286,8709,1185910843,1170407787,86.78,87.18,85.43,85.56,12.52,11.71,11.31,11.14
-31749,13,155,13155,17,5,9188215,8702053,2783,1170,157047151,152404294,9538,4033,939551490,917743923,0.61,0.43,5.85,5.71,0.18,0.12,0.98,0.95
-31749,13,277,13277,351,145,13691117,13301569,2783,1170,157047151,152404294,40118,16434,696160501,670585617,12.61,12.39,8.72,8.73,0.87,0.88,1.97,1.98
-31750,13,017,13017,17256,7735,550189814,541839056,18687,8382,741818596,729248968,17634,7942,657616297,647809208,92.34,92.28,74.17,74.3,97.86,97.39,83.66,83.64
-31750,13,155,13155,1423,640,191488382,187269618,18687,8382,741818596,729248968,9538,4033,939551490,917743923,7.61,7.64,25.81,25.68,14.92,15.87,20.38,20.41
-31750,13,315,13315,8,7,140400,140294,18687,8382,741818596,729248968,9255,3510,989694391,978250169,0.04,0.08,0.02,0.02,0.09,0.2,0.01,0.01
-31756,13,071,13071,966,422,103412384,101089242,966,422,103412384,101089242,45498,18311,1441688666,1409350694,100,100,100,100,2.12,2.3,7.17,7.17
-31757,13,275,13275,10451,4417,224248751,220444609,10451,4417,224248751,220444609,44720,20177,1430238286,1410495980,100,100,100,100,23.37,21.89,15.68,15.63
-31763,13,095,13095,72,37,5903619,4780479,23304,8405,663618268,654286855,94565,40801,866694475,851299438,0.31,0.44,0.89,0.73,0.08,0.09,0.68,0.56
-31763,13,177,13177,23232,8368,657714649,649506376,23304,8405,663618268,654286855,28298,10276,936883554,921475641,99.69,99.56,99.11,99.27,82.1,81.43,70.2,70.49
-31764,13,177,13177,63,31,28109791,28109791,1296,611,206256913,203602404,28298,10276,936883554,921475641,4.86,5.07,13.63,13.81,0.22,0.3,3,3.05
-31764,13,261,13261,1233,580,178147122,175492613,1296,611,206256913,203602404,32819,13909,1275967547,1250179595,95.14,94.93,86.37,86.19,3.76,4.17,13.96,14.04
-31765,13,071,13071,455,207,53862315,52965878,2647,1141,221681092,219331405,45498,18311,1441688666,1409350694,17.19,18.14,24.3,24.15,1,1.13,3.74,3.76
-31765,13,205,13205,753,335,101468423,101223347,2647,1141,221681092,219331405,23498,8996,1330797363,1326293194,28.45,29.36,45.77,46.15,3.2,3.72,7.62,7.63
-31765,13,275,13275,1439,599,66350354,65142180,2647,1141,221681092,219331405,44720,20177,1430238286,1410495980,54.36,52.5,29.93,29.7,3.22,2.97,4.64,4.62
-31768,13,071,13071,23617,9871,400124183,391225396,23617,9871,400124183,391225396,45498,18311,1441688666,1409350694,100,100,100,100,51.91,53.91,27.75,27.76
-31771,13,071,13071,5588,2014,275369385,269375807,5666,2053,284470869,278477291,45498,18311,1441688666,1409350694,98.62,98.1,96.8,96.73,12.28,11,19.1,19.11
-31771,13,321,13321,78,39,9101484,9101484,5666,2053,284470869,278477291,21679,9251,1488609501,1478111101,1.38,1.9,3.2,3.27,0.36,0.42,0.61,0.62
-31772,13,321,13321,482,219,166331848,163090135,482,219,166331848,163090135,21679,9251,1488609501,1478111101,100,100,100,100,2.22,2.37,11.17,11.03
-31773,13,131,13131,799,342,39658994,39080081,3729,1715,222532991,219324834,25011,10760,1192078105,1177219063,21.43,19.94,17.82,17.82,3.19,3.18,3.33,3.32
-31773,13,275,13275,2930,1373,182873997,180244753,3729,1715,222532991,219324834,44720,20177,1430238286,1410495980,78.57,80.06,82.18,82.18,6.55,6.8,12.79,12.78
-31774,13,155,13155,6714,2734,444226079,434170039,6714,2734,444226079,434170039,9538,4033,939551490,917743923,100,100,100,100,70.39,67.79,47.28,47.31
-31775,13,071,13071,1132,357,60476502,58442463,2979,1051,121210486,117685154,45498,18311,1441688666,1409350694,38,33.97,49.89,49.66,2.49,1.95,4.19,4.15
-31775,13,277,13277,1570,589,39514611,38151425,2979,1051,121210486,117685154,40118,16434,696160501,670585617,52.7,56.04,32.6,32.42,3.91,3.58,5.68,5.69
-31775,13,321,13321,277,105,21219373,21091266,2979,1051,121210486,117685154,21679,9251,1488609501,1478111101,9.3,9.99,17.51,17.92,1.28,1.14,1.43,1.43
-31778,13,027,13027,1180,556,173045124,171667269,2562,1190,277222968,274559725,16243,7706,1289296945,1276982395,46.06,46.72,62.42,62.52,7.26,7.22,13.42,13.44
-31778,13,071,13071,95,37,2442227,2417217,2562,1190,277222968,274559725,45498,18311,1441688666,1409350694,3.71,3.11,0.88,0.88,0.21,0.2,0.17,0.17
-31778,13,275,13275,1287,597,101735617,100475239,2562,1190,277222968,274559725,44720,20177,1430238286,1410495980,50.23,50.17,36.7,36.6,2.88,2.96,7.11,7.12
-31779,13,131,13131,1235,552,124347067,122859156,9927,3463,368533278,365690067,25011,10760,1192078105,1177219063,12.44,15.94,33.74,33.6,4.94,5.13,10.43,10.44
-31779,13,205,13205,8692,2911,244186211,242830911,9927,3463,368533278,365690067,23498,8996,1330797363,1326293194,87.56,84.06,66.26,66.4,36.99,32.36,18.35,18.31
-31780,13,261,13261,2267,953,221650515,219927730,2285,968,260382092,258349828,32819,13909,1275967547,1250179595,99.21,98.45,85.13,85.13,6.91,6.85,17.37,17.59
-31780,13,307,13307,18,15,38731577,38422098,2285,968,260382092,258349828,2799,1523,544579513,541613654,0.79,1.55,14.87,14.87,0.64,0.98,7.11,7.09
-31781,13,321,13321,1752,742,71062278,70601166,1752,742,71062278,70601166,21679,9251,1488609501,1478111101,100,100,100,100,8.08,8.02,4.77,4.78
-31783,13,017,13017,116,53,52933603,52144179,1107,492,261169730,256929064,17634,7942,657616297,647809208,10.48,10.77,20.27,20.3,0.66,0.67,8.05,8.05
-31783,13,155,13155,445,193,79357579,77558614,1107,492,261169730,256929064,9538,4033,939551490,917743923,40.2,39.23,30.39,30.19,4.67,4.79,8.45,8.45
-31783,13,287,13287,546,246,128878548,127226271,1107,492,261169730,256929064,8930,3841,751045849,739164599,49.32,50,49.35,49.52,6.11,6.4,17.16,17.21
-31784,13,205,13205,781,331,87950645,86806690,781,331,87950645,86806690,23498,8996,1330797363,1326293194,100,100,100,100,3.32,3.68,6.61,6.55
-31787,13,177,13177,1140,456,152869247,151334142,1488,630,230748827,228534751,28298,10276,936883554,921475641,76.61,72.38,66.25,66.22,4.03,4.44,16.32,16.42
-31787,13,261,13261,348,174,77879580,77200609,1488,630,230748827,228534751,32819,13909,1275967547,1250179595,23.39,27.62,33.75,33.78,1.06,1.25,6.1,6.18
-31788,13,071,13071,10602,4012,337830598,329856162,10602,4012,337830598,329856162,45498,18311,1441688666,1409350694,100,100,100,100,23.3,21.91,23.43,23.4
-31789,13,321,13321,1236,538,166959886,165972568,1236,538,166959886,165972568,21679,9251,1488609501,1478111101,100,100,100,100,5.7,5.82,11.22,11.23
-31790,13,287,13287,2078,810,171547947,167643511,2078,810,171547947,167643511,8930,3841,751045849,739164599,100,100,100,100,23.27,21.09,22.84,22.68
-31791,13,095,13095,43,26,2196808,2125765,12354,5109,493434904,491765734,94565,40801,866694475,851299438,0.35,0.51,0.45,0.43,0.05,0.06,0.25,0.25
-31791,13,321,13321,12311,5083,491238096,489639969,12354,5109,493434904,491765734,21679,9251,1488609501,1478111101,99.65,99.49,99.55,99.57,56.79,54.95,33,33.13
-31792,13,131,13131,614,296,162230681,160703931,23835,10947,553563798,546052391,25011,10760,1192078105,1177219063,2.58,2.7,29.31,29.43,2.45,2.75,13.61,13.65
-31792,13,275,13275,23221,10651,391333117,385348460,23835,10947,553563798,546052391,44720,20177,1430238286,1410495980,97.42,97.3,70.69,70.57,51.93,52.79,27.36,27.32
-31793,13,277,13277,9043,3321,268439754,257756553,9043,3321,268439754,257756553,40118,16434,696160501,670585617,100,100,100,100,22.54,20.21,38.56,38.44
-31794,13,019,13019,594,256,30754807,30263329,27153,11539,301253083,291225225,19286,8709,1185910843,1170407787,2.19,2.22,10.21,10.39,3.08,2.94,2.59,2.59
-31794,13,277,13277,26559,11283,270498276,260961896,27153,11539,301253083,291225225,40118,16434,696160501,670585617,97.81,97.78,89.79,89.61,66.2,68.66,38.86,38.92
-31795,13,277,13277,1349,546,27635432,26838918,2010,858,129328140,128216398,40118,16434,696160501,670585617,67.11,63.64,21.37,20.93,3.36,3.32,3.97,4
-31795,13,321,13321,661,312,101692708,101377480,2010,858,129328140,128216398,21679,9251,1488609501,1478111101,32.89,36.36,78.63,79.07,3.05,3.37,6.83,6.86
-31796,13,321,13321,1112,635,159415613,157690369,1112,635,159415613,157690369,21679,9251,1488609501,1478111101,100,100,100,100,5.13,6.86,10.71,10.67
-31798,13,017,13017,131,96,26616295,26241816,983,468,205007673,200406899,17634,7942,657616297,647809208,13.33,20.51,12.98,13.09,0.74,1.21,4.05,4.05
-31798,13,069,13069,378,148,50569645,49062551,983,468,205007673,200406899,42356,17061,1560856918,1489494986,38.45,31.62,24.67,24.48,0.89,0.87,3.24,3.29
-31798,13,155,13155,474,224,127821733,125102532,983,468,205007673,200406899,9538,4033,939551490,917743923,48.22,47.86,62.35,62.42,4.97,5.55,13.6,13.63
-31801,13,197,13197,1820,803,141015766,140499274,3008,1357,225118766,223831679,8742,4156,951769583,947944161,60.51,59.17,62.64,62.77,20.82,19.32,14.82,14.82
-31801,13,215,13215,119,53,10310718,10036529,3008,1357,225118766,223831679,189885,82690,572404176,560435436,3.96,3.91,4.58,4.48,0.06,0.06,1.8,1.79
-31801,13,263,13263,1069,501,73792282,73295876,3008,1357,225118766,223831679,6865,3399,1022428853,1013691766,35.54,36.92,32.78,32.75,15.57,14.74,7.22,7.23
-31803,13,197,13197,5550,2705,710723904,707969141,5662,2754,735146022,732376331,8742,4156,951769583,947944161,98.02,98.22,96.68,96.67,63.49,65.09,74.67,74.68
-31803,13,249,13249,104,45,18015915,18000987,5662,2754,735146022,732376331,5010,2208,434660231,432283853,1.84,1.63,2.45,2.46,2.08,2.04,4.14,4.16
-31803,13,307,13307,8,4,6406203,6406203,5662,2754,735146022,732376331,2799,1523,544579513,541613654,0.14,0.15,0.87,0.87,0.29,0.26,1.18,1.18
-31804,13,145,13145,5934,2306,136985259,136302851,5934,2306,136985259,136302851,32024,13397,1224950454,1201414214,100,100,100,100,18.53,17.21,11.18,11.35
-31805,13,053,13053,3113,1500,156364821,155900515,3191,1538,184050895,183426029,11267,3376,650516238,644223521,97.56,97.53,84.96,84.99,27.63,44.43,24.04,24.2
-31805,13,259,13259,78,38,27686074,27525514,3191,1538,184050895,183426029,6058,2383,1200750659,1188113818,2.44,2.47,15.04,15.01,1.29,1.59,2.31,2.32
-31806,13,193,13193,56,29,11671487,11595425,4962,2192,428315803,425878291,14740,6136,1051513250,1037654091,1.13,1.32,2.72,2.72,0.38,0.47,1.11,1.12
-31806,13,249,13249,4906,2163,416644316,414282866,4962,2192,428315803,425878291,5010,2208,434660231,432283853,98.87,98.68,97.28,97.28,97.92,97.96,95.86,95.84
-31807,13,145,13145,2483,932,30624832,30112448,2483,932,30624832,30112448,32024,13397,1224950454,1201414214,100,100,100,100,7.75,6.96,2.5,2.51
-31808,13,145,13145,5694,2240,107698607,103602367,6679,2606,138718520,134602667,32024,13397,1224950454,1201414214,85.25,85.96,77.64,76.97,17.78,16.72,8.79,8.62
-31808,13,215,13215,985,366,31019913,31000300,6679,2606,138718520,134602667,189885,82690,572404176,560435436,14.75,14.04,22.36,23.03,0.52,0.44,5.42,5.53
-31810,13,263,13263,225,127,32672373,32557996,225,127,32672373,32557996,6865,3399,1022428853,1013691766,100,100,100,100,3.28,3.74,3.2,3.21
-31811,13,145,13145,5103,2250,350096609,338576780,5103,2250,350096609,338576780,32024,13397,1224950454,1201414214,100,100,100,100,15.93,16.79,28.58,28.18
-31812,13,263,13263,449,251,184151096,182201186,565,329,219747430,217498791,6865,3399,1022428853,1013691766,79.47,76.29,83.8,83.77,6.54,7.38,18.01,17.97
-31812,13,269,13269,116,78,35596334,35297605,565,329,219747430,217498791,8906,4563,983415850,975612230,20.53,23.71,16.2,16.23,1.3,1.71,3.62,3.62
-31814,13,259,13259,272,113,43083922,42983442,272,113,43083922,42983442,6058,2383,1200750659,1188113818,100,100,100,100,4.49,4.74,3.59,3.62
-31815,13,259,13259,3675,1149,648465430,644631990,3675,1149,648465430,644631990,6058,2383,1200750659,1188113818,100,100,100,100,60.66,48.22,54.01,54.26
-31816,13,199,13199,5693,2642,89257094,88268898,6091,2824,103751756,102748589,21992,9957,1308995757,1298161653,93.47,93.56,86.03,85.91,25.89,26.53,6.82,6.8
-31816,13,263,13263,398,182,14494662,14479691,6091,2824,103751756,102748589,6865,3399,1022428853,1013691766,6.53,6.44,13.97,14.09,5.8,5.35,1.42,1.43
-31820,13,145,13145,2539,917,47737064,47340686,8473,3043,104393523,103509211,32024,13397,1224950454,1201414214,29.97,30.13,45.73,45.74,7.93,6.84,3.9,3.94
-31820,13,215,13215,5934,2126,56656459,56168525,8473,3043,104393523,103509211,189885,82690,572404176,560435436,70.03,69.87,54.27,54.26,3.13,2.57,9.9,10.02
-31821,13,259,13259,250,180,242673693,235106694,250,180,242673693,235106694,6058,2383,1200750659,1188113818,100,100,100,100,4.13,7.55,20.21,19.79
-31822,13,145,13145,3066,1559,149417338,147988051,5429,2542,298882801,296912010,32024,13397,1224950454,1201414214,56.47,61.33,49.99,49.84,9.57,11.64,12.2,12.32
-31822,13,199,13199,642,293,51755315,51559370,5429,2542,298882801,296912010,21992,9957,1308995757,1298161653,11.83,11.53,17.32,17.37,2.92,2.94,3.95,3.97
-31822,13,285,13285,1721,690,97710148,97364589,5429,2542,298882801,296912010,67044,28046,1155036004,1072223976,31.7,27.14,32.69,32.79,2.57,2.46,8.46,9.08
-31823,13,145,13145,754,341,22253417,22097797,754,341,22253417,22097797,32024,13397,1224950454,1201414214,100,100,100,100,2.35,2.55,1.82,1.84
-31824,13,307,13307,1838,976,292852953,291025805,1838,976,292852953,291025805,2799,1523,544579513,541613654,100,100,100,100,65.67,64.08,53.78,53.73
-31825,13,259,13259,1783,903,238841540,237866178,2312,1180,342548942,341255422,6058,2383,1200750659,1188113818,77.12,76.53,69.72,69.7,29.43,37.89,19.89,20.02
-31825,13,307,13307,529,277,103707402,103389244,2312,1180,342548942,341255422,2799,1523,544579513,541613654,22.88,23.47,30.28,30.3,18.9,18.19,19.04,19.09
-31826,13,145,13145,1284,577,89060642,88850601,2350,1083,135788138,135410050,32024,13397,1224950454,1201414214,54.64,53.28,65.59,65.62,4.01,4.31,7.27,7.4
-31826,13,263,13263,1066,506,46727496,46559449,2350,1083,135788138,135410050,6865,3399,1022428853,1013691766,45.36,46.72,34.41,34.38,15.53,14.89,4.57,4.59
-31827,13,263,13263,2134,1034,394465580,391664390,2134,1034,394465580,391664390,6865,3399,1022428853,1013691766,100,100,100,100,31.09,30.42,38.58,38.64
-31829,13,145,13145,307,120,5851616,5851616,1370,528,30430565,30221177,32024,13397,1224950454,1201414214,22.41,22.73,19.23,19.36,0.96,0.9,0.48,0.49
-31829,13,215,13215,1063,408,24578949,24369561,1370,528,30430565,30221177,189885,82690,572404176,560435436,77.59,77.27,80.77,80.64,0.56,0.49,4.29,4.35
-31830,13,145,13145,84,62,14266077,14188736,2191,1010,142023838,140774472,32024,13397,1224950454,1201414214,3.83,6.14,10.04,10.08,0.26,0.46,1.16,1.18
-31830,13,199,13199,2107,948,127757761,126585736,2191,1010,142023838,140774472,21992,9957,1308995757,1298161653,96.17,93.86,89.96,89.92,9.58,9.52,9.76,9.75
-31831,13,145,13145,2725,1153,114473090,113966315,3095,1342,173061029,172461334,32024,13397,1224950454,1201414214,88.05,85.92,66.15,66.08,8.51,8.61,9.35,9.49
-31831,13,263,13263,370,189,58587939,58495019,3095,1342,173061029,172461334,6865,3399,1022428853,1013691766,11.95,14.08,33.85,33.92,5.39,5.56,5.73,5.77
-31832,13,307,13307,217,131,64349156,64008197,217,131,64349156,64008197,2799,1523,544579513,541613654,100,100,100,100,7.75,8.6,11.82,11.82
-31833,13,145,13145,2051,940,156485903,152535966,6900,3013,258723223,253999664,32024,13397,1224950454,1201414214,29.72,31.2,60.48,60.05,6.4,7.02,12.77,12.7
-31833,13,285,13285,4849,2073,102237320,101463698,6900,3013,258723223,253999664,67044,28046,1155036004,1072223976,70.28,68.8,39.52,39.95,7.23,7.39,8.85,9.46
-31836,13,263,13263,1154,609,217537425,214438159,1154,609,217537425,214438159,6865,3399,1022428853,1013691766,100,100,100,100,16.81,17.92,21.28,21.15
-31901,13,215,13215,8638,4155,12272049,11526212,8638,4155,12272049,11526212,189885,82690,572404176,560435436,100,100,100,100,4.55,5.02,2.14,2.06
-31903,13,215,13215,20128,9140,27088303,25938344,20128,9140,27088303,25938344,189885,82690,572404176,560435436,100,100,100,100,10.6,11.05,4.73,4.63
-31904,13,215,13215,32871,14926,82443233,74671590,32871,14926,82443233,74671590,189885,82690,572404176,560435436,100,100,100,100,17.31,18.05,14.4,13.32
-31905,01,113,01113,9,5,4389314,4389314,16044,4277,101067952,99786206,52947,24595,1676219091,1660545751,0.06,0.12,4.34,4.4,0.02,0.02,0.26,0.26
-31905,13,053,13053,8154,1876,63052540,62021458,16044,4277,101067952,99786206,11267,3376,650516238,644223521,50.82,43.86,62.39,62.15,72.37,55.57,9.69,9.63
-31905,13,215,13215,7881,2396,33626098,33375434,16044,4277,101067952,99786206,189885,82690,572404176,560435436,49.12,56.02,33.27,33.45,4.15,2.9,5.87,5.96
-31906,13,215,13215,21757,10939,17800467,17793907,21757,10939,17800467,17793907,189885,82690,572404176,560435436,100,100,100,100,11.46,13.23,3.11,3.18
-31907,13,215,13215,55332,22774,59784517,59510015,55332,22774,59784517,59510015,189885,82690,572404176,560435436,100,100,100,100,29.14,27.54,10.44,10.62
-31909,13,215,13215,35177,15407,47633087,47153991,35177,15407,47633087,47153991,189885,82690,572404176,560435436,100,100,100,100,18.53,18.63,8.32,8.41
-32003,12,019,12019,27126,10440,59199195,40991845,27126,10440,59199195,40991845,190865,75478,1666782261,1565286048,100,100,100,100,14.21,13.83,3.55,2.62
-32008,12,029,12029,131,87,9087260,8721927,5309,3108,363406509,357646364,16422,9319,2236842688,1826078949,2.47,2.8,2.5,2.44,0.8,0.93,0.41,0.48
-32008,12,041,12041,1056,696,65573607,65123309,5309,3108,363406509,357646364,16939,7307,920064242,905658580,19.89,22.39,18.04,18.21,6.23,9.53,7.13,7.19
-32008,12,067,12067,1558,876,194228081,190210584,5309,3108,363406509,357646364,8870,3328,1419074555,1407428266,29.35,28.19,53.45,53.18,17.56,26.32,13.69,13.51
-32008,12,121,12121,2564,1449,94517561,93590544,5309,3108,363406509,357646364,41551,19164,1792935377,1783341092,48.3,46.62,26.01,26.17,6.17,7.56,5.27,5.25
-32009,12,089,12089,3325,1251,222848403,222820024,3325,1251,222848403,222820024,73314,35009,1880126419,1679967676,100,100,100,100,4.54,3.57,11.85,13.26
-32011,12,089,12089,13854,5436,449343397,449325484,13854,5436,449343397,449325484,73314,35009,1880126419,1679967676,100,100,100,100,18.9,15.53,23.9,26.75
-32024,12,023,12023,16635,6877,301173644,300838127,18733,7828,370783049,370447532,67531,28636,2075430306,2065707648,88.8,87.85,81.23,81.21,24.63,24.02,14.51,14.56
-32024,12,121,12121,2098,951,69609405,69609405,18733,7828,370783049,370447532,41551,19164,1792935377,1783341092,11.2,12.15,18.77,18.79,5.05,4.96,3.88,3.9
-32025,12,023,12023,22380,8651,254509002,252379671,22380,8651,254509002,252379671,67531,28636,2075430306,2065707648,100,100,100,100,33.14,30.21,12.26,12.22
-32026,12,007,12007,1959,0,1684375,1684375,1959,0,1684375,1684375,28520,11011,778261753,761356806,100,0,100,100,6.87,0,0.22,0.22
-32033,12,109,12109,4118,1858,201979391,199446965,4118,1858,201979391,199446965,190039,89830,2127740450,1555689678,100,100,100,100,2.17,2.07,9.49,12.82
-32034,12,089,12089,31008,18262,184635600,146829630,31008,18262,184635600,146829630,73314,35009,1880126419,1679967676,100,100,100,100,42.29,52.16,9.82,8.74
-32038,12,023,12023,9228,4476,277974310,277774111,9228,4476,277974310,277774111,67531,28636,2075430306,2065707648,100,100,100,100,13.66,15.63,13.39,13.45
-32040,12,003,12003,7604,2880,315303225,315303225,7604,2880,315303225,315303225,27115,9687,1525427321,1515741200,100,100,100,100,28.04,29.73,20.67,20.8
-32043,12,019,12019,24460,9667,513896254,478864747,24632,9751,560143028,525111521,190865,75478,1666782261,1565286048,99.3,99.14,91.74,91.19,12.82,12.81,30.83,30.59
-32043,12,107,12107,172,84,46246774,46246774,24632,9751,560143028,525111521,74364,37337,2141716683,1884532662,0.7,0.86,8.26,8.81,0.23,0.22,2.16,2.45
-32044,12,007,12007,2060,951,63733474,60371340,2060,951,63733474,60371340,28520,11011,778261753,761356806,100,100,100,100,7.22,8.64,8.19,7.93
-32046,12,089,12089,9410,3794,502460288,499968665,9410,3794,502460288,499968665,73314,35009,1880126419,1679967676,100,100,100,100,12.84,10.84,26.72,29.76
-32052,12,047,12047,9223,3120,724957484,714834564,9223,3120,724957484,714834564,14799,5778,1344349401,1330711074,100,100,100,100,62.32,54,53.93,53.72
-32053,12,047,12047,3869,1767,320930265,319017568,3869,1767,320930265,319017568,14799,5778,1344349401,1330711074,100,100,100,100,26.14,30.58,23.87,23.97
-32054,12,007,12007,514,209,49050021,49050021,12307,3924,569884324,554423280,28520,11011,778261753,761356806,4.18,5.33,8.61,8.85,1.8,1.9,6.3,6.44
-32054,12,125,12125,11793,3715,520834303,505373259,12307,3924,569884324,554423280,15535,4508,646856291,630806354,95.82,94.67,91.39,91.15,75.91,82.41,80.52,80.12
-32055,12,023,12023,16570,7353,488677620,485795955,16570,7353,488677620,485795955,67531,28636,2075430306,2065707648,100,100,100,100,24.54,25.68,23.55,23.52
-32058,12,007,12007,4246,1475,156682916,156682916,4416,1541,186888117,186872679,28520,11011,778261753,761356806,96.15,95.72,83.84,83.84,14.89,13.4,20.13,20.58
-32058,12,019,12019,29,16,8575830,8575830,4416,1541,186888117,186872679,190865,75478,1666782261,1565286048,0.66,1.04,4.59,4.59,0.02,0.02,0.51,0.55
-32058,12,125,12125,141,50,21629371,21613933,4416,1541,186888117,186872679,15535,4508,646856291,630806354,3.19,3.24,11.57,11.57,0.91,1.11,3.34,3.43
-32059,12,079,12079,2377,1138,308776306,306474255,2377,1138,308776306,306474255,19224,8481,1853612095,1802497924,100,100,100,100,12.36,13.42,16.66,17
-32060,12,121,12121,21363,9576,1031986393,1025878020,21363,9576,1031986393,1025878020,41551,19164,1792935377,1783341092,100,100,100,100,51.41,49.97,57.56,57.53
-32061,12,023,12023,283,119,56947026,56947026,283,119,56947026,56947026,67531,28636,2075430306,2065707648,100,100,100,100,0.42,0.42,2.74,2.76
-32062,12,121,12121,2449,1151,159734110,159730503,2449,1151,159734110,159730503,41551,19164,1792935377,1783341092,100,100,100,100,5.89,6.01,8.91,8.96
-32063,12,003,12003,13429,4905,264758908,264700313,13429,4905,264758908,264700313,27115,9687,1525427321,1515741200,100,100,100,100,49.53,50.63,17.36,17.46
-32064,12,121,12121,6860,2951,19942992,19937887,6860,2951,19942992,19937887,41551,19164,1792935377,1783341092,100,100,100,100,16.51,15.4,1.11,1.12
-32065,12,019,12019,32770,12339,48312644,45170067,32770,12339,48312644,45170067,190865,75478,1666782261,1565286048,100,100,100,100,17.17,16.35,2.9,2.89
-32066,12,067,12067,7312,2446,724016782,717173173,7312,2446,724016782,717173173,8870,3328,1419074555,1407428266,100,100,100,100,82.44,73.5,51.02,50.96
-32068,12,019,12019,50815,19029,262592739,261822481,50815,19029,262592739,261822481,190865,75478,1666782261,1565286048,100,100,100,100,26.62,25.21,15.75,16.73
-32071,12,121,12121,3671,1889,275215730,273549174,3671,1889,275215730,273549174,41551,19164,1792935377,1783341092,100,100,100,100,8.83,9.86,15.35,15.34
-32072,12,003,12003,324,162,76744188,69445283,324,162,76744188,69445283,27115,9687,1525427321,1515741200,100,100,100,100,1.19,1.67,5.03,4.58
-32073,12,019,12019,38538,16043,49484081,41610432,38920,16219,50396483,42522834,190865,75478,1666782261,1565286048,99.02,98.91,98.19,97.85,20.19,21.26,2.97,2.66
-32073,12,031,12031,382,176,912402,912402,38920,16219,50396483,42522834,864263,388486,2378780786,1974068274,0.98,1.09,1.81,2.15,0.04,0.05,0.04,0.05
-32079,12,019,12019,433,249,1358635,1358635,433,249,1358635,1358635,190865,75478,1666782261,1565286048,100,100,100,100,0.23,0.33,0.08,0.09
-32080,12,109,12109,20165,15059,65423755,40288916,20165,15059,65423755,40288916,190039,89830,2127740450,1555689678,100,100,100,100,10.61,16.76,3.07,2.59
-32081,12,109,12109,4524,1704,102268219,98953530,4524,1704,102268219,98953530,190039,89830,2127740450,1555689678,100,100,100,100,2.38,1.9,4.81,6.36
-32082,12,109,12109,28996,14983,123384046,86123757,28996,14983,123384046,86123757,190039,89830,2127740450,1555689678,100,100,100,100,15.26,16.68,5.8,5.54
-32083,12,007,12007,1342,0,1244567,1244567,4690,604,104402410,103884003,28520,11011,778261753,761356806,28.61,0,1.19,1.2,4.71,0,0.16,0.16
-32083,12,125,12125,3348,604,103157843,102639436,4690,604,104402410,103884003,15535,4508,646856291,630806354,71.39,100,98.81,98.8,21.55,13.4,15.95,16.27
-32084,12,109,12109,29729,14795,134861009,123303172,29729,14795,134861009,123303172,190039,89830,2127740450,1555689678,100,100,100,100,15.64,16.47,6.34,7.93
-32086,12,109,12109,24546,11849,185712856,170434119,24546,11849,185712856,170434119,190039,89830,2127740450,1555689678,100,100,100,100,12.92,13.19,8.73,10.96
-32087,12,003,12003,5518,1651,351879320,349779045,5518,1651,351879320,349779045,27115,9687,1525427321,1515741200,100,100,100,100,20.35,17.04,23.07,23.08
-32091,12,007,12007,15027,6629,341373109,329433364,15472,7015,365333804,345553667,28520,11011,778261753,761356806,97.12,94.5,93.44,95.33,52.69,60.2,43.86,43.27
-32091,12,019,12019,445,386,23960695,16120303,15472,7015,365333804,345553667,190865,75478,1666782261,1565286048,2.88,5.5,6.56,4.67,0.23,0.51,1.44,1.03
-32092,12,109,12109,28242,11055,338400144,326189105,28242,11055,338400144,326189105,190039,89830,2127740450,1555689678,100,100,100,100,14.86,12.31,15.9,20.97
-32094,12,023,12023,205,83,16108036,16030223,2724,1267,150764632,149821008,67531,28636,2075430306,2065707648,7.53,6.55,10.68,10.7,0.3,0.29,0.78,0.78
-32094,12,121,12121,2519,1184,134656596,133790785,2724,1267,150764632,149821008,41551,19164,1792935377,1783341092,92.47,93.45,89.32,89.3,6.06,6.18,7.51,7.5
-32095,12,109,12109,7302,3063,135980317,129070864,7302,3063,135980317,129070864,190039,89830,2127740450,1555689678,100,100,100,100,3.84,3.41,6.39,8.3
-32096,12,023,12023,901,436,241734061,241187473,2635,1340,422832179,420665065,67531,28636,2075430306,2065707648,34.19,32.54,57.17,57.33,1.33,1.52,11.65,11.68
-32096,12,047,12047,1707,891,173825528,172222818,2635,1340,422832179,420665065,14799,5778,1344349401,1330711074,64.78,66.49,41.11,40.94,11.53,15.42,12.93,12.94
-32096,12,121,12121,27,13,7272590,7254774,2635,1340,422832179,420665065,41551,19164,1792935377,1783341092,1.02,0.97,1.72,1.72,0.06,0.07,0.41,0.41
-32097,12,089,12089,15616,6223,370233823,343981607,15616,6223,370233823,343981607,73314,35009,1880126419,1679967676,100,100,100,100,21.3,17.78,19.69,20.48
-32102,12,069,12069,1999,1424,140216690,128895140,2565,1996,177427312,163030476,297052,144996,2996522541,2430396019,77.93,71.34,79.03,79.06,0.67,0.98,4.68,5.3
-32102,12,127,12127,566,572,37210622,34135336,2565,1996,177427312,163030476,494593,254226,3709990171,2851658690,22.07,28.66,20.97,20.94,0.11,0.22,1,1.2
-32110,12,035,12035,7600,3602,694153200,682769486,7600,3602,694153200,682769486,95696,48595,1478428576,1257337716,100,100,100,100,7.94,7.41,46.95,54.3
-32112,12,107,12107,7713,4144,194734313,137195639,7713,4144,194734313,137195639,74364,37337,2141716683,1884532662,100,100,100,100,10.37,11.1,9.09,7.28
-32113,12,083,12083,6627,2935,215623020,204222317,6627,2935,215623020,204222317,331298,164050,4306141125,4103955681,100,100,100,100,2,1.79,5.01,4.98
-32114,12,127,12127,32084,15666,45984786,43833609,32084,15666,45984786,43833609,494593,254226,3709990171,2851658690,100,100,100,100,6.49,6.16,1.24,1.54
-32117,12,127,12127,24170,12525,31045889,29288265,24170,12525,31045889,29288265,494593,254226,3709990171,2851658690,100,100,100,100,4.89,4.93,0.84,1.03
-32118,12,127,12127,16961,15473,22717337,10970634,16961,15473,22717337,10970634,494593,254226,3709990171,2851658690,100,100,100,100,3.43,6.09,0.61,0.38
-32119,12,127,12127,20189,11626,23329199,20272503,20189,11626,23329199,20272503,494593,254226,3709990171,2851658690,100,100,100,100,4.08,4.57,0.63,0.71
-32124,12,127,12127,5986,1337,117713704,116944272,5986,1337,117713704,116944272,494593,254226,3709990171,2851658690,100,100,100,100,1.21,0.53,3.17,4.1
-32127,12,127,12127,29413,16485,55575715,41073595,29413,16485,55575715,41073595,494593,254226,3709990171,2851658690,100,100,100,100,5.95,6.48,1.5,1.44
-32128,12,127,12127,16910,8051,87323285,86610157,16910,8051,87323285,86610157,494593,254226,3709990171,2851658690,100,100,100,100,3.42,3.17,2.35,3.04
-32129,12,127,12127,20104,10753,19927852,19276444,20104,10753,19927852,19276444,494593,254226,3709990171,2851658690,100,100,100,100,4.06,4.23,0.54,0.68
-32130,12,127,12127,5474,2203,263942927,239115078,5474,2203,263942927,239115078,494593,254226,3709990171,2851658690,100,100,100,100,1.11,0.87,7.11,8.39
-32131,12,107,12107,4701,2049,112360978,87149181,4701,2049,112360978,87149181,74364,37337,2141716683,1884532662,100,100,100,100,6.32,5.49,5.25,4.62
-32132,12,127,12127,7265,3830,19991675,19249333,7265,3830,19991675,19249333,494593,254226,3709990171,2851658690,100,100,100,100,1.47,1.51,0.54,0.68
-32133,12,083,12083,137,75,914496,914496,137,75,914496,914496,331298,164050,4306141125,4103955681,100,100,100,100,0.04,0.05,0.02,0.02
-32134,12,069,12069,24,16,11246661,8819904,8084,6087,691106024,621919161,297052,144996,2996522541,2430396019,0.3,0.26,1.63,1.42,0.01,0.01,0.38,0.36
-32134,12,083,12083,7826,5783,533159258,484479533,8084,6087,691106024,621919161,331298,164050,4306141125,4103955681,96.81,95.01,77.15,77.9,2.36,3.53,12.38,11.81
-32134,12,107,12107,234,288,146700105,128619724,8084,6087,691106024,621919161,74364,37337,2141716683,1884532662,2.89,4.73,21.23,20.68,0.31,0.77,6.85,6.83
-32136,12,035,12035,6895,4902,50357935,43679858,7080,5042,56002282,48871111,95696,48595,1478428576,1257337716,97.39,97.22,89.92,89.38,7.21,10.09,3.41,3.47
-32136,12,127,12127,185,140,5644347,5191253,7080,5042,56002282,48871111,494593,254226,3709990171,2851658690,2.61,2.78,10.08,10.62,0.04,0.06,0.15,0.18
-32137,12,035,12035,37821,20744,167735770,153476374,37821,20744,167735770,153476374,95696,48595,1478428576,1257337716,100,100,100,100,39.52,42.69,11.35,12.21
-32139,12,107,12107,1129,797,53132512,30946534,1129,797,53132512,30946534,74364,37337,2141716683,1884532662,100,100,100,100,1.52,2.13,2.48,1.64
-32140,12,107,12107,1741,865,74638566,71169920,1741,865,74638566,71169920,74364,37337,2141716683,1884532662,100,100,100,100,2.34,2.32,3.48,3.78
-32141,12,127,12127,17603,8533,63055992,60921307,17603,8533,63055992,60921307,494593,254226,3709990171,2851658690,100,100,100,100,3.56,3.36,1.7,2.14
-32145,12,109,12109,5456,2260,240626632,239315752,5456,2260,240626632,239315752,190039,89830,2127740450,1555689678,100,100,100,100,2.87,2.52,11.31,15.38
-32147,12,107,12107,593,255,44347079,44158904,593,255,44347079,44158904,74364,37337,2141716683,1884532662,100,100,100,100,0.8,0.68,2.07,2.34
-32148,12,107,12107,11201,5579,230586136,218925487,11201,5579,230586136,218925487,74364,37337,2141716683,1884532662,100,100,100,100,15.06,14.94,10.77,11.62
-32157,12,107,12107,407,285,5206969,4065806,407,285,5206969,4065806,74364,37337,2141716683,1884532662,100,100,100,100,0.55,0.76,0.24,0.22
-32159,12,069,12069,20085,12289,83423447,72019289,28867,18159,94228636,82279717,297052,144996,2996522541,2430396019,69.58,67.67,88.53,87.53,6.76,8.48,2.78,2.96
-32159,12,119,12119,8782,5870,10805189,10260428,28867,18159,94228636,82279717,93420,53026,1501741032,1416548738,30.42,32.33,11.47,12.47,9.4,11.07,0.72,0.72
-32162,12,083,12083,8008,5239,9191855,9120750,45180,31950,62158713,59904741,331298,164050,4306141125,4103955681,17.72,16.4,14.79,15.23,2.42,3.19,0.21,0.22
-32162,12,119,12119,37172,26711,52966858,50783991,45180,31950,62158713,59904741,93420,53026,1501741032,1416548738,82.28,83.6,85.21,84.77,39.79,50.37,3.53,3.59
-32164,12,035,12035,41616,18345,86981891,86384220,41616,18345,86981891,86384220,95696,48595,1478428576,1257337716,100,100,100,100,43.49,37.75,5.88,6.87
-32168,12,127,12127,23642,12673,430756378,424964754,23642,12673,430756378,424964754,494593,254226,3709990171,2851658690,100,100,100,100,4.78,4.98,11.61,14.9
-32169,12,127,12127,9816,11497,73358028,38218360,9816,11497,73358028,38218360,494593,254226,3709990171,2851658690,100,100,100,100,1.98,4.52,1.98,1.34
-32174,12,035,12035,1750,989,77601055,77566171,47552,23973,334097212,319657091,95696,48595,1478428576,1257337716,3.68,4.13,23.23,24.27,1.83,2.04,5.25,6.17
-32174,12,127,12127,45802,22984,256496157,242090920,47552,23973,334097212,319657091,494593,254226,3709990171,2851658690,96.32,95.87,76.77,75.73,9.26,9.04,6.91,8.49
-32176,12,127,12127,14339,10386,23457342,13608871,14339,10386,23457342,13608871,494593,254226,3709990171,2851658690,100,100,100,100,2.9,4.09,0.63,0.48
-32177,12,107,12107,27132,11743,667131551,617913462,27132,11743,667131551,617913462,74364,37337,2141716683,1884532662,100,100,100,100,36.49,31.45,31.15,32.79
-32179,12,083,12083,8156,4715,216762917,178112063,8156,4715,216762917,178112063,331298,164050,4306141125,4103955681,100,100,100,100,2.46,2.87,5.03,4.34
-32180,12,035,12035,14,13,26432842,18699203,4218,1580,298288289,277346293,95696,48595,1478428576,1257337716,0.33,0.82,8.86,6.74,0.01,0.03,1.79,1.49
-32180,12,127,12127,4204,1567,271855447,258647090,4218,1580,298288289,277346293,494593,254226,3709990171,2851658690,99.67,99.18,91.14,93.26,0.85,0.62,7.33,9.07
-32181,12,107,12107,2551,1395,70439446,64878213,2551,1395,70439446,64878213,74364,37337,2141716683,1884532662,100,100,100,100,3.43,3.74,3.29,3.44
-32187,12,107,12107,1713,845,70187945,61571998,1713,845,70187945,61571998,74364,37337,2141716683,1884532662,100,100,100,100,2.3,2.26,3.28,3.27
-32189,12,107,12107,5807,3607,71992277,63227563,5807,3607,71992277,63227563,74364,37337,2141716683,1884532662,100,100,100,100,7.81,9.66,3.36,3.36
-32190,12,127,12127,1170,563,91894107,81975663,1170,563,91894107,81975663,494593,254226,3709990171,2851658690,100,100,100,100,0.24,0.22,2.48,2.87
-32193,12,107,12107,825,701,21527216,20561398,825,701,21527216,20561398,74364,37337,2141716683,1884532662,100,100,100,100,1.11,1.88,1.01,1.09
-32195,12,069,12069,340,175,3926723,3926723,3328,1612,69450560,54754227,297052,144996,2996522541,2430396019,10.22,10.86,5.65,7.17,0.11,0.12,0.13,0.16
-32195,12,083,12083,2988,1437,65523837,50827504,3328,1612,69450560,54754227,331298,164050,4306141125,4103955681,89.78,89.14,94.35,92.83,0.9,0.88,1.52,1.24
-32202,12,031,12031,7915,2090,7565121,5121313,7915,2090,7565121,5121313,864263,388486,2378780786,1974068274,100,100,100,100,0.92,0.54,0.32,0.26
-32204,12,031,12031,6906,4215,10928334,7054692,6906,4215,10928334,7054692,864263,388486,2378780786,1974068274,100,100,100,100,0.8,1.08,0.46,0.36
-32205,12,031,12031,28225,14816,24161803,19648105,28225,14816,24161803,19648105,864263,388486,2378780786,1974068274,100,100,100,100,3.27,3.81,1.02,1
-32206,12,031,12031,17669,9576,19819361,15966494,17669,9576,19819361,15966494,864263,388486,2378780786,1974068274,100,100,100,100,2.04,2.46,0.83,0.81
-32207,12,031,12031,33306,16948,41953838,29858774,33306,16948,41953838,29858774,864263,388486,2378780786,1974068274,100,100,100,100,3.85,4.36,1.76,1.51
-32208,12,031,12031,30879,14186,34923134,30101524,30879,14186,34923134,30101524,864263,388486,2378780786,1974068274,100,100,100,100,3.57,3.65,1.47,1.52
-32209,12,031,12031,34305,16980,24257241,24176911,34305,16980,24257241,24176911,864263,388486,2378780786,1974068274,100,100,100,100,3.97,4.37,1.02,1.22
-32210,12,031,12031,59080,27074,66414139,52180502,59080,27074,66414139,52180502,864263,388486,2378780786,1974068274,100,100,100,100,6.84,6.97,2.79,2.64
-32211,12,031,12031,30501,14621,23604577,21334397,30501,14621,23604577,21334397,864263,388486,2378780786,1974068274,100,100,100,100,3.53,3.76,0.99,1.08
-32212,12,031,12031,1959,199,22453214,13707134,1959,199,22453214,13707134,864263,388486,2378780786,1974068274,100,100,100,100,0.23,0.05,0.94,0.69
-32216,12,031,12031,34876,16667,33736028,32545339,34876,16667,33736028,32545339,864263,388486,2378780786,1974068274,100,100,100,100,4.04,4.29,1.42,1.65
-32217,12,031,12031,18817,9239,23403024,13674891,18817,9239,23403024,13674891,864263,388486,2378780786,1974068274,100,100,100,100,2.18,2.38,0.98,0.69
-32218,12,031,12031,53473,21865,260988987,250375622,53473,21865,260988987,250375622,864263,388486,2378780786,1974068274,100,100,100,100,6.19,5.63,10.97,12.68
-32219,12,031,12031,11886,4842,139594852,138388745,11886,4842,139594852,138388745,864263,388486,2378780786,1974068274,100,100,100,100,1.38,1.25,5.87,7.01
-32220,12,031,12031,12946,5085,160484172,158902017,12946,5085,160484172,158902017,864263,388486,2378780786,1974068274,100,100,100,100,1.5,1.31,6.75,8.05
-32221,12,031,12031,27918,10491,93529486,93051202,27918,10491,93529486,93051202,864263,388486,2378780786,1974068274,100,100,100,100,3.23,2.7,3.93,4.71
-32222,12,031,12031,8691,3575,30042856,29905112,8691,3575,30042856,29905112,864263,388486,2378780786,1974068274,100,100,100,100,1.01,0.92,1.26,1.51
-32223,12,031,12031,23980,10053,54458649,29732247,23980,10053,54458649,29732247,864263,388486,2378780786,1974068274,100,100,100,100,2.77,2.59,2.29,1.51
-32224,12,031,12031,38890,16664,56136970,53719343,38934,16686,57117785,54641711,864263,388486,2378780786,1974068274,99.89,99.87,98.28,98.31,4.5,4.29,2.36,2.72
-32224,12,109,12109,44,22,980815,922368,38934,16686,57117785,54641711,190039,89830,2127740450,1555689678,0.11,0.13,1.72,1.69,0.02,0.02,0.05,0.06
-32225,12,031,12031,52485,21597,89585695,68415186,52485,21597,89585695,68415186,864263,388486,2378780786,1974068274,100,100,100,100,6.07,5.56,3.77,3.47
-32226,12,031,12031,15761,6068,288534612,221436563,15761,6068,288534612,221436563,864263,388486,2378780786,1974068274,100,100,100,100,1.82,1.56,12.13,11.22
-32227,12,031,12031,2149,540,5614573,3268154,2149,540,5614573,3268154,864263,388486,2378780786,1974068274,100,100,100,100,0.25,0.14,0.24,0.17
-32228,12,031,12031,314,0,335197,335197,314,0,335197,335197,864263,388486,2378780786,1974068274,100,0,100,100,0.04,0,0.01,0.02
-32233,12,031,12031,23673,10128,34591057,26394319,23673,10128,34591057,26394319,864263,388486,2378780786,1974068274,100,100,100,100,2.74,2.61,1.45,1.34
-32234,12,003,12003,238,88,7422886,7422886,6606,2679,336747176,335454814,27115,9687,1525427321,1515741200,3.6,3.28,2.2,2.21,0.88,0.91,0.49,0.49
-32234,12,019,12019,2300,884,110740066,110356139,6606,2679,336747176,335454814,190865,75478,1666782261,1565286048,34.82,33,32.89,32.9,1.21,1.17,6.64,7.05
-32234,12,031,12031,3967,1664,201434942,200633523,6606,2679,336747176,335454814,864263,388486,2378780786,1974068274,60.05,62.11,59.82,59.81,0.46,0.43,8.47,10.16
-32234,12,089,12089,101,43,17149282,17042266,6606,2679,336747176,335454814,73314,35009,1880126419,1679967676,1.53,1.61,5.09,5.08,0.14,0.12,0.91,1.01
-32244,12,031,12031,57369,24187,62420928,61067372,57369,24187,62420928,61067372,864263,388486,2378780786,1974068274,100,100,100,100,6.64,6.23,2.62,3.09
-32246,12,031,12031,48789,20951,49747022,49076116,48789,20951,49747022,49076116,864263,388486,2378780786,1974068274,100,100,100,100,5.65,5.39,2.09,2.49
-32250,12,031,12031,25356,13640,28568966,22306051,25356,13640,28568966,22306051,864263,388486,2378780786,1974068274,100,100,100,100,2.93,3.51,1.2,1.13
-32254,12,031,12031,13570,5992,32166953,32077889,13570,5992,32166953,32077889,864263,388486,2378780786,1974068274,100,100,100,100,1.57,1.54,1.35,1.62
-32256,12,031,12031,38483,20167,166039397,164081208,38483,20167,166039397,164081208,864263,388486,2378780786,1974068274,100,100,100,100,4.45,5.19,6.98,8.31
-32257,12,031,12031,36430,16735,43559549,31603959,36430,16735,43559549,31603959,864263,388486,2378780786,1974068274,100,100,100,100,4.22,4.31,1.83,1.6
-32258,12,031,12031,26759,10853,49738506,48415572,26759,10853,49738506,48415572,864263,388486,2378780786,1974068274,100,100,100,100,3.1,2.79,2.09,2.45
-32259,12,109,12109,36917,13182,150675927,141641130,36917,13182,150675927,141641130,190039,89830,2127740450,1555689678,100,100,100,100,19.43,14.67,7.08,9.1
-32266,12,031,12031,7037,3493,7575223,6039907,7037,3493,7575223,6039907,864263,388486,2378780786,1974068274,100,100,100,100,0.81,0.9,0.32,0.31
-32277,12,031,12031,29517,13109,27784583,18560492,29517,13109,27784583,18560492,864263,388486,2378780786,1974068274,100,100,100,100,3.42,3.37,1.17,0.94
-32301,12,073,12073,29321,14433,26940666,26768381,29321,14433,26940666,26768381,275487,124136,1817625597,1727138746,100,100,100,100,10.64,11.63,1.48,1.55
-32303,12,073,12073,47359,22317,101856460,91923888,47359,22317,101856460,91923888,275487,124136,1817625597,1727138746,100,100,100,100,17.19,17.98,5.6,5.32
-32304,12,073,12073,46145,19538,40975760,40585058,46145,19538,40975760,40585058,275487,124136,1817625597,1727138746,100,100,100,100,16.75,15.74,2.25,2.35
-32305,12,073,12073,20073,8966,234844755,232098241,20073,8966,234844755,232098241,275487,124136,1817625597,1727138746,100,100,100,100,7.29,7.22,12.92,13.44
-32308,12,073,12073,21586,10863,38691130,38237252,21586,10863,38691130,38237252,275487,124136,1817625597,1727138746,100,100,100,100,7.84,8.75,2.13,2.21
-32309,12,073,12073,30159,12864,296065663,287668433,30159,12864,296065663,287668433,275487,124136,1817625597,1727138746,100,100,100,100,10.95,10.36,16.29,16.66
-32310,12,073,12073,17402,8743,285498449,273247029,17402,8743,285498449,273247029,275487,124136,1817625597,1727138746,100,100,100,100,6.32,7.04,15.71,15.82
-32311,12,073,12073,17493,8311,122423058,115569383,17493,8311,122423058,115569383,275487,124136,1817625597,1727138746,100,100,100,100,6.35,6.7,6.74,6.69
-32312,12,073,12073,31869,12763,315445457,270083117,31869,12763,315445457,270083117,275487,124136,1817625597,1727138746,100,100,100,100,11.57,10.28,17.35,15.64
-32317,12,073,12073,14067,5326,102095361,99064408,14067,5326,102095361,99064408,275487,124136,1817625597,1727138746,100,100,100,100,5.11,4.29,5.62,5.74
-32320,12,037,12037,3858,2021,152805669,103354869,3858,2021,152805669,103354869,11549,8652,2658606803,1384930964,100,100,100,100,33.41,23.36,5.75,7.46
-32321,12,037,12037,0,2,18577639,18161313,6460,2403,1069297559,1053233661,11549,8652,2658606803,1384930964,0,0.08,1.74,1.72,0,0.02,0.7,1.31
-32321,12,077,12077,6460,2401,1050719920,1035072348,6460,2403,1069297559,1053233661,8365,3357,2183677912,2164095370,100,99.92,98.26,98.28,77.23,71.52,48.12,47.83
-32322,12,037,12037,4007,2196,285768985,186097950,4007,2196,285768985,186097950,11549,8652,2658606803,1384930964,100,100,100,100,34.7,25.38,10.75,13.44
-32323,12,037,12037,217,418,20223272,20007197,217,418,20223272,20007197,11549,8652,2658606803,1384930964,100,100,100,100,1.88,4.83,0.76,1.44
-32324,12,039,12039,5445,2026,182568939,181178615,5445,2026,182568939,181178615,46389,19506,1368880832,1337293000,100,100,100,100,11.74,10.39,13.34,13.55
-32327,12,073,12073,10,8,4694850,4620682,26953,10158,647436886,598817557,275487,124136,1817625597,1727138746,0.04,0.08,0.73,0.77,0,0.01,0.26,0.27
-32327,12,129,12129,26943,10150,642742036,594196875,26953,10158,647436886,598817557,30776,12804,1905521006,1570616974,99.96,99.92,99.27,99.23,87.55,79.27,33.73,37.83
-32328,12,037,12037,3149,3110,661196984,290752073,3149,3110,661196984,290752073,11549,8652,2658606803,1384930964,100,100,100,100,27.27,35.95,24.87,20.99
-32330,12,039,12039,804,312,8722779,8722779,804,312,8722779,8722779,46389,19506,1368880832,1337293000,100,100,100,100,1.73,1.6,0.64,0.65
-32331,12,065,12065,450,232,55341507,54459357,4242,2079,787322290,753108400,14761,6632,1648618169,1549059034,10.61,11.16,7.03,7.23,3.05,3.5,3.36,3.52
-32331,12,079,12079,3258,1601,600545805,567884300,4242,2079,787322290,753108400,19224,8481,1853612095,1802497924,76.8,77.01,76.28,75.41,16.95,18.88,32.4,31.51
-32331,12,123,12123,534,246,131434978,130764743,4242,2079,787322290,753108400,22570,11004,3191385917,2702147548,12.59,11.83,16.69,17.36,2.37,2.24,4.12,4.84
-32332,12,039,12039,1642,655,12122624,11781246,1642,655,12122624,11781246,46389,19506,1368880832,1337293000,100,100,100,100,3.54,3.36,0.89,0.88
-32333,12,039,12039,11330,5257,277396439,274144347,11330,5257,277396439,274144347,46389,19506,1368880832,1337293000,100,100,100,100,24.42,26.95,20.26,20.5
-32334,12,077,12077,1904,954,431407140,428188325,1904,954,431407140,428188325,8365,3357,2183677912,2164095370,100,100,100,100,22.76,28.42,19.76,19.79
-32336,12,065,12065,866,426,156194086,154255611,1391,865,474730427,469086270,14761,6632,1648618169,1549059034,62.26,49.25,32.9,32.88,5.87,6.42,9.47,9.96
-32336,12,079,12079,364,170,79827769,78956852,1391,865,474730427,469086270,19224,8481,1853612095,1802497924,26.17,19.65,16.82,16.83,1.89,2,4.31,4.38
-32336,12,123,12123,161,269,238708572,235873807,1391,865,474730427,469086270,22570,11004,3191385917,2702147548,11.57,31.1,50.28,50.28,0.71,2.44,7.48,8.73
-32340,12,079,12079,11808,4859,617485623,604374038,11808,4859,617485623,604374038,19224,8481,1853612095,1802497924,100,100,100,100,61.42,57.29,33.31,33.53
-32343,12,039,12039,3044,1223,74567330,68673003,3044,1223,74567330,68673003,46389,19506,1368880832,1337293000,100,100,100,100,6.56,6.27,5.45,5.14
-32344,12,065,12065,13193,5841,1376003056,1334405803,13193,5841,1376003056,1334405803,14761,6632,1648618169,1549059034,100,100,100,100,89.38,88.07,83.46,86.14
-32346,12,037,12037,234,587,35637337,20316851,1693,1744,142691941,85604631,11549,8652,2658606803,1384930964,13.82,33.66,24.98,23.73,2.03,6.78,1.34,1.47
-32346,12,129,12129,1459,1157,107054604,65287780,1693,1744,142691941,85604631,30776,12804,1905521006,1570616974,86.18,66.34,75.02,76.27,4.74,9.04,5.62,4.16
-32347,12,123,12123,8057,3621,274588000,273963351,8057,3621,274588000,273963351,22570,11004,3191385917,2702147548,100,100,100,100,35.7,32.91,8.6,10.14
-32348,12,123,12123,12442,4960,868306027,825091086,12442,4960,868306027,825091086,22570,11004,3191385917,2702147548,100,100,100,100,55.13,45.07,27.21,30.53
-32350,12,079,12079,1417,713,134739113,132571000,1417,713,134739113,132571000,19224,8481,1853612095,1802497924,100,100,100,100,7.37,8.41,7.27,7.35
-32351,12,039,12039,17486,7327,562526094,542512405,17486,7327,562526094,542512405,46389,19506,1368880832,1337293000,100,100,100,100,37.69,37.56,41.09,40.57
-32352,12,039,12039,6638,2706,250976627,250280605,6638,2706,250976627,250280605,46389,19506,1368880832,1337293000,100,100,100,100,14.31,13.87,18.33,18.72
-32355,12,129,12129,312,221,9262705,8851059,312,221,9262705,8851059,30776,12804,1905521006,1570616974,100,100,100,100,1.01,1.73,0.49,0.56
-32356,12,123,12123,129,111,101177843,101155003,129,111,101177843,101155003,22570,11004,3191385917,2702147548,100,100,100,100,0.57,1.01,3.17,3.74
-32358,12,037,12037,84,318,28509409,26204469,2145,1593,413538154,405357228,11549,8652,2658606803,1384930964,3.92,19.96,6.89,6.46,0.73,3.68,1.07,1.89
-32358,12,129,12129,2061,1275,385028745,379152759,2145,1593,413538154,405357228,30776,12804,1905521006,1570616974,96.08,80.04,93.11,93.54,6.7,9.96,20.21,24.14
-32359,12,029,12029,485,484,219973520,204656250,1721,2266,451264765,405493808,16422,9319,2236842688,1826078949,28.18,21.36,48.75,50.47,2.95,5.19,9.83,11.21
-32359,12,123,12123,1236,1782,231291245,200837558,1721,2266,451264765,405493808,22570,11004,3191385917,2702147548,71.82,78.64,51.25,49.53,5.48,16.19,7.25,7.43
-32361,12,065,12065,252,133,5938263,5938263,252,133,5938263,5938263,14761,6632,1648618169,1549059034,100,100,100,100,1.71,2.01,0.36,0.38
-32399,12,073,12073,2,1,647912,646288,2,1,647912,646288,275487,124136,1817625597,1727138746,100,100,100,100,0,0,0.04,0.04
-32401,12,005,12005,22647,11764,42637393,27701456,22647,11764,42637393,27701456,168852,99650,2675853749,1964400618,100,100,100,100,13.41,11.81,1.59,1.41
-32403,12,005,12005,2995,935,192661921,114529662,2995,935,192661921,114529662,168852,99650,2675853749,1964400618,100,100,100,100,1.77,0.94,7.2,5.83
-32404,12,005,12005,38425,16640,381872934,333647041,38425,16640,381872934,333647041,168852,99650,2675853749,1964400618,100,100,100,100,22.76,16.7,14.27,16.98
-32405,12,005,12005,29980,13925,60967667,49186653,29980,13925,60967667,49186653,168852,99650,2675853749,1964400618,100,100,100,100,17.76,13.97,2.28,2.5
-32407,12,005,12005,9347,8118,46384768,35920861,9347,8118,46384768,35920861,168852,99650,2675853749,1964400618,100,100,100,100,5.54,8.15,1.73,1.83
-32408,12,005,12005,15352,16263,67156522,27351030,15352,16263,67156522,27351030,168852,99650,2675853749,1964400618,100,100,100,100,9.09,16.32,2.51,1.39
-32409,12,005,12005,8691,3820,215136933,195896681,8691,3820,215136933,195896681,168852,99650,2675853749,1964400618,100,100,100,100,5.15,3.83,8.04,9.97
-32410,12,005,12005,740,1451,61017162,51944282,740,1451,61017162,51944282,168852,99650,2675853749,1964400618,100,100,100,100,0.44,1.46,2.28,2.64
-32413,12,005,12005,12013,13713,165753820,150906342,13128,16686,209829964,189301502,168852,99650,2675853749,1964400618,91.51,82.18,78.99,79.72,7.11,13.76,6.19,7.68
-32413,12,131,12131,1115,2973,44076144,38395160,13128,16686,209829964,189301502,55043,45132,3210535531,2687435898,8.49,17.82,21.01,20.28,2.03,6.59,1.37,1.43
-32420,12,063,12063,2124,1234,139109899,134516648,2144,1246,140281186,135550179,49746,21003,2472309763,2376987362,99.07,99.04,99.17,99.24,4.27,5.88,5.63,5.66
-32420,12,133,12133,20,12,1171287,1033531,2144,1246,140281186,135550179,24896,10796,1595314200,1509453502,0.93,0.96,0.83,0.76,0.08,0.11,0.07,0.07
-32421,12,013,12013,4497,2075,357642930,355442176,4497,2075,357642930,355442176,14625,5999,1487464074,1469389276,100,100,100,100,30.75,34.59,24.04,24.19
-32423,12,063,12063,1264,633,172425458,169420159,1264,633,172425458,169420159,49746,21003,2472309763,2376987362,100,100,100,100,2.54,3.01,6.97,7.13
-32424,12,013,12013,7994,2827,420523943,405468637,7994,2827,420523943,405468637,14625,5999,1487464074,1469389276,100,100,100,100,54.66,47.12,28.27,27.59
-32425,12,059,12059,13128,5375,608428326,599054194,14268,5875,711694352,694836852,19927,8641,1266626497,1240027821,92.01,91.49,85.49,86.22,65.88,62.2,48.04,48.31
-32425,12,133,12133,1140,500,103266026,95782658,14268,5875,711694352,694836852,24896,10796,1595314200,1509453502,7.99,8.51,14.51,13.78,4.58,4.63,6.47,6.35
-32426,12,063,12063,942,487,127239800,125727407,942,487,127239800,125727407,49746,21003,2472309763,2376987362,100,100,100,100,1.89,2.32,5.15,5.29
-32427,12,133,12133,1475,589,128808027,117727660,1475,589,128808027,117727660,24896,10796,1595314200,1509453502,100,100,100,100,5.92,5.46,8.07,7.8
-32428,12,133,12133,17412,7253,770845534,726836289,17412,7253,770845534,726836289,24896,10796,1595314200,1509453502,100,100,100,100,69.94,67.18,48.32,48.15
-32430,12,013,12013,1199,618,215244783,215244783,1199,618,215244783,215244783,14625,5999,1487464074,1469389276,100,100,100,100,8.2,10.3,14.47,14.65
-32431,12,063,12063,4232,2013,238790363,224916653,4983,2354,294217268,275072515,49746,21003,2472309763,2376987362,84.93,85.51,81.16,81.77,8.51,9.58,9.66,9.46
-32431,12,133,12133,751,341,55426905,50155862,4983,2354,294217268,275072515,24896,10796,1595314200,1509453502,15.07,14.49,18.84,18.23,3.02,3.16,3.47,3.32
-32432,12,063,12063,89,41,334786,334786,89,41,334786,334786,49746,21003,2472309763,2376987362,100,100,100,100,0.18,0.2,0.01,0.01
-32433,12,131,12131,16025,7256,697198682,670642801,16025,7256,697198682,670642801,55043,45132,3210535531,2687435898,100,100,100,100,29.11,16.08,21.72,24.95
-32435,12,131,12131,6651,3301,336671043,334763426,6651,3301,336671043,334763426,55043,45132,3210535531,2687435898,100,100,100,100,12.08,7.31,10.49,12.46
-32437,12,005,12005,114,57,22028601,21059933,679,346,96357017,91121796,168852,99650,2675853749,1964400618,16.79,16.47,22.86,23.11,0.07,0.06,0.82,1.07
-32437,12,133,12133,565,289,74328416,70061863,679,346,96357017,91121796,24896,10796,1595314200,1509453502,83.21,83.53,77.14,76.89,2.27,2.68,4.66,4.64
-32438,12,005,12005,3727,1814,144413314,144019713,4060,1997,163716641,162751694,168852,99650,2675853749,1964400618,91.8,90.84,88.21,88.49,2.21,1.82,5.4,7.33
-32438,12,013,12013,287,151,17537378,17398557,4060,1997,163716641,162751694,14625,5999,1487464074,1469389276,7.07,7.56,10.71,10.69,1.96,2.52,1.18,1.18
-32438,12,133,12133,46,32,1765949,1333424,4060,1997,163716641,162751694,24896,10796,1595314200,1509453502,1.13,1.6,1.08,0.82,0.18,0.3,0.11,0.09
-32439,12,131,12131,7715,4219,278376656,265525405,7715,4219,278376656,265525405,55043,45132,3210535531,2687435898,100,100,100,100,14.02,9.35,8.67,9.88
-32440,12,059,12059,1255,578,80639940,78931694,7563,2506,272940124,270459347,19927,8641,1266626497,1240027821,16.59,23.06,29.54,29.18,6.3,6.69,6.37,6.37
-32440,12,063,12063,6308,1928,192300184,191527653,7563,2506,272940124,270459347,49746,21003,2472309763,2376987362,83.41,76.94,70.46,70.82,12.68,9.18,7.78,8.06
-32442,12,013,12013,170,79,26418170,25803669,3699,1777,259218938,242554879,14625,5999,1487464074,1469389276,4.6,4.45,10.19,10.64,1.16,1.32,1.78,1.76
-32442,12,063,12063,3529,1698,232800768,216751210,3699,1777,259218938,242554879,49746,21003,2472309763,2376987362,95.4,95.55,89.81,89.36,7.09,8.08,9.42,9.12
-32443,12,063,12063,2921,1479,153147806,152869980,2921,1479,153147806,152869980,49746,21003,2472309763,2376987362,100,100,100,100,5.87,7.04,6.19,6.43
-32444,12,005,12005,18985,8359,36852298,24332276,18985,8359,36852298,24332276,168852,99650,2675853749,1964400618,100,100,100,100,11.24,8.39,1.38,1.24
-32445,12,063,12063,2644,625,68593175,67446105,2644,625,68593175,67446105,49746,21003,2472309763,2376987362,100,100,100,100,5.32,2.98,2.77,2.84
-32446,12,063,12063,11075,4561,427844977,421829077,11075,4561,427844977,421829077,49746,21003,2472309763,2376987362,100,100,100,100,22.26,21.72,17.31,17.75
-32447,12,063,12063,78,0,1005587,1005587,78,0,1005587,1005587,49746,21003,2472309763,2376987362,100,0,100,100,0.16,0,0.04,0.04
-32448,12,063,12063,8684,4354,488403327,478654772,8684,4354,488403327,478654772,49746,21003,2472309763,2376987362,100,100,100,100,17.46,20.73,19.75,20.14
-32449,12,013,12013,478,249,129561339,129495923,478,249,129561339,129495923,14625,5999,1487464074,1469389276,100,100,100,100,3.27,4.15,8.71,8.81
-32455,12,059,12059,2114,952,201490746,195993192,4736,2362,622932369,600917562,19927,8641,1266626497,1240027821,44.64,40.3,32.35,32.62,10.61,11.02,15.91,15.81
-32455,12,131,12131,2622,1410,421441623,404924370,4736,2362,622932369,600917562,55043,45132,3210535531,2687435898,55.36,59.7,67.65,67.38,4.76,3.12,13.13,15.07
-32456,12,005,12005,335,403,2263660,2246433,6966,5761,326917660,212753178,168852,99650,2675853749,1964400618,4.81,7,0.69,1.06,0.2,0.4,0.08,0.11
-32456,12,045,12045,6631,5358,324654000,210506745,6966,5761,326917660,212753178,15863,9110,1956894114,1460784877,95.19,93,99.31,98.94,41.8,58.81,16.59,14.41
-32459,12,131,12131,11457,11678,181863546,141718481,11457,11678,181863546,141718481,55043,45132,3210535531,2687435898,100,100,100,100,20.81,25.88,5.66,5.27
-32460,12,063,12063,5856,1950,230313633,191987325,5856,1950,230313633,191987325,49746,21003,2472309763,2376987362,100,100,100,100,11.77,9.28,9.32,8.08
-32461,12,131,12131,13,57,1524426,1524426,13,57,1524426,1524426,55043,45132,3210535531,2687435898,100,100,100,100,0.02,0.13,0.05,0.06
-32462,12,005,12005,41,25,6311177,6311177,3412,1906,414626963,397239943,168852,99650,2675853749,1964400618,1.2,1.31,1.52,1.59,0.02,0.03,0.24,0.32
-32462,12,131,12131,180,246,70017748,63786447,3412,1906,414626963,397239943,55043,45132,3210535531,2687435898,5.28,12.91,16.89,16.06,0.33,0.55,2.18,2.37
-32462,12,133,12133,3191,1635,338298038,327142319,3412,1906,414626963,397239943,24896,10796,1595314200,1509453502,93.52,85.78,81.59,82.35,12.82,15.14,21.21,21.67
-32463,12,133,12133,114,53,217986,217986,114,53,217986,217986,24896,10796,1595314200,1509453502,100,100,100,100,0.46,0.49,0.01,0.01
-32464,12,059,12059,3430,1736,376067485,366048741,3994,2037,454374227,441248221,19927,8641,1266626497,1240027821,85.88,85.22,82.77,82.96,17.21,20.09,29.69,29.52
-32464,12,131,12131,564,301,78306742,75199480,3994,2037,454374227,441248221,55043,45132,3210535531,2687435898,14.12,14.78,17.23,17.04,1.02,0.67,2.44,2.8
-32465,12,045,12045,9232,3745,640716698,612314102,9232,3745,640716698,612314102,15863,9110,1956894114,1460784877,100,100,100,100,58.2,41.11,32.74,41.92
-32466,12,005,12005,5459,2361,253945232,246081770,5641,2453,302065014,293948810,168852,99650,2675853749,1964400618,96.77,96.25,84.07,83.72,3.23,2.37,9.49,12.53
-32466,12,133,12133,182,92,48119782,47867040,5641,2453,302065014,293948810,24896,10796,1595314200,1509453502,3.23,3.75,15.93,16.28,0.73,0.85,3.02,3.17
-32501,12,033,12033,11730,5349,9951711,9852974,11730,5349,9951711,9852974,297619,136703,2265474008,1700226567,100,100,100,100,3.94,3.91,0.44,0.58
-32502,12,033,12033,3298,2021,6100860,5965295,3298,2021,6100860,5965295,297619,136703,2265474008,1700226567,100,100,100,100,1.11,1.48,0.27,0.35
-32503,12,033,12033,32011,14207,33443567,31858588,32011,14207,33443567,31858588,297619,136703,2265474008,1700226567,100,100,100,100,10.76,10.39,1.48,1.87
-32504,12,033,12033,21441,10757,27831480,27709282,21441,10757,27831480,27709282,297619,136703,2265474008,1700226567,100,100,100,100,7.2,7.87,1.23,1.63
-32505,12,033,12033,28213,12725,35929899,35100796,28213,12725,35929899,35100796,297619,136703,2265474008,1700226567,100,100,100,100,9.48,9.31,1.59,2.06
-32506,12,033,12033,33846,15514,106306841,84033711,33846,15514,106306841,84033711,297619,136703,2265474008,1700226567,100,100,100,100,11.37,11.35,4.69,4.94
-32507,12,033,12033,28996,16971,111538156,65280007,28996,16971,111538156,65280007,297619,136703,2265474008,1700226567,100,100,100,100,9.74,12.41,4.92,3.84
-32508,12,033,12033,5852,368,23413220,21023825,5852,368,23413220,21023825,297619,136703,2265474008,1700226567,100,100,100,100,1.97,0.27,1.03,1.24
-32509,12,033,12033,660,0,3309860,3309348,660,0,3309860,3309348,297619,136703,2265474008,1700226567,100,0,100,100,0.22,0,0.15,0.19
-32511,12,033,12033,1145,0,629101,629101,1145,0,629101,629101,297619,136703,2265474008,1700226567,100,0,100,100,0.38,0,0.03,0.04
-32514,12,033,12033,37399,17761,51863890,50537722,37399,17761,51863890,50537722,297619,136703,2265474008,1700226567,100,100,100,100,12.57,12.99,2.29,2.97
-32526,12,033,12033,36297,15190,163416997,150638815,36297,15190,163416997,150638815,297619,136703,2265474008,1700226567,100,100,100,100,12.2,11.11,7.21,8.86
-32530,12,113,12113,38,24,127323,127323,38,24,127323,127323,151372,64760,3040069326,2620043744,100,100,100,100,0.03,0.04,0,0
-32531,12,091,12091,5256,2373,533832860,527789170,5296,2393,569145506,563101816,180822,92407,2802569833,2409328778,99.24,99.16,93.8,93.73,2.91,2.57,19.05,21.91
-32531,12,113,12113,40,20,35312646,35312646,5296,2393,569145506,563101816,151372,64760,3040069326,2620043744,0.76,0.84,6.2,6.27,0.03,0.03,1.16,1.35
-32533,12,033,12033,26493,10598,197542527,193879400,26493,10598,197542527,193879400,297619,136703,2265474008,1700226567,100,100,100,100,8.9,7.75,8.72,11.4
-32534,12,033,12033,14029,6376,25363381,25144383,14029,6376,25363381,25144383,297619,136703,2265474008,1700226567,100,100,100,100,4.71,4.66,1.12,1.48
-32535,12,033,12033,6326,2079,190921759,185585989,6326,2079,190921759,185585989,297619,136703,2265474008,1700226567,100,100,100,100,2.13,1.52,8.43,10.92
-32536,12,091,12091,19709,8585,122728017,120640064,19709,8585,122728017,120640064,180822,92407,2802569833,2409328778,100,100,100,100,10.9,9.29,4.38,5.01
-32539,12,091,12091,24570,9581,277479353,272970667,25079,9837,319540796,315031917,180822,92407,2802569833,2409328778,97.97,97.4,86.84,86.65,13.59,10.37,9.9,11.33
-32539,12,131,12131,509,256,42061443,42061250,25079,9837,319540796,315031917,55043,45132,3210535531,2687435898,2.03,2.6,13.16,13.35,0.92,0.57,1.31,1.57
-32541,12,091,12091,15565,15748,46342857,30076036,15565,15748,46342857,30076036,180822,92407,2802569833,2409328778,100,100,100,100,8.61,17.04,1.65,1.25
-32542,12,091,12091,3457,1192,46586156,42208104,3457,1192,46586156,42208104,180822,92407,2802569833,2409328778,100,100,100,100,1.91,1.29,1.66,1.75
-32544,12,091,12091,1818,375,25499579,24603982,1818,375,25499579,24603982,180822,92407,2802569833,2409328778,100,100,100,100,1.01,0.41,0.91,1.02
-32547,12,091,12091,32485,15486,93590782,90492568,32485,15486,93590782,90492568,180822,92407,2802569833,2409328778,100,100,100,100,17.97,16.76,3.34,3.76
-32548,12,091,12091,19343,12276,57439178,33659091,19343,12276,57439178,33659091,180822,92407,2802569833,2409328778,100,100,100,100,10.7,13.28,2.05,1.4
-32550,12,131,12131,5867,12239,19152670,17307188,5867,12239,19152670,17307188,55043,45132,3210535531,2687435898,100,100,100,100,10.66,27.12,0.6,0.64
-32561,12,033,12033,2136,3545,83041385,18402808,7899,6218,100285243,30525785,297619,136703,2265474008,1700226567,27.04,57.01,82.81,60.29,0.72,2.59,3.67,1.08
-32561,12,113,12113,5763,2673,17243858,12122977,7899,6218,100285243,30525785,151372,64760,3040069326,2620043744,72.96,42.99,17.19,39.71,3.81,4.13,0.57,0.46
-32563,12,113,12113,22406,10114,43821562,43046775,22406,10114,43821562,43046775,151372,64760,3040069326,2620043744,100,100,100,100,14.8,15.62,1.44,1.64
-32564,12,091,12091,2432,1145,125822376,124546095,2881,1338,238112464,236176033,180822,92407,2802569833,2409328778,84.42,85.58,52.84,52.73,1.34,1.24,4.49,5.17
-32564,12,113,12113,449,193,112290088,111629938,2881,1338,238112464,236176033,151372,64760,3040069326,2620043744,15.58,14.42,47.16,47.27,0.3,0.3,3.69,4.26
-32565,12,113,12113,5719,2456,604521991,597478125,5719,2456,604521991,597478125,151372,64760,3040069326,2620043744,100,100,100,100,3.78,3.79,19.89,22.8
-32566,12,113,12113,33671,15325,111516427,104245064,33671,15325,111516427,104245064,151372,64760,3040069326,2620043744,100,100,100,100,22.24,23.66,3.67,3.98
-32567,12,091,12091,2025,986,258975754,256586799,3510,1748,367338866,360975155,180822,92407,2802569833,2409328778,57.69,56.41,70.5,71.08,1.12,1.07,9.24,10.65
-32567,12,131,12131,1485,762,108363112,104388356,3510,1748,367338866,360975155,55043,45132,3210535531,2687435898,42.31,43.59,29.5,28.92,2.7,1.69,3.38,3.88
-32568,12,033,12033,3122,1334,406407102,403908535,3122,1334,406407102,403908535,297619,136703,2265474008,1700226567,100,100,100,100,1.05,0.98,17.94,23.76
-32569,12,091,12091,11235,5238,17538944,10477995,11235,5238,17538944,10477995,180822,92407,2802569833,2409328778,100,100,100,100,6.21,5.67,0.63,0.43
-32570,12,113,12113,28817,12615,833060242,827208114,28817,12615,833060242,827208114,151372,64760,3040069326,2620043744,100,100,100,100,19.04,19.48,27.4,31.57
-32571,12,113,12113,28881,11574,272189826,269389412,28881,11574,272189826,269389412,151372,64760,3040069326,2620043744,100,100,100,100,19.08,17.87,8.95,10.28
-32577,12,033,12033,4625,1908,174378965,171936454,4625,1908,174378965,171936454,297619,136703,2265474008,1700226567,100,100,100,100,1.55,1.4,7.7,10.11
-32578,12,091,12091,29268,12859,71662543,60863444,30108,13293,73201710,62342318,180822,92407,2802569833,2409328778,97.21,96.74,97.9,97.63,16.19,13.92,2.56,2.53
-32578,12,131,12131,840,434,1539167,1478874,30108,13293,73201710,62342318,55043,45132,3210535531,2687435898,2.79,3.26,2.1,2.37,1.53,0.96,0.05,0.06
-32579,12,091,12091,9997,4714,17463054,11277258,9997,4714,17463054,11277258,180822,92407,2802569833,2409328778,100,100,100,100,5.53,5.1,0.62,0.47
-32580,12,091,12091,3662,1849,34401911,32350917,3662,1849,34401911,32350917,180822,92407,2802569833,2409328778,100,100,100,100,2.03,2,1.23,1.34
-32583,12,113,12113,25586,9765,402889619,374125473,25586,9765,402889619,374125473,151372,64760,3040069326,2620043744,100,100,100,100,16.9,15.08,13.25,14.28
-32601,12,001,12001,18585,9381,11778057,11726458,18585,9381,11778057,11726458,247336,112766,2509202032,2266291505,100,100,100,100,7.51,8.32,0.47,0.52
-32603,12,001,12001,6741,2316,3565794,3545203,6741,2316,3565794,3545203,247336,112766,2509202032,2266291505,100,100,100,100,2.73,2.05,0.14,0.16
-32605,12,001,12001,22925,10543,26040928,25919038,22925,10543,26040928,25919038,247336,112766,2509202032,2266291505,100,100,100,100,9.27,9.35,1.04,1.14
-32606,12,001,12001,21833,10571,44526393,44273265,21833,10571,44526393,44273265,247336,112766,2509202032,2266291505,100,100,100,100,8.83,9.37,1.77,1.95
-32607,12,001,12001,29750,14552,30848566,30624481,29750,14552,30848566,30624481,247336,112766,2509202032,2266291505,100,100,100,100,12.03,12.9,1.23,1.35
-32608,12,001,12001,45842,22975,107296475,101000372,45842,22975,107296475,101000372,247336,112766,2509202032,2266291505,100,100,100,100,18.53,20.37,4.28,4.46
-32609,12,001,12001,18756,8186,297219747,290843169,18756,8186,297219747,290843169,247336,112766,2509202032,2266291505,100,100,100,100,7.58,7.26,11.85,12.83
-32612,12,001,12001,5458,13,2427701,2117657,5458,13,2427701,2117657,247336,112766,2509202032,2266291505,100,100,100,100,2.21,0.01,0.1,0.09
-32615,12,001,12001,14295,6302,363056967,359199819,14295,6302,363056967,359199819,247336,112766,2509202032,2266291505,100,100,100,100,5.78,5.59,14.47,15.85
-32616,12,001,12001,872,355,1661310,1661310,872,355,1661310,1661310,247336,112766,2509202032,2266291505,100,100,100,100,0.35,0.31,0.07,0.07
-32617,12,083,12083,4109,1796,82826826,76539050,4109,1796,82826826,76539050,331298,164050,4306141125,4103955681,100,100,100,100,1.24,1.09,1.92,1.87
-32618,12,001,12001,5884,2663,196422765,192614070,7732,3463,241769706,235406402,247336,112766,2509202032,2266291505,76.1,76.9,81.24,81.82,2.38,2.36,7.83,8.5
-32618,12,075,12075,1848,800,45346941,42792332,7732,3463,241769706,235406402,40801,20123,3659120576,2896139279,23.9,23.1,18.76,18.18,4.53,3.98,1.24,1.48
-32619,12,041,12041,4730,2301,310175848,306167176,4730,2301,310175848,306167176,16939,7307,920064242,905658580,100,100,100,100,27.92,31.49,33.71,33.81
-32621,12,075,12075,5584,2281,195392425,190013180,5584,2281,195392425,190013180,40801,20123,3659120576,2896139279,100,100,100,100,13.69,11.34,5.34,6.56
-32622,12,001,12001,307,158,14311309,14227477,1294,597,157951140,157649446,247336,112766,2509202032,2266291505,23.72,26.47,9.06,9.02,0.12,0.14,0.57,0.63
-32622,12,007,12007,987,439,143639831,143421969,1294,597,157951140,157649446,28520,11011,778261753,761356806,76.28,73.53,90.94,90.98,3.46,3.99,18.46,18.84
-32625,12,075,12075,1838,1172,315676215,219471990,1838,1172,315676215,219471990,40801,20123,3659120576,2896139279,100,100,100,100,4.5,5.82,8.63,7.58
-32626,12,075,12075,8133,4186,536524982,528692580,8133,4186,536524982,528692580,40801,20123,3659120576,2896139279,100,100,100,100,19.93,20.8,14.66,18.26
-32628,12,029,12029,4850,1644,269046192,268152006,4850,1644,269046192,268152006,16422,9319,2236842688,1826078949,100,100,100,100,29.53,17.64,12.03,14.68
-32631,12,001,12001,291,169,5259541,4819525,291,169,5259541,4819525,247336,112766,2509202032,2266291505,100,100,100,100,0.12,0.15,0.21,0.21
-32639,12,075,12075,397,265,148364112,147293114,397,265,148364112,147293114,40801,20123,3659120576,2896139279,100,100,100,100,0.97,1.32,4.05,5.09
-32640,12,001,12001,4900,2511,449086555,337577074,10510,5689,674949575,541029234,247336,112766,2509202032,2266291505,46.62,44.14,66.54,62.4,1.98,2.23,17.9,14.9
-32640,12,107,12107,5610,3178,225863020,203452160,10510,5689,674949575,541029234,74364,37337,2141716683,1884532662,53.38,55.86,33.46,37.6,7.54,8.51,10.55,10.8
-32641,12,001,12001,14291,5460,157447635,127290659,14291,5460,157447635,127290659,247336,112766,2509202032,2266291505,100,100,100,100,5.78,4.84,6.27,5.62
-32643,12,001,12001,7602,3315,147295603,146776429,10936,4844,304905973,303296946,247336,112766,2509202032,2266291505,69.51,68.44,48.31,48.39,3.07,2.94,5.87,6.48
-32643,12,023,12023,1329,641,42788623,42502035,10936,4844,304905973,303296946,67531,28636,2075430306,2065707648,12.15,13.23,14.03,14.01,1.97,2.24,2.06,2.06
-32643,12,041,12041,2005,888,114821747,114018482,10936,4844,304905973,303296946,16939,7307,920064242,905658580,18.33,18.33,37.66,37.59,11.84,12.15,12.48,12.59
-32648,12,029,12029,437,684,189280877,155651074,437,684,189280877,155651074,16422,9319,2236842688,1826078949,100,100,100,100,2.66,7.34,8.46,8.52
-32653,12,001,12001,12844,5933,103266774,101180216,12844,5933,103266774,101180216,247336,112766,2509202032,2266291505,100,100,100,100,5.19,5.26,4.12,4.46
-32656,12,007,12007,1314,666,8540255,7663813,14014,6489,161787828,145837206,28520,11011,778261753,761356806,9.38,10.26,5.28,5.26,4.61,6.05,1.1,1.01
-32656,12,019,12019,12700,5823,153247573,138173393,14014,6489,161787828,145837206,190865,75478,1666782261,1565286048,90.62,89.74,94.72,94.74,6.65,7.71,9.19,8.83
-32658,12,001,12001,308,123,7857234,7782079,308,123,7857234,7782079,247336,112766,2509202032,2266291505,100,100,100,100,0.12,0.11,0.31,0.34
-32664,12,083,12083,510,318,3673091,3672245,510,318,3673091,3672245,331298,164050,4306141125,4103955681,100,100,100,100,0.15,0.19,0.09,0.09
-32666,12,001,12001,761,440,21768070,20355964,5916,3206,154985611,141353098,247336,112766,2509202032,2266291505,12.86,13.72,14.05,14.4,0.31,0.39,0.87,0.9
-32666,12,007,12007,1071,642,12313205,11804441,5916,3206,154985611,141353098,28520,11011,778261753,761356806,18.1,20.02,7.94,8.35,3.76,5.83,1.58,1.55
-32666,12,019,12019,1249,602,27064888,25133142,5916,3206,154985611,141353098,190865,75478,1666782261,1565286048,21.11,18.78,17.46,17.78,0.65,0.8,1.62,1.61
-32666,12,107,12107,2835,1522,93839448,84059551,5916,3206,154985611,141353098,74364,37337,2141716683,1884532662,47.92,47.47,60.55,59.47,3.81,4.08,4.38,4.46
-32667,12,001,12001,2140,1086,197390541,153646494,3794,1906,287774136,241081427,247336,112766,2509202032,2266291505,56.4,56.98,68.59,63.73,0.87,0.96,7.87,6.78
-32667,12,083,12083,1654,820,90383595,87434933,3794,1906,287774136,241081427,331298,164050,4306141125,4103955681,43.6,43.02,31.41,36.27,0.5,0.5,2.1,2.13
-32668,12,075,12075,4266,2022,252345435,251109577,5082,2482,316196638,314673237,40801,20123,3659120576,2896139279,83.94,81.47,79.81,79.8,10.46,10.05,6.9,8.67
-32668,12,083,12083,816,460,63851203,63563660,5082,2482,316196638,314673237,331298,164050,4306141125,4103955681,16.06,18.53,20.19,20.2,0.25,0.28,1.48,1.55
-32669,12,001,12001,10809,4639,226948175,219807357,11623,4982,279177248,268134144,247336,112766,2509202032,2266291505,93,93.12,81.29,81.98,4.37,4.11,9.04,9.7
-32669,12,041,12041,740,304,37600796,37559921,11623,4982,279177248,268134144,16939,7307,920064242,905658580,6.37,6.1,13.47,14.01,4.37,4.16,4.09,4.15
-32669,12,075,12075,74,39,14628277,10766866,11623,4982,279177248,268134144,40801,20123,3659120576,2896139279,0.64,0.78,5.24,4.02,0.18,0.19,0.4,0.37
-32680,12,029,12029,10223,5739,687962604,647185945,10223,5739,687962604,647185945,16422,9319,2236842688,1826078949,100,100,100,100,62.25,61.58,30.76,35.44
-32681,12,083,12083,136,73,953630,953630,136,73,953630,953630,331298,164050,4306141125,4103955681,100,100,100,100,0.04,0.04,0.02,0.02
-32683,12,075,12075,151,89,21253391,21242665,151,89,21253391,21242665,40801,20123,3659120576,2896139279,100,100,100,100,0.37,0.44,0.58,0.73
-32686,12,083,12083,5003,2389,192225248,191450527,5003,2389,192225248,191450527,331298,164050,4306141125,4103955681,100,100,100,100,1.51,1.46,4.46,4.67
-32692,12,029,12029,295,672,14348936,13370820,295,672,14348936,13370820,16422,9319,2236842688,1826078949,100,100,100,100,1.8,7.21,0.64,0.73
-32693,12,041,12041,8408,3118,391892244,382789692,12154,4876,547742933,532129139,16939,7307,920064242,905658580,69.18,63.95,71.55,71.94,49.64,42.67,42.59,42.27
-32693,12,075,12075,3746,1758,155850689,149339447,12154,4876,547742933,532129139,40801,20123,3659120576,2896139279,30.82,36.05,28.45,28.06,9.18,8.74,4.26,5.16
-32694,12,001,12001,2142,1075,72834956,69303389,2142,1075,72834956,69303389,247336,112766,2509202032,2266291505,100,100,100,100,0.87,0.95,2.9,3.06
-32696,12,075,12075,11019,4898,292624140,290030902,12071,5433,384660731,380400534,40801,20123,3659120576,2896139279,91.28,90.15,76.07,76.24,27.01,24.34,8,10.01
-32696,12,083,12083,1052,535,92036591,90369632,12071,5433,384660731,380400534,331298,164050,4306141125,4103955681,8.72,9.85,23.93,23.76,0.32,0.33,2.14,2.2
-32697,12,125,12125,253,139,1234774,1179726,253,139,1234774,1179726,15535,4508,646856291,630806354,100,100,100,100,1.63,3.08,0.19,0.19
-32701,12,117,12117,21577,11260,15876505,14544844,21577,11260,15876505,14544844,422718,181307,894307549,800879349,100,100,100,100,5.1,6.21,1.78,1.82
-32702,12,069,12069,2431,1340,122356048,110445808,2705,1498,161600179,146192690,297052,144996,2996522541,2430396019,89.87,89.45,75.72,75.55,0.82,0.92,4.08,4.54
-32702,12,083,12083,274,158,39244131,35746882,2705,1498,161600179,146192690,331298,164050,4306141125,4103955681,10.13,10.55,24.28,24.45,0.08,0.1,0.91,0.87
-32703,12,095,12095,35120,13533,138024075,123607132,46207,18090,147517940,131478557,1145956,487839,2598430689,2339870128,76.01,74.81,93.56,94.01,3.06,2.77,5.31,5.28
-32703,12,117,12117,11087,4557,9493865,7871425,46207,18090,147517940,131478557,422718,181307,894307549,800879349,23.99,25.19,6.44,5.99,2.62,2.51,1.06,0.98
-32707,12,117,12117,35335,16154,27622959,25104540,35335,16154,27622959,25104540,422718,181307,894307549,800879349,100,100,100,100,8.36,8.91,3.09,3.13
-32708,12,117,12117,42012,17696,50725287,47748611,42012,17696,50725287,47748611,422718,181307,894307549,800879349,100,100,100,100,9.94,9.76,5.67,5.96
-32709,12,095,12095,2566,1053,309296147,302326912,2566,1053,309296147,302326912,1145956,487839,2598430689,2339870128,100,100,100,100,0.22,0.22,11.9,12.92
-32712,12,095,12095,41769,15942,159505098,154469533,41769,15942,159505098,154469533,1145956,487839,2598430689,2339870128,100,100,100,100,3.64,3.27,6.14,6.6
-32713,12,127,12127,19491,9098,61285992,53532041,19491,9098,61285992,53532041,494593,254226,3709990171,2851658690,100,100,100,100,3.94,3.58,1.65,1.88
-32714,12,117,12117,34862,16852,23287833,22114189,34862,16852,23287833,22114189,422718,181307,894307549,800879349,100,100,100,100,8.25,9.29,2.6,2.76
-32720,12,069,12069,2482,1141,63532084,59904805,29700,13416,172426132,162602952,297052,144996,2996522541,2430396019,8.36,8.5,36.85,36.84,0.84,0.79,2.12,2.46
-32720,12,127,12127,27218,12275,108894048,102698147,29700,13416,172426132,162602952,494593,254226,3709990171,2851658690,91.64,91.5,63.15,63.16,5.5,4.83,2.94,3.6
-32724,12,127,12127,31826,14827,251412122,245556360,31826,14827,251412122,245556360,494593,254226,3709990171,2851658690,100,100,100,100,6.43,5.83,6.78,8.61
-32725,12,127,12127,44905,18924,83811022,59335709,44905,18924,83811022,59335709,494593,254226,3709990171,2851658690,100,100,100,100,9.08,7.44,2.26,2.08
-32726,12,069,12069,20029,9628,35976512,31640070,20029,9628,35976512,31640070,297052,144996,2996522541,2430396019,100,100,100,100,6.74,6.64,1.2,1.3
-32730,12,117,12117,5354,2728,3391298,3072754,5354,2728,3391298,3072754,422718,181307,894307549,800879349,100,100,100,100,1.27,1.5,0.38,0.38
-32732,12,117,12117,5589,2271,163083575,145270971,5589,2271,163083575,145270971,422718,181307,894307549,800879349,100,100,100,100,1.32,1.25,18.24,18.14
-32735,12,069,12069,3903,1955,13001778,9815800,3903,1955,13001778,9815800,297052,144996,2996522541,2430396019,100,100,100,100,1.31,1.35,0.43,0.4
-32736,12,069,12069,9736,4019,296620912,272952261,9736,4019,296620912,272952261,297052,144996,2996522541,2430396019,100,100,100,100,3.28,2.77,9.9,11.23
-32738,12,127,12127,43830,16592,75334339,66976215,43830,16592,75334339,66976215,494593,254226,3709990171,2851658690,100,100,100,100,8.86,6.53,2.03,2.35
-32744,12,127,12127,3588,1738,35794623,34762109,3588,1738,35794623,34762109,494593,254226,3709990171,2851658690,100,100,100,100,0.73,0.68,0.96,1.22
-32746,12,117,12117,40571,17700,61038047,57156536,40571,17700,61038047,57156536,422718,181307,894307549,800879349,100,100,100,100,9.6,9.76,6.83,7.14
-32750,12,117,12117,22713,9273,28119011,26671926,22713,9273,28119011,26671926,422718,181307,894307549,800879349,100,100,100,100,5.37,5.11,3.14,3.33
-32751,12,095,12095,14097,6988,16197830,13409023,19928,9697,21464654,18200283,1145956,487839,2598430689,2339870128,70.74,72.06,75.46,73.67,1.23,1.43,0.62,0.57
-32751,12,117,12117,5831,2709,5266824,4791260,19928,9697,21464654,18200283,422718,181307,894307549,800879349,29.26,27.94,24.54,26.33,1.38,1.49,0.59,0.6
-32754,12,009,12009,10715,4971,306025506,276952716,11313,5245,408795420,358481752,543376,269864,4032598796,2630557912,94.71,94.78,74.86,77.26,1.97,1.84,7.59,10.53
-32754,12,127,12127,598,274,102769914,81529036,11313,5245,408795420,358481752,494593,254226,3709990171,2851658690,5.29,5.22,25.14,22.74,0.12,0.11,2.77,2.86
-32757,12,069,12069,19287,10237,77847241,63886253,23746,12132,111032738,94193229,297052,144996,2996522541,2430396019,81.22,84.38,70.11,67.82,6.49,7.06,2.6,2.63
-32757,12,095,12095,4459,1895,33185497,30306976,23746,12132,111032738,94193229,1145956,487839,2598430689,2339870128,18.78,15.62,29.89,32.18,0.39,0.39,1.28,1.3
-32759,12,127,12127,2871,1669,109911171,105951725,2871,1669,109911171,105951725,494593,254226,3709990171,2851658690,100,100,100,100,0.58,0.66,2.96,3.72
-32763,12,127,12127,21263,10438,43809803,43504946,21263,10438,43809803,43504946,494593,254226,3709990171,2851658690,100,100,100,100,4.3,4.11,1.18,1.53
-32764,12,127,12127,3120,1527,249897103,234919565,3120,1527,249897103,234919565,494593,254226,3709990171,2851658690,100,100,100,100,0.63,0.6,6.74,8.24
-32765,12,117,12117,56349,21579,111445266,101293754,56349,21579,111445266,101293754,422718,181307,894307549,800879349,100,100,100,100,13.33,11.9,12.46,12.65
-32766,12,117,12117,15698,5146,120686104,113408405,15698,5146,120686104,113408405,422718,181307,894307549,800879349,100,100,100,100,3.71,2.84,13.49,14.16
-32767,12,069,12069,2622,1332,176422965,163777529,2622,1332,176422965,163777529,297052,144996,2996522541,2430396019,100,100,100,100,0.88,0.92,5.89,6.74
-32771,12,117,12117,49481,21098,97690337,93693480,49481,21098,97690337,93693480,422718,181307,894307549,800879349,100,100,100,100,11.71,11.64,10.92,11.7
-32773,12,117,12117,28787,12028,91595482,71828149,28787,12028,91595482,71828149,422718,181307,894307549,800879349,100,100,100,100,6.81,6.63,10.24,8.97
-32776,12,069,12069,10178,4065,114672379,110922757,10262,4102,115622312,111852593,297052,144996,2996522541,2430396019,99.18,99.1,99.18,99.17,3.43,2.8,3.83,4.56
-32776,12,095,12095,84,37,949933,929836,10262,4102,115622312,111852593,1145956,487839,2598430689,2339870128,0.82,0.9,0.82,0.83,0.01,0.01,0.04,0.04
-32778,12,069,12069,18617,10090,108327745,64978322,18617,10090,108327745,64978322,297052,144996,2996522541,2430396019,100,100,100,100,6.27,6.96,3.62,2.67
-32779,12,117,12117,27556,11332,50780627,48738376,27556,11332,50780627,48738376,422718,181307,894307549,800879349,100,100,100,100,6.52,6.25,5.68,6.09
-32780,12,009,12009,34628,18779,198898077,165233755,34628,18779,198898077,165233755,543376,269864,4032598796,2630557912,100,100,100,100,6.37,6.96,4.93,6.28
-32784,12,069,12069,8069,3542,127482762,102539557,11432,5210,270609481,234878704,297052,144996,2996522541,2430396019,70.58,67.98,47.11,43.66,2.72,2.44,4.25,4.22
-32784,12,083,12083,3363,1668,143126719,132339147,11432,5210,270609481,234878704,331298,164050,4306141125,4103955681,29.42,32.02,52.89,56.34,1.02,1.02,3.32,3.22
-32789,12,095,12095,24557,11972,24912778,20183681,24557,11972,24912778,20183681,1145956,487839,2598430689,2339870128,100,100,100,100,2.14,2.45,0.96,0.86
-32792,12,095,12095,26998,14630,16706515,16287307,46914,23554,33595390,31832888,1145956,487839,2598430689,2339870128,57.55,62.11,49.73,51.17,2.36,3,0.64,0.7
-32792,12,117,12117,19916,8924,16888875,15545581,46914,23554,33595390,31832888,422718,181307,894307549,800879349,42.45,37.89,50.27,48.83,4.71,4.92,1.89,1.94
-32796,12,009,12009,20139,9800,48122426,37855969,20139,9800,48122426,37855969,543376,269864,4032598796,2630557912,100,100,100,100,3.71,3.63,1.19,1.44
-32798,12,095,12095,2550,1534,8471907,8039424,2550,1534,8471907,8039424,1145956,487839,2598430689,2339870128,100,100,100,100,0.22,0.31,0.33,0.34
-32801,12,095,12095,12050,8492,6289051,5911002,12050,8492,6289051,5911002,1145956,487839,2598430689,2339870128,100,100,100,100,1.05,1.74,0.24,0.25
-32803,12,095,12095,19020,10684,20401967,17970616,19020,10684,20401967,17970616,1145956,487839,2598430689,2339870128,100,100,100,100,1.66,2.19,0.79,0.77
-32804,12,095,12095,17312,9145,22098143,19033630,17312,9145,22098143,19033630,1145956,487839,2598430689,2339870128,100,100,100,100,1.51,1.87,0.85,0.81
-32805,12,095,12095,21810,9765,20200753,17274574,21810,9765,20200753,17274574,1145956,487839,2598430689,2339870128,100,100,100,100,1.9,2,0.78,0.74
-32806,12,095,12095,24820,12091,19383393,17250447,24820,12091,19383393,17250447,1145956,487839,2598430689,2339870128,100,100,100,100,2.17,2.48,0.75,0.74
-32807,12,095,12095,31465,13151,21530282,20960393,31465,13151,21530282,20960393,1145956,487839,2598430689,2339870128,100,100,100,100,2.75,2.7,0.83,0.9
-32808,12,095,12095,46334,19542,32805595,31022709,46334,19542,32805595,31022709,1145956,487839,2598430689,2339870128,100,100,100,100,4.04,4.01,1.26,1.33
-32809,12,095,12095,26773,10467,31804812,26878245,26773,10467,31804812,26878245,1145956,487839,2598430689,2339870128,100,100,100,100,2.34,2.15,1.22,1.15
-32810,12,095,12095,32210,13770,25553430,23939373,32210,13770,25553430,23939373,1145956,487839,2598430689,2339870128,100,100,100,100,2.81,2.82,0.98,1.02
-32811,12,095,12095,35825,16692,22388080,21501586,35825,16692,22388080,21501586,1145956,487839,2598430689,2339870128,100,100,100,100,3.13,3.42,0.86,0.92
-32812,12,095,12095,32844,14972,26113785,22258057,32844,14972,26113785,22258057,1145956,487839,2598430689,2339870128,100,100,100,100,2.87,3.07,1,0.95
-32814,12,095,12095,6151,3090,4508210,3420307,6151,3090,4508210,3420307,1145956,487839,2598430689,2339870128,100,100,100,100,0.54,0.63,0.17,0.15
-32817,12,095,12095,35105,13404,31132536,29067928,35105,13404,31132536,29067928,1145956,487839,2598430689,2339870128,100,100,100,100,3.06,2.75,1.2,1.24
-32818,12,095,12095,43911,16401,32015358,29868935,43911,16401,32015358,29868935,1145956,487839,2598430689,2339870128,100,100,100,100,3.83,3.36,1.23,1.28
-32819,12,095,12095,24976,13788,59793372,53337933,24976,13788,59793372,53337933,1145956,487839,2598430689,2339870128,100,100,100,100,2.18,2.83,2.3,2.28
-32820,12,095,12095,7974,2908,43205834,39080441,7974,2908,43205834,39080441,1145956,487839,2598430689,2339870128,100,100,100,100,0.7,0.6,1.66,1.67
-32821,12,095,12095,21423,11851,30954331,29055072,21423,11851,30954331,29055072,1145956,487839,2598430689,2339870128,100,100,100,100,1.87,2.43,1.19,1.24
-32822,12,095,12095,53029,24862,36185865,34432212,53029,24862,36185865,34432212,1145956,487839,2598430689,2339870128,100,100,100,100,4.63,5.1,1.39,1.47
-32824,12,095,12095,37401,13011,80950114,80472242,37401,13011,80950114,80472242,1145956,487839,2598430689,2339870128,100,100,100,100,3.26,2.67,3.12,3.44
-32825,12,095,12095,53024,20548,74886471,74609998,53024,20548,74886471,74609998,1145956,487839,2598430689,2339870128,100,100,100,100,4.63,4.21,2.88,3.19
-32826,12,095,12095,29347,8613,25688723,24937156,29347,8613,25688723,24937156,1145956,487839,2598430689,2339870128,100,100,100,100,2.56,1.77,0.99,1.07
-32827,12,095,12095,6362,2775,64703135,60629084,6362,2775,64703135,60629084,1145956,487839,2598430689,2339870128,100,100,100,100,0.56,0.57,2.49,2.59
-32828,12,095,12095,57881,22113,55376844,55345203,57881,22113,55376844,55345203,1145956,487839,2598430689,2339870128,100,100,100,100,5.05,4.53,2.13,2.37
-32829,12,095,12095,17822,6911,27141801,25394798,17822,6911,27141801,25394798,1145956,487839,2598430689,2339870128,100,100,100,100,1.56,1.42,1.04,1.09
-32830,12,095,12095,26,9,54681373,52632814,26,9,54681373,52632814,1145956,487839,2598430689,2339870128,100,100,100,100,0,0,2.1,2.25
-32831,12,095,12095,2542,94,26076047,26076047,2542,94,26076047,26076047,1145956,487839,2598430689,2339870128,100,100,100,100,0.22,0.02,1,1.11
-32832,12,095,12095,13787,5451,162051133,146389439,13787,5451,162051133,146389439,1145956,487839,2598430689,2339870128,100,100,100,100,1.2,1.12,6.24,6.26
-32833,12,095,12095,9241,3610,90588610,90337683,9241,3610,90588610,90337683,1145956,487839,2598430689,2339870128,100,100,100,100,0.81,0.74,3.49,3.86
-32835,12,095,12095,39633,18507,28175498,24329373,39633,18507,28175498,24329373,1145956,487839,2598430689,2339870128,100,100,100,100,3.46,3.79,1.08,1.04
-32836,12,095,12095,16647,8261,52204999,40466816,16647,8261,52204999,40466816,1145956,487839,2598430689,2339870128,100,100,100,100,1.45,1.69,2.01,1.73
-32837,12,095,12095,51219,19570,58217905,58109747,51219,19570,58217905,58109747,1145956,487839,2598430689,2339870128,100,100,100,100,4.47,4.01,2.24,2.48
-32839,12,095,12095,50279,21211,22398825,19304588,50279,21211,22398825,19304588,1145956,487839,2598430689,2339870128,100,100,100,100,4.39,4.35,0.86,0.83
-32901,12,009,12009,24521,13196,38293048,32565205,24521,13196,38293048,32565205,543376,269864,4032598796,2630557912,100,100,100,100,4.51,4.89,0.95,1.24
-32903,12,009,12009,12869,7018,24418304,9571916,12869,7018,24418304,9571916,543376,269864,4032598796,2630557912,100,100,100,100,2.37,2.6,0.61,0.36
-32904,12,009,12009,26710,12970,50440050,50308763,26710,12970,50440050,50308763,543376,269864,4032598796,2630557912,100,100,100,100,4.92,4.81,1.25,1.91
-32905,12,009,12009,22084,12204,32335137,24598461,22084,12204,32335137,24598461,543376,269864,4032598796,2630557912,100,100,100,100,4.06,4.52,0.8,0.94
-32907,12,009,12009,41870,17229,46157276,45915392,41870,17229,46157276,45915392,543376,269864,4032598796,2630557912,100,100,100,100,7.71,6.38,1.14,1.75
-32908,12,009,12009,10892,4230,49951650,49951650,10892,4230,49951650,49951650,543376,269864,4032598796,2630557912,100,100,100,100,2,1.57,1.24,1.9
-32909,12,009,12009,30120,12334,113897009,113599458,30120,12334,113897009,113599458,543376,269864,4032598796,2630557912,100,100,100,100,5.54,4.57,2.82,4.32
-32920,12,009,12009,9848,8242,25139981,10494843,9848,8242,25139981,10494843,543376,269864,4032598796,2630557912,100,100,100,100,1.81,3.05,0.62,0.4
-32922,12,009,12009,14916,7570,19485048,14242841,14916,7570,19485048,14242841,543376,269864,4032598796,2630557912,100,100,100,100,2.75,2.81,0.48,0.54
-32925,12,009,12009,1222,462,30680031,8047495,1222,462,30680031,8047495,543376,269864,4032598796,2630557912,100,100,100,100,0.22,0.17,0.76,0.31
-32926,12,009,12009,22752,9527,146739841,131397680,22752,9527,146739841,131397680,543376,269864,4032598796,2630557912,100,100,100,100,4.19,3.53,3.64,5
-32927,12,009,12009,28092,11083,65150380,56821840,28092,11083,65150380,56821840,543376,269864,4032598796,2630557912,100,100,100,100,5.17,4.11,1.62,2.16
-32931,12,009,12009,13567,10797,52922467,13460968,13567,10797,52922467,13460968,543376,269864,4032598796,2630557912,100,100,100,100,2.5,4,1.31,0.51
-32934,12,009,12009,17338,7548,68829702,62712934,17338,7548,68829702,62712934,543376,269864,4032598796,2630557912,100,100,100,100,3.19,2.8,1.71,2.38
-32935,12,009,12009,39082,20034,45240903,33331268,39082,20034,45240903,33331268,543376,269864,4032598796,2630557912,100,100,100,100,7.19,7.42,1.12,1.27
-32937,12,009,12009,24969,13533,27037372,17386893,24969,13533,27037372,17386893,543376,269864,4032598796,2630557912,100,100,100,100,4.6,5.01,0.67,0.66
-32940,12,009,12009,31999,15076,365200592,337477626,31999,15076,365200592,337477626,543376,269864,4032598796,2630557912,100,100,100,100,5.89,5.59,9.06,12.83
-32948,12,009,12009,52,88,497146450,492771681,6773,2104,689128981,684184078,543376,269864,4032598796,2630557912,0.77,4.18,72.14,72.02,0.01,0.03,12.33,18.73
-32948,12,061,12061,6721,2016,191982531,191412397,6773,2104,689128981,684184078,138028,76346,1598038220,1302431761,99.23,95.82,27.86,27.98,4.87,2.64,12.01,14.7
-32949,12,009,12009,2248,1110,49351385,42093677,2248,1110,49351385,42093677,543376,269864,4032598796,2630557912,100,100,100,100,0.41,0.41,1.22,1.6
-32950,12,009,12009,3982,1751,53364519,46207526,3982,1751,53364519,46207526,543376,269864,4032598796,2630557912,100,100,100,100,0.73,0.65,1.32,1.76
-32951,12,009,12009,10673,6827,76593210,21043685,10673,6827,76593210,21043685,543376,269864,4032598796,2630557912,100,100,100,100,1.96,2.53,1.9,0.8
-32952,12,009,12009,19881,9614,100945113,32043169,19881,9614,100945113,32043169,543376,269864,4032598796,2630557912,100,100,100,100,3.66,3.56,2.5,1.22
-32953,12,009,12009,22754,10905,122601172,83539748,22754,10905,122601172,83539748,543376,269864,4032598796,2630557912,100,100,100,100,4.19,4.04,3.04,3.18
-32955,12,009,12009,36374,16391,66677719,57345270,36374,16391,66677719,57345270,543376,269864,4032598796,2630557912,100,100,100,100,6.69,6.07,1.65,2.18
-32958,12,061,12061,25366,13260,84119080,72106790,25366,13260,84119080,72106790,138028,76346,1598038220,1302431761,100,100,100,100,18.38,17.37,5.26,5.54
-32960,12,061,12061,20037,11439,30791737,29432009,20037,11439,30791737,29432009,138028,76346,1598038220,1302431761,100,100,100,100,14.52,14.98,1.93,2.26
-32962,12,061,12061,22716,12309,38023294,31743150,22716,12309,38023294,31743150,138028,76346,1598038220,1302431761,100,100,100,100,16.46,16.12,2.38,2.44
-32963,12,061,12061,14911,11456,105678041,44976733,14911,11456,105678041,44976733,138028,76346,1598038220,1302431761,100,100,100,100,10.8,15.01,6.61,3.45
-32966,12,061,12061,15626,10379,781570218,753841163,15626,10379,781570218,753841163,138028,76346,1598038220,1302431761,100,100,100,100,11.32,13.59,48.91,57.88
-32967,12,061,12061,19518,9971,111738692,108042654,19518,9971,111738692,108042654,138028,76346,1598038220,1302431761,100,100,100,100,14.14,13.06,6.99,8.3
-32968,12,061,12061,12830,5330,68194672,68083053,12830,5330,68194672,68083053,138028,76346,1598038220,1302431761,100,100,100,100,9.3,6.98,4.27,5.23
-32970,12,061,12061,303,186,2801012,2793812,303,186,2801012,2793812,138028,76346,1598038220,1302431761,100,100,100,100,0.22,0.24,0.18,0.21
-32976,12,009,12009,9079,6575,73189505,66489446,9079,6575,73189505,66489446,543376,269864,4032598796,2630557912,100,100,100,100,1.67,2.44,1.81,2.53
-33001,12,087,12087,315,651,30469815,5057172,315,651,30469815,5057172,73090,52764,9680143181,2546689189,100,100,100,100,0.43,1.23,0.31,0.2
-33004,12,011,12011,15588,8772,16320729,14763304,15588,8772,16320729,14763304,1748066,810388,3426198449,3133329108,100,100,100,100,0.89,1.08,0.48,0.47
-33009,12,011,12011,39341,29120,14705457,13168818,39341,29120,14705457,13168818,1748066,810388,3426198449,3133329108,100,100,100,100,2.25,3.59,0.43,0.42
-33010,12,086,12086,46187,15876,11325913,11178683,46187,15876,11325913,11178683,2496435,989435,6296734448,4915061046,100,100,100,100,1.85,1.6,0.18,0.23
-33012,12,086,12086,72248,24734,15818842,15185010,72248,24734,15818842,15185010,2496435,989435,6296734448,4915061046,100,100,100,100,2.89,2.5,0.25,0.31
-33013,12,086,12086,33852,10005,9918036,9874425,33852,10005,9918036,9874425,2496435,989435,6296734448,4915061046,100,100,100,100,1.36,1.01,0.16,0.2
-33014,12,086,12086,40654,14923,18683547,15879078,40654,14923,18683547,15879078,2496435,989435,6296734448,4915061046,100,100,100,100,1.63,1.51,0.3,0.32
-33015,12,086,12086,63544,22552,16711085,15086374,63544,22552,16711085,15086374,2496435,989435,6296734448,4915061046,100,100,100,100,2.55,2.28,0.27,0.31
-33016,12,086,12086,45342,14854,12954345,11338569,45342,14854,12954345,11338569,2496435,989435,6296734448,4915061046,100,100,100,100,1.82,1.5,0.21,0.23
-33018,12,086,12086,46117,13486,57710596,50488502,46117,13486,57710596,50488502,2496435,989435,6296734448,4915061046,100,100,100,100,1.85,1.36,0.92,1.03
-33019,12,011,12011,15107,12755,17134772,10202962,15107,12755,17134772,10202962,1748066,810388,3426198449,3133329108,100,100,100,100,0.86,1.57,0.5,0.33
-33020,12,011,12011,41329,22493,15889030,15674148,41329,22493,15889030,15674148,1748066,810388,3426198449,3133329108,100,100,100,100,2.36,2.78,0.46,0.5
-33021,12,011,12011,45921,22367,22825547,22561732,45921,22367,22825547,22561732,1748066,810388,3426198449,3133329108,100,100,100,100,2.63,2.76,0.67,0.72
-33023,12,011,12011,63576,21409,25501624,24958795,63576,21409,25501624,24958795,1748066,810388,3426198449,3133329108,100,100,100,100,3.64,2.64,0.74,0.8
-33024,12,011,12011,63916,24022,28515154,27799373,63916,24022,28515154,27799373,1748066,810388,3426198449,3133329108,100,100,100,100,3.66,2.96,0.83,0.89
-33025,12,011,12011,59039,24069,28826926,28016143,59039,24069,28826926,28016143,1748066,810388,3426198449,3133329108,100,100,100,100,3.38,2.97,0.84,0.89
-33026,12,011,12011,28498,11963,13046257,11734441,28498,11963,13046257,11734441,1748066,810388,3426198449,3133329108,100,100,100,100,1.63,1.48,0.38,0.37
-33027,12,011,12011,57663,23211,36172645,34764963,57663,23211,36172645,34764963,1748066,810388,3426198449,3133329108,100,100,100,100,3.3,2.86,1.06,1.11
-33028,12,011,12011,26696,8616,15365847,14891648,26696,8616,15365847,14891648,1748066,810388,3426198449,3133329108,100,100,100,100,1.53,1.06,0.45,0.48
-33029,12,011,12011,45235,13995,51024812,46172499,45235,13995,51024812,46172499,1748066,810388,3426198449,3133329108,100,100,100,100,2.59,1.73,1.49,1.47
-33030,12,086,12086,34110,11260,47737104,47538683,34110,11260,47737104,47538683,2496435,989435,6296734448,4915061046,100,100,100,100,1.37,1.14,0.76,0.97
-33031,12,086,12086,5859,2175,55498381,55353145,5859,2175,55498381,55353145,2496435,989435,6296734448,4915061046,100,100,100,100,0.23,0.22,0.88,1.13
-33032,12,086,12086,34088,11068,51003620,48702619,34088,11068,51003620,48702619,2496435,989435,6296734448,4915061046,100,100,100,100,1.37,1.12,0.81,0.99
-33033,12,086,12086,49028,16779,44722962,43465255,49028,16779,44722962,43465255,2496435,989435,6296734448,4915061046,100,100,100,100,1.96,1.7,0.71,0.88
-33034,12,086,12086,18610,6305,784263367,720643262,18613,6308,787309424,723689319,2496435,989435,6296734448,4915061046,99.98,99.95,99.61,99.58,0.75,0.64,12.46,14.66
-33034,12,087,12087,3,3,3046057,3046057,18613,6308,787309424,723689319,73090,52764,9680143181,2546689189,0.02,0.05,0.39,0.42,0,0.01,0.03,0.12
-33035,12,086,12086,13497,6177,54648730,53791044,13497,6177,54648730,53791044,2496435,989435,6296734448,4915061046,100,100,100,100,0.54,0.62,0.87,1.09
-33036,12,087,12087,3035,3618,141347101,15176071,3035,3618,141347101,15176071,73090,52764,9680143181,2546689189,100,100,100,100,4.15,6.86,1.46,0.6
-33037,12,087,12087,11612,10113,313924640,87599034,11612,10113,313924640,87599034,73090,52764,9680143181,2546689189,100,100,100,100,15.89,19.17,3.24,3.44
-33039,12,086,12086,122,46,866053,785623,122,46,866053,785623,2496435,989435,6296734448,4915061046,100,100,100,100,0,0,0.01,0.02
-33040,12,087,12087,32891,18081,377036591,47890836,32891,18081,377036591,47890836,73090,52764,9680143181,2546689189,100,100,100,100,45,34.27,3.89,1.88
-33042,12,087,12087,5829,4668,298029726,66082822,5829,4668,298029726,66082822,73090,52764,9680143181,2546689189,100,100,100,100,7.98,8.85,3.08,2.59
-33043,12,087,12087,4313,3052,212345717,38421946,4313,3052,212345717,38421946,73090,52764,9680143181,2546689189,100,100,100,100,5.9,5.78,2.19,1.51
-33050,12,087,12087,8922,7057,123060966,23533878,8922,7057,123060966,23533878,73090,52764,9680143181,2546689189,100,100,100,100,12.21,13.37,1.27,0.92
-33051,12,087,12087,796,1430,1681182,1131033,796,1430,1681182,1131033,73090,52764,9680143181,2546689189,100,100,100,100,1.09,2.71,0.02,0.04
-33054,12,086,12086,29061,9968,23580801,22731775,29061,9968,23580801,22731775,2496435,989435,6296734448,4915061046,100,100,100,100,1.16,1.01,0.37,0.46
-33055,12,086,12086,43194,12486,16374760,15548789,43194,12486,16374760,15548789,2496435,989435,6296734448,4915061046,100,100,100,100,1.73,1.26,0.26,0.32
-33056,12,086,12086,35059,11107,16398706,15706627,35059,11107,16398706,15706627,2496435,989435,6296734448,4915061046,100,100,100,100,1.4,1.12,0.26,0.32
-33060,12,011,12011,32154,14646,18217447,18217447,32154,14646,18217447,18217447,1748066,810388,3426198449,3133329108,100,100,100,100,1.84,1.81,0.53,0.58
-33062,12,011,12011,23948,21836,15880479,9803301,23948,21836,15880479,9803301,1748066,810388,3426198449,3133329108,100,100,100,100,1.37,2.69,0.46,0.31
-33063,12,011,12011,51019,25109,23650768,23034542,51019,25109,23650768,23034542,1748066,810388,3426198449,3133329108,100,100,100,100,2.92,3.1,0.69,0.74
-33064,12,011,12011,52969,23931,27881308,27098248,52969,23931,27881308,27098248,1748066,810388,3426198449,3133329108,100,100,100,100,3.03,2.95,0.81,0.86
-33065,12,011,12011,51921,19745,21842775,21566781,51921,19745,21842775,21566781,1748066,810388,3426198449,3133329108,100,100,100,100,2.97,2.44,0.64,0.69
-33066,12,011,12011,15760,10613,8316845,8240040,15760,10613,8316845,8240040,1748066,810388,3426198449,3133329108,100,100,100,100,0.9,1.31,0.24,0.26
-33067,12,011,12011,26458,9670,28261165,27514955,26458,9670,28261165,27514955,1748066,810388,3426198449,3133329108,100,100,100,100,1.51,1.19,0.82,0.88
-33068,12,011,12011,49824,17834,15519658,15433376,49824,17834,15519658,15433376,1748066,810388,3426198449,3133329108,100,100,100,100,2.85,2.2,0.45,0.49
-33069,12,011,12011,25700,14851,25040286,24300518,25700,14851,25040286,24300518,1748066,810388,3426198449,3133329108,100,100,100,100,1.47,1.83,0.73,0.78
-33070,12,087,12087,5344,4070,46246967,11301691,5344,4070,46246967,11301691,73090,52764,9680143181,2546689189,100,100,100,100,7.31,7.71,0.48,0.44
-33071,12,011,12011,36964,13948,20124390,19942118,36964,13948,20124390,19942118,1748066,810388,3426198449,3133329108,100,100,100,100,2.11,1.72,0.59,0.64
-33073,12,011,12011,29168,11454,22325294,22026032,29168,11454,22325294,22026032,1748066,810388,3426198449,3133329108,100,100,100,100,1.67,1.41,0.65,0.7
-33076,12,011,12011,29751,10374,32581964,32019554,29751,10374,32581964,32019554,1748066,810388,3426198449,3133329108,100,100,100,100,1.7,1.28,0.95,1.02
-33101,12,086,12086,0,0,17695,17695,0,0,17695,17695,2496435,989435,6296734448,4915061046,0,0,100,100,0,0,0,0
-33109,12,086,12086,594,754,2900899,805729,594,754,2900899,805729,2496435,989435,6296734448,4915061046,100,100,100,100,0.02,0.08,0.05,0.02
-33122,12,086,12086,1,1,15587978,15358629,1,1,15587978,15358629,2496435,989435,6296734448,4915061046,100,100,100,100,0,0,0.25,0.31
-33125,12,086,12086,52677,20271,10434804,10003115,52677,20271,10434804,10003115,2496435,989435,6296734448,4915061046,100,100,100,100,2.11,2.05,0.17,0.2
-33126,12,086,12086,46867,18904,14663433,12970290,46867,18904,14663433,12970290,2496435,989435,6296734448,4915061046,100,100,100,100,1.88,1.91,0.23,0.26
-33127,12,086,12086,28909,10708,8569208,8560281,28909,10708,8569208,8560281,2496435,989435,6296734448,4915061046,100,100,100,100,1.16,1.08,0.14,0.17
-33128,12,086,12086,7562,3360,1078099,1028612,7562,3360,1078099,1028612,2496435,989435,6296734448,4915061046,100,100,100,100,0.3,0.34,0.02,0.02
-33129,12,086,12086,13833,8176,7965230,3501237,13833,8176,7965230,3501237,2496435,989435,6296734448,4915061046,100,100,100,100,0.55,0.83,0.13,0.07
-33130,12,086,12086,26108,14259,2925062,2856756,26108,14259,2925062,2856756,2496435,989435,6296734448,4915061046,100,100,100,100,1.05,1.44,0.05,0.06
-33131,12,086,12086,14917,13481,3273063,1048261,14917,13481,3273063,1048261,2496435,989435,6296734448,4915061046,100,100,100,100,0.6,1.36,0.05,0.02
-33132,12,086,12086,11165,7504,8429389,4365112,11165,7504,8429389,4365112,2496435,989435,6296734448,4915061046,100,100,100,100,0.45,0.76,0.13,0.09
-33133,12,086,12086,31926,16189,14470166,10817743,31926,16189,14470166,10817743,2496435,989435,6296734448,4915061046,100,100,100,100,1.28,1.64,0.23,0.22
-33134,12,086,12086,37456,17629,13524292,13491391,37456,17629,13524292,13491391,2496435,989435,6296734448,4915061046,100,100,100,100,1.5,1.78,0.21,0.27
-33135,12,086,12086,36066,14933,5584972,5584972,36066,14933,5584972,5584972,2496435,989435,6296734448,4915061046,100,100,100,100,1.44,1.51,0.09,0.11
-33136,12,086,12086,13791,6257,3777404,3693308,13791,6257,3777404,3693308,2496435,989435,6296734448,4915061046,100,100,100,100,0.55,0.63,0.06,0.08
-33137,12,086,12086,19410,10825,13873989,5244021,19410,10825,13873989,5244021,2496435,989435,6296734448,4915061046,100,100,100,100,0.78,1.09,0.22,0.11
-33138,12,086,12086,27571,13360,16695507,10921680,27571,13360,16695507,10921680,2496435,989435,6296734448,4915061046,100,100,100,100,1.1,1.35,0.27,0.22
-33139,12,086,12086,38613,32255,15559575,6967545,38613,32255,15559575,6967545,2496435,989435,6296734448,4915061046,100,100,100,100,1.55,3.26,0.25,0.14
-33140,12,086,12086,21210,17643,18705734,7874950,21210,17643,18705734,7874950,2496435,989435,6296734448,4915061046,100,100,100,100,0.85,1.78,0.3,0.16
-33141,12,086,12086,35249,22062,19348606,5997658,35249,22062,19348606,5997658,2496435,989435,6296734448,4915061046,100,100,100,100,1.41,2.23,0.31,0.12
-33142,12,086,12086,52606,19529,18560790,18323080,52606,19529,18560790,18323080,2496435,989435,6296734448,4915061046,100,100,100,100,2.11,1.97,0.29,0.37
-33143,12,086,12086,31407,14526,21090212,20447765,31407,14526,21090212,20447765,2496435,989435,6296734448,4915061046,100,100,100,100,1.26,1.47,0.33,0.42
-33144,12,086,12086,26903,9355,8140010,8015183,26903,9355,8140010,8015183,2496435,989435,6296734448,4915061046,100,100,100,100,1.08,0.95,0.13,0.16
-33145,12,086,12086,29758,12263,6575725,6575725,29758,12263,6575725,6575725,2496435,989435,6296734448,4915061046,100,100,100,100,1.19,1.24,0.1,0.13
-33146,12,086,12086,14995,4528,8363945,8056011,14995,4528,8363945,8056011,2496435,989435,6296734448,4915061046,100,100,100,100,0.6,0.46,0.13,0.16
-33147,12,086,12086,46933,15744,19207993,18772215,46933,15744,19207993,18772215,2496435,989435,6296734448,4915061046,100,100,100,100,1.88,1.59,0.31,0.38
-33149,12,086,12086,12389,7076,36495640,12115137,12389,7076,36495640,12115137,2496435,989435,6296734448,4915061046,100,100,100,100,0.5,0.72,0.58,0.25
-33150,12,086,12086,27811,10108,9197158,9060982,27811,10108,9197158,9060982,2496435,989435,6296734448,4915061046,100,100,100,100,1.11,1.02,0.15,0.18
-33154,12,086,12086,13971,9902,8543727,4615476,13971,9902,8543727,4615476,2496435,989435,6296734448,4915061046,100,100,100,100,0.56,1,0.14,0.09
-33155,12,086,12086,43788,15776,20558585,19113764,43788,15776,20558585,19113764,2496435,989435,6296734448,4915061046,100,100,100,100,1.75,1.59,0.33,0.39
-33156,12,086,12086,31315,12564,37514171,35149290,31315,12564,37514171,35149290,2496435,989435,6296734448,4915061046,100,100,100,100,1.25,1.27,0.6,0.72
-33157,12,086,12086,63226,22274,39048487,38383443,63226,22274,39048487,38383443,2496435,989435,6296734448,4915061046,100,100,100,100,2.53,2.25,0.62,0.78
-33158,12,086,12086,6694,2361,7907389,7232208,6694,2361,7907389,7232208,2496435,989435,6296734448,4915061046,100,100,100,100,0.27,0.24,0.13,0.15
-33160,12,086,12086,40053,31573,19254086,11005207,40053,31573,19254086,11005207,2496435,989435,6296734448,4915061046,100,100,100,100,1.6,3.19,0.31,0.22
-33161,12,086,12086,53710,18896,14308659,14161688,53710,18896,14308659,14161688,2496435,989435,6296734448,4915061046,100,100,100,100,2.15,1.91,0.23,0.29
-33162,12,086,12086,43539,14906,13723723,13454511,43539,14906,13723723,13454511,2496435,989435,6296734448,4915061046,100,100,100,100,1.74,1.51,0.22,0.27
-33165,12,086,12086,56149,17865,20384425,19731737,56149,17865,20384425,19731737,2496435,989435,6296734448,4915061046,100,100,100,100,2.25,1.81,0.32,0.4
-33166,12,086,12086,23038,8574,28107492,24285898,23038,8574,28107492,24285898,2496435,989435,6296734448,4915061046,100,100,100,100,0.92,0.87,0.45,0.49
-33167,12,086,12086,18846,6292,11239275,10734929,18846,6292,11239275,10734929,2496435,989435,6296734448,4915061046,100,100,100,100,0.75,0.64,0.18,0.22
-33168,12,086,12086,25792,7139,9539691,9532401,25792,7139,9539691,9532401,2496435,989435,6296734448,4915061046,100,100,100,100,1.03,0.72,0.15,0.19
-33169,12,086,12086,39353,13795,18536281,17856639,39353,13795,18536281,17856639,2496435,989435,6296734448,4915061046,100,100,100,100,1.58,1.39,0.29,0.36
-33170,12,086,12086,12253,3993,34195668,34119943,12253,3993,34195668,34119943,2496435,989435,6296734448,4915061046,100,100,100,100,0.49,0.4,0.54,0.69
-33172,12,086,12086,37664,14723,18663971,16952738,37664,14723,18663971,16952738,2496435,989435,6296734448,4915061046,100,100,100,100,1.51,1.49,0.3,0.34
-33173,12,086,12086,33141,12637,13504930,13085180,33141,12637,13504930,13085180,2496435,989435,6296734448,4915061046,100,100,100,100,1.33,1.28,0.21,0.27
-33174,12,086,12086,32524,10550,8327465,7983869,32524,10550,8327465,7983869,2496435,989435,6296734448,4915061046,100,100,100,100,1.3,1.07,0.13,0.16
-33175,12,086,12086,53206,16685,20765466,19941299,53206,16685,20765466,19941299,2496435,989435,6296734448,4915061046,100,100,100,100,2.13,1.69,0.33,0.41
-33176,12,086,12086,50170,19918,32711470,31768284,50170,19918,32711470,31768284,2496435,989435,6296734448,4915061046,100,100,100,100,2.01,2.01,0.52,0.65
-33177,12,086,12086,53191,15368,33207629,32437142,53191,15368,33207629,32437142,2496435,989435,6296734448,4915061046,100,100,100,100,2.13,1.55,0.53,0.66
-33178,12,086,12086,39489,15134,164816850,143989249,39489,15134,164816850,143989249,2496435,989435,6296734448,4915061046,100,100,100,100,1.58,1.53,2.62,2.93
-33179,12,086,12086,41332,18152,14850435,13037873,41332,18152,14850435,13037873,2496435,989435,6296734448,4915061046,100,100,100,100,1.66,1.83,0.24,0.27
-33180,12,086,12086,30840,20316,10236826,8824992,30840,20316,10236826,8824992,2496435,989435,6296734448,4915061046,100,100,100,100,1.24,2.05,0.16,0.18
-33181,12,086,12086,18413,9694,12866880,8331442,18413,9694,12866880,8331442,2496435,989435,6296734448,4915061046,100,100,100,100,0.74,0.98,0.2,0.17
-33182,12,086,12086,16929,3953,46023626,39933326,16929,3953,46023626,39933326,2496435,989435,6296734448,4915061046,100,100,100,100,0.68,0.4,0.73,0.81
-33183,12,086,12086,35949,12540,15807143,14932485,35949,12540,15807143,14932485,2496435,989435,6296734448,4915061046,100,100,100,100,1.44,1.27,0.25,0.3
-33184,12,086,12086,21075,6686,6724862,6336450,21075,6686,6724862,6336450,2496435,989435,6296734448,4915061046,100,100,100,100,0.84,0.68,0.11,0.13
-33185,12,086,12086,27189,7977,12435174,11887138,27189,7977,12435174,11887138,2496435,989435,6296734448,4915061046,100,100,100,100,1.09,0.81,0.2,0.24
-33186,12,086,12086,67137,24489,35074364,32730302,67137,24489,35074364,32730302,2496435,989435,6296734448,4915061046,100,100,100,100,2.69,2.48,0.56,0.67
-33187,12,086,12086,16315,4971,102873384,102474627,16315,4971,102873384,102474627,2496435,989435,6296734448,4915061046,100,100,100,100,0.65,0.5,1.63,2.08
-33189,12,086,12086,23828,8840,14943883,14356829,23828,8840,14943883,14356829,2496435,989435,6296734448,4915061046,100,100,100,100,0.95,0.89,0.24,0.29
-33190,12,086,12086,11593,4364,4950460,4618384,11593,4364,4950460,4618384,2496435,989435,6296734448,4915061046,100,100,100,100,0.46,0.44,0.08,0.09
-33193,12,086,12086,46044,15020,23875046,21082145,46044,15020,23875046,21082145,2496435,989435,6296734448,4915061046,100,100,100,100,1.84,1.52,0.38,0.43
-33194,12,086,12086,7742,1801,236481682,229835953,7742,1801,236481682,229835953,2496435,989435,6296734448,4915061046,100,100,100,100,0.31,0.18,3.76,4.68
-33196,12,086,12086,43620,14197,64282664,63441328,43620,14197,64282664,63441328,2496435,989435,6296734448,4915061046,100,100,100,100,1.75,1.43,1.02,1.29
-33301,12,011,12011,14586,9658,6766833,6496541,14586,9658,6766833,6496541,1748066,810388,3426198449,3133329108,100,100,100,100,0.83,1.19,0.2,0.21
-33304,12,011,12011,17724,12509,9207156,8246801,17724,12509,9207156,8246801,1748066,810388,3426198449,3133329108,100,100,100,100,1.01,1.54,0.27,0.26
-33305,12,011,12011,11927,7982,6790600,5701039,11927,7982,6790600,5701039,1748066,810388,3426198449,3133329108,100,100,100,100,0.68,0.98,0.2,0.18
-33306,12,011,12011,3397,2237,2218570,2191178,3397,2237,2218570,2191178,1748066,810388,3426198449,3133329108,100,100,100,100,0.19,0.28,0.06,0.07
-33308,12,011,12011,28217,22935,14567858,11781113,28217,22935,14567858,11781113,1748066,810388,3426198449,3133329108,100,100,100,100,1.61,2.83,0.43,0.38
-33309,12,011,12011,33705,14687,26891877,24705587,33705,14687,26891877,24705587,1748066,810388,3426198449,3133329108,100,100,100,100,1.93,1.81,0.78,0.79
-33311,12,011,12011,63786,25377,27240655,26797759,63786,25377,27240655,26797759,1748066,810388,3426198449,3133329108,100,100,100,100,3.65,3.13,0.8,0.86
-33312,12,011,12011,49343,21078,29971126,29591401,49343,21078,29971126,29591401,1748066,810388,3426198449,3133329108,100,100,100,100,2.82,2.6,0.87,0.94
-33313,12,011,12011,56039,24675,16911323,16848335,56039,24675,16911323,16848335,1748066,810388,3426198449,3133329108,100,100,100,100,3.21,3.04,0.49,0.54
-33314,12,011,12011,21885,9143,22625592,21523377,21885,9143,22625592,21523377,1748066,810388,3426198449,3133329108,100,100,100,100,1.25,1.13,0.66,0.69
-33315,12,011,12011,12153,6775,13558147,13558147,12153,6775,13558147,13558147,1748066,810388,3426198449,3133329108,100,100,100,100,0.7,0.84,0.4,0.43
-33316,12,011,12011,10044,7701,16799244,13105021,10044,7701,16799244,13105021,1748066,810388,3426198449,3133329108,100,100,100,100,0.57,0.95,0.49,0.42
-33317,12,011,12011,35372,13395,25277146,24775735,35372,13395,25277146,24775735,1748066,810388,3426198449,3133329108,100,100,100,100,2.02,1.65,0.74,0.79
-33319,12,011,12011,44420,23870,18306337,18026857,44420,23870,18306337,18026857,1748066,810388,3426198449,3133329108,100,100,100,100,2.54,2.95,0.53,0.58
-33321,12,011,12011,44327,23649,22335154,21367500,44327,23649,22335154,21367500,1748066,810388,3426198449,3133329108,100,100,100,100,2.54,2.92,0.65,0.68
-33322,12,011,12011,37858,20262,14792897,14792897,37858,20262,14792897,14792897,1748066,810388,3426198449,3133329108,100,100,100,100,2.17,2.5,0.43,0.47
-33323,12,011,12011,18929,7417,17088108,17088108,18929,7417,17088108,17088108,1748066,810388,3426198449,3133329108,100,100,100,100,1.08,0.92,0.5,0.55
-33324,12,011,12011,42847,21695,24204093,23850204,42847,21695,24204093,23850204,1748066,810388,3426198449,3133329108,100,100,100,100,2.45,2.68,0.71,0.76
-33325,12,011,12011,27570,10464,24950301,24787758,27570,10464,24950301,24787758,1748066,810388,3426198449,3133329108,100,100,100,100,1.58,1.29,0.73,0.79
-33326,12,011,12011,31257,13519,26346462,25001095,31257,13519,26346462,25001095,1748066,810388,3426198449,3133329108,100,100,100,100,1.79,1.67,0.77,0.8
-33327,12,011,12011,22658,7028,30154762,29175825,22658,7028,30154762,29175825,1748066,810388,3426198449,3133329108,100,100,100,100,1.3,0.87,0.88,0.93
-33328,12,011,12011,27415,10431,24555613,24345839,27415,10431,24555613,24345839,1748066,810388,3426198449,3133329108,100,100,100,100,1.57,1.29,0.72,0.78
-33330,12,011,12011,14107,4672,26666774,26582662,14107,4672,26666774,26582662,1748066,810388,3426198449,3133329108,100,100,100,100,0.81,0.58,0.78,0.85
-33331,12,011,12011,23204,7762,33251327,32266063,23204,7762,33251327,32266063,1748066,810388,3426198449,3133329108,100,100,100,100,1.33,0.96,0.97,1.03
-33332,12,011,12011,11199,3386,79999323,79648014,11199,3386,79999323,79648014,1748066,810388,3426198449,3133329108,100,100,100,100,0.64,0.42,2.33,2.54
-33334,12,011,12011,28749,14154,12478655,12401547,28749,14154,12478655,12401547,1748066,810388,3426198449,3133329108,100,100,100,100,1.64,1.75,0.36,0.4
-33351,12,011,12011,32890,12971,15435511,14917811,32890,12971,15435511,14917811,1748066,810388,3426198449,3133329108,100,100,100,100,1.88,1.6,0.45,0.48
-33401,12,099,12099,24879,16241,17600793,14239540,24879,16241,17600793,14239540,1320134,664594,6171965244,5101663125,100,100,100,100,1.88,2.44,0.29,0.28
-33403,12,099,12099,12042,5614,9230735,8711693,12042,5614,9230735,8711693,1320134,664594,6171965244,5101663125,100,100,100,100,0.91,0.84,0.15,0.17
-33404,12,099,12099,27489,16189,25637472,19917909,27489,16189,25637472,19917909,1320134,664594,6171965244,5101663125,100,100,100,100,2.08,2.44,0.42,0.39
-33405,12,099,12099,19155,8606,12922143,11652539,19155,8606,12922143,11652539,1320134,664594,6171965244,5101663125,100,100,100,100,1.45,1.29,0.21,0.23
-33406,12,099,12099,26312,9522,23309130,23037501,26312,9522,23309130,23037501,1320134,664594,6171965244,5101663125,100,100,100,100,1.99,1.43,0.38,0.45
-33407,12,099,12099,29659,13546,28550496,26080472,29659,13546,28550496,26080472,1320134,664594,6171965244,5101663125,100,100,100,100,2.25,2.04,0.46,0.51
-33408,12,099,12099,16921,11890,27838552,18866002,16921,11890,27838552,18866002,1320134,664594,6171965244,5101663125,100,100,100,100,1.28,1.79,0.45,0.37
-33409,12,099,12099,29140,13501,16729810,16693916,29140,13501,16729810,16693916,1320134,664594,6171965244,5101663125,100,100,100,100,2.21,2.03,0.27,0.33
-33410,12,099,12099,32570,17112,29942276,29529563,32570,17112,29942276,29529563,1320134,664594,6171965244,5101663125,100,100,100,100,2.47,2.57,0.49,0.58
-33411,12,099,12099,65245,27877,111606595,110474593,65245,27877,111606595,110474593,1320134,664594,6171965244,5101663125,100,100,100,100,4.94,4.19,1.81,2.17
-33412,12,099,12099,14414,6167,121234830,121075089,14414,6167,121234830,121075089,1320134,664594,6171965244,5101663125,100,100,100,100,1.09,0.93,1.96,2.37
-33413,12,099,12099,15162,5817,19835286,18951875,15162,5817,19835286,18951875,1320134,664594,6171965244,5101663125,100,100,100,100,1.15,0.88,0.32,0.37
-33414,12,099,12099,53718,21465,73408875,72700786,53718,21465,73408875,72700786,1320134,664594,6171965244,5101663125,100,100,100,100,4.07,3.23,1.19,1.43
-33415,12,099,12099,44963,19317,19208607,19160283,44963,19317,19208607,19160283,1320134,664594,6171965244,5101663125,100,100,100,100,3.41,2.91,0.31,0.38
-33417,12,099,12099,29156,18638,17659541,17391814,29156,18638,17659541,17391814,1320134,664594,6171965244,5101663125,100,100,100,100,2.21,2.8,0.29,0.34
-33418,12,099,12099,36017,19727,121197918,120516950,36017,19727,121197918,120516950,1320134,664594,6171965244,5101663125,100,100,100,100,2.73,2.97,1.96,2.36
-33426,12,099,12099,20082,11166,16032585,15890440,20082,11166,16032585,15890440,1320134,664594,6171965244,5101663125,100,100,100,100,1.52,1.68,0.26,0.31
-33428,12,099,12099,38548,15941,23484669,23377675,38548,15941,23484669,23377675,1320134,664594,6171965244,5101663125,100,100,100,100,2.92,2.4,0.38,0.46
-33430,12,099,12099,21427,7328,295276346,294583151,21427,7328,295276346,294583151,1320134,664594,6171965244,5101663125,100,100,100,100,1.62,1.1,4.78,5.77
-33431,12,099,12099,18290,8375,25040199,23034449,18290,8375,25040199,23034449,1320134,664594,6171965244,5101663125,100,100,100,100,1.39,1.26,0.41,0.45
-33432,12,099,12099,18715,12849,15010838,12416488,18715,12849,15010838,12416488,1320134,664594,6171965244,5101663125,100,100,100,100,1.42,1.93,0.24,0.24
-33433,12,099,12099,41722,22881,24575092,24575092,41722,22881,24575092,24575092,1320134,664594,6171965244,5101663125,100,100,100,100,3.16,3.44,0.4,0.48
-33434,12,099,12099,19260,13364,17713430,17221900,19260,13364,17713430,17221900,1320134,664594,6171965244,5101663125,100,100,100,100,1.46,2.01,0.29,0.34
-33435,12,099,12099,32104,18178,20270759,17040494,32104,18178,20270759,17040494,1320134,664594,6171965244,5101663125,100,100,100,100,2.43,2.74,0.33,0.33
-33436,12,099,12099,41896,22427,30577674,30333769,41896,22427,30577674,30333769,1320134,664594,6171965244,5101663125,100,100,100,100,3.17,3.37,0.5,0.59
-33437,12,099,12099,35938,20762,28172123,28072783,35938,20762,28172123,28072783,1320134,664594,6171965244,5101663125,100,100,100,100,2.72,3.12,0.46,0.55
-33438,12,085,12085,31,14,20372641,19585492,459,211,55443664,54656515,146318,78131,1949817448,1407565382,6.75,6.64,36.74,35.83,0.02,0.02,1.04,1.39
-33438,12,099,12099,428,197,35071023,35071023,459,211,55443664,54656515,1320134,664594,6171965244,5101663125,93.25,93.36,63.26,64.17,0.03,0.03,0.57,0.69
-33440,12,051,12051,19478,7472,1675624623,1666328140,19743,7583,1712984544,1703688061,39140,14564,3082074727,2985609243,98.66,98.54,97.82,97.81,49.76,51.3,54.37,55.81
-33440,12,099,12099,265,111,37359921,37359921,19743,7583,1712984544,1703688061,1320134,664594,6171965244,5101663125,1.34,1.46,2.18,2.19,0.02,0.02,0.61,0.73
-33441,12,011,12011,26838,14313,13461386,12539432,26838,14313,13461386,12539432,1748066,810388,3426198449,3133329108,100,100,100,100,1.54,1.77,0.39,0.4
-33442,12,011,12011,28075,19840,19881163,17390299,28075,19840,19881163,17390299,1748066,810388,3426198449,3133329108,100,100,100,100,1.61,2.45,0.58,0.56
-33444,12,099,12099,20221,9318,13430239,13017034,20221,9318,13430239,13017034,1320134,664594,6171965244,5101663125,100,100,100,100,1.53,1.4,0.22,0.26
-33445,12,099,12099,29754,16684,21116838,20778683,29754,16684,21116838,20778683,1320134,664594,6171965244,5101663125,100,100,100,100,2.25,2.51,0.34,0.41
-33446,12,099,12099,22088,15750,55213985,55213985,22088,15750,55213985,55213985,1320134,664594,6171965244,5101663125,100,100,100,100,1.67,2.37,0.89,1.08
-33449,12,099,12099,10817,4191,48217206,48217206,10817,4191,48217206,48217206,1320134,664594,6171965244,5101663125,100,100,100,100,0.82,0.63,0.78,0.95
-33455,12,085,12085,19980,11737,145558955,127054625,19980,11737,145558955,127054625,146318,78131,1949817448,1407565382,100,100,100,100,13.66,15.02,7.47,9.03
-33458,12,085,12085,961,403,14077995,13395879,49396,21507,59083723,56059160,146318,78131,1949817448,1407565382,1.95,1.87,23.83,23.9,0.66,0.52,0.72,0.95
-33458,12,099,12099,48435,21104,45005728,42663281,49396,21507,59083723,56059160,1320134,664594,6171965244,5101663125,98.05,98.13,76.17,76.1,3.67,3.18,0.73,0.84
-33460,12,099,12099,30790,14061,14062716,12139477,30790,14061,14062716,12139477,1320134,664594,6171965244,5101663125,100,100,100,100,2.33,2.12,0.23,0.24
-33461,12,099,12099,40748,17875,19210628,18764819,40748,17875,19210628,18764819,1320134,664594,6171965244,5101663125,100,100,100,100,3.09,2.69,0.31,0.37
-33462,12,099,12099,30879,15403,29197617,22711270,30879,15403,29197617,22711270,1320134,664594,6171965244,5101663125,100,100,100,100,2.34,2.32,0.47,0.45
-33463,12,099,12099,53766,20467,28015703,27825270,53766,20467,28015703,27825270,1320134,664594,6171965244,5101663125,100,100,100,100,4.07,3.08,0.45,0.55
-33467,12,099,12099,48808,23263,47695359,47675530,48808,23263,47695359,47675530,1320134,664594,6171965244,5101663125,100,100,100,100,3.7,3.5,0.77,0.93
-33469,12,085,12085,4741,2851,24882163,21610716,14449,8584,36625063,29636683,146318,78131,1949817448,1407565382,32.81,33.21,67.94,72.92,3.24,3.65,1.28,1.54
-33469,12,099,12099,9708,5733,11742900,8025967,14449,8584,36625063,29636683,1320134,664594,6171965244,5101663125,67.19,66.79,32.06,27.08,0.74,0.86,0.19,0.16
-33470,12,099,12099,26551,9209,203336551,202988360,26551,9209,203336551,202988360,1320134,664594,6171965244,5101663125,100,100,100,100,2.01,1.39,3.29,3.98
-33471,12,043,12043,6818,3442,701454581,684915317,6818,3442,701454581,684915317,12884,6979,2555924715,2087553927,100,100,100,100,52.92,49.32,27.44,32.81
-33472,12,099,12099,19100,8988,33452006,33452006,19100,8988,33452006,33452006,1320134,664594,6171965244,5101663125,100,100,100,100,1.45,1.35,0.54,0.66
-33473,12,099,12099,6265,2118,18286207,18286207,6265,2118,18286207,18286207,1320134,664594,6171965244,5101663125,100,100,100,100,0.47,0.32,0.3,0.36
-33476,12,099,12099,7669,2852,68056592,68022835,7669,2852,68056592,68022835,1320134,664594,6171965244,5101663125,100,100,100,100,0.58,0.43,1.1,1.33
-33477,12,099,12099,13074,11473,21624023,17500680,13074,11473,21624023,17500680,1320134,664594,6171965244,5101663125,100,100,100,100,0.99,1.73,0.35,0.34
-33478,12,085,12085,445,206,33543018,30378473,12704,4811,141859795,137758974,146318,78131,1949817448,1407565382,3.5,4.28,23.65,22.05,0.3,0.26,1.72,2.16
-33478,12,099,12099,12259,4605,108316777,107380501,12704,4811,141859795,137758974,1320134,664594,6171965244,5101663125,96.5,95.72,76.35,77.95,0.93,0.69,1.75,2.1
-33480,12,099,12099,9549,10641,29936215,11390899,9549,10641,29936215,11390899,1320134,664594,6171965244,5101663125,100,100,100,100,0.72,1.6,0.49,0.22
-33483,12,099,12099,12093,9204,14975263,10172298,12093,9204,14975263,10172298,1320134,664594,6171965244,5101663125,100,100,100,100,0.92,1.38,0.24,0.2
-33484,12,099,12099,23443,18209,15938909,15938909,23443,18209,15938909,15938909,1320134,664594,6171965244,5101663125,100,100,100,100,1.78,2.74,0.26,0.31
-33486,12,099,12099,21720,9615,14210481,14145949,21720,9615,14210481,14145949,1320134,664594,6171965244,5101663125,100,100,100,100,1.65,1.45,0.23,0.28
-33487,12,099,12099,16421,11037,19116823,16951765,16421,11037,19116823,16951765,1320134,664594,6171965244,5101663125,100,100,100,100,1.24,1.66,0.31,0.33
-33493,12,099,12099,4926,1097,161138408,160875744,4926,1097,161138408,160875744,1320134,664594,6171965244,5101663125,100,100,100,100,0.37,0.17,2.61,3.15
-33496,12,099,12099,20969,11213,24490980,24076415,20969,11213,24490980,24076415,1320134,664594,6171965244,5101663125,100,100,100,100,1.59,1.69,0.4,0.47
-33498,12,099,12099,14557,5673,18954230,18954230,14557,5673,18954230,18954230,1320134,664594,6171965244,5101663125,100,100,100,100,1.1,0.85,0.31,0.37
-33503,12,057,12057,108,35,1675120,1673643,108,35,1675120,1673643,1229226,536092,3278314397,2642341101,100,100,100,100,0.01,0.01,0.05,0.06
-33510,12,057,12057,27610,11221,20482071,19232229,27610,11221,20482071,19232229,1229226,536092,3278314397,2642341101,100,100,100,100,2.25,2.09,0.62,0.73
-33511,12,057,12057,52003,22336,43407420,41143907,52003,22336,43407420,41143907,1229226,536092,3278314397,2642341101,100,100,100,100,4.23,4.17,1.32,1.56
-33513,12,119,12119,12086,5578,238633517,233162025,12086,5578,238633517,233162025,93420,53026,1501741032,1416548738,100,100,100,100,12.94,10.52,15.89,16.46
-33514,12,119,12119,1811,736,142813045,128926915,1811,736,142813045,128926915,93420,53026,1501741032,1416548738,100,100,100,100,1.94,1.39,9.51,9.1
-33521,12,119,12119,599,285,5132736,5132736,599,285,5132736,5132736,93420,53026,1501741032,1416548738,100,100,100,100,0.64,0.54,0.34,0.36
-33523,12,053,12053,4385,2267,22081628,21034696,18313,7812,316230382,306535527,172778,84504,1525557687,1223869127,23.94,29.02,6.98,6.86,2.54,2.68,1.45,1.72
-33523,12,101,12101,13928,5545,294148754,285500831,18313,7812,316230382,306535527,464697,228928,2249284841,1934425891,76.06,70.98,93.02,93.14,3,2.42,13.08,14.76
-33525,12,101,12101,18439,8393,309502346,301660595,18439,8393,309502346,301660595,464697,228928,2249284841,1934425891,100,100,100,100,3.97,3.67,13.76,15.59
-33527,12,057,12057,15203,5185,82034409,80466350,15203,5185,82034409,80466350,1229226,536092,3278314397,2642341101,100,100,100,100,1.24,0.97,2.5,3.05
-33534,12,057,12057,12839,5021,39427486,32021700,12839,5021,39427486,32021700,1229226,536092,3278314397,2642341101,100,100,100,100,1.04,0.94,1.2,1.21
-33538,12,119,12119,4789,2863,280584992,241658541,4789,2863,280584992,241658541,93420,53026,1501741032,1416548738,100,100,100,100,5.13,5.4,18.68,17.06
-33540,12,057,12057,84,34,9889776,9879174,8752,4826,90940689,90751526,1229226,536092,3278314397,2642341101,0.96,0.7,10.87,10.89,0.01,0.01,0.3,0.37
-33540,12,101,12101,8668,4792,81050913,80872352,8752,4826,90940689,90751526,464697,228928,2249284841,1934425891,99.04,99.3,89.13,89.11,1.87,2.09,3.6,4.18
-33541,12,101,12101,19759,12695,64076025,63773612,19759,12695,64076025,63773612,464697,228928,2249284841,1934425891,100,100,100,100,4.25,5.55,2.85,3.3
-33542,12,101,12101,20824,13125,27142352,27031553,20824,13125,27142352,27031553,464697,228928,2249284841,1934425891,100,100,100,100,4.48,5.73,1.21,1.4
-33543,12,101,12101,21898,9251,53246823,53215991,21898,9251,53246823,53215991,464697,228928,2249284841,1934425891,100,100,100,100,4.71,4.04,2.37,2.75
-33544,12,101,12101,22800,8769,89308595,89067363,22800,8769,89308595,89067363,464697,228928,2249284841,1934425891,100,100,100,100,4.91,3.83,3.97,4.6
-33545,12,101,12101,13996,5192,78219647,76290075,13996,5192,78219647,76290075,464697,228928,2249284841,1934425891,100,100,100,100,3.01,2.27,3.48,3.94
-33547,12,057,12057,19813,6773,391379349,370616674,19813,6773,391379349,370616674,1229226,536092,3278314397,2642341101,100,100,100,100,1.61,1.26,11.94,14.03
-33548,12,057,12057,5651,2279,22421999,19384926,5807,2335,23275659,20225460,1229226,536092,3278314397,2642341101,97.31,97.6,96.33,95.84,0.46,0.43,0.68,0.73
-33548,12,101,12101,156,56,853660,840534,5807,2335,23275659,20225460,464697,228928,2249284841,1934425891,2.69,2.4,3.67,4.16,0.03,0.02,0.04,0.04
-33549,12,057,12057,12324,5227,27169705,24449670,16132,6962,33554330,30420933,1229226,536092,3278314397,2642341101,76.39,75.08,80.97,80.37,1,0.98,0.83,0.93
-33549,12,101,12101,3808,1735,6384625,5971263,16132,6962,33554330,30420933,464697,228928,2249284841,1934425891,23.61,24.92,19.03,19.63,0.82,0.76,0.28,0.31
-33556,12,057,12057,15751,6099,89783258,79534953,22015,8642,106060220,94850342,1229226,536092,3278314397,2642341101,71.55,70.57,84.65,83.85,1.28,1.14,2.74,3.01
-33556,12,101,12101,6264,2543,16276962,15315389,22015,8642,106060220,94850342,464697,228928,2249284841,1934425891,28.45,29.43,15.35,16.15,1.35,1.11,0.72,0.79
-33558,12,057,12057,17142,6983,32245904,28931550,20064,8624,49221045,45010975,1229226,536092,3278314397,2642341101,85.44,80.97,65.51,64.28,1.39,1.3,0.98,1.09
-33558,12,101,12101,2922,1641,16975141,16079425,20064,8624,49221045,45010975,464697,228928,2249284841,1934425891,14.56,19.03,34.49,35.72,0.63,0.72,0.75,0.83
-33559,12,057,12057,8171,4040,20042291,19503648,15427,6865,33524187,32735317,1229226,536092,3278314397,2642341101,52.97,58.85,59.78,59.58,0.66,0.75,0.61,0.74
-33559,12,101,12101,7256,2825,13481896,13231669,15427,6865,33524187,32735317,464697,228928,2249284841,1934425891,47.03,41.15,40.22,40.42,1.56,1.23,0.6,0.68
-33563,12,057,12057,25488,10224,39418411,38255052,25488,10224,39418411,38255052,1229226,536092,3278314397,2642341101,100,100,100,100,2.07,1.91,1.2,1.45
-33565,12,057,12057,17975,7143,230733160,226718597,17975,7143,230733160,226718597,1229226,536092,3278314397,2642341101,100,100,100,100,1.46,1.33,7.04,8.58
-33566,12,057,12057,19522,7278,62064826,59431310,19522,7278,62064826,59431310,1229226,536092,3278314397,2642341101,100,100,100,100,1.59,1.36,1.89,2.25
-33567,12,057,12057,11505,3869,116097009,109096845,11505,3869,116097009,109096845,1229226,536092,3278314397,2642341101,100,100,100,100,0.94,0.72,3.54,4.13
-33569,12,057,12057,23074,9100,39209701,37623601,23074,9100,39209701,37623601,1229226,536092,3278314397,2642341101,100,100,100,100,1.88,1.7,1.2,1.42
-33570,12,057,12057,20758,9195,123619520,102044862,20758,9195,123619520,102044862,1229226,536092,3278314397,2642341101,100,100,100,100,1.69,1.72,3.77,3.86
-33572,12,057,12057,14117,6742,48318752,40777733,14117,6742,48318752,40777733,1229226,536092,3278314397,2642341101,100,100,100,100,1.15,1.26,1.47,1.54
-33573,12,057,12057,19172,13836,47935950,45694155,19172,13836,47935950,45694155,1229226,536092,3278314397,2642341101,100,100,100,100,1.56,2.58,1.46,1.73
-33576,12,101,12101,3784,2046,41368497,41022742,3784,2046,41368497,41022742,464697,228928,2249284841,1934425891,100,100,100,100,0.81,0.89,1.84,2.12
-33578,12,057,12057,36693,16284,62210783,55818110,36693,16284,62210783,55818110,1229226,536092,3278314397,2642341101,100,100,100,100,2.99,3.04,1.9,2.11
-33579,12,057,12057,25723,8901,56654898,55263537,25723,8901,56654898,55263537,1229226,536092,3278314397,2642341101,100,100,100,100,2.09,1.66,1.73,2.09
-33584,12,057,12057,25392,9785,57510569,55407634,25392,9785,57510569,55407634,1229226,536092,3278314397,2642341101,100,100,100,100,2.07,1.83,1.75,2.1
-33585,12,119,12119,1058,536,45292237,44358773,1058,536,45292237,44358773,93420,53026,1501741032,1416548738,100,100,100,100,1.13,1.01,3.02,3.13
-33592,12,057,12057,10091,4634,132201458,126962733,10091,4634,132201458,126962733,1229226,536092,3278314397,2642341101,100,100,100,100,0.82,0.86,4.03,4.8
-33594,12,057,12057,32677,12810,28022265,26901761,32677,12810,28022265,26901761,1229226,536092,3278314397,2642341101,100,100,100,100,2.66,2.39,0.85,1.02
-33596,12,057,12057,29283,10521,31204212,30255632,29283,10521,31204212,30255632,1229226,536092,3278314397,2642341101,100,100,100,100,2.38,1.96,0.95,1.15
-33597,12,053,12053,1336,564,96463780,88877257,8026,3769,358805018,340423698,172778,84504,1525557687,1223869127,16.65,14.96,26.88,26.11,0.77,0.67,6.32,7.26
-33597,12,101,12101,42,25,14530114,14528108,8026,3769,358805018,340423698,464697,228928,2249284841,1934425891,0.52,0.66,4.05,4.27,0.01,0.01,0.65,0.75
-33597,12,119,12119,6648,3180,247811124,237018333,8026,3769,358805018,340423698,93420,53026,1501741032,1416548738,82.83,84.37,69.07,69.62,7.12,6,16.5,16.73
-33598,12,057,12057,13505,4314,238029146,235403022,13665,4350,283310487,280287553,1229226,536092,3278314397,2642341101,98.83,99.17,84.02,83.99,1.1,0.8,7.26,8.91
-33598,12,081,12081,160,36,45281341,44884531,13665,4350,283310487,280287553,322833,172690,2312026999,1924182235,1.17,0.83,15.98,16.01,0.05,0.02,1.96,2.33
-33602,12,057,12057,11515,7994,7537401,6602451,11515,7994,7537401,6602451,1229226,536092,3278314397,2642341101,100,100,100,100,0.94,1.49,0.23,0.25
-33603,12,057,12057,19100,8992,10962450,10711562,19100,8992,10962450,10711562,1229226,536092,3278314397,2642341101,100,100,100,100,1.55,1.68,0.33,0.41
-33604,12,057,12057,35485,16528,20402082,19279504,35485,16528,20402082,19279504,1229226,536092,3278314397,2642341101,100,100,100,100,2.89,3.08,0.62,0.73
-33605,12,057,12057,17073,7995,23877797,20278661,17073,7995,23877797,20278661,1229226,536092,3278314397,2642341101,100,100,100,100,1.39,1.49,0.73,0.77
-33606,12,057,12057,17746,8460,10728255,8501033,17746,8460,10728255,8501033,1229226,536092,3278314397,2642341101,100,100,100,100,1.44,1.58,0.33,0.32
-33607,12,057,12057,23541,11159,24840428,23390221,23541,11159,24840428,23390221,1229226,536092,3278314397,2642341101,100,100,100,100,1.92,2.08,0.76,0.89
-33609,12,057,12057,15999,8774,12852253,11328513,15999,8774,12852253,11328513,1229226,536092,3278314397,2642341101,100,100,100,100,1.3,1.64,0.39,0.43
-33610,12,057,12057,39222,16295,48463261,46243604,39222,16295,48463261,46243604,1229226,536092,3278314397,2642341101,100,100,100,100,3.19,3.04,1.48,1.75
-33611,12,057,12057,29478,16077,18594225,16523935,29478,16077,18594225,16523935,1229226,536092,3278314397,2642341101,100,100,100,100,2.4,3,0.57,0.63
-33612,12,057,12057,44601,21080,27691585,26462529,44601,21080,27691585,26462529,1229226,536092,3278314397,2642341101,100,100,100,100,3.63,3.93,0.84,1
-33613,12,057,12057,31990,17193,21433106,19040086,31990,17193,21433106,19040086,1229226,536092,3278314397,2642341101,100,100,100,100,2.6,3.21,0.65,0.72
-33614,12,057,12057,46449,20488,26339335,25321699,46449,20488,26339335,25321699,1229226,536092,3278314397,2642341101,100,100,100,100,3.78,3.82,0.8,0.96
-33615,12,057,12057,43453,19155,24882186,22332651,43453,19155,24882186,22332651,1229226,536092,3278314397,2642341101,100,100,100,100,3.53,3.57,0.76,0.85
-33616,12,057,12057,13560,6552,11957264,9844232,13560,6552,11957264,9844232,1229226,536092,3278314397,2642341101,100,100,100,100,1.1,1.22,0.36,0.37
-33617,12,057,12057,41443,19966,23175527,22267698,41443,19966,23175527,22267698,1229226,536092,3278314397,2642341101,100,100,100,100,3.37,3.72,0.71,0.84
-33618,12,057,12057,25570,12311,25178056,22435895,25570,12311,25178056,22435895,1229226,536092,3278314397,2642341101,100,100,100,100,2.08,2.3,0.77,0.85
-33619,12,057,12057,34581,12548,76717667,68869874,34581,12548,76717667,68869874,1229226,536092,3278314397,2642341101,100,100,100,100,2.81,2.34,2.34,2.61
-33620,12,057,12057,5158,132,2311299,2296954,5158,132,2311299,2296954,1229226,536092,3278314397,2642341101,100,100,100,100,0.42,0.02,0.07,0.09
-33621,12,057,12057,1643,438,25410562,21574285,1643,438,25410562,21574285,1229226,536092,3278314397,2642341101,100,100,100,100,0.13,0.08,0.78,0.82
-33624,12,057,12057,37457,16210,24632619,23241719,37457,16210,24632619,23241719,1229226,536092,3278314397,2642341101,100,100,100,100,3.05,3.02,0.75,0.88
-33625,12,057,12057,24645,9676,24777989,23694618,24645,9676,24777989,23694618,1229226,536092,3278314397,2642341101,100,100,100,100,2,1.8,0.76,0.9
-33626,12,057,12057,27557,11297,38025678,35317253,27557,11297,38025678,35317253,1229226,536092,3278314397,2642341101,100,100,100,100,2.24,2.11,1.16,1.34
-33629,12,057,12057,23638,11353,13540084,12468168,23638,11353,13540084,12468168,1229226,536092,3278314397,2642341101,100,100,100,100,1.92,2.12,0.41,0.47
-33634,12,057,12057,20225,7889,22723313,21286196,20225,7889,22723313,21286196,1229226,536092,3278314397,2642341101,100,100,100,100,1.65,1.47,0.69,0.81
-33635,12,057,12057,15741,7208,15995933,14724227,15741,7208,15995933,14724227,1229226,536092,3278314397,2642341101,100,100,100,100,1.28,1.34,0.49,0.56
-33637,12,057,12057,15351,7273,21288766,20111193,15351,7273,21288766,20111193,1229226,536092,3278314397,2642341101,100,100,100,100,1.25,1.36,0.65,0.76
-33647,12,057,12057,55034,22854,91676750,87776213,55034,22854,91676750,87776213,1229226,536092,3278314397,2642341101,100,100,100,100,4.48,4.26,2.8,3.32
-33701,12,103,12103,15014,11071,10366059,6908770,15014,11071,10366059,6908770,916542,503634,1575041817,709135878,100,100,100,100,1.64,2.2,0.66,0.97
-33702,12,103,12103,29664,15633,32946039,25750992,29664,15633,32946039,25750992,916542,503634,1575041817,709135878,100,100,100,100,3.24,3.1,2.09,3.63
-33703,12,103,12103,23680,11945,18020336,13526855,23680,11945,18020336,13526855,916542,503634,1575041817,709135878,100,100,100,100,2.58,2.37,1.14,1.91
-33704,12,103,12103,16098,8537,11694202,8878566,16098,8537,11694202,8878566,916542,503634,1575041817,709135878,100,100,100,100,1.76,1.7,0.74,1.25
-33705,12,103,12103,26435,13605,21851225,15674376,26435,13605,21851225,15674376,916542,503634,1575041817,709135878,100,100,100,100,2.88,2.7,1.39,2.21
-33706,12,103,12103,15901,13515,24288158,9466528,15901,13515,24288158,9466528,916542,503634,1575041817,709135878,100,100,100,100,1.73,2.68,1.54,1.33
-33707,12,103,12103,24599,15810,19333029,13640941,24599,15810,19333029,13640941,916542,503634,1575041817,709135878,100,100,100,100,2.68,3.14,1.23,1.92
-33708,12,103,12103,15447,12793,20891237,8834919,15447,12793,20891237,8834919,916542,503634,1575041817,709135878,100,100,100,100,1.69,2.54,1.33,1.25
-33709,12,103,12103,26023,14296,14531001,13294587,26023,14296,14531001,13294587,916542,503634,1575041817,709135878,100,100,100,100,2.84,2.84,0.92,1.87
-33710,12,103,12103,32780,15644,23703129,20556531,32780,15644,23703129,20556531,916542,503634,1575041817,709135878,100,100,100,100,3.58,3.11,1.5,2.9
-33711,12,103,12103,19162,8995,14935895,12348595,19162,8995,14935895,12348595,916542,503634,1575041817,709135878,100,100,100,100,2.09,1.79,0.95,1.74
-33712,12,103,12103,25066,11732,16965376,15167346,25066,11732,16965376,15167346,916542,503634,1575041817,709135878,100,100,100,100,2.73,2.33,1.08,2.14
-33713,12,103,12103,29812,14834,17287467,16973901,29812,14834,17287467,16973901,916542,503634,1575041817,709135878,100,100,100,100,3.25,2.95,1.1,2.39
-33714,12,103,12103,18531,9798,9727444,9589008,18531,9798,9727444,9589008,916542,503634,1575041817,709135878,100,100,100,100,2.02,1.95,0.62,1.35
-33715,12,103,12103,7407,6646,33112151,9453337,7407,6646,33112151,9453337,916542,503634,1575041817,709135878,100,100,100,100,0.81,1.32,2.1,1.33
-33716,12,103,12103,15424,9840,22270612,18839096,15424,9840,22270612,18839096,916542,503634,1575041817,709135878,100,100,100,100,1.68,1.95,1.41,2.66
-33744,12,103,12103,148,1,1513086,1494401,148,1,1513086,1494401,916542,503634,1575041817,709135878,100,100,100,100,0.02,0,0.1,0.21
-33755,12,103,12103,26146,11821,15679536,13906331,26146,11821,15679536,13906331,916542,503634,1575041817,709135878,100,100,100,100,2.85,2.35,1,1.96
-33756,12,103,12103,31275,15921,23295042,18740077,31275,15921,23295042,18740077,916542,503634,1575041817,709135878,100,100,100,100,3.41,3.16,1.48,2.64
-33759,12,103,12103,17820,9155,24144852,14006906,17820,9155,24144852,14006906,916542,503634,1575041817,709135878,100,100,100,100,1.94,1.82,1.53,1.98
-33760,12,103,12103,15133,7549,13830488,13246579,15133,7549,13830488,13246579,916542,503634,1575041817,709135878,100,100,100,100,1.65,1.5,0.88,1.87
-33761,12,103,12103,18167,10475,14102877,13770231,18167,10475,14102877,13770231,916542,503634,1575041817,709135878,100,100,100,100,1.98,2.08,0.9,1.94
-33762,12,103,12103,8499,3151,23006443,18919599,8499,3151,23006443,18919599,916542,503634,1575041817,709135878,100,100,100,100,0.93,0.63,1.46,2.67
-33763,12,103,12103,17887,11212,9605607,8991793,17887,11212,9605607,8991793,916542,503634,1575041817,709135878,100,100,100,100,1.95,2.23,0.61,1.27
-33764,12,103,12103,24045,14288,19487663,17247428,24045,14288,19487663,17247428,916542,503634,1575041817,709135878,100,100,100,100,2.62,2.84,1.24,2.43
-33765,12,103,12103,13275,6714,10821885,10644801,13275,6714,10821885,10644801,916542,503634,1575041817,709135878,100,100,100,100,1.45,1.33,0.69,1.5
-33767,12,103,12103,8007,8450,19746465,5141176,8007,8450,19746465,5141176,916542,503634,1575041817,709135878,100,100,100,100,0.87,1.68,1.25,0.72
-33770,12,103,12103,25281,14697,14831487,13425573,25281,14697,14831487,13425573,916542,503634,1575041817,709135878,100,100,100,100,2.76,2.92,0.94,1.89
-33771,12,103,12103,29839,18113,15950638,15231284,29839,18113,15950638,15231284,916542,503634,1575041817,709135878,100,100,100,100,3.26,3.6,1.01,2.15
-33772,12,103,12103,22981,12485,15722015,13449376,22981,12485,15722015,13449376,916542,503634,1575041817,709135878,100,100,100,100,2.51,2.48,1,1.9
-33773,12,103,12103,16826,8532,14429468,12923742,16826,8532,14429468,12923742,916542,503634,1575041817,709135878,100,100,100,100,1.84,1.69,0.92,1.82
-33774,12,103,12103,17712,10148,12898505,11914630,17712,10148,12898505,11914630,916542,503634,1575041817,709135878,100,100,100,100,1.93,2.01,0.82,1.68
-33776,12,103,12103,12402,5591,10262907,8942454,12402,5591,10262907,8942454,916542,503634,1575041817,709135878,100,100,100,100,1.35,1.11,0.65,1.26
-33777,12,103,12103,17140,7997,17233756,14892745,17140,7997,17233756,14892745,916542,503634,1575041817,709135878,100,100,100,100,1.87,1.59,1.09,2.1
-33778,12,103,12103,14263,7445,10109014,9668584,14263,7445,10109014,9668584,916542,503634,1575041817,709135878,100,100,100,100,1.56,1.48,0.64,1.36
-33781,12,103,12103,25922,11672,17687682,17242783,25922,11672,17687682,17242783,916542,503634,1575041817,709135878,100,100,100,100,2.83,2.32,1.12,2.43
-33782,12,103,12103,20850,10187,14877916,13942814,20850,10187,14877916,13942814,916542,503634,1575041817,709135878,100,100,100,100,2.27,2.02,0.94,1.97
-33785,12,103,12103,5533,6101,8329232,3056612,5533,6101,8329232,3056612,916542,503634,1575041817,709135878,100,100,100,100,0.6,1.21,0.53,0.43
-33786,12,103,12103,1669,1160,5783598,1392879,1669,1160,5783598,1392879,916542,503634,1575041817,709135878,100,100,100,100,0.18,0.23,0.37,0.2
-33801,12,105,12105,33741,15131,54551029,49458166,33741,15131,54551029,49458166,602095,281214,5207301593,4656375819,100,100,100,100,5.6,5.38,1.05,1.06
-33803,12,105,12105,27094,14416,43791194,40352718,27094,14416,43791194,40352718,602095,281214,5207301593,4656375819,100,100,100,100,4.5,5.13,0.84,0.87
-33805,12,105,12105,23153,10166,78159045,69552545,23153,10166,78159045,69552545,602095,281214,5207301593,4656375819,100,100,100,100,3.85,3.62,1.5,1.49
-33809,12,105,12105,28929,12810,232663947,228769659,28929,12810,232663947,228769659,602095,281214,5207301593,4656375819,100,100,100,100,4.8,4.56,4.47,4.91
-33810,12,057,12057,297,326,21845049,21808324,44254,18967,147586650,145179675,1229226,536092,3278314397,2642341101,0.67,1.72,14.8,15.02,0.02,0.06,0.67,0.83
-33810,12,105,12105,43957,18641,125741601,123371351,44254,18967,147586650,145179675,602095,281214,5207301593,4656375819,99.33,98.28,85.2,84.98,7.3,6.63,2.41,2.65
-33811,12,105,12105,20980,8715,72692736,72022587,20980,8715,72692736,72022587,602095,281214,5207301593,4656375819,100,100,100,100,3.48,3.1,1.4,1.55
-33812,12,105,12105,13166,5032,26983189,25326239,13166,5032,26983189,25326239,602095,281214,5207301593,4656375819,100,100,100,100,2.19,1.79,0.52,0.54
-33813,12,105,12105,31698,12812,43013286,39896298,31698,12812,43013286,39896298,602095,281214,5207301593,4656375819,100,100,100,100,5.26,4.56,0.83,0.86
-33815,12,105,12105,14267,7643,20426824,19222946,14267,7643,20426824,19222946,602095,281214,5207301593,4656375819,100,100,100,100,2.37,2.72,0.39,0.41
-33823,12,105,12105,28874,12427,99768004,80584457,28874,12427,99768004,80584457,602095,281214,5207301593,4656375819,100,100,100,100,4.8,4.42,1.92,1.73
-33825,12,049,12049,73,22,32644475,32644475,24942,12093,355145790,326612758,27731,9722,1653289236,1651849564,0.29,0.18,9.19,9.99,0.26,0.23,1.97,1.98
-33825,12,055,12055,23044,11964,215441098,198983920,24942,12093,355145790,326612758,98786,55386,2864616438,2633020110,92.39,98.93,60.66,60.92,23.33,21.6,7.52,7.56
-33825,12,105,12105,1825,107,107060217,94984363,24942,12093,355145790,326612758,602095,281214,5207301593,4656375819,7.32,0.88,30.15,29.08,0.3,0.04,2.06,2.04
-33827,12,105,12105,3036,1356,91352402,78481634,3036,1356,91352402,78481634,602095,281214,5207301593,4656375819,100,100,100,100,0.5,0.48,1.75,1.69
-33830,12,105,12105,27542,10883,381012147,329297654,27542,10883,381012147,329297654,602095,281214,5207301593,4656375819,100,100,100,100,4.57,3.87,7.32,7.07
-33834,12,049,12049,7070,2090,237226356,236285629,7448,2217,489920539,466414185,27731,9722,1653289236,1651849564,94.92,94.27,48.42,50.66,25.49,21.5,14.35,14.3
-33834,12,081,12081,132,49,162107256,162038062,7448,2217,489920539,466414185,322833,172690,2312026999,1924182235,1.77,2.21,33.09,34.74,0.04,0.03,7.01,8.42
-33834,12,105,12105,246,78,90586927,68090494,7448,2217,489920539,466414185,602095,281214,5207301593,4656375819,3.3,3.52,18.49,14.6,0.04,0.03,1.74,1.46
-33837,12,105,12105,20234,10886,140559946,132758063,20234,10886,140559946,132758063,602095,281214,5207301593,4656375819,100,100,100,100,3.36,3.87,2.7,2.85
-33838,12,105,12105,3515,1619,16925705,15163082,3515,1619,16925705,15163082,602095,281214,5207301593,4656375819,100,100,100,100,0.58,0.58,0.33,0.33
-33839,12,105,12105,2756,1126,8992647,7412583,2756,1126,8992647,7412583,602095,281214,5207301593,4656375819,100,100,100,100,0.46,0.4,0.17,0.16
-33841,12,105,12105,8722,3611,449513376,411998515,8722,3611,449513376,411998515,602095,281214,5207301593,4656375819,100,100,100,100,1.45,1.28,8.63,8.85
-33843,12,105,12105,11093,5202,302077337,264722649,11093,5202,302077337,264722649,602095,281214,5207301593,4656375819,100,100,100,100,1.84,1.85,5.8,5.69
-33844,12,105,12105,33804,16590,285759352,258511093,33804,16590,285759352,258511093,602095,281214,5207301593,4656375819,100,100,100,100,5.61,5.9,5.49,5.55
-33847,12,105,12105,227,89,2816934,2809196,227,89,2816934,2809196,602095,281214,5207301593,4656375819,100,100,100,100,0.04,0.03,0.05,0.06
-33848,12,097,12097,851,426,34301640,34153835,851,426,34301640,34153835,268685,128170,3900278027,3438086444,100,100,100,100,0.32,0.33,0.88,0.99
-33849,12,105,12105,856,317,58484437,57956799,856,317,58484437,57956799,602095,281214,5207301593,4656375819,100,100,100,100,0.14,0.11,1.12,1.24
-33850,12,105,12105,7519,3692,58536548,47640965,7519,3692,58536548,47640965,602095,281214,5207301593,4656375819,100,100,100,100,1.25,1.31,1.12,1.02
-33851,12,105,12105,907,404,5544480,4914379,907,404,5544480,4914379,602095,281214,5207301593,4656375819,100,100,100,100,0.15,0.14,0.11,0.11
-33852,12,055,12055,21790,12566,943304182,863904366,21790,12566,943304182,863904366,98786,55386,2864616438,2633020110,100,100,100,100,22.06,22.69,32.93,32.81
-33853,12,105,12105,11161,5115,23806603,21132819,11161,5115,23806603,21132819,602095,281214,5207301593,4656375819,100,100,100,100,1.85,1.82,0.46,0.45
-33854,12,105,12105,194,500,442788,365048,194,500,442788,365048,602095,281214,5207301593,4656375819,100,100,100,100,0.03,0.18,0.01,0.01
-33855,12,105,12105,43,29,1711183,1711183,43,29,1711183,1711183,602095,281214,5207301593,4656375819,100,100,100,100,0.01,0.01,0.03,0.04
-33856,12,105,12105,487,497,340509,284438,487,497,340509,284438,602095,281214,5207301593,4656375819,100,100,100,100,0.08,0.18,0.01,0.01
-33857,12,055,12055,1728,1291,550338090,477570861,1728,1291,550338090,477570861,98786,55386,2864616438,2633020110,100,100,100,100,1.75,2.33,19.21,18.14
-33859,12,105,12105,10582,5356,130652681,117346353,10582,5356,130652681,117346353,602095,281214,5207301593,4656375819,100,100,100,100,1.76,1.9,2.51,2.52
-33860,12,105,12105,22886,8827,364229976,302549042,22886,8827,364229976,302549042,602095,281214,5207301593,4656375819,100,100,100,100,3.8,3.14,6.99,6.5
-33865,12,049,12049,786,337,448864211,448466324,786,337,448864211,448466324,27731,9722,1653289236,1651849564,100,100,100,100,2.83,3.47,27.15,27.15
-33867,12,105,12105,106,393,11715478,11327400,106,393,11715478,11327400,602095,281214,5207301593,4656375819,100,100,100,100,0.02,0.14,0.22,0.24
-33868,12,105,12105,11720,4307,443035948,431401128,11720,4307,443035948,431401128,602095,281214,5207301593,4656375819,100,100,100,100,1.95,1.53,8.51,9.26
-33870,12,055,12055,20601,11499,161611577,143380694,20601,11499,161611577,143380694,98786,55386,2864616438,2633020110,100,100,100,100,20.85,20.76,5.64,5.45
-33872,12,055,12055,14158,8530,50925705,50217247,14158,8530,50925705,50217247,98786,55386,2864616438,2633020110,100,100,100,100,14.33,15.4,1.78,1.91
-33873,12,049,12049,14742,5288,309019546,308982996,14742,5288,309019546,308982996,27731,9722,1653289236,1651849564,100,100,100,100,53.16,54.39,18.69,18.71
-33875,12,055,12055,11108,5739,204209540,194401238,11108,5739,204209540,194401238,98786,55386,2864616438,2633020110,100,100,100,100,11.24,10.36,7.13,7.38
-33876,12,055,12055,4968,2936,110490533,88650261,4968,2936,110490533,88650261,98786,55386,2864616438,2633020110,100,100,100,100,5.03,5.3,3.86,3.37
-33877,12,105,12105,276,145,8037781,5932090,276,145,8037781,5932090,602095,281214,5207301593,4656375819,100,100,100,100,0.05,0.05,0.15,0.13
-33880,12,105,12105,37798,15618,143021900,110404773,37798,15618,143021900,110404773,602095,281214,5207301593,4656375819,100,100,100,100,6.28,5.55,2.75,2.37
-33881,12,105,12105,29345,15130,74245735,56599839,29345,15130,74245735,56599839,602095,281214,5207301593,4656375819,100,100,100,100,4.87,5.38,1.43,1.22
-33884,12,105,12105,28763,14095,66417557,51900000,28763,14095,66417557,51900000,602095,281214,5207301593,4656375819,100,100,100,100,4.78,5.01,1.28,1.11
-33890,12,049,12049,5060,1985,625534648,625470140,5060,1985,625534648,625470140,27731,9722,1653289236,1651849564,100,100,100,100,18.25,20.42,37.84,37.86
-33896,12,097,12097,653,413,11599813,11598853,6633,4815,30595595,29207964,268685,128170,3900278027,3438086444,9.84,8.58,37.91,39.71,0.24,0.32,0.3,0.34
-33896,12,105,12105,5980,4402,18995782,17609111,6633,4815,30595595,29207964,602095,281214,5207301593,4656375819,90.16,91.42,62.09,60.29,0.99,1.57,0.36,0.38
-33897,12,105,12105,14117,11399,93282360,91509627,14117,11399,93282360,91509627,602095,281214,5207301593,4656375819,100,100,100,100,2.34,4.05,1.79,1.97
-33898,12,105,12105,15355,9181,836862482,789434435,15355,9181,836862482,789434435,602095,281214,5207301593,4656375819,100,100,100,100,2.55,3.26,16.07,16.95
-33901,12,071,12071,19500,11020,24057494,16603870,19500,11020,24057494,16603870,618754,371099,3140259588,2031879249,100,100,100,100,3.15,2.97,0.77,0.82
-33903,12,071,12071,20776,14659,39500181,32509045,20776,14659,39500181,32509045,618754,371099,3140259588,2031879249,100,100,100,100,3.36,3.95,1.26,1.6
-33904,12,071,12071,30613,19192,43356296,25192117,30613,19192,43356296,25192117,618754,371099,3140259588,2031879249,100,100,100,100,4.95,5.17,1.38,1.24
-33905,12,071,12071,31203,14386,117209221,108833120,31203,14386,117209221,108833120,618754,371099,3140259588,2031879249,100,100,100,100,5.04,3.88,3.73,5.36
-33907,12,071,12071,22138,13113,19269064,18222123,22138,13113,19269064,18222123,618754,371099,3140259588,2031879249,100,100,100,100,3.58,3.53,0.61,0.9
-33908,12,071,12071,38251,29577,116015302,83658818,38251,29577,116015302,83658818,618754,371099,3140259588,2031879249,100,100,100,100,6.18,7.97,3.69,4.12
-33909,12,071,12071,23119,10662,49133558,46519708,23119,10662,49133558,46519708,618754,371099,3140259588,2031879249,100,100,100,100,3.74,2.87,1.56,2.29
-33912,12,071,12071,15392,10109,57472403,55143201,15392,10109,57472403,55143201,618754,371099,3140259588,2031879249,100,100,100,100,2.49,2.72,1.83,2.71
-33913,12,071,12071,17103,9733,279912094,266273382,17103,9733,279912094,266273382,618754,371099,3140259588,2031879249,100,100,100,100,2.76,2.62,8.91,13.1
-33914,12,071,12071,35848,19008,91042026,57545184,35848,19008,91042026,57545184,618754,371099,3140259588,2031879249,100,100,100,100,5.79,5.12,2.9,2.83
-33916,12,071,12071,20134,10575,30356711,26532668,20134,10575,30356711,26532668,618754,371099,3140259588,2031879249,100,100,100,100,3.25,2.85,0.97,1.31
-33917,12,015,12015,133,45,20343866,20285424,28666,17576,156435145,143189941,159978,100632,2222989026,1761913582,0.46,0.26,13,14.17,0.08,0.04,0.92,1.15
-33917,12,071,12071,28533,17531,136091279,122904517,28666,17576,156435145,143189941,618754,371099,3140259588,2031879249,99.54,99.74,87,85.83,4.61,4.72,4.33,6.05
-33919,12,071,12071,27837,18725,30239201,23326476,27837,18725,30239201,23326476,618754,371099,3140259588,2031879249,100,100,100,100,4.5,5.05,0.96,1.15
-33920,12,071,12071,4947,2383,163919335,159435749,4947,2383,163919335,159435749,618754,371099,3140259588,2031879249,100,100,100,100,0.8,0.64,5.22,7.85
-33921,12,015,12015,396,645,6653317,1370099,1720,1886,33247768,7138056,159978,100632,2222989026,1761913582,23.02,34.2,20.01,19.19,0.25,0.64,0.3,0.08
-33921,12,071,12071,1324,1241,26594451,5767957,1720,1886,33247768,7138056,618754,371099,3140259588,2031879249,76.98,65.8,79.99,80.81,0.21,0.33,0.85,0.28
-33922,12,071,12071,4055,2823,107810281,42034368,4055,2823,107810281,42034368,618754,371099,3140259588,2031879249,100,100,100,100,0.66,0.76,3.43,2.07
-33924,12,071,12071,761,1854,92631018,18624473,761,1854,92631018,18624473,618754,371099,3140259588,2031879249,100,100,100,100,0.12,0.5,2.95,0.92
-33928,12,071,12071,20830,15675,199756407,186909700,20830,15675,199756407,186909700,618754,371099,3140259588,2031879249,100,100,100,100,3.37,4.22,6.36,9.2
-33930,12,051,12051,1075,359,305243173,302625440,1075,359,305243173,302625440,39140,14564,3082074727,2985609243,100,100,100,100,2.75,2.46,9.9,10.14
-33931,12,071,12071,10005,14187,55785798,28259445,10005,14187,55785798,28259445,618754,371099,3140259588,2031879249,100,100,100,100,1.62,3.82,1.78,1.39
-33935,12,043,12043,3233,1437,378252507,376433799,20383,8050,887943926,882836847,12884,6979,2555924715,2087553927,15.86,17.85,42.6,42.64,25.09,20.59,14.8,18.03
-33935,12,051,12051,17150,6613,509691419,506403048,20383,8050,887943926,882836847,39140,14564,3082074727,2985609243,84.14,82.15,57.4,57.36,43.82,45.41,16.54,16.96
-33936,12,051,12051,71,28,22146119,22146119,18994,10489,51780137,51174130,39140,14564,3082074727,2985609243,0.37,0.27,42.77,43.28,0.18,0.19,0.72,0.74
-33936,12,071,12071,18923,10461,29634018,29028011,18994,10489,51780137,51174130,618754,371099,3140259588,2031879249,99.63,99.73,57.23,56.72,3.06,2.82,0.94,1.43
-33944,12,043,12043,298,191,141469390,141131955,298,191,141469390,141131955,12884,6979,2555924715,2087553927,100,100,100,100,2.31,2.74,5.53,6.76
-33945,12,071,12071,57,140,344902,339192,57,140,344902,339192,618754,371099,3140259588,2031879249,100,100,100,100,0.01,0.04,0.01,0.02
-33946,12,015,12015,2125,2737,39879207,23613134,2125,2737,39879207,23613134,159978,100632,2222989026,1761913582,100,100,100,100,1.33,2.72,1.79,1.34
-33947,12,015,12015,8180,5576,39842249,37507601,8180,5576,39842249,37507601,159978,100632,2222989026,1761913582,100,100,100,100,5.11,5.54,1.79,2.13
-33948,12,015,12015,15958,8887,37357885,33585146,15958,8887,37357885,33585146,159978,100632,2222989026,1761913582,100,100,100,100,9.98,8.83,1.68,1.91
-33950,12,015,12015,20699,14664,78759295,58075439,20699,14664,78759295,58075439,159978,100632,2222989026,1761913582,100,100,100,100,12.94,14.57,3.54,3.3
-33952,12,015,12015,28382,16056,34941607,28556491,28382,16056,34941607,28556491,159978,100632,2222989026,1761913582,100,100,100,100,17.74,15.96,1.57,1.62
-33953,12,015,12015,5522,3753,51321843,41917341,5522,3753,51321843,41917341,159978,100632,2222989026,1761913582,100,100,100,100,3.45,3.73,2.31,2.38
-33954,12,015,12015,9290,4293,23183224,22077335,9290,4293,23183224,22077335,159978,100632,2222989026,1761913582,100,100,100,100,5.81,4.27,1.04,1.25
-33955,12,015,12015,8233,4225,140963426,136090502,10060,6289,145153051,139949558,159978,100632,2222989026,1761913582,81.84,67.18,97.11,97.24,5.15,4.2,6.34,7.72
-33955,12,071,12071,1827,2064,4189625,3859056,10060,6289,145153051,139949558,618754,371099,3140259588,2031879249,18.16,32.82,2.89,2.76,0.3,0.56,0.13,0.19
-33956,12,071,12071,3776,3260,129284259,42313445,3776,3260,129284259,42313445,618754,371099,3140259588,2031879249,100,100,100,100,0.61,0.88,4.12,2.08
-33957,12,071,12071,6469,7817,91229208,41889208,6469,7817,91229208,41889208,618754,371099,3140259588,2031879249,100,100,100,100,1.05,2.11,2.91,2.06
-33960,12,043,12043,27,28,251012558,250782578,854,502,559812097,557729863,12884,6979,2555924715,2087553927,3.16,5.58,44.84,44.96,0.21,0.4,9.82,12.01
-33960,12,055,12055,827,474,308799539,306947285,854,502,559812097,557729863,98786,55386,2864616438,2633020110,96.84,94.42,55.16,55.04,0.84,0.86,10.78,11.66
-33965,12,071,12071,1648,0,3953667,3901185,1648,0,3953667,3901185,618754,371099,3140259588,2031879249,100,0,100,100,0.27,0,0.13,0.19
-33966,12,071,12071,8251,5229,23269293,22697525,8251,5229,23269293,22697525,618754,371099,3140259588,2031879249,100,100,100,100,1.33,1.41,0.74,1.12
-33967,12,071,12071,22799,9923,20639967,19647974,22799,9923,20639967,19647974,618754,371099,3140259588,2031879249,100,100,100,100,3.68,2.67,0.66,0.97
-33971,12,071,12071,19730,7986,44063235,43601531,19730,7986,44063235,43601531,618754,371099,3140259588,2031879249,100,100,100,100,3.19,2.15,1.4,2.15
-33972,12,071,12071,10880,4877,66018885,64822264,10880,4877,66018885,64822264,618754,371099,3140259588,2031879249,100,100,100,100,1.76,1.31,2.1,3.19
-33973,12,071,12071,10798,4586,10306061,10304727,10798,4586,10306061,10304727,618754,371099,3140259588,2031879249,100,100,100,100,1.75,1.24,0.33,0.51
-33974,12,071,12071,11982,5374,60154569,58816340,11982,5374,60154569,58816340,618754,371099,3140259588,2031879249,100,100,100,100,1.94,1.45,1.92,2.89
-33976,12,071,12071,12534,4992,24025455,23987714,12534,4992,24025455,23987714,618754,371099,3140259588,2031879249,100,100,100,100,2.03,1.35,0.77,1.18
-33980,12,015,12015,10322,7343,34855447,23806276,10322,7343,34855447,23806276,159978,100632,2222989026,1761913582,100,100,100,100,6.45,7.3,1.57,1.35
-33981,12,015,12015,9534,5710,75265038,62859149,9534,5710,75265038,62859149,159978,100632,2222989026,1761913582,100,100,100,100,5.96,5.67,3.39,3.57
-33982,12,015,12015,9176,5177,1164074483,1133893761,9176,5177,1164074483,1133893761,159978,100632,2222989026,1761913582,100,100,100,100,5.74,5.14,52.37,64.36
-33983,12,015,12015,13954,7699,30345514,27555116,13954,7699,30345514,27555116,159978,100632,2222989026,1761913582,100,100,100,100,8.72,7.65,1.37,1.56
-33990,12,071,12071,28173,13571,29721839,24293068,28173,13571,29721839,24293068,618754,371099,3140259588,2031879249,100,100,100,100,4.55,3.66,0.95,1.2
-33991,12,071,12071,18010,8210,46807343,36640287,18010,8210,46807343,36640287,618754,371099,3140259588,2031879249,100,100,100,100,2.91,2.21,1.49,1.8
-33993,12,071,12071,20628,9585,195624913,158361038,20628,9585,195624913,158361038,618754,371099,3140259588,2031879249,100,100,100,100,3.33,2.58,6.23,7.79
-34101,12,021,12021,10,40,24814375,9594094,10,40,24814375,9594094,321520,197298,5969961679,5175636190,100,100,100,100,0,0.02,0.42,0.19
-34102,12,021,12021,10460,9011,20783547,14643960,10460,9011,20783547,14643960,321520,197298,5969961679,5175636190,100,100,100,100,3.25,4.57,0.35,0.28
-34103,12,021,12021,12150,10165,11270641,8908479,12150,10165,11270641,8908479,321520,197298,5969961679,5175636190,100,100,100,100,3.78,5.15,0.19,0.17
-34104,12,021,12021,23691,14867,27507945,25862835,23691,14867,27507945,25862835,321520,197298,5969961679,5175636190,100,100,100,100,7.37,7.54,0.46,0.5
-34105,12,021,12021,13933,9693,27531714,25714092,13933,9693,27531714,25714092,321520,197298,5969961679,5175636190,100,100,100,100,4.33,4.91,0.46,0.5
-34108,12,021,12021,16874,14295,24112868,20096775,16874,14295,24112868,20096775,321520,197298,5969961679,5175636190,100,100,100,100,5.25,7.25,0.4,0.39
-34109,12,021,12021,23338,13923,34502714,32466806,23338,13923,34502714,32466806,321520,197298,5969961679,5175636190,100,100,100,100,7.26,7.06,0.58,0.63
-34110,12,021,12021,20602,15121,42093643,39298884,20762,15272,43196033,40397600,321520,197298,5969961679,5175636190,99.23,99.01,97.45,97.28,6.41,7.66,0.71,0.76
-34110,12,071,12071,160,151,1102390,1098716,20762,15272,43196033,40397600,618754,371099,3140259588,2031879249,0.77,0.99,2.55,2.72,0.03,0.04,0.04,0.05
-34112,12,021,12021,27002,18691,44411932,41652842,27002,18691,44411932,41652842,321520,197298,5969961679,5175636190,100,100,100,100,8.4,9.47,0.74,0.8
-34113,12,021,12021,17971,10683,88846108,72608520,17971,10683,88846108,72608520,321520,197298,5969961679,5175636190,100,100,100,100,5.59,5.41,1.49,1.4
-34114,12,021,12021,13653,11630,660292084,523118722,13653,11630,660292084,523118722,321520,197298,5969961679,5175636190,100,100,100,100,4.25,5.89,11.06,10.11
-34116,12,021,12021,30005,10818,25611185,24765016,30005,10818,25611185,24765016,321520,197298,5969961679,5175636190,100,100,100,100,9.33,5.48,0.43,0.48
-34117,12,021,12021,14250,5242,188007036,184019095,14250,5242,188007036,184019095,321520,197298,5969961679,5175636190,100,100,100,100,4.43,2.66,3.15,3.56
-34119,12,021,12021,25674,14561,60378170,58291178,25756,14614,61367972,59113797,321520,197298,5969961679,5175636190,99.68,99.64,98.39,98.61,7.99,7.38,1.01,1.13
-34119,12,071,12071,82,53,989802,822619,25756,14614,61367972,59113797,618754,371099,3140259588,2031879249,0.32,0.36,1.61,1.39,0.01,0.01,0.03,0.04
-34120,12,021,12021,26147,10989,401677093,391380888,26147,10989,401677093,391380888,321520,197298,5969961679,5175636190,100,100,100,100,8.13,5.57,6.73,7.56
-34134,12,021,12021,1769,1557,6448395,3372135,14112,13562,41591929,29870789,321520,197298,5969961679,5175636190,12.54,11.48,15.5,11.29,0.55,0.79,0.11,0.07
-34134,12,071,12071,12343,12005,35143534,26498654,14112,13562,41591929,29870789,618754,371099,3140259588,2031879249,87.46,88.52,84.5,88.71,1.99,3.23,1.12,1.3
-34135,12,071,12071,37315,24362,98102459,94660774,37315,24362,98102459,94660774,618754,371099,3140259588,2031879249,100,100,100,100,6.03,6.56,3.12,4.66
-34137,12,021,12021,227,106,25749104,25503046,227,106,25749104,25503046,321520,197298,5969961679,5175636190,100,100,100,100,0.07,0.05,0.43,0.49
-34138,12,021,12021,359,255,14015116,1724909,359,255,14015116,1724909,321520,197298,5969961679,5175636190,100,100,100,100,0.11,0.13,0.23,0.03
-34139,12,021,12021,561,625,27184940,8911169,561,625,27184940,8911169,321520,197298,5969961679,5175636190,100,100,100,100,0.17,0.32,0.46,0.17
-34140,12,021,12021,273,382,4686375,3446848,273,382,4686375,3446848,321520,197298,5969961679,5175636190,100,100,100,100,0.08,0.19,0.08,0.07
-34141,12,021,12021,226,127,2389621878,2376957758,232,134,2910960366,2898296246,321520,197298,5969961679,5175636190,97.41,94.78,82.09,82.01,0.07,0.06,40.03,45.93
-34141,12,087,12087,6,7,521338488,521338488,232,134,2910960366,2898296246,73090,52764,9680143181,2546689189,2.59,5.22,17.91,17.99,0.01,0.01,5.39,20.47
-34142,12,021,12021,25938,7404,1059789518,1038380054,27304,7496,1559179347,1518867990,321520,197298,5969961679,5175636190,95,98.77,67.97,68.37,8.07,3.75,17.75,20.06
-34142,12,051,12051,1366,92,499389829,480487936,27304,7496,1559179347,1518867990,39140,14564,3082074727,2985609243,5,1.23,32.03,31.63,3.49,0.63,16.2,16.09
-34145,12,021,12021,16407,17113,105699337,42143921,16407,17113,105699337,42143921,321520,197298,5969961679,5175636190,100,100,100,100,5.1,8.67,1.77,0.81
-34201,12,081,12081,3682,2271,9137255,8851637,3682,2271,9137255,8851637,322833,172690,2312026999,1924182235,100,100,100,100,1.14,1.32,0.4,0.46
-34202,12,081,12081,19816,9161,61880537,61531255,19816,9161,61880537,61531255,322833,172690,2312026999,1924182235,100,100,100,100,6.14,5.3,2.68,3.2
-34203,12,081,12081,34862,17342,42540610,40880058,34862,17342,42540610,40880058,322833,172690,2312026999,1924182235,100,100,100,100,10.8,10.04,1.84,2.12
-34205,12,081,12081,29656,16102,19243045,16797153,29656,16102,19243045,16797153,322833,172690,2312026999,1924182235,100,100,100,100,9.19,9.32,0.83,0.87
-34207,12,081,12081,29728,18305,17946126,16020341,29728,18305,17946126,16020341,322833,172690,2312026999,1924182235,100,100,100,100,9.21,10.6,0.78,0.83
-34208,12,081,12081,33121,13903,51042360,41881603,33121,13903,51042360,41881603,322833,172690,2312026999,1924182235,100,100,100,100,10.26,8.05,2.21,2.18
-34209,12,081,12081,31816,17475,53744435,32616404,31816,17475,53744435,32616404,322833,172690,2312026999,1924182235,100,100,100,100,9.86,10.12,2.32,1.7
-34210,12,081,12081,15916,11186,50033526,23784990,15916,11186,50033526,23784990,322833,172690,2312026999,1924182235,100,100,100,100,4.93,6.48,2.16,1.24
-34211,12,081,12081,2775,1298,94507831,94352953,2775,1298,94507831,94352953,322833,172690,2312026999,1924182235,100,100,100,100,0.86,0.75,4.09,4.9
-34212,12,081,12081,15146,6763,59806411,52936458,15146,6763,59806411,52936458,322833,172690,2312026999,1924182235,100,100,100,100,4.69,3.92,2.59,2.75
-34215,12,081,12081,768,682,3242237,1141987,768,682,3242237,1141987,322833,172690,2312026999,1924182235,100,100,100,100,0.24,0.39,0.14,0.06
-34216,12,081,12081,1503,1559,7527631,1989201,1503,1559,7527631,1989201,322833,172690,2312026999,1924182235,100,100,100,100,0.47,0.9,0.33,0.1
-34217,12,081,12081,5007,6032,18294967,5675888,5007,6032,18294967,5675888,322833,172690,2312026999,1924182235,100,100,100,100,1.55,3.49,0.79,0.29
-34219,12,081,12081,17135,7302,371821981,366940191,17135,7302,371821981,366940191,322833,172690,2312026999,1924182235,100,100,100,100,5.31,4.23,16.08,19.07
-34221,12,081,12081,39457,19260,209647227,142298172,39457,19260,209647227,142298172,322833,172690,2312026999,1924182235,100,100,100,100,12.22,11.15,9.07,7.4
-34222,12,081,12081,11952,6855,16563339,13598176,11952,6855,16563339,13598176,322833,172690,2312026999,1924182235,100,100,100,100,3.7,3.97,0.72,0.71
-34223,12,015,12015,2726,3267,13464817,5592847,16875,13014,99359116,73932816,159978,100632,2222989026,1761913582,16.15,25.1,13.55,7.56,1.7,3.25,0.61,0.32
-34223,12,115,12115,14149,9747,85894299,68339969,16875,13014,99359116,73932816,379448,228413,1878631880,1439690708,83.85,74.9,86.45,92.44,3.73,4.27,4.57,4.75
-34224,12,015,12015,15348,10555,36553782,31498142,15394,10577,38660873,33553075,159978,100632,2222989026,1761913582,99.7,99.79,94.55,93.88,9.59,10.49,1.64,1.79
-34224,12,115,12115,46,22,2107091,2054933,15394,10577,38660873,33553075,379448,228413,1878631880,1439690708,0.3,0.21,5.45,6.12,0.01,0.01,0.11,0.14
-34228,12,081,12081,2398,3244,19923592,4388418,6888,8814,32867442,10697022,322833,172690,2312026999,1924182235,34.81,36.81,60.62,41.02,0.74,1.88,0.86,0.23
-34228,12,115,12115,4490,5570,12943850,6308604,6888,8814,32867442,10697022,379448,228413,1878631880,1439690708,65.19,63.19,39.38,58.98,1.18,2.44,0.69,0.44
-34229,12,115,12115,7192,4167,21151426,15536934,7192,4167,21151426,15536934,379448,228413,1878631880,1439690708,100,100,100,100,1.9,1.82,1.13,1.08
-34231,12,115,12115,30268,18187,29261592,24426338,30268,18187,29261592,24426338,379448,228413,1878631880,1439690708,100,100,100,100,7.98,7.96,1.56,1.7
-34232,12,115,12115,30969,15035,29412765,28416520,30969,15035,29412765,28416520,379448,228413,1878631880,1439690708,100,100,100,100,8.16,6.58,1.57,1.97
-34233,12,115,12115,16653,8727,16546601,15915125,16653,8727,16546601,15915125,379448,228413,1878631880,1439690708,100,100,100,100,4.39,3.82,0.88,1.11
-34234,12,115,12115,19788,9939,24288741,17209932,19788,9939,24288741,17209932,379448,228413,1878631880,1439690708,100,100,100,100,5.21,4.35,1.29,1.2
-34235,12,115,12115,13640,8225,19139280,16958866,13640,8225,19139280,16958866,379448,228413,1878631880,1439690708,100,100,100,100,3.59,3.6,1.02,1.18
-34236,12,115,12115,12394,9709,21177320,9115688,12394,9709,21177320,9115688,379448,228413,1878631880,1439690708,100,100,100,100,3.27,4.25,1.13,0.63
-34237,12,115,12115,16304,8120,10302532,10135328,16304,8120,10302532,10135328,379448,228413,1878631880,1439690708,100,100,100,100,4.3,3.55,0.55,0.7
-34238,12,115,12115,17500,11579,36766723,34263144,17500,11579,36766723,34263144,379448,228413,1878631880,1439690708,100,100,100,100,4.61,5.07,1.96,2.38
-34239,12,115,12115,15038,8317,13067906,11544018,15038,8317,13067906,11544018,379448,228413,1878631880,1439690708,100,100,100,100,3.96,3.64,0.7,0.8
-34240,12,115,12115,11501,5549,185703554,176703599,11501,5549,185703554,176703599,379448,228413,1878631880,1439690708,100,100,100,100,3.03,2.43,9.89,12.27
-34241,12,115,12115,13590,6275,185111710,177942212,13590,6275,185111710,177942212,379448,228413,1878631880,1439690708,100,100,100,100,3.58,2.75,9.85,12.36
-34242,12,115,12115,8865,10854,21265113,9323137,8865,10854,21265113,9323137,379448,228413,1878631880,1439690708,100,100,100,100,2.34,4.75,1.13,0.65
-34243,12,081,12081,21538,11652,43144480,37436309,26115,14104,51356144,45204922,322833,172690,2312026999,1924182235,82.47,82.61,84.01,82.81,6.67,6.75,1.87,1.95
-34243,12,115,12115,4577,2452,8211664,7768613,26115,14104,51356144,45204922,379448,228413,1878631880,1439690708,17.53,17.39,15.99,17.19,1.21,1.07,0.44,0.54
-34251,12,081,12081,6265,2213,760037240,754138448,6351,2249,766370193,760441047,322833,172690,2312026999,1924182235,98.65,98.4,99.17,99.17,1.94,1.28,32.87,39.19
-34251,12,115,12115,86,36,6332953,6302599,6351,2249,766370193,760441047,379448,228413,1878631880,1439690708,1.35,1.6,0.83,0.83,0.02,0.02,0.34,0.44
-34266,12,027,12027,31027,11770,1513788468,1509769757,31055,11782,1688506139,1679866073,34862,14590,1656250415,1649975818,99.91,99.9,89.65,89.87,89,80.67,91.4,91.5
-34266,12,115,12115,28,12,174717671,170096316,31055,11782,1688506139,1679866073,379448,228413,1878631880,1439690708,0.09,0.1,10.35,10.13,0.01,0.01,9.3,11.81
-34268,12,027,12027,220,74,356041,356041,220,74,356041,356041,34862,14590,1656250415,1649975818,100,100,100,100,0.63,0.51,0.02,0.02
-34269,12,027,12027,3615,2746,142105906,139850020,3615,2746,142105906,139850020,34862,14590,1656250415,1649975818,100,100,100,100,10.37,18.82,8.58,8.48
-34275,12,115,12115,16245,10655,79705661,68800867,16245,10655,79705661,68800867,379448,228413,1878631880,1439690708,100,100,100,100,4.28,4.66,4.24,4.78
-34285,12,115,12115,17599,14882,25680169,21303187,17599,14882,25680169,21303187,379448,228413,1878631880,1439690708,100,100,100,100,4.64,6.52,1.37,1.48
-34286,12,115,12115,17970,7611,39823433,38733295,17970,7611,39823433,38733295,379448,228413,1878631880,1439690708,100,100,100,100,4.74,3.33,2.12,2.69
-34287,12,115,12115,23859,14717,42884238,40436526,23859,14717,42884238,40436526,379448,228413,1878631880,1439690708,100,100,100,100,6.29,6.44,2.28,2.81
-34288,12,115,12115,10856,5083,51857633,50022726,10856,5083,51857633,50022726,379448,228413,1878631880,1439690708,100,100,100,100,2.86,2.23,2.76,3.47
-34289,12,115,12115,2199,1244,10227804,8640873,2199,1244,10227804,8640873,379448,228413,1878631880,1439690708,100,100,100,100,0.58,0.54,0.54,0.6
-34291,12,115,12115,7125,3054,34879318,34179767,7125,3054,34879318,34179767,379448,228413,1878631880,1439690708,100,100,100,100,1.88,1.34,1.86,2.37
-34292,12,115,12115,13516,8912,80289129,76696427,13516,8912,80289129,76696427,379448,228413,1878631880,1439690708,100,100,100,100,3.56,3.9,4.27,5.33
-34293,12,115,12115,33001,19733,125411431,118538986,33001,19733,125411431,118538986,379448,228413,1878631880,1439690708,100,100,100,100,8.7,8.64,6.68,8.23
-34420,12,083,12083,16287,7770,69465375,64968733,16287,7770,69465375,64968733,331298,164050,4306141125,4103955681,100,100,100,100,4.92,4.74,1.61,1.58
-34428,12,017,12017,9109,5155,214468177,176018757,9109,5155,214468177,176018757,141236,78026,2002822559,1506586255,100,100,100,100,6.45,6.61,10.71,11.68
-34429,12,017,12017,8563,5439,196573299,104676286,8563,5439,196573299,104676286,141236,78026,2002822559,1506586255,100,100,100,100,6.06,6.97,9.81,6.95
-34431,12,075,12075,705,379,134853494,129593697,7815,4153,294205547,283085443,40801,20123,3659120576,2896139279,9.02,9.13,45.84,45.78,1.73,1.88,3.69,4.47
-34431,12,083,12083,7110,3774,159352053,153491746,7815,4153,294205547,283085443,331298,164050,4306141125,4103955681,90.98,90.87,54.16,54.22,2.15,2.3,3.7,3.74
-34432,12,083,12083,12273,6581,283179477,280140674,12273,6581,283179477,280140674,331298,164050,4306141125,4103955681,100,100,100,100,3.7,4.01,6.58,6.83
-34433,12,017,12017,6647,3341,88683844,86572060,6647,3341,88683844,86572060,141236,78026,2002822559,1506586255,100,100,100,100,4.71,4.28,4.43,5.75
-34434,12,017,12017,8191,3921,64514809,63610474,8191,3921,64514809,63610474,141236,78026,2002822559,1506586255,100,100,100,100,5.8,5.03,3.22,4.22
-34436,12,017,12017,7938,4609,163399201,146342202,7938,4609,163399201,146342202,141236,78026,2002822559,1506586255,100,100,100,100,5.62,5.91,8.16,9.71
-34442,12,017,12017,14568,8519,134184938,113419229,14568,8519,134184938,113419229,141236,78026,2002822559,1506586255,100,100,100,100,10.31,10.92,6.7,7.53
-34445,12,017,12017,44,23,148714,148714,44,23,148714,148714,141236,78026,2002822559,1506586255,100,100,100,100,0.03,0.03,0.01,0.01
-34446,12,017,12017,16326,9114,80871000,80871000,16326,9114,80871000,80871000,141236,78026,2002822559,1506586255,100,100,100,100,11.56,11.68,4.04,5.37
-34448,12,017,12017,10797,6529,255261132,188741679,10797,6529,255261132,188741679,141236,78026,2002822559,1506586255,100,100,100,100,7.64,8.37,12.75,12.53
-34449,12,017,12017,297,198,24311789,20498570,2809,1917,278838116,265763428,141236,78026,2002822559,1506586255,10.57,10.33,8.72,7.71,0.21,0.25,1.21,1.36
-34449,12,075,12075,2512,1719,254526327,245264858,2809,1917,278838116,265763428,40801,20123,3659120576,2896139279,89.43,89.67,91.28,92.29,6.16,8.54,6.96,8.47
-34450,12,017,12017,10293,6243,91712448,66490366,10293,6243,91712448,66490366,141236,78026,2002822559,1506586255,100,100,100,100,7.29,8,4.58,4.41
-34452,12,017,12017,11919,5785,89561288,89523635,11919,5785,89561288,89523635,141236,78026,2002822559,1506586255,100,100,100,100,8.44,7.41,4.47,5.94
-34453,12,017,12017,10112,5392,69388973,53066892,10112,5392,69388973,53066892,141236,78026,2002822559,1506586255,100,100,100,100,7.16,6.91,3.46,3.52
-34461,12,017,12017,10562,5133,124700154,124675336,10562,5133,124700154,124675336,141236,78026,2002822559,1506586255,100,100,100,100,7.48,6.58,6.23,8.28
-34465,12,017,12017,15870,8625,64771079,64771079,15870,8625,64771079,64771079,141236,78026,2002822559,1506586255,100,100,100,100,11.24,11.05,3.23,4.3
-34470,12,083,12083,17838,9219,30124144,30124144,17838,9219,30124144,30124144,331298,164050,4306141125,4103955681,100,100,100,100,5.38,5.62,0.7,0.73
-34471,12,083,12083,25152,11929,51185254,51135838,25152,11929,51185254,51135838,331298,164050,4306141125,4103955681,100,100,100,100,7.59,7.27,1.19,1.25
-34472,12,083,12083,25968,11690,103289934,95054852,25968,11690,103289934,95054852,331298,164050,4306141125,4103955681,100,100,100,100,7.84,7.13,2.4,2.32
-34473,12,083,12083,17029,7632,99778730,99247132,17029,7632,99778730,99247132,331298,164050,4306141125,4103955681,100,100,100,100,5.14,4.65,2.32,2.42
-34474,12,083,12083,16062,7930,51231640,51231640,16062,7930,51231640,51231640,331298,164050,4306141125,4103955681,100,100,100,100,4.85,4.83,1.19,1.25
-34475,12,083,12083,12177,4988,76077346,75911428,12177,4988,76077346,75911428,331298,164050,4306141125,4103955681,100,100,100,100,3.68,3.04,1.77,1.85
-34476,12,083,12083,20862,10430,96487207,96487207,20862,10430,96487207,96487207,331298,164050,4306141125,4103955681,100,100,100,100,6.3,6.36,2.24,2.35
-34479,12,083,12083,13032,5695,45069593,45066773,13032,5695,45069593,45066773,331298,164050,4306141125,4103955681,100,100,100,100,3.93,3.47,1.05,1.1
-34480,12,083,12083,19068,8040,87596644,87476088,19068,8040,87596644,87476088,331298,164050,4306141125,4103955681,100,100,100,100,5.76,4.9,2.03,2.13
-34481,12,083,12083,17536,10618,171621245,171571101,17536,10618,171621245,171571101,331298,164050,4306141125,4103955681,100,100,100,100,5.29,6.47,3.99,4.18
-34482,12,083,12083,22500,8952,235946596,235604925,22500,8952,235946596,235604925,331298,164050,4306141125,4103955681,100,100,100,100,6.79,5.46,5.48,5.74
-34484,12,119,12119,3069,1354,85433997,84937244,3069,1354,85433997,84937244,93420,53026,1501741032,1416548738,100,100,100,100,3.29,2.55,5.69,6
-34488,12,083,12083,10291,5910,272188300,247362132,10291,5910,272188300,247362132,331298,164050,4306141125,4103955681,100,100,100,100,3.11,3.6,6.32,6.03
-34491,12,083,12083,27454,14487,116939337,111748381,27454,14487,116939337,111748381,331298,164050,4306141125,4103955681,100,100,100,100,8.29,8.83,2.72,2.72
-34498,12,075,12075,513,472,38374506,19477993,513,472,38374506,19477993,40801,20123,3659120576,2896139279,100,100,100,100,1.26,2.35,1.05,0.67
-34601,12,053,12053,22336,11460,323698980,315305096,22336,11460,323698980,315305096,172778,84504,1525557687,1223869127,100,100,100,100,12.93,13.56,21.22,25.76
-34602,12,053,12053,7346,3288,178672409,172285030,7346,3288,178672409,172285030,172778,84504,1525557687,1223869127,100,100,100,100,4.25,3.89,11.71,14.08
-34604,12,053,12053,10003,4135,92778601,91998045,10003,4135,92778601,91998045,172778,84504,1525557687,1223869127,100,100,100,100,5.79,4.89,6.08,7.52
-34606,12,053,12053,26208,13677,34059366,30218336,26208,13677,34059366,30218336,172778,84504,1525557687,1223869127,100,100,100,100,15.17,16.19,2.23,2.47
-34607,12,053,12053,8133,5032,85808168,66437151,8133,5032,85808168,66437151,172778,84504,1525557687,1223869127,100,100,100,100,4.71,5.95,5.62,5.43
-34608,12,053,12053,31099,14446,41855249,39615528,31099,14446,41855249,39615528,172778,84504,1525557687,1223869127,100,100,100,100,18,17.1,2.74,3.24
-34609,12,053,12053,37129,16255,57705156,57438520,37129,16255,57705156,57438520,172778,84504,1525557687,1223869127,100,100,100,100,21.49,19.24,3.78,4.69
-34610,12,101,12101,12907,5406,180879504,174468871,12907,5406,180879504,174468871,464697,228928,2249284841,1934425891,100,100,100,100,2.78,2.36,8.04,9.02
-34613,12,053,12053,17814,10188,149038586,138044361,17814,10188,149038586,138044361,172778,84504,1525557687,1223869127,100,100,100,100,10.31,12.06,9.77,11.28
-34614,12,053,12053,6692,2974,216947384,195675594,6692,2974,216947384,195675594,172778,84504,1525557687,1223869127,100,100,100,100,3.87,3.52,14.22,15.99
-34637,12,101,12101,6297,2414,37231306,35630544,6297,2414,37231306,35630544,464697,228928,2249284841,1934425891,100,100,100,100,1.36,1.05,1.66,1.84
-34638,12,101,12101,20048,7585,127291604,124117520,20048,7585,127291604,124117520,464697,228928,2249284841,1934425891,100,100,100,100,4.31,3.31,5.66,6.42
-34639,12,101,12101,24092,9236,73898816,69578032,24092,9236,73898816,69578032,464697,228928,2249284841,1934425891,100,100,100,100,5.18,4.03,3.29,3.6
-34652,12,101,12101,24147,14580,28671784,22144182,24147,14580,28671784,22144182,464697,228928,2249284841,1934425891,100,100,100,100,5.2,6.37,1.27,1.14
-34653,12,101,12101,30756,16932,28152549,27959954,30756,16932,28152549,27959954,464697,228928,2249284841,1934425891,100,100,100,100,6.62,7.4,1.25,1.45
-34654,12,101,12101,21716,10147,71964179,69666839,21716,10147,71964179,69666839,464697,228928,2249284841,1934425891,100,100,100,100,4.67,4.43,3.2,3.6
-34655,12,101,12101,38464,17800,121738617,120975877,38464,17800,121738617,120975877,464697,228928,2249284841,1934425891,100,100,100,100,8.28,7.78,5.41,6.25
-34661,12,053,12053,297,218,7393729,6939513,297,218,7393729,6939513,172778,84504,1525557687,1223869127,100,100,100,100,0.17,0.26,0.48,0.57
-34667,12,101,12101,32144,19291,94602553,83491409,32144,19291,94602553,83491409,464697,228928,2249284841,1934425891,100,100,100,100,6.92,8.43,4.21,4.32
-34668,12,101,12101,42619,22670,46963554,40195899,42619,22670,46963554,40195899,464697,228928,2249284841,1934425891,100,100,100,100,9.17,9.9,2.09,2.08
-34669,12,101,12101,12648,5844,51505883,50420141,12648,5844,51505883,50420141,464697,228928,2249284841,1934425891,100,100,100,100,2.72,2.55,2.29,2.61
-34677,12,103,12103,20842,9867,36141945,25691961,20842,9867,36141945,25691961,916542,503634,1575041817,709135878,100,100,100,100,2.27,1.96,2.29,3.62
-34679,12,101,12101,99,74,346719,341842,99,74,346719,341842,464697,228928,2249284841,1934425891,100,100,100,100,0.02,0.03,0.02,0.02
-34681,12,103,12103,1294,656,1807209,1460170,1294,656,1807209,1460170,916542,503634,1575041817,709135878,100,100,100,100,0.14,0.13,0.11,0.21
-34683,12,103,12103,31268,15387,30995313,27412862,31268,15387,30995313,27412862,916542,503634,1575041817,709135878,100,100,100,100,3.41,3.06,1.97,3.87
-34684,12,103,12103,25847,14360,19888704,16929935,25847,14360,19888704,16929935,916542,503634,1575041817,709135878,100,100,100,100,2.82,2.85,1.26,2.39
-34685,12,103,12103,17286,7959,38547306,33717900,17286,7959,38547306,33717900,916542,503634,1575041817,709135878,100,100,100,100,1.89,1.58,2.45,4.75
-34688,12,103,12103,7274,3430,41491758,40141090,7274,3430,41491758,40141090,916542,503634,1575041817,709135878,100,100,100,100,0.79,0.68,2.63,5.66
-34689,12,103,12103,26132,13845,40425051,27548898,26132,13845,40425051,27548898,916542,503634,1575041817,709135878,100,100,100,100,2.85,2.75,2.57,3.88
-34690,12,101,12101,13137,6835,10094367,9717288,13137,6835,10094367,9717288,464697,228928,2249284841,1934425891,100,100,100,100,2.83,2.99,0.45,0.5
-34691,12,101,12101,21079,11481,50988013,21315991,21079,11481,50988013,21315991,464697,228928,2249284841,1934425891,100,100,100,100,4.54,5.02,2.27,1.1
-34695,12,103,12103,17496,8413,22336146,13745258,17496,8413,22336146,13745258,916542,503634,1575041817,709135878,100,100,100,100,1.91,1.67,1.42,1.94
-34698,12,103,12103,37240,22158,39743312,26456079,37240,22158,39743312,26456079,916542,503634,1575041817,709135878,100,100,100,100,4.06,4.4,2.52,3.73
-34705,12,069,12069,2500,1069,51556434,45974943,2500,1069,51556434,45974943,297052,144996,2996522541,2430396019,100,100,100,100,0.84,0.74,1.72,1.89
-34711,12,069,12069,51847,21806,163316660,108356913,51847,21806,163316660,108356913,297052,144996,2996522541,2430396019,100,100,100,100,17.45,15.04,5.45,4.46
-34714,12,069,12069,13238,7085,308356573,278420657,14685,8465,310128803,279589558,297052,144996,2996522541,2430396019,90.15,83.7,99.43,99.58,4.46,4.89,10.29,11.46
-34714,12,105,12105,1447,1380,1772230,1168901,14685,8465,310128803,279589558,602095,281214,5207301593,4656375819,9.85,16.3,0.57,0.42,0.24,0.49,0.03,0.03
-34715,12,069,12069,15455,5799,112080217,85967444,15455,5799,112080217,85967444,297052,144996,2996522541,2430396019,100,100,100,100,5.2,4,3.74,3.54
-34731,12,069,12069,10815,5354,62358012,40875192,10815,5354,62358012,40875192,297052,144996,2996522541,2430396019,100,100,100,100,3.64,3.69,2.08,1.68
-34734,12,095,12095,3835,1400,6097364,5760088,3835,1400,6097364,5760088,1145956,487839,2598430689,2339870128,100,100,100,100,0.33,0.29,0.23,0.25
-34736,12,069,12069,13961,5614,401336808,322390750,13961,5614,401336808,322390750,297052,144996,2996522541,2430396019,100,100,100,100,4.7,3.87,13.39,13.26
-34737,12,069,12069,2523,1253,66496868,50606516,2523,1253,66496868,50606516,297052,144996,2996522541,2430396019,100,100,100,100,0.85,0.86,2.22,2.08
-34739,12,097,12097,793,500,1142587030,904788106,793,500,1142587030,904788106,268685,128170,3900278027,3438086444,100,100,100,100,0.3,0.39,29.3,26.32
-34741,12,097,12097,40828,18561,42049081,38645753,40828,18561,42049081,38645753,268685,128170,3900278027,3438086444,100,100,100,100,15.2,14.48,1.08,1.12
-34743,12,097,12097,33632,12033,18115195,17980889,33632,12033,18115195,17980889,268685,128170,3900278027,3438086444,100,100,100,100,12.52,9.39,0.46,0.52
-34744,12,097,12097,44142,16948,97312321,85965215,44142,16948,97312321,85965215,268685,128170,3900278027,3438086444,100,100,100,100,16.43,13.22,2.5,2.5
-34746,12,097,12097,35022,19693,143234856,110878590,35022,19693,143234856,110878590,268685,128170,3900278027,3438086444,100,100,100,100,13.03,15.36,3.67,3.23
-34747,12,095,12095,0,0,4826756,4749116,13692,20571,115724659,114727144,1145956,487839,2598430689,2339870128,0,0,4.17,4.14,0,0,0.19,0.2
-34747,12,097,12097,13692,20571,110897903,109978028,13692,20571,115724659,114727144,268685,128170,3900278027,3438086444,100,100,95.83,95.86,5.1,16.05,2.84,3.2
-34748,12,069,12069,38246,21511,128906988,105396836,38246,21511,128906988,105396836,297052,144996,2996522541,2430396019,100,100,100,100,12.88,14.84,4.3,4.34
-34753,12,069,12069,5353,1822,18157924,14137287,5353,1822,18157924,14137287,297052,144996,2996522541,2430396019,100,100,100,100,1.8,1.26,0.61,0.58
-34756,12,069,12069,3006,1308,26700686,23759765,3006,1308,26700686,23759765,297052,144996,2996522541,2430396019,100,100,100,100,1.01,0.9,0.89,0.98
-34758,12,097,12097,30879,11360,85361822,85329641,30879,11360,85361822,85329641,268685,128170,3900278027,3438086444,100,100,100,100,11.49,8.86,2.19,2.48
-34759,12,097,12097,6476,2169,71438717,67792288,30170,13256,201312922,190193485,268685,128170,3900278027,3438086444,21.47,16.36,35.49,35.64,2.41,1.69,1.83,1.97
-34759,12,105,12105,23694,11087,129874205,122401197,30170,13256,201312922,190193485,602095,281214,5207301593,4656375819,78.53,83.64,64.51,64.36,3.94,3.94,2.49,2.63
-34760,12,095,12095,875,343,1343756,1343756,875,343,1343756,1343756,1145956,487839,2598430689,2339870128,100,100,100,100,0.08,0.07,0.05,0.06
-34761,12,095,12095,37500,13779,44060803,41030897,37500,13779,44060803,41030897,1145956,487839,2598430689,2339870128,100,100,100,100,3.27,2.82,1.7,1.75
-34762,12,069,12069,622,313,24926886,19273045,622,313,24926886,19273045,297052,144996,2996522541,2430396019,100,100,100,100,0.21,0.22,0.83,0.79
-34769,12,097,12097,21399,9757,23552350,23522931,21399,9757,23552350,23522931,268685,128170,3900278027,3438086444,100,100,100,100,7.96,7.61,0.6,0.68
-34771,12,097,12097,14280,5813,240683810,215739853,14280,5813,240683810,215739853,268685,128170,3900278027,3438086444,100,100,100,100,5.31,4.54,6.17,6.27
-34772,12,097,12097,22770,8498,309794411,250521152,22770,8498,309794411,250521152,268685,128170,3900278027,3438086444,100,100,100,100,8.47,6.63,7.94,7.29
-34773,12,097,12097,2983,1268,1010153058,973101091,2983,1268,1010153058,973101091,268685,128170,3900278027,3438086444,100,100,100,100,1.11,0.99,25.9,28.3
-34785,12,119,12119,17406,5913,205806358,193888655,17406,5913,205806358,193888655,93420,53026,1501741032,1416548738,100,100,100,100,18.63,11.15,13.7,13.69
-34786,12,095,12095,28092,10953,70976044,51577699,28092,10953,70976044,51577699,1145956,487839,2598430689,2339870128,100,100,100,100,2.45,2.25,2.73,2.2
-34787,12,069,12069,872,327,34257242,32793950,46083,18348,206172548,178582826,297052,144996,2996522541,2430396019,1.89,1.78,16.62,18.36,0.29,0.23,1.14,1.35
-34787,12,095,12095,45211,18021,171915306,145788876,46083,18348,206172548,178582826,1145956,487839,2598430689,2339870128,98.11,98.22,83.38,81.64,3.95,3.69,6.62,6.23
-34788,12,069,12069,17519,9817,132256198,85732307,17519,9817,132256198,85732307,297052,144996,2996522541,2430396019,100,100,100,100,5.9,6.77,4.41,3.53
-34797,12,069,12069,1293,665,13183675,12160119,1293,665,13183675,12160119,297052,144996,2996522541,2430396019,100,100,100,100,0.44,0.46,0.44,0.5
-34945,12,111,12111,5514,1812,633617861,633223023,5514,1812,633617861,633223023,277789,137029,1782188149,1481280881,100,100,100,100,1.98,1.32,35.55,42.75
-34946,12,111,12111,6025,2966,45109351,37867530,6025,2966,45109351,37867530,277789,137029,1782188149,1481280881,100,100,100,100,2.17,2.16,2.53,2.56
-34947,12,111,12111,12186,4834,24940969,24860278,12186,4834,24940969,24860278,277789,137029,1782188149,1481280881,100,100,100,100,4.39,3.53,1.4,1.68
-34949,12,111,12111,7103,7685,69041165,24391048,7103,7685,69041165,24391048,277789,137029,1782188149,1481280881,100,100,100,100,2.56,5.61,3.87,1.65
-34950,12,111,12111,15436,7111,17814798,13273419,15436,7111,17814798,13273419,277789,137029,1782188149,1481280881,100,100,100,100,5.56,5.19,1,0.9
-34951,12,111,12111,14115,7876,64899527,64193378,14115,7876,64899527,64193378,277789,137029,1782188149,1481280881,100,100,100,100,5.08,5.75,3.64,4.33
-34952,12,111,12111,38285,20971,64645513,60220140,38285,20971,64645513,60220140,277789,137029,1782188149,1481280881,100,100,100,100,13.78,15.3,3.63,4.07
-34953,12,111,12111,61494,23419,61962199,61639647,61494,23419,61962199,61639647,277789,137029,1782188149,1481280881,100,100,100,100,22.14,17.09,3.48,4.16
-34956,12,085,12085,9874,2501,547929712,539120711,9874,2501,547929712,539120711,146318,78131,1949817448,1407565382,100,100,100,100,6.75,3.2,28.1,38.3
-34957,12,085,12085,16608,9738,37420375,26643712,22257,18207,91376602,42561361,146318,78131,1949817448,1407565382,74.62,53.48,40.95,62.6,11.35,12.46,1.92,1.89
-34957,12,111,12111,5649,8469,53956227,15917649,22257,18207,91376602,42561361,277789,137029,1782188149,1481280881,25.38,46.52,59.05,37.4,2.03,6.18,3.03,1.07
-34972,12,093,12093,19866,6768,1783454672,1757419152,20180,6947,2387805464,2355900409,39996,18509,2310027990,1991462636,98.44,97.42,74.69,74.6,49.67,36.57,77.2,88.25
-34972,12,097,12097,285,160,513957799,508090219,20180,6947,2387805464,2355900409,268685,128170,3900278027,3438086444,1.41,2.3,21.52,21.57,0.11,0.12,13.18,14.78
-34972,12,111,12111,29,19,90392993,90391038,20180,6947,2387805464,2355900409,277789,137029,1782188149,1481280881,0.14,0.27,3.79,3.84,0.01,0.01,5.07,6.1
-34974,12,043,12043,2508,1881,631365128,614131104,23661,14189,1094560899,1040061160,12884,6979,2555924715,2087553927,10.6,13.26,57.68,59.05,19.47,26.95,24.7,29.42
-34974,12,055,12055,562,387,98823036,93612309,23661,14189,1094560899,1040061160,98786,55386,2864616438,2633020110,2.38,2.73,9.03,9,0.57,0.7,3.45,3.56
-34974,12,085,12085,461,180,118643962,106651251,23661,14189,1094560899,1040061160,146318,78131,1949817448,1407565382,1.95,1.27,10.84,10.25,0.32,0.23,6.08,7.58
-34974,12,093,12093,20130,11741,245728773,225666496,23661,14189,1094560899,1040061160,39996,18509,2310027990,1991462636,85.08,82.75,22.45,21.7,50.33,63.43,10.64,11.33
-34981,12,111,12111,4239,1818,26750145,26745480,4239,1818,26750145,26745480,277789,137029,1782188149,1481280881,100,100,100,100,1.53,1.33,1.5,1.81
-34982,12,111,12111,24544,11561,57423748,43549996,24544,11561,57423748,43549996,277789,137029,1782188149,1481280881,100,100,100,100,8.84,8.44,3.22,2.94
-34983,12,111,12111,38480,15795,39411388,38793880,38480,15795,39411388,38793880,277789,137029,1782188149,1481280881,100,100,100,100,13.85,11.53,2.21,2.62
-34984,12,111,12111,13764,5719,25932282,25342863,13764,5719,25932282,25342863,277789,137029,1782188149,1481280881,100,100,100,100,4.95,4.17,1.46,1.71
-34986,12,111,12111,23297,12936,50592231,50418483,23297,12936,50592231,50418483,277789,137029,1782188149,1481280881,100,100,100,100,8.39,9.44,2.84,3.4
-34987,12,111,12111,6118,3075,265051609,264987898,6118,3075,265051609,264987898,277789,137029,1782188149,1481280881,100,100,100,100,2.2,2.24,14.87,17.89
-34990,12,085,12085,26724,12418,246445934,234868203,27707,13155,253515693,239711696,146318,78131,1949817448,1407565382,96.45,94.4,97.21,97.98,18.26,15.89,12.64,16.69
-34990,12,111,12111,983,737,7069759,4843493,27707,13155,253515693,239711696,277789,137029,1782188149,1481280881,3.55,5.6,2.79,2.02,0.35,0.54,0.4,0.33
-34994,12,085,12085,15439,9221,23539961,16766543,15967,9447,24996473,17388181,146318,78131,1949817448,1407565382,96.69,97.61,94.17,96.42,10.55,11.8,1.21,1.19
-34994,12,111,12111,528,226,1456512,621638,15967,9447,24996473,17388181,277789,137029,1782188149,1481280881,3.31,2.39,5.83,3.58,0.19,0.16,0.08,0.04
-34996,12,085,12085,10649,8391,49803586,17138113,10649,8391,49803586,17138113,146318,78131,1949817448,1407565382,100,100,100,100,7.28,10.74,2.55,1.22
-34997,12,085,12085,40405,20471,269880405,254351664,40405,20471,269880405,254351664,146318,78131,1949817448,1407565382,100,100,100,100,27.61,26.2,13.84,18.07
-35004,01,115,01115,10427,4523,47171273,46802132,10427,4523,47171273,46802132,83593,35541,1692919455,1636619393,100,100,100,100,12.47,12.73,2.79,2.86
-35005,01,073,01073,7942,3485,90272598,89378408,7942,3485,90272598,89378408,658466,300552,2910666696,2878192209,100,100,100,100,1.21,1.16,3.1,3.11
-35006,01,073,01073,3071,1461,261803136,254313199,3121,1495,266326618,258505360,658466,300552,2910666696,2878192209,98.4,97.73,98.3,98.38,0.47,0.49,8.99,8.84
-35006,01,125,01125,8,3,528571,528571,3121,1495,266326618,258505360,194656,84872,3499724532,3423328940,0.26,0.2,0.2,0.2,0,0,0.02,0.02
-35006,01,127,01127,42,31,3994911,3663590,3121,1495,266326618,258505360,67023,30816,2085441181,2049177420,1.35,2.07,1.5,1.42,0.06,0.1,0.19,0.18
-35007,01,117,01117,26225,9799,98548333,96812090,26225,9799,98548333,96812090,195085,80970,2096660894,2032960300,100,100,100,100,13.44,12.1,4.7,4.76
-35010,01,037,01037,1366,747,107473078,104760806,20816,10307,629872545,563567822,11539,6478,1725837721,1685891075,6.56,7.25,17.06,18.59,11.84,11.53,6.23,6.21
-35010,01,051,01051,265,562,34591770,15796233,20816,10307,629872545,563567822,79303,32657,1701730134,1601867593,1.27,5.45,5.49,2.8,0.33,1.72,2.03,0.99
-35010,01,123,01123,19185,8998,487807697,443010783,20816,10307,629872545,563567822,41616,22111,1984588853,1855780057,92.16,87.3,77.45,78.61,46.1,40.69,24.58,23.87
-35013,01,009,01009,124,38,76403,74951,124,38,76403,74951,57322,23887,1685119295,1669961855,100,100,100,100,0.22,0.16,0,0
-35014,01,121,01121,4546,1878,255159115,247318794,4546,1878,255159115,247318794,82291,37088,1969183660,1908239516,100,100,100,100,5.52,5.06,12.96,12.96
-35016,01,009,01009,298,133,10639389,10557230,16778,7554,194075100,192558351,57322,23887,1685119295,1669961855,1.78,1.76,5.48,5.48,0.52,0.56,0.63,0.63
-35016,01,043,01043,1895,858,43654257,43293494,16778,7554,194075100,192558351,80406,37054,1955495254,1903228333,11.29,11.36,22.49,22.48,2.36,2.32,2.23,2.27
-35016,01,095,01095,14585,6563,139781454,138707627,16778,7554,194075100,192558351,93019,40342,1614026113,1465522757,86.93,86.88,72.02,72.03,15.68,16.27,8.66,9.46
-35019,01,043,01043,1662,757,49822561,49356164,2117,947,78049680,77491530,80406,37054,1955495254,1903228333,78.51,79.94,63.83,63.69,2.07,2.04,2.55,2.59
-35019,01,103,01103,455,190,28227119,28135366,2117,947,78049680,77491530,119490,51193,1551541180,1500476319,21.49,20.06,36.17,36.31,0.38,0.37,1.82,1.88
-35020,01,073,01073,27139,12323,49238896,49218856,27139,12323,49238896,49218856,658466,300552,2910666696,2878192209,100,100,100,100,4.12,4.1,1.69,1.71
-35022,01,073,01073,18156,7756,154197021,153031799,18888,8017,170887873,169591079,658466,300552,2910666696,2878192209,96.12,96.74,90.23,90.24,2.76,2.58,5.3,5.32
-35022,01,117,01117,732,261,16690852,16559280,18888,8017,170887873,169591079,195085,80970,2096660894,2032960300,3.88,3.26,9.77,9.76,0.38,0.32,0.8,0.81
-35023,01,073,01073,25436,10369,238369090,234202424,25436,10369,238369090,234202424,658466,300552,2910666696,2878192209,100,100,100,100,3.86,3.45,8.19,8.14
-35031,01,009,01009,7933,3497,337388081,335167290,7933,3497,337388081,335167290,57322,23887,1685119295,1669961855,100,100,100,100,13.84,14.64,20.02,20.07
-35032,01,121,01121,66,27,414688,414688,66,27,414688,414688,82291,37088,1969183660,1908239516,100,100,100,100,0.08,0.07,0.02,0.02
-35033,01,043,01043,3093,1496,176389901,168086165,3403,1640,205068823,196353162,80406,37054,1955495254,1903228333,90.89,91.22,86.01,85.6,3.85,4.04,9.02,8.83
-35033,01,127,01127,310,144,28678922,28266997,3403,1640,205068823,196353162,67023,30816,2085441181,2049177420,9.11,8.78,13.99,14.4,0.46,0.47,1.38,1.38
-35034,01,007,01007,5485,1472,238154574,236656234,5541,1502,279819488,278075270,22915,8981,1621769846,1612480789,98.99,98,85.11,85.11,23.94,16.39,14.68,14.68
-35034,01,105,01105,56,30,41664914,41419036,5541,1502,279819488,278075270,10591,4737,1874838925,1863920409,1.01,2,14.89,14.89,0.53,0.63,2.22,2.22
-35035,01,007,01007,1561,646,181560655,179954042,1581,657,185708506,184095249,22915,8981,1621769846,1612480789,98.73,98.33,97.77,97.75,6.81,7.19,11.2,11.16
-35035,01,117,01117,20,11,4147851,4141207,1581,657,185708506,184095249,195085,80970,2096660894,2032960300,1.27,1.67,2.23,2.25,0.01,0.01,0.2,0.2
-35036,01,073,01073,297,145,2145815,2145815,297,145,2145815,2145815,658466,300552,2910666696,2878192209,100,100,100,100,0.05,0.05,0.07,0.07
-35040,01,021,01021,935,409,35934741,35731619,14965,6484,200538636,197689359,43643,19278,1815069969,1794483586,6.25,6.31,17.92,18.07,2.14,2.12,1.98,1.99
-35040,01,117,01117,14030,6075,164603895,161957740,14965,6484,200538636,197689359,195085,80970,2096660894,2032960300,93.75,93.69,82.08,81.93,7.19,7.5,7.85,7.97
-35042,01,007,01007,5831,2591,391694992,389633893,5831,2591,391694992,389633893,22915,8981,1621769846,1612480789,100,100,100,100,25.45,28.85,24.15,24.16
-35043,01,117,01117,9234,3514,121255849,118773159,9234,3514,121255849,118773159,195085,80970,2096660894,2032960300,100,100,100,100,4.73,4.34,5.78,5.84
-35044,01,121,01121,7713,3547,154827771,149427693,7713,3547,154827771,149427693,82291,37088,1969183660,1908239516,100,100,100,100,9.37,9.56,7.86,7.83
-35045,01,021,01021,14870,6458,309437910,308620053,14870,6458,309437910,308620053,43643,19278,1815069969,1794483586,100,100,100,100,34.07,33.5,17.05,17.2
-35046,01,021,01021,5052,2689,293899895,281900022,5108,2804,368733391,348635221,43643,19278,1815069969,1794483586,98.9,95.9,79.71,80.86,11.58,13.95,16.19,15.71
-35046,01,037,01037,56,115,74833496,66735199,5108,2804,368733391,348635221,11539,6478,1725837721,1685891075,1.1,4.1,20.29,19.14,0.49,1.78,4.34,3.96
-35049,01,009,01009,3996,1612,110385642,109659357,3996,1612,110385642,109659357,57322,23887,1685119295,1669961855,100,100,100,100,6.97,6.75,6.55,6.57
-35051,01,117,01117,8787,3341,285807758,280383498,8787,3341,285807758,280383498,195085,80970,2096660894,2032960300,100,100,100,100,4.5,4.13,13.63,13.79
-35052,01,115,01115,277,104,949104,946133,277,104,949104,946133,83593,35541,1692919455,1636619393,100,100,100,100,0.33,0.29,0.06,0.06
-35053,01,043,01043,2234,2043,134027742,111682831,2617,2447,147666235,124059934,80406,37054,1955495254,1903228333,85.36,83.49,90.76,90.02,2.78,5.51,6.85,5.87
-35053,01,133,01133,383,404,13638493,12377103,2617,2447,147666235,124059934,24484,13469,1636530709,1587607882,14.64,16.51,9.24,9.98,1.56,3,0.83,0.78
-35054,01,115,01115,4101,2211,77701683,67695254,4101,2211,77701683,67695254,83593,35541,1692919455,1636619393,100,100,100,100,4.91,6.22,4.59,4.14
-35055,01,043,01043,19427,8991,168195605,165837550,19427,8991,168195605,165837550,80406,37054,1955495254,1903228333,100,100,100,100,24.16,24.26,8.6,8.71
-35057,01,043,01043,12630,5753,337625736,328568543,12630,5753,337625736,328568543,80406,37054,1955495254,1903228333,100,100,100,100,15.71,15.53,17.27,17.26
-35058,01,043,01043,9936,4231,181156014,178127846,9936,4231,181156014,178127846,80406,37054,1955495254,1903228333,100,100,100,100,12.36,11.42,9.26,9.36
-35060,01,073,01073,414,215,7103302,6692614,414,215,7103302,6692614,658466,300552,2910666696,2878192209,100,100,100,100,0.06,0.07,0.24,0.23
-35061,01,073,01073,1465,687,5111252,5111252,1465,687,5111252,5111252,658466,300552,2910666696,2878192209,100,100,100,100,0.22,0.23,0.18,0.18
-35062,01,073,01073,5393,2207,81938090,81272531,7944,3355,117061575,116272751,658466,300552,2910666696,2878192209,67.89,65.78,70,69.9,0.82,0.73,2.82,2.82
-35062,01,127,01127,2551,1148,35123485,35000220,7944,3355,117061575,116272751,67023,30816,2085441181,2049177420,32.11,34.22,30,30.1,3.81,3.73,1.68,1.71
-35063,01,009,01009,421,178,8275014,8244489,3866,1667,102351553,101416717,57322,23887,1685119295,1669961855,10.89,10.68,8.08,8.13,0.73,0.75,0.49,0.49
-35063,01,073,01073,246,92,3641376,3627743,3866,1667,102351553,101416717,658466,300552,2910666696,2878192209,6.36,5.52,3.56,3.58,0.04,0.03,0.13,0.13
-35063,01,127,01127,3199,1397,90435163,89544485,3866,1667,102351553,101416717,67023,30816,2085441181,2049177420,82.75,83.8,88.36,88.29,4.77,4.53,4.34,4.37
-35064,01,073,01073,11458,5066,10636977,10636977,11458,5066,10636977,10636977,658466,300552,2910666696,2878192209,100,100,100,100,1.74,1.69,0.37,0.37
-35068,01,073,01073,7232,3232,36157343,36157343,7232,3232,36157343,36157343,658466,300552,2910666696,2878192209,100,100,100,100,1.1,1.08,1.24,1.26
-35070,01,043,01043,265,139,3616323,3595988,265,139,3616323,3595988,80406,37054,1955495254,1903228333,100,100,100,100,0.33,0.38,0.18,0.19
-35071,01,073,01073,15661,6803,148281406,147823204,15661,6803,148281406,147823204,658466,300552,2910666696,2878192209,100,100,100,100,2.38,2.26,5.09,5.14
-35072,01,027,01027,1329,588,208556641,207780432,5193,2420,493157755,490696029,13932,6776,1569536908,1564252280,25.59,24.3,42.29,42.34,9.54,8.68,13.29,13.28
-35072,01,037,01037,3288,1562,228541441,227189068,5193,2420,493157755,490696029,11539,6478,1725837721,1685891075,63.32,64.55,46.34,46.3,28.49,24.11,13.24,13.48
-35072,01,121,01121,24,9,770488,770488,5193,2420,493157755,490696029,82291,37088,1969183660,1908239516,0.46,0.37,0.16,0.16,0.03,0.02,0.04,0.04
-35072,01,123,01123,552,261,55289185,54956041,5193,2420,493157755,490696029,41616,22111,1984588853,1855780057,10.63,10.79,11.21,11.2,1.33,1.18,2.79,2.96
-35073,01,073,01073,2382,1140,69025210,68564070,2382,1140,69025210,68564070,658466,300552,2910666696,2878192209,100,100,100,100,0.36,0.38,2.37,2.38
-35074,01,007,01007,93,44,145226,145226,93,44,145226,145226,22915,8981,1621769846,1612480789,100,100,100,100,0.41,0.49,0.01,0.01
-35077,01,043,01043,13142,5836,392859340,389862764,13142,5836,392859340,389862764,80406,37054,1955495254,1903228333,100,100,100,100,16.34,15.75,20.09,20.48
-35078,01,117,01117,2082,935,117934942,112910648,2082,935,117934942,112910648,195085,80970,2096660894,2032960300,100,100,100,100,1.07,1.15,5.62,5.55
-35079,01,009,01009,8800,3621,275945099,274721445,8810,3626,276101163,274877509,57322,23887,1685119295,1669961855,99.89,99.86,99.94,99.94,15.35,15.16,16.38,16.45
-35079,01,073,01073,10,5,156064,156064,8810,3626,276101163,274877509,658466,300552,2910666696,2878192209,0.11,0.14,0.06,0.06,0,0,0.01,0.01
-35080,01,073,01073,17,6,29592,29592,15881,5943,115734819,112788479,658466,300552,2910666696,2878192209,0.11,0.1,0.03,0.03,0,0,0,0
-35080,01,117,01117,15864,5937,115705227,112758887,15881,5943,115734819,112788479,195085,80970,2096660894,2032960300,99.89,99.9,99.97,99.97,8.13,7.33,5.52,5.55
-35082,01,027,01027,7,4,20893529,20885346,7,4,20893529,20885346,13932,6776,1569536908,1564252280,100,100,100,100,0.05,0.06,1.33,1.34
-35083,01,043,01043,3268,1404,95134576,94497408,3268,1404,95134576,94497408,80406,37054,1955495254,1903228333,100,100,100,100,4.06,3.79,4.86,4.97
-35085,01,021,01021,8933,3736,270977427,269746090,8933,3736,270977427,269746090,43643,19278,1815069969,1794483586,100,100,100,100,20.47,19.38,14.93,15.03
-35087,01,043,01043,1106,481,28800699,28568962,2115,932,58536746,58103996,80406,37054,1955495254,1903228333,52.29,51.61,49.2,49.17,1.38,1.3,1.47,1.5
-35087,01,095,01095,119,57,4321520,4282698,2115,932,58536746,58103996,93019,40342,1614026113,1465522757,5.63,6.12,7.38,7.37,0.13,0.14,0.27,0.29
-35087,01,103,01103,890,394,25414527,25252336,2115,932,58536746,58103996,119490,51193,1551541180,1500476319,42.08,42.27,43.42,43.46,0.74,0.77,1.64,1.68
-35089,01,037,01037,1503,734,147226571,146936513,2238,1047,178798886,178423056,11539,6478,1725837721,1685891075,67.16,70.11,82.34,82.35,13.03,11.33,8.53,8.72
-35089,01,123,01123,735,313,31572315,31486543,2238,1047,178798886,178423056,41616,22111,1984588853,1855780057,32.84,29.89,17.66,17.65,1.77,1.42,1.59,1.7
-35091,01,073,01073,2719,999,16964672,16964672,2719,999,16964672,16964672,658466,300552,2910666696,2878192209,100,100,100,100,0.41,0.33,0.58,0.59
-35094,01,073,01073,9810,4402,78053857,77157087,14212,6356,153174377,148994881,658466,300552,2910666696,2878192209,69.03,69.26,50.96,51.79,1.49,1.46,2.68,2.68
-35094,01,115,01115,3213,1390,23761420,23667447,14212,6356,153174377,148994881,83593,35541,1692919455,1636619393,22.61,21.87,15.51,15.88,3.84,3.91,1.4,1.45
-35094,01,117,01117,1189,564,51359100,48170347,14212,6356,153174377,148994881,195085,80970,2096660894,2032960300,8.37,8.87,33.53,32.33,0.61,0.7,2.45,2.37
-35096,01,015,01015,362,151,22779275,22767371,7815,3831,218467604,204283046,118572,53289,1585814262,1569189995,4.63,3.94,10.43,11.15,0.31,0.28,1.44,1.45
-35096,01,121,01121,7453,3680,195688329,181515675,7815,3831,218467604,204283046,82291,37088,1969183660,1908239516,95.37,96.06,89.57,88.85,9.06,9.92,9.94,9.51
-35097,01,009,01009,1748,700,20486364,20433826,1748,700,20486364,20433826,57322,23887,1685119295,1669961855,100,100,100,100,3.05,2.93,1.22,1.22
-35098,01,043,01043,1192,511,67646062,67352155,1375,645,80113623,78308223,80406,37054,1955495254,1903228333,86.69,79.22,84.44,86.01,1.48,1.38,3.46,3.54
-35098,01,133,01133,183,134,12467561,10956068,1375,645,80113623,78308223,24484,13469,1636530709,1587607882,13.31,20.78,15.56,13.99,0.75,0.99,0.76,0.69
-35111,01,007,01007,362,140,4290859,4037840,16140,6406,169283558,166239542,22915,8981,1621769846,1612480789,2.24,2.19,2.53,2.43,1.58,1.56,0.26,0.25
-35111,01,073,01073,7638,3113,88792276,87524289,16140,6406,169283558,166239542,658466,300552,2910666696,2878192209,47.32,48.6,52.45,52.65,1.16,1.04,3.05,3.04
-35111,01,125,01125,8140,3153,76200423,74677413,16140,6406,169283558,166239542,194656,84872,3499724532,3423328940,50.43,49.22,45.01,44.92,4.18,3.72,2.18,2.18
-35112,01,115,01115,801,346,6419746,6373884,801,346,6419746,6373884,83593,35541,1692919455,1636619393,100,100,100,100,0.96,0.97,0.38,0.39
-35114,01,117,01117,7172,2702,32489496,32182056,7172,2702,32489496,32182056,195085,80970,2096660894,2032960300,100,100,100,100,3.68,3.34,1.55,1.58
-35115,01,007,01007,108,58,36304928,36070077,14118,5880,325996381,323233947,22915,8981,1621769846,1612480789,0.76,0.99,11.14,11.16,0.47,0.65,2.24,2.24
-35115,01,021,01021,2620,1031,56573200,56180283,14118,5880,325996381,323233947,43643,19278,1815069969,1794483586,18.56,17.53,17.35,17.38,6,5.35,3.12,3.13
-35115,01,117,01117,11390,4791,233118253,230983587,14118,5880,325996381,323233947,195085,80970,2096660894,2032960300,80.68,81.48,71.51,71.46,5.84,5.92,11.12,11.36
-35116,01,073,01073,4240,1771,57391645,57362647,4240,1771,57391645,57362647,658466,300552,2910666696,2878192209,100,100,100,100,0.64,0.59,1.97,1.99
-35117,01,073,01073,5367,2155,69222155,69181965,5367,2155,69222155,69181965,658466,300552,2910666696,2878192209,100,100,100,100,0.82,0.72,2.38,2.4
-35118,01,073,01073,3138,1375,97150816,96174225,3138,1375,97150816,96174225,658466,300552,2910666696,2878192209,100,100,100,100,0.48,0.46,3.34,3.34
-35119,01,073,01073,116,57,732311,732311,116,57,732311,732311,658466,300552,2910666696,2878192209,100,100,100,100,0.02,0.02,0.03,0.03
-35120,01,115,01115,13842,5416,175826665,174833544,13842,5416,175826665,174833544,83593,35541,1692919455,1636619393,100,100,100,100,16.56,15.24,10.39,10.68
-35121,01,009,01009,15455,6438,371762534,366432901,15570,6497,377914030,372500250,57322,23887,1685119295,1669961855,99.26,99.09,98.37,98.37,26.96,26.95,22.06,21.94
-35121,01,115,01115,115,59,6151496,6067349,15570,6497,377914030,372500250,83593,35541,1692919455,1636619393,0.74,0.91,1.63,1.63,0.14,0.17,0.36,0.37
-35124,01,117,01117,23020,9227,109276577,107636446,23020,9227,109276577,107636446,195085,80970,2096660894,2032960300,100,100,100,100,11.8,11.4,5.21,5.29
-35125,01,115,01115,10456,4324,123574189,122988434,10456,4324,123574189,122988434,83593,35541,1692919455,1636619393,100,100,100,100,12.51,12.17,7.3,7.51
-35126,01,009,01009,445,167,3781793,3735972,21725,8494,152134457,150661846,57322,23887,1685119295,1669961855,2.05,1.97,2.49,2.48,0.78,0.7,0.22,0.22
-35126,01,073,01073,21280,8327,148352664,146925874,21725,8494,152134457,150661846,658466,300552,2910666696,2878192209,97.95,98.03,97.51,97.52,3.23,2.77,5.1,5.1
-35127,01,073,01073,10099,3939,25478222,25478222,10099,3939,25478222,25478222,658466,300552,2910666696,2878192209,100,100,100,100,1.53,1.31,0.88,0.89
-35128,01,115,01115,10197,4711,178791512,165794594,10197,4711,178791512,165794594,83593,35541,1692919455,1636619393,100,100,100,100,12.2,13.26,10.56,10.13
-35130,01,073,01073,1231,641,77792596,74436354,3233,1683,182842252,174676443,658466,300552,2910666696,2878192209,38.08,38.09,42.55,42.61,0.19,0.21,2.67,2.59
-35130,01,127,01127,2002,1042,105049656,100240089,3233,1683,182842252,174676443,67023,30816,2085441181,2049177420,61.92,61.91,57.45,57.39,2.99,3.38,5.04,4.89
-35131,01,115,01115,4159,1880,240748438,233020192,4159,1880,240748438,233020192,83593,35541,1692919455,1636619393,100,100,100,100,4.98,5.29,14.22,14.24
-35133,01,009,01009,3776,1580,117865496,115716209,3907,1642,127297874,125131676,57322,23887,1685119295,1669961855,96.65,96.22,92.59,92.48,6.59,6.61,6.99,6.93
-35133,01,115,01115,131,62,9432378,9415467,3907,1642,127297874,125131676,83593,35541,1692919455,1636619393,3.35,3.78,7.41,7.52,0.16,0.17,0.56,0.58
-35135,01,115,01115,1812,854,21954767,17135529,1812,854,21954767,17135529,83593,35541,1692919455,1636619393,100,100,100,100,2.17,2.4,1.3,1.05
-35136,01,037,01037,1796,1216,572223805,559728076,1796,1216,572223805,559728076,11539,6478,1725837721,1685891075,100,100,100,100,15.56,18.77,33.16,33.2
-35139,01,073,01073,150,55,3181413,3031766,150,55,3181413,3031766,658466,300552,2910666696,2878192209,100,100,100,100,0.02,0.02,0.11,0.11
-35143,01,117,01117,3281,2222,124086866,109603752,3281,2222,124086866,109603752,195085,80970,2096660894,2032960300,100,100,100,100,1.68,2.74,5.92,5.39
-35146,01,009,01009,864,361,45636074,43913330,10948,3914,279731945,276443628,57322,23887,1685119295,1669961855,7.89,9.22,16.31,15.89,1.51,1.51,2.71,2.63
-35146,01,073,01073,126,49,7386578,7189581,10948,3914,279731945,276443628,658466,300552,2910666696,2878192209,1.15,1.25,2.64,2.6,0.02,0.02,0.25,0.25
-35146,01,115,01115,9958,3504,226709293,225340717,10948,3914,279731945,276443628,83593,35541,1692919455,1636619393,90.96,89.52,81.05,81.51,11.91,9.86,13.39,13.77
-35147,01,117,01117,5468,2259,179305220,176181934,5468,2259,179305220,176181934,195085,80970,2096660894,2032960300,100,100,100,100,2.8,2.79,8.55,8.67
-35148,01,073,01073,19,8,47638,47638,2702,1282,16039500,16019790,658466,300552,2910666696,2878192209,0.7,0.62,0.3,0.3,0,0,0,0
-35148,01,127,01127,2683,1274,15991862,15972152,2702,1282,16039500,16019790,67023,30816,2085441181,2049177420,99.3,99.38,99.7,99.7,4,4.13,0.77,0.78
-35149,01,121,01121,630,311,14287051,14270276,630,311,14287051,14270276,82291,37088,1969183660,1908239516,100,100,100,100,0.77,0.84,0.73,0.75
-35150,01,027,01027,25,10,631320,631320,18472,8542,165965106,163097018,13932,6776,1569536908,1564252280,0.14,0.12,0.38,0.39,0.18,0.15,0.04,0.04
-35150,01,037,01037,130,60,4259290,4254565,18472,8542,165965106,163097018,11539,6478,1725837721,1685891075,0.7,0.7,2.57,2.61,1.13,0.93,0.25,0.25
-35150,01,121,01121,18317,8472,161074496,158211133,18472,8542,165965106,163097018,82291,37088,1969183660,1908239516,99.16,99.18,97.05,97,22.26,22.84,8.18,8.29
-35151,01,037,01037,1886,1043,252017269,242122824,7632,3654,458902804,439784152,11539,6478,1725837721,1685891075,24.71,28.54,54.92,55.05,16.34,16.1,14.6,14.36
-35151,01,121,01121,5746,2611,206885535,197661328,7632,3654,458902804,439784152,82291,37088,1969183660,1908239516,75.29,71.46,45.08,44.95,6.98,7.04,10.51,10.36
-35160,01,027,01027,617,311,238842049,238389425,26822,12013,897594518,880601013,13932,6776,1569536908,1564252280,2.3,2.59,26.61,27.07,4.43,4.59,15.22,15.24
-35160,01,121,01121,26205,11702,658752469,642211588,26822,12013,897594518,880601013,82291,37088,1969183660,1908239516,97.7,97.41,73.39,72.93,31.84,31.55,33.45,33.65
-35171,01,021,01021,3281,1337,76436994,76291986,3281,1337,76436994,76291986,43643,19278,1815069969,1794483586,100,100,100,100,7.52,6.94,4.21,4.25
-35172,01,009,01009,2161,894,61805488,61657157,2986,1286,74770348,74622017,57322,23887,1685119295,1669961855,72.37,69.52,82.66,82.63,3.77,3.74,3.67,3.69
-35172,01,073,01073,825,392,12964860,12964860,2986,1286,74770348,74622017,658466,300552,2910666696,2878192209,27.63,30.48,17.34,17.37,0.13,0.13,0.45,0.45
-35173,01,073,01073,22054,8364,128875999,126801722,25176,9589,167392144,164728187,658466,300552,2910666696,2878192209,87.6,87.22,76.99,76.98,3.35,2.78,4.43,4.41
-35173,01,115,01115,3122,1225,38516145,37926465,25176,9589,167392144,164728187,83593,35541,1692919455,1636619393,12.4,12.78,23.01,23.02,3.73,3.45,2.28,2.32
-35175,01,095,01095,3882,1713,140168340,135853647,5041,2222,169442686,164914329,93019,40342,1614026113,1465522757,77.01,77.09,82.72,82.38,4.17,4.25,8.68,9.27
-35175,01,103,01103,1159,509,29274346,29060682,5041,2222,169442686,164914329,119490,51193,1551541180,1500476319,22.99,22.91,17.28,17.62,0.97,0.99,1.89,1.94
-35176,01,117,01117,921,450,28098302,27387413,921,450,28098302,27387413,195085,80970,2096660894,2032960300,100,100,100,100,0.47,0.56,1.34,1.35
-35178,01,115,01115,770,417,34634691,30398262,3378,1601,154274053,147543773,83593,35541,1692919455,1636619393,22.79,26.05,22.45,20.6,0.92,1.17,2.05,1.86
-35178,01,117,01117,2608,1184,119639362,117145511,3378,1601,154274053,147543773,195085,80970,2096660894,2032960300,77.21,73.95,77.55,79.4,1.34,1.46,5.71,5.76
-35179,01,043,01043,8805,3814,227216971,225272660,8958,3874,243628329,241635868,80406,37054,1955495254,1903228333,98.29,98.45,93.26,93.23,10.95,10.29,11.62,11.84
-35179,01,103,01103,132,49,7652266,7619236,8958,3874,243628329,241635868,119490,51193,1551541180,1500476319,1.47,1.26,3.14,3.15,0.11,0.1,0.49,0.51
-35179,01,133,01133,21,11,8759092,8743972,8958,3874,243628329,241635868,24484,13469,1636530709,1587607882,0.23,0.28,3.6,3.62,0.09,0.08,0.54,0.55
-35180,01,009,01009,6238,2422,87538742,86858157,13794,5581,231320981,230081840,57322,23887,1685119295,1669961855,45.22,43.4,37.84,37.75,10.88,10.14,5.19,5.2
-35180,01,073,01073,7556,3159,143782239,143223683,13794,5581,231320981,230081840,658466,300552,2910666696,2878192209,54.78,56.6,62.16,62.25,1.15,1.05,4.94,4.98
-35183,01,037,01037,706,336,175451641,174896449,706,336,175451641,174896449,11539,6478,1725837721,1685891075,100,100,100,100,6.12,5.19,10.17,10.37
-35184,01,007,01007,5841,2510,369430947,366669339,5841,2510,369430947,366669339,22915,8981,1621769846,1612480789,100,100,100,100,25.49,27.95,22.78,22.74
-35186,01,117,01117,4931,2130,151912824,143138969,4931,2130,151912824,143138969,195085,80970,2096660894,2032960300,100,100,100,100,2.53,2.63,7.25,7.04
-35187,01,117,01117,32,9,53083,53083,32,9,53083,53083,195085,80970,2096660894,2032960300,100,100,100,100,0.02,0.01,0,0
-35188,01,007,01007,2492,970,49911490,49675707,2715,1051,59827795,59460028,22915,8981,1621769846,1612480789,91.79,92.29,83.43,83.54,10.87,10.8,3.08,3.08
-35188,01,125,01125,223,81,9916305,9784321,2715,1051,59827795,59460028,194656,84872,3499724532,3423328940,8.21,7.71,16.57,16.46,0.11,0.1,0.28,0.29
-35203,01,073,01073,3798,1822,5232096,5232096,3798,1822,5232096,5232096,658466,300552,2910666696,2878192209,100,100,100,100,0.58,0.61,0.18,0.18
-35204,01,073,01073,10337,6002,12594384,12594384,10337,6002,12594384,12594384,658466,300552,2910666696,2878192209,100,100,100,100,1.57,2,0.43,0.44
-35205,01,073,01073,19686,12089,9391228,9391228,19686,12089,9391228,9391228,658466,300552,2910666696,2878192209,100,100,100,100,2.99,4.02,0.32,0.33
-35206,01,073,01073,17177,8141,26575976,26484585,17177,8141,26575976,26484585,658466,300552,2910666696,2878192209,100,100,100,100,2.61,2.71,0.91,0.92
-35207,01,073,01073,9010,4273,27012112,26929603,9010,4273,27012112,26929603,658466,300552,2910666696,2878192209,100,100,100,100,1.37,1.42,0.93,0.94
-35208,01,073,01073,14855,6823,9152076,9152076,14855,6823,9152076,9152076,658466,300552,2910666696,2878192209,100,100,100,100,2.26,2.27,0.31,0.32
-35209,01,073,01073,29544,15167,24318665,24166085,29544,15167,24318665,24166085,658466,300552,2910666696,2878192209,100,100,100,100,4.49,5.05,0.84,0.84
-35210,01,073,01073,13952,6485,66526582,65520616,13952,6485,66526582,65520616,658466,300552,2910666696,2878192209,100,100,100,100,2.12,2.16,2.29,2.28
-35211,01,073,01073,26236,14095,45818508,45741219,26236,14095,45818508,45741219,658466,300552,2910666696,2878192209,100,100,100,100,3.98,4.69,1.57,1.59
-35212,01,073,01073,11539,6550,15195575,15195575,11539,6550,15195575,15195575,658466,300552,2910666696,2878192209,100,100,100,100,1.75,2.18,0.52,0.53
-35213,01,073,01073,13185,6017,16465461,16448934,13185,6017,16465461,16448934,658466,300552,2910666696,2878192209,100,100,100,100,2,2,0.57,0.57
-35214,01,073,01073,19592,8912,69072352,68987524,19592,8912,69072352,68987524,658466,300552,2910666696,2878192209,100,100,100,100,2.98,2.97,2.37,2.4
-35215,01,073,01073,46951,20194,74319601,74254490,46951,20194,74319601,74254490,658466,300552,2910666696,2878192209,100,100,100,100,7.13,6.72,2.55,2.58
-35216,01,073,01073,36042,17172,36116467,35702643,36408,17313,36825774,36326082,658466,300552,2910666696,2878192209,98.99,99.19,98.07,98.28,5.47,5.71,1.24,1.24
-35216,01,117,01117,366,141,709307,623439,36408,17313,36825774,36326082,195085,80970,2096660894,2032960300,1.01,0.81,1.93,1.72,0.19,0.17,0.03,0.03
-35217,01,073,01073,13729,6263,46973657,46815934,13729,6263,46973657,46815934,658466,300552,2910666696,2878192209,100,100,100,100,2.08,2.08,1.61,1.63
-35218,01,073,01073,7353,3696,6750702,6750702,7353,3696,6750702,6750702,658466,300552,2910666696,2878192209,100,100,100,100,1.12,1.23,0.23,0.23
-35221,01,073,01073,4834,2476,9456883,9456883,4834,2476,9456883,9456883,658466,300552,2910666696,2878192209,100,100,100,100,0.73,0.82,0.32,0.33
-35222,01,073,01073,7884,4331,9674987,9669216,7884,4331,9674987,9669216,658466,300552,2910666696,2878192209,100,100,100,100,1.2,1.44,0.33,0.34
-35223,01,073,01073,11043,4749,21379981,21297394,11043,4749,21379981,21297394,658466,300552,2910666696,2878192209,100,100,100,100,1.68,1.58,0.73,0.74
-35224,01,073,01073,6094,2854,41041335,40807220,6094,2854,41041335,40807220,658466,300552,2910666696,2878192209,100,100,100,100,0.93,0.95,1.41,1.42
-35226,01,073,01073,31471,13209,46589856,46352057,31471,13209,46589856,46352057,658466,300552,2910666696,2878192209,100,100,100,100,4.78,4.39,1.6,1.61
-35228,01,073,01073,10419,4695,11195673,11195673,10419,4695,11195673,11195673,658466,300552,2910666696,2878192209,100,100,100,100,1.58,1.56,0.38,0.39
-35229,01,073,01073,940,0,449317,446442,940,0,449317,446442,658466,300552,2910666696,2878192209,100,0,100,100,0.14,0,0.02,0.02
-35233,01,073,01073,1308,591,4352265,4352265,1308,591,4352265,4352265,658466,300552,2910666696,2878192209,100,100,100,100,0.2,0.2,0.15,0.15
-35234,01,073,01073,6311,2860,9225058,9225058,6311,2860,9225058,9225058,658466,300552,2910666696,2878192209,100,100,100,100,0.96,0.95,0.32,0.32
-35235,01,073,01073,19484,8613,36407418,36318749,19484,8613,36407418,36318749,658466,300552,2910666696,2878192209,100,100,100,100,2.96,2.87,1.25,1.26
-35242,01,073,01073,5815,2255,32829174,31078724,49545,21879,144235514,137168725,658466,300552,2910666696,2878192209,11.74,10.31,22.76,22.66,0.88,0.75,1.13,1.08
-35242,01,117,01117,43730,19624,111406340,106090001,49545,21879,144235514,137168725,195085,80970,2096660894,2032960300,88.26,89.69,77.24,77.34,22.42,24.24,5.31,5.22
-35243,01,073,01073,17280,8562,31474364,31054766,17328,8582,31900238,31433068,658466,300552,2910666696,2878192209,99.72,99.77,98.66,98.8,2.62,2.85,1.08,1.08
-35243,01,117,01117,48,20,425874,378302,17328,8582,31900238,31433068,195085,80970,2096660894,2032960300,0.28,0.23,1.34,1.2,0.02,0.02,0.02,0.02
-35244,01,073,01073,18435,7682,27566633,26974805,32390,13456,57652216,56063756,658466,300552,2910666696,2878192209,56.92,57.09,47.82,48.11,2.8,2.56,0.95,0.94
-35244,01,117,01117,13955,5774,30085583,29088951,32390,13456,57652216,56063756,195085,80970,2096660894,2032960300,43.08,42.91,52.18,51.89,7.15,7.13,1.43,1.43
-35254,01,073,01073,1403,137,1079581,1079581,1403,137,1079581,1079581,658466,300552,2910666696,2878192209,100,100,100,100,0.21,0.05,0.04,0.04
-35401,01,125,01125,39878,16514,128260565,123321801,39878,16514,128260565,123321801,194656,84872,3499724532,3423328940,100,100,100,100,20.49,19.46,3.66,3.6
-35404,01,125,01125,21251,9701,44599626,43523535,21251,9701,44599626,43523535,194656,84872,3499724532,3423328940,100,100,100,100,10.92,11.43,1.27,1.27
-35405,01,125,01125,37661,17486,125189064,123170568,37661,17486,125189064,123170568,194656,84872,3499724532,3423328940,100,100,100,100,19.35,20.6,3.58,3.6
-35406,01,125,01125,13864,6321,234902768,219617080,13864,6321,234902768,219617080,194656,84872,3499724532,3423328940,100,100,100,100,7.12,7.45,6.71,6.42
-35441,01,065,01065,1060,803,181599551,172850436,1060,803,181599551,172850436,15760,7655,1700329881,1667803914,100,100,100,100,6.73,10.49,10.68,10.36
-35442,01,063,01063,39,31,32426228,32299426,4972,2385,621044570,610205875,9045,5007,1709238244,1676007032,0.78,1.3,5.22,5.29,0.43,0.62,1.9,1.93
-35442,01,107,01107,4745,2241,522085240,513205271,4972,2385,621044570,610205875,19746,9483,2305415228,2282837059,95.43,93.96,84.07,84.1,24.03,23.63,22.65,22.48
-35442,01,119,01119,188,113,66533102,64701178,4972,2385,621044570,610205875,13763,6786,2365493779,2341057426,3.78,4.74,10.71,10.6,1.37,1.67,2.81,2.76
-35443,01,063,01063,2009,1249,501231145,490736522,2009,1249,501231145,490736522,9045,5007,1709238244,1676007032,100,100,100,100,22.21,24.95,29.32,29.28
-35444,01,073,01073,72,39,22151620,21956895,3699,1495,393852700,385566685,658466,300552,2910666696,2878192209,1.95,2.61,5.62,5.69,0.01,0.01,0.76,0.76
-35444,01,125,01125,3627,1456,371701080,363609790,3699,1495,393852700,385566685,194656,84872,3499724532,3423328940,98.05,97.39,94.38,94.31,1.86,1.72,10.62,10.62
-35446,01,125,01125,2234,985,159447572,157674940,2234,985,159447572,157674940,194656,84872,3499724532,3423328940,100,100,100,100,1.15,1.16,4.56,4.61
-35447,01,107,01107,3460,1716,384823279,374220353,3460,1716,384823279,374220353,19746,9483,2305415228,2282837059,100,100,100,100,17.52,18.1,16.69,16.39
-35452,01,125,01125,3880,1553,136322315,134568010,3880,1553,136322315,134568010,194656,84872,3499724532,3423328940,100,100,100,100,1.99,1.83,3.9,3.93
-35453,01,125,01125,11127,4757,244724521,240984192,11127,4757,244724521,240984192,194656,84872,3499724532,3423328940,100,100,100,100,5.72,5.6,6.99,7.04
-35456,01,007,01007,16,11,10764538,10762325,3759,1561,220065247,219418038,22915,8981,1621769846,1612480789,0.43,0.7,4.89,4.9,0.07,0.12,0.66,0.67
-35456,01,125,01125,3743,1550,209300709,208655713,3759,1561,220065247,219418038,194656,84872,3499724532,3423328940,99.57,99.3,95.11,95.1,1.92,1.83,5.98,6.1
-35457,01,125,01125,82,42,17684344,17300293,82,42,17684344,17300293,194656,84872,3499724532,3423328940,100,100,100,100,0.04,0.05,0.51,0.51
-35458,01,125,01125,594,268,67482509,66201968,594,268,67482509,66201968,194656,84872,3499724532,3423328940,100,100,100,100,0.31,0.32,1.93,1.93
-35459,01,119,01119,872,429,357644977,353856650,872,429,357644977,353856650,13763,6786,2365493779,2341057426,100,100,100,100,6.34,6.32,15.12,15.12
-35460,01,119,01119,834,409,256595370,251808469,834,409,256595370,251808469,13763,6786,2365493779,2341057426,100,100,100,100,6.06,6.03,10.85,10.76
-35461,01,107,01107,1952,1069,321817241,321222267,1952,1069,321817241,321222267,19746,9483,2305415228,2282837059,100,100,100,100,9.89,11.27,13.96,14.07
-35462,01,063,01063,5061,2570,820967627,810485013,5061,2570,820967627,810485013,9045,5007,1709238244,1676007032,100,100,100,100,55.95,51.33,48.03,48.36
-35463,01,063,01063,69,25,13695803,13431320,1749,791,164431081,158837237,9045,5007,1709238244,1676007032,3.95,3.16,8.33,8.46,0.76,0.5,0.8,0.8
-35463,01,125,01125,1680,766,150735278,145405917,1749,791,164431081,158837237,194656,84872,3499724532,3423328940,96.05,96.84,91.67,91.54,0.86,0.9,4.31,4.25
-35464,01,063,01063,134,56,29411939,28801998,654,307,86612336,85382500,9045,5007,1709238244,1676007032,20.49,18.24,33.96,33.73,1.48,1.12,1.72,1.72
-35464,01,119,01119,520,251,57200397,56580502,654,307,86612336,85382500,13763,6786,2365493779,2341057426,79.51,81.76,66.04,66.27,3.78,3.7,2.42,2.42
-35466,01,107,01107,5385,2356,580891469,579660362,6075,2669,677352621,676096613,19746,9483,2305415228,2282837059,88.64,88.27,85.76,85.74,27.27,24.84,25.2,25.39
-35466,01,125,01125,690,313,96461152,96436251,6075,2669,677352621,676096613,194656,84872,3499724532,3423328940,11.36,11.73,14.24,14.26,0.35,0.37,2.76,2.82
-35469,01,063,01063,163,104,48692991,46469204,221,132,50373066,48147636,9045,5007,1709238244,1676007032,73.76,78.79,96.66,96.51,1.8,2.08,2.85,2.77
-35469,01,125,01125,58,28,1680075,1678432,221,132,50373066,48147636,194656,84872,3499724532,3423328940,26.24,21.21,3.34,3.49,0.03,0.03,0.05,0.05
-35470,01,119,01119,5468,2514,696569410,688018012,5468,2514,696569410,688018012,13763,6786,2365493779,2341057426,100,100,100,100,39.73,37.05,29.45,29.39
-35473,01,125,01125,14909,6769,67279579,65141447,14909,6769,67279579,65141447,194656,84872,3499724532,3423328940,100,100,100,100,7.66,7.98,1.92,1.9
-35474,01,065,01065,4212,1914,471585591,468600499,6180,2663,524753965,520069915,15760,7655,1700329881,1667803914,68.16,71.87,89.87,90.1,26.73,25,27.73,28.1
-35474,01,125,01125,1968,749,53168374,51469416,6180,2663,524753965,520069915,194656,84872,3499724532,3423328940,31.84,28.13,10.13,9.9,1.01,0.88,1.52,1.5
-35475,01,125,01125,14507,6073,575454341,556829431,14507,6073,575454341,556829431,194656,84872,3499724532,3423328940,100,100,100,100,7.45,7.16,16.44,16.27
-35476,01,125,01125,8106,3613,14795977,14311109,8106,3613,14795977,14311109,194656,84872,3499724532,3423328940,100,100,100,100,4.16,4.26,0.42,0.42
-35477,01,119,01119,335,199,90098110,88155753,335,199,90098110,88155753,13763,6786,2365493779,2341057426,100,100,100,100,2.43,2.93,3.81,3.77
-35480,01,063,01063,242,115,64207878,64118234,1343,612,177008580,176767962,9045,5007,1709238244,1676007032,18.02,18.79,36.27,36.27,2.68,2.3,3.76,3.83
-35480,01,125,01125,1101,497,112800702,112649728,1343,612,177008580,176767962,194656,84872,3499724532,3423328940,81.98,81.21,63.73,63.73,0.57,0.59,3.22,3.29
-35481,01,107,01107,3668,1791,308133248,306968843,3668,1791,308133248,306968843,19746,9483,2305415228,2282837059,100,100,100,100,18.58,18.89,13.37,13.45
-35490,01,125,01125,3857,1553,174735229,173973442,3857,1553,174735229,173973442,194656,84872,3499724532,3423328940,100,100,100,100,1.98,1.83,4.99,5.08
-35501,01,127,01127,10424,4832,130524025,129312323,10424,4832,130524025,129312323,67023,30816,2085441181,2049177420,100,100,100,100,15.55,15.68,6.26,6.31
-35503,01,127,01127,8677,3815,191217356,189192897,9068,4079,211520768,206273285,67023,30816,2085441181,2049177420,95.69,93.53,90.4,91.72,12.95,12.38,9.17,9.23
-35503,01,133,01133,391,264,20303412,17080388,9068,4079,211520768,206273285,24484,13469,1636530709,1587607882,4.31,6.47,9.6,8.28,1.6,1.96,1.24,1.08
-35504,01,127,01127,13596,6105,259234765,251123617,13596,6105,259234765,251123617,67023,30816,2085441181,2049177420,100,100,100,100,20.29,19.81,12.43,12.25
-35540,01,043,01043,40,18,1875559,1852131,2415,1114,192482735,190975741,80406,37054,1955495254,1903228333,1.66,1.62,0.97,0.97,0.05,0.05,0.1,0.1
-35540,01,133,01133,2375,1096,190607176,189123610,2415,1114,192482735,190975741,24484,13469,1636530709,1587607882,98.34,98.38,99.03,99.03,9.7,8.14,11.65,11.91
-35541,01,043,01043,9,5,1862338,1861770,3597,2540,195391516,173716843,80406,37054,1955495254,1903228333,0.25,0.2,0.95,1.07,0.01,0.01,0.1,0.1
-35541,01,133,01133,3588,2535,193529178,171855073,3597,2540,195391516,173716843,24484,13469,1636530709,1587607882,99.75,99.8,99.05,98.93,14.65,18.82,11.83,10.82
-35542,01,057,01057,1021,491,143581014,143285757,1021,491,143581014,143285757,17241,8437,1630024430,1625631609,100,100,100,100,5.92,5.82,8.81,8.81
-35543,01,093,01093,1137,533,97418741,96836852,1137,533,97418741,96836852,30776,14737,1925839971,1922526826,100,100,100,100,3.69,3.62,5.06,5.04
-35544,01,075,01075,673,361,185940569,185883652,673,361,185940569,185883652,14564,7354,1568145333,1566544654,100,100,100,100,4.62,4.91,11.86,11.87
-35545,01,057,01057,100,49,3321507,3321507,100,49,3321507,3321507,17241,8437,1630024430,1625631609,100,100,100,100,0.58,0.58,0.2,0.2
-35546,01,057,01057,2516,1209,271349603,271107220,3901,1798,573807896,572696681,17241,8437,1630024430,1625631609,64.5,67.24,47.29,47.34,14.59,14.33,16.65,16.68
-35546,01,125,01125,1255,532,272975369,272257641,3901,1798,573807896,572696681,194656,84872,3499724532,3423328940,32.17,29.59,47.57,47.54,0.64,0.63,7.8,7.95
-35546,01,127,01127,130,57,29482924,29331820,3901,1798,573807896,572696681,67023,30816,2085441181,2049177420,3.33,3.17,5.14,5.12,0.19,0.18,1.41,1.43
-35548,01,093,01093,1558,839,168839361,168499138,1558,839,168839361,168499138,30776,14737,1925839971,1922526826,100,100,100,100,5.06,5.69,8.77,8.76
-35549,01,057,01057,332,169,142547998,142524165,4341,2090,300577196,299741794,17241,8437,1630024430,1625631609,7.65,8.09,47.42,47.55,1.93,2,8.75,8.77
-35549,01,127,01127,4009,1921,158029198,157217629,4341,2090,300577196,299741794,67023,30816,2085441181,2049177420,92.35,91.91,52.58,52.45,5.98,6.23,7.58,7.67
-35550,01,127,01127,5605,2685,173998125,170435754,5605,2685,173998125,170435754,67023,30816,2085441181,2049177420,100,100,100,100,8.36,8.71,8.34,8.32
-35552,01,075,01075,549,292,60163456,60163456,1044,558,154439870,154439870,14564,7354,1568145333,1566544654,52.59,52.33,38.96,38.96,3.77,3.97,3.84,3.84
-35552,01,093,01093,495,266,94276414,94276414,1044,558,154439870,154439870,30776,14737,1925839971,1922526826,47.41,47.67,61.04,61.04,1.61,1.8,4.9,4.9
-35553,01,133,01133,4680,2472,379087103,368914183,4680,2472,379087103,368914183,24484,13469,1636530709,1587607882,100,100,100,100,19.11,18.35,23.16,23.24
-35554,01,057,01057,659,321,76694393,76648592,1186,578,133892791,133696827,17241,8437,1630024430,1625631609,55.56,55.54,57.28,57.33,3.82,3.8,4.71,4.72
-35554,01,093,01093,73,33,24286389,24286389,1186,578,133892791,133696827,30776,14737,1925839971,1922526826,6.16,5.71,18.14,18.17,0.24,0.22,1.26,1.26
-35554,01,127,01127,454,224,32912009,32761846,1186,578,133892791,133696827,67023,30816,2085441181,2049177420,38.28,38.75,24.58,24.5,0.68,0.73,1.58,1.6
-35555,01,057,01057,9880,4923,748458514,744804559,10177,5075,822717763,818313754,17241,8437,1630024430,1625631609,97.08,97,90.97,91.02,57.31,58.35,45.92,45.82
-35555,01,075,01075,95,49,16243200,16149835,10177,5075,822717763,818313754,14564,7354,1568145333,1566544654,0.93,0.97,1.97,1.97,0.65,0.67,1.04,1.03
-35555,01,107,01107,12,10,9276082,9276082,10177,5075,822717763,818313754,19746,9483,2305415228,2282837059,0.12,0.2,1.13,1.13,0.06,0.11,0.4,0.41
-35555,01,125,01125,190,93,48739967,48083278,10177,5075,822717763,818313754,194656,84872,3499724532,3423328940,1.87,1.83,5.92,5.88,0.1,0.11,1.39,1.4
-35559,01,057,01057,57,20,1698656,1698656,57,20,1698656,1698656,17241,8437,1630024430,1625631609,100,100,100,100,0.33,0.24,0.1,0.1
-35563,01,057,01057,123,68,43498212,43468748,4340,2061,268985050,268867829,17241,8437,1630024430,1625631609,2.83,3.3,16.17,16.17,0.71,0.81,2.67,2.67
-35563,01,075,01075,52,34,14184477,14169787,4340,2061,268985050,268867829,14564,7354,1568145333,1566544654,1.2,1.65,5.27,5.27,0.36,0.46,0.9,0.9
-35563,01,093,01093,4165,1959,211302361,211229294,4340,2061,268985050,268867829,30776,14737,1925839971,1922526826,95.97,95.05,78.56,78.56,13.53,13.29,10.97,10.99
-35564,01,059,01059,39,17,9286944,9214975,2361,1169,174529007,174198444,31704,14022,1674485618,1641587713,1.65,1.45,5.32,5.29,0.12,0.12,0.55,0.56
-35564,01,093,01093,2322,1152,165242063,164983469,2361,1169,174529007,174198444,30776,14737,1925839971,1922526826,98.35,98.55,94.68,94.71,7.54,7.82,8.58,8.58
-35565,01,059,01059,353,151,41071715,40970387,13485,6527,721734781,719582178,31704,14022,1674485618,1641587713,2.62,2.31,5.69,5.69,1.11,1.08,2.45,2.5
-35565,01,079,01079,17,10,114863186,114746668,13485,6527,721734781,719582178,34339,15229,1857535032,1788846568,0.13,0.15,15.91,15.95,0.05,0.07,6.18,6.41
-35565,01,093,01093,3329,1624,167224752,166712671,13485,6527,721734781,719582178,30776,14737,1925839971,1922526826,24.69,24.88,23.17,23.17,10.82,11.02,8.68,8.67
-35565,01,133,01133,9786,4742,398575128,397152452,13485,6527,721734781,719582178,24484,13469,1636530709,1587607882,72.57,72.65,55.22,55.19,39.97,35.21,24.35,25.02
-35570,01,075,01075,8,3,2811057,2811057,11145,5144,619268619,619017951,14564,7354,1568145333,1566544654,0.07,0.06,0.45,0.45,0.05,0.04,0.18,0.18
-35570,01,093,01093,11137,5141,616457562,616206894,11145,5144,619268619,619017951,30776,14737,1925839971,1922526826,99.93,99.94,99.55,99.55,36.19,34.88,32.01,32.05
-35571,01,059,01059,728,352,137239516,132742179,895,447,166396740,161899403,31704,14022,1674485618,1641587713,81.34,78.75,82.48,81.99,2.3,2.51,8.2,8.09
-35571,01,093,01093,167,95,29157224,29157224,895,447,166396740,161899403,30776,14737,1925839971,1922526826,18.66,21.25,17.52,18.01,0.54,0.64,1.51,1.52
-35572,01,133,01133,1131,835,200793211,193111606,1131,835,200793211,193111606,24484,13469,1636530709,1587607882,100,100,100,100,4.62,6.2,12.27,12.16
-35574,01,057,01057,137,82,28456694,28456694,1507,815,261994992,261877180,17241,8437,1630024430,1625631609,9.09,10.06,10.86,10.87,0.79,0.97,1.75,1.75
-35574,01,075,01075,1124,579,141359872,141249473,1507,815,261994992,261877180,14564,7354,1568145333,1566544654,74.59,71.04,53.96,53.94,7.72,7.87,9.01,9.02
-35574,01,107,01107,237,147,78108176,78100763,1507,815,261994992,261877180,19746,9483,2305415228,2282837059,15.73,18.04,29.81,29.82,1.2,1.55,3.39,3.42
-35574,01,125,01125,9,7,14070250,14070250,1507,815,261994992,261877180,194656,84872,3499724532,3423328940,0.6,0.86,5.37,5.37,0,0.01,0.4,0.41
-35575,01,133,01133,1018,505,96678708,96383194,1018,505,96678708,96383194,24484,13469,1636530709,1587607882,100,100,100,100,4.16,3.75,5.91,6.07
-35576,01,075,01075,2930,1497,350716869,350520366,3217,1650,450997362,450703484,14564,7354,1568145333,1566544654,91.08,90.73,77.76,77.77,20.12,20.36,22.37,22.38
-35576,01,107,01107,287,153,100280493,100183118,3217,1650,450997362,450703484,19746,9483,2305415228,2282837059,8.92,9.27,22.24,22.23,1.45,1.61,4.35,4.39
-35577,01,133,01133,38,51,9821958,9821958,38,51,9821958,9821958,24484,13469,1636530709,1587607882,100,100,100,100,0.16,0.38,0.6,0.62
-35578,01,127,01127,4943,2166,197917878,196963606,5833,2586,310187567,309051881,67023,30816,2085441181,2049177420,84.74,83.76,63.81,63.73,7.38,7.03,9.49,9.61
-35578,01,133,01133,890,420,112269689,112088275,5833,2586,310187567,309051881,24484,13469,1636530709,1587607882,15.26,16.24,36.19,36.27,3.64,3.12,6.86,7.06
-35579,01,125,01125,14,9,90567867,87404403,3136,1481,372911474,365979317,194656,84872,3499724532,3423328940,0.45,0.61,24.29,23.88,0.01,0.01,2.59,2.55
-35579,01,127,01127,3122,1472,282343607,278574914,3136,1481,372911474,365979317,67023,30816,2085441181,2049177420,99.55,99.39,75.71,76.12,4.66,4.78,13.54,13.59
-35580,01,127,01127,3791,1821,211496367,203118387,3791,1821,211496367,203118387,67023,30816,2085441181,2049177420,100,100,100,100,5.66,5.91,10.14,9.91
-35581,01,059,01059,5076,2409,285799547,283375593,5778,2717,319110670,315787054,31704,14022,1674485618,1641587713,87.85,88.66,89.56,89.74,16.01,17.18,17.07,17.26
-35581,01,093,01093,702,308,33311123,32411461,5778,2717,319110670,315787054,30776,14737,1925839971,1922526826,12.15,11.34,10.44,10.26,2.28,2.09,1.73,1.69
-35582,01,059,01059,4093,1958,231754104,230276689,4093,1958,231754104,230276689,31704,14022,1674485618,1641587713,100,100,100,100,12.91,13.96,13.84,14.03
-35584,01,127,01127,460,200,1546981,1544897,460,200,1546981,1544897,67023,30816,2085441181,2049177420,100,100,100,100,0.69,0.65,0.07,0.08
-35585,01,059,01059,1418,618,103422421,102673207,1418,618,103422421,102673207,31704,14022,1674485618,1641587713,100,100,100,100,4.47,4.41,6.18,6.25
-35586,01,075,01075,4469,2279,473473282,472580466,4469,2279,473473282,472580466,14564,7354,1568145333,1566544654,100,100,100,100,30.69,30.99,30.19,30.17
-35587,01,127,01127,1025,482,137463947,136912197,1025,482,137463947,136912197,67023,30816,2085441181,2049177420,100,100,100,100,1.53,1.56,6.59,6.68
-35592,01,075,01075,4664,2260,323252551,323016562,4664,2260,323252551,323016562,14564,7354,1568145333,1566544654,100,100,100,100,32.02,30.73,20.61,20.62
-35593,01,059,01059,1618,728,192133281,190763654,1931,896,306263553,304833343,31704,14022,1674485618,1641587713,83.79,81.25,62.73,62.58,5.1,5.19,11.47,11.62
-35593,01,093,01093,313,168,114130272,114069689,1931,896,306263553,304833343,30776,14737,1925839971,1922526826,16.21,18.75,37.27,37.42,1.02,1.14,5.93,5.93
-35594,01,057,01057,2416,1105,170417839,170315711,7794,3724,374611548,374173042,17241,8437,1630024430,1625631609,31,29.67,45.49,45.52,14.01,13.1,10.45,10.48
-35594,01,093,01093,5378,2619,204193709,203857331,7794,3724,374611548,374173042,30776,14737,1925839971,1922526826,69,70.33,54.51,54.48,17.47,17.77,10.6,10.6
-35601,01,103,01103,34434,14650,89033682,72746009,34434,14650,89033682,72746009,119490,51193,1551541180,1500476319,100,100,100,100,28.82,28.62,5.74,4.85
-35603,01,079,01079,118,43,883154,876956,30545,13386,199525045,182234536,34339,15229,1857535032,1788846568,0.39,0.32,0.44,0.48,0.34,0.28,0.05,0.05
-35603,01,103,01103,30427,13343,198641891,181357580,30545,13386,199525045,182234536,119490,51193,1551541180,1500476319,99.61,99.68,99.56,99.52,25.46,26.06,12.8,12.09
-35610,01,077,01077,1784,843,94167426,94030246,2252,1046,125515351,125226255,92709,43791,1867355410,1729327931,79.22,80.59,75.02,75.09,1.92,1.93,5.04,5.44
-35610,01,083,01083,468,203,31347925,31196009,2252,1046,125515351,125226255,82782,34977,1572610195,1450228326,20.78,19.41,24.98,24.91,0.57,0.58,1.99,2.15
-35611,01,083,01083,25251,12037,335893666,295363308,25251,12037,335893666,295363308,82782,34977,1572610195,1450228326,100,100,100,100,30.5,34.41,21.36,20.37
-35613,01,083,01083,20546,7459,200623312,199264297,20546,7459,200623312,199264297,82782,34977,1572610195,1450228326,100,100,100,100,24.82,21.33,12.76,13.74
-35614,01,077,01077,7,4,2882685,2881150,7456,3274,170648098,164705395,92709,43791,1867355410,1729327931,0.09,0.12,1.69,1.75,0.01,0.01,0.15,0.17
-35614,01,083,01083,7449,3270,167765413,161824245,7456,3274,170648098,164705395,82782,34977,1572610195,1450228326,99.91,99.88,98.31,98.25,9,9.35,10.67,11.16
-35615,01,083,01083,68,41,1825096,1814967,68,41,1825096,1814967,82782,34977,1572610195,1450228326,100,100,100,100,0.08,0.12,0.12,0.13
-35616,01,033,01033,4043,2116,582513379,546377133,4043,2116,582513379,546377133,54428,25758,1611308146,1534877333,100,100,100,100,7.43,8.21,36.15,35.6
-35618,01,079,01079,1870,973,119987456,119128574,1870,973,119987456,119128574,34339,15229,1857535032,1788846568,100,100,100,100,5.45,6.39,6.46,6.66
-35619,01,043,01043,10,4,556296,556296,5135,2179,338451061,337054315,80406,37054,1955495254,1903228333,0.19,0.18,0.16,0.17,0.01,0.01,0.03,0.03
-35619,01,079,01079,2151,981,232069344,231292770,5135,2179,338451061,337054315,34339,15229,1857535032,1788846568,41.89,45.02,68.57,68.62,6.26,6.44,12.49,12.93
-35619,01,103,01103,2974,1194,105825421,105205249,5135,2179,338451061,337054315,119490,51193,1551541180,1500476319,57.92,54.8,31.27,31.21,2.49,2.33,6.82,7.01
-35620,01,083,01083,8868,3628,286163730,281940282,8868,3628,286163730,281940282,82782,34977,1572610195,1450228326,100,100,100,100,10.71,10.37,18.2,19.44
-35621,01,043,01043,137,63,4588382,4558760,2852,1220,119163373,118746626,80406,37054,1955495254,1903228333,4.8,5.16,3.85,3.84,0.17,0.17,0.23,0.24
-35621,01,103,01103,2715,1157,114574991,114187866,2852,1220,119163373,118746626,119490,51193,1551541180,1500476319,95.2,94.84,96.15,96.16,2.27,2.26,7.38,7.61
-35622,01,043,01043,1531,643,40172217,40004189,7388,3022,251327199,250495309,80406,37054,1955495254,1903228333,20.72,21.28,15.98,15.97,1.9,1.74,2.05,2.1
-35622,01,103,01103,5857,2379,211154982,210491120,7388,3022,251327199,250495309,119490,51193,1551541180,1500476319,79.28,78.72,84.02,84.03,4.9,4.65,13.61,14.03
-35630,01,077,01077,32629,16672,75746858,65019532,32629,16672,75746858,65019532,92709,43791,1867355410,1729327931,100,100,100,100,35.2,38.07,4.06,3.76
-35633,01,077,01077,20877,9100,577109073,541233501,20877,9100,577109073,541233501,92709,43791,1867355410,1729327931,100,100,100,100,22.52,20.78,30.91,31.3
-35634,01,077,01077,9711,4362,168732817,159726553,9711,4362,168732817,159726553,92709,43791,1867355410,1729327931,100,100,100,100,10.47,9.96,9.04,9.24
-35640,01,103,01103,24267,10378,287373432,284487710,24267,10378,287373432,284487710,119490,51193,1551541180,1500476319,100,100,100,100,20.31,20.27,18.52,18.96
-35643,01,079,01079,2941,1306,252329855,208948918,2941,1306,252329855,208948918,34339,15229,1857535032,1788846568,100,100,100,100,8.56,8.58,13.58,11.68
-35645,01,077,01077,14060,5972,241372082,223443333,14060,5972,241372082,223443333,92709,43791,1867355410,1729327931,100,100,100,100,15.17,13.64,12.93,12.92
-35646,01,033,01033,4635,2160,243649699,242582307,4635,2160,243649699,242582307,54428,25758,1611308146,1534877333,100,100,100,100,8.52,8.39,15.12,15.8
-35647,01,083,01083,1030,454,61527567,61105415,1030,454,61527567,61105415,82782,34977,1572610195,1450228326,100,100,100,100,1.24,1.3,3.91,4.21
-35648,01,077,01077,3635,1646,150842934,150492479,3635,1646,150842934,150492479,92709,43791,1867355410,1729327931,100,100,100,100,3.92,3.76,8.08,8.7
-35649,01,083,01083,68,33,8616583,5742334,68,33,8616583,5742334,82782,34977,1572610195,1450228326,100,100,100,100,0.08,0.09,0.55,0.4
-35650,01,079,01079,13971,6139,551440700,548021506,13971,6139,551440700,548021506,34339,15229,1857535032,1788846568,100,100,100,100,40.69,40.31,29.69,30.64
-35651,01,079,01079,1312,580,139815716,139117745,1312,580,139815716,139117745,34339,15229,1857535032,1788846568,100,100,100,100,3.82,3.81,7.53,7.78
-35652,01,077,01077,8085,4098,237455042,208775953,8190,4160,246708337,217263171,92709,43791,1867355410,1729327931,98.72,98.51,96.25,96.09,8.72,9.36,12.72,12.07
-35652,01,083,01083,105,62,9253295,8487218,8190,4160,246708337,217263171,82782,34977,1572610195,1450228326,1.28,1.49,3.75,3.91,0.13,0.18,0.59,0.59
-35653,01,033,01033,280,179,41123277,41071206,11150,4804,392405612,371345923,54428,25758,1611308146,1534877333,2.51,3.73,10.48,11.06,0.51,0.69,2.55,2.68
-35653,01,059,01059,10870,4625,351282335,330274717,11150,4804,392405612,371345923,31704,14022,1674485618,1641587713,97.49,96.27,89.52,88.94,34.29,32.98,20.98,20.12
-35654,01,033,01033,1158,496,39686333,39431939,8685,3667,369571434,368117597,54428,25758,1611308146,1534877333,13.33,13.53,10.74,10.71,2.13,1.93,2.46,2.57
-35654,01,059,01059,7509,3164,322495755,321296312,8685,3667,369571434,368117597,31704,14022,1674485618,1641587713,86.46,86.28,87.26,87.28,23.68,22.56,19.26,19.57
-35654,01,079,01079,18,7,7389346,7389346,8685,3667,369571434,368117597,34339,15229,1857535032,1788846568,0.21,0.19,2,2.01,0.05,0.05,0.4,0.41
-35660,01,033,01033,9042,4694,17295333,16716984,9042,4694,17295333,16716984,54428,25758,1611308146,1534877333,100,100,100,100,16.61,18.22,1.07,1.09
-35661,01,033,01033,16617,7448,169726154,144821229,16617,7448,169726154,144821229,54428,25758,1611308146,1534877333,100,100,100,100,30.53,28.92,10.53,9.44
-35670,01,103,01103,7676,3300,268337141,263901541,7676,3300,268337141,263901541,119490,51193,1551541180,1500476319,100,100,100,100,6.42,6.45,17.29,17.59
-35671,01,083,01083,2107,1045,191320138,136390193,2107,1045,191320138,136390193,82782,34977,1572610195,1450228326,100,100,100,100,2.55,2.99,12.17,9.4
-35672,01,033,01033,127,77,9611097,8503828,6445,2949,362457245,342371183,54428,25758,1611308146,1534877333,1.97,2.61,2.65,2.48,0.23,0.3,0.6,0.55
-35672,01,079,01079,6318,2872,352846148,333867355,6445,2949,362457245,342371183,34339,15229,1857535032,1788846568,98.03,97.39,97.35,97.52,18.4,18.86,19,18.66
-35673,01,079,01079,5623,2318,85910127,85456730,8199,3340,114066680,113483899,34339,15229,1857535032,1788846568,68.58,69.4,75.32,75.3,16.37,15.22,4.62,4.78
-35673,01,103,01103,2576,1022,28156553,28027169,8199,3340,114066680,113483899,119490,51193,1551541180,1500476319,31.42,30.6,24.68,24.7,2.16,2,1.81,1.87
-35674,01,033,01033,18475,8522,498136988,491666573,18475,8522,498136988,491666573,54428,25758,1611308146,1534877333,100,100,100,100,33.94,33.08,30.92,32.03
-35677,01,077,01077,1921,1094,319046493,283725184,1921,1094,319046493,283725184,92709,43791,1867355410,1729327931,100,100,100,100,2.07,2.5,17.09,16.41
-35739,01,083,01083,3239,1418,39555419,39467631,5146,2212,70487646,70242065,82782,34977,1572610195,1450228326,62.94,64.1,56.12,56.19,3.91,4.05,2.52,2.72
-35739,01,089,01089,1907,794,30932227,30774434,5146,2212,70487646,70242065,334811,146447,2104887869,2076116529,37.06,35.9,43.88,43.81,0.57,0.54,1.47,1.48
-35740,01,071,01071,3482,1643,95462030,92475446,3482,1643,95462030,92475446,53227,24786,2918322063,2791664869,100,100,100,100,6.54,6.63,3.27,3.31
-35741,01,089,01089,2933,1293,61236356,60961743,2933,1293,61236356,60961743,334811,146447,2104887869,2076116529,100,100,100,100,0.88,0.88,2.91,2.94
-35744,01,071,01071,2570,1065,87680820,86236625,2570,1065,87680820,86236625,53227,24786,2918322063,2791664869,100,100,100,100,4.83,4.3,3,3.09
-35745,01,071,01071,288,157,174088158,173685339,288,157,174088158,173685339,53227,24786,2918322063,2791664869,100,100,100,100,0.54,0.63,5.97,6.22
-35746,01,071,01071,856,369,152713589,150359826,856,369,152713589,150359826,53227,24786,2918322063,2791664869,100,100,100,100,1.61,1.49,5.23,5.39
-35747,01,095,01095,5901,2743,202501854,193019013,5901,2743,202501854,193019013,93019,40342,1614026113,1465522757,100,100,100,100,6.34,6.8,12.55,13.17
-35748,01,071,01071,176,70,21381230,21346887,6276,2648,211196938,209711870,53227,24786,2918322063,2791664869,2.8,2.64,10.12,10.18,0.33,0.28,0.73,0.76
-35748,01,089,01089,6100,2578,189815708,188364983,6276,2648,211196938,209711870,334811,146447,2104887869,2076116529,97.2,97.36,89.88,89.82,1.82,1.76,9.02,9.07
-35749,01,083,01083,3171,1251,25371978,25175931,20575,7803,105365198,104860111,82782,34977,1572610195,1450228326,15.41,16.03,24.08,24.01,3.83,3.58,1.61,1.74
-35749,01,089,01089,17404,6552,79993220,79684180,20575,7803,105365198,104860111,334811,146447,2104887869,2076116529,84.59,83.97,75.92,75.99,5.2,4.47,3.8,3.84
-35750,01,089,01089,12783,5118,164910288,164559868,12783,5118,164910288,164559868,334811,146447,2104887869,2076116529,100,100,100,100,3.82,3.49,7.83,7.93
-35751,01,071,01071,265,131,74543910,74344995,265,131,74543910,74344995,53227,24786,2918322063,2791664869,100,100,100,100,0.5,0.53,2.55,2.66
-35752,01,071,01071,2047,983,137914866,121020924,2047,983,137914866,121020924,53227,24786,2918322063,2791664869,100,100,100,100,3.85,3.97,4.73,4.34
-35754,01,095,01095,70,24,3912916,3883343,5362,2372,115247264,112611617,93019,40342,1614026113,1465522757,1.31,1.01,3.4,3.45,0.08,0.06,0.24,0.26
-35754,01,103,01103,5292,2348,111334348,108728274,5362,2372,115247264,112611617,119490,51193,1551541180,1500476319,98.69,98.99,96.6,96.55,4.43,4.59,7.18,7.25
-35755,01,071,01071,268,223,23765478,11267928,586,496,80316477,44373368,53227,24786,2918322063,2791664869,45.73,44.96,29.59,25.39,0.5,0.9,0.81,0.4
-35755,01,095,01095,318,273,56550999,33105440,586,496,80316477,44373368,93019,40342,1614026113,1465522757,54.27,55.04,70.41,74.61,0.34,0.68,3.5,2.26
-35756,01,083,01083,7940,3056,170796281,160189259,9016,3556,212363447,198309318,82782,34977,1572610195,1450228326,88.07,85.94,80.43,80.78,9.59,8.74,10.86,11.05
-35756,01,089,01089,1076,500,41567166,38120059,9016,3556,212363447,198309318,334811,146447,2104887869,2076116529,11.93,14.06,19.57,19.22,0.32,0.34,1.97,1.84
-35757,01,083,01083,305,142,1235924,1235924,12840,4995,31196008,31102165,82782,34977,1572610195,1450228326,2.38,2.84,3.96,3.97,0.37,0.41,0.08,0.09
-35757,01,089,01089,12535,4853,29960084,29866241,12840,4995,31196008,31102165,334811,146447,2104887869,2076116529,97.62,97.16,96.04,96.03,3.74,3.31,1.42,1.44
-35758,01,089,01089,41875,17488,69965763,69656038,41875,17488,69965763,69656038,334811,146447,2104887869,2076116529,100,100,100,100,12.51,11.94,3.32,3.36
-35759,01,089,01089,6406,2509,42229844,42094093,6406,2509,42229844,42094093,334811,146447,2104887869,2076116529,100,100,100,100,1.91,1.71,2.01,2.03
-35760,01,089,01089,4879,2189,130640832,129675819,5065,2259,138197076,137068410,334811,146447,2104887869,2076116529,96.33,96.9,94.53,94.61,1.46,1.49,6.21,6.25
-35760,01,095,01095,186,70,7556244,7392591,5065,2259,138197076,137068410,93019,40342,1614026113,1465522757,3.67,3.1,5.47,5.39,0.2,0.17,0.47,0.5
-35761,01,089,01089,11630,4667,302610828,301860360,11630,4667,302610828,301860360,334811,146447,2104887869,2076116529,100,100,100,100,3.47,3.19,14.38,14.54
-35763,01,089,01089,14216,5375,110079785,108938112,14216,5375,110079785,108938112,334811,146447,2104887869,2076116529,100,100,100,100,4.25,3.67,5.23,5.25
-35764,01,071,01071,653,296,86546387,86067483,653,296,86546387,86067483,53227,24786,2918322063,2791664869,100,100,100,100,1.23,1.19,2.97,3.08
-35765,01,049,01049,229,104,13445690,13445690,4013,1958,189643919,182201502,71109,31109,2016785947,2012662359,5.71,5.31,7.09,7.38,0.32,0.33,0.67,0.67
-35765,01,071,01071,3784,1854,176198229,168755812,4013,1958,189643919,182201502,53227,24786,2918322063,2791664869,94.29,94.69,92.91,92.62,7.11,7.48,6.04,6.04
-35766,01,071,01071,150,97,93093501,92766351,150,97,93093501,92766351,53227,24786,2918322063,2791664869,100,100,100,100,0.28,0.39,3.19,3.32
-35768,01,071,01071,11581,5303,442257963,438410273,11581,5303,442257963,438410273,53227,24786,2918322063,2791664869,100,100,100,100,21.76,21.4,15.15,15.7
-35769,01,071,01071,7765,3819,166073924,114903666,9537,4829,227580199,162220866,53227,24786,2918322063,2791664869,81.42,79.08,72.97,70.83,14.59,15.41,5.69,4.12
-35769,01,095,01095,1772,1010,61506275,47317200,9537,4829,227580199,162220866,93019,40342,1614026113,1465522757,18.58,20.92,27.03,29.17,1.9,2.5,3.81,3.23
-35771,01,049,01049,116,49,3616343,3616343,3645,1659,160397743,158287818,71109,31109,2016785947,2012662359,3.18,2.95,2.25,2.28,0.16,0.16,0.18,0.18
-35771,01,071,01071,3529,1610,156781400,154671475,3645,1659,160397743,158287818,53227,24786,2918322063,2791664869,96.82,97.05,97.75,97.72,6.63,6.5,5.37,5.54
-35772,01,071,01071,4908,2322,464852158,445816863,4908,2322,464852158,445816863,53227,24786,2918322063,2791664869,100,100,100,100,9.22,9.37,15.93,15.97
-35773,01,083,01083,2167,878,41313868,41031313,13018,5218,189234503,188314088,82782,34977,1572610195,1450228326,16.65,16.83,21.83,21.79,2.62,2.51,2.63,2.83
-35773,01,089,01089,10851,4340,147920635,147282775,13018,5218,189234503,188314088,334811,146447,2104887869,2076116529,83.35,83.17,78.17,78.21,3.24,2.96,7.03,7.09
-35774,01,071,01071,165,67,36851264,36638409,165,67,36851264,36638409,53227,24786,2918322063,2791664869,100,100,100,100,0.31,0.27,1.26,1.31
-35775,01,103,01103,636,280,46540481,41276181,636,280,46540481,41276181,119490,51193,1551541180,1500476319,100,100,100,100,0.53,0.55,3,2.75
-35776,01,071,01071,2969,1333,184423337,183773909,3395,1544,235130970,234086416,53227,24786,2918322063,2791664869,87.45,86.33,78.43,78.51,5.58,5.38,6.32,6.58
-35776,01,089,01089,38,24,2375915,2330238,3395,1544,235130970,234086416,334811,146447,2104887869,2076116529,1.12,1.55,1.01,1,0.01,0.02,0.11,0.11
-35776,01,095,01095,388,187,48331718,47982269,3395,1544,235130970,234086416,93019,40342,1614026113,1465522757,11.43,12.11,20.56,20.5,0.42,0.46,2.99,3.27
-35801,01,089,01089,21509,10973,36608490,36474864,21509,10973,36608490,36474864,334811,146447,2104887869,2076116529,100,100,100,100,6.42,7.49,1.74,1.76
-35802,01,089,01089,21297,10970,48988500,46963946,21297,10970,48988500,46963946,334811,146447,2104887869,2076116529,100,100,100,100,6.36,7.49,2.33,2.26
-35803,01,089,01089,25471,11155,128319882,123222802,25471,11155,128319882,123222802,334811,146447,2104887869,2076116529,100,100,100,100,7.61,7.62,6.1,5.94
-35805,01,089,01089,22498,11012,24044382,23711097,22498,11012,24044382,23711097,334811,146447,2104887869,2076116529,100,100,100,100,6.72,7.52,1.14,1.14
-35806,01,089,01089,18951,9171,60759667,60292130,18951,9171,60759667,60292130,334811,146447,2104887869,2076116529,100,100,100,100,5.66,6.26,2.89,2.9
-35808,01,089,01089,1946,379,158223463,149473089,1946,379,158223463,149473089,334811,146447,2104887869,2076116529,100,100,100,100,0.58,0.26,7.52,7.2
-35810,01,089,01089,30617,12611,74710239,74605516,30617,12611,74710239,74605516,334811,146447,2104887869,2076116529,100,100,100,100,9.14,8.61,3.55,3.59
-35811,01,089,01089,25955,10935,121107179,119786235,25955,10935,121107179,119786235,334811,146447,2104887869,2076116529,100,100,100,100,7.75,7.47,5.75,5.77
-35816,01,089,01089,15228,7821,13747324,13724811,15228,7821,13747324,13724811,334811,146447,2104887869,2076116529,100,100,100,100,4.55,5.34,0.65,0.66
-35824,01,089,01089,6070,3139,33485551,33041279,6070,3139,33485551,33041279,334811,146447,2104887869,2076116529,100,100,100,100,1.81,2.14,1.59,1.59
-35896,01,089,01089,636,1,654541,651817,636,1,654541,651817,334811,146447,2104887869,2076116529,100,100,100,100,0.19,0,0.03,0.03
-35901,01,019,01019,57,27,5446622,5445327,20045,9229,165289531,154069359,25989,16267,1553934850,1434075952,0.28,0.29,3.3,3.53,0.22,0.17,0.35,0.38
-35901,01,055,01055,19988,9202,159842909,148624032,20045,9229,165289531,154069359,104430,47454,1420941985,1385618994,99.72,99.71,96.7,96.47,19.14,19.39,11.25,10.73
-35903,01,019,01019,43,25,6142705,6137913,18088,8538,181110814,174606070,25989,16267,1553934850,1434075952,0.24,0.29,3.39,3.52,0.17,0.15,0.4,0.43
-35903,01,055,01055,18045,8513,174968109,168468157,18088,8538,181110814,174606070,104430,47454,1420941985,1385618994,99.76,99.71,96.61,96.48,17.28,17.94,12.31,12.16
-35904,01,055,01055,14194,6627,120402082,119590006,14194,6627,120402082,119590006,104430,47454,1420941985,1385618994,100,100,100,100,13.59,13.97,8.47,8.63
-35905,01,015,01015,727,301,28400191,27992202,6410,2782,109069451,107538767,118572,53289,1585814262,1569189995,11.34,10.82,26.04,26.03,0.61,0.56,1.79,1.78
-35905,01,055,01055,5683,2481,80669260,79546565,6410,2782,109069451,107538767,104430,47454,1420941985,1385618994,88.66,89.18,73.96,73.97,5.44,5.23,5.68,5.74
-35906,01,055,01055,9897,4662,97591640,91432748,9897,4662,97591640,91432748,104430,47454,1420941985,1385618994,100,100,100,100,9.48,9.82,6.87,6.6
-35907,01,055,01055,8345,3487,64868135,57676945,8345,3487,64868135,57676945,104430,47454,1420941985,1385618994,100,100,100,100,7.99,7.35,4.57,4.16
-35950,01,095,01095,20826,8135,115762697,115456741,20826,8135,115762697,115456741,93019,40342,1614026113,1465522757,100,100,100,100,22.39,20.17,7.17,7.88
-35951,01,049,01049,1920,504,20229111,20222483,13098,5028,191076490,188623656,71109,31109,2016785947,2012662359,14.66,10.02,10.59,10.72,2.7,1.62,1,1
-35951,01,095,01095,11178,4524,170847379,168401173,13098,5028,191076490,188623656,93019,40342,1614026113,1465522757,85.34,89.98,89.41,89.28,12.02,11.21,10.59,11.49
-35952,01,009,01009,3097,1367,125630457,125162833,7727,3392,284951214,283952612,57322,23887,1685119295,1669961855,40.08,40.3,44.09,44.08,5.4,5.72,7.46,7.49
-35952,01,055,01055,4630,2025,159320757,158789779,7727,3392,284951214,283952612,104430,47454,1420941985,1385618994,59.92,59.7,55.91,55.92,4.43,4.27,11.21,11.46
-35953,01,115,01115,7319,3217,306261986,295512329,7319,3217,306261986,295512329,83593,35541,1692919455,1636619393,100,100,100,100,8.76,9.05,18.09,18.06
-35954,01,049,01049,76,42,12432066,12347901,12416,5686,271676839,270547084,71109,31109,2016785947,2012662359,0.61,0.74,4.58,4.56,0.11,0.14,0.62,0.61
-35954,01,055,01055,12340,5644,259244773,258199183,12416,5686,271676839,270547084,104430,47454,1420941985,1385618994,99.39,99.26,95.42,95.44,11.82,11.89,18.24,18.63
-35956,01,055,01055,8842,3741,191480661,190957454,8842,3741,191480661,190957454,104430,47454,1420941985,1385618994,100,100,100,100,8.47,7.88,13.48,13.78
-35957,01,009,01009,379,152,9274308,9243008,15693,6535,206753203,206099774,57322,23887,1685119295,1669961855,2.42,2.33,4.49,4.48,0.66,0.64,0.55,0.55
-35957,01,049,01049,1867,818,43988954,43890129,15693,6535,206753203,206099774,71109,31109,2016785947,2012662359,11.9,12.52,21.28,21.3,2.63,2.63,2.18,2.18
-35957,01,095,01095,13447,5565,153489941,152966637,15693,6535,206753203,206099774,93019,40342,1614026113,1465522757,85.69,85.16,74.24,74.22,14.46,13.79,9.51,10.44
-35958,01,071,01071,3582,1590,140958639,136436323,3582,1590,140958639,136436323,53227,24786,2918322063,2791664869,100,100,100,100,6.73,6.41,4.83,4.89
-35959,01,019,01019,4836,3692,215757774,161591137,4836,3692,215757774,161591137,25989,16267,1553934850,1434075952,100,100,100,100,18.61,22.7,13.88,11.27
-35960,01,019,01019,10087,6449,416212617,370540398,10087,6449,416212617,370540398,25989,16267,1553934850,1434075952,100,100,100,100,38.81,39.64,26.78,25.84
-35961,01,019,01019,606,264,26687239,26650343,6514,2675,332389307,331186491,25989,16267,1553934850,1434075952,9.3,9.87,8.03,8.05,2.33,1.62,1.72,1.86
-35961,01,049,01049,5444,2221,271834093,270668173,6514,2675,332389307,331186491,71109,31109,2016785947,2012662359,83.57,83.03,81.78,81.73,7.66,7.14,13.48,13.45
-35961,01,055,01055,464,190,33867975,33867975,6514,2675,332389307,331186491,104430,47454,1420941985,1385618994,7.12,7.1,10.19,10.23,0.44,0.4,2.38,2.44
-35962,01,049,01049,7871,3013,186826869,186637334,8300,3197,204025770,203836235,71109,31109,2016785947,2012662359,94.83,94.24,91.57,91.56,11.07,9.69,9.26,9.27
-35962,01,095,01095,429,184,17198901,17198901,8300,3197,204025770,203836235,93019,40342,1614026113,1465522757,5.17,5.76,8.43,8.44,0.46,0.46,1.07,1.17
-35963,01,049,01049,1704,762,71864417,71862422,1704,762,71864417,71862422,71109,31109,2016785947,2012662359,100,100,100,100,2.4,2.45,3.56,3.57
-35966,01,049,01049,1311,592,62221450,62221450,3914,1776,216169381,216120536,71109,31109,2016785947,2012662359,33.5,33.33,28.78,28.79,1.84,1.9,3.09,3.09
-35966,01,071,01071,2603,1184,153947931,153899086,3914,1776,216169381,216120536,53227,24786,2918322063,2791664869,66.5,66.67,71.22,71.21,4.89,4.78,5.28,5.51
-35967,01,019,01019,338,156,23473166,23473166,16630,7340,324623904,323742233,25989,16267,1553934850,1434075952,2.03,2.13,7.23,7.25,1.3,0.96,1.51,1.64
-35967,01,049,01049,16292,7184,301150738,300269067,16630,7340,324623904,323742233,71109,31109,2016785947,2012662359,97.97,97.87,92.77,92.75,22.91,23.09,14.93,14.92
-35968,01,049,01049,4575,2017,139125491,138813998,4575,2017,139125491,138813998,71109,31109,2016785947,2012662359,100,100,100,100,6.43,6.48,6.9,6.9
-35971,01,049,01049,4914,2155,146897261,146897261,4914,2155,146897261,146897261,71109,31109,2016785947,2012662359,100,100,100,100,6.91,6.93,7.28,7.3
-35972,01,055,01055,912,400,44345788,44215755,1139,501,63509907,63141901,104430,47454,1420941985,1385618994,80.07,79.84,69.82,70.03,0.87,0.84,3.12,3.19
-35972,01,115,01115,227,101,19164119,18926146,1139,501,63509907,63141901,83593,35541,1692919455,1636619393,19.93,20.16,30.18,29.97,0.27,0.28,1.13,1.16
-35973,01,019,01019,2870,1456,297614949,296397096,2870,1456,297614949,296397096,25989,16267,1553934850,1434075952,100,100,100,100,11.04,8.95,19.15,20.67
-35974,01,049,01049,1589,739,34060245,34030089,1589,739,34060245,34030089,71109,31109,2016785947,2012662359,100,100,100,100,2.23,2.38,1.69,1.69
-35975,01,049,01049,962,451,64973713,64950574,1058,495,89115178,88661767,71109,31109,2016785947,2012662359,90.93,91.11,72.91,73.26,1.35,1.45,3.22,3.23
-35975,01,095,01095,96,44,24141465,23711193,1058,495,89115178,88661767,93019,40342,1614026113,1465522757,9.07,8.89,27.09,26.74,0.1,0.11,1.5,1.62
-35976,01,009,01009,357,158,27236348,27178914,16272,7909,422854976,331304447,57322,23887,1685119295,1669961855,2.19,2,6.44,8.2,0.62,0.66,1.62,1.63
-35976,01,043,01043,24,7,294675,292657,16272,7909,422854976,331304447,80406,37054,1955495254,1903228333,0.15,0.09,0.07,0.09,0.03,0.02,0.02,0.02
-35976,01,095,01095,15891,7744,395323953,303832876,16272,7909,422854976,331304447,93019,40342,1614026113,1465522757,97.66,97.91,93.49,91.71,17.08,19.2,24.49,20.73
-35978,01,049,01049,4373,1999,134824694,134460380,5390,2453,174935451,174571137,71109,31109,2016785947,2012662359,81.13,81.49,77.07,77.02,6.15,6.43,6.69,6.68
-35978,01,071,01071,1017,454,40110757,40110757,5390,2453,174935451,174571137,53227,24786,2918322063,2791664869,18.87,18.51,22.93,22.98,1.91,1.83,1.37,1.44
-35979,01,049,01049,829,349,18437078,18437078,1398,565,27113570,27113570,71109,31109,2016785947,2012662359,59.3,61.77,68,68,1.17,1.12,0.91,0.92
-35979,01,071,01071,569,216,8676492,8676492,1398,565,27113570,27113570,53227,24786,2918322063,2791664869,40.7,38.23,32,32,1.07,0.87,0.3,0.31
-35980,01,009,01009,1230,569,71392063,71204786,5161,2075,144022520,143616194,57322,23887,1685119295,1669961855,23.83,27.42,49.57,49.58,2.15,2.38,4.24,4.26
-35980,01,095,01095,3931,1506,72630457,72411408,5161,2075,144022520,143616194,93019,40342,1614026113,1465522757,76.17,72.58,50.43,50.42,4.23,3.73,4.5,4.94
-35981,01,049,01049,2141,985,59863352,59863352,2141,985,59863352,59863352,71109,31109,2016785947,2012662359,100,100,100,100,3.01,3.17,2.97,2.97
-35983,01,019,01019,3738,2497,147378751,129804622,3738,2497,147378751,129804622,25989,16267,1553934850,1434075952,100,100,100,100,14.38,15.35,9.48,9.05
-35984,01,019,01019,250,163,43343413,43322935,1889,1490,167816589,167336339,25989,16267,1553934850,1434075952,13.23,10.94,25.83,25.89,0.96,1,2.79,3.02
-35984,01,049,01049,1639,1327,124473176,124013404,1889,1490,167816589,167336339,71109,31109,2016785947,2012662359,86.77,89.06,74.17,74.11,2.3,4.27,6.17,6.16
-35986,01,049,01049,7744,3449,117226675,117189217,7744,3449,117226675,117189217,71109,31109,2016785947,2012662359,100,100,100,100,10.89,11.09,5.81,5.82
-35987,01,115,01115,2666,1197,155150550,153775515,2666,1197,155150550,153775515,83593,35541,1692919455,1636619393,100,100,100,100,3.19,3.37,9.16,9.4
-35988,01,049,01049,1940,793,31800288,31618255,1940,793,31800288,31618255,71109,31109,2016785947,2012662359,100,100,100,100,2.73,2.55,1.58,1.57
-35989,01,049,01049,3573,1556,157494243,157207759,3573,1556,157494243,157207759,71109,31109,2016785947,2012662359,100,100,100,100,5.02,5,7.81,7.81
-35990,01,055,01055,38,25,198483,198483,38,25,198483,198483,104430,47454,1420941985,1385618994,100,100,100,100,0.04,0.05,0.01,0.01
-36003,01,001,01001,1975,1003,250627570,241845420,1975,1003,250627570,241845420,54571,22135,1565358013,1539582278,100,100,100,100,3.62,4.53,16.01,15.71
-36005,01,005,01005,9,5,1476577,1476577,1522,840,365460923,365158910,27457,11829,2342683684,2291818968,0.59,0.6,0.4,0.4,0.03,0.04,0.06,0.06
-36005,01,011,01011,414,266,177058469,176921663,1522,840,365460923,365158910,10914,4493,1619113433,1613056905,27.2,31.67,48.45,48.45,3.79,5.92,10.94,10.97
-36005,01,109,01109,1099,569,186925877,186760670,1522,840,365460923,365158910,32899,15267,1743078449,1740715643,72.21,67.74,51.15,51.15,3.34,3.73,10.72,10.73
-36006,01,001,01001,994,433,141354770,141161474,1313,573,185341407,185108733,54571,22135,1565358013,1539582278,75.7,75.57,76.27,76.26,1.82,1.96,9.03,9.17
-36006,01,021,01021,319,140,43986637,43947259,1313,573,185341407,185108733,43643,19278,1815069969,1794483586,24.3,24.43,23.73,23.74,0.73,0.73,2.42,2.45
-36009,01,031,01031,64,40,7601281,7598099,2566,1254,390419085,388900687,49948,22330,1762473516,1758528786,2.49,3.19,1.95,1.95,0.13,0.18,0.43,0.43
-36009,01,041,01041,2502,1214,382817804,381302588,2566,1254,390419085,388900687,13906,6735,1582264398,1576888006,97.51,96.81,98.05,98.05,17.99,18.03,24.19,24.18
-36010,01,031,01031,680,337,53954240,53860622,4677,2428,328637051,328378577,49948,22330,1762473516,1758528786,14.54,13.88,16.42,16.4,1.36,1.51,3.06,3.06
-36010,01,045,01045,35,24,6850282,6850282,4677,2428,328637051,328378577,50251,22677,1457387614,1453371157,0.75,0.99,2.08,2.09,0.07,0.11,0.47,0.47
-36010,01,109,01109,3962,2067,267832529,267667673,4677,2428,328637051,328378577,32899,15267,1743078449,1740715643,84.71,85.13,81.5,81.51,12.04,13.54,15.37,15.38
-36013,01,101,01101,562,207,45262845,45026688,562,207,45262845,45026688,229363,101641,2071762030,2031190777,100,100,100,100,0.25,0.2,2.18,2.22
-36016,01,005,01005,5150,1726,625650995,624879674,5150,1726,625650995,624879674,27457,11829,2342683684,2291818968,100,100,100,100,18.76,14.59,26.71,27.27
-36017,01,005,01005,3318,961,161421581,161248032,3318,961,161421581,161248032,27457,11829,2342683684,2291818968,100,100,100,100,12.08,8.12,6.89,7.04
-36020,01,051,01051,1123,454,29017446,26040826,1123,454,29017446,26040826,79303,32657,1701730134,1601867593,100,100,100,100,1.42,1.39,1.71,1.63
-36022,01,001,01001,4265,1673,106698143,106473874,13092,4581,243256401,235108600,54571,22135,1565358013,1539582278,32.58,36.52,43.86,45.29,7.82,7.56,6.82,6.92
-36022,01,051,01051,8827,2908,136558258,128634726,13092,4581,243256401,235108600,79303,32657,1701730134,1601867593,67.42,63.48,56.14,54.71,11.13,8.9,8.02,8.03
-36024,01,051,01051,5428,3046,250912871,232834281,5428,3046,250912871,232834281,79303,32657,1701730134,1601867593,100,100,100,100,6.84,9.33,14.74,14.54
-36025,01,051,01051,5729,1297,38607543,37342821,5729,1297,38607543,37342821,79303,32657,1701730134,1601867593,100,100,100,100,7.22,3.97,2.27,2.33
-36026,01,037,01037,759,628,159355053,154874778,1089,992,200735174,190861884,11539,6478,1725837721,1685891075,69.7,63.31,79.39,81.14,6.58,9.69,9.23,9.19
-36026,01,051,01051,330,364,41380121,35987106,1089,992,200735174,190861884,79303,32657,1701730134,1601867593,30.3,36.69,20.61,18.86,0.42,1.11,2.43,2.25
-36027,01,005,01005,16078,7624,701533798,652910392,16261,7719,799284111,748120825,27457,11829,2342683684,2291818968,98.87,98.77,87.77,87.27,58.56,64.45,29.95,28.49
-36027,01,067,01067,68,28,18615479,18615479,16261,7719,799284111,748120825,17302,8891,1471913047,1454926258,0.42,0.36,2.33,2.49,0.39,0.31,1.26,1.28
-36027,01,113,01113,115,67,79134834,76594954,16261,7719,799284111,748120825,52947,24595,1676219091,1660545751,0.71,0.87,9.9,10.24,0.22,0.27,4.72,4.61
-36028,01,039,01039,1006,577,179431912,176425877,1746,992,337519885,333798171,37765,18829,2703395814,2668869505,57.62,58.17,53.16,52.85,2.66,3.06,6.64,6.61
-36028,01,041,01041,740,415,158087973,157372294,1746,992,337519885,333798171,13906,6735,1582264398,1576888006,42.38,41.83,46.84,47.15,5.32,6.16,9.99,9.98
-36029,01,011,01011,572,281,255092437,253539609,723,356,266624093,264969609,10914,4493,1619113433,1613056905,79.11,78.93,95.67,95.69,5.24,6.25,15.76,15.72
-36029,01,087,01087,151,75,11531656,11430000,723,356,266624093,264969609,21452,10259,1588199278,1577005015,20.89,21.07,4.33,4.31,0.7,0.73,0.73,0.72
-36030,01,013,01013,491,269,176738543,176672712,491,269,176738543,176672712,20947,9964,2014703708,2011976894,100,100,100,100,2.34,2.7,8.77,8.78
-36031,01,087,01087,156,70,26965936,26835548,156,70,26965936,26835548,21452,10259,1588199278,1577005015,100,100,100,100,0.73,0.68,1.7,1.7
-36032,01,013,01013,360,163,46147239,46116454,2339,1061,288490692,287751800,20947,9964,2014703708,2011976894,15.39,15.36,16,16.03,1.72,1.64,2.29,2.29
-36032,01,085,01085,1979,898,242343453,241635346,2339,1061,288490692,287751800,11299,5140,1877923173,1854199648,84.61,84.64,84,83.97,17.51,17.47,12.9,13.03
-36033,01,013,01013,4183,2110,547462075,547091003,4299,2210,607984850,607557243,20947,9964,2014703708,2011976894,97.3,95.48,90.05,90.05,19.97,21.18,27.17,27.19
-36033,01,035,01035,108,85,45154607,45098072,4299,2210,607984850,607557243,13228,7093,2208539709,2201894769,2.51,3.85,7.43,7.42,0.82,1.2,2.04,2.05
-36033,01,099,01099,8,15,15368168,15368168,4299,2210,607984850,607557243,23068,11333,2679128468,2656485275,0.19,0.68,2.53,2.53,0.03,0.13,0.57,0.58
-36034,01,031,01031,187,97,50915934,50909928,807,436,150977153,150761596,49948,22330,1762473516,1758528786,23.17,22.25,33.72,33.77,0.37,0.43,2.89,2.9
-36034,01,041,01041,230,133,28527283,28436962,807,436,150977153,150761596,13906,6735,1582264398,1576888006,28.5,30.5,18.9,18.86,1.65,1.97,1.8,1.8
-36034,01,109,01109,390,206,71533936,71414706,807,436,150977153,150761596,32899,15267,1743078449,1740715643,48.33,47.25,47.38,47.37,1.19,1.35,4.1,4.1
-36035,01,041,01041,297,151,58029096,57661582,1913,974,282897152,282373603,13906,6735,1582264398,1576888006,15.53,15.5,20.51,20.42,2.14,2.24,3.67,3.66
-36035,01,109,01109,1616,823,224868056,224712021,1913,974,282897152,282373603,32899,15267,1743078449,1740715643,84.47,84.5,79.49,79.58,4.91,5.39,12.9,12.91
-36036,01,041,01041,596,305,77758733,77605994,2003,1012,271207711,270542730,13906,6735,1582264398,1576888006,29.76,30.14,28.67,28.69,4.29,4.53,4.91,4.92
-36036,01,101,01101,1407,707,193448978,192936736,2003,1012,271207711,270542730,229363,101641,2071762030,2031190777,70.24,69.86,71.33,71.31,0.61,0.7,9.34,9.5
-36037,01,013,01013,14040,6500,923885225,922098216,14074,6521,935611108,933824099,20947,9964,2014703708,2011976894,99.76,99.68,98.75,98.74,67.03,65.23,45.86,45.83
-36037,01,041,01041,34,21,11725883,11725883,14074,6521,935611108,933824099,13906,6735,1582264398,1576888006,0.24,0.32,1.25,1.26,0.24,0.31,0.74,0.74
-36038,01,039,01039,57,22,6143448,6125160,57,22,6143448,6125160,37765,18829,2703395814,2668869505,100,100,100,100,0.15,0.12,0.23,0.23
-36039,01,087,01087,253,129,98897767,98508141,253,129,98897767,98508141,21452,10259,1588199278,1577005015,100,100,100,100,1.18,1.26,6.23,6.25
-36040,01,085,01085,3976,1671,404330079,401179617,3976,1671,404330079,401179617,11299,5140,1877923173,1854199648,100,100,100,100,35.19,32.51,21.53,21.64
-36041,01,041,01041,1296,636,136730134,136395378,1318,650,137910701,137560591,13906,6735,1582264398,1576888006,98.33,97.85,99.14,99.15,9.32,9.44,8.64,8.65
-36041,01,101,01101,22,14,1180567,1165213,1318,650,137910701,137560591,229363,101641,2071762030,2031190777,1.67,2.15,0.86,0.85,0.01,0.01,0.06,0.06
-36042,01,013,01013,603,301,101227003,100839168,1500,734,211443919,210808299,20947,9964,2014703708,2011976894,40.2,41.01,47.87,47.83,2.88,3.02,5.02,5.01
-36042,01,041,01041,897,433,110216916,109969131,1500,734,211443919,210808299,13906,6735,1582264398,1576888006,59.8,58.99,52.13,52.17,6.45,6.43,6.97,6.97
-36043,01,085,01085,1221,534,130599738,129115712,3666,1696,270303855,266227361,11299,5140,1877923173,1854199648,33.31,31.49,48.32,48.5,10.81,10.39,6.95,6.96
-36043,01,101,01101,2445,1162,139704117,137111649,3666,1696,270303855,266227361,229363,101641,2071762030,2031190777,66.69,68.51,51.68,51.5,1.07,1.14,6.74,6.75
-36046,01,041,01041,934,438,117028522,116862299,1490,707,178539336,177862370,13906,6735,1582264398,1576888006,62.68,61.95,65.55,65.7,6.72,6.5,7.4,7.41
-36046,01,101,01101,556,269,61510814,61000071,1490,707,178539336,177862370,229363,101641,2071762030,2031190777,37.32,38.05,34.45,34.3,0.24,0.26,2.97,3
-36047,01,085,01085,1051,485,264915766,262583545,1396,652,288946988,286326559,11299,5140,1877923173,1854199648,75.29,74.39,91.68,91.71,9.3,9.44,14.11,14.16
-36047,01,101,01101,345,167,24031222,23743014,1396,652,288946988,286326559,229363,101641,2071762030,2031190777,24.71,25.61,8.32,8.29,0.15,0.16,1.16,1.17
-36048,01,005,01005,1459,735,273918685,273421233,1459,735,273918685,273421233,27457,11829,2342683684,2291818968,100,100,100,100,5.31,6.21,11.69,11.93
-36049,01,041,01041,5631,2641,399446162,397746215,5706,2678,415664093,413964146,13906,6735,1582264398,1576888006,98.69,98.62,96.1,96.08,40.49,39.21,25.25,25.22
-36049,01,109,01109,75,37,16217931,16217931,5706,2678,415664093,413964146,32899,15267,1743078449,1740715643,1.31,1.38,3.9,3.92,0.23,0.24,0.93,0.93
-36051,01,001,01001,1615,693,91085990,90931152,2304,1001,132290672,131514381,54571,22135,1565358013,1539582278,70.1,69.23,68.85,69.14,2.96,3.13,5.82,5.91
-36051,01,021,01021,396,174,14046490,14018784,2304,1001,132290672,131514381,43643,19278,1815069969,1794483586,17.19,17.38,10.62,10.66,0.91,0.9,0.77,0.78
-36051,01,051,01051,293,134,27158192,26564445,2304,1001,132290672,131514381,79303,32657,1701730134,1601867593,12.72,13.39,20.53,20.2,0.37,0.41,1.6,1.66
-36052,01,011,01011,17,12,13456568,13357769,739,334,163121028,161902261,10914,4493,1619113433,1613056905,2.3,3.59,8.25,8.25,0.16,0.27,0.83,0.83
-36052,01,101,01101,722,322,149664460,148544492,739,334,163121028,161902261,229363,101641,2071762030,2031190777,97.7,96.41,91.75,91.75,0.31,0.32,7.22,7.31
-36053,01,005,01005,695,395,438249394,437636916,1967,1105,753644273,752654958,27457,11829,2342683684,2291818968,35.33,35.75,58.15,58.15,2.53,3.34,18.71,19.1
-36053,01,011,01011,1272,710,315394879,315018042,1967,1105,753644273,752654958,10914,4493,1619113433,1613056905,64.67,64.25,41.85,41.85,11.65,15.8,19.48,19.53
-36054,01,051,01051,15066,6192,66941199,63061246,15066,6192,66941199,63061246,79303,32657,1701730134,1601867593,100,100,100,100,19,18.96,3.93,3.94
-36064,01,101,01101,6753,2654,211800252,209281905,6753,2654,211800252,209281905,229363,101641,2071762030,2031190777,100,100,100,100,2.94,2.61,10.22,10.3
-36066,01,001,01001,17282,6904,36403491,36324943,19089,7759,54362452,51451444,54571,22135,1565358013,1539582278,90.53,88.98,66.96,70.6,31.67,31.19,2.33,2.36
-36066,01,051,01051,1807,855,17958961,15126501,19089,7759,54362452,51451444,79303,32657,1701730134,1601867593,9.47,11.02,33.04,29.4,2.28,2.62,1.06,0.94
-36067,01,001,01001,26954,10737,630613471,619615179,26954,10737,630613471,619615179,54571,22135,1565358013,1539582278,100,100,100,100,49.39,48.51,40.29,40.25
-36069,01,101,01101,1848,966,375220143,371855285,1935,1010,389168692,385803834,229363,101641,2071762030,2031190777,95.5,95.64,96.42,96.38,0.81,0.95,18.11,18.31
-36069,01,109,01109,87,44,13948549,13948549,1935,1010,389168692,385803834,32899,15267,1743078449,1740715643,4.5,4.36,3.58,3.62,0.26,0.29,0.8,0.8
-36071,01,013,01013,17,9,19820902,19820902,766,357,121716794,121630582,20947,9964,2014703708,2011976894,2.22,2.52,16.28,16.3,0.08,0.09,0.98,0.99
-36071,01,041,01041,749,348,101895892,101809680,766,357,121716794,121630582,13906,6735,1582264398,1576888006,97.78,97.48,83.72,83.7,5.39,5.17,6.44,6.46
-36075,01,087,01087,2226,982,239828984,236980556,2226,982,239828984,236980556,21452,10259,1588199278,1577005015,100,100,100,100,10.38,9.57,15.1,15.03
-36078,01,051,01051,8442,3719,345118762,333404774,13179,5819,461354488,446312194,79303,32657,1701730134,1601867593,64.06,63.91,74.81,74.7,10.65,11.39,20.28,20.81
-36078,01,123,01123,4737,2100,116235726,112907420,13179,5819,461354488,446312194,41616,22111,1984588853,1855780057,35.94,36.09,25.19,25.3,11.38,9.5,5.86,6.08
-36079,01,031,01031,338,159,45753170,45753170,9339,4413,516939487,515790564,49948,22330,1762473516,1758528786,3.62,3.6,8.85,8.87,0.68,0.71,2.6,2.6
-36079,01,109,01109,9001,4254,471186317,470037394,9339,4413,516939487,515790564,32899,15267,1743078449,1740715643,96.38,96.4,91.15,91.13,27.36,27.86,27.03,27
-36080,01,037,01037,8,8,2996502,2996502,2271,1220,148719182,140173756,11539,6478,1725837721,1685891075,0.35,0.66,2.01,2.14,0.07,0.12,0.17,0.18
-36080,01,051,01051,2263,1212,145722680,137177254,2271,1220,148719182,140173756,79303,32657,1701730134,1601867593,99.65,99.34,97.99,97.86,2.85,3.71,8.56,8.56
-36081,01,011,01011,265,142,74125722,73902305,15267,7409,563703659,562871687,10914,4493,1619113433,1613056905,1.74,1.92,13.15,13.13,2.43,3.16,4.58,4.58
-36081,01,109,01109,15002,7267,489577937,488969382,15267,7409,563703659,562871687,32899,15267,1743078449,1740715643,98.26,98.08,86.85,86.87,45.6,47.6,28.09,28.09
-36082,01,109,01109,1667,0,987317,987317,1667,0,987317,987317,32899,15267,1743078449,1740715643,100,0,100,100,5.07,0,0.06,0.06
-36083,01,087,01087,9563,4894,665274871,659852116,9563,4894,665274871,659852116,21452,10259,1588199278,1577005015,100,100,100,100,44.58,47.7,41.89,41.84
-36088,01,087,01087,4767,1936,8681641,8669378,4767,1936,8681641,8669378,21452,10259,1588199278,1577005015,100,100,100,100,22.22,18.87,0.55,0.55
-36089,01,011,01011,8341,3054,708787589,705224766,8760,3274,855898029,851830624,10914,4493,1619113433,1613056905,95.22,93.28,82.81,82.79,76.42,67.97,43.78,43.72
-36089,01,087,01087,419,220,147110440,146605858,8760,3274,855898029,851830624,21452,10259,1588199278,1577005015,4.78,6.72,17.19,17.21,1.95,2.14,9.26,9.3
-36091,01,001,01001,346,141,27255074,27218861,3648,1652,216110895,211857079,54571,22135,1565358013,1539582278,9.48,8.54,12.61,12.85,0.63,0.64,1.74,1.77
-36091,01,021,01021,3261,1482,187396246,183241923,3648,1652,216110895,211857079,43643,19278,1815069969,1794483586,89.39,89.71,86.71,86.49,7.47,7.69,10.32,10.21
-36091,01,037,01037,41,29,1459575,1396295,3648,1652,216110895,211857079,11539,6478,1725837721,1685891075,1.12,1.76,0.68,0.66,0.36,0.45,0.08,0.08
-36092,01,051,01051,20274,8197,351762725,338772032,20274,8197,351762725,338772032,79303,32657,1701730134,1601867593,100,100,100,100,25.57,25.1,20.67,21.15
-36093,01,051,01051,9456,3717,215999606,211125348,9456,3717,215999606,211125348,79303,32657,1701730134,1601867593,100,100,100,100,11.92,11.38,12.69,13.18
-36104,01,101,01101,9468,4400,39824874,32478638,9468,4400,39824874,32478638,229363,101641,2071762030,2031190777,100,100,100,100,4.13,4.33,1.92,1.6
-36105,01,101,01101,12043,5427,193496195,190235308,12043,5427,193496195,190235308,229363,101641,2071762030,2031190777,100,100,100,100,5.25,5.34,9.34,9.37
-36106,01,101,01101,15211,7184,15764025,15754610,15211,7184,15764025,15754610,229363,101641,2071762030,2031190777,100,100,100,100,6.63,7.07,0.76,0.78
-36107,01,101,01101,9589,4474,8377980,8377980,9589,4474,8377980,8377980,229363,101641,2071762030,2031190777,100,100,100,100,4.18,4.4,0.4,0.41
-36108,01,101,01101,21306,9666,188689605,180216132,21306,9666,188689605,180216132,229363,101641,2071762030,2031190777,100,100,100,100,9.29,9.51,9.11,8.87
-36109,01,101,01101,24777,11088,30051913,30021825,24777,11088,30051913,30021825,229363,101641,2071762030,2031190777,100,100,100,100,10.8,10.91,1.45,1.48
-36110,01,101,01101,12997,5476,81582694,76743399,12997,5476,81582694,76743399,229363,101641,2071762030,2031190777,100,100,100,100,5.67,5.39,3.94,3.78
-36111,01,101,01101,12176,5610,11147095,11134306,12176,5610,11147095,11134306,229363,101641,2071762030,2031190777,100,100,100,100,5.31,5.52,0.54,0.55
-36112,01,101,01101,553,2,904056,904056,553,2,904056,904056,229363,101641,2071762030,2031190777,100,100,100,100,0.24,0,0.04,0.04
-36113,01,101,01101,1902,362,8070380,7306469,1902,362,8070380,7306469,229363,101641,2071762030,2031190777,100,100,100,100,0.83,0.36,0.39,0.36
-36115,01,101,01101,623,308,1532461,1532461,623,308,1532461,1532461,229363,101641,2071762030,2031190777,100,100,100,100,0.27,0.3,0.07,0.08
-36116,01,101,01101,43790,18771,146935886,145218169,43790,18771,146935886,145218169,229363,101641,2071762030,2031190777,100,100,100,100,19.09,18.47,7.09,7.15
-36117,01,101,01101,50268,22405,143561468,140602371,50268,22405,143561468,140602371,229363,101641,2071762030,2031190777,100,100,100,100,21.92,22.04,6.93,6.92
-36201,01,015,01015,20156,9535,96781082,96579030,20156,9535,96781082,96579030,118572,53289,1585814262,1569189995,100,100,100,100,17,17.89,6.1,6.15
-36203,01,015,01015,13763,5783,60833550,59397884,18799,7774,101065682,99112441,118572,53289,1585814262,1569189995,73.21,74.39,60.19,59.93,11.61,10.85,3.84,3.79
-36203,01,121,01121,5036,1991,40232132,39714557,18799,7774,101065682,99112441,82291,37088,1969183660,1908239516,26.79,25.61,39.81,40.07,6.12,5.37,2.04,2.08
-36205,01,015,01015,635,360,11179760,11172382,635,360,11179760,11172382,118572,53289,1585814262,1569189995,100,100,100,100,0.54,0.68,0.7,0.71
-36206,01,015,01015,11427,5099,41554064,41373138,11427,5099,41554064,41373138,118572,53289,1585814262,1569189995,100,100,100,100,9.64,9.57,2.62,2.64
-36207,01,015,01015,19801,9372,192793680,191200598,19801,9372,192875238,191279525,118572,53289,1585814262,1569189995,100,100,99.96,99.96,16.7,17.59,12.16,12.18
-36207,01,029,01029,0,0,81558,78927,19801,9372,192875238,191279525,14972,6718,1453018448,1450652767,0,0,0.04,0.04,0,0,0.01,0.01
-36250,01,015,01015,4603,1852,45903666,45695573,4603,1852,45903666,45695573,118572,53289,1585814262,1569189995,100,100,100,100,3.88,3.48,2.89,2.91
-36251,01,027,01027,5103,2451,375995983,374132430,5103,2451,375995983,374132430,13932,6776,1569536908,1564252280,100,100,100,100,36.63,36.17,23.96,23.92
-36255,01,027,01027,951,498,173895171,173706099,969,508,178046398,177815162,13932,6776,1569536908,1564252280,98.14,98.03,97.67,97.69,6.83,7.35,11.08,11.1
-36255,01,123,01123,18,10,4151227,4109063,969,508,178046398,177815162,41616,22111,1984588853,1855780057,1.86,1.97,2.33,2.31,0.04,0.05,0.21,0.22
-36256,01,027,01027,16,8,2580845,2559684,1570,756,247701523,245650944,13932,6776,1569536908,1564252280,1.02,1.06,1.04,1.04,0.11,0.12,0.16,0.16
-36256,01,123,01123,1554,748,245120678,243091260,1570,756,247701523,245650944,41616,22111,1984588853,1855780057,98.98,98.94,98.96,98.96,3.73,3.38,12.35,13.1
-36258,01,027,01027,816,472,127619939,126825702,1599,872,292643569,291663417,13932,6776,1569536908,1564252280,51.03,54.13,43.61,43.48,5.86,6.97,8.13,8.11
-36258,01,029,01029,585,261,132144308,131958393,1599,872,292643569,291663417,14972,6718,1453018448,1450652767,36.59,29.93,45.16,45.24,3.91,3.89,9.09,9.1
-36258,01,111,01111,198,139,32879322,32879322,1599,872,292643569,291663417,22913,11982,1512901887,1503616599,12.38,15.94,11.24,11.27,0.86,1.16,2.17,2.19
-36260,01,015,01015,3101,1343,22556456,22326361,4247,1856,71060580,70303259,118572,53289,1585814262,1569189995,73.02,72.36,31.74,31.76,2.62,2.52,1.42,1.42
-36260,01,121,01121,1146,513,48504124,47976898,4247,1856,71060580,70303259,82291,37088,1969183660,1908239516,26.98,27.64,68.26,68.24,1.39,1.38,2.46,2.51
-36262,01,029,01029,1448,661,231863761,231797075,1448,661,231863761,231797075,14972,6718,1453018448,1450652767,100,100,100,100,9.67,9.84,15.96,15.98
-36263,01,111,01111,658,296,63803272,63803272,658,296,63803272,63803272,22913,11982,1512901887,1503616599,100,100,100,100,2.87,2.47,4.22,4.24
-36264,01,029,01029,8231,3672,566281093,565021510,8659,3892,612045123,610716140,14972,6718,1453018448,1450652767,95.06,94.35,92.52,92.52,54.98,54.66,38.97,38.95
-36264,01,111,01111,428,220,45764030,45694630,8659,3892,612045123,610716140,22913,11982,1512901887,1503616599,4.94,5.65,7.48,7.48,1.87,1.84,3.02,3.04
-36265,01,015,01015,21060,9150,258442993,257643439,21060,9150,258442993,257643439,118572,53289,1585814262,1569189995,100,100,100,100,17.76,17.17,16.3,16.42
-36266,01,027,01027,4823,2298,363482543,362464349,5582,2938,465269318,462616327,13932,6776,1569536908,1564252280,86.4,78.22,78.12,78.35,34.62,33.91,23.16,23.17
-36266,01,111,01111,759,640,101786775,100151978,5582,2938,465269318,462616327,22913,11982,1512901887,1503616599,13.6,21.78,21.88,21.65,3.31,5.34,6.73,6.66
-36267,01,027,01027,35,21,3530688,3530688,35,21,3530688,3530688,13932,6776,1569536908,1564252280,100,100,100,100,0.25,0.31,0.22,0.23
-36268,01,027,01027,23,15,14474780,14336980,5432,2362,247062242,243083378,13932,6776,1569536908,1564252280,0.42,0.64,5.86,5.9,0.17,0.22,0.92,0.92
-36268,01,121,01121,5409,2347,232587462,228746398,5432,2362,247062242,243083378,82291,37088,1969183660,1908239516,99.58,99.36,94.14,94.1,6.57,6.33,11.81,11.99
-36269,01,029,01029,1395,617,115769434,115699786,1395,617,115769434,115699786,14972,6718,1453018448,1450652767,100,100,100,100,9.32,9.18,7.97,7.98
-36271,01,015,01015,6023,2727,220488990,212510688,6023,2727,220488990,212510688,118572,53289,1585814262,1569189995,100,100,100,100,5.08,5.12,13.9,13.54
-36272,01,015,01015,8844,4155,272990579,270960905,13389,6294,876636253,873035449,118572,53289,1585814262,1569189995,66.05,66.02,31.14,31.04,7.46,7.8,17.21,17.27
-36272,01,019,01019,3094,1474,367663737,366507513,13389,6294,876636253,873035449,25989,16267,1553934850,1434075952,23.11,23.42,41.94,41.98,11.91,9.06,23.66,25.56
-36272,01,029,01029,399,208,201840524,201515119,13389,6294,876636253,873035449,14972,6718,1453018448,1450652767,2.98,3.3,23.02,23.08,2.66,3.1,13.89,13.89
-36272,01,055,01055,1052,457,34141413,34051912,13389,6294,876636253,873035449,104430,47454,1420941985,1385618994,7.86,7.26,3.89,3.9,1.01,0.96,2.4,2.46
-36273,01,029,01029,2914,1299,135416808,135071706,2914,1299,135416808,135071706,14972,6718,1453018448,1450652767,100,100,100,100,19.46,19.34,9.32,9.31
-36274,01,017,01017,600,343,91742562,91324378,11199,5295,475676477,473113030,34215,17004,1562057424,1545009282,5.36,6.48,19.29,19.3,1.75,2.02,5.87,5.91
-36274,01,111,01111,10599,4952,383933915,381788652,11199,5295,475676477,473113030,22913,11982,1512901887,1503616599,94.64,93.52,80.71,80.7,46.26,41.33,25.38,25.39
-36276,01,017,01017,368,174,80477587,78656902,2592,1189,351652320,347561255,34215,17004,1562057424,1545009282,14.2,14.63,22.89,22.63,1.08,1.02,5.15,5.09
-36276,01,027,01027,187,100,39033420,39009825,2592,1189,351652320,347561255,13932,6776,1569536908,1564252280,7.21,8.41,11.1,11.22,1.34,1.48,2.49,2.49
-36276,01,111,01111,1973,879,217378890,215138013,2592,1189,351652320,347561255,22913,11982,1512901887,1503616599,76.12,73.93,61.82,61.9,8.61,7.34,14.37,14.31
-36276,01,123,01123,64,36,14762423,14756515,2592,1189,351652320,347561255,41616,22111,1984588853,1855780057,2.47,3.03,4.2,4.25,0.15,0.16,0.74,0.8
-36277,01,015,01015,5420,2326,22128402,21772657,5420,2326,22128402,21772657,118572,53289,1585814262,1569189995,100,100,100,100,4.57,4.36,1.4,1.39
-36278,01,111,01111,4366,2963,347164870,344289939,4366,2963,347164870,344289939,22913,11982,1512901887,1503616599,100,100,100,100,19.05,24.73,22.95,22.9
-36279,01,015,01015,2645,1133,77568376,76912942,2645,1133,77568376,76912942,118572,53289,1585814262,1569189995,100,100,100,100,2.23,2.13,4.89,4.9
-36280,01,111,01111,3932,1893,320190813,319870793,3932,1893,320190813,319870793,22913,11982,1512901887,1503616599,100,100,100,100,17.16,15.8,21.16,21.27
-36301,01,061,01061,193,79,10186870,10186870,35759,15896,232864268,231212617,26790,12687,1499475718,1487710425,0.54,0.5,4.37,4.41,0.72,0.62,0.68,0.68
-36301,01,069,01069,35566,15817,222677398,221025747,35759,15896,232864268,231212617,101547,45319,1506477704,1501737720,99.46,99.5,95.63,95.59,35.02,34.9,14.78,14.72
-36303,01,045,01045,984,501,19728634,19728634,30217,13518,162727439,162685124,50251,22677,1457387614,1453371157,3.26,3.71,12.12,12.13,1.96,2.21,1.35,1.36
-36303,01,067,01067,19,11,1373400,1373400,30217,13518,162727439,162685124,17302,8891,1471913047,1454926258,0.06,0.08,0.84,0.84,0.11,0.12,0.09,0.09
-36303,01,069,01069,29214,13006,141625405,141583090,30217,13518,162727439,162685124,101547,45319,1506477704,1501737720,96.68,96.21,87.03,87.03,28.77,28.7,9.4,9.43
-36305,01,061,01061,728,331,29038419,29038419,14470,6281,82466228,82312632,26790,12687,1499475718,1487710425,5.03,5.27,35.21,35.28,2.72,2.61,1.94,1.95
-36305,01,069,01069,13742,5950,53427809,53274213,14470,6281,82466228,82312632,101547,45319,1506477704,1501737720,94.97,94.73,64.79,64.72,13.53,13.13,3.55,3.55
-36310,01,067,01067,6783,4140,574339326,558137277,6783,4140,574339326,558137277,17302,8891,1471913047,1454926258,100,100,100,100,39.2,46.56,39.02,38.36
-36311,01,005,01005,611,328,110620548,110434038,2770,1275,310363120,310176610,27457,11829,2342683684,2291818968,22.06,25.73,35.64,35.6,2.23,2.77,4.72,4.82
-36311,01,031,01031,262,112,30637456,30637456,2770,1275,310363120,310176610,49948,22330,1762473516,1758528786,9.46,8.78,9.87,9.88,0.52,0.5,1.74,1.74
-36311,01,045,01045,1897,835,169105116,169105116,2770,1275,310363120,310176610,50251,22677,1457387614,1453371157,68.48,65.49,54.49,54.52,3.78,3.68,11.6,11.64
-36312,01,069,01069,6187,2863,200312572,199441058,6187,2863,200312572,199441058,101547,45319,1506477704,1501737720,100,100,100,100,6.09,6.32,13.3,13.28
-36313,01,061,01061,285,145,10166097,10166097,285,145,10166097,10166097,26790,12687,1499475718,1487710425,100,100,100,100,1.06,1.14,0.68,0.68
-36314,01,061,01061,595,291,61347167,61102404,595,291,61347167,61102404,26790,12687,1499475718,1487710425,100,100,100,100,2.22,2.29,4.09,4.11
-36316,01,031,01031,791,378,41241485,40859812,1722,829,130179480,129340749,49948,22330,1762473516,1758528786,45.93,45.6,31.68,31.59,1.58,1.69,2.34,2.32
-36316,01,061,01061,931,451,88937995,88480937,1722,829,130179480,129340749,26790,12687,1499475718,1487710425,54.07,54.4,68.32,68.41,3.48,3.55,5.93,5.95
-36317,01,005,01005,55,18,8222392,8222392,590,270,105358364,105180907,27457,11829,2342683684,2291818968,9.32,6.67,7.8,7.82,0.2,0.15,0.35,0.36
-36317,01,045,01045,26,21,11483248,11483248,590,270,105358364,105180907,50251,22677,1457387614,1453371157,4.41,7.78,10.9,10.92,0.05,0.09,0.79,0.79
-36317,01,067,01067,509,231,85652724,85475267,590,270,105358364,105180907,17302,8891,1471913047,1454926258,86.27,85.56,81.3,81.27,2.94,2.6,5.82,5.87
-36318,01,031,01031,318,155,37258791,37258791,1296,648,125833012,125552341,49948,22330,1762473516,1758528786,24.54,23.92,29.61,29.68,0.64,0.69,2.11,2.12
-36318,01,061,01061,978,493,88574221,88293550,1296,648,125833012,125552341,26790,12687,1499475718,1487710425,75.46,76.08,70.39,70.32,3.65,3.89,5.91,5.93
-36319,01,067,01067,914,454,158818848,158669848,2276,1154,259923832,259512553,17302,8891,1471913047,1454926258,40.16,39.34,61.1,61.14,5.28,5.11,10.79,10.91
-36319,01,069,01069,1362,700,101104984,100842705,2276,1154,259923832,259512553,101547,45319,1506477704,1501737720,59.84,60.66,38.9,38.86,1.34,1.54,6.71,6.72
-36320,01,069,01069,3837,1793,170998647,170676444,3837,1793,170998647,170676444,101547,45319,1506477704,1501737720,100,100,100,100,3.78,3.96,11.35,11.37
-36321,01,069,01069,1632,694,18064587,17881274,1632,694,18064587,17881274,101547,45319,1506477704,1501737720,100,100,100,100,1.61,1.53,1.2,1.19
-36322,01,031,01031,110,37,1343001,1335824,9072,4475,162211751,161896563,49948,22330,1762473516,1758528786,1.21,0.83,0.83,0.83,0.22,0.17,0.08,0.08
-36322,01,045,01045,8937,4427,144066695,144066695,9072,4475,162211751,161896563,50251,22677,1457387614,1453371157,98.51,98.93,88.81,88.99,17.78,19.52,9.89,9.91
-36322,01,061,01061,25,11,16802055,16494044,9072,4475,162211751,161896563,26790,12687,1499475718,1487710425,0.28,0.25,10.36,10.19,0.09,0.09,1.12,1.11
-36323,01,031,01031,8255,3849,600853341,599070106,8255,3849,600853341,599070106,49948,22330,1762473516,1758528786,100,100,100,100,16.53,17.24,34.09,34.07
-36330,01,031,01031,32355,14109,289861470,289632332,35530,15484,311509312,311280174,49948,22330,1762473516,1758528786,91.06,91.12,93.05,93.05,64.78,63.18,16.45,16.47
-36330,01,045,01045,3175,1375,21647842,21647842,35530,15484,311509312,311280174,50251,22677,1457387614,1453371157,8.94,8.88,6.95,6.95,6.32,6.06,1.49,1.49
-36340,01,061,01061,5490,2583,124521692,122879637,5490,2583,124521692,122879637,26790,12687,1499475718,1487710425,100,100,100,100,20.49,20.36,8.3,8.26
-36343,01,069,01069,1579,840,261203076,260636892,1579,840,261203076,260636892,101547,45319,1506477704,1501737720,100,100,100,100,1.55,1.85,17.34,17.36
-36344,01,061,01061,5732,2697,335496336,332952563,5732,2697,335496336,332952563,26790,12687,1499475718,1487710425,100,100,100,100,21.4,21.26,22.37,22.38
-36345,01,045,01045,375,141,18909646,18909646,7822,3400,318273208,318204172,50251,22677,1457387614,1453371157,4.79,4.15,5.94,5.94,0.75,0.62,1.3,1.3
-36345,01,067,01067,6965,3030,270794249,270725213,7822,3400,318273208,318204172,17302,8891,1471913047,1454926258,89.04,89.12,85.08,85.08,40.26,34.08,18.4,18.61
-36345,01,069,01069,482,229,28569313,28569313,7822,3400,318273208,318204172,101547,45319,1506477704,1501737720,6.16,6.74,8.98,8.98,0.47,0.51,1.9,1.9
-36346,01,031,01031,1456,656,130096295,130085722,1456,656,130096295,130085722,49948,22330,1762473516,1758528786,100,100,100,100,2.92,2.94,7.38,7.4
-36350,01,045,01045,6055,2642,165500735,165426727,6540,2846,166414798,166340790,50251,22677,1457387614,1453371157,92.58,92.83,99.45,99.45,12.05,11.65,11.36,11.38
-36350,01,069,01069,485,204,914063,914063,6540,2846,166414798,166340790,101547,45319,1506477704,1501737720,7.42,7.17,0.55,0.55,0.48,0.45,0.06,0.06
-36351,01,031,01031,3146,1462,210286800,210125438,3146,1462,210286800,210125438,49948,22330,1762473516,1758528786,100,100,100,100,6.3,6.55,11.93,11.95
-36352,01,045,01045,1866,871,73925245,73896264,4885,2134,183614598,183538469,50251,22677,1457387614,1453371157,38.2,40.82,40.26,40.26,3.71,3.84,5.07,5.08
-36352,01,061,01061,60,30,4422058,4422058,4885,2134,183614598,183538469,26790,12687,1499475718,1487710425,1.23,1.41,2.41,2.41,0.22,0.24,0.29,0.3
-36352,01,069,01069,2959,1233,105267295,105220147,4885,2134,183614598,183538469,101547,45319,1506477704,1501737720,60.57,57.78,57.33,57.33,2.91,2.72,6.99,7.01
-36353,01,045,01045,505,251,49008595,48860730,1968,936,250053839,249808125,50251,22677,1457387614,1453371157,25.66,26.82,19.6,19.56,1,1.11,3.36,3.36
-36353,01,067,01067,1463,685,201045244,200947395,1968,936,250053839,249808125,17302,8891,1471913047,1454926258,74.34,73.18,80.4,80.44,8.46,7.7,13.66,13.81
-36360,01,031,01031,9,5,6423016,6423016,20157,9358,469380342,468366047,49948,22330,1762473516,1758528786,0.04,0.05,1.37,1.37,0.02,0.02,0.36,0.37
-36360,01,045,01045,20148,9353,462957326,461943031,20157,9358,469380342,468366047,50251,22677,1457387614,1453371157,99.96,99.95,98.63,98.63,40.09,41.24,31.77,31.78
-36362,01,045,01045,4637,1456,76395106,76348707,4637,1456,76395106,76348707,50251,22677,1457387614,1453371157,100,100,100,100,9.23,6.42,5.24,5.25
-36370,01,069,01069,972,433,73242471,73202751,972,433,73242471,73202751,101547,45319,1506477704,1501737720,100,100,100,100,0.96,0.96,4.86,4.87
-36371,01,045,01045,720,332,30116792,30095074,720,332,30116792,30095074,50251,22677,1457387614,1453371157,100,100,100,100,1.43,1.46,2.07,2.07
-36373,01,067,01067,581,312,161273777,160982379,581,312,161273777,160982379,17302,8891,1471913047,1454926258,100,100,100,100,3.36,3.51,10.96,11.06
-36374,01,005,01005,82,37,21589714,21589714,970,484,140392063,140392063,27457,11829,2342683684,2291818968,8.45,7.64,15.38,15.38,0.3,0.31,0.92,0.94
-36374,01,045,01045,888,447,118802349,118802349,970,484,140392063,140392063,50251,22677,1457387614,1453371157,91.55,92.36,84.62,84.62,1.77,1.97,8.15,8.17
-36375,01,061,01061,6305,2892,246340576,245474831,7390,3378,316669104,315375489,26790,12687,1499475718,1487710425,85.32,85.61,77.79,77.84,23.53,22.79,16.43,16.5
-36375,01,069,01069,1085,486,70328528,69900658,7390,3378,316669104,315375489,101547,45319,1506477704,1501737720,14.68,14.39,22.21,22.16,1.07,1.07,4.67,4.65
-36376,01,069,01069,2445,1071,58741556,58569365,2445,1071,58741556,58569365,101547,45319,1506477704,1501737720,100,100,100,100,2.41,2.36,3.9,3.9
-36401,01,035,01035,8277,4364,1129146866,1125957708,8314,4404,1186449517,1183237514,13228,7093,2208539709,2201894769,99.55,99.09,95.17,95.16,62.57,61.53,51.13,51.14
-36401,01,099,01099,37,40,57302651,57279806,8314,4404,1186449517,1183237514,23068,11333,2679128468,2656485275,0.45,0.91,4.83,4.84,0.16,0.35,2.14,2.16
-36420,01,039,01039,10508,5113,558709632,553807169,10673,5208,694828094,688760997,37765,18829,2703395814,2668869505,98.45,98.18,80.41,80.41,27.82,27.15,20.67,20.75
-36420,01,053,01053,165,95,136118462,134953828,10673,5208,694828094,688760997,38319,16486,2468620140,2447746932,1.55,1.82,19.59,19.59,0.43,0.58,5.51,5.51
-36421,01,035,01035,188,128,77820485,77293414,9241,4708,548553600,535900797,13228,7093,2208539709,2201894769,2.03,2.72,14.19,14.42,1.42,1.8,3.52,3.51
-36421,01,039,01039,9053,4580,470733115,458607383,9241,4708,548553600,535900797,37765,18829,2703395814,2668869505,97.97,97.28,85.81,85.58,23.97,24.32,17.41,17.18
-36425,01,099,01099,1008,600,390195239,388841603,1008,600,390195239,388841603,23068,11333,2679128468,2656485275,100,100,100,100,4.37,5.29,14.56,14.64
-36426,01,035,01035,114,65,20934005,20918065,16202,7662,1271278558,1258584144,13228,7093,2208539709,2201894769,0.7,0.85,1.65,1.66,0.86,0.92,0.95,0.95
-36426,01,053,01053,16088,7597,1250344553,1237666079,16202,7662,1271278558,1258584144,38319,16486,2468620140,2447746932,99.3,99.15,98.35,98.34,41.98,46.08,50.65,50.56
-36432,01,035,01035,2042,1081,258184784,256523858,2420,1255,371739742,369591928,13228,7093,2208539709,2201894769,84.38,86.14,69.45,69.41,15.44,15.24,11.69,11.65
-36432,01,053,01053,378,174,113554958,113068070,2420,1255,371739742,369591928,38319,16486,2468620140,2447746932,15.62,13.86,30.55,30.59,0.99,1.06,4.6,4.62
-36435,01,131,01131,579,324,115054351,112818911,579,324,115054351,112818911,11670,5649,2350185265,2301200113,100,100,100,100,4.96,5.74,4.9,4.9
-36436,01,025,01025,531,257,86077414,86077414,531,257,86077414,86077414,25833,12638,3244152144,3207609488,100,100,100,100,2.06,2.03,2.65,2.68
-36439,01,099,01099,583,229,3874636,3868967,583,229,3874636,3868967,23068,11333,2679128468,2656485275,100,100,100,100,2.53,2.02,0.14,0.15
-36441,01,053,01053,3576,1678,153853496,151966823,3576,1678,153853496,151966823,38319,16486,2468620140,2447746932,100,100,100,100,9.33,10.18,6.23,6.21
-36442,01,039,01039,3538,1938,531607993,526471560,3555,1947,533711614,528572859,37765,18829,2703395814,2668869505,99.52,99.54,99.61,99.6,9.37,10.29,19.66,19.73
-36442,01,061,01061,17,9,2103621,2101299,3555,1947,533711614,528572859,26790,12687,1499475718,1487710425,0.48,0.46,0.39,0.4,0.06,0.07,0.14,0.14
-36444,01,099,01099,702,535,278345660,273809965,702,535,278345660,273809965,23068,11333,2679128468,2656485275,100,100,100,100,3.04,4.72,10.39,10.31
-36445,01,099,01099,5050,2352,399999374,398958788,5050,2352,399999374,398958788,23068,11333,2679128468,2656485275,100,100,100,100,21.89,20.75,14.93,15.02
-36446,01,025,01025,490,231,11669782,11669782,490,231,11669782,11669782,25833,12638,3244152144,3207609488,100,100,100,100,1.9,1.83,0.36,0.36
-36451,01,025,01025,4977,2379,497012904,496703704,4977,2379,497012904,496703704,25833,12638,3244152144,3207609488,100,100,100,100,19.27,18.82,15.32,15.49
-36453,01,031,01031,1342,635,119529658,118930094,2198,1051,241776881,240026367,49948,22330,1762473516,1758528786,61.06,60.42,49.44,49.55,2.69,2.84,6.78,6.76
-36453,01,039,01039,16,9,21182922,21112997,2198,1051,241776881,240026367,37765,18829,2703395814,2668869505,0.73,0.86,8.76,8.8,0.04,0.05,0.78,0.79
-36453,01,061,01061,840,407,101064301,99983276,2198,1051,241776881,240026367,26790,12687,1499475718,1487710425,38.22,38.73,41.8,41.66,3.14,3.21,6.74,6.72
-36454,01,035,01035,51,30,3689195,3670635,51,30,3689195,3670635,13228,7093,2208539709,2201894769,100,100,100,100,0.39,0.42,0.17,0.17
-36455,01,039,01039,465,222,1409983,1392967,465,222,1409983,1392967,37765,18829,2703395814,2668869505,100,100,100,100,1.23,1.18,0.05,0.05
-36456,01,013,01013,1246,602,149239924,149155642,1820,921,321298815,321082598,20947,9964,2014703708,2011976894,68.46,65.36,46.45,46.45,5.95,6.04,7.41,7.41
-36456,01,035,01035,458,260,152774943,152643008,1820,921,321298815,321082598,13228,7093,2208539709,2201894769,25.16,28.23,47.55,47.54,3.46,3.67,6.92,6.93
-36456,01,039,01039,116,59,19283948,19283948,1820,921,321298815,321082598,37765,18829,2703395814,2668869505,6.37,6.41,6,6.01,0.31,0.31,0.71,0.72
-36460,01,035,01035,33,24,4067085,4050955,10738,4946,358371002,358034628,13228,7093,2208539709,2201894769,0.31,0.49,1.13,1.13,0.25,0.34,0.18,0.18
-36460,01,099,01099,10705,4922,354303917,353983673,10738,4946,358371002,358034628,23068,11333,2679128468,2656485275,99.69,99.51,98.87,98.87,46.41,43.43,13.22,13.33
-36467,01,031,01031,296,132,23838742,23761564,10058,4778,433142507,428767747,49948,22330,1762473516,1758528786,2.94,2.76,5.5,5.54,0.59,0.59,1.35,1.35
-36467,01,039,01039,9762,4646,409303765,405006183,10058,4778,433142507,428767747,37765,18829,2703395814,2668869505,97.06,97.24,94.5,94.46,25.85,24.67,15.14,15.18
-36470,01,099,01099,98,77,95995842,91703580,98,77,95995842,91703580,23068,11333,2679128468,2656485275,100,100,100,100,0.42,0.68,3.58,3.45
-36471,01,035,01035,37,29,13293107,13282214,1257,689,257143823,257126614,13228,7093,2208539709,2201894769,2.94,4.21,5.17,5.17,0.28,0.41,0.6,0.6
-36471,01,099,01099,1220,660,243850716,243844400,1257,689,257143823,257126614,23068,11333,2679128468,2656485275,97.06,95.79,94.83,94.83,5.29,5.82,9.1,9.18
-36473,01,035,01035,106,55,15860053,15818994,106,55,15860053,15818994,13228,7093,2208539709,2201894769,100,100,100,100,0.8,0.78,0.72,0.72
-36474,01,013,01013,7,10,50182797,50182797,2926,1500,477019136,475324877,20947,9964,2014703708,2011976894,0.24,0.67,10.52,10.56,0.03,0.1,2.49,2.49
-36474,01,035,01035,80,58,69101795,69000225,2926,1500,477019136,475324877,13228,7093,2208539709,2201894769,2.73,3.87,14.49,14.52,0.6,0.82,3.13,3.13
-36474,01,039,01039,2839,1432,357734544,356141855,2926,1500,477019136,475324877,37765,18829,2703395814,2668869505,97.03,95.47,74.99,74.93,7.52,7.61,13.23,13.34
-36475,01,035,01035,1647,876,384210614,383354949,2208,1110,426825165,425909794,13228,7093,2208539709,2201894769,74.59,78.92,90.02,90.01,12.45,12.35,17.4,17.41
-36475,01,099,01099,561,234,42614551,42554845,2208,1110,426825165,425909794,23068,11333,2679128468,2656485275,25.41,21.08,9.98,9.99,2.43,2.06,1.59,1.6
-36476,01,039,01039,51,23,3164391,3142612,51,23,3164391,3142612,37765,18829,2703395814,2668869505,100,100,100,100,0.14,0.12,0.12,0.12
-36477,01,031,01031,335,166,62907780,62315756,4946,2434,443382090,438450196,49948,22330,1762473516,1758528786,6.77,6.82,14.19,14.21,0.67,0.74,3.57,3.54
-36477,01,061,01061,4611,2268,380474310,376134440,4946,2434,443382090,438450196,26790,12687,1499475718,1487710425,93.23,93.18,85.81,85.79,17.21,17.88,25.37,25.28
-36480,01,003,01003,18,7,2719494,2719494,1773,1004,425324758,419797533,182265,104061,5250711840,4117521611,1.02,0.7,0.64,0.65,0.01,0.01,0.05,0.07
-36480,01,099,01099,1755,997,422605264,417078039,1773,1004,425324758,419797533,23068,11333,2679128468,2656485275,98.98,99.3,99.36,99.35,7.61,8.8,15.77,15.7
-36481,01,099,01099,530,277,128088081,126065570,593,309,152250530,150228019,23068,11333,2679128468,2656485275,89.38,89.64,84.13,83.92,2.3,2.44,4.78,4.75
-36481,01,131,01131,63,32,24162449,24162449,593,309,152250530,150228019,11670,5649,2350185265,2301200113,10.62,10.36,15.87,16.08,0.54,0.57,1.03,1.05
-36482,01,025,01025,1090,586,320760097,319261253,1090,586,320760097,319261253,25833,12638,3244152144,3207609488,100,100,100,100,4.22,4.64,9.89,9.95
-36483,01,039,01039,354,208,144690161,141351794,536,321,271610990,268037772,37765,18829,2703395814,2668869505,66.04,64.8,53.27,52.74,0.94,1.1,5.35,5.3
-36483,01,053,01053,182,113,126920829,126685978,536,321,271610990,268037772,38319,16486,2468620140,2447746932,33.96,35.2,46.73,47.26,0.47,0.69,5.14,5.18
-36502,01,003,01003,220,98,93992525,93911131,18355,7006,854692276,850061558,182265,104061,5250711840,4117521611,1.2,1.4,11,11.05,0.12,0.09,1.79,2.28
-36502,01,035,01035,87,38,34302170,34282672,18355,7006,854692276,850061558,13228,7093,2208539709,2201894769,0.47,0.54,4.01,4.03,0.66,0.54,1.55,1.56
-36502,01,053,01053,17802,6778,681511825,677095874,18355,7006,854692276,850061558,38319,16486,2468620140,2447746932,96.99,96.75,79.74,79.65,46.46,41.11,27.61,27.66
-36502,01,099,01099,246,92,44885756,44771881,18355,7006,854692276,850061558,23068,11333,2679128468,2656485275,1.34,1.31,5.25,5.27,1.07,0.81,1.68,1.69
-36505,01,097,01097,1481,618,58701687,55949703,1481,618,58701687,55949703,412992,178196,4257973582,3184223082,100,100,100,100,0.36,0.35,1.38,1.76
-36507,01,003,01003,19090,7889,875038163,867145248,19090,7889,875038163,867145248,182265,104061,5250711840,4117521611,100,100,100,100,10.47,7.58,16.67,21.06
-36509,01,097,01097,1983,770,19598266,16947883,1983,770,19598266,16947883,412992,178196,4257973582,3184223082,100,100,100,100,0.48,0.43,0.46,0.53
-36511,01,003,01003,764,359,12972004,12103003,764,359,12972004,12103003,182265,104061,5250711840,4117521611,100,100,100,100,0.42,0.34,0.25,0.29
-36512,01,097,01097,46,39,15010161,14036317,46,39,15010161,14036317,412992,178196,4257973582,3184223082,100,100,100,100,0.01,0.02,0.35,0.44
-36513,01,097,01097,78,32,1103949,1077014,555,252,38924601,37532299,412992,178196,4257973582,3184223082,14.05,12.7,2.84,2.87,0.02,0.02,0.03,0.03
-36513,01,129,01129,477,220,37820652,36455285,555,252,38924601,37532299,17581,8407,2819373164,2797722307,85.95,87.3,97.16,97.13,2.71,2.62,1.34,1.3
-36518,01,129,01129,2842,1257,350738187,350264928,2842,1257,350738187,350264928,17581,8407,2819373164,2797722307,100,100,100,100,16.17,14.95,12.44,12.52
-36521,01,097,01097,5431,2171,375352679,374159046,5431,2171,375352679,374159046,412992,178196,4257973582,3184223082,100,100,100,100,1.32,1.22,8.82,11.75
-36522,01,097,01097,6742,2762,429306924,426167030,7183,2964,573247356,569974677,412992,178196,4257973582,3184223082,93.86,93.18,74.89,74.77,1.63,1.55,10.08,13.38
-36522,01,129,01129,441,202,143940432,143807647,7183,2964,573247356,569974677,17581,8407,2819373164,2797722307,6.14,6.82,25.11,25.23,2.51,2.4,5.11,5.14
-36523,01,097,01097,2818,1368,121144595,99197349,2818,1368,121144595,99197349,412992,178196,4257973582,3184223082,100,100,100,100,0.68,0.77,2.85,3.12
-36524,01,025,01025,1232,878,437559611,433118195,1232,878,437559611,433118195,25833,12638,3244152144,3207609488,100,100,100,100,4.77,6.95,13.49,13.5
-36525,01,097,01097,1935,778,45849006,43378054,1935,778,45849006,43378054,412992,178196,4257973582,3184223082,100,100,100,100,0.47,0.44,1.08,1.36
-36526,01,003,01003,27890,12523,100310366,96862407,27890,12523,100310366,96862407,182265,104061,5250711840,4117521611,100,100,100,100,15.3,12.03,1.91,2.35
-36527,01,003,01003,12109,5245,117355516,106535970,12109,5245,117355516,106535970,182265,104061,5250711840,4117521611,100,100,100,100,6.64,5.04,2.24,2.59
-36528,01,097,01097,1237,1817,87655557,16503596,1237,1817,87655557,16503596,412992,178196,4257973582,3184223082,100,100,100,100,0.3,1.02,2.06,0.52
-36529,01,129,01129,478,200,156842436,156566057,478,200,156842436,156566057,17581,8407,2819373164,2797722307,100,100,100,100,2.72,2.38,5.56,5.6
-36530,01,003,01003,6873,3704,267885618,250235423,6873,3704,267885618,250235423,182265,104061,5250711840,4117521611,100,100,100,100,3.77,3.56,5.1,6.08
-36532,01,003,01003,27829,13547,207908482,190980522,27829,13547,207908482,190980522,182265,104061,5250711840,4117521611,100,100,100,100,15.27,13.02,3.96,4.64
-36535,01,003,01003,26767,13100,248372502,236939592,26767,13100,248372502,236939592,182265,104061,5250711840,4117521611,100,100,100,100,14.69,12.59,4.73,5.75
-36538,01,129,01129,374,323,90943264,89255704,374,323,90943264,89255704,17581,8407,2819373164,2797722307,100,100,100,100,2.13,3.84,3.23,3.19
-36539,01,129,01129,802,350,184916299,184459705,802,350,184916299,184459705,17581,8407,2819373164,2797722307,100,100,100,100,4.56,4.16,6.56,6.59
-36540,01,025,01025,691,303,116668826,114484025,691,303,116668826,114484025,25833,12638,3244152144,3207609488,100,100,100,100,2.67,2.4,3.6,3.57
-36541,01,097,01097,15647,6072,249010648,247672665,15647,6072,249010648,247672665,412992,178196,4257973582,3184223082,100,100,100,100,3.79,3.41,5.85,7.78
-36542,01,003,01003,12705,15939,195184920,135942874,12705,15939,195184920,135942874,182265,104061,5250711840,4117521611,100,100,100,100,6.97,15.32,3.72,3.3
-36543,01,053,01053,66,27,767465,761728,66,27,767465,761728,38319,16486,2468620140,2447746932,100,100,100,100,0.17,0.16,0.03,0.03
-36544,01,097,01097,12476,4590,104010914,103819104,12476,4590,104010914,103819104,412992,178196,4257973582,3184223082,100,100,100,100,3.02,2.58,2.44,3.26
-36545,01,025,01025,9941,4767,1054272494,1029777200,9941,4767,1054272494,1029777200,25833,12638,3244152144,3207609488,100,100,100,100,38.48,37.72,32.5,32.1
-36548,01,129,01129,1136,517,92417999,89617993,1136,517,92417999,89617993,17581,8407,2819373164,2797722307,100,100,100,100,6.46,6.15,3.28,3.2
-36549,01,003,01003,4271,2782,102155783,72294867,4271,2782,102155783,72294867,182265,104061,5250711840,4117521611,100,100,100,100,2.34,2.67,1.95,1.76
-36550,01,003,01003,217,125,140015251,139668535,217,125,140015251,139668535,182265,104061,5250711840,4117521611,100,100,100,100,0.12,0.12,2.67,3.39
-36551,01,003,01003,8258,3246,169429447,168354892,8258,3246,169429447,168354892,182265,104061,5250711840,4117521611,100,100,100,100,4.53,3.12,3.23,4.09
-36553,01,129,01129,3575,1596,288578455,285508291,3575,1596,288578455,285508291,17581,8407,2819373164,2797722307,100,100,100,100,20.33,18.98,10.24,10.21
-36555,01,003,01003,654,358,2327469,2183804,654,358,2327469,2183804,182265,104061,5250711840,4117521611,100,100,100,100,0.36,0.34,0.04,0.05
-36556,01,129,01129,308,314,19072852,18574700,308,314,19072852,18574700,17581,8407,2819373164,2797722307,100,100,100,100,1.75,3.73,0.68,0.66
-36558,01,023,01023,257,124,44214028,44214028,3854,1921,634549945,633943804,13859,7269,2385013999,2365954748,6.67,6.45,6.97,6.97,1.85,1.71,1.85,1.87
-36558,01,129,01129,3597,1797,590335917,589729776,3854,1921,634549945,633943804,17581,8407,2819373164,2797722307,93.33,93.55,93.03,93.03,20.46,21.38,20.94,21.08
-36559,01,003,01003,233,124,2561258,932490,233,124,2561258,932490,182265,104061,5250711840,4117521611,100,100,100,100,0.13,0.12,0.05,0.02
-36560,01,097,01097,3690,1571,187304410,181779507,3690,1571,187304410,181779507,412992,178196,4257973582,3184223082,100,100,100,100,0.89,0.88,4.4,5.71
-36561,01,003,01003,5808,12492,67861000,41950582,5808,12492,67861000,41950582,182265,104061,5250711840,4117521611,100,100,100,100,3.19,12,1.29,1.02
-36562,01,003,01003,1534,614,110079427,109939001,1596,638,115627979,115487553,182265,104061,5250711840,4117521611,96.12,96.24,95.2,95.2,0.84,0.59,2.1,2.67
-36562,01,053,01053,62,24,5548552,5548552,1596,638,115627979,115487553,38319,16486,2468620140,2447746932,3.88,3.76,4.8,4.8,0.16,0.15,0.22,0.23
-36564,01,003,01003,107,125,770474,766457,107,125,770474,766457,182265,104061,5250711840,4117521611,100,100,100,100,0.06,0.12,0.01,0.02
-36567,01,003,01003,12672,5177,595467834,591703665,12672,5177,595467834,591703665,182265,104061,5250711840,4117521611,100,100,100,100,6.95,4.97,11.34,14.37
-36568,01,097,01097,162,63,2326954,2325650,162,63,2326954,2325650,412992,178196,4257973582,3184223082,100,100,100,100,0.04,0.04,0.05,0.07
-36569,01,129,01129,928,389,161434509,160142027,928,389,161434509,160142027,17581,8407,2819373164,2797722307,100,100,100,100,5.28,4.63,5.73,5.72
-36571,01,097,01097,14423,6230,119514686,118183157,14423,6230,119514686,118183157,412992,178196,4257973582,3184223082,100,100,100,100,3.49,3.5,2.81,3.71
-36572,01,097,01097,6340,2497,24350322,24031300,6340,2497,24350322,24031300,412992,178196,4257973582,3184223082,100,100,100,100,1.54,1.4,0.57,0.75
-36574,01,003,01003,1341,665,38255633,36288563,1341,665,38255633,36288563,182265,104061,5250711840,4117521611,100,100,100,100,0.74,0.64,0.73,0.88
-36575,01,097,01097,18345,7040,113821204,108773985,18345,7040,113821204,108773985,412992,178196,4257973582,3184223082,100,100,100,100,4.44,3.95,2.67,3.42
-36576,01,003,01003,4143,1767,50512704,50363677,4143,1767,50512704,50363677,182265,104061,5250711840,4117521611,100,100,100,100,2.27,1.7,0.96,1.22
-36578,01,003,01003,1749,723,79852756,79277772,1749,723,79852756,79277772,182265,104061,5250711840,4117521611,100,100,100,100,0.96,0.69,1.52,1.93
-36579,01,003,01003,1590,1029,343874398,340106180,1590,1029,343874398,340106180,182265,104061,5250711840,4117521611,100,100,100,100,0.87,0.99,6.55,8.26
-36580,01,003,01003,5420,2422,140262001,139229956,5420,2422,140262001,139229956,182265,104061,5250711840,4117521611,100,100,100,100,2.97,2.33,2.67,3.38
-36581,01,129,01129,224,118,141369987,133929396,224,118,141369987,133929396,17581,8407,2819373164,2797722307,100,100,100,100,1.27,1.4,5.01,4.79
-36582,01,097,01097,24624,10176,218461043,207987772,24624,10176,218461043,207987772,412992,178196,4257973582,3184223082,100,100,100,100,5.96,5.71,5.13,6.53
-36583,01,129,01129,639,311,166546702,166259150,639,311,166546702,166259150,17581,8407,2819373164,2797722307,100,100,100,100,3.63,3.7,5.91,5.94
-36584,01,129,01129,772,380,179154423,178126575,772,380,179154423,178126575,17581,8407,2819373164,2797722307,100,100,100,100,4.39,4.52,6.35,6.37
-36585,01,129,01129,972,429,215123515,214887538,972,429,215123515,214887538,17581,8407,2819373164,2797722307,100,100,100,100,5.53,5.1,7.63,7.68
-36587,01,097,01097,12053,4522,325079912,315798568,12053,4522,325079912,315798568,412992,178196,4257973582,3184223082,100,100,100,100,2.92,2.54,7.63,9.92
-36590,01,097,01097,20,15,9010,9010,20,15,9010,9010,412992,178196,4257973582,3184223082,100,100,100,100,0,0.01,0,0
-36602,01,097,01097,1057,697,2361692,2361692,1057,697,2361692,2361692,412992,178196,4257973582,3184223082,100,100,100,100,0.26,0.39,0.06,0.07
-36603,01,097,01097,7922,3628,20526375,16644136,7922,3628,20526375,16644136,412992,178196,4257973582,3184223082,100,100,100,100,1.92,2.04,0.48,0.52
-36604,01,097,01097,10456,5159,6837831,6837831,10456,5159,6837831,6837831,412992,178196,4257973582,3184223082,100,100,100,100,2.53,2.9,0.16,0.21
-36605,01,097,01097,30111,12914,56761885,47259837,30111,12914,56761885,47259837,412992,178196,4257973582,3184223082,100,100,100,100,7.29,7.25,1.33,1.48
-36606,01,097,01097,18733,8918,16980752,16979423,18733,8918,16980752,16979423,412992,178196,4257973582,3184223082,100,100,100,100,4.54,5,0.4,0.53
-36607,01,097,01097,6852,3557,8284818,8284818,6852,3557,8284818,8284818,412992,178196,4257973582,3184223082,100,100,100,100,1.66,2,0.19,0.26
-36608,01,097,01097,36864,16334,163458375,162026320,36864,16334,163458375,162026320,412992,178196,4257973582,3184223082,100,100,100,100,8.93,9.17,3.84,5.09
-36609,01,097,01097,25846,12815,18258188,18233169,25846,12815,18258188,18233169,412992,178196,4257973582,3184223082,100,100,100,100,6.26,7.19,0.43,0.57
-36610,01,097,01097,13209,6322,21609904,20715986,13209,6322,21609904,20715986,412992,178196,4257973582,3184223082,100,100,100,100,3.2,3.55,0.51,0.65
-36611,01,097,01097,6106,2879,13599634,12304398,6106,2879,13599634,12304398,412992,178196,4257973582,3184223082,100,100,100,100,1.48,1.62,0.32,0.39
-36612,01,097,01097,4541,1973,7269945,7262879,4541,1973,7269945,7262879,412992,178196,4257973582,3184223082,100,100,100,100,1.1,1.11,0.17,0.23
-36613,01,097,01097,12749,4944,133497363,132726106,12749,4944,133497363,132726106,412992,178196,4257973582,3184223082,100,100,100,100,3.09,2.77,3.14,4.17
-36615,01,097,01097,391,171,8990755,7511054,391,171,8990755,7511054,412992,178196,4257973582,3184223082,100,100,100,100,0.09,0.1,0.21,0.24
-36616,01,097,01097,27,14,18103,18103,27,14,18103,18103,412992,178196,4257973582,3184223082,100,100,100,100,0.01,0.01,0,0
-36617,01,097,01097,13967,6129,12348916,12304160,13967,6129,12348916,12304160,412992,178196,4257973582,3184223082,100,100,100,100,3.38,3.44,0.29,0.39
-36618,01,097,01097,16737,6652,41885451,41775146,16737,6652,41885451,41775146,412992,178196,4257973582,3184223082,100,100,100,100,4.05,3.73,0.98,1.31
-36619,01,097,01097,14269,5827,45427378,44493182,14269,5827,45427378,44493182,412992,178196,4257973582,3184223082,100,100,100,100,3.46,3.27,1.07,1.4
-36688,01,097,01097,659,0,1387566,1387566,659,0,1387566,1387566,412992,178196,4257973582,3184223082,100,0,100,100,0.16,0,0.03,0.04
-36693,01,097,01097,17847,7772,33810016,32636639,17847,7772,33810016,32636639,412992,178196,4257973582,3184223082,100,100,100,100,4.32,4.36,0.79,1.02
-36695,01,097,01097,45118,18360,124343753,123667738,45118,18360,124343753,123667738,412992,178196,4257973582,3184223082,100,100,100,100,10.92,10.3,2.92,3.88
-36701,01,047,01047,23893,10940,470502894,463326720,24268,11165,680501980,672795859,43820,20208,2573942212,2534807386,98.45,97.98,69.14,68.87,54.53,54.14,18.28,18.28
-36701,01,105,01105,375,225,209999086,209469139,24268,11165,680501980,672795859,10591,4737,1874838925,1863920409,1.55,2.02,30.86,31.13,3.54,4.75,11.2,11.24
-36703,01,001,01001,170,94,86276030,82330180,13643,5955,324216527,312801336,54571,22135,1565358013,1539582278,1.25,1.58,26.61,26.32,0.31,0.42,5.51,5.35
-36703,01,047,01047,13473,5861,237940497,230471156,13643,5955,324216527,312801336,43820,20208,2573942212,2534807386,98.75,98.42,73.39,73.68,30.75,29,9.24,9.09
-36720,01,131,01131,784,337,135630544,129096167,784,337,135630544,129096167,11670,5649,2350185265,2301200113,100,100,100,100,6.72,5.97,5.77,5.61
-36722,01,091,01091,23,13,4462899,4462899,472,221,83483695,83431323,21027,10237,2545107008,2530112461,4.87,5.88,5.35,5.35,0.11,0.13,0.18,0.18
-36722,01,131,01131,449,208,79020796,78968424,472,221,83483695,83431323,11670,5649,2350185265,2301200113,95.13,94.12,94.65,94.65,3.85,3.68,3.36,3.43
-36723,01,131,01131,230,116,26510957,17268455,230,116,26510957,17268455,11670,5649,2350185265,2301200113,100,100,100,100,1.97,2.05,1.13,0.75
-36726,01,131,01131,4814,2431,700885220,679258399,4814,2431,700885220,679258399,11670,5649,2350185265,2301200113,100,100,100,100,41.25,43.03,29.82,29.52
-36727,01,025,01025,61,59,162203040,158995045,61,59,162203040,158995045,25833,12638,3244152144,3207609488,100,100,100,100,0.24,0.47,5,4.96
-36728,01,091,01091,186,87,38599402,38532328,461,235,238020852,234200126,21027,10237,2545107008,2530112461,40.35,37.02,16.22,16.45,0.88,0.85,1.52,1.52
-36728,01,131,01131,275,148,199421450,195667798,461,235,238020852,234200126,11670,5649,2350185265,2301200113,59.65,62.98,83.78,83.55,2.36,2.62,8.49,8.5
-36732,01,091,01091,8395,3910,338506458,331457885,8395,3910,338506458,331457885,21027,10237,2545107008,2530112461,100,100,100,100,39.92,38.19,13.3,13.1
-36736,01,091,01091,1207,524,106505598,106450827,1207,524,106505598,106450827,21027,10237,2545107008,2530112461,100,100,100,100,5.74,5.12,4.18,4.21
-36738,01,065,01065,195,89,28529169,28502720,952,428,187559840,187101861,15760,7655,1700329881,1667803914,20.48,20.79,15.21,15.23,1.24,1.16,1.68,1.71
-36738,01,091,01091,757,339,159030671,158599141,952,428,187559840,187101861,21027,10237,2545107008,2530112461,79.52,79.21,84.79,84.77,3.6,3.31,6.25,6.27
-36740,01,063,01063,1328,857,198604633,189665315,1328,857,198604633,189665315,9045,5007,1709238244,1676007032,100,100,100,100,14.68,17.12,11.62,11.32
-36742,01,065,01065,461,209,97024731,93495408,2554,1185,299426837,294597235,15760,7655,1700329881,1667803914,18.05,17.64,32.4,31.74,2.93,2.73,5.71,5.61
-36742,01,091,01091,2093,976,202402106,201101827,2554,1185,299426837,294597235,21027,10237,2545107008,2530112461,81.95,82.36,67.6,68.26,9.95,9.53,7.95,7.95
-36744,01,065,01065,7369,3483,592211786,581969693,7419,3506,603347890,593105797,15760,7655,1700329881,1667803914,99.33,99.34,98.15,98.12,46.76,45.5,34.83,34.89
-36744,01,105,01105,50,23,11136104,11136104,7419,3506,603347890,593105797,10591,4737,1874838925,1863920409,0.67,0.66,1.85,1.88,0.47,0.49,0.59,0.6
-36748,01,091,01091,3260,1647,398797306,397971822,3260,1647,398797306,397971822,21027,10237,2545107008,2530112461,100,100,100,100,15.5,16.09,15.67,15.73
-36749,01,001,01001,676,324,125029430,124016123,1089,508,161717922,160345442,54571,22135,1565358013,1539582278,62.08,63.78,77.31,77.34,1.24,1.46,7.99,8.06
-36749,01,047,01047,413,184,36688492,36329319,1089,508,161717922,160345442,43820,20208,2573942212,2534807386,37.92,36.22,22.69,22.66,0.94,0.91,1.43,1.43
-36750,01,007,01007,56,20,2327841,2327841,2901,1306,297198110,296154675,22915,8981,1621769846,1612480789,1.93,1.53,0.78,0.79,0.24,0.22,0.14,0.14
-36750,01,021,01021,2845,1286,294870269,293826834,2901,1306,297198110,296154675,43643,19278,1815069969,1794483586,98.07,98.47,99.22,99.21,6.52,6.67,16.25,16.37
-36751,01,025,01025,88,48,70371064,70135955,945,410,247050513,242902095,25833,12638,3244152144,3207609488,9.31,11.71,28.48,28.87,0.34,0.38,2.17,2.19
-36751,01,099,01099,438,185,75986011,72674607,945,410,247050513,242902095,23068,11333,2679128468,2656485275,46.35,45.12,30.76,29.92,1.9,1.63,2.84,2.74
-36751,01,131,01131,419,177,100693438,100091533,945,410,247050513,242902095,11670,5649,2350185265,2301200113,44.34,43.17,40.76,41.21,3.59,3.13,4.28,4.35
-36752,01,085,01085,1644,922,402006523,387098345,1644,922,402006523,387098345,11299,5140,1877923173,1854199648,100,100,100,100,14.55,17.94,21.41,20.88
-36753,01,099,01099,63,30,27482156,27453858,85,45,31755837,31727539,23068,11333,2679128468,2656485275,74.12,66.67,86.54,86.53,0.27,0.26,1.03,1.03
-36753,01,131,01131,22,15,4273681,4273681,85,45,31755837,31727539,11670,5649,2350185265,2301200113,25.88,33.33,13.46,13.47,0.19,0.27,0.18,0.19
-36754,01,091,01091,344,210,104087339,104087339,344,210,104087339,104087339,21027,10237,2545107008,2530112461,100,100,100,100,1.64,2.05,4.09,4.11
-36756,01,105,01105,6165,2671,1081030611,1072776881,6165,2671,1081030611,1072776881,10591,4737,1874838925,1863920409,100,100,100,100,58.21,56.39,57.66,57.55
-36758,01,001,01001,294,133,70014044,69665072,1412,683,227679140,226381216,54571,22135,1565358013,1539582278,20.82,19.47,30.75,30.77,0.54,0.6,4.47,4.52
-36758,01,021,01021,445,223,85731759,85297379,1412,683,227679140,226381216,43643,19278,1815069969,1794483586,31.52,32.65,37.65,37.68,1.02,1.16,4.72,4.75
-36758,01,047,01047,673,327,71933337,71418765,1412,683,227679140,226381216,43820,20208,2573942212,2534807386,47.66,47.88,31.59,31.55,1.54,1.62,2.79,2.82
-36759,01,047,01047,1327,720,429354225,426589445,1501,798,499235537,496433166,43820,20208,2573942212,2534807386,88.41,90.23,86,85.93,3.03,3.56,16.68,16.83
-36759,01,105,01105,174,78,69881312,69843721,1501,798,499235537,496433166,10591,4737,1874838925,1863920409,11.59,9.77,14,14.07,1.64,1.65,3.73,3.75
-36761,01,047,01047,582,390,401369996,396914408,1161,632,671495536,666795355,43820,20208,2573942212,2534807386,50.13,61.71,59.77,59.53,1.33,1.93,15.59,15.66
-36761,01,085,01085,541,223,217667987,217489651,1161,632,671495536,666795355,11299,5140,1877923173,1854199648,46.6,35.28,32.42,32.62,4.79,4.34,11.59,11.73
-36761,01,131,01131,38,19,52457553,52391296,1161,632,671495536,666795355,11670,5649,2350185265,2301200113,3.27,3.01,7.81,7.86,0.33,0.34,2.23,2.28
-36763,01,091,01091,139,84,54082200,52237385,139,84,54082200,52237385,21027,10237,2545107008,2530112461,100,100,100,100,0.66,0.82,2.12,2.06
-36765,01,065,01065,974,425,112567626,111865657,1294,565,191984122,190437645,15760,7655,1700329881,1667803914,75.27,75.22,58.63,58.74,6.18,5.55,6.62,6.71
-36765,01,105,01105,320,140,79416496,78571988,1294,565,191984122,190437645,10591,4737,1874838925,1863920409,24.73,24.78,41.37,41.26,3.02,2.96,4.24,4.22
-36766,01,131,01131,25,25,20196275,20196275,25,25,20196275,20196275,11670,5649,2350185265,2301200113,100,100,100,100,0.21,0.44,0.86,0.88
-36767,01,047,01047,2012,1001,310719692,305058639,2012,1001,310719692,305058639,43820,20208,2573942212,2534807386,100,100,100,100,4.59,4.95,12.07,12.03
-36768,01,099,01099,64,88,98230446,98227525,1096,648,624908551,624225720,23068,11333,2679128468,2656485275,5.84,13.58,15.72,15.74,0.28,0.78,3.67,3.7
-36768,01,131,01131,1032,560,526678105,525998195,1096,648,624908551,624225720,11670,5649,2350185265,2301200113,94.16,86.42,84.28,84.26,8.84,9.91,22.41,22.86
-36769,01,091,01091,294,140,37343442,37343442,3014,1300,383660558,379468642,21027,10237,2545107008,2530112461,9.75,10.77,9.73,9.84,1.4,1.37,1.47,1.48
-36769,01,131,01131,2720,1160,346317116,342125200,3014,1300,383660558,379468642,11670,5649,2350185265,2301200113,90.25,89.23,90.27,90.16,23.31,20.53,14.74,14.87
-36773,01,047,01047,369,198,240898741,236922885,512,263,256215188,252169146,43820,20208,2573942212,2534807386,72.07,75.29,94.02,93.95,0.84,0.98,9.36,9.35
-36773,01,091,01091,143,65,15316447,15246261,512,263,256215188,252169146,21027,10237,2545107008,2530112461,27.93,24.71,5.98,6.05,0.68,0.63,0.6,0.6
-36775,01,047,01047,800,433,244127657,240380448,800,433,244127657,240380448,43820,20208,2573942212,2534807386,100,100,100,100,1.83,2.14,9.48,9.48
-36776,01,065,01065,1489,732,216811427,210519501,1489,732,216811427,210519501,15760,7655,1700329881,1667803914,100,100,100,100,9.45,9.56,12.75,12.62
-36782,01,091,01091,2405,1251,525695581,524159729,2405,1251,525695581,524159729,21027,10237,2545107008,2530112461,100,100,100,100,11.44,12.22,20.66,20.72
-36783,01,091,01091,937,545,303579086,303314009,945,549,304805913,304540836,21027,10237,2545107008,2530112461,99.15,99.27,99.6,99.6,4.46,5.32,11.93,11.99
-36783,01,131,01131,8,4,1226827,1226827,945,549,304805913,304540836,11670,5649,2350185265,2301200113,0.85,0.73,0.4,0.4,0.07,0.07,0.05,0.05
-36784,01,025,01025,6732,3130,487556912,487386915,7754,3640,702854287,701247903,25833,12638,3244152144,3207609488,86.82,85.99,69.37,69.5,26.06,24.77,15.03,15.19
-36784,01,091,01091,810,417,197640872,196204485,7754,3640,702854287,701247903,21027,10237,2545107008,2530112461,10.45,11.46,28.12,27.98,3.85,4.07,7.77,7.75
-36784,01,131,01131,212,93,17656503,17656503,7754,3640,702854287,701247903,11670,5649,2350185265,2301200113,2.73,2.55,2.51,2.52,1.82,1.65,0.75,0.77
-36785,01,047,01047,278,154,115133354,112122274,1165,561,331192981,327219706,43820,20208,2573942212,2534807386,23.86,27.45,34.76,34.27,0.63,0.76,4.47,4.42
-36785,01,085,01085,887,407,216059627,215097432,1165,561,331192981,327219706,11299,5140,1877923173,1854199648,76.14,72.55,65.24,65.73,7.85,7.92,11.51,11.6
-36786,01,091,01091,34,29,59057601,58943082,3365,1520,357690611,356605068,21027,10237,2545107008,2530112461,1.01,1.91,16.51,16.53,0.16,0.28,2.32,2.33
-36786,01,105,01105,3331,1491,298633010,297661986,3365,1520,357690611,356605068,10591,4737,1874838925,1863920409,98.99,98.09,83.49,83.47,31.45,31.48,15.93,15.97
-36790,01,021,01021,139,68,13054995,13043967,139,68,13054995,13043967,43643,19278,1815069969,1794483586,100,100,100,100,0.32,0.35,0.72,0.73
-36792,01,007,01007,714,326,118532066,118333092,1169,520,145968432,145723864,22915,8981,1621769846,1612480789,61.08,62.69,81.2,81.2,3.12,3.63,7.31,7.34
-36792,01,021,01021,455,194,27436366,27390772,1169,520,145968432,145723864,43643,19278,1815069969,1794483586,38.92,37.31,18.8,18.8,1.04,1.01,1.51,1.53
-36793,01,007,01007,356,193,78969625,78698694,568,323,196471928,196129906,22915,8981,1621769846,1612480789,62.68,59.75,40.19,40.13,1.55,2.15,4.87,4.88
-36793,01,021,01021,92,51,34424911,34389658,568,323,196471928,196129906,43643,19278,1815069969,1794483586,16.2,15.79,17.52,17.53,0.21,0.26,1.9,1.92
-36793,01,105,01105,120,79,83077392,83041554,568,323,196471928,196129906,10591,4737,1874838925,1863920409,21.13,24.46,42.28,42.34,1.13,1.67,4.43,4.46
-36801,01,017,01017,275,118,23174155,23005258,22214,9989,187833136,185406316,34215,17004,1562057424,1545009282,1.24,1.18,12.34,12.41,0.8,0.69,1.48,1.49
-36801,01,081,01081,21939,9871,164658981,162401058,22214,9989,187833136,185406316,140247,62391,1595041090,1573510728,98.76,98.82,87.66,87.59,15.64,15.82,10.32,10.32
-36804,01,081,01081,16075,6588,397290672,395089165,16861,6968,502575838,500011679,140247,62391,1595041090,1573510728,95.34,94.55,79.05,79.02,11.46,10.56,24.91,25.11
-36804,01,087,01087,143,93,43594969,43353661,16861,6968,502575838,500011679,21452,10259,1588199278,1577005015,0.85,1.33,8.67,8.67,0.67,0.91,2.74,2.75
-36804,01,113,01113,643,287,61690197,61568853,16861,6968,502575838,500011679,52947,24595,1676219091,1660545751,3.81,4.12,12.27,12.31,1.21,1.17,3.68,3.71
-36830,01,081,01081,32464,15483,154382835,151825863,33201,15869,261144764,258313377,140247,62391,1595041090,1573510728,97.78,97.57,59.12,58.78,23.15,24.82,9.68,9.65
-36830,01,087,01087,737,386,106761929,106487514,33201,15869,261144764,258313377,21452,10259,1588199278,1577005015,2.22,2.43,40.88,41.22,3.44,3.76,6.72,6.75
-36832,01,081,01081,22070,11727,179647400,178301274,22071,11729,184922358,183540583,140247,62391,1595041090,1573510728,100,99.98,97.15,97.15,15.74,18.8,11.26,11.33
-36832,01,087,01087,1,2,5274958,5239309,22071,11729,184922358,183540583,21452,10259,1588199278,1577005015,0,0.02,2.85,2.85,0,0.02,0.33,0.33
-36849,01,081,01081,3150,1,1003514,1003514,3150,1,1003514,1003514,140247,62391,1595041090,1573510728,100,100,100,100,2.25,0,0.06,0.06
-36850,01,017,01017,288,147,61182789,61031412,2630,1410,383976604,382608351,34215,17004,1562057424,1545009282,10.95,10.43,15.93,15.95,0.84,0.86,3.92,3.95
-36850,01,081,01081,48,25,31924942,31880679,2630,1410,383976604,382608351,140247,62391,1595041090,1573510728,1.83,1.77,8.31,8.33,0.03,0.04,2,2.03
-36850,01,123,01123,2294,1238,290868873,289696260,2630,1410,383976604,382608351,41616,22111,1984588853,1855780057,87.22,87.8,75.75,75.72,5.51,5.6,14.66,15.61
-36852,01,017,01017,389,177,61954827,61920510,2129,913,91109327,91013148,34215,17004,1562057424,1545009282,18.27,19.39,68,68.03,1.14,1.04,3.97,4.01
-36852,01,081,01081,1740,736,29154500,29092638,2129,913,91109327,91013148,140247,62391,1595041090,1573510728,81.73,80.61,32,31.97,1.24,1.18,1.83,1.85
-36853,01,123,01123,8269,5982,518382649,469942237,8269,5982,518382649,469942237,41616,22111,1984588853,1855780057,100,100,100,100,19.87,27.05,26.12,25.32
-36854,01,017,01017,12024,6093,91794298,91488727,14576,7468,158462406,152474784,34215,17004,1562057424,1545009282,82.49,81.59,57.93,60,35.14,35.83,5.88,5.92
-36854,01,081,01081,2552,1375,66668108,60986057,14576,7468,158462406,152474784,140247,62391,1595041090,1573510728,17.51,18.41,42.07,40,1.82,2.2,4.18,3.88
-36855,01,017,01017,1551,844,192551254,186622728,1551,844,192551254,186622728,34215,17004,1562057424,1545009282,100,100,100,100,4.53,4.96,12.33,12.08
-36856,01,113,01113,3719,1511,87414903,85751945,3719,1511,87414903,85751945,52947,24595,1676219091,1660545751,100,100,100,100,7.02,6.14,5.22,5.16
-36858,01,113,01113,441,255,141700467,140940267,441,255,141700467,140940267,52947,24595,1676219091,1660545751,100,100,100,100,0.83,1.04,8.45,8.49
-36859,01,113,01113,34,15,13700626,13652154,34,15,13700626,13652154,52947,24595,1676219091,1660545751,100,100,100,100,0.06,0.06,0.82,0.82
-36860,01,011,01011,33,28,75197769,75092751,1580,897,395117726,394211345,10914,4493,1619113433,1613056905,2.09,3.12,19.03,19.05,0.3,0.62,4.64,4.66
-36860,01,087,01087,176,88,71516866,71240292,1580,897,395117726,394211345,21452,10259,1588199278,1577005015,11.14,9.81,18.1,18.07,0.82,0.86,4.5,4.52
-36860,01,113,01113,1371,781,248403091,247878302,1580,897,395117726,394211345,52947,24595,1676219091,1660545751,86.77,87.07,62.87,62.88,2.59,3.18,14.82,14.93
-36861,01,123,01123,3264,2032,155894352,127722035,3264,2032,155894352,127722035,41616,22111,1984588853,1855780057,100,100,100,100,7.84,9.19,7.86,6.88
-36862,01,017,01017,6623,3061,623172391,620716705,6623,3061,623172391,620716705,34215,17004,1562057424,1545009282,100,100,100,100,19.36,18,39.89,40.18
-36863,01,017,01017,11672,5793,233234805,227708154,11672,5793,233234805,227708154,34215,17004,1562057424,1545009282,100,100,100,100,34.11,34.07,14.93,14.74
-36865,01,081,01081,23,21,262101,261055,23,21,262101,261055,140247,62391,1595041090,1573510728,100,100,100,100,0.02,0.03,0.02,0.02
-36866,01,081,01081,208,112,20839545,20633042,3955,1858,232240254,230684676,140247,62391,1595041090,1573510728,5.26,6.03,8.97,8.94,0.15,0.18,1.31,1.31
-36866,01,087,01087,2860,1384,162759261,161802642,3955,1858,232240254,230684676,21452,10259,1588199278,1577005015,72.31,74.49,70.08,70.14,13.33,13.49,10.25,10.26
-36866,01,123,01123,887,362,48641448,48248992,3955,1858,232240254,230684676,41616,22111,1984588853,1855780057,22.43,19.48,20.94,20.92,2.13,1.64,2.45,2.6
-36867,01,081,01081,4274,1830,10998295,10595403,22210,10481,34109504,33649337,140247,62391,1595041090,1573510728,19.24,17.46,32.24,31.49,3.05,2.93,0.69,0.67
-36867,01,113,01113,17936,8651,23111209,23053934,22210,10481,34109504,33649337,52947,24595,1676219091,1660545751,80.76,82.54,67.76,68.51,33.88,35.17,1.38,1.39
-36869,01,113,01113,18751,8372,195024624,193673512,18751,8372,195024624,193673512,52947,24595,1676219091,1660545751,100,100,100,100,35.41,34.04,11.63,11.66
-36870,01,081,01081,15361,5990,41955496,41696185,18783,7561,63188446,62909349,140247,62391,1595041090,1573510728,81.78,79.22,66.4,66.28,10.95,9.6,2.63,2.65
-36870,01,113,01113,3422,1571,21232950,21213164,18783,7561,63188446,62909349,52947,24595,1676219091,1660545751,18.22,20.78,33.6,33.72,6.46,6.39,1.27,1.28
-36871,01,113,01113,1277,719,383296659,381732015,1277,719,383296659,381732015,52947,24595,1676219091,1660545751,100,100,100,100,2.41,2.92,22.87,22.99
-36874,01,081,01081,7297,3211,277861877,273386229,7901,3501,292980406,288504758,140247,62391,1595041090,1573510728,92.36,91.72,94.84,94.76,5.2,5.15,17.42,17.37
-36874,01,113,01113,604,290,15118529,15118529,7901,3501,292980406,288504758,52947,24595,1676219091,1660545751,7.64,8.28,5.16,5.24,1.14,1.18,0.9,0.91
-36875,01,113,01113,4622,2069,364751230,363154841,4622,2069,364751230,363154841,52947,24595,1676219091,1660545751,100,100,100,100,8.73,8.41,21.76,21.87
-36877,01,081,01081,11414,4752,108519015,106799175,11414,4752,108519015,106799175,140247,62391,1595041090,1573510728,100,100,100,100,8.14,7.62,6.8,6.79
-36879,01,017,01017,425,254,102772756,102534508,2114,954,228508845,227946807,34215,17004,1562057424,1545009282,20.1,26.62,44.98,44.98,1.24,1.49,6.58,6.64
-36879,01,081,01081,1632,669,109873809,109559391,2114,954,228508845,227946807,140247,62391,1595041090,1573510728,77.2,70.13,48.08,48.06,1.16,1.07,6.89,6.96
-36879,01,123,01123,57,31,15862280,15852908,2114,954,228508845,227946807,41616,22111,1984588853,1855780057,2.7,3.25,6.94,6.95,0.14,0.14,0.8,0.85
-36901,01,119,01119,329,174,27967641,27909225,329,174,27967641,27909225,13763,6786,2365493779,2341057426,100,100,100,100,2.39,2.56,1.18,1.19
-36904,01,023,01023,4098,2064,590276607,587761872,4098,2064,590276607,587761872,13859,7269,2385013999,2365954748,100,100,100,100,29.57,28.39,24.75,24.84
-36907,01,119,01119,1930,996,323200886,322848075,1930,996,323200886,322848075,13763,6786,2365493779,2341057426,100,100,100,100,14.02,14.68,13.66,13.79
-36908,01,023,01023,2417,1188,342305014,339933165,2417,1188,342305014,339933165,13859,7269,2385013999,2365954748,100,100,100,100,17.44,16.34,14.35,14.37
-36910,01,023,01023,35,18,14617805,14617805,35,18,14617805,14617805,13859,7269,2385013999,2365954748,100,100,100,100,0.25,0.25,0.61,0.62
-36912,01,023,01023,2017,1133,362752161,362415912,2017,1133,362752161,362415912,13859,7269,2385013999,2365954748,100,100,100,100,14.55,15.59,15.21,15.32
-36913,01,023,01023,53,29,24106870,24106870,53,29,24106870,24106870,13859,7269,2385013999,2365954748,100,100,100,100,0.38,0.4,1.01,1.02
-36915,01,023,01023,627,326,96228660,96228660,627,326,96228660,96228660,13859,7269,2385013999,2365954748,100,100,100,100,4.52,4.48,4.03,4.07
-36916,01,023,01023,709,455,78910659,77094314,709,455,78910659,77094314,13859,7269,2385013999,2365954748,100,100,100,100,5.12,6.26,3.31,3.26
-36919,01,023,01023,2127,1094,423339323,417621391,2143,1098,423476858,417758926,13859,7269,2385013999,2365954748,99.25,99.64,99.97,99.97,15.35,15.05,17.75,17.65
-36919,01,129,01129,16,4,137535,137535,2143,1098,423476858,417758926,17581,8407,2819373164,2797722307,0.75,0.36,0.03,0.03,0.09,0.05,0,0
-36921,01,023,01023,1035,558,263444868,259197122,1035,558,263444868,259197122,13859,7269,2385013999,2365954748,100,100,100,100,7.47,7.68,11.05,10.96
-36922,01,023,01023,484,280,144818004,142763609,656,400,279759052,277568419,13859,7269,2385013999,2365954748,73.78,70,51.77,51.43,3.49,3.85,6.07,6.03
-36922,01,119,01119,172,120,134941048,134804810,656,400,279759052,277568419,13763,6786,2365493779,2341057426,26.22,30,48.23,48.57,1.25,1.77,5.7,5.76
-36925,01,119,01119,3115,1581,354742838,352374752,3115,1581,354742838,352374752,13763,6786,2365493779,2341057426,100,100,100,100,22.63,23.3,15,15.05
-37010,47,125,47125,2985,1053,79570113,79462622,4679,1714,200463019,200289143,172331,70098,1408512162,1396461566,63.8,61.44,39.69,39.67,1.73,1.5,5.65,5.69
-37010,47,147,47147,1694,661,120892906,120826521,4679,1714,200463019,200289143,66283,26086,1234029189,1233577495,36.2,38.56,60.31,60.33,2.56,2.53,9.8,9.79
-37012,47,041,47041,1816,809,54110172,54110172,2292,1032,90132588,90132588,18723,9405,852070312,788253896,79.23,78.39,60.03,60.03,9.7,8.6,6.35,6.86
-37012,47,159,47159,350,161,20720014,20720014,2292,1032,90132588,90132588,19166,8529,842710884,814004493,15.27,15.6,22.99,22.99,1.83,1.89,2.46,2.55
-37012,47,189,47189,126,62,15302402,15302402,2292,1032,90132588,90132588,113993,45568,1510470695,1478433235,5.5,6.01,16.98,16.98,0.11,0.14,1.01,1.04
-37013,47,037,47037,78406,32773,117578225,104084127,78406,32773,117578225,104084127,626681,283978,1362187772,1305438546,100,100,100,100,12.51,11.54,8.63,7.97
-37014,47,149,47149,593,214,16436416,16436416,1855,735,63893344,63808534,262604,102968,1616288649,1604145428,31.97,29.12,25.72,25.76,0.23,0.21,1.02,1.02
-37014,47,187,47187,1262,521,47456928,47372118,1855,735,63893344,63808534,183182,68498,1511954266,1508925443,68.03,70.88,74.28,74.24,0.69,0.76,3.14,3.14
-37015,47,021,47021,16617,6875,376743015,368066817,17184,7133,406662117,397972028,39105,15663,795272418,783308267,96.7,96.38,92.64,92.49,42.49,43.89,47.37,46.99
-37015,47,037,47037,405,190,23839430,23839430,17184,7133,406662117,397972028,626681,283978,1362187772,1305438546,2.36,2.66,5.86,5.99,0.06,0.07,1.75,1.83
-37015,47,043,47043,2,1,294902,281011,17184,7133,406662117,397972028,49666,20820,1272513276,1268824458,0.01,0.01,0.07,0.07,0,0,0.02,0.02
-37015,47,125,47125,160,67,5784770,5784770,17184,7133,406662117,397972028,172331,70098,1408512162,1396461566,0.93,0.94,1.42,1.45,0.09,0.1,0.41,0.41
-37016,47,015,47015,587,265,35195676,35195676,793,372,70943434,70943434,13801,6037,688148575,687991703,74.02,71.24,49.61,49.61,4.25,4.39,5.11,5.12
-37016,47,189,47189,206,107,35747758,35747758,793,372,70943434,70943434,113993,45568,1510470695,1478433235,25.98,28.76,50.39,50.39,0.18,0.23,2.37,2.42
-37018,47,003,47003,72,34,10103545,10103545,2259,1332,120049820,119759932,45058,18360,1229693277,1226710123,3.19,2.55,8.42,8.44,0.16,0.19,0.82,0.82
-37018,47,031,47031,2187,1298,109946275,109656387,2259,1332,120049820,119759932,52796,23434,1125489778,1110993322,96.81,97.45,91.58,91.56,4.14,5.54,9.77,9.87
-37019,47,117,47117,694,316,43391047,43391047,694,316,43391047,43391047,30617,13119,974238933,972437127,100,100,100,100,2.27,2.41,4.45,4.46
-37020,47,003,47003,3551,1399,185569567,185543843,5036,1981,249274091,249248367,45058,18360,1229693277,1226710123,70.51,70.62,74.44,74.44,7.88,7.62,15.09,15.13
-37020,47,149,47149,1485,582,63704524,63704524,5036,1981,249274091,249248367,262604,102968,1616288649,1604145428,29.49,29.38,25.56,25.56,0.57,0.57,3.94,3.97
-37022,47,111,47111,10,6,1694263,1694263,5469,2288,221149866,221134716,22248,9861,795745071,795498380,0.18,0.26,0.77,0.77,0.04,0.06,0.21,0.21
-37022,47,165,47165,4861,2033,190116504,190101354,5469,2288,221149866,221134716,160645,65968,1406925949,1371267673,88.88,88.85,85.97,85.97,3.03,3.08,13.51,13.86
-37022,47,169,47169,598,249,29339099,29339099,5469,2288,221149866,221134716,7870,3368,302104122,295758787,10.93,10.88,13.27,13.27,7.6,7.39,9.71,9.92
-37023,47,161,47161,1811,716,46623032,46606600,1811,716,46623032,46606600,13324,6778,1276892184,1189659929,100,100,100,100,13.59,10.56,3.65,3.92
-37025,47,043,47043,1010,436,29814546,29814546,6226,2609,156397691,156397691,49666,20820,1272513276,1268824458,16.22,16.71,19.06,19.06,2.03,2.09,2.34,2.35
-37025,47,081,47081,5157,2150,124160193,124160193,6226,2609,156397691,156397691,24690,10311,1586698311,1586365395,82.83,82.41,79.39,79.39,20.89,20.85,7.83,7.83
-37025,47,187,47187,59,23,2422952,2422952,6226,2609,156397691,156397691,183182,68498,1511954266,1508925443,0.95,0.88,1.55,1.55,0.03,0.03,0.16,0.16
-37026,47,015,47015,2201,915,124944100,124944100,2201,915,124944100,124944100,13801,6037,688148575,687991703,100,100,100,100,15.95,15.16,18.16,18.16
-37027,47,037,47037,9575,4515,18724145,18707474,49035,18277,142751091,142620708,626681,283978,1362187772,1305438546,19.53,24.7,13.12,13.12,1.53,1.59,1.37,1.43
-37027,47,187,47187,39460,13762,124026946,123913234,49035,18277,142751091,142620708,183182,68498,1511954266,1508925443,80.47,75.3,86.88,86.88,21.54,20.09,8.2,8.21
-37028,47,161,47161,676,419,47736043,41773002,676,419,47736043,41773002,13324,6778,1276892184,1189659929,100,100,100,100,5.07,6.18,3.74,3.51
-37029,47,043,47043,5628,2263,127554620,127059142,5628,2263,127554620,127059142,49666,20820,1272513276,1268824458,100,100,100,100,11.33,10.87,10.02,10.01
-37030,47,159,47159,6982,3177,176791988,164294135,6982,3177,176791988,164294135,19166,8529,842710884,814004493,100,100,100,100,36.43,37.25,20.98,20.18
-37031,47,165,47165,2887,1190,81955153,77340263,3712,1531,110217865,103905880,160645,65968,1406925949,1371267673,77.77,77.73,74.36,74.43,1.8,1.8,5.83,5.64
-37031,47,169,47169,825,341,28262712,26565617,3712,1531,110217865,103905880,7870,3368,302104122,295758787,22.23,22.27,25.64,25.57,10.48,10.12,9.36,8.98
-37032,47,021,47021,69,29,821455,821455,4493,1728,209026280,209026280,39105,15663,795272418,783308267,1.54,1.68,0.39,0.39,0.18,0.19,0.1,0.1
-37032,47,147,47147,4424,1699,208204825,208204825,4493,1728,209026280,209026280,66283,26086,1234029189,1233577495,98.46,98.32,99.61,99.61,6.67,6.51,16.87,16.88
-37033,47,081,47081,7805,3591,654795360,654772182,7805,3591,654795360,654772182,24690,10311,1586698311,1586365395,100,100,100,100,31.61,34.83,41.27,41.27
-37034,47,003,47003,915,373,41012712,40942268,6591,2615,185959198,185503666,45058,18360,1229693277,1226710123,13.88,14.26,22.05,22.07,2.03,2.03,3.34,3.34
-37034,47,117,47117,5676,2242,144946486,144561398,6591,2615,185959198,185503666,30617,13119,974238933,972437127,86.12,85.74,77.95,77.93,18.54,17.09,14.88,14.87
-37035,47,021,47021,3766,1416,79443567,78014660,3766,1416,79443567,78014660,39105,15663,795272418,783308267,100,100,100,100,9.63,9.04,9.99,9.96
-37036,47,021,47021,159,83,17439068,16967362,5862,2437,255049593,252108335,39105,15663,795272418,783308267,2.71,3.41,6.84,6.73,0.41,0.53,2.19,2.17
-37036,47,043,47043,5703,2354,237610525,235140973,5862,2437,255049593,252108335,49666,20820,1272513276,1268824458,97.29,96.59,93.16,93.27,11.48,11.31,18.67,18.53
-37037,47,149,47149,6312,2366,192077755,191984399,6312,2366,192077755,191984399,262604,102968,1616288649,1604145428,100,100,100,100,2.4,2.3,11.88,11.97
-37040,47,125,47125,44924,18449,243334421,239336879,44924,18449,243334421,239336879,172331,70098,1408512162,1396461566,100,100,100,100,26.07,26.32,17.28,17.14
-37042,47,125,47125,66916,27232,159186049,157942270,66916,27232,159186049,157942270,172331,70098,1408512162,1396461566,100,100,100,100,38.83,38.85,11.3,11.31
-37043,47,021,47021,191,78,13127428,12693186,39945,17197,292733050,290560632,39105,15663,795272418,783308267,0.48,0.45,4.48,4.37,0.49,0.5,1.65,1.62
-37043,47,125,47125,39754,17119,279605622,277867446,39945,17197,292733050,290560632,172331,70098,1408512162,1396461566,99.52,99.55,95.52,95.63,23.07,24.42,19.85,19.9
-37046,47,117,47117,60,20,3210080,3210080,3665,1507,181085014,181054640,30617,13119,974238933,972437127,1.64,1.33,1.77,1.77,0.2,0.15,0.33,0.33
-37046,47,149,47149,72,33,4092143,4092143,3665,1507,181085014,181054640,262604,102968,1616288649,1604145428,1.96,2.19,2.26,2.26,0.03,0.03,0.25,0.26
-37046,47,187,47187,3533,1454,173782791,173752417,3665,1507,181085014,181054640,183182,68498,1511954266,1508925443,96.4,96.48,95.97,95.97,1.93,2.12,11.49,11.51
-37047,47,055,47055,279,125,26954152,26954152,2345,1014,157587910,157587910,29485,13844,1582935423,1582292854,11.9,12.33,17.1,17.1,0.95,0.9,1.7,1.7
-37047,47,103,47103,23,9,3027455,3027455,2345,1014,157587910,157587910,33361,15241,1478159881,1477169515,0.98,0.89,1.92,1.92,0.07,0.06,0.2,0.2
-37047,47,117,47117,2043,880,127606303,127606303,2345,1014,157587910,157587910,30617,13119,974238933,972437127,87.12,86.79,80.97,80.97,6.67,6.71,13.1,13.12
-37048,47,147,47147,615,239,5402129,5402129,6030,2374,113994674,113994674,66283,26086,1234029189,1233577495,10.2,10.07,4.74,4.74,0.93,0.92,0.44,0.44
-37048,47,165,47165,5415,2135,108592545,108592545,6030,2374,113994674,113994674,160645,65968,1406925949,1371267673,89.8,89.93,95.26,95.26,3.37,3.24,7.72,7.92
-37049,47,147,47147,3244,1261,68447632,68446591,3244,1261,68447632,68446591,66283,26086,1234029189,1233577495,100,100,100,100,4.89,4.83,5.55,5.55
-37050,47,083,47083,466,211,32754025,32754025,1699,839,136077524,131373965,8426,4188,536061650,518739541,27.43,25.15,24.07,24.93,5.53,5.04,6.11,6.31
-37050,47,125,47125,284,112,35920808,35025695,1699,839,136077524,131373965,172331,70098,1408512162,1396461566,16.72,13.35,26.4,26.66,0.16,0.16,2.55,2.51
-37050,47,161,47161,949,516,67402691,63594245,1699,839,136077524,131373965,13324,6778,1276892184,1189659929,55.86,61.5,49.53,48.41,7.12,7.61,5.28,5.35
-37051,47,043,47043,2471,1032,150267001,150267001,3677,1524,202948568,202948568,49666,20820,1272513276,1268824458,67.2,67.72,74.04,74.04,4.98,4.96,11.81,11.84
-37051,47,083,47083,40,22,8217596,8217596,3677,1524,202948568,202948568,8426,4188,536061650,518739541,1.09,1.44,4.05,4.05,0.47,0.53,1.53,1.58
-37051,47,125,47125,1166,470,44463971,44463971,3677,1524,202948568,202948568,172331,70098,1408512162,1396461566,31.71,30.84,21.91,21.91,0.68,0.67,3.16,3.18
-37052,47,125,47125,2656,1096,97462998,97462998,2656,1096,97462998,97462998,172331,70098,1408512162,1396461566,100,100,100,100,1.54,1.56,6.92,6.98
-37055,47,043,47043,26758,11383,482728758,482131411,27024,11508,526518831,525921484,49666,20820,1272513276,1268824458,99.02,98.91,91.68,91.67,53.88,54.67,37.94,38
-37055,47,081,47081,266,125,43790073,43790073,27024,11508,526518831,525921484,24690,10311,1586698311,1586365395,0.98,1.09,8.32,8.33,1.08,1.21,2.76,2.76
-37057,47,111,47111,315,139,23498020,23498020,834,383,79987568,79679695,22248,9861,795745071,795498380,37.77,36.29,29.38,29.49,1.42,1.41,2.95,2.95
-37057,47,159,47159,317,141,25299678,24994185,834,383,79987568,79679695,19166,8529,842710884,814004493,38.01,36.81,31.63,31.37,1.65,1.65,3,3.07
-37057,47,169,47169,202,103,31189870,31187490,834,383,79987568,79679695,7870,3368,302104122,295758787,24.22,26.89,38.99,39.14,2.57,3.06,10.32,10.54
-37058,47,161,47161,7081,3806,495372945,464781429,7081,3806,495372945,464781429,13324,6778,1276892184,1189659929,100,100,100,100,53.14,56.15,38.8,39.07
-37059,47,041,47041,1552,693,68754774,68520575,1552,693,68754774,68520575,18723,9405,852070312,788253896,100,100,100,100,8.29,7.37,8.07,8.69
-37060,47,003,47003,271,117,11789082,11789082,2230,942,99472428,99472428,45058,18360,1229693277,1226710123,12.15,12.42,11.85,11.85,0.6,0.64,0.96,0.96
-37060,47,149,47149,1740,730,79125336,79125336,2230,942,99472428,99472428,262604,102968,1616288649,1604145428,78.03,77.49,79.54,79.54,0.66,0.71,4.9,4.93
-37060,47,187,47187,219,95,8558010,8558010,2230,942,99472428,99472428,183182,68498,1511954266,1508925443,9.82,10.08,8.6,8.6,0.12,0.14,0.57,0.57
-37061,47,083,47083,5153,2278,249272270,249258071,5153,2278,249272270,249258071,8426,4188,536061650,518739541,100,100,100,100,61.16,54.39,46.5,48.05
-37062,47,043,47043,127,47,4163603,4163603,10745,4156,176757159,176539306,49666,20820,1272513276,1268824458,1.18,1.13,2.36,2.36,0.26,0.23,0.33,0.33
-37062,47,187,47187,10618,4109,172593556,172375703,10745,4156,176757159,176539306,183182,68498,1511954266,1508925443,98.82,98.87,97.64,97.64,5.8,6,11.42,11.42
-37064,47,037,47037,59,20,2579957,2570575,48118,18832,463136218,462431629,626681,283978,1362187772,1305438546,0.12,0.11,0.56,0.56,0.01,0.01,0.19,0.2
-37064,47,187,47187,48059,18812,460556261,459861054,48118,18832,463136218,462431629,183182,68498,1511954266,1508925443,99.88,99.89,99.44,99.44,26.24,27.46,30.46,30.48
-37066,47,165,47165,42758,18064,312308766,296702227,42758,18064,312308766,296702227,160645,65968,1406925949,1371267673,100,100,100,100,26.62,27.38,22.2,21.64
-37067,47,187,47187,23652,10140,81268931,81219485,23652,10140,81268931,81219485,183182,68498,1511954266,1508925443,100,100,100,100,12.91,14.8,5.38,5.38
-37069,47,187,47187,18899,6709,97306990,95767848,18899,6709,97306990,95767848,183182,68498,1511954266,1508925443,100,100,100,100,10.32,9.79,6.44,6.35
-37072,47,037,47037,15482,7157,100780392,100520310,30215,13119,202255048,201700556,626681,283978,1362187772,1305438546,51.24,54.55,49.83,49.84,2.47,2.52,7.4,7.7
-37072,47,147,47147,3161,1269,30755849,30730725,30215,13119,202255048,201700556,66283,26086,1234029189,1233577495,10.46,9.67,15.21,15.24,4.77,4.86,2.49,2.49
-37072,47,165,47165,11572,4693,70718807,70449521,30215,13119,202255048,201700556,160645,65968,1406925949,1371267673,38.3,35.77,34.97,34.93,7.2,7.11,5.03,5.14
-37073,47,147,47147,13350,5178,131497579,131370880,13350,5178,131497579,131370880,66283,26086,1234029189,1233577495,100,100,100,100,20.14,19.85,10.66,10.65
-37074,47,111,47111,964,456,79200865,79200865,6965,3034,269477391,264831625,22248,9861,795745071,795498380,13.84,15.03,29.39,29.91,4.33,4.62,9.95,9.96
-37074,47,169,47169,6001,2578,190276526,185630760,6965,3034,269477391,264831625,7870,3368,302104122,295758787,86.16,84.97,70.61,70.09,76.25,76.54,62.98,62.76
-37075,47,165,47165,59256,24414,168331442,153778760,59256,24414,168331442,153778760,160645,65968,1406925949,1371267673,100,100,100,100,36.89,37.01,11.96,11.21
-37076,47,037,47037,34482,16387,83410922,66973238,35230,16694,87188455,70737217,626681,283978,1362187772,1305438546,97.88,98.16,95.67,94.68,5.5,5.77,6.12,5.13
-37076,47,189,47189,748,307,3777533,3763979,35230,16694,87188455,70737217,113993,45568,1510470695,1478433235,2.12,1.84,4.33,5.32,0.66,0.67,0.25,0.25
-37078,47,081,47081,5,1,5914535,5914535,674,387,246384554,246285791,24690,10311,1586698311,1586365395,0.74,0.26,2.4,2.4,0.02,0.01,0.37,0.37
-37078,47,085,47085,669,386,240470019,240371256,674,387,246384554,246285791,18538,8865,1441852820,1375232049,99.26,99.74,97.6,97.6,3.61,4.35,16.68,17.48
-37079,47,125,47125,495,228,38379327,37450360,2578,1146,204949981,199148432,172331,70098,1408512162,1396461566,19.2,19.9,18.73,18.81,0.29,0.33,2.72,2.68
-37079,47,161,47161,2083,918,166570654,161698072,2578,1146,204949981,199148432,13324,6778,1276892184,1189659929,80.8,80.1,81.27,81.19,15.63,13.54,13.05,13.59
-37080,47,021,47021,3352,1359,50839046,50827621,7384,3152,127120828,126783538,39105,15663,795272418,783308267,45.4,43.12,39.99,40.09,8.57,8.68,6.39,6.49
-37080,47,037,47037,4032,1793,76281782,75955917,7384,3152,127120828,126783538,626681,283978,1362187772,1305438546,54.6,56.88,60.01,59.91,0.64,0.63,5.6,5.82
-37082,47,021,47021,6107,2456,113346785,112552056,6107,2456,113346785,112552056,39105,15663,795272418,783308267,100,100,100,100,15.62,15.68,14.25,14.37
-37083,47,111,47111,13909,6163,380160366,380053808,13909,6163,380160366,380053808,22248,9861,795745071,795498380,100,100,100,100,62.52,62.5,47.77,47.78
-37085,47,149,47149,3531,1343,105797657,105797657,4035,1550,145594893,145594893,262604,102968,1616288649,1604145428,87.51,86.65,72.67,72.67,1.34,1.3,6.55,6.6
-37085,47,189,47189,504,207,39797236,39797236,4035,1550,145594893,145594893,113993,45568,1510470695,1478433235,12.49,13.35,27.33,27.33,0.44,0.45,2.63,2.69
-37086,47,037,47037,0,0,3289513,3289513,31513,11274,68076913,67586566,626681,283978,1362187772,1305438546,0,0,4.83,4.87,0,0,0.24,0.25
-37086,47,149,47149,31513,11274,64787400,64297053,31513,11274,68076913,67586566,262604,102968,1616288649,1604145428,100,100,95.17,95.13,12,10.95,4.01,4.01
-37087,47,159,47159,975,396,33117217,31603988,41132,16949,448432392,430138689,19166,8529,842710884,814004493,2.37,2.34,7.39,7.35,5.09,4.64,3.93,3.88
-37087,47,169,47169,244,97,23035915,23035821,41132,16949,448432392,430138689,7870,3368,302104122,295758787,0.59,0.57,5.14,5.36,3.1,2.88,7.63,7.79
-37087,47,189,47189,39913,16456,392279260,375498880,41132,16949,448432392,430138689,113993,45568,1510470695,1478433235,97.04,97.09,87.48,87.3,35.01,36.11,25.97,25.4
-37090,47,159,47159,625,236,13821241,13706518,12922,5246,422167607,422000448,19166,8529,842710884,814004493,4.84,4.5,3.27,3.25,3.26,2.77,1.64,1.68
-37090,47,189,47189,12297,5010,408346366,408293930,12922,5246,422167607,422000448,113993,45568,1510470695,1478433235,95.16,95.5,96.73,96.75,10.79,10.99,27.03,27.62
-37091,47,003,47003,638,263,43718274,43291475,21005,9157,538248320,536404803,45058,18360,1229693277,1226710123,3.04,2.87,8.12,8.07,1.42,1.43,3.56,3.53
-37091,47,117,47117,20316,8869,492313034,490896316,21005,9157,538248320,536404803,30617,13119,974238933,972437127,96.72,96.85,91.47,91.52,66.36,67.6,50.53,50.48
-37091,47,119,47119,51,25,2217012,2217012,21005,9157,538248320,536404803,80956,35254,1594340444,1588021250,0.24,0.27,0.41,0.41,0.06,0.07,0.14,0.14
-37095,47,015,47015,446,206,38864835,38864835,1854,906,190424058,190219634,13801,6037,688148575,687991703,24.06,22.74,20.41,20.43,3.23,3.41,5.65,5.65
-37095,47,041,47041,1330,666,148881578,148677154,1854,906,190424058,190219634,18723,9405,852070312,788253896,71.74,73.51,78.18,78.16,7.1,7.08,17.47,18.86
-37095,47,189,47189,78,34,2677645,2677645,1854,906,190424058,190219634,113993,45568,1510470695,1478433235,4.21,3.75,1.41,1.41,0.07,0.07,0.18,0.18
-37096,47,135,47135,5492,3173,779924022,766049315,5503,3193,781804789,767930082,7915,4599,1095232550,1074148474,99.8,99.37,99.76,99.76,69.39,68.99,71.21,71.32
-37096,47,181,47181,11,20,1880767,1880767,5503,3193,781804789,767930082,17021,7287,1905333902,1901310603,0.2,0.63,0.24,0.24,0.06,0.27,0.1,0.1
-37097,47,135,47135,2294,1324,282701392,278334381,2294,1324,282701392,278334381,7915,4599,1095232550,1074148474,100,100,100,100,28.98,28.79,25.81,25.91
-37098,47,081,47081,5382,2245,155665694,155641994,5382,2245,155665694,155641994,24690,10311,1586698311,1586365395,100,100,100,100,21.8,21.77,9.81,9.81
-37101,47,081,47081,74,41,56923185,56923185,6422,2851,518644426,518571477,24690,10311,1586698311,1586365395,1.15,1.44,10.98,10.98,0.3,0.4,3.59,3.59
-37101,47,083,47083,159,83,22689902,22689902,6422,2851,518644426,518571477,8426,4188,536061650,518739541,2.48,2.91,4.37,4.38,1.89,1.98,4.23,4.37
-37101,47,085,47085,6189,2727,439031339,438958390,6422,2851,518644426,518571477,18538,8865,1441852820,1375232049,96.37,95.65,84.65,84.65,33.39,30.76,30.45,31.92
-37110,47,015,47015,251,115,13815987,13815987,32495,14618,958136773,957358325,13801,6037,688148575,687991703,0.77,0.79,1.44,1.44,1.82,1.9,2.01,2.01
-37110,47,061,47061,224,120,139986646,139986646,32495,14618,958136773,957358325,13703,6397,935301317,933778866,0.69,0.82,14.61,14.62,1.63,1.88,14.97,14.99
-37110,47,175,47175,21,18,43197571,43197571,32495,14618,958136773,957358325,5548,2663,711035899,708142475,0.06,0.12,4.51,4.51,0.38,0.68,6.08,6.1
-37110,47,177,47177,31999,14365,761136569,760358121,32495,14618,958136773,957358325,39839,17821,1124144073,1120635730,98.47,98.27,79.44,79.42,80.32,80.61,67.71,67.85
-37115,47,037,47037,37316,17619,56763412,55138051,37316,17619,56763412,55138051,626681,283978,1362187772,1305438546,100,100,100,100,5.95,6.2,4.17,4.22
-37118,47,015,47015,35,17,2319975,2319975,1264,536,88166287,88166287,13801,6037,688148575,687991703,2.77,3.17,2.63,2.63,0.25,0.28,0.34,0.34
-37118,47,149,47149,941,397,60100132,60100132,1264,536,88166287,88166287,262604,102968,1616288649,1604145428,74.45,74.07,68.17,68.17,0.36,0.39,3.72,3.75
-37118,47,189,47189,288,122,25746180,25746180,1264,536,88166287,88166287,113993,45568,1510470695,1478433235,22.78,22.76,29.2,29.2,0.25,0.27,1.7,1.74
-37122,47,037,47037,140,66,3235888,2474367,46463,17942,307080998,289921200,626681,283978,1362187772,1305438546,0.3,0.37,1.05,0.85,0.02,0.02,0.24,0.19
-37122,47,149,47149,938,371,27528851,23164281,46463,17942,307080998,289921200,262604,102968,1616288649,1604145428,2.02,2.07,8.96,7.99,0.36,0.36,1.7,1.44
-37122,47,189,47189,45385,17505,276316259,264282552,46463,17942,307080998,289921200,113993,45568,1510470695,1478433235,97.68,97.56,89.98,91.16,39.81,38.42,18.29,17.88
-37127,47,149,47149,15786,6122,125622199,125622199,15786,6122,125622199,125622199,262604,102968,1616288649,1604145428,100,100,100,100,6.01,5.95,7.77,7.83
-37128,47,149,47149,38966,15599,140096933,139927601,38966,15599,140096933,139927601,262604,102968,1616288649,1604145428,100,100,100,100,14.84,15.15,8.67,8.72
-37129,47,149,47149,49103,19086,214319152,211435646,49103,19086,214319152,211435646,262604,102968,1616288649,1604145428,100,100,100,100,18.7,18.54,13.26,13.18
-37130,47,149,47149,52070,23028,135715159,135508688,52070,23028,135715159,135508688,262604,102968,1616288649,1604145428,100,100,100,100,19.83,22.36,8.4,8.45
-37132,47,149,47149,2776,1,1315283,1315283,2776,1,1315283,1315283,262604,102968,1616288649,1604145428,100,100,100,100,1.06,0,0.08,0.08
-37134,47,085,47085,3061,1401,127828166,101184610,3061,1401,127828166,101184610,18538,8865,1441852820,1375232049,100,100,100,100,16.51,15.8,8.87,7.36
-37135,47,037,47037,586,273,7948769,7948769,9681,3314,96990621,96986380,626681,283978,1362187772,1305438546,6.05,8.24,8.2,8.2,0.09,0.1,0.58,0.61
-37135,47,149,47149,1096,348,2484626,2484626,9681,3314,96990621,96986380,262604,102968,1616288649,1604145428,11.32,10.5,2.56,2.56,0.42,0.34,0.15,0.15
-37135,47,187,47187,7999,2693,86557226,86552985,9681,3314,96990621,96986380,183182,68498,1511954266,1508925443,82.63,81.26,89.24,89.24,4.37,3.93,5.72,5.74
-37137,47,081,47081,2725,1232,218679735,218430525,2725,1232,218679735,218430525,24690,10311,1586698311,1586365395,100,100,100,100,11.04,11.95,13.78,13.77
-37138,47,037,47037,13295,6033,37568597,32057119,22191,9482,54633474,45964613,626681,283978,1362187772,1305438546,59.91,63.63,68.76,69.74,2.12,2.12,2.76,2.46
-37138,47,189,47189,8896,3449,17064877,13907494,22191,9482,54633474,45964613,113993,45568,1510470695,1478433235,40.09,36.37,31.24,30.26,7.8,7.57,1.13,0.94
-37140,47,081,47081,1365,79,67439662,67439662,1365,79,67439662,67439662,24690,10311,1586698311,1586365395,100,100,100,100,5.53,0.77,4.25,4.25
-37141,47,147,47147,1224,481,55119316,55119316,1224,481,55119316,55119316,66283,26086,1234029189,1233577495,100,100,100,100,1.85,1.84,4.47,4.47
-37142,47,125,47125,1902,690,96416742,94741237,1902,690,96416742,94741237,172331,70098,1408512162,1396461566,100,100,100,100,1.1,0.98,6.85,6.78
-37143,47,021,47021,3395,1361,61537092,61537092,3818,1553,72199098,72199098,39105,15663,795272418,783308267,88.92,87.64,85.23,85.23,8.68,8.69,7.74,7.86
-37143,47,037,47037,423,192,10662006,10662006,3818,1553,72199098,72199098,626681,283978,1362187772,1305438546,11.08,12.36,14.77,14.77,0.07,0.07,0.78,0.82
-37144,47,003,47003,226,103,25486096,25486096,3344,1522,337512241,337512241,45058,18360,1229693277,1226710123,6.76,6.77,7.55,7.55,0.5,0.56,2.07,2.08
-37144,47,055,47055,48,26,5976780,5976780,3344,1522,337512241,337512241,29485,13844,1582935423,1582292854,1.44,1.71,1.77,1.77,0.16,0.19,0.38,0.38
-37144,47,103,47103,2005,923,192149486,192149486,3344,1522,337512241,337512241,33361,15241,1478159881,1477169515,59.96,60.64,56.93,56.93,6.01,6.06,13,13.01
-37144,47,117,47117,919,412,103730982,103730982,3344,1522,337512241,337512241,30617,13119,974238933,972437127,27.48,27.07,30.73,30.73,3,3.14,10.65,10.67
-37144,47,127,47127,146,58,10168897,10168897,3344,1522,337512241,337512241,6362,2915,337778385,334684959,4.37,3.81,3.01,3.01,2.29,1.99,3.01,3.04
-37145,47,087,47087,160,87,18931923,18860686,2157,1010,181720448,181548770,11638,5843,827565326,798545703,7.42,8.61,10.42,10.39,1.37,1.49,2.29,2.36
-37145,47,111,47111,219,109,22990456,22979940,2157,1010,181720448,181548770,22248,9861,795745071,795498380,10.15,10.79,12.65,12.66,0.98,1.11,2.89,2.89
-37145,47,159,47159,1778,814,139798069,139708144,2157,1010,181720448,181548770,19166,8529,842710884,814004493,82.43,80.59,76.93,76.95,9.28,9.54,16.59,17.16
-37146,47,021,47021,5169,1892,40990383,40967749,7182,2607,78236118,78213484,39105,15663,795272418,783308267,71.97,72.57,52.39,52.38,13.22,12.08,5.15,5.23
-37146,47,147,47147,2013,715,37245735,37245735,7182,2607,78236118,78213484,66283,26086,1234029189,1233577495,28.03,27.43,47.61,47.62,3.04,2.74,3.02,3.02
-37148,47,147,47147,784,320,50428556,50428475,22320,8926,354437749,353965826,66283,26086,1234029189,1233577495,3.51,3.59,14.23,14.25,1.18,1.23,4.09,4.09
-37148,47,165,47165,21536,8606,304009193,303537351,22320,8926,354437749,353965826,160645,65968,1406925949,1371267673,96.49,96.41,85.77,85.75,13.41,13.05,21.61,22.14
-37149,47,015,47015,1123,496,73958824,73958824,2210,965,168675829,168675829,13801,6037,688148575,687991703,50.81,51.4,43.85,43.85,8.14,8.22,10.75,10.75
-37149,47,149,47149,1087,469,94717005,94717005,2210,965,168675829,168675829,262604,102968,1616288649,1604145428,49.19,48.6,56.15,56.15,0.41,0.46,5.86,5.9
-37150,47,027,47027,1470,704,111461117,111397815,4894,2227,277113745,276940510,7861,4282,671697657,612626617,30.04,31.61,40.22,40.22,18.7,16.44,16.59,18.18
-37150,47,111,47111,3424,1523,165652628,165542695,4894,2227,277113745,276940510,22248,9861,795745071,795498380,69.96,68.39,59.78,59.78,15.39,15.44,20.82,20.81
-37151,47,159,47159,565,248,48447483,46534798,565,248,48447483,46534798,19166,8529,842710884,814004493,100,100,100,100,2.95,2.91,5.75,5.72
-37153,47,003,47003,247,118,13689231,13689231,5520,2047,149087774,149087774,45058,18360,1229693277,1226710123,4.47,5.76,9.18,9.18,0.55,0.64,1.11,1.12
-37153,47,149,47149,5273,1929,135398543,135398543,5520,2047,149087774,149087774,262604,102968,1616288649,1604145428,95.53,94.24,90.82,90.82,2.01,1.87,8.38,8.44
-37160,47,003,47003,32487,13228,583224432,581757443,32744,13326,596210772,594743783,45058,18360,1229693277,1226710123,99.22,99.26,97.82,97.82,72.1,72.05,47.43,47.42
-37160,47,127,47127,257,98,12986340,12986340,32744,13326,596210772,594743783,6362,2915,337778385,334684959,0.78,0.74,2.18,2.18,4.04,3.36,3.84,3.88
-37165,47,043,47043,70,34,549826,549826,70,34,549826,549826,49666,20820,1272513276,1268824458,100,100,100,100,0.14,0.16,0.04,0.04
-37166,47,015,47015,116,48,2550138,2550138,13446,6390,430533610,400830966,13801,6037,688148575,687991703,0.86,0.75,0.59,0.64,0.84,0.8,0.37,0.37
-37166,47,041,47041,12643,6043,396985288,367282644,13446,6390,430533610,400830966,18723,9405,852070312,788253896,94.03,94.57,92.21,91.63,67.53,64.25,46.59,46.59
-37166,47,177,47177,687,299,30998184,30998184,13446,6390,430533610,400830966,39839,17821,1124144073,1120635730,5.11,4.68,7.2,7.73,1.72,1.68,2.76,2.77
-37167,47,149,47149,49322,19076,152969535,149033896,49322,19076,152969535,149033896,262604,102968,1616288649,1604145428,100,100,100,100,18.78,18.53,9.46,9.29
-37171,47,125,47125,917,396,56243881,55976255,917,396,56243881,55976255,172331,70098,1408512162,1396461566,100,100,100,100,0.53,0.56,3.99,4.01
-37172,47,147,47147,28714,11603,469066562,468834198,28714,11603,469066562,468834198,66283,26086,1234029189,1233577495,100,100,100,100,43.32,44.48,38.01,38.01
-37174,47,119,47119,11632,4947,134330207,134111187,26418,9986,177887029,177667375,80956,35254,1594340444,1588021250,44.03,49.54,75.51,75.48,14.37,14.03,8.43,8.45
-37174,47,187,47187,14786,5039,43556822,43556188,26418,9986,177887029,177667375,183182,68498,1511954266,1508925443,55.97,50.46,24.49,24.52,8.07,7.36,2.88,2.89
-37175,47,083,47083,631,671,125024737,107734690,1015,916,217645301,199412836,8426,4188,536061650,518739541,62.17,73.25,57.44,54.03,7.49,16.02,23.32,20.77
-37175,47,161,47161,384,245,92620564,91678146,1015,916,217645301,199412836,13324,6778,1276892184,1189659929,37.83,26.75,42.56,45.97,2.88,3.61,7.25,7.71
-37178,47,083,47083,1772,783,66123204,66105341,2112,941,117315547,117297684,8426,4188,536061650,518739541,83.9,83.21,56.36,56.36,21.03,18.7,12.33,12.74
-37178,47,161,47161,340,158,51192343,51192343,2112,941,117315547,117297684,13324,6778,1276892184,1189659929,16.1,16.79,43.64,43.64,2.55,2.33,4.01,4.3
-37179,47,187,47187,11767,4140,138395082,138373009,11767,4140,138395082,138373009,183182,68498,1511954266,1508925443,100,100,100,100,6.42,6.04,9.15,9.17
-37180,47,003,47003,3033,1164,82534404,82032117,3033,1164,82534404,82032117,45058,18360,1229693277,1226710123,100,100,100,100,6.73,6.34,6.71,6.69
-37181,47,043,47043,1348,549,94015229,93992723,1534,649,121697190,121674684,49666,20820,1272513276,1268824458,87.87,84.59,77.25,77.25,2.71,2.64,7.39,7.41
-37181,47,083,47083,186,100,27681961,27681961,1534,649,121697190,121674684,8426,4188,536061650,518739541,12.13,15.41,22.75,22.75,2.21,2.39,5.16,5.34
-37183,47,003,47003,2742,1175,178950526,178685313,3229,1393,206283929,206018716,45058,18360,1229693277,1226710123,84.92,84.35,86.75,86.73,6.09,6.4,14.55,14.57
-37183,47,031,47031,258,113,16516432,16516432,3229,1393,206283929,206018716,52796,23434,1125489778,1110993322,7.99,8.11,8.01,8.02,0.49,0.48,1.47,1.49
-37183,47,127,47127,229,105,10816971,10816971,3229,1393,206283929,206018716,6362,2915,337778385,334684959,7.09,7.54,5.24,5.25,3.6,3.6,3.2,3.23
-37184,47,159,47159,292,123,9564828,9564828,5844,2432,302980007,302980007,19166,8529,842710884,814004493,5,5.06,3.16,3.16,1.52,1.44,1.14,1.18
-37184,47,189,47189,5552,2309,293415179,293415179,5844,2432,302980007,302980007,113993,45568,1510470695,1478433235,95,94.94,96.84,96.84,4.87,5.07,19.43,19.85
-37185,47,083,47083,19,40,4297955,4297955,8638,4391,638821251,599015748,8426,4188,536061650,518739541,0.22,0.91,0.67,0.72,0.23,0.96,0.8,0.83
-37185,47,085,47085,8619,4351,634523296,594717793,8638,4391,638821251,599015748,18538,8865,1441852820,1375232049,99.78,99.09,99.33,99.28,46.49,49.08,44.01,43.24
-37186,47,111,47111,3407,1465,122548473,122528789,9184,3871,272496362,272348791,22248,9861,795745071,795498380,37.1,37.85,44.97,44.99,15.31,14.86,15.4,15.4
-37186,47,165,47165,5777,2406,149947889,149820002,9184,3871,272496362,272348791,160645,65968,1406925949,1371267673,62.9,62.15,55.03,55.01,3.6,3.65,10.66,10.93
-37187,47,021,47021,280,114,40984579,40860269,6829,2835,186498845,186284491,39105,15663,795272418,783308267,4.1,4.02,21.98,21.93,0.72,0.73,5.15,5.22
-37187,47,043,47043,6549,2721,145514266,145424222,6829,2835,186498845,186284491,49666,20820,1272513276,1268824458,95.9,95.98,78.02,78.07,13.19,13.07,11.44,11.46
-37188,47,147,47147,7060,2660,56968100,56968100,13643,5087,77913750,77913750,66283,26086,1234029189,1233577495,51.75,52.29,73.12,73.12,10.65,10.2,4.62,4.62
-37188,47,165,47165,6583,2427,20945650,20945650,13643,5087,77913750,77913750,160645,65968,1406925949,1371267673,48.25,47.71,26.88,26.88,4.1,3.68,1.49,1.53
-37189,47,037,47037,3320,1377,66302167,66264539,3320,1377,66302167,66264539,626681,283978,1362187772,1305438546,100,100,100,100,0.53,0.48,4.87,5.08
-37190,47,015,47015,8698,3826,373501905,373345033,8787,3863,379803466,379646594,13801,6037,688148575,687991703,98.99,99.04,98.34,98.34,63.02,63.38,54.28,54.27
-37190,47,177,47177,89,37,6301561,6301561,8787,3863,379803466,379646594,39839,17821,1124144073,1120635730,1.01,0.96,1.66,1.66,0.22,0.21,0.56,0.56
-37191,47,125,47125,4020,1660,108546560,107535942,4020,1660,108546560,107535942,172331,70098,1408512162,1396461566,100,100,100,100,2.33,2.37,7.71,7.7
-37201,47,037,47037,2137,944,950601,790274,2137,944,950601,790274,626681,283978,1362187772,1305438546,100,100,100,100,0.34,0.33,0.07,0.06
-37203,47,037,47037,11883,6791,10874915,10866089,11883,6791,10874915,10866089,626681,283978,1362187772,1305438546,100,100,100,100,1.9,2.39,0.8,0.83
-37204,47,037,47037,12031,5683,19164623,19164623,12031,5683,19164623,19164623,626681,283978,1362187772,1305438546,100,100,100,100,1.92,2,1.41,1.47
-37205,47,037,47037,24057,12344,37635663,37635233,24057,12344,37635663,37635233,626681,283978,1362187772,1305438546,100,100,100,100,3.84,4.35,2.76,2.88
-37206,47,037,47037,25699,11912,20493974,20005992,25699,11912,20493974,20005992,626681,283978,1362187772,1305438546,100,100,100,100,4.1,4.19,1.5,1.53
-37207,47,037,47037,34880,14493,49597456,49189283,34880,14493,49597456,49189283,626681,283978,1362187772,1305438546,100,100,100,100,5.57,5.1,3.64,3.77
-37208,47,037,47037,16067,7500,12360532,11957261,16067,7500,12360532,11957261,626681,283978,1362187772,1305438546,100,100,100,100,2.56,2.64,0.91,0.92
-37209,47,037,47037,35457,15648,96939193,94099588,35457,15648,96939193,94099588,626681,283978,1362187772,1305438546,100,100,100,100,5.66,5.51,7.12,7.21
-37210,47,037,47037,16067,7073,24336927,23936701,16067,7073,24336927,23936701,626681,283978,1362187772,1305438546,100,100,100,100,2.56,2.49,1.79,1.83
-37211,47,037,47037,74755,31732,55347762,55347762,74755,31732,55347762,55347762,626681,283978,1362187772,1305438546,100,100,100,100,11.93,11.17,4.06,4.24
-37212,47,037,47037,20148,7794,7183416,7183416,20148,7794,7183416,7183416,626681,283978,1362187772,1305438546,100,100,100,100,3.22,2.74,0.53,0.55
-37213,47,037,47037,218,84,2211147,1875556,218,84,2211147,1875556,626681,283978,1362187772,1305438546,100,100,100,100,0.03,0.03,0.16,0.14
-37214,47,037,47037,28973,14313,69610779,64926460,28973,14313,69610779,64926460,626681,283978,1362187772,1305438546,100,100,100,100,4.62,5.04,5.11,4.97
-37215,47,037,47037,21129,10806,39875892,39875892,21190,10824,40431399,40431399,626681,283978,1362187772,1305438546,99.71,99.83,98.63,98.63,3.37,3.81,2.93,3.05
-37215,47,187,47187,61,18,555507,555507,21190,10824,40431399,40431399,183182,68498,1511954266,1508925443,0.29,0.17,1.37,1.37,0.03,0.03,0.04,0.04
-37216,47,037,47037,17848,8507,17786331,17532181,17848,8507,17786331,17532181,626681,283978,1362187772,1305438546,100,100,100,100,2.85,3,1.31,1.34
-37217,47,037,47037,29599,13498,41303422,37512785,29599,13498,41303422,37512785,626681,283978,1362187772,1305438546,100,100,100,100,4.72,4.75,3.03,2.87
-37218,47,037,47037,14855,5640,105843088,102144071,14855,5640,105843088,102144071,626681,283978,1362187772,1305438546,100,100,100,100,2.37,1.99,7.77,7.82
-37219,47,037,47037,1162,1111,548331,548331,1162,1111,548331,548331,626681,283978,1362187772,1305438546,100,100,100,100,0.19,0.39,0.04,0.04
-37220,47,037,47037,5786,2519,19555516,19237175,5786,2519,19555516,19237175,626681,283978,1362187772,1305438546,100,100,100,100,0.92,0.89,1.44,1.47
-37221,47,037,47037,34495,16566,117188818,117170106,36610,17249,134513735,134232227,626681,283978,1362187772,1305438546,94.22,96.04,87.12,87.29,5.5,5.83,8.6,8.98
-37221,47,187,47187,2115,683,17324917,17062121,36610,17249,134513735,134232227,183182,68498,1511954266,1508925443,5.78,3.96,12.88,12.71,1.15,1,1.15,1.13
-37228,47,037,47037,1160,625,4270176,3810327,1160,625,4270176,3810327,626681,283978,1362187772,1305438546,100,100,100,100,0.19,0.22,0.31,0.29
-37240,47,037,47037,754,0,42119,42119,754,0,42119,42119,626681,283978,1362187772,1305438546,100,0,100,100,0.12,0,0,0
-37243,47,037,47037,0,0,40241,40241,0,0,40241,40241,626681,283978,1362187772,1305438546,0,0,100,100,0,0,0,0
-37246,47,037,47037,0,0,61645,61645,0,0,61645,61645,626681,283978,1362187772,1305438546,0,0,100,100,0,0,0,0
-37301,47,061,47061,1429,661,140252807,139802377,1429,661,140252807,139802377,13703,6397,935301317,933778866,100,100,100,100,10.43,10.33,15,14.97
-37302,47,065,47065,3730,1456,42498143,42484084,3730,1456,42498143,42484084,336463,151107,1491521967,1404890184,100,100,100,100,1.11,0.96,2.85,3.02
-37303,47,107,47107,25461,11380,386433042,386402625,25461,11380,386433042,386402625,52266,23341,1119349601,1114018337,100,100,100,100,48.71,48.76,34.52,34.69
-37305,47,061,47061,889,448,51452120,51452120,889,448,51452120,51452120,13703,6397,935301317,933778866,100,100,100,100,6.49,7,5.5,5.51
-37306,47,051,47051,2668,1127,279135490,278959710,2760,1181,307948364,307772584,41052,18697,1491147579,1436257485,96.67,95.43,90.64,90.64,6.5,6.03,18.72,19.42
-37306,47,127,47127,92,54,28812874,28812874,2760,1181,307948364,307772584,6362,2915,337778385,334684959,3.33,4.57,9.36,9.36,1.45,1.85,8.53,8.61
-37307,47,139,47139,4870,2174,136436957,133968094,4870,2174,136436957,133968094,16825,7991,1145640621,1125806416,100,100,100,100,28.95,27.21,11.91,11.9
-37308,47,065,47065,1905,814,62011551,59801640,2772,1219,111032033,94939374,336463,151107,1491521967,1404890184,68.72,66.78,55.85,62.99,0.57,0.54,4.16,4.26
-37308,47,121,47121,867,405,49020482,35137734,2772,1219,111032033,94939374,11753,5628,561376191,505362806,31.28,33.22,44.15,37.01,7.38,7.2,8.73,6.95
-37309,47,107,47107,1855,807,91974382,87447432,2138,918,103223593,98350716,52266,23341,1119349601,1114018337,86.76,87.91,89.1,88.91,3.55,3.46,8.22,7.85
-37309,47,139,47139,283,111,11249211,10903284,2138,918,103223593,98350716,16825,7991,1145640621,1125806416,13.24,12.09,10.9,11.09,1.68,1.39,0.98,0.97
-37310,47,011,47011,3855,1607,102264009,97677066,4135,1720,113940966,109247453,98963,41395,858448400,851489045,93.23,93.43,89.75,89.41,3.9,3.88,11.91,11.47
-37310,47,139,47139,280,113,11676957,11570387,4135,1720,113940966,109247453,16825,7991,1145640621,1125806416,6.77,6.57,10.25,10.59,1.66,1.41,1.02,1.03
-37311,47,011,47011,27255,11774,137644492,137606104,27373,11814,139683354,139644966,98963,41395,858448400,851489045,99.57,99.66,98.54,98.54,27.54,28.44,16.03,16.16
-37311,47,065,47065,118,40,2038862,2038862,27373,11814,139683354,139644966,336463,151107,1491521967,1404890184,0.43,0.34,1.46,1.46,0.04,0.03,0.14,0.15
-37312,47,011,47011,30962,13128,154956969,154926560,30962,13128,154956969,154926560,98963,41395,858448400,851489045,100,100,100,100,31.29,31.71,18.05,18.19
-37313,47,061,47061,1731,767,88690070,87882473,1731,767,88690070,87882473,13703,6397,935301317,933778866,100,100,100,100,12.63,11.99,9.48,9.41
-37315,47,065,47065,1556,47,297334,297334,1556,47,297334,297334,336463,151107,1491521967,1404890184,100,100,100,100,0.46,0.03,0.02,0.02
-37317,47,139,47139,2403,1335,199094201,195191640,2403,1335,199094201,195191640,16825,7991,1145640621,1125806416,100,100,100,100,14.28,16.71,17.38,17.34
-37318,47,051,47051,1978,958,30981469,30981469,1978,958,30981469,30981469,41052,18697,1491147579,1436257485,100,100,100,100,4.82,5.12,2.08,2.16
-37321,47,007,47007,175,93,13286148,13286148,19113,8017,307937682,292528608,12876,5718,1053474175,1052635810,0.92,1.16,4.31,4.54,1.36,1.63,1.26,1.26
-37321,47,143,47143,18938,7924,294651534,279242460,19113,8017,307937682,292528608,31809,14365,871286385,816822960,99.08,98.84,95.69,95.46,59.54,55.16,33.82,34.19
-37322,47,107,47107,612,242,25526608,25526608,8239,3692,360448628,343416523,52266,23341,1119349601,1114018337,7.43,6.55,7.08,7.43,1.17,1.04,2.28,2.29
-37322,47,121,47121,7627,3450,334922020,317889915,8239,3692,360448628,343416523,11753,5628,561376191,505362806,92.57,93.45,92.92,92.57,64.89,61.3,59.66,62.9
-37323,47,011,47011,30416,12175,309627701,309342140,30439,12188,309702631,309417070,98963,41395,858448400,851489045,99.92,99.89,99.98,99.98,30.73,29.41,36.07,36.33
-37323,47,139,47139,23,13,74930,74930,30439,12188,309702631,309417070,16825,7991,1145640621,1125806416,0.08,0.11,0.02,0.02,0.14,0.16,0.01,0.01
-37324,47,051,47051,5206,2343,173581221,173110475,5322,2395,187054663,186583917,41052,18697,1491147579,1436257485,97.82,97.83,92.8,92.78,12.68,12.53,11.64,12.05
-37324,47,061,47061,116,52,13473442,13473442,5322,2395,187054663,186583917,13703,6397,935301317,933778866,2.18,2.17,7.2,7.22,0.85,0.81,1.44,1.44
-37325,47,107,47107,246,110,6383628,6383628,1845,811,72639771,71831402,52266,23341,1119349601,1114018337,13.33,13.56,8.79,8.89,0.47,0.47,0.57,0.57
-37325,47,139,47139,1599,701,66256143,65447774,1845,811,72639771,71831402,16825,7991,1145640621,1125806416,86.67,86.44,91.21,91.11,9.5,8.77,5.78,5.81
-37326,47,139,47139,467,208,5027627,5027627,467,208,5027627,5027627,16825,7991,1145640621,1125806416,100,100,100,100,2.78,2.6,0.44,0.45
-37327,47,007,47007,868,394,78839647,78839647,11174,5016,524104640,523675413,12876,5718,1053474175,1052635810,7.77,7.85,15.04,15.06,6.74,6.89,7.48,7.49
-37327,47,153,47153,10306,4622,445264993,444835766,11174,5016,524104640,523675413,14112,6368,689049197,688567749,92.23,92.15,84.96,84.94,73.03,72.58,64.62,64.6
-37328,47,051,47051,139,57,3967582,3967582,1364,611,77801523,77763108,41052,18697,1491147579,1436257485,10.19,9.33,5.1,5.1,0.34,0.3,0.27,0.28
-37328,47,103,47103,1225,554,73833941,73795526,1364,611,77801523,77763108,33361,15241,1478159881,1477169515,89.81,90.67,94.9,94.9,3.67,3.63,4.99,5
-37329,47,107,47107,5232,2335,128113265,128113265,5588,2520,149994244,149994244,52266,23341,1119349601,1114018337,93.63,92.66,85.41,85.41,10.01,10,11.45,11.5
-37329,47,123,47123,356,185,21880979,21880979,5588,2520,149994244,149994244,44519,20787,1690117763,1646104693,6.37,7.34,14.59,14.59,0.8,0.89,1.29,1.33
-37330,47,031,47031,413,174,8461109,7992238,6784,3280,109089335,93259604,52796,23434,1125489778,1110993322,6.09,5.3,7.76,8.57,0.78,0.74,0.75,0.72
-37330,47,051,47051,6371,3106,100628226,85267366,6784,3280,109089335,93259604,41052,18697,1491147579,1436257485,93.91,94.7,92.24,91.43,15.52,16.61,6.75,5.94
-37331,47,107,47107,7656,3702,107665666,107610587,7656,3702,107665666,107610587,52266,23341,1119349601,1114018337,100,100,100,100,14.65,15.86,9.62,9.66
-37332,47,007,47007,27,16,10831234,10831234,2609,1098,169317761,168745794,12876,5718,1053474175,1052635810,1.03,1.46,6.4,6.42,0.21,0.28,1.03,1.03
-37332,47,143,47143,2582,1082,158486527,157914560,2609,1098,169317761,168745794,31809,14365,871286385,816822960,98.97,98.54,93.6,93.58,8.12,7.53,18.19,19.33
-37333,47,139,47139,534,233,29692808,29692808,534,233,29692808,29692808,16825,7991,1145640621,1125806416,100,100,100,100,3.17,2.92,2.59,2.64
-37334,47,003,47003,40,18,2306533,2306533,21700,9932,659536547,659113138,45058,18360,1229693277,1226710123,0.18,0.18,0.35,0.35,0.09,0.1,0.19,0.19
-37334,47,103,47103,21256,9729,613920324,613496915,21700,9932,659536547,659113138,33361,15241,1478159881,1477169515,97.95,97.96,93.08,93.08,63.72,63.83,41.53,41.53
-37334,47,127,47127,404,185,43309690,43309690,21700,9932,659536547,659113138,6362,2915,337778385,334684959,1.86,1.86,6.57,6.57,6.35,6.35,12.82,12.94
-37335,47,051,47051,24,8,4362584,4362584,2778,1197,121204390,121128657,41052,18697,1491147579,1436257485,0.86,0.67,3.6,3.6,0.06,0.04,0.29,0.3
-37335,47,103,47103,2754,1189,116841806,116766073,2778,1197,121204390,121128657,33361,15241,1478159881,1477169515,99.14,99.33,96.4,96.4,8.26,7.8,7.9,7.9
-37336,47,011,47011,1643,710,35526460,33521846,4202,1803,119411024,112430002,98963,41395,858448400,851489045,39.1,39.38,29.75,29.82,1.66,1.72,4.14,3.94
-37336,47,065,47065,1356,559,39292160,39292160,4202,1803,119411024,112430002,336463,151107,1491521967,1404890184,32.27,31,32.9,34.95,0.4,0.37,2.63,2.8
-37336,47,121,47121,1203,534,44592404,39615996,4202,1803,119411024,112430002,11753,5628,561376191,505362806,28.63,29.62,37.34,35.24,10.24,9.49,7.94,7.84
-37337,47,007,47007,16,9,9267557,9267557,1470,740,163107300,162962143,12876,5718,1053474175,1052635810,1.09,1.22,5.68,5.69,0.12,0.16,0.88,0.88
-37337,47,035,47035,579,290,72165626,72020469,1470,740,163107300,162962143,56053,28151,1773673501,1763847584,39.39,39.19,44.24,44.19,1.03,1.03,4.07,4.08
-37337,47,143,47143,875,441,81674117,81674117,1470,740,163107300,162962143,31809,14365,871286385,816822960,59.52,59.59,50.07,50.12,2.75,3.07,9.37,10
-37338,47,007,47007,844,409,106614350,106415267,3093,1406,195264197,195065114,12876,5718,1053474175,1052635810,27.29,29.09,54.6,54.55,6.55,7.15,10.12,10.11
-37338,47,065,47065,45,34,28664617,28664617,3093,1406,195264197,195065114,336463,151107,1491521967,1404890184,1.45,2.42,14.68,14.69,0.01,0.02,1.92,2.04
-37338,47,143,47143,1475,638,9922911,9922911,3093,1406,195264197,195065114,31809,14365,871286385,816822960,47.69,45.38,5.08,5.09,4.64,4.44,1.14,1.21
-37338,47,153,47153,729,325,50062319,50062319,3093,1406,195264197,195065114,14112,6368,689049197,688567749,23.57,23.12,25.64,25.66,5.17,5.1,7.27,7.27
-37339,47,061,47061,2018,850,90883341,90883341,2018,850,90883341,90883341,13703,6397,935301317,933778866,100,100,100,100,14.73,13.29,9.72,9.73
-37340,47,115,47115,607,324,35727742,32178895,607,324,35727742,32178895,28237,12954,1326729229,1290227262,100,100,100,100,2.15,2.5,2.69,2.49
-37341,47,065,47065,12085,4928,108343250,81267873,12085,4928,108343250,81267873,336463,151107,1491521967,1404890184,100,100,100,100,3.59,3.26,7.26,5.78
-37342,47,031,47031,3593,1489,199884454,199732971,3593,1489,199884454,199732971,52796,23434,1125489778,1110993322,100,100,100,100,6.81,6.35,17.76,17.98
-37343,47,065,47065,40042,17235,119376397,108901231,40042,17235,119376397,108901231,336463,151107,1491521967,1404890184,100,100,100,100,11.9,11.41,8,7.75
-37345,47,051,47051,2311,1016,148741416,148741109,2311,1016,148741416,148741109,41052,18697,1491147579,1436257485,100,100,100,100,5.63,5.43,9.97,10.36
-37347,47,115,47115,7559,3443,140140799,125834372,7559,3443,140140799,125834372,28237,12954,1326729229,1290227262,100,100,100,100,26.77,26.58,10.56,9.75
-37348,47,103,47103,1131,575,93552392,93234385,1131,575,93552392,93234385,33361,15241,1478159881,1477169515,100,100,100,100,3.39,3.77,6.33,6.31
-37350,47,065,47065,1866,827,3755576,3755576,1866,827,3755576,3755576,336463,151107,1491521967,1404890184,100,100,100,100,0.55,0.55,0.25,0.27
-37351,47,065,47065,390,205,1390415,1185510,390,205,1390415,1185510,336463,151107,1491521967,1404890184,100,100,100,100,0.12,0.14,0.09,0.08
-37352,47,127,47127,3268,1544,130718707,128409667,3268,1544,130718707,128409667,6362,2915,337778385,334684959,100,100,100,100,51.37,52.97,38.7,38.37
-37353,47,011,47011,3847,1586,82889720,82876280,4513,1855,95317115,95303675,98963,41395,858448400,851489045,85.24,85.5,86.96,86.96,3.89,3.83,9.66,9.73
-37353,47,065,47065,666,269,12427395,12427395,4513,1855,95317115,95303675,336463,151107,1491521967,1404890184,14.76,14.5,13.04,13.04,0.2,0.18,0.83,0.88
-37354,47,107,47107,123,57,7883383,7883383,16483,7385,300307188,298721342,52266,23341,1119349601,1114018337,0.75,0.77,2.63,2.64,0.24,0.24,0.7,0.71
-37354,47,123,47123,16360,7328,292423805,290837959,16483,7385,300307188,298721342,44519,20787,1690117763,1646104693,99.25,99.23,97.37,97.36,36.75,35.25,17.3,17.67
-37355,47,031,47031,25596,10893,570514978,562908489,25596,10893,570514978,562908489,52796,23434,1125489778,1110993322,100,100,100,100,48.48,46.48,50.69,50.67
-37356,47,061,47061,1572,903,28598334,28591670,2486,1455,62693973,62577226,13703,6397,935301317,933778866,63.23,62.06,45.62,45.69,11.47,14.12,3.06,3.06
-37356,47,115,47115,914,552,34095639,33985556,2486,1455,62693973,62577226,28237,12954,1326729229,1290227262,36.77,37.94,54.38,54.31,3.24,4.26,2.57,2.63
-37357,47,015,47015,344,149,22997135,22997135,5512,2357,363986356,363908997,13801,6037,688148575,687991703,6.24,6.32,6.32,6.32,2.49,2.47,3.34,3.34
-37357,47,031,47031,1266,520,100167315,100142152,5512,2357,363986356,363908997,52796,23434,1125489778,1110993322,22.97,22.06,27.52,27.52,2.4,2.22,8.9,9.01
-37357,47,061,47061,264,119,56402775,56402775,5512,2357,363986356,363908997,13703,6397,935301317,933778866,4.79,5.05,15.5,15.5,1.93,1.86,6.03,6.04
-37357,47,177,47177,3638,1569,184419131,184366935,5512,2357,363986356,363908997,39839,17821,1124144073,1120635730,66,66.57,50.67,50.66,9.13,8.8,16.41,16.45
-37359,47,103,47103,504,284,70911603,70911603,783,405,93640108,93640108,33361,15241,1478159881,1477169515,64.37,70.12,75.73,75.73,1.51,1.86,4.8,4.8
-37359,47,127,47127,279,121,22728505,22728505,783,405,93640108,93640108,6362,2915,337778385,334684959,35.63,29.88,24.27,24.27,4.39,4.15,6.73,6.79
-37360,47,003,47003,714,309,40485075,40259377,1732,759,76281207,72294909,45058,18360,1229693277,1226710123,41.22,40.71,53.07,55.69,1.58,1.68,3.29,3.28
-37360,47,031,47031,842,365,32744180,28983580,1732,759,76281207,72294909,52796,23434,1125489778,1110993322,48.61,48.09,42.93,40.09,1.59,1.56,2.91,2.61
-37360,47,127,47127,176,85,3051952,3051952,1732,759,76281207,72294909,6362,2915,337778385,334684959,10.16,11.2,4,4.22,2.77,2.92,0.9,0.91
-37361,47,139,47139,1478,693,50516129,47601858,1478,693,50516129,47601858,16825,7991,1145640621,1125806416,100,100,100,100,8.78,8.67,4.41,4.23
-37362,47,011,47011,985,415,35539049,35539049,3395,1464,196794339,196750275,98963,41395,858448400,851489045,29.01,28.35,18.06,18.06,1,1,4.14,4.17
-37362,47,139,47139,2410,1049,161255290,161211226,3395,1464,196794339,196750275,16825,7991,1145640621,1125806416,70.99,71.65,81.94,81.94,14.32,13.13,14.08,14.32
-37363,47,065,47065,32244,12872,192095556,190365335,32244,12872,192095556,190365335,336463,151107,1491521967,1404890184,100,100,100,100,9.58,8.52,12.88,13.55
-37365,47,061,47061,1309,564,114310880,114296615,1314,567,117323639,117309374,13703,6397,935301317,933778866,99.62,99.47,97.43,97.43,9.55,8.82,12.22,12.24
-37365,47,153,47153,5,3,3012759,3012759,1314,567,117323639,117309374,14112,6368,689049197,688567749,0.38,0.53,2.57,2.57,0.04,0.05,0.44,0.44
-37366,47,061,47061,828,399,116089525,115974240,828,399,116089525,115974240,13703,6397,935301317,933778866,100,100,100,100,6.04,6.24,12.41,12.42
-37367,47,007,47007,9654,4128,717024772,716385490,10247,4443,802440119,801385146,12876,5718,1053474175,1052635810,94.21,92.91,89.36,89.39,74.98,72.19,68.06,68.06
-37367,47,035,47035,47,27,22537587,22537587,10247,4443,802440119,801385146,56053,28151,1773673501,1763847584,0.46,0.61,2.81,2.81,0.08,0.1,1.27,1.28
-37367,47,175,47175,546,288,62877760,62462069,10247,4443,802440119,801385146,5548,2663,711035899,708142475,5.33,6.48,7.84,7.79,9.84,10.81,8.84,8.82
-37369,47,123,47123,76,44,26338768,26338768,956,571,290546206,286550334,44519,20787,1690117763,1646104693,7.95,7.71,9.07,9.19,0.17,0.21,1.56,1.6
-37369,47,139,47139,880,527,264207438,260211566,956,571,290546206,286550334,16825,7991,1145640621,1125806416,92.05,92.29,90.93,90.81,5.23,6.59,23.06,23.11
-37370,47,107,47107,4652,1924,163984128,163487143,4652,1924,163984128,163487143,52266,23341,1119349601,1114018337,100,100,100,100,8.9,8.24,14.65,14.68
-37373,47,065,47065,3074,1377,113689879,107270005,3074,1377,113689879,107270005,336463,151107,1491521967,1404890184,100,100,100,100,0.91,0.91,7.62,7.64
-37374,47,115,47115,2047,903,209124659,209089730,2047,903,209124659,209089730,28237,12954,1326729229,1290227262,100,100,100,100,7.25,6.97,15.76,16.21
-37375,47,051,47051,3370,1135,126899622,126210804,3711,1305,170716921,170023877,41052,18697,1491147579,1436257485,90.81,86.97,74.33,74.23,8.21,6.07,8.51,8.79
-37375,47,115,47115,341,170,43817299,43813073,3711,1305,170716921,170023877,28237,12954,1326729229,1290227262,9.19,13.03,25.67,25.77,1.21,1.31,3.3,3.4
-37376,47,051,47051,418,221,216836338,216836338,418,221,216836338,216836338,41052,18697,1491147579,1436257485,100,100,100,100,1.02,1.18,14.54,15.1
-37377,47,065,47065,13798,5635,104553245,104436547,15310,6352,193420892,193251973,336463,151107,1491521967,1404890184,90.12,88.71,54.05,54.04,4.1,3.73,7.01,7.43
-37377,47,153,47153,1512,717,88867647,88815426,15310,6352,193420892,193251973,14112,6368,689049197,688567749,9.88,11.29,45.95,45.96,10.71,11.26,12.9,12.9
-37379,47,007,47007,250,111,21373943,21373943,26835,11330,292404693,273632083,12876,5718,1053474175,1052635810,0.93,0.98,7.31,7.81,1.94,1.94,2.03,2.03
-37379,47,065,47065,26342,11112,260521866,241749256,26835,11330,292404693,273632083,336463,151107,1491521967,1404890184,98.16,98.08,89.1,88.35,7.83,7.35,17.47,17.21
-37379,47,153,47153,243,107,10508884,10508884,26835,11330,292404693,273632083,14112,6368,689049197,688567749,0.91,0.94,3.59,3.84,1.72,1.68,1.53,1.53
-37380,47,115,47115,6289,2858,346535007,339111033,6289,2858,346535007,339111033,28237,12954,1326729229,1290227262,100,100,100,100,22.27,22.06,26.12,26.28
-37381,47,007,47007,916,499,72420790,72420790,8855,4779,398972086,360489702,12876,5718,1053474175,1052635810,10.34,10.44,18.15,20.09,7.11,8.73,6.87,6.88
-37381,47,143,47143,7939,4280,326551296,288068912,8855,4779,398972086,360489702,31809,14365,871286385,816822960,89.66,89.56,81.85,79.91,24.96,29.79,37.48,35.27
-37385,47,123,47123,8131,4195,637543942,636701320,8131,4195,637543942,636701320,44519,20787,1690117763,1646104693,100,100,100,100,18.26,20.18,37.72,38.68
-37387,47,061,47061,3323,1514,95161377,95033167,3323,1514,95161377,95033167,13703,6397,935301317,933778866,100,100,100,100,24.25,23.67,10.17,10.18
-37388,47,003,47003,122,59,10823800,10823800,24494,11097,250512025,239887305,45058,18360,1229693277,1226710123,0.5,0.53,4.32,4.51,0.27,0.32,0.88,0.88
-37388,47,031,47031,18641,8582,87255035,85061073,24494,11097,250512025,239887305,52796,23434,1125489778,1110993322,76.1,77.34,34.83,35.46,35.31,36.62,7.75,7.66
-37388,47,051,47051,4338,1847,92623434,84977062,24494,11097,250512025,239887305,41052,18697,1491147579,1436257485,17.71,16.64,36.97,35.42,10.57,9.88,6.21,5.92
-37388,47,127,47127,1393,609,59809756,59025370,24494,11097,250512025,239887305,6362,2915,337778385,334684959,5.69,5.49,23.88,24.61,21.9,20.89,17.71,17.64
-37391,47,139,47139,1598,818,67433973,66503835,1598,818,67433973,66503835,16825,7991,1145640621,1125806416,100,100,100,100,9.5,10.24,5.89,5.91
-37394,47,177,47177,105,46,299437,299437,105,46,299437,299437,39839,17821,1124144073,1120635730,100,100,100,100,0.26,0.26,0.03,0.03
-37396,47,115,47115,257,120,10109609,10109609,257,120,10109609,10109609,28237,12954,1326729229,1290227262,100,100,100,100,0.91,0.93,0.76,0.78
-37397,47,115,47115,8810,3913,337193610,331193734,10127,4507,428526205,422526329,28237,12954,1326729229,1290227262,87,86.82,78.69,78.38,31.2,30.21,25.42,25.67
-37397,47,153,47153,1317,594,91332595,91332595,10127,4507,428526205,422526329,14112,6368,689049197,688567749,13,13.18,21.31,21.62,9.33,9.33,13.25,13.26
-37398,47,051,47051,14229,6878,287048295,256698903,14347,6934,302422988,272073596,41052,18697,1491147579,1436257485,99.18,99.19,94.92,94.35,34.66,36.79,19.25,17.87
-37398,47,127,47127,118,56,15374693,15374693,14347,6934,302422988,272073596,6362,2915,337778385,334684959,0.82,0.81,5.08,5.65,1.85,1.92,4.55,4.59
-37402,47,065,47065,3917,2349,4887959,3959072,3917,2349,4887959,3959072,336463,151107,1491521967,1404890184,100,100,100,100,1.16,1.55,0.33,0.28
-37403,47,065,47065,5811,1673,4811349,4434309,5811,1673,4811349,4434309,336463,151107,1491521967,1404890184,100,100,100,100,1.73,1.11,0.32,0.32
-37404,47,065,47065,13327,5988,12763286,12763286,13327,5988,12763286,12763286,336463,151107,1491521967,1404890184,100,100,100,100,3.96,3.96,0.86,0.91
-37405,47,065,47065,13634,7501,36672350,32987636,14597,7932,147843707,143954741,336463,151107,1491521967,1404890184,93.4,94.57,24.8,22.92,4.05,4.96,2.46,2.35
-37405,47,115,47115,963,431,111171357,110967105,14597,7932,147843707,143954741,28237,12954,1326729229,1290227262,6.6,5.43,75.2,77.08,3.41,3.33,8.38,8.6
-37406,47,065,47065,14627,6842,33372861,31786261,14627,6842,33372861,31786261,336463,151107,1491521967,1404890184,100,100,100,100,4.35,4.53,2.24,2.26
-37407,47,065,47065,8932,3794,9163465,9063152,8932,3794,9163465,9063152,336463,151107,1491521967,1404890184,100,100,100,100,2.65,2.51,0.61,0.65
-37408,47,065,47065,1486,807,4962306,4962306,1486,807,4962306,4962306,336463,151107,1491521967,1404890184,100,100,100,100,0.44,0.53,0.33,0.35
-37409,47,065,47065,2851,1435,11359797,11331787,2851,1435,11359797,11331787,336463,151107,1491521967,1404890184,100,100,100,100,0.85,0.95,0.76,0.81
-37410,47,065,47065,3886,1801,7664793,7633919,3886,1801,7664793,7633919,336463,151107,1491521967,1404890184,100,100,100,100,1.15,1.19,0.51,0.54
-37411,47,065,47065,17587,8490,22457143,22457143,17587,8490,22457143,22457143,336463,151107,1491521967,1404890184,100,100,100,100,5.23,5.62,1.51,1.6
-37412,47,065,47065,20951,10366,22626820,22626820,20951,10366,22626820,22626820,336463,151107,1491521967,1404890184,100,100,100,100,6.23,6.86,1.52,1.61
-37415,47,065,47065,23873,12490,49154943,47100132,23873,12490,49154943,47100132,336463,151107,1491521967,1404890184,100,100,100,100,7.1,8.27,3.3,3.35
-37416,47,065,47065,14486,6679,37270194,29434616,14486,6679,37270194,29434616,336463,151107,1491521967,1404890184,100,100,100,100,4.31,4.42,2.5,2.1
-37419,47,065,47065,5650,2735,64690990,61718264,6100,2975,123504498,115662419,336463,151107,1491521967,1404890184,92.62,91.93,52.38,53.36,1.68,1.81,4.34,4.39
-37419,47,115,47115,450,240,58813508,53944155,6100,2975,123504498,115662419,28237,12954,1326729229,1290227262,7.38,8.07,47.62,46.64,1.59,1.85,4.43,4.18
-37421,47,065,47065,46228,20747,78707465,78694056,46228,20747,78707465,78694056,336463,151107,1491521967,1404890184,100,100,100,100,13.74,13.73,5.28,5.6
-37601,47,019,47019,10496,5221,52491321,52367200,36182,17829,122070590,119579876,57424,27746,900368415,883711484,29.01,29.28,43,43.79,18.28,18.82,5.83,5.93
-37601,47,171,47171,290,137,2245848,2245848,36182,17829,122070590,119579876,18313,8830,483015888,482165202,0.8,0.77,1.84,1.88,1.58,1.55,0.46,0.47
-37601,47,179,47179,25396,12471,67333421,64966828,36182,17829,122070590,119579876,122979,57254,854172571,845539916,70.19,69.95,55.16,54.33,20.65,21.78,7.88,7.68
-37604,47,019,47019,276,137,4950355,4950355,34245,17350,87483857,87483857,57424,27746,900368415,883711484,0.81,0.79,5.66,5.66,0.48,0.49,0.55,0.56
-37604,47,179,47179,33969,17213,82533502,82533502,34245,17350,87483857,87483857,122979,57254,854172571,845539916,99.19,99.21,94.34,94.34,27.62,30.06,9.66,9.76
-37614,47,179,47179,2107,0,813559,813559,2107,0,813559,813559,122979,57254,854172571,845539916,100,0,100,100,1.71,0,0.1,0.1
-37615,47,179,47179,19560,9155,97660117,94212723,19560,9155,97660117,94212723,122979,57254,854172571,845539916,100,100,100,100,15.91,15.99,11.43,11.14
-37616,47,059,47059,4874,2275,116240772,116104782,4874,2275,116240772,116104782,68831,32025,1616456379,1611399661,100,100,100,100,7.08,7.1,7.19,7.21
-37617,47,163,47163,14251,6130,154440403,152514405,14251,6130,154440403,152514405,156823,73760,1112935575,1070605281,100,100,100,100,9.09,8.31,13.88,14.25
-37618,47,163,47163,12747,5889,180516211,178562093,12747,5889,180516211,178562093,156823,73760,1112935575,1070605281,100,100,100,100,8.13,7.98,16.22,16.68
-37620,47,163,47163,39102,18469,354623989,329897557,39102,18469,354623989,329897557,156823,73760,1112935575,1070605281,100,100,100,100,24.93,25.04,31.86,30.81
-37640,47,019,47019,1198,853,111368411,102600006,3743,2455,293387746,273617715,57424,27746,900368415,883711484,32.01,34.75,37.96,37.5,2.09,3.07,12.37,11.61
-37640,47,091,47091,2545,1602,182019335,171017709,3743,2455,293387746,273617715,18244,8956,784047783,773046157,67.99,65.25,62.04,62.5,13.95,17.89,23.22,22.12
-37641,47,059,47059,6747,3033,198533405,198462118,8567,3890,236915369,236779267,68831,32025,1616456379,1611399661,78.76,77.97,83.8,83.82,9.8,9.47,12.28,12.32
-37641,47,179,47179,1820,857,38381964,38317149,8567,3890,236915369,236779267,122979,57254,854172571,845539916,21.24,22.03,16.2,16.18,1.48,1.5,4.49,4.53
-37642,47,073,47073,14947,6965,153930422,151168536,14947,6965,153930422,151168536,56833,26870,1293951114,1261259454,100,100,100,100,26.3,25.92,11.9,11.99
-37643,47,019,47019,33689,15739,334462361,333092128,33689,15739,334462361,333092128,57424,27746,900368415,883711484,100,100,100,100,58.67,56.73,37.15,37.69
-37645,47,073,47073,5145,2236,15527534,15527534,5145,2236,15527534,15527534,56833,26870,1293951114,1261259454,100,100,100,100,9.05,8.32,1.2,1.23
-37650,47,171,47171,12281,5825,248426775,247576089,12750,6056,257867104,256531646,18313,8830,483015888,482165202,96.32,96.19,96.34,96.51,67.06,65.97,51.43,51.35
-37650,47,179,47179,469,231,9440329,8955557,12750,6056,257867104,256531646,122979,57254,854172571,845539916,3.68,3.81,3.66,3.49,0.38,0.4,1.11,1.06
-37656,47,059,47059,818,394,23620139,23620139,3677,1741,79970376,79970376,68831,32025,1616456379,1611399661,22.25,22.63,29.54,29.54,1.19,1.23,1.46,1.47
-37656,47,163,47163,294,146,7700321,7700321,3677,1741,79970376,79970376,156823,73760,1112935575,1070605281,8,8.39,9.63,9.63,0.19,0.2,0.69,0.72
-37656,47,179,47179,2565,1201,48649916,48649916,3677,1741,79970376,79970376,122979,57254,854172571,845539916,69.76,68.98,60.83,60.83,2.09,2.1,5.7,5.75
-37657,47,171,47171,972,606,95966587,95966587,972,606,95966587,95966587,18313,8830,483015888,482165202,100,100,100,100,5.31,6.86,19.87,19.9
-37658,47,019,47019,4386,2272,151798128,145902040,4386,2272,151798128,145902040,57424,27746,900368415,883711484,100,100,100,100,7.64,8.19,16.86,16.51
-37659,47,163,47163,66,34,2998058,2998058,27585,11938,334616322,333558119,156823,73760,1112935575,1070605281,0.24,0.28,0.9,0.9,0.04,0.05,0.27,0.28
-37659,47,179,47179,27519,11904,331618264,330560061,27585,11938,334616322,333558119,122979,57254,854172571,845539916,99.76,99.72,99.1,99.1,22.38,20.79,38.82,39.09
-37660,47,073,47073,3163,1521,17216700,16529679,40038,19753,173795568,171512919,56833,26870,1293951114,1261259454,7.9,7.7,9.91,9.64,5.57,5.66,1.33,1.31
-37660,47,163,47163,36875,18232,156578868,154983240,40038,19753,173795568,171512919,156823,73760,1112935575,1070605281,92.1,92.3,90.09,90.36,23.51,24.72,14.07,14.48
-37663,47,163,47163,13726,6037,69232320,66033196,14617,6399,72284912,69085788,156823,73760,1112935575,1070605281,93.9,94.34,95.78,95.58,8.75,8.18,6.22,6.17
-37663,47,179,47179,891,362,3052592,3052592,14617,6399,72284912,69085788,122979,57254,854172571,845539916,6.1,5.66,4.22,4.42,0.72,0.63,0.36,0.36
-37664,47,163,47163,26880,12570,85490556,84533318,26880,12570,85490556,84533318,156823,73760,1112935575,1070605281,100,100,100,100,17.14,17.04,7.68,7.9
-37665,47,163,47163,5589,2755,8049106,8049106,5589,2755,8049106,8049106,156823,73760,1112935575,1070605281,100,100,100,100,3.56,3.74,0.72,0.75
-37680,47,091,47091,766,406,69362889,69362889,766,406,69362889,69362889,18244,8956,784047783,773046157,100,100,100,100,4.2,4.53,8.85,8.97
-37681,47,059,47059,1706,771,61373251,61349038,6121,2756,174783487,173918268,68831,32025,1616456379,1611399661,27.87,27.98,35.11,35.27,2.48,2.41,3.8,3.81
-37681,47,179,47179,4415,1985,113410236,112569230,6121,2756,174783487,173918268,122979,57254,854172571,845539916,72.13,72.02,64.89,64.73,3.59,3.47,13.28,13.31
-37682,47,019,47019,667,69,448062,448062,667,69,448062,448062,57424,27746,900368415,883711484,100,100,100,100,1.16,0.25,0.05,0.05
-37683,47,091,47091,13021,5833,351997271,351997271,13021,5833,351997271,351997271,18244,8956,784047783,773046157,100,100,100,100,71.37,65.13,44.89,45.53
-37686,47,163,47163,7020,3372,84255080,76283324,7072,3414,84528499,76467241,156823,73760,1112935575,1070605281,99.26,98.77,99.68,99.76,4.48,4.57,7.57,7.13
-37686,47,179,47179,52,42,273419,183917,7072,3414,84528499,76467241,122979,57254,854172571,845539916,0.74,1.23,0.32,0.24,0.04,0.07,0.03,0.02
-37687,47,019,47019,5038,2674,218669045,218396275,5038,2674,218669045,218396275,57424,27746,900368415,883711484,100,100,100,100,8.77,9.64,24.29,24.71
-37688,47,091,47091,1018,595,140237312,140237312,1018,595,140237312,140237312,18244,8956,784047783,773046157,100,100,100,100,5.58,6.64,17.89,18.14
-37690,47,179,47179,4122,1786,60069453,59863792,4122,1786,60069453,59863792,122979,57254,854172571,845539916,100,100,100,100,3.35,3.12,7.03,7.08
-37691,47,091,47091,894,520,40430976,40430976,894,520,40430976,40430976,18244,8956,784047783,773046157,100,100,100,100,4.9,5.81,5.16,5.23
-37692,47,171,47171,4770,2262,136376678,136376678,4770,2262,136376678,136376678,18313,8830,483015888,482165202,100,100,100,100,26.05,25.62,28.23,28.28
-37694,47,019,47019,1674,781,26180732,25955418,1955,922,34001064,33701041,57424,27746,900368415,883711484,85.63,84.71,77,77.02,2.92,2.81,2.91,2.94
-37694,47,163,47163,187,94,6884533,6884533,1955,922,34001064,33701041,156823,73760,1112935575,1070605281,9.57,10.2,20.25,20.43,0.12,0.13,0.62,0.64
-37694,47,179,47179,94,47,935799,861090,1955,922,34001064,33701041,122979,57254,854172571,845539916,4.81,5.1,2.75,2.56,0.08,0.08,0.11,0.1
-37701,47,009,47009,6817,3297,27337535,27309005,6817,3297,27337535,27309005,123010,55266,1467349649,1447041818,100,100,100,100,5.54,5.97,1.86,1.89
-37705,47,001,47001,3566,1538,84572173,79215258,4559,2109,124171250,112707055,75129,34717,893017280,873245292,78.22,72.93,68.11,70.28,4.75,4.43,9.47,9.07
-37705,47,173,47173,993,571,39599077,33491797,4559,2109,124171250,112707055,19109,8958,640083146,578990181,21.78,27.07,31.89,29.72,5.2,6.37,6.19,5.78
-37708,47,057,47057,6563,3303,137358674,109430600,6563,3303,137358674,109430600,22657,10894,783366555,726751601,100,100,100,100,28.97,30.32,17.53,15.06
-37709,47,057,47057,3644,1580,113938249,112452929,3732,1625,114981957,113496637,22657,10894,783366555,726751601,97.64,97.23,99.09,99.08,16.08,14.5,14.54,15.47
-37709,47,093,47093,88,45,1043708,1043708,3732,1625,114981957,113496637,432226,194949,1361986415,1316271254,2.36,2.77,0.91,0.92,0.02,0.02,0.08,0.08
-37710,47,001,47001,1141,561,211712025,211712025,1141,561,211712025,211712025,75129,34717,893017280,873245292,100,100,100,100,1.52,1.62,23.71,24.24
-37711,47,059,47059,1535,695,59284743,59284743,5044,2315,142129989,142108555,68831,32025,1616456379,1611399661,30.43,30.02,41.71,41.72,2.23,2.17,3.67,3.68
-37711,47,063,47063,75,39,6506547,6506547,5044,2315,142129989,142108555,62544,26963,455328918,417450989,1.49,1.68,4.58,4.58,0.12,0.14,1.43,1.56
-37711,47,073,47073,3434,1581,76338699,76317265,5044,2315,142129989,142108555,56833,26870,1293951114,1261259454,68.08,68.29,53.71,53.7,6.04,5.88,5.9,6.05
-37713,47,029,47029,1488,753,85515317,84425591,1488,753,85515317,84425591,35662,17459,1147715959,1125518964,100,100,100,100,4.17,4.31,7.45,7.5
-37714,47,013,47013,4547,2196,207374861,204836872,4547,2196,207374861,204836872,40716,19966,1290192978,1243689525,100,100,100,100,11.17,11,16.07,16.47
-37715,47,013,47013,174,86,18249419,18249419,1000,431,69360846,69360846,40716,19966,1290192978,1243689525,17.4,19.95,26.31,26.31,0.43,0.43,1.41,1.47
-37715,47,025,47025,826,345,51111427,51111427,1000,431,69360846,69360846,32213,14859,1143672037,1125555951,82.6,80.05,73.69,73.69,2.56,2.32,4.47,4.54
-37716,47,001,47001,25749,11459,224362245,218219065,25749,11459,224362245,218219065,75129,34717,893017280,873245292,100,100,100,100,34.27,33.01,25.12,24.99
-37719,47,129,47129,168,77,1722867,1722867,168,77,1722867,1722867,21987,8920,1353250123,1352440400,100,100,100,100,0.76,0.86,0.13,0.13
-37721,47,093,47093,10910,4685,114607253,114577154,12733,5407,127664004,127633905,432226,194949,1361986415,1316271254,85.68,86.65,89.77,89.77,2.52,2.4,8.41,8.7
-37721,47,173,47173,1823,722,13056751,13056751,12733,5407,127664004,127633905,19109,8958,640083146,578990181,14.32,13.35,10.23,10.23,9.54,8.06,2.04,2.26
-37722,47,029,47029,4942,2720,200791511,200769475,6060,3464,236932914,236910878,35662,17459,1147715959,1125518964,81.55,78.52,84.75,84.74,13.86,15.58,17.49,17.84
-37722,47,155,47155,1118,744,36141403,36141403,6060,3464,236932914,236910878,89889,55918,1548082353,1534567408,18.45,21.48,15.25,15.26,1.24,1.33,2.33,2.36
-37723,47,035,47035,944,535,142118125,142069915,944,535,142118125,142069915,56053,28151,1773673501,1763847584,100,100,100,100,1.68,1.9,8.01,8.05
-37724,47,025,47025,2874,1337,58903366,58863445,2874,1337,58903366,58863445,32213,14859,1143672037,1125555951,100,100,100,100,8.92,9,5.15,5.23
-37725,47,089,47089,16714,8332,292854330,242904149,16919,8440,295583383,245431526,51407,23499,814045452,709858548,98.79,98.72,99.08,98.97,32.51,35.46,35.98,34.22
-37725,47,155,47155,205,108,2729053,2527377,16919,8440,295583383,245431526,89889,55918,1548082353,1534567408,1.21,1.28,0.92,1.03,0.23,0.19,0.18,0.16
-37726,47,049,47049,179,88,29631427,29582041,2037,1027,253076210,252978089,17959,8961,1292228417,1291399079,8.79,8.57,11.71,11.69,1,0.98,2.29,2.29
-37726,47,129,47129,1858,939,223444783,223396048,2037,1027,253076210,252978089,21987,8920,1353250123,1352440400,91.21,91.43,88.29,88.31,8.45,10.53,16.51,16.52
-37727,47,029,47029,2043,1192,293980474,291703868,2043,1192,293980474,291703868,35662,17459,1147715959,1125518964,100,100,100,100,5.73,6.83,25.61,25.92
-37729,47,013,47013,1456,656,129450045,129450045,1456,656,129450045,129450045,40716,19966,1290192978,1243689525,100,100,100,100,3.58,3.29,10.03,10.41
-37730,47,025,47025,59,22,637387,637387,59,22,637387,637387,32213,14859,1143672037,1125555951,100,100,100,100,0.18,0.15,0.06,0.06
-37731,47,067,47067,162,201,57796344,56559634,711,518,125652354,124408476,6819,3624,578842428,575858117,22.78,38.8,46,45.46,2.38,5.55,9.98,9.82
-37731,47,073,47073,549,317,67856010,67848842,711,518,125652354,124408476,56833,26870,1293951114,1261259454,77.22,61.2,54,54.54,0.97,1.18,5.24,5.38
-37732,47,151,47151,139,71,1813622,1813622,139,71,1813622,1813622,22228,9910,1381057047,1378642788,100,100,100,100,0.63,0.72,0.13,0.13
-37733,47,129,47129,64,56,11539491,11539491,64,56,11539491,11539491,21987,8920,1353250123,1352440400,100,100,100,100,0.29,0.63,0.85,0.85
-37737,47,009,47009,5542,2372,66811121,63922139,5785,2482,71634777,68230112,123010,55266,1467349649,1447041818,95.8,95.57,93.27,93.69,4.51,4.29,4.55,4.42
-37737,47,105,47105,243,110,4823656,4307973,5785,2482,71634777,68230112,48556,21725,640684968,593665426,4.2,4.43,6.73,6.31,0.5,0.51,0.75,0.73
-37738,47,155,47155,5288,8352,543910809,543910809,5288,8352,543910809,543910809,89889,55918,1548082353,1534567408,100,100,100,100,5.88,14.94,35.13,35.44
-37742,47,009,47009,2704,1108,42291247,42291247,5837,2482,136387044,128800879,123010,55266,1467349649,1447041818,46.33,44.64,31.01,32.83,2.2,2,2.88,2.92
-37742,47,105,47105,3133,1374,94095797,86509632,5837,2482,136387044,128800879,48556,21725,640684968,593665426,53.67,55.36,68.99,67.17,6.45,6.32,14.69,14.57
-37743,47,029,47029,42,26,10987887,10841408,25588,11932,574708419,571006913,35662,17459,1147715959,1125518964,0.16,0.22,1.91,1.9,0.12,0.15,0.96,0.96
-37743,47,059,47059,25546,11906,563720532,560165505,25588,11932,574708419,571006913,68831,32025,1616456379,1611399661,99.84,99.78,98.09,98.1,37.11,37.18,34.87,34.76
-37745,47,059,47059,18401,8696,301772715,301656148,18401,8696,301772715,301656148,68831,32025,1616456379,1611399661,100,100,100,100,26.73,27.15,18.67,18.72
-37748,47,129,47129,1911,835,79869402,79646635,17857,8452,279459119,264796619,21987,8920,1353250123,1352440400,10.7,9.88,28.58,30.08,8.69,9.36,5.9,5.89
-37748,47,145,47145,15946,7617,199589717,185149984,17857,8452,279459119,264796619,54181,25716,1022985516,934229744,89.3,90.12,71.42,69.92,29.43,29.62,19.51,19.82
-37752,47,025,47025,6424,2640,120429280,120428353,6516,2692,133569409,133555258,32213,14859,1143672037,1125555951,98.59,98.07,90.16,90.17,19.94,17.77,10.53,10.7
-37752,47,067,47067,92,52,13140129,13126905,6516,2692,133569409,133555258,6819,3624,578842428,575858117,1.41,1.93,9.84,9.83,1.35,1.43,2.27,2.28
-37753,47,029,47029,814,432,77864160,77864160,814,432,77864160,77864160,35662,17459,1147715959,1125518964,100,100,100,100,2.28,2.47,6.78,6.92
-37754,47,001,47001,2827,1217,67927619,67782228,4729,1998,98210591,98065200,75129,34717,893017280,873245292,59.78,60.91,69.17,69.12,3.76,3.51,7.61,7.76
-37754,47,093,47093,1656,675,25573868,25573868,4729,1998,98210591,98065200,432226,194949,1361986415,1316271254,35.02,33.78,26.04,26.08,0.38,0.35,1.88,1.94
-37754,47,173,47173,246,106,4709104,4709104,4729,1998,98210591,98065200,19109,8958,640083146,578990181,5.2,5.31,4.79,4.8,1.29,1.18,0.74,0.81
-37755,47,151,47151,3688,1592,114859391,114748788,3688,1592,114859391,114748788,22228,9910,1381057047,1378642788,100,100,100,100,16.59,16.06,8.32,8.32
-37756,47,151,47151,2810,1226,255481555,255481555,2810,1226,255481555,255481555,22228,9910,1381057047,1378642788,100,100,100,100,12.64,12.37,18.5,18.53
-37757,47,013,47013,9337,4205,81849289,72942123,9337,4205,81849289,72942123,40716,19966,1290192978,1243689525,100,100,100,100,22.93,21.06,6.34,5.86
-37760,47,089,47089,12931,5397,110932395,103550673,12931,5397,110932395,103550673,51407,23499,814045452,709858548,100,100,100,100,25.15,22.97,13.63,14.59
-37762,47,013,47013,3126,1478,35649213,35444179,3126,1478,35649213,35444179,40716,19966,1290192978,1243689525,100,100,100,100,7.68,7.4,2.76,2.85
-37763,47,145,47145,15794,7428,265420343,235887625,15794,7428,265420343,235887625,54181,25716,1022985516,934229744,100,100,100,100,29.15,28.88,25.95,25.25
-37764,47,093,47093,620,293,12913652,12913652,9258,4019,91168612,89802967,432226,194949,1361986415,1316271254,6.7,7.29,14.16,14.38,0.14,0.15,0.95,0.98
-37764,47,155,47155,8638,3726,78254960,76889315,9258,4019,91168612,89802967,89889,55918,1548082353,1534567408,93.3,92.71,85.84,85.62,9.61,6.66,5.05,5.01
-37765,47,067,47067,546,308,50502803,49930738,546,308,50502803,49930738,6819,3624,578842428,575858117,100,100,100,100,8.01,8.5,8.72,8.67
-37766,47,013,47013,18850,9678,424466434,396759613,18850,9678,424466434,396759613,40716,19966,1290192978,1243689525,100,100,100,100,46.3,48.47,32.9,31.9
-37769,47,001,47001,5477,2432,62703732,62052619,5990,2703,77390064,74686782,75129,34717,893017280,873245292,91.44,89.97,81.02,83.08,7.29,7.01,7.02,7.11
-37769,47,013,47013,513,271,14686332,12634163,5990,2703,77390064,74686782,40716,19966,1290192978,1243689525,8.56,10.03,18.98,16.92,1.26,1.36,1.14,1.02
-37770,47,129,47129,2646,1260,308202280,308202280,2646,1260,308202280,308202280,21987,8920,1353250123,1352440400,100,100,100,100,12.03,14.13,22.77,22.79
-37771,47,105,47105,14269,6092,96752555,94207784,15380,6589,129044392,125729428,48556,21725,640684968,593665426,92.78,92.46,74.98,74.93,29.39,28.04,15.1,15.87
-37771,47,145,47145,1111,497,32291837,31521644,15380,6589,129044392,125729428,54181,25716,1022985516,934229744,7.22,7.54,25.02,25.07,2.05,1.93,3.16,3.37
-37772,47,093,47093,187,59,261353,261353,11146,4827,116265638,101188331,432226,194949,1361986415,1316271254,1.68,1.22,0.22,0.26,0.04,0.03,0.02,0.02
-37772,47,105,47105,10959,4768,116004285,100926978,11146,4827,116265638,101188331,48556,21725,640684968,593665426,98.32,98.78,99.78,99.74,22.57,21.95,18.11,17
-37774,47,105,47105,17069,8132,214904799,196485818,18321,8702,244957285,226415456,48556,21725,640684968,593665426,93.17,93.45,87.73,86.78,35.15,37.43,33.54,33.1
-37774,47,123,47123,136,54,4533920,4533920,18321,8702,244957285,226415456,44519,20787,1690117763,1646104693,0.74,0.62,1.85,2,0.31,0.26,0.27,0.28
-37774,47,145,47145,1116,516,25518566,25395718,18321,8702,244957285,226415456,54181,25716,1022985516,934229744,6.09,5.93,10.42,11.22,2.06,2.01,2.49,2.72
-37777,47,009,47009,11274,5535,96027383,85707355,11274,5535,96027383,85707355,123010,55266,1467349649,1447041818,100,100,100,100,9.17,10.02,6.54,5.92
-37779,47,093,47093,205,78,3616577,3616577,3978,1665,98982584,98982584,432226,194949,1361986415,1316271254,5.15,4.68,3.65,3.65,0.05,0.04,0.27,0.27
-37779,47,173,47173,3773,1587,95366007,95366007,3978,1665,98982584,98982584,19109,8958,640083146,578990181,94.85,95.32,96.35,96.35,19.74,17.72,14.9,16.47
-37801,47,009,47009,24346,10701,157986734,157749197,25124,11064,186541688,180384731,123010,55266,1467349649,1447041818,96.9,96.72,84.69,87.45,19.79,19.36,10.77,10.9
-37801,47,123,47123,778,363,28554954,22635534,25124,11064,186541688,180384731,44519,20787,1690117763,1646104693,3.1,3.28,15.31,12.55,1.75,1.75,1.69,1.38
-37803,47,009,47009,31668,13536,253146080,252612231,31668,13536,253146080,252612231,123010,55266,1467349649,1447041818,100,100,100,100,25.74,24.49,17.25,17.46
-37804,47,009,47009,24682,10183,90142169,90142169,24682,10183,90142169,90142169,123010,55266,1467349649,1447041818,100,100,100,100,20.07,18.43,6.14,6.23
-37806,47,093,47093,2868,1311,41714729,40402211,2868,1311,41714729,40402211,432226,194949,1361986415,1316271254,100,100,100,100,0.66,0.67,3.06,3.07
-37807,47,093,47093,182,72,1619014,1619014,9923,4534,223426106,205327925,432226,194949,1361986415,1316271254,1.83,1.59,0.72,0.79,0.04,0.04,0.12,0.12
-37807,47,173,47173,9741,4462,221807092,203708911,9923,4534,223426106,205327925,19109,8958,640083146,578990181,98.17,98.41,99.28,99.21,50.98,49.81,34.65,35.18
-37809,47,059,47059,2278,1069,85987715,85632054,2278,1069,85987715,85632054,68831,32025,1616456379,1611399661,100,100,100,100,3.31,3.34,5.32,5.31
-37810,47,059,47059,1928,901,87006194,86752934,1928,901,87006194,86752934,68831,32025,1616456379,1611399661,100,100,100,100,2.8,2.81,5.38,5.38
-37811,47,057,47057,155,68,935113,935113,3215,1697,112280157,96831037,22657,10894,783366555,726751601,4.82,4.01,0.83,0.97,0.68,0.62,0.12,0.13
-37811,47,073,47073,3060,1629,111345044,95895924,3215,1697,112280157,96831037,56833,26870,1293951114,1261259454,95.18,95.99,99.17,99.03,5.38,6.06,8.61,7.6
-37813,47,063,47063,17146,7490,148170199,147256002,17444,7608,152159119,151244922,62544,26963,455328918,417450989,98.29,98.45,97.38,97.36,27.41,27.78,32.54,35.28
-37813,47,089,47089,298,118,3988920,3988920,17444,7608,152159119,151244922,51407,23499,814045452,709858548,1.71,1.55,2.62,2.64,0.58,0.5,0.49,0.56
-37814,47,063,47063,33071,14232,138671762,115283595,33071,14232,138671762,115283595,62544,26963,455328918,417450989,100,100,100,100,52.88,52.78,30.46,27.62
-37818,47,059,47059,4998,2285,118916913,118372200,4998,2285,118916913,118372200,68831,32025,1616456379,1611399661,100,100,100,100,7.26,7.14,7.36,7.35
-37819,47,013,47013,713,331,56681845,56658976,713,331,56681845,56658976,40716,19966,1290192978,1243689525,100,100,100,100,1.75,1.66,4.39,4.56
-37820,47,089,47089,7495,3193,170664071,169012805,7495,3193,170664071,169012805,51407,23499,814045452,709858548,100,100,100,100,14.58,13.59,20.96,23.81
-37821,47,029,47029,22608,10587,343411273,325382009,22608,10587,343411273,325382009,35662,17459,1147715959,1125518964,100,100,100,100,63.4,60.64,29.92,28.91
-37825,47,025,47025,8118,3963,210133173,202351398,8399,4113,234115008,224556118,32213,14859,1143672037,1125555951,96.65,96.35,89.76,90.11,25.2,26.67,18.37,17.98
-37825,47,173,47173,281,150,23981835,22204720,8399,4113,234115008,224556118,19109,8958,640083146,578990181,3.35,3.65,10.24,9.89,1.47,1.67,3.75,3.84
-37826,47,107,47107,4276,1905,140422307,140422307,4361,1935,142333792,142333792,52266,23341,1119349601,1114018337,98.05,98.45,98.66,98.66,8.18,8.16,12.54,12.61
-37826,47,121,47121,85,30,1911485,1911485,4361,1935,142333792,142333792,11753,5628,561376191,505362806,1.95,1.55,1.34,1.34,0.72,0.53,0.34,0.38
-37828,47,001,47001,1430,718,8388714,8388714,1430,718,8388714,8388714,75129,34717,893017280,873245292,100,100,100,100,1.9,2.07,0.94,0.96
-37829,47,129,47129,1804,779,145471750,144945556,1804,779,145471750,144945556,21987,8920,1353250123,1352440400,100,100,100,100,8.2,8.73,10.75,10.72
-37830,47,001,47001,26433,13158,121958736,114792679,29700,14676,231941437,219543568,75129,34717,893017280,873245292,89,89.66,52.58,52.29,35.18,37.9,13.66,13.15
-37830,47,093,47093,205,104,1641018,896402,29700,14676,231941437,219543568,432226,194949,1361986415,1316271254,0.69,0.71,0.71,0.41,0.05,0.05,0.12,0.07
-37830,47,145,47145,3062,1414,108341683,103854487,29700,14676,231941437,219543568,54181,25716,1022985516,934229744,10.31,9.63,46.71,47.3,5.65,5.5,10.59,11.12
-37840,47,001,47001,3503,1545,75946711,75946711,10021,4425,220772029,220771096,75129,34717,893017280,873245292,34.96,34.92,34.4,34.4,4.66,4.45,8.5,8.7
-37840,47,129,47129,2748,1181,103707545,103706612,10021,4425,220772029,220771096,21987,8920,1353250123,1352440400,27.42,26.69,46.97,46.97,12.5,13.24,7.66,7.67
-37840,47,145,47145,3770,1699,41117773,41117773,10021,4425,220772029,220771096,54181,25716,1022985516,934229744,37.62,38.4,18.62,18.62,6.96,6.61,4.02,4.4
-37841,47,151,47151,9605,4364,450278685,448780274,9605,4364,450278685,448780274,22228,9910,1381057047,1378642788,100,100,100,100,43.21,44.04,32.6,32.55
-37843,47,029,47029,3725,1749,135165337,134532453,3725,1749,135165337,134532453,35662,17459,1147715959,1125518964,100,100,100,100,10.45,10.02,11.78,11.95
-37845,47,129,47129,494,249,2645156,2645156,494,249,2645156,2645156,21987,8920,1353250123,1352440400,100,100,100,100,2.25,2.79,0.2,0.2
-37846,47,105,47105,2031,857,82053526,82036208,5030,2090,191958379,191941061,48556,21725,640684968,593665426,40.38,41,42.75,42.74,4.18,3.94,12.81,13.82
-37846,47,107,47107,106,50,6674458,6674458,5030,2090,191958379,191941061,52266,23341,1119349601,1114018337,2.11,2.39,3.48,3.48,0.2,0.21,0.6,0.6
-37846,47,123,47123,1535,562,27483036,27483036,5030,2090,191958379,191941061,44519,20787,1690117763,1646104693,30.52,26.89,14.32,14.32,3.45,2.7,1.63,1.67
-37846,47,145,47145,1358,621,75747359,75747359,5030,2090,191958379,191941061,54181,25716,1022985516,934229744,27,29.71,39.46,39.46,2.51,2.41,7.4,8.11
-37847,47,013,47013,1280,580,267304100,267304100,2714,1169,342240965,342240965,40716,19966,1290192978,1243689525,47.16,49.62,78.1,78.1,3.14,2.9,20.72,21.49
-37847,47,151,47151,1434,589,74936865,74936865,2714,1169,342240965,342240965,22228,9910,1381057047,1378642788,52.84,50.38,21.9,21.9,6.45,5.94,5.43,5.44
-37848,47,057,47057,179,95,14309618,14309618,246,131,17513194,17513194,22657,10894,783366555,726751601,72.76,72.52,81.71,81.71,0.79,0.87,1.83,1.97
-37848,47,173,47173,67,36,3203576,3203576,246,131,17513194,17513194,19109,8958,640083146,578990181,27.24,27.48,18.29,18.29,0.35,0.4,0.5,0.55
-37849,47,001,47001,4064,1708,28369935,28064280,25459,10450,102361523,102055868,75129,34717,893017280,873245292,15.96,16.34,27.72,27.5,5.41,4.92,3.18,3.21
-37849,47,093,47093,21395,8742,73991588,73991588,25459,10450,102361523,102055868,432226,194949,1361986415,1316271254,84.04,83.66,72.28,72.5,4.95,4.48,5.43,5.62
-37851,47,025,47025,36,15,867920,867359,36,15,867920,867359,32213,14859,1143672037,1125555951,100,100,100,100,0.11,0.1,0.08,0.08
-37852,47,129,47129,210,124,27172573,27172573,2558,1197,211469421,210693742,21987,8920,1353250123,1352440400,8.21,10.36,12.85,12.9,0.96,1.39,2.01,2.01
-37852,47,151,47151,2348,1073,184296848,183521169,2558,1197,211469421,210693742,22228,9910,1381057047,1378642788,91.79,89.64,87.15,87.1,10.56,10.83,13.34,13.31
-37853,47,009,47009,3675,1614,37942974,37184111,3815,1673,40983721,40224858,123010,55266,1467349649,1447041818,96.33,96.47,92.58,92.44,2.99,2.92,2.59,2.57
-37853,47,093,47093,140,59,3040747,3040747,3815,1673,40983721,40224858,432226,194949,1361986415,1316271254,3.67,3.53,7.42,7.56,0.03,0.03,0.22,0.23
-37854,47,035,47035,1894,888,155183889,155162019,13108,6244,377470878,355422977,56053,28151,1773673501,1763847584,14.45,14.22,41.11,43.66,3.38,3.15,8.75,8.8
-37854,47,129,47129,696,292,37810412,37810412,13108,6244,377470878,355422977,21987,8920,1353250123,1352440400,5.31,4.68,10.02,10.64,3.17,3.27,2.79,2.8
-37854,47,145,47145,10518,5064,184476577,162450546,13108,6244,377470878,355422977,54181,25716,1022985516,934229744,80.24,81.1,48.87,45.71,19.41,19.69,18.03,17.39
-37857,47,073,47073,21223,10042,620422031,611327846,21309,10074,622588161,613493976,56833,26870,1293951114,1261259454,99.6,99.68,99.65,99.65,37.34,37.37,47.95,48.47
-37857,47,163,47163,86,32,2166130,2166130,21309,10074,622588161,613493976,156823,73760,1112935575,1070605281,0.4,0.32,0.35,0.35,0.05,0.04,0.19,0.2
-37860,47,063,47063,4113,1704,71221787,65960128,4113,1704,71221787,65960128,62544,26963,455328918,417450989,100,100,100,100,6.58,6.32,15.64,15.8
-37861,47,057,47057,8340,4101,280180052,258862782,8340,4101,280180052,258862782,22657,10894,783366555,726751601,100,100,100,100,36.81,37.64,35.77,35.62
-37862,47,155,47155,20934,13184,217585721,217585721,20934,13184,217585721,217585721,89889,55918,1548082353,1534567408,100,100,100,100,23.29,23.58,14.06,14.18
-37863,47,155,47155,6569,5632,47571014,47571014,6569,5632,47571014,47571014,89889,55918,1548082353,1534567408,100,100,100,100,7.31,10.07,3.07,3.1
-37865,47,009,47009,4436,1784,52395510,52395510,20912,8669,183203356,182976694,123010,55266,1467349649,1447041818,21.21,20.58,28.6,28.64,3.61,3.23,3.57,3.62
-37865,47,155,47155,16476,6885,130807846,130581184,20912,8669,183203356,182976694,89889,55918,1548082353,1534567408,78.79,79.42,71.4,71.36,18.33,12.31,8.45,8.51
-37866,47,173,47173,1699,999,165155416,136572183,1699,999,165155416,136572183,19109,8958,640083146,578990181,100,100,100,100,8.89,11.15,25.8,23.59
-37869,47,025,47025,93,41,11621480,11621480,5031,2535,350851476,350030648,32213,14859,1143672037,1125555951,1.85,1.62,3.31,3.32,0.29,0.28,1.02,1.03
-37869,47,067,47067,4702,2362,317276176,316467977,5031,2535,350851476,350030648,6819,3624,578842428,575858117,93.46,93.18,90.43,90.41,68.95,65.18,54.81,54.96
-37869,47,073,47073,236,132,21953820,21941191,5031,2535,350851476,350030648,56833,26870,1293951114,1261259454,4.69,5.21,6.26,6.27,0.42,0.49,1.7,1.74
-37870,47,013,47013,720,485,34344573,31261839,4580,2423,224989231,216011838,40716,19966,1290192978,1243689525,15.72,20.02,15.26,14.47,1.77,2.43,2.66,2.51
-37870,47,025,47025,3597,1727,164802206,162780107,4580,2423,224989231,216011838,32213,14859,1143672037,1125555951,78.54,71.28,73.25,75.36,11.17,11.62,14.41,14.46
-37870,47,173,47173,263,211,25842452,21969892,4580,2423,224989231,216011838,19109,8958,640083146,578990181,5.74,8.71,11.49,10.17,1.38,2.36,4.04,3.79
-37871,47,089,47089,3604,1536,47306337,45965065,9134,3886,105113712,102967954,51407,23499,814045452,709858548,39.46,39.53,45,44.64,7.01,6.54,5.81,6.48
-37871,47,093,47093,3530,1508,46049993,45245507,9134,3886,105113712,102967954,432226,194949,1361986415,1316271254,38.65,38.81,43.81,43.94,0.82,0.77,3.38,3.44
-37871,47,155,47155,2000,842,11757382,11757382,9134,3886,105113712,102967954,89889,55918,1548082353,1534567408,21.9,21.67,11.19,11.42,2.22,1.51,0.76,0.77
-37872,47,129,47129,1877,891,173456665,173456665,2041,974,247547689,247547689,21987,8920,1353250123,1352440400,91.96,91.48,70.07,70.07,8.54,9.99,12.82,12.83
-37872,47,151,47151,164,83,74091024,74091024,2041,974,247547689,247547689,22228,9910,1381057047,1378642788,8.04,8.52,29.93,29.93,0.74,0.84,5.36,5.37
-37873,47,073,47073,4073,1990,161502421,159617055,4073,1990,161502421,159617055,56833,26870,1293951114,1261259454,100,100,100,100,7.17,7.41,12.48,12.66
-37874,47,105,47105,561,225,23186049,23186049,14979,6621,263516042,263287834,48556,21725,640684968,593665426,3.75,3.4,8.8,8.81,1.16,1.04,3.62,3.91
-37874,47,107,47107,2047,829,54288734,54066901,14979,6621,263516042,263287834,52266,23341,1119349601,1114018337,13.67,12.52,20.6,20.54,3.92,3.55,4.85,4.85
-37874,47,123,47123,12371,5567,186041259,186034884,14979,6621,263516042,263287834,44519,20787,1690117763,1646104693,82.59,84.08,70.6,70.66,27.79,26.78,11.01,11.3
-37876,47,089,47089,585,538,49803805,18958265,29246,16983,529127970,486561468,51407,23499,814045452,709858548,2,3.17,9.41,3.9,1.14,2.29,6.12,2.67
-37876,47,155,47155,28661,16445,479324165,467603203,29246,16983,529127970,486561468,89889,55918,1548082353,1534567408,98,96.83,90.59,96.1,31.88,29.41,30.96,30.47
-37877,47,063,47063,5281,2221,32348938,26307344,8464,3614,72833548,66791954,62544,26963,455328918,417450989,62.39,61.46,44.41,39.39,8.44,8.24,7.1,6.3
-37877,47,089,47089,3183,1393,40484610,40484610,8464,3614,72833548,66791954,51407,23499,814045452,709858548,37.61,38.54,55.59,60.61,6.19,5.93,4.97,5.7
-37878,47,009,47009,514,490,101067115,97867455,514,490,101067115,97867455,123010,55266,1467349649,1447041818,100,100,100,100,0.42,0.89,6.89,6.76
-37879,47,025,47025,10186,4769,390599797,382476737,10634,5031,459852788,451523225,32213,14859,1143672037,1125555951,95.79,94.79,84.94,84.71,31.62,32.1,34.15,33.98
-37879,47,067,47067,448,262,69252991,69046488,10634,5031,459852788,451523225,6819,3624,578842428,575858117,4.21,5.21,15.06,15.29,6.57,7.23,11.96,11.99
-37880,47,121,47121,1971,1209,130929800,110807676,3477,2069,221411461,183912284,11753,5628,561376191,505362806,56.69,58.43,59.13,60.25,16.77,21.48,23.32,21.93
-37880,47,145,47145,1506,860,90481661,73104608,3477,2069,221411461,183912284,54181,25716,1022985516,934229744,43.31,41.57,40.87,39.75,2.78,3.34,8.84,7.83
-37881,47,057,47057,1258,613,101386761,98975299,2291,1143,187221178,184662106,22657,10894,783366555,726751601,54.91,53.63,54.15,53.6,5.55,5.63,12.94,13.62
-37881,47,067,47067,869,439,70873985,70726375,2291,1143,187221178,184662106,6819,3624,578842428,575858117,37.93,38.41,37.86,38.3,12.74,12.11,12.24,12.28
-37881,47,073,47073,164,91,14960432,14960432,2291,1143,187221178,184662106,56833,26870,1293951114,1261259454,7.16,7.96,7.99,8.1,0.29,0.34,1.16,1.19
-37882,47,009,47009,2724,2456,414212891,413932270,2724,2456,414212891,413932270,123010,55266,1467349649,1447041818,100,100,100,100,2.21,4.44,28.23,28.61
-37885,47,105,47105,291,167,8864301,6004984,5067,2656,474181401,435663277,48556,21725,640684968,593665426,5.74,6.29,1.87,1.38,0.6,0.77,1.38,1.01
-37885,47,123,47123,4776,2489,465317100,429658293,5067,2656,474181401,435663277,44519,20787,1690117763,1646104693,94.26,93.71,98.13,98.62,10.73,11.97,27.53,26.1
-37886,47,009,47009,4418,2053,113625372,113625372,4418,2053,113625372,113625372,123010,55266,1467349649,1447041818,100,100,100,100,3.59,3.71,7.74,7.85
-37887,47,129,47129,7511,2237,238207199,238196105,7511,2237,238207199,238196105,21987,8920,1353250123,1352440400,100,100,100,100,34.16,25.08,17.6,17.61
-37888,47,057,47057,2518,1134,135258088,131785260,2741,1248,144791353,141285731,22657,10894,783366555,726751601,91.86,90.87,93.42,93.28,11.11,10.41,17.27,18.13
-37888,47,173,47173,223,114,9533265,9500471,2741,1248,144791353,141285731,19109,8958,640083146,578990181,8.14,9.13,6.58,6.72,1.17,1.27,1.49,1.64
-37890,47,063,47063,71,32,5188318,2971476,6668,3024,103199302,87965537,62544,26963,455328918,417450989,1.06,1.06,5.03,3.38,0.11,0.12,1.14,0.71
-37890,47,089,47089,6597,2992,98010984,84994061,6668,3024,103199302,87965537,51407,23499,814045452,709858548,98.94,98.94,94.97,96.62,12.83,12.73,12.04,11.97
-37891,47,063,47063,2787,1245,53221367,53165897,3626,1611,86119368,83291047,62544,26963,455328918,417450989,76.86,77.28,61.8,63.83,4.46,4.62,11.69,12.74
-37891,47,073,47073,839,366,32898001,30125150,3626,1611,86119368,83291047,56833,26870,1293951114,1261259454,23.14,22.72,38.2,36.17,1.48,1.36,2.54,2.39
-37892,47,151,47151,2007,897,195392760,195363194,2007,897,195392760,195363194,22228,9910,1381057047,1378642788,100,100,100,100,9.03,9.05,14.15,14.17
-37902,47,093,47093,1586,1136,1271154,1209202,1586,1136,1271154,1209202,432226,194949,1361986415,1316271254,100,100,100,100,0.37,0.58,0.09,0.09
-37909,47,093,47093,15168,7754,18118897,18118897,15168,7754,18118897,18118897,432226,194949,1361986415,1316271254,100,100,100,100,3.51,3.98,1.33,1.38
-37912,47,093,47093,20673,10610,28081432,28081432,20673,10610,28081432,28081432,432226,194949,1361986415,1316271254,100,100,100,100,4.78,5.44,2.06,2.13
-37914,47,093,47093,19663,9659,106547669,103170455,19663,9659,106547669,103170455,432226,194949,1361986415,1316271254,100,100,100,100,4.55,4.95,7.82,7.84
-37915,47,093,47093,5647,3002,5079784,4856416,5647,3002,5079784,4856416,432226,194949,1361986415,1316271254,100,100,100,100,1.31,1.54,0.37,0.37
-37916,47,093,47093,12507,3066,4169086,3860159,12507,3066,4169086,3860159,432226,194949,1361986415,1316271254,100,100,100,100,2.89,1.57,0.31,0.29
-37917,47,093,47093,24072,12807,25482056,25482056,24072,12807,25482056,25482056,432226,194949,1361986415,1316271254,100,100,100,100,5.57,6.57,1.87,1.94
-37918,47,093,47093,42835,19014,90827683,90821020,42835,19014,90827683,90821020,432226,194949,1361986415,1316271254,100,100,100,100,9.91,9.75,6.67,6.9
-37919,47,093,47093,28194,14364,53564558,49069034,28194,14364,53564558,49069034,432226,194949,1361986415,1316271254,100,100,100,100,6.52,7.37,3.93,3.73
-37920,47,009,47009,210,137,1145068,787566,39087,18814,196098024,187767790,123010,55266,1467349649,1447041818,0.54,0.73,0.58,0.42,0.17,0.25,0.08,0.05
-37920,47,093,47093,38877,18677,194952956,186980224,39087,18814,196098024,187767790,432226,194949,1361986415,1316271254,99.46,99.27,99.42,99.58,8.99,9.58,14.31,14.21
-37921,47,093,47093,28233,12639,39638788,39620719,28233,12639,39638788,39620719,432226,194949,1361986415,1316271254,100,100,100,100,6.53,6.48,2.91,3.01
-37922,47,093,47093,33180,12792,89682877,70454744,33180,12792,89682877,70454744,432226,194949,1361986415,1316271254,100,100,100,100,7.68,6.56,6.58,5.35
-37923,47,093,47093,27457,13576,29088066,29050914,27457,13576,29088066,29050914,432226,194949,1361986415,1316271254,100,100,100,100,6.35,6.96,2.14,2.21
-37924,47,093,47093,11259,5118,72060632,71514195,11259,5118,72060632,71514195,432226,194949,1361986415,1316271254,100,100,100,100,2.6,2.63,5.29,5.43
-37931,47,001,47001,939,381,7075390,7071713,26109,10972,75737685,74286243,75129,34717,893017280,873245292,3.6,3.47,9.34,9.52,1.25,1.1,0.79,0.81
-37931,47,093,47093,25170,10591,68662295,67214530,26109,10972,75737685,74286243,432226,194949,1361986415,1316271254,96.4,96.53,90.66,90.48,5.82,5.43,5.04,5.11
-37932,47,093,47093,14527,6197,78917770,74542633,14527,6197,78917770,74542633,432226,194949,1361986415,1316271254,100,100,100,100,3.36,3.18,5.79,5.66
-37934,47,093,47093,24107,9410,46016297,45291928,24107,9410,46016297,45291928,432226,194949,1361986415,1316271254,100,100,100,100,5.58,4.83,3.38,3.44
-37938,47,093,47093,17085,6906,83750915,83750915,17085,6906,83750915,83750915,432226,194949,1361986415,1316271254,100,100,100,100,3.95,3.54,6.15,6.36
-38001,47,033,47033,4719,2074,175634348,175603894,4719,2074,175634348,175603894,14586,6425,688260546,687731312,100,100,100,100,32.35,32.28,25.52,25.53
-38002,47,047,47047,2009,812,42310377,42222236,38927,13689,302770326,301517069,38413,15669,1829149110,1825386659,5.16,5.93,13.97,14,5.23,5.18,2.31,2.31
-38002,47,157,47157,36918,12877,260459949,259294833,38927,13689,302770326,301517069,927644,398274,2033188851,1976612450,94.84,94.07,86.03,86,3.98,3.23,12.81,13.12
-38004,47,157,47157,324,133,13323363,13323363,9866,3384,68452516,68364435,927644,398274,2033188851,1976612450,3.28,3.93,19.46,19.49,0.03,0.03,0.66,0.67
-38004,47,167,47167,9542,3251,55129153,55041072,9866,3384,68452516,68364435,61081,23199,1225876424,1187161824,96.72,96.07,80.54,80.51,15.62,14.01,4.5,4.64
-38006,47,033,47033,4141,1767,114392380,114254602,5207,2238,261789446,261530769,14586,6425,688260546,687731312,79.53,78.95,43.7,43.69,28.39,27.5,16.62,16.61
-38006,47,075,47075,860,378,130244675,130123776,5207,2238,261789446,261530769,18787,8315,1383210206,1380753077,16.52,16.89,49.75,49.75,4.58,4.55,9.42,9.42
-38006,47,113,47113,206,93,17152391,17152391,5207,2238,261789446,261530769,98294,41877,1446835473,1442926509,3.96,4.16,6.55,6.56,0.21,0.22,1.19,1.19
-38007,47,045,47045,91,50,5152203,5152203,91,50,5152203,5152203,38335,16703,1363700975,1326920403,100,100,100,100,0.24,0.3,0.38,0.39
-38008,47,069,47069,9721,4232,384942737,383963841,9721,4232,384942737,383963841,27253,10851,1736278582,1729510170,100,100,100,100,35.67,39,22.17,22.2
-38011,47,157,47157,195,86,7596852,7596852,9908,3653,152753405,152618381,927644,398274,2033188851,1976612450,1.97,2.35,4.97,4.98,0.02,0.02,0.37,0.38
-38011,47,167,47167,9713,3567,145156553,145021529,9908,3653,152753405,152618381,61081,23199,1225876424,1187161824,98.03,97.65,95.03,95.02,15.9,15.38,11.84,12.22
-38012,47,075,47075,14575,6328,701225401,699423906,14575,6328,701225401,699423906,18787,8315,1383210206,1380753077,100,100,100,100,77.58,76.1,50.7,50.66
-38015,47,167,47167,2828,1166,115710264,112402597,2828,1166,115710264,112402597,61081,23199,1225876424,1187161824,100,100,100,100,4.63,5.03,9.44,9.47
-38016,47,157,47157,43079,18976,49596880,49483518,43079,18976,49596880,49483518,927644,398274,2033188851,1976612450,100,100,100,100,4.64,4.76,2.44,2.5
-38017,47,047,47047,2224,959,102619966,101169179,48642,17736,221186767,219494821,38413,15669,1829149110,1825386659,4.57,5.41,46.4,46.09,5.79,6.12,5.61,5.54
-38017,47,157,47157,46418,16777,118566801,118325642,48642,17736,221186767,219494821,927644,398274,2033188851,1976612450,95.43,94.59,53.6,53.91,5,4.21,5.83,5.99
-38018,47,157,47157,35059,14539,47981159,47811313,35059,14539,47981159,47811313,927644,398274,2033188851,1976612450,100,100,100,100,3.78,3.65,2.36,2.42
-38019,47,167,47167,15601,6443,357753712,357382922,15601,6443,357753712,357382922,61081,23199,1225876424,1187161824,100,100,100,100,25.54,27.77,29.18,30.1
-38021,47,033,47033,59,26,1363883,1363883,59,26,1363883,1363883,14586,6425,688260546,687731312,100,100,100,100,0.4,0.4,0.2,0.2
-38023,47,167,47167,6146,2375,193982707,170820862,6146,2375,193982707,170820862,61081,23199,1225876424,1187161824,100,100,100,100,10.06,10.24,15.82,14.39
-38024,47,045,47045,27406,12003,369447537,366365149,27406,12003,369447537,366365149,38335,16703,1363700975,1326920403,100,100,100,100,71.49,71.86,27.09,27.61
-38028,47,047,47047,3765,1475,78133533,77862819,6883,2649,150307546,149775749,38413,15669,1829149110,1825386659,54.7,55.68,51.98,51.99,9.8,9.41,4.27,4.27
-38028,47,157,47157,3118,1174,72174013,71912930,6883,2649,150307546,149775749,927644,398274,2033188851,1976612450,45.3,44.32,48.02,48.01,0.34,0.29,3.55,3.64
-38029,47,157,47157,80,35,135610,135610,80,35,135610,135610,927644,398274,2033188851,1976612450,100,100,100,100,0.01,0.01,0.01,0.01
-38030,47,045,47045,977,441,365135318,334589228,977,441,365135318,334589228,38335,16703,1363700975,1326920403,100,100,100,100,2.55,2.64,26.78,25.22
-38034,47,033,47033,2280,1005,178240353,178240353,2998,1322,260623902,260520827,14586,6425,688260546,687731312,76.05,76.02,68.39,68.42,15.63,15.64,25.9,25.92
-38034,47,045,47045,718,317,82383549,82280474,2998,1322,260623902,260520827,38335,16703,1363700975,1326920403,23.95,23.98,31.61,31.58,1.87,1.9,6.04,6.2
-38036,47,047,47047,478,197,1635483,1635483,478,197,1635483,1635483,38413,15669,1829149110,1825386659,100,100,100,100,1.24,1.26,0.09,0.09
-38037,47,075,47075,476,216,71933693,71933693,1773,797,128439226,128437001,18787,8315,1383210206,1380753077,26.85,27.1,56.01,56.01,2.53,2.6,5.2,5.21
-38037,47,097,47097,1297,581,56505533,56503308,1773,797,128439226,128437001,27815,11256,1314627679,1222453808,73.15,72.9,43.99,43.99,4.66,5.16,4.3,4.62
-38039,47,047,47047,290,123,66772113,66767811,1804,761,170388634,169688500,38413,15669,1829149110,1825386659,16.08,16.16,39.19,39.35,0.75,0.78,3.65,3.66
-38039,47,069,47069,1514,638,103616521,102920689,1804,761,170388634,169688500,27253,10851,1736278582,1729510170,83.92,83.84,60.81,60.65,5.56,5.88,5.97,5.95
-38040,47,033,47033,583,280,63185204,63156086,5193,2371,282476873,281923731,14586,6425,688260546,687731312,11.23,11.81,22.37,22.4,4,4.36,9.18,9.18
-38040,47,045,47045,293,129,28320160,28320160,5193,2371,282476873,281923731,38335,16703,1363700975,1326920403,5.64,5.44,10.03,10.05,0.76,0.77,2.08,2.13
-38040,47,097,47097,4317,1962,190971509,190447485,5193,2371,282476873,281923731,27815,11256,1314627679,1222453808,83.13,82.75,67.61,67.55,15.52,17.43,14.53,15.58
-38041,47,097,47097,5085,1343,272260940,260346927,5085,1343,272260940,260346927,27815,11256,1314627679,1222453808,100,100,100,100,18.28,11.93,20.71,21.3
-38042,47,047,47047,12,9,19807163,19803075,796,375,128020443,127947151,38413,15669,1829149110,1825386659,1.51,2.4,15.47,15.48,0.03,0.06,1.08,1.08
-38042,47,069,47069,784,366,108213280,108144076,796,375,128020443,127947151,27253,10851,1736278582,1729510170,98.49,97.6,84.53,84.52,2.88,3.37,6.23,6.25
-38044,47,023,47023,38,20,2149549,2149549,865,442,107931159,107843461,17131,6980,740627633,740052043,4.39,4.52,1.99,1.99,0.22,0.29,0.29,0.29
-38044,47,069,47069,701,352,89747701,89676637,865,442,107931159,107843461,27253,10851,1736278582,1729510170,81.04,79.64,83.15,83.15,2.57,3.24,5.17,5.19
-38044,47,109,47109,126,70,16033909,16017275,865,442,107931159,107843461,26075,11933,1459749793,1457801922,14.57,15.84,14.86,14.85,0.48,0.59,1.1,1.1
-38046,47,047,47047,108,51,10590386,10590386,108,51,10590386,10590386,38413,15669,1829149110,1825386659,100,100,100,100,0.28,0.33,0.58,0.58
-38047,47,045,47045,91,36,2495291,2495291,91,36,2495291,2495291,38335,16703,1363700975,1326920403,100,100,100,100,0.24,0.22,0.18,0.19
-38049,47,047,47047,1622,715,165899167,165713801,4984,1818,289197554,289012188,38413,15669,1829149110,1825386659,32.54,39.33,57.37,57.34,4.22,4.56,9.07,9.08
-38049,47,167,47167,3362,1103,123298387,123298387,4984,1818,289197554,289012188,61081,23199,1225876424,1187161824,67.46,60.67,42.63,42.66,5.5,4.75,10.06,10.39
-38050,47,033,47033,459,231,5105096,5105096,459,231,5105096,5105096,14586,6425,688260546,687731312,100,100,100,100,3.15,3.6,0.74,0.74
-38052,47,069,47069,3907,1814,327817876,325208571,3907,1814,327817876,325208571,27253,10851,1736278582,1729510170,100,100,100,100,14.34,16.72,18.88,18.8
-38053,47,157,47157,24653,10007,417165545,393729392,27932,11262,486278140,456755512,927644,398274,2033188851,1976612450,88.26,88.86,85.79,86.2,2.66,2.51,20.52,19.92
-38053,47,167,47167,3279,1255,69112595,63026120,27932,11262,486278140,456755512,61081,23199,1225876424,1187161824,11.74,11.14,14.21,13.8,5.37,5.41,5.64,5.31
-38054,47,157,47157,284,20,932363,932363,284,20,932363,932363,927644,398274,2033188851,1976612450,100,100,100,100,0.03,0.01,0.05,0.05
-38057,47,047,47047,3649,1478,271669928,271522017,3649,1478,271669928,271522017,38413,15669,1829149110,1825386659,100,100,100,100,9.5,9.43,14.85,14.87
-38058,47,167,47167,10236,3887,68527480,68375057,10236,3887,68527480,68375057,61081,23199,1225876424,1187161824,100,100,100,100,16.76,16.76,5.59,5.76
-38059,47,045,47045,7426,3091,297103780,296827901,7663,3212,332569407,332293528,38335,16703,1363700975,1326920403,96.91,96.23,89.34,89.33,19.37,18.51,21.79,22.37
-38059,47,053,47053,237,121,35465627,35465627,7663,3212,332569407,332293528,49683,21999,1563448020,1561094821,3.09,3.77,10.66,10.67,0.48,0.55,2.27,2.27
-38060,47,047,47047,9496,3734,114440406,114222334,9496,3734,114440406,114222334,38413,15669,1829149110,1825386659,100,100,100,100,24.72,23.83,6.26,6.26
-38061,47,069,47069,602,282,48364635,48344892,977,506,165786751,164787361,27253,10851,1736278582,1729510170,61.62,55.73,29.17,29.34,2.21,2.6,2.79,2.8
-38061,47,109,47109,375,224,117422116,116442469,977,506,165786751,164787361,26075,11933,1459749793,1457801922,38.38,44.27,70.83,70.66,1.44,1.88,8.04,7.99
-38063,47,075,47075,287,132,75098048,75062893,17403,7502,869987745,790218981,18787,8315,1383210206,1380753077,1.65,1.76,8.63,9.5,1.53,1.59,5.43,5.44
-38063,47,097,47097,17116,7370,794889697,715156088,17403,7502,869987745,790218981,27815,11256,1314627679,1222453808,98.35,98.24,91.37,90.5,61.54,65.48,60.47,58.5
-38066,47,047,47047,2630,1098,159027830,158703375,2630,1098,159027830,158703375,38413,15669,1829149110,1825386659,100,100,100,100,6.85,7.01,8.69,8.69
-38067,47,069,47069,1476,794,168286476,167144410,1476,794,168286476,167144410,27253,10851,1736278582,1729510170,100,100,100,100,5.42,7.32,9.69,9.66
-38068,47,047,47047,10941,4529,701293055,700313891,10941,4529,701293055,700313891,38413,15669,1829149110,1825386659,100,100,100,100,28.48,28.9,38.34,38.37
-38069,47,075,47075,2011,1037,309865732,309537713,2376,1184,340897301,340569282,18787,8315,1383210206,1380753077,84.64,87.58,90.9,90.89,10.7,12.47,22.4,22.42
-38069,47,167,47167,365,147,31031569,31031569,2376,1184,340897301,340569282,61081,23199,1225876424,1187161824,15.36,12.42,9.1,9.11,0.6,0.63,2.53,2.61
-38070,47,045,47045,175,88,2704699,2704699,175,88,2704699,2704699,38335,16703,1363700975,1326920403,100,100,100,100,0.46,0.53,0.2,0.2
-38075,47,047,47047,342,132,33095882,33095882,6936,1529,346707094,345782216,38413,15669,1829149110,1825386659,4.93,8.63,9.55,9.57,0.89,0.84,1.81,1.81
-38075,47,069,47069,6016,1173,218768555,218015238,6936,1529,346707094,345782216,27253,10851,1736278582,1729510170,86.74,76.72,63.1,63.05,22.07,10.81,12.6,12.61
-38075,47,075,47075,578,224,94842657,94671096,6936,1529,346707094,345782216,18787,8315,1383210206,1380753077,8.33,14.65,27.36,27.38,3.08,2.69,6.86,6.86
-38076,47,047,47047,847,357,61853821,61764370,847,357,61853821,61764370,38413,15669,1829149110,1825386659,100,100,100,100,2.2,2.28,3.38,3.38
-38077,47,095,47095,43,25,82633,82633,43,25,82633,82633,7832,2598,502181259,429379130,100,100,100,100,0.55,0.96,0.02,0.02
-38079,21,075,21075,18,9,69629592,45202343,5577,1616,345620875,274199918,6813,3372,597299462,532251963,0.32,0.56,20.15,16.49,0.26,0.27,11.66,8.49
-38079,47,095,47095,5559,1607,275991283,228997575,5577,1616,345620875,274199918,7832,2598,502181259,429379130,99.68,99.44,79.85,83.51,70.98,61.86,54.96,53.33
-38080,47,045,47045,291,149,159236772,156585102,2568,1139,393245912,364785821,38335,16703,1363700975,1326920403,11.33,13.08,40.49,42.93,0.76,0.89,11.68,11.8
-38080,47,095,47095,2230,966,226107343,200298922,2568,1139,393245912,364785821,7832,2598,502181259,429379130,86.84,84.81,57.5,54.91,28.47,37.18,45.03,46.65
-38080,47,131,47131,47,24,7901797,7901797,2568,1139,393245912,364785821,31807,14659,1438755503,1410839429,1.83,2.11,2.01,2.17,0.15,0.16,0.55,0.56
-38103,47,157,47157,12180,7281,10535569,6778611,12180,7281,10535569,6778611,927644,398274,2033188851,1976612450,100,100,100,100,1.31,1.83,0.52,0.34
-38104,47,157,47157,23409,14538,13204400,13204400,23409,14538,13204400,13204400,927644,398274,2033188851,1976612450,100,100,100,100,2.52,3.65,0.65,0.67
-38105,47,157,47157,6184,3546,4422814,4402770,6184,3546,4422814,4402770,927644,398274,2033188851,1976612450,100,100,100,100,0.67,0.89,0.22,0.22
-38106,47,157,47157,27222,12782,71393391,67152076,27222,12782,71393391,67152076,927644,398274,2033188851,1976612450,100,100,100,100,2.93,3.21,3.51,3.4
-38107,47,157,47157,17698,8793,14197097,13994958,17698,8793,14197097,13994958,927644,398274,2033188851,1976612450,100,100,100,100,1.91,2.21,0.7,0.71
-38108,47,157,47157,18729,8463,19654521,18140270,18729,8463,19654521,18140270,927644,398274,2033188851,1976612450,100,100,100,100,2.02,2.12,0.97,0.92
-38109,47,157,47157,46594,18891,181562046,174338927,46594,18891,181562046,174338927,927644,398274,2033188851,1976612450,100,100,100,100,5.02,4.74,8.93,8.82
-38111,47,157,47157,41742,19832,25654955,25628563,41742,19832,25654955,25628563,927644,398274,2033188851,1976612450,100,100,100,100,4.5,4.98,1.26,1.3
-38112,47,157,47157,17472,8275,11683848,11646791,17472,8275,11683848,11646791,927644,398274,2033188851,1976612450,100,100,100,100,1.88,2.08,0.57,0.59
-38114,47,157,47157,26905,13320,19536938,19536938,26905,13320,19536938,19536938,927644,398274,2033188851,1976612450,100,100,100,100,2.9,3.34,0.96,0.99
-38115,47,157,47157,39129,18726,22240912,22219159,39129,18726,22240912,22219159,927644,398274,2033188851,1976612450,100,100,100,100,4.22,4.7,1.09,1.12
-38116,47,157,47157,40404,18663,49361920,49238392,40404,18663,49361920,49238392,927644,398274,2033188851,1976612450,100,100,100,100,4.36,4.69,2.43,2.49
-38117,47,157,47157,26125,12403,24203282,24203282,26125,12403,24203282,24203282,927644,398274,2033188851,1976612450,100,100,100,100,2.82,3.11,1.19,1.22
-38118,47,157,47157,41465,16508,80987146,80825172,41465,16508,80987146,80825172,927644,398274,2033188851,1976612450,100,100,100,100,4.47,4.14,3.98,4.09
-38119,47,157,47157,22330,10422,23014151,22890937,22330,10422,23014151,22890937,927644,398274,2033188851,1976612450,100,100,100,100,2.41,2.62,1.13,1.16
-38120,47,157,47157,14237,6796,25020208,24972357,14237,6796,25020208,24972357,927644,398274,2033188851,1976612450,100,100,100,100,1.53,1.71,1.23,1.26
-38122,47,157,47157,25270,11315,19532324,19532324,25270,11315,19532324,19532324,927644,398274,2033188851,1976612450,100,100,100,100,2.72,2.84,0.96,0.99
-38125,47,157,47157,36150,14249,49423989,49423989,36150,14249,49423989,49423989,927644,398274,2033188851,1976612450,100,100,100,100,3.9,3.58,2.43,2.5
-38126,47,157,47157,7334,3002,4712142,4712142,7334,3002,4712142,4712142,927644,398274,2033188851,1976612450,100,100,100,100,0.79,0.75,0.23,0.24
-38127,47,157,47157,45248,18290,99394402,97335965,45248,18290,99394402,97335965,927644,398274,2033188851,1976612450,100,100,100,100,4.88,4.59,4.89,4.92
-38128,47,157,47157,44863,18315,62302340,61207432,44863,18315,62302340,61207432,927644,398274,2033188851,1976612450,100,100,100,100,4.84,4.6,3.06,3.1
-38131,47,157,47157,0,0,480154,480154,0,0,480154,480154,927644,398274,2033188851,1976612450,0,0,100,100,0,0,0.02,0.02
-38132,47,157,47157,7,2,1773754,1773754,7,2,1773754,1773754,927644,398274,2033188851,1976612450,100,100,100,100,0,0,0.09,0.09
-38133,47,157,47157,20787,7732,32787276,32787276,20787,7732,32787276,32787276,927644,398274,2033188851,1976612450,100,100,100,100,2.24,1.94,1.61,1.66
-38134,47,157,47157,41948,16045,48223804,48194361,41948,16045,48223804,48194361,927644,398274,2033188851,1976612450,100,100,100,100,4.52,4.03,2.37,2.44
-38135,47,157,47157,30657,11384,33265103,33123417,30657,11384,33265103,33123417,927644,398274,2033188851,1976612450,100,100,100,100,3.3,2.86,1.64,1.68
-38138,47,157,47157,24045,10447,30718918,30718918,24045,10447,30718918,30718918,927644,398274,2033188851,1976612450,100,100,100,100,2.59,2.62,1.51,1.55
-38139,47,157,47157,16086,5648,23157628,22979393,16086,5648,23157628,22979393,927644,398274,2033188851,1976612450,100,100,100,100,1.73,1.42,1.14,1.16
-38141,47,157,47157,22462,7982,20223482,20210164,22462,7982,20223482,20210164,927644,398274,2033188851,1976612450,100,100,100,100,2.42,2,0.99,1.02
-38152,47,157,47157,834,0,139080,139080,834,0,139080,139080,927644,398274,2033188851,1976612450,100,0,100,100,0.09,0,0.01,0.01
-38201,47,017,47017,7900,3480,219660223,219182709,10093,4475,367571983,366955431,28522,13184,1554200011,1552055889,78.27,77.77,59.76,59.73,27.7,26.4,14.13,14.12
-38201,47,079,47079,615,262,50083220,49966014,10093,4475,367571983,366955431,32330,17054,1536941222,1455823082,6.09,5.85,13.63,13.62,1.9,1.54,3.26,3.43
-38201,47,183,47183,1578,733,97828540,97806708,10093,4475,367571983,366955431,35021,15495,1506815003,1503135455,15.63,16.38,26.61,26.65,4.51,4.73,6.49,6.51
-38220,47,017,47017,1702,812,75363438,75317260,1849,880,101275251,101132209,28522,13184,1554200011,1552055889,92.05,92.27,74.41,74.47,5.97,6.16,4.85,4.85
-38220,47,053,47053,147,68,25911813,25814949,1849,880,101275251,101132209,49683,21999,1563448020,1561094821,7.95,7.73,25.59,25.53,0.3,0.31,1.66,1.65
-38221,47,005,47005,3308,2043,325804763,280883747,3308,2043,325804763,280883747,16489,8975,1129831665,1020822586,100,100,100,100,20.06,22.76,28.84,27.52
-38222,47,079,47079,2629,1620,201212749,182625741,2629,1620,201212749,182625741,32330,17054,1536941222,1455823082,100,100,100,100,8.13,9.5,13.09,12.54
-38224,47,079,47079,904,379,133033609,132584219,956,404,145596040,145146650,32330,17054,1536941222,1455823082,94.56,93.81,91.37,91.35,2.8,2.22,8.66,9.11
-38224,47,183,47183,52,25,12562431,12562431,956,404,145596040,145146650,35021,15495,1506815003,1503135455,5.44,6.19,8.63,8.65,0.15,0.16,0.83,0.84
-38225,47,183,47183,6283,2838,287018484,285765200,6283,2838,287018484,285765200,35021,15495,1506815003,1503135455,100,100,100,100,17.94,18.32,19.05,19.01
-38226,47,183,47183,345,170,60960802,60941272,345,170,60960802,60941272,35021,15495,1506815003,1503135455,100,100,100,100,0.99,1.1,4.05,4.05
-38229,47,183,47183,2931,1332,155679990,155577448,2931,1332,155679990,155577448,35021,15495,1506815003,1503135455,100,100,100,100,8.37,8.6,10.33,10.35
-38230,47,183,47183,3736,1706,222874159,222573167,3736,1706,222874159,222573167,35021,15495,1506815003,1503135455,100,100,100,100,10.67,11.01,14.79,14.81
-38231,47,079,47079,1664,758,137061755,136848397,1664,758,137061755,136848397,32330,17054,1536941222,1455823082,100,100,100,100,5.15,4.44,8.92,9.4
-38232,47,131,47131,1998,1062,137982913,132377988,1998,1062,137982913,132377988,31807,14659,1438755503,1410839429,100,100,100,100,6.28,7.24,9.59,9.38
-38233,47,053,47053,1543,696,131603700,131572316,2852,1320,247437277,246524894,49683,21999,1563448020,1561094821,54.1,52.73,53.19,53.37,3.11,3.16,8.42,8.43
-38233,47,131,47131,1309,624,115833577,114952578,2852,1320,247437277,246524894,31807,14659,1438755503,1410839429,45.9,47.27,46.81,46.63,4.12,4.26,8.05,8.15
-38235,47,017,47017,441,220,19557376,19557376,441,220,19557376,19557376,28522,13184,1554200011,1552055889,100,100,100,100,1.55,1.67,1.26,1.26
-38236,47,079,47079,662,297,94591405,94591405,662,297,94591405,94591405,32330,17054,1536941222,1455823082,100,100,100,100,2.05,1.74,6.15,6.5
-38237,47,183,47183,16627,7022,338213676,337568139,16627,7022,338213676,337568139,35021,15495,1506815003,1503135455,100,100,100,100,47.48,45.32,22.45,22.46
-38240,47,045,47045,78,31,23319780,23211363,2259,1039,225580417,225100456,38335,16703,1363700975,1326920403,3.45,2.98,10.34,10.31,0.2,0.19,1.71,1.75
-38240,47,131,47131,2181,1008,202260637,201889093,2259,1039,225580417,225100456,31807,14659,1438755503,1410839429,96.55,97.02,89.66,89.69,6.86,6.88,14.06,14.31
-38241,47,183,47183,898,463,170582565,170539289,898,463,170582565,170539289,35021,15495,1506815003,1503135455,100,100,100,100,2.56,2.99,11.32,11.35
-38242,47,079,47079,20016,9361,459700319,457946176,20151,9420,480444229,477839646,32330,17054,1536941222,1455823082,99.33,99.37,95.68,95.84,61.91,54.89,29.91,31.46
-38242,47,183,47183,135,59,20743910,19893470,20151,9420,480444229,477839646,35021,15495,1506815003,1503135455,0.67,0.63,4.32,4.16,0.39,0.38,1.38,1.32
-38251,47,079,47079,2751,1306,231368817,231194544,2751,1306,231368817,231194544,32330,17054,1536941222,1455823082,100,100,100,100,8.51,7.66,15.05,15.88
-38253,47,131,47131,1156,484,140574726,138115678,1156,484,140574726,138115678,31807,14659,1438755503,1410839429,100,100,100,100,3.63,3.3,9.77,9.79
-38254,47,131,47131,85,37,1752803,1752803,85,37,1752803,1752803,31807,14659,1438755503,1410839429,100,100,100,100,0.27,0.25,0.12,0.12
-38255,47,183,47183,2299,1080,122163284,121772954,2299,1080,122163284,121772954,35021,15495,1506815003,1503135455,100,100,100,100,6.56,6.97,8.11,8.1
-38256,47,079,47079,3089,3071,211742026,151955548,3089,3071,211742026,151955548,32330,17054,1536941222,1455823082,100,100,100,100,9.55,18.01,13.78,10.44
-38257,47,131,47131,4260,2051,123466950,123390231,4397,2118,141654112,141525608,31807,14659,1438755503,1410839429,96.88,96.84,87.16,87.19,13.39,13.99,8.58,8.75
-38257,47,183,47183,137,67,18187162,18135377,4397,2118,141654112,141525608,35021,15495,1506815003,1503135455,3.12,3.16,12.84,12.81,0.39,0.43,1.21,1.21
-38258,47,017,47017,1500,725,70696396,70639697,1500,725,70696396,70639697,28522,13184,1554200011,1552055889,100,100,100,100,5.26,5.5,4.55,4.55
-38259,47,045,47045,789,368,28401886,28388833,860,405,72673361,72297067,38335,16703,1363700975,1326920403,91.74,90.86,39.08,39.27,2.06,2.2,2.08,2.14
-38259,47,053,47053,23,12,6196935,6196935,860,405,72673361,72297067,49683,21999,1563448020,1561094821,2.67,2.96,8.53,8.57,0.05,0.05,0.4,0.4
-38259,47,131,47131,48,25,38074540,37711299,860,405,72673361,72297067,31807,14659,1438755503,1410839429,5.58,6.17,52.39,52.16,0.15,0.17,2.65,2.67
-38260,47,131,47131,3804,1613,170585629,170244691,3804,1613,170585629,170244691,31807,14659,1438755503,1410839429,100,100,100,100,11.96,11,11.86,12.07
-38261,47,131,47131,16919,7731,500321931,482503271,16919,7731,500321931,482503271,31807,14659,1438755503,1410839429,100,100,100,100,53.19,52.74,34.77,34.2
-38301,47,113,47113,36613,15910,428001096,427383355,36613,15910,428001096,427383355,98294,41877,1446835473,1442926509,100,100,100,100,37.25,37.99,29.58,29.62
-38305,47,017,47017,150,68,8867071,8867071,49808,20851,337588859,335070350,28522,13184,1554200011,1552055889,0.3,0.33,2.63,2.65,0.53,0.52,0.57,0.57
-38305,47,113,47113,49658,20783,328721788,326203279,49808,20851,337588859,335070350,98294,41877,1446835473,1442926509,99.7,99.67,97.37,97.35,50.52,49.63,22.72,22.61
-38310,47,071,47071,2045,958,99947353,98791252,6145,2763,296756414,295389288,26026,13946,1544395698,1495246952,33.28,34.67,33.68,33.44,7.86,6.87,6.47,6.61
-38310,47,109,47109,4100,1805,196809061,196598036,6145,2763,296756414,295389288,26075,11933,1459749793,1457801922,66.72,65.33,66.32,66.56,15.72,15.13,13.48,13.49
-38311,47,039,47039,786,493,159135651,151351876,786,493,159135651,151351876,11757,6873,893242886,864654041,100,100,100,100,6.69,7.17,17.82,17.5
-38313,47,023,47023,633,280,41660420,41660420,3204,1374,188387664,188302150,17131,6980,740627633,740052043,19.76,20.38,22.11,22.12,3.7,4.01,5.63,5.63
-38313,47,077,47077,673,256,41402477,41402477,3204,1374,188387664,188302150,27769,12776,1362032118,1346982937,21,18.63,21.98,21.99,2.42,2,3.04,3.07
-38313,47,113,47113,1898,838,105324767,105239253,3204,1374,188387664,188302150,98294,41877,1446835473,1442926509,59.24,60.99,55.91,55.89,1.93,2,7.28,7.29
-38315,47,023,47023,248,122,26224014,26224014,3876,1750,288943637,288810500,17131,6980,740627633,740052043,6.4,6.97,9.08,9.08,1.45,1.75,3.54,3.54
-38315,47,109,47109,3628,1628,262719623,262586486,3876,1750,288943637,288810500,26075,11933,1459749793,1457801922,93.6,93.03,90.92,90.92,13.91,13.64,18,18.01
-38316,47,053,47053,2917,1305,165479075,165201516,2917,1305,165479075,165201516,49683,21999,1563448020,1561094821,100,100,100,100,5.87,5.93,10.58,10.58
-38317,47,005,47005,66,30,1400949,1400949,2537,1201,93601948,93501470,16489,8975,1129831665,1020822586,2.6,2.5,1.5,1.5,0.4,0.33,0.12,0.14
-38317,47,017,47017,2471,1171,92200999,92100521,2537,1201,93601948,93501470,28522,13184,1554200011,1552055889,97.4,97.5,98.5,98.5,8.66,8.88,5.93,5.93
-38318,47,017,47017,476,249,107208309,107107474,476,249,107208309,107107474,28522,13184,1554200011,1552055889,100,100,100,100,1.67,1.89,6.9,6.9
-38320,47,005,47005,10686,5358,396086551,382254728,10686,5358,396086551,382254728,16489,8975,1129831665,1020822586,100,100,100,100,64.81,59.7,35.06,37.45
-38321,47,017,47017,1539,746,158149397,157542138,2431,1167,247844429,247090682,28522,13184,1554200011,1552055889,63.31,63.92,63.81,63.76,5.4,5.66,10.18,10.15
-38321,47,077,47077,892,421,89695032,89548544,2431,1167,247844429,247090682,27769,12776,1362032118,1346982937,36.69,36.08,36.19,36.24,3.21,3.3,6.59,6.65
-38326,28,141,28141,27,86,914732,914732,2560,2364,154240550,137874212,19593,10295,1151298845,1098813904,1.05,3.64,0.59,0.66,0.14,0.84,0.08,0.08
-38326,47,071,47071,2533,2278,153325818,136959480,2560,2364,154240550,137874212,26026,13946,1544395698,1495246952,98.95,96.36,99.41,99.34,9.73,16.33,9.93,9.16
-38327,47,071,47071,477,294,9601873,7963849,477,294,9601873,7963849,26026,13946,1544395698,1495246952,100,100,100,100,1.83,2.11,0.62,0.53
-38328,47,077,47077,730,343,66350366,64696108,730,343,66350366,64696108,27769,12776,1362032118,1346982937,100,100,100,100,2.63,2.68,4.87,4.8
-38329,47,039,47039,3145,2062,275729969,268655043,3220,2099,287598314,280523388,11757,6873,893242886,864654041,97.67,98.24,95.87,95.77,26.75,30,30.87,31.07
-38329,47,077,47077,75,37,11868345,11868345,3220,2099,287598314,280523388,27769,12776,1362032118,1346982937,2.33,1.76,4.13,4.23,0.27,0.29,0.87,0.88
-38330,47,053,47053,4404,1900,180403267,180374607,4404,1900,180403267,180374607,49683,21999,1563448020,1561094821,100,100,100,100,8.86,8.64,11.54,11.55
-38332,47,023,47023,1016,495,117878826,117878826,1120,547,139319415,139319415,17131,6980,740627633,740052043,90.71,90.49,84.61,84.61,5.93,7.09,15.92,15.93
-38332,47,109,47109,104,52,21440589,21440589,1120,547,139319415,139319415,26075,11933,1459749793,1457801922,9.29,9.51,15.39,15.39,0.4,0.44,1.47,1.47
-38333,47,005,47005,523,405,92554497,63973979,523,405,92554497,63973979,16489,8975,1129831665,1020822586,100,100,100,100,3.17,4.51,8.19,6.27
-38334,47,023,47023,716,312,35314059,35302110,1911,867,122601151,122522966,17131,6980,740627633,740052043,37.47,35.99,28.8,28.81,4.18,4.47,4.77,4.77
-38334,47,109,47109,1195,555,87287092,87220856,1911,867,122601151,122522966,26075,11933,1459749793,1457801922,62.53,64.01,71.2,71.19,4.58,4.65,5.98,5.98
-38337,47,033,47033,1366,618,70046590,70046590,1366,618,70046590,70046590,14586,6425,688260546,687731312,100,100,100,100,9.37,9.62,10.18,10.19
-38339,47,109,47109,637,303,47859875,47859875,637,303,47859875,47859875,26075,11933,1459749793,1457801922,100,100,100,100,2.44,2.54,3.28,3.28
-38340,47,023,47023,12653,4957,407815146,407445702,12935,5117,460946508,460546810,17131,6980,740627633,740052043,97.82,96.87,88.47,88.47,73.86,71.02,55.06,55.06
-38340,47,069,47069,282,160,53131362,53101108,12935,5117,460946508,460546810,27253,10851,1736278582,1729510170,2.18,3.13,11.53,11.53,1.03,1.47,3.06,3.07
-38341,47,005,47005,1821,1085,295435037,277062138,2252,1308,374355004,355959785,16489,8975,1129831665,1020822586,80.86,82.95,78.92,77.84,11.04,12.09,26.15,27.14
-38341,47,017,47017,19,8,9608444,9608444,2252,1308,374355004,355959785,28522,13184,1554200011,1552055889,0.84,0.61,2.57,2.7,0.07,0.06,0.62,0.62
-38341,47,039,47039,412,215,69311523,69289203,2252,1308,374355004,355959785,11757,6873,893242886,864654041,18.29,16.44,18.51,19.47,3.5,3.13,7.76,8.01
-38342,47,017,47017,1438,704,89275130,89229151,1438,704,89275130,89229151,28522,13184,1554200011,1552055889,100,100,100,100,5.04,5.34,5.74,5.75
-38343,47,033,47033,979,424,80292692,79960808,15619,7037,359392897,358830109,14586,6425,688260546,687731312,6.27,6.03,22.34,22.28,6.71,6.6,11.67,11.63
-38343,47,053,47053,12237,5604,216549363,216435306,15619,7037,359392897,358830109,49683,21999,1563448020,1561094821,78.35,79.64,60.25,60.32,24.63,25.47,13.85,13.86
-38343,47,113,47113,2403,1009,62550842,62433995,15619,7037,359392897,358830109,98294,41877,1446835473,1442926509,15.39,14.34,17.4,17.4,2.44,2.41,4.32,4.33
-38344,47,017,47017,8684,3996,418766272,418470291,8684,3996,418766272,418470291,28522,13184,1554200011,1552055889,100,100,100,100,30.45,30.31,26.94,26.96
-38345,47,077,47077,2089,926,129530976,129504749,2089,926,129530976,129504749,27769,12776,1362032118,1346982937,100,100,100,100,7.52,7.25,9.51,9.61
-38347,47,023,47023,270,123,10504317,10504317,270,123,10504317,10504317,17131,6980,740627633,740052043,100,100,100,100,1.58,1.76,1.42,1.42
-38348,47,017,47017,1037,460,131900762,131840633,1037,460,131900762,131840633,28522,13184,1554200011,1552055889,100,100,100,100,3.64,3.49,8.49,8.49
-38351,47,077,47077,17579,8101,555994771,543047164,17603,8110,558623459,545675852,27769,12776,1362032118,1346982937,99.86,99.89,99.53,99.52,63.3,63.41,40.82,40.32
-38351,47,113,47113,24,9,2628688,2628688,17603,8110,558623459,545675852,98294,41877,1446835473,1442926509,0.14,0.11,0.47,0.48,0.02,0.02,0.18,0.18
-38352,47,023,47023,386,167,31663758,31627639,494,216,49512959,49452437,17131,6980,740627633,740052043,78.14,77.31,63.95,63.96,2.25,2.39,4.28,4.27
-38352,47,077,47077,108,49,17849201,17824798,494,216,49512959,49452437,27769,12776,1362032118,1346982937,21.86,22.69,36.05,36.04,0.39,0.38,1.31,1.32
-38355,47,053,47053,4652,1733,35827991,35750938,5882,2263,97273730,97171449,49683,21999,1563448020,1561094821,79.09,76.58,36.83,36.79,9.36,7.88,2.29,2.29
-38355,47,113,47113,1230,530,61445739,61420511,5882,2263,97273730,97171449,98294,41877,1446835473,1442926509,20.91,23.42,63.17,63.21,1.25,1.27,4.25,4.26
-38356,47,023,47023,188,73,12245366,12245366,2193,982,187345912,186818043,17131,6980,740627633,740052043,8.57,7.43,6.54,6.55,1.1,1.05,1.65,1.65
-38356,47,069,47069,527,259,75599458,75284113,2193,982,187345912,186818043,27253,10851,1736278582,1729510170,24.03,26.37,40.35,40.3,1.93,2.39,4.35,4.35
-38356,47,113,47113,1478,650,99501088,99288564,2193,982,187345912,186818043,98294,41877,1446835473,1442926509,67.4,66.19,53.11,53.15,1.5,1.55,6.88,6.88
-38357,47,071,47071,358,183,32793456,32793456,2757,1294,159522455,159500581,26026,13946,1544395698,1495246952,12.99,14.14,20.56,20.56,1.38,1.31,2.12,2.19
-38357,47,109,47109,2399,1111,126728999,126707125,2757,1294,159522455,159500581,26075,11933,1459749793,1457801922,87.01,85.86,79.44,79.44,9.2,9.31,8.68,8.69
-38358,47,053,47053,12121,5378,215142879,213900148,12121,5378,215142879,213900148,49683,21999,1563448020,1561094821,100,100,100,100,24.4,24.45,13.76,13.7
-38359,47,023,47023,16,8,671136,671136,278,151,15121612,15121612,17131,6980,740627633,740052043,5.76,5.3,4.44,4.44,0.09,0.11,0.09,0.09
-38359,47,071,47071,118,57,11830747,11830747,278,151,15121612,15121612,26026,13946,1544395698,1495246952,42.45,37.75,78.24,78.24,0.45,0.41,0.77,0.79
-38359,47,109,47109,144,86,2619729,2619729,278,151,15121612,15121612,26075,11933,1459749793,1457801922,51.8,56.95,17.32,17.32,0.55,0.72,0.18,0.18
-38361,47,071,47071,975,514,106376975,103522521,994,522,107982222,105127768,26026,13946,1544395698,1495246952,98.09,98.47,98.51,98.47,3.75,3.69,6.89,6.92
-38361,47,109,47109,19,8,1605247,1605247,994,522,107982222,105127768,26075,11933,1459749793,1457801922,1.91,1.53,1.49,1.53,0.07,0.07,0.11,0.11
-38362,47,113,47113,1145,452,21582826,21582826,1145,452,21582826,21582826,98294,41877,1446835473,1442926509,100,100,100,100,1.16,1.08,1.49,1.5
-38363,47,039,47039,6038,3096,239775515,229871321,6097,3123,246711280,236807086,11757,6873,893242886,864654041,99.03,99.14,97.19,97.07,51.36,45.05,26.84,26.59
-38363,47,077,47077,59,27,6935765,6935765,6097,3123,246711280,236807086,27769,12776,1362032118,1346982937,0.97,0.86,2.81,2.93,0.21,0.21,0.51,0.51
-38365,47,071,47071,16,4,1172135,949208,16,4,1172135,949208,26026,13946,1544395698,1495246952,100,100,100,100,0.06,0.03,0.08,0.06
-38366,47,023,47023,495,205,32597347,32450030,2267,965,119674620,119400014,17131,6980,740627633,740052043,21.84,21.24,27.24,27.18,2.89,2.94,4.4,4.38
-38366,47,113,47113,1772,760,87077273,86949984,2267,965,119674620,119400014,98294,41877,1446835473,1442926509,78.16,78.76,72.76,72.82,1.8,1.81,6.02,6.03
-38367,47,109,47109,2843,1282,202364300,202227319,2843,1282,202364300,202227319,26075,11933,1459749793,1457801922,100,100,100,100,10.9,10.74,13.86,13.87
-38368,47,023,47023,472,218,21903695,21892934,1985,898,139775071,139739331,17131,6980,740627633,740052043,23.78,24.28,15.67,15.67,2.76,3.12,2.96,2.96
-38368,47,077,47077,1513,680,117871376,117846397,1985,898,139775071,139739331,27769,12776,1362032118,1346982937,76.22,75.72,84.33,84.33,5.45,5.32,8.65,8.75
-38369,47,053,47053,1887,877,100448164,100398328,1887,877,100448164,100398328,49683,21999,1563448020,1561094821,100,100,100,100,3.8,3.99,6.42,6.43
-38370,47,071,47071,670,533,51227293,50506476,670,533,51227293,50506476,26026,13946,1544395698,1495246952,100,100,100,100,2.57,3.82,3.32,3.38
-38371,47,071,47071,306,166,47308947,47308947,1235,648,110564607,110554255,26026,13946,1544395698,1495246952,24.78,25.62,42.79,42.79,1.18,1.19,3.06,3.16
-38371,47,077,47077,929,482,63255660,63245308,1235,648,110564607,110554255,27769,12776,1362032118,1346982937,75.22,74.38,57.21,57.21,3.35,3.77,4.64,4.7
-38372,47,071,47071,17595,8459,848938611,824039994,17595,8459,848938611,824039994,26026,13946,1544395698,1495246952,100,100,100,100,67.61,60.66,54.97,55.11
-38374,47,039,47039,887,435,54862108,54862108,2052,964,114036562,114036562,11757,6873,893242886,864654041,43.23,45.12,48.11,48.11,7.54,6.33,6.14,6.34
-38374,47,077,47077,1165,529,59174454,59174454,2052,964,114036562,114036562,27769,12776,1362032118,1346982937,56.77,54.88,51.89,51.89,4.2,4.14,4.34,4.39
-38375,47,109,47109,9251,4212,296975781,296593444,9251,4212,296975781,296593444,26075,11933,1459749793,1457801922,100,100,100,100,35.48,35.3,20.34,20.35
-38376,47,071,47071,150,70,6855307,6836624,233,119,10698511,10679828,26026,13946,1544395698,1495246952,64.38,58.82,64.08,64.01,0.58,0.5,0.44,0.46
-38376,47,109,47109,83,49,3843204,3843204,233,119,10698511,10679828,26075,11933,1459749793,1457801922,35.62,41.18,35.92,35.99,0.32,0.41,0.26,0.26
-38379,47,109,47109,1171,548,76040268,76040268,1171,548,76040268,76040268,26075,11933,1459749793,1457801922,100,100,100,100,4.49,4.59,5.21,5.22
-38380,47,005,47005,85,54,18549868,15247045,574,626,112977988,105871535,16489,8975,1129831665,1020822586,14.81,8.63,16.42,14.4,0.52,0.6,1.64,1.49
-38380,47,039,47039,489,572,94428120,90624490,574,626,112977988,105871535,11757,6873,893242886,864654041,85.19,91.37,83.58,85.6,4.16,8.32,10.57,10.48
-38381,47,069,47069,1640,738,143306783,143228596,1640,738,143306783,143228596,27253,10851,1736278582,1729510170,100,100,100,100,6.02,6.8,8.25,8.28
-38382,47,053,47053,9515,4305,450419206,449984151,9515,4305,450419206,449984151,49683,21999,1563448020,1561094821,100,100,100,100,19.15,19.57,28.81,28.82
-38387,47,017,47017,375,183,90745925,90392855,375,183,90745925,90392855,28522,13184,1554200011,1552055889,100,100,100,100,1.31,1.39,5.84,5.82
-38388,47,077,47077,1840,872,194539953,194325086,1840,872,194539953,194325086,27769,12776,1362032118,1346982937,100,100,100,100,6.63,6.83,14.28,14.43
-38390,47,017,47017,790,362,62200269,62200269,907,415,69764011,69764011,28522,13184,1554200011,1552055889,87.1,87.23,89.16,89.16,2.77,2.75,4,4.01
-38390,47,077,47077,117,53,7563742,7563742,907,415,69764011,69764011,27769,12776,1362032118,1346982937,12.9,12.77,10.84,10.84,0.42,0.41,0.56,0.56
-38391,47,113,47113,1174,515,159493843,159441954,1174,515,159493843,159441954,98294,41877,1446835473,1442926509,100,100,100,100,1.19,1.23,11.02,11.05
-38392,47,069,47069,83,43,14483198,14477999,776,371,87838330,87679708,27253,10851,1736278582,1729510170,10.7,11.59,16.49,16.51,0.3,0.4,0.83,0.84
-38392,47,113,47113,693,328,73355132,73201709,776,371,87838330,87679708,98294,41877,1446835473,1442926509,89.3,88.41,83.51,83.49,0.71,0.78,5.07,5.07
-38401,47,117,47117,415,172,13751356,13751356,54469,23943,784483548,778875345,30617,13119,974238933,972437127,0.76,0.72,1.75,1.77,1.36,1.31,1.41,1.41
-38401,47,119,47119,53929,23709,754272441,748672773,54469,23943,784483548,778875345,80956,35254,1594340444,1588021250,99.01,99.02,96.15,96.12,66.62,67.25,47.31,47.15
-38401,47,187,47187,125,62,16459751,16451216,54469,23943,784483548,778875345,183182,68498,1511954266,1508925443,0.23,0.26,2.1,2.11,0.07,0.09,1.09,1.09
-38425,47,071,47071,200,146,53602384,52329599,3724,1156,283372320,275495784,26026,13946,1544395698,1495246952,5.37,12.63,18.92,18.99,0.77,1.05,3.47,3.5
-38425,47,135,47135,129,102,32607136,29764778,3724,1156,283372320,275495784,7915,4599,1095232550,1074148474,3.46,8.82,11.51,10.8,1.63,2.22,2.98,2.77
-38425,47,181,47181,3395,908,197162800,193401407,3724,1156,283372320,275495784,17021,7287,1905333902,1901310603,91.17,78.55,69.58,70.2,19.95,12.46,10.35,10.17
-38449,47,055,47055,1481,741,66808060,66650834,2811,1331,147909262,147752036,29485,13844,1582935423,1582292854,52.69,55.67,45.17,45.11,5.02,5.35,4.22,4.21
-38449,47,103,47103,1330,590,81101202,81101202,2811,1331,147909262,147752036,33361,15241,1478159881,1477169515,47.31,44.33,54.83,54.89,3.99,3.87,5.49,5.49
-38450,47,181,47181,2778,1314,290405045,290390320,2778,1314,290405045,290390320,17021,7287,1905333902,1901310603,100,100,100,100,16.32,18.03,15.24,15.27
-38451,47,055,47055,84,64,2505106,2505106,4814,1968,209670811,209634299,29485,13844,1582935423,1582292854,1.74,3.25,1.19,1.19,0.28,0.46,0.16,0.16
-38451,47,117,47117,434,178,37434088,37434088,4814,1968,209670811,209634299,30617,13119,974238933,972437127,9.02,9.04,17.85,17.86,1.42,1.36,3.84,3.85
-38451,47,119,47119,4296,1726,169731617,169695105,4814,1968,209670811,209634299,80956,35254,1594340444,1588021250,89.24,87.7,80.95,80.95,5.31,4.9,10.65,10.69
-38452,47,181,47181,1091,506,137568460,137568460,1091,506,137568460,137568460,17021,7287,1905333902,1901310603,100,100,100,100,6.41,6.94,7.22,7.24
-38453,47,055,47055,94,45,5959556,5959556,373,179,40479760,40479760,29485,13844,1582935423,1582292854,25.2,25.14,14.72,14.72,0.32,0.33,0.38,0.38
-38453,47,103,47103,279,134,34520204,34520204,373,179,40479760,40479760,33361,15241,1478159881,1477169515,74.8,74.86,85.28,85.28,0.84,0.88,2.34,2.34
-38454,47,081,47081,1208,548,158367094,158367094,1208,548,158367094,158367094,24690,10311,1586698311,1586365395,100,100,100,100,4.89,5.31,9.98,9.98
-38455,47,055,47055,227,127,1385477,1385477,227,127,1385477,1385477,29485,13844,1582935423,1582292854,100,100,100,100,0.77,0.92,0.09,0.09
-38456,47,055,47055,716,298,52012136,52012136,4559,1657,187902675,187902675,29485,13844,1582935423,1582292854,15.71,17.98,27.68,27.68,2.43,2.15,3.29,3.29
-38456,47,099,47099,3843,1359,135890539,135890539,4559,1657,187902675,187902675,41869,18177,1600584914,1598355330,84.29,82.02,72.32,72.32,9.18,7.48,8.49,8.5
-38457,47,099,47099,808,372,70437925,70437925,808,372,70437925,70437925,41869,18177,1600584914,1598355330,100,100,100,100,1.93,2.05,4.4,4.41
-38459,47,055,47055,123,58,8678532,8678532,453,223,54443348,54443348,29485,13844,1582935423,1582292854,27.15,26.01,15.94,15.94,0.42,0.42,0.55,0.55
-38459,47,103,47103,330,165,45764816,45764816,453,223,54443348,54443348,33361,15241,1478159881,1477169515,72.85,73.99,84.06,84.06,0.99,1.08,3.1,3.1
-38460,47,055,47055,1410,619,86398506,86398506,1410,619,86398506,86398506,29485,13844,1582935423,1582292854,100,100,100,100,4.78,4.47,5.46,5.46
-38461,47,101,47101,547,263,107623430,107623430,1379,600,181336848,181336848,12161,5470,731639696,730608109,39.67,43.83,59.35,59.35,4.5,4.81,14.71,14.73
-38461,47,119,47119,832,337,73713418,73713418,1379,600,181336848,181336848,80956,35254,1594340444,1588021250,60.33,56.17,40.65,40.65,1.03,0.96,4.62,4.64
-38462,47,081,47081,55,22,13589343,13589343,10297,4597,514095605,513482286,24690,10311,1586698311,1586365395,0.53,0.48,2.64,2.65,0.22,0.21,0.86,0.86
-38462,47,101,47101,10242,4575,500506262,499892943,10297,4597,514095605,513482286,12161,5470,731639696,730608109,99.47,99.52,97.36,97.35,84.22,83.64,68.41,68.42
-38463,47,099,47099,783,361,63265333,63065283,2817,1226,293409741,293175865,41869,18177,1600584914,1598355330,27.8,29.45,21.56,21.51,1.87,1.99,3.95,3.95
-38463,47,181,47181,2034,865,230144408,230110582,2817,1226,293409741,293175865,17021,7287,1905333902,1901310603,72.2,70.55,78.44,78.49,11.95,11.87,12.08,12.1
-38464,47,055,47055,504,243,44733380,44733380,22293,10036,725468109,723625302,29485,13844,1582935423,1582292854,2.26,2.42,6.17,6.18,1.71,1.76,2.83,2.83
-38464,47,099,47099,21211,9547,592463836,590647312,22293,10036,725468109,723625302,41869,18177,1600584914,1598355330,95.15,95.13,81.67,81.62,50.66,52.52,37.02,36.95
-38464,47,181,47181,578,246,88270893,88244610,22293,10036,725468109,723625302,17021,7287,1905333902,1901310603,2.59,2.45,12.17,12.19,3.4,3.38,4.63,4.64
-38468,47,055,47055,171,74,17746051,17746051,5201,2254,255212304,255168983,29485,13844,1582935423,1582292854,3.29,3.28,6.95,6.95,0.58,0.53,1.12,1.12
-38468,47,099,47099,5030,2180,237466253,237422932,5201,2254,255212304,255168983,41869,18177,1600584914,1598355330,96.71,96.72,93.05,93.05,12.01,11.99,14.84,14.85
-38469,47,099,47099,4092,1783,175426556,175363647,4092,1783,175426556,175363647,41869,18177,1600584914,1598355330,100,100,100,100,9.77,9.81,10.96,10.97
-38471,47,181,47181,530,282,187261277,187114196,530,282,187261277,187114196,17021,7287,1905333902,1901310603,100,100,100,100,3.11,3.87,9.83,9.84
-38472,47,055,47055,2596,1163,249499920,249499920,2656,1193,257355477,257355477,29485,13844,1582935423,1582292854,97.74,97.49,96.95,96.95,8.8,8.4,15.76,15.77
-38472,47,117,47117,60,30,7855557,7855557,2656,1193,257355477,257355477,30617,13119,974238933,972437127,2.26,2.51,3.05,3.05,0.2,0.23,0.81,0.81
-38473,47,055,47055,1061,501,65721355,65719360,1061,501,65721355,65719360,29485,13844,1582935423,1582292854,100,100,100,100,3.6,3.62,4.15,4.15
-38474,47,055,47055,83,39,15873874,15873874,7802,3453,281378130,280982261,29485,13844,1582935423,1582292854,1.06,1.13,5.64,5.65,0.28,0.28,1,1
-38474,47,099,47099,119,46,2151063,2151063,7802,3453,281378130,280982261,41869,18177,1600584914,1598355330,1.53,1.33,0.76,0.77,0.28,0.25,0.13,0.13
-38474,47,101,47101,101,46,22682455,22682455,7802,3453,281378130,280982261,12161,5470,731639696,730608109,1.29,1.33,8.06,8.07,0.83,0.84,3.1,3.1
-38474,47,119,47119,7499,3322,240670738,240274869,7802,3453,281378130,280982261,80956,35254,1594340444,1588021250,96.12,96.21,85.53,85.51,9.26,9.42,15.1,15.13
-38475,47,071,47071,583,284,121414799,121414799,635,305,162711063,162711063,26026,13946,1544395698,1495246952,91.81,93.11,74.62,74.62,2.24,2.04,7.86,8.12
-38475,47,181,47181,52,21,41296264,41296264,635,305,162711063,162711063,17021,7287,1905333902,1901310603,8.19,6.89,25.38,25.38,0.31,0.29,2.17,2.17
-38476,47,081,47081,437,190,46413077,46413077,1228,534,108032528,108032528,24690,10311,1586698311,1586365395,35.59,35.58,42.96,42.96,1.77,1.84,2.93,2.93
-38476,47,119,47119,223,106,20487855,20487855,1228,534,108032528,108032528,80956,35254,1594340444,1588021250,18.16,19.85,18.96,18.96,0.28,0.3,1.29,1.29
-38476,47,187,47187,568,238,41131596,41131596,1228,534,108032528,108032528,183182,68498,1511954266,1508925443,46.25,44.57,38.07,38.07,0.31,0.35,2.72,2.73
-38477,47,055,47055,2766,1304,243729994,243536209,2766,1304,243729994,243536209,29485,13844,1582935423,1582292854,100,100,100,100,9.38,9.42,15.4,15.39
-38478,47,055,47055,17733,8369,676861157,676573651,17733,8369,676861157,676573651,29485,13844,1582935423,1582292854,100,100,100,100,60.14,60.45,42.76,42.76
-38481,47,099,47099,896,458,30219597,30219597,896,458,30219597,30219597,41869,18177,1600584914,1598355330,100,100,100,100,2.14,2.52,1.89,1.89
-38482,47,119,47119,1535,669,111243462,111232421,1535,669,111243462,111232421,80956,35254,1594340444,1588021250,100,100,100,100,1.9,1.9,6.98,7
-38483,47,055,47055,109,48,12091387,12089330,5663,2296,253245895,252718790,29485,13844,1582935423,1582292854,1.92,2.09,4.77,4.78,0.37,0.35,0.76,0.76
-38483,47,099,47099,4220,1652,142938912,142832132,5663,2296,253245895,252718790,41869,18177,1600584914,1598355330,74.52,71.95,56.44,56.52,10.08,9.09,8.93,8.94
-38483,47,101,47101,1221,549,95919073,95500805,5663,2296,253245895,252718790,12161,5470,731639696,730608109,21.56,23.91,37.88,37.79,10.04,10.04,13.11,13.07
-38483,47,119,47119,113,47,2296523,2296523,5663,2296,253245895,252718790,80956,35254,1594340444,1588021250,2,2.05,0.91,0.91,0.14,0.13,0.14,0.14
-38485,47,101,47101,50,37,4908476,4908476,6502,3115,701461821,701421830,12161,5470,731639696,730608109,0.77,1.19,0.7,0.7,0.41,0.68,0.67,0.67
-38485,47,181,47181,6452,3078,696553345,696513354,6502,3115,701461821,701421830,17021,7287,1905333902,1901310603,99.23,98.81,99.3,99.3,37.91,42.24,36.56,36.63
-38486,47,099,47099,867,419,150324900,150324900,967,466,185115543,185115543,41869,18177,1600584914,1598355330,89.66,89.91,81.21,81.21,2.07,2.31,9.39,9.4
-38486,47,181,47181,100,47,34790643,34790643,967,466,185115543,185115543,17021,7287,1905333902,1901310603,10.34,10.09,18.79,18.79,0.59,0.64,1.83,1.83
-38487,47,081,47081,211,87,40960360,40923532,1057,453,126337531,126243619,24690,10311,1586698311,1586365395,19.96,19.21,32.42,32.42,0.85,0.84,2.58,2.58
-38487,47,119,47119,846,366,85377171,85320087,1057,453,126337531,126243619,80956,35254,1594340444,1588021250,80.04,80.79,67.58,67.58,1.05,1.04,5.36,5.37
-38488,47,103,47103,2524,1089,152536652,152401850,2524,1089,152536652,152401850,33361,15241,1478159881,1477169515,100,100,100,100,7.57,7.15,10.32,10.32
-38501,47,087,47087,2537,1108,83228233,83228233,36687,17203,231300200,230838825,11638,5843,827565326,798545703,6.92,6.44,35.98,36.05,21.8,18.96,10.06,10.42
-38501,47,133,47133,31,18,3081519,3081519,36687,17203,231300200,230838825,22083,10295,1126214658,1122714642,0.08,0.1,1.33,1.33,0.14,0.17,0.27,0.27
-38501,47,141,47141,34119,16077,144990448,144529073,36687,17203,231300200,230838825,72321,31882,1042636936,1038852585,93,93.45,62.68,62.61,47.18,50.43,13.91,13.91
-38504,47,049,47049,868,459,93716240,93716240,901,474,123622537,123622537,17959,8961,1292228417,1291399079,96.34,96.84,75.81,75.81,4.83,5.12,7.25,7.26
-38504,47,151,47151,33,15,29906297,29906297,901,474,123622537,123622537,22228,9910,1381057047,1378642788,3.66,3.16,24.19,24.19,0.15,0.15,2.17,2.17
-38505,47,141,47141,1806,0,344150,344150,1806,0,344150,344150,72321,31882,1042636936,1038852585,100,0,100,100,2.5,0,0.03,0.03
-38506,47,133,47133,3363,1495,108334798,108331254,26521,11306,421108797,420719287,22083,10295,1126214658,1122714642,12.68,13.22,25.73,25.75,15.23,14.52,9.62,9.65
-38506,47,141,47141,22379,9468,294072979,293687013,26521,11306,421108797,420719287,72321,31882,1042636936,1038852585,84.38,83.74,69.83,69.81,30.94,29.7,28.2,28.27
-38506,47,185,47185,779,343,18701020,18701020,26521,11306,421108797,420719287,25841,11511,982707034,975578971,2.94,3.03,4.44,4.45,3.01,2.98,1.9,1.92
-38541,47,027,47027,552,340,89316080,66730918,1613,860,155902362,132124799,7861,4282,671697657,612626617,34.22,39.53,57.29,50.51,7.02,7.94,13.3,10.89
-38541,47,133,47133,1061,520,66586282,65393881,1613,860,155902362,132124799,22083,10295,1126214658,1122714642,65.78,60.47,42.71,49.49,4.8,5.05,5.91,5.82
-38542,47,133,47133,22,22,8002521,8002521,22,22,8002521,8002521,22083,10295,1126214658,1122714642,100,100,100,100,0.1,0.21,0.71,0.71
-38543,47,133,47133,465,265,110391796,110178040,560,338,123274810,122670578,22083,10295,1126214658,1122714642,83.04,78.4,89.55,89.82,2.11,2.57,9.8,9.81
-38543,47,137,47137,95,73,12883014,12492538,560,338,123274810,122670578,5077,3462,451936237,422113383,16.96,21.6,10.45,10.18,1.87,2.11,2.85,2.96
-38544,47,041,47041,259,239,25388265,19278959,6543,3149,222378761,214740909,18723,9405,852070312,788253896,3.96,7.59,11.42,8.98,1.38,2.54,2.98,2.45
-38544,47,141,47141,6284,2910,196990496,195461950,6543,3149,222378761,214740909,72321,31882,1042636936,1038852585,96.04,92.41,88.58,91.02,8.69,9.13,18.89,18.82
-38545,47,087,47087,799,384,44423727,44423727,1474,646,63929976,63929976,11638,5843,827565326,798545703,54.21,59.44,69.49,69.49,6.87,6.57,5.37,5.56
-38545,47,141,47141,675,262,19506249,19506249,1474,646,63929976,63929976,72321,31882,1042636936,1038852585,45.79,40.56,30.51,30.51,0.93,0.82,1.87,1.88
-38547,47,159,47159,1975,829,85013047,84893560,1975,829,85013047,84893560,19166,8529,842710884,814004493,100,100,100,100,10.3,9.72,10.09,10.43
-38548,47,141,47141,450,229,46150316,46111478,731,362,69995650,69682597,72321,31882,1042636936,1038852585,61.56,63.26,65.93,66.17,0.62,0.72,4.43,4.44
-38548,47,159,47159,281,133,23845334,23571119,731,362,69995650,69682597,19166,8529,842710884,814004493,38.44,36.74,34.07,33.83,1.47,1.56,2.83,2.9
-38549,47,049,47049,44,22,9167260,9167260,3679,2471,208965672,190586438,17959,8961,1292228417,1291399079,1.2,0.89,4.39,4.81,0.25,0.25,0.71,0.71
-38549,47,137,47137,3635,2449,199798412,181419178,3679,2471,208965672,190586438,5077,3462,451936237,422113383,98.8,99.11,95.61,95.19,71.6,70.74,44.21,42.98
-38551,47,027,47027,4079,2270,270289270,234806635,4106,2284,275875827,240393192,7861,4282,671697657,612626617,99.34,99.39,97.97,97.68,51.89,53.01,40.24,38.33
-38551,47,087,47087,27,14,5586557,5586557,4106,2284,275875827,240393192,11638,5843,827565326,798545703,0.66,0.61,2.03,2.32,0.23,0.24,0.68,0.7
-38552,47,159,47159,275,141,17185340,16397134,275,141,17185340,16397134,19166,8529,842710884,814004493,100,100,100,100,1.43,1.65,2.04,2.01
-38553,47,049,47049,2312,1024,124106570,124106570,2312,1024,124106570,124106570,17959,8961,1292228417,1291399079,100,100,100,100,12.87,11.43,9.6,9.61
-38554,47,133,47133,827,474,83480287,83480287,827,474,83480287,83480287,22083,10295,1126214658,1122714642,100,100,100,100,3.74,4.6,7.41,7.44
-38555,47,035,47035,18809,8922,252207538,251253427,18809,8922,252207538,251253427,56053,28151,1773673501,1763847584,100,100,100,100,33.56,31.69,14.22,14.24
-38556,47,049,47049,12506,6344,820511012,819755488,12540,6386,825629478,824667245,17959,8961,1292228417,1291399079,99.73,99.34,99.38,99.4,69.64,70.8,63.5,63.48
-38556,47,137,47137,34,42,5118466,4911757,12540,6386,825629478,824667245,5077,3462,451936237,422113383,0.27,0.66,0.62,0.6,0.67,1.21,1.13,1.16
-38558,47,035,47035,6970,4679,60175103,58187602,6970,4679,60175103,58187602,56053,28151,1773673501,1763847584,100,100,100,100,12.43,16.62,3.39,3.3
-38559,47,175,47175,281,146,34118868,33277389,1340,610,51589953,50718663,5548,2663,711035899,708142475,20.97,23.93,66.13,65.61,5.06,5.48,4.8,4.7
-38559,47,185,47185,1059,464,17471085,17441274,1340,610,51589953,50718663,25841,11511,982707034,975578971,79.03,76.07,33.87,34.39,4.1,4.03,1.78,1.79
-38560,47,159,47159,1425,648,98083185,88042071,1425,648,98083185,88042071,19166,8529,842710884,814004493,100,100,100,100,7.44,7.6,11.64,10.82
-38562,47,087,47087,6554,3297,377598462,354081611,6554,3297,377598462,354081611,11638,5843,827565326,798545703,100,100,100,100,56.32,56.43,45.63,44.34
-38563,47,159,47159,2330,1029,82237963,82108924,2330,1029,82237963,82108924,19166,8529,842710884,814004493,100,100,100,100,12.16,12.06,9.76,10.09
-38564,47,087,47087,432,314,74741516,70638594,453,324,77879964,73737231,11638,5843,827565326,798545703,95.36,96.91,95.97,95.8,3.71,5.37,9.03,8.85
-38564,47,141,47141,21,10,3138448,3098637,453,324,77879964,73737231,72321,31882,1042636936,1038852585,4.64,3.09,4.03,4.2,0.03,0.03,0.3,0.3
-38565,47,049,47049,1098,466,27692154,27692154,1098,466,27692154,27692154,17959,8961,1292228417,1291399079,100,100,100,100,6.11,5.2,2.14,2.14
-38567,47,041,47041,40,18,6694911,6694911,784,359,56663157,56428279,18723,9405,852070312,788253896,5.1,5.01,11.82,11.86,0.21,0.19,0.79,0.85
-38567,47,159,47159,744,341,49968246,49733368,784,359,56663157,56428279,19166,8529,842710884,814004493,94.9,94.99,88.18,88.14,3.88,4,5.93,6.11
-38568,47,027,47027,409,268,59412245,59412245,2034,1093,190786882,190566763,7861,4282,671697657,612626617,20.11,24.52,31.14,31.18,5.2,6.26,8.85,9.7
-38568,47,087,47087,297,136,16373782,16373782,2034,1093,190786882,190566763,11638,5843,827565326,798545703,14.6,12.44,8.58,8.59,2.55,2.33,1.98,2.05
-38568,47,133,47133,1328,689,115000855,114780736,2034,1093,190786882,190566763,22083,10295,1126214658,1122714642,65.29,63.04,60.28,60.23,6.01,6.69,10.21,10.22
-38569,47,041,47041,111,207,27071075,22386642,363,319,45888326,40518349,18723,9405,852070312,788253896,30.58,64.89,58.99,55.25,0.59,2.2,3.18,2.84
-38569,47,159,47159,252,112,18817251,18131707,363,319,45888326,40518349,19166,8529,842710884,814004493,69.42,35.11,41.01,44.75,1.31,1.31,2.23,2.23
-38570,47,133,47133,9898,4536,276949413,276714588,9898,4536,276949413,276714588,22083,10295,1126214658,1122714642,100,100,100,100,44.82,44.06,24.59,24.65
-38571,47,035,47035,13848,6153,588092653,585685486,13848,6153,588092653,585685486,56053,28151,1773673501,1763847584,100,100,100,100,24.71,21.86,33.16,33.2
-38572,47,007,47007,126,59,23815734,23815734,10649,5543,404256232,400646943,12876,5718,1053474175,1052635810,1.18,1.06,5.89,5.94,0.98,1.03,2.26,2.26
-38572,47,035,47035,10523,5484,380440498,376831209,10649,5543,404256232,400646943,56053,28151,1773673501,1763847584,98.82,98.94,94.11,94.06,18.77,19.48,21.45,21.36
-38573,47,133,47133,1612,774,113427266,112188774,2198,1164,181372775,169306431,22083,10295,1126214658,1122714642,73.34,66.49,62.54,66.26,7.3,7.52,10.07,9.99
-38573,47,137,47137,586,390,67945509,57117657,2198,1164,181372775,169306431,5077,3462,451936237,422113383,26.66,33.51,37.46,33.74,11.54,11.27,15.03,13.53
-38574,47,035,47035,1141,549,56117781,55492125,8413,3749,448698325,446935171,56053,28151,1773673501,1763847584,13.56,14.64,12.51,12.42,2.04,1.95,3.16,3.15
-38574,47,049,47049,407,192,17851149,17826721,8413,3749,448698325,446935171,17959,8961,1292228417,1291399079,4.84,5.12,3.98,3.99,2.27,2.14,1.38,1.38
-38574,47,133,47133,1605,695,141938874,141541995,8413,3749,448698325,446935171,22083,10295,1126214658,1122714642,19.08,18.54,31.63,31.67,7.27,6.75,12.6,12.61
-38574,47,141,47141,5260,2313,232790521,232074330,8413,3749,448698325,446935171,72321,31882,1042636936,1038852585,62.52,61.7,51.88,51.93,7.27,7.25,22.33,22.34
-38575,47,027,47027,1172,596,107982766,107130259,1172,596,107982766,107130259,7861,4282,671697657,612626617,100,100,100,100,14.91,13.92,16.08,17.49
-38577,47,049,47049,473,282,98573328,98573328,1153,634,195198970,195180387,17959,8961,1292228417,1291399079,41.02,44.48,50.5,50.5,2.63,3.15,7.63,7.63
-38577,47,137,47137,680,352,96625642,96607059,1153,634,195198970,195180387,5077,3462,451936237,422113383,58.98,55.52,49.5,49.5,13.39,10.17,21.38,22.89
-38578,47,035,47035,177,97,1157418,1130462,177,97,1157418,1130462,56053,28151,1773673501,1763847584,100,100,100,100,0.32,0.34,0.07,0.06
-38579,47,185,47185,1063,505,43176338,42357350,1063,505,43176338,42357350,25841,11511,982707034,975578971,100,100,100,100,4.11,4.39,4.39,4.34
-38580,47,133,47133,1743,743,90490368,90490368,1743,743,90490368,90490368,22083,10295,1126214658,1122714642,100,100,100,100,7.89,7.22,8.03,8.06
-38581,47,041,47041,41,19,2225287,2225287,4112,1928,260658614,257397718,18723,9405,852070312,788253896,1,0.99,0.85,0.86,0.22,0.2,0.26,0.28
-38581,47,175,47175,750,404,117444136,116860939,4112,1928,260658614,257397718,5548,2663,711035899,708142475,18.24,20.95,45.06,45.4,13.52,15.17,16.52,16.5
-38581,47,177,47177,3321,1505,140989191,138311492,4112,1928,260658614,257397718,39839,17821,1124144073,1120635730,80.76,78.06,54.09,53.73,8.34,8.45,12.54,12.34
-38582,47,041,47041,311,269,65743946,51142928,1426,792,134782070,119567428,18723,9405,852070312,788253896,21.81,33.96,48.78,42.77,1.66,2.86,7.72,6.49
-38582,47,141,47141,1115,523,69038124,68424500,1426,792,134782070,119567428,72321,31882,1042636936,1038852585,78.19,66.04,51.22,57.23,1.54,1.64,6.62,6.59
-38583,47,035,47035,1121,527,43477283,43477283,23825,10734,938504192,927627767,56053,28151,1773673501,1763847584,4.71,4.91,4.63,4.69,2,1.87,2.45,2.46
-38583,47,041,47041,620,442,56215016,47934624,23825,10734,938504192,927627767,18723,9405,852070312,788253896,2.6,4.12,5.99,5.17,3.31,4.7,6.6,6.08
-38583,47,141,47141,212,90,35615205,35615205,23825,10734,938504192,927627767,72321,31882,1042636936,1038852585,0.89,0.84,3.79,3.84,0.29,0.28,3.42,3.43
-38583,47,175,47175,233,126,23134116,22891084,23825,10734,938504192,927627767,5548,2663,711035899,708142475,0.98,1.17,2.46,2.47,4.2,4.73,3.25,3.23
-38583,47,185,47185,21639,9549,780062572,777709571,23825,10734,938504192,927627767,25841,11511,982707034,975578971,90.82,88.96,83.12,83.84,83.74,82.96,79.38,79.72
-38585,47,175,47175,3717,1681,430263448,429453423,3717,1681,430263448,429453423,5548,2663,711035899,708142475,100,100,100,100,67,63.12,60.51,60.65
-38587,47,185,47185,1301,649,82805122,78878859,1301,649,82805122,78878859,25841,11511,982707034,975578971,100,100,100,100,5.03,5.64,8.43,8.09
-38588,47,027,47027,179,104,33236179,33148745,1011,607,239917305,238501258,7861,4282,671697657,612626617,17.71,17.13,13.85,13.9,2.28,2.43,4.95,5.41
-38588,47,087,47087,832,503,206681126,205352513,1011,607,239917305,238501258,11638,5843,827565326,798545703,82.29,82.87,86.15,86.1,7.15,8.61,24.97,25.72
-38589,47,049,47049,72,84,70979277,70979277,200,148,79509956,79509956,17959,8961,1292228417,1291399079,36,56.76,89.27,89.27,0.4,0.94,5.49,5.5
-38589,47,133,47133,128,64,8530679,8530679,200,148,79509956,79509956,22083,10295,1126214658,1122714642,64,43.24,10.73,10.73,0.58,0.62,0.76,0.76
-38601,28,071,28071,2371,1070,272004786,248866371,2371,1070,272004786,248866371,47351,22729,1759138693,1636116444,100,100,100,100,5.01,4.71,15.46,15.21
-38603,28,009,28009,2840,1516,319443388,317532861,2894,1546,338833284,336853960,8729,4186,1058410572,1053131367,98.13,98.06,94.28,94.26,32.54,36.22,30.18,30.15
-38603,28,139,28139,54,30,19389896,19321099,2894,1546,338833284,336853960,22232,9696,1191277173,1185734808,1.87,1.94,5.72,5.74,0.24,0.31,1.63,1.63
-38606,28,071,28071,120,48,9823489,9823489,16127,6737,704683407,684715103,47351,22729,1759138693,1636116444,0.74,0.71,1.39,1.43,0.25,0.21,0.56,0.6
-38606,28,107,28107,15972,6672,675435202,655466898,16127,6737,704683407,684715103,34707,14697,1826282565,1774515519,99.04,99.04,95.85,95.73,46.02,45.4,36.98,36.94
-38606,28,119,28119,35,17,19424716,19424716,16127,6737,704683407,684715103,8223,3589,1052653109,1048977108,0.22,0.25,2.76,2.84,0.43,0.47,1.85,1.85
-38610,28,009,28009,126,64,38482172,38310854,3542,1461,247678250,246812314,8729,4186,1058410572,1053131367,3.56,4.38,15.54,15.52,1.44,1.53,3.64,3.64
-38610,28,139,28139,3074,1258,177957650,177343025,3542,1461,247678250,246812314,22232,9696,1191277173,1185734808,86.79,86.11,71.85,71.85,13.83,12.97,14.94,14.96
-38610,28,145,28145,342,139,31238428,31158435,3542,1461,247678250,246812314,27134,11520,1079781821,1076394333,9.66,9.51,12.61,12.62,1.26,1.21,2.89,2.89
-38611,28,033,28033,2437,889,92990854,92671898,17202,6926,485934489,484419417,161252,61634,1287252553,1233210616,14.17,12.84,19.14,19.13,1.51,1.44,7.22,7.51
-38611,28,093,28093,14765,6037,392943635,391747519,17202,6926,485934489,484419417,37144,14881,1838284778,1829030244,85.83,87.16,80.86,80.87,39.75,40.57,21.38,21.42
-38614,28,011,28011,15,7,20628694,20628694,20418,8179,644186045,642278263,34145,14070,2346056686,2270314566,0.07,0.09,3.2,3.21,0.04,0.05,0.88,0.91
-38614,28,027,28027,20403,8172,623557351,621649569,20418,8179,644186045,642278263,26151,10792,1510357701,1430818231,99.93,99.91,96.8,96.79,78.02,75.72,41.29,43.45
-38617,28,027,28027,734,337,151389912,144911094,734,337,151389912,144911094,26151,10792,1510357701,1430818231,100,100,100,100,2.81,3.12,10.02,10.13
-38618,28,033,28033,66,22,2447963,2447963,12031,4805,508904004,494454309,161252,61634,1287252553,1233210616,0.55,0.46,0.48,0.5,0.04,0.04,0.19,0.2
-38618,28,093,28093,184,71,7787976,7754395,12031,4805,508904004,494454309,37144,14881,1838284778,1829030244,1.53,1.48,1.53,1.57,0.5,0.48,0.42,0.42
-38618,28,137,28137,11781,4712,498668065,484251951,12031,4805,508904004,494454309,28886,10947,1064412752,1048320034,97.92,98.06,97.99,97.94,40.78,43.04,46.85,46.19
-38619,28,071,28071,1042,770,103701039,53152387,5004,2442,407461572,355944235,47351,22729,1759138693,1636116444,20.82,31.53,25.45,14.93,2.2,3.39,5.89,3.25
-38619,28,107,28107,3843,1620,291603459,290814819,5004,2442,407461572,355944235,34707,14697,1826282565,1774515519,76.8,66.34,71.57,81.7,11.07,11.02,15.97,16.39
-38619,28,137,28137,119,52,12157074,11977029,5004,2442,407461572,355944235,28886,10947,1064412752,1048320034,2.38,2.13,2.98,3.36,0.41,0.48,1.14,1.14
-38620,28,107,28107,3375,1311,151403933,146506120,3375,1311,151403933,146506120,34707,14697,1826282565,1774515519,100,100,100,100,9.72,8.92,8.29,8.26
-38621,28,107,28107,1330,530,133254942,133053206,1910,786,165477393,165253620,34707,14697,1826282565,1774515519,69.63,67.43,80.53,80.51,3.83,3.61,7.3,7.5
-38621,28,119,28119,580,256,32222451,32200414,1910,786,165477393,165253620,8223,3589,1052653109,1048977108,30.37,32.57,19.47,19.49,7.05,7.13,3.06,3.07
-38622,28,107,28107,288,110,1381137,1381137,705,312,3103853,3103853,34707,14697,1826282565,1774515519,40.85,35.26,44.5,44.5,0.83,0.75,0.08,0.08
-38622,28,119,28119,417,202,1722716,1722716,705,312,3103853,3103853,8223,3589,1052653109,1048977108,59.15,64.74,55.5,55.5,5.07,5.63,0.16,0.16
-38623,28,119,28119,259,112,29436365,29314883,259,112,29436365,29314883,8223,3589,1052653109,1048977108,100,100,100,100,3.15,3.12,2.8,2.79
-38625,28,139,28139,709,312,55042501,54906852,1058,476,95060397,94885677,22232,9696,1191277173,1185734808,67.01,65.55,57.9,57.87,3.19,3.22,4.62,4.63
-38625,28,145,28145,349,164,40017896,39978825,1058,476,95060397,94885677,27134,11520,1079781821,1076394333,32.99,34.45,42.1,42.13,1.29,1.42,3.71,3.71
-38626,28,027,28027,341,311,64458416,54016303,1353,713,431772616,417304151,26151,10792,1510357701,1430818231,25.2,43.62,14.93,12.94,1.3,2.88,4.27,3.78
-38626,28,143,28143,1012,402,367314200,363287848,1353,713,431772616,417304151,10778,4803,1245076195,1177584065,74.8,56.38,85.07,87.06,9.39,8.37,29.5,30.85
-38627,28,071,28071,220,115,34824705,34824705,1120,495,115680986,115570831,47351,22729,1759138693,1636116444,19.64,23.23,30.1,30.13,0.46,0.51,1.98,2.13
-38627,28,145,28145,900,380,80856281,80746126,1120,495,115680986,115570831,27134,11520,1079781821,1076394333,80.36,76.77,69.9,69.87,3.32,3.3,7.49,7.5
-38629,28,009,28009,225,124,47203116,47120925,1774,755,131735994,130998092,8729,4186,1058410572,1053131367,12.68,16.42,35.83,35.97,2.58,2.96,4.46,4.47
-38629,28,139,28139,1549,631,84532878,83877167,1774,755,131735994,130998092,22232,9696,1191277173,1185734808,87.32,83.58,64.17,64.03,6.97,6.51,7.1,7.07
-38630,28,027,28027,132,55,7960643,7960643,132,55,7960643,7960643,26151,10792,1510357701,1430818231,100,100,100,100,0.5,0.51,0.53,0.56
-38631,28,027,28027,1306,520,11939644,11893696,1306,520,11939644,11893696,26151,10792,1510357701,1430818231,100,100,100,100,4.99,4.82,0.79,0.83
-38632,28,033,28033,24377,9533,469605323,439567113,24377,9533,469605323,439567113,161252,61634,1287252553,1233210616,100,100,100,100,15.12,15.47,36.48,35.64
-38633,28,009,28009,2097,886,208561983,207545100,2590,1147,260787345,259318888,8729,4186,1058410572,1053131367,80.97,77.24,79.97,80.03,24.02,21.17,19.71,19.71
-38633,28,145,28145,493,261,52225362,51773788,2590,1147,260787345,259318888,27134,11520,1079781821,1076394333,19.03,22.76,20.03,19.97,1.82,2.27,4.84,4.81
-38635,28,009,28009,527,243,56073388,55512125,15941,6162,884033923,881457130,8729,4186,1058410572,1053131367,3.31,3.94,6.34,6.3,6.04,5.81,5.3,5.27
-38635,28,093,28093,15070,5781,798417698,796518675,15941,6162,884033923,881457130,37144,14881,1838284778,1829030244,94.54,93.82,90.32,90.36,40.57,38.85,43.43,43.55
-38635,28,137,28137,344,138,29542837,29426330,15941,6162,884033923,881457130,28886,10947,1064412752,1048320034,2.16,2.24,3.34,3.34,1.19,1.26,2.78,2.81
-38637,28,033,28033,26066,9705,42352791,41645681,26066,9705,42352791,41645681,161252,61634,1287252553,1233210616,100,100,100,100,16.16,15.75,3.29,3.38
-38639,28,027,28027,1257,445,17890335,17890335,1257,445,17890335,17890335,26151,10792,1510357701,1430818231,100,100,100,100,4.81,4.12,1.18,1.25
-38641,28,033,28033,2338,862,210033227,189591946,2338,862,210033227,189591946,161252,61634,1287252553,1233210616,100,100,100,100,1.45,1.4,16.32,15.37
-38642,28,009,28009,1287,538,125209451,124783357,2321,959,215845379,215324134,8729,4186,1058410572,1053131367,55.45,56.1,58.01,57.95,14.74,12.85,11.83,11.85
-38642,28,093,28093,1034,421,90635928,90540777,2321,959,215845379,215324134,37144,14881,1838284778,1829030244,44.55,43.9,41.99,42.05,2.78,2.83,4.93,4.95
-38643,28,119,28119,2611,1101,411792359,409849915,2619,1112,435323339,431881438,8223,3589,1052653109,1048977108,99.69,99.01,94.59,94.9,31.75,30.68,39.12,39.07
-38643,28,135,28135,8,11,23530980,22031523,2619,1112,435323339,431881438,15378,5530,1689038557,1671287200,0.31,0.99,5.41,5.1,0.05,0.2,1.39,1.32
-38644,28,027,28027,208,87,24121099,24121099,208,87,24121099,24121099,26151,10792,1510357701,1430818231,100,100,100,100,0.8,0.81,1.6,1.69
-38645,28,027,28027,1269,572,119579786,117929476,1329,595,144833533,142899491,26151,10792,1510357701,1430818231,95.49,96.13,82.56,82.53,4.85,5.3,7.92,8.24
-38645,28,119,28119,60,23,25253747,24970015,1329,595,144833533,142899491,8223,3589,1052653109,1048977108,4.51,3.87,17.44,17.47,0.73,0.64,2.4,2.38
-38646,28,119,28119,3073,1373,275594849,275120336,3073,1373,275594849,275120336,8223,3589,1052653109,1048977108,100,100,100,100,37.37,38.26,26.18,26.23
-38647,28,009,28009,1143,522,147548945,147352405,1143,522,147548945,147352405,8729,4186,1058410572,1053131367,100,100,100,100,13.09,12.47,13.94,13.99
-38650,28,009,28009,29,20,12119426,11981807,3881,1683,203020370,201986388,8729,4186,1058410572,1053131367,0.75,1.19,5.97,5.93,0.33,0.48,1.15,1.14
-38650,28,145,28145,3852,1663,190900944,190004581,3881,1683,203020370,201986388,27134,11520,1079781821,1076394333,99.25,98.81,94.03,94.07,14.2,14.44,17.68,17.65
-38651,28,033,28033,7103,2736,85993043,85402676,7103,2736,85993043,85402676,161252,61634,1287252553,1233210616,100,100,100,100,4.4,4.44,6.68,6.93
-38652,28,145,28145,16600,6951,403163245,402010412,16600,6951,403163245,402010412,27134,11520,1079781821,1076394333,100,100,100,100,61.18,60.34,37.34,37.35
-38654,28,033,28033,45710,17230,234963192,234230605,45956,17347,246508801,245776214,161252,61634,1287252553,1233210616,99.46,99.33,95.32,95.3,28.35,27.96,18.25,18.99
-38654,28,093,28093,246,117,11545609,11545609,45956,17347,246508801,245776214,37144,14881,1838284778,1829030244,0.54,0.67,4.68,4.7,0.66,0.79,0.63,0.63
-38655,28,071,28071,36699,19405,1045277307,997426039,36699,19405,1045277307,997426039,47351,22729,1759138693,1636116444,100,100,100,100,77.5,85.38,59.42,60.96
-38658,28,107,28107,2074,997,93268438,91831452,2074,997,93268438,91831452,34707,14697,1826282565,1774515519,100,100,100,100,5.98,6.78,5.11,5.18
-38659,28,009,28009,267,135,61556225,61243878,2841,1209,295963125,293992816,8729,4186,1058410572,1053131367,9.4,11.17,20.8,20.83,3.06,3.23,5.82,5.82
-38659,28,093,28093,2574,1074,234406900,232748938,2841,1209,295963125,293992816,37144,14881,1838284778,1829030244,90.6,88.83,79.2,79.17,6.93,7.22,12.75,12.73
-38661,28,093,28093,2039,815,82350956,82280079,2039,815,82350956,82280079,37144,14881,1838284778,1829030244,100,100,100,100,5.49,5.48,4.48,4.5
-38663,28,009,28009,49,26,4062761,4062761,11950,5207,514394212,512153955,8729,4186,1058410572,1053131367,0.41,0.5,0.79,0.79,0.56,0.62,0.38,0.39
-38663,28,139,28139,11901,5181,510331451,508091194,11950,5207,514394212,512153955,22232,9696,1191277173,1185734808,99.59,99.5,99.21,99.21,53.53,53.43,42.84,42.85
-38664,28,143,28143,3279,1687,259098759,238591625,3279,1687,259098759,238591625,10778,4803,1245076195,1177584065,100,100,100,100,30.42,35.12,20.81,20.26
-38665,28,107,28107,503,227,47597375,47466679,2683,1050,166387455,165973944,34707,14697,1826282565,1774515519,18.75,21.62,28.61,28.6,1.45,1.54,2.61,2.67
-38665,28,137,28137,2180,823,118790080,118507265,2683,1050,166387455,165973944,28886,10947,1064412752,1048320034,81.25,78.38,71.39,71.4,7.55,7.52,11.16,11.3
-38666,28,107,28107,6915,3050,376814319,352578201,6915,3050,376814319,352578201,34707,14697,1826282565,1774515519,100,100,100,100,19.92,20.75,20.63,19.87
-38668,28,137,28137,14462,5222,405254696,404157459,14462,5222,405254696,404157459,28886,10947,1064412752,1048320034,100,100,100,100,50.07,47.7,38.07,38.55
-38670,28,119,28119,1114,463,197283724,196475524,1226,506,224777295,223888723,8223,3589,1052653109,1048977108,90.86,91.5,87.77,87.76,13.55,12.9,18.74,18.73
-38670,28,143,28143,112,43,27493571,27413199,1226,506,224777295,223888723,10778,4803,1245076195,1177584065,9.14,8.5,12.23,12.24,1.04,0.9,2.21,2.33
-38671,28,033,28033,35712,14400,58060431,57463320,35712,14400,58060431,57463320,161252,61634,1287252553,1233210616,100,100,100,100,22.15,23.36,4.51,4.66
-38672,28,033,28033,11249,3896,33967162,33787262,11249,3896,33967162,33787262,161252,61634,1287252553,1233210616,100,100,100,100,6.98,6.32,2.64,2.74
-38673,28,071,28071,746,328,68251278,68154344,746,328,68251278,68154344,47351,22729,1759138693,1636116444,100,100,100,100,1.58,1.44,3.88,4.17
-38674,28,139,28139,898,431,96574728,96007611,898,431,96574728,96007611,22232,9696,1191277173,1185734808,100,100,100,100,4.04,4.45,8.11,8.1
-38676,28,143,28143,6375,2671,591169665,548291393,6375,2671,591169665,548291393,10778,4803,1245076195,1177584065,100,100,100,100,59.15,55.61,47.48,46.56
-38677,28,071,28071,4198,79,1923539,1923539,4198,79,1923539,1923539,47351,22729,1759138693,1636116444,100,100,100,100,8.87,0.35,0.11,0.12
-38680,28,033,28033,6194,2361,56838567,56402152,6194,2361,56838567,56402152,161252,61634,1287252553,1233210616,100,100,100,100,3.84,3.83,4.42,4.57
-38683,28,003,28003,1900,906,129823101,129692278,5637,2627,359189231,357888027,37057,17077,1039518498,1036092671,33.71,34.49,36.14,36.24,5.13,5.31,12.49,12.52
-38683,28,009,28009,139,112,38149717,37685294,5637,2627,359189231,357888027,8729,4186,1058410572,1053131367,2.47,4.26,10.62,10.53,1.59,2.68,3.6,3.58
-38683,28,139,28139,3598,1609,191216413,190510455,5637,2627,359189231,357888027,22232,9696,1191277173,1185734808,63.83,61.25,53.24,53.23,16.18,16.59,16.05,16.07
-38685,28,071,28071,115,54,15640197,15640197,1347,619,235836273,231534449,47351,22729,1759138693,1636116444,8.54,8.72,6.63,6.76,0.24,0.24,0.89,0.96
-38685,28,093,28093,1232,565,220196076,215894252,1347,619,235836273,231534449,37144,14881,1838284778,1829030244,91.46,91.28,93.37,93.24,3.32,3.8,11.98,11.8
-38701,28,151,28151,24187,10484,233279155,213971296,24187,10484,233279155,213971296,51137,21708,1971566700,1877071141,100,100,100,100,47.3,48.3,11.83,11.4
-38702,28,011,28011,1,16,6625994,6294005,1,16,6625994,6294005,34145,14070,2346056686,2270314566,100,100,100,100,0,0.11,0.28,0.28
-38703,28,011,28011,112,81,93848486,85666640,14568,5920,460370036,427309354,34145,14070,2346056686,2270314566,0.77,1.37,20.39,20.05,0.33,0.58,4,3.77
-38703,28,151,28151,14456,5839,366521550,341642714,14568,5920,460370036,427309354,51137,21708,1971566700,1877071141,99.23,98.63,79.61,79.95,28.27,26.9,18.59,18.2
-38704,28,055,28055,41,16,2851625,2851625,41,16,2851625,2851625,1406,560,1143289309,1069781903,100,100,100,100,2.92,2.86,0.25,0.27
-38720,28,011,28011,293,114,49461139,48454048,597,312,134749333,127680132,34145,14070,2346056686,2270314566,49.08,36.54,36.71,37.95,0.86,0.81,2.11,2.13
-38720,28,027,28027,304,198,85288194,79226084,597,312,134749333,127680132,26151,10792,1510357701,1430818231,50.92,63.46,63.29,62.05,1.16,1.83,5.65,5.54
-38721,28,125,28125,1230,557,310756087,307613122,1230,557,310756087,307613122,4916,2100,1126956092,1118149626,100,100,100,100,25.02,26.52,27.57,27.51
-38722,28,151,28151,531,240,83865343,82940963,531,240,83865343,82940963,51137,21708,1971566700,1877071141,100,100,100,100,1.04,1.11,4.25,4.42
-38723,28,151,28151,33,21,1329452,1329452,33,21,1329452,1329452,51137,21708,1971566700,1877071141,100,100,100,100,0.06,0.1,0.07,0.07
-38725,28,011,28011,998,491,357758344,339756239,998,491,357758344,339756239,34145,14070,2346056686,2270314566,100,100,100,100,2.92,3.49,15.25,14.97
-38726,28,011,28011,532,231,160136898,149322052,532,231,160136898,149322052,34145,14070,2346056686,2270314566,100,100,100,100,1.56,1.64,6.83,6.58
-38730,28,011,28011,1718,691,128673562,127707803,1718,691,128673562,127707803,34145,14070,2346056686,2270314566,100,100,100,100,5.03,4.91,5.48,5.63
-38731,28,151,28151,129,77,27467974,15038787,129,77,27467974,15038787,51137,21708,1971566700,1877071141,100,100,100,100,0.25,0.35,1.39,0.8
-38732,28,011,28011,17653,7034,175988455,172645907,17981,7171,209252744,205864732,34145,14070,2346056686,2270314566,98.18,98.09,84.1,83.86,51.7,49.99,7.5,7.6
-38732,28,133,28133,328,137,33264289,33218825,17981,7171,209252744,205864732,29450,9685,1830934477,1807175516,1.82,1.91,15.9,16.14,1.11,1.41,1.82,1.84
-38736,28,083,28083,58,14,9395254,9295147,440,181,161524516,160231927,32317,13199,1570515252,1534668183,13.18,7.73,5.82,5.8,0.18,0.11,0.6,0.61
-38736,28,133,28133,382,167,152129262,150936780,440,181,161524516,160231927,29450,9685,1830934477,1807175516,86.82,92.27,94.18,94.2,1.3,1.72,8.31,8.35
-38737,28,133,28133,2893,1182,264539106,263444774,2932,1201,338081173,336522283,29450,9685,1830934477,1807175516,98.67,98.42,78.25,78.28,9.82,12.2,14.45,14.58
-38737,28,135,28135,39,19,73542067,73077509,2932,1201,338081173,336522283,15378,5530,1689038557,1671287200,1.33,1.58,21.75,21.72,0.25,0.34,4.35,4.37
-38738,28,133,28133,3998,85,41369689,41335907,3998,85,41369689,41335907,29450,9685,1830934477,1807175516,100,100,100,100,13.58,0.88,2.26,2.29
-38740,28,011,28011,466,189,176642289,174335044,466,189,176642289,174335044,34145,14070,2346056686,2270314566,100,100,100,100,1.36,1.34,7.53,7.68
-38744,28,055,28055,108,53,57131643,56666022,682,299,159224441,156569198,1406,560,1143289309,1069781903,15.84,17.73,35.88,36.19,7.68,9.46,5,5.3
-38744,28,151,28151,574,246,102092798,99903176,682,299,159224441,156569198,51137,21708,1971566700,1877071141,84.16,82.27,64.12,63.81,1.12,1.13,5.18,5.32
-38745,28,055,28055,144,64,49644508,49515942,144,64,49644508,49515942,1406,560,1143289309,1069781903,100,100,100,100,10.24,11.43,4.34,4.63
-38746,28,011,28011,616,271,174951228,166055482,616,271,174951228,166055482,34145,14070,2346056686,2270314566,100,100,100,100,1.8,1.93,7.46,7.31
-38748,28,125,28125,65,28,43127051,43116353,3901,1642,732771776,701964100,4916,2100,1126956092,1118149626,1.67,1.71,5.89,6.14,1.32,1.33,3.83,3.86
-38748,28,151,28151,3836,1614,689644725,658847747,3901,1642,732771776,701964100,51137,21708,1971566700,1877071141,98.33,98.29,94.11,93.86,7.5,7.44,34.98,35.1
-38749,28,133,28133,26,12,763451,763451,26,12,763451,763451,29450,9685,1830934477,1807175516,100,100,100,100,0.09,0.12,0.04,0.04
-38751,28,133,28133,11638,4379,400825134,395587606,11638,4379,400825134,395587606,29450,9685,1830934477,1807175516,100,100,100,100,39.52,45.21,21.89,21.89
-38753,28,053,28053,70,37,25230960,24652973,1456,616,212967257,209377492,9375,3855,1116889853,1083886754,4.81,6.01,11.85,11.77,0.75,0.96,2.26,2.27
-38753,28,133,28133,1386,579,187736297,184724519,1456,616,212967257,209377492,29450,9685,1830934477,1807175516,95.19,93.99,88.15,88.23,4.71,5.98,10.25,10.22
-38754,28,053,28053,1448,641,171309478,168062075,1532,681,234437734,228754993,9375,3855,1116889853,1083886754,94.52,94.13,73.07,73.47,15.45,16.63,15.34,15.51
-38754,28,133,28133,84,40,63128256,60692918,1532,681,234437734,228754993,29450,9685,1830934477,1807175516,5.48,5.87,26.93,26.53,0.29,0.41,3.45,3.36
-38756,28,151,28151,6462,2819,452456761,448488064,6462,2819,452456761,448488064,51137,21708,1971566700,1877071141,100,100,100,100,12.64,12.99,22.95,23.89
-38759,28,011,28011,885,366,109530629,109039788,1194,530,159631132,158962774,34145,14070,2346056686,2270314566,74.12,69.06,68.61,68.59,2.59,2.6,4.67,4.8
-38759,28,133,28133,309,164,50100503,49922986,1194,530,159631132,158962774,29450,9685,1830934477,1807175516,25.88,30.94,31.39,31.41,1.05,1.69,2.74,2.76
-38760,28,151,28151,929,368,14908942,14908942,929,368,14908942,14908942,51137,21708,1971566700,1877071141,100,100,100,100,1.82,1.7,0.76,0.79
-38761,28,083,28083,38,17,30243537,29939913,2870,878,138105812,131957057,32317,13199,1570515252,1534668183,1.32,1.94,21.9,22.69,0.12,0.13,1.93,1.95
-38761,28,133,28133,2832,861,107862275,102017144,2870,878,138105812,131957057,29450,9685,1830934477,1807175516,98.68,98.06,78.1,77.31,9.62,8.89,5.89,5.65
-38762,28,011,28011,2292,976,130566156,130020682,2294,980,176018505,175397145,34145,14070,2346056686,2270314566,99.91,99.59,74.18,74.13,6.71,6.94,5.57,5.73
-38762,28,133,28133,2,4,45452349,45376463,2294,980,176018505,175397145,29450,9685,1830934477,1807175516,0.09,0.41,25.82,25.87,0.01,0.04,2.48,2.51
-38764,28,011,28011,430,174,16676406,16259528,430,174,16676406,16259528,34145,14070,2346056686,2270314566,100,100,100,100,1.26,1.24,0.71,0.72
-38765,28,125,28125,201,79,44127595,44127595,201,79,44127595,44127595,4916,2100,1126956092,1118149626,100,100,100,100,4.09,3.76,3.92,3.95
-38767,28,027,28027,77,36,5671941,5671941,77,36,5671941,5671941,26151,10792,1510357701,1430818231,100,100,100,100,0.29,0.33,0.38,0.4
-38768,28,133,28133,182,79,24578517,24543480,182,79,24578517,24543480,29450,9685,1830934477,1807175516,100,100,100,100,0.62,0.82,1.34,1.36
-38769,05,041,05041,2,1,17971951,16161076,2216,948,261905606,240750620,13008,6261,2122562726,1989504302,0.09,0.11,6.86,6.71,0.02,0.02,0.85,0.81
-38769,28,011,28011,2214,947,243933655,224589544,2216,948,261905606,240750620,34145,14070,2346056686,2270314566,99.91,99.89,93.14,93.29,6.48,6.73,10.4,9.89
-38771,28,133,28133,3260,1195,148381912,147169874,3260,1195,148381912,147169874,29450,9685,1830934477,1807175516,100,100,100,100,11.07,12.34,8.1,8.14
-38772,28,011,28011,182,73,38004500,37729434,182,73,38004500,37729434,34145,14070,2346056686,2270314566,100,100,100,100,0.53,0.52,1.62,1.66
-38773,28,011,28011,2964,1267,266496116,266251441,3375,1448,383738143,382994993,34145,14070,2346056686,2270314566,87.82,87.5,69.45,69.52,8.68,9,11.36,11.73
-38773,28,133,28133,411,181,117242027,116743552,3375,1448,383738143,382994993,29450,9685,1830934477,1807175516,12.18,12.5,30.55,30.48,1.4,1.87,6.4,6.46
-38774,28,011,28011,2522,1012,193567172,192991272,2522,1012,193567172,192991272,34145,14070,2346056686,2270314566,100,100,100,100,7.39,7.19,8.25,8.5
-38778,28,133,28133,1686,608,182922688,180058515,1686,608,182922688,180058515,29450,9685,1830934477,1807175516,100,100,100,100,5.72,6.28,9.99,9.96
-38781,28,011,28011,252,130,2566963,2566963,252,130,2566963,2566963,34145,14070,2346056686,2270314566,100,100,100,100,0.74,0.92,0.11,0.11
-38801,28,081,28081,28676,12471,162789391,162092807,29871,12984,196812169,195751429,82910,35872,1173717006,1165367603,96,96.05,82.71,82.81,34.59,34.77,13.87,13.91
-38801,28,115,28115,1195,513,34022778,33658622,29871,12984,196812169,195751429,29957,12440,1297639256,1289009028,4,3.95,17.29,17.19,3.99,4.12,2.62,2.61
-38804,28,057,28057,262,113,5940742,5940742,17285,7936,211067667,209552511,23401,10126,1399758826,1379911657,1.52,1.42,2.81,2.83,1.12,1.12,0.42,0.43
-38804,28,081,28081,17023,7823,205126925,203611769,17285,7936,211067667,209552511,82910,35872,1173717006,1165367603,98.48,98.58,97.19,97.17,20.53,21.81,17.48,17.47
-38821,28,095,28095,12528,5662,374496631,369402541,12528,5662,374496631,369402541,36989,16455,1999718827,1981584651,100,100,100,100,33.87,34.41,18.73,18.64
-38824,28,057,28057,558,234,30157027,30157027,7832,3449,354399448,353997438,23401,10126,1399758826,1379911657,7.12,6.78,8.51,8.52,2.38,2.31,2.15,2.19
-38824,28,081,28081,2669,1174,95250200,95140863,7832,3449,354399448,353997438,82910,35872,1173717006,1165367603,34.08,34.04,26.88,26.88,3.22,3.27,8.12,8.16
-38824,28,117,28117,4037,1797,165331736,165076697,7832,3449,354399448,353997438,25276,11054,1083131721,1074793690,51.54,52.1,46.65,46.63,15.97,16.26,15.26,15.36
-38824,28,139,28139,60,31,22660735,22623101,7832,3449,354399448,353997438,22232,9696,1191277173,1185734808,0.77,0.9,6.39,6.39,0.27,0.32,1.9,1.91
-38824,28,145,28145,508,213,40999750,40999750,7832,3449,354399448,353997438,27134,11520,1079781821,1076394333,6.49,6.18,11.57,11.58,1.87,1.85,3.8,3.81
-38826,28,081,28081,2951,1271,22970202,22915685,4703,1987,82181229,80620141,82910,35872,1173717006,1165367603,62.75,63.97,27.95,28.42,3.56,3.54,1.96,1.97
-38826,28,115,28115,1752,716,59211027,57704456,4703,1987,82181229,80620141,29957,12440,1297639256,1289009028,37.25,36.03,72.05,71.58,5.85,5.76,4.56,4.48
-38827,28,141,28141,2733,1236,90646626,90612849,2733,1236,90646626,90612849,19593,10295,1151298845,1098813904,100,100,100,100,13.95,12.01,7.87,8.25
-38828,28,081,28081,229,93,9292967,9292967,3970,1710,220279477,219623049,82910,35872,1173717006,1165367603,5.77,5.44,4.22,4.23,0.28,0.26,0.79,0.8
-38828,28,115,28115,274,122,17007407,17007407,3970,1710,220279477,219623049,29957,12440,1297639256,1289009028,6.9,7.13,7.72,7.74,0.91,0.98,1.31,1.32
-38828,28,145,28145,3467,1495,193979103,193322675,3970,1710,220279477,219623049,27134,11520,1079781821,1076394333,87.33,87.43,88.06,88.02,12.78,12.98,17.96,17.96
-38829,28,117,28117,18318,7858,662314734,661228743,18707,8071,695885655,694283047,25276,11054,1083131721,1074793690,97.92,97.36,95.18,95.24,72.47,71.09,61.15,61.52
-38829,28,139,28139,389,213,33570921,33054304,18707,8071,695885655,694283047,22232,9696,1191277173,1185734808,2.08,2.64,4.82,4.76,1.75,2.2,2.82,2.79
-38833,28,003,28003,143,68,16252946,16252946,2370,1132,138252583,135894844,37057,17077,1039518498,1036092671,6.03,6.01,11.76,11.96,0.39,0.4,1.56,1.57
-38833,28,117,28117,155,74,7426058,7426058,2370,1132,138252583,135894844,25276,11054,1083131721,1074793690,6.54,6.54,5.37,5.46,0.61,0.67,0.69,0.69
-38833,28,141,28141,2072,990,114573579,112215840,2370,1132,138252583,135894844,19593,10295,1151298845,1098813904,87.43,87.46,82.87,82.58,10.58,9.62,9.95,10.21
-38834,28,003,28003,29133,13499,568905446,565835370,29133,13499,568905446,565835370,37057,17077,1039518498,1036092671,100,100,100,100,78.62,79.05,54.73,54.61
-38838,28,141,28141,1629,757,133269676,122334083,1629,757,133269676,122334083,19593,10295,1151298845,1098813904,100,100,100,100,8.31,7.35,11.58,11.13
-38841,28,115,28115,2676,1109,76624972,76477464,2775,1143,81350907,81203399,29957,12440,1297639256,1289009028,96.43,97.03,94.19,94.18,8.93,8.91,5.9,5.93
-38841,28,145,28145,99,34,4725935,4725935,2775,1143,81350907,81203399,27134,11520,1079781821,1076394333,3.57,2.97,5.81,5.82,0.36,0.3,0.44,0.44
-38843,28,057,28057,11433,4863,522505714,508733727,11467,4877,524802209,511030222,23401,10126,1399758826,1379911657,99.7,99.71,99.56,99.55,48.86,48.02,37.33,36.87
-38843,28,081,28081,34,14,2296495,2296495,11467,4877,524802209,511030222,82910,35872,1173717006,1165367603,0.3,0.29,0.44,0.45,0.04,0.04,0.2,0.2
-38844,28,095,28095,131,75,32914630,32914630,131,75,32914630,32914630,36989,16455,1999718827,1981584651,100,100,100,100,0.35,0.46,1.65,1.66
-38846,28,003,28003,2097,902,77820791,77724961,2446,1048,98015598,97896298,37057,17077,1039518498,1036092671,85.73,86.07,79.4,79.4,5.66,5.28,7.49,7.5
-38846,28,141,28141,349,146,20194807,20171337,2446,1048,98015598,97896298,19593,10295,1151298845,1098813904,14.27,13.93,20.6,20.6,1.78,1.42,1.75,1.84
-38847,28,057,28057,2624,1146,203086644,202948875,3501,1573,233238648,233100879,23401,10126,1399758826,1379911657,74.95,72.85,87.07,87.06,11.21,11.32,14.51,14.71
-38847,28,141,28141,877,427,30152004,30152004,3501,1573,233238648,233100879,19593,10295,1151298845,1098813904,25.05,27.15,12.93,12.94,4.48,4.15,2.62,2.74
-38848,28,095,28095,848,386,194550271,194374740,848,386,194550271,194374740,36989,16455,1999718827,1981584651,100,100,100,100,2.29,2.35,9.73,9.81
-38849,28,057,28057,30,18,1711470,1711470,5702,2278,184284968,183307981,23401,10126,1399758826,1379911657,0.53,0.79,0.93,0.93,0.13,0.18,0.12,0.12
-38849,28,081,28081,5176,2058,147641271,146665355,5702,2278,184284968,183307981,82910,35872,1173717006,1165367603,90.78,90.34,80.12,80.01,6.24,5.74,12.58,12.59
-38849,28,145,28145,496,202,34932227,34931156,5702,2278,184284968,183307981,27134,11520,1079781821,1076394333,8.7,8.87,18.96,19.06,1.83,1.75,3.24,3.25
-38850,28,013,28013,238,115,38545340,38522552,3141,1334,321680001,318634854,14962,6913,1522808490,1519218090,7.58,8.62,11.98,12.09,1.59,1.66,2.53,2.54
-38850,28,017,28017,2306,980,215879385,213177516,3141,1334,321680001,318634854,17392,7514,1305991080,1299602163,73.42,73.46,67.11,66.9,13.26,13.04,16.53,16.4
-38850,28,115,28115,597,239,67255276,66934786,3141,1334,321680001,318634854,29957,12440,1297639256,1289009028,19.01,17.92,20.91,21.01,1.99,1.92,5.18,5.19
-38851,28,017,28017,8408,3568,573547791,571828136,8408,3568,573547791,571828136,17392,7514,1305991080,1299602163,100,100,100,100,48.34,47.48,43.92,44
-38852,01,033,01033,51,66,9565886,3706134,9449,5493,551120700,518270418,54428,25758,1611308146,1534877333,0.54,1.2,1.74,0.72,0.09,0.26,0.59,0.24
-38852,28,141,28141,9398,5427,541554814,514564284,9449,5493,551120700,518270418,19593,10295,1151298845,1098813904,99.46,98.8,98.26,99.28,47.97,52.71,47.04,46.83
-38855,28,057,28057,4602,2026,157340183,154835954,4602,2026,157340183,154835954,23401,10126,1399758826,1379911657,100,100,100,100,19.67,20.01,11.24,11.22
-38856,28,057,28057,896,400,86136206,83916950,1788,819,160914902,158576505,23401,10126,1399758826,1379911657,50.11,48.84,53.53,52.92,3.83,3.95,6.15,6.08
-38856,28,117,28117,892,419,74778696,74659555,1788,819,160914902,158576505,25276,11054,1083131721,1074793690,49.89,51.16,46.47,47.08,3.53,3.79,6.9,6.95
-38857,28,081,28081,3252,1278,49224881,49079907,3252,1278,49224881,49079907,82910,35872,1173717006,1165367603,100,100,100,100,3.92,3.56,4.19,4.21
-38858,28,057,28057,1533,638,141155076,139982184,7176,3051,329648856,328243327,23401,10126,1399758826,1379911657,21.36,20.91,42.82,42.65,6.55,6.3,10.08,10.14
-38858,28,081,28081,2485,1022,56930719,56712494,7176,3051,329648856,328243327,82910,35872,1173717006,1165367603,34.63,33.5,17.27,17.28,3,2.85,4.85,4.87
-38858,28,095,28095,3158,1391,131563061,131548649,7176,3051,329648856,328243327,36989,16455,1999718827,1981584651,44.01,45.59,39.91,40.08,8.54,8.45,6.58,6.64
-38859,28,117,28117,749,400,116624114,110731857,749,400,116624114,110731857,25276,11054,1083131721,1074793690,100,100,100,100,2.96,3.62,10.77,10.3
-38860,28,017,28017,4738,2135,277575711,276163092,5663,2501,340116341,338543710,17392,7514,1305991080,1299602163,83.67,85.37,81.61,81.57,27.24,28.41,21.25,21.25
-38860,28,081,28081,170,75,7022205,6983141,5663,2501,340116341,338543710,82910,35872,1173717006,1165367603,3,3,2.06,2.06,0.21,0.21,0.6,0.6
-38860,28,095,28095,755,291,55518425,55397477,5663,2501,340116341,338543710,36989,16455,1999718827,1981584651,13.33,11.64,16.32,16.36,2.04,1.77,2.78,2.8
-38862,28,081,28081,2731,1158,76863425,76673328,2731,1158,76863425,76673328,82910,35872,1173717006,1165367603,100,100,100,100,3.29,3.23,6.55,6.58
-38863,28,071,28071,7,4,11420509,11420509,19788,8196,736181979,731646053,47351,22729,1759138693,1636116444,0.04,0.05,1.55,1.56,0.01,0.02,0.65,0.7
-38863,28,115,28115,19781,8192,724761470,720225544,19788,8196,736181979,731646053,29957,12440,1297639256,1289009028,99.96,99.95,98.45,98.44,66.03,65.85,55.85,55.87
-38864,28,013,28013,285,141,66919941,66863037,1701,749,231283855,230674673,14962,6913,1522808490,1519218090,16.75,18.83,28.93,28.99,1.9,2.04,4.39,4.4
-38864,28,115,28115,1416,608,164363914,163811636,1701,749,231283855,230674673,29957,12440,1297639256,1289009028,83.25,81.17,71.07,71.01,4.73,4.89,12.67,12.71
-38865,28,003,28003,3784,1702,246716214,246587116,4698,2107,292966764,291853308,37057,17077,1039518498,1036092671,80.54,80.78,84.21,84.49,10.21,9.97,23.73,23.8
-38865,28,117,28117,914,405,46250550,45266192,4698,2107,292966764,291853308,25276,11054,1083131721,1074793690,19.46,19.22,15.79,15.51,3.62,3.66,4.27,4.21
-38866,28,081,28081,11897,4944,198571852,194370151,11897,4944,198571852,194370151,82910,35872,1173717006,1165367603,100,100,100,100,14.35,13.78,16.92,16.68
-38868,28,017,28017,152,61,6001756,6001756,5481,2396,192662510,192481801,17392,7514,1305991080,1299602163,2.77,2.55,3.12,3.12,0.87,0.81,0.46,0.46
-38868,28,081,28081,4832,2121,136650235,136469526,5481,2396,192662510,192481801,82910,35872,1173717006,1165367603,88.16,88.52,70.93,70.9,5.83,5.91,11.64,11.71
-38868,28,095,28095,188,86,11776578,11776578,5481,2396,192662510,192481801,36989,16455,1999718827,1981584651,3.43,3.59,6.11,6.12,0.51,0.52,0.59,0.59
-38868,28,115,28115,309,128,38233941,38233941,5481,2396,192662510,192481801,29957,12440,1297639256,1289009028,5.64,5.34,19.85,19.86,1.03,1.03,2.95,2.97
-38869,28,115,28115,478,204,3494201,3494201,478,204,3494201,3494201,29957,12440,1297639256,1289009028,100,100,100,100,1.6,1.64,0.27,0.27
-38870,28,057,28057,141,67,49647018,49647018,3122,1378,172242429,167633261,23401,10126,1399758826,1379911657,4.52,4.86,28.82,29.62,0.6,0.66,3.55,3.6
-38870,28,095,28095,2981,1311,122595411,117986243,3122,1378,172242429,167633261,36989,16455,1999718827,1981584651,95.48,95.14,71.18,70.38,8.06,7.97,6.13,5.95
-38871,28,071,28071,133,64,21818859,21686118,1640,691,141225779,139889739,47351,22729,1759138693,1636116444,8.11,9.26,15.45,15.5,0.28,0.28,1.24,1.33
-38871,28,115,28115,1479,609,112664270,111460971,1640,691,141225779,139889739,29957,12440,1297639256,1289009028,90.18,88.13,79.78,79.68,4.94,4.9,8.68,8.65
-38871,28,145,28145,28,18,6742650,6742650,1640,691,141225779,139889739,27134,11520,1079781821,1076394333,1.71,2.6,4.77,4.82,0.1,0.16,0.62,0.63
-38873,28,117,28117,211,101,10405833,10404588,2719,1327,230398440,218253363,25276,11054,1083131721,1074793690,7.76,7.61,4.52,4.77,0.83,0.91,0.96,0.97
-38873,28,141,28141,2508,1226,219992607,207848775,2719,1327,230398440,218253363,19593,10295,1151298845,1098813904,92.24,92.39,95.48,95.23,12.8,11.91,19.11,18.92
-38876,28,057,28057,1322,621,202078746,202037710,1322,621,202078746,202037710,23401,10126,1399758826,1379911657,100,100,100,100,5.65,6.13,14.44,14.64
-38878,28,013,28013,2820,1144,202071876,201947868,2864,1158,210247570,210123562,14962,6913,1522808490,1519218090,98.46,98.79,96.11,96.11,18.85,16.55,13.27,13.29
-38878,28,017,28017,44,14,8175694,8175694,2864,1158,210247570,210123562,17392,7514,1305991080,1299602163,1.54,1.21,3.89,3.89,0.25,0.19,0.63,0.63
-38879,28,081,28081,785,370,3086238,3063115,785,370,3086238,3063115,82910,35872,1173717006,1165367603,100,100,100,100,0.95,1.03,0.26,0.26
-38901,28,015,28015,313,155,70290726,69925938,18403,8343,648295003,620295438,10597,5052,1643567720,1627140835,1.7,1.86,10.84,11.27,2.95,3.07,4.28,4.3
-38901,28,043,28043,18021,8144,554332148,526697371,18403,8343,648295003,620295438,21906,10155,1163949961,1093251406,97.92,97.61,85.51,84.91,82.27,80.2,47.63,48.18
-38901,28,135,28135,69,44,23672129,23672129,18403,8343,648295003,620295438,15378,5530,1689038557,1671287200,0.37,0.53,3.65,3.82,0.45,0.8,1.4,1.42
-38913,28,013,28013,396,193,81228849,80771903,396,193,81228849,80771903,14962,6913,1522808490,1519218090,100,100,100,100,2.65,2.79,5.33,5.32
-38914,28,013,28013,484,228,114682837,113985521,552,260,122883769,122186453,14962,6913,1522808490,1519218090,87.68,87.69,93.33,93.29,3.23,3.3,7.53,7.5
-38914,28,043,28043,68,32,8200932,8200932,552,260,122883769,122186453,21906,10155,1163949961,1093251406,12.32,12.31,6.67,6.71,0.31,0.32,0.7,0.75
-38915,28,013,28013,4046,1926,284632069,284118115,4046,1926,284632069,284118115,14962,6913,1522808490,1519218090,100,100,100,100,27.04,27.86,18.69,18.7
-38916,28,013,28013,4989,2376,456883102,455912850,5049,2412,468484836,467438994,14962,6913,1522808490,1519218090,98.81,98.51,97.52,97.53,33.34,34.37,30,30.01
-38916,28,155,28155,60,36,11601734,11526144,5049,2412,468484836,467438994,10253,4804,1096168963,1090230505,1.19,1.49,2.48,2.47,0.59,0.75,1.06,1.06
-38917,28,015,28015,3258,1613,439634035,431664378,3258,1613,439634035,431664378,10597,5052,1643567720,1627140835,100,100,100,100,30.74,31.93,26.75,26.53
-38920,28,135,28135,804,374,147145060,146323763,804,374,147145060,146323763,15378,5530,1689038557,1671287200,100,100,100,100,5.23,6.76,8.71,8.76
-38921,28,135,28135,5061,2133,371240811,364874388,5061,2133,371240811,364874388,15378,5530,1689038557,1671287200,100,100,100,100,32.91,38.57,21.98,21.83
-38922,28,043,28043,467,361,132168758,93397075,3451,1950,614186810,559130783,21906,10155,1163949961,1093251406,13.53,18.51,21.52,16.7,2.13,3.55,11.36,8.54
-38922,28,161,28161,2984,1589,482018052,465733708,3451,1950,614186810,559130783,12678,6344,1282055365,1209858331,86.47,81.49,78.48,83.3,23.54,25.05,37.6,38.49
-38923,28,015,28015,1293,612,207436253,205525947,1293,612,207436253,205525947,10597,5052,1643567720,1627140835,100,100,100,100,12.2,12.11,12.62,12.63
-38924,28,015,28015,75,48,29634223,29427378,771,368,273323649,268732615,10597,5052,1643567720,1627140835,9.73,13.04,10.84,10.95,0.71,0.95,1.8,1.81
-38924,28,051,28051,661,295,172085941,169943907,771,368,273323649,268732615,19198,8415,1980350161,1959840949,85.73,80.16,62.96,63.24,3.44,3.51,8.69,8.67
-38924,28,053,28053,9,9,52062235,49820080,771,368,273323649,268732615,9375,3855,1116889853,1083886754,1.17,2.45,19.05,18.54,0.1,0.23,4.66,4.6
-38924,28,083,28083,26,16,19541250,19541250,771,368,273323649,268732615,32317,13199,1570515252,1534668183,3.37,4.35,7.15,7.27,0.08,0.12,1.24,1.27
-38925,28,043,28043,372,176,39296243,39161523,2363,1132,388298456,387019698,21906,10155,1163949961,1093251406,15.74,15.55,10.12,10.12,1.7,1.73,3.38,3.58
-38925,28,097,28097,1969,939,332567681,331526394,2363,1132,388298456,387019698,10925,5194,1056427226,1054074954,83.33,82.95,85.65,85.66,18.02,18.08,31.48,31.45
-38925,28,155,28155,22,17,16434532,16331781,2363,1132,388298456,387019698,10253,4804,1096168963,1090230505,0.93,1.5,4.23,4.22,0.21,0.35,1.5,1.5
-38927,28,107,28107,168,68,21603675,21594887,1186,493,159605760,159413974,34707,14697,1826282565,1774515519,14.17,13.79,13.54,13.55,0.48,0.46,1.18,1.22
-38927,28,135,28135,1010,422,137793086,137610088,1186,493,159605760,159413974,15378,5530,1689038557,1671287200,85.16,85.6,86.33,86.32,6.57,7.63,8.16,8.23
-38927,28,161,28161,8,3,208999,208999,1186,493,159605760,159413974,12678,6344,1282055365,1209858331,0.67,0.61,0.13,0.13,0.06,0.05,0.02,0.02
-38928,28,135,28135,497,179,119849829,118394435,497,179,119849829,118394435,15378,5530,1689038557,1671287200,100,100,100,100,3.23,3.24,7.1,7.08
-38929,28,013,28013,43,25,9869282,9869282,1317,684,201707014,200360472,14962,6913,1522808490,1519218090,3.26,3.65,4.89,4.93,0.29,0.36,0.65,0.65
-38929,28,043,28043,1135,575,133620004,132497668,1317,684,201707014,200360472,21906,10155,1163949961,1093251406,86.18,84.06,66.24,66.13,5.18,5.66,11.48,12.12
-38929,28,155,28155,139,84,58217728,57993522,1317,684,201707014,200360472,10253,4804,1096168963,1090230505,10.55,12.28,28.86,28.94,1.36,1.75,5.31,5.32
-38930,28,015,28015,1302,578,192698806,191373871,25297,10483,529280354,519060708,10597,5052,1643567720,1627140835,5.15,5.51,36.41,36.87,12.29,11.44,11.72,11.76
-38930,28,083,28083,23995,9905,336581548,327686837,25297,10483,529280354,519060708,32317,13199,1570515252,1534668183,94.85,94.49,63.59,63.13,74.25,75.04,21.43,21.35
-38940,28,015,28015,80,40,22560064,22283989,2141,998,389464655,385495499,10597,5052,1643567720,1627140835,3.74,4.01,5.79,5.78,0.75,0.79,1.37,1.37
-38940,28,043,28043,1729,812,287855489,284820450,2141,998,389464655,385495499,21906,10155,1163949961,1093251406,80.76,81.36,73.91,73.88,7.89,8,24.73,26.05
-38940,28,135,28135,332,146,79049102,78391060,2141,998,389464655,385495499,15378,5530,1689038557,1671287200,15.51,14.63,20.3,20.34,2.16,2.64,4.68,4.69
-38941,28,083,28083,5282,1956,248460246,245863882,5282,1956,248460246,245863882,32317,13199,1570515252,1534668183,100,100,100,100,16.34,14.82,15.82,16.02
-38943,28,015,28015,526,258,70817478,69272457,526,258,70817478,69272457,10597,5052,1643567720,1627140835,100,100,100,100,4.96,5.11,4.31,4.26
-38944,28,083,28083,504,236,248884230,244921574,504,236,248884230,244921574,32317,13199,1570515252,1534668183,100,100,100,100,1.56,1.79,15.85,15.96
-38945,28,083,28083,35,15,46103339,45585659,35,15,46103339,45585659,32317,13199,1570515252,1534668183,100,100,100,100,0.11,0.11,2.94,2.97
-38946,28,083,28083,362,151,82423303,79088747,362,151,82423303,79088747,32317,13199,1570515252,1534668183,100,100,100,100,1.12,1.14,5.25,5.15
-38947,28,015,28015,445,219,6240836,6071864,445,219,6240836,6071864,10597,5052,1643567720,1627140835,100,100,100,100,4.2,4.33,0.38,0.37
-38948,28,135,28135,658,307,99683498,99537953,2288,1297,353829090,315277568,15378,5530,1689038557,1671287200,28.76,23.67,28.17,31.57,4.28,5.55,5.9,5.96
-38948,28,161,28161,1630,990,254145592,215739615,2288,1297,353829090,315277568,12678,6344,1282055365,1209858331,71.24,76.33,71.83,68.43,12.86,15.61,19.82,17.83
-38949,28,071,28071,297,135,42760692,42719783,297,135,42760692,42719783,47351,22729,1759138693,1636116444,100,100,100,100,0.63,0.59,2.43,2.61
-38950,28,135,28135,334,185,98184644,97057749,334,185,98184644,97057749,15378,5530,1689038557,1671287200,100,100,100,100,2.17,3.35,5.81,5.81
-38951,28,013,28013,1316,587,153108491,152877494,1316,587,153108491,152877494,14962,6913,1522808490,1519218090,100,100,100,100,8.8,8.49,10.05,10.06
-38952,28,083,28083,611,274,287751176,285851350,611,274,287751176,285851350,32317,13199,1570515252,1534668183,100,100,100,100,1.89,2.08,18.32,18.63
-38953,28,043,28043,114,55,8476387,8476387,798,386,114542443,114299364,21906,10155,1163949961,1093251406,14.29,14.25,7.4,7.42,0.52,0.54,0.73,0.78
-38953,28,135,28135,361,167,58422691,58275418,798,386,114542443,114299364,15378,5530,1689038557,1671287200,45.24,43.26,51.01,50.98,2.35,3.02,3.46,3.49
-38953,28,161,28161,323,164,47643365,47547559,798,386,114542443,114299364,12678,6344,1282055365,1209858331,40.48,42.49,41.59,41.6,2.55,2.59,3.72,3.93
-38954,28,015,28015,190,78,33021185,32372564,1514,630,185155609,175964140,10597,5052,1643567720,1627140835,12.55,12.38,17.83,18.4,1.79,1.54,2.01,1.99
-38954,28,083,28083,1324,552,152134424,143591576,1514,630,185155609,175964140,32317,13199,1570515252,1534668183,87.45,87.62,82.17,81.6,4.1,4.18,9.69,9.36
-38957,28,135,28135,734,340,55068858,55068858,734,340,55068858,55068858,15378,5530,1689038557,1671287200,100,100,100,100,4.77,6.15,3.26,3.29
-38958,28,083,28083,38,37,30864467,30271478,38,37,30864467,30271478,32317,13199,1570515252,1534668183,100,100,100,100,0.12,0.28,1.97,1.97
-38961,28,135,28135,256,111,44320458,44316784,803,386,146025951,145267290,15378,5530,1689038557,1671287200,31.88,28.76,30.35,30.51,1.66,2.01,2.62,2.65
-38961,28,161,28161,547,275,101705493,100950506,803,386,146025951,145267290,12678,6344,1282055365,1209858331,68.12,71.24,69.65,69.49,4.31,4.33,7.93,8.34
-38962,28,135,28135,149,64,41452089,40049296,149,64,41452089,40049296,15378,5530,1689038557,1671287200,100,100,100,100,0.97,1.16,2.45,2.4
-38963,28,027,28027,120,59,76150954,76048074,4015,631,272375115,270502418,26151,10792,1510357701,1430818231,2.99,9.35,27.96,28.11,0.46,0.55,5.04,5.32
-38963,28,133,28133,33,12,10638722,10638722,4015,631,272375115,270502418,29450,9685,1830934477,1807175516,0.82,1.9,3.91,3.93,0.11,0.12,0.58,0.59
-38963,28,135,28135,3862,560,185585439,183815622,4015,631,272375115,270502418,15378,5530,1689038557,1671287200,96.19,88.75,68.14,67.95,25.11,10.13,10.99,11
-38964,28,119,28119,74,42,59922182,59898589,104,57,77561583,77450043,8223,3589,1052653109,1048977108,71.15,73.68,77.26,77.34,0.9,1.17,5.69,5.71
-38964,28,135,28135,30,15,17639401,17551454,104,57,77561583,77450043,15378,5530,1689038557,1671287200,28.85,26.32,22.74,22.66,0.2,0.27,1.04,1.05
-38965,28,013,28013,307,160,92624158,92119713,9135,4252,654570400,636098740,14962,6913,1522808490,1519218090,3.36,3.76,14.15,14.48,2.05,2.31,6.08,6.06
-38965,28,071,28071,1403,657,131692293,130478963,9135,4252,654570400,636098740,47351,22729,1759138693,1636116444,15.36,15.45,20.12,20.51,2.96,2.89,7.49,7.97
-38965,28,107,28107,239,112,33920085,33822120,9135,4252,654570400,636098740,34707,14697,1826282565,1774515519,2.62,2.63,5.18,5.32,0.69,0.76,1.86,1.91
-38965,28,161,28161,7186,3323,396333864,379677944,9135,4252,654570400,636098740,12678,6344,1282055365,1209858331,78.66,78.15,60.55,59.69,56.68,52.38,30.91,31.38
-38966,28,135,28135,1174,453,112858415,111239171,1174,453,112858415,111239171,15378,5530,1689038557,1671287200,100,100,100,100,7.63,8.19,6.68,6.66
-38967,28,015,28015,1117,391,219334766,218101319,7755,3376,484948793,482896238,10597,5052,1643567720,1627140835,14.4,11.58,45.23,45.17,10.54,7.74,13.35,13.4
-38967,28,097,28097,6638,2985,265614027,264794919,7755,3376,484948793,482896238,10925,5194,1056427226,1054074954,85.6,88.42,54.77,54.83,60.76,57.47,25.14,25.12
-39038,28,051,28051,139,52,5923511,5911163,6258,2454,566341539,551129679,19198,8415,1980350161,1959840949,2.22,2.12,1.05,1.07,0.72,0.62,0.3,0.3
-39038,28,053,28053,6075,2376,482285550,472187746,6258,2454,566341539,551129679,9375,3855,1116889853,1083886754,97.08,96.82,85.16,85.68,64.8,61.63,43.18,43.56
-39038,28,083,28083,44,26,78132478,73030770,6258,2454,566341539,551129679,32317,13199,1570515252,1534668183,0.7,1.06,13.8,13.25,0.14,0.2,4.97,4.76
-39039,28,163,28163,2193,941,370897657,369926404,2193,941,370897657,369926404,28065,10074,2419737564,2390421148,100,100,100,100,7.81,9.34,15.33,15.48
-39040,28,163,28163,3295,1421,456294076,453680153,3295,1421,456294076,453680153,28065,10074,2419737564,2390421148,100,100,100,100,11.74,14.11,18.86,18.98
-39041,28,049,28049,3404,1428,336511199,333744406,3404,1428,336511199,333744406,245285,103421,2272175614,2252618859,100,100,100,100,1.39,1.38,14.81,14.82
-39042,28,121,28121,34162,13824,570473825,568943508,34198,13840,579353685,577823368,141617,56487,2087752284,2008496804,99.89,99.88,98.47,98.46,24.12,24.47,27.32,28.33
-39042,28,129,28129,36,16,8879860,8879860,34198,13840,579353685,577823368,16491,7237,1650525526,1647885256,0.11,0.12,1.53,1.54,0.22,0.22,0.54,0.54
-39044,28,121,28121,1238,427,149641363,149337908,3872,1638,363909878,363133294,141617,56487,2087752284,2008496804,31.97,26.07,41.12,41.12,0.87,0.76,7.17,7.44
-39044,28,127,28127,2634,1211,214268515,213795386,3872,1638,363909878,363133294,27503,11934,1529309081,1525925833,68.03,73.93,58.88,58.88,9.58,10.15,14.01,14.01
-39045,28,089,28089,1353,546,300268666,298333561,1353,546,300268666,298333561,95203,38558,1921201388,1850562626,100,100,100,100,1.42,1.42,15.63,16.12
-39046,28,089,28089,26398,10013,813304743,800034393,26398,10013,813304743,800034393,95203,38558,1921201388,1850562626,100,100,100,100,27.73,25.97,42.33,43.23
-39047,28,121,28121,34539,14358,273007873,260474904,34539,14358,273007873,260474904,141617,56487,2087752284,2008496804,100,100,100,100,24.39,25.42,13.08,12.97
-39051,28,007,28007,115,58,14514076,14464896,16569,6855,1094003434,1089074102,19564,9126,1908015901,1903594473,0.69,0.85,1.33,1.33,0.59,0.64,0.76,0.76
-39051,28,079,28079,16069,6624,1008569328,1003942691,16569,6855,1094003434,1089074102,23805,9415,1516378093,1509963962,96.98,96.63,92.19,92.18,67.5,70.36,66.51,66.49
-39051,28,089,28089,102,48,8752354,8716856,16569,6855,1094003434,1089074102,95203,38558,1921201388,1850562626,0.62,0.7,0.8,0.8,0.11,0.12,0.46,0.47
-39051,28,099,28099,283,125,62167676,61949659,16569,6855,1094003434,1089074102,29676,12357,1480471914,1476657637,1.71,1.82,5.68,5.69,0.95,1.01,4.2,4.2
-39054,28,125,28125,341,122,10470544,10470544,341,122,10470544,10470544,4916,2100,1126956092,1118149626,100,100,100,100,6.94,5.81,0.93,0.94
-39056,28,049,28049,25621,10479,140087203,139081633,25621,10479,140087203,139081633,245285,103421,2272175614,2252618859,100,100,100,100,10.45,10.13,6.17,6.17
-39057,28,101,28101,2125,747,143586071,143133007,2291,823,167913836,167421549,21720,9373,1501162093,1497282694,92.75,90.77,85.51,85.49,9.78,7.97,9.56,9.56
-39057,28,123,28123,166,76,24327765,24288542,2291,823,167913836,167421549,28264,11470,1580903579,1577781371,7.25,9.23,14.49,14.51,0.59,0.66,1.54,1.54
-39059,28,029,28029,11849,4867,389563501,388671478,12073,4960,413316566,412343924,29449,12184,2018803983,2013052970,98.14,98.13,94.25,94.26,40.24,39.95,19.3,19.31
-39059,28,049,28049,224,93,23753065,23672446,12073,4960,413316566,412343924,245285,103421,2272175614,2252618859,1.86,1.88,5.75,5.74,0.09,0.09,1.05,1.05
-39061,28,125,28125,88,27,7584758,7504832,88,27,7584758,7504832,4916,2100,1126956092,1118149626,100,100,100,100,1.79,1.29,0.67,0.67
-39062,28,127,28127,467,217,3831324,3831324,467,217,3831324,3831324,27503,11934,1529309081,1525925833,100,100,100,100,1.7,1.82,0.25,0.25
-39063,28,051,28051,3620,1642,251892203,251294054,3620,1642,251892203,251294054,19198,8415,1980350161,1959840949,100,100,100,100,18.86,19.51,12.72,12.82
-39066,28,049,28049,4338,1861,381273742,377266318,4338,1861,381273742,377266318,245285,103421,2272175614,2252618859,100,100,100,100,1.77,1.8,16.78,16.75
-39067,28,007,28007,1434,783,271567130,271467327,1434,783,271567130,271467327,19564,9126,1908015901,1903594473,100,100,100,100,7.33,8.58,14.23,14.26
-39069,28,063,28063,5409,2285,456834005,456627416,5409,2285,456834005,456627416,7726,3673,1365608668,1346620575,100,100,100,100,70.01,62.21,33.45,33.91
-39071,28,049,28049,70,31,2438660,2438660,5346,2028,311727157,306340859,245285,103421,2272175614,2252618859,1.31,1.53,0.78,0.8,0.03,0.03,0.11,0.11
-39071,28,089,28089,5276,1997,309288497,303902199,5346,2028,311727157,306340859,95203,38558,1921201388,1850562626,98.69,98.47,99.22,99.2,5.54,5.18,16.1,16.42
-39073,28,121,28121,18391,7311,319730184,317801538,19685,7870,415749187,413435404,141617,56487,2087752284,2008496804,93.43,92.9,76.9,76.87,12.99,12.94,15.31,15.82
-39073,28,127,28127,1294,559,96019003,95633866,19685,7870,415749187,413435404,27503,11934,1529309081,1525925833,6.57,7.1,23.1,23.13,4.7,4.68,6.28,6.27
-39074,28,123,28123,14254,5641,582363121,581168401,14896,5935,705563084,704355658,28264,11470,1580903579,1577781371,95.69,95.05,82.54,82.51,50.43,49.18,36.84,36.83
-39074,28,129,28129,642,294,123199963,123187257,14896,5935,705563084,704355658,16491,7237,1650525526,1647885256,4.31,4.95,17.46,17.49,3.89,4.06,7.46,7.48
-39078,28,029,28029,755,361,90260941,89384017,755,361,90260941,89384017,29449,12184,2018803983,2013052970,100,100,100,100,2.56,2.96,4.47,4.44
-39079,28,007,28007,136,93,82680866,82360249,2037,706,173477321,172486242,19564,9126,1908015901,1903594473,6.68,13.17,47.66,47.75,0.7,1.02,4.33,4.33
-39079,28,051,28051,1894,610,83118350,82478650,2037,706,173477321,172486242,19198,8415,1980350161,1959840949,92.98,86.4,47.91,47.82,9.87,7.25,4.2,4.21
-39079,28,089,28089,7,3,7678105,7647343,2037,706,173477321,172486242,95203,38558,1921201388,1850562626,0.34,0.42,4.43,4.43,0.01,0.01,0.4,0.41
-39082,28,127,28127,1312,582,156709246,156009584,1312,582,156709246,156009584,27503,11934,1529309081,1525925833,100,100,100,100,4.77,4.88,10.25,10.22
-39083,28,029,28029,10626,4472,856290359,853860628,10626,4472,856290359,853860628,29449,12184,2018803983,2013052970,100,100,100,100,36.08,36.7,42.42,42.42
-39086,28,021,28021,1416,674,287723671,286295409,1635,783,410047869,408153781,9604,4223,1298111127,1262375165,86.61,86.08,70.17,70.14,14.74,15.96,22.16,22.68
-39086,28,029,28029,219,109,122324198,121858372,1635,783,410047869,408153781,29449,12184,2018803983,2013052970,13.39,13.92,29.83,29.86,0.74,0.89,6.06,6.05
-39088,28,125,28125,35,40,110142569,106979270,135,89,130121472,126958173,4916,2100,1126956092,1118149626,25.93,44.94,84.65,84.26,0.71,1.9,9.77,9.57
-39088,28,163,28163,100,49,19978903,19978903,135,89,130121472,126958173,28065,10074,2419737564,2390421148,74.07,55.06,15.35,15.74,0.36,0.49,0.83,0.84
-39090,28,007,28007,12664,5630,562016285,560218311,13398,5993,689380274,687387448,19564,9126,1908015901,1903594473,94.52,93.94,81.52,81.5,64.73,61.69,29.46,29.43
-39090,28,079,28079,734,363,127363989,127169137,13398,5993,689380274,687387448,23805,9415,1516378093,1509963962,5.48,6.06,18.48,18.5,3.08,3.86,8.4,8.42
-39092,28,101,28101,564,243,34623270,34605410,2934,1228,277990490,277796991,21720,9373,1501162093,1497282694,19.22,19.79,12.45,12.46,2.6,2.59,2.31,2.31
-39092,28,123,28123,2351,971,228343211,228167572,2934,1228,277990490,277796991,28264,11470,1580903579,1577781371,80.13,79.07,82.14,82.13,8.32,8.47,14.44,14.46
-39092,28,129,28129,19,14,15024009,15024009,2934,1228,277990490,277796991,16491,7237,1650525526,1647885256,0.65,1.14,5.4,5.41,0.12,0.19,0.91,0.91
-39094,28,079,28079,1914,906,195044607,193983266,3956,1760,427148105,424329943,23805,9415,1516378093,1509963962,48.38,51.48,45.66,45.72,8.04,9.62,12.86,12.85
-39094,28,121,28121,678,279,83560622,82474116,3956,1760,427148105,424329943,141617,56487,2087752284,2008496804,17.14,15.85,19.56,19.44,0.48,0.49,4,4.11
-39094,28,123,28123,1364,575,148542876,147872561,3956,1760,427148105,424329943,28264,11470,1580903579,1577781371,34.48,32.67,34.78,34.85,4.83,5.01,9.4,9.37
-39095,28,015,28015,147,80,58308399,58123517,7324,3291,871791373,869504723,10597,5052,1643567720,1627140835,2.01,2.43,6.69,6.68,1.39,1.58,3.55,3.57
-39095,28,051,28051,7173,3208,812226899,810125131,7324,3291,871791373,869504723,19198,8415,1980350161,1959840949,97.94,97.48,93.17,93.17,37.36,38.12,41.01,41.34
-39095,28,163,28163,4,3,1256075,1256075,7324,3291,871791373,869504723,28065,10074,2419737564,2390421148,0.05,0.09,0.14,0.14,0.01,0.03,0.05,0.05
-39096,28,021,28021,1310,246,97255324,92459057,2338,853,533342651,510750075,9604,4223,1298111127,1262375165,56.03,28.84,18.24,18.1,13.64,5.83,7.49,7.32
-39096,28,063,28063,1028,607,436087327,418291018,2338,853,533342651,510750075,7726,3673,1365608668,1346620575,43.97,71.16,81.76,81.9,13.31,16.53,31.93,31.06
-39097,28,053,28053,873,373,148802604,144733117,873,373,148802604,144733117,9375,3855,1116889853,1083886754,100,100,100,100,9.31,9.68,13.32,13.35
-39108,28,007,28007,1093,639,265932674,265757822,1974,1165,510325327,509762920,19564,9126,1908015901,1903594473,55.37,54.85,52.11,52.13,5.59,7,13.94,13.96
-39108,28,019,28019,510,286,140558978,140236271,1974,1165,510325327,509762920,8547,4150,1087420235,1083074478,25.84,24.55,27.54,27.51,5.97,6.89,12.93,12.95
-39108,28,159,28159,371,240,103833675,103768827,1974,1165,510325327,509762920,19198,8745,1580115118,1572757155,18.79,20.6,20.35,20.36,1.93,2.74,6.57,6.6
-39110,28,089,28089,36143,13682,203969980,193381376,36143,13682,203969980,193381376,95203,38558,1921201388,1850562626,100,100,100,100,37.96,35.48,10.62,10.45
-39111,28,127,28127,9879,4093,285684205,285647047,10460,4375,361752077,361635518,27503,11934,1529309081,1525925833,94.45,93.55,78.97,78.99,35.92,34.3,18.68,18.72
-39111,28,129,28129,581,282,76067872,75988471,10460,4375,361752077,361635518,16491,7237,1650525526,1647885256,5.55,6.45,21.03,21.01,3.52,3.9,4.61,4.61
-39113,28,055,28055,595,158,28941902,28901982,595,158,28941902,28901982,1406,560,1143289309,1069781903,100,100,100,100,42.32,28.21,2.53,2.7
-39114,28,121,28121,722,292,51233388,51185697,9998,4295,493456841,492974981,141617,56487,2087752284,2008496804,7.22,6.8,10.38,10.38,0.51,0.52,2.45,2.55
-39114,28,127,28127,9223,3979,439152639,438718470,9998,4295,493456841,492974981,27503,11934,1529309081,1525925833,92.25,92.64,89,88.99,33.53,33.34,28.72,28.75
-39114,28,129,28129,53,24,3070814,3070814,9998,4295,493456841,492974981,16491,7237,1650525526,1647885256,0.53,0.56,0.62,0.62,0.32,0.33,0.19,0.19
-39115,28,053,28053,155,68,18955064,18945828,155,68,18955064,18945828,9375,3855,1116889853,1083886754,100,100,100,100,1.65,1.76,1.7,1.75
-39116,28,129,28129,2538,1132,222059706,221690835,2538,1132,222059706,221690835,16491,7237,1650525526,1647885256,100,100,100,100,15.39,15.64,13.45,13.45
-39117,28,121,28121,424,159,19953615,19953615,10697,4370,685596869,684224862,141617,56487,2087752284,2008496804,3.96,3.64,2.91,2.92,0.3,0.28,0.96,0.99
-39117,28,123,28123,8750,3556,475731466,474871966,10697,4370,685596869,684224862,28264,11470,1580903579,1577781371,81.8,81.37,69.39,69.4,30.96,31,30.09,30.1
-39117,28,129,28129,1523,655,189911788,189399281,10697,4370,685596869,684224862,16491,7237,1650525526,1647885256,14.24,14.99,27.7,27.68,9.24,9.05,11.51,11.49
-39119,28,031,28031,3346,1496,205556517,204870058,5506,2422,361568719,360651171,19568,8496,1074665629,1071716796,60.77,61.77,56.85,56.81,17.1,17.61,19.13,19.12
-39119,28,065,28065,432,201,54039241,54039241,5506,2422,361568719,360651171,12487,5876,1059663224,1057862259,7.85,8.3,14.95,14.98,3.46,3.42,5.1,5.11
-39119,28,127,28127,702,318,43764883,43704189,5506,2422,361568719,360651171,27503,11934,1529309081,1525925833,12.75,13.13,12.1,12.12,2.55,2.66,2.86,2.86
-39119,28,129,28129,1026,407,58208078,58037683,5506,2422,361568719,360651171,16491,7237,1650525526,1647885256,18.63,16.8,16.1,16.09,6.22,5.62,3.53,3.52
-39120,28,001,28001,31610,14310,1139410541,1074368139,32334,14666,1298495418,1232467821,32297,14656,1262742005,1197628202,97.76,97.57,87.75,87.17,97.87,97.64,90.23,89.71
-39120,28,063,28063,724,356,159084877,158099682,32334,14666,1298495418,1232467821,7726,3673,1365608668,1346620575,2.24,2.43,12.25,12.83,9.37,9.69,11.65,11.74
-39140,28,065,28065,722,386,98293153,98278043,2250,1127,255281299,253597304,12487,5876,1059663224,1057862259,32.09,34.25,38.5,38.75,5.78,6.57,9.28,9.29
-39140,28,077,28077,1185,558,79002194,78465117,2250,1127,255281299,253597304,12929,6019,1128637705,1115424285,52.67,49.51,30.95,30.94,9.17,9.27,7,7.03
-39140,28,127,28127,343,183,77985952,76854144,2250,1127,255281299,253597304,27503,11934,1529309081,1525925833,15.24,16.24,30.55,30.31,1.25,1.53,5.1,5.04
-39144,28,021,28021,733,394,186840958,186749814,867,501,297903781,297742458,9604,4223,1298111127,1262375165,84.54,78.64,62.72,62.72,7.63,9.33,14.39,14.79
-39144,28,029,28029,79,54,52062014,51991835,867,501,297903781,297742458,29449,12184,2018803983,2013052970,9.11,10.78,17.48,17.46,0.27,0.44,2.58,2.58
-39144,28,063,28063,55,53,59000809,59000809,867,501,297903781,297742458,7726,3673,1365608668,1346620575,6.34,10.58,19.81,19.82,0.71,1.44,4.32,4.38
-39145,28,121,28121,5066,2033,334146297,333354474,5170,2083,340787048,339995225,141617,56487,2087752284,2008496804,97.99,97.6,98.05,98.05,3.58,3.6,16.01,16.6
-39145,28,123,28123,104,50,6640751,6640751,5170,2083,340787048,339995225,28264,11470,1580903579,1577781371,2.01,2.4,1.95,1.95,0.37,0.44,0.42,0.42
-39146,28,051,28051,1976,854,123657467,122655315,2841,1223,354755911,351802051,19198,8415,1980350161,1959840949,69.55,69.83,34.86,34.86,10.29,10.15,6.24,6.26
-39146,28,089,28089,618,275,155037475,153303918,2841,1223,354755911,351802051,95203,38558,1921201388,1850562626,21.75,22.49,43.7,43.58,0.65,0.71,8.07,8.28
-39146,28,163,28163,247,94,76060969,75842818,2841,1223,354755911,351802051,28065,10074,2419737564,2390421148,8.69,7.69,21.44,21.56,0.88,0.93,3.14,3.17
-39149,28,127,28127,1649,792,211893314,211731823,1649,792,211893314,211731823,27503,11934,1529309081,1525925833,100,100,100,100,6,6.64,13.86,13.88
-39150,28,021,28021,5914,2754,616788475,588370887,5914,2754,616788475,588370887,9604,4223,1298111127,1262375165,100,100,100,100,61.58,65.21,47.51,46.61
-39152,28,123,28123,581,283,59869045,59869045,1284,559,154734909,154607671,28264,11470,1580903579,1577781371,45.25,50.63,38.69,38.72,2.06,2.47,3.79,3.79
-39152,28,129,28129,703,276,94865864,94738626,1284,559,154734909,154607671,16491,7237,1650525526,1647885256,54.75,49.37,61.31,61.28,4.26,3.81,5.75,5.75
-39153,28,129,28129,3724,1641,402367129,402119273,3724,1641,402367129,402119273,16491,7237,1650525526,1647885256,100,100,100,100,22.58,22.68,24.38,24.4
-39154,28,049,28049,10526,3630,292697019,291028568,10526,3630,292697019,291028568,245285,103421,2272175614,2252618859,100,100,100,100,4.29,3.51,12.88,12.92
-39156,28,149,28149,513,238,158206255,153252773,513,238,158206255,153252773,48773,21896,1602046919,1524210117,100,100,100,100,1.05,1.09,9.88,10.05
-39157,28,089,28089,24645,11952,80416095,79298772,24645,11952,80416095,79298772,95203,38558,1921201388,1850562626,100,100,100,100,25.89,31,4.19,4.29
-39159,28,055,28055,378,193,411229684,406065046,3334,1439,762776644,756956717,1406,560,1143289309,1069781903,11.34,13.41,53.91,53.64,26.88,34.46,35.97,37.96
-39159,28,125,28125,2956,1246,351546960,350891671,3334,1439,762776644,756956717,4916,2100,1126956092,1118149626,88.66,86.59,46.09,46.36,60.13,59.33,31.19,31.38
-39160,28,007,28007,2780,1246,351454543,349865550,2889,1306,373617875,371970423,19564,9126,1908015901,1903594473,96.23,95.41,94.07,94.06,14.21,13.65,18.42,18.38
-39160,28,079,28079,109,60,22163332,22104873,2889,1306,373617875,371970423,23805,9415,1516378093,1509963962,3.77,4.59,5.93,5.94,0.46,0.64,1.46,1.46
-39162,28,163,28163,205,101,136382779,131571034,205,101,136382779,131571034,28065,10074,2419737564,2390421148,100,100,100,100,0.73,1,5.64,5.5
-39166,28,053,28053,613,255,168621879,160620271,613,255,168621879,160620271,9375,3855,1116889853,1083886754,100,100,100,100,6.54,6.61,15.1,14.82
-39167,28,121,28121,47,20,518620,518620,47,20,518620,518620,141617,56487,2087752284,2008496804,100,100,100,100,0.03,0.04,0.02,0.03
-39168,28,031,28031,835,351,63445733,63197283,6643,2879,400775777,399362993,19568,8496,1074665629,1071716796,12.57,12.19,15.83,15.82,4.27,4.13,5.9,5.9
-39168,28,067,28067,1462,612,75250106,74840982,6643,2879,400775777,399362993,67761,28424,1812235691,1799510829,22.01,21.26,18.78,18.74,2.16,2.15,4.15,4.16
-39168,28,129,28129,4346,1916,262079938,261324728,6643,2879,400775777,399362993,16491,7237,1650525526,1647885256,65.42,66.55,65.39,65.44,26.35,26.48,15.88,15.86
-39169,28,051,28051,2957,1306,409675693,395832023,2957,1306,409675693,395832023,19198,8415,1980350161,1959840949,100,100,100,100,15.4,15.52,20.69,20.2
-39170,28,029,28029,49,24,5567313,5567313,9407,3722,258938181,257601890,29449,12184,2018803983,2013052970,0.52,0.64,2.15,2.16,0.17,0.2,0.28,0.28
-39170,28,049,28049,9358,3698,253370868,252034577,9407,3722,258938181,257601890,245285,103421,2272175614,2252618859,99.48,99.36,97.85,97.84,3.82,3.58,11.15,11.19
-39174,28,049,28049,148,76,842418,842418,715,79,2421504,2421504,245285,103421,2272175614,2252618859,20.7,96.2,34.79,34.79,0.06,0.07,0.04,0.04
-39174,28,089,28089,567,3,1579086,1579086,715,79,2421504,2421504,95203,38558,1921201388,1850562626,79.3,3.8,65.21,65.21,0.6,0.01,0.08,0.09
-39175,28,021,28021,231,155,109502699,108499998,4843,2178,632198431,629211678,9604,4223,1298111127,1262375165,4.77,7.12,17.32,17.24,2.41,3.67,8.44,8.59
-39175,28,029,28029,600,271,160199330,159549618,4843,2178,632198431,629211678,29449,12184,2018803983,2013052970,12.39,12.44,25.34,25.36,2.04,2.22,7.94,7.93
-39175,28,049,28049,4012,1752,362496402,361162062,4843,2178,632198431,629211678,245285,103421,2272175614,2252618859,82.84,80.44,57.34,57.4,1.64,1.69,15.95,16.03
-39176,28,007,28007,313,163,73559313,73504566,2106,1103,331407572,330759489,19564,9126,1908015901,1903594473,14.86,14.78,22.2,22.22,1.6,1.79,3.86,3.86
-39176,28,015,28015,1783,936,251558134,250964798,2106,1103,331407572,330759489,10597,5052,1643567720,1627140835,84.66,84.86,75.91,75.88,16.83,18.53,15.31,15.42
-39176,28,097,28097,10,4,6290125,6290125,2106,1103,331407572,330759489,10925,5194,1056427226,1054074954,0.47,0.36,1.9,1.9,0.09,0.08,0.6,0.6
-39177,28,055,28055,136,75,148615880,144710757,136,75,148615880,144710757,1406,560,1143289309,1069781903,100,100,100,100,9.67,13.39,13,13.53
-39179,28,163,28163,1228,501,212394168,211477574,1228,501,212394168,211477574,28065,10074,2419737564,2390421148,100,100,100,100,4.38,4.97,8.78,8.85
-39180,28,149,28149,32603,14355,542604586,533696547,32603,14355,542604586,533696547,48773,21896,1602046919,1524210117,100,100,100,100,66.85,65.56,33.87,35.01
-39183,28,055,28055,4,1,2219978,2067734,15661,7304,685012892,659255069,1406,560,1143289309,1069781903,0.03,0.01,0.32,0.31,0.28,0.18,0.19,0.19
-39183,28,149,28149,15657,7303,682792914,657187335,15661,7304,685012892,659255069,48773,21896,1602046919,1524210117,99.97,99.99,99.68,99.69,32.1,33.35,42.62,43.12
-39189,28,079,28079,4842,1392,153666201,153244281,5263,1584,204891002,204286271,23805,9415,1516378093,1509963962,92,87.88,75,75.01,20.34,14.78,10.13,10.15
-39189,28,123,28123,421,192,51224801,51041990,5263,1584,204891002,204286271,28264,11470,1580903579,1577781371,8,12.12,25,24.99,1.49,1.67,3.24,3.24
-39191,28,029,28029,5272,2026,342536327,342169709,8074,3280,573489304,570753623,29449,12184,2018803983,2013052970,65.3,61.77,59.73,59.95,17.9,16.63,16.97,17
-39191,28,077,28077,4,5,3806237,3806237,8074,3280,573489304,570753623,12929,6019,1128637705,1115424285,0.05,0.15,0.66,0.67,0.03,0.08,0.34,0.34
-39191,28,085,28085,2798,1249,227146740,224777677,8074,3280,573489304,570753623,34869,15255,1523365145,1518030804,34.65,38.08,39.61,39.38,8.02,8.19,14.91,14.81
-39192,28,007,28007,887,452,223114175,222791778,1733,944,386917087,386425299,19564,9126,1908015901,1903594473,51.18,47.88,57.66,57.65,4.53,4.95,11.69,11.7
-39192,28,015,28015,68,44,42032815,42032815,1733,944,386917087,386425299,10597,5052,1643567720,1627140835,3.92,4.66,10.86,10.88,0.64,0.87,2.56,2.58
-39192,28,051,28051,778,448,121770097,121600706,1733,944,386917087,386425299,19198,8415,1980350161,1959840949,44.89,47.46,31.47,31.47,4.05,5.32,6.15,6.2
-39193,28,121,28121,968,5,3586222,3586222,968,5,3586222,3586222,141617,56487,2087752284,2008496804,100,100,100,100,0.68,0.01,0.17,0.18
-39194,28,053,28053,132,96,49622083,44864664,20925,7060,1196095020,1171552851,9375,3855,1116889853,1083886754,0.63,1.36,4.15,3.83,1.41,2.49,4.44,4.14
-39194,28,163,28163,20793,6964,1146472937,1126688187,20925,7060,1196095020,1171552851,28065,10074,2419737564,2390421148,99.37,98.64,95.85,96.17,74.09,69.13,47.38,47.13
-39201,28,049,28049,536,253,5909188,5651990,536,253,5909188,5651990,245285,103421,2272175614,2252618859,100,100,100,100,0.22,0.24,0.26,0.25
-39202,28,049,28049,8411,4281,10418249,9528362,8411,4281,10418249,9528362,245285,103421,2272175614,2252618859,100,100,100,100,3.43,4.14,0.46,0.42
-39203,28,049,28049,7091,2780,5878755,5878755,7091,2780,5878755,5878755,245285,103421,2272175614,2252618859,100,100,100,100,2.89,2.69,0.26,0.26
-39204,28,049,28049,19468,8242,35561012,35080689,19468,8242,35561012,35080689,245285,103421,2272175614,2252618859,100,100,100,100,7.94,7.97,1.57,1.56
-39206,28,049,28049,25341,11079,23264613,23264613,25341,11079,23264613,23264613,245285,103421,2272175614,2252618859,100,100,100,100,10.33,10.71,1.02,1.03
-39208,28,121,28121,31371,11512,130721184,130318843,31371,11512,130721184,130318843,141617,56487,2087752284,2008496804,100,100,100,100,22.15,20.38,6.26,6.49
-39209,28,049,28049,29578,12795,155476987,154720566,29617,12813,158352720,157565137,245285,103421,2272175614,2252618859,99.87,99.86,98.18,98.19,12.06,12.37,6.84,6.87
-39209,28,089,28089,39,18,2875733,2844571,29617,12813,158352720,157565137,95203,38558,1921201388,1850562626,0.13,0.14,1.82,1.81,0.04,0.05,0.15,0.15
-39211,28,049,28049,24515,11454,32964701,31792137,24515,11454,32964701,31792137,245285,103421,2272175614,2252618859,100,100,100,100,9.99,11.08,1.45,1.41
-39212,28,049,28049,33263,12646,67118430,66624777,33263,12646,67118430,66624777,245285,103421,2272175614,2252618859,100,100,100,100,13.56,12.23,2.95,2.96
-39213,28,049,28049,22273,9833,74731702,72946494,22328,9854,76158202,74372994,245285,103421,2272175614,2252618859,99.75,99.79,98.13,98.08,9.08,9.51,3.29,3.24
-39213,28,089,28089,55,21,1426500,1426500,22328,9854,76158202,74372994,95203,38558,1921201388,1850562626,0.25,0.21,1.87,1.92,0.06,0.05,0.07,0.08
-39216,28,049,28049,3454,1950,9166327,8766858,3454,1950,9166327,8766858,245285,103421,2272175614,2252618859,100,100,100,100,1.41,1.89,0.4,0.39
-39217,28,049,28049,1103,0,40009,40009,1103,0,40009,40009,245285,103421,2272175614,2252618859,100,0,100,100,0.45,0,0,0
-39218,28,121,28121,6943,2857,46586674,46072449,6943,2857,46586674,46072449,141617,56487,2087752284,2008496804,100,100,100,100,4.9,5.06,2.23,2.29
-39232,28,121,28121,7068,3410,45583837,44474910,7068,3410,45583837,44474910,141617,56487,2087752284,2008496804,100,100,100,100,4.99,6.04,2.18,2.21
-39269,28,049,28049,0,0,11206,11206,0,0,11206,11206,245285,103421,2272175614,2252618859,0,0,100,100,0,0,0,0
-39272,28,049,28049,12551,5060,58163859,57041315,12551,5060,58163859,57041315,245285,103421,2272175614,2252618859,100,100,100,100,5.12,4.89,2.56,2.53
-39301,28,023,28023,1620,720,243008672,242721293,27449,12442,725707415,722462991,16732,7876,1796247079,1791117740,5.9,5.79,33.49,33.6,9.68,9.14,13.53,13.55
-39301,28,075,28075,25829,11722,482698743,479741698,27449,12442,725707415,722462991,80261,34698,1852238828,1822402881,94.1,94.21,66.51,66.4,32.18,33.78,26.06,26.32
-39305,28,075,28075,20431,9261,291554090,282264504,20431,9261,291554090,282264504,80261,34698,1852238828,1822402881,100,100,100,100,25.46,26.69,15.74,15.49
-39307,28,075,28075,18603,7254,247742564,247178145,18603,7254,247742564,247178145,80261,34698,1852238828,1822402881,100,100,100,100,23.18,20.91,13.38,13.56
-39309,28,075,28075,601,0,1612223,1518578,601,0,1612223,1518578,80261,34698,1852238828,1822402881,100,0,100,100,0.75,0,0.09,0.08
-39320,28,069,28069,319,162,56090112,56011792,1828,774,111902625,111529188,10456,4722,1986585528,1984403181,17.45,20.93,50.12,50.22,3.05,3.43,2.82,2.82
-39320,28,075,28075,1509,612,55812513,55517396,1828,774,111902625,111529188,80261,34698,1852238828,1822402881,82.55,79.07,49.88,49.78,1.88,1.76,3.01,3.05
-39322,28,153,28153,1882,838,192419061,190783853,1882,838,192419061,190783853,20747,9213,2107000979,2099832593,100,100,100,100,9.07,9.1,9.13,9.09
-39323,28,075,28075,263,114,46422673,46382783,1290,579,137727929,137171341,80261,34698,1852238828,1822402881,20.39,19.69,33.71,33.81,0.33,0.33,2.51,2.55
-39323,28,101,28101,1027,465,91305256,90788558,1290,579,137727929,137171341,21720,9373,1501162093,1497282694,79.61,80.31,66.29,66.19,4.73,4.96,6.08,6.06
-39325,28,069,28069,463,231,90698927,90698927,5983,2484,294020960,284287666,10456,4722,1986585528,1984403181,7.74,9.3,30.85,31.9,4.43,4.89,4.57,4.57
-39325,28,075,28075,4973,2004,162235009,152501715,5983,2484,294020960,284287666,80261,34698,1852238828,1822402881,83.12,80.68,55.18,53.64,6.2,5.78,8.76,8.37
-39325,28,099,28099,390,174,30017927,30017927,5983,2484,294020960,284287666,29676,12357,1480471914,1476657637,6.52,7,10.21,10.56,1.31,1.41,2.03,2.03
-39325,28,101,28101,157,75,11069097,11069097,5983,2484,294020960,284287666,21720,9373,1501162093,1497282694,2.62,3.02,3.76,3.89,0.72,0.8,0.74,0.74
-39326,28,069,28069,277,135,73366332,73203523,720,327,100607321,99974437,10456,4722,1986585528,1984403181,38.47,41.28,72.92,73.22,2.65,2.86,3.69,3.69
-39326,28,075,28075,443,192,27240989,26770914,720,327,100607321,99974437,80261,34698,1852238828,1822402881,61.53,58.72,27.08,26.78,0.55,0.55,1.47,1.47
-39327,28,101,28101,4190,1692,270675063,269593620,4190,1692,270675063,269593620,21720,9373,1501162093,1497282694,100,100,100,100,19.29,18.05,18.03,18.01
-39328,28,069,28069,4806,2167,778510266,778027829,4806,2167,778510266,778027829,10456,4722,1986585528,1984403181,100,100,100,100,45.96,45.89,39.19,39.21
-39330,28,023,28023,2239,1014,213073276,212132613,2746,1247,343616229,342466876,16732,7876,1796247079,1791117740,81.54,81.32,62.01,61.94,13.38,12.87,11.86,11.84
-39330,28,061,28061,104,56,29410782,29390928,2746,1247,343616229,342466876,17062,8212,1754642609,1751461017,3.79,4.49,8.56,8.58,0.61,0.68,1.68,1.68
-39330,28,075,28075,367,160,82383122,82210669,2746,1247,343616229,342466876,80261,34698,1852238828,1822402881,13.36,12.83,23.98,24.01,0.46,0.46,4.45,4.51
-39330,28,101,28101,36,17,18749049,18732666,2746,1247,343616229,342466876,21720,9373,1501162093,1497282694,1.31,1.36,5.46,5.47,0.17,0.18,1.25,1.25
-39332,28,061,28061,112,70,25696574,25679400,1923,840,185457009,185046336,17062,8212,1754642609,1751461017,5.82,8.33,13.86,13.88,0.66,0.85,1.46,1.47
-39332,28,101,28101,1811,770,159760435,159366936,1923,840,185457009,185046336,21720,9373,1501162093,1497282694,94.18,91.67,86.14,86.12,8.34,8.22,10.64,10.64
-39335,28,069,28069,190,84,50968592,50945218,3160,1561,305974193,301156771,10456,4722,1986585528,1984403181,6.01,5.38,16.66,16.92,1.82,1.78,2.57,2.57
-39335,28,075,28075,2970,1477,255005601,250211553,3160,1561,305974193,301156771,80261,34698,1852238828,1822402881,93.99,94.62,83.34,83.08,3.7,4.26,13.77,13.73
-39336,28,061,28061,27,9,15669458,15669458,1235,528,201269530,200923888,17062,8212,1754642609,1751461017,2.19,1.7,7.79,7.8,0.16,0.11,0.89,0.89
-39336,28,101,28101,1196,515,179628068,179282426,1235,528,201269530,200923888,21720,9373,1501162093,1497282694,96.84,97.54,89.25,89.23,5.51,5.49,11.97,11.97
-39336,28,129,28129,12,4,5972004,5972004,1235,528,201269530,200923888,16491,7237,1650525526,1647885256,0.97,0.76,2.97,2.97,0.07,0.06,0.36,0.36
-39337,28,099,28099,103,57,10754038,10688191,1808,863,166913579,166833857,29676,12357,1480471914,1476657637,5.7,6.6,6.44,6.41,0.35,0.46,0.73,0.72
-39337,28,101,28101,1705,806,156159541,156145666,1808,863,166913579,166833857,21720,9373,1501162093,1497282694,94.3,93.4,93.56,93.59,7.85,8.6,10.4,10.43
-39338,28,061,28061,2651,1357,482562727,482052677,3319,1658,582167856,581405786,17062,8212,1754642609,1751461017,79.87,81.85,82.89,82.91,15.54,16.52,27.5,27.52
-39338,28,129,28129,668,301,99605129,99353109,3319,1658,582167856,581405786,16491,7237,1650525526,1647885256,20.13,18.15,17.11,17.09,4.05,4.16,6.03,6.03
-39339,28,159,28159,15619,6952,993612100,987125331,15619,6952,993612100,987125331,19198,8745,1580115118,1572757155,100,100,100,100,81.36,79.5,62.88,62.76
-39341,28,103,28103,7069,2938,924331663,921695486,7156,2976,977146313,974466702,11545,5170,1812939684,1800400143,98.78,98.72,94.6,94.58,61.23,56.83,50.99,51.19
-39341,28,159,28159,87,38,52814650,52771216,7156,2976,977146313,974466702,19198,8745,1580115118,1572757155,1.22,1.28,5.4,5.42,0.45,0.43,3.34,3.36
-39342,28,075,28075,1287,596,6400980,6400980,1287,596,6400980,6400980,80261,34698,1852238828,1822402881,100,100,100,100,1.6,1.72,0.35,0.35
-39345,28,061,28061,164,71,34905284,34854039,6127,2767,319972882,319519869,17062,8212,1754642609,1751461017,2.68,2.57,10.91,10.91,0.96,0.86,1.99,1.99
-39345,28,101,28101,5963,2696,285067598,284665830,6127,2767,319972882,319519869,21720,9373,1501162093,1497282694,97.32,97.43,89.09,89.09,27.45,28.76,18.99,19.01
-39346,28,099,28099,124,62,29008077,28813046,2241,1059,204172799,203527168,29676,12357,1480471914,1476657637,5.53,5.85,14.21,14.16,0.42,0.5,1.96,1.95
-39346,28,159,28159,2117,997,175164722,174714122,2241,1059,204172799,203527168,19198,8745,1580115118,1572757155,94.47,94.15,85.79,85.84,11.03,11.4,11.09,11.11
-39347,28,023,28023,604,293,62129429,61851932,1497,950,187585315,187257721,16732,7876,1796247079,1791117740,40.35,30.84,33.12,33.03,3.61,3.72,3.46,3.45
-39347,28,061,28061,893,657,125455886,125405789,1497,950,187585315,187257721,17062,8212,1754642609,1751461017,59.65,69.16,66.88,66.97,5.23,8,7.15,7.16
-39348,28,061,28061,838,359,102825993,102700073,838,359,102825993,102700073,17062,8212,1754642609,1751461017,100,100,100,100,4.91,4.37,5.86,5.86
-39350,28,069,28069,414,119,12163556,12163556,24865,10146,1070893104,1068240394,10456,4722,1986585528,1984403181,1.66,1.17,1.14,1.14,3.96,2.52,0.61,0.61
-39350,28,079,28079,111,57,6842882,6791960,24865,10146,1070893104,1068240394,23805,9415,1516378093,1509963962,0.45,0.56,0.64,0.64,0.47,0.61,0.45,0.45
-39350,28,099,28099,24095,9844,988464495,986010187,24865,10146,1070893104,1068240394,29676,12357,1480471914,1476657637,96.9,97.02,92.3,92.3,81.19,79.66,66.77,66.77
-39350,28,159,28159,245,126,63422171,63274691,24865,10146,1070893104,1068240394,19198,8745,1580115118,1572757155,0.99,1.24,5.92,5.92,1.28,1.44,4.01,4.02
-39352,28,069,28069,812,384,260179573,260052324,812,384,260179573,260052324,10456,4722,1986585528,1984403181,100,100,100,100,7.77,8.13,13.1,13.1
-39354,28,069,28069,1486,752,239439326,239320200,2094,1038,330278890,330151642,10456,4722,1986585528,1984403181,70.96,72.45,72.5,72.49,14.21,15.93,12.05,12.06
-39354,28,099,28099,109,44,25571766,25563644,2094,1038,330278890,330151642,29676,12357,1480471914,1476657637,5.21,4.24,7.74,7.74,0.37,0.36,1.73,1.73
-39354,28,103,28103,37,29,24238733,24238733,2094,1038,330278890,330151642,11545,5170,1812939684,1800400143,1.77,2.79,7.34,7.34,0.32,0.56,1.34,1.35
-39354,28,159,28159,462,213,41029065,41029065,2094,1038,330278890,330151642,19198,8745,1580115118,1572757155,22.06,20.52,12.42,12.43,2.41,2.44,2.6,2.61
-39355,28,023,28023,7131,3371,683668636,680547154,7131,3371,683668636,680547154,16732,7876,1796247079,1791117740,100,100,100,100,42.62,42.8,38.06,38
-39356,28,061,28061,659,381,136195666,135580356,659,381,136195666,135580356,17062,8212,1754642609,1751461017,100,100,100,100,3.86,4.64,7.76,7.74
-39358,28,069,28069,1673,675,413625823,412436791,1679,682,430892411,429700961,10456,4722,1986585528,1984403181,99.64,98.97,95.99,95.98,16,14.29,20.82,20.78
-39358,28,103,28103,6,7,17266588,17264170,1679,682,430892411,429700961,11545,5170,1812939684,1800400143,0.36,1.03,4.01,4.02,0.05,0.14,0.95,0.96
-39359,28,123,28123,273,126,3860543,3860543,273,126,3860543,3860543,28264,11470,1580903579,1577781371,100,100,100,100,0.97,1.1,0.24,0.24
-39360,28,023,28023,2400,1140,359209751,359043204,3830,1780,603801457,603442365,16732,7876,1796247079,1791117740,62.66,64.04,59.49,59.5,14.34,14.47,20,20.05
-39360,28,153,28153,1430,640,244591706,244399161,3830,1780,603801457,603442365,20747,9213,2107000979,2099832593,37.34,35.96,40.51,40.5,6.89,6.95,11.61,11.64
-39361,28,069,28069,13,10,11299844,11299844,1468,761,378112310,377682911,10456,4722,1986585528,1984403181,0.89,1.31,2.99,2.99,0.12,0.21,0.57,0.57
-39361,28,103,28103,1455,751,366812466,366383067,1468,761,378112310,377682911,11545,5170,1812939684,1800400143,99.11,98.69,97.01,97.01,12.6,14.53,20.23,20.35
-39362,28,041,28041,1382,660,339182426,336748972,2866,1307,525352641,521425246,14400,5123,1861414596,1846027833,48.22,50.5,64.56,64.58,9.6,12.88,18.22,18.24
-39362,28,153,28153,1484,647,186170215,184676274,2866,1307,525352641,521425246,20747,9213,2107000979,2099832593,51.78,49.5,35.44,35.42,7.15,7.02,8.84,8.79
-39363,28,023,28023,1773,899,61359901,61092187,1773,899,61359901,61092187,16732,7876,1796247079,1791117740,100,100,100,100,10.6,11.41,3.42,3.41
-39364,28,075,28075,2985,1306,193130321,191703946,2985,1306,193130321,191703946,80261,34698,1852238828,1822402881,100,100,100,100,3.72,3.76,10.43,10.52
-39365,28,069,28069,3,3,243177,243177,7547,3414,487997511,486485392,10456,4722,1986585528,1984403181,0.04,0.09,0.05,0.05,0.03,0.06,0.01,0.01
-39365,28,079,28079,26,13,2727754,2727754,7547,3414,487997511,486485392,23805,9415,1516378093,1509963962,0.34,0.38,0.56,0.56,0.11,0.14,0.18,0.18
-39365,28,099,28099,4572,2051,334487935,333614983,7547,3414,487997511,486485392,29676,12357,1480471914,1476657637,60.58,60.08,68.54,68.58,15.41,16.6,22.59,22.59
-39365,28,101,28101,2946,1347,150538645,149899478,7547,3414,487997511,486485392,21720,9373,1501162093,1497282694,39.04,39.46,30.85,30.81,13.56,14.37,10.03,10.01
-39366,28,023,28023,566,249,97174060,97147410,1380,596,199714986,199423705,16732,7876,1796247079,1791117740,41.01,41.78,48.66,48.71,3.38,3.16,5.41,5.42
-39366,28,061,28061,814,347,102540926,102276295,1380,596,199714986,199423705,17062,8212,1754642609,1751461017,58.99,58.22,51.34,51.29,4.77,4.23,5.84,5.84
-39367,28,023,28023,251,123,59566201,59524794,15096,6686,1223150711,1219762041,16732,7876,1796247079,1791117740,1.66,1.84,4.87,4.88,1.5,1.56,3.32,3.32
-39367,28,153,28153,14845,6563,1163584510,1160237247,15096,6686,1223150711,1219762041,20747,9213,2107000979,2099832593,98.34,98.16,95.13,95.12,71.55,71.24,55.22,55.25
-39401,28,031,28031,62,30,2156214,2156214,43366,19942,503277682,496972260,19568,8496,1074665629,1071716796,0.14,0.15,0.43,0.43,0.32,0.35,0.2,0.2
-39401,28,035,28035,41348,18869,485822451,479517029,43366,19942,503277682,496972260,74934,32289,1217898313,1207748039,95.35,94.62,96.53,96.49,55.18,58.44,39.89,39.7
-39401,28,067,28067,341,141,14250198,14250198,43366,19942,503277682,496972260,67761,28424,1812235691,1799510829,0.79,0.71,2.83,2.87,0.5,0.5,0.79,0.79
-39401,28,073,28073,1615,902,1048819,1048819,43366,19942,503277682,496972260,55658,24070,1296116988,1287367637,3.72,4.52,0.21,0.21,2.9,3.75,0.08,0.08
-39402,28,031,28031,40,17,2814464,2757381,37492,16884,231405669,227548945,19568,8496,1074665629,1071716796,0.11,0.1,1.22,1.21,0.2,0.2,0.26,0.26
-39402,28,035,28035,9422,4429,96398589,96071791,37492,16884,231405669,227548945,74934,32289,1217898313,1207748039,25.13,26.23,41.66,42.22,12.57,13.72,7.92,7.95
-39402,28,073,28073,28030,12438,132192616,128719773,37492,16884,231405669,227548945,55658,24070,1296116988,1287367637,74.76,73.67,57.13,56.57,50.36,51.67,10.2,10
-39406,28,035,28035,1759,41,705454,705454,1759,41,705454,705454,74934,32289,1217898313,1207748039,100,100,100,100,2.35,0.13,0.06,0.06
-39421,28,065,28065,2577,1117,143648942,143443568,2936,1271,169132007,168856966,12487,5876,1059663224,1057862259,87.77,87.88,84.93,84.95,20.64,19.01,13.56,13.56
-39421,28,091,28091,359,154,25483065,25413398,2936,1271,169132007,168856966,27088,11838,1420919403,1404766851,12.23,12.12,15.07,15.05,1.33,1.3,1.79,1.81
-39422,28,061,28061,4526,2063,267233741,266639503,5146,2338,356447113,355738809,17062,8212,1754642609,1751461017,87.95,88.24,74.97,74.95,26.53,25.12,15.23,15.22
-39422,28,129,28129,620,275,89213372,89099306,5146,2338,356447113,355738809,16491,7237,1650525526,1647885256,12.05,11.76,25.03,25.05,3.76,3.8,5.41,5.41
-39423,28,111,28111,2690,1239,254096404,250285181,2690,1239,254096404,250285181,12250,5519,1684013953,1676373773,100,100,100,100,21.96,22.45,15.09,14.93
-39425,28,035,28035,1009,455,111088021,110981859,1754,874,499169779,498999716,74934,32289,1217898313,1207748039,57.53,52.06,22.25,22.24,1.35,1.41,9.12,9.19
-39425,28,111,28111,745,419,388081758,388017857,1754,874,499169779,498999716,12250,5519,1684013953,1676373773,42.47,47.94,77.75,77.76,6.08,7.59,23.05,23.15
-39426,28,045,28045,412,180,42505758,42324214,16301,6908,461082014,455622597,43929,21840,1430968596,1227002554,2.53,2.61,9.22,9.29,0.94,0.82,2.97,3.45
-39426,28,109,28109,15889,6728,418576256,413298383,16301,6908,461082014,455622597,55834,23968,2120962431,2100125644,97.47,97.39,90.78,90.71,28.46,28.07,19.74,19.68
-39427,28,065,28065,1314,659,151961531,151378584,1314,659,151961531,151378584,12487,5876,1059663224,1057862259,100,100,100,100,10.52,11.22,14.34,14.31
-39428,28,031,28031,9761,4201,470741650,469310826,9761,4201,470741650,469310826,19568,8496,1074665629,1071716796,100,100,100,100,49.88,49.45,43.8,43.79
-39429,28,065,28065,22,11,8844942,8844942,17657,7791,800752332,791066980,12487,5876,1059663224,1057862259,0.12,0.14,1.1,1.12,0.18,0.19,0.83,0.84
-39429,28,073,28073,47,17,6375963,6327200,17657,7791,800752332,791066980,55658,24070,1296116988,1287367637,0.27,0.22,0.8,0.8,0.08,0.07,0.49,0.49
-39429,28,091,28091,17588,7763,785531427,775894838,17657,7791,800752332,791066980,27088,11838,1420919403,1404766851,99.61,99.64,98.1,98.08,64.93,65.58,55.28,55.23
-39437,28,067,28067,12917,5084,436655948,434458174,12917,5084,436655948,434458174,67761,28424,1812235691,1799510829,100,100,100,100,19.06,17.89,24.09,24.14
-39439,28,023,28023,148,67,17057153,17057153,4573,2040,358888752,358375814,16732,7876,1796247079,1791117740,3.24,3.28,4.75,4.76,0.88,0.85,0.95,0.95
-39439,28,061,28061,3327,1528,249604379,249253154,4573,2040,358888752,358375814,17062,8212,1754642609,1751461017,72.75,74.9,69.55,69.55,19.5,18.61,14.23,14.23
-39439,28,067,28067,976,386,63505248,63368591,4573,2040,358888752,358375814,67761,28424,1812235691,1799510829,21.34,18.92,17.69,17.68,1.44,1.36,3.5,3.52
-39439,28,153,28153,122,59,28721972,28696916,4573,2040,358888752,358375814,20747,9213,2107000979,2099832593,2.67,2.89,8,8.01,0.59,0.64,1.36,1.37
-39440,28,067,28067,21305,8983,52003827,51160554,21305,8983,52003827,51160554,67761,28424,1812235691,1799510829,100,100,100,100,31.44,31.6,2.87,2.84
-39443,28,061,28061,1016,429,74905233,74759257,21939,9398,690394041,682141946,17062,8212,1754642609,1751461017,4.63,4.56,10.85,10.96,5.95,5.22,4.27,4.27
-39443,28,067,28067,20370,8698,513446412,505814666,21939,9398,690394041,682141946,67761,28424,1812235691,1799510829,92.85,92.55,74.37,74.15,30.06,30.6,28.33,28.11
-39443,28,153,28153,553,271,102042396,101568023,21939,9398,690394041,682141946,20747,9213,2107000979,2099832593,2.52,2.88,14.78,14.89,2.67,2.94,4.84,4.84
-39451,28,041,28041,7181,1899,707515108,700600303,7181,1899,707515108,700600303,14400,5123,1861414596,1846027833,100,100,100,100,49.87,37.07,38.01,37.95
-39452,28,039,28039,22264,9169,1080971970,1070374401,26964,11156,1477701601,1461742762,22578,9330,1252655362,1239849234,82.57,82.19,73.15,73.23,98.61,98.27,86.29,86.33
-39452,28,041,28041,2036,878,217675406,216004733,26964,11156,1477701601,1461742762,14400,5123,1861414596,1846027833,7.55,7.87,14.73,14.78,14.14,17.14,11.69,11.7
-39452,28,059,28059,2664,1109,179054225,175363628,26964,11156,1477701601,1461742762,139668,60067,2702382445,1871923538,9.88,9.94,12.12,12,1.91,1.85,6.63,9.37
-39455,28,035,28035,838,313,96613280,96490430,9721,4217,923568388,919338327,74934,32289,1217898313,1207748039,8.62,7.42,10.46,10.5,1.12,0.97,7.93,7.99
-39455,28,073,28073,5937,2546,440312652,437510623,9721,4217,923568388,919338327,55658,24070,1296116988,1287367637,61.07,60.37,47.68,47.59,10.67,10.58,33.97,33.98
-39455,28,091,28091,22,14,6788356,6788356,9721,4217,923568388,919338327,27088,11838,1420919403,1404766851,0.23,0.33,0.74,0.74,0.08,0.12,0.48,0.48
-39455,28,109,28109,2383,1098,298510358,297528375,9721,4217,923568388,919338327,55834,23968,2120962431,2100125644,24.51,26.04,32.32,32.36,4.27,4.58,14.07,14.17
-39455,28,131,28131,541,246,81343742,81020543,9721,4217,923568388,919338327,17786,7161,1160512503,1153800111,5.57,5.83,8.81,8.81,3.04,3.44,7.01,7.02
-39456,28,041,28041,1195,559,155058579,151850230,1292,602,275545949,272337600,14400,5123,1861414596,1846027833,92.49,92.86,56.27,55.76,8.3,10.91,8.33,8.23
-39456,28,111,28111,97,43,120487370,120487370,1292,602,275545949,272337600,12250,5519,1684013953,1676373773,7.51,7.14,43.73,44.24,0.79,0.78,7.15,7.19
-39459,28,067,28067,3677,1558,167048179,166725862,3677,1558,167048179,166725862,67761,28424,1812235691,1799510829,100,100,100,100,5.43,5.48,9.22,9.27
-39461,28,041,28041,582,272,116997330,116976408,582,272,116997330,116976408,14400,5123,1861414596,1846027833,100,100,100,100,4.04,5.31,6.29,6.34
-39462,28,111,28111,1122,534,141563784,139955588,1122,534,141563784,139955588,12250,5519,1684013953,1676373773,100,100,100,100,9.16,9.68,8.41,8.35
-39464,28,067,28067,2148,925,210448375,209989021,2482,1061,240710645,240160886,67761,28424,1812235691,1799510829,86.54,87.18,87.43,87.44,3.17,3.25,11.61,11.67
-39464,28,111,28111,334,136,30262270,30171865,2482,1061,240710645,240160886,12250,5519,1684013953,1676373773,13.46,12.82,12.57,12.56,2.73,2.46,1.8,1.8
-39465,28,035,28035,19483,7733,245790490,243006643,21386,8546,345845909,342458385,74934,32289,1217898313,1207748039,91.1,90.49,71.07,70.96,26,23.95,20.18,20.12
-39465,28,067,28067,55,23,1725885,1725885,21386,8546,345845909,342458385,67761,28424,1812235691,1799510829,0.26,0.27,0.5,0.5,0.08,0.08,0.1,0.1
-39465,28,111,28111,1848,790,98329534,97725857,21386,8546,345845909,342458385,12250,5519,1684013953,1676373773,8.64,9.24,28.43,28.54,15.09,14.31,5.84,5.83
-39466,28,045,28045,3234,1417,117656699,116564605,27738,11981,373250558,368146099,43929,21840,1430968596,1227002554,11.66,11.83,31.52,31.66,7.36,6.49,8.22,9.5
-39466,28,109,28109,24504,10564,255593859,251581494,27738,11981,373250558,368146099,55834,23968,2120962431,2100125644,88.34,88.17,68.48,68.34,43.89,44.08,12.05,11.98
-39470,28,045,28045,69,31,985129,979245,13011,5557,1144636506,1134071849,43929,21840,1430968596,1227002554,0.53,0.56,0.09,0.09,0.16,0.14,0.07,0.08
-39470,28,109,28109,12942,5526,1143651377,1133092604,13011,5557,1144636506,1134071849,55834,23968,2120962431,2100125644,99.47,99.44,99.91,99.91,23.18,23.06,53.92,53.95
-39474,28,031,28031,14,7,88668,88668,6050,2841,411940545,411201249,19568,8496,1074665629,1071716796,0.23,0.25,0.02,0.02,0.07,0.08,0.01,0.01
-39474,28,065,28065,6036,2834,411851877,411112581,6050,2841,411940545,411201249,12487,5876,1059663224,1057862259,99.77,99.75,99.98,99.98,48.34,48.23,38.87,38.86
-39475,28,035,28035,289,112,75807691,75782518,12225,4980,436265306,434957214,74934,32289,1217898313,1207748039,2.36,2.25,17.38,17.42,0.39,0.35,6.22,6.27
-39475,28,073,28073,11936,4868,360457615,359174696,12225,4980,436265306,434957214,55658,24070,1296116988,1287367637,97.64,97.75,82.62,82.58,21.45,20.22,27.81,27.9
-39476,28,041,28041,2024,855,324985747,323847187,7582,3238,1047564676,1045104805,14400,5123,1861414596,1846027833,26.69,26.41,31.02,30.99,14.06,16.69,17.46,17.54
-39476,28,067,28067,196,82,83754909,83736997,7582,3238,1047564676,1045104805,67761,28424,1812235691,1799510829,2.59,2.53,8,8.01,0.29,0.29,4.62,4.65
-39476,28,111,28111,4931,2106,449352901,448049502,7582,3238,1047564676,1045104805,12250,5519,1684013953,1676373773,65.04,65.04,42.9,42.87,40.25,38.16,26.68,26.73
-39476,28,153,28153,431,195,189471119,189471119,7582,3238,1047564676,1045104805,20747,9213,2107000979,2099832593,5.68,6.02,18.09,18.13,2.08,2.12,8.99,9.02
-39477,28,067,28067,686,338,14360009,14273438,686,338,14360009,14273438,67761,28424,1812235691,1799510829,100,100,100,100,1.01,1.19,0.79,0.79
-39478,28,091,28091,1213,540,106369536,104705157,2201,973,192951353,191286974,27088,11838,1420919403,1404766851,55.11,55.5,55.13,54.74,4.48,4.56,7.49,7.45
-39478,28,147,28147,988,433,86581817,86581817,2201,973,192951353,191286974,15443,7132,1047406234,1046210318,44.89,44.5,44.87,45.26,6.4,6.07,8.27,8.28
-39479,28,031,28031,4874,2144,283021397,282495380,5796,2545,328726505,328159119,19568,8496,1074665629,1071716796,84.09,84.24,86.1,86.08,24.91,25.24,26.34,26.36
-39479,28,067,28067,922,401,45705108,45663739,5796,2545,328726505,328159119,67761,28424,1812235691,1799510829,15.91,15.76,13.9,13.92,1.36,1.41,2.52,2.54
-39480,28,061,28061,64,32,5812465,5781339,2770,1225,139893952,139284061,17062,8212,1754642609,1751461017,2.31,2.61,4.15,4.15,0.38,0.39,0.33,0.33
-39480,28,067,28067,2706,1193,134081487,133502722,2770,1225,139893952,139284061,67761,28424,1812235691,1799510829,97.69,97.39,95.85,95.85,3.99,4.2,7.4,7.42
-39481,28,061,28061,1867,853,101823495,101418749,1867,853,101823495,101418749,17062,8212,1754642609,1751461017,100,100,100,100,10.94,10.39,5.8,5.79
-39482,28,031,28031,636,250,46840986,46840986,9746,3978,511593730,510250520,19568,8496,1074665629,1071716796,6.53,6.28,9.16,9.18,3.25,2.94,4.36,4.37
-39482,28,065,28065,536,245,79809692,79672450,9746,3978,511593730,510250520,12487,5876,1059663224,1057862259,5.5,6.16,15.6,15.61,4.29,4.17,7.53,7.53
-39482,28,073,28073,8093,3299,355729323,354586526,9746,3978,511593730,510250520,55658,24070,1296116988,1287367637,83.04,82.93,69.53,69.49,14.54,13.71,27.45,27.54
-39482,28,091,28091,481,184,29213729,29150558,9746,3978,511593730,510250520,27088,11838,1420919403,1404766851,4.94,4.63,5.71,5.71,1.78,1.55,2.06,2.08
-39483,28,091,28091,6372,2714,394928127,390223921,6447,2753,406042443,401338237,27088,11838,1420919403,1404766851,98.84,98.58,97.26,97.23,23.52,22.93,27.79,27.78
-39483,28,147,28147,75,39,11114316,11114316,6447,2753,406042443,401338237,15443,7132,1047406234,1046210318,1.16,1.42,2.74,2.77,0.49,0.55,1.06,1.06
-39501,28,047,28047,21987,10493,36778368,35439970,21987,10493,36778368,35439970,187105,85181,2528271081,1486637454,100,100,100,100,11.75,12.32,1.45,2.38
-39503,28,047,28047,45309,18776,323778265,312587529,45309,18776,323778265,312587529,187105,85181,2528271081,1486637454,100,100,100,100,24.22,22.04,12.81,21.03
-39507,28,047,28047,16234,8747,21810116,20902323,16234,8747,21810116,20902323,187105,85181,2528271081,1486637454,100,100,100,100,8.68,10.27,0.86,1.41
-39520,28,045,28045,14681,7971,250828339,240186633,14681,7971,250828339,240186633,43929,21840,1430968596,1227002554,100,100,100,100,33.42,36.5,17.53,19.58
-39525,28,045,28045,8383,4282,29038935,27654512,8383,4282,29038935,27654512,43929,21840,1430968596,1227002554,100,100,100,100,19.08,19.61,2.03,2.25
-39530,28,047,28047,8086,4361,27489430,26699073,8086,4361,27489430,26699073,187105,85181,2528271081,1486637454,100,100,100,100,4.32,5.12,1.09,1.8
-39531,28,047,28047,17736,9603,20096217,17520249,17736,9603,20096217,17520249,187105,85181,2528271081,1486637454,100,100,100,100,9.48,11.27,0.79,1.18
-39532,28,047,28047,23424,10295,193000075,183477468,32716,14462,216124449,204369448,187105,85181,2528271081,1486637454,71.6,71.19,89.3,89.78,12.52,12.09,7.63,12.34
-39532,28,059,28059,9292,4167,23124374,20891980,32716,14462,216124449,204369448,139668,60067,2702382445,1871923538,28.4,28.81,10.7,10.22,6.65,6.94,0.86,1.12
-39534,28,047,28047,2379,0,4188814,4179780,2379,0,4188814,4179780,187105,85181,2528271081,1486637454,100,0,100,100,1.27,0,0.17,0.28
-39540,28,047,28047,8522,3940,13202546,11903189,8522,3940,13202546,11903189,187105,85181,2528271081,1486637454,100,100,100,100,4.55,4.63,0.52,0.8
-39553,28,059,28059,17174,7488,73485585,68408223,17174,7488,73485585,68408223,139668,60067,2702382445,1871923538,100,100,100,100,12.3,12.47,2.72,3.65
-39556,28,045,28045,7705,3351,276161291,272542021,7705,3351,276161291,272542021,43929,21840,1430968596,1227002554,100,100,100,100,17.54,15.34,19.3,22.21
-39560,28,047,28047,16844,7594,57984115,56499104,16844,7594,57984115,56499104,187105,85181,2528271081,1486637454,100,100,100,100,9,8.92,2.29,3.8
-39561,28,131,28131,1852,807,72940697,72849718,1852,807,72940697,72849718,17786,7161,1160512503,1153800111,100,100,100,100,10.41,11.27,6.29,6.31
-39562,28,059,28059,17912,7204,497916333,486801759,17912,7204,497916333,486801759,139668,60067,2702382445,1871923538,100,100,100,100,12.82,11.99,18.43,26.01
-39563,28,059,28059,13790,6224,56974172,52761521,13790,6224,56974172,52761521,139668,60067,2702382445,1871923538,100,100,100,100,9.87,10.36,2.11,2.82
-39564,28,059,28059,36952,16033,152564965,137509835,36952,16033,152564965,137509835,139668,60067,2702382445,1871923538,100,100,100,100,26.46,26.69,5.65,7.35
-39565,28,047,28047,38,12,646902,646902,19453,7588,729682018,722438748,187105,85181,2528271081,1486637454,0.2,0.16,0.09,0.09,0.02,0.01,0.03,0.04
-39565,28,059,28059,19415,7576,729035116,721791846,19453,7588,729682018,722438748,139668,60067,2702382445,1871923538,99.8,99.84,99.91,99.91,13.9,12.61,26.98,38.56
-39567,28,059,28059,10740,4853,37139054,34441843,10740,4853,37139054,34441843,139668,60067,2702382445,1871923538,100,100,100,100,7.69,8.08,1.37,1.84
-39571,28,045,28045,288,143,9407762,9321041,13179,6122,230979586,220276882,43929,21840,1430968596,1227002554,2.19,2.34,4.07,4.23,0.66,0.65,0.66,0.76
-39571,28,047,28047,12891,5979,221571824,210955841,13179,6122,230979586,220276882,187105,85181,2528271081,1486637454,97.81,97.66,95.93,95.77,6.89,7.02,8.76,14.19
-39572,28,045,28045,1414,705,29061258,27905241,1414,705,29061258,27905241,43929,21840,1430968596,1227002554,100,100,100,100,3.22,3.23,2.03,2.27
-39573,28,039,28039,314,161,171683392,169474833,8828,3566,1036276488,1028123223,22578,9330,1252655362,1239849234,3.56,4.51,16.57,16.48,1.39,1.73,13.71,13.67
-39573,28,045,28045,1934,815,140821307,138250335,8828,3566,1036276488,1028123223,43929,21840,1430968596,1227002554,21.91,22.85,13.59,13.45,4.4,3.73,9.84,11.27
-39573,28,047,28047,98,43,20395688,20171587,8828,3566,1036276488,1028123223,187105,85181,2528271081,1486637454,1.11,1.21,1.97,1.96,0.05,0.05,0.81,1.36
-39573,28,059,28059,134,60,55201607,55201607,8828,3566,1036276488,1028123223,139668,60067,2702382445,1871923538,1.52,1.68,5.33,5.37,0.1,0.1,2.04,2.95
-39573,28,109,28109,116,52,4630581,4624788,8828,3566,1036276488,1028123223,55834,23968,2120962431,2100125644,1.31,1.46,0.45,0.45,0.21,0.22,0.22,0.22
-39573,28,131,28131,6232,2435,643543913,640400073,8828,3566,1036276488,1028123223,17786,7161,1160512503,1153800111,70.59,68.28,62.1,62.29,35.04,34,55.45,55.5
-39574,28,047,28047,13557,5338,589696879,585654439,13613,5364,594123276,590080836,187105,85181,2528271081,1486637454,99.59,99.52,99.25,99.25,7.25,6.27,23.32,39.39
-39574,28,131,28131,56,26,4426397,4426397,13613,5364,594123276,590080836,17786,7161,1160512503,1153800111,0.41,0.48,0.75,0.75,0.31,0.36,0.38,0.38
-39576,28,045,28045,5809,2945,16906052,16814897,5809,2945,16906052,16814897,43929,21840,1430968596,1227002554,100,100,100,100,13.22,13.48,1.18,1.37
-39577,28,035,28035,786,337,105672337,105192315,10374,4236,665770023,661976248,74934,32289,1217898313,1207748039,7.58,7.96,15.87,15.89,1.05,1.04,8.68,8.71
-39577,28,111,28111,483,252,201839932,201680553,10374,4236,665770023,661976248,12250,5519,1684013953,1676373773,4.66,5.95,30.32,30.47,3.94,4.57,11.99,12.03
-39577,28,131,28131,9105,3647,358257754,355103380,10374,4236,665770023,661976248,17786,7161,1160512503,1153800111,87.77,86.1,53.81,53.64,51.19,50.93,30.87,30.78
-39581,28,059,28059,11595,5353,53212994,50907932,11595,5353,53212994,50907932,139668,60067,2702382445,1871923538,100,100,100,100,8.3,8.91,1.97,2.72
-39601,28,037,28037,320,165,58780763,58780763,23536,10247,685555900,682988962,8118,4154,1467909691,1460181336,1.36,1.61,8.57,8.61,3.94,3.97,4,4.03
-39601,28,085,28085,23216,10082,626775137,624208199,23536,10247,685555900,682988962,34869,15255,1523365145,1518030804,98.64,98.39,91.43,91.39,66.58,66.09,41.14,41.12
-39629,28,085,28085,6519,2864,403394008,403048422,6519,2864,403394008,403048422,34869,15255,1523365145,1518030804,100,100,100,100,18.7,18.77,26.48,26.55
-39630,28,037,28037,1115,548,7999198,7868566,1115,548,7999198,7868566,8118,4154,1467909691,1460181336,100,100,100,100,13.73,13.19,0.54,0.54
-39631,28,005,28005,787,365,113856797,113781958,3732,1677,393580171,393470864,13131,6635,1894828840,1890950982,21.09,21.77,28.93,28.92,5.99,5.5,6.01,6.02
-39631,28,157,28157,2945,1312,279723374,279688906,3732,1677,393580171,393470864,9878,5037,1781306219,1756287189,78.91,78.23,71.07,71.08,29.81,26.05,15.7,15.93
-39633,28,005,28005,250,136,26766764,26745428,1094,640,330741307,328908656,13131,6635,1894828840,1890950982,22.85,21.25,8.09,8.13,1.9,2.05,1.41,1.41
-39633,28,157,28157,844,504,303974543,302163228,1094,640,330741307,328908656,9878,5037,1781306219,1756287189,77.15,78.75,91.91,91.87,8.54,10.01,17.06,17.2
-39635,28,113,28113,170,98,3144631,3144631,170,98,3144631,3144631,40404,17861,1063691016,1059342907,100,100,100,100,0.42,0.55,0.3,0.3
-39638,28,005,28005,3289,1782,387816082,386929241,3333,1838,456678738,455784596,13131,6635,1894828840,1890950982,98.68,96.95,84.92,84.89,25.05,26.86,20.47,20.46
-39638,28,157,28157,44,56,68862656,68855355,3333,1838,456678738,455784596,9878,5037,1781306219,1756287189,1.32,3.05,15.08,15.11,0.45,1.11,3.87,3.92
-39641,28,077,28077,1983,910,182340478,182268163,4569,2098,363734106,363605962,12929,6019,1128637705,1115424285,43.4,43.37,50.13,50.13,15.34,15.12,16.16,16.34
-39641,28,085,28085,54,25,6864821,6864821,4569,2098,363734106,363605962,34869,15255,1523365145,1518030804,1.18,1.19,1.89,1.89,0.15,0.16,0.45,0.45
-39641,28,113,28113,445,187,27543188,27543188,4569,2098,363734106,363605962,40404,17861,1063691016,1059342907,9.74,8.91,7.57,7.58,1.1,1.05,2.59,2.6
-39641,28,147,28147,2087,976,146985619,146929790,4569,2098,363734106,363605962,15443,7132,1047406234,1046210318,45.68,46.52,40.41,40.41,13.51,13.68,14.03,14.04
-39643,28,091,28091,877,399,57925231,57910691,1102,505,83193914,83179374,27088,11838,1420919403,1404766851,79.58,79.01,69.63,69.62,3.24,3.37,4.08,4.12
-39643,28,147,28147,225,106,25268683,25268683,1102,505,83193914,83179374,15443,7132,1047406234,1046210318,20.42,20.99,30.37,30.38,1.46,1.49,2.41,2.42
-39645,28,005,28005,5016,2537,833191321,831330269,5016,2537,833191321,831330269,13131,6635,1894828840,1890950982,100,100,100,100,38.2,38.24,43.97,43.96
-39647,28,037,28037,971,490,199657816,199374239,1023,508,202301702,202018125,8118,4154,1467909691,1460181336,94.92,96.46,98.69,98.69,11.96,11.8,13.6,13.65
-39647,28,085,28085,52,18,2643886,2643886,1023,508,202301702,202018125,34869,15255,1523365145,1518030804,5.08,3.54,1.31,1.31,0.15,0.12,0.17,0.17
-39648,28,113,28113,21710,9640,269130242,268710414,21710,9640,269130242,268710414,40404,17861,1063691016,1059342907,100,100,100,100,53.73,53.97,25.3,25.37
-39652,28,005,28005,1115,509,141991381,141901079,8315,3751,458571990,457822890,13131,6635,1894828840,1890950982,13.41,13.57,30.96,30.99,8.49,7.67,7.49,7.5
-39652,28,113,28113,7200,3242,316580609,315921811,8315,3751,458571990,457822890,40404,17861,1063691016,1059342907,86.59,86.43,69.04,69.01,17.82,18.15,29.76,29.82
-39653,28,005,28005,57,24,13658571,13290356,2799,1512,574815574,568208278,13131,6635,1894828840,1890950982,2.04,1.59,2.38,2.34,0.43,0.36,0.72,0.7
-39653,28,037,28037,2726,1478,543065939,536826858,2799,1512,574815574,568208278,8118,4154,1467909691,1460181336,97.39,97.75,94.48,94.48,33.58,35.58,37,36.76
-39653,28,063,28063,16,10,18091064,18091064,2799,1512,574815574,568208278,7726,3673,1365608668,1346620575,0.57,0.66,3.15,3.18,0.21,0.27,1.32,1.34
-39654,28,077,28077,5635,2565,405919239,398729919,5635,2565,405919239,398729919,12929,6019,1128637705,1115424285,100,100,100,100,43.58,42.62,35.97,35.75
-39656,28,065,28065,560,279,84192837,84071841,803,412,118245594,117181614,12487,5876,1059663224,1057862259,69.74,67.72,71.2,71.74,4.48,4.75,7.95,7.95
-39656,28,077,28077,243,133,34052757,33109773,803,412,118245594,117181614,12929,6019,1128637705,1115424285,30.26,32.28,28.8,28.26,1.88,2.21,3.02,2.97
-39657,28,005,28005,498,258,97782739,97689459,2351,1137,237460609,237119920,13131,6635,1894828840,1890950982,21.18,22.69,41.18,41.2,3.79,3.89,5.16,5.17
-39657,28,113,28113,1853,879,139677870,139430461,2351,1137,237460609,237119920,40404,17861,1063691016,1059342907,78.82,77.31,58.82,58.8,4.59,4.92,13.13,13.16
-39661,28,001,28001,687,346,123331464,123260063,2997,1443,680000230,679033351,32297,14656,1262742005,1197628202,22.92,23.98,18.14,18.15,2.13,2.36,9.77,10.29
-39661,28,037,28037,2310,1097,556668766,555773288,2997,1443,680000230,679033351,8118,4154,1467909691,1460181336,77.08,76.02,81.86,81.85,28.46,26.41,37.92,38.06
-39662,28,077,28077,139,57,11648829,11627965,1318,594,118852756,118781972,12929,6019,1128637705,1115424285,10.55,9.6,9.8,9.79,1.08,0.95,1.03,1.04
-39662,28,085,28085,891,398,82382130,82361421,1318,594,118852756,118781972,34869,15255,1523365145,1518030804,67.6,67,69.31,69.34,2.56,2.61,5.41,5.43
-39662,28,113,28113,288,139,24821797,24792586,1318,594,118852756,118781972,40404,17861,1063691016,1059342907,21.85,23.4,20.88,20.87,0.71,0.78,2.33,2.34
-39663,28,065,28065,288,144,27021009,27021009,3080,1439,324654514,320817357,12487,5876,1059663224,1057862259,9.35,10.01,8.32,8.42,2.31,2.45,2.55,2.55
-39663,28,077,28077,2792,1295,297633505,293796348,3080,1439,324654514,320817357,12929,6019,1128637705,1115424285,90.65,89.99,91.68,91.58,21.59,21.52,26.37,26.34
-39664,28,005,28005,1276,610,174400727,174132056,2256,1112,302231995,301787961,13131,6635,1894828840,1890950982,56.56,54.86,57.7,57.7,9.72,9.19,9.2,9.21
-39664,28,037,28037,654,366,93822676,93660798,2256,1112,302231995,301787961,8118,4154,1467909691,1460181336,28.99,32.91,31.04,31.04,8.06,8.81,6.39,6.41
-39664,28,085,28085,326,136,34008592,33995107,2256,1112,302231995,301787961,34869,15255,1523365145,1518030804,14.45,12.23,11.25,11.26,0.93,0.89,2.23,2.24
-39665,28,077,28077,948,496,114234466,113620763,1196,614,153803922,153190219,12929,6019,1128637705,1115424285,79.26,80.78,74.27,74.17,7.33,8.24,10.12,10.19
-39665,28,085,28085,248,118,39569456,39569456,1196,614,153803922,153190219,34869,15255,1523365145,1518030804,20.74,19.22,25.73,25.83,0.71,0.77,2.6,2.61
-39666,28,005,28005,843,414,105364458,105151136,9588,4084,406484434,403259689,13131,6635,1894828840,1890950982,8.79,10.14,25.92,26.08,6.42,6.24,5.56,5.56
-39666,28,085,28085,600,274,45499588,45481028,9588,4084,406484434,403259689,34869,15255,1523365145,1518030804,6.26,6.71,11.19,11.28,1.72,1.8,2.99,3
-39666,28,113,28113,8145,3396,255620388,252627525,9588,4084,406484434,403259689,40404,17861,1063691016,1059342907,84.95,83.15,62.89,62.65,20.16,19.01,24.03,23.85
-39667,28,091,28091,176,70,14679932,14679932,12837,5928,819308022,818167935,27088,11838,1420919403,1404766851,1.37,1.18,1.79,1.79,0.65,0.59,1.03,1.05
-39667,28,113,28113,593,280,27172291,27172291,12837,5928,819308022,818167935,40404,17861,1063691016,1059342907,4.62,4.72,3.32,3.32,1.47,1.57,2.55,2.57
-39667,28,147,28147,12068,5578,777455799,776315712,12837,5928,819308022,818167935,15443,7132,1047406234,1046210318,94.01,94.1,94.89,94.88,78.15,78.21,74.23,74.2
-39668,28,037,28037,22,10,7914533,7896824,681,463,299505906,299488197,8118,4154,1467909691,1460181336,3.23,2.16,2.64,2.64,0.27,0.24,0.54,0.54
-39668,28,063,28063,494,362,236510586,236510586,681,463,299505906,299488197,7726,3673,1365608668,1346620575,72.54,78.19,78.97,78.97,6.39,9.86,17.32,17.56
-39668,28,085,28085,165,91,55080787,55080787,681,463,299505906,299488197,34869,15255,1523365145,1518030804,24.23,19.65,18.39,18.39,0.47,0.6,3.62,3.63
-39669,28,157,28157,6045,3165,1128745646,1105579700,6045,3165,1128745646,1105579700,9878,5037,1781306219,1756287189,100,100,100,100,61.2,62.84,63.37,62.95
-39701,28,087,28087,13997,6593,496638713,485009367,13997,6593,496638713,485009367,59779,26556,1337637765,1309262931,100,100,100,100,23.41,24.83,37.13,37.04
-39702,28,087,28087,22883,9415,268098282,261619811,22883,9415,268098282,261619811,59779,26556,1337637765,1309262931,100,100,100,100,38.28,35.45,20.04,19.98
-39705,28,087,28087,13667,6743,181588564,172719330,13667,6743,181588564,172719330,59779,26556,1337637765,1309262931,100,100,100,100,22.86,25.39,13.58,13.19
-39730,28,095,28095,11805,5208,655860027,652127798,11805,5208,655860027,652127798,36989,16455,1999718827,1981584651,100,100,100,100,31.91,31.65,32.8,32.91
-39735,28,019,28019,3916,1914,401049228,399397707,3916,1914,401049228,399397707,8547,4150,1087420235,1083074478,100,100,100,100,45.82,46.12,36.88,36.88
-39736,28,087,28087,312,143,7014864,7014864,312,143,7014864,7014864,59779,26556,1337637765,1309262931,100,100,100,100,0.52,0.54,0.52,0.54
-39737,28,155,28155,285,136,40014092,39870096,285,136,40014092,39870096,10253,4804,1096168963,1090230505,100,100,100,100,2.78,2.83,3.65,3.66
-39739,28,103,28103,2957,1431,473894273,464422726,2957,1431,473894273,464422726,11545,5170,1812939684,1800400143,100,100,100,100,25.61,27.68,26.14,25.8
-39740,28,087,28087,4556,1865,142714284,142492429,5038,2084,215577964,215307039,59779,26556,1337637765,1309262931,90.43,89.49,66.2,66.18,7.62,7.02,10.67,10.88
-39740,28,095,28095,482,219,72863680,72814610,5038,2084,215577964,215307039,36989,16455,1999718827,1981584651,9.57,10.51,33.8,33.82,1.3,1.33,3.64,3.67
-39741,28,025,28025,1560,680,173845228,173204418,1560,680,173845228,173204418,20634,9180,1077449276,1062093753,100,100,100,100,7.56,7.41,16.13,16.31
-39743,28,087,28087,1567,628,133434600,133054499,2067,833,179767961,179267667,59779,26556,1337637765,1309262931,75.81,75.39,74.23,74.22,2.62,2.36,9.98,10.16
-39743,28,103,28103,21,14,6395961,6395961,2067,833,179767961,179267667,11545,5170,1812939684,1800400143,1.02,1.68,3.56,3.57,0.18,0.27,0.35,0.36
-39743,28,105,28105,479,191,39937400,39817207,2067,833,179767961,179267667,47671,20947,1196399035,1186733896,23.17,22.93,22.22,22.21,1,0.91,3.34,3.36
-39744,28,013,28013,38,18,22242545,22229755,6008,2875,657294885,653664072,14962,6913,1522808490,1519218090,0.63,0.63,3.38,3.4,0.25,0.26,1.46,1.46
-39744,28,019,28019,463,221,104608505,104045600,6008,2875,657294885,653664072,8547,4150,1087420235,1083074478,7.71,7.69,15.92,15.92,5.42,5.33,9.62,9.61
-39744,28,155,28155,5507,2636,530443835,527388717,6008,2875,657294885,653664072,10253,4804,1096168963,1090230505,91.66,91.69,80.7,80.68,53.71,54.87,48.39,48.37
-39745,28,007,28007,142,62,63176839,63163974,810,327,135932439,135777948,19564,9126,1908015901,1903594473,17.53,18.96,46.48,46.52,0.73,0.68,3.31,3.32
-39745,28,019,28019,582,225,53283418,53141792,810,327,135932439,135777948,8547,4150,1087420235,1083074478,71.85,68.81,39.2,39.14,6.81,5.42,4.9,4.91
-39745,28,097,28097,86,40,19472182,19472182,810,327,135932439,135777948,10925,5194,1056427226,1054074954,10.62,12.23,14.32,14.34,0.79,0.77,1.84,1.85
-39746,28,095,28095,3183,1411,238708424,234645049,3183,1411,238708424,234645049,36989,16455,1999718827,1981584651,100,100,100,100,8.61,8.57,11.94,11.84
-39747,28,097,28097,1999,1092,391853267,391473067,1999,1092,391853267,391473067,10925,5194,1056427226,1054074954,100,100,100,100,18.3,21.02,37.09,37.14
-39750,28,019,28019,37,14,6625599,6582962,2781,1266,213559001,212587294,8547,4150,1087420235,1083074478,1.33,1.11,3.1,3.1,0.43,0.34,0.61,0.61
-39750,28,025,28025,142,73,21767247,21767247,2781,1266,213559001,212587294,20634,9180,1077449276,1062093753,5.11,5.77,10.19,10.24,0.69,0.8,2.02,2.05
-39750,28,105,28105,1225,578,76743627,76585948,2781,1266,213559001,212587294,47671,20947,1196399035,1186733896,44.05,45.66,35.94,36.03,2.57,2.76,6.41,6.45
-39750,28,155,28155,1377,601,108422528,107651137,2781,1266,213559001,212587294,10253,4804,1096168963,1090230505,49.51,47.47,50.77,50.64,13.43,12.51,9.89,9.87
-39751,28,017,28017,44,22,26669780,26669780,1309,608,205914117,205054072,17392,7514,1305991080,1299602163,3.36,3.62,12.95,13.01,0.25,0.29,2.04,2.05
-39751,28,025,28025,417,181,42240281,42221783,1309,608,205914117,205054072,20634,9180,1077449276,1062093753,31.86,29.77,20.51,20.59,2.02,1.97,3.92,3.98
-39751,28,155,28155,848,405,137004056,136162509,1309,608,205914117,205054072,10253,4804,1096168963,1090230505,64.78,66.61,66.53,66.4,8.27,8.43,12.5,12.49
-39752,28,019,28019,1021,468,124588833,123807177,2473,1078,179984475,178804095,8547,4150,1087420235,1083074478,41.29,43.41,69.22,69.24,11.95,11.28,11.46,11.43
-39752,28,155,28155,1452,610,55395642,54996918,2473,1078,179984475,178804095,10253,4804,1096168963,1090230505,58.71,56.59,30.78,30.76,14.16,12.7,5.05,5.04
-39755,28,025,28025,858,428,143175669,142544849,1051,511,179412857,177479945,20634,9180,1077449276,1062093753,81.64,83.76,79.8,80.32,4.16,4.66,13.29,13.42
-39755,28,105,28105,193,83,36237188,34935096,1051,511,179412857,177479945,47671,20947,1196399035,1186733896,18.36,16.24,20.2,19.68,0.4,0.4,3.03,2.94
-39756,28,017,28017,192,77,25676714,25530124,1943,799,197899619,197385254,17392,7514,1305991080,1299602163,9.88,9.64,12.97,12.93,1.1,1.02,1.97,1.96
-39756,28,025,28025,1025,411,89398927,89135841,1943,799,197899619,197385254,20634,9180,1077449276,1062093753,52.75,51.44,45.17,45.16,4.97,4.48,8.3,8.39
-39756,28,095,28095,726,311,82823978,82719289,1943,799,197899619,197385254,36989,16455,1999718827,1981584651,37.36,38.92,41.85,41.91,1.96,1.89,4.14,4.17
-39759,28,087,28087,167,71,22787393,22734262,42108,19269,848031535,840413114,59779,26556,1337637765,1309262931,0.4,0.37,2.69,2.71,0.28,0.27,1.7,1.74
-39759,28,105,28105,41941,19198,825244142,817678852,42108,19269,848031535,840413114,47671,20947,1196399035,1186733896,99.6,99.63,97.31,97.29,87.98,91.65,68.98,68.9
-39760,28,105,28105,23,11,83552,83552,23,11,83552,83552,47671,20947,1196399035,1186733896,100,100,100,100,0.05,0.05,0.01,0.01
-39762,28,105,28105,2207,62,1474085,1474085,2207,62,1474085,1474085,47671,20947,1196399035,1186733896,100,100,100,100,4.63,0.3,0.12,0.12
-39766,28,087,28087,2630,1098,85361065,84618369,2630,1098,85361065,84618369,59779,26556,1337637765,1309262931,100,100,100,100,4.4,4.13,6.38,6.46
-39767,28,019,28019,202,137,68465140,68130307,861,490,246237727,245479597,8547,4150,1087420235,1083074478,23.46,27.96,27.8,27.75,2.36,3.3,6.3,6.29
-39767,28,097,28097,223,134,40629944,40518267,861,490,246237727,245479597,10925,5194,1056427226,1054074954,25.9,27.35,16.5,16.51,2.04,2.58,3.85,3.84
-39767,28,155,28155,436,219,137142643,136831023,861,490,246237727,245479597,10253,4804,1096168963,1090230505,50.64,44.69,55.7,55.74,4.25,4.56,12.51,12.55
-39769,28,019,28019,23,11,1438062,1432134,1923,1014,368355838,367665193,8547,4150,1087420235,1083074478,1.2,1.08,0.39,0.39,0.27,0.27,0.13,0.13
-39769,28,105,28105,1603,824,216679041,216159156,1923,1014,368355838,367665193,47671,20947,1196399035,1186733896,83.36,81.26,58.82,58.79,3.36,3.93,18.11,18.21
-39769,28,159,28159,297,179,150238735,150073903,1923,1014,368355838,367665193,19198,8745,1580115118,1572757155,15.44,17.65,40.79,40.82,1.55,2.05,9.51,9.54
-39771,28,155,28155,127,60,1492173,1478658,127,60,1492173,1478658,10253,4804,1096168963,1090230505,100,100,100,100,1.24,1.25,0.14,0.14
-39772,28,019,28019,1793,874,186802472,186300528,1793,874,186802472,186300528,8547,4150,1087420235,1083074478,100,100,100,100,20.98,21.06,17.18,17.2
-39773,28,025,28025,16466,7344,586048468,572246159,16670,7448,612096179,598123206,20634,9180,1077449276,1062093753,98.78,98.6,95.74,95.67,79.8,80,54.39,53.88
-39773,28,095,28095,204,104,26047711,25877047,16670,7448,612096179,598123206,36989,16455,1999718827,1981584651,1.22,1.4,4.26,4.33,0.55,0.63,1.3,1.31
-39776,28,017,28017,1508,657,172464249,172056065,1674,720,193437705,193029521,17392,7514,1305991080,1299602163,90.08,91.25,89.16,89.13,8.67,8.74,13.21,13.24
-39776,28,025,28025,166,63,20973456,20973456,1674,720,193437705,193029521,20634,9180,1077449276,1062093753,9.92,8.75,10.84,10.87,0.8,0.69,1.95,1.97
-39813,13,007,13007,140,68,51259266,50868385,2110,975,321285368,319212291,3451,1652,904264104,885629946,6.64,6.97,15.95,15.94,4.06,4.12,5.67,5.74
-39813,13,037,13037,1329,633,132704865,131255258,2110,975,321285368,319212291,6694,2409,734463021,726147317,62.99,64.92,41.3,41.12,19.85,26.28,18.07,18.08
-39813,13,099,13099,641,274,137321237,137088648,2110,975,321285368,319212291,11008,4975,1337329353,1327612162,30.38,28.1,42.74,42.95,5.82,5.51,10.27,10.33
-39815,13,087,13087,1686,745,133418094,132944837,1686,745,133418094,132944837,27842,12125,1613997327,1546584607,100,100,100,100,6.06,6.14,8.27,8.6
-39817,13,087,13087,10894,4370,395209312,380644742,10894,4370,395209312,380644742,27842,12125,1613997327,1546584607,100,100,100,100,39.13,36.04,24.49,24.61
-39819,13,087,13087,11282,5145,423105517,402296746,11282,5145,423105517,402296746,27842,12125,1613997327,1546584607,100,100,100,100,40.52,42.43,26.21,26.01
-39823,13,099,13099,8403,3687,866564569,858693917,8550,3757,912824193,904865280,11008,4975,1337329353,1327612162,98.28,98.14,94.93,94.9,76.34,74.11,64.8,64.68
-39823,13,201,13201,147,70,46259624,46171363,8550,3757,912824193,904865280,6125,2791,734683135,731466754,1.72,1.86,5.07,5.1,2.4,2.51,6.3,6.31
-39824,13,061,13061,306,151,74512507,74152047,544,286,146581828,145803288,3183,2102,562634593,506035709,56.25,52.8,50.83,50.86,9.61,7.18,13.24,14.65
-39824,13,099,13099,238,135,72069321,71651241,544,286,146581828,145803288,11008,4975,1337329353,1327612162,43.75,47.2,49.17,49.14,2.16,2.71,5.39,5.4
-39825,13,087,13087,1373,652,228832276,199570663,1461,700,271755017,241841354,27842,12125,1613997327,1546584607,93.98,93.14,84.21,82.52,4.93,5.38,14.18,12.9
-39825,13,253,13253,88,48,42922741,42270691,1461,700,271755017,241841354,8729,4797,664476954,609232736,6.02,6.86,15.79,17.48,1.01,1,6.46,6.94
-39826,13,273,13273,418,216,55178913,54038509,418,216,55178913,54038509,9315,4080,874647028,868783601,100,100,100,100,4.49,5.29,6.31,6.22
-39827,13,131,13131,3842,1547,155801472,153248596,3842,1547,155801472,153248596,25011,10760,1192078105,1177219063,100,100,100,100,15.36,14.38,13.07,13.02
-39828,13,131,13131,15150,6459,364136974,358671543,15150,6459,364136974,358671543,25011,10760,1192078105,1177219063,100,100,100,100,60.57,60.03,30.55,30.47
-39834,13,087,13087,2138,979,315493877,313499910,2138,979,315493877,313499910,27842,12125,1613997327,1546584607,100,100,100,100,7.68,8.07,19.55,20.27
-39836,13,061,13061,68,35,23211308,23064071,461,347,200600971,200138216,3183,2102,562634593,506035709,14.75,10.09,11.57,11.52,2.14,1.67,4.13,4.56
-39836,13,243,13243,393,312,177389663,177074145,461,347,200600971,200138216,7719,4153,1115956894,1109126837,85.25,89.91,88.43,88.48,5.09,7.51,15.9,15.97
-39837,13,007,13007,386,183,83611633,82265624,6166,2805,737551613,733373073,3451,1652,904264104,885629946,6.26,6.52,11.34,11.22,11.19,11.08,9.25,9.29
-39837,13,087,13087,324,152,71825761,71707442,6166,2805,737551613,733373073,27842,12125,1613997327,1546584607,5.25,5.42,9.74,9.78,1.16,1.25,4.45,4.64
-39837,13,099,13099,24,12,5342964,5342964,6166,2805,737551613,733373073,11008,4975,1337329353,1327612162,0.39,0.43,0.72,0.73,0.22,0.24,0.4,0.4
-39837,13,201,13201,5432,2458,576771255,574057043,6166,2805,737551613,733373073,6125,2791,734683135,731466754,88.1,87.63,78.2,78.28,88.69,88.07,78.51,78.48
-39840,13,243,13243,5726,2979,549627822,546803343,5726,2979,549627822,546803343,7719,4153,1115956894,1109126837,100,100,100,100,74.18,71.73,49.25,49.3
-39841,13,007,13007,144,62,32921804,32880575,878,423,175366716,174976644,3451,1652,904264104,885629946,16.4,14.66,18.77,18.79,4.17,3.75,3.64,3.71
-39841,13,099,13099,659,323,112453259,112226283,878,423,175366716,174976644,11008,4975,1337329353,1327612162,75.06,76.36,64.12,64.14,5.99,6.49,8.41,8.45
-39841,13,201,13201,75,38,29991653,29869786,878,423,175366716,174976644,6125,2791,734683135,731466754,8.54,8.98,17.1,17.07,1.22,1.36,4.08,4.08
-39842,13,037,13037,21,14,3187673,3187673,8357,3578,738426737,733866433,6694,2409,734463021,726147317,0.25,0.39,0.43,0.43,0.31,0.58,0.43,0.44
-39842,13,273,13273,8336,3564,735239064,730678760,8357,3578,738426737,733866433,9315,4080,874647028,868783601,99.75,99.61,99.57,99.57,89.49,87.35,84.06,84.1
-39845,13,099,13099,73,36,8300131,8300131,7871,4411,554470403,503609565,11008,4975,1337329353,1327612162,0.93,0.82,1.5,1.65,0.66,0.72,0.62,0.63
-39845,13,201,13201,443,209,77254249,76978555,7871,4411,554470403,503609565,6125,2791,734683135,731466754,5.63,4.74,13.93,15.29,7.23,7.49,10.52,10.52
-39845,13,253,13253,7355,4166,468916023,418330879,7871,4411,554470403,503609565,8729,4797,664476954,609232736,93.44,94.45,84.57,83.07,84.26,86.85,70.57,68.67
-39846,13,037,13037,2320,1015,207703103,206562786,2440,1061,225065403,223775574,6694,2409,734463021,726147317,95.08,95.66,92.29,92.31,34.66,42.13,28.28,28.45
-39846,13,061,13061,120,46,17362300,17212788,2440,1061,225065403,223775574,3183,2102,562634593,506035709,4.92,4.34,7.71,7.69,3.77,2.19,3.09,3.4
-39851,13,061,13061,2388,1611,369408238,315444187,2388,1611,369408238,315444187,3183,2102,562634593,506035709,100,100,100,100,75.02,76.64,65.66,62.34
-39854,13,061,13061,180,179,22351124,22035131,2592,2146,361644576,337462228,3183,2102,562634593,506035709,6.94,8.34,6.18,6.53,5.66,8.52,3.97,4.35
-39854,13,239,13239,2412,1967,339293452,315427097,2592,2146,361644576,337462228,2513,2047,415861379,391703085,93.06,91.66,93.82,93.47,95.98,96.09,81.59,80.53
-39859,13,201,13201,28,16,4406354,4390007,1281,584,153265650,149242279,6125,2791,734683135,731466754,2.19,2.74,2.87,2.94,0.46,0.57,0.6,0.6
-39859,13,253,13253,1253,568,148859296,144852272,1281,584,153265650,149242279,8729,4797,664476954,609232736,97.81,97.26,97.13,97.06,14.35,11.84,22.4,23.78
-39861,13,099,13099,970,508,135277872,134308978,1003,523,139056766,138087872,11008,4975,1337329353,1327612162,96.71,97.13,97.28,97.26,8.81,10.21,10.12,10.12
-39861,13,253,13253,33,15,3778894,3778894,1003,523,139056766,138087872,8729,4797,664476954,609232736,3.29,2.87,2.72,2.74,0.38,0.31,0.57,0.62
-39862,13,007,13007,472,241,157498791,155172323,1326,678,388103578,382645984,3451,1652,904264104,885629946,35.6,35.55,40.58,40.55,13.68,14.59,17.42,17.52
-39862,13,037,13037,854,437,230604787,227473661,1326,678,388103578,382645984,6694,2409,734463021,726147317,64.4,64.45,59.42,59.45,12.76,18.14,31.4,31.33
-39866,13,037,13037,2122,291,147233741,144894438,2122,291,147233741,144894438,6694,2409,734463021,726147317,100,100,100,100,31.7,12.08,20.05,19.95
-39867,13,061,13061,121,80,55789116,54127485,321,230,225779552,223472269,3183,2102,562634593,506035709,37.69,34.78,24.71,24.22,3.8,3.81,9.92,10.7
-39867,13,239,13239,101,80,76567927,76275988,321,230,225779552,223472269,2513,2047,415861379,391703085,31.46,34.78,33.91,34.13,4.02,3.91,18.41,19.47
-39867,13,243,13243,99,70,93422509,93068796,321,230,225779552,223472269,7719,4153,1115956894,1109126837,30.84,30.43,41.38,41.65,1.28,1.69,8.37,8.39
-39870,13,007,13007,2238,1056,490648486,479527492,2238,1056,490648486,479527492,3451,1652,904264104,885629946,100,100,100,100,64.85,63.92,54.26,54.15
-39877,13,273,13273,311,164,68017641,67903494,500,284,106549863,106265601,9315,4080,874647028,868783601,62.2,57.75,63.84,63.9,3.34,4.02,7.78,7.82
-39877,13,307,13307,189,120,38532222,38362107,500,284,106549863,106265601,2799,1523,544579513,541613654,37.8,42.25,36.16,36.1,6.75,7.88,7.08,7.08
-39885,13,273,13273,76,43,767857,767857,76,43,767857,767857,9315,4080,874647028,868783601,100,100,100,100,0.82,1.05,0.09,0.09
-39886,13,037,13037,48,19,13028852,12773501,1616,848,320352592,316712322,6694,2409,734463021,726147317,2.97,2.24,4.07,4.03,0.72,0.79,1.77,1.76
-39886,13,243,13243,1501,792,295516900,292180553,1616,848,320352592,316712322,7719,4153,1115956894,1109126837,92.88,93.4,92.25,92.25,19.45,19.07,26.48,26.34
-39886,13,273,13273,67,37,11806840,11758268,1616,848,320352592,316712322,9315,4080,874647028,868783601,4.15,4.36,3.69,3.71,0.72,0.91,1.35,1.35
-39897,13,087,13087,59,28,24717283,24701702,3430,1592,370620200,367357458,27842,12125,1613997327,1546584607,1.72,1.76,6.67,6.72,0.21,0.23,1.53,1.6
-39897,13,131,13131,3371,1564,345902917,342655756,3430,1592,370620200,367357458,25011,10760,1192078105,1177219063,98.28,98.24,93.33,93.28,13.48,14.54,29.02,29.11
-40003,21,073,21073,136,56,5762088,5716726,1902,742,110783070,109401061,49285,23164,549098596,538061269,7.15,7.55,5.2,5.23,0.28,0.24,1.05,1.06
-40003,21,211,21211,1766,686,105020982,103684335,1902,742,110783070,109401061,42074,16606,998884967,983253588,92.85,92.45,94.8,94.77,4.2,4.13,10.51,10.55
-40004,21,179,21179,28245,11791,379427525,374036479,28245,11791,379427525,374036479,43437,18075,1098352029,1081351761,100,100,100,100,65.03,65.23,34.55,34.59
-40006,21,041,21041,129,56,3506201,3468054,5084,2155,240595411,236390797,10811,4696,355643789,332992509,2.54,2.6,1.46,1.47,1.19,1.19,0.99,1.04
-40006,21,223,21223,4955,2099,237089210,232922743,5084,2155,240595411,236390797,8809,3930,404599806,392766226,97.46,97.4,98.54,98.53,56.25,53.41,58.6,59.3
-40007,21,103,21103,166,71,29318396,29130127,166,71,29318396,29130127,15416,6640,754003146,741450181,100,100,100,100,1.08,1.07,3.89,3.93
-40008,21,179,21179,3218,1370,179791098,176849312,3476,1494,210656591,204266858,43437,18075,1098352029,1081351761,92.58,91.7,85.35,86.58,7.41,7.58,16.37,16.35
-40008,21,215,21215,258,124,30865493,27417546,3476,1494,210656591,204266858,17061,6704,496390624,483492140,7.42,8.3,14.65,13.42,1.51,1.85,6.22,5.67
-40009,21,155,21155,861,430,127397141,126420571,1051,518,165650167,164509754,19820,8182,898358598,888387260,81.92,83.01,76.91,76.85,4.34,5.26,14.18,14.23
-40009,21,217,21217,190,88,38253026,38089183,1051,518,165650167,164509754,24512,10864,716954300,689784222,18.08,16.99,23.09,23.15,0.78,0.81,5.34,5.52
-40010,21,185,21185,587,182,4790965,4745836,587,182,4790965,4745836,60316,20688,508763197,484893493,100,100,100,100,0.97,0.88,0.94,0.98
-40011,21,041,21041,145,55,14119047,14037004,2549,1120,153880289,151750937,10811,4696,355643789,332992509,5.69,4.91,9.18,9.25,1.34,1.17,3.97,4.22
-40011,21,103,21103,2077,917,111503801,109610093,2549,1120,153880289,151750937,15416,6640,754003146,741450181,81.48,81.88,72.46,72.23,13.47,13.81,14.79,14.78
-40011,21,223,21223,327,148,28257441,28103840,2549,1120,153880289,151750937,8809,3930,404599806,392766226,12.83,13.21,18.36,18.52,3.71,3.77,6.98,7.16
-40012,21,179,21179,589,278,26199295,25942153,589,278,26199295,25942153,43437,18075,1098352029,1081351761,100,100,100,100,1.36,1.54,2.39,2.4
-40013,21,029,21029,166,70,15984492,15797138,5369,2125,208843731,205723053,74319,29318,777682003,769288200,3.09,3.29,7.65,7.68,0.22,0.24,2.06,2.05
-40013,21,179,21179,4564,1786,152474149,150511110,5369,2125,208843731,205723053,43437,18075,1098352029,1081351761,85.01,84.05,73.01,73.16,10.51,9.88,13.88,13.92
-40013,21,215,21215,639,269,40385090,39414805,5369,2125,208843731,205723053,17061,6704,496390624,483492140,11.9,12.66,19.34,19.16,3.75,4.01,8.14,8.15
-40014,21,185,21185,19986,7368,144858334,142691356,19986,7368,144858334,142691356,60316,20688,508763197,484893493,100,100,100,100,33.14,35.61,28.47,29.43
-40019,21,103,21103,3614,1527,80367072,78112319,3789,1595,99666853,97158666,15416,6640,754003146,741450181,95.38,95.74,80.64,80.4,23.44,23,10.66,10.54
-40019,21,211,21211,175,68,19299781,19046347,3789,1595,99666853,97158666,42074,16606,998884967,983253588,4.62,4.26,19.36,19.6,0.42,0.41,1.93,1.94
-40020,21,179,21179,109,55,1239056,1229467,109,55,1239056,1229467,43437,18075,1098352029,1081351761,100,100,100,100,0.25,0.3,0.11,0.11
-40022,21,211,21211,834,333,42422587,41680860,834,333,42422587,41680860,42074,16606,998884967,983253588,100,100,100,100,1.98,2.01,4.25,4.24
-40023,21,111,21111,2059,777,39892219,39289383,4118,1531,59221435,58512979,741096,337616,1029992966,985273984,50,50.75,67.36,67.15,0.28,0.23,3.87,3.99
-40023,21,211,21211,10,5,27691,26781,4118,1531,59221435,58512979,42074,16606,998884967,983253588,0.24,0.33,0.05,0.05,0.02,0.03,0,0
-40023,21,215,21215,2049,749,19301525,19196815,4118,1531,59221435,58512979,17061,6704,496390624,483492140,49.76,48.92,32.59,32.81,12.01,11.17,3.89,3.97
-40025,21,111,21111,59,28,436388,436388,59,28,436388,436388,741096,337616,1029992966,985273984,100,100,100,100,0.01,0.01,0.04,0.04
-40026,21,185,21185,5458,1870,89412849,80440274,5458,1870,89412849,80440274,60316,20688,508763197,484893493,100,100,100,100,9.05,9.04,17.57,16.59
-40031,21,103,21103,812,331,13266891,13175208,22863,7151,174654380,172247807,15416,6640,754003146,741450181,3.55,4.63,7.6,7.65,5.27,4.98,1.76,1.78
-40031,21,185,21185,22051,6820,161387489,159072599,22863,7151,174654380,172247807,60316,20688,508763197,484893493,96.45,95.37,92.4,92.35,36.56,32.97,31.72,32.81
-40033,21,155,21155,12311,5299,370084669,365687769,12355,5314,375770752,371336631,19820,8182,898358598,888387260,99.64,99.72,98.49,98.48,62.11,64.76,41.2,41.16
-40033,21,229,21229,44,15,5686083,5648862,12355,5314,375770752,371336631,11717,5044,780107687,769916143,0.36,0.28,1.51,1.52,0.38,0.3,0.73,0.73
-40036,21,103,21103,223,125,49512534,46717872,223,125,49512534,46717872,15416,6640,754003146,741450181,100,100,100,100,1.45,1.88,6.57,6.3
-40037,21,155,21155,2615,1085,114263233,112819782,2864,1182,128676180,127161717,19820,8182,898358598,888387260,91.31,91.79,88.8,88.72,13.19,13.26,12.72,12.7
-40037,21,179,21179,249,97,14412947,14341935,2864,1182,128676180,127161717,43437,18075,1098352029,1081351761,8.69,8.21,11.2,11.28,0.57,0.54,1.31,1.33
-40040,21,229,21229,531,229,53291877,53078745,531,229,53291877,53078745,11717,5044,780107687,769916143,100,100,100,100,4.53,4.54,6.83,6.89
-40041,21,111,21111,286,169,268181,268181,286,169,268181,268181,741096,337616,1029992966,985273984,100,100,100,100,0.04,0.05,0.03,0.03
-40045,21,041,21041,372,173,37409767,37038527,3451,1651,155430255,147636822,10811,4696,355643789,332992509,10.78,10.48,24.07,25.09,3.44,3.68,10.52,11.12
-40045,21,223,21223,3079,1478,118020488,110598295,3451,1651,155430255,147636822,8809,3930,404599806,392766226,89.22,89.52,75.93,74.91,34.95,37.61,29.17,28.16
-40046,21,005,21005,180,87,24793775,24090687,1741,741,129187564,124974722,21421,9127,529057262,522742422,10.34,11.74,19.19,19.28,0.84,0.95,4.69,4.61
-40046,21,211,21211,135,48,6329911,6284701,1741,741,129187564,124974722,42074,16606,998884967,983253588,7.75,6.48,4.9,5.03,0.32,0.29,0.63,0.64
-40046,21,215,21215,1426,606,98063878,94599334,1741,741,129187564,124974722,17061,6704,496390624,483492140,81.91,81.78,75.91,75.69,8.36,9.04,19.76,19.57
-40047,21,029,21029,19317,7629,73335407,72460467,19345,7642,77750359,76868540,74319,29318,777682003,769288200,99.86,99.83,94.32,94.27,25.99,26.02,9.43,9.42
-40047,21,215,21215,28,13,4414952,4408073,19345,7642,77750359,76868540,17061,6704,496390624,483492140,0.14,0.17,5.68,5.73,0.16,0.19,0.89,0.91
-40048,21,179,21179,113,3,352834,349073,113,3,352834,349073,43437,18075,1098352029,1081351761,100,100,100,100,0.26,0.02,0.03,0.03
-40049,21,155,21155,115,0,453306,444137,115,0,453306,444137,19820,8182,898358598,888387260,100,0,100,100,0.58,0,0.05,0.05
-40050,21,103,21103,1389,617,25507128,25160156,1389,617,25507128,25160156,15416,6640,754003146,741450181,100,100,100,100,9.01,9.29,3.38,3.39
-40051,21,093,21093,13,8,5288452,5281442,4799,1986,248962919,245422446,105543,43261,1632045098,1614282063,0.27,0.4,2.12,2.15,0.01,0.02,0.32,0.33
-40051,21,123,21123,859,342,63189464,62720944,4799,1986,248962919,245422446,14193,6172,682794190,677331504,17.9,17.22,25.38,25.56,6.05,5.54,9.25,9.26
-40051,21,179,21179,3927,1636,180485003,177420060,4799,1986,248962919,245422446,43437,18075,1098352029,1081351761,81.83,82.38,72.49,72.29,9.04,9.05,16.43,16.41
-40052,21,123,21123,29,18,21919644,21905117,515,236,54850968,54647535,14193,6172,682794190,677331504,5.63,7.63,39.96,40.08,0.2,0.29,3.21,3.23
-40052,21,155,21155,130,52,10610922,10575210,515,236,54850968,54647535,19820,8182,898358598,888387260,25.24,22.03,19.35,19.35,0.66,0.64,1.18,1.19
-40052,21,179,21179,356,166,22320402,22167208,515,236,54850968,54647535,43437,18075,1098352029,1081351761,69.13,70.34,40.69,40.56,0.82,0.92,2.03,2.05
-40055,21,103,21103,933,379,18147597,17988419,1752,729,53530059,53237119,15416,6640,754003146,741450181,53.25,51.99,33.9,33.79,6.05,5.71,2.41,2.43
-40055,21,185,21185,371,145,14149795,14107352,1752,729,53530059,53237119,60316,20688,508763197,484893493,21.18,19.89,26.43,26.5,0.62,0.7,2.78,2.91
-40055,21,223,21223,448,205,21232667,21141348,1752,729,53530059,53237119,8809,3930,404599806,392766226,25.57,28.12,39.66,39.71,5.09,5.22,5.25,5.38
-40056,21,185,21185,3263,1245,7400476,7371877,3263,1245,7400476,7371877,60316,20688,508763197,484893493,100,100,100,100,5.41,6.02,1.45,1.52
-40057,21,103,21103,2554,1154,209534769,207795113,3354,1492,255336100,252979869,15416,6640,754003146,741450181,76.15,77.35,82.06,82.14,16.57,17.38,27.79,28.03
-40057,21,211,21211,800,338,45801331,45184756,3354,1492,255336100,252979869,42074,16606,998884967,983253588,23.85,22.65,17.94,17.86,1.9,2.04,4.59,4.6
-40058,21,103,21103,64,32,61523,61523,64,32,61523,61523,15416,6640,754003146,741450181,100,100,100,100,0.42,0.48,0.01,0.01
-40059,21,111,21111,9118,3965,34316223,29004620,16708,6562,78208240,67144167,741096,337616,1029992966,985273984,54.57,60.42,43.88,43.2,1.23,1.17,3.33,2.94
-40059,21,185,21185,7590,2597,43892017,38139547,16708,6562,78208240,67144167,60316,20688,508763197,484893493,45.43,39.58,56.12,56.8,12.58,12.55,8.63,7.87
-40060,21,155,21155,1184,527,115855142,113625020,1184,527,115855142,113625020,19820,8182,898358598,888387260,100,100,100,100,5.97,6.44,12.9,12.79
-40062,21,155,21155,301,124,13607752,13505442,301,124,13607752,13505442,19820,8182,898358598,888387260,100,100,100,100,1.52,1.52,1.51,1.52
-40063,21,155,21155,789,2,1284816,1270186,789,2,1284816,1270186,19820,8182,898358598,888387260,100,100,100,100,3.98,0.02,0.14,0.14
-40065,21,211,21211,28017,11349,463947797,455686094,28025,11354,465581960,457314144,42074,16606,998884967,983253588,99.97,99.96,99.65,99.64,66.59,68.34,46.45,46.34
-40065,21,215,21215,8,5,1634163,1628050,28025,11354,465581960,457314144,17061,6704,496390624,483492140,0.03,0.04,0.35,0.36,0.05,0.07,0.33,0.34
-40067,21,211,21211,5114,1952,113797744,111688521,5114,1952,113797744,111688521,42074,16606,998884967,983253588,100,100,100,100,12.15,11.75,11.39,11.36
-40068,21,103,21103,1853,761,82986498,81360174,2131,867,114841452,112879626,15416,6640,754003146,741450181,86.95,87.77,72.26,72.08,12.02,11.46,11.01,10.97
-40068,21,185,21185,153,55,15677807,15581318,2131,867,114841452,112879626,60316,20688,508763197,484893493,7.18,6.34,13.65,13.8,0.25,0.27,3.08,3.21
-40068,21,211,21211,125,51,16177147,15938134,2131,867,114841452,112879626,42074,16606,998884967,983253588,5.87,5.88,14.09,14.12,0.3,0.31,1.62,1.62
-40069,21,155,21155,36,19,6456298,6394513,8276,3520,499556357,493212130,19820,8182,898358598,888387260,0.43,0.54,1.29,1.3,0.18,0.23,0.72,0.72
-40069,21,229,21229,8240,3501,493100059,486817617,8276,3520,499556357,493212130,11717,5044,780107687,769916143,99.57,99.46,98.71,98.7,70.33,69.41,63.21,63.23
-40070,21,103,21103,582,237,31511944,31064768,582,237,31511944,31064768,15416,6640,754003146,741450181,100,100,100,100,3.78,3.57,4.18,4.19
-40071,21,029,21029,1563,567,17170913,16953814,14292,5533,322739020,317485025,74319,29318,777682003,769288200,10.94,10.25,5.32,5.34,2.1,1.93,2.21,2.2
-40071,21,211,21211,76,28,3842584,3703694,14292,5533,322739020,317485025,42074,16606,998884967,983253588,0.53,0.51,1.19,1.17,0.18,0.17,0.38,0.38
-40071,21,215,21215,12653,4938,301725523,296827517,14292,5533,322739020,317485025,17061,6704,496390624,483492140,88.53,89.25,93.49,93.49,74.16,73.66,60.78,61.39
-40075,21,041,21041,209,98,26842005,26288137,1323,569,123698256,122234558,10811,4696,355643789,332992509,15.8,17.22,21.7,21.51,1.93,2.09,7.55,7.89
-40075,21,103,21103,1114,471,96856251,95946421,1323,569,123698256,122234558,15416,6640,754003146,741450181,84.2,82.78,78.3,78.49,7.23,7.09,12.85,12.94
-40076,21,005,21005,65,33,6592515,6564993,2516,1054,147737589,146389965,21421,9127,529057262,522742422,2.58,3.13,4.46,4.48,0.3,0.36,1.25,1.26
-40076,21,073,21073,175,72,6567263,6424072,2516,1054,147737589,146389965,49285,23164,549098596,538061269,6.96,6.83,4.45,4.39,0.36,0.31,1.2,1.19
-40076,21,211,21211,2276,949,134577811,133400900,2516,1054,147737589,146389965,42074,16606,998884967,983253588,90.46,90.04,91.09,91.13,5.41,5.71,13.47,13.57
-40077,21,185,21185,564,292,26456530,22006399,564,292,26456530,22006399,60316,20688,508763197,484893493,100,100,100,100,0.94,1.41,5.2,4.54
-40078,21,229,21229,2200,992,154194593,151289852,2200,992,154194593,151289852,11717,5044,780107687,769916143,100,100,100,100,18.78,19.67,19.77,19.65
-40104,21,163,21163,1336,575,190257985,164365501,1336,575,190257985,164365501,28602,11762,840458005,791042872,100,100,100,100,4.67,4.89,22.64,20.78
-40107,21,179,21179,2067,893,141649720,138504964,2067,893,141649720,138504964,43437,18075,1098352029,1081351761,100,100,100,100,4.76,4.94,12.9,12.81
-40108,21,163,21163,11583,4741,197859497,184080828,11583,4741,197859497,184080828,28602,11762,840458005,791042872,100,100,100,100,40.5,40.31,23.54,23.27
-40109,21,029,21029,1990,802,24347747,24255387,1990,802,24347747,24255387,74319,29318,777682003,769288200,100,100,100,100,2.68,2.74,3.13,3.15
-40110,21,029,21029,60,33,1230721,1227314,60,33,1230721,1227314,74319,29318,777682003,769288200,100,100,100,100,0.08,0.11,0.16,0.16
-40111,21,027,21027,1682,804,99075774,95901807,1682,804,99075774,95901807,20059,10630,1516751454,1468969244,100,100,100,100,8.39,7.56,6.53,6.53
-40115,21,027,21027,727,311,52140972,51565159,727,311,52140972,51565159,20059,10630,1516751454,1468969244,100,100,100,100,3.62,2.93,3.44,3.51
-40117,21,163,21163,2299,905,50176895,49524108,2299,905,50176895,49524108,28602,11762,840458005,791042872,100,100,100,100,8.04,7.69,5.97,6.26
-40118,21,111,21111,9724,4022,35737764,35438827,9724,4022,35737764,35438827,741096,337616,1029992966,985273984,100,100,100,100,1.31,1.19,3.47,3.6
-40119,21,027,21027,661,477,126191594,124086357,1797,1830,255368394,247365244,20059,10630,1516751454,1468969244,36.78,26.07,49.42,50.16,3.3,4.49,8.32,8.45
-40119,21,085,21085,1085,1321,116518727,110857964,1797,1830,255368394,247365244,25746,13561,1323563483,1286441869,60.38,72.19,45.63,44.82,4.21,9.74,8.8,8.62
-40119,21,183,21183,51,32,12658073,12420923,1797,1830,255368394,247365244,23842,10219,1544220554,1521032417,2.84,1.75,4.96,5.02,0.21,0.31,0.82,0.82
-40121,21,093,21093,7441,1733,84323220,83634615,10124,2961,88445911,87748804,105543,43261,1632045098,1614282063,73.5,58.53,95.34,95.31,7.05,4.01,5.17,5.18
-40121,21,163,21163,2683,1228,4122691,4114189,10124,2961,88445911,87748804,28602,11762,840458005,791042872,26.5,41.47,4.66,4.69,9.38,10.44,0.49,0.52
-40140,21,027,21027,787,321,62515561,62319610,787,321,62515561,62319610,20059,10630,1516751454,1468969244,100,100,100,100,3.92,3.02,4.12,4.24
-40142,21,027,21027,71,33,7071994,6967061,2304,932,128619271,127682232,20059,10630,1516751454,1468969244,3.08,3.54,5.5,5.46,0.35,0.31,0.47,0.47
-40142,21,163,21163,2233,899,121547277,120715171,2304,932,128619271,127682232,28602,11762,840458005,791042872,96.92,96.46,94.5,94.54,7.81,7.64,14.46,15.26
-40143,21,027,21027,5939,2889,394324756,385838119,5939,2889,394324756,385838119,20059,10630,1516751454,1468969244,100,100,100,100,29.61,27.18,26,26.27
-40144,21,027,21027,1866,961,164998058,161877675,1866,961,164998058,161877675,20059,10630,1516751454,1468969244,100,100,100,100,9.3,9.04,10.88,11.02
-40145,21,027,21027,908,435,83856002,82838835,908,435,83856002,82838835,20059,10630,1516751454,1468969244,100,100,100,100,4.53,4.09,5.53,5.64
-40146,21,027,21027,3745,1637,218080015,216678672,3745,1637,218080015,216678672,20059,10630,1516751454,1468969244,100,100,100,100,18.67,15.4,14.38,14.75
-40150,21,029,21029,4016,1659,84325892,83539895,4103,1695,90480617,89508396,74319,29318,777682003,769288200,97.88,97.88,93.2,93.33,5.4,5.66,10.84,10.86
-40150,21,093,21093,87,36,6154725,5968501,4103,1695,90480617,89508396,105543,43261,1632045098,1614282063,2.12,2.12,6.8,6.67,0.08,0.08,0.38,0.37
-40152,21,027,21027,604,797,29722853,24400828,604,797,29722853,24400828,20059,10630,1516751454,1468969244,100,100,100,100,3.01,7.5,1.96,1.66
-40155,21,163,21163,947,539,1400458,1398889,947,539,1400458,1398889,28602,11762,840458005,791042872,100,100,100,100,3.31,4.58,0.17,0.18
-40157,21,027,21027,41,23,8273077,8242402,876,389,84446104,80567381,20059,10630,1516751454,1468969244,4.68,5.91,9.8,10.23,0.2,0.22,0.55,0.56
-40157,21,163,21163,835,366,76173027,72324979,876,389,84446104,80567381,28602,11762,840458005,791042872,95.32,94.09,90.2,89.77,2.92,3.11,9.06,9.14
-40160,21,093,21093,23574,10182,43800931,43632606,23574,10182,43800931,43632606,105543,43261,1632045098,1614282063,100,100,100,100,22.34,23.54,2.68,2.7
-40161,21,163,21163,178,75,18349138,18291023,178,75,18349138,18291023,28602,11762,840458005,791042872,100,100,100,100,0.62,0.64,2.18,2.31
-40162,21,093,21093,6056,2192,147425850,146196371,6056,2192,147425850,146196371,105543,43261,1632045098,1614282063,100,100,100,100,5.74,5.07,9.03,9.06
-40165,21,029,21029,32726,12827,378440266,374053624,32726,12827,378440266,374053624,74319,29318,777682003,769288200,100,100,100,100,44.03,43.75,48.66,48.62
-40170,21,027,21027,344,158,61739083,45988073,344,158,61739083,45988073,20059,10630,1516751454,1468969244,100,100,100,100,1.71,1.49,4.07,3.13
-40171,21,027,21027,243,129,47833614,47656761,243,129,47833614,47656761,20059,10630,1516751454,1468969244,100,100,100,100,1.21,1.21,3.15,3.24
-40175,21,027,21027,518,219,45668124,45500131,13070,5148,197571232,195604935,20059,10630,1516751454,1468969244,3.96,4.25,23.11,23.26,2.58,2.06,3.01,3.1
-40175,21,093,21093,6466,2667,56546655,55971458,13070,5148,197571232,195604935,105543,43261,1632045098,1614282063,49.47,51.81,28.62,28.61,6.13,6.16,3.46,3.47
-40175,21,163,21163,6086,2262,95356453,94133346,13070,5148,197571232,195604935,28602,11762,840458005,791042872,46.56,43.94,48.26,48.12,21.28,19.23,11.35,11.9
-40176,21,027,21027,509,217,46322606,45939625,931,389,74830496,74382978,20059,10630,1516751454,1468969244,54.67,55.78,61.9,61.76,2.54,2.04,3.05,3.13
-40176,21,163,21163,422,172,28507890,28443353,931,389,74830496,74382978,28602,11762,840458005,791042872,45.33,44.22,38.1,38.24,1.48,1.46,3.39,3.6
-40177,21,029,21029,438,197,17324014,17203894,1463,751,37916020,35491329,74319,29318,777682003,769288200,29.94,26.23,45.69,48.47,0.59,0.67,2.23,2.24
-40177,21,093,21093,949,501,14625640,12390152,1463,751,37916020,35491329,105543,43261,1632045098,1614282063,64.87,66.71,38.57,34.91,0.9,1.16,0.9,0.77
-40177,21,111,21111,76,53,5966366,5897283,1463,751,37916020,35491329,741096,337616,1029992966,985273984,5.19,7.06,15.74,16.62,0.01,0.02,0.58,0.6
-40178,21,027,21027,468,485,23703234,21109329,468,485,23703234,21109329,20059,10630,1516751454,1468969244,100,100,100,100,2.33,4.56,1.56,1.44
-40202,21,111,21111,6772,3045,6316628,4026407,6772,3045,6316628,4026407,741096,337616,1029992966,985273984,100,100,100,100,0.91,0.9,0.61,0.41
-40203,21,111,21111,19694,11014,7617124,7617124,19694,11014,7617124,7617124,741096,337616,1029992966,985273984,100,100,100,100,2.66,3.26,0.74,0.77
-40204,21,111,21111,14236,8281,8529474,8410161,14236,8281,8529474,8410161,741096,337616,1029992966,985273984,100,100,100,100,1.92,2.45,0.83,0.85
-40205,21,111,21111,23678,11189,18181478,18081075,23678,11189,18181478,18081075,741096,337616,1029992966,985273984,100,100,100,100,3.19,3.31,1.77,1.84
-40206,21,111,21111,18865,10357,17586336,14789048,18865,10357,17586336,14789048,741096,337616,1029992966,985273984,100,100,100,100,2.55,3.07,1.71,1.5
-40207,21,111,21111,29745,14862,31944785,30105608,29745,14862,31944785,30105608,741096,337616,1029992966,985273984,100,100,100,100,4.01,4.4,3.1,3.06
-40208,21,111,21111,13227,6246,6374093,6372739,13227,6246,6374093,6372739,741096,337616,1029992966,985273984,100,100,100,100,1.78,1.85,0.62,0.65
-40209,21,111,21111,360,185,6958559,6948852,360,185,6958559,6948852,741096,337616,1029992966,985273984,100,100,100,100,0.05,0.05,0.68,0.71
-40210,21,111,21111,14822,7258,8334030,8334030,14822,7258,8334030,8334030,741096,337616,1029992966,985273984,100,100,100,100,2,2.15,0.81,0.85
-40211,21,111,21111,22612,11181,22443633,19374761,22612,11181,22443633,19374761,741096,337616,1029992966,985273984,100,100,100,100,3.05,3.31,2.18,1.97
-40212,21,111,21111,17685,8481,15341687,9841625,17685,8481,15341687,9841625,741096,337616,1029992966,985273984,100,100,100,100,2.39,2.51,1.49,1
-40213,21,111,21111,16796,7966,32755084,32246383,16796,7966,32755084,32246383,741096,337616,1029992966,985273984,100,100,100,100,2.27,2.36,3.18,3.27
-40214,21,111,21111,45291,20301,38747119,38476215,45291,20301,38747119,38476215,741096,337616,1029992966,985273984,100,100,100,100,6.11,6.01,3.76,3.91
-40215,21,111,21111,22287,10085,9739211,9714453,22287,10085,9739211,9714453,741096,337616,1029992966,985273984,100,100,100,100,3.01,2.99,0.95,0.99
-40216,21,111,21111,40746,18250,39421145,37436412,40746,18250,39421145,37436412,741096,337616,1029992966,985273984,100,100,100,100,5.5,5.41,3.83,3.8
-40217,21,111,21111,12507,6415,6241443,6221696,12507,6415,6241443,6221696,741096,337616,1029992966,985273984,100,100,100,100,1.69,1.9,0.61,0.63
-40218,21,111,21111,31658,14695,25342156,25208269,31658,14695,25342156,25208269,741096,337616,1029992966,985273984,100,100,100,100,4.27,4.35,2.46,2.56
-40219,21,111,21111,38032,16623,37839472,37276157,38032,16623,37839472,37276157,741096,337616,1029992966,985273984,100,100,100,100,5.13,4.92,3.67,3.78
-40220,21,111,21111,33109,15393,19798226,19728747,33109,15393,19798226,19728747,741096,337616,1029992966,985273984,100,100,100,100,4.47,4.56,1.92,2
-40222,21,111,21111,21359,10510,29469563,27018025,21359,10510,29469563,27018025,741096,337616,1029992966,985273984,100,100,100,100,2.88,3.11,2.86,2.74
-40223,21,111,21111,22011,9722,30859423,30412748,22011,9722,30859423,30412748,741096,337616,1029992966,985273984,100,100,100,100,2.97,2.88,3,3.09
-40228,21,111,21111,15743,6492,19722260,19603893,15743,6492,19722260,19603893,741096,337616,1029992966,985273984,100,100,100,100,2.12,1.92,1.91,1.99
-40229,21,029,21029,13717,5407,17655232,17541885,36852,14534,51743973,51161012,74319,29318,777682003,769288200,37.22,37.2,34.12,34.29,18.46,18.44,2.27,2.28
-40229,21,111,21111,23135,9127,34088741,33619127,36852,14534,51743973,51161012,741096,337616,1029992966,985273984,62.78,62.8,65.88,65.71,3.12,2.7,3.31,3.41
-40231,21,111,21111,0,0,216373,216373,0,0,216373,216373,741096,337616,1029992966,985273984,0,0,100,100,0,0,0.02,0.02
-40241,21,111,21111,28695,13069,36991993,36693340,28988,13183,37728928,37430275,741096,337616,1029992966,985273984,98.99,99.14,98.05,98.03,3.87,3.87,3.59,3.72
-40241,21,185,21185,293,114,736935,736935,28988,13183,37728928,37430275,60316,20688,508763197,484893493,1.01,0.86,1.95,1.97,0.49,0.55,0.14,0.15
-40242,21,111,21111,10930,4876,6938670,6908574,10930,4876,6938670,6908574,741096,337616,1029992966,985273984,100,100,100,100,1.47,1.44,0.67,0.7
-40243,21,111,21111,10210,4912,10417751,10391627,10210,4912,10417751,10391627,741096,337616,1029992966,985273984,100,100,100,100,1.38,1.45,1.01,1.05
-40245,21,111,21111,27935,10748,61492372,60202866,30109,11303,85744236,83873960,741096,337616,1029992966,985273984,92.78,95.09,71.72,71.78,3.77,3.18,5.97,6.11
-40245,21,211,21211,2174,555,24251864,23671094,30109,11303,85744236,83873960,42074,16606,998884967,983253588,7.22,4.91,28.28,28.22,5.17,3.34,2.43,2.41
-40258,21,111,21111,26465,10959,34211192,30250469,26465,10959,34211192,30250469,741096,337616,1029992966,985273984,100,100,100,100,3.57,3.25,3.32,3.07
-40272,21,029,21029,140,56,2734744,2723987,37394,15277,95423970,88340179,74319,29318,777682003,769288200,0.37,0.37,2.87,3.08,0.19,0.19,0.35,0.35
-40272,21,111,21111,37254,15221,92689226,85616192,37394,15277,95423970,88340179,741096,337616,1029992966,985273984,99.63,99.63,97.13,96.92,5.03,4.51,9,8.69
-40280,21,111,21111,303,96,251903,251903,303,96,251903,251903,741096,337616,1029992966,985273984,100,100,100,100,0.04,0.03,0.02,0.03
-40291,21,111,21111,35427,14948,57590237,56790252,35427,14948,57590237,56790252,741096,337616,1029992966,985273984,100,100,100,100,4.78,4.43,5.59,5.76
-40299,21,029,21029,186,71,782145,775600,38371,16166,139706583,137529751,74319,29318,777682003,769288200,0.48,0.44,0.56,0.56,0.25,0.24,0.1,0.1
-40299,21,111,21111,38185,16095,138924438,136754151,38371,16166,139706583,137529751,741096,337616,1029992966,985273984,99.52,99.56,99.44,99.44,5.15,4.77,13.49,13.88
-40310,21,167,21167,526,244,1553270,1547235,526,244,1553270,1547235,21331,9941,656074220,644381848,100,100,100,100,2.47,2.45,0.24,0.24
-40311,21,017,21017,558,266,45520822,45389691,7153,3272,457749510,454438785,19985,8927,755220169,750369577,7.8,8.13,9.94,9.99,2.79,2.98,6.03,6.05
-40311,21,181,21181,6587,2998,411148010,407972238,7153,3272,457749510,454438785,7135,3261,509796120,505489592,92.09,91.63,89.82,89.77,92.32,91.93,80.65,80.71
-40311,21,201,21201,8,8,1080678,1076856,7153,3272,457749510,454438785,2282,1095,259253268,258767993,0.11,0.24,0.24,0.24,0.35,0.73,0.42,0.42
-40312,21,197,21197,5898,2551,148566465,146999713,5898,2551,148566465,146999713,12613,5598,466513130,463554647,100,100,100,100,46.76,45.57,31.85,31.71
-40313,21,205,21205,3143,1544,100440383,98546913,3143,1544,100440383,98546913,23333,10102,741425653,724666477,100,100,100,100,13.47,15.28,13.55,13.6
-40316,21,165,21165,309,155,15901658,15883684,309,155,15901658,15883684,6306,3744,533367483,527282371,100,100,100,100,4.9,4.14,2.98,3.01
-40322,21,165,21165,3328,1684,303893731,302448410,3328,1684,303893731,302448410,6306,3744,533367483,527282371,100,100,100,100,52.78,44.98,56.98,57.36
-40324,21,017,21017,165,69,6853601,6818211,41342,16808,407418461,401578164,19985,8927,755220169,750369577,0.4,0.41,1.68,1.7,0.83,0.77,0.91,0.91
-40324,21,209,21209,41177,16739,400564860,394759953,41342,16808,407418461,401578164,47173,19303,739268059,729770453,99.6,99.59,98.32,98.3,87.29,86.72,54.18,54.09
-40328,21,021,21021,218,102,26618428,26352552,1065,497,127727806,126934877,28432,12312,473093094,466634989,20.47,20.52,20.84,20.76,0.77,0.83,5.63,5.65
-40328,21,045,21045,168,84,44121323,43920289,1065,497,127727806,126934877,15955,7487,1154450627,1150549958,15.77,16.9,34.54,34.6,1.05,1.12,3.82,3.82
-40328,21,155,21155,679,311,56988055,56662036,1065,497,127727806,126934877,19820,8182,898358598,888387260,63.76,62.58,44.62,44.64,3.43,3.8,6.34,6.38
-40330,21,167,21167,18653,8728,511468205,503605968,19334,9023,582032875,573428644,21331,9941,656074220,644381848,96.48,96.73,87.88,87.82,87.45,87.8,77.96,78.15
-40330,21,229,21229,681,295,70564670,69822676,19334,9023,582032875,573428644,11717,5044,780107687,769916143,3.52,3.27,12.12,12.18,5.81,5.85,9.05,9.07
-40334,21,011,21011,23,17,926813,926169,76,22,1518805,1517531,11591,5405,735567900,722067811,30.26,77.27,61.02,61.03,0.2,0.31,0.13,0.13
-40334,21,173,21173,53,5,591992,591362,76,22,1518805,1517531,26499,11699,515037136,511174863,69.74,22.73,38.98,38.97,0.2,0.04,0.11,0.12
-40336,21,065,21065,12993,5994,526022281,520009071,13061,6036,539558115,533544905,14672,6865,662026643,655468626,99.48,99.3,97.49,97.46,88.56,87.31,79.46,79.33
-40336,21,129,21129,68,42,13535834,13535834,13061,6036,539558115,533544905,7887,3436,547152769,540937729,0.52,0.7,2.51,2.54,0.86,1.22,2.47,2.5
-40337,21,173,21173,5501,2407,150108374,149326047,5501,2407,150108374,149326047,26499,11699,515037136,511174863,100,100,100,100,20.76,20.57,29.15,29.21
-40339,21,113,21113,46,36,326461,326336,46,36,326461,326336,48586,19331,451953574,445777146,100,100,100,100,0.09,0.19,0.07,0.07
-40342,21,005,21005,21125,8985,493198241,487618855,21125,8985,493198241,487618855,21421,9127,529057262,522742422,100,100,100,100,98.62,98.44,93.22,93.28
-40346,21,011,21011,7,7,3000124,2998622,686,309,32208822,32150480,11591,5405,735567900,722067811,1.02,2.27,9.31,9.33,0.06,0.13,0.41,0.42
-40346,21,165,21165,549,232,25199480,25144720,686,309,32208822,32150480,6306,3744,533367483,527282371,80.03,75.08,78.24,78.21,8.71,6.2,4.72,4.77
-40346,21,173,21173,130,70,4009218,4007138,686,309,32208822,32150480,26499,11699,515037136,511174863,18.95,22.65,12.45,12.46,0.49,0.6,0.78,0.78
-40347,21,073,21073,64,34,6453869,6319588,2767,1182,91470272,90563718,49285,23164,549098596,538061269,2.31,2.88,7.06,6.98,0.13,0.15,1.18,1.17
-40347,21,209,21209,385,128,8772859,8406250,2767,1182,91470272,90563718,47173,19303,739268059,729770453,13.91,10.83,9.59,9.28,0.82,0.66,1.19,1.15
-40347,21,239,21239,2318,1020,76243544,75837880,2767,1182,91470272,90563718,24939,10711,497371409,488948318,83.77,86.29,83.35,83.74,9.29,9.52,15.33,15.51
-40348,21,017,21017,600,318,11226075,11150231,600,318,11226075,11150231,19985,8927,755220169,750369577,100,100,100,100,3,3.56,1.49,1.49
-40350,21,181,21181,228,104,32766894,32415824,228,104,32766894,32415824,7135,3261,509796120,505489592,100,100,100,100,3.2,3.19,6.43,6.41
-40351,21,043,21043,59,23,1179746,1179746,20329,8618,655561122,640641583,27720,12311,1067390770,1060589533,0.29,0.27,0.18,0.18,0.21,0.19,0.11,0.11
-40351,21,063,21063,80,37,13396106,13342273,20329,8618,655561122,640641583,7852,3371,609484383,606873739,0.39,0.43,2.04,2.08,1.02,1.1,2.2,2.2
-40351,21,205,21205,20190,8558,640985270,626119564,20329,8618,655561122,640641583,23333,10102,741425653,724666477,99.32,99.3,97.78,97.73,86.53,84.72,86.45,86.4
-40353,21,011,21011,10,3,1607700,1604584,20779,9213,363599072,360399539,11591,5405,735567900,722067811,0.05,0.03,0.44,0.45,0.09,0.06,0.22,0.22
-40353,21,049,21049,184,79,17929388,17737127,20779,9213,363599072,360399539,35613,15706,660851193,653877332,0.89,0.86,4.93,4.92,0.52,0.5,2.71,2.71
-40353,21,173,21173,20585,9131,344061984,341057828,20779,9213,363599072,360399539,26499,11699,515037136,511174863,99.07,99.11,94.63,94.63,77.68,78.05,66.8,66.72
-40356,21,113,21113,40503,16462,366382592,362271618,40503,16462,366382592,362271618,48586,19331,451953574,445777146,100,100,100,100,83.36,85.16,81.07,81.27
-40358,21,011,21011,904,408,53797889,53724051,904,408,53797889,53724051,11591,5405,735567900,722067811,100,100,100,100,7.8,7.55,7.31,7.44
-40359,21,187,21187,7080,3640,597091705,592347781,7080,3640,597091705,592347781,10841,5634,917495243,909351754,100,100,100,100,65.31,64.61,65.08,65.14
-40360,21,011,21011,6347,2931,364502494,363473200,6564,3011,380402084,379299710,11591,5405,735567900,722067811,96.69,97.34,95.82,95.83,54.76,54.23,49.55,50.34
-40360,21,173,21173,217,80,15899590,15826510,6564,3011,380402084,379299710,26499,11699,515037136,511174863,3.31,2.66,4.18,4.17,0.82,0.68,3.09,3.1
-40361,21,017,21017,18181,8074,669971098,665484996,18220,8092,673444230,668958128,19985,8927,755220169,750369577,99.79,99.78,99.48,99.48,90.97,90.44,88.71,88.69
-40361,21,067,21067,26,12,3107154,3107154,18220,8092,673444230,668958128,295803,135160,739571329,734648526,0.14,0.15,0.46,0.46,0.01,0.01,0.42,0.42
-40361,21,173,21173,13,6,365978,365978,18220,8092,673444230,668958128,26499,11699,515037136,511174863,0.07,0.07,0.05,0.05,0.05,0.05,0.07,0.07
-40363,21,187,21187,22,63,54042,54042,22,63,54042,54042,10841,5634,917495243,909351754,100,100,100,100,0.2,1.12,0.01,0.01
-40370,21,097,21097,694,296,57713970,57438928,2763,1218,217381954,215481974,18846,8208,802538335,793479419,25.12,24.3,26.55,26.66,3.68,3.61,7.19,7.24
-40370,21,209,21209,2069,922,159667984,158043046,2763,1218,217381954,215481974,47173,19303,739268059,729770453,74.88,75.7,73.45,73.34,4.39,4.78,21.6,21.66
-40371,21,011,21011,2645,1280,169241154,157346807,2838,1383,205411173,192524234,11591,5405,735567900,722067811,93.2,92.55,82.39,81.73,22.82,23.68,23.01,21.79
-40371,21,165,21165,193,103,36170019,35177427,2838,1383,205411173,192524234,6306,3744,533367483,527282371,6.8,7.45,17.61,18.27,3.06,2.75,6.78,6.67
-40372,21,005,21005,51,22,4472731,4467887,2128,963,142342894,138545132,21421,9127,529057262,522742422,2.4,2.28,3.14,3.22,0.24,0.24,0.85,0.85
-40372,21,167,21167,2077,941,137870163,134077245,2128,963,142342894,138545132,21331,9941,656074220,644381848,97.6,97.72,96.86,96.78,9.74,9.47,21.01,20.81
-40374,21,011,21011,1655,759,142491726,141994378,1702,791,163924769,163250328,11591,5405,735567900,722067811,97.24,95.95,86.93,86.98,14.28,14.04,19.37,19.66
-40374,21,017,21017,7,8,4567022,4564609,1702,791,163924769,163250328,19985,8927,755220169,750369577,0.41,1.01,2.79,2.8,0.04,0.09,0.6,0.61
-40374,21,181,21181,40,24,16866021,16691341,1702,791,163924769,163250328,7135,3261,509796120,505489592,2.35,3.03,10.29,10.22,0.56,0.74,3.31,3.3
-40376,21,197,21197,52,51,18719903,18651924,52,51,18719903,18651924,12613,5598,466513130,463554647,100,100,100,100,0.41,0.91,4.01,4.02
-40379,21,073,21073,154,61,6944571,6928795,3288,1394,165932976,164549289,49285,23164,549098596,538061269,4.68,4.38,4.19,4.21,0.31,0.26,1.26,1.29
-40379,21,187,21187,42,20,5580774,5577580,3288,1394,165932976,164549289,10841,5634,917495243,909351754,1.28,1.43,3.36,3.39,0.39,0.35,0.61,0.61
-40379,21,209,21209,3092,1313,153407631,152042914,3288,1394,165932976,164549289,47173,19303,739268059,729770453,94.04,94.19,92.45,92.4,6.55,6.8,20.75,20.83
-40380,21,165,21165,5,4,268499,226976,6612,2976,297587101,296222710,6306,3744,533367483,527282371,0.08,0.13,0.09,0.08,0.08,0.11,0.05,0.04
-40380,21,197,21197,6607,2972,297318602,295995734,6612,2976,297587101,296222710,12613,5598,466513130,463554647,99.92,99.87,99.91,99.92,52.38,53.09,63.73,63.85
-40383,21,113,21113,493,191,14005398,13912108,22408,9545,401000722,393160875,48586,19331,451953574,445777146,2.2,2,3.49,3.54,1.01,0.99,3.1,3.12
-40383,21,239,21239,21915,9354,386995324,379248767,22408,9545,401000722,393160875,24939,10711,497371409,488948318,97.8,98,96.51,96.46,87.87,87.33,77.81,77.56
-40385,21,151,21151,3131,1329,124913625,122428060,3131,1329,124913625,122428060,82916,35043,1148030458,1132583005,100,100,100,100,3.78,3.79,10.88,10.81
-40387,21,165,21165,1922,1566,151934096,148401154,2046,1690,191649545,187379139,6306,3744,533367483,527282371,93.94,92.66,79.28,79.2,30.48,41.83,28.49,28.14
-40387,21,175,21175,124,124,39715449,38977985,2046,1690,191649545,187379139,13923,5830,994005570,987113548,6.06,7.34,20.72,20.8,0.89,2.13,4,3.95
-40390,21,113,21113,7325,2548,64235440,62506307,7366,2564,67407566,65675424,48586,19331,451953574,445777146,99.44,99.38,95.29,95.17,15.08,13.18,14.21,14.02
-40390,21,239,21239,41,16,3172126,3169117,7366,2564,67407566,65675424,24939,10711,497371409,488948318,0.56,0.62,4.71,4.83,0.16,0.15,0.64,0.65
-40391,21,049,21049,35262,15533,626641306,620125542,35262,15533,626641306,620125542,35613,15706,660851193,653877332,100,100,100,100,99.01,98.9,94.82,94.84
-40402,21,109,21109,2905,1298,122981039,122531264,2905,1298,122981039,122531264,13494,6523,897463100,894065212,100,100,100,100,21.53,19.9,13.7,13.7
-40403,21,079,21079,1054,453,49507973,49302540,23774,10048,297501647,295942987,16912,7463,605916476,595897447,4.43,4.51,16.64,16.66,6.23,6.07,8.17,8.27
-40403,21,151,21151,21456,9104,222773371,221468799,23774,10048,297501647,295942987,82916,35043,1148030458,1132583005,90.25,90.61,74.88,74.83,25.88,25.98,19.4,19.55
-40403,21,203,21203,1264,491,25220303,25171648,23774,10048,297501647,295942987,17056,7703,823865130,819847035,5.32,4.89,8.48,8.51,7.41,6.37,3.06,3.07
-40404,21,151,21151,643,0,329970,329970,643,0,329970,329970,82916,35043,1148030458,1132583005,100,0,100,100,0.78,0,0.03,0.03
-40409,21,137,21137,28,11,1798100,1796867,3843,1744,114066688,113600173,24742,10819,871727373,865301109,0.73,0.63,1.58,1.58,0.11,0.1,0.21,0.21
-40409,21,199,21199,37,20,2465152,2458160,3843,1744,114066688,113600173,63063,31443,1753821390,1705268187,0.96,1.15,2.16,2.16,0.06,0.06,0.14,0.14
-40409,21,203,21203,3778,1713,109803436,109345146,3843,1744,114066688,113600173,17056,7703,823865130,819847035,98.31,98.22,96.26,96.25,22.15,22.24,13.33,13.34
-40419,21,079,21079,638,275,49956052,49840175,4621,2052,239846451,238662630,16912,7463,605916476,595897447,13.81,13.4,20.83,20.88,3.77,3.68,8.24,8.36
-40419,21,137,21137,3224,1441,140813206,139950652,4621,2052,239846451,238662630,24742,10819,871727373,865301109,69.77,70.22,58.71,58.64,13.03,13.32,16.15,16.17
-40419,21,199,21199,201,88,11112075,11046124,4621,2052,239846451,238662630,63063,31443,1753821390,1705268187,4.35,4.29,4.63,4.63,0.32,0.28,0.63,0.65
-40419,21,203,21203,558,248,37965118,37825679,4621,2052,239846451,238662630,17056,7703,823865130,819847035,12.08,12.09,15.83,15.85,3.27,3.22,4.61,4.61
-40422,21,021,21021,23485,10116,275705693,270684305,24280,10473,302977177,297726069,28432,12312,473093094,466634989,96.73,96.59,91,90.92,82.6,82.16,58.28,58.01
-40422,21,137,21137,795,357,27271484,27041764,24280,10473,302977177,297726069,24742,10819,871727373,865301109,3.27,3.41,9,9.08,3.21,3.3,3.13,3.13
-40434,21,109,21109,34,20,144983,143603,34,20,144983,143603,13494,6523,897463100,894065212,100,100,100,100,0.25,0.31,0.02,0.02
-40437,21,045,21045,1116,562,173630110,173204955,4932,2237,314815967,313811329,15955,7487,1154450627,1150549958,22.63,25.12,55.15,55.19,6.99,7.51,15.04,15.05
-40437,21,137,21137,3816,1675,141185857,140606374,4932,2237,314815967,313811329,24742,10819,871727373,865301109,77.37,74.88,44.85,44.81,15.42,15.48,16.2,16.25
-40440,21,021,21021,2007,876,23980746,23878182,2092,915,24017362,23914798,28432,12312,473093094,466634989,95.94,95.74,99.85,99.85,7.06,7.12,5.07,5.12
-40440,21,137,21137,85,39,36616,36616,2092,915,24017362,23914798,24742,10819,871727373,865301109,4.06,4.26,0.15,0.15,0.34,0.36,0,0
-40442,21,045,21045,471,189,25477589,25447533,1136,490,63769528,63651253,15955,7487,1154450627,1150549958,41.46,38.57,39.95,39.98,2.95,2.52,2.21,2.21
-40442,21,137,21137,665,301,38291939,38203720,1136,490,63769528,63651253,24742,10819,871727373,865301109,58.54,61.43,60.05,60.02,2.69,2.78,4.39,4.42
-40444,21,079,21079,13848,6134,404897279,395864082,14096,6237,420398537,410524558,16912,7463,605916476,595897447,98.24,98.35,96.31,96.43,81.88,82.19,66.82,66.43
-40444,21,137,21137,248,103,15501258,14660476,14096,6237,420398537,410524558,24742,10819,871727373,865301109,1.76,1.65,3.69,3.57,1,0.95,1.78,1.69
-40445,21,109,21109,34,18,20067771,20028895,997,497,119413317,118163850,13494,6523,897463100,894065212,3.41,3.62,16.81,16.95,0.25,0.28,2.24,2.24
-40445,21,203,21203,963,479,99345546,98134955,997,497,119413317,118163850,17056,7703,823865130,819847035,96.59,96.38,83.19,83.05,5.65,6.22,12.06,11.97
-40447,21,109,21109,8121,4065,617468087,614807381,8251,4139,649432006,646731716,13494,6523,897463100,894065212,98.42,98.21,95.08,95.06,60.18,62.32,68.8,68.77
-40447,21,129,21129,36,21,7144966,7140276,8251,4139,649432006,646731716,7887,3436,547152769,540937729,0.44,0.51,1.1,1.1,0.46,0.61,1.31,1.32
-40447,21,189,21189,30,19,18579832,18570108,8251,4139,649432006,646731716,4755,2328,513568947,511282528,0.36,0.46,2.86,2.87,0.63,0.82,3.62,3.63
-40447,21,203,21203,64,34,6239121,6213951,8251,4139,649432006,646731716,17056,7703,823865130,819847035,0.78,0.82,0.96,0.96,0.38,0.44,0.76,0.76
-40448,21,137,21137,53,28,956411,945761,53,28,956411,945761,24742,10819,871727373,865301109,100,100,100,100,0.21,0.26,0.11,0.11
-40456,21,203,21203,9300,4218,449403385,447438074,9300,4218,449403385,447438074,17056,7703,823865130,819847035,100,100,100,100,54.53,54.76,54.55,54.58
-40460,21,203,21203,1129,520,95888221,95717582,1129,520,95888221,95717582,17056,7703,823865130,819847035,100,100,100,100,6.62,6.75,11.64,11.68
-40461,21,079,21079,1238,547,86049060,85526915,3121,1347,132837500,131826587,16912,7463,605916476,595897447,39.67,40.61,64.78,64.88,7.32,7.33,14.2,14.35
-40461,21,151,21151,1883,800,46788440,46299672,3121,1347,132837500,131826587,82916,35043,1148030458,1132583005,60.33,59.39,35.22,35.12,2.27,2.28,4.08,4.09
-40464,21,021,21021,1011,440,66849461,66519013,1114,496,87460655,87114526,28432,12312,473093094,466634989,90.75,88.71,76.43,76.36,3.56,3.57,14.13,14.26
-40464,21,045,21045,103,56,20611194,20595513,1114,496,87460655,87114526,15955,7487,1154450627,1150549958,9.25,11.29,23.57,23.64,0.65,0.75,1.79,1.79
-40468,21,021,21021,1711,778,79938766,79200937,1807,818,88391753,87610728,28432,12312,473093094,466634989,94.69,95.11,90.44,90.4,6.02,6.32,16.9,16.97
-40468,21,167,21167,75,28,5182582,5151400,1807,818,88391753,87610728,21331,9941,656074220,644381848,4.15,3.42,5.86,5.88,0.35,0.28,0.79,0.8
-40468,21,229,21229,21,12,3270405,3258391,1807,818,88391753,87610728,11717,5044,780107687,769916143,1.16,1.47,3.7,3.72,0.18,0.24,0.42,0.42
-40472,21,065,21065,1679,871,136004362,135459555,1679,871,136004362,135459555,14672,6865,662026643,655468626,100,100,100,100,11.44,12.69,20.54,20.67
-40475,21,151,21151,55803,23810,717701179,707062295,55803,23810,717701179,707062295,82916,35043,1148030458,1132583005,100,100,100,100,67.3,67.95,62.52,62.43
-40481,21,109,21109,218,107,14241463,14226261,218,107,14241463,14226261,13494,6523,897463100,894065212,100,100,100,100,1.62,1.64,1.59,1.59
-40484,21,079,21079,134,54,15506112,15363735,11612,5036,345091041,341831289,16912,7463,605916476,595897447,1.15,1.07,4.49,4.49,0.79,0.72,2.56,2.58
-40484,21,137,21137,11478,4982,329584929,326467554,11612,5036,345091041,341831289,24742,10819,871727373,865301109,98.85,98.93,95.51,95.51,46.39,46.05,37.81,37.73
-40486,21,051,21051,18,7,1338733,1336330,2223,1033,131298308,131039876,21730,8875,1220107986,1215344973,0.81,0.68,1.02,1.02,0.08,0.08,0.11,0.11
-40486,21,109,21109,2182,1015,122559757,122327808,2223,1033,131298308,131039876,13494,6523,897463100,894065212,98.16,98.26,93.34,93.35,16.17,15.56,13.66,13.68
-40486,21,189,21189,23,11,7399818,7375738,2223,1033,131298308,131039876,4755,2328,513568947,511282528,1.03,1.06,5.64,5.63,0.48,0.47,1.44,1.44
-40489,21,045,21045,281,130,26362259,26319082,4109,1767,172308677,171633726,15955,7487,1154450627,1150549958,6.84,7.36,15.3,15.33,1.76,1.74,2.28,2.29
-40489,21,137,21137,3828,1637,145946418,145314644,4109,1767,172308677,171633726,24742,10819,871727373,865301109,93.16,92.64,84.7,84.67,15.47,15.13,16.74,16.79
-40502,21,067,21067,25709,13910,19352111,18651864,25709,13910,19352111,18651864,295803,135160,739571329,734648526,100,100,100,100,8.69,10.29,2.62,2.54
-40503,21,067,21067,28003,13196,22919259,22910230,28003,13196,22919259,22910230,295803,135160,739571329,734648526,100,100,100,100,9.47,9.76,3.1,3.12
-40504,21,067,21067,25655,12363,15816318,15738972,25655,12363,15816318,15738972,295803,135160,739571329,734648526,100,100,100,100,8.67,9.15,2.14,2.14
-40505,21,067,21067,26040,12162,20691156,20666550,26040,12162,20691156,20666550,295803,135160,739571329,734648526,100,100,100,100,8.8,9,2.8,2.81
-40506,21,067,21067,2802,2,221571,221571,2802,2,221571,221571,295803,135160,739571329,734648526,100,100,100,100,0.95,0,0.03,0.03
-40507,21,067,21067,1757,1483,1078126,1078126,1757,1483,1078126,1078126,295803,135160,739571329,734648526,100,100,100,100,0.59,1.1,0.15,0.15
-40508,21,067,21067,23569,10826,11038493,11038493,23569,10826,11038493,11038493,295803,135160,739571329,734648526,100,100,100,100,7.97,8.01,1.49,1.5
-40509,21,067,21067,32364,15131,107075529,106489504,32364,15131,107075529,106489504,295803,135160,739571329,734648526,100,100,100,100,10.94,11.19,14.48,14.5
-40510,21,067,21067,1928,366,55915932,55495508,1928,366,55915932,55495508,295803,135160,739571329,734648526,100,100,100,100,0.65,0.27,7.56,7.55
-40511,21,017,21017,76,36,6491637,6448520,31798,12566,230428843,229412127,19985,8927,755220169,750369577,0.24,0.29,2.82,2.81,0.38,0.4,0.86,0.86
-40511,21,067,21067,31380,12377,213052819,212388885,31798,12566,230428843,229412127,295803,135160,739571329,734648526,98.69,98.5,92.46,92.58,10.61,9.16,28.81,28.91
-40511,21,209,21209,342,153,10884387,10574722,31798,12566,230428843,229412127,47173,19303,739268059,729770453,1.08,1.22,4.72,4.61,0.72,0.79,1.47,1.45
-40513,21,067,21067,10994,4451,37493143,37421525,10994,4451,37493143,37421525,295803,135160,739571329,734648526,100,100,100,100,3.72,3.29,5.07,5.09
-40514,21,067,21067,14647,5596,7690013,7673316,14647,5596,7690013,7673316,295803,135160,739571329,734648526,100,100,100,100,4.95,4.14,1.04,1.04
-40515,21,049,21049,167,94,16280499,16014663,33595,14580,148359809,145732300,35613,15706,660851193,653877332,0.5,0.64,10.97,10.99,0.47,0.6,2.46,2.45
-40515,21,067,21067,33209,14392,125075627,122956860,33595,14580,148359809,145732300,295803,135160,739571329,734648526,98.85,98.71,84.31,84.37,11.23,10.65,16.91,16.74
-40515,21,113,21113,219,94,7003683,6760777,33595,14580,148359809,145732300,48586,19331,451953574,445777146,0.65,0.64,4.72,4.64,0.45,0.49,1.55,1.52
-40516,21,017,21017,384,148,8486063,8412845,2877,1293,91502645,91230710,19985,8927,755220169,750369577,13.35,11.45,9.27,9.22,1.92,1.66,1.12,1.12
-40516,21,067,21067,2493,1145,83016582,82817865,2877,1293,91502645,91230710,295803,135160,739571329,734648526,86.65,88.55,90.73,90.78,0.84,0.85,11.22,11.27
-40517,21,067,21067,35227,17748,16027496,15992103,35227,17748,16027496,15992103,295803,135160,739571329,734648526,100,100,100,100,11.91,13.13,2.17,2.18
-40601,21,073,21073,48294,22940,522331273,511763579,49566,23523,582108167,571041492,49285,23164,549098596,538061269,97.43,97.52,89.73,89.62,97.99,99.03,95.13,95.11
-40601,21,103,21103,35,18,5428742,5327988,49566,23523,582108167,571041492,15416,6640,754003146,741450181,0.07,0.08,0.93,0.93,0.23,0.27,0.72,0.72
-40601,21,211,21211,572,244,23387737,23257371,49566,23523,582108167,571041492,42074,16606,998884967,983253588,1.15,1.04,4.02,4.07,1.36,1.47,2.34,2.37
-40601,21,239,21239,665,321,30960415,30692554,49566,23523,582108167,571041492,24939,10711,497371409,488948318,1.34,1.36,5.32,5.37,2.67,3,6.22,6.28
-40604,21,073,21073,462,1,1039532,908509,462,1,1039532,908509,49285,23164,549098596,538061269,100,100,100,100,0.94,0,0.19,0.17
-40701,21,121,21121,7506,3375,71978193,71397264,29497,13062,392684580,372312840,31883,14485,1004262736,1000505156,25.45,25.84,18.33,19.18,23.54,23.3,7.17,7.14
-40701,21,125,21125,8349,3659,85503778,76088069,29497,13062,392684580,372312840,58849,25446,1149164393,1123932843,28.3,28.01,21.77,20.44,14.19,14.38,7.44,6.77
-40701,21,235,21235,13642,6028,235202609,224827507,29497,13062,392684580,372312840,35637,15166,1152851418,1133973877,46.25,46.15,59.9,60.39,38.28,39.75,20.4,19.83
-40729,21,125,21125,5485,2361,172128490,170398312,5485,2361,172128490,170398312,58849,25446,1149164393,1123932843,100,100,100,100,9.32,9.28,14.98,15.16
-40734,21,121,21121,3720,1626,103971831,103725185,3764,1649,105783504,105530867,31883,14485,1004262736,1000505156,98.83,98.61,98.29,98.29,11.67,11.23,10.35,10.37
-40734,21,125,21125,44,23,1811673,1805682,3764,1649,105783504,105530867,58849,25446,1149164393,1123932843,1.17,1.39,1.71,1.71,0.07,0.09,0.16,0.16
-40737,21,125,21125,1379,610,18966164,18722262,1379,610,18966164,18722262,58849,25446,1149164393,1123932843,100,100,100,100,2.34,2.4,1.65,1.67
-40740,21,125,21125,3321,1326,42561295,42148749,3321,1326,42561295,42148749,58849,25446,1149164393,1123932843,100,100,100,100,5.64,5.21,3.7,3.75
-40741,21,051,21051,57,32,3567865,3563212,21875,9705,545912747,541447055,21730,8875,1220107986,1215344973,0.26,0.33,0.65,0.66,0.26,0.36,0.29,0.29
-40741,21,125,21125,21818,9673,542344882,537883843,21875,9705,545912747,541447055,58849,25446,1149164393,1123932843,99.74,99.67,99.35,99.34,37.07,38.01,47.19,47.86
-40743,21,125,21125,229,94,3180420,3152418,229,94,3180420,3152418,58849,25446,1149164393,1123932843,100,100,100,100,0.39,0.37,0.28,0.28
-40744,21,051,21051,154,68,1589190,1587041,18334,7748,282573362,273647493,21730,8875,1220107986,1215344973,0.84,0.88,0.56,0.58,0.71,0.77,0.13,0.13
-40744,21,125,21125,18180,7680,280984172,272060452,18334,7748,282573362,273647493,58849,25446,1149164393,1123932843,99.16,99.12,99.44,99.42,30.89,30.18,24.45,24.21
-40759,21,121,21121,136,75,15547032,15225430,2531,1071,125212454,124312251,31883,14485,1004262736,1000505156,5.37,7,12.42,12.25,0.43,0.52,1.55,1.52
-40759,21,235,21235,2395,996,109665422,109086821,2531,1071,125212454,124312251,35637,15166,1152851418,1133973877,94.63,93,87.58,87.75,6.72,6.57,9.51,9.62
-40763,21,121,21121,11,8,14739609,14737900,469,249,54522155,54507283,31883,14485,1004262736,1000505156,2.35,3.21,27.03,27.04,0.03,0.06,1.47,1.47
-40763,21,235,21235,458,241,39782546,39769383,469,249,54522155,54507283,35637,15166,1152851418,1133973877,97.65,96.79,72.97,72.96,1.29,1.59,3.45,3.51
-40769,21,147,21147,266,123,50992425,50660981,18507,7604,769057156,760936310,18306,7507,1116147422,1105414665,1.44,1.62,6.63,6.66,1.45,1.64,4.57,4.58
-40769,21,235,21235,18241,7481,718064731,710275329,18507,7604,769057156,760936310,35637,15166,1152851418,1133973877,98.56,98.38,93.37,93.34,51.19,49.33,62.29,62.64
-40771,21,121,21121,620,293,27770502,27619425,1068,497,32472229,32296175,31883,14485,1004262736,1000505156,58.05,58.95,85.52,85.52,1.94,2.02,2.77,2.76
-40771,21,235,21235,448,204,4701727,4676750,1068,497,32472229,32296175,35637,15166,1152851418,1133973877,41.95,41.05,14.48,14.48,1.26,1.35,0.41,0.41
-40801,21,095,21095,531,227,18318925,18252223,531,227,18318925,18252223,29278,13513,1212504169,1206487719,100,100,100,100,1.81,1.68,1.51,1.51
-40806,21,095,21095,2499,1168,60587075,60197750,2499,1168,60587075,60197750,29278,13513,1212504169,1206487719,100,100,100,100,8.54,8.64,5,4.99
-40807,21,095,21095,337,189,798114,795657,337,189,798114,795657,29278,13513,1212504169,1206487719,100,100,100,100,1.15,1.4,0.07,0.07
-40808,21,095,21095,61,23,13238518,13219589,99,40,15142521,15056271,29278,13513,1212504169,1206487719,61.62,57.5,87.43,87.8,0.21,0.17,1.09,1.1
-40808,21,131,21131,38,17,1904003,1836682,99,40,15142521,15056271,11310,5278,1047512767,1038181523,38.38,42.5,12.57,12.2,0.34,0.32,0.18,0.18
-40810,21,095,21095,1319,598,147090491,146929394,1548,711,210517107,210046302,29278,13513,1212504169,1206487719,85.21,84.11,69.87,69.95,4.51,4.43,12.13,12.18
-40810,21,131,21131,229,113,63426616,63116908,1548,711,210517107,210046302,11310,5278,1047512767,1038181523,14.79,15.89,30.13,30.05,2.02,2.14,6.05,6.08
-40813,21,013,21013,669,299,32890617,32436049,669,299,32890617,32436049,28691,13154,935287665,929806795,100,100,100,100,2.33,2.27,3.52,3.49
-40815,21,095,21095,1534,683,107868484,105889942,1534,683,107868484,105889942,29278,13513,1212504169,1206487719,100,100,100,100,5.24,5.05,8.9,8.78
-40816,21,131,21131,78,45,83356707,82885950,78,45,83356707,82885950,11310,5278,1047512767,1038181523,100,100,100,100,0.69,0.85,7.96,7.98
-40818,21,095,21095,110,51,11314649,11284170,110,51,11314649,11284170,29278,13513,1212504169,1206487719,100,100,100,100,0.38,0.38,0.93,0.94
-40819,21,095,21095,729,327,36640650,36277833,729,327,36640650,36277833,29278,13513,1212504169,1206487719,100,100,100,100,2.49,2.42,3.02,3.01
-40820,21,095,21095,581,261,40675381,40604722,581,261,40675381,40604722,29278,13513,1212504169,1206487719,100,100,100,100,1.98,1.93,3.35,3.37
-40823,21,095,21095,4133,2019,144132607,143604727,4231,2072,150686773,150124882,29278,13513,1212504169,1206487719,97.68,97.44,95.65,95.66,14.12,14.94,11.89,11.9
-40823,21,133,21133,98,53,6554166,6520155,4231,2072,150686773,150124882,24519,11601,878091351,875192707,2.32,2.56,4.35,4.34,0.4,0.46,0.75,0.74
-40824,21,095,21095,559,241,10496460,10365229,559,241,10496460,10365229,29278,13513,1212504169,1206487719,100,100,100,100,1.91,1.78,0.87,0.86
-40826,21,133,21133,759,339,81186701,81020387,759,339,81186701,81020387,24519,11601,878091351,875192707,100,100,100,100,3.1,2.92,9.25,9.26
-40827,21,131,21131,674,281,40343273,40169229,674,281,40343273,40169229,11310,5278,1047512767,1038181523,100,100,100,100,5.96,5.32,3.85,3.87
-40828,21,095,21095,3965,1630,123056802,122587760,3965,1630,123056802,122587760,29278,13513,1212504169,1206487719,100,100,100,100,13.54,12.06,10.15,10.16
-40829,21,095,21095,172,86,10676102,10599044,172,86,10676102,10599044,29278,13513,1212504169,1206487719,100,100,100,100,0.59,0.64,0.88,0.88
-40830,21,095,21095,301,143,7132200,7125227,301,143,7132200,7125227,29278,13513,1212504169,1206487719,100,100,100,100,1.03,1.06,0.59,0.59
-40831,21,095,21095,5150,2320,133681725,133243074,5150,2320,133681725,133243074,29278,13513,1212504169,1206487719,100,100,100,100,17.59,17.17,11.03,11.04
-40840,21,095,21095,27,9,15086450,15056899,312,117,44146576,44052948,29278,13513,1212504169,1206487719,8.65,7.69,34.17,34.18,0.09,0.07,1.24,1.25
-40840,21,131,21131,285,108,29060126,28996049,312,117,44146576,44052948,11310,5278,1047512767,1038181523,91.35,92.31,65.83,65.82,2.52,2.05,2.77,2.79
-40843,21,095,21095,259,142,77859230,77769471,259,142,77859230,77769471,29278,13513,1212504169,1206487719,100,100,100,100,0.88,1.05,6.42,6.45
-40844,21,131,21131,123,68,22089299,21955600,123,68,22089299,21955600,11310,5278,1047512767,1038181523,100,100,100,100,1.09,1.29,2.11,2.11
-40845,21,013,21013,635,286,22899405,22565070,635,286,22899405,22565070,28691,13154,935287665,929806795,100,100,100,100,2.21,2.17,2.45,2.43
-40847,21,095,21095,261,108,2492146,2492146,261,108,2492146,2492146,29278,13513,1212504169,1206487719,100,100,100,100,0.89,0.8,0.21,0.21
-40849,21,095,21095,352,163,2739607,2647179,352,163,2739607,2647179,29278,13513,1212504169,1206487719,100,100,100,100,1.2,1.21,0.23,0.22
-40854,21,095,21095,1213,586,5758936,5584943,1213,586,5758936,5584943,29278,13513,1212504169,1206487719,100,100,100,100,4.14,4.34,0.47,0.46
-40855,21,095,21095,860,510,35337712,35336666,860,510,35337712,35336666,29278,13513,1212504169,1206487719,100,100,100,100,2.94,3.77,2.91,2.93
-40856,21,013,21013,756,350,111936306,111414281,756,350,111936306,111414281,28691,13154,935287665,929806795,100,100,100,100,2.63,2.66,11.97,11.98
-40858,21,131,21131,397,187,42159677,41837611,397,187,42159677,41837611,11310,5278,1047512767,1038181523,100,100,100,100,3.51,3.54,4.02,4.03
-40862,21,133,21133,647,279,43061193,42877600,647,279,43061193,42877600,24519,11601,878091351,875192707,100,100,100,100,2.64,2.4,4.9,4.9
-40863,21,095,21095,502,239,65811978,65712419,502,239,65811978,65712419,29278,13513,1212504169,1206487719,100,100,100,100,1.71,1.77,5.43,5.45
-40865,21,095,21095,410,184,8204694,8060593,410,184,8204694,8060593,29278,13513,1212504169,1206487719,100,100,100,100,1.4,1.36,0.68,0.67
-40868,21,131,21131,1100,485,65717704,65547829,1100,485,65717704,65547829,11310,5278,1047512767,1038181523,100,100,100,100,9.73,9.19,6.27,6.31
-40870,21,095,21095,279,141,18427985,18226538,279,141,18427985,18226538,29278,13513,1212504169,1206487719,100,100,100,100,0.95,1.04,1.52,1.51
-40873,21,095,21095,2390,1129,77217294,76872932,2390,1129,77217294,76872932,29278,13513,1212504169,1206487719,100,100,100,100,8.16,8.35,6.37,6.37
-40874,21,051,21051,46,23,11387690,11386519,504,229,101398689,101138564,21730,8875,1220107986,1215344973,9.13,10.04,11.23,11.26,0.21,0.26,0.93,0.94
-40874,21,131,21131,458,206,90010999,89752045,504,229,101398689,101138564,11310,5278,1047512767,1038181523,90.87,89.96,88.77,88.74,4.05,3.9,8.59,8.65
-40902,21,013,21013,1239,582,97727703,97576297,1239,582,97727703,97576297,28691,13154,935287665,929806795,100,100,100,100,4.32,4.42,10.45,10.49
-40903,21,121,21121,681,326,22328690,22224388,681,326,22328690,22224388,31883,14485,1004262736,1000505156,100,100,100,100,2.14,2.25,2.22,2.22
-40906,21,121,21121,10950,4952,313007872,311426802,11132,5045,322480987,320820979,31883,14485,1004262736,1000505156,98.37,98.16,97.06,97.07,34.34,34.19,31.17,31.13
-40906,21,235,21235,182,93,9473115,9394177,11132,5045,322480987,320820979,35637,15166,1152851418,1133973877,1.63,1.84,2.94,2.93,0.51,0.61,0.82,0.83
-40913,21,013,21013,85,47,31695559,31684831,171,95,45751062,45667437,28691,13154,935287665,929806795,49.71,49.47,69.28,69.38,0.3,0.36,3.39,3.41
-40913,21,051,21051,86,48,14055503,13982606,171,95,45751062,45667437,21730,8875,1220107986,1215344973,50.29,50.53,30.72,30.62,0.4,0.54,1.15,1.15
-40914,21,051,21051,467,237,32688390,32269365,467,237,32688390,32269365,21730,8875,1220107986,1215344973,100,100,100,100,2.15,2.67,2.68,2.66
-40915,21,121,21121,896,413,25012630,24976692,896,413,25012630,24976692,31883,14485,1004262736,1000505156,100,100,100,100,2.81,2.85,2.49,2.5
-40921,21,121,21121,295,145,39937977,39885715,295,145,39937977,39885715,31883,14485,1004262736,1000505156,100,100,100,100,0.93,1,3.98,3.99
-40923,21,121,21121,735,319,10449547,10421417,735,319,10449547,10421417,31883,14485,1004262736,1000505156,100,100,100,100,2.31,2.2,1.04,1.04
-40927,21,095,21095,482,222,30529986,30434205,482,222,30529986,30434205,29278,13513,1212504169,1206487719,100,100,100,100,1.65,1.64,2.52,2.52
-40935,21,121,21121,2699,1306,197696623,197091045,2699,1306,197696623,197091045,31883,14485,1004262736,1000505156,100,100,100,100,8.47,9.02,19.69,19.7
-40939,21,013,21013,273,134,17095658,16950913,273,134,17095658,16950913,28691,13154,935287665,929806795,100,100,100,100,0.95,1.02,1.83,1.82
-40940,21,013,21013,207,97,13542516,13505063,478,220,49503784,49448973,28691,13154,935287665,929806795,43.31,44.09,27.36,27.31,0.72,0.74,1.45,1.45
-40940,21,235,21235,271,123,35961268,35943910,478,220,49503784,49448973,35637,15166,1152851418,1133973877,56.69,55.91,72.64,72.69,0.76,0.81,3.12,3.17
-40941,21,051,21051,251,112,3615097,3603918,251,112,3615097,3603918,21730,8875,1220107986,1215344973,100,100,100,100,1.16,1.26,0.3,0.3
-40943,21,121,21121,748,329,16489523,16480650,748,329,16489523,16480650,31883,14485,1004262736,1000505156,100,100,100,100,2.35,2.27,1.64,1.65
-40946,21,121,21121,220,105,28761296,28760484,220,105,28761296,28760484,31883,14485,1004262736,1000505156,100,100,100,100,0.69,0.72,2.86,2.87
-40949,21,121,21121,788,388,8422828,8409921,788,388,8422828,8409921,31883,14485,1004262736,1000505156,100,100,100,100,2.47,2.68,0.84,0.84
-40953,21,121,21121,998,412,29772847,29750425,998,412,29772847,29750425,31883,14485,1004262736,1000505156,100,100,100,100,3.13,2.84,2.96,2.97
-40958,21,013,21013,451,202,18168459,18115568,451,202,18168459,18115568,28691,13154,935287665,929806795,100,100,100,100,1.57,1.54,1.94,1.95
-40962,21,051,21051,19099,7590,962282636,959312443,19143,7610,963966155,960985499,21730,8875,1220107986,1215344973,99.77,99.74,99.83,99.83,87.89,85.52,78.87,78.93
-40962,21,125,21125,44,20,1683519,1673056,19143,7610,963966155,960985499,58849,25446,1149164393,1123932843,0.23,0.26,0.17,0.17,0.07,0.08,0.15,0.15
-40964,21,095,21095,151,60,6643549,6637784,151,60,6643549,6637784,29278,13513,1212504169,1206487719,100,100,100,100,0.52,0.44,0.55,0.55
-40965,21,013,21013,13570,6439,187773367,186345217,13570,6439,187773367,186345217,28691,13154,935287665,929806795,100,100,100,100,47.3,48.95,20.08,20.04
-40972,21,051,21051,1296,637,147556209,146292850,1327,653,148373041,147108229,21730,8875,1220107986,1215344973,97.66,97.55,99.45,99.45,5.96,7.18,12.09,12.04
-40972,21,193,21193,31,16,816832,815379,1327,653,148373041,147108229,28712,12791,887353920,879740535,2.34,2.45,0.55,0.55,0.11,0.13,0.09,0.09
-40977,21,013,21013,10362,4502,347120527,344955525,10362,4502,347120527,344955525,28691,13154,935287665,929806795,100,100,100,100,36.12,34.23,37.11,37.1
-40979,21,131,21131,148,57,6590455,6564288,148,57,6590455,6564288,11310,5278,1047512767,1038181523,100,100,100,100,1.31,1.08,0.63,0.63
-40982,21,121,21121,388,167,16164233,16164233,388,167,16164233,16164233,31883,14485,1004262736,1000505156,100,100,100,100,1.22,1.15,1.61,1.62
-40983,21,051,21051,251,116,28919187,28903203,352,175,49008397,48932603,21730,8875,1220107986,1215344973,71.31,66.29,59.01,59.07,1.16,1.31,2.37,2.38
-40983,21,189,21189,101,59,20089210,20029400,352,175,49008397,48932603,4755,2328,513568947,511282528,28.69,33.71,40.99,40.93,2.12,2.53,3.91,3.92
-40988,21,013,21013,444,216,54437548,54257981,555,270,55123967,54937584,28691,13154,935287665,929806795,80,80,98.75,98.76,1.55,1.64,5.82,5.84
-40988,21,095,21095,111,54,686419,679603,555,270,55123967,54937584,29278,13513,1212504169,1206487719,20,20,1.25,1.24,0.38,0.4,0.06,0.06
-40995,21,121,21121,121,53,7546990,7546990,121,53,7546990,7546990,31883,14485,1004262736,1000505156,100,100,100,100,0.38,0.37,0.75,0.75
-40997,21,121,21121,371,193,54664513,54661190,371,193,54664513,54661190,31883,14485,1004262736,1000505156,100,100,100,100,1.16,1.33,5.44,5.46
-41001,21,037,21037,16412,6207,133535974,132495851,16412,6207,133535974,132495851,90336,39523,412896564,391886628,100,100,100,100,18.17,15.7,32.34,33.81
-41002,21,023,21023,2510,1137,120323226,116572112,2510,1137,120323226,116572112,8488,3840,541170499,532533237,100,100,100,100,29.57,29.61,22.23,21.89
-41003,21,081,21081,202,75,11196463,11151134,2786,1184,223557905,221032205,24662,9942,675380207,668125059,7.25,6.33,5.01,5.05,0.82,0.75,1.66,1.67
-41003,21,097,21097,2167,925,167932293,166077387,2786,1184,223557905,221032205,18846,8208,802538335,793479419,77.78,78.13,75.12,75.14,11.5,11.27,20.93,20.93
-41003,21,191,21191,417,184,44429149,43803684,2786,1184,223557905,221032205,14877,6339,730164044,717833417,14.97,15.54,19.87,19.82,2.8,2.9,6.08,6.1
-41004,21,023,21023,4014,1794,275196231,274566784,4122,1857,296757879,296075395,8488,3840,541170499,532533237,97.38,96.61,92.73,92.74,47.29,46.72,50.85,51.56
-41004,21,191,21191,4,4,1195566,1195566,4122,1857,296757879,296075395,14877,6339,730164044,717833417,0.1,0.22,0.4,0.4,0.03,0.06,0.16,0.17
-41004,21,201,21201,104,59,20366082,20313045,4122,1857,296757879,296075395,2282,1095,259253268,258767993,2.52,3.18,6.86,6.86,4.56,5.39,7.86,7.85
-41005,21,015,21015,22569,8410,159074769,151209362,22569,8410,159074769,151209362,118811,46154,664239268,638067340,100,100,100,100,19,18.22,23.95,23.7
-41006,21,037,21037,647,239,17435261,17407070,4434,1820,138941461,136934392,90336,39523,412896564,391886628,14.59,13.13,12.55,12.71,0.72,0.6,4.22,4.44
-41006,21,191,21191,3787,1581,121506200,119527322,4434,1820,138941461,136934392,14877,6339,730164044,717833417,85.41,86.87,87.45,87.29,25.46,24.94,16.64,16.65
-41007,21,037,21037,3583,1390,123279836,115473261,4193,1618,144200525,133980398,90336,39523,412896564,391886628,85.45,85.91,85.49,86.19,3.97,3.52,29.86,29.47
-41007,21,191,21191,610,228,20920689,18507137,4193,1618,144200525,133980398,14877,6339,730164044,717833417,14.55,14.09,14.51,13.81,4.1,3.6,2.87,2.58
-41008,21,041,21041,7457,3183,126825694,112635156,7457,3183,126825694,112635156,10811,4696,355643789,332992509,100,100,100,100,68.98,67.78,35.66,33.83
-41010,21,081,21081,1644,752,95961172,95294713,3217,1521,229846221,228494177,24662,9942,675380207,668125059,51.1,49.44,41.75,41.71,6.67,7.56,14.21,14.26
-41010,21,097,21097,324,159,35865388,35558429,3217,1521,229846221,228494177,18846,8208,802538335,793479419,10.07,10.45,15.6,15.56,1.72,1.94,4.47,4.48
-41010,21,187,21187,1141,562,92049323,91697467,3217,1521,229846221,228494177,10841,5634,917495243,909351754,35.47,36.95,40.05,40.13,10.52,9.98,10.03,10.08
-41010,21,209,21209,108,48,5970338,5943568,3217,1521,229846221,228494177,47173,19303,739268059,729770453,3.36,3.16,2.6,2.6,0.23,0.25,0.81,0.81
-41011,21,117,21117,25872,13661,19584533,18478742,25872,13661,19584533,18478742,159720,68975,425656108,415044980,100,100,100,100,16.2,19.81,4.6,4.45
-41014,21,117,21117,6942,3552,2807616,2751608,6942,3552,2807616,2751608,159720,68975,425656108,415044980,100,100,100,100,4.35,5.15,0.66,0.66
-41015,21,117,21117,20864,8943,67629263,65907087,20864,8943,67629263,65907087,159720,68975,425656108,415044980,100,100,100,100,13.06,12.97,15.89,15.88
-41016,21,117,21117,6075,2942,5338812,4150391,6075,2942,5338812,4150391,159720,68975,425656108,415044980,100,100,100,100,3.8,4.27,1.25,1
-41017,21,117,21117,38940,16375,56930662,54266938,38940,16375,56930662,54266938,159720,68975,425656108,415044980,100,100,100,100,24.38,23.74,13.37,13.07
-41018,21,015,21015,1294,552,6370091,6300001,27345,11347,30008832,29580255,118811,46154,664239268,638067340,4.73,4.86,21.23,21.3,1.09,1.2,0.96,0.99
-41018,21,117,21117,26051,10795,23638741,23280254,27345,11347,30008832,29580255,159720,68975,425656108,415044980,95.27,95.14,78.77,78.7,16.31,15.65,5.55,5.61
-41030,21,015,21015,342,122,6003124,5966787,6299,2425,73027691,72324839,118811,46154,664239268,638067340,5.43,5.03,8.22,8.25,0.29,0.26,0.9,0.94
-41030,21,081,21081,5187,2009,43771196,43285714,6299,2425,73027691,72324839,24662,9942,675380207,668125059,82.35,82.85,59.94,59.85,21.03,20.21,6.48,6.48
-41030,21,117,21117,749,289,22585924,22405250,6299,2425,73027691,72324839,159720,68975,425656108,415044980,11.89,11.92,30.93,30.98,0.47,0.42,5.31,5.4
-41030,21,191,21191,21,5,667447,667088,6299,2425,73027691,72324839,14877,6339,730164044,717833417,0.33,0.21,0.91,0.92,0.14,0.08,0.09,0.09
-41031,21,017,21017,14,8,2103851,2100474,15886,6935,569985968,563251002,19985,8927,755220169,750369577,0.09,0.12,0.37,0.37,0.07,0.09,0.28,0.28
-41031,21,097,21097,15661,6828,541026684,534404675,15886,6935,569985968,563251002,18846,8208,802538335,793479419,98.58,98.46,94.92,94.88,83.1,83.19,67.41,67.35
-41031,21,181,21181,211,99,26855433,26745853,15886,6935,569985968,563251002,7135,3261,509796120,505489592,1.33,1.43,4.71,4.75,2.96,3.04,5.27,5.29
-41033,21,117,21117,257,99,9800605,9782485,1976,783,110079127,108864060,159720,68975,425656108,415044980,13.01,12.64,8.9,8.99,0.16,0.14,2.3,2.36
-41033,21,191,21191,1719,684,100278522,99081575,1976,783,110079127,108864060,14877,6339,730164044,717833417,86.99,87.36,91.1,91.01,11.55,10.79,13.73,13.8
-41034,21,161,21161,1032,446,75978309,72461674,1032,446,75978309,72461674,17490,8105,638205710,621927429,100,100,100,100,5.9,5.5,11.9,11.65
-41035,21,081,21081,10764,4173,278235552,274542604,10785,4179,279448277,275754291,24662,9942,675380207,668125059,99.81,99.86,99.57,99.56,43.65,41.97,41.2,41.09
-41035,21,191,21191,21,6,1212725,1211687,10785,4179,279448277,275754291,14877,6339,730164044,717833417,0.19,0.14,0.43,0.44,0.14,0.09,0.17,0.17
-41039,21,069,21069,2433,1106,171242843,170064284,2502,1142,193402605,191728620,14348,6623,909904587,902720074,97.24,96.85,88.54,88.7,16.96,16.7,18.82,18.84
-41039,21,181,21181,69,36,22159762,21664336,2502,1142,193402605,191728620,7135,3261,509796120,505489592,2.76,3.15,11.46,11.3,0.97,1.1,4.35,4.29
-41040,21,023,21023,152,90,14951607,14859983,7265,3284,384360135,378405318,8488,3840,541170499,532533237,2.09,2.74,3.89,3.93,1.79,2.34,2.76,2.79
-41040,21,191,21191,7113,3194,369408528,363545335,7265,3284,384360135,378405318,14877,6339,730164044,717833417,97.91,97.26,96.11,96.07,47.81,50.39,50.59,50.64
-41041,21,069,21069,7153,3310,280719589,277991611,7153,3310,280719589,277991611,14348,6623,909904587,902720074,100,100,100,100,49.85,49.98,30.85,30.79
-41042,21,015,21015,48252,20424,71782361,71656633,49968,21017,74346099,74203805,118811,46154,664239268,638067340,96.57,97.18,96.55,96.57,40.61,44.25,10.81,11.23
-41042,21,117,21117,1716,593,2563738,2547172,49968,21017,74346099,74203805,159720,68975,425656108,415044980,3.43,2.82,3.45,3.43,1.07,0.86,0.6,0.61
-41043,21,023,21023,1260,578,98236698,94110495,1745,763,134806874,130588468,8488,3840,541170499,532533237,72.21,75.75,72.87,72.07,14.84,15.05,18.15,17.67
-41043,21,191,21191,485,185,36570176,36477973,1745,763,134806874,130588468,14877,6339,730164044,717833417,27.79,24.25,27.13,27.93,3.26,2.92,5.01,5.08
-41044,21,023,21023,524,224,27573832,27537308,1116,501,81383993,81294329,8488,3840,541170499,532533237,46.95,44.71,33.88,33.87,6.17,5.83,5.1,5.17
-41044,21,161,21161,467,213,33128691,33092547,1116,501,81383993,81294329,17490,8105,638205710,621927429,41.85,42.51,40.71,40.71,2.67,2.63,5.19,5.32
-41044,21,201,21201,125,64,20681470,20664474,1116,501,81383993,81294329,2282,1095,259253268,258767993,11.2,12.77,25.41,25.42,5.48,5.84,7.98,7.99
-41045,21,041,21041,953,433,71355237,65105958,1273,564,99136489,91312110,10811,4696,355643789,332992509,74.86,76.77,71.98,71.3,8.82,9.22,20.06,19.55
-41045,21,077,21077,320,131,27781252,26206152,1273,564,99136489,91312110,8589,3786,271218060,262194985,25.14,23.23,28.02,28.7,3.73,3.46,10.24,9.99
-41046,21,077,21077,1213,494,25104582,24951594,1414,573,44298839,43811138,8589,3786,271218060,262194985,85.79,86.21,56.67,56.95,14.12,13.05,9.26,9.52
-41046,21,081,21081,109,44,11121818,10828805,1414,573,44298839,43811138,24662,9942,675380207,668125059,7.71,7.68,25.11,24.72,0.44,0.44,1.65,1.62
-41046,21,187,21187,92,35,8072439,8030739,1414,573,44298839,43811138,10841,5634,917495243,909351754,6.51,6.11,18.22,18.33,0.85,0.62,0.88,0.88
-41048,21,015,21015,13959,4728,63998491,56920417,13959,4728,63998491,56920417,118811,46154,664239268,638067340,100,100,100,100,11.75,10.24,9.63,8.92
-41049,21,069,21069,2261,1012,220710720,218833296,2261,1012,220710720,218833296,14348,6623,909904587,902720074,100,100,100,100,15.76,15.28,24.26,24.24
-41051,21,117,21117,26796,9603,76303316,75267239,26796,9603,76303316,75267239,159720,68975,425656108,415044980,100,100,100,100,16.78,13.92,17.93,18.13
-41052,21,081,21081,107,44,7098900,6990470,107,44,7098900,6990470,24662,9942,675380207,668125059,100,100,100,100,0.43,0.44,1.05,1.05
-41055,21,069,21069,85,33,9741943,9699599,1813,792,163630138,163133370,14348,6623,909904587,902720074,4.69,4.17,5.95,5.95,0.59,0.5,1.07,1.07
-41055,21,161,21161,1728,759,153888195,153433771,1813,792,163630138,163133370,17490,8105,638205710,621927429,95.31,95.83,94.05,94.05,9.88,9.36,24.11,24.67
-41056,21,161,21161,14228,6672,374879112,362608034,14228,6672,374879112,362608034,17490,8105,638205710,621927429,100,100,100,100,81.35,82.32,58.74,58.3
-41059,21,037,21037,2712,1173,41335793,35351880,2712,1173,41335793,35351880,90336,39523,412896564,391886628,100,100,100,100,3,2.97,10.01,9.02
-41062,21,161,21161,35,15,331403,331403,35,15,331403,331403,17490,8105,638205710,621927429,100,100,100,100,0.2,0.19,0.05,0.05
-41063,21,117,21117,3378,1340,95177769,93510568,3378,1340,95177769,93510568,159720,68975,425656108,415044980,100,100,100,100,2.11,1.94,22.36,22.53
-41064,21,023,21023,28,17,4888905,4886555,2073,981,222013943,221600173,8488,3840,541170499,532533237,1.35,1.73,2.2,2.21,0.33,0.44,0.9,0.92
-41064,21,201,21201,2045,964,217125038,216713618,2073,981,222013943,221600173,2282,1095,259253268,258767993,98.65,98.27,97.8,97.79,89.61,88.04,83.75,83.75
-41071,21,037,21037,20869,9976,14805671,14034949,20869,9976,14805671,14034949,90336,39523,412896564,391886628,100,100,100,100,23.1,25.24,3.59,3.58
-41073,21,037,21037,5955,2974,2904836,2385653,5955,2974,2904836,2385653,90336,39523,412896564,391886628,100,100,100,100,6.59,7.52,0.7,0.61
-41074,21,037,21037,5338,2365,5015352,3327648,5338,2365,5015352,3327648,90336,39523,412896564,391886628,100,100,100,100,5.91,5.98,1.21,0.85
-41075,21,037,21037,16459,7339,16926705,15587103,16459,7339,16926705,15587103,90336,39523,412896564,391886628,100,100,100,100,18.22,18.57,4.1,3.98
-41076,21,037,21037,16468,7565,56087987,54258557,16468,7565,56087987,54258557,90336,39523,412896564,391886628,100,100,100,100,18.23,19.14,13.58,13.85
-41080,21,015,21015,1849,726,81407591,73361095,1849,726,81407591,73361095,118811,46154,664239268,638067340,100,100,100,100,1.56,1.57,12.26,11.5
-41083,21,041,21041,740,305,43920725,43349350,1326,602,90272560,89106847,10811,4696,355643789,332992509,55.81,50.66,48.65,48.65,6.84,6.49,12.35,13.02
-41083,21,077,21077,487,244,30721547,30333103,1326,602,90272560,89106847,8589,3786,271218060,262194985,36.73,40.53,34.03,34.04,5.67,6.44,11.33,11.57
-41083,21,187,21187,99,53,15630288,15424394,1326,602,90272560,89106847,10841,5634,917495243,909351754,7.47,8.8,17.31,17.31,0.91,0.94,1.7,1.7
-41085,21,037,21037,724,295,971359,966866,724,295,971359,966866,90336,39523,412896564,391886628,100,100,100,100,0.8,0.75,0.24,0.25
-41086,21,077,21077,1637,699,72043977,71468052,2771,1184,168164276,166992568,8589,3786,271218060,262194985,59.08,59.04,42.84,42.8,19.06,18.46,26.56,27.26
-41086,21,187,21187,1134,485,96120299,95524516,2771,1184,168164276,166992568,10841,5634,917495243,909351754,40.92,40.96,57.16,57.2,10.46,8.61,10.48,10.5
-41091,21,015,21015,16873,5915,136100826,133512804,16873,5915,136100826,133512804,118811,46154,664239268,638067340,100,100,100,100,14.2,12.82,20.49,20.92
-41092,21,015,21015,2122,799,65247957,65034250,3514,1363,99559294,99186030,118811,46154,664239268,638067340,60.39,58.62,65.54,65.57,1.79,1.73,9.82,10.19
-41092,21,077,21077,1392,564,34311337,34151780,3514,1363,99559294,99186030,8589,3786,271218060,262194985,39.61,41.38,34.46,34.43,16.21,14.9,12.65,13.03
-41093,21,069,21069,2416,1162,227489492,226131284,2869,1364,282444303,281051721,14348,6623,909904587,902720074,84.21,85.19,80.54,80.46,16.84,17.54,25,25.05
-41093,21,135,21135,453,202,54954811,54920437,2869,1364,282444303,281051721,13870,6481,1283033140,1250540292,15.79,14.81,19.46,19.54,3.27,3.12,4.28,4.39
-41094,21,015,21015,11551,4478,74254058,74105991,13631,5261,117549187,116803237,118811,46154,664239268,638067340,84.74,85.12,63.17,63.45,9.72,9.7,11.18,11.61
-41094,21,117,21117,2080,783,43295129,42697246,13631,5261,117549187,116803237,159720,68975,425656108,415044980,15.26,14.88,36.83,36.55,1.3,1.14,10.17,10.29
-41095,21,077,21077,3540,1654,81255365,75084304,3540,1654,81255365,75084304,8589,3786,271218060,262194985,100,100,100,100,41.22,43.69,29.96,28.64
-41097,21,081,21081,6649,2845,227995106,226031619,7349,3113,261970148,259847669,24662,9942,675380207,668125059,90.47,91.39,87.03,86.99,26.96,28.62,33.76,33.83
-41097,21,191,21191,700,268,33975042,33816050,7349,3113,261970148,259847669,14877,6339,730164044,717833417,9.53,8.61,12.97,13.01,4.71,4.23,4.65,4.71
-41098,21,041,21041,806,393,31665113,31070323,2037,1169,134561486,131765558,10811,4696,355643789,332992509,39.57,33.62,23.53,23.58,7.46,8.37,8.9,9.33
-41098,21,187,21187,1231,776,102896373,100695235,2037,1169,134561486,131765558,10841,5634,917495243,909351754,60.43,66.38,76.47,76.42,11.36,13.77,11.21,11.07
-41099,21,037,21037,1169,0,597790,597790,1169,0,597790,597790,90336,39523,412896564,391886628,100,0,100,100,1.29,0,0.14,0.15
-41101,21,019,21019,17220,8435,25238827,21759628,18758,9052,28492266,25001268,49542,21803,419635172,414046208,91.8,93.18,88.58,87.03,34.76,38.69,6.01,5.26
-41101,21,089,21089,1538,617,3253439,3241640,18758,9052,28492266,25001268,36910,16330,918019828,891983450,8.2,6.82,11.42,12.97,4.17,3.78,0.35,0.36
-41102,21,019,21019,21094,8649,118294211,117627272,21712,8899,133284810,132508818,49542,21803,419635172,414046208,97.15,97.19,88.75,88.77,42.58,39.67,28.19,28.41
-41102,21,089,21089,618,250,14990599,14881546,21712,8899,133284810,132508818,36910,16330,918019828,891983450,2.85,2.81,11.25,11.23,1.67,1.53,1.63,1.67
-41121,21,089,21089,1852,836,130300626,129027503,1852,836,130300626,129027503,36910,16330,918019828,891983450,100,100,100,100,5.02,5.12,14.19,14.47
-41124,21,127,21127,1039,496,151696076,150390838,1039,496,151696076,150390838,15860,7286,1087971229,1076386638,100,100,100,100,6.55,6.81,13.94,13.97
-41129,21,019,21019,9387,3990,174732977,173348788,9922,4238,223038584,221613228,49542,21803,419635172,414046208,94.61,94.15,78.34,78.22,18.95,18.3,41.64,41.87
-41129,21,127,21127,535,248,48305607,48264440,9922,4238,223038584,221613228,15860,7286,1087971229,1076386638,5.39,5.85,21.66,21.78,3.37,3.4,4.44,4.48
-41132,21,043,21043,375,184,46713517,46697020,425,213,52476777,52460280,27720,12311,1067390770,1060589533,88.24,86.38,89.02,89.01,1.35,1.49,4.38,4.4
-41132,21,127,21127,50,29,5763260,5763260,425,213,52476777,52460280,15860,7286,1087971229,1076386638,11.76,13.62,10.98,10.99,0.32,0.4,0.53,0.54
-41135,21,135,21135,172,90,21907627,21863721,172,90,21907627,21863721,13870,6481,1283033140,1250540292,100,100,100,100,1.24,1.39,1.71,1.75
-41139,21,089,21089,8271,3668,15762217,15747498,8271,3668,15762217,15747498,36910,16330,918019828,891983450,100,100,100,100,22.41,22.46,1.72,1.77
-41141,21,089,21089,563,249,61167484,61122236,2461,1098,171343714,168646898,36910,16330,918019828,891983450,22.88,22.68,35.7,36.24,1.53,1.52,6.66,6.85
-41141,21,135,21135,1898,849,110176230,107524662,2461,1098,171343714,168646898,13870,6481,1283033140,1250540292,77.12,77.32,64.3,63.76,13.68,13.1,8.59,8.6
-41142,21,043,21043,91,34,1546841,1546499,91,34,1546841,1546499,27720,12311,1067390770,1060589533,100,100,100,100,0.33,0.28,0.14,0.15
-41143,21,043,21043,14189,6107,477760850,473426884,14535,6270,516757326,512256056,27720,12311,1067390770,1060589533,97.62,97.4,92.45,92.42,51.19,49.61,44.76,44.64
-41143,21,089,21089,346,163,38996476,38829172,14535,6270,516757326,512256056,36910,16330,918019828,891983450,2.38,2.6,7.55,7.58,0.94,1,4.25,4.35
-41144,21,089,21089,10279,4441,400629785,389471790,10279,4441,400629785,389471790,36910,16330,918019828,891983450,100,100,100,100,27.85,27.2,43.64,43.66
-41146,21,043,21043,412,168,8351163,8326722,412,168,8351163,8326722,27720,12311,1067390770,1060589533,100,100,100,100,1.49,1.36,0.78,0.79
-41149,21,063,21063,733,334,86095317,85889893,733,334,86095317,85889893,7852,3371,609484383,606873739,100,100,100,100,9.34,9.91,14.13,14.15
-41159,21,127,21127,583,264,62022625,61980609,583,264,62022625,61980609,15860,7286,1087971229,1076386638,100,100,100,100,3.68,3.62,5.7,5.76
-41164,21,043,21043,11324,5267,487831734,485450751,13125,6169,635107212,631410755,27720,12311,1067390770,1060589533,86.28,85.38,76.81,76.88,40.85,42.78,45.7,45.77
-41164,21,063,21063,1731,870,143415325,142101626,13125,6169,635107212,631410755,7852,3371,609484383,606873739,13.19,14.1,22.58,22.51,22.05,25.81,23.53,23.42
-41164,21,135,21135,70,32,3860153,3858378,13125,6169,635107212,631410755,13870,6481,1283033140,1250540292,0.53,0.52,0.61,0.61,0.5,0.49,0.3,0.31
-41166,21,135,21135,919,407,59951643,55772319,919,407,59951643,55772319,13870,6481,1283033140,1250540292,100,100,100,100,6.63,6.28,4.67,4.46
-41168,21,019,21019,1841,729,101369157,101310520,3043,1229,141539285,141435640,49542,21803,419635172,414046208,60.5,59.32,71.62,71.63,3.72,3.34,24.16,24.47
-41168,21,043,21043,1202,500,40170128,40125120,3043,1229,141539285,141435640,27720,12311,1067390770,1060589533,39.5,40.68,28.38,28.37,4.34,4.06,3.76,3.78
-41169,21,089,21089,5354,2435,18775418,16492487,5354,2435,18775418,16492487,36910,16330,918019828,891983450,100,100,100,100,14.51,14.91,2.05,1.85
-41171,21,063,21063,5042,2000,325045425,324020634,5042,2000,325045425,324020634,7852,3371,609484383,606873739,100,100,100,100,64.21,59.33,53.33,53.39
-41174,21,089,21089,880,409,22144972,21057229,1122,557,29201604,26197814,36910,16330,918019828,891983450,78.43,73.43,75.83,80.38,2.38,2.5,2.41,2.36
-41174,21,135,21135,242,148,7056632,5140585,1122,557,29201604,26197814,13870,6481,1283033140,1250540292,21.57,26.57,24.17,19.62,1.74,2.28,0.55,0.41
-41175,21,089,21089,5591,2575,206461095,198781601,5591,2575,206461095,198781601,36910,16330,918019828,891983450,100,100,100,100,15.15,15.77,22.49,22.29
-41179,21,135,21135,7852,3720,867788455,844531286,7852,3720,867788455,844531286,13870,6481,1283033140,1250540292,100,100,100,100,56.61,57.4,67.64,67.53
-41180,21,043,21043,68,28,3836791,3836791,1087,579,185298386,184664252,27720,12311,1067390770,1060589533,6.26,4.84,2.07,2.08,0.25,0.23,0.36,0.36
-41180,21,063,21063,143,78,35017340,35009882,1087,579,185298386,184664252,7852,3371,609484383,606873739,13.16,13.47,18.9,18.96,1.82,2.31,5.75,5.77
-41180,21,127,21127,876,473,146444255,145817579,1087,579,185298386,184664252,15860,7286,1087971229,1076386638,80.59,81.69,79.03,78.96,5.52,6.49,13.46,13.55
-41183,21,089,21089,1618,687,5537717,3330748,1618,687,5537717,3330748,36910,16330,918019828,891983450,100,100,100,100,4.38,4.21,0.6,0.37
-41189,21,135,21135,2264,1033,157337589,156928904,2264,1033,157337589,156928904,13870,6481,1283033140,1250540292,100,100,100,100,16.32,15.94,12.26,12.55
-41201,21,127,21127,238,170,27310146,25771446,238,170,27310146,25771446,15860,7286,1087971229,1076386638,100,100,100,100,1.5,2.33,2.51,2.39
-41203,21,159,21159,696,332,15749318,15739801,696,332,15749318,15739801,12929,5164,597247743,594673664,100,100,100,100,5.38,6.43,2.64,2.65
-41204,21,115,21115,560,252,31455115,31452791,560,252,31455115,31452791,23356,10624,684107188,678455744,100,100,100,100,2.4,2.37,4.6,4.64
-41214,21,159,21159,750,313,51894054,51879656,750,313,51894054,51879656,12929,5164,597247743,594673664,100,100,100,100,5.8,6.06,8.69,8.72
-41216,21,071,21071,806,373,28407229,28312069,1297,584,41215142,41119471,39451,18175,1024871973,1018758276,62.14,63.87,68.92,68.85,2.04,2.05,2.77,2.78
-41216,21,115,21115,491,211,12807913,12807402,1297,584,41215142,41119471,23356,10624,684107188,678455744,37.86,36.13,31.08,31.15,2.1,1.99,1.87,1.89
-41219,21,115,21115,2053,913,119067471,118105689,2053,913,119067471,118105689,23356,10624,684107188,678455744,100,100,100,100,8.79,8.59,17.4,17.41
-41222,21,115,21115,2627,1132,75368128,74998545,2627,1132,75368128,74998545,23356,10624,684107188,678455744,100,100,100,100,11.25,10.66,11.02,11.05
-41224,21,159,21159,6414,2185,235389227,234486146,6414,2185,235389227,234486146,12929,5164,597247743,594673664,100,100,100,100,49.61,42.31,39.41,39.43
-41226,21,115,21115,168,84,14609576,14579773,168,84,14609576,14579773,23356,10624,684107188,678455744,100,100,100,100,0.72,0.79,2.14,2.15
-41230,21,127,21127,11577,5167,590562810,582827564,11730,5228,593657470,585826028,15860,7286,1087971229,1076386638,98.7,98.83,99.48,99.49,72.99,70.92,54.28,54.15
-41230,21,159,21159,153,61,3094660,2998464,11730,5228,593657470,585826028,12929,5164,597247743,594673664,1.3,1.17,0.52,0.51,1.18,1.18,0.52,0.5
-41231,21,159,21159,1002,466,15412292,14938315,1002,466,15412292,14938315,12929,5164,597247743,594673664,100,100,100,100,7.75,9.02,2.58,2.51
-41232,21,115,21115,258,112,7405561,7405561,782,352,29390903,29376644,23356,10624,684107188,678455744,32.99,31.82,25.2,25.21,1.1,1.05,1.08,1.09
-41232,21,127,21127,524,240,21985342,21971083,782,352,29390903,29376644,15860,7286,1087971229,1076386638,67.01,68.18,74.8,74.79,3.3,3.29,2.02,2.04
-41234,21,115,21115,601,265,13163282,13156591,601,265,13163282,13156591,23356,10624,684107188,678455744,100,100,100,100,2.57,2.49,1.92,1.94
-41238,21,115,21115,860,409,59607714,58423128,860,409,59607714,58423128,23356,10624,684107188,678455744,100,100,100,100,3.68,3.85,8.71,8.61
-41240,21,115,21115,6916,3295,116781427,115858587,6916,3295,116781427,115858587,23356,10624,684107188,678455744,100,100,100,100,29.61,31.01,17.07,17.08
-41250,21,159,21159,1195,547,197767318,197094780,1195,547,197767318,197094780,12929,5164,597247743,594673664,100,100,100,100,9.24,10.59,33.11,33.14
-41254,21,115,21115,522,221,23506310,23293699,571,242,26050304,25761167,23356,10624,684107188,678455744,91.42,91.32,90.23,90.42,2.23,2.08,3.44,3.43
-41254,21,127,21127,49,21,2543994,2467468,571,242,26050304,25761167,15860,7286,1087971229,1076386638,8.58,8.68,9.77,9.58,0.31,0.29,0.23,0.23
-41255,21,115,21115,1036,472,39205253,39194155,1036,472,39205253,39194155,23356,10624,684107188,678455744,100,100,100,100,4.44,4.44,5.73,5.78
-41256,21,115,21115,2433,1098,58518636,56975446,2433,1098,58518636,56975446,23356,10624,684107188,678455744,100,100,100,100,10.42,10.34,8.55,8.4
-41257,21,115,21115,390,171,15475813,15463615,390,171,15475813,15463615,23356,10624,684107188,678455744,100,100,100,100,1.67,1.61,2.26,2.28
-41260,21,115,21115,885,379,6625930,6586782,885,379,6625930,6586782,23356,10624,684107188,678455744,100,100,100,100,3.79,3.57,0.97,0.97
-41262,21,159,21159,1474,676,57590661,57573657,1474,676,57590661,57573657,12929,5164,597247743,594673664,100,100,100,100,11.4,13.09,9.64,9.68
-41263,21,115,21115,525,225,16566929,16340011,525,225,16566929,16340011,23356,10624,684107188,678455744,100,100,100,100,2.25,2.12,2.42,2.41
-41264,21,127,21127,389,178,31337114,31132351,389,178,31337114,31132351,15860,7286,1087971229,1076386638,100,100,100,100,2.45,2.44,2.88,2.89
-41265,21,071,21071,43,26,24004762,22537258,1857,856,79731711,78190469,39451,18175,1024871973,1018758276,2.32,3.04,30.11,28.82,0.11,0.14,2.34,2.21
-41265,21,115,21115,1814,830,55726949,55653211,1857,856,79731711,78190469,23356,10624,684107188,678455744,97.68,96.96,69.89,71.18,7.77,7.81,8.15,8.2
-41267,21,159,21159,1245,584,20350213,19962845,1245,584,20350213,19962845,12929,5164,597247743,594673664,100,100,100,100,9.63,11.31,3.41,3.36
-41268,21,115,21115,395,178,851140,799260,395,178,851140,799260,23356,10624,684107188,678455744,100,100,100,100,1.69,1.68,0.12,0.12
-41271,21,115,21115,237,123,7766948,7766948,237,123,7766948,7766948,23356,10624,684107188,678455744,100,100,100,100,1.01,1.16,1.14,1.14
-41274,21,115,21115,585,254,9597093,9594550,585,254,9597093,9594550,23356,10624,684107188,678455744,100,100,100,100,2.5,2.39,1.4,1.41
-41301,21,025,21025,277,130,33732451,33725279,6159,3017,536045853,534627087,13878,6231,1282736932,1275344480,4.5,4.31,6.29,6.31,2,2.09,2.63,2.64
-41301,21,129,21129,212,105,58996064,58541544,6159,3017,536045853,534627087,7887,3436,547152769,540937729,3.44,3.48,11.01,10.95,2.69,3.06,10.78,10.82
-41301,21,237,21237,5670,2782,443317338,442360264,6159,3017,536045853,534627087,7355,3660,576924522,575419453,92.06,92.21,82.7,82.74,77.09,76.01,76.84,76.88
-41311,21,025,21025,59,24,4286356,4142245,7538,3245,463177104,457343011,13878,6231,1282736932,1275344480,0.78,0.74,0.93,0.91,0.43,0.39,0.33,0.32
-41311,21,129,21129,7479,3221,458890748,453200766,7538,3245,463177104,457343011,7887,3436,547152769,540937729,99.22,99.26,99.07,99.09,94.83,93.74,83.87,83.78
-41314,21,025,21025,663,320,127794009,127572298,5239,2548,584713287,582298771,13878,6231,1282736932,1275344480,12.66,12.56,21.86,21.91,4.78,5.14,9.96,10
-41314,21,189,21189,4576,2228,456919278,454726473,5239,2548,584713287,582298771,4755,2328,513568947,511282528,87.34,87.44,78.14,78.09,96.24,95.7,88.97,88.94
-41317,21,025,21025,190,83,61639801,61234047,190,83,61639801,61234047,13878,6231,1282736932,1275344480,100,100,100,100,1.37,1.33,4.81,4.8
-41332,21,175,21175,444,231,55109636,55059128,1184,618,109527340,109239456,13923,5830,994005570,987113548,37.5,37.38,50.32,50.4,3.19,3.96,5.54,5.58
-41332,21,237,21237,740,387,54417704,54180328,1184,618,109527340,109239456,7355,3660,576924522,575419453,62.5,62.62,49.68,49.6,10.06,10.57,9.43,9.42
-41339,21,025,21025,10928,4896,897687726,891647145,10957,4911,919305615,913192667,13878,6231,1282736932,1275344480,99.74,99.69,97.65,97.64,78.74,78.57,69.98,69.91
-41339,21,119,21119,1,1,20161092,20151023,10957,4911,919305615,913192667,16346,7461,913881183,910427420,0.01,0.02,2.19,2.21,0.01,0.01,2.21,2.21
-41339,21,129,21129,28,14,1456797,1394499,10957,4911,919305615,913192667,7887,3436,547152769,540937729,0.26,0.29,0.16,0.15,0.36,0.41,0.27,0.26
-41348,21,025,21025,1219,531,100202210,99766430,1219,531,100202210,99766430,13878,6231,1282736932,1275344480,100,100,100,100,8.78,8.52,7.81,7.82
-41352,21,175,21175,677,314,54762270,54720859,677,314,54762270,54720859,13923,5830,994005570,987113548,100,100,100,100,4.86,5.39,5.51,5.54
-41360,21,197,21197,56,24,1908160,1907276,500,233,44406357,44169120,12613,5598,466513130,463554647,11.2,10.3,4.3,4.32,0.44,0.43,0.41,0.41
-41360,21,237,21237,444,209,42498197,42261844,500,233,44406357,44169120,7355,3660,576924522,575419453,88.8,89.7,95.7,95.68,6.04,5.71,7.37,7.34
-41365,21,237,21237,501,282,36691283,36617017,501,282,36691283,36617017,7355,3660,576924522,575419453,100,100,100,100,6.81,7.7,6.36,6.36
-41366,21,025,21025,20,14,3049061,3025521,20,14,3049061,3025521,13878,6231,1282736932,1275344480,100,100,100,100,0.14,0.22,0.24,0.24
-41367,21,193,21193,179,78,13335082,13248995,179,78,13335082,13248995,28712,12791,887353920,879740535,100,100,100,100,0.62,0.61,1.5,1.51
-41385,21,025,21025,470,211,51323438,51295281,470,211,51323438,51295281,13878,6231,1282736932,1275344480,100,100,100,100,3.39,3.39,4,4.02
-41390,21,025,21025,52,22,3021880,2936234,52,22,3021880,2936234,13878,6231,1282736932,1275344480,100,100,100,100,0.37,0.35,0.24,0.23
-41397,21,129,21129,64,33,7128360,7124810,64,33,7128360,7124810,7887,3436,547152769,540937729,100,100,100,100,0.81,0.96,1.3,1.32
-41408,21,175,21175,445,181,18227613,18226851,445,181,18227613,18226851,13923,5830,994005570,987113548,100,100,100,100,3.2,3.1,1.83,1.85
-41421,21,175,21175,233,98,30417498,30404327,233,98,30417498,30404327,13923,5830,994005570,987113548,100,100,100,100,1.67,1.68,3.06,3.08
-41425,21,175,21175,1138,550,80815581,80608795,1138,550,80815581,80608795,13923,5830,994005570,987113548,100,100,100,100,8.17,9.43,8.13,8.17
-41464,21,153,21153,722,334,38884920,38825366,722,334,38884920,38825366,13333,5950,800713704,798865721,100,100,100,100,5.42,5.61,4.86,4.86
-41465,21,153,21153,11979,5330,677984186,676269786,11979,5330,677984186,676269786,13333,5950,800713704,798865721,100,100,100,100,89.84,89.58,84.67,84.65
-41472,21,063,21063,123,52,6514870,6509431,10985,4384,721472393,715625034,7852,3371,609484383,606873739,1.12,1.19,0.9,0.91,1.57,1.54,1.07,1.07
-41472,21,175,21175,10862,4332,714957523,709115603,10985,4384,721472393,715625034,13923,5830,994005570,987113548,98.88,98.81,99.1,99.09,78.01,74.31,71.93,71.84
-41501,21,195,21195,23298,10869,521041949,520591265,23298,10869,521041949,520591265,65024,30304,2042644459,2037887589,100,100,100,100,35.83,35.87,25.51,25.55
-41503,21,195,21195,570,290,3826761,3826761,570,290,3826761,3826761,65024,30304,2042644459,2037887589,100,100,100,100,0.88,0.96,0.19,0.19
-41512,21,195,21195,976,434,34374801,34374801,976,434,34374801,34374801,65024,30304,2042644459,2037887589,100,100,100,100,1.5,1.43,1.68,1.69
-41513,21,195,21195,590,296,29581002,29573573,590,296,29581002,29573573,65024,30304,2042644459,2037887589,100,100,100,100,0.91,0.98,1.45,1.45
-41514,21,195,21195,3491,1614,131037032,131035345,3491,1614,131037032,131035345,65024,30304,2042644459,2037887589,100,100,100,100,5.37,5.33,6.42,6.43
-41517,21,133,21133,109,55,2685421,2673820,109,55,2685421,2673820,24519,11601,878091351,875192707,100,100,100,100,0.44,0.47,0.31,0.31
-41519,21,195,21195,1108,482,27573070,27573070,1108,482,27573070,27573070,65024,30304,2042644459,2037887589,100,100,100,100,1.7,1.59,1.35,1.35
-41522,21,195,21195,5352,2540,168663118,168658014,5352,2540,168663118,168658014,65024,30304,2042644459,2037887589,100,100,100,100,8.23,8.38,8.26,8.28
-41524,21,195,21195,384,191,20136545,20136545,384,191,20136545,20136545,65024,30304,2042644459,2037887589,100,100,100,100,0.59,0.63,0.99,0.99
-41526,21,195,21195,125,49,306315,306315,125,49,306315,306315,65024,30304,2042644459,2037887589,100,100,100,100,0.19,0.16,0.01,0.02
-41527,21,195,21195,675,316,15580066,15580066,675,316,15580066,15580066,65024,30304,2042644459,2037887589,100,100,100,100,1.04,1.04,0.76,0.76
-41528,21,195,21195,999,468,19824842,19824842,999,468,19824842,19824842,65024,30304,2042644459,2037887589,100,100,100,100,1.54,1.54,0.97,0.97
-41531,21,195,21195,985,415,24321563,24321563,985,415,24321563,24321563,65024,30304,2042644459,2037887589,100,100,100,100,1.51,1.37,1.19,1.19
-41534,21,195,21195,273,118,4397433,4397433,273,118,4397433,4397433,65024,30304,2042644459,2037887589,100,100,100,100,0.42,0.39,0.22,0.22
-41535,21,195,21195,526,250,6100979,6100979,526,250,6100979,6100979,65024,30304,2042644459,2037887589,100,100,100,100,0.81,0.82,0.3,0.3
-41537,21,133,21133,3040,1448,64568280,64322012,5373,2528,144804152,144557884,24519,11601,878091351,875192707,56.58,57.28,44.59,44.5,12.4,12.48,7.35,7.35
-41537,21,195,21195,2333,1080,80235872,80235872,5373,2528,144804152,144557884,65024,30304,2042644459,2037887589,43.42,42.72,55.41,55.5,3.59,3.56,3.93,3.94
-41538,21,195,21195,97,67,492213,492213,97,67,492213,492213,65024,30304,2042644459,2037887589,100,100,100,100,0.15,0.22,0.02,0.02
-41539,21,195,21195,1722,772,94472927,94472927,1722,772,94472927,94472927,65024,30304,2042644459,2037887589,100,100,100,100,2.65,2.55,4.63,4.64
-41540,21,195,21195,302,143,25808958,25808958,302,143,25808958,25808958,65024,30304,2042644459,2037887589,100,100,100,100,0.46,0.47,1.26,1.27
-41543,21,195,21195,543,262,13346537,13346537,543,262,13346537,13346537,65024,30304,2042644459,2037887589,100,100,100,100,0.84,0.86,0.65,0.65
-41544,21,195,21195,931,402,29035643,29035643,931,402,29035643,29035643,65024,30304,2042644459,2037887589,100,100,100,100,1.43,1.33,1.42,1.42
-41547,21,195,21195,369,175,17505856,17505856,369,175,17505856,17505856,65024,30304,2042644459,2037887589,100,100,100,100,0.57,0.58,0.86,0.86
-41548,21,195,21195,862,451,44942109,43020511,862,451,44942109,43020511,65024,30304,2042644459,2037887589,100,100,100,100,1.33,1.49,2.2,2.11
-41553,21,195,21195,2288,1124,88517053,88517053,2288,1124,88517053,88517053,65024,30304,2042644459,2037887589,100,100,100,100,3.52,3.71,4.33,4.34
-41554,21,195,21195,1102,553,88089343,87103432,1102,553,88089343,87103432,65024,30304,2042644459,2037887589,100,100,100,100,1.69,1.82,4.31,4.27
-41555,21,195,21195,915,416,21354664,21354664,915,416,21354664,21354664,65024,30304,2042644459,2037887589,100,100,100,100,1.41,1.37,1.05,1.05
-41557,21,195,21195,1716,773,55269364,53909300,1716,773,55269364,53909300,65024,30304,2042644459,2037887589,100,100,100,100,2.64,2.55,2.71,2.65
-41558,21,195,21195,809,371,37906902,37906902,809,371,37906902,37906902,65024,30304,2042644459,2037887589,100,100,100,100,1.24,1.22,1.86,1.86
-41559,21,195,21195,339,156,11657608,11657608,339,156,11657608,11657608,65024,30304,2042644459,2037887589,100,100,100,100,0.52,0.51,0.57,0.57
-41560,21,195,21195,384,190,16800297,16800297,384,190,16800297,16800297,65024,30304,2042644459,2037887589,100,100,100,100,0.59,0.63,0.82,0.82
-41562,21,195,21195,2807,1240,70581290,70581290,2807,1240,70581290,70581290,65024,30304,2042644459,2037887589,100,100,100,100,4.32,4.09,3.46,3.46
-41563,21,195,21195,445,212,14666003,14641871,445,212,14666003,14641871,65024,30304,2042644459,2037887589,100,100,100,100,0.68,0.7,0.72,0.72
-41564,21,195,21195,1159,512,42992932,42992932,1159,512,42992932,42992932,65024,30304,2042644459,2037887589,100,100,100,100,1.78,1.69,2.1,2.11
-41566,21,195,21195,714,299,35391075,35391075,714,299,35391075,35391075,65024,30304,2042644459,2037887589,100,100,100,100,1.1,0.99,1.73,1.74
-41567,21,195,21195,369,157,8534770,8534770,369,157,8534770,8534770,65024,30304,2042644459,2037887589,100,100,100,100,0.57,0.52,0.42,0.42
-41568,21,195,21195,1073,515,70911369,70911108,1073,515,70911369,70911108,65024,30304,2042644459,2037887589,100,100,100,100,1.65,1.7,3.47,3.48
-41571,21,195,21195,639,302,49413899,49413899,639,302,49413899,49413899,65024,30304,2042644459,2037887589,100,100,100,100,0.98,1,2.42,2.42
-41572,21,195,21195,3754,1800,117952299,117952299,3754,1800,117952299,117952299,65024,30304,2042644459,2037887589,100,100,100,100,5.77,5.94,5.77,5.79
-41601,21,071,21071,755,369,11931649,11767930,755,369,11931649,11767930,39451,18175,1024871973,1018758276,100,100,100,100,1.91,2.03,1.16,1.16
-41602,21,071,21071,819,393,10154532,9308146,819,393,10154532,9308146,39451,18175,1024871973,1018758276,100,100,100,100,2.08,2.16,0.99,0.91
-41603,21,071,21071,1498,641,33821681,33727482,1498,641,33821681,33727482,39451,18175,1024871973,1018758276,100,100,100,100,3.8,3.53,3.3,3.31
-41604,21,071,21071,620,287,14223481,14218690,620,287,14223481,14218690,39451,18175,1024871973,1018758276,100,100,100,100,1.57,1.58,1.39,1.4
-41605,21,071,21071,637,302,4255956,4186272,637,302,4255956,4186272,39451,18175,1024871973,1018758276,100,100,100,100,1.61,1.66,0.42,0.41
-41606,21,071,21071,656,322,27132095,27129114,656,322,27132095,27129114,39451,18175,1024871973,1018758276,100,100,100,100,1.66,1.77,2.65,2.66
-41607,21,071,21071,318,149,14883707,14877503,318,149,14883707,14877503,39451,18175,1024871973,1018758276,100,100,100,100,0.81,0.82,1.45,1.46
-41612,21,071,21071,78,39,920024,920024,78,39,920024,920024,39451,18175,1024871973,1018758276,100,100,100,100,0.2,0.21,0.09,0.09
-41615,21,071,21071,675,281,15131988,15102765,675,281,15131988,15102765,39451,18175,1024871973,1018758276,100,100,100,100,1.71,1.55,1.48,1.48
-41616,21,071,21071,794,378,35446148,35423107,794,378,35446148,35423107,39451,18175,1024871973,1018758276,100,100,100,100,2.01,2.08,3.46,3.48
-41619,21,071,21071,599,269,12902031,12899652,599,269,12902031,12899652,39451,18175,1024871973,1018758276,100,100,100,100,1.52,1.48,1.26,1.27
-41621,21,071,21071,329,147,1781975,1737093,329,147,1781975,1737093,39451,18175,1024871973,1018758276,100,100,100,100,0.83,0.81,0.17,0.17
-41622,21,071,21071,228,100,4214193,4214193,228,100,4214193,4214193,39451,18175,1024871973,1018758276,100,100,100,100,0.58,0.55,0.41,0.41
-41630,21,071,21071,792,397,19581363,19573279,1230,612,47686669,47648070,39451,18175,1024871973,1018758276,64.39,64.87,41.06,41.08,2.01,2.18,1.91,1.92
-41630,21,119,21119,438,215,28105306,28074791,1230,612,47686669,47648070,16346,7461,913881183,910427420,35.61,35.13,58.94,58.92,2.68,2.88,3.08,3.08
-41631,21,071,21071,1106,492,30971564,30964381,1106,492,30971564,30964381,39451,18175,1024871973,1018758276,100,100,100,100,2.8,2.71,3.02,3.04
-41632,21,153,21153,614,281,82424468,82350439,614,281,82424468,82350439,13333,5950,800713704,798865721,100,100,100,100,4.61,4.72,10.29,10.31
-41635,21,071,21071,3056,1418,53437228,53306876,3056,1418,53437228,53306876,39451,18175,1024871973,1018758276,100,100,100,100,7.75,7.8,5.21,5.23
-41636,21,071,21071,984,459,25375343,25372697,984,459,25375343,25372697,39451,18175,1024871973,1018758276,100,100,100,100,2.49,2.53,2.48,2.49
-41640,21,071,21071,1095,502,41788362,41770929,1343,611,134530774,134441222,39451,18175,1024871973,1018758276,81.53,82.16,31.06,31.07,2.78,2.76,4.08,4.1
-41640,21,119,21119,230,104,91322282,91250163,1343,611,134530774,134441222,16346,7461,913881183,910427420,17.13,17.02,67.88,67.87,1.41,1.39,9.99,10.02
-41640,21,153,21153,18,5,1420130,1420130,1343,611,134530774,134441222,13333,5950,800713704,798865721,1.34,0.82,1.06,1.06,0.14,0.08,0.18,0.18
-41642,21,071,21071,725,328,24281996,23890041,725,328,24281996,23890041,39451,18175,1024871973,1018758276,100,100,100,100,1.84,1.8,2.37,2.35
-41643,21,071,21071,44,25,761722,761722,194,63,2195881,2195881,39451,18175,1024871973,1018758276,22.68,39.68,34.69,34.69,0.11,0.14,0.07,0.07
-41643,21,119,21119,150,38,1434159,1434159,194,63,2195881,2195881,16346,7461,913881183,910427420,77.32,60.32,65.31,65.31,0.92,0.51,0.16,0.16
-41645,21,071,21071,1268,556,33685026,33671064,1268,556,33685026,33671064,39451,18175,1024871973,1018758276,100,100,100,100,3.21,3.06,3.29,3.31
-41647,21,071,21071,1815,815,47923510,47912457,1815,815,47923510,47912457,39451,18175,1024871973,1018758276,100,100,100,100,4.6,4.48,4.68,4.7
-41649,21,071,21071,2631,1259,60638028,60381279,2631,1259,60638028,60381279,39451,18175,1024871973,1018758276,100,100,100,100,6.67,6.93,5.92,5.93
-41650,21,071,21071,534,250,8954819,8954819,534,250,8954819,8954819,39451,18175,1024871973,1018758276,100,100,100,100,1.35,1.38,0.87,0.88
-41653,21,071,21071,11451,5262,313123988,310995439,11451,5262,313123988,310995439,39451,18175,1024871973,1018758276,100,100,100,100,29.03,28.95,30.55,30.53
-41655,21,071,21071,896,410,42928192,42861343,896,410,42928192,42861343,39451,18175,1024871973,1018758276,100,100,100,100,2.27,2.26,4.19,4.21
-41659,21,071,21071,520,243,7048227,6998356,520,243,7048227,6998356,39451,18175,1024871973,1018758276,100,100,100,100,1.32,1.34,0.69,0.69
-41660,21,071,21071,802,414,17475698,17474230,802,414,17475698,17474230,39451,18175,1024871973,1018758276,100,100,100,100,2.03,2.28,1.71,1.72
-41663,21,071,21071,384,156,4643739,4559583,384,156,4643739,4559583,39451,18175,1024871973,1018758276,100,100,100,100,0.97,0.86,0.45,0.45
-41666,21,071,21071,908,450,23486855,23395786,908,450,23486855,23395786,39451,18175,1024871973,1018758276,100,100,100,100,2.3,2.48,2.29,2.3
-41667,21,071,21071,720,310,20551924,20549759,720,310,20551924,20549759,39451,18175,1024871973,1018758276,100,100,100,100,1.83,1.71,2.01,2.02
-41669,21,071,21071,865,353,9002938,9002938,865,353,9002938,9002938,39451,18175,1024871973,1018758276,100,100,100,100,2.19,1.94,0.88,0.88
-41701,21,119,21119,1546,680,85851604,85620104,17252,7605,385249192,383014557,16346,7461,913881183,910427420,8.96,8.94,22.28,22.35,9.46,9.11,9.39,9.4
-41701,21,193,21193,15706,6925,299397588,297394453,17252,7605,385249192,383014557,28712,12791,887353920,879740535,91.04,91.06,77.72,77.65,54.7,54.14,33.74,33.8
-41712,21,193,21193,380,174,13627274,13480982,380,174,13627274,13480982,28712,12791,887353920,879740535,100,100,100,100,1.32,1.36,1.54,1.53
-41713,21,193,21193,51,26,381466,381466,51,26,381466,381466,28712,12791,887353920,879740535,100,100,100,100,0.18,0.2,0.04,0.04
-41714,21,051,21051,5,5,13107486,13107486,418,229,73062957,73012985,21730,8875,1220107986,1215344973,1.2,2.18,17.94,17.95,0.02,0.06,1.07,1.08
-41714,21,131,21131,413,224,59955471,59905499,418,229,73062957,73012985,11310,5278,1047512767,1038181523,98.8,97.82,82.06,82.05,3.65,4.24,5.72,5.77
-41719,21,193,21193,1043,477,30669378,30464199,1043,477,30669378,30464199,28712,12791,887353920,879740535,100,100,100,100,3.63,3.73,3.46,3.46
-41721,21,189,21189,25,11,10580809,10580809,788,362,100987134,98714528,4755,2328,513568947,511282528,3.17,3.04,10.48,10.72,0.53,0.47,2.06,2.07
-41721,21,193,21193,763,351,90406325,88133719,788,362,100987134,98714528,28712,12791,887353920,879740535,96.83,96.96,89.52,89.28,2.66,2.74,10.19,10.02
-41722,21,119,21119,541,242,39842029,39534755,1688,787,62468593,62128714,16346,7461,913881183,910427420,32.05,30.75,63.78,63.63,3.31,3.24,4.36,4.34
-41722,21,193,21193,1147,545,22626564,22593959,1688,787,62468593,62128714,28712,12791,887353920,879740535,67.95,69.25,36.22,36.37,3.99,4.26,2.55,2.57
-41723,21,131,21131,262,102,17031278,17019274,1537,636,53793471,53609487,11310,5278,1047512767,1038181523,17.05,16.04,31.66,31.75,2.32,1.93,1.63,1.64
-41723,21,193,21193,1275,534,36762193,36590213,1537,636,53793471,53609487,28712,12791,887353920,879740535,82.95,83.96,68.34,68.25,4.44,4.17,4.14,4.16
-41725,21,119,21119,174,81,3525454,3525454,174,81,3525454,3525454,16346,7461,913881183,910427420,100,100,100,100,1.06,1.09,0.39,0.39
-41727,21,193,21193,640,266,29119490,28856835,640,266,29119490,28856835,28712,12791,887353920,879740535,100,100,100,100,2.23,2.08,3.28,3.28
-41729,21,193,21193,230,105,454996,347282,230,105,454996,347282,28712,12791,887353920,879740535,100,100,100,100,0.8,0.82,0.05,0.04
-41731,21,133,21133,281,150,17159466,16946676,1023,515,69957860,69451378,24519,11601,878091351,875192707,27.47,29.13,24.53,24.4,1.15,1.29,1.95,1.94
-41731,21,193,21193,742,365,52798394,52504702,1023,515,69957860,69451378,28712,12791,887353920,879740535,72.53,70.87,75.47,75.6,2.58,2.85,5.95,5.97
-41735,21,193,21193,295,138,22581137,22574445,295,138,22581137,22574445,28712,12791,887353920,879740535,100,100,100,100,1.03,1.08,2.54,2.57
-41739,21,119,21119,22,12,137897,137897,179,88,5731619,5726052,16346,7461,913881183,910427420,12.29,13.64,2.41,2.41,0.13,0.16,0.02,0.02
-41739,21,193,21193,157,76,5593722,5588155,179,88,5731619,5726052,28712,12791,887353920,879740535,87.71,86.36,97.59,97.59,0.55,0.59,0.63,0.64
-41740,21,119,21119,877,410,46503401,46293040,877,410,46503401,46293040,16346,7461,913881183,910427420,100,100,100,100,5.37,5.5,5.09,5.08
-41745,21,193,21193,200,82,16948249,16454535,200,82,16948249,16454535,28712,12791,887353920,879740535,100,100,100,100,0.7,0.64,1.91,1.87
-41746,21,193,21193,835,367,20585128,20471816,835,367,20585128,20471816,28712,12791,887353920,879740535,100,100,100,100,2.91,2.87,2.32,2.33
-41749,21,131,21131,3556,1704,245870535,240149539,3556,1704,245870535,240149539,11310,5278,1047512767,1038181523,100,100,100,100,31.44,32.28,23.47,23.13
-41751,21,193,21193,289,140,2140159,1964953,289,140,2140159,1964953,28712,12791,887353920,879740535,100,100,100,100,1.01,1.09,0.24,0.22
-41754,21,193,21193,460,188,11645362,11340061,460,188,11645362,11340061,28712,12791,887353920,879740535,100,100,100,100,1.6,1.47,1.31,1.29
-41759,21,119,21119,377,179,13786931,13252086,397,189,13809430,13274585,16346,7461,913881183,910427420,94.96,94.71,99.84,99.83,2.31,2.4,1.51,1.46
-41759,21,193,21193,20,10,22499,22499,397,189,13809430,13274585,28712,12791,887353920,879740535,5.04,5.29,0.16,0.17,0.07,0.08,0,0
-41760,21,193,21193,35,18,120054,99901,35,18,120054,99901,28712,12791,887353920,879740535,100,100,100,100,0.12,0.14,0.01,0.01
-41762,21,131,21131,107,56,15145066,14559800,107,56,15145066,14559800,11310,5278,1047512767,1038181523,100,100,100,100,0.95,1.06,1.45,1.4
-41763,21,193,21193,574,276,65695388,65445365,574,276,65695388,65445365,28712,12791,887353920,879740535,100,100,100,100,2,2.16,7.4,7.44
-41764,21,131,21131,741,362,49656969,49414505,741,362,49656969,49414505,11310,5278,1047512767,1038181523,100,100,100,100,6.55,6.86,4.74,4.76
-41766,21,131,21131,131,69,12748648,12748648,131,69,12748648,12748648,11310,5278,1047512767,1038181523,100,100,100,100,1.16,1.31,1.22,1.23
-41772,21,119,21119,277,140,82115503,81928209,277,140,82115503,81928209,16346,7461,913881183,910427420,100,100,100,100,1.69,1.88,8.99,9
-41773,21,119,21119,272,135,16382516,15865088,1273,556,42708850,42143060,16346,7461,913881183,910427420,21.37,24.28,38.36,37.65,1.66,1.81,1.79,1.74
-41773,21,193,21193,1001,421,26326334,26277972,1273,556,42708850,42143060,28712,12791,887353920,879740535,78.63,75.72,61.64,62.35,3.49,3.29,2.97,2.99
-41774,21,193,21193,2659,1213,125300306,124688649,2659,1213,125300306,124688649,28712,12791,887353920,879740535,100,100,100,100,9.26,9.48,14.12,14.17
-41775,21,131,21131,114,71,23792210,23774674,114,71,23792210,23774674,11310,5278,1047512767,1038181523,100,100,100,100,1.01,1.35,2.27,2.29
-41776,21,131,21131,1509,689,78456246,77916003,1509,689,78456246,77916003,11310,5278,1047512767,1038181523,100,100,100,100,13.34,13.05,7.49,7.51
-41777,21,131,21131,947,434,100197485,100031390,947,434,100197485,100031390,11310,5278,1047512767,1038181523,100,100,100,100,8.37,8.22,9.57,9.64
-41804,21,133,21133,720,314,34591646,34387055,720,314,34591646,34387055,24519,11601,878091351,875192707,100,100,100,100,2.94,2.71,3.94,3.93
-41810,21,133,21133,502,254,6865813,6865813,502,254,6865813,6865813,24519,11601,878091351,875192707,100,100,100,100,2.05,2.19,0.78,0.78
-41812,21,133,21133,230,141,15791011,15785100,230,141,15791011,15785100,24519,11601,878091351,875192707,100,100,100,100,0.94,1.22,1.8,1.8
-41815,21,133,21133,802,334,16656013,16618493,802,334,16656013,16618493,24519,11601,878091351,875192707,100,100,100,100,3.27,2.88,1.9,1.9
-41817,21,119,21119,251,124,7347147,7347147,251,124,7347147,7347147,16346,7461,913881183,910427420,100,100,100,100,1.54,1.66,0.8,0.81
-41819,21,133,21133,392,214,45409591,45405660,392,214,45409591,45405660,24519,11601,878091351,875192707,100,100,100,100,1.6,1.84,5.17,5.19
-41821,21,133,21133,537,278,62469423,62238911,537,278,62469423,62238911,24519,11601,878091351,875192707,100,100,100,100,2.19,2.4,7.11,7.11
-41822,21,119,21119,2553,1163,78298097,78205369,2553,1163,78298097,78205369,16346,7461,913881183,910427420,100,100,100,100,15.62,15.59,8.57,8.59
-41824,21,133,21133,1072,525,24349593,24286731,1072,525,24349593,24286731,24519,11601,878091351,875192707,100,100,100,100,4.37,4.53,2.77,2.78
-41825,21,133,21133,548,271,15613383,15604181,548,271,15613383,15604181,24519,11601,878091351,875192707,100,100,100,100,2.24,2.34,1.78,1.78
-41826,21,133,21133,978,497,26324772,26236066,978,497,26324772,26236066,24519,11601,878091351,875192707,100,100,100,100,3.99,4.28,3,3
-41828,21,119,21119,808,381,48922011,48887462,808,381,48922011,48887462,16346,7461,913881183,910427420,100,100,100,100,4.94,5.11,5.35,5.37
-41831,21,119,21119,849,389,26031116,26023847,849,389,26031116,26023847,16346,7461,913881183,910427420,100,100,100,100,5.19,5.21,2.85,2.86
-41832,21,133,21133,424,201,16656642,16579374,424,201,16656642,16579374,24519,11601,878091351,875192707,100,100,100,100,1.73,1.73,1.9,1.89
-41833,21,133,21133,321,154,41648805,41540494,321,154,41648805,41540494,24519,11601,878091351,875192707,100,100,100,100,1.31,1.33,4.74,4.75
-41834,21,119,21119,659,320,32315527,32036526,659,320,32315527,32036526,16346,7461,913881183,910427420,100,100,100,100,4.03,4.29,3.54,3.52
-41835,21,133,21133,790,389,15369692,15362811,790,389,15369692,15362811,24519,11601,878091351,875192707,100,100,100,100,3.22,3.35,1.75,1.76
-41836,21,119,21119,798,378,28106638,28045552,798,378,28106638,28045552,16346,7461,913881183,910427420,100,100,100,100,4.88,5.07,3.08,3.08
-41837,21,133,21133,1284,568,34639543,34603501,1284,568,34639543,34603501,24519,11601,878091351,875192707,100,100,100,100,5.24,4.9,3.94,3.95
-41838,21,133,21133,548,247,20891150,20793132,548,247,20891150,20793132,24519,11601,878091351,875192707,100,100,100,100,2.24,2.13,2.38,2.38
-41839,21,119,21119,1193,624,76431880,76302834,1193,624,76431880,76302834,16346,7461,913881183,910427420,100,100,100,100,7.3,8.36,8.36,8.38
-41840,21,133,21133,1111,559,9805671,9799918,1111,559,9805671,9799918,24519,11601,878091351,875192707,100,100,100,100,4.53,4.82,1.12,1.12
-41843,21,119,21119,949,458,38709310,38679400,949,458,38709310,38679400,16346,7461,913881183,910427420,100,100,100,100,5.81,6.14,4.24,4.25
-41844,21,119,21119,1355,431,34351336,34338855,1355,431,34351336,34338855,16346,7461,913881183,910427420,100,100,100,100,8.29,5.78,3.76,3.77
-41845,21,133,21133,293,150,12455741,12439624,293,150,12455741,12439624,24519,11601,878091351,875192707,100,100,100,100,1.19,1.29,1.42,1.42
-41847,21,119,21119,617,295,35495632,34859770,617,295,35495632,34859770,16346,7461,913881183,910427420,100,100,100,100,3.77,3.95,3.88,3.83
-41848,21,133,21133,80,31,8566272,8493154,80,31,8566272,8493154,24519,11601,878091351,875192707,100,100,100,100,0.33,0.27,0.98,0.97
-41849,21,133,21133,193,96,2630552,2629005,193,96,2630552,2629005,24519,11601,878091351,875192707,100,100,100,100,0.79,0.83,0.3,0.3
-41855,21,133,21133,696,327,23153360,23109366,696,327,23153360,23109366,24519,11601,878091351,875192707,100,100,100,100,2.84,2.82,2.64,2.64
-41858,21,133,21133,8064,3727,228987451,228053668,8064,3727,228987451,228053668,24519,11601,878091351,875192707,100,100,100,100,32.89,32.13,26.08,26.06
-41859,21,119,21119,349,170,19326403,19324140,349,170,19326403,19324140,16346,7461,913881183,910427420,100,100,100,100,2.14,2.28,2.11,2.12
-41861,21,119,21119,108,54,5630826,5630826,108,54,5630826,5630826,16346,7461,913881183,910427420,100,100,100,100,0.66,0.72,0.62,0.62
-41862,21,119,21119,952,437,53747086,53678923,952,437,53747086,53678923,16346,7461,913881183,910427420,100,100,100,100,5.82,5.86,5.88,5.9
-42001,21,145,21145,27960,13596,203391771,189856755,27960,13596,203391771,189856755,65565,31079,694557561,644243006,100,100,100,100,42.64,43.75,29.28,29.47
-42003,21,145,21145,29683,13991,190591566,180279807,29683,13991,190591566,180279807,65565,31079,694557561,644243006,100,100,100,100,45.27,45.02,27.44,27.98
-42020,21,035,21035,2330,1002,66311419,66008123,2330,1002,66311419,66008123,37191,18065,1063698665,997200826,100,100,100,100,6.26,5.55,6.23,6.62
-42021,21,039,21039,1389,669,147958192,129704264,1505,724,167762816,149343315,5104,2441,515355255,490632430,92.29,92.4,88.19,86.85,27.21,27.41,28.71,26.44
-42021,21,105,21105,116,55,19804624,19639051,1505,724,167762816,149343315,4902,2342,655370266,627487774,7.71,7.6,11.81,13.15,2.37,2.35,3.02,3.13
-42022,21,007,21007,104,51,1273893,1273221,104,51,1273893,1273221,8249,3885,708852638,638843574,100,100,100,100,1.26,1.31,0.18,0.2
-42023,21,039,21039,2422,1210,264251758,258901002,2422,1210,264251758,258901002,5104,2441,515355255,490632430,100,100,100,100,47.45,49.57,51.28,52.77
-42024,21,007,21007,1490,722,129049146,117821948,1490,722,129049146,117821948,8249,3885,708852638,638843574,100,100,100,100,18.06,18.58,18.21,18.44
-42025,21,035,21035,84,39,8071329,8050919,19305,9307,565529483,514604263,37191,18065,1063698665,997200826,0.44,0.42,1.43,1.56,0.23,0.22,0.76,0.81
-42025,21,083,21083,73,38,8593223,8566346,19305,9307,565529483,514604263,37121,16777,1442073556,1429006936,0.38,0.41,1.52,1.66,0.2,0.23,0.6,0.6
-42025,21,157,21157,19148,9230,548864931,497986998,19305,9307,565529483,514604263,31448,15748,881037893,780240711,99.19,99.17,97.05,96.77,60.89,58.61,62.3,63.82
-42027,21,083,21083,1506,660,101271850,99955858,2291,998,118332907,116922911,37121,16777,1442073556,1429006936,65.74,66.13,85.58,85.49,4.06,3.93,7.02,6.99
-42027,21,145,21145,785,338,17061057,16967053,2291,998,118332907,116922911,65565,31079,694557561,644243006,34.26,33.87,14.42,14.51,1.2,1.09,2.46,2.63
-42028,21,139,21139,635,313,71603914,70221583,635,313,71603914,70221583,9519,4824,886640457,810995883,100,100,100,100,6.67,6.49,8.08,8.66
-42029,21,157,21157,6321,2866,126433187,120531406,6321,2866,126433187,120531406,31448,15748,881037893,780240711,100,100,100,100,20.1,18.2,14.35,15.45
-42031,21,105,21105,3418,1620,394442930,389446808,3418,1620,394442930,389446808,4902,2342,655370266,627487774,100,100,100,100,69.73,69.17,60.19,62.06
-42032,21,105,21105,192,95,5455600,4212650,192,95,5455600,4212650,4902,2342,655370266,627487774,100,100,100,100,3.92,4.06,0.83,0.67
-42035,21,039,21039,929,398,59152911,58498653,1068,462,73648321,72828646,5104,2441,515355255,490632430,86.99,86.15,80.32,80.32,18.2,16.3,11.48,11.92
-42035,21,083,21083,139,64,14495410,14329993,1068,462,73648321,72828646,37121,16777,1442073556,1429006936,13.01,13.85,19.68,19.68,0.37,0.38,1.01,1
-42036,21,035,21035,1167,533,69018874,68734649,1167,533,69018874,68734649,37191,18065,1063698665,997200826,100,100,100,100,3.14,2.95,6.49,6.89
-42037,21,055,21055,29,35,2644129,2644129,29,35,2644129,2644129,9315,4569,961249538,932270911,100,100,100,100,0.31,0.77,0.28,0.28
-42038,21,033,21033,7,5,3415053,3393770,5298,2851,256008939,226723370,12984,6292,901707452,893004660,0.13,0.18,1.33,1.5,0.05,0.08,0.38,0.38
-42038,21,143,21143,5291,2846,252593886,223329600,5298,2851,256008939,226723370,8314,4791,664405903,553843392,99.87,99.82,98.67,98.5,63.64,59.4,38.02,40.32
-42039,21,039,21039,364,164,43992394,43528511,1751,789,134624497,131957556,5104,2441,515355255,490632430,20.79,20.79,32.68,32.99,7.13,6.72,8.54,8.87
-42039,21,083,21083,1160,505,43098257,42688112,1751,789,134624497,131957556,37121,16777,1442073556,1429006936,66.25,64.01,32.01,32.35,3.12,3.01,2.99,2.99
-42039,21,105,21105,227,120,47533846,45740933,1751,789,134624497,131957556,4902,2342,655370266,627487774,12.96,15.21,35.31,34.66,4.63,5.12,7.25,7.29
-42040,21,035,21035,341,157,17563777,17389569,1082,494,85536861,84990658,37191,18065,1063698665,997200826,31.52,31.78,20.53,20.46,0.92,0.87,1.65,1.74
-42040,21,083,21083,741,337,67973084,67601089,1082,494,85536861,84990658,37121,16777,1442073556,1429006936,68.48,68.22,79.47,79.54,2,2.01,4.71,4.73
-42041,21,075,21075,3539,1880,139428692,138508080,4627,2405,286905480,285196261,6813,3372,597299462,532251963,76.49,78.17,48.6,48.57,51.94,55.75,23.34,26.02
-42041,21,083,21083,584,279,79309366,78992317,4627,2405,286905480,285196261,37121,16777,1442073556,1429006936,12.62,11.6,27.64,27.7,1.57,1.66,5.5,5.53
-42041,21,105,21105,504,246,68167422,67695864,4627,2405,286905480,285196261,4902,2342,655370266,627487774,10.89,10.23,23.76,23.74,10.28,10.5,10.4,10.79
-42044,21,157,21157,3404,2266,94947261,61687414,3404,2266,94947261,61687414,31448,15748,881037893,780240711,100,100,100,100,10.82,14.39,10.78,7.91
-42045,21,139,21139,2089,1201,103233209,93118406,2089,1201,103233209,93118406,9519,4824,886640457,810995883,100,100,100,100,21.95,24.9,11.64,11.48
-42047,21,139,21139,192,110,56564748,56353374,192,110,56564748,56353374,9519,4824,886640457,810995883,100,100,100,100,2.02,2.28,6.38,6.95
-42048,21,035,21035,58,22,4878920,4852286,2147,1182,78500888,68043358,37191,18065,1063698665,997200826,2.7,1.86,6.22,7.13,0.16,0.12,0.46,0.49
-42048,21,157,21157,2089,1160,73621968,63191072,2147,1182,78500888,68043358,31448,15748,881037893,780240711,97.3,98.14,93.78,92.87,6.64,7.37,8.36,8.1
-42049,21,035,21035,1470,714,104628913,104428134,1480,723,110351522,110140982,37191,18065,1063698665,997200826,99.32,98.76,94.81,94.81,3.95,3.95,9.84,10.47
-42049,21,083,21083,10,9,5722609,5712848,1480,723,110351522,110140982,37121,16777,1442073556,1429006936,0.68,1.24,5.19,5.19,0.03,0.05,0.4,0.4
-42050,21,075,21075,3256,1483,330752115,300888987,3256,1483,330752115,300888987,6813,3372,597299462,532251963,100,100,100,100,47.79,43.98,55.37,56.53
-42051,21,083,21083,2840,1266,146824274,145367226,2840,1266,146824274,145367226,37121,16777,1442073556,1429006936,100,100,100,100,7.65,7.55,10.18,10.17
-42053,21,007,21007,2124,987,169735870,154746980,4931,2189,334887266,302381291,8249,3885,708852638,638843574,43.07,45.09,50.68,51.18,25.75,25.41,23.95,24.22
-42053,21,145,21145,2807,1202,165151396,147634311,4931,2189,334887266,302381291,65565,31079,694557561,644243006,56.93,54.91,49.32,48.82,4.28,3.87,23.78,22.92
-42054,21,035,21035,882,392,70213308,69452296,984,432,76278135,75506363,37191,18065,1063698665,997200826,89.63,90.74,92.05,91.98,2.37,2.17,6.6,6.96
-42054,21,083,21083,31,12,2318826,2316530,984,432,76278135,75506363,37121,16777,1442073556,1429006936,3.15,2.78,3.04,3.07,0.08,0.07,0.16,0.16
-42054,21,157,21157,71,28,3746001,3737537,984,432,76278135,75506363,31448,15748,881037893,780240711,7.22,6.48,4.91,4.95,0.23,0.18,0.43,0.48
-42055,21,143,21143,2609,1753,135934031,116616845,2609,1753,135934031,116616845,8314,4791,664405903,553843392,100,100,100,100,31.38,36.59,20.46,21.06
-42056,21,007,21007,1982,910,152067764,140475092,1982,910,152067764,140475092,8249,3885,708852638,638843574,100,100,100,100,24.03,23.42,21.45,21.99
-42058,21,139,21139,2336,1044,59520981,42468072,2336,1044,59520981,42468072,9519,4824,886640457,810995883,100,100,100,100,24.54,21.64,6.71,5.24
-42060,21,007,21007,130,66,2218165,2179661,130,66,2218165,2179661,8249,3885,708852638,638843574,100,100,100,100,1.58,1.7,0.31,0.34
-42061,21,083,21083,55,36,929935,917298,55,36,929935,917298,37121,16777,1442073556,1429006936,100,100,100,100,0.15,0.21,0.06,0.06
-42064,21,033,21033,34,14,20026798,19612579,8421,4090,803864001,775991345,12984,6292,901707452,893004660,0.4,0.34,2.49,2.53,0.26,0.22,2.22,2.2
-42064,21,055,21055,8387,4076,783837203,756378766,8421,4090,803864001,775991345,9315,4569,961249538,932270911,99.6,99.66,97.51,97.47,90.04,89.21,81.54,81.13
-42066,21,083,21083,23088,10415,558207088,552044511,23182,10463,567767015,561564599,37121,16777,1442073556,1429006936,99.59,99.54,98.32,98.3,62.2,62.08,38.71,38.63
-42066,21,157,21157,94,48,9559927,9520088,23182,10463,567767015,561564599,31448,15748,881037893,780240711,0.41,0.46,1.68,1.7,0.3,0.3,1.09,1.22
-42069,21,083,21083,900,390,55097822,54881591,1100,499,68230373,67865286,37121,16777,1442073556,1429006936,81.82,78.16,80.75,80.87,2.42,2.32,3.82,3.84
-42069,21,145,21145,200,109,13132551,12983695,1100,499,68230373,67865286,65565,31079,694557561,644243006,18.18,21.84,19.25,19.13,0.31,0.35,1.89,2.02
-42071,21,035,21035,29646,14338,578905551,549174533,29655,14344,579145917,549414899,37191,18065,1063698665,997200826,99.97,99.96,99.96,99.96,79.71,79.37,54.42,55.07
-42071,21,083,21083,9,6,240366,240366,29655,14344,579145917,549414899,37121,16777,1442073556,1429006936,0.03,0.04,0.04,0.04,0.02,0.04,0.02,0.02
-42076,21,035,21035,1213,868,144106574,109110317,1213,868,144106574,109110317,37191,18065,1063698665,997200826,100,100,100,100,3.26,4.8,13.55,10.94
-42078,21,055,21055,234,127,51508160,51326003,1852,949,225013213,222471448,9315,4569,961249538,932270911,12.63,13.38,22.89,23.07,2.51,2.78,5.36,5.51
-42078,21,139,21139,1618,822,173505053,171145445,1852,949,225013213,222471448,9519,4824,886640457,810995883,87.37,86.62,77.11,76.93,17,17.04,19.57,21.1
-42079,21,083,21083,1426,681,135513263,134955348,1426,681,135513263,134955348,37121,16777,1442073556,1429006936,100,100,100,100,3.84,4.06,9.4,9.44
-42081,21,139,21139,2203,1111,345268179,302884817,2203,1111,345268179,302884817,9519,4824,886640457,810995883,100,100,100,100,23.14,23.03,38.94,37.35
-42082,21,083,21083,1430,687,40453589,39686508,1845,874,74738787,73138724,37121,16777,1442073556,1429006936,77.51,78.6,54.13,54.26,3.85,4.09,2.81,2.78
-42082,21,145,21145,94,37,10420580,9866020,1845,874,74738787,73138724,65565,31079,694557561,644243006,5.09,4.23,13.94,13.49,0.14,0.12,1.5,1.53
-42082,21,157,21157,321,150,23864618,23586196,1845,874,74738787,73138724,31448,15748,881037893,780240711,17.4,17.16,31.93,32.25,1.02,0.95,2.71,3.02
-42083,21,139,21139,446,223,76944373,74804186,446,223,76944373,74804186,9519,4824,886640457,810995883,100,100,100,100,4.69,4.62,8.68,9.22
-42084,21,055,21055,83,53,700572,699171,83,53,700572,699171,9315,4569,961249538,932270911,100,100,100,100,0.89,1.16,0.07,0.07
-42085,21,083,21083,714,340,42478362,42370389,918,441,74266737,73957211,37121,16777,1442073556,1429006936,77.78,77.1,57.2,57.29,1.92,2.03,2.95,2.97
-42085,21,105,21105,204,101,31788375,31586822,918,441,74266737,73957211,4902,2342,655370266,627487774,22.22,22.9,42.8,42.71,4.16,4.31,4.85,5.03
-42086,21,145,21145,4036,1806,94808640,86655365,4036,1806,94808640,86655365,65565,31079,694557561,644243006,100,100,100,100,6.16,5.81,13.65,13.45
-42087,21,007,21007,2419,1149,189721038,181533021,2419,1149,189721038,181533021,8249,3885,708852638,638843574,100,100,100,100,29.32,29.58,26.76,28.42
-42088,21,083,21083,2415,1052,139546232,138380606,2656,1157,165739028,164437334,37121,16777,1442073556,1429006936,90.93,90.92,84.2,84.15,6.51,6.27,9.68,9.68
-42088,21,105,21105,241,105,26192796,26056728,2656,1157,165739028,164437334,4902,2342,655370266,627487774,9.07,9.08,15.8,15.85,4.92,4.48,4,4.15
-42101,21,031,21031,166,71,18766448,18682971,55648,22143,741883117,733251061,12690,5877,1117510504,1103562315,0.3,0.32,2.53,2.55,1.31,1.21,1.68,1.69
-42101,21,061,21061,1406,637,61553302,61066738,55648,22143,741883117,733251061,12161,6467,797726434,784464284,2.53,2.88,8.3,8.33,11.56,9.85,7.72,7.78
-42101,21,227,21227,54076,21435,661563367,653501352,55648,22143,741883117,733251061,113792,47223,1418185141,1402737981,97.18,96.8,89.17,89.12,47.52,45.39,46.65,46.59
-42102,21,227,21227,88,38,57500,57500,88,38,57500,57500,113792,47223,1418185141,1402737981,100,100,100,100,0.08,0.08,0,0
-42103,21,227,21227,18936,8153,186137703,183544035,18936,8153,186137703,183544035,113792,47223,1418185141,1402737981,100,100,100,100,16.64,17.26,13.13,13.08
-42104,21,213,21213,193,79,13026517,12856741,29610,13094,146239906,145332451,17327,7435,612442874,606585453,0.65,0.6,8.91,8.85,1.11,1.06,2.13,2.12
-42104,21,227,21227,29417,13015,133213389,132475710,29610,13094,146239906,145332451,113792,47223,1418185141,1402737981,99.35,99.4,91.09,91.15,25.85,27.56,9.39,9.44
-42120,21,003,21003,2588,1149,117424546,116988877,2588,1149,117424546,116988877,19956,9307,911322963,891830109,100,100,100,100,12.97,12.35,12.89,13.12
-42122,21,003,21003,93,42,2953092,2948935,4368,1713,99062813,97739076,19956,9307,911322963,891830109,2.13,2.45,2.98,3.02,0.47,0.45,0.32,0.33
-42122,21,227,21227,4275,1671,96109721,94790141,4368,1713,99062813,97739076,113792,47223,1418185141,1402737981,97.87,97.55,97.02,96.98,3.76,3.54,6.78,6.76
-42123,21,009,21009,840,435,63491278,61122802,840,435,63491278,61122802,42173,19188,1294991994,1262724748,100,100,100,100,1.99,2.27,4.9,4.84
-42124,21,169,21169,55,26,979488,979488,55,26,979488,979488,10099,4681,754178305,750178224,100,100,100,100,0.54,0.56,0.13,0.13
-42127,21,009,21009,6019,2749,203782429,201752061,6199,2828,231418591,229301873,42173,19188,1294991994,1262724748,97.1,97.21,88.06,87.99,14.27,14.33,15.74,15.98
-42127,21,099,21099,180,79,27636162,27549812,6199,2828,231418591,229301873,18199,8559,1082226676,1067297497,2.9,2.79,11.94,12.01,0.99,0.92,2.55,2.58
-42129,21,001,21001,256,131,25756973,25743187,7026,3345,527993912,525911831,18656,8568,1068109110,1049677374,3.64,3.92,4.88,4.89,1.37,1.53,2.41,2.45
-42129,21,057,21057,10,3,1402573,1399330,7026,3345,527993912,525911831,6856,3690,805247041,790416904,0.14,0.09,0.27,0.27,0.15,0.08,0.17,0.18
-42129,21,169,21169,6760,3211,500834366,498769314,7026,3345,527993912,525911831,10099,4681,754178305,750178224,96.21,95.99,94.86,94.84,66.94,68.6,66.41,66.49
-42130,21,009,21009,175,77,8808565,8772080,175,77,8808565,8772080,42173,19188,1294991994,1262724748,100,100,100,100,0.41,0.4,0.68,0.69
-42133,21,003,21003,248,144,41113479,40283388,1370,769,185872268,183808131,19956,9307,911322963,891830109,18.1,18.73,22.12,21.92,1.24,1.55,4.51,4.52
-42133,21,009,21009,457,266,65160139,64376830,1370,769,185872268,183808131,42173,19188,1294991994,1262724748,33.36,34.59,35.06,35.02,1.08,1.39,5.03,5.1
-42133,21,171,21171,665,359,79598650,79147913,1370,769,185872268,183808131,10963,5204,860022707,853073262,48.54,46.68,42.82,43.06,6.07,6.9,9.26,9.28
-42134,21,003,21003,424,209,36738297,36554226,16785,7251,554847162,549580835,19956,9307,911322963,891830109,2.53,2.88,6.62,6.65,2.12,2.25,4.03,4.1
-42134,21,141,21141,9,6,5607360,5604505,16785,7251,554847162,549580835,26835,12339,1442703309,1430013728,0.05,0.08,1.01,1.02,0.03,0.05,0.39,0.39
-42134,21,213,21213,16352,7036,512501505,507422104,16785,7251,554847162,549580835,17327,7435,612442874,606585453,97.42,97.03,92.37,92.33,94.37,94.63,83.68,83.65
-42140,21,171,21171,1264,596,107754438,106721683,1264,596,107754438,106721683,10963,5204,860022707,853073262,100,100,100,100,11.53,11.45,12.53,12.51
-42141,21,009,21009,30349,13814,741273191,718963741,30349,13814,741273191,718963741,42173,19188,1294991994,1262724748,100,100,100,100,71.96,71.99,57.24,56.94
-42151,21,171,21171,275,141,71845159,71264908,275,141,71845159,71264908,10963,5204,860022707,853073262,100,100,100,100,2.51,2.71,8.35,8.35
-42153,21,003,21003,326,151,42380734,42200484,326,151,42380734,42200484,19956,9307,911322963,891830109,100,100,100,100,1.63,1.62,4.65,4.73
-42154,21,009,21009,92,39,4456829,4425424,691,303,55663214,55134438,42173,19188,1294991994,1262724748,13.31,12.87,8.01,8.03,0.22,0.2,0.34,0.35
-42154,21,169,21169,599,264,51206385,50709014,691,303,55663214,55134438,10099,4681,754178305,750178224,86.69,87.13,91.99,91.97,5.93,5.64,6.79,6.76
-42156,21,009,21009,254,159,17296737,13829079,254,159,17296737,13829079,42173,19188,1294991994,1262724748,100,100,100,100,0.6,0.83,1.34,1.1
-42157,21,171,21171,437,174,45619274,45546493,437,174,45619274,45546493,10963,5204,860022707,853073262,100,100,100,100,3.99,3.34,5.3,5.34
-42159,21,227,21227,1195,514,74169795,73210472,1195,514,74169795,73210472,113792,47223,1418185141,1402737981,100,100,100,100,1.05,1.09,5.23,5.22
-42160,21,009,21009,1553,641,64605616,64191481,1992,830,104097920,103683725,42173,19188,1294991994,1262724748,77.96,77.23,62.06,61.91,3.68,3.34,4.99,5.08
-42160,21,061,21061,439,189,39492304,39492244,1992,830,104097920,103683725,12161,6467,797726434,784464284,22.04,22.77,37.94,38.09,3.61,2.92,4.95,5.03
-42163,21,061,21061,56,26,2288423,2288423,56,26,2288423,2288423,12161,6467,797726434,784464284,100,100,100,100,0.46,0.4,0.29,0.29
-42164,21,003,21003,16277,7612,670712815,652854199,16277,7612,670712815,652854199,19956,9307,911322963,891830109,100,100,100,100,81.56,81.79,73.6,73.2
-42166,21,009,21009,462,211,44586160,44385735,2314,1036,186294855,185757514,42173,19188,1294991994,1262724748,19.97,20.37,23.93,23.89,1.1,1.1,3.44,3.52
-42166,21,169,21169,1664,742,121153637,120914929,2314,1036,186294855,185757514,10099,4681,754178305,750178224,71.91,71.62,65.03,65.09,16.48,15.85,16.06,16.12
-42166,21,171,21171,188,83,20555058,20456850,2314,1036,186294855,185757514,10963,5204,860022707,853073262,8.12,8.01,11.03,11.01,1.71,1.59,2.39,2.4
-42167,21,057,21057,11,5,5860929,5860929,8145,3856,540511057,535796344,6856,3690,805247041,790416904,0.14,0.13,1.08,1.09,0.16,0.14,0.73,0.74
-42167,21,171,21171,8134,3851,534650128,529935415,8145,3856,540511057,535796344,10963,5204,860022707,853073262,99.86,99.87,98.92,98.91,74.2,74,62.17,62.12
-42170,21,213,21213,476,197,45981868,45574219,1403,570,85210347,84546232,17327,7435,612442874,606585453,33.93,34.56,53.96,53.9,2.75,2.65,7.51,7.51
-42170,21,227,21227,927,373,39228479,38972013,1403,570,85210347,84546232,113792,47223,1418185141,1402737981,66.07,65.44,46.04,46.1,0.81,0.79,2.77,2.78
-42171,21,009,21009,1829,743,67454485,67092641,6841,2863,264072674,262710826,42173,19188,1294991994,1262724748,26.74,25.95,25.54,25.54,4.34,3.87,5.21,5.31
-42171,21,061,21061,2274,950,65939375,65908055,6841,2863,264072674,262710826,12161,6467,797726434,784464284,33.24,33.18,24.97,25.09,18.7,14.69,8.27,8.4
-42171,21,227,21227,2738,1170,130678814,129710130,6841,2863,264072674,262710826,113792,47223,1418185141,1402737981,40.02,40.87,49.49,49.37,2.41,2.48,9.21,9.25
-42202,21,141,21141,2378,1078,157471084,155644155,2389,1085,160468667,158638851,26835,12339,1442703309,1430013728,99.54,99.35,98.13,98.11,8.86,8.74,10.92,10.88
-42202,21,213,21213,11,7,2997583,2994696,2389,1085,160468667,158638851,17327,7435,612442874,606585453,0.46,0.65,1.87,1.89,0.06,0.09,0.49,0.49
-42204,21,141,21141,107,50,32349398,31274408,657,275,94151519,92745931,26835,12339,1442703309,1430013728,16.29,18.18,34.36,33.72,0.4,0.41,2.24,2.19
-42204,21,219,21219,550,225,61802121,61471523,657,275,94151519,92745931,12460,5286,976571564,969940558,83.71,81.82,65.64,66.28,4.41,4.26,6.33,6.34
-42206,21,141,21141,5095,2152,259542423,258279474,5407,2276,308337734,306790922,26835,12339,1442703309,1430013728,94.23,94.55,84.17,84.19,18.99,17.44,17.99,18.06
-42206,21,213,21213,295,116,37935401,37737693,5407,2276,308337734,306790922,17327,7435,612442874,606585453,5.46,5.1,12.3,12.3,1.7,1.56,6.19,6.22
-42206,21,227,21227,17,8,10859910,10773755,5407,2276,308337734,306790922,113792,47223,1418185141,1402737981,0.31,0.35,3.52,3.51,0.01,0.02,0.77,0.77
-42207,21,061,21061,1194,753,52877184,48660011,1207,760,54234598,50014887,12161,6467,797726434,784464284,98.92,99.08,97.5,97.29,9.82,11.64,6.63,6.2
-42207,21,085,21085,13,7,1357414,1354876,1207,760,54234598,50014887,25746,13561,1323563483,1286441869,1.08,0.92,2.5,2.71,0.05,0.05,0.1,0.11
-42210,21,061,21061,4236,2029,375916797,372578096,4236,2029,375916797,372578096,12161,6467,797726434,784464284,100,100,100,100,34.83,31.37,47.12,47.49
-42211,21,221,21221,13422,7408,776365743,726971902,13422,7408,776365743,726971902,14339,7810,1246637963,1143307323,100,100,100,100,93.6,94.85,62.28,63.58
-42214,21,087,21087,135,62,10335198,10206877,682,289,50984386,50312691,11258,5324,747961151,740825297,19.79,21.45,20.27,20.29,1.2,1.16,1.38,1.38
-42214,21,169,21169,547,227,40649188,40105814,682,289,50984386,50312691,10099,4681,754178305,750178224,80.21,78.55,79.73,79.71,5.42,4.85,5.39,5.35
-42215,21,047,21047,725,292,113332421,112936063,1300,554,152478037,151686999,73955,29459,1875260674,1858324233,55.77,52.71,74.33,74.45,0.98,0.99,6.04,6.08
-42215,21,221,21221,575,262,39145616,38750936,1300,554,152478037,151686999,14339,7810,1246637963,1143307323,44.23,47.29,25.67,25.55,4.01,3.35,3.14,3.39
-42217,21,047,21047,4117,1832,416755660,412776614,4117,1832,416755660,412776614,73955,29459,1875260674,1858324233,100,100,100,100,5.57,6.22,22.22,22.21
-42220,21,219,21219,6844,2903,461197447,458536402,6844,2903,461197447,458536402,12460,5286,976571564,969940558,100,100,100,100,54.93,54.92,47.23,47.27
-42223,21,047,21047,13685,2692,13117391,13117391,19837,4218,39224142,39224142,73955,29459,1875260674,1858324233,68.99,63.82,33.44,33.44,18.5,9.14,0.7,0.71
-42223,47,125,47125,6152,1526,26106751,26106751,19837,4218,39224142,39224142,172331,70098,1408512162,1396461566,31.01,36.18,66.56,66.56,3.57,2.18,1.85,1.87
-42232,21,047,21047,616,251,49702982,49519810,812,333,70570799,70235720,73955,29459,1875260674,1858324233,75.86,75.38,70.43,70.51,0.83,0.85,2.65,2.66
-42232,21,221,21221,196,82,20867817,20715910,812,333,70570799,70235720,14339,7810,1246637963,1143307323,24.14,24.62,29.57,29.49,1.37,1.05,1.67,1.81
-42234,21,219,21219,2469,1011,154996051,153516302,2469,1011,154996051,153516302,12460,5286,976571564,969940558,100,100,100,100,19.82,19.13,15.87,15.83
-42236,21,047,21047,783,348,157407908,155772157,929,406,173853661,172025555,73955,29459,1875260674,1858324233,84.28,85.71,90.54,90.55,1.06,1.18,8.39,8.38
-42236,21,221,21221,146,58,16445753,16253398,929,406,173853661,172025555,14339,7810,1246637963,1143307323,15.72,14.29,9.46,9.45,1.02,0.74,1.32,1.42
-42240,21,047,21047,42479,19027,702402969,696096978,42479,19027,702402969,696096978,73955,29459,1875260674,1858324233,100,100,100,100,57.44,64.59,37.46,37.46
-42254,21,047,21047,209,110,13170291,13149611,209,110,13170291,13149611,73955,29459,1875260674,1858324233,100,100,100,100,0.28,0.37,0.7,0.71
-42256,21,031,21031,610,356,113695128,112660391,5028,2754,501647937,494719085,12690,5877,1117510504,1103562315,12.13,12.93,22.66,22.77,4.81,6.06,10.17,10.21
-42256,21,141,21141,3762,2025,325304646,320786621,5028,2754,501647937,494719085,26835,12339,1442703309,1430013728,74.82,73.53,64.85,64.84,14.02,16.41,22.55,22.43
-42256,21,177,21177,48,51,2424564,1705948,5028,2754,501647937,494719085,31499,13699,1241641130,1209728681,0.95,1.85,0.48,0.34,0.15,0.37,0.2,0.14
-42256,21,219,21219,608,322,60223599,59566125,5028,2754,501647937,494719085,12460,5286,976571564,969940558,12.09,11.69,12.01,12.04,4.88,6.09,6.17,6.14
-42259,21,061,21061,1281,857,87592702,85061521,1281,857,87592702,85061521,12161,6467,797726434,784464284,100,100,100,100,10.53,13.25,10.98,10.84
-42261,21,031,21031,10602,4793,771470595,762751982,10602,4793,771470595,762751982,12690,5877,1117510504,1103562315,100,100,100,100,83.55,81.56,69.03,69.12
-42262,21,047,21047,8396,3720,93835869,93290670,8396,3720,93835869,93290670,73955,29459,1875260674,1858324233,100,100,100,100,11.35,12.63,5,5.02
-42265,21,141,21141,763,335,125389265,124282830,820,363,134644956,133447469,26835,12339,1442703309,1430013728,93.05,92.29,93.13,93.13,2.84,2.71,8.69,8.69
-42265,21,219,21219,57,28,9255691,9164639,820,363,134644956,133447469,12460,5286,976571564,969940558,6.95,7.71,6.87,6.87,0.46,0.53,0.95,0.94
-42266,21,047,21047,2440,951,176520692,175293390,2590,1011,196345868,195077626,73955,29459,1875260674,1858324233,94.21,94.07,89.9,89.86,3.3,3.23,9.41,9.43
-42266,21,219,21219,150,60,19825176,19784236,2590,1011,196345868,195077626,12460,5286,976571564,969940558,5.79,5.93,10.1,10.14,1.2,1.14,2.03,2.04
-42273,21,031,21031,443,241,48499836,47314880,443,241,48499836,47314880,12690,5877,1117510504,1103562315,100,100,100,100,3.49,4.1,4.34,4.29
-42274,21,141,21141,250,101,12012480,11965473,2373,947,98178943,97668346,26835,12339,1442703309,1430013728,10.54,10.67,12.24,12.25,0.93,0.82,0.83,0.84
-42274,21,227,21227,2123,846,86166463,85702873,2373,947,98178943,97668346,113792,47223,1418185141,1402737981,89.46,89.33,87.76,87.75,1.87,1.79,6.08,6.11
-42275,21,031,21031,556,248,86532313,85870891,883,402,114596178,113933658,12690,5877,1117510504,1103562315,62.97,61.69,75.51,75.37,4.38,4.22,7.74,7.78
-42275,21,061,21061,327,154,28063865,28062767,883,402,114596178,113933658,12161,6467,797726434,784464284,37.03,38.31,24.49,24.63,2.69,2.38,3.52,3.58
-42276,21,141,21141,14471,6592,525026653,522176262,14471,6592,525026653,522176262,26835,12339,1442703309,1430013728,100,100,100,100,53.93,53.42,36.39,36.52
-42280,21,219,21219,484,204,57438740,57129539,484,204,57438740,57129539,12460,5286,976571564,969940558,100,100,100,100,3.88,3.86,5.88,5.89
-42285,21,061,21061,375,170,21297548,21297548,375,170,21297548,21297548,12161,6467,797726434,784464284,100,100,100,100,3.08,2.63,2.67,2.71
-42286,21,219,21219,1291,526,149805968,148792207,1291,526,149805968,148792207,12460,5286,976571564,969940558,100,100,100,100,10.36,9.95,15.34,15.34
-42301,21,059,21059,42319,18916,430750440,424753694,42440,18960,449341604,442888417,96656,41452,1234321837,1187111257,99.71,99.77,95.86,95.91,43.78,45.63,34.9,35.78
-42301,21,101,21101,121,44,18591164,18134723,42440,18960,449341604,442888417,46250,20320,1207659238,1130968068,0.29,0.23,4.14,4.09,0.26,0.22,1.54,1.6
-42303,21,059,21059,38909,16496,125456770,124084216,38909,16496,125456770,124084216,96656,41452,1234321837,1187111257,100,100,100,100,40.26,39.8,10.16,10.45
-42320,21,031,21031,32,24,30714579,29125167,8205,3481,393847932,381586639,12690,5877,1117510504,1103562315,0.39,0.69,7.8,7.63,0.25,0.41,2.75,2.64
-42320,21,183,21183,8173,3457,363133353,352461472,8205,3481,393847932,381586639,23842,10219,1544220554,1521032417,99.61,99.31,92.2,92.37,34.28,33.83,23.52,23.17
-42321,21,177,21177,327,139,4027789,3975841,327,139,4027789,3975841,31499,13699,1241641130,1209728681,100,100,100,100,1.04,1.01,0.32,0.33
-42322,21,149,21149,47,20,156371,156371,47,20,156371,156371,9531,4264,663641305,653905327,100,100,100,100,0.49,0.47,0.02,0.02
-42323,21,177,21177,793,358,5219094,5205515,793,358,5219094,5205515,31499,13699,1241641130,1209728681,100,100,100,100,2.52,2.61,0.42,0.43
-42324,21,177,21177,1276,578,95861813,94584394,1276,578,95861813,94584394,31499,13699,1241641130,1209728681,100,100,100,100,4.05,4.22,7.72,7.82
-42325,21,177,21177,2028,915,81252702,78461803,2028,915,81252702,78461803,31499,13699,1241641130,1209728681,100,100,100,100,6.44,6.68,6.54,6.49
-42326,21,177,21177,460,188,36956359,34585980,460,188,36956359,34585980,31499,13699,1241641130,1209728681,100,100,100,100,1.46,1.37,2.98,2.86
-42327,21,059,21059,36,17,219059,210806,4037,1765,327014809,322165524,96656,41452,1234321837,1187111257,0.89,0.96,0.07,0.07,0.04,0.04,0.02,0.02
-42327,21,149,21149,4001,1748,326795750,321954718,4037,1765,327014809,322165524,9531,4264,663641305,653905327,99.11,99.04,99.93,99.93,41.98,40.99,49.24,49.24
-42328,21,183,21183,1389,592,171391992,166815579,1389,592,171391992,166815579,23842,10219,1544220554,1521032417,100,100,100,100,5.83,5.79,11.1,10.97
-42330,21,177,21177,9386,3854,233864207,224182749,9386,3854,233864207,224182749,31499,13699,1241641130,1209728681,100,100,100,100,29.8,28.13,18.84,18.53
-42332,21,177,21177,271,124,1567245,1561763,271,124,1567245,1561763,31499,13699,1241641130,1209728681,100,100,100,100,0.86,0.91,0.13,0.13
-42333,21,031,21031,86,28,5053947,4696138,1111,463,83825659,82476451,12690,5877,1117510504,1103562315,7.74,6.05,6.03,5.69,0.68,0.48,0.45,0.43
-42333,21,183,21183,1025,435,78771712,77780313,1111,463,83825659,82476451,23842,10219,1544220554,1521032417,92.26,93.95,93.97,94.31,4.3,4.26,5.1,5.11
-42337,21,177,21177,2026,965,133171539,128097982,2026,965,133171539,128097982,31499,13699,1241641130,1209728681,100,100,100,100,6.43,7.04,10.73,10.59
-42338,21,183,21183,88,39,8862976,8775511,88,39,8862976,8775511,23842,10219,1544220554,1521032417,100,100,100,100,0.37,0.38,0.57,0.58
-42339,21,031,21031,57,38,17106109,16837440,800,416,78463900,77598152,12690,5877,1117510504,1103562315,7.13,9.13,21.8,21.7,0.45,0.65,1.53,1.53
-42339,21,177,21177,743,378,61357791,60760712,800,416,78463900,77598152,31499,13699,1241641130,1209728681,92.88,90.87,78.2,78.3,2.36,2.76,4.94,5.02
-42343,21,091,21091,204,122,41031008,40911615,1782,853,185628755,184860746,8565,3734,515113587,486017475,11.45,14.3,22.1,22.13,2.38,3.27,7.97,8.42
-42343,21,183,21183,1578,731,144597747,143949131,1782,853,185628755,184860746,23842,10219,1544220554,1521032417,88.55,85.7,77.9,77.87,6.62,7.15,9.36,9.46
-42344,21,177,21177,856,394,92646143,90157173,856,394,92646143,90157173,31499,13699,1241641130,1209728681,100,100,100,100,2.72,2.88,7.46,7.45
-42345,21,177,21177,11740,5050,398107918,393548979,11747,5057,400134689,395528564,31499,13699,1241641130,1209728681,99.94,99.86,99.49,99.5,37.27,36.86,32.06,32.53
-42345,21,219,21219,7,7,2026771,1979585,11747,5057,400134689,395528564,12460,5286,976571564,969940558,0.06,0.14,0.51,0.5,0.06,0.13,0.21,0.2
-42347,21,183,21183,6152,2648,323173348,320400606,6152,2648,323173348,320400606,23842,10219,1544220554,1521032417,100,100,100,100,25.8,25.91,20.93,21.06
-42348,21,059,21059,301,121,35527995,35262689,4810,2059,302863415,288735873,96656,41452,1234321837,1187111257,6.26,5.88,11.73,12.21,0.31,0.29,2.88,2.97
-42348,21,091,21091,4509,1938,267335420,253473184,4810,2059,302863415,288735873,8565,3734,515113587,486017475,93.74,94.12,88.27,87.79,52.64,51.9,51.9,52.15
-42349,21,085,21085,132,52,13008373,12687738,1503,638,160677205,159704518,25746,13561,1323563483,1286441869,8.78,8.15,8.1,7.94,0.51,0.38,0.98,0.99
-42349,21,183,21183,1371,586,147668832,147016780,1503,638,160677205,159704518,23842,10219,1544220554,1521032417,91.22,91.85,91.9,92.06,5.75,5.73,9.56,9.67
-42350,21,149,21149,1433,632,109204647,107749284,1433,632,109204647,107749284,9531,4264,663641305,653905327,100,100,100,100,15.04,14.82,16.46,16.48
-42351,21,059,21059,679,279,43195097,42676712,3851,1673,193145469,177823375,96656,41452,1234321837,1187111257,17.63,16.68,22.36,24,0.7,0.67,3.5,3.6
-42351,21,091,21091,3172,1394,149950372,135146663,3851,1673,193145469,177823375,8565,3734,515113587,486017475,82.37,83.32,77.64,76,37.03,37.33,29.11,27.81
-42352,21,149,21149,1962,910,35332882,35117570,2060,953,59563749,58962195,9531,4264,663641305,653905327,95.24,95.49,59.32,59.56,20.59,21.34,5.32,5.37
-42352,21,183,21183,98,43,24230867,23844625,2060,953,59563749,58962195,23842,10219,1544220554,1521032417,4.76,4.51,40.68,40.44,0.41,0.42,1.57,1.57
-42354,21,183,21183,252,103,2259720,2241874,252,103,2259720,2241874,23842,10219,1544220554,1521032417,100,100,100,100,1.06,1.01,0.15,0.15
-42355,21,059,21059,1852,766,75059694,73986950,1852,766,75059694,73986950,96656,41452,1234321837,1187111257,100,100,100,100,1.92,1.85,6.08,6.23
-42356,21,059,21059,83,0,64462,64462,83,0,64462,64462,96656,41452,1234321837,1187111257,100,0,100,100,0.09,0,0.01,0.01
-42361,21,085,21085,109,55,33902706,33543574,492,238,91432243,90526241,25746,13561,1323563483,1286441869,22.15,23.11,37.08,37.05,0.42,0.41,2.56,2.61
-42361,21,183,21183,383,183,57529537,56982667,492,238,91432243,90526241,23842,10219,1544220554,1521032417,77.85,76.89,62.92,62.95,1.61,1.79,3.73,3.75
-42366,21,059,21059,5758,2213,204302010,202634389,5863,2253,210432038,208736918,96656,41452,1234321837,1187111257,98.21,98.22,97.09,97.08,5.96,5.34,16.55,17.07
-42366,21,091,21091,71,27,2400799,2387061,5863,2253,210432038,208736918,8565,3734,515113587,486017475,1.21,1.2,1.14,1.14,0.83,0.72,0.47,0.49
-42366,21,183,21183,34,13,3729229,3715468,5863,2253,210432038,208736918,23842,10219,1544220554,1521032417,0.58,0.58,1.77,1.78,0.14,0.13,0.24,0.24
-42367,21,177,21177,667,317,2755015,2753839,667,317,2755015,2753839,31499,13699,1241641130,1209728681,100,100,100,100,2.12,2.31,0.22,0.23
-42368,21,091,21091,609,253,54395988,54098952,1325,564,110085914,109626302,8565,3734,515113587,486017475,45.96,44.86,49.41,49.35,7.11,6.78,10.56,11.13
-42368,21,183,21183,716,311,55689926,55527350,1325,564,110085914,109626302,23842,10219,1544220554,1521032417,54.04,55.14,50.59,50.65,3,3.04,3.61,3.65
-42369,21,183,21183,331,152,11314944,11104304,331,152,11314944,11104304,23842,10219,1544220554,1521032417,100,100,100,100,1.39,1.49,0.73,0.73
-42370,21,183,21183,28,17,276436,276436,28,17,276436,276436,23842,10219,1544220554,1521032417,100,100,100,100,0.12,0.17,0.02,0.02
-42371,21,149,21149,476,247,100471489,98435152,476,247,100471489,98435152,9531,4264,663641305,653905327,100,100,100,100,4.99,5.79,15.14,15.05
-42372,21,149,21149,1366,600,71809012,70852166,1854,815,97606343,96454264,9531,4264,663641305,653905327,73.68,73.62,73.57,73.46,14.33,14.07,10.82,10.84
-42372,21,177,21177,488,215,25797331,25602098,1854,815,97606343,96454264,31499,13699,1241641130,1209728681,26.32,26.38,26.43,26.54,1.55,1.57,2.08,2.12
-42374,21,177,21177,277,123,10593686,10427546,277,123,10593686,10427546,31499,13699,1241641130,1209728681,100,100,100,100,0.88,0.9,0.85,0.86
-42376,21,059,21059,4436,1776,213502453,211560220,5799,2324,261471285,258957361,96656,41452,1234321837,1187111257,76.5,76.42,81.65,81.7,4.59,4.28,17.3,17.82
-42376,21,149,21149,246,107,19871154,19640066,5799,2324,261471285,258957361,9531,4264,663641305,653905327,4.24,4.6,7.6,7.58,2.58,2.51,2.99,3
-42376,21,183,21183,1117,441,28097678,27757075,5799,2324,261471285,258957361,23842,10219,1544220554,1521032417,19.26,18.98,10.75,10.72,4.69,4.32,1.82,1.82
-42378,21,059,21059,2283,868,63945042,63582380,3339,1304,174779226,173544683,96656,41452,1234321837,1187111257,68.37,66.56,36.59,36.64,2.36,2.09,5.18,5.36
-42378,21,183,21183,1056,436,110834184,109962303,3339,1304,174779226,173544683,23842,10219,1544220554,1521032417,31.63,33.44,63.41,63.36,4.43,4.27,7.18,7.23
-42404,21,225,21225,80,36,12960009,12888531,2569,1114,231591435,228764162,15007,6141,941142162,887974290,3.11,3.23,5.6,5.63,0.53,0.59,1.38,1.45
-42404,21,233,21233,2489,1078,218631426,215875631,2569,1114,231591435,228764162,13621,5936,869343070,859728365,96.89,96.77,94.4,94.37,18.27,18.16,25.15,25.11
-42406,21,101,21101,3491,1435,273461827,271241680,3555,1459,276865533,274621796,46250,20320,1207659238,1130968068,98.2,98.36,98.77,98.77,7.55,7.06,22.64,23.98
-42406,21,233,21233,64,24,3403706,3380116,3555,1459,276865533,274621796,13621,5936,869343070,859728365,1.8,1.64,1.23,1.23,0.47,0.4,0.39,0.39
-42408,21,033,21033,930,496,80919964,79377572,6737,3178,338540180,333172894,12984,6292,901707452,893004660,13.8,15.61,23.9,23.82,7.16,7.88,8.97,8.89
-42408,21,047,21047,323,140,58032516,56541877,6737,3178,338540180,333172894,73955,29459,1875260674,1858324233,4.79,4.41,17.14,16.97,0.44,0.48,3.09,3.04
-42408,21,107,21107,5484,2542,199587700,197253445,6737,3178,338540180,333172894,46920,21180,1435928801,1403760753,81.4,79.99,58.96,59.2,11.69,12,13.9,14.05
-42409,21,233,21233,2586,1044,225661087,224114014,2586,1044,225661087,224114014,13621,5936,869343070,859728365,100,100,100,100,18.99,17.59,25.96,26.07
-42410,21,107,21107,1460,732,7103742,6809194,1460,732,7103742,6809194,46920,21180,1435928801,1403760753,100,100,100,100,3.11,3.46,0.49,0.49
-42411,21,033,21033,1255,615,168707102,167735994,1656,815,226681267,225201595,12984,6292,901707452,893004660,75.79,75.46,74.42,74.48,9.67,9.77,18.71,18.78
-42411,21,055,21055,332,166,47591893,47156234,1656,815,226681267,225201595,9315,4569,961249538,932270911,20.05,20.37,21,20.94,3.56,3.63,4.95,5.06
-42411,21,143,21143,69,34,10382272,10309367,1656,815,226681267,225201595,8314,4791,664405903,553843392,4.17,4.17,4.58,4.58,0.83,0.71,1.56,1.86
-42413,21,107,21107,3118,1219,136249970,135247330,3118,1219,136249970,135247330,46920,21180,1435928801,1403760753,100,100,100,100,6.65,5.76,9.49,9.63
-42420,21,101,21101,38192,17011,511294992,488134901,38192,17011,511294992,488134901,46250,20320,1207659238,1130968068,100,100,100,100,82.58,83.72,42.34,43.16
-42431,21,107,21107,26916,12321,446796815,431447688,26916,12321,446796815,431447688,46920,21180,1435928801,1403760753,100,100,100,100,57.37,58.17,31.12,30.74
-42436,21,107,21107,1030,474,48817780,48444657,1030,474,48817780,48444657,46920,21180,1435928801,1403760753,100,100,100,100,2.2,2.24,3.4,3.45
-42437,21,225,21225,8302,3091,468356860,445344632,8324,3104,472330739,449297958,15007,6141,941142162,887974290,99.74,99.58,99.16,99.12,55.32,50.33,49.76,50.15
-42437,21,233,21233,22,13,3973879,3953326,8324,3104,472330739,449297958,13621,5936,869343070,859728365,0.26,0.42,0.84,0.88,0.16,0.22,0.46,0.46
-42440,21,107,21107,748,342,2592653,2586720,748,342,2592653,2586720,46920,21180,1435928801,1403760753,100,100,100,100,1.59,1.61,0.18,0.18
-42441,21,107,21107,1569,666,151973528,148820653,1594,679,157497463,154332452,46920,21180,1435928801,1403760753,98.43,98.09,96.49,96.43,3.34,3.14,10.58,10.6
-42441,21,233,21233,25,13,5523935,5511799,1594,679,157497463,154332452,13621,5936,869343070,859728365,1.57,1.91,3.51,3.57,0.18,0.22,0.64,0.64
-42442,21,047,21047,77,47,12258918,12148897,3504,1529,160293848,158272341,73955,29459,1875260674,1858324233,2.2,3.07,7.65,7.68,0.1,0.16,0.65,0.65
-42442,21,107,21107,3427,1482,148034930,146123444,3504,1529,160293848,158272341,46920,21180,1435928801,1403760753,97.8,96.93,92.35,92.32,7.3,7,10.31,10.41
-42445,21,033,21033,10758,5162,628638535,622884745,11331,5418,693076943,686337120,12984,6292,901707452,893004660,94.94,95.28,90.7,90.75,82.86,82.04,69.72,69.75
-42445,21,107,21107,228,98,30939057,30237640,11331,5418,693076943,686337120,46920,21180,1435928801,1403760753,2.01,1.81,4.46,4.41,0.49,0.46,2.15,2.15
-42445,21,143,21143,345,158,33499351,33214735,11331,5418,693076943,686337120,8314,4791,664405903,553843392,3.04,2.92,4.83,4.84,4.15,3.3,5.04,6
-42450,21,055,21055,48,22,17035655,16743384,4063,1996,158374132,154363219,9315,4569,961249538,932270911,1.18,1.1,10.76,10.85,0.52,0.48,1.77,1.8
-42450,21,107,21107,208,104,50279699,47977761,4063,1996,158374132,154363219,46920,21180,1435928801,1403760753,5.12,5.21,31.75,31.08,0.44,0.49,3.5,3.42
-42450,21,233,21233,3807,1870,91058778,89642074,4063,1996,158374132,154363219,13621,5936,869343070,859728365,93.7,93.69,57.5,58.07,27.95,31.5,10.47,10.43
-42451,21,101,21101,783,328,117036597,102369055,783,328,117036597,102369055,46250,20320,1207659238,1130968068,100,100,100,100,1.69,1.61,9.69,9.05
-42452,21,101,21101,2116,882,137101488,135241610,2141,894,140630418,138739149,46250,20320,1207659238,1130968068,98.83,98.66,97.49,97.48,4.58,4.34,11.35,11.96
-42452,21,233,21233,25,12,3528930,3497539,2141,894,140630418,138739149,13621,5936,869343070,859728365,1.17,1.34,2.51,2.52,0.18,0.2,0.41,0.41
-42453,21,047,21047,21,11,4008248,3882249,532,255,42996200,42396013,73955,29459,1875260674,1858324233,3.95,4.31,9.32,9.16,0.03,0.04,0.21,0.21
-42453,21,107,21107,511,244,38987952,38513764,532,255,42996200,42396013,46920,21180,1435928801,1403760753,96.05,95.69,90.68,90.84,1.09,1.15,2.72,2.74
-42455,21,233,21233,3376,1348,200597349,197698906,3376,1348,200597349,197698906,13621,5936,869343070,859728365,100,100,100,100,24.79,22.71,23.07,23
-42456,21,107,21107,619,256,63104784,62490162,1690,715,174444518,173078571,46920,21180,1435928801,1403760753,36.63,35.8,36.17,36.11,1.32,1.21,4.39,4.45
-42456,21,233,21233,1071,459,111339734,110588409,1690,715,174444518,173078571,13621,5936,869343070,859728365,63.37,64.2,63.83,63.89,7.86,7.73,12.81,12.86
-42458,21,101,21101,1151,462,44288767,42676189,1151,462,44288767,42676189,46250,20320,1207659238,1130968068,100,100,100,100,2.49,2.27,3.67,3.77
-42459,21,055,21055,202,90,57931926,57323224,4423,2046,323021601,312923086,9315,4569,961249538,932270911,4.57,4.4,17.93,18.32,2.17,1.97,6.03,6.15
-42459,21,225,21225,4221,1956,265089675,255599862,4423,2046,323021601,312923086,15007,6141,941142162,887974290,95.43,95.6,82.07,81.68,28.13,31.85,28.17,28.78
-42461,21,225,21225,1481,668,112725647,93753616,1481,668,112725647,93753616,15007,6141,941142162,887974290,100,100,100,100,9.87,10.88,11.98,10.56
-42462,21,101,21101,396,158,34467578,34040553,1319,548,116477549,114428202,46250,20320,1207659238,1130968068,30.02,28.83,29.59,29.75,0.86,0.78,2.85,3.01
-42462,21,225,21225,923,390,82009971,80387649,1319,548,116477549,114428202,15007,6141,941142162,887974290,69.98,71.17,70.41,70.25,6.15,6.35,8.71,9.05
-42463,21,233,21233,156,75,5624246,5466551,156,75,5624246,5466551,13621,5936,869343070,859728365,100,100,100,100,1.15,1.26,0.65,0.64
-42464,21,047,21047,84,38,23122619,22379297,1799,788,162806297,158083615,73955,29459,1875260674,1858324233,4.67,4.82,14.2,14.16,0.11,0.13,1.23,1.2
-42464,21,107,21107,1602,700,111460191,107808295,1799,788,162806297,158083615,46920,21180,1435928801,1403760753,89.05,88.83,68.46,68.2,3.41,3.31,7.76,7.68
-42464,21,177,21177,113,50,28223487,27896023,1799,788,162806297,158083615,31499,13699,1241641130,1209728681,6.28,6.35,17.34,17.65,0.36,0.36,2.27,2.31
-42501,21,199,21199,17592,8533,527404962,517418879,17592,8533,527404962,517418879,63063,31443,1753821390,1705268187,100,100,100,100,27.9,27.14,30.07,30.34
-42503,21,199,21199,22894,10497,345336171,334934689,22894,10497,345336171,334934689,63063,31443,1753821390,1705268187,100,100,100,100,36.3,33.38,19.69,19.64
-42516,21,045,21045,463,225,34890647,34840240,463,225,34890647,34840240,15955,7487,1154450627,1150549958,100,100,100,100,2.9,3.01,3.02,3.03
-42518,21,199,21199,2719,2026,49392929,44018101,2914,2131,71155016,65732706,63063,31443,1753821390,1705268187,93.31,95.07,69.42,66.97,4.31,6.44,2.82,2.58
-42518,21,231,21231,195,105,21762087,21714605,2914,2131,71155016,65732706,20813,10942,1253971784,1186655607,6.69,4.93,30.58,33.03,0.94,0.96,1.74,1.83
-42519,21,199,21199,3191,2648,135409176,127693988,3191,2648,135409176,127693988,63063,31443,1753821390,1705268187,100,100,100,100,5.06,8.42,7.72,7.49
-42528,21,001,21001,140,49,17708787,17419005,1524,700,127821501,126878441,18656,8568,1068109110,1049677374,9.19,7,13.85,13.73,0.75,0.57,1.66,1.66
-42528,21,045,21045,1120,545,88110379,87470656,1524,700,127821501,126878441,15955,7487,1154450627,1150549958,73.49,77.86,68.93,68.94,7.02,7.28,7.63,7.6
-42528,21,207,21207,264,106,22002335,21988780,1524,700,127821501,126878441,17565,9993,732644280,656969251,17.32,15.14,17.21,17.33,1.5,1.06,3,3.35
-42533,21,199,21199,802,359,3801966,3798745,802,359,3801966,3798745,63063,31443,1753821390,1705268187,100,100,100,100,1.27,1.14,0.22,0.22
-42539,21,001,21001,28,8,6058354,6049989,10026,4635,550875526,548907114,18656,8568,1068109110,1049677374,0.28,0.17,1.1,1.1,0.15,0.09,0.57,0.58
-42539,21,045,21045,9998,4627,544817172,542857125,10026,4635,550875526,548907114,15955,7487,1154450627,1150549958,99.72,99.83,98.9,98.9,62.66,61.8,47.19,47.18
-42541,21,045,21045,531,254,40352815,40080620,531,254,40352815,40080620,15955,7487,1154450627,1150549958,100,100,100,100,3.33,3.39,3.5,3.48
-42544,21,199,21199,4797,2480,301233634,289225363,5843,3994,417006774,377226651,63063,31443,1753821390,1705268187,82.1,62.09,72.24,76.67,7.61,7.89,17.18,16.96
-42544,21,207,21207,523,776,65698153,52486313,5843,3994,417006774,377226651,17565,9993,732644280,656969251,8.95,19.43,15.75,13.91,2.98,7.77,8.97,7.99
-42544,21,231,21231,523,738,50074987,35514975,5843,3994,417006774,377226651,20813,10942,1253971784,1186655607,8.95,18.48,12.01,9.41,2.51,6.74,3.99,2.99
-42553,21,199,21199,5284,2294,163161920,161162764,5284,2294,163161920,161162764,63063,31443,1753821390,1705268187,100,100,100,100,8.38,7.3,9.3,9.45
-42565,21,045,21045,735,365,69521955,69445758,735,365,69521955,69445758,15955,7487,1154450627,1150549958,100,100,100,100,4.61,4.88,6.02,6.04
-42566,21,045,21045,660,299,44406703,44335536,660,299,44406703,44335536,15955,7487,1154450627,1150549958,100,100,100,100,4.14,3.99,3.85,3.85
-42567,21,137,21137,522,245,30341155,30276681,6007,2714,238189822,237140723,24742,10819,871727373,865301109,8.69,9.03,12.74,12.77,2.11,2.26,3.48,3.5
-42567,21,199,21199,5485,2469,207848667,206864042,6007,2714,238189822,237140723,63063,31443,1753821390,1705268187,91.31,90.97,87.26,87.23,8.7,7.85,11.85,12.13
-42602,21,053,21053,10113,5222,503100717,484896095,10216,5414,516627386,495958106,10272,5311,532028431,510864195,98.99,96.45,97.38,97.77,98.45,98.32,94.56,94.92
-42602,21,207,21207,16,16,6750496,6600459,10216,5414,516627386,495958106,17565,9993,732644280,656969251,0.16,0.3,1.31,1.33,0.09,0.16,0.92,1
-42602,21,231,21231,40,20,5985243,3670622,10216,5414,516627386,495958106,20813,10942,1253971784,1186655607,0.39,0.37,1.16,0.74,0.19,0.18,0.48,0.31
-42602,47,137,47137,47,156,790930,790930,10216,5414,516627386,495958106,5077,3462,451936237,422113383,0.46,2.88,0.15,0.16,0.93,4.51,0.18,0.19
-42603,21,053,21053,130,69,9488413,9479754,130,69,9488413,9479754,10272,5311,532028431,510864195,100,100,100,100,1.27,1.3,1.78,1.86
-42629,21,207,21207,4953,3114,310731192,258061416,4953,3114,310731192,258061416,17565,9993,732644280,656969251,100,100,100,100,28.2,31.16,42.41,39.28
-42631,21,147,21147,134,60,336808,336808,134,60,336808,336808,18306,7507,1116147422,1105414665,100,100,100,100,0.73,0.8,0.03,0.03
-42633,21,053,21053,10,5,685590,680673,20065,10084,1176835057,1126436078,10272,5311,532028431,510864195,0.05,0.05,0.06,0.06,0.1,0.09,0.13,0.13
-42633,21,231,21231,20055,10079,1176149467,1125755405,20065,10084,1176835057,1126436078,20813,10942,1253971784,1186655607,99.95,99.95,99.94,99.94,96.36,92.11,93.79,94.87
-42634,21,147,21147,1565,685,241570758,238653067,1565,685,241570758,238653067,18306,7507,1116147422,1105414665,100,100,100,100,8.55,9.12,21.64,21.59
-42635,21,147,21147,5103,1494,61070274,60575884,5103,1494,61070274,60575884,18306,7507,1116147422,1105414665,100,100,100,100,27.88,19.9,5.47,5.48
-42638,21,147,21147,207,93,3363220,3312940,207,93,3363220,3312940,18306,7507,1116147422,1105414665,100,100,100,100,1.13,1.24,0.3,0.3
-42642,21,001,21001,634,295,35041730,34959831,12573,6346,371840492,362114909,18656,8568,1068109110,1049677374,5.04,4.65,9.42,9.65,3.4,3.44,3.28,3.33
-42642,21,045,21045,69,41,2681920,2675463,12573,6346,371840492,362114909,15955,7487,1154450627,1150549958,0.55,0.65,0.72,0.74,0.43,0.55,0.23,0.23
-42642,21,199,21199,61,29,6654738,6647332,12573,6346,371840492,362114909,63063,31443,1753821390,1705268187,0.49,0.46,1.79,1.84,0.1,0.09,0.38,0.39
-42642,21,207,21207,11809,5981,327462104,317832283,12573,6346,371840492,362114909,17565,9993,732644280,656969251,93.92,94.25,88.07,87.77,67.23,59.85,44.7,48.38
-42647,21,147,21147,4086,1955,363276293,360478452,4086,1955,363276293,360478452,18306,7507,1116147422,1105414665,100,100,100,100,22.32,26.04,32.55,32.61
-42649,21,147,21147,2326,1080,186773092,185966191,2326,1080,186773092,185966191,18306,7507,1116147422,1105414665,100,100,100,100,12.71,14.39,16.73,16.82
-42653,21,147,21147,4619,2017,208764552,205430342,4619,2017,208764552,205430342,18306,7507,1116147422,1105414665,100,100,100,100,25.23,26.87,18.7,18.58
-42701,21,093,21093,48194,20611,415302686,410836962,48194,20611,415302686,410836962,105543,43261,1632045098,1614282063,100,100,100,100,45.66,47.64,25.45,25.45
-42712,21,085,21085,1289,569,69823634,69440708,1855,823,136957738,135999667,25746,13561,1323563483,1286441869,69.49,69.14,50.98,51.06,5.01,4.2,5.28,5.4
-42712,21,093,21093,566,254,67134104,66558959,1855,823,136957738,135999667,105543,43261,1632045098,1614282063,30.51,30.86,49.02,48.94,0.54,0.59,4.11,4.12
-42713,21,099,21099,1641,814,106065725,105768476,1641,814,106065725,105768476,18199,8559,1082226676,1067297497,100,100,100,100,9.02,9.51,9.8,9.91
-42715,21,001,21001,347,174,40144333,40111303,347,174,40144333,40111303,18656,8568,1068109110,1049677374,100,100,100,100,1.86,2.03,3.76,3.82
-42716,21,087,21087,91,52,10073620,10068590,1582,712,94049666,93762695,11258,5324,747961151,740825297,5.75,7.3,10.71,10.74,0.81,0.98,1.35,1.36
-42716,21,123,21123,1409,609,69588717,69316773,1582,712,94049666,93762695,14193,6172,682794190,677331504,89.06,85.53,73.99,73.93,9.93,9.87,10.19,10.23
-42716,21,217,21217,82,51,14387329,14377332,1582,712,94049666,93762695,24512,10864,716954300,689784222,5.18,7.16,15.3,15.33,0.33,0.47,2.01,2.08
-42717,21,053,21053,19,15,18753711,15807673,6558,3561,792370113,774721980,10272,5311,532028431,510864195,0.29,0.42,2.37,2.04,0.18,0.28,3.52,3.09
-42717,21,057,21057,6539,3546,773616402,758914307,6558,3561,792370113,774721980,6856,3690,805247041,790416904,99.71,99.58,97.63,97.96,95.38,96.1,96.07,96.01
-42718,21,087,21087,565,220,43967056,43422078,24312,10688,668696952,653872769,11258,5324,747961151,740825297,2.32,2.06,6.58,6.64,5.02,4.13,5.88,5.86
-42718,21,123,21123,69,44,26178761,26144634,24312,10688,668696952,653872769,14193,6172,682794190,677331504,0.28,0.41,3.91,4,0.49,0.71,3.83,3.86
-42718,21,155,21155,799,333,81357264,80982594,24312,10688,668696952,653872769,19820,8182,898358598,888387260,3.29,3.12,12.17,12.39,4.03,4.07,9.06,9.12
-42718,21,217,21217,22879,10091,517193871,503323463,24312,10688,668696952,653872769,24512,10864,716954300,689784222,94.11,94.41,77.34,76.98,93.34,92.88,72.14,72.97
-42721,21,031,21031,138,78,25671549,25622455,3982,1852,380503687,377406461,12690,5877,1117510504,1103562315,3.47,4.21,6.75,6.79,1.09,1.33,2.3,2.32
-42721,21,061,21061,114,48,18335478,18053846,3982,1852,380503687,377406461,12161,6467,797726434,784464284,2.86,2.59,4.82,4.78,0.94,0.74,2.3,2.3
-42721,21,085,21085,3730,1726,336496660,333730160,3982,1852,380503687,377406461,25746,13561,1323563483,1286441869,93.67,93.2,88.43,88.43,14.49,12.73,25.42,25.94
-42722,21,099,21099,714,318,46277024,45040095,714,318,46277024,45040095,18199,8559,1082226676,1067297497,100,100,100,100,3.92,3.72,4.28,4.22
-42724,21,093,21093,4714,1977,201399555,199325001,4714,1977,201399555,199325001,105543,43261,1632045098,1614282063,100,100,100,100,4.47,4.57,12.34,12.35
-42726,21,085,21085,4667,3286,277481477,261690941,4667,3286,277481477,261690941,25746,13561,1323563483,1286441869,100,100,100,100,18.13,24.23,20.96,20.34
-42728,21,001,21001,15868,7245,818115513,803550165,15925,7288,852972440,828291640,18656,8568,1068109110,1049677374,99.64,99.41,95.91,97.01,85.06,84.56,76.59,76.55
-42728,21,217,21217,57,43,34856927,24741475,15925,7288,852972440,828291640,24512,10864,716954300,689784222,0.36,0.59,4.09,2.99,0.23,0.4,4.86,3.59
-42729,21,061,21061,355,475,41333033,38959887,1617,1343,142458099,134427427,12161,6467,797726434,784464284,21.95,35.37,29.01,28.98,2.92,7.34,5.18,4.97
-42729,21,099,21099,1262,868,101125066,95467540,1617,1343,142458099,134427427,18199,8559,1082226676,1067297497,78.05,64.63,70.99,71.02,6.93,10.14,9.34,8.94
-42731,21,057,21057,296,136,24367137,24242338,341,156,29170726,29044476,6856,3690,805247041,790416904,86.8,87.18,83.53,83.47,4.32,3.69,3.03,3.07
-42731,21,169,21169,45,20,4803589,4802138,341,156,29170726,29044476,10099,4681,754178305,750178224,13.2,12.82,16.47,16.53,0.45,0.43,0.64,0.64
-42732,21,093,21093,2120,861,151448560,150825812,2120,861,151448560,150825812,105543,43261,1632045098,1614282063,100,100,100,100,2.01,1.99,9.28,9.34
-42733,21,001,21001,49,20,3069265,3069265,1454,663,153362635,150291687,18656,8568,1068109110,1049677374,3.37,3.02,2,2.04,0.26,0.23,0.29,0.29
-42733,21,045,21045,240,110,39466561,39357188,1454,663,153362635,150291687,15955,7487,1154450627,1150549958,16.51,16.59,25.73,26.19,1.5,1.47,3.42,3.42
-42733,21,217,21217,1165,533,110826809,107865234,1454,663,153362635,150291687,24512,10864,716954300,689784222,80.12,80.39,72.26,71.77,4.75,4.91,15.46,15.64
-42740,21,093,21093,1973,825,83500531,82139354,1973,825,83500531,82139354,105543,43261,1632045098,1614282063,100,100,100,100,1.87,1.91,5.12,5.09
-42741,21,001,21001,480,223,38811093,38751631,480,223,38811093,38751631,18656,8568,1068109110,1049677374,100,100,100,100,2.57,2.6,3.63,3.69
-42743,21,001,21001,111,58,13815221,13677203,8869,4240,535104443,529688312,18656,8568,1068109110,1049677374,1.25,1.37,2.58,2.58,0.59,0.68,1.29,1.3
-42743,21,087,21087,8758,4182,521289222,516011109,8869,4240,535104443,529688312,11258,5324,747961151,740825297,98.75,98.63,97.42,97.42,77.79,78.55,69.69,69.65
-42746,21,087,21087,150,67,18826740,18678133,1892,824,122334612,120944020,11258,5324,747961151,740825297,7.93,8.13,15.39,15.44,1.33,1.26,2.52,2.52
-42746,21,099,21099,1596,701,96536734,95453229,1892,824,122334612,120944020,18199,8559,1082226676,1067297497,84.36,85.07,78.91,78.92,8.77,8.19,8.92,8.94
-42746,21,169,21169,146,56,6971138,6812658,1892,824,122334612,120944020,10099,4681,754178305,750178224,7.72,6.8,5.7,5.63,1.45,1.2,0.92,0.91
-42748,21,123,21123,8706,3747,344502044,341035710,8706,3747,344502044,341035710,14193,6172,682794190,677331504,100,100,100,100,61.34,60.71,50.45,50.35
-42749,21,009,21009,143,54,14076565,13812874,5245,2382,239031181,236226039,42173,19188,1294991994,1262724748,2.73,2.27,5.89,5.85,0.34,0.28,1.09,1.09
-42749,21,099,21099,4819,2193,197374102,195328296,5245,2382,239031181,236226039,18199,8559,1082226676,1067297497,91.88,92.07,82.57,82.69,26.48,25.62,18.24,18.3
-42749,21,169,21169,283,135,27580514,27084869,5245,2382,239031181,236226039,10099,4681,754178305,750178224,5.4,5.67,11.54,11.47,2.8,2.88,3.66,3.61
-42753,21,001,21001,743,365,69587841,66345795,743,365,69587841,66345795,18656,8568,1068109110,1049677374,100,100,100,100,3.98,4.26,6.52,6.32
-42754,21,027,21027,946,734,45234137,42058800,15349,7275,498824446,484001133,20059,10630,1516751454,1468969244,6.16,10.09,9.07,8.69,4.72,6.9,2.98,2.86
-42754,21,061,21061,104,179,3036423,3035148,15349,7275,498824446,484001133,12161,6467,797726434,784464284,0.68,2.46,0.61,0.63,0.86,2.77,0.38,0.39
-42754,21,085,21085,14299,6362,450553886,438907185,15349,7275,498824446,484001133,25746,13561,1323563483,1286441869,93.16,87.45,90.32,90.68,55.54,46.91,34.04,34.12
-42757,21,087,21087,347,150,27488748,27378302,2974,1349,214444373,212563404,11258,5324,747961151,740825297,11.67,11.12,12.82,12.88,3.08,2.82,3.68,3.7
-42757,21,099,21099,1350,632,127074792,126022742,2974,1349,214444373,212563404,18199,8559,1082226676,1067297497,45.39,46.85,59.26,59.29,7.42,7.38,11.74,11.81
-42757,21,123,21123,1277,567,59880833,59162360,2974,1349,214444373,212563404,14193,6172,682794190,677331504,42.94,42.03,27.92,27.83,9,9.19,8.77,8.73
-42758,21,217,21217,139,58,1436338,1387535,139,58,1436338,1387535,24512,10864,716954300,689784222,100,100,100,100,0.57,0.53,0.2,0.2
-42762,21,085,21085,422,183,24420606,24228723,422,183,24420606,24228723,25746,13561,1323563483,1286441869,100,100,100,100,1.64,1.35,1.85,1.88
-42764,21,087,21087,337,164,36841604,36811087,559,265,40511247,40472679,11258,5324,747961151,740825297,60.29,61.89,90.94,90.95,2.99,3.08,4.93,4.97
-42764,21,123,21123,222,101,3669643,3661592,559,265,40511247,40472679,14193,6172,682794190,677331504,39.71,38.11,9.06,9.05,1.56,1.64,0.54,0.54
-42765,21,099,21099,5840,2608,307883193,305072029,5840,2608,307883193,305072029,18199,8559,1082226676,1067297497,100,100,100,100,32.09,30.47,28.45,28.58
-42776,21,093,21093,1972,834,119914596,118730906,2736,1161,176621236,175181115,105543,43261,1632045098,1614282063,72.08,71.83,67.89,67.78,1.87,1.93,7.35,7.36
-42776,21,123,21123,764,327,56706640,56450209,2736,1161,176621236,175181115,14193,6172,682794190,677331504,27.92,28.17,32.11,32.22,5.38,5.3,8.31,8.33
-42782,21,087,21087,875,427,79138963,78249121,953,465,92998652,91878999,11258,5324,747961151,740825297,91.82,91.83,85.1,85.17,7.77,8.02,10.58,10.56
-42782,21,099,21099,78,38,13859689,13629878,953,465,92998652,91878999,18199,8559,1082226676,1067297497,8.18,8.17,14.9,14.83,0.43,0.44,1.28,1.28
-42784,21,093,21093,1108,447,60171722,59872786,2685,1172,155724355,154772351,105543,43261,1632045098,1614282063,41.27,38.14,38.64,38.68,1.05,1.03,3.69,3.71
-42784,21,099,21099,719,308,58394189,57965400,2685,1172,155724355,154772351,18199,8559,1082226676,1067297497,26.78,26.28,37.5,37.45,3.95,3.6,5.4,5.43
-42784,21,123,21123,858,417,37158444,36934165,2685,1172,155724355,154772351,14193,6172,682794190,677331504,31.96,35.58,23.86,23.86,6.05,6.76,5.44,5.45
-42788,21,093,21093,310,133,21929735,21454998,310,133,21929735,21454998,105543,43261,1632045098,1614282063,100,100,100,100,0.29,0.31,1.34,1.33
-43001,39,089,39089,2400,946,69244740,68738185,2400,946,69244740,68738185,166492,69291,1780594237,1767667183,100,100,100,100,1.44,1.37,3.89,3.89
-43002,39,049,39049,2262,1259,2580611,2574923,2262,1259,2580611,2574923,1163414,527186,1407679682,1378361040,100,100,100,100,0.19,0.24,0.18,0.19
-43003,39,041,39041,2179,877,50437698,47722971,2917,1163,90480553,87746040,174214,66378,1184477006,1147617685,74.7,75.41,55.74,54.39,1.25,1.32,4.26,4.16
-43003,39,117,39117,738,286,40042855,40023069,2917,1163,90480553,87746040,34827,14155,1054698028,1051738690,25.3,24.59,44.26,45.61,2.12,2.02,3.8,3.81
-43004,39,049,39049,22727,9518,34019249,33511303,22727,9518,34019249,33511303,1163414,527186,1407679682,1378361040,100,100,100,100,1.95,1.81,2.42,2.43
-43005,39,083,39083,174,67,2160439,2156201,174,67,2160439,2156201,60921,25118,1371743293,1361024108,100,100,100,100,0.29,0.27,0.16,0.16
-43006,39,031,39031,258,108,29421352,29421025,822,326,62071380,61916929,36901,16545,1469773983,1460529028,31.39,33.13,47.4,47.52,0.7,0.65,2,2.01
-43006,39,075,39075,367,128,27047281,26963327,822,326,62071380,61916929,42366,13666,1098101180,1094355785,44.65,39.26,43.57,43.55,0.87,0.94,2.46,2.46
-43006,39,083,39083,197,90,5602747,5532577,822,326,62071380,61916929,60921,25118,1371743293,1361024108,23.97,27.61,9.03,8.94,0.32,0.36,0.41,0.41
-43008,39,089,39089,2479,1329,5000847,3875699,2479,1329,5000847,3875699,166492,69291,1780594237,1767667183,100,100,100,100,1.49,1.92,0.28,0.22
-43009,39,021,39021,2135,799,89321235,89275647,2135,799,89321235,89275647,40097,16755,1113263113,1110247425,100,100,100,100,5.32,4.77,8.02,8.04
-43010,39,023,39023,272,104,661470,661470,272,104,661470,661470,138333,61419,1042539696,1029450254,100,100,100,100,0.2,0.17,0.06,0.06
-43011,39,041,39041,635,233,29824761,29824761,7491,2795,214069349,213622021,174214,66378,1184477006,1147617685,8.48,8.34,13.93,13.96,0.36,0.35,2.52,2.6
-43011,39,083,39083,5121,1898,107999082,107635234,7491,2795,214069349,213622021,60921,25118,1371743293,1361024108,68.36,67.91,50.45,50.39,8.41,7.56,7.87,7.91
-43011,39,089,39089,729,268,40675184,40622921,7491,2795,214069349,213622021,166492,69291,1780594237,1767667183,9.73,9.59,19,19.02,0.44,0.39,2.28,2.3
-43011,39,117,39117,1006,396,35570322,35539105,7491,2795,214069349,213622021,34827,14155,1054698028,1051738690,13.43,14.17,16.62,16.64,2.89,2.8,3.37,3.38
-43013,39,089,39089,1201,471,49895422,49783828,1201,471,49895422,49783828,166492,69291,1780594237,1767667183,100,100,100,100,0.72,0.68,2.8,2.82
-43014,39,083,39083,3632,1380,171369722,170662178,3632,1380,171369722,170662178,60921,25118,1371743293,1361024108,100,100,100,100,5.96,5.49,12.49,12.54
-43015,39,041,39041,48036,19443,331896654,321910660,48107,19472,333664966,323657784,174214,66378,1184477006,1147617685,99.85,99.85,99.47,99.46,27.57,29.29,28.02,28.05
-43015,39,159,39159,71,29,1768312,1747124,48107,19472,333664966,323657784,52300,19429,1131493457,1118175978,0.15,0.15,0.53,0.54,0.14,0.15,0.16,0.16
-43016,39,041,39041,204,70,315425,253977,31306,13559,47279114,46852285,174214,66378,1184477006,1147617685,0.65,0.52,0.67,0.54,0.12,0.11,0.03,0.02
-43016,39,049,39049,28864,12801,43269582,42949080,31306,13559,47279114,46852285,1163414,527186,1407679682,1378361040,92.2,94.41,91.52,91.67,2.48,2.43,3.07,3.12
-43016,39,159,39159,2238,688,3694107,3649228,31306,13559,47279114,46852285,52300,19429,1131493457,1118175978,7.15,5.07,7.81,7.79,4.28,3.54,0.33,0.33
-43017,39,041,39041,5949,2120,9312669,9278891,37626,14756,44868481,43714850,174214,66378,1184477006,1147617685,15.81,14.37,20.76,21.23,3.41,3.19,0.79,0.81
-43017,39,049,39049,31013,12436,33971753,32876966,37626,14756,44868481,43714850,1163414,527186,1407679682,1378361040,82.42,84.28,75.71,75.21,2.67,2.36,2.41,2.39
-43017,39,159,39159,664,200,1584059,1558993,37626,14756,44868481,43714850,52300,19429,1131493457,1118175978,1.76,1.36,3.53,3.57,1.27,1.03,0.14,0.14
-43019,39,083,39083,6839,2798,198830073,195359055,8700,3436,277440476,273927004,60921,25118,1371743293,1361024108,78.61,81.43,71.67,71.32,11.23,11.14,14.49,14.35
-43019,39,117,39117,1781,614,71637101,71614737,8700,3436,277440476,273927004,34827,14155,1054698028,1051738690,20.47,17.87,25.82,26.14,5.11,4.34,6.79,6.81
-43019,39,139,39139,80,24,6973302,6953212,8700,3436,277440476,273927004,124475,54599,1295194144,1282739691,0.92,0.7,2.51,2.54,0.06,0.04,0.54,0.54
-43021,39,041,39041,10301,3656,99823887,92072986,10301,3656,99823887,92072986,174214,66378,1184477006,1147617685,100,100,100,100,5.91,5.51,8.43,8.02
-43022,39,083,39083,4161,1054,107800655,107092973,4161,1054,107800655,107092973,60921,25118,1371743293,1361024108,100,100,100,100,6.83,4.2,7.86,7.87
-43023,39,089,39089,13231,4423,135180420,134340453,13231,4423,135180420,134340453,166492,69291,1780594237,1767667183,100,100,100,100,7.95,6.38,7.59,7.6
-43025,39,089,39089,5306,2467,92456183,90394159,5306,2467,92456183,90394159,166492,69291,1780594237,1767667183,100,100,100,100,3.19,3.56,5.19,5.11
-43026,39,049,39049,54001,20978,91039014,89933287,54017,20986,91948479,90842752,1163414,527186,1407679682,1378361040,99.97,99.96,99.01,99,4.64,3.98,6.47,6.52
-43026,39,097,39097,16,8,909465,909465,54017,20986,91948479,90842752,43435,15939,1208565321,1206610780,0.03,0.04,0.99,1,0.04,0.05,0.08,0.08
-43028,39,083,39083,7537,3542,141289712,138466105,7537,3542,141289712,138466105,60921,25118,1371743293,1361024108,100,100,100,100,12.37,14.1,10.3,10.17
-43029,39,097,39097,483,128,49104845,49104095,664,206,61208510,61174161,43435,15939,1208565321,1206610780,72.74,62.14,80.23,80.27,1.11,0.8,4.06,4.07
-43029,39,159,39159,181,78,12103665,12070066,664,206,61208510,61174161,52300,19429,1131493457,1118175978,27.26,37.86,19.77,19.73,0.35,0.4,1.07,1.08
-43030,39,089,39089,114,46,238873,238873,114,46,238873,238873,166492,69291,1780594237,1767667183,100,100,100,100,0.07,0.07,0.01,0.01
-43031,39,041,39041,382,149,13660161,13660161,12318,4945,231593908,230759143,174214,66378,1184477006,1147617685,3.1,3.01,5.9,5.92,0.22,0.22,1.15,1.19
-43031,39,089,39089,11936,4796,217933747,217098982,12318,4945,231593908,230759143,166492,69291,1780594237,1767667183,96.9,96.99,94.1,94.08,7.17,6.92,12.24,12.28
-43032,39,041,39041,77,39,126538,126538,77,39,126538,126538,174214,66378,1184477006,1147617685,100,100,100,100,0.04,0.06,0.01,0.01
-43033,39,089,39089,380,149,1152478,1149665,380,149,1152478,1149665,166492,69291,1780594237,1767667183,100,100,100,100,0.23,0.22,0.06,0.07
-43035,39,041,39041,24721,8819,58772975,50738186,24721,8819,58772975,50738186,174214,66378,1184477006,1147617685,100,100,100,100,14.19,13.29,4.96,4.42
-43036,39,159,39159,258,123,562560,552660,258,123,562560,552660,52300,19429,1131493457,1118175978,100,100,100,100,0.49,0.63,0.05,0.05
-43037,39,083,39083,535,217,12054928,11980096,535,217,12054928,11980096,60921,25118,1371743293,1361024108,100,100,100,100,0.88,0.86,0.88,0.88
-43040,39,041,39041,59,24,1758671,1758671,31790,11647,439126469,432965888,174214,66378,1184477006,1147617685,0.19,0.21,0.4,0.41,0.03,0.04,0.15,0.15
-43040,39,159,39159,31731,11623,437367798,431207217,31790,11647,439126469,432965888,52300,19429,1131493457,1118175978,99.81,99.79,99.6,99.59,60.67,59.82,38.65,38.56
-43044,39,021,39021,4690,1812,140593449,140479029,5528,2149,203524436,203403408,40097,16755,1113263113,1110247425,84.84,84.32,69.08,69.06,11.7,10.81,12.63,12.65
-43044,39,023,39023,707,280,31225455,31218847,5528,2149,203524436,203403408,138333,61419,1042539696,1029450254,12.79,13.03,15.34,15.35,0.51,0.46,3,3.03
-43044,39,097,39097,131,57,31705532,31705532,5528,2149,203524436,203403408,43435,15939,1208565321,1206610780,2.37,2.65,15.58,15.59,0.3,0.36,2.62,2.63
-43045,39,021,39021,20,6,5497174,5490849,1953,740,99134226,97926382,40097,16755,1113263113,1110247425,1.02,0.81,5.55,5.61,0.05,0.04,0.49,0.49
-43045,39,159,39159,1933,734,93637052,92435533,1953,740,99134226,97926382,52300,19429,1131493457,1118175978,98.98,99.19,94.45,94.39,3.7,3.78,8.28,8.27
-43046,39,045,39045,3032,1638,61526119,56674094,3396,1818,70700897,65793199,146156,58687,1317168163,1306418559,89.28,90.1,87.02,86.14,2.07,2.79,4.67,4.34
-43046,39,089,39089,364,180,9174778,9119105,3396,1818,70700897,65793199,166492,69291,1780594237,1767667183,10.72,9.9,12.98,13.86,0.22,0.26,0.52,0.52
-43050,39,083,39083,28938,12684,398824722,397072363,29050,12731,405637233,403866666,60921,25118,1371743293,1361024108,99.61,99.63,98.32,98.32,47.5,50.5,29.07,29.17
-43050,39,117,39117,112,47,6812511,6794303,29050,12731,405637233,403866666,34827,14155,1054698028,1051738690,0.39,0.37,1.68,1.68,0.32,0.33,0.65,0.65
-43054,39,049,39049,20566,8449,52649674,51971986,20566,8449,52649674,51971986,1163414,527186,1407679682,1378361040,100,100,100,100,1.77,1.6,3.74,3.77
-43055,39,089,39089,59605,26781,294392092,292176948,59605,26781,294392092,292176948,166492,69291,1780594237,1767667183,100,100,100,100,35.8,38.65,16.53,16.53
-43056,39,089,39089,17439,7246,224304463,222387924,17439,7246,224304463,222387924,166492,69291,1780594237,1767667183,100,100,100,100,10.47,10.46,12.6,12.58
-43060,39,021,39021,2184,959,45477012,45449623,2480,1061,66495983,66410450,40097,16755,1113263113,1110247425,88.06,90.39,68.39,68.44,5.45,5.72,4.09,4.09
-43060,39,091,39091,237,85,15634468,15634468,2480,1061,66495983,66410450,45858,23181,1208935411,1187326601,9.56,8.01,23.51,23.54,0.52,0.37,1.29,1.32
-43060,39,159,39159,59,17,5384503,5326359,2480,1061,66495983,66410450,52300,19429,1131493457,1118175978,2.38,1.6,8.1,8.02,0.11,0.09,0.48,0.48
-43061,39,041,39041,3267,1260,98889949,97676927,3967,1528,118365380,117022091,174214,66378,1184477006,1147617685,82.35,82.46,83.55,83.47,1.88,1.9,8.35,8.51
-43061,39,159,39159,700,268,19475431,19345164,3967,1528,118365380,117022091,52300,19429,1131493457,1118175978,17.65,17.54,16.45,16.53,1.34,1.38,1.72,1.73
-43062,39,045,39045,181,72,3760783,3760783,27644,10786,205052534,204088613,146156,58687,1317168163,1306418559,0.65,0.67,1.83,1.84,0.12,0.12,0.29,0.29
-43062,39,089,39089,27463,10714,201291751,200327830,27644,10786,205052534,204088613,166492,69291,1780594237,1767667183,99.35,99.33,98.17,98.16,16.5,15.46,11.3,11.33
-43064,39,049,39049,9,7,180877,180877,12580,4755,268290178,266729643,1163414,527186,1407679682,1378361040,0.07,0.15,0.07,0.07,0,0,0.01,0.01
-43064,39,097,39097,6948,2638,152238965,152143995,12580,4755,268290178,266729643,43435,15939,1208565321,1206610780,55.23,55.48,56.74,57.04,16,16.55,12.6,12.61
-43064,39,159,39159,5623,2110,115870336,114404771,12580,4755,268290178,266729643,52300,19429,1131493457,1118175978,44.7,44.37,43.19,42.89,10.75,10.86,10.24,10.23
-43065,39,041,39041,31756,11733,73469240,71611631,38821,14412,76650727,74791991,174214,66378,1184477006,1147617685,81.8,81.41,95.85,95.75,18.23,17.68,6.2,6.24
-43065,39,049,39049,7065,2679,3181487,3180360,38821,14412,76650727,74791991,1163414,527186,1407679682,1378361040,18.2,18.59,4.15,4.25,0.61,0.51,0.23,0.23
-43066,39,041,39041,1328,512,99984967,99733613,1328,512,99984967,99733613,174214,66378,1184477006,1147617685,100,100,100,100,0.76,0.77,8.44,8.69
-43067,39,159,39159,1591,625,82245108,80873999,1591,625,82245108,80873999,52300,19429,1131493457,1118175978,100,100,100,100,3.04,3.22,7.27,7.23
-43068,39,045,39045,7007,3008,4444689,4444618,51836,22586,50438584,50128969,146156,58687,1317168163,1306418559,13.52,13.32,8.81,8.87,4.79,5.13,0.34,0.34
-43068,39,049,39049,33362,15195,24941882,24719552,51836,22586,50438584,50128969,1163414,527186,1407679682,1378361040,64.36,67.28,49.45,49.31,2.87,2.88,1.77,1.79
-43068,39,089,39089,11467,4383,21052013,20964799,51836,22586,50438584,50128969,166492,69291,1780594237,1767667183,22.12,19.41,41.74,41.82,6.89,6.33,1.18,1.19
-43070,39,021,39021,133,54,395484,395484,133,54,395484,395484,40097,16755,1113263113,1110247425,100,100,100,100,0.33,0.32,0.04,0.04
-43071,39,089,39089,2351,959,88689860,87899298,2351,959,88689860,87899298,166492,69291,1780594237,1767667183,100,100,100,100,1.41,1.38,4.98,4.97
-43072,39,021,39021,5948,2387,192169270,190506170,5948,2387,192169270,190506170,40097,16755,1113263113,1110247425,100,100,100,100,14.83,14.25,17.26,17.16
-43074,39,041,39041,11530,4441,221269562,219689386,11655,4488,226078750,224497623,174214,66378,1184477006,1147617685,98.93,98.95,97.87,97.86,6.62,6.69,18.68,19.14
-43074,39,089,39089,125,47,4809188,4808237,11655,4488,226078750,224497623,166492,69291,1780594237,1767667183,1.07,1.05,2.13,2.14,0.08,0.07,0.27,0.27
-43076,39,045,39045,1890,946,23705117,22247996,9051,4164,189682252,185668206,146156,58687,1317168163,1306418559,20.88,22.72,12.5,11.98,1.29,1.61,1.8,1.7
-43076,39,089,39089,2633,1112,59179109,58716460,9051,4164,189682252,185668206,166492,69291,1780594237,1767667183,29.09,26.71,31.2,31.62,1.58,1.6,3.32,3.32
-43076,39,127,39127,4528,2106,106798026,104703750,9051,4164,189682252,185668206,36058,15211,1068336290,1056641254,50.03,50.58,56.3,56.39,12.56,13.85,10,9.91
-43077,39,159,39159,258,91,503788,488084,258,91,503788,488084,52300,19429,1131493457,1118175978,100,100,100,100,0.49,0.47,0.04,0.04
-43078,39,021,39021,20833,9110,392056270,391083818,20885,9134,394665704,393685794,40097,16755,1113263113,1110247425,99.75,99.74,99.34,99.34,51.96,54.37,35.22,35.22
-43078,39,023,39023,52,24,2609434,2601976,20885,9134,394665704,393685794,138333,61419,1042539696,1029450254,0.25,0.26,0.66,0.66,0.04,0.04,0.25,0.25
-43080,39,083,39083,1444,501,74805671,74646371,5498,2186,191459261,190903225,60921,25118,1371743293,1361024108,26.26,22.92,39.07,39.1,2.37,1.99,5.45,5.48
-43080,39,089,39089,4054,1685,116653590,116256854,5498,2186,191459261,190903225,166492,69291,1780594237,1767667183,73.74,77.08,60.93,60.9,2.43,2.43,6.55,6.58
-43081,39,049,39049,55991,24034,66700971,63776192,55991,24034,66700971,63776192,1163414,527186,1407679682,1378361040,100,100,100,100,4.81,4.56,4.74,4.63
-43082,39,041,39041,29946,11084,60559705,57289047,29946,11084,60559705,57289047,174214,66378,1184477006,1147617685,100,100,100,100,17.19,16.7,5.11,4.99
-43084,39,021,39021,828,303,54808648,54752325,841,307,55940690,55869829,40097,16755,1113263113,1110247425,98.45,98.7,97.98,98,2.06,1.81,4.92,4.93
-43084,39,159,39159,13,4,1132042,1117504,841,307,55940690,55869829,52300,19429,1131493457,1118175978,1.55,1.3,2.02,2,0.02,0.02,0.1,0.1
-43085,39,049,39049,23258,10228,19324892,19106127,23258,10228,19324892,19106127,1163414,527186,1407679682,1378361040,100,100,100,100,2,1.94,1.37,1.39
-43101,39,141,39141,380,175,710726,708656,380,175,710726,708656,78064,32148,1794925534,1784988075,100,100,100,100,0.49,0.54,0.04,0.04
-43102,39,045,39045,4161,1603,146300005,146098574,4512,1755,153997703,153794817,146156,58687,1317168163,1306418559,92.22,91.34,95,95,2.85,2.73,11.11,11.18
-43102,39,073,39073,241,113,5612874,5612874,4512,1755,153997703,153794817,29380,13417,1097191605,1091222019,5.34,6.44,3.64,3.65,0.82,0.84,0.51,0.51
-43102,39,129,39129,110,39,2084824,2083369,4512,1755,153997703,153794817,55698,21275,1311965339,1298414026,2.44,2.22,1.35,1.35,0.2,0.18,0.16,0.16
-43103,39,129,39129,10697,4280,218302727,216793129,10697,4280,218302727,216793129,55698,21275,1311965339,1298414026,100,100,100,100,19.21,20.12,16.64,16.7
-43105,39,045,39045,8147,3261,148437372,148398547,8147,3261,148437372,148398547,146156,58687,1317168163,1306418559,100,100,100,100,5.57,5.56,11.27,11.36
-43106,39,047,39047,1685,659,102423764,102423764,1685,659,102423764,102423764,29030,12693,1054163967,1052458662,100,100,100,100,5.8,5.19,9.72,9.73
-43107,39,045,39045,3005,1220,66058242,65493698,3153,1279,78204968,77586425,146156,58687,1317168163,1306418559,95.31,95.39,84.47,84.41,2.06,2.08,5.02,5.01
-43107,39,073,39073,86,36,8453808,8403343,3153,1279,78204968,77586425,29380,13417,1097191605,1091222019,2.73,2.81,10.81,10.83,0.29,0.27,0.77,0.77
-43107,39,127,39127,62,23,3692918,3689384,3153,1279,78204968,77586425,36058,15211,1068336290,1056641254,1.97,1.8,4.72,4.76,0.17,0.15,0.35,0.35
-43109,39,049,39049,118,44,407981,402740,118,44,407981,402740,1163414,527186,1407679682,1378361040,100,100,100,100,0.01,0.01,0.03,0.03
-43110,39,045,39045,7349,2695,81834743,81791966,33847,14308,130838639,130039952,146156,58687,1317168163,1306418559,21.71,18.84,62.55,62.9,5.03,4.59,6.21,6.26
-43110,39,049,39049,26457,11591,47688016,46932195,33847,14308,130838639,130039952,1163414,527186,1407679682,1378361040,78.17,81.01,36.45,36.09,2.27,2.2,3.39,3.4
-43110,39,129,39129,41,22,1315880,1315791,33847,14308,130838639,130039952,55698,21275,1311965339,1298414026,0.12,0.15,1.01,1.01,0.07,0.1,0.1,0.1
-43111,39,073,39073,225,93,1047276,1041442,225,93,1047276,1041442,29380,13417,1097191605,1091222019,100,100,100,100,0.77,0.69,0.1,0.1
-43112,39,045,39045,4617,1775,90434595,90292869,4617,1775,90434595,90292869,146156,58687,1317168163,1306418559,100,100,100,100,3.16,3.02,6.87,6.91
-43113,39,045,39045,98,37,2010224,2010224,23717,10077,429617276,426008147,146156,58687,1317168163,1306418559,0.41,0.37,0.47,0.47,0.07,0.06,0.15,0.15
-43113,39,129,39129,23619,10040,427607052,423997923,23717,10077,429617276,426008147,55698,21275,1311965339,1298414026,99.59,99.63,99.53,99.53,42.41,47.19,32.59,32.66
-43115,39,129,39129,149,61,26386858,26236366,1321,541,124333007,124152219,55698,21275,1311965339,1298414026,11.28,11.28,21.22,21.13,0.27,0.29,2.01,2.02
-43115,39,141,39141,1172,480,97946149,97915853,1321,541,124333007,124152219,78064,32148,1794925534,1784988075,88.72,88.72,78.78,78.87,1.5,1.49,5.46,5.49
-43116,39,129,39129,1448,487,2555790,2555790,1448,487,2555790,2555790,55698,21275,1311965339,1298414026,100,100,100,100,2.6,2.29,0.19,0.2
-43117,39,129,39129,73,28,50516,50516,73,28,50516,50516,55698,21275,1311965339,1298414026,100,100,100,100,0.13,0.13,0,0
-43119,39,049,39049,27104,10313,73708543,72888161,27698,10560,83159344,82337436,1163414,527186,1407679682,1378361040,97.86,97.66,88.64,88.52,2.33,1.96,5.24,5.29
-43119,39,097,39097,594,247,9450801,9449275,27698,10560,83159344,82337436,43435,15939,1208565321,1206610780,2.14,2.34,11.36,11.48,1.37,1.55,0.78,0.78
-43123,39,049,39049,58424,23657,155875226,154159531,58424,23657,155875226,154159531,1163414,527186,1407679682,1378361040,100,100,100,100,5.02,4.49,11.07,11.18
-43125,39,049,39049,12022,5493,72056016,70422150,12161,5539,83068439,81381979,1163414,527186,1407679682,1378361040,98.86,99.17,86.74,86.53,1.03,1.04,5.12,5.11
-43125,39,129,39129,139,46,11012423,10959829,12161,5539,83068439,81381979,55698,21275,1311965339,1298414026,1.14,0.83,13.26,13.47,0.25,0.22,0.84,0.84
-43126,39,049,39049,326,150,1222588,1193664,326,150,1222588,1193664,1163414,527186,1407679682,1378361040,100,100,100,100,0.03,0.03,0.09,0.09
-43127,39,073,39073,283,114,1567003,1499575,283,114,1567003,1499575,29380,13417,1097191605,1091222019,100,100,100,100,0.96,0.85,0.14,0.14
-43128,39,047,39047,2309,1039,123326509,123200073,2309,1039,123326509,123200073,29030,12693,1054163967,1052458662,100,100,100,100,7.95,8.19,11.7,11.71
-43130,39,045,39045,59570,25262,421215730,419283829,59570,25262,421215730,419283829,146156,58687,1317168163,1306418559,100,100,100,100,40.76,43.05,31.98,32.09
-43135,39,073,39073,3131,1470,189104692,188688094,4445,2014,247297528,246847633,29380,13417,1097191605,1091222019,70.44,72.99,76.47,76.44,10.66,10.96,17.24,17.29
-43135,39,129,39129,625,246,28261244,28227947,4445,2014,247297528,246847633,55698,21275,1311965339,1298414026,14.06,12.21,11.43,11.44,1.12,1.16,2.15,2.17
-43135,39,141,39141,589,250,21535191,21535191,4445,2014,247297528,246847633,78064,32148,1794925534,1784988075,13.25,12.41,8.71,8.72,0.75,0.78,1.2,1.21
-43135,39,163,39163,100,48,8396401,8396401,4445,2014,247297528,246847633,13435,6291,1074789855,1068008560,2.25,2.38,3.4,3.4,0.74,0.76,0.78,0.79
-43136,39,045,39045,460,226,719125,719125,460,226,719125,719125,146156,58687,1317168163,1306418559,100,100,100,100,0.31,0.39,0.05,0.06
-43137,39,049,39049,1016,436,43500426,39759266,2388,1087,81830002,77486237,1163414,527186,1407679682,1378361040,42.55,40.11,53.16,51.31,0.09,0.08,3.09,2.88
-43137,39,129,39129,1372,651,38329576,37726971,2388,1087,81830002,77486237,55698,21275,1311965339,1298414026,57.45,59.89,46.84,48.69,2.46,3.06,2.92,2.91
-43138,39,073,39073,17962,8068,432545476,429428796,18437,8270,459671395,456489986,29380,13417,1097191605,1091222019,97.42,97.56,94.1,94.07,61.14,60.13,39.42,39.35
-43138,39,127,39127,416,174,24793437,24735251,18437,8270,459671395,456489986,36058,15211,1068336290,1056641254,2.26,2.1,5.39,5.42,1.15,1.14,2.32,2.34
-43138,39,163,39163,59,28,2332482,2325939,18437,8270,459671395,456489986,13435,6291,1074789855,1068008560,0.32,0.34,0.51,0.51,0.44,0.45,0.22,0.22
-43140,39,023,39023,54,22,5953556,5932848,24066,8189,577294947,575490587,138333,61419,1042539696,1029450254,0.22,0.27,1.03,1.03,0.04,0.04,0.57,0.58
-43140,39,049,39049,359,139,10356762,10320118,24066,8189,577294947,575490587,1163414,527186,1407679682,1378361040,1.49,1.7,1.79,1.79,0.03,0.03,0.74,0.75
-43140,39,097,39097,23653,8028,560984629,559237621,24066,8189,577294947,575490587,43435,15939,1208565321,1206610780,98.28,98.03,97.17,97.18,54.46,50.37,46.42,46.35
-43142,39,047,39047,111,54,202223,202223,111,54,202223,202223,29030,12693,1054163967,1052458662,100,100,100,100,0.38,0.43,0.02,0.02
-43143,39,047,39047,715,291,62897856,62311640,5694,2433,347719288,344230264,29030,12693,1054163967,1052458662,12.56,11.96,18.09,18.1,2.46,2.29,5.97,5.92
-43143,39,097,39097,3504,1563,178853765,178846749,5694,2433,347719288,344230264,43435,15939,1208565321,1206610780,61.54,64.24,51.44,51.96,8.07,9.81,14.8,14.82
-43143,39,129,39129,1475,579,105967667,103071875,5694,2433,347719288,344230264,55698,21275,1311965339,1298414026,25.9,23.8,30.48,29.94,2.65,2.72,8.08,7.94
-43144,39,073,39073,477,229,18249332,18194634,477,229,18249332,18194634,29380,13417,1097191605,1091222019,100,100,100,100,1.62,1.71,1.66,1.67
-43145,39,047,39047,697,303,67097612,67094894,1918,836,141953727,139605418,29030,12693,1054163967,1052458662,36.34,36.24,47.27,48.06,2.4,2.39,6.37,6.38
-43145,39,129,39129,1221,533,74856115,72510524,1918,836,141953727,139605418,55698,21275,1311965339,1298414026,63.66,63.76,52.73,51.94,2.19,2.51,5.71,5.58
-43146,39,049,39049,1890,717,41232716,40767903,12369,3389,208844999,206731981,1163414,527186,1407679682,1378361040,15.28,21.16,19.74,19.72,0.16,0.14,2.93,2.96
-43146,39,097,39097,31,12,813951,813951,12369,3389,208844999,206731981,43435,15939,1208565321,1206610780,0.25,0.35,0.39,0.39,0.07,0.08,0.07,0.07
-43146,39,129,39129,10448,2660,166798332,165150127,12369,3389,208844999,206731981,55698,21275,1311965339,1298414026,84.47,78.49,79.87,79.89,18.76,12.5,12.71,12.72
-43147,39,045,39045,38259,13658,74504007,74421560,38440,13728,75594702,75511140,146156,58687,1317168163,1306418559,99.53,99.49,98.56,98.56,26.18,23.27,5.66,5.7
-43147,39,049,39049,22,7,277006,275891,38440,13728,75594702,75511140,1163414,527186,1407679682,1378361040,0.06,0.05,0.37,0.37,0,0,0.02,0.02
-43147,39,089,39089,159,63,813689,813689,38440,13728,75594702,75511140,166492,69291,1780594237,1767667183,0.41,0.46,1.08,1.08,0.1,0.09,0.05,0.05
-43148,39,045,39045,2118,839,60213841,60132694,2220,880,64411973,64330826,146156,58687,1317168163,1306418559,95.41,95.34,93.48,93.47,1.45,1.43,4.57,4.6
-43148,39,127,39127,102,41,4198132,4198132,2220,880,64411973,64330826,36058,15211,1068336290,1056641254,4.59,4.66,6.52,6.53,0.28,0.27,0.39,0.4
-43149,39,073,39073,2552,1197,141944795,141655526,2552,1197,141944795,141655526,29380,13417,1097191605,1091222019,100,100,100,100,8.69,8.92,12.94,12.98
-43150,39,045,39045,1687,638,42635310,41753041,2482,943,69920128,68583123,146156,58687,1317168163,1306418559,67.97,67.66,60.98,60.88,1.15,1.09,3.24,3.2
-43150,39,127,39127,795,305,27284818,26830082,2482,943,69920128,68583123,36058,15211,1068336290,1056641254,32.03,32.34,39.02,39.12,2.2,2.01,2.55,2.54
-43151,39,097,39097,322,127,753044,753044,322,127,753044,753044,43435,15939,1208565321,1206610780,100,100,100,100,0.74,0.8,0.06,0.06
-43152,39,073,39073,843,467,92858800,92551646,921,525,113088705,112652153,29380,13417,1097191605,1091222019,91.53,88.95,82.11,82.16,2.87,3.48,8.46,8.48
-43152,39,163,39163,78,58,20229905,20100507,921,525,113088705,112652153,13435,6291,1074789855,1068008560,8.47,11.05,17.89,17.84,0.58,0.92,1.88,1.88
-43153,39,023,39023,96,32,18691723,18687792,971,393,136617473,136611420,138333,61419,1042539696,1029450254,9.89,8.14,13.68,13.68,0.07,0.05,1.79,1.82
-43153,39,047,39047,50,24,11814174,11814174,971,393,136617473,136611420,29030,12693,1054163967,1052458662,5.15,6.11,8.65,8.65,0.17,0.19,1.12,1.12
-43153,39,057,39057,16,10,5840187,5838065,971,393,136617473,136611420,161573,68241,1078096806,1071554325,1.65,2.54,4.27,4.27,0.01,0.01,0.54,0.54
-43153,39,097,39097,809,327,100271389,100271389,971,393,136617473,136611420,43435,15939,1208565321,1206610780,83.32,83.21,73.4,73.4,1.86,2.05,8.3,8.31
-43154,39,045,39045,2293,873,40343978,40315502,3150,1187,64337461,64162560,146156,58687,1317168163,1306418559,72.79,73.55,62.71,62.83,1.57,1.49,3.06,3.09
-43154,39,129,39129,857,314,23993483,23847058,3150,1187,64337461,64162560,55698,21275,1311965339,1298414026,27.21,26.45,37.29,37.17,1.54,1.48,1.83,1.84
-43155,39,045,39045,1672,696,48130985,47686141,2543,1352,79519273,78389965,146156,58687,1317168163,1306418559,65.75,51.48,60.53,60.83,1.14,1.19,3.65,3.65
-43155,39,073,39073,871,656,31388288,30703824,2543,1352,79519273,78389965,29380,13417,1097191605,1091222019,34.25,48.52,39.47,39.17,2.96,4.89,2.86,2.81
-43156,39,129,39129,242,97,876419,876419,242,97,876419,876419,55698,21275,1311965339,1298414026,100,100,100,100,0.43,0.46,0.07,0.07
-43157,39,045,39045,610,240,893298,893298,610,240,893298,893298,146156,58687,1317168163,1306418559,100,100,100,100,0.42,0.41,0.07,0.07
-43158,39,073,39073,268,113,5304733,5281738,268,113,5304733,5281738,29380,13417,1097191605,1091222019,100,100,100,100,0.91,0.84,0.48,0.48
-43160,39,047,39047,22141,9798,533928772,533238807,22305,9866,557685729,556995764,29030,12693,1054163967,1052458662,99.26,99.31,95.74,95.73,76.27,77.19,50.65,50.67
-43160,39,141,39141,164,68,23756957,23756957,22305,9866,557685729,556995764,78064,32148,1794925534,1784988075,0.74,0.69,4.26,4.27,0.21,0.21,1.32,1.33
-43162,39,097,39097,6926,2796,121014283,120911012,6926,2796,121014283,120911012,43435,15939,1208565321,1206610780,100,100,100,100,15.95,17.54,10.01,10.02
-43164,39,129,39129,2129,814,132658959,132124014,2203,845,146422426,145886975,55698,21275,1311965339,1298414026,96.64,96.33,90.6,90.57,3.82,3.83,10.11,10.18
-43164,39,141,39141,74,31,13763467,13762961,2203,845,146422426,145886975,78064,32148,1794925534,1784988075,3.36,3.67,9.4,9.43,0.09,0.1,0.77,0.77
-43201,39,049,39049,35495,16214,7984292,7984237,35495,16214,7984292,7984237,1163414,527186,1407679682,1378361040,100,100,100,100,3.05,3.08,0.57,0.58
-43202,39,049,39049,20251,10613,6655247,6501622,20251,10613,6655247,6501622,1163414,527186,1407679682,1378361040,100,100,100,100,1.74,2.01,0.47,0.47
-43203,39,049,39049,8108,5062,3822175,3822175,8108,5062,3822175,3822175,1163414,527186,1407679682,1378361040,100,100,100,100,0.7,0.96,0.27,0.28
-43204,39,049,39049,42104,18901,24127645,23307543,42104,18901,24127645,23307543,1163414,527186,1407679682,1378361040,100,100,100,100,3.62,3.59,1.71,1.69
-43205,39,049,39049,12272,7306,6196966,6144054,12272,7306,6196966,6144054,1163414,527186,1407679682,1378361040,100,100,100,100,1.05,1.39,0.44,0.45
-43206,39,049,39049,21864,11995,7782064,7778542,21864,11995,7782064,7778542,1163414,527186,1407679682,1378361040,100,100,100,100,1.88,2.28,0.55,0.56
-43207,39,049,39049,45144,20217,62907791,60393119,45144,20217,62907791,60393119,1163414,527186,1407679682,1378361040,100,100,100,100,3.88,3.83,4.47,4.38
-43209,39,049,39049,27228,12442,16399258,16143071,27228,12442,16399258,16143071,1163414,527186,1407679682,1378361040,100,100,100,100,2.34,2.36,1.16,1.17
-43210,39,049,39049,9432,414,4188831,4003189,9432,414,4188831,4003189,1163414,527186,1407679682,1378361040,100,100,100,100,0.81,0.08,0.3,0.29
-43211,39,049,39049,21600,10338,12251152,12215307,21600,10338,12251152,12215307,1163414,527186,1407679682,1378361040,100,100,100,100,1.86,1.96,0.87,0.89
-43212,39,049,39049,18551,10720,9444670,9279523,18551,10720,9444670,9279523,1163414,527186,1407679682,1378361040,100,100,100,100,1.59,2.03,0.67,0.67
-43213,39,049,39049,30444,15693,23558162,23323368,30444,15693,23558162,23323368,1163414,527186,1407679682,1378361040,100,100,100,100,2.62,2.98,1.67,1.69
-43214,39,049,39049,24650,13169,17636434,17423062,24650,13169,17636434,17423062,1163414,527186,1407679682,1378361040,100,100,100,100,2.12,2.5,1.25,1.26
-43215,39,049,39049,12790,8739,14717449,13139584,12790,8739,14717449,13139584,1163414,527186,1407679682,1378361040,100,100,100,100,1.1,1.66,1.05,0.95
-43217,39,049,39049,2602,903,10630271,10629372,2602,903,10630271,10629372,1163414,527186,1407679682,1378361040,100,100,100,100,0.22,0.17,0.76,0.77
-43219,39,049,39049,27123,12202,43979349,43644505,27123,12202,43979349,43644505,1163414,527186,1407679682,1378361040,100,100,100,100,2.33,2.31,3.12,3.17
-43220,39,049,39049,24989,12419,17999947,17631261,24989,12419,17999947,17631261,1163414,527186,1407679682,1378361040,100,100,100,100,2.15,2.36,1.28,1.28
-43221,39,049,39049,31265,14175,25083399,24192333,31265,14175,25083399,24192333,1163414,527186,1407679682,1378361040,100,100,100,100,2.69,2.69,1.78,1.76
-43222,39,049,39049,4617,2162,3767508,3601555,4617,2162,3767508,3601555,1163414,527186,1407679682,1378361040,100,100,100,100,0.4,0.41,0.27,0.26
-43223,39,049,39049,27366,11046,28206687,26072358,27366,11046,28206687,26072358,1163414,527186,1407679682,1378361040,100,100,100,100,2.35,2.1,2,1.89
-43224,39,049,39049,38699,18466,21779042,21670501,38699,18466,21779042,21670501,1163414,527186,1407679682,1378361040,100,100,100,100,3.33,3.5,1.55,1.57
-43227,39,049,39049,21340,10140,10319208,10295564,21340,10140,10319208,10295564,1163414,527186,1407679682,1378361040,100,100,100,100,1.83,1.92,0.73,0.75
-43228,39,049,39049,50737,23179,52884297,52420883,50737,23179,52884297,52420883,1163414,527186,1407679682,1378361040,100,100,100,100,4.36,4.4,3.76,3.8
-43229,39,049,39049,46347,21920,22982881,22820924,46347,21920,22982881,22820924,1163414,527186,1407679682,1378361040,100,100,100,100,3.98,4.16,1.63,1.66
-43230,39,049,39049,51161,22620,55061534,54205431,51161,22620,55061534,54205431,1163414,527186,1407679682,1378361040,100,100,100,100,4.4,4.29,3.91,3.93
-43231,39,049,39049,19685,8494,11260534,11136142,19685,8494,11260534,11136142,1163414,527186,1407679682,1378361040,100,100,100,100,1.69,1.61,0.8,0.81
-43232,39,049,39049,42201,19307,32282505,31746173,42201,19307,32282505,31746173,1163414,527186,1407679682,1378361040,100,100,100,100,3.63,3.66,2.29,2.3
-43235,39,049,39049,38493,18199,35585112,34933370,38493,18199,35585112,34933370,1163414,527186,1407679682,1378361040,100,100,100,100,3.31,3.45,2.53,2.53
-43240,39,041,39041,3469,1753,6504094,6485598,3469,1753,6504094,6485598,174214,66378,1184477006,1147617685,100,100,100,100,1.99,2.64,0.55,0.57
-43302,39,033,39033,165,74,18944865,18944865,54790,22966,505875336,505276210,43784,20167,1042980203,1040620962,0.3,0.32,3.74,3.75,0.38,0.37,1.82,1.82
-43302,39,101,39101,54605,22884,486376364,485777238,54790,22966,505875336,505276210,66501,27834,1046635455,1045726869,99.66,99.64,96.15,96.14,82.11,82.22,46.47,46.45
-43302,39,159,39159,20,8,554107,554107,54790,22966,505875336,505276210,52300,19429,1131493457,1118175978,0.04,0.03,0.11,0.11,0.04,0.04,0.05,0.05
-43310,39,065,39065,834,358,89478950,89461808,3104,1480,168051635,165973854,32058,13100,1218972653,1218342731,26.87,24.19,53.24,53.9,2.6,2.73,7.34,7.34
-43310,39,091,39091,2270,1122,78572685,76512046,3104,1480,168051635,165973854,45858,23181,1208935411,1187326601,73.13,75.81,46.76,46.1,4.95,4.84,6.5,6.44
-43311,39,091,39091,19240,8440,263799892,263032677,19240,8440,263799892,263032677,45858,23181,1208935411,1187326601,100,100,100,100,41.96,36.41,21.82,22.15
-43314,39,033,39033,81,33,18330429,18330429,3173,1315,144572638,144572638,43784,20167,1042980203,1040620962,2.55,2.51,12.68,12.68,0.18,0.16,1.76,1.76
-43314,39,101,39101,2881,1203,114781106,114781106,3173,1315,144572638,144572638,66501,27834,1046635455,1045726869,90.8,91.48,79.39,79.39,4.33,4.32,10.97,10.98
-43314,39,117,39117,211,79,11461103,11461103,3173,1315,144572638,144572638,34827,14155,1054698028,1051738690,6.65,6.01,7.93,7.93,0.61,0.56,1.09,1.09
-43315,39,101,39101,317,140,20284814,20284814,7046,2877,209964786,209839694,66501,27834,1046635455,1045726869,4.5,4.87,9.66,9.67,0.48,0.5,1.94,1.94
-43315,39,117,39117,6729,2737,189679972,189554880,7046,2877,209964786,209839694,34827,14155,1054698028,1051738690,95.5,95.13,90.34,90.33,19.32,19.34,17.98,18.02
-43316,39,063,39063,23,11,3535435,3535435,6041,2596,186551807,186389151,74782,33174,1382170092,1376210257,0.38,0.42,1.9,1.9,0.03,0.03,0.26,0.26
-43316,39,147,39147,489,192,33464656,33421512,6041,2596,186551807,186389151,56745,24122,1431728267,1427127830,8.09,7.4,17.94,17.93,0.86,0.8,2.34,2.34
-43316,39,175,39175,5529,2393,149551716,149432204,6041,2596,186551807,186389151,22615,9870,1055558812,1053775281,91.52,92.18,80.17,80.17,24.45,24.25,14.17,14.18
-43317,39,117,39117,168,65,539590,521643,168,65,539590,521643,34827,14155,1054698028,1051738690,100,100,100,100,0.48,0.46,0.05,0.05
-43318,39,021,39021,745,301,54164132,54145289,3864,1482,176727387,176558364,40097,16755,1113263113,1110247425,19.28,20.31,30.65,30.67,1.86,1.8,4.87,4.88
-43318,39,091,39091,3119,1181,122563255,122413075,3864,1482,176727387,176558364,45858,23181,1208935411,1187326601,80.72,79.69,69.35,69.33,6.8,5.09,10.14,10.31
-43319,39,091,39091,1038,434,53608554,53576601,1040,436,54223921,54184392,45858,23181,1208935411,1187326601,99.81,99.54,98.87,98.88,2.26,1.87,4.43,4.51
-43319,39,159,39159,2,2,615367,607791,1040,436,54223921,54184392,52300,19429,1131493457,1118175978,0.19,0.46,1.13,1.12,0,0.01,0.05,0.05
-43320,39,117,39117,1588,646,85811494,85811494,1588,646,85811494,85811494,34827,14155,1054698028,1051738690,100,100,100,100,4.56,4.56,8.14,8.16
-43321,39,117,39117,267,118,1846878,1846878,267,118,1846878,1846878,34827,14155,1054698028,1051738690,100,100,100,100,0.77,0.83,0.18,0.18
-43322,39,101,39101,374,155,841990,841990,374,155,841990,841990,66501,27834,1046635455,1045726869,100,100,100,100,0.56,0.56,0.08,0.08
-43323,39,175,39175,680,280,96728019,96250534,680,280,96728019,96250534,22615,9870,1055558812,1053775281,100,100,100,100,3.01,2.84,9.16,9.13
-43324,39,091,39091,2817,1828,78451786,73579796,2817,1828,78451786,73579796,45858,23181,1208935411,1187326601,100,100,100,100,6.14,7.89,6.49,6.2
-43326,39,065,39065,13611,5943,477208029,476874542,13611,5943,477208029,476874542,32058,13100,1218972653,1218342731,100,100,100,100,42.46,45.37,39.15,39.14
-43330,39,175,39175,118,56,279091,279091,118,56,279091,279091,22615,9870,1055558812,1053775281,100,100,100,100,0.52,0.57,0.03,0.03
-43331,39,011,39011,177,65,23040544,23040544,4485,3938,92496852,80440467,45949,19585,1040930421,1039585234,3.95,1.65,24.91,28.64,0.39,0.33,2.21,2.22
-43331,39,065,39065,24,10,4697433,4697433,4485,3938,92496852,80440467,32058,13100,1218972653,1218342731,0.54,0.25,5.08,5.84,0.07,0.08,0.39,0.39
-43331,39,091,39091,4284,3863,64758875,52702490,4485,3938,92496852,80440467,45858,23181,1208935411,1187326601,95.52,98.1,70.01,65.52,9.34,16.66,5.36,4.44
-43332,39,065,39065,176,50,14166932,14141410,2323,919,163852509,163813458,32058,13100,1218972653,1218342731,7.58,5.44,8.65,8.63,0.55,0.38,1.16,1.16
-43332,39,101,39101,2096,849,142064719,142051190,2323,919,163852509,163813458,66501,27834,1046635455,1045726869,90.23,92.38,86.7,86.72,3.15,3.05,13.57,13.58
-43332,39,175,39175,51,20,7620858,7620858,2323,919,163852509,163813458,22615,9870,1055558812,1053775281,2.2,2.18,4.65,4.65,0.23,0.2,0.72,0.72
-43333,39,091,39091,894,350,78809047,78767133,894,350,78809047,78767133,45858,23181,1208935411,1187326601,100,100,100,100,1.95,1.51,6.52,6.63
-43334,39,041,39041,150,62,4451441,4451441,6651,2566,171208861,171057237,174214,66378,1184477006,1147617685,2.26,2.42,2.6,2.6,0.09,0.09,0.38,0.39
-43334,39,117,39117,6501,2504,166757420,166605796,6651,2566,171208861,171057237,34827,14155,1054698028,1051738690,97.74,97.58,97.4,97.4,18.67,17.69,15.81,15.84
-43336,39,091,39091,39,37,208906,208906,39,37,208906,208906,45858,23181,1208935411,1187326601,100,100,100,100,0.09,0.16,0.02,0.02
-43337,39,101,39101,1057,415,76567025,76567025,1108,439,89755258,89721529,66501,27834,1046635455,1045726869,95.4,94.53,85.31,85.34,1.59,1.49,7.32,7.32
-43337,39,175,39175,51,24,13188233,13154504,1108,439,89755258,89721529,22615,9870,1055558812,1053775281,4.6,5.47,14.69,14.66,0.23,0.24,1.25,1.25
-43338,39,117,39117,10489,4489,249927359,248737593,10489,4489,249927359,248737593,34827,14155,1054698028,1051738690,100,100,100,100,30.12,31.71,23.7,23.65
-43340,39,065,39065,1541,568,101466063,101410826,1721,639,124659297,124375623,32058,13100,1218972653,1218342731,89.54,88.89,81.39,81.54,4.81,4.34,8.32,8.32
-43340,39,159,39159,180,71,23193234,22964797,1721,639,124659297,124375623,52300,19429,1131493457,1118175978,10.46,11.11,18.61,18.46,0.34,0.37,2.05,2.05
-43341,39,101,39101,907,374,54787755,54787755,907,374,54787755,54787755,66501,27834,1046635455,1045726869,100,100,100,100,1.36,1.34,5.23,5.24
-43342,39,041,39041,70,32,6412656,6326287,3228,1376,110985837,110626432,174214,66378,1184477006,1147617685,2.17,2.33,5.78,5.72,0.04,0.05,0.54,0.55
-43342,39,101,39101,3103,1325,97944442,97673538,3228,1376,110985837,110626432,66501,27834,1046635455,1045726869,96.13,96.29,88.25,88.29,4.67,4.76,9.36,9.34
-43342,39,159,39159,55,19,6628739,6626607,3228,1376,110985837,110626432,52300,19429,1131493457,1118175978,1.7,1.38,5.97,5.99,0.11,0.1,0.59,0.59
-43343,39,021,39021,158,64,20297202,20297202,1505,609,88519124,88509339,40097,16755,1113263113,1110247425,10.5,10.51,22.93,22.93,0.39,0.38,1.82,1.83
-43343,39,091,39091,1347,545,68221922,68212137,1505,609,88519124,88509339,45858,23181,1208935411,1187326601,89.5,89.49,77.07,77.07,2.94,2.35,5.64,5.75
-43344,39,041,39041,74,30,7399117,7399117,5677,2343,252240448,250575572,174214,66378,1184477006,1147617685,1.3,1.28,2.93,2.95,0.04,0.05,0.62,0.64
-43344,39,101,39101,55,21,2217653,2217347,5677,2343,252240448,250575572,66501,27834,1046635455,1045726869,0.97,0.9,0.88,0.88,0.08,0.08,0.21,0.21
-43344,39,159,39159,5548,2292,242623678,240959108,5677,2343,252240448,250575572,52300,19429,1131493457,1118175978,97.73,97.82,96.19,96.16,10.61,11.8,21.44,21.55
-43345,39,065,39065,535,193,33550422,33550422,920,345,75668801,75668801,32058,13100,1218972653,1218342731,58.15,55.94,44.34,44.34,1.67,1.47,2.75,2.75
-43345,39,091,39091,385,152,42118379,42118379,920,345,75668801,75668801,45858,23181,1208935411,1187326601,41.85,44.06,55.66,55.66,0.84,0.66,3.48,3.55
-43347,39,065,39065,73,29,8383720,8383720,1530,595,76222429,76222429,32058,13100,1218972653,1218342731,4.77,4.87,11,11,0.23,0.22,0.69,0.69
-43347,39,091,39091,1457,566,67838709,67838709,1530,595,76222429,76222429,45858,23181,1208935411,1187326601,95.23,95.13,89,89,3.18,2.44,5.61,5.71
-43348,39,091,39091,1984,1727,6811912,5496193,1984,1727,6811912,5496193,45858,23181,1208935411,1187326601,100,100,100,100,4.33,7.45,0.56,0.46
-43351,39,175,39175,10436,4663,403581171,402536143,10436,4663,403581171,402536143,22615,9870,1055558812,1053775281,100,100,100,100,46.15,47.24,38.23,38.2
-43356,39,041,39041,81,41,9606836,9606836,1103,472,55515016,55450009,174214,66378,1184477006,1147617685,7.34,8.69,17.3,17.33,0.05,0.06,0.81,0.84
-43356,39,101,39101,934,401,40346528,40321807,1103,472,55515016,55450009,66501,27834,1046635455,1045726869,84.68,84.96,72.68,72.72,1.4,1.44,3.85,3.86
-43356,39,117,39117,88,30,5561652,5521366,1103,472,55515016,55450009,34827,14155,1054698028,1051738690,7.98,6.36,10.02,9.96,0.25,0.21,0.53,0.52
-43357,39,021,39021,1002,362,77168803,77057555,4763,1900,177608971,177390620,40097,16755,1113263113,1110247425,21.04,19.05,43.45,43.44,2.5,2.16,6.93,6.94
-43357,39,091,39091,3761,1538,100440168,100333065,4763,1900,177608971,177390620,45858,23181,1208935411,1187326601,78.96,80.95,56.55,56.56,8.2,6.63,8.31,8.45
-43358,39,091,39091,1346,564,80995142,80930044,2521,1011,163544713,162616910,45858,23181,1208935411,1187326601,53.39,55.79,49.52,49.77,2.94,2.43,6.7,6.82
-43358,39,159,39159,1175,447,82549571,81686866,2521,1011,163544713,162616910,52300,19429,1131493457,1118175978,46.61,44.21,50.48,50.23,2.25,2.3,7.3,7.31
-43359,39,175,39175,819,347,61787823,61787823,819,347,61787823,61787823,22615,9870,1055558812,1053775281,100,100,100,100,3.62,3.52,5.85,5.86
-43360,39,091,39091,1593,726,77551479,77420650,1593,726,77551479,77420650,45858,23181,1208935411,1187326601,100,100,100,100,3.47,3.13,6.41,6.52
-43402,39,173,39173,31327,14777,291532662,289332248,31327,14777,291532662,289332248,125488,53376,1607062710,1598552653,100,100,100,100,24.96,27.68,18.14,18.1
-43403,39,173,39173,5004,8,531800,531800,5004,8,531800,531800,125488,53376,1607062710,1598552653,100,100,100,100,3.99,0.01,0.03,0.03
-43406,39,143,39143,83,36,8069564,8069564,1777,764,49565555,49559795,60944,26390,1081856578,1057888420,4.67,4.71,16.28,16.28,0.14,0.14,0.75,0.76
-43406,39,173,39173,1694,728,41495991,41490231,1777,764,49565555,49559795,125488,53376,1607062710,1598552653,95.33,95.29,83.72,83.72,1.35,1.36,2.58,2.6
-43407,39,143,39143,639,256,38078195,38078195,639,256,38078195,38078195,60944,26390,1081856578,1057888420,100,100,100,100,1.05,0.97,3.52,3.6
-43408,39,123,39123,269,111,1696864,1696864,269,111,1696864,1696864,41428,27909,1515306465,660231276,100,100,100,100,0.65,0.4,0.11,0.26
-43410,39,143,39143,10167,4278,122875510,122715984,10403,4371,136080349,135454580,60944,26390,1081856578,1057888420,97.73,97.87,90.3,90.6,16.68,16.21,11.36,11.6
-43410,39,147,39147,236,93,13204839,12738596,10403,4371,136080349,135454580,56745,24122,1431728267,1427127830,2.27,2.13,9.7,9.4,0.42,0.39,0.92,0.89
-43412,39,095,39095,2254,956,44838623,42869098,4362,1796,76762571,74793046,441815,202630,1543313607,882810658,51.67,53.23,58.41,57.32,0.51,0.47,2.91,4.86
-43412,39,123,39123,2108,840,31923948,31923948,4362,1796,76762571,74793046,41428,27909,1515306465,660231276,48.33,46.77,41.59,42.68,5.09,3.01,2.11,4.84
-43413,39,173,39173,1407,534,83486700,83442809,1407,534,83486700,83442809,125488,53376,1607062710,1598552653,100,100,100,100,1.12,1,5.19,5.22
-43416,39,123,39123,2777,1217,60875752,60728737,2891,1265,71467501,71170960,41428,27909,1515306465,660231276,96.06,96.21,85.18,85.33,6.7,4.36,4.02,9.2
-43416,39,143,39143,114,48,10591749,10442223,2891,1265,71467501,71170960,60944,26390,1081856578,1057888420,3.94,3.79,14.82,14.67,0.19,0.18,0.98,0.99
-43420,39,143,39143,30579,13708,359411974,349118440,30579,13708,359411974,349118440,60944,26390,1081856578,1057888420,100,100,100,100,50.18,51.94,33.22,33
-43430,39,123,39123,4570,1911,53786773,53726334,4783,1996,65809302,65677110,41428,27909,1515306465,660231276,95.55,95.74,81.73,81.8,11.03,6.85,3.55,8.14
-43430,39,143,39143,72,28,4904886,4896086,4783,1996,65809302,65677110,60944,26390,1081856578,1057888420,1.51,1.4,7.45,7.45,0.12,0.11,0.45,0.46
-43430,39,173,39173,141,57,7117643,7054690,4783,1996,65809302,65677110,125488,53376,1607062710,1598552653,2.95,2.86,10.82,10.74,0.11,0.11,0.44,0.44
-43431,39,143,39143,4752,1938,127273109,125730951,4752,1938,127273109,125730951,60944,26390,1081856578,1057888420,100,100,100,100,7.8,7.34,11.76,11.89
-43432,39,123,39123,1366,536,59015444,58970363,1366,536,59015444,58970363,41428,27909,1515306465,660231276,100,100,100,100,3.3,1.92,3.89,8.93
-43433,39,123,39123,95,47,1296347,1296347,95,47,1296347,1296347,41428,27909,1515306465,660231276,100,100,100,100,0.23,0.17,0.09,0.2
-43434,39,095,39095,101,48,54927,54927,101,48,54927,54927,441815,202630,1543313607,882810658,100,100,100,100,0.02,0.02,0,0.01
-43435,39,143,39143,1532,631,92914171,92914171,1532,631,92914171,92914171,60944,26390,1081856578,1057888420,100,100,100,100,2.51,2.39,8.59,8.78
-43437,39,173,39173,427,173,2606248,2606248,427,173,2606248,2606248,125488,53376,1607062710,1598552653,100,100,100,100,0.34,0.32,0.16,0.16
-43438,39,043,39043,312,859,11476257,11261424,312,859,11476257,11261424,77079,37845,1621299243,651531963,100,100,100,100,0.4,2.27,0.71,1.73
-43439,39,123,39123,113,48,143257,143257,113,48,143257,143257,41428,27909,1515306465,660231276,100,100,100,100,0.27,0.17,0.01,0.02
-43440,39,123,39123,4875,6309,48275710,41688027,4875,6309,48275710,41688027,41428,27909,1515306465,660231276,100,100,100,100,11.77,22.61,3.19,6.31
-43442,39,143,39143,999,434,44968825,44948251,999,434,44968825,44948251,60944,26390,1081856578,1057888420,100,100,100,100,1.64,1.64,4.16,4.25
-43443,39,173,39173,1834,720,30308749,30284706,1834,720,30308749,30284706,125488,53376,1607062710,1598552653,100,100,100,100,1.46,1.35,1.89,1.89
-43445,39,095,39095,163,76,9261676,8995800,1161,457,49169424,48903548,441815,202630,1543313607,882810658,14.04,16.63,18.84,18.39,0.04,0.04,0.6,1.02
-43445,39,123,39123,998,381,39907748,39907748,1161,457,49169424,48903548,41428,27909,1515306465,660231276,85.96,83.37,81.16,81.61,2.41,1.37,2.63,6.04
-43446,39,123,39123,25,384,3319252,3259255,25,384,3319252,3259255,41428,27909,1515306465,660231276,100,100,100,100,0.06,1.38,0.22,0.49
-43447,39,123,39123,612,247,12073826,12073826,3450,1449,43845022,43750681,41428,27909,1515306465,660231276,17.74,17.05,27.54,27.6,1.48,0.89,0.8,1.83
-43447,39,173,39173,2838,1202,31771196,31676855,3450,1449,43845022,43750681,125488,53376,1607062710,1598552653,82.26,82.95,72.46,72.4,2.26,2.25,1.98,1.98
-43449,39,123,39123,8171,4243,224257317,213282474,8278,4288,230123683,219141615,41428,27909,1515306465,660231276,98.71,98.95,97.45,97.33,19.72,15.2,14.8,32.3
-43449,39,143,39143,107,45,5866366,5859141,8278,4288,230123683,219141615,60944,26390,1081856578,1057888420,1.29,1.05,2.55,2.67,0.18,0.17,0.54,0.55
-43450,39,173,39173,3619,1523,110454303,110444469,3619,1523,110454303,110444469,125488,53376,1607062710,1598552653,100,100,100,100,2.88,2.85,6.87,6.91
-43451,39,173,39173,1119,454,63569162,63411473,1119,454,63569162,63411473,125488,53376,1607062710,1598552653,100,100,100,100,0.89,0.85,3.96,3.97
-43452,39,123,39123,13811,10200,135221038,121731281,13811,10200,135221038,121731281,41428,27909,1515306465,660231276,100,100,100,100,33.34,36.55,8.92,18.44
-43456,39,123,39123,608,1039,10443954,9444789,608,1039,10443954,9444789,41428,27909,1515306465,660231276,100,100,100,100,1.47,3.72,0.69,1.43
-43457,39,143,39143,355,155,16845798,16845798,1456,601,48033152,48033152,60944,26390,1081856578,1057888420,24.38,25.79,35.07,35.07,0.58,0.59,1.56,1.59
-43457,39,147,39147,33,11,3109112,3109112,1456,601,48033152,48033152,56745,24122,1431728267,1427127830,2.27,1.83,6.47,6.47,0.06,0.05,0.22,0.22
-43457,39,173,39173,1068,435,28078242,28078242,1456,601,48033152,48033152,125488,53376,1607062710,1598552653,73.35,72.38,58.46,58.46,0.85,0.81,1.75,1.76
-43458,39,123,39123,414,178,2613731,2573816,414,178,2613731,2573816,41428,27909,1515306465,660231276,100,100,100,100,1,0.64,0.17,0.39
-43460,39,173,39173,6289,2798,7950275,7158546,6289,2798,7950275,7158546,125488,53376,1607062710,1598552653,100,100,100,100,5.01,5.24,0.49,0.45
-43462,39,173,39173,1163,483,66592467,66526724,1163,483,66592467,66526724,125488,53376,1607062710,1598552653,100,100,100,100,0.93,0.9,4.14,4.16
-43463,39,173,39173,18,12,19415,19415,18,12,19415,19415,125488,53376,1607062710,1598552653,100,100,100,100,0.01,0.02,0,0
-43464,39,043,39043,379,213,5420823,4759249,1460,705,98429993,86139517,77079,37845,1621299243,651531963,25.96,30.21,5.51,5.53,0.49,0.56,0.33,0.73
-43464,39,143,39143,1081,492,93009170,81380268,1460,705,98429993,86139517,60944,26390,1081856578,1057888420,74.04,69.79,94.49,94.47,1.77,1.86,8.6,7.69
-43465,39,173,39173,5059,2550,28661464,28559487,5059,2550,28661464,28559487,125488,53376,1607062710,1598552653,100,100,100,100,4.03,4.78,1.78,1.79
-43466,39,173,39173,2192,880,71873185,71873185,2192,880,71873185,71873185,125488,53376,1607062710,1598552653,100,100,100,100,1.75,1.65,4.47,4.5
-43467,39,173,39173,106,41,898187,898187,106,41,898187,898187,125488,53376,1607062710,1598552653,100,100,100,100,0.08,0.08,0.06,0.06
-43468,39,123,39123,451,147,1861425,1861425,451,147,1861425,1861425,41428,27909,1515306465,660231276,100,100,100,100,1.09,0.53,0.12,0.28
-43469,39,123,39123,165,60,5189778,5189778,3149,1280,59892740,59814791,41428,27909,1515306465,660231276,5.24,4.69,8.67,8.68,0.4,0.21,0.34,0.79
-43469,39,143,39143,2984,1220,54702962,54625013,3149,1280,59892740,59814791,60944,26390,1081856578,1057888420,94.76,95.31,91.33,91.32,4.9,4.62,5.06,5.16
-43501,39,171,39171,788,352,62771536,62578564,788,352,62771536,62578564,37642,16668,1095802579,1090295507,100,100,100,100,2.09,2.11,5.73,5.74
-43502,39,051,39051,6304,2591,139585610,138492675,6933,2834,179152722,178059787,42698,17407,1054712550,1050091407,90.93,91.43,77.91,77.78,14.76,14.88,13.23,13.19
-43502,39,069,39069,610,238,38855466,38855466,6933,2834,179152722,178059787,28215,11963,1087149049,1077461447,8.8,8.4,21.69,21.82,2.16,1.99,3.57,3.61
-43502,39,171,39171,19,5,711646,711646,6933,2834,179152722,178059787,37642,16668,1095802579,1090295507,0.27,0.18,0.4,0.4,0.05,0.03,0.06,0.07
-43504,39,095,39095,1094,453,39699638,39699638,1094,453,39699638,39699638,441815,202630,1543313607,882810658,100,100,100,100,0.25,0.22,2.57,4.5
-43505,39,171,39171,96,49,253920,253920,96,49,253920,253920,37642,16668,1095802579,1090295507,100,100,100,100,0.26,0.29,0.02,0.02
-43506,39,039,39039,535,216,49782034,49782034,14830,6800,264155335,263290967,39037,16729,1072745155,1065675702,3.61,3.18,18.85,18.91,1.37,1.29,4.64,4.67
-43506,39,171,39171,14295,6584,214373301,213508933,14830,6800,264155335,263290967,37642,16668,1095802579,1090295507,96.39,96.82,81.15,81.09,37.98,39.5,19.56,19.58
-43511,39,069,39069,67,29,9320762,9320762,940,392,118187234,118157322,28215,11963,1087149049,1077461447,7.13,7.4,7.89,7.89,0.24,0.24,0.86,0.87
-43511,39,173,39173,873,363,108866472,108836560,940,392,118187234,118157322,125488,53376,1607062710,1598552653,92.87,92.6,92.11,92.11,0.7,0.68,6.77,6.81
-43512,39,039,39039,27617,12085,530933197,524652940,28674,12617,574298402,566493362,39037,16729,1072745155,1065675702,96.31,95.78,92.45,92.61,70.75,72.24,49.49,49.23
-43512,39,069,39069,38,20,7903925,7714477,28674,12617,574298402,566493362,28215,11963,1087149049,1077461447,0.13,0.16,1.38,1.36,0.13,0.17,0.73,0.72
-43512,39,125,39125,1019,512,35461280,34125945,28674,12617,574298402,566493362,19614,8749,1084809596,1078568733,3.55,4.06,6.17,6.02,5.2,5.85,3.27,3.16
-43515,39,051,39051,7979,3228,212176527,211461174,7979,3228,212176527,211461174,42698,17407,1054712550,1050091407,100,100,100,100,18.69,18.54,20.12,20.14
-43516,39,063,39063,21,7,2803369,2803369,2951,1227,182310185,182219701,74782,33174,1382170092,1376210257,0.71,0.57,1.54,1.54,0.03,0.02,0.2,0.2
-43516,39,069,39069,2626,1107,128296788,128206304,2951,1227,182310185,182219701,28215,11963,1087149049,1077461447,88.99,90.22,70.37,70.36,9.31,9.25,11.8,11.9
-43516,39,173,39173,304,113,51210028,51210028,2951,1227,182310185,182219701,125488,53376,1607062710,1598552653,10.3,9.21,28.09,28.1,0.24,0.21,3.19,3.2
-43517,39,039,39039,728,289,68083429,67960676,3744,1549,168592227,167807915,39037,16729,1072745155,1065675702,19.44,18.66,40.38,40.5,1.86,1.73,6.35,6.38
-43517,39,171,39171,3016,1260,100508798,99847239,3744,1549,168592227,167807915,37642,16668,1095802579,1090295507,80.56,81.34,59.62,59.5,8.01,7.56,9.17,9.16
-43518,39,171,39171,2726,1129,177899136,177637378,2726,1129,177899136,177637378,37642,16668,1095802579,1090295507,100,100,100,100,7.24,6.77,16.23,16.29
-43519,39,039,39039,184,78,3346368,3339594,184,78,3346368,3339594,39037,16729,1072745155,1065675702,100,100,100,100,0.47,0.47,0.31,0.31
-43521,39,051,39051,2764,1227,168878781,168015478,2811,1247,173208340,172345037,42698,17407,1054712550,1050091407,98.33,98.4,97.5,97.49,6.47,7.05,16.01,16
-43521,39,171,39171,47,20,4329559,4329559,2811,1247,173208340,172345037,37642,16668,1095802579,1090295507,1.67,1.6,2.5,2.51,0.12,0.12,0.4,0.4
-43522,39,069,39069,35,16,437082,437082,3344,1420,84622587,81943296,28215,11963,1087149049,1077461447,1.05,1.13,0.52,0.53,0.12,0.13,0.04,0.04
-43522,39,095,39095,1520,612,36312064,35040492,3344,1420,84622587,81943296,441815,202630,1543313607,882810658,45.45,43.1,42.91,42.76,0.34,0.3,2.35,3.97
-43522,39,173,39173,1789,792,47873441,46465722,3344,1420,84622587,81943296,125488,53376,1607062710,1598552653,53.5,55.77,56.57,56.7,1.43,1.48,2.98,2.91
-43523,39,069,39069,62,26,3552266,3552266,62,26,3552266,3552266,28215,11963,1087149049,1077461447,100,100,100,100,0.22,0.22,0.33,0.33
-43524,39,069,39069,1236,530,77970558,77957240,1236,530,77970558,77957240,28215,11963,1087149049,1077461447,100,100,100,100,4.38,4.43,7.17,7.24
-43525,39,173,39173,1152,424,2945091,2945091,1152,424,2945091,2945091,125488,53376,1607062710,1598552653,100,100,100,100,0.92,0.79,0.18,0.18
-43526,39,039,39039,5982,2466,188652302,188634539,6072,2504,201147956,201126768,39037,16729,1072745155,1065675702,98.52,98.48,93.79,93.79,15.32,14.74,17.59,17.7
-43526,39,125,39125,90,38,12495654,12492229,6072,2504,201147956,201126768,19614,8749,1084809596,1078568733,1.48,1.52,6.21,6.21,0.46,0.43,1.15,1.16
-43527,39,039,39039,140,59,11260171,11260171,2287,953,136196172,136154245,39037,16729,1072745155,1065675702,6.12,6.19,8.27,8.27,0.36,0.35,1.05,1.06
-43527,39,069,39069,2147,894,124936001,124894074,2287,953,136196172,136154245,28215,11963,1087149049,1077461447,93.88,93.81,91.73,91.73,7.61,7.47,11.49,11.59
-43528,39,095,39095,16430,6806,48258081,48165069,16430,6806,48258081,48165069,441815,202630,1543313607,882810658,100,100,100,100,3.72,3.36,3.13,5.46
-43529,39,173,39173,256,96,1864282,1864282,256,96,1864282,1864282,125488,53376,1607062710,1598552653,100,100,100,100,0.2,0.18,0.12,0.12
-43531,39,171,39171,216,83,446557,446557,216,83,446557,446557,37642,16668,1095802579,1090295507,100,100,100,100,0.57,0.5,0.04,0.04
-43532,39,051,39051,129,56,2584831,2575425,4015,1590,123494274,121044214,42698,17407,1054712550,1050091407,3.21,3.52,2.09,2.13,0.3,0.32,0.25,0.25
-43532,39,069,39069,3822,1511,119068514,116627860,4015,1590,123494274,121044214,28215,11963,1087149049,1077461447,95.19,95.03,96.42,96.35,13.55,12.63,10.95,10.82
-43532,39,095,39095,64,23,1840929,1840929,4015,1590,123494274,121044214,441815,202630,1543313607,882810658,1.59,1.45,1.49,1.52,0.01,0.01,0.12,0.21
-43533,39,051,39051,1553,641,65131934,64828032,1553,641,65131934,64828032,42698,17407,1054712550,1050091407,100,100,100,100,3.64,3.68,6.18,6.17
-43534,39,069,39069,1784,747,96366507,95588369,1784,747,96366507,95588369,28215,11963,1087149049,1077461447,100,100,100,100,6.32,6.24,8.86,8.87
-43535,39,069,39069,757,317,62108155,62108155,757,317,62108155,62108155,28215,11963,1087149049,1077461447,100,100,100,100,2.68,2.65,5.71,5.76
-43536,39,039,39039,394,155,39890394,39890394,394,155,39890394,39890394,39037,16729,1072745155,1065675702,100,100,100,100,1.01,0.93,3.72,3.74
-43537,39,095,39095,27276,11991,49693434,47588260,27276,11991,49693434,47588260,441815,202630,1543313607,882810658,100,100,100,100,6.17,5.92,3.22,5.39
-43540,39,051,39051,1501,579,49222362,49050040,1501,579,49222362,49050040,42698,17407,1054712550,1050091407,100,100,100,100,3.52,3.33,4.67,4.67
-43541,39,173,39173,144,65,1008159,1008159,144,65,1008159,1008159,125488,53376,1607062710,1598552653,100,100,100,100,0.11,0.12,0.06,0.06
-43542,39,095,39095,3591,1282,37644409,37644409,3591,1282,37644409,37644409,441815,202630,1543313607,882810658,100,100,100,100,0.81,0.63,2.44,4.26
-43543,39,171,39171,7771,3634,229462305,227154471,7771,3634,229462305,227154471,37642,16668,1095802579,1090295507,100,100,100,100,20.64,21.8,20.94,20.83
-43545,39,039,39039,23,10,3117042,3117042,14034,6105,350760427,344626794,39037,16729,1072745155,1065675702,0.16,0.16,0.89,0.9,0.06,0.06,0.29,0.29
-43545,39,069,39069,14011,6095,347643385,341509752,14034,6105,350760427,344626794,28215,11963,1087149049,1077461447,99.84,99.84,99.11,99.1,49.66,50.95,31.98,31.7
-43547,39,095,39095,284,118,1121931,1121931,284,118,1121931,1121931,441815,202630,1543313607,882810658,100,100,100,100,0.06,0.06,0.07,0.13
-43548,39,039,39039,47,18,10428269,10428269,700,295,61608924,61608924,39037,16729,1072745155,1065675702,6.71,6.1,16.93,16.93,0.12,0.11,0.97,0.98
-43548,39,069,39069,642,271,50424115,50424115,700,295,61608924,61608924,28215,11963,1087149049,1077461447,91.71,91.86,81.85,81.85,2.28,2.27,4.64,4.68
-43548,39,137,39137,11,6,756540,756540,700,295,61608924,61608924,34499,13731,1254330479,1249725444,1.57,2.03,1.23,1.23,0.03,0.04,0.06,0.06
-43549,39,039,39039,1460,564,78361655,78298927,1460,564,78361655,78298927,39037,16729,1072745155,1065675702,100,100,100,100,3.74,3.37,7.3,7.35
-43551,39,173,39173,37002,16231,208144837,205015415,37002,16231,208144837,205015415,125488,53376,1607062710,1598552653,100,100,100,100,29.49,30.41,12.95,12.83
-43553,39,051,39051,252,94,423935,423935,252,94,423935,423935,42698,17407,1054712550,1050091407,100,100,100,100,0.59,0.54,0.04,0.04
-43554,39,171,39171,2408,1070,89985020,89218877,2408,1070,89985020,89218877,37642,16668,1095802579,1090295507,100,100,100,100,6.4,6.42,8.21,8.18
-43555,39,069,39069,200,94,1063189,1063189,200,94,1063189,1063189,28215,11963,1087149049,1077461447,100,100,100,100,0.71,0.79,0.1,0.1
-43556,39,039,39039,1860,756,82894669,82488280,1860,756,82894669,82488280,39037,16729,1072745155,1065675702,100,100,100,100,4.76,4.52,7.73,7.74
-43557,39,051,39051,55,17,3953549,3952138,3393,1194,114800443,114501988,42698,17407,1054712550,1050091407,1.62,1.42,3.44,3.45,0.13,0.1,0.37,0.38
-43557,39,069,39069,82,34,6626219,6626219,3393,1194,114800443,114501988,28215,11963,1087149049,1077461447,2.42,2.85,5.77,5.79,0.29,0.28,0.61,0.61
-43557,39,171,39171,3256,1143,104220675,103923631,3393,1194,114800443,114501988,37642,16668,1095802579,1090295507,95.96,95.73,90.78,90.76,8.65,6.86,9.51,9.53
-43558,39,051,39051,8802,3527,111213222,110645479,13579,5485,215656327,215009385,42698,17407,1054712550,1050091407,64.82,64.3,51.57,51.46,20.61,20.26,10.54,10.54
-43558,39,095,39095,4777,1958,104443105,104363906,13579,5485,215656327,215009385,441815,202630,1543313607,882810658,35.18,35.7,48.43,48.54,1.08,0.97,6.77,11.82
-43560,39,095,39095,32226,12869,54303756,54111491,32226,12869,54303756,54111491,441815,202630,1543313607,882810658,100,100,100,100,7.29,6.35,3.52,6.13
-43565,39,173,39173,348,154,469978,469978,348,154,469978,469978,125488,53376,1607062710,1598552653,100,100,100,100,0.28,0.29,0.03,0.03
-43566,39,095,39095,7613,3035,53304044,50962435,7613,3035,53304044,50962435,441815,202630,1543313607,882810658,100,100,100,100,1.72,1.5,3.45,5.77
-43567,39,051,39051,13257,5404,291371436,290478574,13283,5416,293677884,292785022,42698,17407,1054712550,1050091407,99.8,99.78,99.21,99.21,31.05,31.04,27.63,27.66
-43567,39,069,39069,26,12,2306448,2306448,13283,5416,293677884,292785022,28215,11963,1087149049,1077461447,0.2,0.22,0.79,0.79,0.09,0.1,0.21,0.21
-43569,39,173,39173,2818,1199,89957919,89951133,2818,1199,89957919,89951133,125488,53376,1607062710,1598552653,100,100,100,100,2.25,2.25,5.6,5.63
-43570,39,051,39051,102,43,10170363,10168457,3106,1382,121010489,120853189,42698,17407,1054712550,1050091407,3.28,3.11,8.4,8.41,0.24,0.25,0.96,0.97
-43570,39,171,39171,3004,1339,110840126,110684732,3106,1382,121010489,120853189,37642,16668,1095802579,1090295507,96.72,96.89,91.6,91.59,7.98,8.03,10.11,10.15
-43571,39,095,39095,6783,2582,55572632,55450662,6783,2582,55572632,55450662,441815,202630,1543313607,882810658,100,100,100,100,1.54,1.27,3.6,6.28
-43604,39,095,39095,10154,5704,7944713,7302262,10154,5704,7944713,7302262,441815,202630,1543313607,882810658,100,100,100,100,2.3,2.81,0.51,0.83
-43605,39,095,39095,28164,12300,20725788,18062105,28346,12398,20915113,18251430,441815,202630,1543313607,882810658,99.36,99.21,99.09,98.96,6.37,6.07,1.34,2.05
-43605,39,173,39173,182,98,189325,189325,28346,12398,20915113,18251430,125488,53376,1607062710,1598552653,0.64,0.79,0.91,1.04,0.15,0.18,0.01,0.01
-43606,39,095,39095,26429,11822,16897543,16890097,26429,11822,16897543,16890097,441815,202630,1543313607,882810658,100,100,100,100,5.98,5.83,1.09,1.91
-43607,39,095,39095,23958,12177,18642542,18632364,23958,12177,18642542,18632364,441815,202630,1543313607,882810658,100,100,100,100,5.42,6.01,1.21,2.11
-43608,39,095,39095,16515,7374,9389658,9389658,16515,7374,9389658,9389658,441815,202630,1543313607,882810658,100,100,100,100,3.74,3.64,0.61,1.06
-43609,39,095,39095,23687,11031,15735844,13550128,23687,11031,15735844,13550128,441815,202630,1543313607,882810658,100,100,100,100,5.36,5.44,1.02,1.53
-43610,39,095,39095,5105,2699,3273343,3273343,5105,2699,3273343,3273343,441815,202630,1543313607,882810658,100,100,100,100,1.16,1.33,0.21,0.37
-43611,39,095,39095,19207,9003,26213959,18024687,19207,9003,26213959,18024687,441815,202630,1543313607,882810658,100,100,100,100,4.35,4.44,1.7,2.04
-43612,39,095,39095,29674,13770,30359070,29953194,29674,13770,30359070,29953194,441815,202630,1543313607,882810658,100,100,100,100,6.72,6.8,1.97,3.39
-43613,39,095,39095,31635,14630,15889270,15889270,31635,14630,15889270,15889270,441815,202630,1543313607,882810658,100,100,100,100,7.16,7.22,1.03,1.8
-43614,39,095,39095,29290,14667,24310769,23384827,29290,14667,24310769,23384827,441815,202630,1543313607,882810658,100,100,100,100,6.63,7.24,1.58,2.65
-43615,39,095,39095,39441,19696,42065162,42012619,39441,19696,42065162,42012619,441815,202630,1543313607,882810658,100,100,100,100,8.93,9.72,2.73,4.76
-43616,39,095,39095,20873,8990,108640876,103700398,20873,8990,108640876,103700398,441815,202630,1543313607,882810658,100,100,100,100,4.72,4.44,7.04,11.75
-43617,39,095,39095,7500,2940,14179955,14179955,7500,2940,14179955,14179955,441815,202630,1543313607,882810658,100,100,100,100,1.7,1.45,0.92,1.61
-43619,39,173,39173,7499,3028,29246505,29138849,7499,3028,29246505,29138849,125488,53376,1607062710,1598552653,100,100,100,100,5.98,5.67,1.82,1.82
-43620,39,095,39095,5858,3335,2828868,2828868,5858,3335,2828868,2828868,441815,202630,1543313607,882810658,100,100,100,100,1.33,1.65,0.18,0.32
-43623,39,095,39095,20149,9683,17448062,17417566,20149,9683,17448062,17417566,441815,202630,1543313607,882810658,100,100,100,100,4.56,4.78,1.13,1.97
-43701,39,119,39119,55643,25406,474431494,467062207,55643,25406,474431494,467062207,86074,38074,1741982324,1721250930,100,100,100,100,64.65,66.73,27.24,27.14
-43711,39,121,39121,91,42,551558,551042,91,42,551558,551042,14645,6053,1047833209,1030846973,100,100,100,100,0.62,0.69,0.05,0.05
-43713,39,013,39013,7487,3417,241060214,237831225,7487,3417,241060214,237831225,70400,32452,1401892204,1378206525,100,100,100,100,10.63,10.53,17.2,17.26
-43716,39,013,39013,374,202,49103879,48580617,1973,1012,177005121,176451564,70400,32452,1401892204,1378206525,18.96,19.96,27.74,27.53,0.53,0.62,3.5,3.52
-43716,39,111,39111,1599,810,127901242,127870947,1973,1012,177005121,176451564,14642,7567,1184810655,1180312425,81.04,80.04,72.26,72.47,10.92,10.7,10.8,10.83
-43717,39,121,39121,164,81,706258,706258,164,81,706258,706258,14645,6053,1047833209,1030846973,100,100,100,100,1.12,1.34,0.07,0.07
-43718,39,013,39013,3209,1407,139535430,138001211,3209,1407,139535430,138001211,70400,32452,1401892204,1378206525,100,100,100,100,4.56,4.34,9.95,10.01
-43719,39,013,39013,2601,1296,97702878,96679412,2601,1296,97702878,96679412,70400,32452,1401892204,1378206525,100,100,100,100,3.69,3.99,6.97,7.01
-43720,39,119,39119,1300,729,119005994,117582633,1300,729,119005994,117582633,86074,38074,1741982324,1721250930,100,100,100,100,1.51,1.91,6.83,6.83
-43721,39,089,39089,149,72,988256,985834,149,72,988256,985834,166492,69291,1780594237,1767667183,100,100,100,100,0.09,0.1,0.06,0.06
-43722,39,059,39059,420,229,1935118,1935118,420,229,1935118,1935118,40087,19193,1368297033,1352631007,100,100,100,100,1.05,1.19,0.14,0.14
-43723,39,059,39059,4984,2263,46066356,45872482,4984,2263,46066356,45872482,40087,19193,1368297033,1352631007,100,100,100,100,12.43,11.79,3.37,3.39
-43724,39,115,39115,43,46,18988822,18765638,9201,3155,404640876,401853958,15054,7892,1092413164,1078531138,0.47,1.46,4.69,4.67,0.29,0.58,1.74,1.74
-43724,39,121,39121,9158,3109,385652054,383088320,9201,3155,404640876,401853958,14645,6053,1047833209,1030846973,99.53,98.54,95.31,95.33,62.53,51.36,36.8,37.16
-43725,39,059,39059,20357,9612,351981461,345645708,20357,9612,351981461,345645708,40087,19193,1368297033,1352631007,100,100,100,100,50.78,50.08,25.72,25.55
-43727,39,119,39119,1473,653,196258968,194813494,1473,653,196258968,194813494,86074,38074,1741982324,1721250930,100,100,100,100,1.71,1.72,11.27,11.32
-43728,39,009,39009,13,15,3292346,3281710,1250,604,96790168,96586277,64757,26385,1316856020,1304313482,1.04,2.48,3.4,3.4,0.02,0.06,0.25,0.25
-43728,39,115,39115,1237,589,93497822,93304567,1250,604,96790168,96586277,15054,7892,1092413164,1078531138,98.96,97.52,96.6,96.6,8.22,7.46,8.56,8.65
-43730,39,127,39127,2503,1098,120819428,120146626,2503,1098,120819428,120146626,36058,15211,1068336290,1056641254,100,100,100,100,6.94,7.22,11.31,11.37
-43731,39,115,39115,860,358,54412707,54215440,5461,2319,132992621,131752532,15054,7892,1092413164,1078531138,15.75,15.44,40.91,41.15,5.71,4.54,4.98,5.03
-43731,39,127,39127,4601,1961,78579914,77537092,5461,2319,132992621,131752532,36058,15211,1068336290,1056641254,84.25,84.56,59.09,58.85,12.76,12.89,7.36,7.34
-43732,39,059,39059,1308,605,91297711,91200649,1703,807,194762078,192361699,40087,19193,1368297033,1352631007,76.81,74.97,46.88,47.41,3.26,3.15,6.67,6.74
-43732,39,119,39119,62,41,33964406,33169346,1703,807,194762078,192361699,86074,38074,1741982324,1721250930,3.64,5.08,17.44,17.24,0.07,0.11,1.95,1.93
-43732,39,121,39121,333,161,69499961,67991704,1703,807,194762078,192361699,14645,6053,1047833209,1030846973,19.55,19.95,35.68,35.35,2.27,2.66,6.63,6.6
-43733,39,059,39059,95,39,2389842,2389842,95,39,2389842,2389842,40087,19193,1368297033,1352631007,100,100,100,100,0.24,0.2,0.17,0.18
-43734,39,119,39119,1171,501,10095772,9896004,1171,501,10095772,9896004,86074,38074,1741982324,1721250930,100,100,100,100,1.36,1.32,0.58,0.57
-43735,39,119,39119,499,196,4367178,4045917,499,196,4367178,4045917,86074,38074,1741982324,1721250930,100,100,100,100,0.58,0.51,0.25,0.24
-43736,39,059,39059,55,37,267885,267885,55,37,267885,267885,40087,19193,1368297033,1352631007,100,100,100,100,0.14,0.19,0.02,0.02
-43738,39,119,39119,164,63,380763,380763,164,63,380763,380763,86074,38074,1741982324,1721250930,100,100,100,100,0.19,0.17,0.02,0.02
-43739,39,089,39089,728,276,31232045,31178818,2025,768,82861545,82524623,166492,69291,1780594237,1767667183,35.95,35.94,37.69,37.78,0.44,0.4,1.75,1.76
-43739,39,127,39127,1297,492,51629500,51345805,2025,768,82861545,82524623,36058,15211,1068336290,1056641254,64.05,64.06,62.31,62.22,3.6,3.23,4.83,4.86
-43740,39,089,39089,168,74,838052,838052,256,115,976400,976400,166492,69291,1780594237,1767667183,65.63,64.35,85.83,85.83,0.1,0.11,0.05,0.05
-43740,39,119,39119,88,41,138348,138348,256,115,976400,976400,86074,38074,1741982324,1721250930,34.38,35.65,14.17,14.17,0.1,0.11,0.01,0.01
-43746,39,089,39089,127,50,6137571,6121677,1425,585,54484464,54441334,166492,69291,1780594237,1767667183,8.91,8.55,11.26,11.24,0.08,0.07,0.34,0.35
-43746,39,119,39119,1298,535,48346893,48319657,1425,585,54484464,54441334,86074,38074,1741982324,1721250930,91.09,91.45,88.74,88.76,1.51,1.41,2.78,2.81
-43747,39,013,39013,384,166,43999514,43720764,1083,474,82109309,81803119,70400,32452,1401892204,1378206525,35.46,35.02,53.59,53.45,0.55,0.51,3.14,3.17
-43747,39,111,39111,699,308,38109795,38082355,1083,474,82109309,81803119,14642,7567,1184810655,1180312425,64.54,64.98,46.41,46.55,4.77,4.07,3.22,3.23
-43748,39,127,39127,2755,1093,93422922,92571227,2755,1093,93422922,92571227,36058,15211,1068336290,1056641254,100,100,100,100,7.64,7.19,8.74,8.76
-43749,39,031,39031,128,70,29926113,29824773,2339,1217,260735677,255373146,36901,16545,1469773983,1460529028,5.47,5.75,11.48,11.68,0.35,0.42,2.04,2.04
-43749,39,059,39059,2178,1134,229731231,224470040,2339,1217,260735677,255373146,40087,19193,1368297033,1352631007,93.12,93.18,88.11,87.9,5.43,5.91,16.79,16.6
-43749,39,157,39157,33,13,1078333,1078333,2339,1217,260735677,255373146,92582,40206,1480050729,1470169796,1.41,1.07,0.41,0.42,0.04,0.03,0.07,0.07
-43750,39,059,39059,164,75,2802526,2794761,164,75,2802526,2794761,40087,19193,1368297033,1352631007,100,100,100,100,0.41,0.39,0.2,0.21
-43754,39,111,39111,1542,837,193730723,193716825,1542,837,193730723,193716825,14642,7567,1184810655,1180312425,100,100,100,100,10.53,11.06,16.35,16.41
-43755,39,059,39059,1620,787,92496953,91972875,1620,787,92496953,91972875,40087,19193,1368297033,1352631007,100,100,100,100,4.04,4.1,6.76,6.8
-43756,39,115,39115,5320,2841,375519685,369009487,5320,2841,375519685,369009487,15054,7892,1092413164,1078531138,100,100,100,100,35.34,36,34.38,34.21
-43758,39,115,39115,3315,1689,227161356,225522545,3315,1689,227161356,225522545,15054,7892,1092413164,1078531138,100,100,100,100,22.02,21.4,20.79,20.91
-43759,39,013,39013,66,34,362374,361834,66,34,362374,361834,70400,32452,1401892204,1378206525,100,100,100,100,0.09,0.1,0.03,0.03
-43760,39,089,39089,102,43,6659116,6644574,1831,730,89947480,89794213,166492,69291,1780594237,1767667183,5.57,5.89,7.4,7.4,0.06,0.06,0.37,0.38
-43760,39,119,39119,578,229,30555575,30547723,1831,730,89947480,89794213,86074,38074,1741982324,1721250930,31.57,31.37,33.97,34.02,0.67,0.6,1.75,1.77
-43760,39,127,39127,1151,458,52732789,52601916,1831,730,89947480,89794213,36058,15211,1068336290,1056641254,62.86,62.74,58.63,58.58,3.19,3.01,4.94,4.98
-43761,39,127,39127,111,48,1627872,1608704,111,48,1627872,1608704,36058,15211,1068336290,1056641254,100,100,100,100,0.31,0.32,0.15,0.15
-43762,39,059,39059,911,378,45715762,45685309,5413,1945,188336697,188153891,40087,19193,1368297033,1352631007,16.83,19.43,24.27,24.28,2.27,1.97,3.34,3.38
-43762,39,119,39119,4502,1567,142620935,142468582,5413,1945,188336697,188153891,86074,38074,1741982324,1721250930,83.17,80.57,75.73,75.72,5.23,4.12,8.19,8.28
-43764,39,127,39127,8566,3501,160191429,156722107,8566,3501,160191429,156722107,36058,15211,1068336290,1056641254,100,100,100,100,23.76,23.02,14.99,14.83
-43766,39,073,39073,194,89,13059809,12991610,1648,772,97254569,96525521,29380,13417,1097191605,1091222019,11.77,11.53,13.43,13.46,0.66,0.66,1.19,1.19
-43766,39,127,39127,1454,683,84194760,83533911,1648,772,97254569,96525521,36058,15211,1068336290,1056641254,88.23,88.47,86.57,86.54,4.03,4.49,7.88,7.91
-43767,39,119,39119,1443,602,82791678,82751678,1443,602,82791678,82751678,86074,38074,1741982324,1721250930,100,100,100,100,1.68,1.58,4.75,4.81
-43768,39,059,39059,275,117,1645743,1645743,275,117,1645743,1645743,40087,19193,1368297033,1352631007,100,100,100,100,0.69,0.61,0.12,0.12
-43771,39,119,39119,2007,902,65884506,64583648,2007,902,65884506,64583648,86074,38074,1741982324,1721250930,100,100,100,100,2.33,2.37,3.78,3.75
-43772,39,059,39059,1252,554,27952364,27848120,1879,839,88625556,88411395,40087,19193,1368297033,1352631007,66.63,66.03,31.54,31.5,3.12,2.89,2.04,2.06
-43772,39,121,39121,627,285,60673192,60563275,1879,839,88625556,88411395,14645,6053,1047833209,1030846973,33.37,33.97,68.46,68.5,4.28,4.71,5.79,5.88
-43773,39,059,39059,2058,961,166342801,166309840,3248,1521,279664770,273821465,40087,19193,1368297033,1352631007,63.36,63.18,59.48,60.74,5.13,5.01,12.16,12.3
-43773,39,111,39111,105,35,3966907,3966907,3248,1521,279664770,273821465,14642,7567,1184810655,1180312425,3.23,2.3,1.42,1.45,0.72,0.46,0.33,0.34
-43773,39,121,39121,1085,525,109355062,103544718,3248,1521,279664770,273821465,14645,6053,1047833209,1030846973,33.41,34.52,39.1,37.81,7.41,8.67,10.44,10.04
-43777,39,119,39119,2715,1196,94383389,94070738,4714,2030,138109917,137264986,86074,38074,1741982324,1721250930,57.59,58.92,68.34,68.53,3.15,3.14,5.42,5.47
-43777,39,127,39127,1999,834,43726528,43194248,4714,2030,138109917,137264986,36058,15211,1068336290,1056641254,42.41,41.08,31.66,31.47,5.54,5.48,4.09,4.09
-43778,39,059,39059,1456,636,111907122,111870507,1526,677,117095978,117055786,40087,19193,1368297033,1352631007,95.41,93.94,95.57,95.57,3.63,3.31,8.18,8.27
-43778,39,121,39121,70,41,5188856,5185279,1526,677,117095978,117055786,14645,6053,1047833209,1030846973,4.59,6.06,4.43,4.43,0.48,0.68,0.5,0.5
-43779,39,121,39121,971,431,91484399,91419334,971,431,91484399,91419334,14645,6053,1047833209,1030846973,100,100,100,100,6.63,7.12,8.73,8.87
-43780,39,059,39059,1712,1094,56470741,53616949,2106,1534,100846057,92146426,40087,19193,1368297033,1352631007,81.29,71.32,56,58.19,4.27,5.7,4.13,3.96
-43780,39,121,39121,394,440,44375316,38529477,2106,1534,100846057,92146426,14645,6053,1047833209,1030846973,18.71,28.68,44,41.81,2.69,7.27,4.23,3.74
-43782,39,127,39127,849,367,32207365,31958382,849,367,32207365,31958382,36058,15211,1068336290,1056641254,100,100,100,100,2.35,2.41,3.01,3.02
-43783,39,127,39127,4704,1924,157151056,156003713,4704,1924,157151056,156003713,36058,15211,1068336290,1056641254,100,100,100,100,13.05,12.65,14.71,14.76
-43786,39,111,39111,32,19,551796,551796,32,19,551796,551796,14642,7567,1184810655,1180312425,100,100,100,100,0.22,0.25,0.05,0.05
-43787,39,115,39115,2608,1420,163945017,161116111,2997,1608,197956113,194826992,15054,7892,1092413164,1078531138,87.02,88.31,82.82,82.7,17.32,17.99,15.01,14.94
-43787,39,167,39167,389,188,34011096,33710881,2997,1608,197956113,194826992,61778,28367,1657584272,1636799113,12.98,11.69,17.18,17.3,0.63,0.66,2.05,2.06
-43788,39,111,39111,208,90,29126206,29114900,865,424,100090503,99827218,14642,7567,1184810655,1180312425,24.05,21.23,29.1,29.17,1.42,1.19,2.46,2.47
-43788,39,121,39121,657,334,70964297,70712318,865,424,100090503,99827218,14645,6053,1047833209,1030846973,75.95,78.77,70.9,70.83,4.49,5.52,6.77,6.86
-43793,39,111,39111,5110,2555,268392733,268126248,5110,2555,268392733,268126248,14642,7567,1184810655,1180312425,100,100,100,100,34.9,33.77,22.65,22.72
-43802,39,119,39119,1075,421,98256768,97542691,1075,421,98256768,97542691,86074,38074,1741982324,1721250930,100,100,100,100,1.25,1.11,5.64,5.67
-43804,39,031,39031,574,150,13662896,13662896,3851,1058,82453115,82364881,36901,16545,1469773983,1460529028,14.91,14.18,16.57,16.59,1.56,0.91,0.93,0.94
-43804,39,075,39075,2126,477,53223630,53148098,3851,1058,82453115,82364881,42366,13666,1098101180,1094355785,55.21,45.09,64.55,64.53,5.02,3.49,4.85,4.86
-43804,39,157,39157,1151,431,15566589,15553887,3851,1058,82453115,82364881,92582,40206,1480050729,1470169796,29.89,40.74,18.88,18.88,1.24,1.07,1.05,1.06
-43805,39,031,39031,71,39,3128335,3090787,71,39,3128335,3090787,36901,16545,1469773983,1460529028,100,100,100,100,0.19,0.24,0.21,0.21
-43811,39,031,39031,829,368,49766770,48765820,829,368,49766770,48765820,36901,16545,1469773983,1460529028,100,100,100,100,2.25,2.22,3.39,3.34
-43812,39,031,39031,19054,8944,420606044,415266548,19061,8951,424204512,418327862,36901,16545,1469773983,1460529028,99.96,99.92,99.15,99.27,51.64,54.06,28.62,28.43
-43812,39,119,39119,7,7,3598468,3061314,19061,8951,424204512,418327862,86074,38074,1741982324,1721250930,0.04,0.08,0.85,0.73,0.01,0.02,0.21,0.18
-43821,39,031,39031,757,321,64317143,64253850,4327,1886,217220780,213974429,36901,16545,1469773983,1460529028,17.49,17.02,29.61,30.03,2.05,1.94,4.38,4.4
-43821,39,119,39119,3570,1565,152903637,149720579,4327,1886,217220780,213974429,86074,38074,1741982324,1721250930,82.51,82.98,70.39,69.97,4.15,4.11,8.78,8.7
-43822,39,031,39031,481,196,48855149,48855149,4626,1933,227723888,227594325,36901,16545,1469773983,1460529028,10.4,10.14,21.45,21.47,1.3,1.18,3.32,3.35
-43822,39,083,39083,397,172,28433316,28408010,4626,1933,227723888,227594325,60921,25118,1371743293,1361024108,8.58,8.9,12.49,12.48,0.65,0.68,2.07,2.09
-43822,39,089,39089,1020,429,65868760,65791403,4626,1933,227723888,227594325,166492,69291,1780594237,1767667183,22.05,22.19,28.92,28.91,0.61,0.62,3.7,3.72
-43822,39,119,39119,2728,1136,84566663,84539763,4626,1933,227723888,227594325,86074,38074,1741982324,1721250930,58.97,58.77,37.14,37.14,3.17,2.98,4.85,4.91
-43824,39,031,39031,3567,1268,188457678,188087533,3787,1345,198369279,197999134,36901,16545,1469773983,1460529028,94.19,94.28,95,94.99,9.67,7.66,12.82,12.88
-43824,39,157,39157,220,77,9911601,9911601,3787,1345,198369279,197999134,92582,40206,1480050729,1470169796,5.81,5.72,5,5.01,0.24,0.19,0.67,0.67
-43830,39,089,39089,762,282,36732010,36392916,6158,2424,135102541,131888403,166492,69291,1780594237,1767667183,12.37,11.63,27.19,27.59,0.46,0.41,2.06,2.06
-43830,39,119,39119,5396,2142,98370531,95495487,6158,2424,135102541,131888403,86074,38074,1741982324,1721250930,87.63,88.37,72.81,72.41,6.27,5.63,5.65,5.55
-43832,39,031,39031,1028,526,83121392,82153049,7479,3421,262664197,261054758,36901,16545,1469773983,1460529028,13.75,15.38,31.65,31.47,2.79,3.18,5.66,5.62
-43832,39,059,39059,204,99,21310513,21308955,7479,3421,262664197,261054758,40087,19193,1368297033,1352631007,2.73,2.89,8.11,8.16,0.51,0.52,1.56,1.58
-43832,39,157,39157,6247,2796,158232292,157592754,7479,3421,262664197,261054758,92582,40206,1480050729,1470169796,83.53,81.73,60.24,60.37,6.75,6.95,10.69,10.72
-43836,39,031,39031,128,68,404321,404321,128,68,404321,404321,36901,16545,1469773983,1460529028,100,100,100,100,0.35,0.41,0.03,0.03
-43837,39,059,39059,105,24,3810846,3801280,1973,837,133389740,132586857,40087,19193,1368297033,1352631007,5.32,2.87,2.86,2.87,0.26,0.13,0.28,0.28
-43837,39,157,39157,1868,813,129578894,128785577,1973,837,133389740,132586857,92582,40206,1480050729,1470169796,94.68,97.13,97.14,97.13,2.02,2.02,8.76,8.76
-43840,39,031,39031,12,5,313004,313004,1248,533,83210462,83151950,36901,16545,1469773983,1460529028,0.96,0.94,0.38,0.38,0.03,0.03,0.02,0.02
-43840,39,157,39157,1236,528,82897458,82838946,1248,533,83210462,83151950,92582,40206,1480050729,1470169796,99.04,99.06,99.62,99.62,1.34,1.31,5.6,5.63
-43842,39,119,39119,355,142,1060358,1060358,355,142,1060358,1060358,86074,38074,1741982324,1721250930,100,100,100,100,0.41,0.37,0.06,0.06
-43843,39,031,39031,691,313,84691059,84639886,1123,481,109680951,109563520,36901,16545,1469773983,1460529028,61.53,65.07,77.22,77.25,1.87,1.89,5.76,5.8
-43843,39,083,39083,432,168,24989892,24923634,1123,481,109680951,109563520,60921,25118,1371743293,1361024108,38.47,34.93,22.78,22.75,0.71,0.67,1.82,1.83
-43844,39,031,39031,3869,1852,322972511,322713990,3869,1852,322972511,322713990,36901,16545,1469773983,1460529028,100,100,100,100,10.48,11.19,21.97,22.1
-43845,39,031,39031,4711,2053,76398736,75344917,4711,2053,76398736,75344917,36901,16545,1469773983,1460529028,100,100,100,100,12.77,12.41,5.2,5.16
-43901,39,013,39013,221,76,3999232,3986020,2219,1038,81201036,80859321,70400,32452,1401892204,1378206525,9.96,7.32,4.93,4.93,0.31,0.23,0.29,0.29
-43901,39,067,39067,344,183,17571760,17286601,2219,1038,81201036,80859321,15864,8170,1063882004,1042052713,15.5,17.63,21.64,21.38,2.17,2.24,1.65,1.66
-43901,39,081,39081,1654,779,59630044,59586700,2219,1038,81201036,80859321,69709,32826,1064362973,1057566189,74.54,75.05,73.44,73.69,2.37,2.37,5.6,5.63
-43902,39,013,39013,202,113,45591806,44744279,202,113,45591806,44744279,70400,32452,1401892204,1378206525,100,100,100,100,0.29,0.35,3.25,3.25
-43903,39,019,39019,1019,481,64496132,64496132,2208,1035,96981763,96981335,28836,13698,1033224749,1022032078,46.15,46.47,66.5,66.5,3.53,3.51,6.24,6.31
-43903,39,081,39081,1189,554,32485631,32485203,2208,1035,96981763,96981335,69709,32826,1064362973,1057566189,53.85,53.53,33.5,33.5,1.71,1.69,3.05,3.07
-43905,39,013,39013,237,120,1017464,1001495,237,120,1017464,1001495,70400,32452,1401892204,1378206525,100,100,100,100,0.34,0.37,0.07,0.07
-43906,39,013,39013,8678,4243,83829624,83464336,8678,4243,83829624,83464336,70400,32452,1401892204,1378206525,100,100,100,100,12.33,13.07,5.98,6.06
-43907,39,067,39067,5898,2981,405912609,399153178,6008,3051,416437212,409639639,15864,8170,1063882004,1042052713,98.17,97.71,97.47,97.44,37.18,36.49,38.15,38.3
-43907,39,081,39081,110,70,10524603,10486461,6008,3051,416437212,409639639,69709,32826,1064362973,1057566189,1.83,2.29,2.53,2.56,0.16,0.21,0.99,0.99
-43908,39,019,39019,47,19,7012580,7012580,1574,722,80772361,80657289,28836,13698,1033224749,1022032078,2.99,2.63,8.68,8.69,0.16,0.14,0.68,0.69
-43908,39,081,39081,1527,703,73759781,73644709,1574,722,80772361,80657289,69709,32826,1064362973,1057566189,97.01,97.37,91.32,91.31,2.19,2.14,6.93,6.96
-43910,39,067,39067,162,75,10318382,10248901,3631,1584,143614111,143070151,15864,8170,1063882004,1042052713,4.46,4.73,7.18,7.16,1.02,0.92,0.97,0.98
-43910,39,081,39081,3469,1509,133295729,132821250,3631,1584,143614111,143070151,69709,32826,1064362973,1057566189,95.54,95.27,92.82,92.84,4.98,4.6,12.52,12.56
-43912,39,013,39013,6801,3377,49058638,48777993,6801,3377,49058638,48777993,70400,32452,1401892204,1378206525,100,100,100,100,9.66,10.41,3.5,3.54
-43913,39,081,39081,1490,750,7077846,6602412,1490,750,7077846,6602412,69709,32826,1064362973,1057566189,100,100,100,100,2.14,2.28,0.66,0.62
-43914,39,111,39111,94,41,1501704,1501704,94,41,1501704,1501704,14642,7567,1184810655,1180312425,100,100,100,100,0.64,0.54,0.13,0.13
-43915,39,111,39111,1495,761,140491457,137963312,1495,761,140491457,137963312,14642,7567,1184810655,1180312425,100,100,100,100,10.21,10.06,11.86,11.69
-43917,39,013,39013,498,226,10019336,9953646,3136,1540,92000975,91825058,70400,32452,1401892204,1378206525,15.88,14.68,10.89,10.84,0.71,0.7,0.71,0.72
-43917,39,081,39081,2638,1314,81981639,81871412,3136,1540,92000975,91825058,69709,32826,1064362973,1057566189,84.12,85.32,89.11,89.16,3.78,4,7.7,7.74
-43920,39,029,39029,23438,10847,117114500,116226240,23438,10847,117114500,116226240,107841,47088,1384837162,1377597314,100,100,100,100,21.73,23.04,8.46,8.44
-43925,39,081,39081,82,45,310045,310045,82,45,310045,310045,69709,32826,1064362973,1057566189,100,100,100,100,0.12,0.14,0.03,0.03
-43926,39,081,39081,285,129,867343,610579,285,129,867343,610579,69709,32826,1064362973,1057566189,100,100,100,100,0.41,0.39,0.08,0.06
-43927,39,013,39013,74,36,1082184,1061593,74,36,1082184,1061593,70400,32452,1401892204,1378206525,100,100,100,100,0.11,0.11,0.08,0.08
-43928,39,013,39013,116,57,3499193,3411735,116,57,3499193,3411735,70400,32452,1401892204,1378206525,100,100,100,100,0.16,0.18,0.25,0.25
-43930,39,029,39029,163,76,15263547,15230030,882,429,97744236,97429567,107841,47088,1384837162,1377597314,18.48,17.72,15.62,15.63,0.15,0.16,1.1,1.11
-43930,39,081,39081,719,353,82480689,82199537,882,429,97744236,97429567,69709,32826,1064362973,1057566189,81.52,82.28,84.38,84.37,1.03,1.08,7.75,7.77
-43931,39,111,39111,272,133,945697,945697,272,133,945697,945697,14642,7567,1184810655,1180312425,100,100,100,100,1.86,1.76,0.08,0.08
-43932,39,081,39081,931,411,47473596,47404247,931,411,47473596,47404247,69709,32826,1064362973,1057566189,100,100,100,100,1.34,1.25,4.46,4.48
-43933,39,013,39013,2070,1013,124198797,123237741,2070,1013,124198797,123237741,70400,32452,1401892204,1378206525,100,100,100,100,2.94,3.12,8.86,8.94
-43934,39,013,39013,295,149,559989,557026,295,149,559989,557026,70400,32452,1401892204,1378206525,100,100,100,100,0.42,0.46,0.04,0.04
-43935,39,013,39013,8943,4358,50887408,50693949,8943,4358,50887408,50693949,70400,32452,1401892204,1378206525,100,100,100,100,12.7,13.43,3.63,3.68
-43938,39,081,39081,5794,2744,83639165,82822349,5794,2744,83639165,82822349,69709,32826,1064362973,1057566189,100,100,100,100,8.31,8.36,7.86,7.83
-43939,39,081,39081,513,246,2367902,2367902,513,246,2367902,2367902,69709,32826,1064362973,1057566189,100,100,100,100,0.74,0.75,0.22,0.22
-43940,39,013,39013,377,174,1620714,1590740,377,174,1620714,1590740,70400,32452,1401892204,1378206525,100,100,100,100,0.54,0.54,0.12,0.12
-43942,39,013,39013,2384,1163,40426388,39704664,2500,1222,55027945,54287517,70400,32452,1401892204,1378206525,95.36,95.17,73.47,73.14,3.39,3.58,2.88,2.88
-43942,39,111,39111,116,59,14601557,14582853,2500,1222,55027945,54287517,14642,7567,1184810655,1180312425,4.64,4.83,26.53,26.86,0.79,0.78,1.23,1.24
-43943,39,013,39013,38,17,30935,30935,3472,1604,108862378,107994204,70400,32452,1401892204,1378206525,1.09,1.06,0.03,0.03,0.05,0.05,0,0
-43943,39,081,39081,3434,1587,108831443,107963269,3472,1604,108862378,107994204,69709,32826,1064362973,1057566189,98.91,98.94,99.97,99.97,4.93,4.83,10.23,10.21
-43944,39,081,39081,2529,1136,74416878,74386876,2529,1136,74416878,74386876,69709,32826,1064362973,1057566189,100,100,100,100,3.63,3.46,6.99,7.03
-43945,39,019,39019,406,184,45404606,45404606,3191,1437,169053329,168128888,28836,13698,1033224749,1022032078,12.72,12.8,26.86,27.01,1.41,1.34,4.39,4.44
-43945,39,029,39029,2661,1192,105550716,104626275,3191,1437,169053329,168128888,107841,47088,1384837162,1377597314,83.39,82.95,62.44,62.23,2.47,2.53,7.62,7.59
-43945,39,081,39081,124,61,18098007,18098007,3191,1437,169053329,168128888,69709,32826,1064362973,1057566189,3.89,4.24,10.71,10.76,0.18,0.19,1.7,1.71
-43946,39,111,39111,2114,1093,153546248,152368091,2114,1093,153546248,152368091,14642,7567,1184810655,1180312425,100,100,100,100,14.44,14.44,12.96,12.91
-43947,39,013,39013,5322,2581,44285043,44008953,5322,2581,44285043,44008953,70400,32452,1401892204,1378206525,100,100,100,100,7.56,7.95,3.16,3.19
-43948,39,081,39081,670,327,1832643,1832643,670,327,1832643,1832643,69709,32826,1064362973,1057566189,100,100,100,100,0.96,1,0.17,0.17
-43950,39,013,39013,16659,6415,218343433,215805176,16762,6459,229799377,227154368,70400,32452,1401892204,1378206525,99.39,99.32,95.01,95,23.66,19.77,15.57,15.66
-43950,39,067,39067,103,44,11455944,11349192,16762,6459,229799377,227154368,15864,8170,1063882004,1042052713,0.61,0.68,4.99,5,0.65,0.54,1.08,1.09
-43951,39,013,39013,84,39,388387,381385,84,39,388387,381385,70400,32452,1401892204,1378206525,100,100,100,100,0.12,0.12,0.03,0.03
-43952,39,081,39081,19050,9004,67869329,66913100,19050,9004,67869329,66913100,69709,32826,1064362973,1057566189,100,100,100,100,27.33,27.43,6.38,6.33
-43953,39,081,39081,11553,5380,46905609,46905390,11553,5380,46905609,46905390,69709,32826,1064362973,1057566189,100,100,100,100,16.57,16.39,4.41,4.44
-43961,39,081,39081,294,151,1262472,1060119,294,151,1262472,1060119,69709,32826,1064362973,1057566189,100,100,100,100,0.42,0.46,0.12,0.1
-43962,39,029,39029,112,47,3344527,3344527,112,47,3344527,3344527,107841,47088,1384837162,1377597314,100,100,100,100,0.1,0.1,0.24,0.24
-43963,39,081,39081,1362,678,1227862,1146766,1362,678,1227862,1146766,69709,32826,1064362973,1057566189,100,100,100,100,1.95,2.07,0.12,0.11
-43964,39,081,39081,9575,4498,125451880,123479052,9575,4498,125451880,123479052,69709,32826,1064362973,1057566189,100,100,100,100,13.74,13.7,11.79,11.68
-43967,39,013,39013,21,11,263745,263745,21,11,263745,263745,70400,32452,1401892204,1378206525,100,100,100,100,0.03,0.03,0.02,0.02
-43968,39,029,39029,7182,3384,89239848,88802765,7182,3384,89239848,88802765,107841,47088,1384837162,1377597314,100,100,100,100,6.66,7.19,6.44,6.45
-43970,39,081,39081,31,19,461277,461277,31,19,461277,461277,69709,32826,1064362973,1057566189,100,100,100,100,0.04,0.06,0.04,0.04
-43971,39,013,39013,464,229,1059003,1059003,1150,607,3170563,3165887,70400,32452,1401892204,1378206525,40.35,37.73,33.4,33.45,0.66,0.71,0.08,0.08
-43971,39,081,39081,686,378,2111560,2106884,1150,607,3170563,3165887,69709,32826,1064362973,1057566189,59.65,62.27,66.6,66.55,0.98,1.15,0.2,0.2
-43972,39,013,39013,144,66,342131,341137,144,66,342131,341137,70400,32452,1401892204,1378206525,100,100,100,100,0.2,0.2,0.02,0.02
-43973,39,059,39059,850,491,103706955,103529841,1996,1213,236972562,233662122,40087,19193,1368297033,1352631007,42.59,40.48,43.76,44.31,2.12,2.56,7.58,7.65
-43973,39,067,39067,1146,722,133265607,130132281,1996,1213,236972562,233662122,15864,8170,1063882004,1042052713,57.41,59.52,56.24,55.69,7.22,8.84,12.53,12.49
-43974,39,067,39067,107,51,170700,170700,107,51,170700,170700,15864,8170,1063882004,1042052713,100,100,100,100,0.67,0.62,0.02,0.02
-43976,39,067,39067,1632,699,61048180,60729908,1632,699,61048180,60729908,15864,8170,1063882004,1042052713,100,100,100,100,10.29,8.56,5.74,5.83
-43977,39,013,39013,2277,1050,107195211,101644281,2407,1116,124612588,119061372,70400,32452,1401892204,1378206525,94.6,94.09,86.02,85.37,3.23,3.24,7.65,7.38
-43977,39,067,39067,130,66,17417377,17417091,2407,1116,124612588,119061372,15864,8170,1063882004,1042052713,5.4,5.91,13.98,14.63,0.82,0.81,1.64,1.67
-43983,39,013,39013,246,366,41352685,36242567,440,547,58369419,53240698,70400,32452,1401892204,1378206525,55.91,66.91,70.85,68.07,0.35,1.13,2.95,2.63
-43983,39,059,39059,81,56,10193850,10193850,440,547,58369419,53240698,40087,19193,1368297033,1352631007,18.41,10.24,17.46,19.15,0.2,0.29,0.75,0.75
-43983,39,067,39067,113,125,6822884,6804281,440,547,58369419,53240698,15864,8170,1063882004,1042052713,25.68,22.85,11.69,12.78,0.71,1.53,0.64,0.65
-43985,39,013,39013,128,51,1076569,1069063,128,51,1076569,1069063,70400,32452,1401892204,1378206525,100,100,100,100,0.18,0.16,0.08,0.08
-43986,39,019,39019,18,13,4051352,4051352,1975,919,104155909,103903806,28836,13698,1033224749,1022032078,0.91,1.41,3.89,3.9,0.06,0.09,0.39,0.4
-43986,39,067,39067,1957,906,100104557,99852454,1975,919,104155909,103903806,15864,8170,1063882004,1042052713,99.09,98.59,96.11,96.1,12.34,11.09,9.41,9.58
-43988,39,019,39019,459,246,42860950,42815790,2476,1354,136657282,134976382,28836,13698,1033224749,1022032078,18.54,18.17,31.36,31.72,1.59,1.8,4.15,4.19
-43988,39,067,39067,2017,1108,93796332,92160592,2476,1354,136657282,134976382,15864,8170,1063882004,1042052713,81.46,81.83,68.64,68.28,12.71,13.56,8.82,8.84
-44001,39,093,39093,20769,8552,89602300,88958329,20769,8552,89602300,88958329,301356,127036,2391418045,1271946706,100,100,100,100,6.89,6.73,3.75,6.99
-44003,39,007,39007,4676,2283,186374662,172821163,4676,2283,186374662,172821163,101497,46099,3542850296,1817993244,100,100,100,100,4.61,4.95,5.26,9.51
-44004,39,007,39007,33421,16190,201729072,187298118,33421,16190,201729072,187298118,101497,46099,3542850296,1817993244,100,100,100,100,32.93,35.12,5.69,10.3
-44010,39,007,39007,1667,702,49794683,49477578,1667,702,49794683,49477578,101497,46099,3542850296,1817993244,100,100,100,100,1.64,1.52,1.41,2.72
-44011,39,093,39093,21193,8007,54040071,53891271,21193,8007,54040071,53891271,301356,127036,2391418045,1271946706,100,100,100,100,7.03,6.3,2.26,4.24
-44012,39,093,39093,22581,9411,35820855,28823985,22581,9411,35820855,28823985,301356,127036,2391418045,1271946706,100,100,100,100,7.49,7.41,1.5,2.27
-44017,39,035,39035,19161,7986,16379164,16097890,19161,7986,16379164,16097890,1280122,621763,3226054904,1184118946,100,100,100,100,1.5,1.28,0.51,1.36
-44021,39,055,39055,6444,2388,109330996,105947118,6444,2388,109330996,105947118,93389,36574,1057474714,1036420180,100,100,100,100,6.9,6.53,10.34,10.22
-44022,39,035,39035,11177,4981,58008283,57188235,16516,7104,79872928,78744832,1280122,621763,3226054904,1184118946,67.67,70.12,72.63,72.62,0.87,0.8,1.8,4.83
-44022,39,055,39055,5339,2123,21864645,21556597,16516,7104,79872928,78744832,93389,36574,1057474714,1036420180,32.33,29.88,27.37,27.38,5.72,5.8,2.07,2.08
-44023,39,055,39055,17351,6921,140450229,133840777,17351,6921,140450229,133840777,93389,36574,1057474714,1036420180,100,100,100,100,18.58,18.92,13.28,12.91
-44024,39,055,39055,23290,9557,231418533,228519531,23557,9656,236706053,233807051,93389,36574,1057474714,1036420180,98.87,98.97,97.77,97.74,24.94,26.13,21.88,22.05
-44024,39,085,39085,267,99,5287520,5287520,23557,9656,236706053,233807051,230041,101202,2536109741,589203623,1.13,1.03,2.23,2.26,0.12,0.1,0.21,0.9
-44026,39,055,39055,11116,4493,74395835,73635811,11116,4493,74395835,73635811,93389,36574,1057474714,1036420180,100,100,100,100,11.9,12.28,7.04,7.1
-44028,39,093,39093,8467,3234,86554228,85984784,8467,3234,86554228,85984784,301356,127036,2391418045,1271946706,100,100,100,100,2.81,2.55,3.62,6.76
-44030,39,007,39007,16652,7348,162660247,153340615,16652,7348,162660247,153340615,101497,46099,3542850296,1817993244,100,100,100,100,16.41,15.94,4.59,8.43
-44032,39,007,39007,1557,641,104318676,104246382,1557,641,104318676,104246382,101497,46099,3542850296,1817993244,100,100,100,100,1.53,1.39,2.94,5.73
-44035,39,093,39093,64263,29454,124976525,123691760,64263,29454,124976525,123691760,301356,127036,2391418045,1271946706,100,100,100,100,21.32,23.19,5.23,9.72
-44039,39,093,39093,29563,12153,61678518,61314737,29563,12153,61678518,61314737,301356,127036,2391418045,1271946706,100,100,100,100,9.81,9.57,2.58,4.82
-44040,39,035,39035,3020,1300,25177701,24841303,3020,1300,25177701,24841303,1280122,621763,3226054904,1184118946,100,100,100,100,0.24,0.21,0.78,2.1
-44041,39,007,39007,14891,7149,169702869,165473747,14979,7189,171343832,167114710,101497,46099,3542850296,1817993244,99.41,99.44,99.04,99.02,14.67,15.51,4.79,9.1
-44041,39,085,39085,88,40,1640963,1640963,14979,7189,171343832,167114710,230041,101202,2536109741,589203623,0.59,0.56,0.96,0.98,0.04,0.04,0.06,0.28
-44044,39,093,39093,15951,4653,144316743,143153894,15951,4653,144316743,143153894,301356,127036,2391418045,1271946706,100,100,100,100,5.29,3.66,6.03,11.25
-44045,39,085,39085,422,183,2857431,2437680,422,183,2857431,2437680,230041,101202,2536109741,589203623,100,100,100,100,0.18,0.18,0.11,0.41
-44046,39,055,39055,2222,779,41809381,39916823,2222,779,41809381,39916823,93389,36574,1057474714,1036420180,100,100,100,100,2.38,2.13,3.95,3.85
-44047,39,007,39007,9213,3881,273744638,273027595,9213,3881,273744638,273027595,101497,46099,3542850296,1817993244,100,100,100,100,9.08,8.42,7.73,15.02
-44048,39,007,39007,2565,1001,78924952,78815014,2565,1001,78924952,78815014,101497,46099,3542850296,1817993244,100,100,100,100,2.53,2.17,2.23,4.34
-44049,39,093,39093,238,106,936808,926908,238,106,936808,926908,301356,127036,2391418045,1271946706,100,100,100,100,0.08,0.08,0.04,0.07
-44050,39,093,39093,6118,2340,66249501,65955856,6118,2340,66249501,65955856,301356,127036,2391418045,1271946706,100,100,100,100,2.03,1.84,2.77,5.19
-44052,39,093,39093,29850,13911,27124186,23904973,29850,13911,27124186,23904973,301356,127036,2391418045,1271946706,100,100,100,100,9.91,10.95,1.13,1.88
-44053,39,093,39093,18256,8511,32872691,30724409,18256,8511,32872691,30724409,301356,127036,2391418045,1271946706,100,100,100,100,6.06,6.7,1.37,2.42
-44054,39,093,39093,12591,5441,35879079,32391850,12591,5441,35879079,32391850,301356,127036,2391418045,1271946706,100,100,100,100,4.18,4.28,1.5,2.55
-44055,39,093,39093,19846,8509,17267039,17190997,19846,8509,17267039,17190997,301356,127036,2391418045,1271946706,100,100,100,100,6.59,6.7,0.72,1.35
-44056,39,153,39153,11157,4535,25353872,25256357,11157,4535,25353872,25256357,541781,245109,1087938773,1069012672,100,100,100,100,2.06,1.85,2.33,2.36
-44057,39,007,39007,40,19,728599,728599,19961,8470,130312996,129494061,101497,46099,3542850296,1817993244,0.2,0.22,0.56,0.56,0.04,0.04,0.02,0.04
-44057,39,055,39055,290,122,6359083,6343527,19961,8470,130312996,129494061,93389,36574,1057474714,1036420180,1.45,1.44,4.88,4.9,0.31,0.33,0.6,0.61
-44057,39,085,39085,19631,8329,123225314,122421935,19961,8470,130312996,129494061,230041,101202,2536109741,589203623,98.35,98.34,94.56,94.54,8.53,8.23,4.86,20.78
-44060,39,055,39055,102,42,5529131,5452359,60211,26030,103658728,99769562,93389,36574,1057474714,1036420180,0.17,0.16,5.33,5.46,0.11,0.11,0.52,0.53
-44060,39,085,39085,60109,25988,98129597,94317203,60211,26030,103658728,99769562,230041,101202,2536109741,589203623,99.83,99.84,94.67,94.54,26.13,25.68,3.87,16.01
-44062,39,007,39007,365,72,7698011,7698011,14972,4455,199135225,198299815,101497,46099,3542850296,1817993244,2.44,1.62,3.87,3.88,0.36,0.16,0.22,0.42
-44062,39,055,39055,11422,3698,134580442,133745032,14972,4455,199135225,198299815,93389,36574,1057474714,1036420180,76.29,83.01,67.58,67.45,12.23,10.11,12.73,12.9
-44062,39,155,39155,3185,685,56856772,56856772,14972,4455,199135225,198299815,210312,96163,1648701790,1601380581,21.27,15.38,28.55,28.67,1.51,0.71,3.45,3.55
-44064,39,007,39007,26,11,1405990,1405990,1657,678,59138993,58300706,101497,46099,3542850296,1817993244,1.57,1.62,2.38,2.41,0.03,0.02,0.04,0.08
-44064,39,055,39055,1631,667,57733003,56894716,1657,678,59138993,58300706,93389,36574,1057474714,1036420180,98.43,98.38,97.62,97.59,1.75,1.82,5.46,5.49
-44065,39,055,39055,4433,1838,57979171,56338684,4433,1838,57979171,56338684,93389,36574,1057474714,1036420180,100,100,100,100,4.75,5.03,5.48,5.44
-44067,39,153,39153,20441,9027,43896414,43834030,20441,9027,43896414,43834030,541781,245109,1087938773,1069012672,100,100,100,100,3.77,3.68,4.03,4.1
-44070,39,035,39035,32902,14610,30220520,30220520,32902,14610,30220520,30220520,1280122,621763,3226054904,1184118946,100,100,100,100,2.57,2.35,0.94,2.55
-44072,39,055,39055,4383,1847,49047689,48561570,4383,1847,49047689,48561570,93389,36574,1057474714,1036420180,100,100,100,100,4.69,5.05,4.64,4.69
-44074,39,093,39093,11679,4373,128905891,128131152,11679,4373,128905891,128131152,301356,127036,2391418045,1271946706,100,100,100,100,3.88,3.44,5.39,10.07
-44076,39,007,39007,4472,1754,156407674,156094444,5141,1964,178137968,177805887,101497,46099,3542850296,1817993244,86.99,89.31,87.8,87.79,4.41,3.8,4.41,8.59
-44076,39,155,39155,669,210,21730294,21711443,5141,1964,178137968,177805887,210312,96163,1648701790,1601380581,13.01,10.69,12.2,12.21,0.32,0.22,1.32,1.36
-44077,39,085,39085,56491,23465,158980275,155885056,56491,23465,158980275,155885056,230041,101202,2536109741,589203623,100,100,100,100,24.56,23.19,6.27,26.46
-44080,39,055,39055,226,108,2620723,2581008,226,108,2620723,2581008,93389,36574,1057474714,1036420180,100,100,100,100,0.24,0.3,0.25,0.25
-44081,39,085,39085,7088,2677,53078393,52874627,7088,2677,53078393,52874627,230041,101202,2536109741,589203623,100,100,100,100,3.08,2.65,2.09,8.97
-44082,39,007,39007,1619,626,87801713,87749846,1619,626,87801713,87749846,101497,46099,3542850296,1817993244,100,100,100,100,1.6,1.36,2.48,4.83
-44084,39,007,39007,3611,1645,111640272,110139136,3611,1645,111640272,110139136,101497,46099,3542850296,1817993244,100,100,100,100,3.56,3.57,3.15,6.06
-44085,39,007,39007,3277,1474,131472871,130613237,3277,1474,131472871,130613237,101497,46099,3542850296,1817993244,100,100,100,100,3.23,3.2,3.71,7.18
-44086,39,007,39007,5,3,339511,339511,2391,978,71960598,71408941,101497,46099,3542850296,1817993244,0.21,0.31,0.47,0.48,0,0.01,0.01,0.02
-44086,39,055,39055,2089,865,61684806,61133149,2391,978,71960598,71408941,93389,36574,1057474714,1036420180,87.37,88.45,85.72,85.61,2.24,2.37,5.83,5.9
-44086,39,085,39085,297,110,9936281,9936281,2391,978,71960598,71408941,230041,101202,2536109741,589203623,12.42,11.25,13.81,13.91,0.13,0.11,0.39,1.69
-44087,39,153,39153,20221,8527,45838574,45672120,20221,8527,45838574,45672120,541781,245109,1087938773,1069012672,100,100,100,100,3.73,3.48,4.21,4.27
-44089,39,043,39043,9347,4759,62659899,56511822,15899,7626,97184132,89436180,77079,37845,1621299243,651531963,58.79,62.4,64.48,63.19,12.13,12.57,3.86,8.67
-44089,39,093,39093,6552,2867,34524233,32924358,15899,7626,97184132,89436180,301356,127036,2391418045,1271946706,41.21,37.6,35.52,36.81,2.17,2.26,1.44,2.59
-44090,39,093,39093,11504,4747,271613618,269530831,11504,4747,271613618,269530831,301356,127036,2391418045,1271946706,100,100,100,100,3.82,3.74,11.36,21.19
-44092,39,085,39085,16835,8054,19410130,19338131,16835,8054,19410130,19338131,230041,101202,2536109741,589203623,100,100,100,100,7.32,7.96,0.77,3.28
-44093,39,007,39007,1467,668,83589272,83304772,1467,668,83589272,83304772,101497,46099,3542850296,1817993244,100,100,100,100,1.45,1.45,2.36,4.58
-44094,39,085,39085,35234,17159,102506038,101559187,35234,17159,102506038,101559187,230041,101202,2536109741,589203623,100,100,100,100,15.32,16.96,4.04,17.24
-44095,39,085,39085,33579,15098,23842445,23505040,33579,15098,23842445,23505040,230041,101202,2536109741,589203623,100,100,100,100,14.6,14.92,0.94,3.99
-44099,39,007,39007,1911,614,49834627,49735184,2314,735,57149474,56930620,101497,46099,3542850296,1817993244,82.58,83.54,87.2,87.36,1.88,1.33,1.41,2.74
-44099,39,055,39055,403,121,7314847,7195436,2314,735,57149474,56930620,93389,36574,1057474714,1036420180,17.42,16.46,12.8,12.64,0.43,0.33,0.69,0.69
-44101,39,035,39035,565,0,85486,85486,565,0,85486,85486,1280122,621763,3226054904,1184118946,100,0,100,100,0.04,0,0,0.01
-44102,39,035,39035,45014,22295,19187011,15654355,45014,22295,19187011,15654355,1280122,621763,3226054904,1184118946,100,100,100,100,3.52,3.59,0.59,1.32
-44103,39,035,39035,18123,10722,12549080,11305937,18123,10722,12549080,11305937,1280122,621763,3226054904,1184118946,100,100,100,100,1.42,1.72,0.39,0.95
-44104,39,035,39035,22640,11643,12259006,12240278,22640,11643,12259006,12240278,1280122,621763,3226054904,1184118946,100,100,100,100,1.77,1.87,0.38,1.03
-44105,39,035,39035,40089,21498,22924523,22690774,40089,21498,22924523,22690774,1280122,621763,3226054904,1184118946,100,100,100,100,3.13,3.46,0.71,1.92
-44106,39,035,39035,26896,14107,10995229,10919213,26896,14107,10995229,10919213,1280122,621763,3226054904,1184118946,100,100,100,100,2.1,2.27,0.34,0.92
-44107,39,035,39035,52244,28565,17288614,14286017,52244,28565,17288614,14286017,1280122,621763,3226054904,1184118946,100,100,100,100,4.08,4.59,0.54,1.21
-44108,39,035,39035,25679,14809,12484960,10979422,25679,14809,12484960,10979422,1280122,621763,3226054904,1184118946,100,100,100,100,2.01,2.38,0.39,0.93
-44109,39,035,39035,40646,19407,19007113,18768875,40646,19407,19007113,18768875,1280122,621763,3226054904,1184118946,100,100,100,100,3.18,3.12,0.59,1.59
-44110,39,035,39035,20136,11789,12101036,10910516,20136,11789,12101036,10910516,1280122,621763,3226054904,1184118946,100,100,100,100,1.57,1.9,0.38,0.92
-44111,39,035,39035,39778,18953,16153411,16153411,39778,18953,16153411,16153411,1280122,621763,3226054904,1184118946,100,100,100,100,3.11,3.05,0.5,1.36
-44112,39,035,39035,23073,14923,10500052,10469364,23073,14923,10500052,10469364,1280122,621763,3226054904,1184118946,100,100,100,100,1.8,2.4,0.33,0.88
-44113,39,035,39035,19213,10479,10435055,9917299,19213,10479,10435055,9917299,1280122,621763,3226054904,1184118946,100,100,100,100,1.5,1.69,0.32,0.84
-44114,39,035,39035,5225,3603,11947789,7504435,5225,3603,11947789,7504435,1280122,621763,3226054904,1184118946,100,100,100,100,0.41,0.58,0.37,0.63
-44115,39,035,39035,8307,3730,5847138,5727308,8307,3730,5847138,5727308,1280122,621763,3226054904,1184118946,100,100,100,100,0.65,0.6,0.18,0.48
-44116,39,035,39035,20268,10238,14633921,12372855,20268,10238,14633921,12372855,1280122,621763,3226054904,1184118946,100,100,100,100,1.58,1.65,0.45,1.04
-44117,39,035,39035,10224,5712,9901729,9880449,10224,5712,9901729,9880449,1280122,621763,3226054904,1184118946,100,100,100,100,0.8,0.92,0.31,0.83
-44118,39,035,39035,40438,18414,18469597,18422648,40438,18414,18469597,18422648,1280122,621763,3226054904,1184118946,100,100,100,100,3.16,2.96,0.57,1.56
-44119,39,035,39035,12482,6490,6633051,5497435,12482,6490,6633051,5497435,1280122,621763,3226054904,1184118946,100,100,100,100,0.98,1.04,0.21,0.46
-44120,39,035,39035,38196,21578,13885697,13776271,38196,21578,13885697,13776271,1280122,621763,3226054904,1184118946,100,100,100,100,2.98,3.47,0.43,1.16
-44121,39,035,39035,33220,15108,16247413,16247413,33220,15108,16247413,16247413,1280122,621763,3226054904,1184118946,100,100,100,100,2.6,2.43,0.5,1.37
-44122,39,035,39035,34057,15717,34302763,34239694,34057,15717,34302763,34239694,1280122,621763,3226054904,1184118946,100,100,100,100,2.66,2.53,1.06,2.89
-44123,39,035,39035,17637,9034,7819416,6708251,17637,9034,7819416,6708251,1280122,621763,3226054904,1184118946,100,100,100,100,1.38,1.45,0.24,0.57
-44124,39,035,39035,38282,19334,37730299,37606601,38282,19334,37730299,37606601,1280122,621763,3226054904,1184118946,100,100,100,100,2.99,3.11,1.17,3.18
-44125,39,035,39035,28730,12919,37594519,36843207,28730,12919,37594519,36843207,1280122,621763,3226054904,1184118946,100,100,100,100,2.24,2.08,1.17,3.11
-44126,39,035,39035,16771,8052,12014927,12014927,16771,8052,12014927,12014927,1280122,621763,3226054904,1184118946,100,100,100,100,1.31,1.3,0.37,1.01
-44127,39,035,39035,5586,3231,4910398,4907885,5586,3231,4910398,4907885,1280122,621763,3226054904,1184118946,100,100,100,100,0.44,0.52,0.15,0.41
-44128,39,035,39035,29274,14357,21876770,21857905,29274,14357,21876770,21857905,1280122,621763,3226054904,1184118946,100,100,100,100,2.29,2.31,0.68,1.85
-44129,39,035,39035,29090,12918,15337645,15257333,29090,12918,15337645,15257333,1280122,621763,3226054904,1184118946,100,100,100,100,2.27,2.08,0.48,1.29
-44130,39,035,39035,50639,24420,44405284,44348303,50639,24420,44405284,44348303,1280122,621763,3226054904,1184118946,100,100,100,100,3.96,3.93,1.38,3.75
-44131,39,035,39035,20469,8657,41951199,41643639,20469,8657,41951199,41643639,1280122,621763,3226054904,1184118946,100,100,100,100,1.6,1.39,1.3,3.52
-44132,39,035,39035,14071,7423,8851461,8054897,14071,7423,8851461,8054897,1280122,621763,3226054904,1184118946,100,100,100,100,1.1,1.19,0.27,0.68
-44133,39,035,39035,30394,13690,54915971,54883582,30394,13690,54915971,54883582,1280122,621763,3226054904,1184118946,100,100,100,100,2.37,2.2,1.7,4.63
-44134,39,035,39035,38800,17380,24864715,24844783,38800,17380,24864715,24844783,1280122,621763,3226054904,1184118946,100,100,100,100,3.03,2.8,0.77,2.1
-44135,39,035,39035,26861,12388,26150549,26137112,26861,12388,26150549,26137112,1280122,621763,3226054904,1184118946,100,100,100,100,2.1,1.99,0.81,2.21
-44136,39,035,39035,25573,10793,34858690,34856411,25608,10806,35252682,35250403,1280122,621763,3226054904,1184118946,99.86,99.88,98.88,98.88,2,1.74,1.08,2.94
-44136,39,103,39103,35,13,393992,393992,25608,10806,35252682,35250403,172332,69181,1095605204,1091310901,0.14,0.12,1.12,1.12,0.02,0.02,0.04,0.04
-44137,39,035,39035,23240,10929,13334925,13334925,23240,10929,13334925,13334925,1280122,621763,3226054904,1184118946,100,100,100,100,1.82,1.76,0.41,1.13
-44138,39,035,39035,22332,9775,35607985,35607985,22332,9775,35607985,35607985,1280122,621763,3226054904,1184118946,100,100,100,100,1.74,1.57,1.1,3.01
-44139,39,035,39035,24356,9174,59883686,59388990,24356,9174,59883686,59388990,1280122,621763,3226054904,1184118946,100,100,100,100,1.9,1.48,1.86,5.02
-44140,39,035,39035,15651,6436,18269691,11825091,15651,6436,18269691,11825091,1280122,621763,3226054904,1184118946,100,100,100,100,1.22,1.04,0.57,1
-44141,39,035,39035,13657,5621,51085737,50792977,13945,5738,61701089,61408329,1280122,621763,3226054904,1184118946,97.93,97.96,82.8,82.71,1.07,0.9,1.58,4.29
-44141,39,153,39153,288,117,10615352,10615352,13945,5738,61701089,61408329,541781,245109,1087938773,1069012672,2.07,2.04,17.2,17.29,0.05,0.05,0.98,0.99
-44142,39,035,39035,19201,8167,19799604,19792672,19201,8167,19799604,19792672,1280122,621763,3226054904,1184118946,100,100,100,100,1.5,1.31,0.61,1.67
-44143,39,035,39035,24499,11911,36469397,36430023,24499,11911,36469397,36430023,1280122,621763,3226054904,1184118946,100,100,100,100,1.91,1.92,1.13,3.08
-44144,39,035,39035,21089,10393,14549164,14454776,21089,10393,14549164,14454776,1280122,621763,3226054904,1184118946,100,100,100,100,1.65,1.67,0.45,1.22
-44145,39,035,39035,32729,14843,41257735,41247991,32729,14843,41257735,41247991,1280122,621763,3226054904,1184118946,100,100,100,100,2.56,2.39,1.28,3.48
-44146,39,035,39035,29761,15313,52149080,51853723,29761,15313,52149080,51853723,1280122,621763,3226054904,1184118946,100,100,100,100,2.32,2.46,1.62,4.38
-44147,39,035,39035,19480,8265,34155853,34101365,19480,8265,34155853,34101365,1280122,621763,3226054904,1184118946,100,100,100,100,1.52,1.33,1.06,2.88
-44149,39,035,39035,19177,7683,28942150,28926189,19177,7683,28942150,28926189,1280122,621763,3226054904,1184118946,100,100,100,100,1.5,1.24,0.9,2.44
-44201,39,133,39133,6844,2720,141768560,139731729,6917,2751,144018585,141655999,161419,67472,1305519035,1262311075,98.94,98.87,98.44,98.64,4.24,4.03,10.86,11.07
-44201,39,151,39151,73,31,2250025,1924270,6917,2751,144018585,141655999,375586,165215,1503572020,1489943930,1.06,1.13,1.56,1.36,0.02,0.02,0.15,0.13
-44202,39,055,39055,164,76,2151193,2151193,19561,8056,81643321,78462433,93389,36574,1057474714,1036420180,0.84,0.94,2.63,2.74,0.18,0.21,0.2,0.21
-44202,39,133,39133,16316,6687,74849696,71763313,19561,8056,81643321,78462433,161419,67472,1305519035,1262311075,83.41,83.01,91.68,91.46,10.11,9.91,5.73,5.69
-44202,39,153,39153,3081,1293,4642432,4547927,19561,8056,81643321,78462433,541781,245109,1087938773,1069012672,15.75,16.05,5.69,5.8,0.57,0.53,0.43,0.43
-44203,39,103,39103,126,51,2101602,2101602,41248,18234,94131767,90662894,172332,69181,1095605204,1091310901,0.31,0.28,2.23,2.32,0.07,0.07,0.19,0.19
-44203,39,153,39153,41122,18183,92030165,88561292,41248,18234,94131767,90662894,541781,245109,1087938773,1069012672,99.69,99.72,97.77,97.68,7.59,7.42,8.46,8.28
-44212,39,103,39103,43548,17259,56179492,56083643,43548,17259,56179492,56083643,172332,69181,1095605204,1091310901,100,100,100,100,25.27,24.95,5.13,5.14
-44214,39,103,39103,205,73,10854546,10805419,2076,786,71222944,70879219,172332,69181,1095605204,1091310901,9.87,9.29,15.24,15.24,0.12,0.11,0.99,0.99
-44214,39,169,39169,1871,713,60368398,60073800,2076,786,71222944,70879219,114520,45847,1442147997,1437258280,90.13,90.71,84.76,84.76,1.63,1.56,4.19,4.18
-44215,39,103,39103,2162,1097,4348941,3811342,2162,1097,4348941,3811342,172332,69181,1095605204,1091310901,100,100,100,100,1.25,1.59,0.4,0.35
-44216,39,151,39151,604,225,2334828,2313294,9418,3733,63733718,60169778,375586,165215,1503572020,1489943930,6.41,6.03,3.66,3.84,0.16,0.14,0.16,0.16
-44216,39,153,39153,8814,3508,61398890,57856484,9418,3733,63733718,60169778,541781,245109,1087938773,1069012672,93.59,93.97,96.34,96.16,1.63,1.43,5.64,5.41
-44217,39,103,39103,313,129,7580642,7580642,4142,1686,74851414,74703865,172332,69181,1095605204,1091310901,7.56,7.65,10.13,10.15,0.18,0.19,0.69,0.69
-44217,39,169,39169,3829,1557,67270772,67123223,4142,1686,74851414,74703865,114520,45847,1442147997,1437258280,92.44,92.35,89.87,89.85,3.34,3.4,4.66,4.67
-44221,39,153,39153,29587,14602,16990116,16890025,29587,14602,16990116,16890025,541781,245109,1087938773,1069012672,100,100,100,100,5.46,5.96,1.56,1.58
-44223,39,153,39153,18185,8208,38872252,38769908,18185,8208,38872252,38769908,541781,245109,1087938773,1069012672,100,100,100,100,3.36,3.35,3.57,3.63
-44224,39,133,39133,38,17,911437,891684,38742,17063,52769443,51646230,161419,67472,1305519035,1262311075,0.1,0.1,1.73,1.73,0.02,0.03,0.07,0.07
-44224,39,153,39153,38704,17046,51858006,50754546,38742,17063,52769443,51646230,541781,245109,1087938773,1069012672,99.9,99.9,98.27,98.27,7.14,6.95,4.77,4.75
-44230,39,103,39103,158,51,1916272,1916272,8252,3357,44691992,44571653,172332,69181,1095605204,1091310901,1.91,1.52,4.29,4.3,0.09,0.07,0.17,0.18
-44230,39,169,39169,8094,3306,42775720,42655381,8252,3357,44691992,44571653,114520,45847,1442147997,1437258280,98.09,98.48,95.71,95.7,7.07,7.21,2.97,2.97
-44231,39,055,39055,862,277,18474496,18365605,8308,3415,127991234,127223594,93389,36574,1057474714,1036420180,10.38,8.11,14.43,14.44,0.92,0.76,1.75,1.77
-44231,39,133,39133,7446,3138,109516738,108857989,8308,3415,127991234,127223594,161419,67472,1305519035,1262311075,89.62,91.89,85.57,85.56,4.61,4.65,8.39,8.62
-44233,39,103,39103,7646,2859,69523192,69162378,7646,2859,69523192,69162378,172332,69181,1095605204,1091310901,100,100,100,100,4.44,4.13,6.35,6.34
-44234,39,055,39055,1104,502,22777456,22381954,4192,1440,64666481,64125642,93389,36574,1057474714,1036420180,26.34,34.86,35.22,34.9,1.18,1.37,2.15,2.16
-44234,39,133,39133,3088,938,41889025,41743688,4192,1440,64666481,64125642,161419,67472,1305519035,1262311075,73.66,65.14,64.78,65.1,1.91,1.39,3.21,3.31
-44235,39,005,39005,41,11,1318412,1309039,1825,603,64925294,64838809,53139,22141,1105404386,1095434931,2.25,1.82,2.03,2.02,0.08,0.05,0.12,0.12
-44235,39,103,39103,1784,592,63606882,63529770,1825,603,64925294,64838809,172332,69181,1095605204,1091310901,97.75,98.18,97.97,97.98,1.04,0.86,5.81,5.82
-44236,39,133,39133,171,84,1040395,1003556,25296,9145,88794587,88050182,161419,67472,1305519035,1262311075,0.68,0.92,1.17,1.14,0.11,0.12,0.08,0.08
-44236,39,153,39153,25125,9061,87754192,87046626,25296,9145,88794587,88050182,541781,245109,1087938773,1069012672,99.32,99.08,98.83,98.86,4.64,3.7,8.07,8.14
-44240,39,133,39133,37693,17544,107047122,103849932,37927,17647,107386108,104188918,161419,67472,1305519035,1262311075,99.38,99.42,99.68,99.67,23.35,26,8.2,8.23
-44240,39,153,39153,234,103,338986,338986,37927,17647,107386108,104188918,541781,245109,1087938773,1069012672,0.62,0.58,0.32,0.33,0.04,0.04,0.03,0.03
-44241,39,133,39133,16428,7236,57444354,55633898,16428,7236,57444354,55633898,161419,67472,1305519035,1262311075,100,100,100,100,10.18,10.72,4.4,4.41
-44243,39,133,39133,5658,0,1252334,1252334,5658,0,1252334,1252334,161419,67472,1305519035,1262311075,100,0,100,100,3.51,0,0.1,0.1
-44250,39,153,39153,1253,547,1528796,1129056,1253,547,1528796,1129056,541781,245109,1087938773,1069012672,100,100,100,100,0.23,0.22,0.14,0.11
-44251,39,103,39103,850,368,3757851,3757851,850,368,3757851,3757851,172332,69181,1095605204,1091310901,100,100,100,100,0.49,0.53,0.34,0.34
-44253,39,093,39093,205,73,5593546,5593546,3218,1216,63841531,63794500,301356,127036,2391418045,1271946706,6.37,6,8.76,8.77,0.07,0.06,0.23,0.44
-44253,39,103,39103,3013,1143,58247985,58200954,3218,1216,63841531,63794500,172332,69181,1095605204,1091310901,93.63,94,91.24,91.23,1.75,1.65,5.32,5.33
-44254,39,103,39103,4833,2207,68155030,68088601,4833,2207,68155030,68088601,172332,69181,1095605204,1091310901,100,100,100,100,2.8,3.19,6.22,6.24
-44255,39,133,39133,7987,3267,110529914,108893741,7987,3267,110529914,108893741,161419,67472,1305519035,1262311075,100,100,100,100,4.95,4.84,8.47,8.63
-44256,39,093,39093,60,23,356600,356600,62039,24740,347366537,345055213,301356,127036,2391418045,1271946706,0.1,0.09,0.1,0.1,0.02,0.02,0.01,0.03
-44256,39,103,39103,61931,24701,346887458,344576134,62039,24740,347366537,345055213,172332,69181,1095605204,1091310901,99.83,99.84,99.86,99.86,35.94,35.7,31.66,31.57
-44256,39,153,39153,48,16,122479,122479,62039,24740,347366537,345055213,541781,245109,1087938773,1069012672,0.08,0.06,0.04,0.04,0.01,0.01,0.01,0.01
-44260,39,133,39133,9612,3956,86592314,79763361,13450,5447,92466549,85633956,161419,67472,1305519035,1262311075,71.46,72.63,93.65,93.14,5.95,5.86,6.63,6.32
-44260,39,151,39151,947,317,1318089,1318089,13450,5447,92466549,85633956,375586,165215,1503572020,1489943930,7.04,5.82,1.43,1.54,0.25,0.19,0.09,0.09
-44260,39,153,39153,2891,1174,4556146,4552506,13450,5447,92466549,85633956,541781,245109,1087938773,1069012672,21.49,21.55,4.93,5.32,0.53,0.48,0.42,0.43
-44262,39,153,39153,5016,2189,6066261,5889416,5016,2189,6066261,5889416,541781,245109,1087938773,1069012672,100,100,100,100,0.93,0.89,0.56,0.55
-44264,39,153,39153,2315,1115,55412448,55222893,2315,1115,55412448,55222893,541781,245109,1087938773,1069012672,100,100,100,100,0.43,0.45,5.09,5.17
-44265,39,133,39133,51,18,413248,409099,51,18,413248,409099,161419,67472,1305519035,1262311075,100,100,100,100,0.03,0.03,0.03,0.03
-44266,39,133,39133,33581,14741,244476191,237801633,33581,14741,244476191,237801633,161419,67472,1305519035,1262311075,100,100,100,100,20.8,21.85,18.73,18.84
-44270,39,103,39103,654,241,8002910,8002910,8890,3674,54516550,54226368,172332,69181,1095605204,1091310901,7.36,6.56,14.68,14.76,0.38,0.35,0.73,0.73
-44270,39,169,39169,8236,3433,46513640,46223458,8890,3674,54516550,54226368,114520,45847,1442147997,1437258280,92.64,93.44,85.32,85.24,7.19,7.49,3.23,3.22
-44272,39,133,39133,5208,2030,58512889,58075758,5208,2030,58512889,58075758,161419,67472,1305519035,1262311075,100,100,100,100,3.23,3.01,4.48,4.6
-44273,39,103,39103,6643,2651,99272056,99149001,6718,2681,100504397,100381342,172332,69181,1095605204,1091310901,98.88,98.88,98.77,98.77,3.85,3.83,9.06,9.09
-44273,39,169,39169,75,30,1232341,1232341,6718,2681,100504397,100381342,114520,45847,1442147997,1437258280,1.12,1.12,1.23,1.23,0.07,0.07,0.09,0.09
-44274,39,103,39103,225,90,1118017,1118017,225,90,1118017,1118017,172332,69181,1095605204,1091310901,100,100,100,100,0.13,0.13,0.1,0.1
-44275,39,093,39093,80,36,6317930,6316286,3521,1342,100504676,100038473,301356,127036,2391418045,1271946706,2.27,2.68,6.29,6.31,0.03,0.03,0.26,0.5
-44275,39,103,39103,3441,1306,94186746,93722187,3521,1342,100504676,100038473,172332,69181,1095605204,1091310901,97.73,97.32,93.71,93.69,2,1.89,8.6,8.59
-44276,39,169,39169,1906,697,49099949,49056721,1906,697,49099949,49056721,114520,45847,1442147997,1437258280,100,100,100,100,1.66,1.52,3.4,3.41
-44278,39,133,39133,482,167,1215237,1210656,17868,7518,38563280,38422405,161419,67472,1305519035,1262311075,2.7,2.22,3.15,3.15,0.3,0.25,0.09,0.1
-44278,39,153,39153,17386,7351,37348043,37211749,17868,7518,38563280,38422405,541781,245109,1087938773,1069012672,97.3,97.78,96.85,96.85,3.21,3,3.43,3.48
-44280,39,093,39093,92,30,1282470,1282470,4557,1761,63473697,63463133,301356,127036,2391418045,1271946706,2.02,1.7,2.02,2.02,0.03,0.02,0.05,0.1
-44280,39,103,39103,4465,1731,62191227,62180663,4557,1761,63473697,63463133,172332,69181,1095605204,1091310901,97.98,98.3,97.98,97.98,2.59,2.5,5.68,5.7
-44281,39,103,39103,29819,12437,121776575,121661250,29954,12491,123749770,123634445,172332,69181,1095605204,1091310901,99.55,99.57,98.41,98.4,17.3,17.98,11.12,11.15
-44281,39,153,39153,135,54,1973195,1973195,29954,12491,123749770,123634445,541781,245109,1087938773,1069012672,0.45,0.43,1.59,1.6,0.02,0.02,0.18,0.18
-44285,39,133,39133,85,34,358543,358543,85,34,358543,358543,161419,67472,1305519035,1262311075,100,100,100,100,0.05,0.05,0.03,0.03
-44286,39,153,39153,6109,2407,61969242,61864829,6109,2407,61969242,61864829,541781,245109,1087938773,1069012672,100,100,100,100,1.13,0.98,5.7,5.79
-44287,39,005,39005,2648,1026,48150191,47349570,7559,2933,174081428,172947854,53139,22141,1105404386,1095434931,35.03,34.98,27.66,27.38,4.98,4.63,4.36,4.32
-44287,39,103,39103,369,133,13456941,13456941,7559,2933,174081428,172947854,172332,69181,1095605204,1091310901,4.88,4.53,7.73,7.78,0.21,0.19,1.23,1.23
-44287,39,169,39169,4542,1774,112474296,112141343,7559,2933,174081428,172947854,114520,45847,1442147997,1437258280,60.09,60.48,64.61,64.84,3.97,3.87,7.8,7.8
-44288,39,133,39133,4118,1804,42664253,42486549,4118,1804,42664253,42486549,161419,67472,1305519035,1262311075,100,100,100,100,2.55,2.67,3.27,3.37
-44301,39,153,39153,15340,7269,9298225,9153301,15340,7269,9298225,9153301,541781,245109,1087938773,1069012672,100,100,100,100,2.83,2.97,0.85,0.86
-44302,39,153,39153,5524,3135,2431494,2431494,5524,3135,2431494,2431494,541781,245109,1087938773,1069012672,100,100,100,100,1.02,1.28,0.22,0.23
-44303,39,153,39153,7700,4183,5978407,5978407,7700,4183,5978407,5978407,541781,245109,1087938773,1069012672,100,100,100,100,1.42,1.71,0.55,0.56
-44304,39,153,39153,5916,1903,3902624,3902624,5916,1903,3902624,3902624,541781,245109,1087938773,1069012672,100,100,100,100,1.09,0.78,0.36,0.37
-44305,39,153,39153,22294,10504,17017440,16957399,22294,10504,17017440,16957399,541781,245109,1087938773,1069012672,100,100,100,100,4.11,4.29,1.56,1.59
-44306,39,153,39153,22492,10634,21465807,21465807,22492,10634,21465807,21465807,541781,245109,1087938773,1069012672,100,100,100,100,4.15,4.34,1.97,2.01
-44307,39,153,39153,7643,4159,4993596,4975726,7643,4159,4993596,4975726,541781,245109,1087938773,1069012672,100,100,100,100,1.41,1.7,0.46,0.47
-44308,39,153,39153,1392,460,1274415,1274415,1392,460,1274415,1274415,541781,245109,1087938773,1069012672,100,100,100,100,0.26,0.19,0.12,0.12
-44310,39,153,39153,22786,11182,15617274,15561469,22786,11182,15617274,15561469,541781,245109,1087938773,1069012672,100,100,100,100,4.21,4.56,1.44,1.46
-44311,39,153,39153,8782,3847,4944792,4944792,8782,3847,4944792,4944792,541781,245109,1087938773,1069012672,100,100,100,100,1.62,1.57,0.45,0.46
-44312,39,133,39133,39,15,364010,364010,31919,14709,50538738,49644847,161419,67472,1305519035,1262311075,0.12,0.1,0.72,0.73,0.02,0.02,0.03,0.03
-44312,39,153,39153,31880,14694,50174728,49280837,31919,14709,50538738,49644847,541781,245109,1087938773,1069012672,99.88,99.9,99.28,99.27,5.88,5.99,4.61,4.61
-44313,39,153,39153,24935,13241,35878273,35854881,24935,13241,35878273,35854881,541781,245109,1087938773,1069012672,100,100,100,100,4.6,5.4,3.3,3.35
-44314,39,153,39153,18825,8882,11686001,11295609,18825,8882,11686001,11295609,541781,245109,1087938773,1069012672,100,100,100,100,3.47,3.62,1.07,1.06
-44319,39,153,39153,22686,10581,53771233,48641231,22686,10581,53771233,48641231,541781,245109,1087938773,1069012672,100,100,100,100,4.19,4.32,4.94,4.55
-44320,39,153,39153,19937,9780,25402625,25259624,19937,9780,25402625,25259624,541781,245109,1087938773,1069012672,100,100,100,100,3.68,3.99,2.33,2.36
-44321,39,103,39103,57,30,590999,556482,15200,6290,40193848,39417080,172332,69181,1095605204,1091310901,0.38,0.48,1.47,1.41,0.03,0.04,0.05,0.05
-44321,39,153,39153,15143,6260,39602849,38860598,15200,6290,40193848,39417080,541781,245109,1087938773,1069012672,99.63,99.52,98.53,98.59,2.8,2.55,3.64,3.64
-44333,39,103,39103,38,13,160500,159502,18763,8073,72562513,72104690,172332,69181,1095605204,1091310901,0.2,0.16,0.22,0.22,0.02,0.02,0.01,0.01
-44333,39,153,39153,18725,8060,72402013,71945188,18763,8073,72562513,72104690,541781,245109,1087938773,1069012672,99.8,99.84,99.78,99.78,3.46,3.29,6.65,6.73
-44401,39,099,39099,2892,1249,88275511,83298529,2892,1249,88275511,83298529,238823,111833,1101485202,1066098928,100,100,100,100,1.21,1.12,8.01,7.81
-44402,39,155,39155,3352,1349,95261694,93752884,3352,1349,95261694,93752884,210312,96163,1648701790,1601380581,100,100,100,100,1.59,1.4,5.78,5.85
-44403,39,155,39155,3820,1827,36694971,36694971,3820,1827,36694971,36694971,210312,96163,1648701790,1601380581,100,100,100,100,1.82,1.9,2.23,2.29
-44404,39,155,39155,1624,678,45656247,44134226,1624,678,45656247,44134226,210312,96163,1648701790,1601380581,100,100,100,100,0.77,0.71,2.77,2.76
-44405,39,099,39099,8229,3971,9179358,9097376,8229,3971,9179358,9097376,238823,111833,1101485202,1066098928,100,100,100,100,3.45,3.55,0.83,0.85
-44406,39,099,39099,22054,9368,140961814,137750302,22054,9368,140961814,137750302,238823,111833,1101485202,1066098928,100,100,100,100,9.23,8.38,12.8,12.92
-44408,39,029,39029,8130,3775,57832830,57597392,10331,4650,93674210,92226593,107841,47088,1384837162,1377597314,78.7,81.18,61.74,62.45,7.54,8.02,4.18,4.18
-44408,39,099,39099,2201,875,35841380,34629201,10331,4650,93674210,92226593,238823,111833,1101485202,1066098928,21.3,18.82,38.26,37.55,0.92,0.78,3.25,3.25
-44410,39,155,39155,17409,7772,202752626,176213332,17409,7772,202752626,176213332,210312,96163,1648701790,1601380581,100,100,100,100,8.28,8.08,12.3,11
-44411,39,133,39133,2181,1089,51166071,46200349,2181,1089,51166071,46200349,161419,67472,1305519035,1262311075,100,100,100,100,1.35,1.61,3.92,3.66
-44412,39,099,39099,425,177,13590687,13386010,2644,1050,59707352,59165359,238823,111833,1101485202,1066098928,16.07,16.86,22.76,22.62,0.18,0.16,1.23,1.26
-44412,39,133,39133,2219,873,46116665,45779349,2644,1050,59707352,59165359,161419,67472,1305519035,1262311075,83.93,83.14,77.24,77.38,1.37,1.29,3.53,3.63
-44413,39,029,39029,7261,3204,61456393,61430984,7261,3204,61456393,61430984,107841,47088,1384837162,1377597314,100,100,100,100,6.73,6.8,4.44,4.46
-44417,39,155,39155,1659,684,86303372,86303372,1659,684,86303372,86303372,210312,96163,1648701790,1601380581,100,100,100,100,0.79,0.71,5.23,5.39
-44418,39,155,39155,1357,556,45133213,45133213,1357,556,45133213,45133213,210312,96163,1648701790,1601380581,100,100,100,100,0.65,0.58,2.74,2.82
-44420,39,155,39155,15429,7189,41036386,40506645,15429,7189,41036386,40506645,210312,96163,1648701790,1601380581,100,100,100,100,7.34,7.48,2.49,2.53
-44423,39,029,39029,2425,1159,71268200,70829746,2425,1159,71268200,70829746,107841,47088,1384837162,1377597314,100,100,100,100,2.25,2.46,5.15,5.14
-44425,39,099,39099,114,56,3414742,3410162,14898,6793,80311542,79940596,238823,111833,1101485202,1066098928,0.77,0.82,4.25,4.27,0.05,0.05,0.31,0.32
-44425,39,155,39155,14784,6737,76896800,76530434,14898,6793,80311542,79940596,210312,96163,1648701790,1601380581,99.23,99.18,95.75,95.73,7.03,7.01,4.66,4.78
-44427,39,019,39019,636,242,42112675,42066574,1612,638,79355210,79243550,28836,13698,1033224749,1022032078,39.45,37.93,53.07,53.09,2.21,1.77,4.08,4.12
-44427,39,029,39029,976,396,37242535,37176976,1612,638,79355210,79243550,107841,47088,1384837162,1377597314,60.55,62.07,46.93,46.91,0.91,0.84,2.69,2.7
-44428,39,007,39007,62,18,5734543,5684302,3290,1420,148388984,141069217,101497,46099,3542850296,1817993244,1.88,1.27,3.86,4.03,0.06,0.04,0.16,0.31
-44428,39,155,39155,3228,1402,142654441,135384915,3290,1420,148388984,141069217,210312,96163,1648701790,1601380581,98.12,98.73,96.14,95.97,1.53,1.46,8.65,8.45
-44429,39,099,39099,2512,1488,22849644,16101205,2576,1511,23576327,16824241,238823,111833,1101485202,1066098928,97.52,98.48,96.92,95.7,1.05,1.33,2.07,1.51
-44429,39,133,39133,64,23,726683,723036,2576,1511,23576327,16824241,161419,67472,1305519035,1262311075,2.48,1.52,3.08,4.3,0.04,0.03,0.06,0.06
-44430,39,155,39155,5270,1662,35954575,35537218,5270,1662,35954575,35537218,210312,96163,1648701790,1601380581,100,100,100,100,2.51,1.73,2.18,2.22
-44431,39,029,39029,4727,1972,68336138,68027353,4727,1972,68336138,68027353,107841,47088,1384837162,1377597314,100,100,100,100,4.38,4.19,4.93,4.94
-44432,39,029,39029,13693,4872,269031866,267368314,13693,4872,269031866,267368314,107841,47088,1384837162,1377597314,100,100,100,100,12.7,10.35,19.43,19.41
-44436,39,099,39099,3836,1713,60736442,60010222,3836,1713,60736442,60010222,238823,111833,1101485202,1066098928,100,100,100,100,1.61,1.53,5.51,5.63
-44437,39,099,39099,95,36,894538,892352,4252,1787,10213574,10211388,238823,111833,1101485202,1066098928,2.23,2.01,8.76,8.74,0.04,0.03,0.08,0.08
-44437,39,155,39155,4157,1751,9319036,9319036,4252,1787,10213574,10211388,210312,96163,1648701790,1601380581,97.77,97.99,91.24,91.26,1.98,1.82,0.57,0.58
-44438,39,155,39155,4751,2263,22581390,22508866,4751,2263,22581390,22508866,210312,96163,1648701790,1601380581,100,100,100,100,2.26,2.35,1.37,1.41
-44439,39,155,39155,115,40,451892,451892,115,40,451892,451892,210312,96163,1648701790,1601380581,100,100,100,100,0.05,0.04,0.03,0.03
-44440,39,099,39099,1200,411,2163625,2156213,4967,1992,24549534,21619465,238823,111833,1101485202,1066098928,24.16,20.63,8.81,9.97,0.5,0.37,0.2,0.2
-44440,39,155,39155,3767,1581,22385909,19463252,4967,1992,24549534,21619465,210312,96163,1648701790,1601380581,75.84,79.37,91.19,90.03,1.79,1.64,1.36,1.22
-44441,39,029,39029,1600,716,42382270,41567388,1600,716,42382270,41567388,107841,47088,1384837162,1377597314,100,100,100,100,1.48,1.52,3.06,3.02
-44442,39,099,39099,4006,1708,22897331,22699662,4006,1708,22897331,22699662,238823,111833,1101485202,1066098928,100,100,100,100,1.68,1.53,2.08,2.13
-44443,39,029,39029,66,26,2331910,2331910,1704,772,33839280,33264031,107841,47088,1384837162,1377597314,3.87,3.37,6.89,7.01,0.06,0.06,0.17,0.17
-44443,39,099,39099,1638,746,31507370,30932121,1704,772,33839280,33264031,238823,111833,1101485202,1066098928,96.13,96.63,93.11,92.99,0.69,0.67,2.86,2.9
-44444,39,099,39099,316,137,11100490,11000883,10454,4781,111396733,110486786,238823,111833,1101485202,1066098928,3.02,2.87,9.96,9.96,0.13,0.12,1.01,1.03
-44444,39,133,39133,946,371,23027547,22953001,10454,4781,111396733,110486786,161419,67472,1305519035,1262311075,9.05,7.76,20.67,20.77,0.59,0.55,1.76,1.82
-44444,39,155,39155,9192,4273,77268696,76532902,10454,4781,111396733,110486786,210312,96163,1648701790,1601380581,87.93,89.37,69.36,69.27,4.37,4.44,4.69,4.78
-44445,39,029,39029,3449,1406,43205432,42921417,3449,1406,43205432,42921417,107841,47088,1384837162,1377597314,100,100,100,100,3.2,2.99,3.12,3.12
-44446,39,155,39155,20955,10272,36068259,35039806,20955,10272,36068259,35039806,210312,96163,1648701790,1601380581,100,100,100,100,9.96,10.68,2.19,2.19
-44449,39,099,39099,702,295,22080346,21630350,1323,810,31884135,30667346,238823,111833,1101485202,1066098928,53.06,36.42,69.25,70.53,0.29,0.26,2,2.03
-44449,39,133,39133,621,515,9803789,9036996,1323,810,31884135,30667346,161419,67472,1305519035,1262311075,46.94,63.58,30.75,29.47,0.38,0.76,0.75,0.72
-44450,39,155,39155,2042,828,122357281,118387951,2042,828,122357281,118387951,210312,96163,1648701790,1601380581,100,100,100,100,0.97,0.86,7.42,7.39
-44451,39,099,39099,3032,1321,98635970,97080315,3032,1321,98635970,97080315,238823,111833,1101485202,1066098928,100,100,100,100,1.27,1.18,8.95,9.11
-44452,39,099,39099,3167,1270,36786057,34587219,3167,1270,36786057,34587219,238823,111833,1101485202,1066098928,100,100,100,100,1.33,1.14,3.34,3.24
-44454,39,029,39029,79,32,1732152,1732152,1153,453,21843116,21461535,107841,47088,1384837162,1377597314,6.85,7.06,7.93,8.07,0.07,0.07,0.13,0.13
-44454,39,099,39099,1074,421,20110964,19729383,1153,453,21843116,21461535,238823,111833,1101485202,1066098928,93.15,92.94,92.07,91.93,0.45,0.38,1.83,1.85
-44455,39,029,39029,1890,766,53499488,53483943,1890,766,53499488,53483943,107841,47088,1384837162,1377597314,100,100,100,100,1.75,1.63,3.86,3.88
-44460,39,029,39029,21700,9805,160421300,160221022,26732,11853,284505950,283168606,107841,47088,1384837162,1377597314,81.18,82.72,56.39,56.58,20.12,20.82,11.58,11.63
-44460,39,099,39099,5032,2048,124084650,122947584,26732,11853,284505950,283168606,238823,111833,1101485202,1066098928,18.82,17.28,43.61,43.42,2.11,1.83,11.27,11.53
-44470,39,155,39155,3790,1555,69409090,69331410,3790,1555,69409090,69331410,210312,96163,1648701790,1601380581,100,100,100,100,1.8,1.62,4.21,4.33
-44471,39,099,39099,11097,5068,11653284,11417578,11097,5068,11653284,11417578,238823,111833,1101485202,1066098928,100,100,100,100,4.65,4.53,1.06,1.07
-44473,39,155,39155,3823,1848,62395936,62348840,3823,1848,62395936,62348840,210312,96163,1648701790,1601380581,100,100,100,100,1.82,1.92,3.78,3.89
-44481,39,099,39099,133,51,4244440,4233974,10408,4601,148808336,148667648,238823,111833,1101485202,1066098928,1.28,1.11,2.85,2.85,0.06,0.05,0.39,0.4
-44481,39,155,39155,10275,4550,144563896,144433674,10408,4601,148808336,148667648,210312,96163,1648701790,1601380581,98.72,98.89,97.15,97.15,4.89,4.73,8.77,9.02
-44483,39,155,39155,26006,12771,47407758,47383392,26006,12771,47407758,47383392,210312,96163,1648701790,1601380581,100,100,100,100,12.37,13.28,2.88,2.96
-44484,39,155,39155,22991,10929,45328561,45305797,22991,10929,45328561,45305797,210312,96163,1648701790,1601380581,100,100,100,100,10.93,11.37,2.75,2.83
-44485,39,155,39155,16498,8304,20045454,20019778,16498,8304,20045454,20019778,210312,96163,1648701790,1601380581,100,100,100,100,7.84,8.64,1.22,1.25
-44490,39,029,39029,448,195,1156084,1156084,798,355,1983238,1958548,107841,47088,1384837162,1377597314,56.14,54.93,58.29,59.03,0.42,0.41,0.08,0.08
-44490,39,099,39099,350,160,827154,802464,798,355,1983238,1958548,238823,111833,1101485202,1066098928,43.86,45.07,41.71,40.97,0.15,0.14,0.08,0.08
-44491,39,055,39055,518,150,11953055,11859290,3515,1197,77127129,76891397,93389,36574,1057474714,1036420180,14.74,12.53,15.5,15.42,0.55,0.41,1.13,1.14
-44491,39,133,39133,27,12,684246,634866,3515,1197,77127129,76891397,161419,67472,1305519035,1262311075,0.77,1,0.89,0.83,0.02,0.02,0.05,0.05
-44491,39,155,39155,2970,1035,64489828,64397241,3515,1197,77127129,76891397,210312,96163,1648701790,1601380581,84.5,86.47,83.61,83.75,1.41,1.08,3.91,4.02
-44493,39,029,39029,25,14,648867,648867,25,14,648867,648867,107841,47088,1384837162,1377597314,100,100,100,100,0.02,0.03,0.05,0.05
-44502,39,099,39099,10204,4902,14839159,14510198,10204,4902,14839159,14510198,238823,111833,1101485202,1066098928,100,100,100,100,4.27,4.38,1.35,1.36
-44503,39,099,39099,1021,438,1253729,1164199,1021,438,1253729,1164199,238823,111833,1101485202,1066098928,100,100,100,100,0.43,0.39,0.11,0.11
-44504,39,099,39099,5085,2426,3176084,3170649,5262,2527,3234448,3229013,238823,111833,1101485202,1066098928,96.64,96,98.2,98.19,2.13,2.17,0.29,0.3
-44504,39,155,39155,177,101,58364,58364,5262,2527,3234448,3229013,210312,96163,1648701790,1601380581,3.36,4,1.8,1.81,0.08,0.11,0,0
-44505,39,099,39099,12340,5489,28301696,27690609,19357,8800,45940745,45329564,238823,111833,1101485202,1066098928,63.75,62.38,61.6,61.09,5.17,4.91,2.57,2.6
-44505,39,155,39155,7017,3311,17639049,17638955,19357,8800,45940745,45329564,210312,96163,1648701790,1601380581,36.25,37.63,38.4,38.91,3.34,3.44,1.07,1.1
-44506,39,099,39099,2707,1374,4815741,4665485,2707,1374,4815741,4665485,238823,111833,1101485202,1066098928,100,100,100,100,1.13,1.23,0.44,0.44
-44507,39,099,39099,5863,3119,4512206,4512206,5863,3119,4512206,4512206,238823,111833,1101485202,1066098928,100,100,100,100,2.45,2.79,0.41,0.42
-44509,39,099,39099,11975,5946,14275853,14139098,11975,5946,14275853,14139098,238823,111833,1101485202,1066098928,100,100,100,100,5.01,5.32,1.3,1.33
-44510,39,099,39099,2499,1375,5033405,4939910,2499,1375,5033405,4939910,238823,111833,1101485202,1066098928,100,100,100,100,1.05,1.23,0.46,0.46
-44511,39,099,39099,19672,9889,19652808,19241379,19672,9889,19652808,19241379,238823,111833,1101485202,1066098928,100,100,100,100,8.24,8.84,1.78,1.8
-44512,39,099,39099,34424,16647,45056662,44612939,34424,16647,45056662,44612939,238823,111833,1101485202,1066098928,100,100,100,100,14.41,14.89,4.09,4.18
-44514,39,099,39099,22472,10127,59138970,55830142,22472,10127,59138970,55830142,238823,111833,1101485202,1066098928,100,100,100,100,9.41,9.06,5.37,5.24
-44515,39,099,39099,27766,13320,53787288,49670129,27766,13320,53787288,49670129,238823,111833,1101485202,1066098928,100,100,100,100,11.63,11.91,4.88,4.66
-44601,39,029,39029,1482,629,26764497,26762324,35294,15367,219689150,211884095,107841,47088,1384837162,1377597314,4.2,4.09,12.18,12.63,1.37,1.34,1.93,1.94
-44601,39,099,39099,1439,656,28687403,27737357,35294,15367,219689150,211884095,238823,111833,1101485202,1066098928,4.08,4.27,13.06,13.09,0.6,0.59,2.6,2.6
-44601,39,151,39151,32373,14082,164237250,157384414,35294,15367,219689150,211884095,375586,165215,1503572020,1489943930,91.72,91.64,74.76,74.28,8.62,8.52,10.92,10.56
-44606,39,169,39169,7819,2288,108813136,108663413,7819,2288,108813136,108663413,114520,45847,1442147997,1437258280,100,100,100,100,6.83,4.99,7.55,7.56
-44607,39,019,39019,234,85,5422409,5422409,234,85,5422409,5422409,28836,13698,1033224749,1022032078,100,100,100,100,0.81,0.62,0.52,0.53
-44608,39,151,39151,2238,937,41022993,41022993,2666,1097,56440385,56189659,375586,165215,1503572020,1489943930,83.95,85.41,72.68,73.01,0.6,0.57,2.73,2.75
-44608,39,157,39157,428,160,15417392,15166666,2666,1097,56440385,56189659,92582,40206,1480050729,1470169796,16.05,14.59,27.32,26.99,0.46,0.4,1.04,1.03
-44609,39,029,39029,1610,692,30281805,29862028,3987,1741,78870269,77813477,107841,47088,1384837162,1377597314,40.38,39.75,38.39,38.38,1.49,1.47,2.19,2.17
-44609,39,099,39099,2377,1049,48588464,47951449,3987,1741,78870269,77813477,238823,111833,1101485202,1066098928,59.62,60.25,61.61,61.62,1,0.94,4.41,4.5
-44610,39,075,39075,263,132,460437,460437,263,132,460437,460437,42366,13666,1098101180,1094355785,100,100,100,100,0.62,0.97,0.04,0.04
-44611,39,075,39075,1933,785,71997023,71877801,2025,827,75416125,75293035,42366,13666,1098101180,1094355785,95.46,94.92,95.47,95.46,4.56,5.74,6.56,6.57
-44611,39,169,39169,92,42,3419102,3415234,2025,827,75416125,75293035,114520,45847,1442147997,1437258280,4.54,5.08,4.53,4.54,0.08,0.09,0.24,0.24
-44612,39,151,39151,209,83,11528999,11528999,5293,2210,66692294,66542933,375586,165215,1503572020,1489943930,3.95,3.76,17.29,17.33,0.06,0.05,0.77,0.77
-44612,39,157,39157,5084,2127,55163295,55013934,5293,2210,66692294,66542933,92582,40206,1480050729,1470169796,96.05,96.24,82.71,82.67,5.49,5.29,3.73,3.74
-44613,39,151,39151,2011,829,5069302,5048691,2011,829,5069302,5048691,375586,165215,1503572020,1489943930,100,100,100,100,0.54,0.5,0.34,0.34
-44614,39,151,39151,12408,4982,55681378,54927466,12595,5062,58872574,58118662,375586,165215,1503572020,1489943930,98.52,98.42,94.58,94.51,3.3,3.02,3.7,3.69
-44614,39,153,39153,187,80,3191196,3191196,12595,5062,58872574,58118662,541781,245109,1087938773,1069012672,1.48,1.58,5.42,5.49,0.03,0.03,0.29,0.3
-44615,39,019,39019,11125,5305,375365878,372800381,11125,5305,375365878,372800381,28836,13698,1033224749,1022032078,100,100,100,100,38.58,38.73,36.33,36.48
-44618,39,151,39151,520,193,9721808,9721808,6858,2556,109613179,109413518,375586,165215,1503572020,1489943930,7.58,7.55,8.87,8.89,0.14,0.12,0.65,0.65
-44618,39,169,39169,6338,2363,99891371,99691710,6858,2556,109613179,109413518,114520,45847,1442147997,1437258280,92.42,92.45,91.13,91.11,5.53,5.15,6.93,6.94
-44620,39,019,39019,1567,724,59619091,58949751,1567,724,59619091,58949751,28836,13698,1033224749,1022032078,100,100,100,100,5.43,5.29,5.77,5.77
-44621,39,019,39019,49,25,5994794,5915819,4624,2070,78339039,78248959,28836,13698,1033224749,1022032078,1.06,1.21,7.65,7.56,0.17,0.18,0.58,0.58
-44621,39,067,39067,206,116,15606127,15606127,4624,2070,78339039,78248959,15864,8170,1063882004,1042052713,4.46,5.6,19.92,19.94,1.3,1.42,1.47,1.5
-44621,39,157,39157,4369,1929,56738118,56727013,4624,2070,78339039,78248959,92582,40206,1480050729,1470169796,94.49,93.19,72.43,72.5,4.72,4.8,3.83,3.86
-44622,39,157,39157,18588,8060,143134592,141850850,18588,8060,143134592,141850850,92582,40206,1480050729,1470169796,100,100,100,100,20.08,20.05,9.67,9.65
-44624,39,075,39075,2864,761,56629059,56529160,5397,1549,127034691,126381643,42366,13666,1098101180,1094355785,53.07,49.13,44.58,44.73,6.76,5.57,5.16,5.17
-44624,39,157,39157,1943,644,56825183,56318361,5397,1549,127034691,126381643,92582,40206,1480050729,1470169796,36,41.58,44.73,44.56,2.1,1.6,3.84,3.83
-44624,39,169,39169,590,144,13580449,13534122,5397,1549,127034691,126381643,114520,45847,1442147997,1437258280,10.93,9.3,10.69,10.71,0.52,0.31,0.94,0.94
-44625,39,019,39019,220,84,10772213,10772213,1418,555,49446928,49114274,28836,13698,1033224749,1022032078,15.51,15.14,21.79,21.93,0.76,0.61,1.04,1.05
-44625,39,029,39029,1198,471,38674715,38342061,1418,555,49446928,49114274,107841,47088,1384837162,1377597314,84.49,84.86,78.21,78.07,1.11,1,2.79,2.78
-44626,39,151,39151,2934,1246,67340786,67271769,2977,1271,71193868,71124851,375586,165215,1503572020,1489943930,98.56,98.03,94.59,94.58,0.78,0.75,4.48,4.52
-44626,39,157,39157,43,25,3853082,3853082,2977,1271,71193868,71124851,92582,40206,1480050729,1470169796,1.44,1.97,5.41,5.42,0.05,0.06,0.26,0.26
-44627,39,075,39075,3002,647,62632647,62519690,6845,1628,120536865,120303644,42366,13666,1098101180,1094355785,43.86,39.74,51.96,51.97,7.09,4.73,5.7,5.71
-44627,39,169,39169,3843,981,57904218,57783954,6845,1628,120536865,120303644,114520,45847,1442147997,1437258280,56.14,60.26,48.04,48.03,3.36,2.14,4.02,4.02
-44628,39,075,39075,826,376,60626241,60528572,1067,497,100125444,99751193,42366,13666,1098101180,1094355785,77.41,75.65,60.55,60.68,1.95,2.75,5.52,5.53
-44628,39,083,39083,241,121,39499203,39222621,1067,497,100125444,99751193,60921,25118,1371743293,1361024108,22.59,24.35,39.45,39.32,0.4,0.48,2.88,2.88
-44629,39,157,39157,2403,1017,55157531,53544148,2403,1017,55157531,53544148,92582,40206,1480050729,1470169796,100,100,100,100,2.6,2.53,3.73,3.64
-44632,39,133,39133,516,193,9389635,9145990,9765,3801,72020241,70855865,161419,67472,1305519035,1262311075,5.28,5.08,13.04,12.91,0.32,0.29,0.72,0.72
-44632,39,151,39151,9249,3608,62630606,61709875,9765,3801,72020241,70855865,375586,165215,1503572020,1489943930,94.72,94.92,86.96,87.09,2.46,2.18,4.17,4.14
-44633,39,075,39075,2615,765,59820704,59752561,2615,765,59820704,59752561,42366,13666,1098101180,1094355785,100,100,100,100,6.17,5.6,5.45,5.46
-44634,39,029,39029,1633,639,41148983,41078148,2164,858,49331313,49260478,107841,47088,1384837162,1377597314,75.46,74.48,83.41,83.39,1.51,1.36,2.97,2.98
-44634,39,151,39151,531,219,8182330,8182330,2164,858,49331313,49260478,375586,165215,1503572020,1489943930,24.54,25.52,16.59,16.61,0.14,0.13,0.54,0.55
-44637,39,031,39031,288,137,30335987,30335987,2694,1184,144049270,143855697,36901,16545,1469773983,1460529028,10.69,11.57,21.06,21.09,0.78,0.83,2.06,2.08
-44637,39,075,39075,2406,1047,113713283,113519710,2694,1184,144049270,143855697,42366,13666,1098101180,1094355785,89.31,88.43,78.94,78.91,5.68,7.66,10.36,10.37
-44638,39,005,39005,246,104,20244866,20066779,1497,658,73895180,72807869,53139,22141,1105404386,1095434931,16.43,15.81,27.4,27.56,0.46,0.47,1.83,1.83
-44638,39,075,39075,1177,522,47274878,46365654,1497,658,73895180,72807869,42366,13666,1098101180,1094355785,78.62,79.33,63.98,63.68,2.78,3.82,4.31,4.24
-44638,39,169,39169,74,32,6375436,6375436,1497,658,73895180,72807869,114520,45847,1442147997,1437258280,4.94,4.86,8.63,8.76,0.06,0.07,0.44,0.44
-44640,39,151,39151,151,65,626625,608424,151,65,626625,608424,375586,165215,1503572020,1489943930,100,100,100,100,0.04,0.04,0.04,0.04
-44641,39,151,39151,20349,8357,140551952,140219560,20349,8357,140551952,140219560,375586,165215,1503572020,1489943930,100,100,100,100,5.42,5.06,9.35,9.41
-44643,39,019,39019,773,332,43019495,43006379,3239,1395,84951639,84842252,28836,13698,1033224749,1022032078,23.87,23.8,50.64,50.69,2.68,2.42,4.16,4.21
-44643,39,151,39151,1537,641,28560109,28464986,3239,1395,84951639,84842252,375586,165215,1503572020,1489943930,47.45,45.95,33.62,33.55,0.41,0.39,1.9,1.91
-44643,39,157,39157,929,422,13372035,13370887,3239,1395,84951639,84842252,92582,40206,1480050729,1470169796,28.68,30.25,15.74,15.76,1,1.05,0.9,0.91
-44644,39,019,39019,4791,2380,59439749,57340112,4791,2380,59439749,57340112,28836,13698,1033224749,1022032078,100,100,100,100,16.61,17.37,5.75,5.61
-44645,39,169,39169,2465,956,64629860,64245577,2465,956,64629860,64245577,114520,45847,1442147997,1437258280,100,100,100,100,2.15,2.09,4.48,4.47
-44646,39,151,39151,47525,20677,75375327,74835973,47525,20677,75375327,74835973,375586,165215,1503572020,1489943930,100,100,100,100,12.65,12.52,5.01,5.02
-44647,39,151,39151,18015,7860,74664463,74247576,18015,7860,74664463,74247576,375586,165215,1503572020,1489943930,100,100,100,100,4.8,4.76,4.97,4.98
-44651,39,019,39019,861,348,62423766,62400699,861,348,62423766,62400699,28836,13698,1033224749,1022032078,100,100,100,100,2.99,2.54,6.04,6.11
-44652,39,151,39151,80,31,161753,161753,80,31,161753,161753,375586,165215,1503572020,1489943930,100,100,100,100,0.02,0.02,0.01,0.01
-44653,39,157,39157,599,227,1038675,1038675,599,227,1038675,1038675,92582,40206,1480050729,1470169796,100,100,100,100,0.65,0.56,0.07,0.07
-44654,39,031,39031,455,127,23395493,23395493,19679,6459,408461221,406975285,36901,16545,1469773983,1460529028,2.31,1.97,5.73,5.75,1.23,0.77,1.59,1.6
-44654,39,075,39075,19224,6332,385065728,383579792,19679,6459,408461221,406975285,42366,13666,1098101180,1094355785,97.69,98.03,94.27,94.25,45.38,46.33,35.07,35.05
-44656,39,019,39019,108,48,13312676,13312676,2968,1389,109181942,107396622,28836,13698,1033224749,1022032078,3.64,3.46,12.19,12.4,0.37,0.35,1.29,1.3
-44656,39,157,39157,2860,1341,95869266,94083946,2968,1389,109181942,107396622,92582,40206,1480050729,1470169796,96.36,96.54,87.81,87.6,3.09,3.34,6.48,6.4
-44657,39,019,39019,3704,1580,65260259,65108967,10334,4464,170569063,170192024,28836,13698,1033224749,1022032078,35.84,35.39,38.26,38.26,12.85,11.53,6.32,6.37
-44657,39,029,39029,1893,773,46908559,46829368,10334,4464,170569063,170192024,107841,47088,1384837162,1377597314,18.32,17.32,27.5,27.52,1.76,1.64,3.39,3.4
-44657,39,151,39151,4737,2111,58400245,58253689,10334,4464,170569063,170192024,375586,165215,1503572020,1489943930,45.84,47.29,34.24,34.23,1.26,1.28,3.88,3.91
-44659,39,169,39169,163,69,314097,314097,163,69,314097,314097,114520,45847,1442147997,1437258280,100,100,100,100,0.14,0.15,0.02,0.02
-44661,39,075,39075,171,80,158365,158365,171,80,158365,158365,42366,13666,1098101180,1094355785,100,100,100,100,0.4,0.59,0.01,0.01
-44662,39,151,39151,9029,3809,139413763,138833795,9656,3986,156115274,155532382,375586,165215,1503572020,1489943930,93.51,95.56,89.3,89.26,2.4,2.31,9.27,9.32
-44662,39,169,39169,627,177,16701511,16698587,9656,3986,156115274,155532382,114520,45847,1442147997,1437258280,6.49,4.44,10.7,10.74,0.55,0.39,1.16,1.16
-44663,39,157,39157,25362,11435,243570915,241515619,25362,11435,243570915,241515619,92582,40206,1480050729,1470169796,100,100,100,100,27.39,28.44,16.46,16.43
-44666,39,151,39151,2472,969,42143480,42062226,2928,1145,61123343,60799815,375586,165215,1503572020,1489943930,84.43,84.63,68.95,69.18,0.66,0.59,2.8,2.82
-44666,39,169,39169,456,176,18979863,18737589,2928,1145,61123343,60799815,114520,45847,1442147997,1437258280,15.57,15.37,31.05,30.82,0.4,0.38,1.32,1.3
-44667,39,169,39169,13481,5605,120553928,120330638,13481,5605,120553928,120330638,114520,45847,1442147997,1437258280,100,100,100,100,11.77,12.23,8.36,8.37
-44669,39,151,39151,1382,585,45102497,45020474,1382,585,45102497,45020474,375586,165215,1503572020,1489943930,100,100,100,100,0.37,0.35,3,3.02
-44670,39,151,39151,235,99,435754,435754,235,99,435754,435754,375586,165215,1503572020,1489943930,100,100,100,100,0.06,0.06,0.03,0.03
-44671,39,157,39157,380,166,2083708,2083708,380,166,2083708,2083708,92582,40206,1480050729,1470169796,100,100,100,100,0.41,0.41,0.14,0.14
-44672,39,099,39099,4874,2507,8529937,8470074,4874,2507,8529937,8470074,238823,111833,1101485202,1066098928,100,100,100,100,2.04,2.24,0.77,0.79
-44675,39,019,39019,1650,1004,60546568,56585133,2082,1188,82930558,78969123,28836,13698,1033224749,1022032078,79.25,84.51,73.01,71.65,5.72,7.33,5.86,5.54
-44675,39,157,39157,432,184,22383990,22383990,2082,1188,82930558,78969123,92582,40206,1480050729,1470169796,20.75,15.49,26.99,28.35,0.47,0.46,1.51,1.52
-44676,39,075,39075,1132,350,39868526,39760372,4877,1935,142503274,141911793,42366,13666,1098101180,1094355785,23.21,18.09,27.98,28.02,2.67,2.56,3.63,3.63
-44676,39,169,39169,3745,1585,102634748,102151421,4877,1935,142503274,141911793,114520,45847,1442147997,1437258280,76.79,81.91,72.02,71.98,3.27,3.46,7.12,7.11
-44677,39,169,39169,2543,1044,42723650,42686742,2543,1044,42723650,42686742,114520,45847,1442147997,1437258280,100,100,100,100,2.22,2.28,2.96,2.97
-44678,39,157,39157,152,73,2412247,2412247,152,73,2412247,2412247,92582,40206,1480050729,1470169796,100,100,100,100,0.16,0.18,0.16,0.16
-44680,39,157,39157,4138,1805,46869586,46790226,4138,1805,46869586,46790226,92582,40206,1480050729,1470169796,100,100,100,100,4.47,4.49,3.17,3.18
-44681,39,075,39075,2995,797,62119491,62062194,7799,2580,153852708,153795411,42366,13666,1098101180,1094355785,38.4,30.89,40.38,40.35,7.07,5.83,5.66,5.67
-44681,39,157,39157,4804,1783,91733217,91733217,7799,2580,153852708,153795411,92582,40206,1480050729,1470169796,61.6,69.11,59.62,59.65,5.19,4.43,6.2,6.24
-44682,39,157,39157,803,361,974469,974469,803,361,974469,974469,92582,40206,1480050729,1470169796,100,100,100,100,0.87,0.9,0.07,0.07
-44683,39,067,39067,473,242,43855443,42076425,8550,3795,179538379,177324067,15864,8170,1063882004,1042052713,5.53,6.38,24.43,23.73,2.98,2.96,4.12,4.04
-44683,39,157,39157,8077,3553,135682936,135247642,8550,3795,179538379,177324067,92582,40206,1480050729,1470169796,94.47,93.62,75.57,76.27,8.72,8.84,9.17,9.2
-44685,39,151,39151,13560,4971,31730137,31649532,27556,10723,66506525,66344958,375586,165215,1503572020,1489943930,49.21,46.36,47.71,47.7,3.61,3.01,2.11,2.12
-44685,39,153,39153,13996,5752,34776388,34695426,27556,10723,66506525,66344958,541781,245109,1087938773,1069012672,50.79,53.64,52.29,52.3,2.58,2.35,3.2,3.25
-44687,39,075,39075,249,25,168429,168429,249,25,168429,168429,42366,13666,1098101180,1094355785,100,100,100,100,0.59,0.18,0.02,0.02
-44688,39,019,39019,272,103,17763407,17763407,3053,1290,59514023,59508111,28836,13698,1033224749,1022032078,8.91,7.98,29.85,29.85,0.94,0.75,1.72,1.74
-44688,39,151,39151,2781,1187,41750616,41744704,3053,1290,59514023,59508111,375586,165215,1503572020,1489943930,91.09,92.02,70.15,70.15,0.74,0.72,2.78,2.8
-44689,39,075,39075,231,62,6372922,6368184,638,234,9488511,9483773,42366,13666,1098101180,1094355785,36.21,26.5,67.16,67.15,0.55,0.45,0.58,0.58
-44689,39,151,39151,407,172,3115589,3115589,638,234,9488511,9483773,375586,165215,1503572020,1489943930,63.79,73.5,32.84,32.85,0.11,0.1,0.21,0.21
-44690,39,075,39075,166,80,782421,780454,166,80,782421,780454,42366,13666,1098101180,1094355785,100,100,100,100,0.39,0.59,0.07,0.07
-44691,39,005,39005,45,18,2220298,2217110,43753,18882,407856235,406087370,53139,22141,1105404386,1095434931,0.1,0.1,0.54,0.55,0.08,0.08,0.2,0.2
-44691,39,169,39169,43708,18864,405635937,403870260,43753,18882,407856235,406087370,114520,45847,1442147997,1437258280,99.9,99.9,99.46,99.45,38.17,41.15,28.13,28.1
-44693,39,067,39067,86,69,2501675,2501675,86,69,2501675,2501675,15864,8170,1063882004,1042052713,100,100,100,100,0.54,0.84,0.24,0.24
-44695,39,019,39019,807,456,45393038,43853987,1608,837,79591835,78052784,28836,13698,1033224749,1022032078,50.19,54.48,57.03,56.19,2.8,3.33,4.39,4.29
-44695,39,067,39067,801,381,34198797,34198797,1608,837,79591835,78052784,15864,8170,1063882004,1042052713,49.81,45.52,42.97,43.81,5.05,4.66,3.21,3.28
-44697,39,157,39157,187,89,1749947,1569974,187,89,1749947,1569974,92582,40206,1480050729,1470169796,100,100,100,100,0.2,0.22,0.12,0.11
-44699,39,059,39059,2,2,271253,271253,937,551,148862261,141365807,40087,19193,1368297033,1352631007,0.21,0.36,0.18,0.19,0,0.01,0.02,0.02
-44699,39,067,39067,689,402,109835630,102364510,937,551,148862261,141365807,15864,8170,1063882004,1042052713,73.53,72.96,73.78,72.41,4.34,4.92,10.32,9.82
-44699,39,157,39157,246,147,38755378,38730044,937,551,148862261,141365807,92582,40206,1480050729,1470169796,26.25,26.68,26.03,27.4,0.27,0.37,2.62,2.63
-44702,39,151,39151,1053,592,1391166,1391166,1053,592,1391166,1391166,375586,165215,1503572020,1489943930,100,100,100,100,0.28,0.36,0.09,0.09
-44703,39,151,39151,8895,4750,2838344,2838344,8895,4750,2838344,2838344,375586,165215,1503572020,1489943930,100,100,100,100,2.37,2.88,0.19,0.19
-44704,39,151,39151,3811,2015,6270168,6270168,3811,2015,6270168,6270168,375586,165215,1503572020,1489943930,100,100,100,100,1.01,1.22,0.42,0.42
-44705,39,151,39151,18772,8145,21473430,21241497,18772,8145,21473430,21241497,375586,165215,1503572020,1489943930,100,100,100,100,5,4.93,1.43,1.43
-44706,39,151,39151,18246,7804,48126688,48126688,18246,7804,48126688,48126688,375586,165215,1503572020,1489943930,100,100,100,100,4.86,4.72,3.2,3.23
-44707,39,151,39151,9208,4374,37218428,37218428,9208,4374,37218428,37218428,375586,165215,1503572020,1489943930,100,100,100,100,2.45,2.65,2.48,2.5
-44708,39,151,39151,25109,12155,27429742,26521175,25109,12155,27429742,26521175,375586,165215,1503572020,1489943930,100,100,100,100,6.69,7.36,1.82,1.78
-44709,39,151,39151,18905,9195,14906974,14906974,18905,9195,14906974,14906974,375586,165215,1503572020,1489943930,100,100,100,100,5.03,5.57,0.99,1
-44710,39,151,39151,9179,4255,5763725,5763725,9179,4255,5763725,5763725,375586,165215,1503572020,1489943930,100,100,100,100,2.44,2.58,0.38,0.39
-44714,39,151,39151,9056,4353,6838849,6802658,9056,4353,6838849,6802658,375586,165215,1503572020,1489943930,100,100,100,100,2.41,2.63,0.45,0.46
-44718,39,151,39151,11951,5722,22098797,21286728,11951,5722,22098797,21286728,375586,165215,1503572020,1489943930,100,100,100,100,3.18,3.46,1.47,1.43
-44720,39,151,39151,35524,15842,63145998,62926203,39010,17282,88709530,88159075,375586,165215,1503572020,1489943930,91.06,91.67,71.18,71.38,9.46,9.59,4.2,4.22
-44720,39,153,39153,3486,1440,25563532,25232872,39010,17282,88709530,88159075,541781,245109,1087938773,1069012672,8.94,8.33,28.82,28.62,0.64,0.59,2.35,2.36
-44721,39,151,39151,13560,5189,39891587,39827938,13560,5189,39891587,39827938,375586,165215,1503572020,1489943930,100,100,100,100,3.61,3.14,2.65,2.67
-44730,39,019,39019,90,39,2953111,2953111,6050,2577,95780531,95767316,28836,13698,1033224749,1022032078,1.49,1.51,3.08,3.08,0.31,0.28,0.29,0.29
-44730,39,151,39151,5960,2538,92827420,92814205,6050,2577,95780531,95767316,375586,165215,1503572020,1489943930,98.51,98.49,96.92,96.92,1.59,1.54,6.17,6.23
-44802,39,063,39063,445,175,36581793,36581793,1032,395,73683204,73683204,74782,33174,1382170092,1376210257,43.12,44.3,49.65,49.65,0.6,0.53,2.65,2.66
-44802,39,147,39147,587,220,37101411,37101411,1032,395,73683204,73683204,56745,24122,1431728267,1427127830,56.88,55.7,50.35,50.35,1.03,0.91,2.59,2.6
-44804,39,063,39063,1202,473,52509331,52509331,1202,473,52509331,52509331,74782,33174,1382170092,1376210257,100,100,100,100,1.61,1.43,3.8,3.82
-44805,39,005,39005,31922,13476,383966780,381952521,32345,13616,399031236,396991690,53139,22141,1105404386,1095434931,98.69,98.97,96.22,96.21,60.07,60.86,34.74,34.87
-44805,39,139,39139,423,140,15064456,15039169,32345,13616,399031236,396991690,124475,54599,1295194144,1282739691,1.31,1.03,3.78,3.79,0.34,0.26,1.16,1.17
-44807,39,077,39077,145,63,30184173,30023481,2381,1046,185145062,184962275,59626,25196,1281581450,1272965600,6.09,6.02,16.3,16.23,0.24,0.25,2.36,2.36
-44807,39,147,39147,2236,983,154960889,154938794,2381,1046,185145062,184962275,56745,24122,1431728267,1427127830,93.91,93.98,83.7,83.77,3.94,4.08,10.82,10.86
-44809,39,147,39147,293,127,826900,826900,293,127,826900,826900,56745,24122,1431728267,1427127830,100,100,100,100,0.52,0.53,0.06,0.06
-44811,39,043,39043,640,259,43762580,43580204,12867,5544,305053618,304239064,77079,37845,1621299243,651531963,4.97,4.67,14.35,14.32,0.83,0.68,2.7,6.69
-44811,39,077,39077,4785,2141,102263062,101715397,12867,5544,305053618,304239064,59626,25196,1281581450,1272965600,37.19,38.62,33.52,33.43,8.03,8.5,7.98,7.99
-44811,39,143,39143,6093,2616,58953264,58894337,12867,5544,305053618,304239064,60944,26390,1081856578,1057888420,47.35,47.19,19.33,19.36,10,9.91,5.45,5.57
-44811,39,147,39147,1349,528,100074712,100049126,12867,5544,305053618,304239064,56745,24122,1431728267,1427127830,10.48,9.52,32.81,32.89,2.38,2.19,6.99,7.01
-44813,39,083,39083,263,99,8934269,8925995,8051,3201,186285489,185715195,60921,25118,1371743293,1361024108,3.27,3.09,4.8,4.81,0.43,0.39,0.65,0.66
-44813,39,117,39117,821,282,21389992,21389992,8051,3201,186285489,185715195,34827,14155,1054698028,1051738690,10.2,8.81,11.48,11.52,2.36,1.99,2.03,2.03
-44813,39,139,39139,6967,2820,155961228,155399208,8051,3201,186285489,185715195,124475,54599,1295194144,1282739691,86.54,88.1,83.72,83.68,5.6,5.16,12.04,12.11
-44814,39,043,39043,2929,1138,68238392,68148744,2929,1138,68238392,68148744,77079,37845,1621299243,651531963,100,100,100,100,3.8,3.01,4.21,10.46
-44815,39,147,39147,637,309,2935076,2935076,637,309,2935076,2935076,56745,24122,1431728267,1427127830,100,100,100,100,1.12,1.28,0.21,0.21
-44816,39,043,39043,42,28,66786,66786,42,28,66786,66786,77079,37845,1621299243,651531963,100,100,100,100,0.05,0.07,0,0.01
-44817,39,063,39063,99,37,11845398,11845398,1562,603,82163011,82130893,74782,33174,1382170092,1376210257,6.34,6.14,14.42,14.42,0.13,0.11,0.86,0.86
-44817,39,173,39173,1463,566,70317613,70285495,1562,603,82163011,82130893,125488,53376,1607062710,1598552653,93.66,93.86,85.58,85.58,1.17,1.06,4.38,4.4
-44818,39,033,39033,835,348,94168387,94089157,2644,1081,189767004,189449390,43784,20167,1042980203,1040620962,31.58,32.19,49.62,49.66,1.91,1.73,9.03,9.04
-44818,39,147,39147,1809,733,95598617,95360233,2644,1081,189767004,189449390,56745,24122,1431728267,1427127830,68.42,67.81,50.38,50.34,3.19,3.04,6.68,6.68
-44820,39,033,39033,18102,8374,416199366,414753116,18102,8374,416199366,414753116,43784,20167,1042980203,1040620962,100,100,100,100,41.34,41.52,39.9,39.86
-44822,39,083,39083,1010,327,49148862,48940695,3240,1230,113132320,112710346,60921,25118,1371743293,1361024108,31.17,26.59,43.44,43.42,1.66,1.3,3.58,3.6
-44822,39,139,39139,2230,903,63983458,63769651,3240,1230,113132320,112710346,124475,54599,1295194144,1282739691,68.83,73.41,56.56,56.58,1.79,1.65,4.94,4.97
-44824,39,043,39043,3976,1634,62422803,60884884,4060,1675,65834433,64296514,77079,37845,1621299243,651531963,97.93,97.55,94.82,94.69,5.16,4.32,3.85,9.34
-44824,39,143,39143,84,41,3411630,3411630,4060,1675,65834433,64296514,60944,26390,1081856578,1057888420,2.07,2.45,5.18,5.31,0.14,0.16,0.32,0.32
-44825,39,033,39033,58,25,102850,102850,58,25,102850,102850,43784,20167,1042980203,1040620962,100,100,100,100,0.13,0.12,0.01,0.01
-44826,39,043,39043,165,61,5413044,5409828,1687,656,68483700,68397511,77079,37845,1621299243,651531963,9.78,9.3,7.9,7.91,0.21,0.16,0.33,0.83
-44826,39,077,39077,1522,595,63070656,62987683,1687,656,68483700,68397511,59626,25196,1281581450,1272965600,90.22,90.7,92.1,92.09,2.55,2.36,4.92,4.95
-44827,39,033,39033,6403,2875,95836237,95669019,7097,3213,123326547,123096394,43784,20167,1042980203,1040620962,90.22,89.48,77.71,77.72,14.62,14.26,9.19,9.19
-44827,39,139,39139,694,338,27490310,27427375,7097,3213,123326547,123096394,124475,54599,1295194144,1282739691,9.78,10.52,22.29,22.28,0.56,0.62,2.12,2.14
-44828,39,147,39147,166,71,564579,564579,166,71,564579,564579,56745,24122,1431728267,1427127830,100,100,100,100,0.29,0.29,0.04,0.04
-44830,39,063,39063,3666,1791,67083898,66026612,18962,8618,309594241,308504505,74782,33174,1382170092,1376210257,19.33,20.78,21.67,21.4,4.9,5.4,4.85,4.8
-44830,39,147,39147,13119,5724,184941702,184925154,18962,8618,309594241,308504505,56745,24122,1431728267,1427127830,69.19,66.42,59.74,59.94,23.12,23.73,12.92,12.96
-44830,39,173,39173,2177,1103,57568641,57552739,18962,8618,309594241,308504505,125488,53376,1607062710,1598552653,11.48,12.8,18.59,18.66,1.73,2.07,3.58,3.6
-44833,39,033,39033,13879,6642,103110361,102784824,17121,8006,236663642,235968835,43784,20167,1042980203,1040620962,81.06,82.96,43.57,43.56,31.7,32.93,9.89,9.88
-44833,39,101,39101,145,55,9439652,9439652,17121,8006,236663642,235968835,66501,27834,1046635455,1045726869,0.85,0.69,3.99,4,0.22,0.2,0.9,0.9
-44833,39,117,39117,2682,1132,107649356,107319988,17121,8006,236663642,235968835,34827,14155,1054698028,1051738690,15.66,14.14,45.49,45.48,7.7,8,10.21,10.2
-44833,39,139,39139,415,177,16464273,16424371,17121,8006,236663642,235968835,124475,54599,1295194144,1282739691,2.42,2.21,6.96,6.96,0.33,0.32,1.27,1.28
-44836,39,143,39143,1061,380,17044907,17023870,2654,1029,91066279,90824390,60944,26390,1081856578,1057888420,39.98,36.93,18.72,18.74,1.74,1.44,1.58,1.61
-44836,39,147,39147,1593,649,74021372,73800520,2654,1029,91066279,90824390,56745,24122,1431728267,1427127830,60.02,63.07,81.28,81.26,2.81,2.69,5.17,5.17
-44837,39,005,39005,382,178,31851037,31655264,4514,1727,176037919,175222746,53139,22141,1105404386,1095434931,8.46,10.31,18.09,18.07,0.72,0.8,2.88,2.89
-44837,39,077,39077,3181,1232,111602293,111091118,4514,1727,176037919,175222746,59626,25196,1281581450,1272965600,70.47,71.34,63.4,63.4,5.33,4.89,8.71,8.73
-44837,39,139,39139,951,317,32584589,32476364,4514,1727,176037919,175222746,124475,54599,1295194144,1282739691,21.07,18.36,18.51,18.53,0.76,0.58,2.52,2.53
-44838,39,005,39005,266,111,807895,806166,266,111,807895,806166,53139,22141,1105404386,1095434931,100,100,100,100,0.5,0.5,0.07,0.07
-44839,39,043,39043,12519,6503,109493624,91556382,12519,6503,109493624,91556382,77079,37845,1621299243,651531963,100,100,100,100,16.24,17.18,6.75,14.05
-44840,39,005,39005,2877,1132,120134598,119819812,2900,1143,120390173,120073045,53139,22141,1105404386,1095434931,99.21,99.04,99.79,99.79,5.41,5.11,10.87,10.94
-44840,39,169,39169,23,11,255575,253233,2900,1143,120390173,120073045,114520,45847,1442147997,1437258280,0.79,0.96,0.21,0.21,0.02,0.02,0.02,0.02
-44841,39,143,39143,242,84,22934498,22934498,710,295,49269212,49269212,60944,26390,1081856578,1057888420,34.08,28.47,46.55,46.55,0.4,0.32,2.12,2.17
-44841,39,147,39147,468,211,26334714,26334714,710,295,49269212,49269212,56745,24122,1431728267,1427127830,65.92,71.53,53.45,53.45,0.82,0.87,1.84,1.85
-44842,39,005,39005,4817,2063,137718498,137410015,5436,2363,187858613,187223000,53139,22141,1105404386,1095434931,88.61,87.3,73.31,73.39,9.06,9.32,12.46,12.54
-44842,39,075,39075,619,300,50140115,49812985,5436,2363,187858613,187223000,42366,13666,1098101180,1094355785,11.39,12.7,26.69,26.61,1.46,2.2,4.57,4.55
-44843,39,005,39005,33,31,1880709,1871501,2387,1019,71051936,70792358,53139,22141,1105404386,1095434931,1.38,3.04,2.65,2.64,0.06,0.14,0.17,0.17
-44843,39,139,39139,2354,988,69171227,68920857,2387,1019,71051936,70792358,124475,54599,1295194144,1282739691,98.62,96.96,97.35,97.36,1.89,1.81,5.34,5.37
-44844,39,147,39147,353,130,23001044,23001044,764,309,45669506,45630581,56745,24122,1431728267,1427127830,46.2,42.07,50.36,50.41,0.62,0.54,1.61,1.61
-44844,39,175,39175,411,179,22668462,22629537,764,309,45669506,45630581,22615,9870,1055558812,1053775281,53.8,57.93,49.64,49.59,1.82,1.81,2.15,2.15
-44846,39,043,39043,2941,1165,58414908,57849732,3301,1310,60022812,59437644,77079,37845,1621299243,651531963,89.09,88.93,97.32,97.33,3.82,3.08,3.6,8.88
-44846,39,077,39077,360,145,1607904,1587912,3301,1310,60022812,59437644,59626,25196,1281581450,1272965600,10.91,11.07,2.68,2.67,0.6,0.58,0.13,0.12
-44847,39,043,39043,777,318,46144377,45891358,3739,1512,182443816,181661442,77079,37845,1621299243,651531963,20.78,21.03,25.29,25.26,1.01,0.84,2.85,7.04
-44847,39,077,39077,2962,1194,136299439,135770084,3739,1512,182443816,181661442,59626,25196,1281581450,1272965600,79.22,78.97,74.71,74.74,4.97,4.74,10.64,10.67
-44849,39,033,39033,434,172,30703368,30703368,2260,945,126195020,126195020,43784,20167,1042980203,1040620962,19.2,18.2,24.33,24.33,0.99,0.85,2.94,2.95
-44849,39,101,39101,27,12,983407,983407,2260,945,126195020,126195020,66501,27834,1046635455,1045726869,1.19,1.27,0.78,0.78,0.04,0.04,0.09,0.09
-44849,39,175,39175,1799,761,94508245,94508245,2260,945,126195020,126195020,22615,9870,1055558812,1053775281,79.6,80.53,74.89,74.89,7.95,7.71,8.95,8.97
-44850,39,077,39077,148,64,980862,980862,148,64,980862,980862,59626,25196,1281581450,1272965600,100,100,100,100,0.25,0.25,0.08,0.08
-44851,39,005,39005,305,134,18167140,17985478,5308,2251,194222588,192283889,53139,22141,1105404386,1095434931,5.75,5.95,9.35,9.35,0.57,0.61,1.64,1.64
-44851,39,077,39077,4546,1921,143881474,142286561,5308,2251,194222588,192283889,59626,25196,1281581450,1272965600,85.64,85.34,74.08,74,7.62,7.62,11.23,11.18
-44851,39,093,39093,457,196,32173974,32011850,5308,2251,194222588,192283889,301356,127036,2391418045,1271946706,8.61,8.71,16.57,16.65,0.15,0.15,1.35,2.52
-44853,39,147,39147,1397,545,70666219,70666219,1397,545,70666219,70666219,56745,24122,1431728267,1427127830,100,100,100,100,2.46,2.26,4.94,4.95
-44854,39,033,39033,1749,753,100809887,100775136,1749,753,100809887,100775136,43784,20167,1042980203,1040620962,100,100,100,100,3.99,3.73,9.67,9.68
-44855,39,077,39077,1271,477,70180352,69975100,1271,477,70180352,69975100,59626,25196,1281581450,1272965600,100,100,100,100,2.13,1.89,5.48,5.5
-44856,39,033,39033,128,58,130078,130078,128,58,130078,130078,43784,20167,1042980203,1040620962,100,100,100,100,0.29,0.29,0.01,0.01
-44857,39,043,39043,309,127,6901705,6880930,23805,10206,216539924,215128383,77079,37845,1621299243,651531963,1.3,1.24,3.19,3.2,0.4,0.34,0.43,1.06
-44857,39,077,39077,23496,10079,209638219,208247453,23805,10206,216539924,215128383,59626,25196,1281581450,1272965600,98.7,98.76,96.81,96.8,39.41,40,16.36,16.36
-44859,39,005,39005,1662,667,76206872,75677783,1737,692,79055372,78526283,53139,22141,1105404386,1095434931,95.68,96.39,96.4,96.37,3.13,3.01,6.89,6.91
-44859,39,093,39093,75,25,2848500,2848500,1737,692,79055372,78526283,301356,127036,2391418045,1271946706,4.32,3.61,3.6,3.63,0.02,0.02,0.12,0.22
-44861,39,147,39147,64,25,69895,69895,64,25,69895,69895,56745,24122,1431728267,1427127830,100,100,100,100,0.11,0.1,0,0
-44864,39,005,39005,2509,1203,112594440,111082482,3204,1530,156917692,153105692,53139,22141,1105404386,1095434931,78.31,78.63,71.75,72.55,4.72,5.43,10.19,10.14
-44864,39,139,39139,695,327,44323252,42023210,3204,1530,156917692,153105692,124475,54599,1295194144,1282739691,21.69,21.37,28.25,27.45,0.56,0.6,3.42,3.28
-44865,39,033,39033,71,39,6832223,6563182,3434,1419,92473779,91941868,43784,20167,1042980203,1040620962,2.07,2.75,7.39,7.14,0.16,0.19,0.66,0.63
-44865,39,077,39077,1710,727,44029963,43870295,3434,1419,92473779,91941868,59626,25196,1281581450,1272965600,49.8,51.23,47.61,47.72,2.87,2.89,3.44,3.45
-44865,39,139,39139,1653,653,41611593,41508391,3434,1419,92473779,91941868,124475,54599,1295194144,1282739691,48.14,46.02,45,45.15,1.33,1.2,3.21,3.24
-44866,39,005,39005,2259,825,67610331,67277480,2259,825,67610331,67277480,53139,22141,1105404386,1095434931,100,100,100,100,4.25,3.73,6.12,6.14
-44867,39,147,39147,2351,956,157812678,157804841,2351,956,157812678,157804841,56745,24122,1431728267,1427127830,100,100,100,100,4.14,3.96,11.02,11.06
-44870,39,043,39043,41030,20059,239330269,150976206,41030,20059,239330269,150976206,77079,37845,1621299243,651531963,100,100,100,100,53.23,53,14.76,23.17
-44874,39,005,39005,394,145,1247028,1224807,394,145,1247028,1224807,53139,22141,1105404386,1095434931,100,100,100,100,0.74,0.65,0.11,0.11
-44875,39,033,39033,91,38,14409378,14392747,13818,6161,205781890,204784692,43784,20167,1042980203,1040620962,0.66,0.62,7,7.03,0.21,0.19,1.38,1.38
-44875,39,139,39139,13727,6123,191372512,190391945,13818,6161,205781890,204784692,124475,54599,1295194144,1282739691,99.34,99.38,93,92.97,11.03,11.21,14.78,14.84
-44878,39,005,39005,87,26,6528761,6503009,3147,1103,157303417,156636151,53139,22141,1105404386,1095434931,2.76,2.36,4.15,4.15,0.16,0.12,0.59,0.59
-44878,39,077,39077,49,16,6499367,6487706,3147,1103,157303417,156636151,59626,25196,1281581450,1272965600,1.56,1.45,4.13,4.14,0.08,0.06,0.51,0.51
-44878,39,139,39139,3011,1061,144275289,143645436,3147,1103,157303417,156636151,124475,54599,1295194144,1282739691,95.68,96.19,91.72,91.71,2.42,1.94,11.14,11.2
-44880,39,005,39005,2582,963,68677080,68277033,2864,1069,80330024,79737195,53139,22141,1105404386,1095434931,90.15,90.08,85.49,85.63,4.86,4.35,6.21,6.23
-44880,39,093,39093,265,100,10357596,10164814,2864,1069,80330024,79737195,301356,127036,2391418045,1271946706,9.25,9.35,12.89,12.75,0.09,0.08,0.43,0.8
-44880,39,103,39103,17,6,1295348,1295348,2864,1069,80330024,79737195,172332,69181,1095605204,1091310901,0.59,0.56,1.61,1.62,0.01,0.01,0.12,0.12
-44881,39,033,39033,70,26,103251,103251,70,26,103251,103251,43784,20167,1042980203,1040620962,100,100,100,100,0.16,0.13,0.01,0.01
-44882,39,033,39033,698,293,65517844,65517844,2909,1231,190233255,190156680,43784,20167,1042980203,1040620962,23.99,23.8,34.44,34.45,1.59,1.45,6.28,6.3
-44882,39,147,39147,152,56,17257537,17249814,2909,1231,190233255,190156680,56745,24122,1431728267,1427127830,5.23,4.55,9.07,9.07,0.27,0.23,1.21,1.21
-44882,39,175,39175,2059,882,107457874,107389022,2909,1231,190233255,190156680,22615,9870,1055558812,1053775281,70.78,71.65,56.49,56.47,9.1,8.94,10.18,10.19
-44883,39,147,39147,29413,12559,435782315,432230290,29413,12559,435782315,432230290,56745,24122,1431728267,1427127830,100,100,100,100,51.83,52.06,30.44,30.29
-44887,39,033,39033,1020,417,77781679,77761096,1020,417,77781679,77761096,43784,20167,1042980203,1040620962,100,100,100,100,2.33,2.07,7.46,7.47
-44889,39,043,39043,1713,722,48238572,47754414,6703,2747,206083789,204599954,77079,37845,1621299243,651531963,25.56,26.28,23.41,23.34,2.22,1.91,2.98,7.33
-44889,39,077,39077,4289,1741,131893167,130972994,6703,2747,206083789,204599954,59626,25196,1281581450,1272965600,63.99,63.38,64,64.01,7.19,6.91,10.29,10.29
-44889,39,093,39093,701,284,25952050,25872546,6703,2747,206083789,204599954,301356,127036,2391418045,1271946706,10.46,10.34,12.59,12.65,0.23,0.22,1.09,2.03
-44890,39,077,39077,11162,4801,229450519,226968954,11162,4801,229450519,226968954,59626,25196,1281581450,1272965600,100,100,100,100,18.72,19.05,17.9,17.83
-44901,39,139,39139,2501,0,303091,303091,2501,0,303091,303091,124475,54599,1295194144,1282739691,100,0,100,100,2.01,0,0.02,0.02
-44902,39,139,39139,5432,2818,4839811,4839811,5432,2818,4839811,4839811,124475,54599,1295194144,1282739691,100,100,100,100,4.36,5.16,0.37,0.38
-44903,39,005,39005,64,28,6079450,2949082,25602,11597,304808135,295832945,53139,22141,1105404386,1095434931,0.25,0.24,1.99,1,0.12,0.13,0.55,0.27
-44903,39,117,39117,343,185,10698984,9703680,25602,11597,304808135,295832945,34827,14155,1054698028,1051738690,1.34,1.6,3.51,3.28,0.98,1.31,1.01,0.92
-44903,39,139,39139,25195,11384,288029701,283180183,25602,11597,304808135,295832945,124475,54599,1295194144,1282739691,98.41,98.16,94.5,95.72,20.24,20.85,22.24,22.08
-44904,39,117,39117,1303,545,49311439,49293063,13906,6224,134826911,132783989,34827,14155,1054698028,1051738690,9.37,8.76,36.57,37.12,3.74,3.85,4.68,4.69
-44904,39,139,39139,12603,5679,85515472,83490926,13906,6224,134826911,132783989,124475,54599,1295194144,1282739691,90.63,91.24,63.43,62.88,10.12,10.4,6.6,6.51
-44905,39,139,39139,14513,5441,33042346,32942802,14513,5441,33042346,32942802,124475,54599,1295194144,1282739691,100,100,100,100,11.66,9.97,2.55,2.57
-44906,39,139,39139,16718,8045,53944746,53835299,16718,8045,53944746,53835299,124475,54599,1295194144,1282739691,100,100,100,100,13.43,14.73,4.16,4.2
-44907,39,139,39139,14313,7361,20243488,20168390,14313,7361,20243488,20168390,124475,54599,1295194144,1282739691,100,100,100,100,11.5,13.48,1.56,1.57
-45001,39,061,39061,606,283,1574573,1568650,606,283,1574573,1568650,802374,377364,1068709966,1051302780,100,100,100,100,0.08,0.07,0.15,0.15
-45002,39,061,39061,13388,5272,68000448,65814675,13388,5272,68000448,65814675,802374,377364,1068709966,1051302780,100,100,100,100,1.67,1.4,6.36,6.26
-45003,39,017,39017,211,114,2815961,2815961,697,334,28462763,27358671,368130,148273,1217636655,1209668470,30.27,34.13,9.89,10.29,0.06,0.08,0.23,0.23
-45003,39,135,39135,486,220,25646802,24542710,697,334,28462763,27358671,42270,17888,1104530526,1098465120,69.73,65.87,90.11,89.71,1.15,1.23,2.32,2.23
-45005,39,113,39113,247,117,682160,682160,29963,12565,94796623,93366714,535153,254775,1202621341,1195417263,0.82,0.93,0.72,0.73,0.05,0.05,0.06,0.06
-45005,39,165,39165,29716,12448,94114463,92684554,29963,12565,94796623,93366714,212693,80750,1054935779,1039398003,99.18,99.07,99.28,99.27,13.97,15.42,8.92,8.92
-45011,39,017,39017,69677,26058,158661978,157037282,69677,26058,158661978,157037282,368130,148273,1217636655,1209668470,100,100,100,100,18.93,17.57,13.03,12.98
-45013,39,017,39017,52604,22363,295677144,294000690,52613,22368,300653368,298976914,368130,148273,1217636655,1209668470,99.98,99.98,98.34,98.34,14.29,15.08,24.28,24.3
-45013,39,061,39061,9,5,4976224,4976224,52613,22368,300653368,298976914,802374,377364,1068709966,1051302780,0.02,0.02,1.66,1.66,0,0,0.47,0.47
-45014,39,017,39017,43917,19376,56898154,56214545,43917,19376,56898154,56214545,368130,148273,1217636655,1209668470,100,100,100,100,11.93,13.07,4.67,4.65
-45015,39,017,39017,12038,5260,15897779,15590702,12038,5260,15897779,15590702,368130,148273,1217636655,1209668470,100,100,100,100,3.27,3.55,1.31,1.29
-45030,39,061,39061,17921,7501,113105406,110387477,17921,7501,113105406,110387477,802374,377364,1068709966,1051302780,100,100,100,100,2.23,1.99,10.58,10.5
-45032,39,165,39165,348,154,759292,698043,348,154,759292,698043,212693,80750,1054935779,1039398003,100,100,100,100,0.16,0.19,0.07,0.07
-45033,39,061,39061,276,110,132936,132936,276,110,132936,132936,802374,377364,1068709966,1051302780,100,100,100,100,0.03,0.03,0.01,0.01
-45034,39,165,39165,1184,435,2473084,2347247,1184,435,2473084,2347247,212693,80750,1054935779,1039398003,100,100,100,100,0.56,0.54,0.23,0.23
-45036,39,165,39165,37504,12830,211179842,210589107,37504,12830,211179842,210589107,212693,80750,1054935779,1039398003,100,100,100,100,17.63,15.89,20.02,20.26
-45039,39,165,39165,22814,9179,42034433,41044178,22814,9179,42034433,41044178,212693,80750,1054935779,1039398003,100,100,100,100,10.73,11.37,3.98,3.95
-45040,39,165,39165,50627,18401,72848238,72753227,50627,18401,72848238,72753227,212693,80750,1054935779,1039398003,100,100,100,100,23.8,22.79,6.91,7
-45041,39,061,39061,199,77,498359,478721,199,77,498359,478721,802374,377364,1068709966,1051302780,100,100,100,100,0.02,0.02,0.05,0.05
-45042,39,017,39017,25589,11557,119980981,118973212,26451,11895,129343581,128269063,368130,148273,1217636655,1209668470,96.74,97.16,92.76,92.75,6.95,7.79,9.85,9.84
-45042,39,135,39135,483,188,8638668,8571919,26451,11895,129343581,128269063,42270,17888,1104530526,1098465120,1.83,1.58,6.68,6.68,1.14,1.05,0.78,0.78
-45042,39,165,39165,379,150,723932,723932,26451,11895,129343581,128269063,212693,80750,1054935779,1039398003,1.43,1.26,0.56,0.56,0.18,0.19,0.07,0.07
-45044,39,017,39017,50931,21336,94330764,93292230,52822,22083,99785349,98746815,368130,148273,1217636655,1209668470,96.42,96.62,94.53,94.48,13.84,14.39,7.75,7.71
-45044,39,165,39165,1891,747,5454585,5454585,52822,22083,99785349,98746815,212693,80750,1054935779,1039398003,3.58,3.38,5.47,5.52,0.89,0.93,0.52,0.52
-45050,39,017,39017,8473,3412,16496527,16496527,8548,3436,19279621,19279621,368130,148273,1217636655,1209668470,99.12,99.3,85.56,85.56,2.3,2.3,1.35,1.36
-45050,39,165,39165,75,24,2783094,2783094,8548,3436,19279621,19279621,212693,80750,1054935779,1039398003,0.88,0.7,14.44,14.44,0.04,0.03,0.26,0.27
-45051,39,061,39061,177,0,223858,223858,177,0,223858,223858,802374,377364,1068709966,1051302780,100,0,100,100,0.02,0,0.02,0.02
-45052,39,061,39061,4004,1621,36180778,34031715,4004,1621,36180778,34031715,802374,377364,1068709966,1051302780,100,100,100,100,0.5,0.43,3.39,3.24
-45053,18,047,18047,10,5,14411,14411,3420,1269,70263624,70261951,23087,9538,1012814253,995668709,0.29,0.39,0.02,0.02,0.04,0.05,0,0
-45053,39,017,39017,3410,1264,70249213,70247540,3420,1269,70263624,70261951,368130,148273,1217636655,1209668470,99.71,99.61,99.98,99.98,0.93,0.85,5.77,5.81
-45054,39,165,39165,2471,955,79976770,79918725,2471,955,79976770,79918725,212693,80750,1054935779,1039398003,100,100,100,100,1.16,1.18,7.58,7.69
-45056,39,017,39017,27038,8942,197698624,196858630,27038,8942,197698624,196858630,368130,148273,1217636655,1209668470,100,100,100,100,7.34,6.03,16.24,16.27
-45062,39,017,39017,688,288,835505,835505,688,288,835505,835505,368130,148273,1217636655,1209668470,100,100,100,100,0.19,0.19,0.07,0.07
-45064,39,017,39017,1549,564,45904082,45710282,2857,1067,82519812,81959660,368130,148273,1217636655,1209668470,54.22,52.86,55.63,55.77,0.42,0.38,3.77,3.78
-45064,39,135,39135,1308,503,36615730,36249378,2857,1067,82519812,81959660,42270,17888,1104530526,1098465120,45.78,47.14,44.37,44.23,3.09,2.81,3.32,3.3
-45065,39,165,39165,4442,1785,7071887,6829617,4442,1785,7071887,6829617,212693,80750,1054935779,1039398003,100,100,100,100,2.09,2.21,0.67,0.66
-45066,39,113,39113,1218,401,546238,546238,23839,8582,53597404,53564611,535153,254775,1202621341,1195417263,5.11,4.67,1.02,1.02,0.23,0.16,0.05,0.05
-45066,39,165,39165,22621,8181,53051166,53018373,23839,8582,53597404,53564611,212693,80750,1054935779,1039398003,94.89,95.33,98.98,98.98,10.64,10.13,5.03,5.1
-45067,39,017,39017,13898,5211,52072004,51526002,13898,5211,52072004,51526002,368130,148273,1217636655,1209668470,100,100,100,100,3.78,3.51,4.28,4.26
-45068,39,027,39027,40,15,661898,656629,10479,4089,182202976,171139591,42040,18133,1067838909,1058487805,0.38,0.37,0.36,0.38,0.1,0.08,0.06,0.06
-45068,39,057,39057,149,58,9393179,9339243,10479,4089,182202976,171139591,161573,68241,1078096806,1071554325,1.42,1.42,5.16,5.46,0.09,0.08,0.87,0.87
-45068,39,165,39165,10290,4016,172147899,161143719,10479,4089,182202976,171139591,212693,80750,1054935779,1039398003,98.2,98.21,94.48,94.16,4.84,4.97,16.32,15.5
-45069,39,017,39017,49060,18912,73703421,73654844,49060,18912,73703421,73654844,368130,148273,1217636655,1209668470,100,100,100,100,13.33,12.75,6.05,6.09
-45070,39,135,39135,192,83,1042876,1042876,192,83,1042876,1042876,42270,17888,1104530526,1098465120,100,100,100,100,0.45,0.46,0.09,0.09
-45101,39,015,39015,2385,1237,47668799,46702126,2385,1237,47668799,46702126,44846,19301,1278033594,1269135535,100,100,100,100,5.32,6.41,3.73,3.68
-45102,39,025,39025,22680,9188,58176895,57056044,22680,9188,58176895,57056044,197363,80656,1190789235,1170933540,100,100,100,100,11.49,11.39,4.89,4.87
-45103,39,025,39025,31485,12639,227906153,223528274,31485,12639,227906153,223528274,197363,80656,1190789235,1170933540,100,100,100,100,15.95,15.67,19.14,19.09
-45106,39,015,39015,1237,474,36827115,36708689,12349,5012,196532040,194030848,44846,19301,1278033594,1269135535,10.02,9.46,18.74,18.92,2.76,2.46,2.88,2.89
-45106,39,025,39025,11112,4538,159704925,157322159,12349,5012,196532040,194030848,197363,80656,1190789235,1170933540,89.98,90.54,81.26,81.08,5.63,5.63,13.41,13.44
-45107,39,015,39015,688,257,37347729,37312323,9236,3785,196454549,195543716,44846,19301,1278033594,1269135535,7.45,6.79,19.01,19.08,1.53,1.33,2.92,2.94
-45107,39,025,39025,572,219,13196332,13159421,9236,3785,196454549,195543716,197363,80656,1190789235,1170933540,6.19,5.79,6.72,6.73,0.29,0.27,1.11,1.12
-45107,39,027,39027,6434,2736,109594491,108765864,9236,3785,196454549,195543716,42040,18133,1067838909,1058487805,69.66,72.29,55.79,55.62,15.3,15.09,10.26,10.28
-45107,39,165,39165,1542,573,36315997,36306108,9236,3785,196454549,195543716,212693,80750,1054935779,1039398003,16.7,15.14,18.49,18.57,0.72,0.71,3.44,3.49
-45111,39,061,39061,376,172,1997768,1976829,376,172,1997768,1976829,802374,377364,1068709966,1051302780,100,100,100,100,0.05,0.05,0.19,0.19
-45112,39,025,39025,64,56,836488,646754,64,56,836488,646754,197363,80656,1190789235,1170933540,100,100,100,100,0.03,0.07,0.07,0.06
-45113,39,027,39027,2648,1047,56688142,56104150,3857,1521,98332482,97735284,42040,18133,1067838909,1058487805,68.65,68.84,57.65,57.4,6.3,5.77,5.31,5.3
-45113,39,165,39165,1209,474,41644340,41631134,3857,1521,98332482,97735284,212693,80750,1054935779,1039398003,31.35,31.16,42.35,42.6,0.57,0.59,3.95,4.01
-45115,39,015,39015,78,38,2695496,2695496,78,38,2695496,2695496,44846,19301,1278033594,1269135535,100,100,100,100,0.17,0.2,0.21,0.21
-45118,39,015,39015,3459,1589,93985011,93256913,3614,1656,102520917,101792819,44846,19301,1278033594,1269135535,95.71,95.95,91.67,91.61,7.71,8.23,7.35,7.35
-45118,39,025,39025,125,55,3966692,3966692,3614,1656,102520917,101792819,197363,80656,1190789235,1170933540,3.46,3.32,3.87,3.9,0.06,0.07,0.33,0.34
-45118,39,071,39071,30,12,4569214,4569214,3614,1656,102520917,101792819,43589,19380,1444674950,1432479939,0.83,0.72,4.46,4.49,0.07,0.06,0.32,0.32
-45120,39,015,39015,601,251,24523854,24522400,3672,1499,107582339,106366916,44846,19301,1278033594,1269135535,16.37,16.74,22.8,23.05,1.34,1.3,1.92,1.93
-45120,39,025,39025,3071,1248,83058485,81844516,3672,1499,107582339,106366916,197363,80656,1190789235,1170933540,83.63,83.26,77.2,76.95,1.56,1.55,6.98,6.99
-45121,39,015,39015,8955,3863,268732033,266237407,9036,3906,272916231,269072945,44846,19301,1278033594,1269135535,99.1,98.9,98.47,98.95,19.97,20.01,21.03,20.98
-45121,39,025,39025,81,43,4184198,2835538,9036,3906,272916231,269072945,197363,80656,1190789235,1170933540,0.9,1.1,1.53,1.05,0.04,0.05,0.35,0.24
-45122,39,025,39025,10577,4159,108881223,108311141,11054,4350,114979569,114409487,197363,80656,1190789235,1170933540,95.68,95.61,94.7,94.67,5.36,5.16,9.14,9.25
-45122,39,165,39165,477,191,6098346,6098346,11054,4350,114979569,114409487,212693,80750,1054935779,1039398003,4.32,4.39,5.3,5.33,0.22,0.24,0.58,0.59
-45123,39,047,39047,611,257,57400959,57400959,8671,3751,257939234,254803040,29030,12693,1054163967,1052458662,7.05,6.85,22.25,22.53,2.1,2.02,5.45,5.45
-45123,39,071,39071,6895,3029,114076361,110940167,8671,3751,257939234,254803040,43589,19380,1444674950,1432479939,79.52,80.75,44.23,43.54,15.82,15.63,7.9,7.74
-45123,39,141,39141,1165,465,86461914,86461914,8671,3751,257939234,254803040,78064,32148,1794925534,1784988075,13.44,12.4,33.52,33.93,1.49,1.45,4.82,4.84
-45130,39,015,39015,3320,1324,82755988,82755988,3913,1553,97257823,97257823,44846,19301,1278033594,1269135535,84.85,85.25,85.09,85.09,7.4,6.86,6.48,6.52
-45130,39,025,39025,593,229,14501835,14501835,3913,1553,97257823,97257823,197363,80656,1190789235,1170933540,15.15,14.75,14.91,14.91,0.3,0.28,1.22,1.24
-45131,39,015,39015,238,129,664173,551849,238,129,664173,551849,44846,19301,1278033594,1269135535,100,100,100,100,0.53,0.67,0.05,0.04
-45132,39,071,39071,262,108,475921,475921,262,108,475921,475921,43589,19380,1444674950,1432479939,100,100,100,100,0.6,0.56,0.03,0.03
-45133,39,015,39015,28,12,800207,800207,23900,11168,835320330,826553733,44846,19301,1278033594,1269135535,0.12,0.11,0.1,0.1,0.06,0.06,0.06,0.06
-45133,39,071,39071,23601,11041,810491239,801731243,23900,11168,835320330,826553733,43589,19380,1444674950,1432479939,98.75,98.86,97.03,97,54.14,56.97,56.1,55.97
-45133,39,131,39131,271,115,24028884,24022283,23900,11168,835320330,826553733,28709,12481,1149892117,1140324043,1.13,1.03,2.88,2.91,0.94,0.92,2.09,2.11
-45135,39,027,39027,97,38,12107561,12077497,4761,1860,182634076,182575008,42040,18133,1067838909,1058487805,2.04,2.04,6.63,6.62,0.23,0.21,1.13,1.14
-45135,39,047,39047,367,120,34019430,34019430,4761,1860,182634076,182575008,29030,12693,1054163967,1052458662,7.71,6.45,18.63,18.63,1.26,0.95,3.23,3.23
-45135,39,071,39071,4297,1702,136507085,136478081,4761,1860,182634076,182575008,43589,19380,1444674950,1432479939,90.25,91.51,74.74,74.75,9.86,8.78,9.45,9.53
-45140,39,025,39025,27889,10152,62949267,62061273,53267,20412,121558624,119975558,197363,80656,1190789235,1170933540,52.36,49.74,51.79,51.73,14.13,12.59,5.29,5.3
-45140,39,061,39061,15347,5901,17901991,17453757,53267,20412,121558624,119975558,802374,377364,1068709966,1051302780,28.81,28.91,14.73,14.55,1.91,1.56,1.68,1.66
-45140,39,165,39165,10031,4359,40707366,40460528,53267,20412,121558624,119975558,212693,80750,1054935779,1039398003,18.83,21.36,33.49,33.72,4.72,5.4,3.86,3.89
-45142,39,015,39015,427,167,15780459,15778042,4444,1830,165272720,164884515,44846,19301,1278033594,1269135535,9.61,9.13,9.55,9.57,0.95,0.87,1.23,1.24
-45142,39,027,39027,449,171,27136032,26962642,4444,1830,165272720,164884515,42040,18133,1067838909,1058487805,10.1,9.34,16.42,16.35,1.07,0.94,2.54,2.55
-45142,39,071,39071,3568,1492,122356229,122143831,4444,1830,165272720,164884515,43589,19380,1444674950,1432479939,80.29,81.53,74.03,74.08,8.19,7.7,8.47,8.53
-45144,39,001,39001,4150,2114,168793920,166283084,4272,2187,184476634,181573512,28550,12978,1518374900,1512208946,97.14,96.66,91.5,91.58,14.54,16.29,11.12,11
-45144,39,015,39015,122,73,15682714,15290428,4272,2187,184476634,181573512,44846,19301,1278033594,1269135535,2.86,3.34,8.5,8.42,0.27,0.38,1.23,1.2
-45145,39,025,39025,40,12,63298,63298,40,12,63298,63298,197363,80656,1190789235,1170933540,100,100,100,100,0.02,0.01,0.01,0.01
-45146,39,027,39027,1580,608,70549754,70346976,1580,608,70549754,70346976,42040,18133,1067838909,1058487805,100,100,100,100,3.76,3.35,6.61,6.65
-45147,39,025,39025,138,60,596236,532868,147,69,2266761,1966002,197363,80656,1190789235,1170933540,93.88,86.96,26.3,27.1,0.07,0.07,0.05,0.05
-45147,39,061,39061,9,9,1670525,1433134,147,69,2266761,1966002,802374,377364,1068709966,1051302780,6.12,13.04,73.7,72.9,0,0,0.16,0.14
-45148,39,015,39015,83,29,976733,976733,1588,599,60223817,59926148,44846,19301,1278033594,1269135535,5.23,4.84,1.62,1.63,0.19,0.15,0.08,0.08
-45148,39,027,39027,1505,570,59247084,58949415,1588,599,60223817,59926148,42040,18133,1067838909,1058487805,94.77,95.16,98.38,98.37,3.58,3.14,5.55,5.57
-45150,39,025,39025,31375,13313,84927462,84050845,31394,13326,85666117,84727343,197363,80656,1190789235,1170933540,99.94,99.9,99.14,99.2,15.9,16.51,7.13,7.18
-45150,39,061,39061,19,13,738655,676498,31394,13326,85666117,84727343,802374,377364,1068709966,1051302780,0.06,0.1,0.86,0.8,0,0,0.07,0.06
-45152,39,165,39165,11329,4363,134256194,133620318,11329,4363,134256194,133620318,212693,80750,1054935779,1039398003,100,100,100,100,5.33,5.4,12.73,12.86
-45153,39,025,39025,1665,711,72886938,72193325,1665,711,72886938,72193325,197363,80656,1190789235,1170933540,100,100,100,100,0.84,0.88,6.12,6.17
-45154,39,015,39015,8705,3400,147964335,147409319,9172,3574,172454663,171899647,44846,19301,1278033594,1269135535,94.91,95.13,85.8,85.75,19.41,17.62,11.58,11.61
-45154,39,071,39071,467,174,24490328,24490328,9172,3574,172454663,171899647,43589,19380,1444674950,1432479939,5.09,4.87,14.2,14.25,1.07,0.9,1.7,1.71
-45155,39,071,39071,366,155,1331233,1312189,366,155,1331233,1312189,43589,19380,1444674950,1432479939,100,100,100,100,0.84,0.8,0.09,0.09
-45156,39,025,39025,98,46,2022161,1642750,98,46,2022161,1642750,197363,80656,1190789235,1170933540,100,100,100,100,0.05,0.06,0.17,0.14
-45157,39,025,39025,9758,3858,110182928,108100853,9758,3858,110182928,108100853,197363,80656,1190789235,1170933540,100,100,100,100,4.94,4.78,9.25,9.23
-45158,39,025,39025,370,135,547627,547627,370,135,547627,547627,197363,80656,1190789235,1170933540,100,100,100,100,0.19,0.17,0.05,0.05
-45159,39,027,39027,2125,924,78659922,78347926,3392,1411,132525552,132196466,42040,18133,1067838909,1058487805,62.65,65.49,59.35,59.27,5.05,5.1,7.37,7.4
-45159,39,071,39071,1267,487,53865630,53848540,3392,1411,132525552,132196466,43589,19380,1444674950,1432479939,37.35,34.51,40.65,40.73,2.91,2.51,3.73,3.76
-45160,39,025,39025,699,389,898900,898900,699,389,898900,898900,197363,80656,1190789235,1170933540,100,100,100,100,0.35,0.48,0.08,0.08
-45162,39,025,39025,940,380,20552294,19983814,2519,1004,61723177,61153534,197363,80656,1190789235,1170933540,37.32,37.85,33.3,32.68,0.48,0.47,1.73,1.71
-45162,39,165,39165,1579,624,41170883,41169720,2519,1004,61723177,61153534,212693,80750,1054935779,1039398003,62.68,62.15,66.7,67.32,0.74,0.77,3.9,3.96
-45164,39,027,39027,271,119,744108,734650,271,119,744108,734650,42040,18133,1067838909,1058487805,100,100,100,100,0.64,0.66,0.07,0.07
-45166,39,027,39027,98,44,1915427,1915427,98,44,1915427,1915427,42040,18133,1067838909,1058487805,100,100,100,100,0.23,0.24,0.18,0.18
-45167,39,015,39015,3764,1872,160905777,158840843,3764,1872,160905777,158840843,44846,19301,1278033594,1269135535,100,100,100,100,8.39,9.7,12.59,12.52
-45168,39,015,39015,1607,664,84913378,84869300,1607,664,84913378,84869300,44846,19301,1278033594,1269135535,100,100,100,100,3.58,3.44,6.64,6.69
-45169,39,027,39027,4408,1942,189798837,189382483,4772,2097,252359797,251525971,42040,18133,1067838909,1058487805,92.37,92.61,75.21,75.29,10.49,10.71,17.77,17.89
-45169,39,047,39047,273,118,50105158,49805188,4772,2097,252359797,251525971,29030,12693,1054163967,1052458662,5.72,5.63,19.85,19.8,0.94,0.93,4.75,4.73
-45169,39,057,39057,91,37,12455802,12338300,4772,2097,252359797,251525971,161573,68241,1078096806,1071554325,1.91,1.76,4.94,4.91,0.06,0.05,1.16,1.15
-45171,39,015,39015,4739,2172,118705045,117338519,6054,2695,196811076,195423265,44846,19301,1278033594,1269135535,78.28,80.59,60.31,60.04,10.57,11.25,9.29,9.25
-45171,39,071,39071,1315,523,78106031,78084746,6054,2695,196811076,195423265,43589,19380,1444674950,1432479939,21.72,19.41,39.69,39.96,3.02,2.7,5.41,5.45
-45172,39,071,39071,131,60,1142617,1142617,131,60,1142617,1142617,43589,19380,1444674950,1432479939,100,100,100,100,0.3,0.31,0.08,0.08
-45174,39,061,39061,2258,812,3347712,3186033,2258,812,3347712,3186033,802374,377364,1068709966,1051302780,100,100,100,100,0.28,0.22,0.31,0.3
-45176,39,015,39015,3189,1243,48155544,48139749,9100,3648,139505050,136571459,44846,19301,1278033594,1269135535,35.04,34.07,34.52,35.25,7.11,6.44,3.77,3.79
-45176,39,025,39025,5911,2405,91349506,88431710,9100,3648,139505050,136571459,197363,80656,1190789235,1170933540,64.96,65.93,65.48,64.75,2.99,2.98,7.67,7.55
-45177,39,027,39027,22260,9871,453299574,446897752,22260,9871,453299574,446897752,42040,18133,1067838909,1058487805,100,100,100,100,52.95,54.44,42.45,42.22
-45202,39,061,39061,15483,10586,7474558,7015784,15483,10586,7474558,7015784,802374,377364,1068709966,1051302780,100,100,100,100,1.93,2.81,0.7,0.67
-45203,39,061,39061,2236,1313,3428240,3288293,2236,1313,3428240,3288293,802374,377364,1068709966,1051302780,100,100,100,100,0.28,0.35,0.32,0.31
-45204,39,061,39061,6972,3569,9093198,8396558,6972,3569,9093198,8396558,802374,377364,1068709966,1051302780,100,100,100,100,0.87,0.95,0.85,0.8
-45205,39,061,39061,19389,9350,7509626,7509626,19389,9350,7509626,7509626,802374,377364,1068709966,1051302780,100,100,100,100,2.42,2.48,0.7,0.71
-45206,39,061,39061,10745,7467,5217974,5217974,10745,7467,5217974,5217974,802374,377364,1068709966,1051302780,100,100,100,100,1.34,1.98,0.49,0.5
-45207,39,061,39061,7974,3188,3045985,3045985,7974,3188,3045985,3045985,802374,377364,1068709966,1051302780,100,100,100,100,0.99,0.84,0.29,0.29
-45208,39,061,39061,17614,9565,10995054,10995054,17614,9565,10995054,10995054,802374,377364,1068709966,1051302780,100,100,100,100,2.2,2.53,1.03,1.05
-45209,39,061,39061,9605,6193,6141926,6141926,9605,6193,6141926,6141926,802374,377364,1068709966,1051302780,100,100,100,100,1.2,1.64,0.57,0.58
-45211,39,061,39061,36111,18003,23427417,23425115,36111,18003,23427417,23425115,802374,377364,1068709966,1051302780,100,100,100,100,4.5,4.77,2.19,2.23
-45212,39,061,39061,22253,11191,9652925,9652925,22253,11191,9652925,9652925,802374,377364,1068709966,1051302780,100,100,100,100,2.77,2.97,0.9,0.92
-45213,39,061,39061,12013,6023,8191232,8191232,12013,6023,8191232,8191232,802374,377364,1068709966,1051302780,100,100,100,100,1.5,1.6,0.77,0.78
-45214,39,061,39061,8738,5088,5903050,5891635,8738,5088,5903050,5891635,802374,377364,1068709966,1051302780,100,100,100,100,1.09,1.35,0.55,0.56
-45215,39,061,39061,29623,13934,30397015,30397015,29623,13934,30397015,30397015,802374,377364,1068709966,1051302780,100,100,100,100,3.69,3.69,2.84,2.89
-45216,39,061,39061,9570,4809,7809213,7809213,9570,4809,7809213,7809213,802374,377364,1068709966,1051302780,100,100,100,100,1.19,1.27,0.73,0.74
-45217,39,061,39061,6566,3332,5390296,5358625,6566,3332,5390296,5358625,802374,377364,1068709966,1051302780,100,100,100,100,0.82,0.88,0.5,0.51
-45218,39,061,39061,3846,1734,4249721,4240091,3846,1734,4249721,4240091,802374,377364,1068709966,1051302780,100,100,100,100,0.48,0.46,0.4,0.4
-45219,39,061,39061,16526,7917,4544822,4544822,16526,7917,4544822,4544822,802374,377364,1068709966,1051302780,100,100,100,100,2.06,2.1,0.43,0.43
-45220,39,061,39061,15313,7838,7477444,7418507,15313,7838,7477444,7418507,802374,377364,1068709966,1051302780,100,100,100,100,1.91,2.08,0.7,0.71
-45223,39,061,39061,12360,6886,15080767,15065382,12360,6886,15080767,15065382,802374,377364,1068709966,1051302780,100,100,100,100,1.54,1.82,1.41,1.43
-45224,39,061,39061,19837,9679,16649315,16649315,19837,9679,16649315,16649315,802374,377364,1068709966,1051302780,100,100,100,100,2.47,2.56,1.56,1.58
-45225,39,061,39061,9040,4850,8093415,8062139,9040,4850,8093415,8062139,802374,377364,1068709966,1051302780,100,100,100,100,1.13,1.29,0.76,0.77
-45226,39,061,39061,5476,2987,15842241,14409372,5476,2987,15842241,14409372,802374,377364,1068709966,1051302780,100,100,100,100,0.68,0.79,1.48,1.37
-45227,39,061,39061,17486,9219,15223431,15003435,17486,9219,15223431,15003435,802374,377364,1068709966,1051302780,100,100,100,100,2.18,2.44,1.42,1.43
-45229,39,061,39061,13020,8070,7069912,7069912,13020,8070,7069912,7069912,802374,377364,1068709966,1051302780,100,100,100,100,1.62,2.14,0.66,0.67
-45230,39,061,39061,27536,12557,36641186,35513234,27536,12557,36641186,35513234,802374,377364,1068709966,1051302780,100,100,100,100,3.43,3.33,3.43,3.38
-45231,39,061,39061,40893,17435,37713494,37167726,40893,17435,37713494,37167726,802374,377364,1068709966,1051302780,100,100,100,100,5.1,4.62,3.53,3.54
-45232,39,061,39061,6358,2732,6143641,6121285,6358,2732,6143641,6121285,802374,377364,1068709966,1051302780,100,100,100,100,0.79,0.72,0.57,0.58
-45233,39,061,39061,15808,5933,29661863,28784372,15808,5933,29661863,28784372,802374,377364,1068709966,1051302780,100,100,100,100,1.97,1.57,2.78,2.74
-45236,39,061,39061,24552,12260,17917799,17917799,24552,12260,17917799,17917799,802374,377364,1068709966,1051302780,100,100,100,100,3.06,3.25,1.68,1.7
-45237,39,061,39061,20021,10349,15698055,15698055,20021,10349,15698055,15698055,802374,377364,1068709966,1051302780,100,100,100,100,2.5,2.74,1.47,1.49
-45238,39,061,39061,45760,20408,26062841,26059960,45760,20408,26062841,26059960,802374,377364,1068709966,1051302780,100,100,100,100,5.7,5.41,2.44,2.48
-45239,39,061,39061,28315,12845,16405157,16402472,28315,12845,16405157,16402472,802374,377364,1068709966,1051302780,100,100,100,100,3.53,3.4,1.54,1.56
-45240,39,061,39061,27286,11102,24142915,23914080,27286,11102,24142915,23914080,802374,377364,1068709966,1051302780,100,100,100,100,3.4,2.94,2.26,2.27
-45241,39,017,39017,7890,3208,8949847,8949847,23044,10290,45864042,45714301,368130,148273,1217636655,1209668470,34.24,31.18,19.51,19.58,2.14,2.16,0.74,0.74
-45241,39,061,39061,15086,7048,36684315,36534574,23044,10290,45864042,45714301,802374,377364,1068709966,1051302780,65.47,68.49,79.98,79.92,1.88,1.87,3.43,3.48
-45241,39,165,39165,68,34,229880,229880,23044,10290,45864042,45714301,212693,80750,1054935779,1039398003,0.3,0.33,0.5,0.5,0.03,0.04,0.02,0.02
-45242,39,061,39061,22055,9256,35886613,35800316,22055,9256,35886613,35800316,802374,377364,1068709966,1051302780,100,100,100,100,2.75,2.45,3.36,3.41
-45243,39,061,39061,14891,5954,50551995,50325120,14891,5954,50551995,50325120,802374,377364,1068709966,1051302780,100,100,100,100,1.86,1.58,4.73,4.79
-45244,39,025,39025,13118,5260,18272924,18232174,28565,11096,58588896,56993383,197363,80656,1190789235,1170933540,45.92,47.4,31.19,31.99,6.65,6.52,1.53,1.56
-45244,39,061,39061,15447,5836,40315972,38761209,28565,11096,58588896,56993383,802374,377364,1068709966,1051302780,54.08,52.6,68.81,68.01,1.93,1.55,3.77,3.69
-45245,39,025,39025,18542,8315,40885726,40790278,18542,8315,40885726,40790278,197363,80656,1190789235,1170933540,100,100,100,100,9.39,10.31,3.43,3.48
-45246,39,017,39017,1012,356,5937703,5937703,15133,6876,26191153,26161979,368130,148273,1217636655,1209668470,6.69,5.18,22.67,22.7,0.27,0.24,0.49,0.49
-45246,39,061,39061,14121,6520,20253450,20224276,15133,6876,26191153,26161979,802374,377364,1068709966,1051302780,93.31,94.82,77.33,77.3,1.76,1.73,1.9,1.92
-45247,39,061,39061,22082,9673,55332043,54944312,22082,9673,55332043,54944312,802374,377364,1068709966,1051302780,100,100,100,100,2.75,2.56,5.18,5.23
-45248,39,061,39061,24915,10334,30820004,30820004,24915,10334,30820004,30820004,802374,377364,1068709966,1051302780,100,100,100,100,3.11,2.74,2.88,2.93
-45249,39,061,39061,12557,5524,16079005,16011167,12902,5732,16921304,16853466,802374,377364,1068709966,1051302780,97.33,96.37,95.02,95,1.56,1.46,1.5,1.52
-45249,39,165,39165,345,208,842299,842299,12902,5732,16921304,16853466,212693,80750,1054935779,1039398003,2.67,3.63,4.98,5,0.16,0.26,0.08,0.08
-45251,39,061,39061,22391,8849,30966057,30910431,22391,8849,30966057,30910431,802374,377364,1068709966,1051302780,100,100,100,100,2.79,2.34,2.9,2.94
-45252,39,061,39061,4600,2012,29836952,29399797,4600,2012,29836952,29399797,802374,377364,1068709966,1051302780,100,100,100,100,0.57,0.53,2.79,2.8
-45255,39,025,39025,6460,3246,10240742,10231451,21775,9416,33579341,33083600,197363,80656,1190789235,1170933540,29.67,34.47,30.5,30.93,3.27,4.02,0.86,0.87
-45255,39,061,39061,15315,6170,23338599,22852149,21775,9416,33579341,33083600,802374,377364,1068709966,1051302780,70.33,65.53,69.5,69.07,1.91,1.64,2.18,2.17
-45301,39,057,39057,130,60,239222,239222,130,60,239222,239222,161573,68241,1078096806,1071554325,100,100,100,100,0.08,0.09,0.02,0.02
-45302,39,149,39149,4280,1539,131141052,130944676,4280,1539,131141052,130944676,49423,20173,1063688077,1055874043,100,100,100,100,8.66,7.63,12.33,12.4
-45303,39,037,39037,2223,910,82429351,82269379,2223,910,82429351,82269379,52959,22730,1553363404,1549072326,100,100,100,100,4.2,4,5.31,5.31
-45304,39,037,39037,7198,3004,217658951,217429489,7300,3037,220054076,219824614,52959,22730,1553363404,1549072326,98.6,98.91,98.91,98.91,13.59,13.22,14.01,14.04
-45304,39,109,39109,24,6,1300425,1300425,7300,3037,220054076,219824614,102506,44256,1061004458,1053037884,0.33,0.2,0.59,0.59,0.02,0.01,0.12,0.12
-45304,39,135,39135,78,27,1094700,1094700,7300,3037,220054076,219824614,42270,17888,1104530526,1098465120,1.07,0.89,0.5,0.5,0.18,0.15,0.1,0.1
-45305,39,057,39057,10712,4304,37679342,37421364,10712,4304,37679342,37421364,161573,68241,1078096806,1071554325,100,100,100,100,6.63,6.31,3.49,3.49
-45306,39,011,39011,21,8,1117254,1117254,2294,920,86974705,86806539,45949,19585,1040930421,1039585234,0.92,0.87,1.28,1.29,0.05,0.04,0.11,0.11
-45306,39,149,39149,2273,912,85857451,85689285,2294,920,86974705,86806539,49423,20173,1063688077,1055874043,99.08,99.13,98.72,98.71,4.6,4.52,8.07,8.12
-45307,39,057,39057,338,146,414653,414653,338,146,414653,414653,161573,68241,1078096806,1071554325,100,100,100,100,0.21,0.21,0.04,0.04
-45308,39,037,39037,2862,1119,95738614,95066053,4682,1862,133576357,132479124,52959,22730,1553363404,1549072326,61.13,60.1,71.67,71.76,5.4,4.92,6.16,6.14
-45308,39,109,39109,1820,743,37837743,37413071,4682,1862,133576357,132479124,102506,44256,1061004458,1053037884,38.87,39.9,28.33,28.24,1.78,1.68,3.57,3.55
-45309,39,037,39037,58,19,4470250,4470250,12123,5241,172761191,172759678,52959,22730,1553363404,1549072326,0.48,0.36,2.59,2.59,0.11,0.08,0.29,0.29
-45309,39,113,39113,12039,5212,167583709,167583709,12123,5241,172761191,172759678,535153,254775,1202621341,1195417263,99.31,99.45,97,97,2.25,2.05,13.93,14.02
-45309,39,135,39135,26,10,707232,705719,12123,5241,172761191,172759678,42270,17888,1104530526,1098465120,0.21,0.19,0.41,0.41,0.06,0.06,0.06,0.06
-45310,39,037,39037,74,26,124749,120638,244,104,454341,450230,52959,22730,1553363404,1549072326,30.33,25,27.46,26.79,0.14,0.11,0.01,0.01
-45310,39,107,39107,170,78,329592,329592,244,104,454341,450230,40814,17633,1226164284,1197736887,69.67,75,72.54,73.21,0.42,0.44,0.03,0.03
-45311,39,135,39135,6367,2640,238716915,236635351,6367,2640,238716915,236635351,42270,17888,1104530526,1098465120,100,100,100,100,15.06,14.76,21.61,21.54
-45312,39,021,39021,11,5,1115393,1115393,1435,574,71382894,71366385,40097,16755,1113263113,1110247425,0.77,0.87,1.56,1.56,0.03,0.03,0.1,0.1
-45312,39,109,39109,1424,569,70267501,70250992,1435,574,71382894,71366385,102506,44256,1061004458,1053037884,99.23,99.13,98.44,98.44,1.39,1.29,6.62,6.67
-45314,39,023,39023,33,13,2523190,2518462,5916,1457,131581026,131063332,138333,61419,1042539696,1029450254,0.56,0.89,1.92,1.92,0.02,0.02,0.24,0.24
-45314,39,057,39057,5883,1444,129057836,128544870,5916,1457,131581026,131063332,161573,68241,1078096806,1071554325,99.44,99.11,98.08,98.08,3.64,2.12,11.97,12
-45315,39,113,39113,4377,1731,27799987,27799987,4377,1731,27799987,27799987,535153,254775,1202621341,1195417263,100,100,100,100,0.82,0.68,2.31,2.33
-45316,39,023,39023,27,14,85597,85597,115,63,251280,251280,138333,61419,1042539696,1029450254,23.48,22.22,34.06,34.06,0.02,0.02,0.01,0.01
-45316,39,057,39057,88,49,165683,165683,115,63,251280,251280,161573,68241,1078096806,1071554325,76.52,77.78,65.94,65.94,0.05,0.07,0.02,0.02
-45317,39,021,39021,539,216,32336421,32336421,1180,474,63952240,63941353,40097,16755,1113263113,1110247425,45.68,45.57,50.56,50.57,1.34,1.29,2.9,2.91
-45317,39,109,39109,535,219,24005911,23995024,1180,474,63952240,63941353,102506,44256,1061004458,1053037884,45.34,46.2,37.54,37.53,0.52,0.49,2.26,2.28
-45317,39,149,39149,106,39,7609908,7609908,1180,474,63952240,63941353,49423,20173,1063688077,1055874043,8.98,8.23,11.9,11.9,0.21,0.19,0.72,0.72
-45318,39,037,39037,17,7,821467,819848,5365,2242,116612795,115802652,52959,22730,1553363404,1549072326,0.32,0.31,0.7,0.71,0.03,0.03,0.05,0.05
-45318,39,109,39109,5348,2235,115791328,114982804,5365,2242,116612795,115802652,102506,44256,1061004458,1053037884,99.68,99.69,99.3,99.29,5.22,5.05,10.91,10.92
-45319,39,023,39023,293,125,1013672,1013672,293,125,1013672,1013672,138333,61419,1042539696,1029450254,100,100,100,100,0.21,0.2,0.1,0.1
-45320,39,135,39135,15691,6817,347588351,346581049,15691,6817,347588351,346581049,42270,17888,1104530526,1098465120,100,100,100,100,37.12,38.11,31.47,31.55
-45321,39,135,39135,931,381,34005571,33978836,931,381,34005571,33978836,42270,17888,1104530526,1098465120,100,100,100,100,2.2,2.13,3.08,3.09
-45322,39,109,39109,349,150,11238821,11053158,21447,9277,51847092,51526707,102506,44256,1061004458,1053037884,1.63,1.62,21.68,21.45,0.34,0.34,1.06,1.05
-45322,39,113,39113,21098,9127,40608271,40473549,21447,9277,51847092,51526707,535153,254775,1202621341,1195417263,98.37,98.38,78.32,78.55,3.94,3.58,3.38,3.39
-45323,39,023,39023,5019,2254,16394775,16394775,5019,2254,16394775,16394775,138333,61419,1042539696,1029450254,100,100,100,100,3.63,3.67,1.57,1.59
-45324,39,023,39023,1963,786,24153350,23585292,40529,18400,83593074,82984020,138333,61419,1042539696,1029450254,4.84,4.27,28.89,28.42,1.42,1.28,2.32,2.29
-45324,39,057,39057,38566,17614,59439724,59398728,40529,18400,83593074,82984020,161573,68241,1078096806,1071554325,95.16,95.73,71.11,71.58,23.87,25.81,5.51,5.54
-45325,39,113,39113,2647,1053,66194006,65773355,2647,1053,66194006,65773355,535153,254775,1202621341,1195417263,100,100,100,100,0.49,0.41,5.5,5.5
-45326,39,109,39109,1179,479,59786893,59748094,1179,479,59786893,59748094,102506,44256,1061004458,1053037884,100,100,100,100,1.15,1.08,5.63,5.67
-45327,39,017,39017,145,52,1526968,1526968,8917,3719,124349216,124312997,368130,148273,1217636655,1209668470,1.63,1.4,1.23,1.23,0.04,0.04,0.13,0.13
-45327,39,113,39113,8665,3624,116882467,116882467,8917,3719,124349216,124312997,535153,254775,1202621341,1195417263,97.17,97.45,94,94.02,1.62,1.42,9.72,9.78
-45327,39,135,39135,107,43,5939781,5903562,8917,3719,124349216,124312997,42270,17888,1104530526,1098465120,1.2,1.16,4.78,4.75,0.25,0.24,0.54,0.54
-45328,39,037,39037,525,196,1035419,1032186,525,196,1035419,1032186,52959,22730,1553363404,1549072326,100,100,100,100,0.99,0.86,0.07,0.07
-45330,39,135,39135,834,350,2253922,2251755,834,350,2253922,2251755,42270,17888,1104530526,1098465120,100,100,100,100,1.97,1.96,0.2,0.2
-45331,39,037,39037,22930,10619,388723861,387232398,22930,10619,388723861,387232398,52959,22730,1553363404,1549072326,100,100,100,100,43.3,46.72,25.02,25
-45332,39,037,39037,612,280,33089959,32930853,612,280,33089959,32930853,52959,22730,1553363404,1549072326,100,100,100,100,1.16,1.23,2.13,2.13
-45333,39,149,39149,1345,513,58032438,57400196,1345,513,58032438,57400196,49423,20173,1063688077,1055874043,100,100,100,100,2.72,2.54,5.46,5.44
-45334,39,011,39011,22,5,2884995,2884995,2037,875,66656952,66595104,45949,19585,1040930421,1039585234,1.08,0.57,4.33,4.33,0.05,0.03,0.28,0.28
-45334,39,091,39091,10,4,873520,873520,2037,875,66656952,66595104,45858,23181,1208935411,1187326601,0.49,0.46,1.31,1.31,0.02,0.02,0.07,0.07
-45334,39,149,39149,2005,866,62898437,62836589,2037,875,66656952,66595104,49423,20173,1063688077,1055874043,98.43,98.97,94.36,94.36,4.06,4.29,5.91,5.95
-45335,39,027,39027,125,48,7436079,7346394,6939,2831,220857434,219901987,42040,18133,1067838909,1058487805,1.8,1.7,3.37,3.34,0.3,0.26,0.7,0.69
-45335,39,047,39047,71,30,10947510,10947510,6939,2831,220857434,219901987,29030,12693,1054163967,1052458662,1.02,1.06,4.96,4.98,0.24,0.24,1.04,1.04
-45335,39,057,39057,6743,2753,202473845,201608083,6939,2831,220857434,219901987,161573,68241,1078096806,1071554325,97.18,97.24,91.68,91.68,4.17,4.03,18.78,18.81
-45336,39,149,39149,153,62,1986073,1976171,153,62,1986073,1976171,49423,20173,1063688077,1055874043,100,100,100,100,0.31,0.31,0.19,0.19
-45337,39,037,39037,288,109,18986312,18978427,1690,674,53103521,53043821,52959,22730,1553363404,1549072326,17.04,16.17,35.75,35.78,0.54,0.48,1.22,1.23
-45337,39,109,39109,1402,565,34117209,34065394,1690,674,53103521,53043821,102506,44256,1061004458,1053037884,82.96,83.83,64.25,64.22,1.37,1.28,3.22,3.23
-45338,39,135,39135,5298,2193,132105183,131690266,5298,2193,132105183,131690266,42270,17888,1104530526,1098465120,100,100,100,100,12.53,12.26,11.96,11.99
-45339,39,109,39109,1234,540,37625471,37004075,1234,540,37625471,37004075,102506,44256,1061004458,1053037884,100,100,100,100,1.2,1.22,3.55,3.51
-45340,39,149,39149,830,312,59948080,59814558,830,312,59948080,59814558,49423,20173,1063688077,1055874043,100,100,100,100,1.68,1.55,5.64,5.66
-45341,39,023,39023,3883,1820,16641313,15699652,3883,1820,16641313,15699652,138333,61419,1042539696,1029450254,100,100,100,100,2.81,2.96,1.6,1.53
-45342,39,113,39113,36660,16475,89731436,88634686,36784,16528,90933787,89837037,535153,254775,1202621341,1195417263,99.66,99.68,98.68,98.66,6.85,6.47,7.46,7.41
-45342,39,165,39165,124,53,1202351,1202351,36784,16528,90933787,89837037,212693,80750,1054935779,1039398003,0.34,0.32,1.32,1.34,0.06,0.07,0.11,0.12
-45344,39,021,39021,89,31,1968355,1968355,16955,6880,171641236,171039722,40097,16755,1113263113,1110247425,0.52,0.45,1.15,1.15,0.22,0.19,0.18,0.18
-45344,39,023,39023,15136,6153,133690479,133253569,16955,6880,171641236,171039722,138333,61419,1042539696,1029450254,89.27,89.43,77.89,77.91,10.94,10.02,12.82,12.94
-45344,39,109,39109,1715,691,35594852,35430248,16955,6880,171641236,171039722,102506,44256,1061004458,1053037884,10.12,10.04,20.74,20.71,1.67,1.56,3.35,3.36
-45344,39,113,39113,15,5,387550,387550,16955,6880,171641236,171039722,535153,254775,1202621341,1195417263,0.09,0.07,0.23,0.23,0,0,0.03,0.03
-45345,39,113,39113,6144,2612,56344418,56344418,6144,2612,56344418,56344418,535153,254775,1202621341,1195417263,100,100,100,100,1.15,1.03,4.69,4.71
-45346,39,037,39037,2293,926,108931273,108757039,2293,926,108931273,108757039,52959,22730,1553363404,1549072326,100,100,100,100,4.33,4.07,7.01,7.02
-45347,39,037,39037,602,242,36018414,35916070,4324,1919,143385687,142794848,52959,22730,1553363404,1549072326,13.92,12.61,25.12,25.15,1.14,1.06,2.32,2.32
-45347,39,135,39135,3722,1677,107367273,106878778,4324,1919,143385687,142794848,42270,17888,1104530526,1098465120,86.08,87.39,74.88,74.85,8.81,9.38,9.72,9.73
-45348,39,037,39037,994,372,78813741,78463979,994,372,78813741,78463979,52959,22730,1553363404,1549072326,100,100,100,100,1.88,1.64,5.07,5.07
-45349,39,023,39023,427,147,692700,692700,427,147,692700,692700,138333,61419,1042539696,1029450254,100,100,100,100,0.31,0.24,0.07,0.07
-45350,39,037,39037,106,36,491695,491695,106,36,491695,491695,52959,22730,1553363404,1549072326,100,100,100,100,0.2,0.16,0.03,0.03
-45351,39,037,39037,274,110,827589,827589,274,110,827589,827589,52959,22730,1553363404,1549072326,100,100,100,100,0.52,0.48,0.05,0.05
-45352,39,037,39037,208,92,380147,380147,208,92,380147,380147,52959,22730,1553363404,1549072326,100,100,100,100,0.39,0.4,0.02,0.02
-45353,39,149,39149,196,76,7282358,7282358,196,76,7282358,7282358,49423,20173,1063688077,1055874043,100,100,100,100,0.4,0.38,0.68,0.69
-45354,39,113,39113,642,290,2277178,2277178,642,290,2277178,2277178,535153,254775,1202621341,1195417263,100,100,100,100,0.12,0.11,0.19,0.19
-45356,39,109,39109,24473,10989,169992237,168268525,25172,11263,199649450,197385937,102506,44256,1061004458,1053037884,97.22,97.57,85.15,85.25,23.87,24.83,16.02,15.98
-45356,39,149,39149,699,274,29657213,29117412,25172,11263,199649450,197385937,49423,20173,1063688077,1055874043,2.78,2.43,14.85,14.75,1.41,1.36,2.79,2.76
-45358,39,037,39037,356,145,396100,396100,356,145,396100,396100,52959,22730,1553363404,1549072326,100,100,100,100,0.67,0.64,0.03,0.03
-45359,39,109,39109,1970,808,39376147,39016882,1970,808,39376147,39016882,102506,44256,1061004458,1053037884,100,100,100,100,1.92,1.83,3.71,3.71
-45360,39,149,39149,335,143,397872,376391,335,143,397872,376391,49423,20173,1063688077,1055874043,100,100,100,100,0.68,0.71,0.04,0.04
-45361,39,109,39109,288,104,1153417,1153417,288,104,1153417,1153417,102506,44256,1061004458,1053037884,100,100,100,100,0.28,0.23,0.11,0.11
-45362,39,037,39037,1076,435,83225188,83119257,1076,435,83225188,83119257,52959,22730,1553363404,1549072326,100,100,100,100,2.03,1.91,5.36,5.37
-45363,39,149,39149,1770,617,60590990,60470353,1770,617,60590990,60470353,49423,20173,1063688077,1055874043,100,100,100,100,3.58,3.06,5.7,5.73
-45365,39,021,39021,11,5,1707165,1707165,30561,12844,417570748,415499216,40097,16755,1113263113,1110247425,0.04,0.04,0.41,0.41,0.03,0.03,0.15,0.15
-45365,39,149,39149,30550,12839,415863583,413792051,30561,12844,417570748,415499216,49423,20173,1063688077,1055874043,99.96,99.96,99.59,99.59,61.81,63.64,39.1,39.19
-45368,39,023,39023,4674,2021,190931495,190517876,4727,2042,205310868,204888723,138333,61419,1042539696,1029450254,98.88,98.97,93,92.99,3.38,3.29,18.31,18.51
-45368,39,057,39057,53,21,14379373,14370847,4727,2042,205310868,204888723,161573,68241,1078096806,1071554325,1.12,1.03,7,7.01,0.03,0.03,1.33,1.34
-45369,39,023,39023,3527,1410,112534855,111752589,3545,1418,114999507,114217241,138333,61419,1042539696,1029450254,99.49,99.44,97.86,97.84,2.55,2.3,10.79,10.86
-45369,39,097,39097,18,8,2464652,2464652,3545,1418,114999507,114217241,43435,15939,1208565321,1206610780,0.51,0.56,2.14,2.16,0.04,0.05,0.2,0.2
-45370,39,057,39057,2452,1045,56238411,55657336,2452,1045,56238411,55657336,161573,68241,1078096806,1071554325,100,100,100,100,1.52,1.53,5.22,5.19
-45371,39,109,39109,18267,7694,128066964,126710805,18333,7719,129103608,127747449,102506,44256,1061004458,1053037884,99.64,99.68,99.2,99.19,17.82,17.39,12.07,12.03
-45371,39,113,39113,66,25,1036644,1036644,18333,7719,129103608,127747449,535153,254775,1202621341,1195417263,0.36,0.32,0.8,0.81,0.01,0.01,0.09,0.09
-45372,39,023,39023,375,166,663728,663728,375,166,663728,663728,138333,61419,1042539696,1029450254,100,100,100,100,0.27,0.27,0.06,0.06
-45373,39,109,39109,35131,15223,223424812,221556544,35131,15223,223424812,221556544,102506,44256,1061004458,1053037884,100,100,100,100,34.27,34.4,21.06,21.04
-45377,39,113,39113,15215,7025,57887906,57193263,15215,7025,57887906,57193263,535153,254775,1202621341,1195417263,100,100,100,100,2.84,2.76,4.81,4.78
-45378,39,135,39135,407,163,591625,591625,407,163,591625,591625,42270,17888,1104530526,1098465120,100,100,100,100,0.96,0.91,0.05,0.05
-45380,39,037,39037,5477,2140,177386446,176975172,5477,2140,177386446,176975172,52959,22730,1553363404,1549072326,100,100,100,100,10.34,9.41,11.42,11.42
-45381,39,113,39113,217,82,10523232,10523232,5509,2254,133252611,132791809,535153,254775,1202621341,1195417263,3.94,3.64,7.9,7.92,0.04,0.03,0.88,0.88
-45381,39,135,39135,5292,2172,122729379,122268577,5509,2254,133252611,132791809,42270,17888,1104530526,1098465120,96.06,96.36,92.1,92.08,12.52,12.14,11.11,11.13
-45382,39,037,39037,221,76,14010600,14006244,1269,497,53497118,53484263,52959,22730,1553363404,1549072326,17.42,15.29,26.19,26.19,0.42,0.33,0.9,0.9
-45382,39,135,39135,1048,421,39486518,39478019,1269,497,53497118,53484263,42270,17888,1104530526,1098465120,82.58,84.71,73.81,73.81,2.48,2.35,3.57,3.59
-45383,39,109,39109,7037,3110,67882457,67550272,7037,3110,67882457,67550272,102506,44256,1061004458,1053037884,100,100,100,100,6.86,7.03,6.4,6.41
-45384,39,057,39057,2001,155,3424159,3370895,2001,155,3424159,3370895,161573,68241,1078096806,1071554325,100,100,100,100,1.24,0.23,0.32,0.31
-45385,39,057,39057,37247,16306,356369519,354028653,37247,16306,356369519,354028653,161573,68241,1078096806,1071554325,100,100,100,100,23.05,23.89,33.06,33.04
-45387,39,023,39023,219,87,6360679,6280001,5169,2512,71858586,71440847,138333,61419,1042539696,1029450254,4.24,3.46,8.85,8.79,0.16,0.14,0.61,0.61
-45387,39,057,39057,4950,2425,65497907,65160846,5169,2512,71858586,71440847,161573,68241,1078096806,1071554325,95.76,96.54,91.15,91.21,3.06,3.55,6.08,6.08
-45388,39,037,39037,812,279,45407225,45378312,812,279,45407225,45378312,52959,22730,1553363404,1549072326,100,100,100,100,1.53,1.23,2.92,2.93
-45389,39,021,39021,521,252,828345,828345,521,252,828345,828345,40097,16755,1113263113,1110247425,100,100,100,100,1.3,1.5,0.07,0.07
-45390,39,037,39037,3461,1489,137265757,136945874,3461,1489,137265757,136945874,52959,22730,1553363404,1549072326,100,100,100,100,6.54,6.55,8.84,8.84
-45402,39,113,39113,11420,6720,11186531,10877473,11420,6720,11186531,10877473,535153,254775,1202621341,1195417263,100,100,100,100,2.13,2.64,0.93,0.91
-45403,39,113,39113,15006,7699,10871485,10709278,15006,7699,10871485,10709278,535153,254775,1202621341,1195417263,100,100,100,100,2.8,3.02,0.9,0.9
-45404,39,113,39113,10833,5263,16139607,15858039,10833,5263,16139607,15858039,535153,254775,1202621341,1195417263,100,100,100,100,2.02,2.07,1.34,1.33
-45405,39,113,39113,18948,11797,10372152,10140894,18948,11797,10372152,10140894,535153,254775,1202621341,1195417263,100,100,100,100,3.54,4.63,0.86,0.85
-45406,39,113,39113,21914,12411,12973437,12954203,21914,12411,12973437,12954203,535153,254775,1202621341,1195417263,100,100,100,100,4.09,4.87,1.08,1.08
-45409,39,113,39113,12868,3488,9072133,8969564,12868,3488,9072133,8969564,535153,254775,1202621341,1195417263,100,100,100,100,2.4,1.37,0.75,0.75
-45410,39,113,39113,15339,8287,5774095,5774095,15339,8287,5774095,5774095,535153,254775,1202621341,1195417263,100,100,100,100,2.87,3.25,0.48,0.48
-45414,39,113,39113,21055,9720,59741536,58734206,21055,9720,59741536,58734206,535153,254775,1202621341,1195417263,100,100,100,100,3.93,3.82,4.97,4.91
-45415,39,113,39113,12631,5794,16253563,15978639,12631,5794,16253563,15978639,535153,254775,1202621341,1195417263,100,100,100,100,2.36,2.27,1.35,1.34
-45416,39,113,39113,5740,2548,4807681,4807681,5740,2548,4807681,4807681,535153,254775,1202621341,1195417263,100,100,100,100,1.07,1,0.4,0.4
-45417,39,113,39113,31281,16127,85273718,84872236,31281,16127,85273718,84872236,535153,254775,1202621341,1195417263,100,100,100,100,5.85,6.33,7.09,7.1
-45418,39,113,39113,1351,454,6318941,6246289,1351,454,6318941,6246289,535153,254775,1202621341,1195417263,100,100,100,100,0.25,0.18,0.53,0.52
-45419,39,113,39113,15159,7141,9976186,9976186,15159,7141,9976186,9976186,535153,254775,1202621341,1195417263,100,100,100,100,2.83,2.8,0.83,0.83
-45420,39,113,39113,25438,13132,16099209,16031129,25438,13132,16099209,16031129,535153,254775,1202621341,1195417263,100,100,100,100,4.75,5.15,1.34,1.34
-45424,39,057,39057,668,325,6876838,6801050,49930,20615,82249998,81675827,161573,68241,1078096806,1071554325,1.34,1.58,8.36,8.33,0.41,0.48,0.64,0.63
-45424,39,109,39109,310,131,3542270,3538154,49930,20615,82249998,81675827,102506,44256,1061004458,1053037884,0.62,0.64,4.31,4.33,0.3,0.3,0.33,0.34
-45424,39,113,39113,48952,20159,71830890,71336623,49930,20615,82249998,81675827,535153,254775,1202621341,1195417263,98.04,97.79,87.33,87.34,9.15,7.91,5.97,5.97
-45426,39,113,39113,15239,7950,49989935,49953364,15239,7950,49989935,49953364,535153,254775,1202621341,1195417263,100,100,100,100,2.85,3.12,4.16,4.18
-45428,39,113,39113,240,0,1526916,1526916,240,0,1526916,1526916,535153,254775,1202621341,1195417263,100,0,100,100,0.04,0,0.13,0.13
-45429,39,113,39113,25885,12956,25770285,25737056,25885,12956,25770285,25737056,535153,254775,1202621341,1195417263,100,100,100,100,4.84,5.09,2.14,2.15
-45430,39,057,39057,7402,3072,13026736,13016308,7402,3072,13026736,13016308,161573,68241,1078096806,1071554325,100,100,100,100,4.58,4.5,1.21,1.21
-45431,39,057,39057,12801,6029,18422207,18403469,26315,12286,29689053,29670315,161573,68241,1078096806,1071554325,48.65,49.07,62.05,62.03,7.92,8.83,1.71,1.72
-45431,39,113,39113,13514,6257,11266846,11266846,26315,12286,29689053,29670315,535153,254775,1202621341,1195417263,51.35,50.93,37.95,37.97,2.53,2.46,0.94,0.94
-45432,39,057,39057,8227,3216,12922830,12911961,15288,6874,19494829,19472390,161573,68241,1078096806,1071554325,53.81,46.78,66.29,66.31,5.09,4.71,1.2,1.2
-45432,39,113,39113,7061,3658,6571999,6560429,15288,6874,19494829,19472390,535153,254775,1202621341,1195417263,46.19,53.22,33.71,33.69,1.32,1.44,0.55,0.55
-45433,39,057,39057,1817,464,29078334,28214130,2011,522,29182350,28318146,161573,68241,1078096806,1071554325,90.35,88.89,99.64,99.63,1.12,0.68,2.7,2.63
-45433,39,113,39113,194,58,104016,104016,2011,522,29182350,28318146,535153,254775,1202621341,1195417263,9.65,11.11,0.36,0.37,0.04,0.02,0.01,0.01
-45434,39,057,39057,12163,4594,27496396,27159898,12163,4594,27496396,27159898,161573,68241,1078096806,1071554325,100,100,100,100,7.53,6.73,2.55,2.53
-45439,39,113,39113,10000,4824,16620378,15991556,10000,4824,16620378,15991556,535153,254775,1202621341,1195417263,100,100,100,100,1.87,1.89,1.38,1.34
-45440,39,057,39057,8691,3942,15890412,15842880,20734,9748,24437915,24386066,161573,68241,1078096806,1071554325,41.92,40.44,65.02,64.97,5.38,5.78,1.47,1.48
-45440,39,113,39113,12043,5806,8547503,8543186,20734,9748,24437915,24386066,535153,254775,1202621341,1195417263,58.08,59.56,34.98,35.03,2.25,2.28,0.71,0.71
-45449,39,113,39113,18175,8921,17676977,17183543,18175,8921,17676977,17183543,535153,254775,1202621341,1195417263,100,100,100,100,3.4,3.5,1.47,1.44
-45458,39,057,39057,287,126,1080890,1074520,29880,13125,51894448,51819473,161573,68241,1078096806,1071554325,0.96,0.96,2.08,2.07,0.18,0.18,0.1,0.1
-45458,39,113,39113,27966,12433,42964120,42896035,29880,13125,51894448,51819473,535153,254775,1202621341,1195417263,93.59,94.73,82.79,82.78,5.23,4.88,3.57,3.59
-45458,39,165,39165,1627,566,7849438,7848918,29880,13125,51894448,51819473,212693,80750,1054935779,1039398003,5.45,4.31,15.13,15.15,0.76,0.7,0.74,0.76
-45459,39,057,39057,98,46,233321,233321,27749,13439,36639321,36482666,161573,68241,1078096806,1071554325,0.35,0.34,0.64,0.64,0.06,0.07,0.02,0.02
-45459,39,113,39113,27651,13393,36406000,36249345,27749,13439,36639321,36482666,535153,254775,1202621341,1195417263,99.65,99.66,99.36,99.36,5.17,5.26,3.03,3.03
-45502,39,021,39021,250,89,3358755,3358755,16110,6600,305073763,299331359,40097,16755,1113263113,1110247425,1.55,1.35,1.1,1.12,0.62,0.53,0.3,0.3
-45502,39,023,39023,15860,6511,301715008,295972604,16110,6600,305073763,299331359,138333,61419,1042539696,1029450254,98.45,98.65,98.9,98.88,11.47,10.6,28.94,28.75
-45503,39,023,39023,32999,15404,48378178,44911607,32999,15404,48378178,44911607,138333,61419,1042539696,1029450254,100,100,100,100,23.85,25.08,4.64,4.36
-45504,39,023,39023,18465,7868,60578325,60192631,18465,7868,60578325,60192631,138333,61419,1042539696,1029450254,100,100,100,100,13.35,12.81,5.81,5.85
-45505,39,023,39023,20197,9622,35019421,34894357,20197,9622,35019421,34894357,138333,61419,1042539696,1029450254,100,100,100,100,14.6,15.67,3.36,3.39
-45506,39,023,39023,14055,6556,32021293,31918209,14055,6556,32021293,31918209,138333,61419,1042539696,1029450254,100,100,100,100,10.16,10.67,3.07,3.1
-45601,39,079,39079,247,96,21639769,21639769,57842,23416,894109807,885727798,33225,14587,1091766803,1088582018,0.43,0.41,2.42,2.44,0.74,0.66,1.98,1.99
-45601,39,131,39131,246,103,31025813,30666429,57842,23416,894109807,885727798,28709,12481,1149892117,1140324043,0.43,0.44,3.47,3.46,0.86,0.83,2.7,2.69
-45601,39,141,39141,57349,23217,841444225,833421600,57842,23416,894109807,885727798,78064,32148,1794925534,1784988075,99.15,99.15,94.11,94.09,73.46,72.22,46.88,46.69
-45612,39,071,39071,642,292,36585827,36585827,5303,2317,296665129,294872242,43589,19380,1444674950,1432479939,12.11,12.6,12.33,12.41,1.47,1.51,2.53,2.55
-45612,39,131,39131,907,367,77778019,77717514,5303,2317,296665129,294872242,28709,12481,1149892117,1140324043,17.1,15.84,26.22,26.36,3.16,2.94,6.76,6.82
-45612,39,141,39141,3754,1658,182301283,180568901,5303,2317,296665129,294872242,78064,32148,1794925534,1784988075,70.79,71.56,61.45,61.24,4.81,5.16,10.16,10.12
-45613,39,079,39079,377,143,20067924,20067924,3597,1492,200828882,200449856,33225,14587,1091766803,1088582018,10.48,9.58,9.99,10.01,1.13,0.98,1.84,1.84
-45613,39,131,39131,3173,1333,177880279,177504947,3597,1492,200828882,200449856,28709,12481,1149892117,1140324043,88.21,89.34,88.57,88.55,11.05,10.68,15.47,15.57
-45613,39,145,39145,47,16,2880679,2876985,3597,1492,200828882,200449856,79499,34142,1595815345,1580445008,1.31,1.07,1.43,1.44,0.06,0.05,0.18,0.18
-45614,39,053,39053,5080,2081,191368728,189491325,5080,2081,191368728,189491325,30934,13925,1220392931,1208307512,100,100,100,100,16.42,14.94,15.68,15.68
-45616,39,001,39001,1262,610,153187527,153093697,1559,747,213549078,213234643,28550,12978,1518374900,1512208946,80.95,81.66,71.73,71.8,4.42,4.7,10.09,10.12
-45616,39,145,39145,297,137,60361551,60140946,1559,747,213549078,213234643,79499,34142,1595815345,1580445008,19.05,18.34,28.27,28.2,0.37,0.4,3.78,3.81
-45617,39,141,39141,71,36,438330,438330,71,36,438330,438330,78064,32148,1794925534,1784988075,100,100,100,100,0.09,0.11,0.02,0.02
-45618,39,001,39001,30,12,58492,58492,30,12,58492,58492,28550,12978,1518374900,1512208946,100,100,100,100,0.11,0.09,0,0
-45619,39,087,39087,8200,3632,92159751,90753380,8200,3632,92159751,90753380,62450,27603,1184334706,1174224238,100,100,100,100,13.13,13.16,7.78,7.73
-45620,39,053,39053,867,428,61487214,59198648,917,453,62012916,59607982,30934,13925,1220392931,1208307512,94.55,94.48,99.15,99.31,2.8,3.07,5.04,4.9
-45620,39,105,39105,50,25,525702,409334,917,453,62012916,59607982,23770,11191,1121469688,1113949889,5.45,5.52,0.85,0.69,0.21,0.22,0.05,0.04
-45621,39,079,39079,313,143,747751,747751,313,143,747751,747751,33225,14587,1091766803,1088582018,100,100,100,100,0.94,0.98,0.07,0.07
-45622,39,073,39073,23,12,11579771,11568355,321,167,37543810,37488592,29380,13417,1097191605,1091222019,7.17,7.19,30.84,30.86,0.08,0.09,1.06,1.06
-45622,39,163,39163,298,155,25964039,25920237,321,167,37543810,37488592,13435,6291,1074789855,1068008560,92.83,92.81,69.16,69.14,2.22,2.46,2.42,2.43
-45623,39,053,39053,2787,1258,172846293,171791842,3494,1581,188620706,187256708,30934,13925,1220392931,1208307512,79.77,79.57,91.64,91.74,9.01,9.03,14.16,14.22
-45623,39,087,39087,707,323,15774413,15464866,3494,1581,188620706,187256708,62450,27603,1184334706,1174224238,20.23,20.43,8.36,8.26,1.13,1.17,1.33,1.32
-45624,39,131,39131,31,17,348314,348314,31,17,348314,348314,28709,12481,1149892117,1140324043,100,100,100,100,0.11,0.14,0.03,0.03
-45628,39,141,39141,5211,2238,208297461,208297461,5211,2238,208297461,208297461,78064,32148,1794925534,1784988075,100,100,100,100,6.68,6.96,11.6,11.67
-45629,39,145,39145,3438,1323,80365213,78850801,3438,1323,80365213,78850801,79499,34142,1595815345,1580445008,100,100,100,100,4.32,3.87,5.04,4.99
-45630,39,145,39145,118,54,294892,294892,118,54,294892,294892,79499,34142,1595815345,1580445008,100,100,100,100,0.15,0.16,0.02,0.02
-45631,39,053,39053,15048,7105,298270851,293456850,15048,7105,298270851,293456850,30934,13925,1220392931,1208307512,100,100,100,100,48.65,51.02,24.44,24.29
-45634,39,079,39079,11,5,1252876,1252876,2112,875,90813176,88522463,33225,14587,1091766803,1088582018,0.52,0.57,1.38,1.42,0.03,0.03,0.11,0.12
-45634,39,163,39163,2101,870,89560300,87269587,2112,875,90813176,88522463,13435,6291,1074789855,1068008560,99.48,99.43,98.62,98.58,15.64,13.83,8.33,8.17
-45636,39,145,39145,148,82,1798122,1679235,148,82,1798122,1679235,79499,34142,1595815345,1580445008,100,100,100,100,0.19,0.24,0.11,0.11
-45638,39,087,39087,20895,9462,179426014,176288682,21635,9785,204571449,200806946,62450,27603,1184334706,1174224238,96.58,96.7,87.71,87.79,33.46,34.28,15.15,15.01
-45638,39,145,39145,740,323,25145435,24518264,21635,9785,204571449,200806946,79499,34142,1595815345,1580445008,3.42,3.3,12.29,12.21,0.93,0.95,1.58,1.55
-45640,39,079,39079,15960,6977,462304338,460851250,15960,6977,462304338,460851250,33225,14587,1091766803,1088582018,100,100,100,100,48.04,47.83,42.34,42.34
-45642,39,131,39131,33,27,169731,150520,33,27,169731,150520,28709,12481,1149892117,1140324043,100,100,100,100,0.11,0.22,0.01,0.01
-45644,39,129,39129,1053,378,50907474,50886378,4249,1765,157207024,157164858,55698,21275,1311965339,1298414026,24.78,21.42,32.38,32.38,1.89,1.78,3.88,3.92
-45644,39,141,39141,3196,1387,106299550,106278480,4249,1765,157207024,157164858,78064,32148,1794925534,1784988075,75.22,78.58,67.62,67.62,4.09,4.31,5.92,5.95
-45645,39,087,39087,3036,1263,121396044,121049340,3036,1263,121396044,121049340,62450,27603,1184334706,1174224238,100,100,100,100,4.86,4.58,10.25,10.31
-45646,39,131,39131,370,166,40781039,40594166,370,166,40781039,40594166,28709,12481,1149892117,1140324043,100,100,100,100,1.29,1.33,3.55,3.56
-45647,39,141,39141,1317,600,63600317,63589125,2484,1158,172570727,172198365,78064,32148,1794925534,1784988075,53.02,51.81,36.85,36.93,1.69,1.87,3.54,3.56
-45647,39,163,39163,1167,558,108970410,108609240,2484,1158,172570727,172198365,13435,6291,1074789855,1068008560,46.98,48.19,63.15,63.07,8.69,8.87,10.14,10.17
-45648,39,131,39131,1802,749,99881173,99152890,13372,4911,371618223,368038745,28709,12481,1149892117,1140324043,13.48,15.25,26.88,26.94,6.28,6,8.69,8.7
-45648,39,145,39145,11570,4162,271737050,268885855,13372,4911,371618223,368038745,79499,34142,1595815345,1580445008,86.52,84.75,73.12,73.06,14.55,12.19,17.03,17.01
-45650,39,001,39001,435,255,38856138,38700622,435,255,38856138,38700622,28550,12978,1518374900,1512208946,100,100,100,100,1.52,1.96,2.56,2.56
-45651,39,163,39163,6047,2750,389837657,388256614,6047,2750,389837657,388256614,13435,6291,1074789855,1068008560,100,100,100,100,45.01,43.71,36.27,36.35
-45652,39,145,39145,3519,1464,87061125,86062119,3519,1464,87061125,86062119,79499,34142,1595815345,1580445008,100,100,100,100,4.43,4.29,5.46,5.45
-45653,39,145,39145,4179,1728,121131123,120652399,4179,1728,121131123,120652399,79499,34142,1595815345,1580445008,100,100,100,100,5.26,5.06,7.59,7.63
-45654,39,073,39073,369,163,38603883,38487605,917,431,145639695,145209386,29380,13417,1097191605,1091222019,40.24,37.82,26.51,26.5,1.26,1.21,3.52,3.53
-45654,39,163,39163,548,268,107035812,106721781,917,431,145639695,145209386,13435,6291,1074789855,1068008560,59.76,62.18,73.49,73.5,4.08,4.26,9.96,9.99
-45656,39,053,39053,244,101,43787469,43778203,6639,2873,338077115,336829672,30934,13925,1220392931,1208307512,3.68,3.52,12.95,13,0.79,0.73,3.59,3.62
-45656,39,079,39079,6227,2683,256605080,255445760,6639,2873,338077115,336829672,33225,14587,1091766803,1088582018,93.79,93.39,75.9,75.84,18.74,18.39,23.5,23.47
-45656,39,087,39087,168,89,37684566,37605709,6639,2873,338077115,336829672,62450,27603,1184334706,1174224238,2.53,3.1,11.15,11.16,0.27,0.32,3.18,3.2
-45657,39,001,39001,333,162,34839787,34775130,2744,1224,255604665,254939804,28550,12978,1518374900,1512208946,12.14,13.24,13.63,13.64,1.17,1.25,2.29,2.3
-45657,39,145,39145,2411,1062,220764878,220164674,2744,1224,255604665,254939804,79499,34142,1595815345,1580445008,87.86,86.76,86.37,86.36,3.03,3.11,13.83,13.93
-45658,39,053,39053,2787,1166,252647413,251634755,2787,1166,252647413,251634755,30934,13925,1220392931,1208307512,100,100,100,100,9.01,8.37,20.7,20.83
-45659,39,087,39087,2973,1235,256084706,254510619,2973,1235,256084706,254510619,62450,27603,1184334706,1174224238,100,100,100,100,4.76,4.47,21.62,21.67
-45660,39,001,39001,6748,2973,393959062,392345054,8297,3594,509823121,507980135,28550,12978,1518374900,1512208946,81.33,82.72,77.27,77.24,23.64,22.91,25.95,25.95
-45660,39,071,39071,196,71,15887832,15887832,8297,3594,509823121,507980135,43589,19380,1444674950,1432479939,2.36,1.98,3.12,3.13,0.45,0.37,1.1,1.11
-45660,39,131,39131,1330,540,97060550,96855081,8297,3594,509823121,507980135,28709,12481,1149892117,1140324043,16.03,15.03,19.04,19.07,4.63,4.33,8.44,8.49
-45660,39,145,39145,23,10,2915677,2892168,8297,3594,509823121,507980135,79499,34142,1595815345,1580445008,0.28,0.28,0.57,0.57,0.03,0.03,0.18,0.18
-45661,39,131,39131,7621,3117,265650297,262652487,7657,3130,266704188,263704561,28709,12481,1149892117,1140324043,99.53,99.58,99.6,99.6,26.55,24.97,23.1,23.03
-45661,39,145,39145,36,13,1053891,1052074,7657,3130,266704188,263704561,79499,34142,1595815345,1580445008,0.47,0.42,0.4,0.4,0.05,0.04,0.07,0.07
-45662,39,145,39145,30219,13784,141806658,139462347,30219,13784,141806658,139462347,79499,34142,1595815345,1580445008,100,100,100,100,38.01,40.37,8.89,8.82
-45663,39,145,39145,6762,2969,169554760,167703027,6762,2969,169554760,167703027,79499,34142,1595815345,1580445008,100,100,100,100,8.51,8.7,10.62,10.61
-45669,39,087,39087,10399,4543,90355592,89703037,10399,4543,90355592,89703037,62450,27603,1184334706,1174224238,100,100,100,100,16.65,16.46,7.63,7.64
-45671,39,131,39131,61,34,5670469,5664576,457,219,43523508,43492323,28709,12481,1149892117,1140324043,13.35,15.53,13.03,13.02,0.21,0.27,0.49,0.5
-45671,39,145,39145,396,185,37853039,37827747,457,219,43523508,43492323,79499,34142,1595815345,1580445008,86.65,84.47,86.97,86.98,0.5,0.54,2.37,2.39
-45672,39,079,39079,931,433,68922380,68892852,1749,812,138855530,138458807,33225,14587,1091766803,1088582018,53.23,53.33,49.64,49.76,2.8,2.97,6.31,6.33
-45672,39,163,39163,818,379,69933150,69565955,1749,812,138855530,138458807,13435,6291,1074789855,1068008560,46.77,46.67,50.36,50.24,6.09,6.02,6.51,6.51
-45673,39,141,39141,385,178,1344433,1344433,385,178,1344433,1344433,78064,32148,1794925534,1784988075,100,100,100,100,0.49,0.55,0.07,0.08
-45674,39,053,39053,584,181,4254599,4186897,584,181,4254599,4186897,30934,13925,1220392931,1208307512,100,100,100,100,1.89,1.3,0.35,0.35
-45678,39,053,39053,95,46,15528249,15515782,1101,506,106127776,105507510,30934,13925,1220392931,1208307512,8.63,9.09,14.63,14.71,0.31,0.33,1.27,1.28
-45678,39,087,39087,1006,460,90599527,89991728,1101,506,106127776,105507510,62450,27603,1184334706,1174224238,91.37,90.91,85.37,85.29,1.61,1.67,7.65,7.66
-45679,39,001,39001,2712,1154,142184924,142168857,2812,1204,150259760,150243693,28550,12978,1518374900,1512208946,96.44,95.85,94.63,94.63,9.5,8.89,9.36,9.4
-45679,39,071,39071,100,50,8074836,8074836,2812,1204,150259760,150243693,43589,19380,1444674950,1432479939,3.56,4.15,5.37,5.37,0.23,0.26,0.56,0.56
-45680,39,087,39087,13074,5690,87096572,85852281,13074,5690,87096572,85852281,62450,27603,1184334706,1174224238,100,100,100,100,20.94,20.61,7.35,7.31
-45681,39,141,39141,1689,727,99302858,99270574,1689,727,99302858,99270574,78064,32148,1794925534,1784988075,100,100,100,100,2.16,2.26,5.53,5.56
-45682,39,087,39087,97,47,26764031,26746997,2420,1070,120706429,120462378,62450,27603,1184334706,1174224238,4.01,4.39,22.17,22.2,0.16,0.17,2.26,2.28
-45682,39,145,39145,2323,1023,93942398,93715381,2420,1070,120706429,120462378,79499,34142,1595815345,1580445008,95.99,95.61,77.83,77.8,2.92,3,5.89,5.93
-45684,39,001,39001,678,369,117402873,116174859,1804,910,208317932,205290476,28550,12978,1518374900,1512208946,37.58,40.55,56.36,56.59,2.37,2.84,7.73,7.68
-45684,39,145,39145,1126,541,90915059,89115617,1804,910,208317932,205290476,79499,34142,1595815345,1580445008,62.42,59.45,43.64,43.41,1.42,1.58,5.7,5.64
-45685,39,053,39053,865,387,30715030,30666814,1251,559,78461178,78411056,30934,13925,1220392931,1208307512,69.14,69.23,39.15,39.11,2.8,2.78,2.52,2.54
-45685,39,079,39079,386,172,47746148,47744242,1251,559,78461178,78411056,33225,14587,1091766803,1088582018,30.86,30.77,60.85,60.89,1.16,1.18,4.37,4.39
-45686,39,053,39053,2559,1157,147380246,146499191,3397,1577,241099251,239606849,30934,13925,1220392931,1208307512,75.33,73.37,61.13,61.14,8.27,8.31,12.08,12.12
-45686,39,105,39105,196,85,12345274,12345274,3397,1577,241099251,239606849,23770,11191,1121469688,1113949889,5.77,5.39,5.12,5.15,0.82,0.76,1.1,1.11
-45686,39,163,39163,642,335,81373731,80762384,3397,1577,241099251,239606849,13435,6291,1074789855,1068008560,18.9,21.24,33.75,33.71,4.78,5.33,7.57,7.56
-45688,39,053,39053,18,15,2106839,2087205,475,237,95402679,95081870,30934,13925,1220392931,1208307512,3.79,6.33,2.21,2.2,0.06,0.11,0.17,0.17
-45688,39,087,39087,457,222,93295840,92994665,475,237,95402679,95081870,62450,27603,1184334706,1174224238,96.21,93.67,97.79,97.8,0.73,0.8,7.88,7.92
-45690,39,131,39131,12864,5913,329617549,324994836,14412,6551,377340222,372632475,28709,12481,1149892117,1140324043,89.26,90.26,87.35,87.22,44.81,47.38,28.67,28.5
-45690,39,141,39141,1548,638,47722673,47637639,14412,6551,377340222,372632475,78064,32148,1794925534,1784988075,10.74,9.74,12.65,12.78,1.98,1.98,2.66,2.67
-45692,39,079,39079,8773,3935,212480537,211939594,8773,3935,212480537,211939594,33225,14587,1091766803,1088582018,100,100,100,100,26.4,26.98,19.46,19.47
-45693,39,001,39001,8981,3983,327694861,327268474,8981,3983,327694861,327268474,28550,12978,1518374900,1512208946,100,100,100,100,31.46,30.69,21.58,21.64
-45694,39,145,39145,12147,5266,186233795,184550477,12147,5266,186233795,184550477,79499,34142,1595815345,1580445008,100,100,100,100,15.28,15.42,11.67,11.68
-45695,39,163,39163,674,362,95741960,95152024,674,362,95741960,95152024,13435,6291,1074789855,1068008560,100,100,100,100,5.02,5.75,8.91,8.91
-45696,39,087,39087,1438,637,93697650,93262934,1438,637,93697650,93262934,62450,27603,1184334706,1174224238,100,100,100,100,2.3,2.31,7.91,7.94
-45697,39,001,39001,3221,1346,141397316,141340677,4894,2037,267061087,267004448,28550,12978,1518374900,1512208946,65.82,66.08,52.95,52.94,11.28,10.37,9.31,9.35
-45697,39,015,39015,1221,507,88949204,88949204,4894,2037,267061087,267004448,44846,19301,1278033594,1269135535,24.95,24.89,33.31,33.31,2.72,2.63,6.96,7.01
-45697,39,071,39071,452,184,36714567,36714567,4894,2037,267061087,267004448,43589,19380,1444674950,1432479939,9.24,9.03,13.75,13.75,1.04,0.95,2.54,2.56
-45698,39,163,39163,341,179,9688782,9585040,341,179,9688782,9585040,13435,6291,1074789855,1068008560,100,100,100,100,2.54,2.85,0.9,0.9
-45701,39,009,39009,34122,12233,388811710,383961614,34122,12233,388811710,383961614,64757,26385,1316856020,1304313482,100,100,100,100,52.69,46.36,29.53,29.44
-45710,39,009,39009,3487,1548,91222859,90661953,5541,2493,262498429,261637954,64757,26385,1316856020,1304313482,62.93,62.09,34.75,34.65,5.38,5.87,6.93,6.95
-45710,39,105,39105,1559,680,116807425,116797297,5541,2493,262498429,261637954,23770,11191,1121469688,1113949889,28.14,27.28,44.5,44.64,6.56,6.08,10.42,10.48
-45710,39,163,39163,495,265,54468145,54178704,5541,2493,262498429,261637954,13435,6291,1074789855,1068008560,8.93,10.63,20.75,20.71,3.68,4.21,5.07,5.07
-45711,39,009,39009,943,499,108434381,107912396,1115,583,132969275,132383592,64757,26385,1316856020,1304313482,84.57,85.59,81.55,81.51,1.46,1.89,8.23,8.27
-45711,39,115,39115,47,25,15271347,15219920,1115,583,132969275,132383592,15054,7892,1092413164,1078531138,4.22,4.29,11.48,11.5,0.31,0.32,1.4,1.41
-45711,39,167,39167,125,59,9263547,9251276,1115,583,132969275,132383592,61778,28367,1657584272,1636799113,11.21,10.12,6.97,6.99,0.2,0.21,0.56,0.57
-45714,39,167,39167,9951,4849,91137271,89240879,9951,4849,91137271,89240879,61778,28367,1657584272,1636799113,100,100,100,100,16.11,17.09,5.5,5.45
-45715,39,115,39115,679,295,66572710,66035627,2630,1207,112266855,110374558,15054,7892,1092413164,1078531138,25.82,24.44,59.3,59.83,4.51,3.74,6.09,6.12
-45715,39,121,39121,138,63,14868737,14865733,2630,1207,112266855,110374558,14645,6053,1047833209,1030846973,5.25,5.22,13.24,13.47,0.94,1.04,1.42,1.44
-45715,39,167,39167,1813,849,30825408,29473198,2630,1207,112266855,110374558,61778,28367,1657584272,1636799113,68.94,70.34,27.46,26.7,2.93,2.99,1.86,1.8
-45716,39,009,39009,469,227,1005826,1005826,469,227,1005826,1005826,64757,26385,1316856020,1304313482,100,100,100,100,0.72,0.86,0.08,0.08
-45719,39,009,39009,1046,475,1837380,1833009,1046,475,1837380,1833009,64757,26385,1316856020,1304313482,100,100,100,100,1.62,1.8,0.14,0.14
-45721,39,167,39167,29,15,132683,132683,29,15,132683,132683,61778,28367,1657584272,1636799113,100,100,100,100,0.05,0.05,0.01,0.01
-45723,39,009,39009,3250,1532,138669782,136428910,3740,1752,173097600,170848987,64757,26385,1316856020,1304313482,86.9,87.44,80.11,79.85,5.02,5.81,10.53,10.46
-45723,39,105,39105,402,178,25862268,25862268,3740,1752,173097600,170848987,23770,11191,1121469688,1113949889,10.75,10.16,14.94,15.14,1.69,1.59,2.31,2.32
-45723,39,167,39167,88,42,8565550,8557809,3740,1752,173097600,170848987,61778,28367,1657584272,1636799113,2.35,2.4,4.95,5.01,0.14,0.15,0.52,0.52
-45724,39,167,39167,1744,808,138249286,138011156,1744,808,138249286,138011156,61778,28367,1657584272,1636799113,100,100,100,100,2.82,2.85,8.34,8.43
-45727,39,121,39121,516,261,81259600,80933801,516,261,81259600,80933801,14645,6053,1047833209,1030846973,100,100,100,100,3.52,4.31,7.76,7.85
-45729,39,167,39167,1289,544,66336036,66232009,1289,544,66336036,66232009,61778,28367,1657584272,1636799113,100,100,100,100,2.09,1.92,4,4.05
-45732,39,009,39009,3748,1740,99586089,98554756,4776,2433,195892565,193218925,64757,26385,1316856020,1304313482,78.48,71.52,50.84,51.01,5.79,6.59,7.56,7.56
-45732,39,115,39115,863,590,71021080,69403245,4776,2433,195892565,193218925,15054,7892,1092413164,1078531138,18.07,24.25,36.26,35.92,5.73,7.48,6.5,6.43
-45732,39,127,39127,165,103,25285396,25260924,4776,2433,195892565,193218925,36058,15211,1068336290,1056641254,3.45,4.23,12.91,13.07,0.46,0.68,2.37,2.39
-45734,39,111,39111,549,351,90101098,90080818,549,351,90101098,90080818,14642,7567,1184810655,1180312425,100,100,100,100,3.75,4.64,7.6,7.63
-45735,39,009,39009,1730,792,130116941,129657808,1730,792,130116941,129657808,64757,26385,1316856020,1304313482,100,100,100,100,2.67,3,9.88,9.94
-45740,39,009,39009,494,244,908884,905102,494,244,908884,905102,64757,26385,1316856020,1304313482,100,100,100,100,0.76,0.92,0.07,0.07
-45741,39,105,39105,918,477,110551913,110534899,918,477,110551913,110534899,23770,11191,1121469688,1113949889,100,100,100,100,3.86,4.26,9.86,9.92
-45742,39,009,39009,80,38,2147622,2142692,3014,1295,71242819,69887478,64757,26385,1316856020,1304313482,2.65,2.93,3.01,3.07,0.12,0.14,0.16,0.16
-45742,39,167,39167,2934,1257,69095197,67744786,3014,1295,71242819,69887478,61778,28367,1657584272,1636799113,97.35,97.07,96.99,96.93,4.75,4.43,4.17,4.14
-45743,39,105,39105,1449,699,95802002,95090012,1449,699,95802002,95090012,23770,11191,1121469688,1113949889,100,100,100,100,6.1,6.25,8.54,8.54
-45744,39,121,39121,40,10,1015641,1015641,2728,1315,143489902,140902827,14645,6053,1047833209,1030846973,1.47,0.76,0.71,0.72,0.27,0.17,0.1,0.1
-45744,39,167,39167,2688,1305,142474261,139887186,2728,1315,143489902,140902827,61778,28367,1657584272,1636799113,98.53,99.24,99.29,99.28,4.35,4.6,8.6,8.55
-45745,39,111,39111,157,108,31132253,31132253,1140,668,193908495,193000501,14642,7567,1184810655,1180312425,13.77,16.17,16.06,16.13,1.07,1.43,2.63,2.64
-45745,39,121,39121,346,240,97272305,96860444,1140,668,193908495,193000501,14645,6053,1047833209,1030846973,30.35,35.93,50.16,50.19,2.36,3.96,9.28,9.4
-45745,39,167,39167,637,320,65503937,65007804,1140,668,193908495,193000501,61778,28367,1657584272,1636799113,55.88,47.9,33.78,33.68,1.03,1.13,3.95,3.97
-45746,39,121,39121,55,30,14965973,14879629,433,192,43318379,42846928,14645,6053,1047833209,1030846973,12.7,15.63,34.55,34.73,0.38,0.5,1.43,1.44
-45746,39,167,39167,378,162,28352406,27967299,433,192,43318379,42846928,61778,28367,1657584272,1636799113,87.3,84.38,65.45,65.27,0.61,0.57,1.71,1.71
-45750,39,167,39167,27785,12614,293244798,287920366,27785,12614,293244798,287920366,61778,28367,1657584272,1636799113,100,100,100,100,44.98,44.47,17.69,17.59
-45760,39,105,39105,3892,1892,50906058,50651362,3892,1892,50906058,50651362,23770,11191,1121469688,1113949889,100,100,100,100,16.37,16.91,4.54,4.55
-45761,39,009,39009,1745,818,86444947,85992153,1745,818,86444947,85992153,64757,26385,1316856020,1304313482,100,100,100,100,2.69,3.1,6.56,6.59
-45764,39,009,39009,7576,3286,104733068,103329820,9431,3883,210604133,208442777,64757,26385,1316856020,1304313482,80.33,84.63,49.73,49.57,11.7,12.45,7.95,7.92
-45764,39,073,39073,1855,597,105871065,105112957,9431,3883,210604133,208442777,29380,13417,1097191605,1091222019,19.67,15.37,50.27,50.43,6.31,4.45,9.65,9.63
-45766,39,009,39009,1315,639,65467291,65269126,1382,675,76724372,76433273,64757,26385,1316856020,1304313482,95.15,94.67,85.33,85.39,2.03,2.42,4.97,5
-45766,39,163,39163,67,36,11257081,11164147,1382,675,76724372,76433273,13435,6291,1074789855,1068008560,4.85,5.33,14.67,14.61,0.5,0.57,1.05,1.05
-45767,39,111,39111,530,355,87222207,86818687,2800,1541,296519011,294779238,14642,7567,1184810655,1180312425,18.93,23.04,29.42,29.45,3.62,4.69,7.36,7.36
-45767,39,167,39167,2270,1186,209296804,207960551,2800,1541,296519011,294779238,61778,28367,1657584272,1636799113,81.07,76.96,70.58,70.55,3.67,4.18,12.63,12.71
-45768,39,167,39167,1703,767,78520069,77494835,1703,767,78520069,77494835,61778,28367,1657584272,1636799113,100,100,100,100,2.76,2.7,4.74,4.73
-45769,39,105,39105,6642,3077,272074255,271803620,6642,3077,272074255,271803620,23770,11191,1121469688,1113949889,100,100,100,100,27.94,27.5,24.26,24.4
-45770,39,105,39105,620,294,54416569,52973066,620,294,54416569,52973066,23770,11191,1121469688,1113949889,100,100,100,100,2.61,2.63,4.85,4.76
-45771,39,105,39105,3432,1631,162824014,159777271,3432,1631,162824014,159777271,23770,11191,1121469688,1113949889,100,100,100,100,14.44,14.57,14.52,14.34
-45772,39,105,39105,2149,1006,112992676,111795101,2149,1006,112992676,111795101,23770,11191,1121469688,1113949889,100,100,100,100,9.04,8.99,10.08,10.04
-45773,39,167,39167,83,37,12413205,12413205,83,37,12413205,12413205,61778,28367,1657584272,1636799113,100,100,100,100,0.13,0.13,0.75,0.76
-45775,39,105,39105,1259,560,75293501,75293501,1259,560,75293501,75293501,23770,11191,1121469688,1113949889,100,100,100,100,5.3,5,6.71,6.76
-45776,39,009,39009,318,156,22287856,22230992,765,375,51018148,50961284,64757,26385,1316856020,1304313482,41.57,41.6,43.69,43.62,0.49,0.59,1.69,1.7
-45776,39,105,39105,447,219,28730292,28730292,765,375,51018148,50961284,23770,11191,1121469688,1113949889,58.43,58.4,56.31,56.38,1.88,1.96,2.56,2.58
-45778,39,009,39009,824,412,63848268,63174128,824,412,63848268,63174128,64757,26385,1316856020,1304313482,100,100,100,100,1.27,1.56,4.85,4.84
-45779,39,105,39105,755,368,2337739,1886592,755,368,2337739,1886592,23770,11191,1121469688,1113949889,100,100,100,100,3.18,3.29,0.21,0.17
-45780,39,009,39009,3254,1575,6595677,6544924,3254,1575,6595677,6544924,64757,26385,1316856020,1304313482,100,100,100,100,5.02,5.97,0.5,0.5
-45782,39,009,39009,343,156,1445093,1426563,343,156,1445093,1426563,64757,26385,1316856020,1304313482,100,100,100,100,0.53,0.59,0.11,0.11
-45784,39,167,39167,3386,1426,97510174,96989731,3386,1426,97510174,96989731,61778,28367,1657584272,1636799113,100,100,100,100,5.48,5.03,5.88,5.93
-45786,39,115,39115,82,39,6022618,5938558,3253,1374,172491875,169154468,15054,7892,1092413164,1078531138,2.52,2.84,3.49,3.51,0.54,0.49,0.55,0.55
-45786,39,167,39167,3171,1335,166469257,163215910,3253,1374,172491875,169154468,61778,28367,1657584272,1636799113,97.48,97.16,96.51,96.49,5.13,4.71,10.04,9.97
-45787,39,167,39167,29,16,74674,73909,29,16,74674,73909,61778,28367,1657584272,1636799113,100,100,100,100,0.05,0.06,0,0
-45788,39,167,39167,1129,496,89846578,89420435,1129,496,89846578,89420435,61778,28367,1657584272,1636799113,100,100,100,100,1.83,1.75,5.42,5.46
-45789,39,111,39111,20,12,3489032,3489032,177,104,29751067,29582237,14642,7567,1184810655,1180312425,11.3,11.54,11.73,11.79,0.14,0.16,0.29,0.3
-45789,39,167,39167,157,92,26262035,26093205,177,104,29751067,29582237,61778,28367,1657584272,1636799113,88.7,88.46,88.27,88.21,0.25,0.32,1.58,1.59
-45801,39,003,39003,25303,9821,117938769,116452417,25303,9821,117938769,116452417,106331,44999,1053734042,1042458893,100,100,100,100,23.8,21.82,11.19,11.17
-45804,39,003,39003,15758,7674,59287010,56277245,15758,7674,59287010,56277245,106331,44999,1053734042,1042458893,100,100,100,100,14.82,17.05,5.63,5.4
-45805,39,003,39003,22514,10144,39345207,38962322,22514,10144,39345207,38962322,106331,44999,1053734042,1042458893,100,100,100,100,21.17,22.54,3.73,3.74
-45806,39,003,39003,8528,3501,124759673,121745309,11158,4672,158579929,155497640,106331,44999,1053734042,1042458893,76.43,74.94,78.67,78.29,8.02,7.78,11.84,11.68
-45806,39,011,39011,2630,1171,33820256,33752331,11158,4672,158579929,155497640,45949,19585,1040930421,1039585234,23.57,25.06,21.33,21.71,5.72,5.98,3.25,3.25
-45807,39,003,39003,12221,5151,198015419,196955042,12221,5151,198015419,196955042,106331,44999,1053734042,1042458893,100,100,100,100,11.49,11.45,18.79,18.89
-45808,39,003,39003,349,141,1383630,1372915,349,141,1383630,1372915,106331,44999,1053734042,1042458893,100,100,100,100,0.33,0.31,0.13,0.13
-45809,39,003,39003,157,78,658447,658447,157,78,658447,658447,106331,44999,1053734042,1042458893,100,100,100,100,0.15,0.17,0.06,0.06
-45810,39,003,39003,218,94,13633188,13527808,8460,2926,162195022,162062685,106331,44999,1053734042,1042458893,2.58,3.21,8.41,8.35,0.21,0.21,1.29,1.3
-45810,39,063,39063,222,90,16553764,16553073,8460,2926,162195022,162062685,74782,33174,1382170092,1376210257,2.62,3.08,10.21,10.21,0.3,0.27,1.2,1.2
-45810,39,065,39065,8020,2742,132008070,131981804,8460,2926,162195022,162062685,32058,13100,1218972653,1218342731,94.8,93.71,81.39,81.44,25.02,20.93,10.83,10.83
-45812,39,065,39065,1943,879,103180185,103166607,1943,879,103180185,103166607,32058,13100,1218972653,1218342731,100,100,100,100,6.06,6.71,8.46,8.47
-45813,39,039,39039,24,12,2354581,2354581,3530,1587,143470290,141957119,39037,16729,1072745155,1065675702,0.68,0.76,1.64,1.66,0.06,0.07,0.22,0.22
-45813,39,125,39125,3506,1575,141115709,139602538,3530,1587,143470290,141957119,19614,8749,1084809596,1078568733,99.32,99.24,98.36,98.34,17.87,18,13.01,12.94
-45814,39,063,39063,2620,1045,92418232,92370446,2620,1045,92418232,92370446,74782,33174,1382170092,1376210257,100,100,100,100,3.5,3.15,6.69,6.71
-45816,39,063,39063,291,116,689906,689906,291,116,689906,689906,74782,33174,1382170092,1376210257,100,100,100,100,0.39,0.35,0.05,0.05
-45817,39,003,39003,5561,2016,84518058,83932750,6736,2524,168018284,167303746,106331,44999,1053734042,1042458893,82.56,79.87,50.3,50.17,5.23,4.48,8.02,8.05
-45817,39,063,39063,1126,485,78317977,78204975,6736,2524,168018284,167303746,74782,33174,1382170092,1376210257,16.72,19.22,46.61,46.74,1.51,1.46,5.67,5.68
-45817,39,137,39137,49,23,5182249,5166021,6736,2524,168018284,167303746,34499,13731,1254330479,1249725444,0.73,0.91,3.08,3.09,0.14,0.17,0.41,0.41
-45819,39,011,39011,233,102,667499,667499,233,102,667499,667499,45949,19585,1040930421,1039585234,100,100,100,100,0.51,0.52,0.06,0.06
-45820,39,003,39003,543,223,1867933,1867933,543,223,1867933,1867933,106331,44999,1053734042,1042458893,100,100,100,100,0.51,0.5,0.18,0.18
-45821,39,039,39039,23,12,1936673,1763884,1435,607,103959335,102849993,39037,16729,1072745155,1065675702,1.6,1.98,1.86,1.72,0.06,0.07,0.18,0.17
-45821,39,125,39125,1412,595,102022662,101086109,1435,607,103959335,102849993,19614,8749,1084809596,1078568733,98.4,98.02,98.14,98.28,7.2,6.8,9.4,9.37
-45822,39,107,39107,18943,9392,451918702,424777180,18943,9392,451918702,424777180,40814,17633,1226164284,1197736887,100,100,100,100,46.41,53.26,36.86,35.46
-45826,39,107,39107,306,136,701564,698706,306,136,701564,698706,40814,17633,1226164284,1197736887,100,100,100,100,0.75,0.77,0.06,0.06
-45827,39,125,39125,198,92,20599834,20599834,2369,914,161280309,160153607,19614,8749,1084809596,1078568733,8.36,10.07,12.77,12.86,1.01,1.05,1.9,1.91
-45827,39,137,39137,2171,822,140680475,139553773,2369,914,161280309,160153607,34499,13731,1254330479,1249725444,91.64,89.93,87.23,87.14,6.29,5.99,11.22,11.17
-45828,39,107,39107,6125,2386,85761067,85565594,6125,2386,85761067,85565594,40814,17633,1226164284,1197736887,100,100,100,100,15.01,13.53,6.99,7.14
-45830,39,003,39003,1284,484,83187053,83118293,6228,2442,246130164,245664720,106331,44999,1053734042,1042458893,20.62,19.82,33.8,33.83,1.21,1.08,7.89,7.97
-45830,39,137,39137,4944,1958,162943111,162546427,6228,2442,246130164,245664720,34499,13731,1254330479,1249725444,79.38,80.18,66.2,66.17,14.33,14.26,12.99,13.01
-45831,39,039,39039,20,9,1704371,1704371,3181,1379,191259811,190902439,39037,16729,1072745155,1065675702,0.63,0.65,0.89,0.89,0.05,0.05,0.16,0.16
-45831,39,137,39137,3161,1370,189555440,189198068,3181,1379,191259811,190902439,34499,13731,1254330479,1249725444,99.37,99.35,99.11,99.11,9.16,9.98,15.11,15.14
-45832,39,125,39125,15,7,5887293,5887293,2905,1186,181044884,180757207,19614,8749,1084809596,1078568733,0.52,0.59,3.25,3.26,0.08,0.08,0.54,0.55
-45832,39,161,39161,2890,1179,175157591,174869914,2905,1186,181044884,180757207,28744,12615,1062997022,1059715168,99.48,99.41,96.75,96.74,10.05,9.35,16.48,16.5
-45833,39,003,39003,5904,2485,85574484,85173436,10667,4466,179632920,178641468,106331,44999,1053734042,1042458893,55.35,55.64,47.64,47.68,5.55,5.52,8.12,8.17
-45833,39,137,39137,389,138,20135035,20055091,10667,4466,179632920,178641468,34499,13731,1254330479,1249725444,3.65,3.09,11.21,11.23,1.13,1.01,1.61,1.6
-45833,39,161,39161,4374,1843,73923401,73412941,10667,4466,179632920,178641468,28744,12615,1062997022,1059715168,41,41.27,41.15,41.1,15.22,14.61,6.95,6.93
-45835,39,065,39065,490,230,49636819,49630239,490,230,49636819,49630239,32058,13100,1218972653,1218342731,100,100,100,100,1.53,1.76,4.07,4.07
-45836,39,065,39065,1479,639,62363057,62210947,1479,639,62363057,62210947,32058,13100,1218972653,1218342731,100,100,100,100,4.61,4.88,5.12,5.11
-45838,39,161,39161,50,18,353641,353641,50,18,353641,353641,28744,12615,1062997022,1059715168,100,100,100,100,0.17,0.14,0.03,0.03
-45840,39,063,39063,54979,24915,438657818,434307493,54979,24915,438657818,434307493,74782,33174,1382170092,1376210257,100,100,100,100,73.52,75.1,31.74,31.56
-45841,39,063,39063,929,375,66325188,66317438,929,375,66325188,66317438,74782,33174,1382170092,1376210257,100,100,100,100,1.24,1.13,4.8,4.82
-45843,39,063,39063,678,272,64176011,64163410,3701,1576,259562394,259549793,74782,33174,1382170092,1376210257,18.32,17.26,24.72,24.72,0.91,0.82,4.64,4.66
-45843,39,065,39065,2383,1046,99140901,99140901,3701,1576,259562394,259549793,32058,13100,1218972653,1218342731,64.39,66.37,38.2,38.2,7.43,7.98,8.13,8.14
-45843,39,175,39175,640,258,96245482,96245482,3701,1576,259562394,259549793,22615,9870,1055558812,1053775281,17.29,16.37,37.08,37.08,2.83,2.61,9.12,9.13
-45844,39,003,39003,78,27,4841707,4787194,3256,1252,141646987,140690454,106331,44999,1053734042,1042458893,2.4,2.16,3.42,3.4,0.07,0.06,0.46,0.46
-45844,39,137,39137,3150,1213,132930888,132028868,3256,1252,141646987,140690454,34499,13731,1254330479,1249725444,96.74,96.88,93.85,93.84,9.13,8.83,10.6,10.56
-45844,39,161,39161,28,12,3874392,3874392,3256,1252,141646987,140690454,28744,12615,1062997022,1059715168,0.86,0.96,2.74,2.75,0.1,0.1,0.36,0.37
-45845,39,011,39011,22,7,2917371,2917371,3178,1166,83358077,82812116,45949,19585,1040930421,1039585234,0.69,0.6,3.5,3.52,0.05,0.04,0.28,0.28
-45845,39,149,39149,3156,1159,80440706,79894745,3178,1166,83358077,82812116,49423,20173,1063688077,1055874043,99.31,99.4,96.5,96.48,6.39,5.75,7.56,7.57
-45846,39,037,39037,292,99,27130296,27065327,4437,1545,193209825,192915252,52959,22730,1553363404,1549072326,6.58,6.41,14.04,14.03,0.55,0.44,1.75,1.75
-45846,39,107,39107,4145,1446,166079529,165849925,4437,1545,193209825,192915252,40814,17633,1226164284,1197736887,93.42,93.59,85.96,85.97,10.16,8.2,13.54,13.85
-45849,39,125,39125,1037,439,85860345,85860345,1219,518,114649135,114570008,19614,8749,1084809596,1078568733,85.07,84.75,74.89,74.94,5.29,5.02,7.91,7.96
-45849,39,137,39137,19,9,2923017,2906426,1219,518,114649135,114570008,34499,13731,1254330479,1249725444,1.56,1.74,2.55,2.54,0.06,0.07,0.23,0.23
-45849,39,161,39161,163,70,25865773,25803237,1219,518,114649135,114570008,28744,12615,1062997022,1059715168,13.37,13.51,22.56,22.52,0.57,0.55,2.43,2.43
-45850,39,003,39003,3311,1335,126804020,126125876,3653,1470,156002356,155324212,106331,44999,1053734042,1042458893,90.64,90.82,81.28,81.2,3.11,2.97,12.03,12.1
-45850,39,011,39011,55,22,6571123,6571123,3653,1470,156002356,155324212,45949,19585,1040930421,1039585234,1.51,1.5,4.21,4.23,0.12,0.11,0.63,0.63
-45850,39,065,39065,287,113,22627213,22627213,3653,1470,156002356,155324212,32058,13100,1218972653,1218342731,7.86,7.69,14.5,14.57,0.9,0.86,1.86,1.86
-45851,39,125,39125,669,245,87681807,87681807,669,245,87681807,87681807,19614,8749,1084809596,1078568733,100,100,100,100,3.41,2.8,8.08,8.13
-45853,39,137,39137,1439,571,2925890,2861696,1439,571,2925890,2861696,34499,13731,1254330479,1249725444,100,100,100,100,4.17,4.16,0.23,0.23
-45854,39,003,39003,498,192,866874,860207,498,192,866874,860207,106331,44999,1053734042,1042458893,100,100,100,100,0.47,0.43,0.08,0.08
-45855,39,125,39125,193,80,688239,688239,193,80,688239,688239,19614,8749,1084809596,1078568733,100,100,100,100,0.98,0.91,0.06,0.06
-45856,39,063,39063,11,4,2799955,2791721,5194,2039,271600069,271358832,74782,33174,1382170092,1376210257,0.21,0.2,1.03,1.03,0.01,0.01,0.2,0.2
-45856,39,069,39069,70,22,10269669,10269669,5194,2039,271600069,271358832,28215,11963,1087149049,1077461447,1.35,1.08,3.78,3.78,0.25,0.18,0.94,0.95
-45856,39,137,39137,5113,2013,258530445,258297442,5194,2039,271600069,271358832,34499,13731,1254330479,1249725444,98.44,98.72,95.19,95.19,14.82,14.66,20.61,20.67
-45858,39,063,39063,3083,1231,162831765,162715561,3083,1231,162831765,162715561,74782,33174,1382170092,1376210257,100,100,100,100,4.12,3.71,11.78,11.82
-45859,39,065,39065,495,227,3444616,3444616,495,227,3444616,3444616,32058,13100,1218972653,1218342731,100,100,100,100,1.54,1.73,0.28,0.28
-45860,39,107,39107,2274,753,90681580,90608858,2274,753,90681580,90608858,40814,17633,1226164284,1197736887,100,100,100,100,5.57,4.27,7.4,7.57
-45861,39,125,39125,296,124,4863447,4863447,296,124,4863447,4863447,19614,8749,1084809596,1078568733,100,100,100,100,1.51,1.42,0.45,0.45
-45862,39,011,39011,51,21,7239011,7239011,1507,648,95218963,95061523,45949,19585,1040930421,1039585234,3.38,3.24,7.6,7.62,0.11,0.11,0.7,0.7
-45862,39,107,39107,1456,627,87979952,87822512,1507,648,95218963,95061523,40814,17633,1226164284,1197736887,96.62,96.76,92.4,92.38,3.57,3.56,7.18,7.33
-45863,39,161,39161,1254,523,78597660,78056260,1254,523,78597660,78056260,28744,12615,1062997022,1059715168,100,100,100,100,4.36,4.15,7.39,7.37
-45864,39,137,39137,163,75,2863724,2860563,163,75,2863724,2860563,34499,13731,1254330479,1249725444,100,100,100,100,0.47,0.55,0.23,0.23
-45865,39,011,39011,3559,1413,48894226,48884213,4745,2071,85411147,82127186,45949,19585,1040930421,1039585234,75.01,68.23,57.25,59.52,7.75,7.21,4.7,4.7
-45865,39,149,39149,1186,658,36516921,33242973,4745,2071,85411147,82127186,49423,20173,1063688077,1055874043,24.99,31.77,42.75,40.48,2.4,3.26,3.43,3.15
-45866,39,107,39107,186,95,585285,490900,186,95,585285,490900,40814,17633,1226164284,1197736887,100,100,100,100,0.46,0.54,0.05,0.04
-45867,39,063,39063,1167,477,64359968,64309574,1189,484,66301806,66251412,74782,33174,1382170092,1376210257,98.15,98.55,97.07,97.07,1.56,1.44,4.66,4.67
-45867,39,175,39175,22,7,1941838,1941838,1189,484,66301806,66251412,22615,9870,1055558812,1053775281,1.85,1.45,2.93,2.93,0.1,0.07,0.18,0.18
-45868,39,063,39063,567,242,40309841,40309841,567,242,40309841,40309841,74782,33174,1382170092,1376210257,100,100,100,100,0.76,0.73,2.92,2.93
-45869,39,011,39011,4355,1762,78601793,78582434,4534,1827,95295689,95247377,45949,19585,1040930421,1039585234,96.05,96.44,82.48,82.5,9.48,9,7.55,7.56
-45869,39,107,39107,84,29,8040711,8030356,4534,1827,95295689,95247377,40814,17633,1226164284,1197736887,1.85,1.59,8.44,8.43,0.21,0.16,0.66,0.67
-45869,39,149,39149,95,36,8653185,8634587,4534,1827,95295689,95247377,49423,20173,1063688077,1055874043,2.1,1.97,9.08,9.07,0.19,0.18,0.81,0.82
-45870,39,011,39011,156,56,842639,842639,156,56,842639,842639,45949,19585,1040930421,1039585234,100,100,100,100,0.34,0.29,0.08,0.08
-45871,39,011,39011,1511,630,44735049,44724890,1955,758,61546859,61516680,45949,19585,1040930421,1039585234,77.29,83.11,72.68,72.7,3.29,3.22,4.3,4.3
-45871,39,149,39149,444,128,16811810,16791790,1955,758,61546859,61516680,49423,20173,1063688077,1055874043,22.71,16.89,27.32,27.3,0.9,0.63,1.58,1.59
-45872,39,063,39063,64,28,8415660,8415660,4240,1797,78868390,78646222,74782,33174,1382170092,1376210257,1.51,1.56,10.67,10.7,0.09,0.08,0.61,0.61
-45872,39,173,39173,4176,1769,70452730,70230562,4240,1797,78868390,78646222,125488,53376,1607062710,1598552653,98.49,98.44,89.33,89.3,3.33,3.31,4.38,4.39
-45873,39,125,39125,2238,991,128806949,127123150,2238,991,128806949,127123150,19614,8749,1084809596,1078568733,100,100,100,100,11.41,11.33,11.87,11.79
-45874,39,161,39161,2100,924,148457043,148368252,2100,924,148457043,148368252,28744,12615,1062997022,1059715168,100,100,100,100,7.31,7.32,13.97,14
-45875,39,137,39137,10989,4352,266493995,265385089,10989,4352,266493995,265385089,34499,13731,1254330479,1249725444,100,100,100,100,31.85,31.69,21.25,21.24
-45876,39,137,39137,863,360,1571330,1561973,863,360,1571330,1561973,34499,13731,1254330479,1249725444,100,100,100,100,2.5,2.62,0.13,0.12
-45877,39,003,39003,96,36,4511549,4462463,2139,861,72243318,71903359,106331,44999,1053734042,1042458893,4.49,4.18,6.24,6.21,0.09,0.08,0.43,0.43
-45877,39,063,39063,5,4,893429,893429,2139,861,72243318,71903359,74782,33174,1382170092,1376210257,0.23,0.46,1.24,1.24,0.01,0.01,0.06,0.06
-45877,39,137,39137,2038,821,66838340,66547467,2139,861,72243318,71903359,34499,13731,1254330479,1249725444,95.28,95.35,92.52,92.55,5.91,5.98,5.33,5.32
-45879,39,125,39125,6284,2892,274492308,273758649,6284,2892,274492308,273758649,19614,8749,1084809596,1078568733,100,100,100,100,32.04,33.06,25.3,25.38
-45880,39,125,39125,2395,1056,153347573,153312652,2395,1056,153347573,153312652,19614,8749,1084809596,1078568733,100,100,100,100,12.21,12.07,14.14,14.21
-45881,39,063,39063,1461,567,76396857,76343682,1461,567,76396857,76343682,74782,33174,1382170092,1376210257,100,100,100,100,1.95,1.71,5.53,5.55
-45882,39,107,39107,2921,1210,207749134,207475482,3004,1245,217662278,217378798,40814,17633,1226164284,1197736887,97.24,97.19,95.45,95.44,7.16,6.86,16.94,17.32
-45882,39,161,39161,83,35,9913144,9903316,3004,1245,217662278,217378798,28744,12615,1062997022,1059715168,2.76,2.81,4.55,4.56,0.29,0.28,0.93,0.93
-45883,39,107,39107,3883,1350,93472423,93274565,3883,1350,93472423,93274565,40814,17633,1226164284,1197736887,100,100,100,100,9.51,7.66,7.62,7.79
-45884,39,011,39011,145,64,435933,435933,145,64,435933,435933,45949,19585,1040930421,1039585234,100,100,100,100,0.32,0.33,0.04,0.04
-45885,39,011,39011,12622,5667,184017741,183449029,12661,5692,184109966,183541254,45949,19585,1040930421,1039585234,99.69,99.56,99.95,99.95,27.47,28.94,17.68,17.65
-45885,39,107,39107,39,25,92225,92225,12661,5692,184109966,183541254,40814,17633,1226164284,1197736887,0.31,0.44,0.05,0.05,0.1,0.14,0.01,0.01
-45886,39,125,39125,262,103,31486496,31486496,551,230,54976758,54965209,19614,8749,1084809596,1078568733,47.55,44.78,57.27,57.28,1.34,1.18,2.9,2.92
-45886,39,161,39161,289,127,23490262,23478713,551,230,54976758,54965209,28744,12615,1062997022,1059715168,52.45,55.22,42.73,42.72,1.01,1.01,2.21,2.22
-45887,39,003,39003,3813,1522,100510380,100196681,4755,1904,185085310,184755233,106331,44999,1053734042,1042458893,80.19,79.94,54.3,54.23,3.59,3.38,9.54,9.61
-45887,39,011,39011,535,223,45963432,45963432,4755,1904,185085310,184755233,45949,19585,1040930421,1039585234,11.25,11.71,24.83,24.88,1.16,1.14,4.42,4.42
-45887,39,107,39107,54,20,7216985,7214815,4755,1904,185085310,184755233,40814,17633,1226164284,1197736887,1.14,1.05,3.9,3.91,0.13,0.11,0.59,0.6
-45887,39,161,39161,353,139,31394513,31380305,4755,1904,185085310,184755233,28744,12615,1062997022,1059715168,7.42,7.3,16.96,16.98,1.23,1.1,2.95,2.96
-45888,39,011,39011,220,96,437339,437339,220,96,437339,437339,45949,19585,1040930421,1039585234,100,100,100,100,0.48,0.49,0.04,0.04
-45889,39,063,39063,1351,500,52725372,52670382,1351,500,52725372,52670382,74782,33174,1382170092,1376210257,100,100,100,100,1.81,1.51,3.81,3.83
-45890,39,063,39063,671,276,38356455,38287625,671,276,38356455,38287625,74782,33174,1382170092,1376210257,100,100,100,100,0.9,0.83,2.78,2.78
-45891,39,161,39161,15275,6899,343835626,342495085,15275,6899,343835626,342495085,28744,12615,1062997022,1059715168,100,100,100,100,53.14,54.69,32.35,32.32
-45894,39,161,39161,605,267,84737491,84687075,605,267,84737491,84687075,28744,12615,1062997022,1059715168,100,100,100,100,2.1,2.12,7.97,7.99
-45895,39,011,39011,17908,7571,483815213,483170759,17945,7590,491491925,490847471,45949,19585,1040930421,1039585234,99.79,99.75,98.44,98.44,38.97,38.66,46.48,46.48
-45895,39,091,39091,37,19,7676712,7676712,17945,7590,491491925,490847471,45858,23181,1208935411,1187326601,0.21,0.25,1.56,1.56,0.08,0.08,0.63,0.65
-45896,39,003,39003,195,75,6030641,5982555,2089,850,98579887,98507236,106331,44999,1053734042,1042458893,9.33,8.82,6.12,6.07,0.18,0.17,0.57,0.57
-45896,39,011,39011,1727,702,74929003,74904438,2089,850,98579887,98507236,45949,19585,1040930421,1039585234,82.67,82.59,76.01,76.04,3.76,3.58,7.2,7.21
-45896,39,065,39065,167,73,17620243,17620243,2089,850,98579887,98507236,32058,13100,1218972653,1218342731,7.99,8.59,17.87,17.89,0.52,0.56,1.45,1.45
-45897,39,063,39063,101,53,3582670,3564103,101,53,3582670,3564103,74782,33174,1382170092,1376210257,100,100,100,100,0.14,0.16,0.26,0.26
-45898,39,107,39107,228,86,25555535,25506177,1314,572,88149308,87736537,40814,17633,1226164284,1197736887,17.35,15.03,28.99,29.07,0.56,0.49,2.08,2.13
-45898,39,161,39161,1086,486,62593773,62230360,1314,572,88149308,87736537,28744,12615,1062997022,1059715168,82.65,84.97,71.01,70.93,3.78,3.85,5.89,5.87
-45899,39,161,39161,194,93,802712,801677,194,93,802712,801677,28744,12615,1062997022,1059715168,100,100,100,100,0.67,0.74,0.08,0.08
-46001,18,035,18035,68,29,4629018,4567080,10459,4833,191669176,191254296,117671,52357,1025400252,1015596276,0.65,0.6,2.42,2.39,0.06,0.06,0.45,0.45
-46001,18,095,18095,10391,4804,187040158,186687216,10459,4833,191669176,191254296,131636,59068,1173017003,1170454727,99.35,99.4,97.58,97.61,7.89,8.13,15.95,15.95
-46011,18,095,18095,16770,7441,193790181,193591292,16770,7441,193790181,193591292,131636,59068,1173017003,1170454727,100,100,100,100,12.74,12.6,16.52,16.54
-46012,18,035,18035,150,67,10189727,10153941,19414,8805,84869928,84153159,117671,52357,1025400252,1015596276,0.77,0.76,12.01,12.07,0.13,0.13,0.99,1
-46012,18,095,18095,19264,8738,74680201,73999218,19414,8805,84869928,84153159,131636,59068,1173017003,1170454727,99.23,99.24,87.99,87.93,14.63,14.79,6.37,6.32
-46013,18,095,18095,17876,9081,56011079,55983620,17876,9081,56011079,55983620,131636,59068,1173017003,1170454727,100,100,100,100,13.58,15.37,4.77,4.78
-46016,18,095,18095,19225,10004,16488664,16488664,19225,10004,16488664,16488664,131636,59068,1173017003,1170454727,100,100,100,100,14.6,16.94,1.41,1.41
-46017,18,035,18035,50,16,1469483,1469483,6025,2779,44905339,44835705,117671,52357,1025400252,1015596276,0.83,0.58,3.27,3.28,0.04,0.03,0.14,0.14
-46017,18,095,18095,5975,2763,43435856,43366222,6025,2779,44905339,44835705,131636,59068,1173017003,1170454727,99.17,99.42,96.73,96.72,4.54,4.68,3.7,3.71
-46030,18,057,18057,3308,1332,97633067,96739569,3308,1332,97633067,96739569,274569,106772,1042306668,1021147705,100,100,100,100,1.2,1.25,9.37,9.47
-46031,18,057,18057,1807,723,83275635,83016049,2161,877,122317160,122056806,274569,106772,1042306668,1021147705,83.62,82.44,68.08,68.01,0.66,0.68,7.99,8.13
-46031,18,159,18159,354,154,39041525,39040757,2161,877,122317160,122056806,15936,6998,674865793,674797764,16.38,17.56,31.92,31.99,2.22,2.2,5.79,5.79
-46032,18,057,18057,42234,17629,67844539,66847654,42234,17629,67844539,66847654,274569,106772,1042306668,1021147705,100,100,100,100,15.38,16.51,6.51,6.55
-46033,18,057,18057,34889,12342,45768657,44397541,34889,12342,45768657,44397541,274569,106772,1042306668,1021147705,100,100,100,100,12.71,11.56,4.39,4.35
-46034,18,057,18057,6730,2905,77218108,74629279,6730,2905,77218108,74629279,274569,106772,1042306668,1021147705,100,100,100,100,2.45,2.72,7.41,7.31
-46035,18,011,18011,67,31,12210778,12210778,1113,480,62228598,62228598,56640,22754,1096217005,1095338966,6.02,6.46,19.62,19.62,0.12,0.14,1.11,1.11
-46035,18,023,18023,980,424,29990407,29990407,1113,480,62228598,62228598,33224,13321,1049587560,1049126443,88.05,88.33,48.19,48.19,2.95,3.18,2.86,2.86
-46035,18,107,18107,66,25,20027413,20027413,1113,480,62228598,62228598,38124,16535,1309096742,1306941391,5.93,5.21,32.18,32.18,0.17,0.15,1.53,1.53
-46036,18,053,18053,31,13,3608757,3608757,11663,5475,203651866,203651866,70061,30443,1074580449,1072446955,0.27,0.24,1.77,1.77,0.04,0.04,0.34,0.34
-46036,18,095,18095,10906,5148,153088013,153088013,11663,5475,203651866,203651866,131636,59068,1173017003,1170454727,93.51,94.03,75.17,75.17,8.28,8.72,13.05,13.08
-46036,18,159,18159,726,314,46955096,46955096,11663,5475,203651866,203651866,15936,6998,674865793,674797764,6.22,5.74,23.06,23.06,4.56,4.49,6.96,6.96
-46037,18,057,18057,35891,12631,51101045,49006828,35891,12631,51101045,49006828,274569,106772,1042306668,1021147705,100,100,100,100,13.07,11.83,4.9,4.8
-46038,18,057,18057,37723,15370,41963748,40896321,37723,15370,41963748,40896321,274569,106772,1042306668,1021147705,100,100,100,100,13.74,14.4,4.03,4
-46039,18,023,18023,745,316,70112295,70112295,745,316,70112295,70112295,33224,13321,1049587560,1049126443,100,100,100,100,2.24,2.37,6.68,6.68
-46040,18,057,18057,3574,1103,18601042,17910208,9944,3767,87345629,86186943,274569,106772,1042306668,1021147705,35.94,29.28,21.3,20.78,1.3,1.03,1.78,1.75
-46040,18,059,18059,5527,2324,54370718,54137208,9944,3767,87345629,86186943,70002,28125,795191473,792577692,55.58,61.69,62.25,62.81,7.9,8.26,6.84,6.83
-46040,18,095,18095,843,340,14373869,14139527,9944,3767,87345629,86186943,131636,59068,1173017003,1170454727,8.48,9.03,16.46,16.41,0.64,0.58,1.23,1.21
-46041,18,015,18015,163,67,21584233,21584233,23891,9560,651644004,651218871,20155,9472,971293833,964055949,0.68,0.7,3.31,3.31,0.81,0.71,2.22,2.24
-46041,18,023,18023,23728,9493,630059771,629634638,23891,9560,651644004,651218871,33224,13321,1049587560,1049126443,99.32,99.3,96.69,96.69,71.42,71.26,60.03,60.02
-46044,18,095,18095,2965,1251,56705017,56662829,2965,1251,56705017,56662829,131636,59068,1173017003,1170454727,100,100,100,100,2.25,2.12,4.83,4.84
-46045,18,159,18159,93,41,88188,88188,93,41,88188,88188,15936,6998,674865793,674797764,100,100,100,100,0.58,0.59,0.01,0.01
-46047,18,159,18159,43,18,34330,34330,43,18,34330,34330,15936,6998,674865793,674797764,100,100,100,100,0.27,0.26,0.01,0.01
-46048,18,095,18095,2406,917,3497549,3497549,2406,917,3497549,3497549,131636,59068,1173017003,1170454727,100,100,100,100,1.83,1.55,0.3,0.3
-46049,18,023,18023,28,11,7152230,7152230,850,369,69699274,69693087,33224,13321,1049587560,1049126443,3.29,2.98,10.26,10.26,0.08,0.08,0.68,0.68
-46049,18,159,18159,822,358,62547044,62540857,850,369,69699274,69693087,15936,6998,674865793,674797764,96.71,97.02,89.74,89.74,5.16,5.12,9.27,9.27
-46050,18,011,18011,244,101,22463029,22463029,1706,695,118538951,118538951,56640,22754,1096217005,1095338966,14.3,14.53,18.95,18.95,0.43,0.44,2.05,2.05
-46050,18,023,18023,1436,584,91684784,91684784,1706,695,118538951,118538951,33224,13321,1049587560,1049126443,84.17,84.03,77.35,77.35,4.32,4.38,8.74,8.74
-46050,18,159,18159,26,10,4391138,4391138,1706,695,118538951,118538951,15936,6998,674865793,674797764,1.52,1.44,3.7,3.7,0.16,0.14,0.65,0.65
-46051,18,095,18095,2826,1168,40986599,40986599,2826,1168,40986599,40986599,131636,59068,1173017003,1170454727,100,100,100,100,2.15,1.98,3.49,3.5
-46052,18,011,18011,22060,9520,460953370,460913042,22060,9520,460953370,460913042,56640,22754,1096217005,1095338966,100,100,100,100,38.95,41.84,42.05,42.08
-46055,18,057,18057,2043,663,5107160,3773384,10193,3567,68664937,67253554,274569,106772,1042306668,1021147705,20.04,18.59,7.44,5.61,0.74,0.62,0.49,0.37
-46055,18,059,18059,8150,2904,63557777,63480170,10193,3567,68664937,67253554,70002,28125,795191473,792577692,79.96,81.41,92.56,94.39,11.64,10.33,7.99,8.01
-46056,18,059,18059,107,49,10165603,10152263,2246,940,60089391,60036275,70002,28125,795191473,792577692,4.76,5.21,16.92,16.91,0.15,0.17,1.28,1.28
-46056,18,095,18095,2139,891,49923788,49884012,2246,940,60089391,60036275,131636,59068,1173017003,1170454727,95.24,94.79,83.08,83.09,1.62,1.51,4.26,4.26
-46057,18,023,18023,1179,483,64535423,64535423,1179,483,64535423,64535423,33224,13321,1049587560,1049126443,100,100,100,100,3.55,3.63,6.15,6.15
-46058,18,023,18023,2097,862,68597300,68597300,2149,876,69262763,69262763,33224,13321,1049587560,1049126443,97.58,98.4,99.04,99.04,6.31,6.47,6.54,6.54
-46058,18,157,18157,52,14,665463,665463,2149,876,69262763,69262763,172780,71096,1303394343,1294491529,2.42,1.6,0.96,0.96,0.03,0.02,0.05,0.05
-46060,18,057,18057,34670,14030,205177246,203232252,34708,14049,208784782,206839788,274569,106772,1042306668,1021147705,99.89,99.86,98.27,98.26,12.63,13.14,19.68,19.9
-46060,18,095,18095,38,19,3607536,3607536,34708,14049,208784782,206839788,131636,59068,1173017003,1170454727,0.11,0.14,1.73,1.74,0.03,0.03,0.31,0.31
-46062,18,057,18057,29730,11794,93539437,88247692,29730,11794,93539437,88247692,274569,106772,1042306668,1021147705,100,100,100,100,10.83,11.05,8.97,8.64
-46063,18,095,18095,401,173,1191660,1191660,401,173,1191660,1191660,131636,59068,1173017003,1170454727,100,100,100,100,0.3,0.29,0.1,0.1
-46064,18,059,18059,374,157,20432738,20424986,17148,5301,169256235,168365933,70002,28125,795191473,792577692,2.18,2.96,12.07,12.13,0.53,0.56,2.57,2.58
-46064,18,095,18095,16774,5144,148823497,147940947,17148,5301,169256235,168365933,131636,59068,1173017003,1170454727,97.82,97.04,87.93,87.87,12.74,8.71,12.69,12.64
-46065,18,015,18015,856,321,35953264,35922670,3669,1375,98721920,98691326,20155,9472,971293833,964055949,23.33,23.35,36.42,36.4,4.25,3.39,3.7,3.73
-46065,18,023,18023,2813,1054,62768656,62768656,3669,1375,98721920,98691326,33224,13321,1049587560,1049126443,76.67,76.65,63.58,63.6,8.47,7.91,5.98,5.98
-46068,18,159,18159,2850,1184,117251902,117251902,2850,1184,117251902,117251902,15936,6998,674865793,674797764,100,100,100,100,17.88,16.92,17.37,17.38
-46069,18,011,18011,1059,409,82137030,82110914,6664,2761,235653314,235398605,56640,22754,1096217005,1095338966,15.89,14.81,34.86,34.88,1.87,1.8,7.49,7.5
-46069,18,023,18023,154,65,16791220,16791220,6664,2761,235653314,235398605,33224,13321,1049587560,1049126443,2.31,2.35,7.13,7.13,0.46,0.49,1.6,1.6
-46069,18,057,18057,5451,2287,136725064,136496471,6664,2761,235653314,235398605,274569,106772,1042306668,1021147705,81.8,82.83,58.02,57.99,1.99,2.14,13.12,13.37
-46070,18,095,18095,2351,981,117601132,117567665,2351,981,117601132,117567665,131636,59068,1173017003,1170454727,100,100,100,100,1.79,1.66,10.03,10.04
-46071,18,011,18011,3417,1374,180064358,179641955,3417,1374,180064358,179641955,56640,22754,1096217005,1095338966,100,100,100,100,6.03,6.04,16.43,16.4
-46072,18,159,18159,9324,4165,291875317,291875317,9324,4165,291875317,291875317,15936,6998,674865793,674797764,100,100,100,100,58.51,59.52,43.25,43.25
-46074,18,057,18057,26745,9679,93892234,93488642,26745,9679,93892234,93488642,274569,106772,1042306668,1021147705,100,100,100,100,9.74,9.07,9.01,9.16
-46075,18,011,18011,2913,1273,80005798,79941310,2913,1273,80005798,79941310,56640,22754,1096217005,1095338966,100,100,100,100,5.14,5.59,7.3,7.3
-46076,18,067,18067,83,37,2467765,2467765,1696,760,115037166,114976092,82752,38679,761253035,759012945,4.89,4.87,2.15,2.15,0.1,0.1,0.32,0.33
-46076,18,159,18159,1613,723,112569401,112508327,1696,760,115037166,114976092,15936,6998,674865793,674797764,95.11,95.13,97.85,97.85,10.12,10.33,16.68,16.67
-46077,18,011,18011,23273,8492,104946239,104688247,24512,8912,113427519,112957915,56640,22754,1096217005,1095338966,94.95,95.29,92.52,92.68,41.09,37.32,9.57,9.56
-46077,18,057,18057,1049,339,6954076,6742464,24512,8912,113427519,112957915,274569,106772,1042306668,1021147705,4.28,3.8,6.13,5.97,0.38,0.32,0.67,0.66
-46077,18,097,18097,190,81,1527204,1527204,24512,8912,113427519,112957915,903393,417862,1043785772,1026408097,0.78,0.91,1.35,1.35,0.02,0.02,0.15,0.15
-46103,18,063,18063,159,56,96552,96552,159,56,96552,96552,145448,55454,1058728892,1053895149,100,100,100,100,0.11,0.1,0.01,0.01
-46104,18,139,18139,970,404,72584213,72536511,970,404,72584213,72536511,17392,7508,1057907782,1057035473,100,100,100,100,5.58,5.38,6.86,6.86
-46105,18,133,18133,1928,839,109255005,109220108,1928,839,109255005,109220108,37963,14706,1250166809,1244562066,100,100,100,100,5.08,5.71,8.74,8.78
-46106,18,081,18081,5837,2367,67256981,67256603,5928,2406,70496583,70485006,139654,56649,833432115,829903198,98.46,98.38,95.4,95.42,4.18,4.18,8.07,8.1
-46106,18,109,18109,91,39,3239602,3228403,5928,2406,70496583,70485006,68894,27754,1060411342,1046274750,1.54,1.62,4.6,4.58,0.13,0.14,0.31,0.31
-46107,18,097,18097,12774,5792,8401774,8401774,12774,5792,8401774,8401774,903393,417862,1043785772,1026408097,100,100,100,100,1.41,1.39,0.8,0.82
-46110,18,145,18145,500,196,37905625,37668636,500,196,37905625,37668636,44436,19080,1069033961,1064866098,100,100,100,100,1.13,1.03,3.55,3.54
-46111,18,109,18109,322,146,275098,274710,322,146,275098,274710,68894,27754,1060411342,1046274750,100,100,100,100,0.47,0.53,0.03,0.03
-46112,18,011,18011,43,21,2088286,2088254,33662,12902,104440329,103718695,56640,22754,1096217005,1095338966,0.13,0.16,2,2.01,0.08,0.09,0.19,0.19
-46112,18,063,18063,33619,12881,102352043,101630441,33662,12902,104440329,103718695,145448,55454,1058728892,1053895149,99.87,99.84,98,97.99,23.11,23.23,9.67,9.64
-46113,18,063,18063,1850,801,6288346,6245973,14063,5264,42749755,42470056,145448,55454,1058728892,1053895149,13.16,15.22,14.71,14.71,1.27,1.44,0.59,0.59
-46113,18,097,18097,6168,2220,14519090,14519090,14063,5264,42749755,42470056,903393,417862,1043785772,1026408097,43.86,42.17,33.96,34.19,0.68,0.53,1.39,1.41
-46113,18,109,18109,6045,2243,21942319,21704993,14063,5264,42749755,42470056,68894,27754,1060411342,1046274750,42.99,42.61,51.33,51.11,8.77,8.08,2.07,2.07
-46115,18,059,18059,108,38,5783928,5782384,1933,818,96204897,95743449,70002,28125,795191473,792577692,5.59,4.65,6.01,6.04,0.15,0.14,0.73,0.73
-46115,18,139,18139,1825,780,90420969,89961065,1933,818,96204897,95743449,17392,7508,1057907782,1057035473,94.41,95.35,93.99,93.96,10.49,10.39,8.55,8.51
-46117,18,059,18059,635,264,27958316,27902393,671,279,30590620,30534697,70002,28125,795191473,792577692,94.63,94.62,91.4,91.38,0.91,0.94,3.52,3.52
-46117,18,065,18065,36,15,2632304,2632304,671,279,30590620,30534697,49462,21288,1022609930,1014954691,5.37,5.38,8.6,8.62,0.07,0.07,0.26,0.26
-46118,18,063,18063,4932,1978,131265607,130846400,5015,2012,141701068,141281861,145448,55454,1058728892,1053895149,98.34,98.31,92.64,92.61,3.39,3.57,12.4,12.42
-46118,18,109,18109,83,34,10435461,10435461,5015,2012,141701068,141281861,68894,27754,1060411342,1046274750,1.66,1.69,7.36,7.39,0.12,0.12,0.98,1
-46120,18,109,18109,171,75,13283246,13283246,5954,2674,239146656,237841902,68894,27754,1060411342,1046274750,2.87,2.8,5.55,5.58,0.25,0.27,1.25,1.27
-46120,18,119,18119,804,441,27824593,27788908,5954,2674,239146656,237841902,21575,10091,1004463335,997892586,13.5,16.49,11.63,11.68,3.73,4.37,2.77,2.78
-46120,18,133,18133,4979,2158,198038817,196769748,5954,2674,239146656,237841902,37963,14706,1250166809,1244562066,83.62,80.7,82.81,82.73,13.12,14.67,15.84,15.81
-46121,18,063,18063,2077,830,74862117,74365429,5276,2275,142572361,140962294,145448,55454,1058728892,1053895149,39.37,36.48,52.51,52.76,1.43,1.5,7.07,7.06
-46121,18,133,18133,3199,1445,67710244,66596865,5276,2275,142572361,140962294,37963,14706,1250166809,1244562066,60.63,63.52,47.49,47.24,8.43,9.83,5.42,5.35
-46122,18,063,18063,14671,5772,229135761,228274557,14671,5772,229135761,228274557,145448,55454,1058728892,1053895149,100,100,100,100,10.09,10.41,21.64,21.66
-46123,18,063,18063,31754,12046,80154343,79361954,31754,12046,80154343,79361954,145448,55454,1058728892,1053895149,100,100,100,100,21.83,21.72,7.57,7.53
-46124,18,005,18005,1971,820,42191789,41822020,8127,3286,160790346,159583883,76794,33098,1060664802,1053886348,24.25,24.95,26.24,26.21,2.57,2.48,3.98,3.97
-46124,18,081,18081,4473,1776,29046356,28722396,8127,3286,160790346,159583883,139654,56649,833432115,829903198,55.04,54.05,18.06,18,3.2,3.14,3.49,3.46
-46124,18,145,18145,1683,690,89552201,89039467,8127,3286,160790346,159583883,44436,19080,1069033961,1064866098,20.71,21,55.7,55.79,3.79,3.62,8.38,8.36
-46125,18,109,18109,51,24,88060,88060,51,24,88060,88060,68894,27754,1060411342,1046274750,100,100,100,100,0.07,0.09,0.01,0.01
-46126,18,145,18145,4668,1860,85006648,84694877,4668,1860,85006648,84694877,44436,19080,1069033961,1064866098,100,100,100,100,10.5,9.75,7.95,7.95
-46127,18,041,18041,156,61,20482757,20482757,416,172,61232945,61232945,24277,10898,557268024,556883990,37.5,35.47,33.45,33.45,0.64,0.56,3.68,3.68
-46127,18,139,18139,260,111,40750188,40750188,416,172,61232945,61232945,17392,7508,1057907782,1057035473,62.5,64.53,66.55,66.55,1.49,1.48,3.85,3.86
-46128,18,133,18133,1949,800,90986568,90702313,1949,800,90986568,90702313,37963,14706,1250166809,1244562066,100,100,100,100,5.13,5.44,7.28,7.29
-46130,18,059,18059,681,266,10641254,10630233,2508,1030,77208808,77116243,70002,28125,795191473,792577692,27.15,25.83,13.78,13.78,0.97,0.95,1.34,1.34
-46130,18,145,18145,1827,764,66567554,66486010,2508,1030,77208808,77116243,44436,19080,1069033961,1064866098,72.85,74.17,86.22,86.22,4.11,4,6.23,6.24
-46131,18,081,18081,30806,12583,304003683,303558699,31036,12682,324589365,324085636,139654,56649,833432115,829903198,99.26,99.22,93.66,93.67,22.06,22.21,36.48,36.58
-46131,18,145,18145,230,99,20585682,20526937,31036,12682,324589365,324085636,44436,19080,1069033961,1064866098,0.74,0.78,6.34,6.33,0.52,0.52,1.93,1.93
-46133,18,041,18041,425,185,29230359,29230359,816,361,63649258,63613325,24277,10898,557268024,556883990,52.08,51.25,45.92,45.95,1.75,1.7,5.25,5.25
-46133,18,139,18139,391,176,34418899,34382966,816,361,63649258,63613325,17392,7508,1057907782,1057035473,47.92,48.75,54.08,54.05,2.25,2.34,3.25,3.25
-46135,18,121,18121,60,82,7199564,7195624,20992,7374,433286843,431344362,17339,8085,1165440508,1151671026,0.29,1.11,1.66,1.67,0.35,1.01,0.62,0.62
-46135,18,133,18133,20932,7292,426087279,424148738,20992,7374,433286843,431344362,37963,14706,1250166809,1244562066,99.71,98.89,98.34,98.33,55.14,49.59,34.08,34.08
-46140,18,059,18059,38443,16088,437502232,435734846,38543,16133,440708244,438940858,70002,28125,795191473,792577692,99.74,99.72,99.27,99.27,54.92,57.2,55.02,54.98
-46140,18,139,18139,100,45,3206012,3206012,38543,16133,440708244,438940858,17392,7508,1057907782,1057035473,0.26,0.28,0.73,0.73,0.57,0.6,0.3,0.3
-46142,18,081,18081,30413,12478,39217444,38768329,30413,12478,39217444,38768329,139654,56649,833432115,829903198,100,100,100,100,21.78,22.03,4.71,4.67
-46143,18,081,18081,48555,19742,126783417,126415464,48555,19742,126783417,126415464,139654,56649,833432115,829903198,100,100,100,100,34.77,34.85,15.21,15.23
-46144,18,145,18145,211,89,1342909,1342909,211,89,1342909,1342909,44436,19080,1069033961,1064866098,100,100,100,100,0.47,0.47,0.13,0.13
-46146,18,139,18139,117,57,2014478,2014478,117,57,2014478,2014478,17392,7508,1057907782,1057035473,100,100,100,100,0.67,0.76,0.19,0.19
-46147,18,011,18011,3029,1190,138286525,138222693,3264,1286,152755124,152676382,56640,22754,1096217005,1095338966,92.8,92.53,90.53,90.53,5.35,5.23,12.61,12.62
-46147,18,063,18063,235,96,14468599,14453689,3264,1286,152755124,152676382,145448,55454,1058728892,1053895149,7.2,7.47,9.47,9.47,0.16,0.17,1.37,1.37
-46148,18,065,18065,4614,1981,90691491,90104723,5097,2173,132843161,132253995,49462,21288,1022609930,1014954691,90.52,91.16,68.27,68.13,9.33,9.31,8.87,8.88
-46148,18,139,18139,483,192,42151670,42149272,5097,2173,132843161,132253995,17392,7508,1057907782,1057035473,9.48,8.84,31.73,31.87,2.78,2.56,3.98,3.99
-46149,18,063,18063,1890,743,68000318,67965321,1890,743,68000318,67965321,145448,55454,1058728892,1053895149,100,100,100,100,1.3,1.34,6.42,6.45
-46150,18,139,18139,659,284,56933336,56930738,764,331,63960494,63887831,17392,7508,1057907782,1057035473,86.26,85.8,89.01,89.11,3.79,3.78,5.38,5.39
-46150,18,145,18145,105,47,7027158,6957093,764,331,63960494,63887831,44436,19080,1069033961,1064866098,13.74,14.2,10.99,10.89,0.24,0.25,0.66,0.65
-46151,18,081,18081,52,15,1170098,1170098,30921,12668,540442891,530614386,139654,56649,833432115,829903198,0.17,0.12,0.22,0.22,0.04,0.03,0.14,0.14
-46151,18,105,18105,65,32,17779932,17770125,30921,12668,540442891,530614386,137974,59107,1065316039,1021773228,0.21,0.25,3.29,3.35,0.05,0.05,1.67,1.74
-46151,18,109,18109,30804,12621,521492861,511674163,30921,12668,540442891,530614386,68894,27754,1060411342,1046274750,99.62,99.63,96.49,96.43,44.71,45.47,49.18,48.9
-46155,18,139,18139,103,39,59164,59164,103,39,59164,59164,17392,7508,1057907782,1057035473,100,100,100,100,0.59,0.52,0.01,0.01
-46156,18,031,18031,11,4,836652,836652,1470,566,105869764,105796779,25740,11209,966901597,964946111,0.75,0.71,0.79,0.79,0.04,0.04,0.09,0.09
-46156,18,139,18139,1459,562,105033112,104960127,1470,566,105869764,105796779,17392,7508,1057907782,1057035473,99.25,99.29,99.21,99.21,8.39,7.49,9.93,9.93
-46157,18,109,18109,3639,1431,82910712,82560882,3639,1431,82910712,82560882,68894,27754,1060411342,1046274750,100,100,100,100,5.28,5.16,7.82,7.89
-46158,18,063,18063,1002,374,21820358,21644847,23053,9257,197771204,195081320,145448,55454,1058728892,1053895149,4.35,4.04,11.03,11.1,0.69,0.67,2.06,2.05
-46158,18,109,18109,22051,8883,175950846,173436473,23053,9257,197771204,195081320,68894,27754,1060411342,1046274750,95.65,95.96,88.97,88.9,32.01,32.01,16.59,16.58
-46160,18,013,18013,3110,1410,118453696,117649002,6421,2727,240815989,239369468,15242,8285,820069887,808026819,48.43,51.71,49.19,49.15,20.4,17.02,14.44,14.56
-46160,18,081,18081,967,371,58419015,58164912,6421,2727,240815989,239369468,139654,56649,833432115,829903198,15.06,13.6,24.26,24.3,0.69,0.65,7.01,7.01
-46160,18,109,18109,2344,946,63943278,63555554,6421,2727,240815989,239369468,68894,27754,1060411342,1046274750,36.51,34.69,26.55,26.55,3.4,3.41,6.03,6.07
-46161,18,059,18059,166,60,10805905,10636644,2655,1091,94703829,94211984,70002,28125,795191473,792577692,6.25,5.5,11.41,11.29,0.24,0.21,1.36,1.34
-46161,18,139,18139,68,25,3455615,3455615,2655,1091,94703829,94211984,17392,7508,1057907782,1057035473,2.56,2.29,3.65,3.67,0.39,0.33,0.33,0.33
-46161,18,145,18145,2421,1006,80442309,80119725,2655,1091,94703829,94211984,44436,19080,1069033961,1064866098,91.19,92.21,84.94,85.04,5.45,5.27,7.52,7.52
-46162,18,081,18081,262,113,16202607,16198877,458,198,29168230,29094090,139654,56649,833432115,829903198,57.21,57.07,55.55,55.68,0.19,0.2,1.94,1.95
-46162,18,145,18145,196,85,12965623,12895213,458,198,29168230,29094090,44436,19080,1069033961,1064866098,42.79,42.93,44.45,44.32,0.44,0.45,1.21,1.21
-46163,18,059,18059,11561,4238,67015676,66891759,11963,4398,76560164,76412358,70002,28125,795191473,792577692,96.64,96.36,87.53,87.54,16.52,15.07,8.43,8.44
-46163,18,145,18145,402,160,9544488,9520599,11963,4398,76560164,76412358,44436,19080,1069033961,1064866098,3.36,3.64,12.47,12.46,0.9,0.84,0.89,0.89
-46164,18,013,18013,1959,1589,46251890,44366772,3957,2631,63237004,60833068,15242,8285,820069887,808026819,49.51,60.4,73.14,72.93,12.85,19.18,5.64,5.49
-46164,18,081,18081,1998,1042,16985114,16466296,3957,2631,63237004,60833068,139654,56649,833432115,829903198,50.49,39.6,26.86,27.07,1.43,1.84,2.04,1.98
-46165,18,063,18063,1498,628,104066629,103832305,1498,628,104066629,103832305,145448,55454,1058728892,1053895149,100,100,100,100,1.03,1.13,9.83,9.85
-46166,18,109,18109,2205,866,85969956,85836777,2306,917,90533013,90399834,68894,27754,1060411342,1046274750,95.62,94.44,94.96,94.95,3.2,3.12,8.11,8.2
-46166,18,119,18119,101,51,4563057,4563057,2306,917,90533013,90399834,21575,10091,1004463335,997892586,4.38,5.56,5.04,5.05,0.47,0.51,0.45,0.46
-46167,18,063,18063,6336,2332,77789946,77725198,6336,2332,77789946,77725198,145448,55454,1058728892,1053895149,100,100,100,100,4.36,4.21,7.35,7.38
-46168,18,063,18063,30309,11484,84138806,83539423,30309,11484,84138806,83539423,145448,55454,1058728892,1053895149,100,100,100,100,20.84,20.71,7.95,7.93
-46171,18,133,18133,1695,737,94300296,94127786,1695,737,94300296,94127786,37963,14706,1250166809,1244562066,100,100,100,100,4.46,5.01,7.54,7.56
-46172,18,133,18133,2427,1040,174881961,174845354,2427,1040,174881961,174845354,37963,14706,1250166809,1244562066,100,100,100,100,6.39,7.07,13.99,14.05
-46173,18,031,18031,260,88,14912705,14912705,11190,4903,585001737,584761543,25740,11209,966901597,964946111,2.32,1.79,2.55,2.55,1.01,0.79,1.54,1.55
-46173,18,047,18047,269,105,9398715,9375851,11190,4903,585001737,584761543,23087,9538,1012814253,995668709,2.4,2.14,1.61,1.6,1.17,1.1,0.93,0.94
-46173,18,139,18139,10661,4710,560690317,560472987,11190,4903,585001737,584761543,17392,7508,1057907782,1057035473,95.27,96.06,95.84,95.85,61.3,62.73,53,53.02
-46175,18,121,18121,16,6,2495831,2495831,597,268,57809228,57690120,17339,8085,1165440508,1151671026,2.68,2.24,4.32,4.33,0.09,0.07,0.21,0.22
-46175,18,133,18133,581,262,55313397,55194289,597,268,57809228,57690120,37963,14706,1250166809,1244562066,97.32,97.76,95.68,95.67,1.53,1.78,4.42,4.43
-46176,18,145,18145,27816,12240,448204895,445834825,27816,12240,448204895,445834825,44436,19080,1069033961,1064866098,100,100,100,100,62.6,64.15,41.93,41.87
-46180,18,063,18063,675,285,30221585,30125378,1028,435,66471659,66375452,145448,55454,1058728892,1053895149,65.66,65.52,45.47,45.39,0.46,0.51,2.85,2.86
-46180,18,109,18109,353,150,36250074,36250074,1028,435,66471659,66375452,68894,27754,1060411342,1046274750,34.34,34.48,54.53,54.61,0.51,0.54,3.42,3.46
-46181,18,013,18013,678,285,18386371,18386371,4832,1937,117299126,116221796,15242,8285,820069887,808026819,14.03,14.71,15.67,15.82,4.45,3.44,2.24,2.28
-46181,18,081,18081,4154,1652,98912755,97835425,4832,1937,117299126,116221796,139654,56649,833432115,829903198,85.97,85.29,84.33,84.18,2.97,2.92,11.87,11.79
-46182,18,139,18139,106,42,16682927,16682927,1927,808,91424565,91370374,17392,7508,1057907782,1057035473,5.5,5.2,18.25,18.26,0.61,0.56,1.58,1.58
-46182,18,145,18145,1821,766,74741638,74687447,1927,808,91424565,91370374,44436,19080,1069033961,1064866098,94.5,94.8,81.75,81.74,4.1,4.01,6.99,7.01
-46183,18,097,18097,82,32,79979,79979,82,32,79979,79979,903393,417862,1043785772,1026408097,100,100,100,100,0.01,0.01,0.01,0.01
-46184,18,081,18081,11806,4387,53102676,53021278,11806,4387,53102676,53021278,139654,56649,833432115,829903198,100,100,100,100,8.45,7.74,6.37,6.39
-46186,18,059,18059,1720,688,71824863,71697196,1753,700,73468016,73340349,70002,28125,795191473,792577692,98.12,98.29,97.76,97.76,2.46,2.45,9.03,9.05
-46186,18,065,18065,33,12,1643153,1643153,1753,700,73468016,73340349,49462,21288,1022609930,1014954691,1.88,1.71,2.24,2.24,0.07,0.06,0.16,0.16
-46201,18,097,18097,30962,16868,14468533,14468533,30962,16868,14468533,14468533,903393,417862,1043785772,1026408097,100,100,100,100,3.43,4.04,1.39,1.41
-46202,18,097,18097,16335,9825,14871518,14454645,16335,9825,14871518,14454645,903393,417862,1043785772,1026408097,100,100,100,100,1.81,2.35,1.42,1.41
-46203,18,097,18097,38950,17688,35948136,35948136,38950,17688,35948136,35948136,903393,417862,1043785772,1026408097,100,100,100,100,4.31,4.23,3.44,3.5
-46204,18,097,18097,5125,3033,2923601,2904536,5125,3033,2923601,2904536,903393,417862,1043785772,1026408097,100,100,100,100,0.57,0.73,0.28,0.28
-46205,18,097,18097,25356,14175,16420649,16217183,25356,14175,16420649,16217183,903393,417862,1043785772,1026408097,100,100,100,100,2.81,3.39,1.57,1.58
-46208,18,097,18097,22239,11993,17727454,17388430,22239,11993,17727454,17388430,903393,417862,1043785772,1026408097,100,100,100,100,2.46,2.87,1.7,1.69
-46214,18,097,18097,24306,11881,18970639,18404984,24306,11881,18970639,18404984,903393,417862,1043785772,1026408097,100,100,100,100,2.69,2.84,1.82,1.79
-46216,18,097,18097,1697,1065,9049942,9038787,1697,1065,9049942,9038787,903393,417862,1043785772,1026408097,100,100,100,100,0.19,0.25,0.87,0.88
-46217,18,097,18097,29358,12039,55843487,55607636,29358,12039,55843487,55607636,903393,417862,1043785772,1026408097,100,100,100,100,3.25,2.88,5.35,5.42
-46218,18,097,18097,29028,14978,24436825,24436825,29028,14978,24436825,24436825,903393,417862,1043785772,1026408097,100,100,100,100,3.21,3.58,2.34,2.38
-46219,18,097,18097,33930,16871,33423541,33400963,33930,16871,33423541,33400963,903393,417862,1043785772,1026408097,100,100,100,100,3.76,4.04,3.2,3.25
-46220,18,097,18097,34830,17651,32245723,31183045,34830,17651,32245723,31183045,903393,417862,1043785772,1026408097,100,100,100,100,3.86,4.22,3.09,3.04
-46221,18,097,18097,26393,10647,52489458,51309207,26393,10647,52489458,51309207,903393,417862,1043785772,1026408097,100,100,100,100,2.92,2.55,5.03,5
-46222,18,097,18097,34044,15121,29468448,28914182,34044,15121,29468448,28914182,903393,417862,1043785772,1026408097,100,100,100,100,3.77,3.62,2.82,2.82
-46224,18,097,18097,35094,16817,18630819,18562763,35094,16817,18630819,18562763,903393,417862,1043785772,1026408097,100,100,100,100,3.88,4.02,1.78,1.81
-46225,18,097,18097,7319,3594,10742490,10457056,7319,3594,10742490,10457056,903393,417862,1043785772,1026408097,100,100,100,100,0.81,0.86,1.03,1.02
-46226,18,097,18097,43904,19985,37363652,37328938,43904,19985,37363652,37328938,903393,417862,1043785772,1026408097,100,100,100,100,4.86,4.78,3.58,3.64
-46227,18,097,18097,57086,25687,43427578,43393274,57086,25687,43427578,43393274,903393,417862,1043785772,1026408097,100,100,100,100,6.32,6.15,4.16,4.23
-46228,18,097,18097,14755,6428,20853145,20735152,14755,6428,20853145,20735152,903393,417862,1043785772,1026408097,100,100,100,100,1.63,1.54,2,2.02
-46229,18,059,18059,1588,660,2745658,2733699,27262,11437,28235674,28124977,70002,28125,795191473,792577692,5.82,5.77,9.72,9.72,2.27,2.35,0.35,0.34
-46229,18,097,18097,25674,10777,25490016,25391278,27262,11437,28235674,28124977,903393,417862,1043785772,1026408097,94.18,94.23,90.28,90.28,2.84,2.58,2.44,2.47
-46231,18,063,18063,3437,1135,13229891,13183543,10440,3575,31954006,31907658,145448,55454,1058728892,1053895149,32.92,31.75,41.4,41.32,2.36,2.05,1.25,1.25
-46231,18,097,18097,7003,2440,18724115,18724115,10440,3575,31954006,31907658,903393,417862,1043785772,1026408097,67.08,68.25,58.6,58.68,0.78,0.58,1.79,1.82
-46234,18,063,18063,10780,3927,16984914,16762100,24810,10036,36416959,32992792,145448,55454,1058728892,1053895149,43.45,39.13,46.64,50.81,7.41,7.08,1.6,1.59
-46234,18,097,18097,14030,6109,19432045,16230692,24810,10036,36416959,32992792,903393,417862,1043785772,1026408097,56.55,60.87,53.36,49.19,1.55,1.46,1.86,1.58
-46235,18,097,18097,30825,12919,24990095,24980861,30825,12919,24990095,24980861,903393,417862,1043785772,1026408097,100,100,100,100,3.41,3.09,2.39,2.43
-46236,18,097,18097,27294,10534,31028992,27235344,27294,10534,31028992,27235344,903393,417862,1043785772,1026408097,100,100,100,100,3.02,2.52,2.97,2.65
-46237,18,097,18097,39624,16721,38546986,38496219,39624,16721,38546986,38496219,903393,417862,1043785772,1026408097,100,100,100,100,4.39,4,3.69,3.75
-46239,18,059,18059,39,13,428866,428866,25345,9628,75366089,75230027,70002,28125,795191473,792577692,0.15,0.14,0.57,0.57,0.06,0.05,0.05,0.05
-46239,18,097,18097,25306,9615,74937223,74801161,25345,9628,75366089,75230027,903393,417862,1043785772,1026408097,99.85,99.86,99.43,99.43,2.8,2.3,7.18,7.29
-46240,18,057,18057,0,0,358537,347593,18731,10194,26964285,25336292,274569,106772,1042306668,1021147705,0,0,1.33,1.37,0,0,0.03,0.03
-46240,18,097,18097,18731,10194,26605748,24988699,18731,10194,26964285,25336292,903393,417862,1043785772,1026408097,100,100,98.67,98.63,2.07,2.44,2.55,2.43
-46241,18,097,18097,30670,12591,58273792,58016012,30670,12591,58273792,58016012,903393,417862,1043785772,1026408097,100,100,100,100,3.39,3.01,5.58,5.65
-46250,18,057,18057,178,107,66467,61419,18546,9961,19719788,19714209,274569,106772,1042306668,1021147705,0.96,1.07,0.34,0.31,0.06,0.1,0.01,0.01
-46250,18,097,18097,18368,9854,19653321,19652790,18546,9961,19719788,19714209,903393,417862,1043785772,1026408097,99.04,98.93,99.66,99.69,2.03,2.36,1.88,1.91
-46254,18,097,18097,38095,17562,37385502,35375891,38095,17562,37385502,35375891,903393,417862,1043785772,1026408097,100,100,100,100,4.22,4.2,3.58,3.45
-46256,18,057,18057,1584,553,3874665,2635831,23647,10593,30253910,28989676,274569,106772,1042306668,1021147705,6.7,5.22,12.81,9.09,0.58,0.52,0.37,0.26
-46256,18,097,18097,22063,10040,26379245,26353845,23647,10593,30253910,28989676,903393,417862,1043785772,1026408097,93.3,94.78,87.19,90.91,2.44,2.4,2.53,2.57
-46259,18,081,18081,331,123,11642553,11635405,11617,4057,55587474,55558500,139654,56649,833432115,829903198,2.85,3.03,20.94,20.94,0.24,0.22,1.4,1.4
-46259,18,097,18097,10889,3780,39326400,39313783,11617,4057,55587474,55558500,903393,417862,1043785772,1026408097,93.73,93.17,70.75,70.76,1.21,0.9,3.77,3.83
-46259,18,145,18145,397,154,4618521,4609312,11617,4057,55587474,55558500,44436,19080,1069033961,1064866098,3.42,3.8,8.31,8.3,0.89,0.81,0.43,0.43
-46260,18,057,18057,0,0,219701,219701,32406,15224,26342757,26323133,274569,106772,1042306668,1021147705,0,0,0.83,0.83,0,0,0.02,0.02
-46260,18,097,18097,32406,15224,26123056,26103432,32406,15224,26342757,26323133,903393,417862,1043785772,1026408097,100,100,99.17,99.17,3.59,3.64,2.5,2.54
-46268,18,011,18011,448,308,2299850,2299850,24965,12214,34490761,34413368,56640,22754,1096217005,1095338966,1.79,2.52,6.67,6.68,0.79,1.35,0.21,0.21
-46268,18,097,18097,24517,11906,32190911,32113518,24965,12214,34490761,34413368,903393,417862,1043785772,1026408097,98.21,97.48,93.33,93.32,2.71,2.85,3.08,3.13
-46278,18,063,18063,224,86,3853077,3842039,8197,3211,34717717,33790174,145448,55454,1058728892,1053895149,2.73,2.68,11.1,11.37,0.15,0.16,0.36,0.36
-46278,18,097,18097,7973,3125,30864640,29948135,8197,3211,34717717,33790174,903393,417862,1043785772,1026408097,97.27,97.32,88.9,88.63,0.88,0.75,2.96,2.92
-46280,18,057,18057,6793,3189,11565337,11055172,6793,3189,11565337,11055172,274569,106772,1042306668,1021147705,100,100,100,100,2.47,2.99,1.11,1.08
-46290,18,057,18057,170,96,1420903,1403635,170,96,1420903,1403635,274569,106772,1042306668,1021147705,100,100,100,100,0.06,0.09,0.14,0.14
-46301,18,127,18127,669,557,14536349,8722033,669,557,14536349,8722033,164343,66179,1351406144,1083011401,100,100,100,100,0.41,0.84,1.08,0.81
-46303,18,089,18089,14170,5717,75012417,71370895,14170,5717,75012417,71370895,496005,208750,1622783979,1292303671,100,100,100,100,2.86,2.74,4.62,5.52
-46304,18,127,18127,24207,9933,148098345,138941246,24207,9933,148098345,138941246,164343,66179,1351406144,1083011401,100,100,100,100,14.73,15.01,10.96,12.83
-46307,18,089,18089,57179,21774,222788742,221531170,60619,23091,228817390,227047780,496005,208750,1622783979,1292303671,94.33,94.3,97.37,97.57,11.53,10.43,13.73,17.14
-46307,18,127,18127,3440,1317,6028648,5516610,60619,23091,228817390,227047780,164343,66179,1351406144,1083011401,5.67,5.7,2.63,2.43,2.09,1.99,0.45,0.51
-46310,18,073,18073,10433,4094,133528258,133113276,13565,5286,174125793,173287894,33478,13168,1453982070,1449421191,76.91,77.45,76.68,76.82,31.16,31.09,9.18,9.18
-46310,18,111,18111,3132,1192,40597535,40174618,13565,5286,174125793,173287894,14244,6030,1044899950,1040550429,23.09,22.55,23.32,23.18,21.99,19.77,3.89,3.86
-46311,18,089,18089,20816,7770,35110451,35110451,20816,7770,35110451,35110451,496005,208750,1622783979,1292303671,100,100,100,100,4.2,3.72,2.16,2.72
-46312,18,089,18089,29698,12958,36920240,36283931,29698,12958,36920240,36283931,496005,208750,1622783979,1292303671,100,100,100,100,5.99,6.21,2.28,2.81
-46319,18,089,18089,18404,7700,24075539,24015234,18404,7700,24075539,24015234,496005,208750,1622783979,1292303671,100,100,100,100,3.71,3.69,1.48,1.86
-46320,18,089,18089,15508,6569,21918068,17324122,15508,6569,21918068,17324122,496005,208750,1622783979,1292303671,100,100,100,100,3.13,3.15,1.35,1.34
-46321,18,089,18089,23603,9393,19816746,19606735,23603,9393,19816746,19606735,496005,208750,1622783979,1292303671,100,100,100,100,4.76,4.5,1.22,1.52
-46322,18,089,18089,23727,10335,17926415,17867833,23727,10335,17926415,17867833,496005,208750,1622783979,1292303671,100,100,100,100,4.78,4.95,1.1,1.38
-46323,18,089,18089,22743,8977,16138888,16064128,22743,8977,16138888,16064128,496005,208750,1622783979,1292303671,100,100,100,100,4.59,4.3,0.99,1.24
-46324,18,089,18089,23165,9490,11424420,11424420,23165,9490,11424420,11424420,496005,208750,1622783979,1292303671,100,100,100,100,4.67,4.55,0.7,0.88
-46327,18,089,18089,12153,4593,10993596,10689498,12153,4593,10993596,10689498,496005,208750,1622783979,1292303671,100,100,100,100,2.45,2.2,0.68,0.83
-46340,18,091,18091,1068,435,85582266,85240346,1068,435,85582266,85240346,111467,48448,1588334920,1549587772,100,100,100,100,0.96,0.9,5.39,5.5
-46341,18,089,18089,1325,570,107580581,107248651,10426,4109,234527013,233813856,496005,208750,1622783979,1292303671,12.71,13.87,45.87,45.87,0.27,0.27,6.63,8.3
-46341,18,127,18127,9101,3539,126946432,126565205,10426,4109,234527013,233813856,164343,66179,1351406144,1083011401,87.29,86.13,54.13,54.13,5.54,5.35,9.39,11.69
-46342,18,089,18089,30012,12549,67264509,66266018,31244,13020,92226579,91228088,496005,208750,1622783979,1292303671,96.06,96.38,72.93,72.64,6.05,6.01,4.15,5.13
-46342,18,127,18127,1232,471,24962070,24962070,31244,13020,92226579,91228088,164343,66179,1351406144,1083011401,3.94,3.62,27.07,27.36,0.75,0.71,1.85,2.3
-46345,18,091,18091,249,94,981685,981685,249,94,981685,981685,111467,48448,1588334920,1549587772,100,100,100,100,0.22,0.19,0.06,0.06
-46346,18,091,18091,1423,543,4573901,4573901,1423,543,4573901,4573901,111467,48448,1588334920,1549587772,100,100,100,100,1.28,1.12,0.29,0.3
-46347,18,127,18127,4760,1767,185563948,185519849,4760,1767,185563948,185519849,164343,66179,1351406144,1083011401,100,100,100,100,2.9,2.67,13.73,17.13
-46348,18,091,18091,1032,463,129974176,129974176,1045,468,132882625,132882625,111467,48448,1588334920,1549587772,98.76,98.93,97.81,97.81,0.93,0.96,8.18,8.39
-46348,18,127,18127,13,5,2908449,2908449,1045,468,132882625,132882625,164343,66179,1351406144,1083011401,1.24,1.07,2.19,2.19,0.01,0.01,0.22,0.27
-46349,18,111,18111,3336,1373,217858895,217846920,3336,1373,217858895,217846920,14244,6030,1044899950,1040550429,100,100,100,100,23.42,22.77,20.85,20.94
-46350,18,091,18091,43650,18590,510103106,503027969,43650,18590,510103106,503027969,111467,48448,1588334920,1549587772,100,100,100,100,39.16,38.37,32.12,32.46
-46356,18,089,18089,17524,6775,307354228,305776586,17524,6775,307354228,305776586,496005,208750,1622783979,1292303671,100,100,100,100,3.53,3.25,18.94,23.66
-46360,18,091,18091,42306,20136,170369423,163924885,43625,20760,206706454,200261916,111467,48448,1588334920,1549587772,96.98,96.99,82.42,81.86,37.95,41.56,10.73,10.58
-46360,18,127,18127,1319,624,36337031,36337031,43625,20760,206706454,200261916,164343,66179,1351406144,1083011401,3.02,3.01,17.58,18.14,0.8,0.94,2.69,3.36
-46365,18,091,18091,1068,421,61108524,60257941,1068,421,61108524,60257941,111467,48448,1588334920,1549587772,100,100,100,100,0.96,0.87,3.85,3.89
-46366,18,131,18131,169,66,29156502,29156502,5791,2462,206112368,205967585,13402,6060,1125437524,1123145988,2.92,2.68,14.15,14.16,1.26,1.09,2.59,2.6
-46366,18,149,18149,5622,2396,176955866,176811083,5791,2462,206112368,205967585,23363,10962,808608838,800653661,97.08,97.32,85.85,85.84,24.06,21.86,21.88,22.08
-46368,18,127,18127,38691,15729,76148089,68175688,38691,15729,76148089,68175688,164343,66179,1351406144,1083011401,100,100,100,100,23.54,23.77,5.63,6.3
-46371,18,091,18091,3599,1553,99592144,98080166,3599,1553,99592144,98080166,111467,48448,1588334920,1549587772,100,100,100,100,3.23,3.21,6.27,6.33
-46373,18,089,18089,13859,4915,26409236,26173739,13859,4915,26409236,26173739,496005,208750,1622783979,1292303671,100,100,100,100,2.79,2.35,1.63,2.03
-46374,18,073,18073,119,59,15664734,15563570,1012,468,94167671,93954336,33478,13168,1453982070,1449421191,11.76,12.61,16.63,16.57,0.36,0.45,1.08,1.07
-46374,18,131,18131,68,31,12734889,12734889,1012,468,94167671,93954336,13402,6060,1125437524,1123145988,6.72,6.62,13.52,13.55,0.51,0.51,1.13,1.13
-46374,18,149,18149,825,378,65768048,65655877,1012,468,94167671,93954336,23363,10962,808608838,800653661,81.52,80.77,69.84,69.88,3.53,3.45,8.13,8.2
-46375,18,089,18089,23820,9984,35222249,35084859,23820,9984,35222249,35084859,496005,208750,1622783979,1292303671,100,100,100,100,4.8,4.78,2.17,2.71
-46376,18,089,18089,398,173,23388495,23318622,398,173,23388495,23318622,496005,208750,1622783979,1292303671,100,100,100,100,0.08,0.08,1.44,1.8
-46377,18,089,18089,386,181,1555211,1555211,386,181,1555211,1555211,496005,208750,1622783979,1292303671,100,100,100,100,0.08,0.09,0.1,0.12
-46379,18,111,18111,202,96,1199336,1199336,202,96,1199336,1199336,14244,6030,1044899950,1040550429,100,100,100,100,1.42,1.59,0.11,0.12
-46381,18,111,18111,235,96,2354814,2354814,235,96,2354814,2354814,14244,6030,1044899950,1040550429,100,100,100,100,1.65,1.59,0.23,0.23
-46382,18,091,18091,2108,793,126367574,126284392,2108,793,126367574,126284392,111467,48448,1588334920,1549587772,100,100,100,100,1.89,1.64,7.96,8.15
-46383,18,127,18127,39687,16472,227468929,225913150,39687,16472,227468929,225913150,164343,66179,1351406144,1083011401,100,100,100,100,24.15,24.89,16.83,20.86
-46385,18,127,18127,38866,14880,212081868,210583481,38866,14880,212081868,210583481,164343,66179,1351406144,1083011401,100,100,100,100,23.65,22.48,15.69,19.44
-46390,18,091,18091,2791,1148,126371798,126366987,2796,1151,127277620,127272809,111467,48448,1588334920,1549587772,99.82,99.74,99.29,99.29,2.5,2.37,7.96,8.15
-46390,18,127,18127,5,3,905822,905822,2796,1151,127277620,127272809,164343,66179,1351406144,1083011401,0.18,0.26,0.71,0.71,0,0,0.07,0.08
-46391,18,091,18091,7772,2048,68871697,68767219,9726,2762,104470801,104285271,111467,48448,1588334920,1549587772,79.91,74.15,65.92,65.94,6.97,4.23,4.34,4.44
-46391,18,127,18127,1954,714,35599104,35518052,9726,2762,104470801,104285271,164343,66179,1351406144,1083011401,20.09,25.85,34.08,34.06,1.19,1.08,2.63,3.28
-46392,18,073,18073,7957,3018,286461431,283550600,7957,3018,286461431,283550600,33478,13168,1453982070,1449421191,100,100,100,100,23.77,22.92,19.7,19.56
-46393,18,127,18127,399,168,3873710,3873710,399,168,3873710,3873710,164343,66179,1351406144,1083011401,100,100,100,100,0.24,0.25,0.29,0.36
-46394,18,089,18089,12258,5513,12701518,8440728,12258,5513,12701518,8440728,496005,208750,1622783979,1292303671,100,100,100,100,2.47,2.64,0.78,0.65
-46402,18,089,18089,6726,3676,9886215,9847717,6726,3676,9886215,9847717,496005,208750,1622783979,1292303671,100,100,100,100,1.36,1.76,0.61,0.76
-46403,18,089,18089,12601,6363,27064640,21456734,12601,6363,27064640,21456734,496005,208750,1622783979,1292303671,100,100,100,100,2.54,3.05,1.67,1.66
-46404,18,089,18089,17326,8112,14824646,14808335,17326,8112,14824646,14808335,496005,208750,1622783979,1292303671,100,100,100,100,3.49,3.89,0.91,1.15
-46405,18,089,18089,11746,4791,22832469,22493395,11746,4791,22832469,22493395,496005,208750,1622783979,1292303671,100,100,100,100,2.37,2.3,1.41,1.74
-46406,18,089,18089,9900,4523,33955174,33750622,9900,4523,33955174,33750622,496005,208750,1622783979,1292303671,100,100,100,100,2,2.17,2.09,2.61
-46407,18,089,18089,12656,6953,10964220,10964220,12656,6953,10964220,10964220,496005,208750,1622783979,1292303671,100,100,100,100,2.55,3.33,0.68,0.85
-46408,18,089,18089,17030,7570,25302503,25249654,17030,7570,25302503,25249654,496005,208750,1622783979,1292303671,100,100,100,100,3.43,3.63,1.56,1.95
-46409,18,089,18089,8932,4267,9241532,9241532,8932,4267,9241532,9241532,496005,208750,1622783979,1292303671,100,100,100,100,1.8,2.04,0.57,0.72
-46410,18,089,18089,38340,16559,76536741,76460736,38340,16559,76536741,76460736,496005,208750,1622783979,1292303671,100,100,100,100,7.73,7.93,4.72,5.92
-46501,18,099,18099,3856,1541,181754585,181329145,3856,1541,181754585,181329145,47051,19845,1164828875,1148992521,100,100,100,100,8.2,7.77,15.6,15.78
-46502,18,085,18085,115,47,145515,145515,115,47,145515,145515,77358,37038,1435871284,1376269814,100,100,100,100,0.15,0.13,0.01,0.01
-46504,18,085,18085,28,11,4637430,4629111,3413,1346,169898429,169749639,77358,37038,1435871284,1376269814,0.82,0.82,2.73,2.73,0.04,0.03,0.32,0.34
-46504,18,099,18099,3385,1335,165260999,165120528,3413,1346,169898429,169749639,47051,19845,1164828875,1148992521,99.18,99.18,97.27,97.27,7.19,6.73,14.19,14.37
-46506,18,099,18099,8894,3538,165609036,163710826,10070,4000,259769869,257838857,47051,19845,1164828875,1148992521,88.32,88.45,63.75,63.49,18.9,17.83,14.22,14.25
-46506,18,141,18141,1176,462,94160833,94128031,10070,4000,259769869,257838857,266931,114849,1194983082,1185826798,11.68,11.55,36.25,36.51,0.44,0.4,7.88,7.94
-46507,18,039,18039,9128,3653,106360013,103974111,9128,3653,106360013,103974111,197559,77767,1212037948,1199605640,100,100,100,100,4.62,4.7,8.78,8.67
-46508,18,085,18085,217,83,2419201,2418863,217,83,2419201,2418863,77358,37038,1435871284,1376269814,100,100,100,100,0.28,0.22,0.17,0.18
-46510,18,085,18085,3631,1775,177459065,173603483,3631,1775,177459065,173603483,77358,37038,1435871284,1376269814,100,100,100,100,4.69,4.79,12.36,12.61
-46511,18,049,18049,431,208,23431620,23189762,4435,2563,182141673,173174088,20836,9708,961572878,954121481,9.72,8.12,12.86,13.39,2.07,2.14,2.44,2.43
-46511,18,099,18099,3470,2124,121207680,112649763,4435,2563,182141673,173174088,47051,19845,1164828875,1148992521,78.24,82.87,66.55,65.05,7.37,10.7,10.41,9.8
-46511,18,131,18131,86,44,937893,916538,4435,2563,182141673,173174088,13402,6060,1125437524,1123145988,1.94,1.72,0.51,0.53,0.64,0.73,0.08,0.08
-46511,18,149,18149,448,187,36564480,36418025,4435,2563,182141673,173174088,23363,10962,808608838,800653661,10.1,7.3,20.07,21.03,1.92,1.71,4.52,4.55
-46514,18,039,18039,40263,17673,104070437,99732680,40263,17673,104070437,99732680,197559,77767,1212037948,1199605640,100,100,100,100,20.38,22.73,8.59,8.31
-46516,18,039,18039,33501,14209,48215979,45976445,33501,14209,48215979,45976445,197559,77767,1212037948,1199605640,100,100,100,100,16.96,18.27,3.98,3.83
-46517,18,039,18039,23764,9096,95324145,95307867,23764,9096,95324145,95307867,197559,77767,1212037948,1199605640,100,100,100,100,12.03,11.7,7.86,7.94
-46524,18,085,18085,2326,814,89630610,88280528,2326,814,89630610,88280528,77358,37038,1435871284,1376269814,100,100,100,100,3.01,2.2,6.24,6.41
-46526,18,039,18039,30671,11847,174987101,173696927,30671,11847,174987101,173696927,197559,77767,1212037948,1199605640,100,100,100,100,15.52,15.23,14.44,14.48
-46528,18,039,18039,26104,9002,184773733,183770598,26104,9002,184773733,183770598,197559,77767,1212037948,1199605640,100,100,100,100,13.21,11.58,15.24,15.32
-46530,18,039,18039,1846,694,7236652,7185834,30614,11158,64617332,64566514,197559,77767,1212037948,1199605640,6.03,6.22,11.2,11.13,0.93,0.89,0.6,0.6
-46530,18,141,18141,28768,10464,57380680,57380680,30614,11158,64617332,64566514,266931,114849,1194983082,1185826798,93.97,93.78,88.8,88.87,10.78,9.11,4.8,4.84
-46531,18,149,18149,1458,584,55504702,55478878,1458,584,55504702,55478878,23363,10962,808608838,800653661,100,100,100,100,6.24,5.33,6.86,6.93
-46532,18,091,18091,668,277,55793512,55680129,1905,798,137141286,136728548,111467,48448,1588334920,1549587772,35.07,34.71,40.68,40.72,0.6,0.57,3.51,3.59
-46532,18,149,18149,1237,521,81347774,81048419,1905,798,137141286,136728548,23363,10962,808608838,800653661,64.93,65.29,59.32,59.28,5.29,4.75,10.06,10.12
-46534,18,149,18149,11263,5460,321067627,315094501,11263,5460,321067627,315094501,23363,10962,808608838,800653661,100,100,100,100,48.21,49.81,39.71,39.35
-46536,18,099,18099,322,113,6013055,6010791,3445,1484,75723738,75182888,47051,19845,1164828875,1148992521,9.35,7.61,7.94,7.99,0.68,0.57,0.52,0.52
-46536,18,141,18141,3123,1371,69710683,69172097,3445,1484,75723738,75182888,266931,114849,1194983082,1185826798,90.65,92.39,92.06,92.01,1.17,1.19,5.83,5.83
-46537,18,099,18099,433,193,1276163,1276163,433,193,1276163,1276163,47051,19845,1164828875,1148992521,100,100,100,100,0.92,0.97,0.11,0.11
-46538,18,085,18085,3867,2806,86047289,79640042,3867,2806,86047289,79640042,77358,37038,1435871284,1376269814,100,100,100,100,5,7.58,5.99,5.79
-46539,18,049,18049,44,15,4136549,4102622,2298,956,83928531,82753812,20836,9708,961572878,954121481,1.91,1.57,4.93,4.96,0.21,0.15,0.43,0.43
-46539,18,085,18085,2207,923,76068749,74928831,2298,956,83928531,82753812,77358,37038,1435871284,1376269814,96.04,96.55,90.64,90.54,2.85,2.49,5.3,5.44
-46539,18,099,18099,47,18,3723233,3722359,2298,956,83928531,82753812,47051,19845,1164828875,1148992521,2.05,1.88,4.44,4.5,0.1,0.09,0.32,0.32
-46540,18,039,18039,10820,3694,135179820,134466664,11702,3972,159637825,158283302,197559,77767,1212037948,1199605640,92.46,93,84.68,84.95,5.48,4.75,11.15,11.21
-46540,18,087,18087,882,278,24458005,23816638,11702,3972,159637825,158283302,37128,14094,1001555185,983222388,7.54,7,15.32,15.05,2.38,1.97,2.44,2.42
-46542,18,039,18039,198,81,5131272,5131272,4198,1630,135478024,133994226,197559,77767,1212037948,1199605640,4.72,4.97,3.79,3.83,0.1,0.1,0.42,0.43
-46542,18,085,18085,4000,1549,130346752,128862954,4198,1630,135478024,133994226,77358,37038,1435871284,1376269814,95.28,95.03,96.21,96.17,5.17,4.18,9.08,9.36
-46543,18,039,18039,2494,807,52575043,52575043,3654,1064,78147753,78147753,197559,77767,1212037948,1199605640,68.25,75.85,67.28,67.28,1.26,1.04,4.34,4.38
-46543,18,087,18087,1160,257,25572710,25572710,3654,1064,78147753,78147753,37128,14094,1001555185,983222388,31.75,24.15,32.72,32.72,3.12,1.82,2.55,2.6
-46544,18,141,18141,30759,14052,104575764,103716187,30759,14052,104575764,103716187,266931,114849,1194983082,1185826798,100,100,100,100,11.52,12.24,8.75,8.75
-46545,18,141,18141,25082,12655,46879545,46081765,25082,12655,46879545,46081765,266931,114849,1194983082,1185826798,100,100,100,100,9.4,11.02,3.92,3.89
-46550,18,039,18039,9203,3566,102436534,102436183,12311,4520,193520962,193378868,197559,77767,1212037948,1199605640,74.75,78.89,52.93,52.97,4.66,4.59,8.45,8.54
-46550,18,085,18085,2494,803,70517711,70385708,12311,4520,193520962,193378868,77358,37038,1435871284,1376269814,20.26,17.77,36.44,36.4,3.22,2.17,4.91,5.11
-46550,18,099,18099,470,116,11466476,11456736,12311,4520,193520962,193378868,47051,19845,1164828875,1148992521,3.82,2.57,5.93,5.92,1,0.58,0.98,1
-46550,18,141,18141,144,35,9100241,9100241,12311,4520,193520962,193378868,266931,114849,1194983082,1185826798,1.17,0.77,4.7,4.71,0.05,0.03,0.76,0.77
-46552,18,091,18091,2271,1095,38846515,36226857,6834,2961,164613429,161736767,111467,48448,1588334920,1549587772,33.23,36.98,23.6,22.4,2.04,2.26,2.45,2.34
-46552,18,141,18141,4563,1866,125766914,125509910,6834,2961,164613429,161736767,266931,114849,1194983082,1185826798,66.77,63.02,76.4,77.6,1.71,1.62,10.52,10.58
-46553,18,039,18039,3428,1224,81218866,81218866,3428,1224,81218866,81218866,197559,77767,1212037948,1199605640,100,100,100,100,1.74,1.57,6.7,6.77
-46554,18,091,18091,39,18,9317274,9317274,4942,2005,184313712,182635607,111467,48448,1588334920,1549587772,0.79,0.9,5.06,5.1,0.03,0.04,0.59,0.6
-46554,18,141,18141,4903,1987,174996438,173318333,4942,2005,184313712,182635607,266931,114849,1194983082,1185826798,99.21,99.1,94.94,94.9,1.84,1.73,14.64,14.62
-46555,18,085,18085,2835,1959,28565100,23992884,2835,1959,28565100,23992884,77358,37038,1435871284,1376269814,100,100,100,100,3.66,5.29,1.99,1.74
-46556,18,141,18141,7314,380,5542615,5217201,7314,380,5542615,5217201,266931,114849,1194983082,1185826798,100,100,100,100,2.74,0.33,0.46,0.44
-46561,18,039,18039,1710,624,4567701,4370842,13343,4915,38654104,37562042,197559,77767,1212037948,1199605640,12.82,12.7,11.82,11.64,0.87,0.8,0.38,0.36
-46561,18,141,18141,11633,4291,34086403,33191200,13343,4915,38654104,37562042,266931,114849,1194983082,1185826798,87.18,87.3,88.18,88.36,4.36,3.74,2.85,2.8
-46562,18,085,18085,4397,2083,135219692,131625882,4788,2242,160867387,157118893,77358,37038,1435871284,1376269814,91.83,92.91,84.06,83.77,5.68,5.62,9.42,9.56
-46562,18,113,18113,119,56,6019771,5870188,4788,2242,160867387,157118893,47536,20109,1081146112,1064077860,2.49,2.5,3.74,3.74,0.25,0.28,0.56,0.55
-46562,18,183,18183,272,103,19627924,19622823,4788,2242,160867387,157118893,33292,14281,875194321,869120901,5.68,4.59,12.2,12.49,0.82,0.72,2.24,2.26
-46563,18,099,18099,23540,9761,396125200,391705306,23599,9787,398711815,394291921,47051,19845,1164828875,1148992521,99.75,99.73,99.35,99.34,50.03,49.19,34.01,34.09
-46563,18,149,18149,59,26,2586615,2586615,23599,9787,398711815,394291921,23363,10962,808608838,800653661,0.25,0.27,0.65,0.66,0.25,0.24,0.32,0.32
-46565,18,087,18087,7950,2416,167041153,165052646,7950,2416,167041153,165052646,37128,14094,1001555185,983222388,100,100,100,100,21.41,17.14,16.68,16.79
-46567,18,039,18039,1206,399,52893668,52893668,9405,6004,163374864,143972659,197559,77767,1212037948,1199605640,12.82,6.65,32.38,36.74,0.61,0.51,4.36,4.41
-46567,18,085,18085,8199,5605,110481196,91078991,9405,6004,163374864,143972659,77358,37038,1435871284,1376269814,87.18,93.35,67.62,63.26,10.6,15.13,7.69,6.62
-46570,18,049,18049,77,39,1555255,1555255,1060,446,53001472,52934576,20836,9708,961572878,954121481,7.26,8.74,2.93,2.94,0.37,0.4,0.16,0.16
-46570,18,099,18099,983,407,51446217,51379321,1060,446,53001472,52934576,47051,19845,1164828875,1148992521,92.74,91.26,97.07,97.06,2.09,2.05,4.42,4.47
-46571,18,087,18087,5413,1531,107499110,107283002,5532,1565,111916788,111700680,37128,14094,1001555185,983222388,97.85,97.83,96.05,96.05,14.58,10.86,10.73,10.91
-46571,18,113,18113,119,34,4417678,4417678,5532,1565,111916788,111700680,47536,20109,1081146112,1064077860,2.15,2.17,3.95,3.95,0.25,0.17,0.41,0.42
-46573,18,039,18039,3063,1155,45484614,45286270,3565,1346,88661420,88463076,197559,77767,1212037948,1199605640,85.92,85.81,51.3,51.19,1.55,1.49,3.75,3.78
-46573,18,141,18141,502,191,43176806,43176806,3565,1346,88661420,88463076,266931,114849,1194983082,1185826798,14.08,14.19,48.7,48.81,0.19,0.17,3.61,3.64
-46574,18,091,18091,1423,834,82064904,80883845,8339,3958,246528151,243764123,111467,48448,1588334920,1549587772,17.06,21.07,33.29,33.18,1.28,1.72,5.17,5.22
-46574,18,099,18099,1651,699,60946231,60631583,8339,3958,246528151,243764123,47051,19845,1164828875,1148992521,19.8,17.66,24.72,24.87,3.51,3.52,5.23,5.28
-46574,18,141,18141,3342,1295,73505939,73369762,8339,3958,246528151,243764123,266931,114849,1194983082,1185826798,40.08,32.72,29.82,30.1,1.25,1.13,6.15,6.19
-46574,18,149,18149,1923,1130,30011077,28878933,8339,3958,246528151,243764123,23363,10962,808608838,800653661,23.06,28.55,12.17,11.85,8.23,10.31,3.71,3.61
-46580,18,085,18085,21338,8987,197082418,188892308,21338,8987,197082418,188892308,77358,37038,1435871284,1376269814,100,100,100,100,27.58,24.26,13.73,13.72
-46582,18,085,18085,12378,5802,153310075,146971529,12378,5802,153310075,146971529,77358,37038,1435871284,1376269814,100,100,100,100,16,15.66,10.68,10.68
-46590,18,085,18085,4908,1788,7671945,7338764,4908,1788,7671945,7338764,77358,37038,1435871284,1376269814,100,100,100,100,6.34,4.83,0.53,0.53
-46595,18,141,18141,163,65,590819,590819,163,65,590819,590819,266931,114849,1194983082,1185826798,100,100,100,100,0.06,0.06,0.05,0.05
-46601,18,141,18141,6090,2837,5770567,5608122,6090,2837,5770567,5608122,266931,114849,1194983082,1185826798,100,100,100,100,2.28,2.47,0.48,0.47
-46613,18,141,18141,10893,4809,7464668,7395724,10893,4809,7464668,7395724,266931,114849,1194983082,1185826798,100,100,100,100,4.08,4.19,0.62,0.62
-46614,18,141,18141,29573,13581,137176112,137034281,29573,13581,137176112,137034281,266931,114849,1194983082,1185826798,100,100,100,100,11.08,11.83,11.48,11.56
-46615,18,141,18141,14609,6954,8620548,8458861,14609,6954,8620548,8458861,266931,114849,1194983082,1185826798,100,100,100,100,5.47,6.05,0.72,0.71
-46616,18,141,18141,5667,2832,4100610,3807562,5667,2832,4100610,3807562,266931,114849,1194983082,1185826798,100,100,100,100,2.12,2.47,0.34,0.32
-46617,18,141,18141,9601,4456,6916520,6743178,9601,4456,6916520,6743178,266931,114849,1194983082,1185826798,100,100,100,100,3.6,3.88,0.58,0.57
-46619,18,141,18141,21408,8352,59688316,59064441,21408,8352,59688316,59064441,266931,114849,1194983082,1185826798,100,100,100,100,8.02,7.27,4.99,4.98
-46628,18,141,18141,25650,11695,92399664,90669987,25650,11695,92399664,90669987,266931,114849,1194983082,1185826798,100,100,100,100,9.61,10.18,7.73,7.65
-46635,18,141,18141,6654,2923,8126450,8107978,6654,2923,8126450,8107978,266931,114849,1194983082,1185826798,100,100,100,100,2.49,2.55,0.68,0.68
-46637,18,141,18141,15314,7296,25245947,24983632,15314,7296,25245947,24983632,266931,114849,1194983082,1185826798,100,100,100,100,5.74,6.35,2.11,2.11
-46701,18,113,18113,7979,3420,254418875,249773145,7979,3420,254418875,249773145,47536,20109,1081146112,1064077860,100,100,100,100,16.79,17.01,23.53,23.47
-46702,18,069,18069,2138,928,99617348,97326584,2304,990,120188011,117778449,37124,15805,1004196100,991061319,92.8,93.74,82.88,82.64,5.76,5.87,9.92,9.82
-46702,18,169,18169,166,62,20570663,20451865,2304,990,120188011,117778449,32888,14171,1090322240,1068200229,7.2,6.26,17.12,17.36,0.5,0.44,1.89,1.91
-46703,18,151,18151,18029,9508,317812522,303810279,18029,9508,317812522,303810279,34185,19377,835183128,800149001,100,100,100,100,52.74,49.07,38.05,37.97
-46704,18,003,18003,60,37,52409,52409,60,37,52409,52409,355329,152184,1709448761,1702419942,100,100,100,100,0.02,0.02,0,0
-46705,18,033,18033,991,460,35370719,35260125,1583,698,51790042,51513049,42223,17558,942368234,939710824,62.6,65.9,68.3,68.45,2.35,2.62,3.75,3.75
-46705,18,151,18151,592,238,16419323,16252924,1583,698,51790042,51513049,34185,19377,835183128,800149001,37.4,34.1,31.7,31.55,1.73,1.23,1.97,2.03
-46706,18,003,18003,306,104,6857611,6857611,18630,7899,224154820,223460837,355329,152184,1709448761,1702419942,1.64,1.32,3.06,3.07,0.09,0.07,0.4,0.4
-46706,18,033,18033,18324,7795,217297209,216603226,18630,7899,224154820,223460837,42223,17558,942368234,939710824,98.36,98.68,96.94,96.93,43.4,44.4,23.06,23.05
-46710,18,033,18033,198,81,14730631,14593695,4679,1873,113741179,113495276,42223,17558,942368234,939710824,4.23,4.32,12.95,12.86,0.47,0.46,1.56,1.55
-46710,18,113,18113,4481,1792,99010548,98901581,4679,1873,113741179,113495276,47536,20109,1081146112,1064077860,95.77,95.68,87.05,87.14,9.43,8.91,9.16,9.29
-46711,18,001,18001,7698,2741,155069214,154677759,7698,2741,155069214,154677759,34387,13014,880509591,878079128,100,100,100,100,22.39,21.06,17.61,17.62
-46714,18,001,18001,418,120,25745245,25610339,14645,6386,336023943,333681438,34387,13014,880509591,878079128,2.85,1.88,7.66,7.68,1.22,0.92,2.92,2.92
-46714,18,179,18179,14227,6266,310278698,308071099,14645,6386,336023943,333681438,27636,11659,958937637,953341217,97.15,98.12,92.34,92.32,51.48,53.74,32.36,32.31
-46721,18,033,18033,5058,2024,208254262,208220129,5058,2024,208254262,208220129,42223,17558,942368234,939710824,100,100,100,100,11.98,11.53,22.1,22.16
-46723,18,003,18003,1724,679,56429520,56290636,7692,3115,162897514,161668335,355329,152184,1709448761,1702419942,22.41,21.8,34.64,34.82,0.49,0.45,3.3,3.31
-46723,18,113,18113,1280,460,43614788,43483881,7692,3115,162897514,161668335,47536,20109,1081146112,1064077860,16.64,14.77,26.77,26.9,2.69,2.29,4.03,4.09
-46723,18,183,18183,4688,1976,62853206,61893818,7692,3115,162897514,161668335,33292,14281,875194321,869120901,60.95,63.43,38.58,38.28,14.08,13.84,7.18,7.12
-46725,18,113,18113,749,463,11394993,10142537,23080,10162,537433606,531543784,47536,20109,1081146112,1064077860,3.25,4.56,2.12,1.91,1.58,2.3,1.05,0.95
-46725,18,183,18183,22331,9699,526038613,521401247,23080,10162,537433606,531543784,33292,14281,875194321,869120901,96.75,95.44,97.88,98.09,67.08,67.92,60.11,59.99
-46730,18,033,18033,1381,543,73057566,72607230,1381,543,73057566,72607230,42223,17558,942368234,939710824,100,100,100,100,3.27,3.09,7.75,7.73
-46731,18,179,18179,559,226,41277645,41203288,559,226,41277645,41203288,27636,11659,958937637,953341217,100,100,100,100,2.02,1.94,4.3,4.32
-46732,18,085,18085,1250,551,5156027,5036587,3169,1331,59408256,58774778,77358,37038,1435871284,1376269814,39.44,41.4,8.68,8.57,1.62,1.49,0.36,0.37
-46732,18,113,18113,1919,780,54252229,53738191,3169,1331,59408256,58774778,47536,20109,1081146112,1064077860,60.56,58.6,91.32,91.43,4.04,3.88,5.02,5.05
-46733,18,001,18001,18636,7879,435959119,435285836,18777,7937,447667632,446768589,34387,13014,880509591,878079128,99.25,99.27,97.38,97.43,54.19,60.54,49.51,49.57
-46733,18,003,18003,141,58,11708513,11482753,18777,7937,447667632,446768589,355329,152184,1709448761,1702419942,0.75,0.73,2.62,2.57,0.04,0.04,0.68,0.67
-46737,18,151,18151,7068,4757,179526085,168604819,7068,4757,179526085,168604819,34185,19377,835183128,800149001,100,100,100,100,20.68,24.55,21.5,21.07
-46738,18,033,18033,7918,3225,67862206,67637601,7918,3225,67862206,67637601,42223,17558,942368234,939710824,100,100,100,100,18.75,18.37,7.2,7.2
-46740,18,001,18001,3940,1289,146188344,144974214,4060,1327,160746444,159519655,34387,13014,880509591,878079128,97.04,97.14,90.94,90.88,11.46,9.9,16.6,16.51
-46740,18,179,18179,120,38,14558100,14545441,4060,1327,160746444,159519655,27636,11659,958937637,953341217,2.96,2.86,9.06,9.12,0.43,0.33,1.52,1.53
-46741,18,003,18003,4647,1428,69313751,67319841,4647,1428,69313751,67319841,355329,152184,1709448761,1702419942,100,100,100,100,1.31,0.94,4.05,3.95
-46742,18,033,18033,726,312,40000506,39870742,3488,2189,135478719,132244423,42223,17558,942368234,939710824,20.81,14.25,29.53,30.15,1.72,1.78,4.24,4.24
-46742,18,151,18151,2762,1877,95478213,92373681,3488,2189,135478719,132244423,34185,19377,835183128,800149001,79.19,85.75,70.47,69.85,8.08,9.69,11.43,11.54
-46743,18,003,18003,1971,710,58032167,58032167,1971,710,58032167,58032167,355329,152184,1709448761,1702419942,100,100,100,100,0.55,0.47,3.39,3.41
-46745,18,003,18003,1841,709,50924310,50924310,1841,709,50924310,50924310,355329,152184,1709448761,1702419942,100,100,100,100,0.52,0.47,2.98,2.99
-46746,18,087,18087,4036,1607,192876449,190500993,4036,1607,192876449,190500993,37128,14094,1001555185,983222388,100,100,100,100,10.87,11.4,19.26,19.38
-46747,18,033,18033,195,237,13273496,13019859,2693,1547,96521140,94930599,42223,17558,942368234,939710824,7.24,15.32,13.75,13.72,0.46,1.35,1.41,1.39
-46747,18,087,18087,462,293,12145764,11584654,2693,1547,96521140,94930599,37128,14094,1001555185,983222388,17.16,18.94,12.58,12.2,1.24,2.08,1.21,1.18
-46747,18,151,18151,2036,1017,71101880,70326086,2693,1547,96521140,94930599,34185,19377,835183128,800149001,75.6,65.74,73.66,74.08,5.96,5.25,8.51,8.79
-46748,18,003,18003,5021,1865,44712320,44498634,5134,1906,47751626,47537940,355329,152184,1709448761,1702419942,97.8,97.85,93.64,93.61,1.41,1.23,2.62,2.61
-46748,18,033,18033,76,25,1410487,1410487,5134,1906,47751626,47537940,42223,17558,942368234,939710824,1.48,1.31,2.95,2.97,0.18,0.14,0.15,0.15
-46748,18,113,18113,37,16,1628819,1628819,5134,1906,47751626,47537940,47536,20109,1081146112,1064077860,0.72,0.84,3.41,3.43,0.08,0.08,0.15,0.15
-46750,18,069,18069,27188,11471,522523474,514942564,27221,11482,523479946,515899036,37124,15805,1004196100,991061319,99.88,99.9,99.82,99.81,73.24,72.58,52.03,51.96
-46750,18,183,18183,33,11,956472,956472,27221,11482,523479946,515899036,33292,14281,875194321,869120901,0.12,0.1,0.18,0.19,0.1,0.08,0.11,0.11
-46755,18,033,18033,56,24,3160282,3160282,15062,6537,198126092,195372788,42223,17558,942368234,939710824,0.37,0.37,1.6,1.62,0.13,0.14,0.34,0.34
-46755,18,113,18113,15006,6513,194965810,192212506,15062,6537,198126092,195372788,47536,20109,1081146112,1064077860,99.63,99.63,98.4,98.38,31.57,32.39,18.03,18.06
-46759,18,179,18179,652,254,76734863,76677338,652,254,76734863,76677338,27636,11659,958937637,953341217,100,100,100,100,2.36,2.18,8,8.04
-46760,18,113,18113,1382,620,66414947,65103868,1382,620,66414947,65103868,47536,20109,1081146112,1064077860,100,100,100,100,2.91,3.08,6.14,6.12
-46761,18,087,18087,11774,4296,319080999,316500543,12039,4512,323364805,319676738,37128,14094,1001555185,983222388,97.8,95.21,98.68,99.01,31.71,30.48,31.86,32.19
-46761,18,151,18151,265,216,4283806,3176195,12039,4512,323364805,319676738,34185,19377,835183128,800149001,2.2,4.79,1.32,0.99,0.78,1.11,0.51,0.4
-46763,18,033,18033,170,67,11978303,11978303,1631,673,58137136,58095936,42223,17558,942368234,939710824,10.42,9.96,20.6,20.62,0.4,0.38,1.27,1.27
-46763,18,113,18113,1461,606,46158833,46117633,1631,673,58137136,58095936,47536,20109,1081146112,1064077860,89.58,90.04,79.4,79.38,3.07,3.01,4.27,4.33
-46764,18,113,18113,169,86,10778693,10689349,1497,610,88917111,88496842,47536,20109,1081146112,1064077860,11.29,14.1,12.12,12.08,0.36,0.43,1,1
-46764,18,183,18183,1328,524,78138418,77807493,1497,610,88917111,88496842,33292,14281,875194321,869120901,88.71,85.9,87.88,87.92,3.99,3.67,8.93,8.95
-46765,18,003,18003,5341,1864,34177264,33628520,5341,1864,34177264,33628520,355329,152184,1709448761,1702419942,100,100,100,100,1.5,1.22,2,1.98
-46766,18,179,18179,685,276,52639461,52477713,685,276,52639461,52477713,27636,11659,958937637,953341217,100,100,100,100,2.48,2.37,5.49,5.5
-46767,18,039,18039,160,43,11582370,11582370,8564,2836,181582692,180688788,197559,77767,1212037948,1199605640,1.87,1.52,6.38,6.41,0.08,0.06,0.96,0.97
-46767,18,087,18087,183,42,8255180,8255180,8564,2836,181582692,180688788,37128,14094,1001555185,983222388,2.14,1.48,4.55,4.57,0.49,0.3,0.82,0.84
-46767,18,113,18113,8221,2751,161745142,160851238,8564,2836,181582692,180688788,47536,20109,1081146112,1064077860,95.99,97,89.08,89.02,17.29,13.68,14.96,15.12
-46770,18,069,18069,944,404,54996137,54473916,2716,1089,138376685,136780381,37124,15805,1004196100,991061319,34.76,37.1,39.74,39.83,2.54,2.56,5.48,5.5
-46770,18,179,18179,1772,685,83380548,82306465,2716,1089,138376685,136780381,27636,11659,958937637,953341217,65.24,62.9,60.26,60.17,6.41,5.88,8.7,8.63
-46771,18,087,18087,105,48,3088581,3057297,105,48,3088581,3057297,37128,14094,1001555185,983222388,100,100,100,100,0.28,0.34,0.31,0.31
-46772,18,001,18001,3411,885,91818292,91818292,3411,885,91818292,91818292,34387,13014,880509591,878079128,100,100,100,100,9.92,6.8,10.43,10.46
-46773,18,001,18001,159,62,15031969,15031969,3662,1474,204015657,204015657,34387,13014,880509591,878079128,4.34,4.21,7.37,7.37,0.46,0.48,1.71,1.71
-46773,18,003,18003,3503,1412,188983688,188983688,3662,1474,204015657,204015657,355329,152184,1709448761,1702419942,95.66,95.79,92.63,92.63,0.99,0.93,11.06,11.1
-46774,18,003,18003,16008,6455,133009308,132268742,16008,6455,133009308,132268742,355329,152184,1709448761,1702419942,100,100,100,100,4.51,4.24,7.78,7.77
-46776,18,087,18087,244,202,8412515,7864360,1484,843,64375782,60563717,37128,14094,1001555185,983222388,16.44,23.96,13.07,12.99,0.66,1.43,0.84,0.8
-46776,18,151,18151,1240,641,55963267,52699357,1484,843,64375782,60563717,34185,19377,835183128,800149001,83.56,76.04,86.93,87.01,3.63,3.31,6.7,6.59
-46777,18,001,18001,63,19,4056603,4056603,6259,2548,143976750,143340970,34387,13014,880509591,878079128,1.01,0.75,2.82,2.83,0.18,0.15,0.46,0.46
-46777,18,003,18003,41,15,2269204,2183933,6259,2548,143976750,143340970,355329,152184,1709448761,1702419942,0.66,0.59,1.58,1.52,0.01,0.01,0.13,0.13
-46777,18,179,18179,6155,2514,137650943,137100434,6259,2548,143976750,143340970,27636,11659,958937637,953341217,98.34,98.67,95.61,95.65,22.27,21.56,14.35,14.38
-46779,18,151,18151,2166,1114,93405937,91713565,2166,1114,93405937,91713565,34185,19377,835183128,800149001,100,100,100,100,6.34,5.75,11.18,11.46
-46781,18,179,18179,793,344,66492903,66375762,793,344,66492903,66375762,27636,11659,958937637,953341217,100,100,100,100,2.87,2.95,6.93,6.96
-46783,18,003,18003,2285,824,53214339,53053831,6396,2550,157188027,155943407,355329,152184,1709448761,1702419942,35.73,32.31,33.85,34.02,0.64,0.54,3.11,3.12
-46783,18,069,18069,3495,1462,71773460,70710219,6396,2550,157188027,155943407,37124,15805,1004196100,991061319,54.64,57.33,45.66,45.34,9.41,9.25,7.15,7.13
-46783,18,179,18179,87,30,2944967,2934617,6396,2550,157188027,155943407,27636,11659,958937637,953341217,1.36,1.18,1.87,1.88,0.31,0.26,0.31,0.31
-46783,18,183,18183,529,234,29255261,29244740,6396,2550,157188027,155943407,33292,14281,875194321,869120901,8.27,9.18,18.61,18.75,1.59,1.64,3.34,3.36
-46784,18,113,18113,2236,1385,39046766,34481309,2236,1385,39046766,34481309,47536,20109,1081146112,1064077860,100,100,100,100,4.7,6.89,3.61,3.24
-46785,18,033,18033,1542,559,63268047,63165765,1542,559,63268047,63165765,42223,17558,942368234,939710824,100,100,100,100,3.65,3.18,6.71,6.72
-46786,18,087,18087,102,47,93873,93873,102,47,93873,93873,37128,14094,1001555185,983222388,100,100,100,100,0.27,0.33,0.01,0.01
-46787,18,085,18085,167,61,14784632,14626052,3893,1632,166798175,166509476,77358,37038,1435871284,1376269814,4.29,3.74,8.86,8.78,0.22,0.16,1.03,1.06
-46787,18,183,18183,3726,1571,152013543,151883424,3893,1632,166798175,166509476,33292,14281,875194321,869120901,95.71,96.26,91.14,91.22,11.19,11,17.37,17.48
-46788,18,003,18003,1937,631,43550273,42841906,3260,1102,92854508,91988088,355329,152184,1709448761,1702419942,59.42,57.26,46.9,46.57,0.55,0.41,2.55,2.52
-46788,18,033,18033,1323,471,49304235,49146182,3260,1102,92854508,91988088,42223,17558,942368234,939710824,40.58,42.74,53.1,53.43,3.13,2.68,5.23,5.23
-46791,18,179,18179,918,360,39509475,39376422,918,360,39509475,39376422,27636,11659,958937637,953341217,100,100,100,100,3.32,3.09,4.12,4.13
-46792,18,069,18069,2922,1346,202622480,201055283,3499,1575,263122832,260774130,37124,15805,1004196100,991061319,83.51,85.46,77.01,77.1,7.87,8.52,20.18,20.29
-46792,18,179,18179,577,229,60500352,59718847,3499,1575,263122832,260774130,27636,11659,958937637,953341217,16.49,14.54,22.99,22.9,2.09,1.96,6.31,6.26
-46793,18,033,18033,4265,1735,143400285,143037198,4292,1744,144592380,144229293,42223,17558,942368234,939710824,99.37,99.48,99.18,99.17,10.1,9.88,15.22,15.22
-46793,18,151,18151,27,9,1192095,1192095,4292,1744,144592380,144229293,34185,19377,835183128,800149001,0.63,0.52,0.82,0.83,0.08,0.05,0.14,0.15
-46794,18,113,18113,1587,808,67208765,66644809,1587,808,67208765,66644809,47536,20109,1081146112,1064077860,100,100,100,100,3.34,4.02,6.22,6.26
-46795,18,087,18087,4817,3077,133030846,123640492,5608,3396,153100301,143661620,37128,14094,1001555185,983222388,85.9,90.61,86.89,86.06,12.97,21.83,13.28,12.58
-46795,18,113,18113,791,319,20069455,20021128,5608,3396,153100301,143661620,47536,20109,1081146112,1064077860,14.1,9.39,13.11,13.94,1.66,1.59,1.86,1.88
-46797,18,003,18003,3957,1498,134340161,133402537,3957,1498,134340161,133402537,355329,152184,1709448761,1702419942,100,100,100,100,1.11,0.98,7.86,7.84
-46798,18,003,18003,1484,668,52914285,52914285,1661,731,53366889,53365348,355329,152184,1709448761,1702419942,89.34,91.38,99.15,99.15,0.42,0.44,3.1,3.11
-46798,18,179,18179,177,63,452604,451063,1661,731,53366889,53365348,27636,11659,958937637,953341217,10.66,8.62,0.85,0.85,0.64,0.54,0.05,0.05
-46799,18,179,18179,212,92,659395,641181,212,92,659395,641181,27636,11659,958937637,953341217,100,100,100,100,0.77,0.79,0.07,0.07
-46802,18,003,18003,11086,5472,10979620,10968507,11086,5472,10979620,10968507,355329,152184,1709448761,1702419942,100,100,100,100,3.12,3.6,0.64,0.64
-46803,18,003,18003,9758,4443,17126424,17099676,9758,4443,17126424,17099676,355329,152184,1709448761,1702419942,100,100,100,100,2.75,2.92,1,1
-46804,18,003,18003,27245,12242,50176197,50159719,27245,12242,50176197,50159719,355329,152184,1709448761,1702419942,100,100,100,100,7.67,8.04,2.94,2.95
-46805,18,003,18003,21306,10114,16716740,16696709,21306,10114,16716740,16696709,355329,152184,1709448761,1702419942,100,100,100,100,6,6.65,0.98,0.98
-46806,18,003,18003,23560,10374,23805793,23805793,23560,10374,23805793,23805793,355329,152184,1709448761,1702419942,100,100,100,100,6.63,6.82,1.39,1.4
-46807,18,003,18003,16072,7132,8309404,8309404,16072,7132,8309404,8309404,355329,152184,1709448761,1702419942,100,100,100,100,4.52,4.69,0.49,0.49
-46808,18,003,18003,19309,9150,27929036,27739804,19309,9150,27929036,27739804,355329,152184,1709448761,1702419942,100,100,100,100,5.43,6.01,1.63,1.63
-46809,18,003,18003,8947,4341,59021610,59006418,8947,4341,59021610,59006418,355329,152184,1709448761,1702419942,100,100,100,100,2.52,2.85,3.45,3.47
-46814,18,003,18003,12281,4364,44160098,44109339,12281,4364,44160098,44109339,355329,152184,1709448761,1702419942,100,100,100,100,3.46,2.87,2.58,2.59
-46815,18,003,18003,26522,11138,27052551,27001921,26522,11138,27052551,27001921,355329,152184,1709448761,1702419942,100,100,100,100,7.46,7.32,1.58,1.59
-46816,18,003,18003,18116,7879,94875909,94616918,18116,7879,94875909,94616918,355329,152184,1709448761,1702419942,100,100,100,100,5.1,5.18,5.55,5.56
-46818,18,003,18003,18443,7346,168682318,168384491,18790,7492,171538323,171240496,355329,152184,1709448761,1702419942,98.15,98.05,98.34,98.33,5.19,4.83,9.87,9.89
-46818,18,183,18183,347,146,2856005,2856005,18790,7492,171538323,171240496,33292,14281,875194321,869120901,1.85,1.95,1.66,1.67,1.04,1.02,0.33,0.33
-46819,18,003,18003,8765,4020,66537405,66338159,8765,4020,66537405,66338159,355329,152184,1709448761,1702419942,100,100,100,100,2.47,2.64,3.89,3.9
-46825,18,003,18003,27931,12626,39784099,39724134,27931,12626,39784099,39724134,355329,152184,1709448761,1702419942,100,100,100,100,7.86,8.3,2.33,2.33
-46835,18,003,18003,33604,14791,54852622,54846141,33604,14791,54852622,54846141,355329,152184,1709448761,1702419942,100,100,100,100,9.46,9.72,3.21,3.22
-46845,18,003,18003,22117,7795,58949812,58877006,22117,7795,58949812,58877006,355329,152184,1709448761,1702419942,100,100,100,100,6.22,5.12,3.45,3.46
-46901,18,067,18067,36043,17056,305713239,304222859,37633,17720,360617876,359127496,82752,38679,761253035,759012945,95.77,96.25,84.77,84.71,43.56,44.1,40.16,40.08
-46901,18,103,18103,1590,664,54904637,54904637,37633,17720,360617876,359127496,36903,15479,977431388,968246709,4.23,3.75,15.23,15.29,4.31,4.29,5.62,5.67
-46902,18,067,18067,35612,17061,138296973,138123375,35697,17092,138408825,138235227,82752,38679,761253035,759012945,99.76,99.82,99.92,99.92,43.03,44.11,18.17,18.2
-46902,18,159,18159,85,31,111852,111852,35697,17092,138408825,138235227,15936,6998,674865793,674797764,0.24,0.18,0.08,0.08,0.53,0.44,0.02,0.02
-46910,18,049,18049,2763,1112,106702485,105996007,3360,1369,161678096,160352095,20836,9708,961572878,954121481,82.23,81.23,66,66.1,13.26,11.45,11.1,11.11
-46910,18,085,18085,477,221,39430714,39033686,3360,1369,161678096,160352095,77358,37038,1435871284,1376269814,14.2,16.14,24.39,24.34,0.62,0.6,2.75,2.84
-46910,18,103,18103,120,36,15544897,15322402,3360,1369,161678096,160352095,36903,15479,977431388,968246709,3.57,2.63,9.61,9.56,0.33,0.23,1.59,1.58
-46911,18,103,18103,1306,548,80017500,79836318,1439,603,104910374,102730905,36903,15479,977431388,968246709,90.76,90.88,76.27,77.71,3.54,3.54,8.19,8.25
-46911,18,169,18169,133,55,24892874,22894587,1439,603,104910374,102730905,32888,14171,1090322240,1068200229,9.24,9.12,23.73,22.29,0.4,0.39,2.28,2.14
-46913,18,015,18015,1329,521,85212900,85212900,1329,521,85212900,85212900,20155,9472,971293833,964055949,100,100,100,100,6.59,5.5,8.77,8.84
-46914,18,103,18103,4908,834,74816036,74581393,4908,834,74816036,74581393,36903,15479,977431388,968246709,100,100,100,100,13.3,5.39,7.65,7.7
-46915,18,015,18015,679,321,6150668,6150668,679,321,6150668,6150668,20155,9472,971293833,964055949,100,100,100,100,3.37,3.39,0.63,0.64
-46917,18,015,18015,1853,805,139527209,139479803,1853,805,139527209,139479803,20155,9472,971293833,964055949,100,100,100,100,9.19,8.5,14.37,14.47
-46919,18,053,18053,912,411,54266913,54266913,2390,1033,109412279,109225015,70061,30443,1074580449,1072446955,38.16,39.79,49.6,49.68,1.3,1.35,5.05,5.06
-46919,18,067,18067,112,47,15544959,15538063,2390,1033,109412279,109225015,82752,38679,761253035,759012945,4.69,4.55,14.21,14.23,0.14,0.12,2.04,2.05
-46919,18,103,18103,1344,565,38570433,38497235,2390,1033,109412279,109225015,36903,15479,977431388,968246709,56.23,54.7,35.25,35.25,3.64,3.65,3.95,3.98
-46919,18,169,18169,22,10,1029974,922804,2390,1033,109412279,109225015,32888,14171,1090322240,1068200229,0.92,0.97,0.94,0.84,0.07,0.07,0.09,0.09
-46920,18,015,18015,1045,417,81516365,81516365,1045,417,81516365,81516365,20155,9472,971293833,964055949,100,100,100,100,5.18,4.4,8.39,8.46
-46922,18,049,18049,61,22,326790,326790,61,22,326790,326790,20836,9708,961572878,954121481,100,100,100,100,0.29,0.23,0.03,0.03
-46923,18,015,18015,7976,3373,345991477,343019544,8048,3417,352379286,348943789,20155,9472,971293833,964055949,99.11,98.71,98.19,98.3,39.57,35.61,35.62,35.58
-46923,18,157,18157,72,44,6387809,5924245,8048,3417,352379286,348943789,172780,71096,1303394343,1294491529,0.89,1.29,1.81,1.7,0.04,0.06,0.49,0.46
-46926,18,017,18017,31,16,4046816,4039850,1708,701,91673011,91061710,38966,16474,1074450301,1067475860,1.81,2.28,4.41,4.44,0.08,0.1,0.38,0.38
-46926,18,103,18103,1677,685,87626195,87021860,1708,701,91673011,91061710,36903,15479,977431388,968246709,98.19,97.72,95.59,95.56,4.54,4.43,8.96,8.99
-46928,18,053,18053,4919,2206,184669410,184571944,4951,2220,187648923,187551457,70061,30443,1074580449,1072446955,99.35,99.37,98.41,98.41,7.02,7.25,17.19,17.21
-46928,18,095,18095,32,14,2979513,2979513,4951,2220,187648923,187551457,131636,59068,1173017003,1170454727,0.65,0.63,1.59,1.59,0.02,0.02,0.25,0.25
-46929,18,015,18015,3018,1338,116174392,116072226,3214,1425,132926821,132824655,20155,9472,971293833,964055949,93.9,93.89,87.4,87.39,14.97,14.13,11.96,12.04
-46929,18,067,18067,196,87,16752429,16752429,3214,1425,132926821,132824655,82752,38679,761253035,759012945,6.1,6.11,12.6,12.61,0.24,0.22,2.2,2.21
-46930,18,053,18053,133,54,382690,363747,133,54,382690,363747,70061,30443,1074580449,1072446955,100,100,100,100,0.19,0.18,0.04,0.03
-46931,18,049,18049,188,76,178461,178461,188,76,178461,178461,20836,9708,961572878,954121481,100,100,100,100,0.9,0.78,0.02,0.02
-46932,18,017,18017,3176,1398,128827688,128775253,3448,1511,143221022,143168587,38966,16474,1074450301,1067475860,92.11,92.52,89.95,89.95,8.15,8.49,11.99,12.06
-46932,18,067,18067,115,50,11114132,11114132,3448,1511,143221022,143168587,82752,38679,761253035,759012945,3.34,3.31,7.76,7.76,0.14,0.13,1.46,1.46
-46932,18,103,18103,157,63,3279202,3279202,3448,1511,143221022,143168587,36903,15479,977431388,968246709,4.55,4.17,2.29,2.29,0.43,0.41,0.34,0.34
-46933,18,053,18053,6414,2793,29549244,29549244,6414,2793,29549244,29549244,70061,30443,1074580449,1072446955,100,100,100,100,9.15,9.17,2.75,2.76
-46936,18,067,18067,5922,2474,169979162,169409946,5922,2474,169979162,169409946,82752,38679,761253035,759012945,100,100,100,100,7.16,6.4,22.33,22.32
-46938,18,053,18053,3200,1368,80267588,80170892,3200,1368,80267588,80170892,70061,30443,1074580449,1072446955,100,100,100,100,4.57,4.49,7.47,7.48
-46939,18,049,18049,1983,985,228303313,227251588,2101,1053,245883689,244710470,20836,9708,961572878,954121481,94.38,93.54,92.85,92.87,9.52,10.15,23.74,23.82
-46939,18,131,18131,118,68,17580376,17458882,2101,1053,245883689,244710470,13402,6060,1125437524,1123145988,5.62,6.46,7.15,7.13,0.88,1.12,1.56,1.55
-46940,18,053,18053,33,17,6412884,6412884,2548,1089,150960670,147136692,70061,30443,1074580449,1072446955,1.3,1.56,4.25,4.36,0.05,0.06,0.6,0.6
-46940,18,069,18069,307,140,34464998,34384020,2548,1089,150960670,147136692,37124,15805,1004196100,991061319,12.05,12.86,22.83,23.37,0.83,0.89,3.43,3.47
-46940,18,169,18169,2208,932,110082788,106339788,2548,1089,150960670,147136692,32888,14171,1090322240,1068200229,86.66,85.58,72.92,72.27,6.71,6.58,10.1,9.96
-46941,18,169,18169,1125,487,72913247,68134709,1125,487,72913247,68134709,32888,14171,1090322240,1068200229,100,100,100,100,3.42,3.44,6.69,6.38
-46943,18,169,18169,247,105,1068800,862013,247,105,1068800,862013,32888,14171,1090322240,1068200229,100,100,100,100,0.75,0.74,0.1,0.08
-46946,18,169,18169,136,51,912776,842440,136,51,912776,842440,32888,14171,1090322240,1068200229,100,100,100,100,0.41,0.36,0.08,0.08
-46947,18,015,18015,170,84,33578199,33566584,28866,12130,485615635,479974591,20155,9472,971293833,964055949,0.59,0.69,6.91,6.99,0.84,0.89,3.46,3.48
-46947,18,017,18017,28696,12046,452037436,446408007,28866,12130,485615635,479974591,38966,16474,1074450301,1067475860,99.41,99.31,93.09,93.01,73.64,73.12,42.07,41.82
-46950,18,017,18017,643,281,72796970,72792015,643,281,72796970,72792015,38966,16474,1074450301,1067475860,100,100,100,100,1.65,1.71,6.78,6.82
-46951,18,049,18049,549,447,28980491,28157974,2170,1086,165642225,164387203,20836,9708,961572878,954121481,25.3,41.16,17.5,17.13,2.63,4.6,3.01,2.95
-46951,18,103,18103,1621,639,136661734,136229229,2170,1086,165642225,164387203,36903,15479,977431388,968246709,74.7,58.84,82.5,82.87,4.39,4.13,13.98,14.07
-46952,18,009,18009,25,15,4903127,4903127,20308,9827,276231453,274875849,12766,6051,428858236,427554649,0.12,0.15,1.78,1.78,0.2,0.25,1.14,1.15
-46952,18,053,18053,20096,9736,248128488,246832937,20308,9827,276231453,274875849,70061,30443,1074580449,1072446955,98.96,99.07,89.83,89.8,28.68,31.98,23.09,23.02
-46952,18,069,18069,52,22,7866494,7858280,20308,9827,276231453,274875849,37124,15805,1004196100,991061319,0.26,0.22,2.85,2.86,0.14,0.14,0.78,0.79
-46952,18,179,18179,135,54,15333344,15281505,20308,9827,276231453,274875849,27636,11659,958937637,953341217,0.66,0.55,5.55,5.56,0.49,0.46,1.6,1.6
-46953,18,053,18053,24177,10259,219888979,219609182,24177,10259,219888979,219609182,70061,30443,1074580449,1072446955,100,100,100,100,34.51,33.7,20.46,20.48
-46957,18,053,18053,558,235,1231655,1231655,558,235,1231655,1231655,70061,30443,1074580449,1072446955,100,100,100,100,0.8,0.77,0.11,0.11
-46958,18,103,18103,460,218,1090247,1090247,460,218,1090247,1090247,36903,15479,977431388,968246709,100,100,100,100,1.25,1.41,0.11,0.11
-46959,18,103,18103,231,127,2848671,2848671,231,127,2848671,2848671,36903,15479,977431388,968246709,100,100,100,100,0.63,0.82,0.29,0.29
-46960,18,049,18049,7,6,1312228,1312228,1218,623,107893894,107745206,20836,9708,961572878,954121481,0.57,0.96,1.22,1.22,0.03,0.06,0.14,0.14
-46960,18,131,18131,756,369,69691654,69664285,1218,623,107893894,107745206,13402,6060,1125437524,1123145988,62.07,59.23,64.59,64.66,5.64,6.09,6.19,6.2
-46960,18,149,18149,455,248,36890012,36768693,1218,623,107893894,107745206,23363,10962,808608838,800653661,37.36,39.81,34.19,34.13,1.95,2.26,4.56,4.59
-46961,18,017,18017,99,57,1254220,1254220,99,57,1254220,1254220,38966,16474,1074450301,1067475860,100,100,100,100,0.25,0.35,0.12,0.12
-46962,18,085,18085,379,158,23190211,22933082,9728,3958,284956419,283418626,77358,37038,1435871284,1376269814,3.9,3.99,8.14,8.09,0.49,0.43,1.62,1.67
-46962,18,169,18169,9311,3783,258311329,257030665,9728,3958,284956419,283418626,32888,14171,1090322240,1068200229,95.71,95.58,90.65,90.69,28.31,26.7,23.69,24.06
-46962,18,183,18183,38,17,3454879,3454879,9728,3958,284956419,283418626,33292,14281,875194321,869120901,0.39,0.43,1.21,1.22,0.11,0.12,0.39,0.4
-46967,18,017,18017,98,43,240010,240010,98,43,240010,240010,38966,16474,1074450301,1067475860,100,100,100,100,0.25,0.26,0.02,0.02
-46968,18,131,18131,7,2,6588,6588,73,30,945560,945560,13402,6060,1125437524,1123145988,9.59,6.67,0.7,0.7,0.05,0.03,0,0
-46968,18,149,18149,66,28,938972,938972,73,30,945560,945560,23363,10962,808608838,800653661,90.41,93.33,99.3,99.3,0.28,0.26,0.12,0.12
-46970,18,017,18017,606,253,44490588,43675217,23766,11202,487080750,479076940,38966,16474,1074450301,1067475860,2.55,2.26,9.13,9.12,1.56,1.54,4.14,4.09
-46970,18,103,18103,23133,10937,438253401,431064962,23766,11202,487080750,479076940,36903,15479,977431388,968246709,97.34,97.63,89.98,89.98,62.69,70.66,44.84,44.52
-46970,18,169,18169,27,12,4336761,4336761,23766,11202,487080750,479076940,32888,14171,1090322240,1068200229,0.11,0.11,0.89,0.91,0.08,0.08,0.4,0.41
-46974,18,103,18103,356,163,43818435,43570553,1699,722,109431972,108091027,36903,15479,977431388,968246709,20.95,22.58,40.04,40.31,0.96,1.05,4.48,4.5
-46974,18,169,18169,1343,559,65613537,64520474,1699,722,109431972,108091027,32888,14171,1090322240,1068200229,79.05,77.42,59.96,59.69,4.08,3.94,6.02,6.04
-46975,18,049,18049,14691,6777,564535254,559944948,14691,6777,564535254,559944948,20836,9708,961572878,954121481,100,100,100,100,70.51,69.81,58.71,58.69
-46978,18,017,18017,1998,859,152487844,152487844,2059,885,164438319,164438319,38966,16474,1074450301,1067475860,97.04,97.06,92.73,92.73,5.13,5.21,14.19,14.28
-46978,18,131,18131,25,9,4683924,4683924,2059,885,164438319,164438319,13402,6060,1125437524,1123145988,1.21,1.02,2.85,2.85,0.19,0.15,0.42,0.42
-46978,18,181,18181,36,17,7266551,7266551,2059,885,164438319,164438319,24643,12970,1317472923,1308266686,1.75,1.92,4.42,4.42,0.15,0.13,0.55,0.56
-46979,18,023,18023,64,29,7895474,7859490,4733,1896,109279850,109243866,33224,13321,1049587560,1049126443,1.35,1.53,7.23,7.19,0.19,0.22,0.75,0.75
-46979,18,067,18067,4669,1867,101384376,101384376,4733,1896,109279850,109243866,82752,38679,761253035,759012945,98.65,98.47,92.77,92.81,5.64,4.83,13.32,13.36
-46982,18,049,18049,42,21,2110432,2105846,2573,1185,109759398,107711958,20836,9708,961572878,954121481,1.63,1.77,1.92,1.96,0.2,0.22,0.22,0.22
-46982,18,085,18085,2145,1012,83706952,81845014,2573,1185,109759398,107711958,77358,37038,1435871284,1376269814,83.37,85.4,76.26,75.99,2.77,2.73,5.83,5.95
-46982,18,169,18169,386,152,23942014,23761098,2573,1185,109759398,107711958,32888,14171,1090322240,1068200229,15,12.83,21.81,22.06,1.17,1.07,2.2,2.22
-46984,18,169,18169,224,119,617354,602330,224,119,617354,602330,32888,14171,1090322240,1068200229,100,100,100,100,0.68,0.84,0.06,0.06
-46985,18,131,18131,1404,681,175029893,174804966,1441,692,182346362,182121435,13402,6060,1125437524,1123145988,97.43,98.41,95.99,95.98,10.48,11.24,15.55,15.56
-46985,18,181,18181,37,11,7316469,7316469,1441,692,182346362,182121435,24643,12970,1317472923,1308266686,2.57,1.59,4.01,4.02,0.15,0.08,0.56,0.56
-46986,18,053,18053,1915,811,90087678,90087678,1915,811,90087678,90087678,70061,30443,1074580449,1072446955,100,100,100,100,2.73,2.66,8.38,8.4
-46987,18,053,18053,776,328,1424863,1415971,776,328,1424863,1415971,70061,30443,1074580449,1072446955,100,100,100,100,1.11,1.08,0.13,0.13
-46988,18,017,18017,823,359,68457371,68383017,823,359,68457371,68383017,38966,16474,1074450301,1067475860,100,100,100,100,2.11,2.18,6.37,6.41
-46989,18,035,18035,17,7,1780801,1632426,5195,1468,87414173,87005648,117671,52357,1025400252,1015596276,0.33,0.48,2.04,1.88,0.01,0.01,0.17,0.16
-46989,18,053,18053,5178,1461,85633372,85373222,5195,1468,87414173,87005648,70061,30443,1074580449,1072446955,99.67,99.52,97.96,98.12,7.39,4.8,7.97,7.96
-46990,18,169,18169,801,333,78098839,78004169,801,333,78098839,78004169,32888,14171,1090322240,1068200229,100,100,100,100,2.44,2.35,7.16,7.3
-46991,18,053,18053,1719,751,69027928,68951929,1797,783,79359637,79262382,70061,30443,1074580449,1072446955,95.66,95.91,86.98,86.99,2.45,2.47,6.42,6.43
-46991,18,069,18069,78,32,10331709,10310453,1797,783,79359637,79262382,37124,15805,1004196100,991061319,4.34,4.09,13.02,13.01,0.21,0.2,1.03,1.04
-46992,18,169,18169,16759,7511,427931284,419496526,16759,7511,427931284,419496526,32888,14171,1090322240,1068200229,100,100,100,100,50.96,53,39.25,39.27
-46994,18,017,18017,2684,1109,149599827,149208896,2684,1109,149599827,149208896,38966,16474,1074450301,1067475860,100,100,100,100,6.89,6.73,13.92,13.98
-46996,18,131,18131,7102,3214,483023365,481126974,7139,3231,486748678,484852287,13402,6060,1125437524,1123145988,99.48,99.47,99.23,99.23,52.99,53.04,42.92,42.84
-46996,18,149,18149,7,4,973665,973665,7139,3231,486748678,484852287,23363,10962,808608838,800653661,0.1,0.12,0.2,0.2,0.03,0.04,0.12,0.12
-46996,18,181,18181,30,13,2751648,2751648,7139,3231,486748678,484852287,24643,12970,1317472923,1308266686,0.42,0.4,0.57,0.57,0.12,0.1,0.21,0.21
-46998,18,017,18017,112,53,211531,211531,112,53,211531,211531,38966,16474,1074450301,1067475860,100,100,100,100,0.29,0.32,0.02,0.02
-47001,18,029,18029,9693,4025,162388143,160463987,10422,4362,191203641,188667681,50047,20171,796202172,790033471,93.01,92.27,84.93,85.05,19.37,19.95,20.4,20.31
-47001,18,115,18115,729,337,28815498,28203694,10422,4362,191203641,188667681,6128,2784,226454091,223101869,6.99,7.73,15.07,14.95,11.9,12.1,12.72,12.64
-47003,18,161,18161,1040,468,32778989,32616766,1040,468,32778989,32616766,7516,3239,427807006,417568462,100,100,100,100,13.84,14.45,7.66,7.81
-47006,18,031,18031,30,13,1955062,1955062,11727,4666,269884256,268243035,25740,11209,966901597,964946111,0.26,0.28,0.72,0.73,0.12,0.12,0.2,0.2
-47006,18,047,18047,3935,1505,126408697,126145813,11727,4666,269884256,268243035,23087,9538,1012814253,995668709,33.56,32.25,46.84,47.03,17.04,15.78,12.48,12.67
-47006,18,137,18137,7762,3148,141520497,140142160,11727,4666,269884256,268243035,28818,11952,1160474205,1156236700,66.19,67.47,52.44,52.24,26.93,26.34,12.2,12.12
-47010,18,047,18047,215,96,24770308,24709027,306,135,27988105,27877361,23087,9538,1012814253,995668709,70.26,71.11,88.5,88.63,0.93,1.01,2.45,2.48
-47010,18,161,18161,91,39,3217797,3168334,306,135,27988105,27877361,7516,3239,427807006,417568462,29.74,28.89,11.5,11.37,1.21,1.2,0.75,0.76
-47011,18,115,18115,11,5,686569,686569,1277,520,92688306,92506819,6128,2784,226454091,223101869,0.86,0.96,0.74,0.74,0.18,0.18,0.3,0.31
-47011,18,155,18155,1266,515,92001737,91820250,1277,520,92688306,92506819,10613,4969,578703537,571436429,99.14,99.04,99.26,99.26,11.93,10.36,15.9,16.07
-47012,18,029,18029,854,318,22979647,22978998,10188,4392,442616717,428677789,50047,20171,796202172,790033471,8.38,7.24,5.19,5.36,1.71,1.58,2.89,2.91
-47012,18,047,18047,9334,4074,419637070,405698791,10188,4392,442616717,428677789,23087,9538,1012814253,995668709,91.62,92.76,94.81,94.64,40.43,42.71,41.43,40.75
-47016,18,047,18047,793,332,50805957,50684553,793,332,50805957,50684553,23087,9538,1012814253,995668709,100,100,100,100,3.43,3.48,5.02,5.09
-47017,18,115,18115,7,5,2240378,2240378,507,232,40119021,39912147,6128,2784,226454091,223101869,1.38,2.16,5.58,5.61,0.11,0.18,0.99,1
-47017,18,137,18137,500,227,37878643,37671769,507,232,40119021,39912147,28818,11952,1160474205,1156236700,98.62,97.84,94.42,94.39,1.74,1.9,3.26,3.26
-47018,18,029,18029,2881,1266,90505367,90384099,4275,1831,184747948,184581660,50047,20171,796202172,790033471,67.39,69.14,48.99,48.97,5.76,6.28,11.37,11.44
-47018,18,115,18115,613,268,54030312,54030312,4275,1831,184747948,184581660,6128,2784,226454091,223101869,14.34,14.64,29.25,29.27,10,9.63,23.86,24.22
-47018,18,137,18137,781,297,40212269,40167249,4275,1831,184747948,184581660,28818,11952,1160474205,1156236700,18.27,16.22,21.77,21.76,2.71,2.48,3.47,3.47
-47020,18,155,18155,1309,607,56798309,55956734,1309,607,56798309,55956734,10613,4969,578703537,571436429,100,100,100,100,12.33,12.22,9.81,9.79
-47022,18,029,18029,3358,1217,88067278,88067278,3358,1217,88067278,88067278,50047,20171,796202172,790033471,100,100,100,100,6.71,6.03,11.06,11.15
-47023,18,137,18137,1636,684,122063625,121809005,1636,684,122063625,121809005,28818,11952,1160474205,1156236700,100,100,100,100,5.68,5.72,10.52,10.53
-47024,18,047,18047,3226,1342,170018817,169061920,3226,1342,170018817,169061920,23087,9538,1012814253,995668709,100,100,100,100,13.97,14.07,16.79,16.98
-47025,18,029,18029,22932,9265,146172352,143334069,22932,9265,146172352,143334069,50047,20171,796202172,790033471,100,100,100,100,45.82,45.93,18.36,18.14
-47030,18,047,18047,1636,661,87926609,86950060,1636,661,87926609,86950060,23087,9538,1012814253,995668709,100,100,100,100,7.09,6.93,8.68,8.73
-47031,18,029,18029,163,55,5751947,5751947,5368,2169,160340840,159653479,50047,20171,796202172,790033471,3.04,2.54,3.59,3.6,0.33,0.27,0.72,0.73
-47031,18,137,18137,5205,2114,154588893,153901532,5368,2169,160340840,159653479,28818,11952,1160474205,1156236700,96.96,97.46,96.41,96.4,18.06,17.69,13.32,13.31
-47032,18,029,18029,3289,1281,90650170,90594359,3289,1281,90650170,90594359,50047,20171,796202172,790033471,100,100,100,100,6.57,6.35,11.39,11.47
-47034,18,137,18137,158,80,297335,297335,158,80,297335,297335,28818,11952,1160474205,1156236700,100,100,100,100,0.55,0.67,0.03,0.03
-47035,18,047,18047,233,101,791449,791449,233,101,791449,791449,23087,9538,1012814253,995668709,100,100,100,100,1.01,1.06,0.08,0.08
-47036,18,047,18047,1023,362,41838114,41684897,1023,362,41838114,41684897,23087,9538,1012814253,995668709,100,100,100,100,4.43,3.8,4.13,4.19
-47037,18,137,18137,4333,1845,208376566,207759128,4333,1845,208376566,207759128,28818,11952,1160474205,1156236700,100,100,100,100,15.04,15.44,17.96,17.97
-47038,18,155,18155,1504,842,85103126,80474155,1504,842,85103126,80474155,10613,4969,578703537,571436429,100,100,100,100,14.17,16.95,14.71,14.08
-47040,18,115,18115,4768,2169,140681334,137940916,5480,2471,176631057,173821247,6128,2784,226454091,223101869,87.01,87.78,79.65,79.36,77.81,77.91,62.12,61.83
-47040,18,155,18155,712,302,35949723,35880331,5480,2471,176631057,173821247,10613,4969,578703537,571436429,12.99,12.22,20.35,20.64,6.71,6.08,6.21,6.28
-47041,18,029,18029,2615,973,106943133,106725295,6125,2317,214953969,214345342,50047,20171,796202172,790033471,42.69,41.99,49.75,49.79,5.23,4.82,13.43,13.51
-47041,18,137,18137,3510,1344,108010836,107620047,6125,2317,214953969,214345342,28818,11952,1160474205,1156236700,57.31,58.01,50.25,50.21,12.18,11.24,9.31,9.31
-47042,18,137,18137,4504,2019,199363284,199233231,4504,2019,199363284,199233231,28818,11952,1160474205,1156236700,100,100,100,100,15.63,16.89,17.18,17.23
-47043,18,077,18077,88,38,6980009,6590379,5250,2460,268891648,267119213,32428,14311,939877329,934029272,1.68,1.54,2.6,2.47,0.27,0.27,0.74,0.71
-47043,18,155,18155,5162,2422,261911639,260528834,5250,2460,268891648,267119213,10613,4969,578703537,571436429,98.32,98.46,97.4,97.53,48.64,48.74,45.26,45.59
-47060,18,029,18029,4262,1771,82744135,81733439,6448,2625,149957404,148365269,50047,20171,796202172,790033471,66.1,67.47,55.18,55.09,8.52,8.78,10.39,10.35
-47060,18,047,18047,2186,854,67213269,66631830,6448,2625,149957404,148365269,23087,9538,1012814253,995668709,33.9,32.53,44.82,44.91,9.47,8.95,6.64,6.69
-47102,18,071,18071,295,116,19822028,19822028,7255,3070,103842198,103668046,42376,18202,1331029832,1319112546,4.07,3.78,19.09,19.12,0.7,0.64,1.49,1.5
-47102,18,143,18143,6960,2954,84020170,83846018,7255,3070,103842198,103668046,24181,10440,499216224,493127224,95.93,96.22,80.91,80.88,28.78,28.3,16.83,17
-47104,18,019,18019,41,22,519632,492736,41,22,519632,492736,110232,47776,975003689,965691140,100,100,100,100,0.04,0.05,0.05,0.05
-47106,18,019,18019,4106,1714,167763505,166196579,4718,1956,181277335,179687281,110232,47776,975003689,965691140,87.03,87.63,92.55,92.49,3.72,3.59,17.21,17.21
-47106,18,043,18043,412,157,7967286,7950271,4718,1956,181277335,179687281,74578,31968,385798473,383149241,8.73,8.03,4.4,4.42,0.55,0.49,2.07,2.07
-47106,18,175,18175,200,85,5546544,5540431,4718,1956,181277335,179687281,28262,12220,1337986544,1330542331,4.24,4.35,3.06,3.08,0.71,0.7,0.41,0.42
-47108,18,117,18117,29,15,5582629,5565847,2463,1050,230596701,229821865,19840,9176,1057212256,1031818152,1.18,1.43,2.42,2.42,0.15,0.16,0.53,0.54
-47108,18,175,18175,2434,1035,225014072,224256018,2463,1050,230596701,229821865,28262,12220,1337986544,1330542331,98.82,98.57,97.58,97.58,8.61,8.47,16.82,16.85
-47110,18,061,18061,350,147,15020102,15020102,350,147,15020102,15020102,39364,16534,1260082639,1254889451,100,100,100,100,0.89,0.89,1.19,1.2
-47111,18,019,18019,14533,5866,209032689,206856635,14533,5866,209032689,206856635,110232,47776,975003689,965691140,100,100,100,100,13.18,12.28,21.44,21.42
-47112,18,061,18061,16722,6991,419270645,418622593,16722,6991,419270645,418622593,39364,16534,1260082639,1254889451,100,100,100,100,42.48,42.28,33.27,33.36
-47114,18,061,18061,399,160,2538540,2538540,399,160,2538540,2538540,39364,16534,1260082639,1254889451,100,100,100,100,1.01,0.97,0.2,0.2
-47115,18,061,18061,2622,1158,148126305,147565715,2622,1158,148126305,147565715,39364,16534,1260082639,1254889451,100,100,100,100,6.66,7,11.76,11.76
-47116,18,025,18025,805,523,79468052,77753714,805,523,79468052,77753714,10713,5520,799576551,791610951,100,100,100,100,7.51,9.47,9.94,9.82
-47117,18,043,18043,172,72,10311978,10152579,4429,1889,216423203,216108914,74578,31968,385798473,383149241,3.88,3.81,4.76,4.7,0.23,0.23,2.67,2.65
-47117,18,061,18061,4257,1817,206111225,205956335,4429,1889,216423203,216108914,39364,16534,1260082639,1254889451,96.12,96.19,95.24,95.3,10.81,10.99,16.36,16.41
-47118,18,025,18025,2929,1461,278313709,278135972,3502,1762,372884614,367848931,10713,5520,799576551,791610951,83.64,82.92,74.64,75.61,27.34,26.47,34.81,35.14
-47118,18,117,18117,246,146,42950878,38092932,3502,1762,372884614,367848931,19840,9176,1057212256,1031818152,7.02,8.29,11.52,10.36,1.24,1.59,4.06,3.69
-47118,18,123,18123,327,155,51620027,51620027,3502,1762,372884614,367848931,19338,8495,1000486336,988668708,9.34,8.8,13.84,14.03,1.69,1.82,5.16,5.22
-47119,18,019,18019,340,141,14482540,14430952,10911,4198,112320667,111653987,110232,47776,975003689,965691140,3.12,3.36,12.89,12.92,0.31,0.3,1.49,1.49
-47119,18,043,18043,10571,4057,97838127,97223035,10911,4198,112320667,111653987,74578,31968,385798473,383149241,96.88,96.64,87.11,87.08,14.17,12.69,25.36,25.37
-47120,18,175,18175,938,394,48641740,48135819,938,394,48641740,48135819,28262,12220,1337986544,1330542331,100,100,100,100,3.32,3.22,3.64,3.62
-47122,18,043,18043,8272,3220,61484138,61173897,9979,3897,92402908,92091964,74578,31968,385798473,383149241,82.89,82.63,66.54,66.43,11.09,10.07,15.94,15.97
-47122,18,061,18061,1707,677,30918770,30918067,9979,3897,92402908,92091964,39364,16534,1260082639,1254889451,17.11,17.37,33.46,33.57,4.34,4.09,2.45,2.46
-47123,18,025,18025,189,92,19167055,19167055,189,92,19167055,19167055,10713,5520,799576551,791610951,100,100,100,100,1.76,1.67,2.4,2.42
-47124,18,043,18043,3801,1424,49877444,49710705,4264,1597,63625297,63458558,74578,31968,385798473,383149241,89.14,89.17,78.39,78.34,5.1,4.45,12.93,12.97
-47124,18,061,18061,463,173,13747853,13747853,4264,1597,63625297,63458558,39364,16534,1260082639,1254889451,10.86,10.83,21.61,21.66,1.18,1.05,1.09,1.1
-47125,18,117,18117,649,290,48483450,48361385,1658,731,107621239,107382350,19840,9176,1057212256,1031818152,39.14,39.67,45.05,45.04,3.27,3.16,4.59,4.69
-47125,18,175,18175,1009,441,59137789,59020965,1658,731,107621239,107382350,28262,12220,1337986544,1330542331,60.86,60.33,54.95,54.96,3.57,3.61,4.42,4.44
-47126,18,019,18019,4107,1580,87015294,86618057,4250,1645,90979601,90580716,110232,47776,975003689,965691140,96.64,96.05,95.64,95.63,3.73,3.31,8.92,8.97
-47126,18,175,18175,143,65,3964307,3962659,4250,1645,90979601,90580716,28262,12220,1337986544,1330542331,3.36,3.95,4.36,4.37,0.51,0.53,0.3,0.3
-47129,18,019,18019,19527,9043,24930210,24379471,19527,9043,24930210,24379471,110232,47776,975003689,965691140,100,100,100,100,17.71,18.93,2.56,2.52
-47130,18,019,18019,44722,20053,89512323,88482972,44722,20053,89512323,88482972,110232,47776,975003689,965691140,100,100,100,100,40.57,41.97,9.18,9.16
-47135,18,061,18061,1372,617,133607987,132089321,1372,617,133607987,132089321,39364,16534,1260082639,1254889451,100,100,100,100,3.49,3.73,10.6,10.53
-47136,18,043,18043,2054,760,33209665,33130735,4178,1645,71902657,71759730,74578,31968,385798473,383149241,49.16,46.2,46.19,46.17,2.75,2.38,8.61,8.65
-47136,18,061,18061,2124,885,38692992,38628995,4178,1645,71902657,71759730,39364,16534,1260082639,1254889451,50.84,53.8,53.81,53.83,5.4,5.35,3.07,3.08
-47137,18,025,18025,1416,756,155794104,153181297,1421,762,160010553,157397746,10713,5520,799576551,791610951,99.65,99.21,97.36,97.32,13.22,13.7,19.48,19.35
-47137,18,123,18123,5,6,4216449,4216449,1421,762,160010553,157397746,19338,8495,1000486336,988668708,0.35,0.79,2.64,2.68,0.03,0.07,0.42,0.43
-47138,18,077,18077,1959,811,105223038,104752631,4373,1840,192281317,190895437,32428,14311,939877329,934029272,44.8,44.08,54.72,54.87,6.04,5.67,11.2,11.22
-47138,18,143,18143,2414,1029,87058279,86142806,4373,1840,192281317,190895437,24181,10440,499216224,493127224,55.2,55.92,45.28,45.13,9.98,9.86,17.44,17.47
-47140,18,025,18025,2170,1012,60535705,60535705,2669,1234,107368203,107330749,10713,5520,799576551,791610951,81.3,82.01,56.38,56.4,20.26,18.33,7.57,7.65
-47140,18,117,18117,499,222,46832498,46795044,2669,1234,107368203,107330749,19840,9176,1057212256,1031818152,18.7,17.99,43.62,43.6,2.52,2.42,4.43,4.54
-47141,18,019,18019,1668,680,88772869,88367828,1668,680,88772869,88367828,110232,47776,975003689,965691140,100,100,100,100,1.51,1.42,9.1,9.15
-47142,18,061,18061,1174,542,97903974,95821519,1174,542,97903974,95821519,39364,16534,1260082639,1254889451,100,100,100,100,2.98,3.28,7.77,7.64
-47143,18,019,18019,3015,1211,59176571,58468995,3015,1211,59176571,58468995,110232,47776,975003689,965691140,100,100,100,100,2.74,2.53,6.07,6.05
-47145,18,025,18025,1998,923,111159948,111159842,1998,923,111159948,111159842,10713,5520,799576551,791610951,100,100,100,100,18.65,16.72,13.9,14.04
-47147,18,019,18019,588,258,45259809,45142818,945,409,72221900,72030943,110232,47776,975003689,965691140,62.22,63.08,62.67,62.67,0.53,0.54,4.64,4.67
-47147,18,077,18077,88,42,15058938,15004591,945,409,72221900,72030943,32428,14311,939877329,934029272,9.31,10.27,20.85,20.83,0.27,0.29,1.6,1.61
-47147,18,143,18143,269,109,11903153,11883534,945,409,72221900,72030943,24181,10440,499216224,493127224,28.47,26.65,16.48,16.5,1.11,1.04,2.38,2.41
-47150,18,019,18019,41,12,679684,678865,47472,21577,114927486,113682671,110232,47776,975003689,965691140,0.09,0.06,0.59,0.6,0.04,0.03,0.07,0.07
-47150,18,043,18043,47431,21565,114247802,113003806,47472,21577,114927486,113682671,74578,31968,385798473,383149241,99.91,99.94,99.41,99.4,63.6,67.46,29.61,29.49
-47160,18,061,18061,93,39,106994,106994,93,39,106994,106994,39364,16534,1260082639,1254889451,100,100,100,100,0.24,0.24,0.01,0.01
-47161,18,061,18061,3735,1498,57267435,57212404,3735,1498,57267435,57212404,39364,16534,1260082639,1254889451,100,100,100,100,9.49,9.06,4.54,4.56
-47162,18,019,18019,829,355,59839947,59001065,829,355,59839947,59001065,110232,47776,975003689,965691140,100,100,100,100,0.75,0.74,6.14,6.11
-47163,18,019,18019,1746,702,54293756,53941183,1746,702,54293756,53941183,110232,47776,975003689,965691140,100,100,100,100,1.58,1.47,5.57,5.59
-47164,18,061,18061,3044,1298,63508956,63400152,3779,1597,91094334,90797326,39364,16534,1260082639,1254889451,80.55,81.28,69.72,69.83,7.73,7.85,5.04,5.05
-47164,18,175,18175,735,299,27585378,27397174,3779,1597,91094334,90797326,28262,12220,1337986544,1330542331,19.45,18.72,30.28,30.17,2.6,2.45,2.06,2.06
-47165,18,043,18043,97,41,3363616,3348607,6438,2712,214246555,213405385,74578,31968,385798473,383149241,1.51,1.51,1.57,1.57,0.13,0.13,0.87,0.87
-47165,18,175,18175,6341,2671,210882939,210056778,6438,2712,214246555,213405385,28262,12220,1337986544,1330542331,98.49,98.49,98.43,98.43,22.44,21.86,15.76,15.79
-47166,18,061,18061,1302,532,33260861,33260861,1302,532,33260861,33260861,39364,16534,1260082639,1254889451,100,100,100,100,3.31,3.22,2.64,2.65
-47167,18,175,18175,15014,6502,556322898,552613291,15014,6502,556322898,552613291,28262,12220,1337986544,1330542331,100,100,100,100,53.12,53.21,41.58,41.53
-47170,18,143,18143,13731,6009,273378809,268642477,14795,6523,417659993,412354329,24181,10440,499216224,493127224,92.81,92.12,65.45,65.15,56.78,57.56,54.76,54.48
-47170,18,175,18175,1064,514,144281184,143711852,14795,6523,417659993,412354329,28262,12220,1337986544,1330542331,7.19,7.88,34.55,34.85,3.76,4.21,10.78,10.8
-47172,18,019,18019,14291,5858,57659387,56710615,16059,6530,65157804,64166221,110232,47776,975003689,965691140,88.99,89.71,88.49,88.38,12.96,12.26,5.91,5.87
-47172,18,043,18043,1768,672,7498417,7455606,16059,6530,65157804,64166221,74578,31968,385798473,383149241,11.01,10.29,11.51,11.62,2.37,2.1,1.94,1.95
-47175,18,025,18025,870,475,56426495,53469752,909,522,63495506,58142305,10713,5520,799576551,791610951,95.71,91,88.87,91.96,8.12,8.61,7.06,6.75
-47175,18,117,18117,39,47,7069011,4672553,909,522,63495506,58142305,19840,9176,1057212256,1031818152,4.29,9,11.13,8.04,0.2,0.51,0.67,0.45
-47177,18,019,18019,678,281,16065473,15922369,1221,509,43474099,43166207,110232,47776,975003689,965691140,55.53,55.21,36.95,36.89,0.62,0.59,1.65,1.65
-47177,18,143,18143,543,228,27408626,27243838,1221,509,43474099,43166207,24181,10440,499216224,493127224,44.47,44.79,63.05,63.11,2.25,2.18,5.49,5.52
-47201,18,005,18005,40463,17678,463712485,458817868,41662,18192,534478831,529466367,76794,33098,1060664802,1053886348,97.12,97.17,86.76,86.66,52.69,53.41,43.72,43.54
-47201,18,013,18013,1199,514,70766346,70648499,41662,18192,534478831,529466367,15242,8285,820069887,808026819,2.88,2.83,13.24,13.34,7.87,6.2,8.63,8.74
-47203,18,005,18005,25806,11099,200883842,200668851,25806,11099,200883842,200668851,76794,33098,1060664802,1053886348,100,100,100,100,33.6,33.53,18.94,19.04
-47220,18,071,18071,5652,2355,216788256,214705533,5652,2355,216788256,214705533,42376,18202,1331029832,1319112546,100,100,100,100,13.34,12.94,16.29,16.28
-47223,18,079,18079,1490,652,150459126,149722139,1490,652,150459126,149722139,28525,12069,979910194,975346383,100,100,100,100,5.22,5.4,15.35,15.35
-47224,18,077,18077,279,114,39721813,39506975,636,242,58547869,58253149,32428,14311,939877329,934029272,43.87,47.11,67.85,67.82,0.86,0.8,4.23,4.23
-47224,18,137,18137,19,5,724963,724264,636,242,58547869,58253149,28818,11952,1160474205,1156236700,2.99,2.07,1.24,1.24,0.07,0.04,0.06,0.06
-47224,18,155,18155,338,123,18101093,18021910,636,242,58547869,58253149,10613,4969,578703537,571436429,53.14,50.83,30.92,30.94,3.18,2.48,3.13,3.15
-47226,18,005,18005,202,98,254911,254911,202,98,254911,254911,76794,33098,1060664802,1053886348,100,100,100,100,0.26,0.3,0.02,0.02
-47227,18,077,18077,258,115,21886504,21800264,1598,659,127585315,127287134,32428,14311,939877329,934029272,16.15,17.45,17.15,17.13,0.8,0.8,2.33,2.33
-47227,18,079,18079,1340,544,105698811,105486870,1598,659,127585315,127287134,28525,12069,979910194,975346383,83.85,82.55,82.85,82.87,4.7,4.51,10.79,10.82
-47229,18,071,18071,3065,1350,117773819,117699221,3231,1414,129634729,129560131,42376,18202,1331029832,1319112546,94.86,95.47,90.85,90.85,7.23,7.42,8.85,8.92
-47229,18,079,18079,166,64,11860910,11860910,3231,1414,129634729,129560131,28525,12069,979910194,975346383,5.14,4.53,9.15,9.15,0.58,0.53,1.21,1.22
-47230,18,077,18077,1608,710,106774976,106336466,2029,898,130342818,129825672,32428,14311,939877329,934029272,79.25,79.06,81.92,81.91,4.96,4.96,11.36,11.38
-47230,18,079,18079,157,77,8120655,8120655,2029,898,130342818,129825672,28525,12069,979910194,975346383,7.74,8.57,6.23,6.26,0.55,0.64,0.83,0.83
-47230,18,143,18143,264,111,15447187,15368551,2029,898,130342818,129825672,24181,10440,499216224,493127224,13.01,12.36,11.85,11.84,1.09,1.06,3.09,3.12
-47231,18,077,18077,899,372,44424141,44372246,1167,473,73427823,73242901,32428,14311,939877329,934029272,77.04,78.65,60.5,60.58,2.77,2.6,4.73,4.75
-47231,18,079,18079,268,101,29003682,28870655,1167,473,73427823,73242901,28525,12069,979910194,975346383,22.96,21.35,39.5,39.42,0.94,0.84,2.96,2.96
-47232,18,005,18005,1824,728,59589847,59083513,2839,1134,83052428,82337091,76794,33098,1060664802,1053886348,64.25,64.2,71.75,71.76,2.38,2.2,5.62,5.61
-47232,18,079,18079,1015,406,23462581,23253578,2839,1134,83052428,82337091,28525,12069,979910194,975346383,35.75,35.8,28.25,28.24,3.56,3.36,2.39,2.38
-47234,18,145,18145,1379,603,85570627,85570627,1379,603,85570627,85570627,44436,19080,1069033961,1064866098,100,100,100,100,3.1,3.16,8,8.04
-47235,18,013,18013,378,170,22451288,22365650,1784,791,105035318,104185736,15242,8285,820069887,808026819,21.19,21.49,21.37,21.47,2.48,2.05,2.74,2.77
-47235,18,071,18071,1406,621,82584030,81820086,1784,791,105035318,104185736,42376,18202,1331029832,1319112546,78.81,78.51,78.63,78.53,3.32,3.41,6.2,6.2
-47240,18,031,18031,20575,9031,748304149,746590094,20832,9149,775426041,773643500,25740,11209,966901597,964946111,98.77,98.71,96.5,96.5,79.93,80.57,77.39,77.37
-47240,18,047,18047,113,53,8751502,8685558,20832,9149,775426041,773643500,23087,9538,1012814253,995668709,0.54,0.58,1.13,1.12,0.49,0.56,0.86,0.87
-47240,18,137,18137,34,16,4939523,4939523,20832,9149,775426041,773643500,28818,11952,1160474205,1156236700,0.16,0.17,0.64,0.64,0.12,0.13,0.43,0.43
-47240,18,139,18139,47,20,2657593,2657593,20832,9149,775426041,773643500,17392,7508,1057907782,1057035473,0.23,0.22,0.34,0.34,0.27,0.27,0.25,0.25
-47240,18,145,18145,63,29,10773274,10770732,20832,9149,775426041,773643500,44436,19080,1069033961,1064866098,0.3,0.32,1.39,1.39,0.14,0.15,1.01,1.01
-47243,18,077,18077,5951,2306,91993794,90509714,5951,2306,91993794,90509714,32428,14311,939877329,934029272,100,100,100,100,18.35,16.11,9.79,9.69
-47244,18,005,18005,705,274,36950641,36950641,786,310,45576149,45576149,76794,33098,1060664802,1053886348,89.69,88.39,81.07,81.07,0.92,0.83,3.48,3.51
-47244,18,031,18031,81,36,8625508,8625508,786,310,45576149,45576149,25740,11209,966901597,964946111,10.31,11.61,18.93,18.93,0.31,0.32,0.89,0.89
-47246,18,005,18005,4342,1697,152714672,152320395,4342,1697,152714672,152320395,76794,33098,1060664802,1053886348,100,100,100,100,5.65,5.13,14.4,14.45
-47247,18,005,18005,156,77,304379,304379,156,77,304379,304379,76794,33098,1060664802,1053886348,100,100,100,100,0.2,0.23,0.03,0.03
-47250,18,077,18077,21246,9782,448583402,446002855,21944,10113,539393652,536614361,32428,14311,939877329,934029272,96.82,96.73,83.16,83.11,65.52,68.35,47.73,47.75
-47250,18,137,18137,376,173,61972340,61857291,21944,10113,539393652,536614361,28818,11952,1160474205,1156236700,1.71,1.71,11.49,11.53,1.3,1.45,5.34,5.35
-47250,18,155,18155,322,158,28837910,28754215,21944,10113,539393652,536614361,10613,4969,578703537,571436429,1.47,1.56,5.35,5.36,3.03,3.18,4.98,5.03
-47260,18,071,18071,1911,816,146173112,144192494,1911,816,146173112,144192494,42376,18202,1331029832,1319112546,100,100,100,100,4.51,4.48,10.98,10.93
-47263,18,031,18031,236,102,323977,323977,236,102,323977,323977,25740,11209,966901597,964946111,100,100,100,100,0.92,0.91,0.03,0.03
-47264,18,071,18071,1117,494,175522536,174779535,1428,648,256797009,256053717,42376,18202,1331029832,1319112546,78.22,76.23,68.35,68.26,2.64,2.71,13.19,13.25
-47264,18,093,18093,274,134,58169107,58168816,1428,648,256797009,256053717,46134,21074,1170490550,1163339936,19.19,20.68,22.65,22.72,0.59,0.64,4.97,5
-47264,18,105,18105,37,20,23105366,23105366,1428,648,256797009,256053717,137974,59107,1065316039,1021773228,2.59,3.09,9,9.02,0.03,0.03,2.17,2.26
-47265,18,079,18079,20911,8918,497015726,495125038,20911,8918,497015726,495125038,28525,12069,979910194,975346383,100,100,100,100,73.31,73.89,50.72,50.76
-47270,18,077,18077,52,21,5342258,5264695,807,324,48269706,48119745,32428,14311,939877329,934029272,6.44,6.48,11.07,10.94,0.16,0.15,0.57,0.56
-47270,18,079,18079,755,303,42927448,42855050,807,324,48269706,48119745,28525,12069,979910194,975346383,93.56,93.52,88.93,89.06,2.65,2.51,4.38,4.39
-47272,18,031,18031,1324,543,50163002,50061273,2041,835,84347811,84202962,25740,11209,966901597,964946111,64.87,65.03,59.47,59.45,5.14,4.84,5.19,5.19
-47272,18,145,18145,717,292,34184809,34141689,2041,835,84347811,84202962,44436,19080,1069033961,1064866098,35.13,34.97,40.53,40.55,1.61,1.53,3.2,3.21
-47273,18,079,18079,1849,729,80792078,80127600,1849,729,80792078,80127600,28525,12069,979910194,975346383,100,100,100,100,6.48,6.04,8.24,8.22
-47274,18,005,18005,396,247,32072496,31674030,28770,12474,553034953,547466235,76794,33098,1060664802,1053886348,1.38,1.98,5.8,5.79,0.52,0.75,3.02,3.01
-47274,18,013,18013,146,67,13597559,13597559,28770,12474,553034953,547466235,15242,8285,820069887,808026819,0.51,0.54,2.46,2.48,0.96,0.81,1.66,1.68
-47274,18,071,18071,27990,12055,482259387,477731018,28770,12474,553034953,547466235,42376,18202,1331029832,1319112546,97.29,96.64,87.2,87.26,66.05,66.23,36.23,36.22
-47274,18,079,18079,238,105,25105511,24463628,28770,12474,553034953,547466235,28525,12069,979910194,975346383,0.83,0.84,4.54,4.47,0.83,0.87,2.56,2.51
-47280,18,005,18005,813,336,2715970,2715970,813,336,2715970,2715970,76794,33098,1060664802,1053886348,100,100,100,100,1.06,1.02,0.26,0.26
-47281,18,071,18071,940,395,90106664,88362631,1324,609,146716357,144209975,42376,18202,1331029832,1319112546,71,64.86,61.42,61.27,2.22,2.17,6.77,6.7
-47281,18,175,18175,384,214,56609693,55847344,1324,609,146716357,144209975,28262,12220,1337986544,1330542331,29,35.14,38.58,38.73,1.36,1.75,4.23,4.2
-47282,18,079,18079,289,149,832989,832989,289,149,832989,832989,28525,12069,979910194,975346383,100,100,100,100,1.01,1.23,0.09,0.09
-47283,18,005,18005,116,44,9039402,9039402,3386,1457,155450621,155307513,76794,33098,1060664802,1053886348,3.43,3.02,5.81,5.82,0.15,0.13,0.85,0.86
-47283,18,031,18031,3223,1392,141780542,141640840,3386,1457,155450621,155307513,25740,11209,966901597,964946111,95.19,95.54,91.21,91.2,12.52,12.42,14.66,14.68
-47283,18,079,18079,47,21,4630677,4627271,3386,1457,155450621,155307513,28525,12069,979910194,975346383,1.39,1.44,2.98,2.98,0.16,0.17,0.47,0.47
-47302,18,035,18035,27526,13349,169085699,168498972,27592,13373,172534752,171945556,117671,52357,1025400252,1015596276,99.76,99.82,98,98,23.39,25.5,16.49,16.59
-47302,18,065,18065,66,24,3449053,3446584,27592,13373,172534752,171945556,49462,21288,1022609930,1014954691,0.24,0.18,2,2,0.13,0.11,0.34,0.34
-47303,18,035,18035,25365,11740,151264559,150430482,25365,11740,151264559,150430482,117671,52357,1025400252,1015596276,100,100,100,100,21.56,22.42,14.75,14.81
-47304,18,035,18035,30516,14240,91001514,90693267,30516,14240,91001514,90693267,117671,52357,1025400252,1015596276,100,100,100,100,25.93,27.2,8.87,8.93
-47305,18,035,18035,4106,2631,3574638,3457747,4106,2631,3574638,3457747,117671,52357,1025400252,1015596276,100,100,100,100,3.49,5.03,0.35,0.34
-47306,18,035,18035,6189,9,590356,588964,6189,9,590356,588964,117671,52357,1025400252,1015596276,100,100,100,100,5.26,0.02,0.06,0.06
-47320,18,035,18035,3812,1737,82034492,81379077,4134,1869,87465048,86737086,117671,52357,1025400252,1015596276,92.21,92.94,93.79,93.82,3.24,3.32,8,8.01
-47320,18,075,18075,26,17,509708,509708,4134,1869,87465048,86737086,21253,9221,994768750,994310208,0.63,0.91,0.58,0.59,0.12,0.18,0.05,0.05
-47320,18,135,18135,296,115,4920848,4848301,4134,1869,87465048,86737086,26171,11743,1174076850,1171656456,7.16,6.15,5.63,5.59,1.13,0.98,0.42,0.41
-47324,18,177,18177,138,67,545771,545771,138,67,545771,545771,68917,31242,1047239451,1040502885,100,100,100,100,0.2,0.21,0.05,0.05
-47325,18,041,18041,213,82,13234874,13234874,667,281,53018633,52701589,24277,10898,557268024,556883990,31.93,29.18,24.96,25.11,0.88,0.75,2.37,2.38
-47325,18,161,18161,454,199,39783759,39466715,667,281,53018633,52701589,7516,3239,427807006,417568462,68.07,70.82,75.04,74.89,6.04,6.14,9.3,9.45
-47326,18,001,18001,62,19,6640805,6624116,2295,726,173342398,173154717,34387,13014,880509591,878079128,2.7,2.62,3.83,3.83,0.18,0.15,0.75,0.75
-47326,18,075,18075,2233,707,166701593,166530601,2295,726,173342398,173154717,21253,9221,994768750,994310208,97.3,97.38,96.17,96.17,10.51,7.67,16.76,16.75
-47327,18,065,18065,321,132,32756134,32693718,4597,2065,142703501,141352126,49462,21288,1022609930,1014954691,6.98,6.39,22.95,23.13,0.65,0.62,3.2,3.22
-47327,18,177,18177,4276,1933,109947367,108658408,4597,2065,142703501,141352126,68917,31242,1047239451,1040502885,93.02,93.61,77.05,76.87,6.2,6.19,10.5,10.44
-47330,18,177,18177,5755,2406,154649678,153924427,5755,2406,154649678,153924427,68917,31242,1047239451,1040502885,100,100,100,100,8.35,7.7,14.77,14.79
-47331,18,041,18041,23279,10484,473053642,472767168,23429,10550,496668324,493073327,24277,10898,557268024,556883990,99.36,99.37,95.25,95.88,95.89,96.2,84.89,84.9
-47331,18,047,18047,78,30,4395272,4391428,23429,10550,496668324,493073327,23087,9538,1012814253,995668709,0.33,0.28,0.88,0.89,0.34,0.31,0.43,0.44
-47331,18,161,18161,72,36,19219410,15914731,23429,10550,496668324,493073327,7516,3239,427807006,417568462,0.31,0.34,3.87,3.23,0.96,1.11,4.49,3.81
-47334,18,035,18035,3172,1342,66899636,66625903,3263,1373,68975440,68681652,117671,52357,1025400252,1015596276,97.21,97.74,96.99,97.01,2.7,2.56,6.52,6.56
-47334,18,065,18065,91,31,2075804,2055749,3263,1373,68975440,68681652,49462,21288,1022609930,1014954691,2.79,2.26,3.01,2.99,0.18,0.15,0.2,0.2
-47335,18,177,18177,761,352,1285357,1256058,761,352,1285357,1256058,68917,31242,1047239451,1040502885,100,100,100,100,1.1,1.13,0.12,0.12
-47336,18,009,18009,337,176,20941096,20917412,3807,1785,121780706,121656172,12766,6051,428858236,427554649,8.85,9.86,17.2,17.19,2.64,2.91,4.88,4.89
-47336,18,035,18035,446,188,35736939,35666423,3807,1785,121780706,121656172,117671,52357,1025400252,1015596276,11.72,10.53,29.35,29.32,0.38,0.36,3.49,3.51
-47336,18,075,18075,3024,1421,65102671,65072337,3807,1785,121780706,121656172,21253,9221,994768750,994310208,79.43,79.61,53.46,53.49,14.23,15.41,6.54,6.54
-47337,18,065,18065,203,96,477789,477789,203,96,477789,477789,49462,21288,1022609930,1014954691,100,100,100,100,0.41,0.45,0.05,0.05
-47338,18,035,18035,2827,1261,73145175,72518039,2827,1261,73145175,72518039,117671,52357,1025400252,1015596276,100,100,100,100,2.4,2.41,7.13,7.14
-47339,18,177,18177,669,266,34369748,34343874,669,266,34369748,34343874,68917,31242,1047239451,1040502885,100,100,100,100,0.97,0.85,3.28,3.3
-47340,18,135,18135,2914,1278,138940216,138666094,2914,1278,138940216,138666094,26171,11743,1174076850,1171656456,100,100,100,100,11.13,10.88,11.83,11.84
-47341,18,177,18177,2283,911,94728132,94645244,2283,911,94728132,94645244,68917,31242,1047239451,1040502885,100,100,100,100,3.31,2.92,9.05,9.1
-47342,18,035,18035,2693,1191,129809654,129533666,2693,1191,129809654,129533666,117671,52357,1025400252,1015596276,100,100,100,100,2.29,2.27,12.66,12.75
-47344,18,065,18065,140,69,376593,367109,140,69,376593,367109,49462,21288,1022609930,1014954691,100,100,100,100,0.28,0.32,0.04,0.04
-47345,18,177,18177,1448,539,77410865,77037238,1448,539,77410865,77037238,68917,31242,1047239451,1040502885,100,100,100,100,2.1,1.73,7.39,7.4
-47346,18,065,18065,142,62,17249704,17215110,4082,1771,116888318,116641783,49462,21288,1022609930,1014954691,3.48,3.5,14.76,14.76,0.29,0.29,1.69,1.7
-47346,18,177,18177,3940,1709,99638614,99426673,4082,1771,116888318,116641783,68917,31242,1047239451,1040502885,96.52,96.5,85.24,85.24,5.72,5.47,9.51,9.56
-47348,18,009,18009,9828,4692,302803561,301782242,9828,4692,302803561,301782242,12766,6051,428858236,427554649,100,100,100,100,76.99,77.54,70.61,70.58
-47351,18,065,18065,471,181,1095549,1095072,471,181,1095549,1095072,49462,21288,1022609930,1014954691,100,100,100,100,0.95,0.85,0.11,0.11
-47352,18,065,18065,822,357,51188579,51034266,965,418,78037868,77850096,49462,21288,1022609930,1014954691,85.18,85.41,65.59,65.55,1.66,1.68,5.01,5.03
-47352,18,139,18139,143,61,26849289,26815830,965,418,78037868,77850096,17392,7508,1057907782,1057035473,14.82,14.59,34.41,34.45,0.82,0.81,2.54,2.54
-47353,18,047,18047,36,18,844063,843121,5879,2510,328847436,322441359,23087,9538,1012814253,995668709,0.61,0.72,0.26,0.26,0.16,0.19,0.08,0.08
-47353,18,161,18161,5843,2492,328003373,321598238,5879,2510,328847436,322441359,7516,3239,427807006,417568462,99.39,99.28,99.74,99.74,77.74,76.94,76.67,77.02
-47354,18,035,18035,47,23,9280317,9225528,1129,520,76980482,76785919,117671,52357,1025400252,1015596276,4.16,4.42,12.06,12.01,0.04,0.04,0.91,0.91
-47354,18,065,18065,370,168,17845048,17787197,1129,520,76980482,76785919,49462,21288,1022609930,1014954691,32.77,32.31,23.18,23.16,0.75,0.79,1.75,1.75
-47354,18,135,18135,645,303,44393228,44333422,1129,520,76980482,76785919,26171,11743,1174076850,1171656456,57.13,58.27,57.67,57.74,2.46,2.58,3.78,3.78
-47354,18,177,18177,67,26,5461889,5439772,1129,520,76980482,76785919,68917,31242,1047239451,1040502885,5.93,5,7.1,7.08,0.1,0.08,0.52,0.52
-47355,18,135,18135,2885,1273,164857306,164612946,2885,1273,164857306,164612946,26171,11743,1174076850,1171656456,100,100,100,100,11.02,10.84,14.04,14.05
-47356,18,035,18035,64,25,1065071,1063570,5781,2446,139732198,139527258,117671,52357,1025400252,1015596276,1.11,1.02,0.76,0.76,0.05,0.05,0.1,0.1
-47356,18,065,18065,5263,2230,129874436,129671043,5781,2446,139732198,139527258,49462,21288,1022609930,1014954691,91.04,91.17,92.95,92.94,10.64,10.48,12.7,12.78
-47356,18,095,18095,454,191,8792691,8792645,5781,2446,139732198,139527258,131636,59068,1173017003,1170454727,7.85,7.81,6.29,6.3,0.34,0.32,0.75,0.75
-47357,18,041,18041,204,86,21266392,21168832,1215,537,91284333,90209810,24277,10898,557268024,556883990,16.79,16.01,23.3,23.47,0.84,0.79,3.82,3.8
-47357,18,177,18177,1011,451,70017941,69040978,1215,537,91284333,90209810,68917,31242,1047239451,1040502885,83.21,83.99,76.7,76.53,1.47,1.44,6.69,6.64
-47358,18,135,18135,946,414,91485809,91360386,996,434,98015360,97889937,26171,11743,1174076850,1171656456,94.98,95.39,93.34,93.33,3.61,3.53,7.79,7.8
-47358,18,177,18177,50,20,6529551,6529551,996,434,98015360,97889937,68917,31242,1047239451,1040502885,5.02,4.61,6.66,6.67,0.07,0.06,0.62,0.63
-47359,18,009,18009,2576,1168,100210452,99951868,3143,1396,156734791,156131910,12766,6051,428858236,427554649,81.96,83.67,63.94,64.02,20.18,19.3,23.37,23.38
-47359,18,179,18179,567,228,56524339,56180042,3143,1396,156734791,156131910,27636,11659,958937637,953341217,18.04,16.33,36.06,35.98,2.05,1.96,5.89,5.89
-47360,18,065,18065,1462,617,86025420,84360742,1546,649,90754272,89089594,49462,21288,1022609930,1014954691,94.57,95.07,94.79,94.69,2.96,2.9,8.41,8.31
-47360,18,135,18135,10,4,1166497,1166497,1546,649,90754272,89089594,26171,11743,1174076850,1171656456,0.65,0.62,1.29,1.31,0.04,0.03,0.1,0.1
-47360,18,177,18177,74,28,3562355,3562355,1546,649,90754272,89089594,68917,31242,1047239451,1040502885,4.79,4.31,3.93,4,0.11,0.09,0.34,0.34
-47361,18,065,18065,135,63,119788,119788,135,63,119788,119788,49462,21288,1022609930,1014954691,100,100,100,100,0.27,0.3,0.01,0.01
-47362,18,065,18065,30243,13078,383902581,379554351,30243,13078,383902581,379554351,49462,21288,1022609930,1014954691,100,100,100,100,61.14,61.43,37.54,37.4
-47367,18,035,18035,191,73,1863804,1863804,191,73,1863804,1863804,117671,52357,1025400252,1015596276,100,100,100,100,0.16,0.14,0.18,0.18
-47368,18,035,18035,442,195,18933802,18910365,2845,1221,90701854,90574172,117671,52357,1025400252,1015596276,15.54,15.97,20.87,20.88,0.38,0.37,1.85,1.86
-47368,18,135,18135,2403,1026,71768052,71663807,2845,1221,90701854,90574172,26171,11743,1174076850,1171656456,84.46,84.03,79.13,79.12,9.18,8.74,6.11,6.12
-47369,18,075,18075,1343,598,88873052,88830591,1343,598,88873052,88830591,21253,9221,994768750,994310208,100,100,100,100,6.32,6.49,8.93,8.93
-47371,18,075,18075,12218,5394,565429069,565280470,12226,5397,565636012,565487413,21253,9221,994768750,994310208,99.93,99.94,99.96,99.96,57.49,58.5,56.84,56.85
-47371,18,135,18135,8,3,206943,206943,12226,5397,565636012,565487413,26171,11743,1174076850,1171656456,0.07,0.06,0.04,0.04,0.03,0.03,0.02,0.02
-47373,18,075,18075,2044,928,71749246,71683090,2226,1018,78193688,78122543,21253,9221,994768750,994310208,91.82,91.16,91.76,91.76,9.62,10.06,7.21,7.21
-47373,18,135,18135,182,90,6444442,6439453,2226,1018,78193688,78122543,26171,11743,1174076850,1171656456,8.18,8.84,8.24,8.24,0.7,0.77,0.55,0.55
-47374,18,161,18161,16,5,4803678,4803678,46875,21937,306916656,304119965,7516,3239,427807006,417568462,0.03,0.02,1.57,1.58,0.21,0.15,1.12,1.15
-47374,18,177,18177,46859,21932,302112978,299316287,46875,21937,306916656,304119965,68917,31242,1047239451,1040502885,99.97,99.98,98.43,98.42,67.99,70.2,28.85,28.77
-47380,18,075,18075,122,53,21732277,21732277,2004,897,158565962,157782726,21253,9221,994768750,994310208,6.09,5.91,13.71,13.77,0.57,0.57,2.18,2.19
-47380,18,135,18135,1882,844,136833685,136050449,2004,897,158565962,157782726,26171,11743,1174076850,1171656456,93.91,94.09,86.29,86.23,7.19,7.19,11.65,11.61
-47381,18,075,18075,145,53,776581,776581,145,53,776581,776581,21253,9221,994768750,994310208,100,100,100,100,0.68,0.57,0.08,0.08
-47382,18,135,18135,200,102,402229,402229,200,102,402229,402229,26171,11743,1174076850,1171656456,100,100,100,100,0.76,0.87,0.03,0.03
-47383,18,035,18035,2960,1243,89911090,84766278,2960,1243,89911090,84766278,117671,52357,1025400252,1015596276,100,100,100,100,2.52,2.37,8.77,8.35
-47384,18,059,18059,903,376,11957939,11945045,2000,869,84953208,84905786,70002,28125,795191473,792577692,45.15,43.27,14.08,14.07,1.29,1.34,1.5,1.51
-47384,18,065,18065,1097,493,72995269,72960741,2000,869,84953208,84905786,49462,21288,1022609930,1014954691,54.85,56.73,85.92,85.93,2.22,2.32,7.14,7.19
-47385,18,065,18065,1612,690,38643271,38521827,1612,690,38643271,38521827,49462,21288,1022609930,1014954691,100,100,100,100,3.26,3.24,3.78,3.8
-47386,18,065,18065,1231,508,46259326,46034500,1231,508,46259326,46034500,49462,21288,1022609930,1014954691,100,100,100,100,2.49,2.39,4.52,4.54
-47387,18,065,18065,726,323,42559170,42430139,726,323,42559170,42430139,49462,21288,1022609930,1014954691,100,100,100,100,1.47,1.52,4.16,4.18
-47388,18,065,18065,384,158,749468,748786,384,158,749468,748786,49462,21288,1022609930,1014954691,100,100,100,100,0.78,0.74,0.07,0.07
-47390,18,075,18075,98,50,13894553,13894553,5310,2500,203383611,203110704,21253,9221,994768750,994310208,1.85,2,6.83,6.84,0.46,0.54,1.4,1.4
-47390,18,135,18135,5212,2450,189489058,189216151,5310,2500,203383611,203110704,26171,11743,1174076850,1171656456,98.15,98,93.17,93.16,19.92,20.86,16.14,16.15
-47393,18,135,18135,118,42,9599082,9596797,1704,644,96578287,96373046,26171,11743,1174076850,1171656456,6.92,6.52,9.94,9.96,0.45,0.36,0.82,0.82
-47393,18,177,18177,1586,602,86979205,86776249,1704,644,96578287,96373046,68917,31242,1047239451,1040502885,93.08,93.48,90.06,90.04,2.3,1.93,8.31,8.34
-47394,18,135,18135,8470,3799,313569455,313092981,8470,3799,313569455,313092981,26171,11743,1174076850,1171656456,100,100,100,100,32.36,32.35,26.71,26.72
-47396,18,035,18035,7030,2991,83134477,82551261,7030,2991,83134477,82551261,117671,52357,1025400252,1015596276,100,100,100,100,5.97,5.71,8.11,8.13
-47401,18,013,18013,39,17,6237693,6237693,41011,19124,252329932,214770980,15242,8285,820069887,808026819,0.1,0.09,2.47,2.9,0.26,0.21,0.76,0.77
-47401,18,105,18105,40972,19107,246092239,208533287,41011,19124,252329932,214770980,137974,59107,1065316039,1021773228,99.9,99.91,97.53,97.1,29.7,32.33,23.1,20.41
-47403,18,055,18055,224,94,1335455,1335455,30955,14537,224163178,223899809,33165,15211,1413919686,1405055007,0.72,0.65,0.6,0.6,0.68,0.62,0.09,0.1
-47403,18,105,18105,30731,14443,222827723,222564354,30955,14537,224163178,223899809,137974,59107,1065316039,1021773228,99.28,99.35,99.4,99.4,22.27,24.44,20.92,21.78
-47404,18,105,18105,20917,9616,130494766,130484704,21026,9678,132820579,132810517,137974,59107,1065316039,1021773228,99.48,99.36,98.25,98.25,15.16,16.27,12.25,12.77
-47404,18,119,18119,109,62,2325813,2325813,21026,9678,132820579,132810517,21575,10091,1004463335,997892586,0.52,0.64,1.75,1.75,0.51,0.61,0.23,0.23
-47405,18,105,18105,4427,2,1217507,1217507,4427,2,1217507,1217507,137974,59107,1065316039,1021773228,100,100,100,100,3.21,0,0.11,0.12
-47406,18,105,18105,4730,4,574933,574933,4730,4,574933,574933,137974,59107,1065316039,1021773228,100,100,100,100,3.43,0.01,0.05,0.06
-47408,18,105,18105,24776,10724,172606488,172026902,24776,10724,172606488,172026902,137974,59107,1065316039,1021773228,100,100,100,100,17.96,18.14,16.2,16.84
-47420,18,093,18093,135,75,579821,579821,135,75,579821,579821,46134,21074,1170490550,1163339936,100,100,100,100,0.29,0.36,0.05,0.05
-47421,18,093,18093,27831,12857,476922296,473264133,27831,12857,476922296,473264133,46134,21074,1170490550,1163339936,100,100,100,100,60.33,61.01,40.75,40.68
-47424,18,055,18055,9525,4412,480156666,477296073,9525,4412,480156666,477296073,33165,15211,1413919686,1405055007,100,100,100,100,28.72,29.01,33.96,33.97
-47427,18,021,18021,109,51,16849397,16492105,1093,536,138677952,137933707,26890,11703,933228181,926029234,9.97,9.51,12.15,11.96,0.41,0.44,1.81,1.78
-47427,18,119,18119,984,485,121828555,121441602,1093,536,138677952,137933707,21575,10091,1004463335,997892586,90.03,90.49,87.85,88.04,4.56,4.81,12.13,12.17
-47429,18,105,18105,7986,3369,63877153,63877153,7986,3369,63877153,63877153,137974,59107,1065316039,1021773228,100,100,100,100,5.79,5.7,6,6.25
-47431,18,119,18119,1366,635,95809517,95734594,1366,635,95809517,95734594,21575,10091,1004463335,997892586,100,100,100,100,6.33,6.29,9.54,9.59
-47432,18,037,18037,414,185,29815474,29697882,4537,2190,229514293,214116557,41889,17384,1127509124,1106622334,9.12,8.45,12.99,13.87,0.99,1.06,2.64,2.68
-47432,18,101,18101,155,70,20503926,20477647,4537,2190,229514293,214116557,10334,4786,881648422,869555038,3.42,3.2,8.93,9.56,1.5,1.46,2.33,2.35
-47432,18,117,18117,3968,1935,179194893,163941028,4537,2190,229514293,214116557,19840,9176,1057212256,1031818152,87.46,88.36,78.08,76.57,20,21.09,16.95,15.89
-47433,18,105,18105,1118,474,63424696,63406079,4025,1801,210262266,209550278,137974,59107,1065316039,1021773228,27.78,26.32,30.16,30.26,0.81,0.8,5.95,6.21
-47433,18,109,18109,358,139,33389599,32789499,4025,1801,210262266,209550278,68894,27754,1060411342,1046274750,8.89,7.72,15.88,15.65,0.52,0.5,3.15,3.13
-47433,18,119,18119,2549,1188,113447971,113354700,4025,1801,210262266,209550278,21575,10091,1004463335,997892586,63.33,65.96,53.96,54.09,11.81,11.77,11.29,11.36
-47434,18,105,18105,76,39,126857,126857,76,39,126857,126857,137974,59107,1065316039,1021773228,100,100,100,100,0.06,0.07,0.01,0.01
-47436,18,093,18093,1337,604,92457863,92429806,1663,768,119430227,118617971,46134,21074,1170490550,1163339936,80.4,78.65,77.42,77.92,2.9,2.87,7.9,7.95
-47436,18,105,18105,326,164,26972364,26188165,1663,768,119430227,118617971,137974,59107,1065316039,1021773228,19.6,21.35,22.58,22.08,0.24,0.28,2.53,2.56
-47437,18,093,18093,123,68,2222042,2222042,123,68,2222042,2222042,46134,21074,1170490550,1163339936,100,100,100,100,0.27,0.32,0.19,0.19
-47438,18,021,18021,1161,511,57001839,56601993,4798,2197,156260620,153737675,26890,11703,933228181,926029234,24.2,23.26,36.48,36.82,4.32,4.37,6.11,6.11
-47438,18,055,18055,3479,1609,79582581,78754168,4798,2197,156260620,153737675,33165,15211,1413919686,1405055007,72.51,73.24,50.93,51.23,10.49,10.58,5.63,5.61
-47438,18,153,18153,158,77,19676200,18381514,4798,2197,156260620,153737675,21475,8939,1176154721,1158091682,3.29,3.5,12.59,11.96,0.74,0.86,1.67,1.59
-47441,18,055,18055,9269,4404,175588531,173693321,9269,4404,175588531,173693321,33165,15211,1413919686,1405055007,100,100,100,100,27.95,28.95,12.42,12.36
-47443,18,055,18055,1233,557,115670486,115063315,1233,557,115670486,115063315,33165,15211,1413919686,1405055007,100,100,100,100,3.72,3.66,8.18,8.19
-47446,18,093,18093,9905,4425,289553301,288221294,9990,4480,313775821,312386887,46134,21074,1170490550,1163339936,99.15,98.77,92.28,92.26,21.47,21,24.74,24.78
-47446,18,101,18101,85,55,24222520,24165593,9990,4480,313775821,312386887,10334,4786,881648422,869555038,0.85,1.23,7.72,7.74,0.82,1.15,2.75,2.78
-47448,18,013,18013,7455,3985,509108209,501899731,7505,4053,517330971,510122493,15242,8285,820069887,808026819,99.33,98.32,98.41,98.39,48.91,48.1,62.08,62.11
-47448,18,105,18105,50,68,8222762,8222762,7505,4053,517330971,510122493,137974,59107,1065316039,1021773228,0.67,1.68,1.59,1.61,0.04,0.12,0.77,0.8
-47449,18,055,18055,413,184,51841886,50605306,413,184,51841886,50605306,33165,15211,1413919686,1405055007,100,100,100,100,1.25,1.21,3.67,3.6
-47451,18,093,18093,1228,613,4809403,4809403,1228,613,4809403,4809403,46134,21074,1170490550,1163339936,100,100,100,100,2.66,2.91,0.41,0.41
-47452,18,093,18093,399,176,31029317,30915880,5359,2245,265377305,264229943,46134,21074,1170490550,1163339936,7.45,7.84,11.69,11.7,0.86,0.84,2.65,2.66
-47452,18,117,18117,4960,2069,234347988,233314063,5359,2245,265377305,264229943,19840,9176,1057212256,1031818152,92.55,92.16,88.31,88.3,25,22.55,22.17,22.61
-47453,18,055,18055,498,214,32345590,32309942,498,214,32345590,32309942,33165,15211,1413919686,1405055007,100,100,100,100,1.5,1.41,2.29,2.3
-47454,18,117,18117,7688,3573,328487186,327601493,7688,3573,328487186,327601493,19840,9176,1057212256,1031818152,100,100,100,100,38.75,38.94,31.07,31.75
-47455,18,119,18119,124,69,1454461,1454461,124,69,1454461,1454461,21575,10091,1004463335,997892586,100,100,100,100,0.57,0.68,0.14,0.15
-47456,18,109,18109,377,157,11240230,11156455,1200,524,68438898,68040891,68894,27754,1060411342,1046274750,31.42,29.96,16.42,16.4,0.55,0.57,1.06,1.07
-47456,18,119,18119,739,332,48523352,48209120,1200,524,68438898,68040891,21575,10091,1004463335,997892586,61.58,63.36,70.9,70.85,3.43,3.29,4.83,4.83
-47456,18,133,18133,84,35,8675316,8675316,1200,524,68438898,68040891,37963,14706,1250166809,1244562066,7,6.68,12.68,12.75,0.22,0.24,0.69,0.7
-47457,18,055,18055,134,62,1492655,1492655,134,62,1492655,1492655,33165,15211,1413919686,1405055007,100,100,100,100,0.4,0.41,0.11,0.11
-47458,18,105,18105,36,18,38770,38770,36,18,38770,38770,137974,59107,1065316039,1021773228,100,100,100,100,0.03,0.03,0,0
-47459,18,055,18055,3540,1461,145703750,145703750,3795,1564,151170181,151170181,33165,15211,1413919686,1405055007,93.28,93.41,96.38,96.38,10.67,9.6,10.3,10.37
-47459,18,119,18119,255,103,5466431,5466431,3795,1564,151170181,151170181,21575,10091,1004463335,997892586,6.72,6.59,3.62,3.62,1.18,1.02,0.54,0.55
-47460,18,055,18055,48,26,4142449,4142449,11471,5058,391490317,389539085,33165,15211,1413919686,1405055007,0.42,0.51,1.06,1.06,0.14,0.17,0.29,0.29
-47460,18,105,18105,254,99,8282802,8282802,11471,5058,391490317,389539085,137974,59107,1065316039,1021773228,2.21,1.96,2.12,2.13,0.18,0.17,0.78,0.81
-47460,18,119,18119,11169,4933,379065066,377113834,11471,5058,391490317,389539085,21575,10091,1004463335,997892586,97.37,97.53,96.83,96.81,51.77,48.89,37.74,37.79
-47462,18,055,18055,1312,580,63234808,63234808,4871,2064,196587236,196482369,33165,15211,1413919686,1405055007,26.93,28.1,32.17,32.18,3.96,3.81,4.47,4.5
-47462,18,093,18093,3256,1353,113586119,113481252,4871,2064,196587236,196482369,46134,21074,1170490550,1163339936,66.84,65.55,57.78,57.76,7.06,6.42,9.7,9.75
-47462,18,105,18105,303,131,19766309,19766309,4871,2064,196587236,196482369,137974,59107,1065316039,1021773228,6.22,6.35,10.05,10.06,0.22,0.22,1.86,1.93
-47464,18,105,18105,198,107,280750,280750,198,107,280750,280750,137974,59107,1065316039,1021773228,100,100,100,100,0.14,0.18,0.03,0.03
-47465,18,055,18055,750,325,62159924,61807864,750,325,62159924,61807864,33165,15211,1413919686,1405055007,100,100,100,100,2.26,2.14,4.4,4.4
-47467,18,093,18093,72,44,141803,141803,72,44,141803,141803,46134,21074,1170490550,1163339936,100,100,100,100,0.16,0.21,0.01,0.01
-47468,18,013,18013,278,248,14816835,12875542,1250,938,74441457,68181945,15242,8285,820069887,808026819,22.24,26.44,19.9,18.88,1.82,2.99,1.81,1.59
-47468,18,105,18105,972,690,59624622,55306403,1250,938,74441457,68181945,137974,59107,1065316039,1021773228,77.76,73.56,80.1,81.12,0.7,1.17,5.6,5.41
-47469,18,117,18117,1749,872,162554179,161766517,1749,872,162554179,161766517,19840,9176,1057212256,1031818152,100,100,100,100,8.82,9.5,15.38,15.68
-47470,18,093,18093,1574,725,101019478,99105686,1735,803,121698691,119690813,46134,21074,1170490550,1163339936,90.72,90.29,83.01,82.8,3.41,3.44,8.63,8.52
-47470,18,101,18101,161,78,20679213,20585127,1735,803,121698691,119690813,10334,4786,881648422,869555038,9.28,9.71,16.99,17.2,1.56,1.63,2.35,2.37
-47471,18,055,18055,2380,1122,143246216,142767858,2727,1260,178264720,177718507,33165,15211,1413919686,1405055007,87.28,89.05,80.36,80.33,7.18,7.38,10.13,10.16
-47471,18,119,18119,347,138,35018504,34950649,2727,1260,178264720,177718507,21575,10091,1004463335,997892586,12.72,10.95,19.64,19.67,1.61,1.37,3.49,3.5
-47501,18,027,18027,17535,7559,382969501,378681995,17535,7559,382969501,378681995,31648,12471,1131498834,1112366267,100,100,100,100,55.41,60.61,33.85,34.04
-47512,18,083,18083,3981,2002,130045711,129114308,3981,2002,130045711,129114308,38440,17038,1357269421,1336514262,100,100,100,100,10.36,11.75,9.58,9.66
-47513,18,025,18025,336,278,38711483,38207614,1841,955,154642739,153614834,10713,5520,799576551,791610951,18.25,29.11,25.03,24.87,3.14,5.04,4.84,4.83
-47513,18,037,18037,1460,652,99279804,98755768,1841,955,154642739,153614834,41889,17384,1127509124,1106622334,79.3,68.27,64.2,64.29,3.49,3.75,8.81,8.92
-47513,18,123,18123,45,25,16651452,16651452,1841,955,154642739,153614834,19338,8495,1000486336,988668708,2.44,2.62,10.77,10.84,0.23,0.29,1.66,1.68
-47514,18,123,18123,1559,88,11391921,11391921,1559,88,11391921,11391921,19338,8495,1000486336,988668708,100,100,100,100,8.06,1.04,1.14,1.15
-47515,18,123,18123,965,435,145033288,144423663,965,435,145033288,144423663,19338,8495,1000486336,988668708,100,100,100,100,4.99,5.12,14.5,14.61
-47516,18,083,18083,1249,559,77182525,76991643,1249,559,77182525,76991643,38440,17038,1357269421,1336514262,100,100,100,100,3.25,3.28,5.69,5.76
-47519,18,027,18027,513,198,50998309,50481754,513,198,50998309,50481754,31648,12471,1131498834,1112366267,100,100,100,100,1.62,1.59,4.51,4.54
-47520,18,123,18123,3267,1673,216884969,211117646,3267,1673,216884969,211117646,19338,8495,1000486336,988668708,100,100,100,100,16.89,19.69,21.68,21.35
-47521,18,037,18037,927,338,57103023,48822922,927,338,57103023,48822922,41889,17384,1127509124,1106622334,100,100,100,100,2.21,1.94,5.06,4.41
-47522,18,101,18101,246,121,22751696,21898576,246,121,22751696,21898576,10334,4786,881648422,869555038,100,100,100,100,2.38,2.53,2.58,2.52
-47523,18,147,18147,2655,1093,76015301,75496729,3435,1460,171032719,170257743,20952,8872,1039689450,1027562733,77.29,74.86,44.44,44.34,12.67,12.32,7.31,7.35
-47523,18,173,18173,780,367,95017418,94761014,3435,1460,171032719,170257743,59689,24203,1012823225,996667397,22.71,25.14,55.56,55.66,1.31,1.52,9.38,9.51
-47524,18,083,18083,605,286,138564150,131903877,605,286,138564150,131903877,38440,17038,1357269421,1336514262,100,100,100,100,1.57,1.68,10.21,9.87
-47525,18,123,18123,382,205,75963449,74793563,382,205,75963449,74793563,19338,8495,1000486336,988668708,100,100,100,100,1.98,2.41,7.59,7.57
-47527,18,037,18037,1884,815,138176814,137211874,1897,822,139886358,138919164,41889,17384,1127509124,1106622334,99.31,99.15,98.78,98.77,4.5,4.69,12.26,12.4
-47527,18,117,18117,13,7,1709544,1707290,1897,822,139886358,138919164,19840,9176,1057212256,1031818152,0.69,0.85,1.22,1.23,0.07,0.08,0.16,0.17
-47528,18,083,18083,476,253,48762135,48531376,476,253,48762135,48531376,38440,17038,1357269421,1336514262,100,100,100,100,1.24,1.48,3.59,3.63
-47529,18,027,18027,1011,484,80374819,79471892,1042,500,82802740,81899813,31648,12471,1131498834,1112366267,97.02,96.8,97.07,97.04,3.19,3.88,7.1,7.14
-47529,18,055,18055,31,16,2427921,2427921,1042,500,82802740,81899813,33165,15211,1413919686,1405055007,2.98,3.2,2.93,2.96,0.09,0.11,0.17,0.17
-47531,18,147,18147,1004,434,96973205,95662529,1004,434,96973205,95662529,20952,8872,1039689450,1027562733,100,100,100,100,4.79,4.89,9.33,9.31
-47532,18,037,18037,4045,1546,116858566,116034459,4627,1798,181937626,180740991,41889,17384,1127509124,1106622334,87.42,85.98,64.23,64.2,9.66,8.89,10.36,10.49
-47532,18,123,18123,42,23,9145183,9145183,4627,1798,181937626,180740991,19338,8495,1000486336,988668708,0.91,1.28,5.03,5.06,0.22,0.27,0.91,0.92
-47532,18,147,18147,540,229,55933877,55561349,4627,1798,181937626,180740991,20952,8872,1039689450,1027562733,11.67,12.74,30.74,30.74,2.58,2.58,5.38,5.41
-47535,18,083,18083,566,248,9065996,9065996,566,248,9065996,9065996,38440,17038,1357269421,1336514262,100,100,100,100,1.47,1.46,0.67,0.68
-47536,18,147,18147,40,15,71329,71329,40,15,71329,71329,20952,8872,1039689450,1027562733,100,100,100,100,0.19,0.17,0.01,0.01
-47537,18,147,18147,606,259,25540114,25332730,826,339,41618532,41352742,20952,8872,1039689450,1027562733,73.37,76.4,61.37,61.26,2.89,2.92,2.46,2.47
-47537,18,173,18173,220,80,16078418,16020012,826,339,41618532,41352742,59689,24203,1012823225,996667397,26.63,23.6,38.63,38.74,0.37,0.33,1.59,1.61
-47541,18,037,18037,1182,500,45091283,44586831,1224,515,52300418,51787820,41889,17384,1127509124,1106622334,96.57,97.09,86.22,86.1,2.82,2.88,4,4.03
-47541,18,147,18147,11,4,1515426,1507381,1224,515,52300418,51787820,20952,8872,1039689450,1027562733,0.9,0.78,2.9,2.91,0.05,0.05,0.15,0.15
-47541,18,173,18173,31,11,5693709,5693608,1224,515,52300418,51787820,59689,24203,1012823225,996667397,2.53,2.14,10.89,10.99,0.05,0.05,0.56,0.57
-47542,18,037,18037,9462,3794,205093827,202650524,9622,3875,213445922,210712048,41889,17384,1127509124,1106622334,98.34,97.91,96.09,96.17,22.59,21.82,18.19,18.31
-47542,18,125,18125,160,81,8352095,8061524,9622,3875,213445922,210712048,12845,5735,883430090,865673554,1.66,2.09,3.91,3.83,1.25,1.41,0.95,0.93
-47546,18,037,18037,21009,8937,326759004,320636133,21009,8937,326759004,320636133,41889,17384,1127509124,1106622334,100,100,100,100,50.15,51.41,28.98,28.97
-47550,18,147,18147,854,334,91690945,90976568,854,334,91690945,90976568,20952,8872,1039689450,1027562733,100,100,100,100,4.08,3.76,8.82,8.85
-47551,18,123,18123,649,271,83380081,83352142,649,271,83380081,83352142,19338,8495,1000486336,988668708,100,100,100,100,3.36,3.19,8.33,8.43
-47552,18,147,18147,182,73,13696264,13369907,182,73,13696264,13369907,20952,8872,1039689450,1027562733,100,100,100,100,0.87,0.82,1.32,1.3
-47553,18,027,18027,2732,915,144316194,140840182,8495,3421,367308981,361109322,31648,12471,1131498834,1112366267,32.16,26.75,39.29,39,8.63,7.34,12.75,12.66
-47553,18,101,18101,5763,2506,222992787,220269140,8495,3421,367308981,361109322,10334,4786,881648422,869555038,67.84,73.25,60.71,61,55.77,52.36,25.29,25.33
-47557,18,083,18083,1432,620,144256474,141364896,1432,620,144256474,141364896,38440,17038,1357269421,1336514262,100,100,100,100,3.73,3.64,10.63,10.58
-47558,18,027,18027,4406,1255,230792400,223428647,4406,1255,230792400,223428647,31648,12471,1131498834,1112366267,100,100,100,100,13.92,10.06,20.4,20.09
-47561,18,083,18083,1561,675,181842220,179824402,1588,688,187017717,184999899,38440,17038,1357269421,1336514262,98.3,98.11,97.23,97.2,4.06,3.96,13.4,13.45
-47561,18,153,18153,27,13,5175497,5175497,1588,688,187017717,184999899,21475,8939,1176154721,1158091682,1.7,1.89,2.77,2.8,0.13,0.15,0.44,0.45
-47562,18,027,18027,4617,1704,168882209,167737800,4658,1719,172237804,171061079,31648,12471,1131498834,1112366267,99.12,99.13,98.05,98.06,14.59,13.66,14.93,15.08
-47562,18,101,18101,41,15,3355595,3323279,4658,1719,172237804,171061079,10334,4786,881648422,869555038,0.88,0.87,1.95,1.94,0.4,0.31,0.38,0.38
-47564,18,037,18037,137,53,23868196,23578753,1352,634,96673988,95377177,41889,17384,1127509124,1106622334,10.13,8.36,24.69,24.72,0.33,0.3,2.12,2.13
-47564,18,125,18125,1215,581,72805792,71798424,1352,634,96673988,95377177,12845,5735,883430090,865673554,89.87,91.64,75.31,75.28,9.46,10.13,8.24,8.29
-47567,18,125,18125,6021,2639,302182798,296602359,6021,2639,302182798,296602359,12845,5735,883430090,865673554,100,100,100,100,46.87,46.02,34.21,34.26
-47568,18,027,18027,834,356,73165402,71723997,834,356,73165402,71723997,31648,12471,1131498834,1112366267,100,100,100,100,2.64,2.85,6.47,6.45
-47574,18,123,18123,148,69,38955308,37679420,148,69,38955308,37679420,19338,8495,1000486336,988668708,100,100,100,100,0.77,0.81,3.89,3.81
-47575,18,037,18037,976,415,55311908,54845770,976,415,55311908,54845770,41889,17384,1127509124,1106622334,100,100,100,100,2.33,2.39,4.91,4.96
-47576,18,123,18123,388,167,56915289,56374068,388,167,56915289,56374068,19338,8495,1000486336,988668708,100,100,100,100,2.01,1.97,5.69,5.7
-47577,18,123,18123,131,65,27404958,27345610,1143,426,65678731,65377687,19338,8495,1000486336,988668708,11.46,15.26,41.73,41.83,0.68,0.77,2.74,2.77
-47577,18,147,18147,1012,361,38273773,38032077,1143,426,65678731,65377687,20952,8872,1039689450,1027562733,88.54,84.74,58.27,58.17,4.83,4.07,3.68,3.7
-47578,18,055,18055,201,86,49869842,49306513,776,365,131960542,129932002,33165,15211,1413919686,1405055007,25.9,23.56,37.79,37.95,0.61,0.57,3.53,3.51
-47578,18,083,18083,575,279,82090700,80625489,776,365,131960542,129932002,38440,17038,1357269421,1336514262,74.1,76.44,62.21,62.05,1.5,1.64,6.05,6.03
-47579,18,147,18147,2659,1116,31211970,30046089,2659,1116,31211970,30046089,20952,8872,1039689450,1027562733,100,100,100,100,12.69,12.58,3,2.92
-47580,18,037,18037,289,112,13023032,12989746,289,112,13023032,12989746,41889,17384,1127509124,1106622334,100,100,100,100,0.69,0.64,1.16,1.17
-47581,18,101,18101,3883,1941,375586560,369961327,3883,1941,375586560,369961327,10334,4786,881648422,869555038,100,100,100,100,37.57,40.56,42.6,42.55
-47584,18,125,18125,179,74,381881,381336,179,74,381881,381336,12845,5735,883430090,865673554,100,100,100,100,1.39,1.29,0.04,0.04
-47585,18,125,18125,592,268,93343587,91698838,592,268,93343587,91698838,12845,5735,883430090,865673554,100,100,100,100,4.61,4.67,10.57,10.59
-47586,18,123,18123,10932,5075,246524284,244195139,10932,5075,246524284,244195139,19338,8495,1000486336,988668708,100,100,100,100,56.53,59.74,24.64,24.7
-47588,18,123,18123,498,238,16399678,16362425,698,327,42586600,42232506,19338,8495,1000486336,988668708,71.35,72.78,38.51,38.74,2.58,2.8,1.64,1.65
-47588,18,147,18147,200,89,26186922,25870081,698,327,42586600,42232506,20952,8872,1039689450,1027562733,28.65,27.22,61.49,61.26,0.95,1,2.52,2.52
-47590,18,037,18037,104,37,17128193,16811672,713,303,103407626,102128446,41889,17384,1127509124,1106622334,14.59,12.21,16.56,16.46,0.25,0.21,1.52,1.52
-47590,18,125,18125,609,266,86279433,85316774,713,303,103407626,102128446,12845,5735,883430090,865673554,85.41,87.79,83.44,83.54,4.74,4.64,9.77,9.86
-47591,18,083,18083,26770,11555,424087101,418960245,26770,11555,424087101,418960245,38440,17038,1357269421,1336514262,100,100,100,100,69.64,67.82,31.25,31.35
-47596,18,083,18083,202,103,5340078,5340078,202,103,5340078,5340078,38440,17038,1357269421,1336514262,100,100,100,100,0.53,0.6,0.39,0.4
-47597,18,083,18083,1023,458,116032331,114791952,1023,458,116032331,114791952,38440,17038,1357269421,1336514262,100,100,100,100,2.66,2.69,8.55,8.59
-47598,18,125,18125,3418,1531,189093552,183687098,3418,1531,189093552,183687098,12845,5735,883430090,865673554,100,100,100,100,26.61,26.7,21.4,21.22
-47601,18,147,18147,119,50,15522860,15310745,13896,5926,328123522,323061921,20952,8872,1039689450,1027562733,0.86,0.84,4.73,4.74,0.57,0.56,1.49,1.49
-47601,18,173,18173,13777,5876,312600662,307751176,13896,5926,328123522,323061921,59689,24203,1012823225,996667397,99.14,99.16,95.27,95.26,23.08,24.28,30.86,30.88
-47610,18,173,18173,5195,2222,93814932,92413680,5195,2222,93814932,92413680,59689,24203,1012823225,996667397,100,100,100,100,8.7,9.18,9.26,9.27
-47611,18,147,18147,1257,559,101554747,100681993,1257,559,101554747,100681993,20952,8872,1039689450,1027562733,100,100,100,100,6,6.3,9.77,9.8
-47612,18,051,18051,95,40,25447971,25447971,861,395,41209833,41209833,33503,14645,1292830020,1262582226,11.03,10.13,61.75,61.75,0.28,0.27,1.97,2.02
-47612,18,129,18129,766,355,15761862,15761862,861,395,41209833,41209833,25910,11207,1086047165,1060783261,88.97,89.87,38.25,38.25,2.96,3.17,1.45,1.49
-47613,18,051,18051,373,157,25382627,25313693,2679,1081,138210722,136776124,33503,14645,1292830020,1262582226,13.92,14.52,18.37,18.51,1.11,1.07,1.96,2
-47613,18,173,18173,2306,924,112828095,111462431,2679,1081,138210722,136776124,59689,24203,1012823225,996667397,86.08,85.48,81.63,81.49,3.86,3.82,11.14,11.18
-47615,18,147,18147,1611,681,96649377,93131722,1611,681,96649377,93131722,20952,8872,1039689450,1027562733,100,100,100,100,7.69,7.68,9.3,9.06
-47616,18,051,18051,26,24,62006459,58726008,364,197,115981562,110791664,33503,14645,1292830020,1262582226,7.14,12.18,53.46,53.01,0.08,0.16,4.8,4.65
-47616,18,129,18129,338,173,53975103,52065656,364,197,115981562,110791664,25910,11207,1086047165,1060783261,92.86,87.82,46.54,46.99,1.3,1.54,4.97,4.91
-47619,18,051,18051,66,24,15678346,15633206,1696,714,128046776,125187550,33503,14645,1292830020,1262582226,3.89,3.36,12.24,12.49,0.2,0.16,1.21,1.24
-47619,18,125,18125,59,30,9095547,9039642,1696,714,128046776,125187550,12845,5735,883430090,865673554,3.48,4.2,7.1,7.22,0.46,0.52,1.03,1.04
-47619,18,173,18173,1571,660,103272883,100514702,1696,714,128046776,125187550,59689,24203,1012823225,996667397,92.63,92.44,80.65,80.29,2.63,2.73,10.2,10.09
-47620,18,129,18129,13427,5825,559324600,538774941,13427,5825,559324600,538774941,25910,11207,1086047165,1060783261,100,100,100,100,51.82,51.98,51.5,50.79
-47630,18,173,18173,34423,13516,124786765,120948732,34423,13516,124786765,120948732,59689,24203,1012823225,996667397,100,100,100,100,57.67,55.84,12.32,12.14
-47631,18,129,18129,2042,1043,158986853,156534749,2042,1043,158986853,156534749,25910,11207,1086047165,1060783261,100,100,100,100,7.88,9.31,14.64,14.76
-47633,18,051,18051,183,82,21989699,21989699,2542,1119,160986497,160910253,33503,14645,1292830020,1262582226,7.2,7.33,13.66,13.67,0.55,0.56,1.7,1.74
-47633,18,129,18129,2347,1034,137746285,137670041,2542,1119,160986497,160910253,25910,11207,1086047165,1060783261,92.33,92.4,85.56,85.56,9.06,9.23,12.68,12.98
-47633,18,163,18163,12,3,1250513,1250513,2542,1119,160986497,160910253,179703,83003,612091309,604697995,0.47,0.27,0.78,0.78,0.01,0,0.2,0.21
-47634,18,147,18147,2382,1060,131136511,130730470,2382,1060,131136511,130730470,20952,8872,1039689450,1027562733,100,100,100,100,11.37,11.95,12.61,12.72
-47635,18,147,18147,5671,2455,221121552,219554248,5671,2455,221121552,219554248,20952,8872,1039689450,1027562733,100,100,100,100,27.07,27.67,21.27,21.37
-47637,18,147,18147,149,60,12992045,12769010,1507,595,152120494,150269158,20952,8872,1039689450,1027562733,9.89,10.08,8.54,8.5,0.71,0.68,1.25,1.24
-47637,18,173,18173,1358,535,139128449,137500148,1507,595,152120494,150269158,59689,24203,1012823225,996667397,90.11,89.92,91.46,91.5,2.28,2.21,13.74,13.8
-47638,18,129,18129,3577,1406,127470984,127416867,3577,1406,127470984,127416867,25910,11207,1086047165,1060783261,100,100,100,100,13.81,12.55,11.74,12.01
-47639,18,051,18051,3786,1496,80348700,80069741,4069,1610,111807785,111510175,33503,14645,1292830020,1262582226,93.04,92.92,71.86,71.8,11.3,10.22,6.21,6.34
-47639,18,163,18163,283,114,31459085,31440434,4069,1610,111807785,111510175,179703,83003,612091309,604697995,6.96,7.08,28.14,28.2,0.16,0.14,5.14,5.2
-47640,18,051,18051,842,371,70122181,68280870,1089,485,101589152,99659723,33503,14645,1292830020,1262582226,77.32,76.49,69.03,68.51,2.51,2.53,5.42,5.41
-47640,18,125,18125,247,114,31466971,31378853,1089,485,101589152,99659723,12845,5735,883430090,865673554,22.68,23.51,30.97,31.49,1.92,1.99,3.56,3.62
-47648,18,051,18051,4373,1844,139088460,138790702,4373,1844,139088460,138790702,33503,14645,1292830020,1262582226,100,100,100,100,13.05,12.59,10.76,10.99
-47649,18,051,18051,1402,645,111890349,111266982,1402,645,111890349,111266982,33503,14645,1292830020,1262582226,100,100,100,100,4.18,4.4,8.65,8.81
-47654,18,051,18051,70,33,273746,273746,70,33,273746,273746,33503,14645,1292830020,1262582226,100,100,100,100,0.21,0.23,0.02,0.02
-47660,18,051,18051,4569,2083,143081481,141289700,4934,2242,236131177,231619668,33503,14645,1292830020,1262582226,92.6,92.91,60.59,61,13.64,14.22,11.07,11.19
-47660,18,125,18125,345,151,90428434,87708706,4934,2242,236131177,231619668,12845,5735,883430090,865673554,6.99,6.74,38.3,37.87,2.69,2.63,10.24,10.13
-47660,18,173,18173,20,8,2621262,2621262,4934,2242,236131177,231619668,59689,24203,1012823225,996667397,0.41,0.36,1.11,1.13,0.03,0.03,0.26,0.26
-47665,18,051,18051,3637,1513,184302112,182445575,3637,1513,184302112,182445575,33503,14645,1292830020,1262582226,100,100,100,100,10.86,10.33,14.26,14.45
-47666,18,051,18051,1447,710,130577354,127273505,1447,710,130577354,127273505,33503,14645,1292830020,1262582226,100,100,100,100,4.32,4.85,10.1,10.08
-47670,18,051,18051,12352,5514,207249116,206376878,12352,5514,207249116,206376878,33503,14645,1292830020,1262582226,100,100,100,100,36.87,37.65,16.03,16.35
-47683,18,051,18051,210,84,471316,470922,210,84,471316,470922,33503,14645,1292830020,1262582226,100,100,100,100,0.63,0.57,0.04,0.04
-47708,18,163,18163,439,226,1441404,1435639,439,226,1441404,1435639,179703,83003,612091309,604697995,100,100,100,100,0.24,0.27,0.24,0.24
-47710,18,163,18163,19527,9349,23189088,22768908,19527,9349,23189088,22768908,179703,83003,612091309,604697995,100,100,100,100,10.87,11.26,3.79,3.77
-47711,18,163,18163,31457,14267,42529557,42018531,31457,14267,42529557,42018531,179703,83003,612091309,604697995,100,100,100,100,17.5,17.19,6.95,6.95
-47712,18,129,18129,3413,1371,32781478,32559145,26012,11138,166729608,164213259,25910,11207,1086047165,1060783261,13.12,12.31,19.66,19.83,13.17,12.23,3.02,3.07
-47712,18,163,18163,22599,9767,133948130,131654114,26012,11138,166729608,164213259,179703,83003,612091309,604697995,86.88,87.69,80.34,80.17,12.58,11.77,21.88,21.77
-47713,18,163,18163,11032,5947,10227639,9971696,11032,5947,10227639,9971696,179703,83003,612091309,604697995,100,100,100,100,6.14,7.16,1.67,1.65
-47714,18,163,18163,34107,15800,20693255,20678502,34107,15800,20693255,20678502,179703,83003,612091309,604697995,100,100,100,100,18.98,19.04,3.38,3.42
-47715,18,163,18163,27063,14163,61637267,60133562,27063,14163,61637267,60133562,179703,83003,612091309,604697995,100,100,100,100,15.06,17.06,10.07,9.94
-47720,18,163,18163,17413,7253,144996049,143845725,17413,7253,144996049,143845725,179703,83003,612091309,604697995,100,100,100,100,9.69,8.74,23.69,23.79
-47725,18,051,18051,72,25,1183829,1172381,15851,6143,148883783,147653384,33503,14645,1292830020,1262582226,0.45,0.41,0.8,0.79,0.21,0.17,0.09,0.09
-47725,18,163,18163,15771,6114,140719322,139500371,15851,6143,148883783,147653384,179703,83003,612091309,604697995,99.5,99.53,94.52,94.48,8.78,7.37,22.99,23.07
-47725,18,173,18173,8,4,6980632,6980632,15851,6143,148883783,147653384,59689,24203,1012823225,996667397,0.05,0.07,4.69,4.73,0.01,0.02,0.69,0.7
-47802,18,021,18021,17,11,10006624,10006624,34532,14283,427158306,418540301,26890,11703,933228181,926029234,0.05,0.08,2.34,2.39,0.06,0.09,1.07,1.08
-47802,18,167,18167,34515,14272,417151682,408533677,34532,14283,427158306,418540301,107848,46006,1063061500,1044574633,99.95,99.92,97.66,97.61,32,31.02,39.24,39.11
-47803,18,167,18167,21102,9578,89702756,88466871,21102,9578,89702756,88466871,107848,46006,1063061500,1044574633,100,100,100,100,19.57,20.82,8.44,8.47
-47804,18,167,18167,11020,5062,17285059,17035372,11020,5062,17285059,17035372,107848,46006,1063061500,1044574633,100,100,100,100,10.22,11,1.63,1.63
-47805,18,167,18167,12852,5496,136022772,135058572,12852,5496,136022772,135058572,107848,46006,1063061500,1044574633,100,100,100,100,11.92,11.95,12.8,12.93
-47807,18,167,18167,13045,6226,9989129,9714936,13045,6226,9989129,9714936,107848,46006,1063061500,1044574633,100,100,100,100,12.1,13.53,0.94,0.93
-47809,18,167,18167,2687,1,454435,454435,2687,1,454435,454435,107848,46006,1063061500,1044574633,100,100,100,100,2.49,0,0.04,0.04
-47832,18,121,18121,1040,484,109859246,109784514,1040,484,109859246,109784514,17339,8085,1165440508,1151671026,100,100,100,100,6,5.99,9.43,9.53
-47833,18,021,18021,492,215,57047697,57047697,1010,487,96232415,96214621,26890,11703,933228181,926029234,48.71,44.15,59.28,59.29,1.83,1.84,6.11,6.16
-47833,18,119,18119,518,272,39184718,39166924,1010,487,96232415,96214621,21575,10091,1004463335,997892586,51.29,55.85,40.72,40.71,2.4,2.7,3.9,3.92
-47834,18,021,18021,18176,7873,309476280,305968431,19215,8469,392952687,388559996,26890,11703,933228181,926029234,94.59,92.96,78.76,78.74,67.59,67.27,33.16,33.04
-47834,18,121,18121,378,291,48889881,48535205,19215,8469,392952687,388559996,17339,8085,1165440508,1151671026,1.97,3.44,12.44,12.49,2.18,3.6,4.19,4.21
-47834,18,167,18167,661,305,34586526,34056360,19215,8469,392952687,388559996,107848,46006,1063061500,1044574633,3.44,3.6,8.8,8.76,0.61,0.66,3.25,3.26
-47836,18,121,18121,47,33,509465,509465,47,33,509465,509465,17339,8085,1165440508,1151671026,100,100,100,100,0.27,0.41,0.04,0.04
-47837,18,021,18021,735,306,17508636,17281428,1231,562,75673929,75298067,26890,11703,933228181,926029234,59.71,54.45,23.14,22.95,2.73,2.61,1.88,1.87
-47837,18,121,18121,496,256,58165293,58016639,1231,562,75673929,75298067,17339,8085,1165440508,1151671026,40.29,45.55,76.86,77.05,2.86,3.17,4.99,5.04
-47838,18,153,18153,4081,877,274587312,273070467,4081,877,274587312,273070467,21475,8939,1176154721,1158091682,100,100,100,100,19,9.81,23.35,23.58
-47840,18,021,18021,1462,680,131501213,130076765,1500,696,138996601,137572153,26890,11703,933228181,926029234,97.47,97.7,94.61,94.55,5.44,5.81,14.09,14.05
-47840,18,133,18133,38,16,7495388,7495388,1500,696,138996601,137572153,37963,14706,1250166809,1244562066,2.53,2.3,5.39,5.45,0.1,0.11,0.6,0.6
-47841,18,021,18021,2122,1018,167499522,166704965,2138,1026,172431863,171629067,26890,11703,933228181,926029234,99.25,99.22,97.14,97.13,7.89,8.7,17.95,18
-47841,18,119,18119,16,8,4932341,4924102,2138,1026,172431863,171629067,21575,10091,1004463335,997892586,0.75,0.78,2.86,2.87,0.07,0.08,0.49,0.49
-47842,18,165,18165,9977,4655,187902294,184920233,10085,4696,189241056,186254414,16212,7488,673216509,665311750,98.93,99.13,99.29,99.28,61.54,62.17,27.91,27.79
-47842,18,167,18167,108,41,1338762,1334181,10085,4696,189241056,186254414,107848,46006,1063061500,1044574633,1.07,0.87,0.71,0.72,0.1,0.09,0.13,0.13
-47846,18,021,18021,638,295,82044743,81638737,638,295,82044743,81638737,26890,11703,933228181,926029234,100,100,100,100,2.37,2.52,8.79,8.82
-47847,18,165,18165,1077,493,125823745,125802056,1077,493,125823745,125802056,16212,7488,673216509,665311750,100,100,100,100,6.64,6.58,18.69,18.91
-47848,18,055,18055,128,59,5120926,5113609,1691,832,44895620,43671874,33165,15211,1413919686,1405055007,7.57,7.09,11.41,11.71,0.39,0.39,0.36,0.36
-47848,18,153,18153,1563,773,39774694,38558265,1691,832,44895620,43671874,21475,8939,1176154721,1158091682,92.43,92.91,88.59,88.29,7.28,8.65,3.38,3.33
-47849,18,153,18153,496,234,68781780,67488215,496,234,68781780,67488215,21475,8939,1176154721,1158091682,100,100,100,100,2.31,2.62,5.85,5.83
-47850,18,153,18153,1979,923,100624933,100204190,2456,1115,132735473,132151120,21475,8939,1176154721,1158091682,80.58,82.78,75.81,75.83,9.22,10.33,8.56,8.65
-47850,18,167,18167,477,192,32110540,31946930,2456,1115,132735473,132151120,107848,46006,1063061500,1044574633,19.42,17.22,24.19,24.17,0.44,0.42,3.02,3.06
-47853,18,021,18021,134,61,111905,111905,134,61,111905,111905,26890,11703,933228181,926029234,100,100,100,100,0.5,0.52,0.01,0.01
-47854,18,165,18165,849,363,75574878,74214645,849,363,75574878,74214645,16212,7488,673216509,665311750,100,100,100,100,5.24,4.85,11.23,11.15
-47855,18,153,18153,546,241,2065605,2065605,546,241,2065605,2065605,21475,8939,1176154721,1158091682,100,100,100,100,2.54,2.7,0.18,0.18
-47857,18,021,18021,571,165,1330556,1330556,571,165,1330556,1330556,26890,11703,933228181,926029234,100,100,100,100,2.12,1.41,0.14,0.14
-47858,18,021,18021,301,120,48288648,48248222,698,295,82638180,82538405,26890,11703,933228181,926029234,43.12,40.68,58.43,58.46,1.12,1.03,5.17,5.21
-47858,18,153,18153,198,81,14168599,14109250,698,295,82638180,82538405,21475,8939,1176154721,1158091682,28.37,27.46,17.15,17.09,0.92,0.91,1.2,1.22
-47858,18,167,18167,199,94,20180933,20180933,698,295,82638180,82538405,107848,46006,1063061500,1044574633,28.51,31.86,24.42,24.45,0.18,0.2,1.9,1.93
-47859,18,121,18121,1066,408,107127835,107074649,1066,408,107127835,107074649,17339,8085,1165440508,1151671026,100,100,100,100,6.15,5.05,9.19,9.3
-47860,18,121,18121,321,129,1720766,1720766,321,129,1720766,1720766,17339,8085,1165440508,1151671026,100,100,100,100,1.85,1.6,0.15,0.15
-47861,18,153,18153,616,298,117499833,113795535,616,298,117499833,113795535,21475,8939,1176154721,1158091682,100,100,100,100,2.87,3.33,9.99,9.83
-47862,18,121,18121,1610,756,106260101,104610747,1610,756,106260101,104610747,17339,8085,1165440508,1151671026,100,100,100,100,9.29,9.35,9.12,9.08
-47863,18,167,18167,205,105,2226413,2188311,205,105,2226413,2188311,107848,46006,1063061500,1044574633,100,100,100,100,0.19,0.23,0.21,0.21
-47865,18,153,18153,79,41,352370,352370,79,41,352370,352370,21475,8939,1176154721,1158091682,100,100,100,100,0.37,0.46,0.03,0.03
-47866,18,167,18167,347,157,46345111,46105391,347,157,46345111,46105391,107848,46006,1063061500,1044574633,100,100,100,100,0.32,0.34,4.36,4.41
-47868,18,021,18021,352,135,22223793,22223793,2937,1564,154749107,150492165,26890,11703,933228181,926029234,11.99,8.63,14.36,14.77,1.31,1.15,2.38,2.4
-47868,18,119,18119,2494,1374,125018956,121398391,2937,1564,154749107,150492165,21575,10091,1004463335,997892586,84.92,87.85,80.79,80.67,11.56,13.62,12.45,12.17
-47868,18,133,18133,91,55,7506358,6869981,2937,1564,154749107,150492165,37963,14706,1250166809,1244562066,3.1,3.52,4.85,4.57,0.24,0.37,0.6,0.55
-47869,18,167,18167,137,59,281061,281061,137,59,281061,281061,107848,46006,1063061500,1044574633,100,100,100,100,0.13,0.13,0.03,0.03
-47871,18,167,18167,220,102,214002,214002,220,102,214002,214002,107848,46006,1063061500,1044574633,100,100,100,100,0.2,0.22,0.02,0.02
-47872,18,121,18121,8876,4073,451124797,441525313,8890,4081,452633449,443033965,17339,8085,1165440508,1151671026,99.84,99.8,99.67,99.66,51.19,50.38,38.71,38.34
-47872,18,133,18133,14,8,1508652,1508652,8890,4081,452633449,443033965,37963,14706,1250166809,1244562066,0.16,0.2,0.33,0.34,0.04,0.05,0.12,0.12
-47874,18,021,18021,155,66,11305442,11264127,3414,1542,179380468,178130067,26890,11703,933228181,926029234,4.54,4.28,6.3,6.32,0.58,0.56,1.21,1.22
-47874,18,121,18121,2456,1122,133009253,132345292,3414,1542,179380468,178130067,17339,8085,1165440508,1151671026,71.94,72.76,74.15,74.3,14.16,13.88,11.41,11.49
-47874,18,167,18167,803,354,35065773,34520648,3414,1542,179380468,178130067,107848,46006,1063061500,1044574633,23.52,22.96,19.55,19.38,0.74,0.77,3.3,3.3
-47876,18,167,18167,394,3,1234307,1215813,394,3,1234307,1215813,107848,46006,1063061500,1044574633,100,100,100,100,0.37,0.01,0.12,0.12
-47879,18,153,18153,3302,1477,154809600,153466970,3302,1477,154809600,153466970,21475,8939,1176154721,1158091682,100,100,100,100,15.38,16.52,13.16,13.25
-47880,18,167,18167,67,24,61096,61096,67,24,61096,61096,107848,46006,1063061500,1044574633,100,100,100,100,0.06,0.05,0.01,0.01
-47881,18,021,18021,465,196,1031886,1031886,465,196,1031886,1031886,26890,11703,933228181,926029234,100,100,100,100,1.73,1.67,0.11,0.11
-47882,18,153,18153,8430,3904,378638298,371423804,8430,3904,378638298,371423804,21475,8939,1176154721,1158091682,100,100,100,100,39.25,43.67,32.19,32.07
-47884,18,165,18165,229,111,3702797,3329058,229,111,3702797,3329058,16212,7488,673216509,665311750,100,100,100,100,1.41,1.48,0.55,0.5
-47885,18,167,18167,9009,3935,218811143,213206044,9009,3935,218811143,213206044,107848,46006,1063061500,1044574633,100,100,100,100,8.35,8.55,20.58,20.41
-47901,18,157,18157,3518,2193,1589843,1534915,3518,2193,1589843,1534915,172780,71096,1303394343,1294491529,100,100,100,100,2.04,3.08,0.12,0.12
-47904,18,157,18157,16277,7456,15070966,14655846,16277,7456,15070966,14655846,172780,71096,1303394343,1294491529,100,100,100,100,9.42,10.49,1.16,1.13
-47905,18,157,18157,38910,17306,312342901,310158730,38910,17306,312342901,310158730,172780,71096,1303394343,1294491529,100,100,100,100,22.52,24.34,23.96,23.96
-47906,18,157,18157,66807,24363,329722514,326656938,66972,24432,354480087,351414511,172780,71096,1303394343,1294491529,99.75,99.72,93.02,92.95,38.67,34.27,25.3,25.23
-47906,18,171,18171,103,42,8820150,8820150,66972,24432,354480087,351414511,8508,3680,948986810,944520687,0.15,0.17,2.49,2.51,1.21,1.14,0.93,0.93
-47906,18,181,18181,62,27,15937423,15937423,66972,24432,354480087,351414511,24643,12970,1317472923,1308266686,0.09,0.11,4.5,4.54,0.25,0.21,1.21,1.22
-47907,18,157,18157,0,0,736266,736266,0,0,736266,736266,172780,71096,1303394343,1294491529,0,0,100,100,0,0,0.06,0.06
-47909,18,157,18157,39373,16554,300600270,299654727,39373,16554,300600270,299654727,172780,71096,1303394343,1294491529,100,100,100,100,22.79,23.28,23.06,23.15
-47916,18,107,18107,64,37,160082,160082,64,37,160082,160082,38124,16535,1309096742,1306941391,100,100,100,100,0.17,0.22,0.01,0.01
-47917,18,007,18007,318,124,35240367,35240367,491,206,102337582,102337582,8854,3937,1052852514,1052616479,64.77,60.19,34.44,34.44,3.59,3.15,3.35,3.35
-47917,18,171,18171,173,82,67097215,67097215,491,206,102337582,102337582,8508,3680,948986810,944520687,35.23,39.81,65.56,65.56,2.03,2.23,7.07,7.1
-47918,18,045,18045,4934,2208,222347821,220860765,6321,2768,379408002,376734329,17240,7865,1030503336,1024743543,78.06,79.77,58.6,58.63,28.62,28.07,21.58,21.55
-47918,18,157,18157,70,27,8839148,8839148,6321,2768,379408002,376734329,172780,71096,1303394343,1294491529,1.11,0.98,2.33,2.35,0.04,0.04,0.68,0.68
-47918,18,171,18171,1317,533,148221033,147034416,6321,2768,379408002,376734329,8508,3680,948986810,944520687,20.84,19.26,39.07,39.03,15.48,14.48,15.62,15.57
-47920,18,015,18015,83,42,1257615,1044688,2414,1033,74912270,73568825,20155,9472,971293833,964055949,3.44,4.07,1.68,1.42,0.41,0.44,0.13,0.11
-47920,18,157,18157,2076,897,55191181,54099155,2414,1033,74912270,73568825,172780,71096,1303394343,1294491529,86,86.83,73.67,73.54,1.2,1.26,4.23,4.18
-47920,18,181,18181,255,94,18463474,18424982,2414,1033,74912270,73568825,24643,12970,1317472923,1308266686,10.56,9.1,24.65,25.04,1.03,0.72,1.4,1.41
-47921,18,007,18007,946,443,55013586,55013586,1078,497,106184075,106184075,8854,3937,1052852514,1052616479,87.76,89.13,51.81,51.81,10.68,11.25,5.23,5.23
-47921,18,171,18171,132,54,51170489,51170489,1078,497,106184075,106184075,8508,3680,948986810,944520687,12.24,10.87,48.19,48.19,1.55,1.47,5.39,5.42
-47922,18,073,18073,51,20,23023625,22977220,1623,671,196363395,196087046,33478,13168,1453982070,1449421191,3.14,2.98,11.73,11.72,0.15,0.15,1.58,1.59
-47922,18,111,18111,1572,651,173339770,173109826,1623,671,196363395,196087046,14244,6030,1044899950,1040550429,96.86,97.02,88.27,88.28,11.04,10.8,16.59,16.64
-47923,18,015,18015,375,245,6510930,5813639,3494,1538,237902200,237135599,20155,9472,971293833,964055949,10.73,15.93,2.74,2.45,1.86,2.59,0.67,0.6
-47923,18,181,18181,3119,1293,231391270,231321960,3494,1538,237902200,237135599,24643,12970,1317472923,1308266686,89.27,84.07,97.26,97.55,12.66,9.97,17.56,17.68
-47924,18,157,18157,141,59,203478,203478,141,59,203478,203478,172780,71096,1303394343,1294491529,100,100,100,100,0.08,0.08,0.02,0.02
-47925,18,181,18181,203,127,1338748,1212885,203,127,1338748,1212885,24643,12970,1317472923,1308266686,100,100,100,100,0.82,0.98,0.1,0.09
-47926,18,015,18015,318,126,36465096,36141710,1097,466,96758241,96434855,20155,9472,971293833,964055949,28.99,27.04,37.69,37.48,1.58,1.33,3.75,3.75
-47926,18,181,18181,779,340,60293145,60293145,1097,466,96758241,96434855,24643,12970,1317472923,1308266686,71.01,72.96,62.31,62.52,3.16,2.62,4.58,4.61
-47928,18,165,18165,2047,917,113394426,112006019,2047,917,113394426,112006019,16212,7488,673216509,665311750,100,100,100,100,12.63,12.25,16.84,16.84
-47929,18,181,18181,774,335,109666558,109567471,774,335,109666558,109567471,24643,12970,1317472923,1308266686,100,100,100,100,3.14,2.58,8.32,8.38
-47930,18,107,18107,25,8,12352042,12352042,1094,454,66442029,66442029,38124,16535,1309096742,1306941391,2.29,1.76,18.59,18.59,0.07,0.05,0.94,0.95
-47930,18,157,18157,1069,446,54089987,54089987,1094,454,66442029,66442029,172780,71096,1303394343,1294491529,97.71,98.24,81.41,81.41,0.62,0.63,4.15,4.18
-47932,18,045,18045,4462,1973,178903132,176413531,5357,2389,284857214,281536427,17240,7865,1030503336,1024743543,83.29,82.59,62.8,62.66,25.88,25.09,17.36,17.22
-47932,18,165,18165,386,187,47194141,46927288,5357,2389,284857214,281536427,16212,7488,673216509,665311750,7.21,7.83,16.57,16.67,2.38,2.5,7.01,7.05
-47932,18,171,18171,509,229,58759941,58195608,5357,2389,284857214,281536427,8508,3680,948986810,944520687,9.5,9.59,20.63,20.67,5.98,6.22,6.19,6.16
-47933,18,011,18011,18,8,4914574,4914574,27937,12165,608371586,607501734,56640,22754,1096217005,1095338966,0.06,0.07,0.81,0.81,0.03,0.04,0.45,0.45
-47933,18,107,18107,27919,12157,603457012,602587160,27937,12165,608371586,607501734,38124,16535,1309096742,1306941391,99.94,99.93,99.19,99.19,73.23,73.52,46.1,46.11
-47940,18,107,18107,1433,588,105763840,105763840,1433,588,105763840,105763840,38124,16535,1309096742,1306941391,100,100,100,100,3.76,3.56,8.08,8.09
-47941,18,157,18157,1300,521,2050679,2050679,1300,521,2050679,2050679,172780,71096,1303394343,1294491529,100,100,100,100,0.75,0.73,0.16,0.16
-47942,18,007,18007,660,328,145642642,145632004,660,328,145642642,145632004,8854,3937,1052852514,1052616479,100,100,100,100,7.45,8.33,13.83,13.84
-47943,18,073,18073,702,241,82101103,82009815,932,324,162531380,162384160,33478,13168,1453982070,1449421191,75.32,74.38,50.51,50.5,2.1,1.83,5.65,5.66
-47943,18,111,18111,230,83,80430277,80374345,932,324,162531380,162384160,14244,6030,1044899950,1040550429,24.68,25.62,49.49,49.5,1.61,1.38,7.7,7.72
-47944,18,007,18007,3623,1604,481228803,481078507,3623,1604,481228803,481078507,8854,3937,1052852514,1052616479,100,100,100,100,40.92,40.74,45.71,45.7
-47946,18,073,18073,142,58,44483109,44483109,2044,861,239551737,239551737,33478,13168,1453982070,1449421191,6.95,6.74,18.57,18.57,0.42,0.44,3.06,3.07
-47946,18,131,18131,1902,803,195068628,195068628,2044,861,239551737,239551737,13402,6060,1125437524,1123145988,93.05,93.26,81.43,81.43,14.19,13.25,17.33,17.37
-47948,18,007,18007,35,13,21507101,21507101,1359,611,143131262,143131262,8854,3937,1052852514,1052616479,2.58,2.13,15.03,15.03,0.4,0.33,2.04,2.04
-47948,18,073,18073,158,61,45535308,45535308,1359,611,143131262,143131262,33478,13168,1453982070,1449421191,11.63,9.98,31.81,31.81,0.47,0.46,3.13,3.14
-47948,18,111,18111,1166,537,76088853,76088853,1359,611,143131262,143131262,14244,6030,1044899950,1040550429,85.8,87.89,53.16,53.16,8.19,8.91,7.28,7.31
-47949,18,045,18045,1332,573,108785834,108594291,1332,573,108785834,108594291,17240,7865,1030503336,1024743543,100,100,100,100,7.73,7.29,10.56,10.6
-47950,18,015,18015,67,22,9124202,9124202,912,382,97650640,97650640,20155,9472,971293833,964055949,7.35,5.76,9.34,9.34,0.33,0.23,0.94,0.95
-47950,18,181,18181,845,360,88526438,88526438,912,382,97650640,97650640,24643,12970,1317472923,1308266686,92.65,94.24,90.66,90.66,3.43,2.78,6.72,6.77
-47951,18,111,18111,2252,1014,167244898,167234546,2252,1014,167244898,167234546,14244,6030,1044899950,1040550429,100,100,100,100,15.81,16.82,16.01,16.07
-47952,18,045,18045,2109,1161,198716330,197229896,2798,1476,299778045,297242247,17240,7865,1030503336,1024743543,75.38,78.66,66.29,66.35,12.23,14.76,19.28,19.25
-47952,18,121,18121,689,315,101061715,100012351,2798,1476,299778045,297242247,17339,8085,1165440508,1151671026,24.62,21.34,33.71,33.65,3.97,3.9,8.67,8.68
-47954,18,107,18107,2177,978,168216194,168136863,2220,994,173934581,173855250,38124,16535,1309096742,1306941391,98.06,98.39,96.71,96.71,5.71,5.91,12.85,12.86
-47954,18,133,18133,43,16,5718387,5718387,2220,994,173934581,173855250,37963,14706,1250166809,1244562066,1.94,1.61,3.29,3.29,0.11,0.11,0.46,0.46
-47955,18,107,18107,1047,444,56463282,56463282,1088,459,64327148,64327148,38124,16535,1309096742,1306941391,96.23,96.73,87.78,87.78,2.75,2.69,4.31,4.32
-47955,18,157,18157,41,15,7863866,7863866,1088,459,64327148,64327148,172780,71096,1303394343,1294491529,3.77,3.27,12.22,12.22,0.02,0.02,0.6,0.61
-47957,18,073,18073,129,49,16064125,16064125,1894,822,153587937,153587937,33478,13168,1453982070,1449421191,6.81,5.96,10.46,10.46,0.39,0.37,1.1,1.11
-47957,18,131,18131,1765,773,137523812,137523812,1894,822,153587937,153587937,13402,6060,1125437524,1123145988,93.19,94.04,89.54,89.54,13.17,12.76,12.22,12.24
-47958,18,045,18045,209,105,1111690,1111690,209,105,1111690,1111690,17240,7865,1030503336,1024743543,100,100,100,100,1.21,1.34,0.11,0.11
-47959,18,073,18073,70,29,25113745,25113745,2822,1315,177704981,177196016,33478,13168,1453982070,1449421191,2.48,2.21,14.13,14.17,0.21,0.22,1.73,1.73
-47959,18,181,18181,2752,1286,152591236,152082271,2822,1315,177704981,177196016,24643,12970,1317472923,1308266686,97.52,97.79,85.87,85.83,11.17,9.92,11.58,11.62
-47960,18,015,18015,2084,1736,51931955,49091389,15003,9615,314591645,303522405,20155,9472,971293833,964055949,13.89,18.06,16.51,16.17,10.34,18.33,5.35,5.09
-47960,18,181,18181,12919,7879,262659690,254431016,15003,9615,314591645,303522405,24643,12970,1317472923,1308266686,86.11,81.94,83.49,83.83,52.42,60.75,19.94,19.45
-47963,18,111,18111,1949,911,271637347,268018946,1949,911,271637347,268018946,14244,6030,1044899950,1040550429,100,100,100,100,13.68,15.11,26,25.76
-47964,18,111,18111,122,57,386468,386468,122,57,386468,386468,14244,6030,1044899950,1040550429,100,100,100,100,0.86,0.95,0.04,0.04
-47965,18,107,18107,646,261,1058891,1058891,646,261,1058891,1058891,38124,16535,1309096742,1306941391,100,100,100,100,1.69,1.58,0.08,0.08
-47966,18,165,18165,461,213,2830560,2830560,461,213,2830560,2830560,16212,7488,673216509,665311750,100,100,100,100,2.84,2.84,0.42,0.43
-47967,18,107,18107,695,286,60864458,60864458,772,316,80714229,80714229,38124,16535,1309096742,1306941391,90.03,90.51,75.41,75.41,1.82,1.73,4.65,4.66
-47967,18,157,18157,77,30,19849771,19849771,772,316,80714229,80714229,172780,71096,1303394343,1294491529,9.97,9.49,24.59,24.59,0.04,0.04,1.52,1.53
-47968,18,011,18011,69,27,5847168,5844320,982,396,63227431,63224583,56640,22754,1096217005,1095338966,7.03,6.82,9.25,9.24,0.12,0.12,0.53,0.53
-47968,18,107,18107,913,369,57380263,57380263,982,396,63227431,63224583,38124,16535,1309096742,1306941391,92.97,93.18,90.75,90.76,2.39,2.23,4.38,4.39
-47969,18,045,18045,145,62,473016,473016,145,62,473016,473016,17240,7865,1030503336,1024743543,100,100,100,100,0.84,0.79,0.05,0.05
-47970,18,007,18007,1149,496,74200103,74200103,2034,851,152987692,151916263,8854,3937,1052852514,1052616479,56.49,58.28,48.5,48.84,12.98,12.6,7.05,7.05
-47970,18,157,18157,378,149,1854184,1854184,2034,851,152987692,151916263,172780,71096,1303394343,1294491529,18.58,17.51,1.21,1.22,0.22,0.21,0.14,0.14
-47970,18,171,18171,507,206,76933405,75861976,2034,851,152987692,151916263,8508,3680,948986810,944520687,24.93,24.21,50.29,49.94,5.96,5.6,8.11,8.03
-47971,18,007,18007,1865,829,144063653,143988552,1865,829,144063653,143988552,8854,3937,1052852514,1052616479,100,100,100,100,21.06,21.06,13.68,13.68
-47974,18,165,18165,1186,549,107497797,105986020,1186,549,107497797,105986020,16212,7488,673216509,665311750,100,100,100,100,7.32,7.33,15.97,15.93
-47975,18,007,18007,17,11,9762782,9762782,653,327,101048932,101048932,8854,3937,1052852514,1052616479,2.6,3.36,9.66,9.66,0.19,0.28,0.93,0.93
-47975,18,171,18171,636,316,91286150,91286150,653,327,101048932,101048932,8508,3680,948986810,944520687,97.4,96.64,90.34,90.34,7.48,8.59,9.62,9.66
-47977,18,007,18007,241,89,86193477,86193477,2206,974,216541473,216296638,8854,3937,1052852514,1052616479,10.92,9.14,39.8,39.85,2.72,2.26,8.19,8.19
-47977,18,073,18073,1965,885,130347996,130103161,2206,974,216541473,216296638,33478,13168,1453982070,1449421191,89.08,90.86,60.2,60.15,5.87,6.72,8.96,8.98
-47978,18,073,18073,11721,4640,646690762,645939388,11793,4672,667527545,666776171,33478,13168,1453982070,1449421191,99.39,99.32,96.88,96.87,35.01,35.24,44.48,44.57
-47978,18,111,18111,48,20,13761757,13761757,11793,4672,667527545,666776171,14244,6030,1044899950,1040550429,0.41,0.43,2.06,2.06,0.34,0.33,1.32,1.32
-47978,18,181,18181,24,12,7075026,7075026,11793,4672,667527545,666776171,24643,12970,1317472923,1308266686,0.2,0.26,1.06,1.06,0.1,0.09,0.54,0.54
-47980,18,181,18181,1096,478,143723015,143696081,1096,478,143723015,143696081,24643,12970,1317472923,1308266686,100,100,100,100,4.45,3.69,10.91,10.98
-47981,18,107,18107,42,15,4230385,4230385,849,333,94199347,94199347,38124,16535,1309096742,1306941391,4.95,4.5,4.49,4.49,0.11,0.09,0.32,0.32
-47981,18,157,18157,807,318,89968962,89968962,849,333,94199347,94199347,172780,71096,1303394343,1294491529,95.05,95.5,95.51,95.51,0.47,0.45,6.9,6.95
-47982,18,171,18171,143,70,360426,360426,143,70,360426,360426,8508,3680,948986810,944520687,100,100,100,100,1.68,1.9,0.04,0.04
-47983,18,157,18157,347,130,1294949,1294949,347,130,1294949,1294949,172780,71096,1303394343,1294491529,100,100,100,100,0.2,0.18,0.1,0.1
-47987,18,045,18045,4049,1783,320165513,320060354,4049,1783,320165513,320060354,17240,7865,1030503336,1024743543,100,100,100,100,23.49,22.67,31.07,31.23
-47989,18,107,18107,994,439,69580837,68374669,1281,572,110286739,108908440,38124,16535,1309096742,1306941391,77.6,76.75,63.09,62.78,2.61,2.65,5.32,5.23
-47989,18,121,18121,284,130,38016761,37844630,1281,572,110286739,108908440,17339,8085,1165440508,1151671026,22.17,22.73,34.47,34.75,1.64,1.61,3.26,3.29
-47989,18,133,18133,3,3,2689141,2689141,1281,572,110286739,108908440,37963,14706,1250166809,1244562066,0.23,0.52,2.44,2.47,0.01,0.02,0.22,0.22
-47990,18,107,18107,1627,715,111530295,111530295,1627,715,111530295,111530295,38124,16535,1309096742,1306941391,100,100,100,100,4.27,4.32,8.52,8.53
-47991,18,171,18171,1070,474,77812187,77740344,1070,474,77812187,77740344,8508,3680,948986810,944520687,100,100,100,100,12.58,12.88,8.2,8.23
-47992,18,157,18157,1465,574,95072106,94390220,1465,574,95072106,94390220,172780,71096,1303394343,1294491529,100,100,100,100,0.85,0.81,7.29,7.29
-47993,18,171,18171,3918,1674,368525814,366953913,3918,1674,368525814,366953913,8508,3680,948986810,944520687,100,100,100,100,46.05,45.49,38.83,38.85
-47994,18,107,18107,476,213,38011748,38011748,476,213,38011748,38011748,38124,16535,1309096742,1306941391,100,100,100,100,1.25,1.29,2.9,2.91
-47995,18,073,18073,31,14,4967874,4967874,1743,712,213440106,213331194,33478,13168,1453982070,1449421191,1.78,1.97,2.33,2.33,0.09,0.11,0.34,0.34
-47995,18,181,18181,1712,698,208472232,208363320,1743,712,213440106,213331194,24643,12970,1317472923,1308266686,98.22,98.03,97.67,97.67,6.95,5.38,15.82,15.93
-47997,18,015,18015,139,54,315328,315328,139,54,315328,315328,20155,9472,971293833,964055949,100,100,100,100,0.69,0.57,0.03,0.03
-48001,26,147,26147,11986,6130,61246453,49229944,11986,6130,61246453,49229944,163040,71822,2166542042,1867822812,100,100,100,100,7.35,8.53,2.83,2.64
-48002,26,147,26147,3285,1225,96171509,96152532,3285,1225,96171509,96152532,163040,71822,2166542042,1867822812,100,100,100,100,2.01,1.71,4.44,5.15
-48003,26,087,26087,6070,2372,85685819,85084237,6070,2372,85685819,85084237,88319,36332,1716759776,1665397257,100,100,100,100,6.87,6.53,4.99,5.11
-48005,26,099,26099,5379,1994,94628307,94471583,5379,1994,94628307,94471583,840978,356626,1478495863,1241183094,100,100,100,100,0.64,0.56,6.4,7.61
-48006,26,147,26147,4007,1577,186010549,185042702,4007,1577,186010549,185042702,163040,71822,2166542042,1867822812,100,100,100,100,2.46,2.2,8.59,9.91
-48009,26,125,26125,20107,9981,13116223,13084514,20107,9981,13116223,13084514,1202362,527255,2349881058,2247237402,100,100,100,100,1.67,1.89,0.56,0.58
-48014,26,087,26087,50,18,2369285,2366684,4256,1702,95303708,94767076,88319,36332,1716759776,1665397257,1.17,1.06,2.49,2.5,0.06,0.05,0.14,0.14
-48014,26,147,26147,4206,1684,92934423,92400392,4256,1702,95303708,94767076,163040,71822,2166542042,1867822812,98.83,98.94,97.51,97.5,2.58,2.34,4.29,4.95
-48015,26,099,26099,8257,3920,4424023,4424023,8257,3920,4424023,4424023,840978,356626,1478495863,1241183094,100,100,100,100,0.98,1.1,0.3,0.36
-48017,26,125,26125,11805,5754,5683647,5683647,11805,5754,5683647,5683647,1202362,527255,2349881058,2247237402,100,100,100,100,0.98,1.09,0.24,0.25
-48021,26,099,26099,32353,13753,13258521,13253190,32353,13753,13258521,13253190,840978,356626,1478495863,1241183094,100,100,100,100,3.85,3.86,0.9,1.07
-48022,26,147,26147,2654,980,91573334,91517376,2654,980,91573334,91517376,163040,71822,2166542042,1867822812,100,100,100,100,1.63,1.36,4.23,4.9
-48023,26,147,26147,5178,2269,44397769,44113316,5178,2269,44397769,44113316,163040,71822,2166542042,1867822812,100,100,100,100,3.18,3.16,2.05,2.36
-48025,26,125,26125,14543,5947,20835402,20795336,14543,5947,20835402,20795336,1202362,527255,2349881058,2247237402,100,100,100,100,1.21,1.13,0.89,0.93
-48026,26,099,26099,14480,6448,10766494,10725535,14480,6448,10766494,10725535,840978,356626,1478495863,1241183094,100,100,100,100,1.72,1.81,0.73,0.86
-48027,26,147,26147,3249,1249,96963052,96795690,3249,1249,96963052,96795690,163040,71822,2166542042,1867822812,100,100,100,100,1.99,1.74,4.48,5.18
-48028,26,147,26147,1190,1541,87249785,45944318,1190,1541,87249785,45944318,163040,71822,2166542042,1867822812,100,100,100,100,0.73,2.15,4.03,2.46
-48030,26,125,26125,16422,7611,7297399,7297399,16422,7611,7297399,7297399,1202362,527255,2349881058,2247237402,100,100,100,100,1.37,1.44,0.31,0.32
-48032,26,147,26147,1891,725,77381454,76856167,2322,880,97455721,96633255,163040,71822,2166542042,1867822812,81.44,82.39,79.4,79.53,1.16,1.01,3.57,4.11
-48032,26,151,26151,431,155,20074267,19777088,2322,880,97455721,96633255,43114,22725,4117929899,2493035045,18.56,17.61,20.6,20.47,1,0.68,0.49,0.79
-48033,26,125,26125,16064,8576,23230487,23215673,16064,8576,23230487,23215673,1202362,527255,2349881058,2247237402,100,100,100,100,1.34,1.63,0.99,1.03
-48034,26,125,26125,12590,8222,11188519,11188519,12590,8222,11188519,11188519,1202362,527255,2349881058,2247237402,100,100,100,100,1.05,1.56,0.48,0.5
-48035,26,099,26099,34788,15399,22873279,22772757,34788,15399,22873279,22772757,840978,356626,1478495863,1241183094,100,100,100,100,4.14,4.32,1.55,1.83
-48036,26,099,26099,20980,9942,22116162,21551261,20980,9942,22116162,21551261,840978,356626,1478495863,1241183094,100,100,100,100,2.49,2.79,1.5,1.74
-48038,26,099,26099,41057,19960,28435122,28395064,41057,19960,28435122,28395064,840978,356626,1478495863,1241183094,100,100,100,100,4.88,5.6,1.92,2.29
-48039,26,147,26147,7807,3541,64437936,59591930,7807,3541,64437936,59591930,163040,71822,2166542042,1867822812,100,100,100,100,4.79,4.93,2.97,3.19
-48040,26,147,26147,9956,4513,20453980,17895611,9956,4513,20453980,17895611,163040,71822,2166542042,1867822812,100,100,100,100,6.11,6.28,0.94,0.96
-48041,26,099,26099,848,374,3326239,3312524,4561,1791,103925296,103598457,840978,356626,1478495863,1241183094,18.59,20.88,3.2,3.2,0.1,0.1,0.22,0.27
-48041,26,147,26147,3713,1417,100599057,100285933,4561,1791,103925296,103598457,163040,71822,2166542042,1867822812,81.41,79.12,96.8,96.8,2.28,1.97,4.64,5.37
-48042,26,099,26099,27291,9515,58967849,58854197,27291,9515,58967849,58854197,840978,356626,1478495863,1241183094,100,100,100,100,3.25,2.67,3.99,4.74
-48043,26,099,26099,16305,7575,10955824,10615453,16305,7575,10955824,10615453,840978,356626,1478495863,1241183094,100,100,100,100,1.94,2.12,0.74,0.86
-48044,26,099,26099,52289,18070,35162700,34968458,52289,18070,35162700,34968458,840978,356626,1478495863,1241183094,100,100,100,100,6.22,5.07,2.38,2.82
-48045,26,099,26099,24604,12610,61744518,37852081,24604,12610,61744518,37852081,840978,356626,1478495863,1241183094,100,100,100,100,2.93,3.54,4.18,3.05
-48047,26,099,26099,39415,16310,60116431,46696164,39415,16310,60116431,46696164,840978,356626,1478495863,1241183094,100,100,100,100,4.69,4.57,4.07,3.76
-48048,26,099,26099,7548,2857,49667892,49265723,7548,2857,49667892,49265723,840978,356626,1478495863,1241183094,100,100,100,100,0.9,0.8,3.36,3.97
-48049,26,147,26147,5582,2185,93487498,92633721,5582,2185,93487498,92633721,163040,71822,2166542042,1867822812,100,100,100,100,3.42,3.04,4.32,4.96
-48050,26,099,26099,1653,658,48288455,48119193,1653,658,48288455,48119193,840978,356626,1478495863,1241183094,100,100,100,100,0.2,0.18,3.27,3.88
-48051,26,099,26099,17319,6187,39151514,39007428,17319,6187,39151514,39007428,840978,356626,1478495863,1241183094,100,100,100,100,2.06,1.73,2.65,3.14
-48054,26,147,26147,7339,3095,109290428,105189994,7339,3095,109290428,105189994,163040,71822,2166542042,1867822812,100,100,100,100,4.5,4.31,5.04,5.63
-48059,26,147,26147,15123,7135,100479526,81793580,15123,7135,100479526,81793580,163040,71822,2166542042,1867822812,100,100,100,100,9.28,9.93,4.64,4.38
-48060,26,147,26147,40831,18219,62033226,53993557,40831,18219,62033226,53993557,163040,71822,2166542042,1867822812,100,100,100,100,25.04,25.37,2.86,2.89
-48062,26,099,26099,9373,3733,102488995,102252058,9373,3733,102488995,102252058,840978,356626,1478495863,1241183094,100,100,100,100,1.11,1.05,6.93,8.24
-48063,26,147,26147,4070,1541,95956970,95186705,4070,1541,95956970,95186705,163040,71822,2166542042,1867822812,100,100,100,100,2.5,2.15,4.43,5.1
-48064,26,147,26147,4107,1595,96289481,95874688,4107,1595,96289481,95874688,163040,71822,2166542042,1867822812,100,100,100,100,2.52,2.22,4.44,5.13
-48065,26,099,26099,10547,4138,97931287,96830565,10547,4138,97931287,96830565,840978,356626,1478495863,1241183094,100,100,100,100,1.25,1.16,6.62,7.8
-48066,26,099,26099,47388,21303,25590409,25516402,47388,21303,25590409,25516402,840978,356626,1478495863,1241183094,100,100,100,100,5.63,5.97,1.73,2.06
-48067,26,125,26125,24458,13014,11891664,11888903,24458,13014,11891664,11888903,1202362,527255,2349881058,2247237402,100,100,100,100,2.03,2.47,0.51,0.53
-48069,26,125,26125,2526,1153,1396492,1396492,2526,1153,1396492,1396492,1202362,527255,2349881058,2247237402,100,100,100,100,0.21,0.22,0.06,0.06
-48070,26,125,26125,6238,2429,3857027,3847786,6238,2429,3857027,3847786,1202362,527255,2349881058,2247237402,100,100,100,100,0.52,0.46,0.16,0.17
-48071,26,125,26125,29694,13685,18374593,18374593,29694,13685,18374593,18374593,1202362,527255,2349881058,2247237402,100,100,100,100,2.47,2.6,0.78,0.82
-48072,26,125,26125,14970,6932,6220197,6220197,14970,6932,6220197,6220197,1202362,527255,2349881058,2247237402,100,100,100,100,1.25,1.31,0.26,0.28
-48073,26,125,26125,32798,17231,19104791,19104791,32798,17231,19104791,19104791,1202362,527255,2349881058,2247237402,100,100,100,100,2.73,3.27,0.81,0.85
-48074,26,147,26147,9356,3840,96823140,96025642,9356,3840,96823140,96025642,163040,71822,2166542042,1867822812,100,100,100,100,5.74,5.35,4.47,5.14
-48075,26,125,26125,21790,10162,19155677,19155677,21790,10162,19155677,19155677,1202362,527255,2349881058,2247237402,100,100,100,100,1.81,1.93,0.82,0.85
-48076,26,125,26125,25386,10730,18438102,18438102,25386,10730,18438102,18438102,1202362,527255,2349881058,2247237402,100,100,100,100,2.11,2.04,0.78,0.82
-48079,26,147,26147,12304,5264,111691378,108001453,12304,5264,111691378,108001453,163040,71822,2166542042,1867822812,100,100,100,100,7.55,7.33,5.16,5.78
-48080,26,099,26099,22494,11424,13210903,11325638,22494,11424,13210903,11325638,840978,356626,1478495863,1241183094,100,100,100,100,2.67,3.2,0.89,0.91
-48081,26,099,26099,20635,9463,13638960,10178038,20635,9463,13638960,10178038,840978,356626,1478495863,1241183094,100,100,100,100,2.45,2.65,0.92,0.82
-48082,26,099,26099,16549,7568,10499981,8542622,16549,7568,10499981,8542622,840978,356626,1478495863,1241183094,100,100,100,100,1.97,2.12,0.71,0.69
-48083,26,125,26125,22507,9682,22379873,22379873,22507,9682,22379873,22379873,1202362,527255,2349881058,2247237402,100,100,100,100,1.87,1.84,0.95,1
-48084,26,125,26125,14231,7017,16008059,16008059,14231,7017,16008059,16008059,1202362,527255,2349881058,2247237402,100,100,100,100,1.18,1.33,0.68,0.71
-48085,26,125,26125,24660,8768,24516578,24113159,24660,8768,24516578,24113159,1202362,527255,2349881058,2247237402,100,100,100,100,2.05,1.66,1.04,1.07
-48088,26,099,26099,22255,9569,11490620,11490620,22255,9569,11490620,11490620,840978,356626,1478495863,1241183094,100,100,100,100,2.65,2.68,0.78,0.93
-48089,26,099,26099,31978,13485,20628780,20623879,31978,13485,20628780,20623879,840978,356626,1478495863,1241183094,100,100,100,100,3.8,3.78,1.4,1.66
-48091,26,099,26099,31106,13354,20698268,20698268,31106,13354,20698268,20698268,840978,356626,1478495863,1241183094,100,100,100,100,3.7,3.74,1.4,1.67
-48092,26,099,26099,25680,10820,21307759,21213730,25680,10820,21307759,21213730,840978,356626,1478495863,1241183094,100,100,100,100,3.05,3.03,1.44,1.71
-48093,26,099,26099,23037,10710,14740762,14641248,23037,10710,14740762,14641248,840978,356626,1478495863,1241183094,100,100,100,100,2.74,3,1,1.18
-48094,26,099,26099,18028,7012,47760056,45382986,18028,7012,47760056,45382986,840978,356626,1478495863,1241183094,100,100,100,100,2.14,1.97,3.23,3.66
-48095,26,099,26099,4906,1876,44729776,43806880,4906,1876,44729776,43806880,840978,356626,1478495863,1241183094,100,100,100,100,0.58,0.53,3.03,3.53
-48096,26,099,26099,3739,1482,95037637,94741211,3739,1482,95037637,94741211,840978,356626,1478495863,1241183094,100,100,100,100,0.44,0.42,6.43,7.63
-48097,26,147,26147,4890,1961,154915192,153556362,5499,2190,198934852,197490979,163040,71822,2166542042,1867822812,88.93,89.54,77.87,77.75,3,2.73,7.15,8.22
-48097,26,151,26151,609,229,44019660,43934617,5499,2190,198934852,197490979,43114,22725,4117929899,2493035045,11.07,10.46,22.13,22.25,1.41,1.01,1.07,1.76
-48098,26,125,26125,19582,7440,24355070,24324089,19582,7440,24355070,24324089,1202362,527255,2349881058,2247237402,100,100,100,100,1.63,1.41,1.04,1.08
-48101,26,163,26163,28200,12202,18305112,18182907,28200,12202,18305112,18182907,1820584,821693,1742226922,1585280173,100,100,100,100,1.55,1.48,1.05,1.15
-48103,26,161,26161,53057,24430,169762931,168565141,53057,24430,169762931,168565141,344791,147573,1871057207,1828442046,100,100,100,100,15.39,16.55,9.07,9.22
-48104,26,161,26161,38315,16456,20780840,20140444,38315,16456,20780840,20140444,344791,147573,1871057207,1828442046,100,100,100,100,11.11,11.15,1.11,1.1
-48105,26,161,26161,33905,15614,131289226,129210895,33905,15614,131289226,129210895,344791,147573,1871057207,1828442046,100,100,100,100,9.83,10.58,7.02,7.07
-48108,26,161,26161,26164,11517,44061668,43961252,26164,11517,44061668,43961252,344791,147573,1871057207,1828442046,100,100,100,100,7.59,7.8,2.35,2.4
-48109,26,161,26161,6904,8,2529757,2529757,6904,8,2529757,2529757,344791,147573,1871057207,1828442046,100,100,100,100,2,0.01,0.14,0.14
-48111,26,115,26115,74,30,1116578,1116578,42313,19287,180706571,174712960,152021,62971,1761240519,1422924260,0.17,0.16,0.62,0.64,0.05,0.05,0.06,0.08
-48111,26,161,26161,204,76,2340316,2296324,42313,19287,180706571,174712960,344791,147573,1871057207,1828442046,0.48,0.39,1.3,1.31,0.06,0.05,0.13,0.13
-48111,26,163,26163,42035,19181,177249677,171300058,42313,19287,180706571,174712960,1820584,821693,1742226922,1585280173,99.34,99.45,98.09,98.05,2.31,2.33,10.17,10.81
-48114,26,093,26093,19702,7758,90018991,85529605,19702,7758,90018991,85529605,180967,72809,1516189327,1464001028,100,100,100,100,10.89,10.66,5.94,5.84
-48116,26,093,26093,26432,11400,103982193,94856643,26432,11400,103982193,94856643,180967,72809,1516189327,1464001028,100,100,100,100,14.61,15.66,6.86,6.48
-48117,26,115,26115,10124,4104,142944873,142093847,10124,4104,142944873,142093847,152021,62971,1761240519,1422924260,100,100,100,100,6.66,6.52,8.12,9.99
-48118,26,161,26161,12552,5465,238060932,227254391,12552,5465,238060932,227254391,344791,147573,1871057207,1828442046,100,100,100,100,3.64,3.7,12.72,12.43
-48120,26,163,26163,8274,2914,8402994,8253572,8274,2914,8402994,8253572,1820584,821693,1742226922,1585280173,100,100,100,100,0.45,0.35,0.48,0.52
-48122,26,163,26163,10727,4924,7154158,7055271,10727,4924,7154158,7055271,1820584,821693,1742226922,1585280173,100,100,100,100,0.59,0.6,0.41,0.45
-48124,26,163,26163,31732,14667,23049689,22934067,31732,14667,23049689,22934067,1820584,821693,1742226922,1585280173,100,100,100,100,1.74,1.78,1.32,1.45
-48125,26,163,26163,21273,9141,10490224,10489268,21273,9141,10490224,10489268,1820584,821693,1742226922,1585280173,100,100,100,100,1.17,1.11,0.6,0.66
-48126,26,163,26163,47465,15840,25626479,25386287,47465,15840,25626479,25386287,1820584,821693,1742226922,1585280173,100,100,100,100,2.61,1.93,1.47,1.6
-48127,26,163,26163,36501,14927,19946803,19924557,36501,14927,19946803,19924557,1820584,821693,1742226922,1585280173,100,100,100,100,2,1.82,1.14,1.26
-48128,26,163,26163,10682,4450,6257680,6123655,10682,4450,6257680,6123655,1820584,821693,1742226922,1585280173,100,100,100,100,0.59,0.54,0.36,0.39
-48130,26,161,26161,14420,5538,163758113,161130088,14420,5538,163758113,161130088,344791,147573,1871057207,1828442046,100,100,100,100,4.18,3.75,8.75,8.81
-48131,26,115,26115,6764,2846,130806841,129672962,6764,2846,130806841,129672962,152021,62971,1761240519,1422924260,100,100,100,100,4.45,4.52,7.43,9.11
-48133,26,115,26115,5753,2506,85198237,69548571,5753,2506,85198237,69548571,152021,62971,1761240519,1422924260,100,100,100,100,3.78,3.98,4.84,4.89
-48134,26,115,26115,725,374,7568550,7456303,21408,8416,47571057,46410603,152021,62971,1761240519,1422924260,3.39,4.44,15.91,16.07,0.48,0.59,0.43,0.52
-48134,26,163,26163,20683,8042,40002507,38954300,21408,8416,47571057,46410603,1820584,821693,1742226922,1585280173,96.61,95.56,84.09,83.93,1.14,0.98,2.3,2.46
-48135,26,163,26163,27665,11596,15198077,15198077,27665,11596,15198077,15198077,1820584,821693,1742226922,1585280173,100,100,100,100,1.52,1.41,0.87,0.96
-48137,26,093,26093,3417,1413,83957407,82247087,4796,2190,116220223,109908271,180967,72809,1516189327,1464001028,71.25,64.52,72.24,74.83,1.89,1.94,5.54,5.62
-48137,26,161,26161,1379,777,32262816,27661184,4796,2190,116220223,109908271,344791,147573,1871057207,1828442046,28.75,35.48,27.76,25.17,0.4,0.53,1.72,1.51
-48138,26,163,26163,10371,4465,27774649,23824274,10371,4465,27774649,23824274,1820584,821693,1742226922,1585280173,100,100,100,100,0.57,0.54,1.59,1.5
-48139,26,093,26093,206,100,1784366,1784366,206,100,1784366,1784366,180967,72809,1516189327,1464001028,100,100,100,100,0.11,0.14,0.12,0.12
-48140,26,115,26115,3095,1168,69215250,68941164,3095,1168,69215250,68941164,152021,62971,1761240519,1422924260,100,100,100,100,2.04,1.85,3.93,4.85
-48141,26,163,26163,25366,11645,16196138,16194528,25366,11645,16196138,16194528,1820584,821693,1742226922,1585280173,100,100,100,100,1.39,1.42,0.93,1.02
-48143,26,093,26093,32,17,19271,19271,32,17,19271,19271,180967,72809,1516189327,1464001028,100,100,100,100,0.02,0.02,0,0
-48144,26,115,26115,9952,3914,19716292,19670540,9952,3914,19716292,19670540,152021,62971,1761240519,1422924260,100,100,100,100,6.55,6.22,1.12,1.38
-48145,26,115,26115,3503,1429,44207690,43476238,3503,1429,44207690,43476238,152021,62971,1761240519,1422924260,100,100,100,100,2.3,2.27,2.51,3.06
-48146,26,163,26163,38098,16502,15203981,15202542,38098,16502,15203981,15202542,1820584,821693,1742226922,1585280173,100,100,100,100,2.09,2.01,0.87,0.96
-48150,26,163,26163,27127,11403,31449494,31043463,27127,11403,31449494,31043463,1820584,821693,1742226922,1585280173,100,100,100,100,1.49,1.39,1.81,1.96
-48152,26,163,26163,31173,13527,31401842,31368242,31173,13527,31401842,31368242,1820584,821693,1742226922,1585280173,100,100,100,100,1.71,1.65,1.8,1.98
-48154,26,163,26163,38642,15471,30092590,30085171,38642,15471,30092590,30085171,1820584,821693,1742226922,1585280173,100,100,100,100,2.12,1.88,1.73,1.9
-48157,26,115,26115,1436,702,2488137,2488137,1436,702,2488137,2488137,152021,62971,1761240519,1422924260,100,100,100,100,0.94,1.11,0.14,0.17
-48158,26,075,26075,52,21,4913680,4845067,7309,3205,247133404,243166774,160248,69458,1873846344,1817306121,0.71,0.66,1.99,1.99,0.03,0.03,0.26,0.27
-48158,26,161,26161,7257,3184,242219724,238321707,7309,3205,247133404,243166774,344791,147573,1871057207,1828442046,99.29,99.34,98.01,98.01,2.1,2.16,12.95,13.03
-48159,26,115,26115,2582,995,79157659,79099579,2582,995,79157659,79099579,152021,62971,1761240519,1422924260,100,100,100,100,1.7,1.58,4.49,5.56
-48160,26,115,26115,4740,1949,112241226,111770722,13785,5004,209472156,208512228,152021,62971,1761240519,1422924260,34.39,38.95,53.58,53.6,3.12,3.1,6.37,7.86
-48160,26,161,26161,9045,3055,97230930,96741506,13785,5004,209472156,208512228,344791,147573,1871057207,1828442046,65.61,61.05,46.42,46.4,2.62,2.07,5.2,5.29
-48161,26,115,26115,26470,11352,120816902,115923916,26470,11352,120816902,115923916,152021,62971,1761240519,1422924260,100,100,100,100,17.41,18.03,6.86,8.15
-48162,26,115,26115,29344,12591,151930190,148166694,29344,12591,151930190,148166694,152021,62971,1761240519,1422924260,100,100,100,100,19.3,19.99,8.63,10.41
-48164,26,115,26115,70,32,1145006,1145006,9175,3528,76499958,76119149,152021,62971,1761240519,1422924260,0.76,0.91,1.5,1.5,0.05,0.05,0.07,0.08
-48164,26,163,26163,9105,3496,75354952,74974143,9175,3528,76499958,76119149,1820584,821693,1742226922,1585280173,99.24,99.09,98.5,98.5,0.5,0.43,4.33,4.73
-48165,26,125,26125,6339,2698,24702045,24100791,6339,2698,24702045,24100791,1202362,527255,2349881058,2247237402,100,100,100,100,0.53,0.51,1.05,1.07
-48166,26,115,26115,11569,4666,72023434,68809558,11569,4666,72023434,68809558,152021,62971,1761240519,1422924260,100,100,100,100,7.61,7.41,4.09,4.84
-48167,26,125,26125,10711,4594,21363244,21290313,21534,10059,46578277,46056638,1202362,527255,2349881058,2247237402,49.74,45.67,45.87,46.23,0.89,0.87,0.91,0.95
-48167,26,161,26161,1339,602,9953966,9929318,21534,10059,46578277,46056638,344791,147573,1871057207,1828442046,6.22,5.98,21.37,21.56,0.39,0.41,0.53,0.54
-48167,26,163,26163,9484,4863,15261067,14837007,21534,10059,46578277,46056638,1820584,821693,1742226922,1585280173,44.04,48.34,32.76,32.21,0.52,0.59,0.88,0.94
-48168,26,161,26161,1399,549,24908621,24897028,21781,8502,53448214,52837702,344791,147573,1871057207,1828442046,6.42,6.46,46.6,47.12,0.41,0.37,1.33,1.36
-48168,26,163,26163,20382,7953,28539593,27940674,21781,8502,53448214,52837702,1820584,821693,1742226922,1585280173,93.58,93.54,53.4,52.88,1.12,0.97,1.64,1.76
-48169,26,093,26093,19791,8275,150900281,141023066,20813,8926,163054934,149366715,180967,72809,1516189327,1464001028,95.09,92.71,92.55,94.41,10.94,11.37,9.95,9.63
-48169,26,161,26161,1022,651,12154653,8343649,20813,8926,163054934,149366715,344791,147573,1871057207,1828442046,4.91,7.29,7.45,5.59,0.3,0.44,0.65,0.46
-48170,26,161,26161,1937,731,39938612,39644384,39963,17902,88988424,88448610,344791,147573,1871057207,1828442046,4.85,4.08,44.88,44.82,0.56,0.5,2.13,2.17
-48170,26,163,26163,38026,17171,49049812,48804226,39963,17902,88988424,88448610,1820584,821693,1742226922,1585280173,95.15,95.92,55.12,55.18,2.09,2.09,2.82,3.08
-48173,26,163,26163,12700,5311,35830617,30022088,12700,5311,35830617,30022088,1820584,821693,1742226922,1585280173,100,100,100,100,0.7,0.65,2.06,1.89
-48174,26,163,26163,31515,13063,107268878,106680136,31515,13063,107268878,106680136,1820584,821693,1742226922,1585280173,100,100,100,100,1.73,1.59,6.16,6.73
-48176,26,091,26091,29,9,652584,652584,21447,8322,193608548,192552563,99892,43452,1972038943,1941337767,0.14,0.11,0.34,0.34,0.03,0.02,0.03,0.03
-48176,26,161,26161,21418,8313,192955964,191899979,21447,8322,193608548,192552563,344791,147573,1871057207,1828442046,99.86,99.89,99.66,99.66,6.21,5.63,10.31,10.5
-48177,26,115,26115,218,88,1609885,1609885,218,88,1609885,1609885,152021,62971,1761240519,1422924260,100,100,100,100,0.14,0.14,0.09,0.11
-48178,26,093,26093,9137,3575,42056861,38860480,29320,11837,136055718,131199506,180967,72809,1516189327,1464001028,31.16,30.2,30.91,29.62,5.05,4.91,2.77,2.65
-48178,26,125,26125,18038,7453,49514261,48116167,29320,11837,136055718,131199506,1202362,527255,2349881058,2247237402,61.52,62.96,36.39,36.67,1.5,1.41,2.11,2.14
-48178,26,161,26161,2145,809,44484596,44222859,29320,11837,136055718,131199506,344791,147573,1871057207,1828442046,7.32,6.83,32.7,33.71,0.62,0.55,2.38,2.42
-48179,26,115,26115,3274,1349,64327650,52773357,3274,1349,64327650,52773357,152021,62971,1761240519,1422924260,100,100,100,100,2.15,2.14,3.65,3.71
-48180,26,163,26163,63131,26422,61212461,61116827,63131,26422,61212461,61116827,1820584,821693,1742226922,1585280173,100,100,100,100,3.47,3.22,3.51,3.86
-48182,26,115,26115,21708,8725,103147512,102686474,21708,8725,103147512,102686474,152021,62971,1761240519,1422924260,100,100,100,100,14.28,13.86,5.86,7.22
-48183,26,163,26163,43182,18812,50308293,48139682,43182,18812,50308293,48139682,1820584,821693,1742226922,1585280173,100,100,100,100,2.37,2.29,2.89,3.04
-48184,26,163,26163,17643,7846,18211764,18208616,17643,7846,18211764,18208616,1820584,821693,1742226922,1585280173,100,100,100,100,0.97,0.95,1.05,1.15
-48185,26,163,26163,47618,23922,31536280,31512594,47618,23922,31536280,31512594,1820584,821693,1742226922,1585280173,100,100,100,100,2.62,2.91,1.81,1.99
-48186,26,163,26163,36506,15301,21407102,21391213,36506,15301,21407102,21391213,1820584,821693,1742226922,1585280173,100,100,100,100,2.01,1.86,1.23,1.35
-48187,26,163,26163,49148,19185,46845743,46813620,49148,19185,46845743,46813620,1820584,821693,1742226922,1585280173,100,100,100,100,2.7,2.33,2.69,2.95
-48188,26,163,26163,41025,15644,46759198,46715127,41025,15644,46759198,46715127,1820584,821693,1742226922,1585280173,100,100,100,100,2.25,1.9,2.68,2.95
-48189,26,093,26093,6246,2725,30027226,27271534,13632,6005,94708097,88922681,180967,72809,1516189327,1464001028,45.82,45.38,31.71,30.67,3.45,3.74,1.98,1.86
-48189,26,161,26161,7386,3280,64680871,61651147,13632,6005,94708097,88922681,344791,147573,1871057207,1828442046,54.18,54.62,68.29,69.33,2.14,2.22,3.46,3.37
-48190,26,161,26161,107,49,914769,914769,107,49,914769,914769,344791,147573,1871057207,1828442046,100,100,100,100,0.03,0.03,0.05,0.05
-48191,26,115,26115,180,72,5087598,5087598,4054,1603,42293903,42127166,152021,62971,1761240519,1422924260,4.44,4.49,12.03,12.08,0.12,0.11,0.29,0.36
-48191,26,161,26161,3874,1531,37206305,37039568,4054,1603,42293903,42127166,344791,147573,1871057207,1828442046,95.56,95.51,87.97,87.92,1.12,1.04,1.99,2.03
-48192,26,163,26163,25883,12081,14098198,13720595,25883,12081,14098198,13720595,1820584,821693,1742226922,1585280173,100,100,100,100,1.42,1.47,0.81,0.87
-48193,26,163,26163,15623,6775,18853336,18194681,15623,6775,18853336,18194681,1820584,821693,1742226922,1585280173,100,100,100,100,0.86,0.82,1.08,1.15
-48195,26,163,26163,30047,13933,17684663,17672628,30047,13933,17684663,17672628,1820584,821693,1742226922,1585280173,100,100,100,100,1.65,1.7,1.02,1.11
-48197,26,161,26161,61132,26652,111762303,108555478,61132,26652,111762303,108555478,344791,147573,1871057207,1828442046,100,100,100,100,17.73,18.06,5.97,5.94
-48198,26,161,26161,38186,17593,89237503,86961286,38186,17593,89237503,86961286,344791,147573,1871057207,1828442046,100,100,100,100,11.08,11.92,4.77,4.76
-48201,26,163,26163,12814,9470,5193540,5193540,12814,9470,5193540,5193540,1820584,821693,1742226922,1585280173,100,100,100,100,0.7,1.15,0.3,0.33
-48202,26,163,26163,16603,10329,8616314,8616314,16603,10329,8616314,8616314,1820584,821693,1742226922,1585280173,100,100,100,100,0.91,1.26,0.49,0.54
-48203,26,163,26163,28409,15544,20774699,20756114,28409,15544,20774699,20756114,1820584,821693,1742226922,1585280173,100,100,100,100,1.56,1.89,1.19,1.31
-48204,26,163,26163,27997,15517,12980500,12980500,27997,15517,12980500,12980500,1820584,821693,1742226922,1585280173,100,100,100,100,1.54,1.89,0.75,0.82
-48205,26,163,26163,44045,18780,16531627,16531627,44045,18780,16531627,16531627,1820584,821693,1742226922,1585280173,100,100,100,100,2.42,2.29,0.95,1.04
-48206,26,163,26163,21954,13142,8095663,8095663,21954,13142,8095663,8095663,1820584,821693,1742226922,1585280173,100,100,100,100,1.21,1.6,0.46,0.51
-48207,26,163,26163,20252,12879,16582896,16061703,20252,12879,16582896,16061703,1820584,821693,1742226922,1585280173,100,100,100,100,1.11,1.57,0.95,1.01
-48208,26,163,26163,10234,5642,8190764,8190764,10234,5642,8190764,8190764,1820584,821693,1742226922,1585280173,100,100,100,100,0.56,0.69,0.47,0.52
-48209,26,163,26163,32262,12298,17849060,17501605,32262,12298,17849060,17501605,1820584,821693,1742226922,1585280173,100,100,100,100,1.77,1.5,1.02,1.1
-48210,26,163,26163,31017,12306,13057914,13057914,31017,12306,13057914,13057914,1820584,821693,1742226922,1585280173,100,100,100,100,1.7,1.5,0.75,0.82
-48211,26,163,26163,7082,3201,10848548,10848548,7082,3201,10848548,10848548,1820584,821693,1742226922,1585280173,100,100,100,100,0.39,0.39,0.62,0.68
-48212,26,163,26163,39038,15301,13880502,13854094,39038,15301,13880502,13854094,1820584,821693,1742226922,1585280173,100,100,100,100,2.14,1.86,0.8,0.87
-48213,26,163,26163,27712,13115,16923386,16923386,27712,13115,16923386,16923386,1820584,821693,1742226922,1585280173,100,100,100,100,1.52,1.6,0.97,1.07
-48214,26,163,26163,22759,13560,14579674,13014076,22759,13560,14579674,13014076,1820584,821693,1742226922,1585280173,100,100,100,100,1.25,1.65,0.84,0.82
-48215,26,163,26163,13565,7177,10395926,10395926,13565,7177,10395926,10395926,1820584,821693,1742226922,1585280173,100,100,100,100,0.75,0.87,0.6,0.66
-48216,26,163,26163,5645,2928,5747286,5747286,5645,2928,5747286,5747286,1820584,821693,1742226922,1585280173,100,100,100,100,0.31,0.36,0.33,0.36
-48217,26,163,26163,8210,3977,6047382,5921036,8210,3977,6047382,5921036,1820584,821693,1742226922,1585280173,100,100,100,100,0.45,0.48,0.35,0.37
-48218,26,163,26163,7903,3731,7160034,6872362,7903,3731,7160034,6872362,1820584,821693,1742226922,1585280173,100,100,100,100,0.43,0.45,0.41,0.43
-48219,26,163,26163,46931,22525,21778781,21773613,46931,22525,21778781,21773613,1820584,821693,1742226922,1585280173,100,100,100,100,2.58,2.74,1.25,1.37
-48220,26,125,26125,22319,11588,11479188,11479188,22319,11588,11479188,11479188,1202362,527255,2349881058,2247237402,100,100,100,100,1.86,2.2,0.49,0.51
-48221,26,163,26163,38727,17406,14121779,14119737,38727,17406,14121779,14119737,1820584,821693,1742226922,1585280173,100,100,100,100,2.13,2.12,0.81,0.89
-48223,26,163,26163,25336,12513,15679754,15679754,25336,12513,15679754,15679754,1820584,821693,1742226922,1585280173,100,100,100,100,1.39,1.52,0.9,0.99
-48224,26,163,26163,44439,19244,14852847,14852847,44439,19244,14852847,14852847,1820584,821693,1742226922,1585280173,100,100,100,100,2.44,2.34,0.85,0.94
-48225,26,163,26163,14554,6669,6854875,6854875,14554,6669,6854875,6854875,1820584,821693,1742226922,1585280173,100,100,100,100,0.8,0.81,0.39,0.43
-48226,26,163,26163,5302,4506,3197600,3197600,5302,4506,3197600,3197600,1820584,821693,1742226922,1585280173,100,100,100,100,0.29,0.55,0.18,0.2
-48227,26,163,26163,45380,21358,19504196,19504196,45380,21358,19504196,19504196,1820584,821693,1742226922,1585280173,100,100,100,100,2.49,2.6,1.12,1.23
-48228,26,163,26163,52130,24168,22299441,22299441,52130,24168,22299441,22299441,1820584,821693,1742226922,1585280173,100,100,100,100,2.86,2.94,1.28,1.41
-48229,26,163,26163,9556,4570,7308648,7303781,9556,4570,7308648,7303781,1820584,821693,1742226922,1585280173,100,100,100,100,0.52,0.56,0.42,0.46
-48230,26,163,26163,16976,7443,11361913,8360759,16976,7443,11361913,8360759,1820584,821693,1742226922,1585280173,100,100,100,100,0.93,0.91,0.65,0.53
-48233,26,163,26163,0,0,48551,48551,0,0,48551,48551,1820584,821693,1742226922,1585280173,0,0,100,100,0,0,0,0
-48234,26,163,26163,36140,16255,20288109,20288109,36140,16255,20288109,20288109,1820584,821693,1742226922,1585280173,100,100,100,100,1.99,1.98,1.16,1.28
-48235,26,163,26163,45063,20150,16189821,16189821,45063,20150,16189821,16189821,1820584,821693,1742226922,1585280173,100,100,100,100,2.48,2.45,0.93,1.02
-48236,26,099,26099,79,43,1275524,448887,30607,13059,22821454,19463663,840978,356626,1478495863,1241183094,0.26,0.33,5.59,2.31,0.01,0.01,0.09,0.04
-48236,26,163,26163,30528,13016,21545930,19014776,30607,13059,22821454,19463663,1820584,821693,1742226922,1585280173,99.74,99.67,94.41,97.69,1.68,1.58,1.24,1.2
-48237,26,125,26125,29319,12782,13341572,13341572,29319,12782,13341572,13341572,1202362,527255,2349881058,2247237402,100,100,100,100,2.44,2.42,0.57,0.59
-48238,26,163,26163,31743,17499,13974835,13974835,31743,17499,13974835,13974835,1820584,821693,1742226922,1585280173,100,100,100,100,1.74,2.13,0.8,0.88
-48239,26,163,26163,35524,15225,25286747,25193320,35524,15225,25286747,25193320,1820584,821693,1742226922,1585280173,100,100,100,100,1.95,1.85,1.45,1.59
-48240,26,163,26163,17722,7574,9695508,9695508,17722,7574,9695508,9695508,1820584,821693,1742226922,1585280173,100,100,100,100,0.97,0.92,0.56,0.61
-48242,26,163,26163,0,0,18396188,18054952,0,0,18396188,18054952,1820584,821693,1742226922,1585280173,0,0,100,100,0,0,1.06,1.14
-48243,26,163,26163,0,0,42722,42722,0,0,42722,42722,1820584,821693,1742226922,1585280173,0,0,100,100,0,0,0,0
-48301,26,125,26125,14127,5885,19645574,19082075,14127,5885,19645574,19082075,1202362,527255,2349881058,2247237402,100,100,100,100,1.17,1.12,0.84,0.85
-48302,26,125,26125,15360,6770,31788766,28779375,15360,6770,31788766,28779375,1202362,527255,2349881058,2247237402,100,100,100,100,1.28,1.28,1.35,1.28
-48304,26,125,26125,16009,7018,29521487,29280740,16009,7018,29521487,29280740,1202362,527255,2349881058,2247237402,100,100,100,100,1.33,1.33,1.26,1.3
-48306,26,099,26099,358,130,1049147,1043537,26691,9677,59133536,58870695,840978,356626,1478495863,1241183094,1.34,1.34,1.77,1.77,0.04,0.04,0.07,0.08
-48306,26,125,26125,26333,9547,58084389,57827158,26691,9677,59133536,58870695,1202362,527255,2349881058,2247237402,98.66,98.66,98.23,98.23,2.19,1.81,2.47,2.57
-48307,26,125,26125,41369,18704,39883962,39752809,41369,18704,39883962,39752809,1202362,527255,2349881058,2247237402,100,100,100,100,3.44,3.55,1.7,1.77
-48309,26,125,26125,29135,11386,40075095,40034011,29135,11386,40075095,40034011,1202362,527255,2349881058,2247237402,100,100,100,100,2.42,2.16,1.71,1.78
-48310,26,099,26099,42766,15512,21978211,21908557,42766,15512,21978211,21908557,840978,356626,1478495863,1241183094,100,100,100,100,5.09,4.35,1.49,1.77
-48312,26,099,26099,32720,14046,29333185,29136295,32720,14046,29333185,29136295,840978,356626,1478495863,1241183094,100,100,100,100,3.89,3.94,1.98,2.35
-48313,26,099,26099,33952,14193,23910457,23503570,33952,14193,23910457,23503570,840978,356626,1478495863,1241183094,100,100,100,100,4.04,3.98,1.62,1.89
-48314,26,099,26099,20245,8423,20050574,19963757,20245,8423,20050574,19963757,840978,356626,1478495863,1241183094,100,100,100,100,2.41,2.36,1.36,1.61
-48315,26,099,26099,26563,10429,33488861,33063561,26563,10429,33488861,33063561,840978,356626,1478495863,1241183094,100,100,100,100,3.16,2.92,2.27,2.66
-48316,26,099,26099,25404,10331,29389334,28762237,25404,10331,29389334,28762237,840978,356626,1478495863,1241183094,100,100,100,100,3.02,2.9,1.99,2.32
-48317,26,099,26099,26610,12010,32690197,31361812,26610,12010,32690197,31361812,840978,356626,1478495863,1241183094,100,100,100,100,3.16,3.37,2.21,2.53
-48320,26,125,26125,4589,2260,3627807,2832858,4589,2260,3627807,2832858,1202362,527255,2349881058,2247237402,100,100,100,100,0.38,0.43,0.15,0.13
-48322,26,125,26125,31265,12819,30619811,30447134,31265,12819,30619811,30447134,1202362,527255,2349881058,2247237402,100,100,100,100,2.6,2.43,1.3,1.35
-48323,26,125,26125,17708,6863,26154277,22625294,17708,6863,26154277,22625294,1202362,527255,2349881058,2247237402,100,100,100,100,1.47,1.3,1.11,1.01
-48324,26,125,26125,17350,6708,31479193,22267787,17350,6708,31479193,22267787,1202362,527255,2349881058,2247237402,100,100,100,100,1.44,1.27,1.34,0.99
-48326,26,125,26125,20298,10093,46357702,44779600,20298,10093,46357702,44779600,1202362,527255,2349881058,2247237402,100,100,100,100,1.69,1.91,1.97,1.99
-48327,26,125,26125,21559,9896,30612245,29357542,21559,9896,30612245,29357542,1202362,527255,2349881058,2247237402,100,100,100,100,1.79,1.88,1.3,1.31
-48328,26,125,26125,24960,11807,30076364,23415085,24960,11807,30076364,23415085,1202362,527255,2349881058,2247237402,100,100,100,100,2.08,2.24,1.28,1.04
-48329,26,125,26125,25009,10331,32062927,26456696,25009,10331,32062927,26456696,1202362,527255,2349881058,2247237402,100,100,100,100,2.08,1.96,1.36,1.18
-48331,26,125,26125,21503,8792,24086372,24056347,21503,8792,24086372,24056347,1202362,527255,2349881058,2247237402,100,100,100,100,1.79,1.67,1.03,1.07
-48334,26,125,26125,18540,8552,23313863,23280642,18540,8552,23313863,23280642,1202362,527255,2349881058,2247237402,100,100,100,100,1.54,1.62,0.99,1.04
-48335,26,125,26125,22398,11309,19528667,19519357,22398,11309,19528667,19519357,1202362,527255,2349881058,2247237402,100,100,100,100,1.86,2.14,0.83,0.87
-48336,26,125,26125,25486,11683,23545178,23545178,25486,11683,23545178,23545178,1202362,527255,2349881058,2247237402,100,100,100,100,2.12,2.22,1,1.05
-48340,26,125,26125,24307,10981,19674044,19451041,24307,10981,19674044,19451041,1202362,527255,2349881058,2247237402,100,100,100,100,2.02,2.08,0.84,0.87
-48341,26,125,26125,17139,7857,17176192,16553506,17139,7857,17176192,16553506,1202362,527255,2349881058,2247237402,100,100,100,100,1.43,1.49,0.73,0.74
-48342,26,125,26125,18407,8407,14987212,14852162,18407,8407,14987212,14852162,1202362,527255,2349881058,2247237402,100,100,100,100,1.53,1.59,0.64,0.66
-48346,26,125,26125,22567,9582,48775803,46526882,22567,9582,48775803,46526882,1202362,527255,2349881058,2247237402,100,100,100,100,1.88,1.82,2.08,2.07
-48348,26,125,26125,23387,8551,88201017,85808148,23387,8551,88201017,85808148,1202362,527255,2349881058,2247237402,100,100,100,100,1.95,1.62,3.75,3.82
-48350,26,125,26125,7100,2727,63943639,61607645,7100,2727,63943639,61607645,1202362,527255,2349881058,2247237402,100,100,100,100,0.59,0.52,2.72,2.74
-48353,26,093,26093,6481,2553,36383743,34675444,6481,2553,36383743,34675444,180967,72809,1516189327,1464001028,100,100,100,100,3.58,3.51,2.4,2.37
-48356,26,125,26125,8407,3434,40334244,36733900,8407,3434,40334244,36733900,1202362,527255,2349881058,2247237402,100,100,100,100,0.7,0.65,1.72,1.63
-48357,26,125,26125,8170,3279,31968447,30436623,8170,3279,31968447,30436623,1202362,527255,2349881058,2247237402,100,100,100,100,0.68,0.62,1.36,1.35
-48359,26,125,26125,8044,3291,28664176,27891596,8044,3291,28664176,27891596,1202362,527255,2349881058,2247237402,100,100,100,100,0.67,0.62,1.22,1.24
-48360,26,125,26125,11651,4393,32999018,30939560,11651,4393,32999018,30939560,1202362,527255,2349881058,2247237402,100,100,100,100,0.97,0.83,1.4,1.38
-48362,26,125,26125,15141,6177,29610449,25688754,15141,6177,29610449,25688754,1202362,527255,2349881058,2247237402,100,100,100,100,1.26,1.17,1.26,1.14
-48363,26,125,26125,4978,1916,53161964,52310794,4978,1916,53161964,52310794,1202362,527255,2349881058,2247237402,100,100,100,100,0.41,0.36,2.26,2.33
-48367,26,125,26125,4727,1942,63253866,60738183,4727,1942,63253866,60738183,1202362,527255,2349881058,2247237402,100,100,100,100,0.39,0.37,2.69,2.7
-48370,26,125,26125,1685,630,31286179,30968042,1685,630,31286179,30968042,1202362,527255,2349881058,2247237402,100,100,100,100,0.14,0.12,1.33,1.38
-48371,26,087,26087,317,123,7021418,6971570,23155,8824,114813012,110655621,88319,36332,1716759776,1665397257,1.37,1.39,6.12,6.3,0.36,0.34,0.41,0.42
-48371,26,125,26125,22838,8701,107791594,103684051,23155,8824,114813012,110655621,1202362,527255,2349881058,2247237402,98.63,98.61,93.88,93.7,1.9,1.65,4.59,4.61
-48374,26,125,26125,14049,4704,23817759,23521854,14049,4704,23817759,23521854,1202362,527255,2349881058,2247237402,100,100,100,100,1.17,0.89,1.01,1.05
-48375,26,125,26125,21801,9422,22304590,22224685,21801,9422,22304590,22224685,1202362,527255,2349881058,2247237402,100,100,100,100,1.81,1.79,0.95,0.99
-48377,26,125,26125,15244,8161,27178640,24977248,15244,8161,27178640,24977248,1202362,527255,2349881058,2247237402,100,100,100,100,1.27,1.55,1.16,1.11
-48380,26,093,26093,1725,603,18821167,18483963,7404,2676,69919733,65730039,180967,72809,1516189327,1464001028,23.3,22.53,26.92,28.12,0.95,0.83,1.24,1.26
-48380,26,125,26125,5679,2073,51098566,47246076,7404,2676,69919733,65730039,1202362,527255,2349881058,2247237402,76.7,77.47,73.08,71.88,0.47,0.39,2.17,2.1
-48381,26,125,26125,12605,5369,53820963,51852337,12605,5369,53820963,51852337,1202362,527255,2349881058,2247237402,100,100,100,100,1.05,1.02,2.29,2.31
-48382,26,125,26125,21945,8075,47511348,42605404,21945,8075,47511348,42605404,1202362,527255,2349881058,2247237402,100,100,100,100,1.83,1.53,2.02,1.9
-48383,26,125,26125,12701,4827,41075346,38623150,12701,4827,41075346,38623150,1202362,527255,2349881058,2247237402,100,100,100,100,1.06,0.92,1.75,1.72
-48386,26,125,26125,17434,7423,49574886,43311680,17434,7423,49574886,43311680,1202362,527255,2349881058,2247237402,100,100,100,100,1.45,1.41,2.11,1.93
-48390,26,125,26125,22898,10464,34986089,32461268,22898,10464,34986089,32461268,1202362,527255,2349881058,2247237402,100,100,100,100,1.9,1.98,1.49,1.44
-48393,26,125,26125,16111,7640,34917912,34281698,16111,7640,34917912,34281698,1202362,527255,2349881058,2247237402,100,100,100,100,1.34,1.45,1.49,1.53
-48397,26,099,26099,0,0,462102,462102,0,0,462102,462102,840978,356626,1478495863,1241183094,0,0,100,100,0,0,0.03,0.04
-48401,26,151,26151,1439,794,85900618,85733536,1439,794,85900618,85733536,43114,22725,4117929899,2493035045,100,100,100,100,3.34,3.49,2.09,3.44
-48411,26,049,26049,156,73,1776168,1569139,156,73,1776168,1569139,425790,192180,1682422596,1649763682,100,100,100,100,0.04,0.04,0.11,0.1
-48412,26,087,26087,5682,2421,132214588,129129963,5682,2421,132214588,129129963,88319,36332,1716759776,1665397257,100,100,100,100,6.43,6.66,7.7,7.75
-48413,26,063,26063,7551,3445,357890131,356208817,7551,3445,357890131,356208817,33118,21199,5534293780,2164469622,100,100,100,100,22.8,16.25,6.47,16.46
-48414,26,155,26155,2492,1047,86065880,83344446,2492,1047,86065880,83344446,70648,30319,1401047133,1374422924,100,100,100,100,3.53,3.45,6.14,6.06
-48415,26,049,26049,173,65,3928418,3928418,9471,3903,169580626,169210525,425790,192180,1682422596,1649763682,1.83,1.67,2.32,2.32,0.04,0.03,0.23,0.24
-48415,26,145,26145,9143,3784,160788605,160419761,9471,3903,169580626,169210525,200169,86844,2113341368,2072284641,96.54,96.95,94.82,94.8,4.57,4.36,7.61,7.74
-48415,26,157,26157,155,54,4863603,4862346,9471,3903,169580626,169210525,55729,24451,2367017962,2080088206,1.64,1.38,2.87,2.87,0.28,0.22,0.21,0.23
-48416,26,087,26087,1648,675,118564855,116621044,5002,2067,292357528,290258693,88319,36332,1716759776,1665397257,32.95,32.66,40.55,40.18,1.87,1.86,6.91,7
-48416,26,147,26147,243,104,18426176,18426176,5002,2067,292357528,290258693,163040,71822,2166542042,1867822812,4.86,5.03,6.3,6.35,0.15,0.14,0.85,0.99
-48416,26,151,26151,3111,1288,155366497,155211473,5002,2067,292357528,290258693,43114,22725,4117929899,2493035045,62.2,62.31,53.14,53.47,7.22,5.67,3.77,6.23
-48417,26,145,26145,2983,1170,64237881,63850523,2983,1170,64237881,63850523,200169,86844,2113341368,2072284641,100,100,100,100,1.49,1.35,3.04,3.08
-48418,26,049,26049,1313,536,24922454,23987703,4312,1705,102338576,100270865,425790,192180,1682422596,1649763682,30.45,31.44,24.35,23.92,0.31,0.28,1.48,1.45
-48418,26,093,26093,411,148,8400303,8355170,4312,1705,102338576,100270865,180967,72809,1516189327,1464001028,9.53,8.68,8.21,8.33,0.23,0.2,0.55,0.57
-48418,26,155,26155,2588,1021,69015819,67927992,4312,1705,102338576,100270865,70648,30319,1401047133,1374422924,60.02,59.88,67.44,67.74,3.66,3.37,4.93,4.94
-48419,26,151,26151,2740,1528,202902341,200326960,2740,1528,202902341,200326960,43114,22725,4117929899,2493035045,100,100,100,100,6.36,6.72,4.93,8.04
-48420,26,049,26049,21483,9034,161776510,161195259,22078,9284,167798960,167217709,425790,192180,1682422596,1649763682,97.31,97.31,96.41,96.4,5.05,4.7,9.62,9.77
-48420,26,145,26145,28,14,347061,347061,22078,9284,167798960,167217709,200169,86844,2113341368,2072284641,0.13,0.15,0.21,0.21,0.01,0.02,0.02,0.02
-48420,26,157,26157,567,236,5675389,5675389,22078,9284,167798960,167217709,55729,24451,2367017962,2080088206,2.57,2.54,3.38,3.39,1.02,0.97,0.24,0.27
-48421,26,049,26049,155,66,4166228,3963336,6647,2910,113320801,105071027,425790,192180,1682422596,1649763682,2.33,2.27,3.68,3.77,0.04,0.03,0.25,0.24
-48421,26,087,26087,6492,2844,109154573,101107691,6647,2910,113320801,105071027,88319,36332,1716759776,1665397257,97.67,97.73,96.32,96.23,7.35,7.83,6.36,6.07
-48422,26,151,26151,6400,2815,249441574,248471072,6400,2815,249441574,248471072,43114,22725,4117929899,2493035045,100,100,100,100,14.84,12.39,6.06,9.97
-48423,26,049,26049,32670,14446,170595697,166938230,32708,14465,173545351,169881337,425790,192180,1682422596,1649763682,99.88,99.87,98.3,98.27,7.67,7.52,10.14,10.12
-48423,26,087,26087,38,19,2949654,2943107,32708,14465,173545351,169881337,88319,36332,1716759776,1665397257,0.12,0.13,1.7,1.73,0.04,0.05,0.17,0.18
-48426,26,151,26151,1022,462,101720812,101473904,1022,462,101720812,101473904,43114,22725,4117929899,2493035045,100,100,100,100,2.37,2.03,2.47,4.07
-48427,26,151,26151,2879,1678,253926682,249890226,2879,1678,253926682,249890226,43114,22725,4117929899,2493035045,100,100,100,100,6.68,7.38,6.17,10.02
-48428,26,087,26087,5017,1969,89929364,86109917,5027,1972,91054682,87235235,88319,36332,1716759776,1665397257,99.8,99.85,98.76,98.71,5.68,5.42,5.24,5.17
-48428,26,125,26125,10,3,1125318,1125318,5027,1972,91054682,87235235,1202362,527255,2349881058,2247237402,0.2,0.15,1.24,1.29,0,0,0.05,0.05
-48429,26,049,26049,225,97,4325327,4208694,8944,4283,142227573,140531377,425790,192180,1682422596,1649763682,2.52,2.26,3.04,2.99,0.05,0.05,0.26,0.26
-48429,26,155,26155,8719,4186,137902246,136322683,8944,4283,142227573,140531377,70648,30319,1401047133,1374422924,97.48,97.74,96.96,97.01,12.34,13.81,9.84,9.92
-48430,26,049,26049,21889,10167,58258786,49817327,36738,15812,230296720,214859411,425790,192180,1682422596,1649763682,59.58,64.3,25.3,23.19,5.14,5.29,3.46,3.02
-48430,26,093,26093,13750,5222,151061998,145484035,36738,15812,230296720,214859411,180967,72809,1516189327,1464001028,37.43,33.03,65.59,67.71,7.6,7.17,9.96,9.94
-48430,26,125,26125,1099,423,20975936,19558049,36738,15812,230296720,214859411,1202362,527255,2349881058,2247237402,2.99,2.68,9.11,9.1,0.09,0.08,0.89,0.87
-48432,26,063,26063,636,312,87257257,86470726,636,312,87257257,86470726,33118,21199,5534293780,2164469622,100,100,100,100,1.92,1.47,1.58,4
-48433,26,049,26049,26431,11183,137962958,136375245,26497,11214,145377792,143788223,425790,192180,1682422596,1649763682,99.75,99.72,94.9,94.84,6.21,5.82,8.2,8.27
-48433,26,155,26155,66,31,7414834,7412978,26497,11214,145377792,143788223,70648,30319,1401047133,1374422924,0.25,0.28,5.1,5.16,0.09,0.1,0.53,0.54
-48434,26,151,26151,104,150,1414682,1414682,104,150,1414682,1414682,43114,22725,4117929899,2493035045,100,100,100,100,0.24,0.66,0.03,0.06
-48435,26,087,26087,893,358,32474976,32249214,2083,827,65148159,64858624,88319,36332,1716759776,1665397257,42.87,43.29,49.85,49.72,1.01,0.99,1.89,1.94
-48435,26,157,26157,1190,469,32673183,32609410,2083,827,65148159,64858624,55729,24451,2367017962,2080088206,57.13,56.71,50.15,50.28,2.14,1.92,1.38,1.57
-48436,26,049,26049,3644,1393,78257424,78043779,3764,1438,82772785,82559140,425790,192180,1682422596,1649763682,96.81,96.87,94.54,94.53,0.86,0.72,4.65,4.73
-48436,26,155,26155,120,45,4515361,4515361,3764,1438,82772785,82559140,70648,30319,1401047133,1374422924,3.19,3.13,5.46,5.47,0.17,0.15,0.32,0.33
-48437,26,049,26049,581,293,1917323,1528712,581,293,1917323,1528712,425790,192180,1682422596,1649763682,100,100,100,100,0.14,0.15,0.11,0.09
-48438,26,049,26049,5843,2104,59369372,57948920,6951,2514,85395893,79245942,425790,192180,1682422596,1649763682,84.06,83.69,69.52,73.13,1.37,1.09,3.53,3.51
-48438,26,087,26087,1108,410,26026521,21297022,6951,2514,85395893,79245942,88319,36332,1716759776,1665397257,15.94,16.31,30.48,26.87,1.25,1.13,1.52,1.28
-48439,26,049,26049,48849,20686,136335567,135098313,49209,20906,138267139,137029885,425790,192180,1682422596,1649763682,99.27,98.95,98.6,98.59,11.47,10.76,8.1,8.19
-48439,26,125,26125,360,220,1931572,1931572,49209,20906,138267139,137029885,1202362,527255,2349881058,2247237402,0.73,1.05,1.4,1.41,0.03,0.04,0.08,0.09
-48440,26,087,26087,157,72,1852053,1852053,157,72,1852053,1852053,88319,36332,1716759776,1665397257,100,100,100,100,0.18,0.2,0.11,0.11
-48441,26,063,26063,4039,2378,286320210,257886947,4085,2447,293277631,262575960,33118,21199,5534293780,2164469622,98.87,97.18,97.63,98.21,12.2,11.22,5.17,11.91
-48441,26,151,26151,46,69,6957421,4689013,4085,2447,293277631,262575960,43114,22725,4117929899,2493035045,1.13,2.82,2.37,1.79,0.11,0.3,0.17,0.19
-48442,26,049,26049,1192,583,5605040,5470683,20669,8700,230732961,221106779,425790,192180,1682422596,1649763682,5.77,6.7,2.43,2.47,0.28,0.3,0.33,0.33
-48442,26,093,26093,244,87,2460883,2448556,20669,8700,230732961,221106779,180967,72809,1516189327,1464001028,1.18,1,1.07,1.11,0.13,0.12,0.16,0.17
-48442,26,125,26125,19233,8030,222667038,213187540,20669,8700,230732961,221106779,1202362,527255,2349881058,2247237402,93.05,92.3,96.5,96.42,1.6,1.52,9.48,9.49
-48444,26,087,26087,9254,3773,199132909,197835085,9327,3805,210429697,209131873,88319,36332,1716759776,1665397257,99.22,99.16,94.63,94.6,10.48,10.38,11.6,11.88
-48444,26,147,26147,73,32,11296788,11296788,9327,3805,210429697,209131873,163040,71822,2166542042,1867822812,0.78,0.84,5.37,5.4,0.04,0.04,0.52,0.6
-48445,26,063,26063,1370,693,146355237,145558116,1370,693,146355237,145558116,33118,21199,5534293780,2164469622,100,100,100,100,4.14,3.27,2.64,6.72
-48446,26,087,26087,30749,12844,325420971,309671037,30749,12844,325420971,309671037,88319,36332,1716759776,1665397257,100,100,100,100,34.82,35.35,18.96,18.59
-48449,26,049,26049,1248,541,18332519,18227701,3147,1316,66406250,66269922,425790,192180,1682422596,1649763682,39.66,41.11,27.61,27.51,0.29,0.28,1.09,1.1
-48449,26,155,26155,1899,775,48073731,48042221,3147,1316,66406250,66269922,70648,30319,1401047133,1374422924,60.34,58.89,72.39,72.49,2.69,2.56,3.43,3.5
-48450,26,151,26151,4780,4194,63687917,57618695,4780,4194,63687917,57618695,43114,22725,4117929899,2493035045,100,100,100,100,11.09,18.46,1.55,2.31
-48451,26,049,26049,13968,5642,68549269,63163241,14767,5950,93731840,87484496,425790,192180,1682422596,1649763682,94.59,94.82,73.13,72.2,3.28,2.94,4.07,3.83
-48451,26,093,26093,799,308,25182571,24321255,14767,5950,93731840,87484496,180967,72809,1516189327,1464001028,5.41,5.18,26.87,27.8,0.44,0.42,1.66,1.66
-48453,26,087,26087,248,107,26088909,26042487,5146,2207,277826765,277288365,88319,36332,1716759776,1665397257,4.82,4.85,9.39,9.39,0.28,0.29,1.52,1.56
-48453,26,151,26151,4626,1975,234126610,233979299,5146,2207,277826765,277288365,43114,22725,4117929899,2493035045,89.9,89.49,84.27,84.38,10.73,8.69,5.69,9.39
-48453,26,157,26157,272,125,17611246,17266579,5146,2207,277826765,277288365,55729,24451,2367017962,2080088206,5.29,5.66,6.34,6.23,0.49,0.51,0.74,0.83
-48454,26,151,26151,1324,551,78101167,78076172,1324,551,78101167,78076172,43114,22725,4117929899,2493035045,100,100,100,100,3.07,2.42,1.9,3.13
-48455,26,087,26087,7974,3331,174786544,168324305,7974,3331,174786544,168324305,88319,36332,1716759776,1665397257,100,100,100,100,9.03,9.17,10.18,10.11
-48456,26,063,26063,121,56,24280596,24268759,858,438,120273837,120224137,33118,21199,5534293780,2164469622,14.1,12.79,20.19,20.19,0.37,0.26,0.44,1.12
-48456,26,151,26151,737,382,95993241,95955378,858,438,120273837,120224137,43114,22725,4117929899,2493035045,85.9,87.21,79.81,79.81,1.71,1.68,2.33,3.85
-48457,26,049,26049,6987,2769,84201985,83181664,8436,3304,115941029,113685283,425790,192180,1682422596,1649763682,82.82,83.81,72.62,73.17,1.64,1.44,5,5.04
-48457,26,145,26145,1449,535,31739044,30503619,8436,3304,115941029,113685283,200169,86844,2113341368,2072284641,17.18,16.19,27.38,26.83,0.72,0.62,1.5,1.47
-48458,26,049,26049,20538,9586,91248768,90862506,20538,9586,91248768,90862506,425790,192180,1682422596,1649763682,100,100,100,100,4.82,4.99,5.42,5.51
-48460,26,145,26145,852,347,36998298,35980699,2330,972,88390285,87285213,200169,86844,2113341368,2072284641,36.57,35.7,41.86,41.22,0.43,0.4,1.75,1.74
-48460,26,155,26155,1478,625,51391987,51304514,2330,972,88390285,87285213,70648,30319,1401047133,1374422924,63.43,64.3,58.14,58.78,2.09,2.06,3.67,3.73
-48461,26,087,26087,8428,3197,218274473,216596136,8428,3197,218274473,216596136,88319,36332,1716759776,1665397257,100,100,100,100,9.54,8.8,12.71,13.01
-48462,26,049,26049,127,46,1193632,1184008,13266,4977,126641911,123305612,425790,192180,1682422596,1649763682,0.96,0.92,0.94,0.96,0.03,0.02,0.07,0.07
-48462,26,087,26087,589,250,13796358,13200498,13266,4977,126641911,123305612,88319,36332,1716759776,1665397257,4.44,5.02,10.89,10.71,0.67,0.69,0.8,0.79
-48462,26,125,26125,12550,4681,111651921,108921106,13266,4977,126641911,123305612,1202362,527255,2349881058,2247237402,94.6,94.05,88.16,88.33,1.04,0.89,4.75,4.85
-48463,26,049,26049,4627,1924,92122505,90517023,4627,1924,92122505,90517023,425790,192180,1682422596,1649763682,100,100,100,100,1.09,1,5.48,5.49
-48464,26,049,26049,183,70,3424615,3235948,2231,1013,49928143,47959864,425790,192180,1682422596,1649763682,8.2,6.91,6.86,6.75,0.04,0.04,0.2,0.2
-48464,26,087,26087,1744,772,36178604,35052515,2231,1013,49928143,47959864,88319,36332,1716759776,1665397257,78.17,76.21,72.46,73.09,1.97,2.12,2.11,2.1
-48464,26,157,26157,304,171,10324924,9671401,2231,1013,49928143,47959864,55729,24451,2367017962,2080088206,13.63,16.88,20.68,20.17,0.55,0.7,0.44,0.46
-48465,26,151,26151,629,471,107727427,106337850,629,471,107727427,106337850,43114,22725,4117929899,2493035045,100,100,100,100,1.46,2.07,2.62,4.27
-48466,26,151,26151,1578,692,95277824,95267415,1578,692,95277824,95267415,43114,22725,4117929899,2493035045,100,100,100,100,3.66,3.05,2.31,3.82
-48467,26,063,26063,2337,2922,186281105,164406003,2337,2922,186281105,164406003,33118,21199,5534293780,2164469622,100,100,100,100,7.06,13.78,3.37,7.6
-48468,26,063,26063,1294,1190,188732773,164955187,1294,1190,188732773,164955187,33118,21199,5534293780,2164469622,100,100,100,100,3.91,5.61,3.41,7.62
-48469,26,151,26151,1245,1035,23401715,20426607,1245,1035,23401715,20426607,43114,22725,4117929899,2493035045,100,100,100,100,2.89,4.55,0.57,0.82
-48470,26,063,26063,784,356,103659805,103617380,784,356,103659805,103617380,33118,21199,5534293780,2164469622,100,100,100,100,2.37,1.68,1.87,4.79
-48471,26,151,26151,5745,2608,261365924,261257475,5745,2608,261365924,261257475,43114,22725,4117929899,2493035045,100,100,100,100,13.33,11.48,6.35,10.48
-48472,26,151,26151,1912,861,197804738,197710183,1912,861,197804738,197710183,43114,22725,4117929899,2493035045,100,100,100,100,4.43,3.79,4.8,7.93
-48473,26,049,26049,22507,9412,153068596,152755827,22507,9412,153068596,152755827,425790,192180,1682422596,1649763682,100,100,100,100,5.29,4.9,9.1,9.26
-48475,26,063,26063,1846,849,127925108,127857165,2766,1254,278957923,278838844,33118,21199,5534293780,2164469622,66.74,67.7,45.86,45.85,5.57,4,2.31,5.91
-48475,26,151,26151,920,405,151032815,150981679,2766,1254,278957923,278838844,43114,22725,4117929899,2493035045,33.26,32.3,54.14,54.15,2.13,1.78,3.67,6.06
-48476,26,155,26155,577,233,707622,685245,577,233,707622,685245,70648,30319,1401047133,1374422924,100,100,100,100,0.82,0.77,0.05,0.05
-48502,26,049,26049,1164,440,1035221,1027682,1164,440,1035221,1027682,425790,192180,1682422596,1649763682,100,100,100,100,0.27,0.23,0.06,0.06
-48503,26,049,26049,25168,13290,21576802,21245190,25168,13290,21576802,21245190,425790,192180,1682422596,1649763682,100,100,100,100,5.91,6.92,1.28,1.29
-48504,26,049,26049,30926,14500,40214491,40091396,30926,14500,40214491,40091396,425790,192180,1682422596,1649763682,100,100,100,100,7.26,7.55,2.39,2.43
-48505,26,049,26049,25710,12943,33443480,32525429,25710,12943,33443480,32525429,425790,192180,1682422596,1649763682,100,100,100,100,6.04,6.73,1.99,1.97
-48506,26,049,26049,30019,13604,51184160,49059119,30019,13604,51184160,49059119,425790,192180,1682422596,1649763682,100,100,100,100,7.05,7.08,3.04,2.97
-48507,26,049,26049,30607,15087,54499772,53948563,30607,15087,54499772,53948563,425790,192180,1682422596,1649763682,100,100,100,100,7.19,7.85,3.24,3.27
-48509,26,049,26049,9470,4059,23065780,22947545,9470,4059,23065780,22947545,425790,192180,1682422596,1649763682,100,100,100,100,2.22,2.11,1.37,1.39
-48519,26,049,26049,7465,3406,20024381,20000243,7465,3406,20024381,20000243,425790,192180,1682422596,1649763682,100,100,100,100,1.75,1.77,1.19,1.21
-48529,26,049,26049,10271,4588,12825858,12790887,10271,4588,12825858,12790887,425790,192180,1682422596,1649763682,100,100,100,100,2.41,2.39,0.76,0.78
-48532,26,049,26049,19375,9221,39873541,39639656,19375,9221,39873541,39639656,425790,192180,1682422596,1649763682,100,100,100,100,4.55,4.8,2.37,2.4
-48551,26,049,26049,0,0,964147,964147,0,0,964147,964147,425790,192180,1682422596,1649763682,0,0,100,100,0,0,0.06,0.06
-48553,26,049,26049,0,0,533497,533497,0,0,533497,533497,425790,192180,1682422596,1649763682,0,0,100,100,0,0,0.03,0.03
-48554,26,049,26049,0,0,471419,471419,0,0,471419,471419,425790,192180,1682422596,1649763682,0,0,100,100,0,0,0.03,0.03
-48601,26,145,26145,38406,17166,284168373,271847876,38406,17166,284168373,271847876,200169,86844,2113341368,2072284641,100,100,100,100,19.19,19.77,13.45,13.12
-48602,26,145,26145,30119,13626,21053500,20281260,30119,13626,21053500,20281260,200169,86844,2113341368,2072284641,100,100,100,100,15.05,15.69,1,0.98
-48603,26,145,26145,26913,12637,47977056,47419679,26913,12637,47977056,47419679,200169,86844,2113341368,2072284641,100,100,100,100,13.45,14.55,2.27,2.29
-48604,26,017,26017,156,86,303134,303134,13074,4566,67825330,64547958,107771,48220,1633549694,1145557748,1.19,1.88,0.45,0.47,0.14,0.18,0.02,0.03
-48604,26,145,26145,12918,4480,67522196,64244824,13074,4566,67825330,64547958,200169,86844,2113341368,2072284641,98.81,98.12,99.55,99.53,6.45,5.16,3.2,3.1
-48607,26,145,26145,1774,1100,2448872,2311674,1774,1100,2448872,2311674,200169,86844,2113341368,2072284641,100,100,100,100,0.89,1.27,0.12,0.11
-48609,26,145,26145,12461,5411,124225974,115429348,12461,5411,124225974,115429348,200169,86844,2113341368,2072284641,100,100,100,100,6.23,6.23,5.88,5.57
-48610,26,011,26011,1204,971,87052025,85481408,3083,2681,308123977,304261961,15899,9803,1762979935,940660726,39.05,36.22,28.25,28.09,7.57,9.91,4.94,9.09
-48610,26,051,26051,707,886,144180865,142520103,3083,2681,308123977,304261961,25692,17672,1336251597,1299601369,22.93,33.05,46.79,46.84,2.75,5.01,10.79,10.97
-48610,26,129,26129,1172,824,76891087,76260450,3083,2681,308123977,304261961,21699,16047,1489119470,1459425916,38.01,30.73,24.95,25.06,5.4,5.13,5.16,5.23
-48611,26,017,26017,6554,2689,99680569,99423068,6554,2689,99680569,99423068,107771,48220,1633549694,1145557748,100,100,100,100,6.08,5.58,6.1,8.68
-48612,26,051,26051,9118,5718,320975331,309075695,9259,5789,325029197,313034635,25692,17672,1336251597,1299601369,98.48,98.77,98.75,98.74,35.49,32.36,24.02,23.78
-48612,26,111,26111,141,71,4053866,3958940,9259,5789,325029197,313034635,83629,35960,1367689618,1337087878,1.52,1.23,1.25,1.26,0.17,0.2,0.3,0.3
-48613,26,017,26017,1058,442,75680937,75592381,1158,495,158962156,157125400,107771,48220,1633549694,1145557748,91.36,89.29,47.61,48.11,0.98,0.92,4.63,6.6
-48613,26,051,26051,100,53,83281219,81533019,1158,495,158962156,157125400,25692,17672,1336251597,1299601369,8.64,10.71,52.39,51.89,0.39,0.3,6.23,6.27
-48614,26,057,26057,26,14,4653350,4618997,1376,555,92428190,91855122,42476,16339,1480464573,1472313856,1.89,2.52,5.03,5.03,0.06,0.09,0.31,0.31
-48614,26,145,26145,1350,541,87774840,87236125,1376,555,92428190,91855122,200169,86844,2113341368,2072284641,98.11,97.48,94.97,94.97,0.67,0.62,4.15,4.21
-48615,26,057,26057,2196,960,97706481,97688454,3058,1320,149667524,149212106,42476,16339,1480464573,1472313856,71.81,72.73,65.28,65.47,5.17,5.88,6.6,6.64
-48615,26,111,26111,862,360,51961043,51523652,3058,1320,149667524,149212106,83629,35960,1367689618,1337087878,28.19,27.27,34.72,34.53,1.03,1,3.8,3.85
-48616,26,145,26145,7494,3183,206189296,204929246,7513,3192,209679486,208417183,200169,86844,2113341368,2072284641,99.75,99.72,98.34,98.33,3.74,3.67,9.76,9.89
-48616,26,155,26155,19,9,3490190,3487937,7513,3192,209679486,208417183,70648,30319,1401047133,1374422924,0.25,0.28,1.66,1.67,0.03,0.03,0.25,0.25
-48617,26,035,26035,6897,3101,236411240,234445940,8857,3976,361931323,358921199,30926,23233,1490122481,1461569881,77.87,77.99,65.32,65.32,22.3,13.35,15.87,16.04
-48617,26,073,26073,1960,875,125520083,124475259,8857,3976,361931323,358921199,70311,28381,1496186077,1483225590,22.13,22.01,34.68,34.68,2.79,3.08,8.39,8.39
-48618,26,051,26051,163,84,9968677,9926511,5393,2453,270885861,268960566,25692,17672,1336251597,1299601369,3.02,3.42,3.68,3.69,0.63,0.48,0.75,0.76
-48618,26,073,26073,682,284,57406171,57365303,5393,2453,270885861,268960566,70311,28381,1496186077,1483225590,12.65,11.58,21.19,21.33,0.97,1,3.84,3.87
-48618,26,111,26111,4548,2085,203511013,201668752,5393,2453,270885861,268960566,83629,35960,1367689618,1337087878,84.33,85,75.13,74.98,5.44,5.8,14.88,15.08
-48619,26,119,26119,51,67,33182441,33139810,465,551,206576266,204381806,9765,9597,1457262509,1415851499,10.97,12.16,16.06,16.21,0.52,0.7,2.28,2.34
-48619,26,135,26135,414,484,173393825,171241996,465,551,206576266,204381806,8640,9118,1480389868,1465236876,89.03,87.84,83.94,83.79,4.79,5.31,11.71,11.69
-48621,26,135,26135,1359,927,148066846,144936609,1359,927,148066846,144936609,8640,9118,1480389868,1465236876,100,100,100,100,15.73,10.17,10,9.89
-48622,26,035,26035,5351,3040,165565732,162976490,6491,3535,249396256,246382433,30926,23233,1490122481,1461569881,82.44,86,66.39,66.15,17.3,13.08,11.11,11.15
-48622,26,073,26073,1140,495,83830524,83405943,6491,3535,249396256,246382433,70311,28381,1496186077,1483225590,17.56,14,33.61,33.85,1.62,1.74,5.6,5.62
-48623,26,017,26017,624,243,23476982,23451038,13993,4922,193191960,190667010,107771,48220,1633549694,1145557748,4.46,4.94,12.15,12.3,0.58,0.5,1.44,2.05
-48623,26,111,26111,1047,442,46767576,46656005,13993,4922,193191960,190667010,83629,35960,1367689618,1337087878,7.48,8.98,24.21,24.47,1.25,1.23,3.42,3.49
-48623,26,145,26145,12322,4237,122947402,120559967,13993,4922,193191960,190667010,200169,86844,2113341368,2072284641,88.06,86.08,63.64,63.23,6.16,4.88,5.82,5.82
-48624,26,035,26035,959,732,103538608,102920712,15810,11336,897990319,878395040,30926,23233,1490122481,1461569881,6.07,6.46,11.53,11.72,3.1,3.15,6.95,7.04
-48624,26,051,26051,14494,10290,676819408,659259184,15810,11336,897990319,878395040,25692,17672,1336251597,1299601369,91.68,90.77,75.37,75.05,56.41,58.23,50.65,50.73
-48624,26,129,26129,154,119,8377707,8051643,15810,11336,897990319,878395040,21699,16047,1489119470,1459425916,0.97,1.05,0.93,0.92,0.71,0.74,0.56,0.55
-48624,26,143,26143,203,195,109254596,108163501,15810,11336,897990319,878395040,24449,24459,1502274232,1345849993,1.28,1.72,12.17,12.31,0.83,0.8,7.27,8.04
-48625,26,035,26035,13152,11655,632137533,622598314,13152,11655,632137533,622598314,30926,23233,1490122481,1461569881,100,100,100,100,42.53,50.17,42.42,42.6
-48626,26,111,26111,484,189,20340485,20336941,6078,2471,166171244,164825933,83629,35960,1367689618,1337087878,7.96,7.65,12.24,12.34,0.58,0.53,1.49,1.52
-48626,26,145,26145,5594,2282,145830759,144488992,6078,2471,166171244,164825933,200169,86844,2113341368,2072284641,92.04,92.35,87.76,87.66,2.79,2.63,6.9,6.97
-48627,26,143,26143,141,389,562697,562697,141,389,562697,562697,24449,24459,1502274232,1345849993,100,100,100,100,0.58,1.59,0.04,0.04
-48628,26,051,26051,266,258,8376489,7485098,1938,1145,87672439,85795029,25692,17672,1336251597,1299601369,13.73,22.53,9.55,8.72,1.04,1.46,0.63,0.58
-48628,26,111,26111,1672,887,79295950,78309931,1938,1145,87672439,85795029,83629,35960,1367689618,1337087878,86.27,77.47,90.45,91.28,2,2.47,5.8,5.86
-48629,26,143,26143,7854,7346,215744058,207565244,7854,7346,215744058,207565244,24449,24459,1502274232,1345849993,100,100,100,100,32.12,30.03,14.36,15.42
-48630,26,143,26143,69,61,247248,247248,69,61,247248,247248,24449,24459,1502274232,1345849993,100,100,100,100,0.28,0.25,0.02,0.02
-48631,26,017,26017,4643,1913,88927807,85786814,4643,1913,88927807,85786814,107771,48220,1633549694,1145557748,100,100,100,100,4.31,3.97,5.44,7.49
-48632,26,035,26035,3816,3830,216882857,205972900,5125,4661,340519494,328508216,30926,23233,1490122481,1461569881,74.46,82.17,63.69,62.7,12.34,16.49,14.55,14.09
-48632,26,073,26073,1216,760,108877338,107776017,5125,4661,340519494,328508216,70311,28381,1496186077,1483225590,23.73,16.31,31.97,32.81,1.73,2.68,7.28,7.27
-48632,26,133,26133,93,71,14759299,14759299,5125,4661,340519494,328508216,23528,13632,1484312630,1466946699,1.81,1.52,4.33,4.49,0.4,0.52,0.99,1.01
-48633,26,035,26035,210,411,7437557,6672133,210,411,7437557,6672133,30926,23233,1490122481,1461569881,100,100,100,100,0.68,1.77,0.5,0.46
-48634,26,017,26017,4371,1932,126800142,120490018,4371,1932,126800142,120490018,107771,48220,1633549694,1145557748,100,100,100,100,4.06,4.01,7.76,10.52
-48635,26,129,26129,1573,1880,157105397,149869388,1573,1880,157105397,149869388,21699,16047,1489119470,1459425916,100,100,100,100,7.25,11.72,10.55,10.27
-48636,26,135,26135,864,1298,227962271,227423620,864,1298,227962271,227423620,8640,9118,1480389868,1465236876,100,100,100,100,10,14.24,15.4,15.52
-48637,26,057,26057,243,110,25961219,25959365,3359,1375,188672191,188537801,42476,16339,1480464573,1472313856,7.23,8,13.76,13.77,0.57,0.67,1.75,1.76
-48637,26,111,26111,394,171,33622592,33617844,3359,1375,188672191,188537801,83629,35960,1367689618,1337087878,11.73,12.44,17.82,17.83,0.47,0.48,2.46,2.51
-48637,26,145,26145,2722,1094,129088380,128960592,3359,1375,188672191,188537801,200169,86844,2113341368,2072284641,81.04,79.56,68.42,68.4,1.36,1.26,6.11,6.22
-48638,26,145,26145,12922,6281,17531986,17110560,12922,6281,17531986,17110560,200169,86844,2113341368,2072284641,100,100,100,100,6.46,7.23,0.83,0.83
-48640,26,111,26111,32690,13933,271151542,261505831,32690,13933,271151542,261505831,83629,35960,1367689618,1337087878,100,100,100,100,39.09,38.75,19.83,19.56
-48642,26,017,26017,1983,848,44590423,44543920,32277,13560,297611848,296035822,107771,48220,1633549694,1145557748,6.14,6.25,14.98,15.05,1.84,1.76,2.73,3.89
-48642,26,111,26111,30294,12712,253021425,251491902,32277,13560,297611848,296035822,83629,35960,1367689618,1337087878,93.86,93.75,85.02,84.95,36.22,35.35,18.5,18.81
-48647,26,001,26001,3,31,836776,836776,4420,3741,370824267,366183686,10942,11073,4637587678,1747168145,0.07,0.83,0.23,0.23,0.03,0.28,0.02,0.05
-48647,26,135,26135,4417,3710,369987491,365346910,4420,3741,370824267,366183686,8640,9118,1480389868,1465236876,99.93,99.17,99.77,99.77,51.12,40.69,24.99,24.93
-48649,26,145,26145,1538,644,63397689,62985114,1576,662,67552914,67138831,200169,86844,2113341368,2072284641,97.59,97.28,93.85,93.81,0.77,0.74,3,3.04
-48649,26,155,26155,38,18,4155225,4153717,1576,662,67552914,67138831,70648,30319,1401047133,1374422924,2.41,2.72,6.15,6.19,0.05,0.06,0.3,0.3
-48650,26,011,26011,493,223,16804178,16408458,7253,3259,283103159,253917670,15899,9803,1762979935,940660726,6.8,6.84,5.94,6.46,3.1,2.27,0.95,1.74
-48650,26,017,26017,6760,3036,266298981,237509212,7253,3259,283103159,253917670,107771,48220,1633549694,1145557748,93.2,93.16,94.06,93.54,6.27,6.3,16.3,20.73
-48651,26,143,26143,4690,4275,181520100,172269150,4690,4275,181520100,172269150,24449,24459,1502274232,1345849993,100,100,100,100,19.18,17.48,12.08,12.8
-48652,26,017,26017,474,210,34096087,34048122,1548,682,141661094,138583396,107771,48220,1633549694,1145557748,30.62,30.79,24.07,24.57,0.44,0.44,2.09,2.97
-48652,26,051,26051,844,383,92649608,89801759,1548,682,141661094,138583396,25692,17672,1336251597,1299601369,54.52,56.16,65.4,64.8,3.29,2.17,6.93,6.91
-48652,26,111,26111,230,89,14915399,14733515,1548,682,141661094,138583396,83629,35960,1367689618,1337087878,14.86,13.05,10.53,10.63,0.28,0.25,1.09,1.1
-48653,26,039,26039,2859,2359,270483835,269264081,10293,10380,701954851,651642228,14074,11092,1458789839,1440758147,27.78,22.73,38.53,41.32,20.31,21.27,18.54,18.69
-48653,26,143,26143,7434,8021,431471016,382378147,10293,10380,701954851,651642228,24449,24459,1502274232,1345849993,72.22,77.27,61.47,58.68,30.41,32.79,28.72,28.41
-48654,26,129,26129,2268,1582,187757602,186617882,2521,2001,247731465,245699968,21699,16047,1489119470,1459425916,89.96,79.06,75.79,75.95,10.45,9.86,12.61,12.79
-48654,26,135,26135,253,419,59973863,59082086,2521,2001,247731465,245699968,8640,9118,1480389868,1465236876,10.04,20.94,24.21,24.05,2.93,4.6,4.05,4.03
-48655,26,145,26145,6460,2702,249036856,244918487,6460,2702,249036856,244918487,200169,86844,2113341368,2072284641,100,100,100,100,3.23,3.11,11.78,11.82
-48656,26,143,26143,4058,4171,357108084,344103559,4058,4171,357108084,344103559,24449,24459,1502274232,1345849993,100,100,100,100,16.6,17.05,23.77,25.57
-48657,26,111,26111,7981,3673,173268165,159937197,7981,3673,173268165,159937197,83629,35960,1367689618,1337087878,100,100,100,100,9.54,10.21,12.67,11.96
-48658,26,011,26011,4907,2425,204387975,188823440,5138,2516,226563272,210965432,15899,9803,1762979935,940660726,95.5,96.38,90.21,89.5,30.86,24.74,11.59,20.07
-48658,26,017,26017,231,91,22175297,22141992,5138,2516,226563272,210965432,107771,48220,1633549694,1145557748,4.5,3.62,9.79,10.5,0.21,0.19,1.36,1.93
-48659,26,011,26011,2793,1315,203066246,202279449,2850,1339,207209703,206422906,15899,9803,1762979935,940660726,98,98.21,98,97.99,17.57,13.41,11.52,21.5
-48659,26,017,26017,57,24,4143457,4143457,2850,1339,207209703,206422906,107771,48220,1633549694,1145557748,2,1.79,2,2.01,0.05,0.05,0.25,0.36
-48661,26,129,26129,10691,6608,696388225,688177607,10691,6608,696388225,688177607,21699,16047,1489119470,1459425916,100,100,100,100,49.27,41.18,46.77,47.15
-48662,26,057,26057,1280,533,92467017,92444311,1594,654,120702410,120533022,42476,16339,1480464573,1472313856,80.3,81.5,76.61,76.7,3.01,3.26,6.25,6.28
-48662,26,111,26111,314,121,28235393,28088711,1594,654,120702410,120533022,83629,35960,1367689618,1337087878,19.7,18.5,23.39,23.3,0.38,0.34,2.06,2.1
-48667,26,111,26111,0,0,885517,853028,0,0,885517,853028,83629,35960,1367689618,1337087878,0,0,100,100,0,0,0.06,0.06
-48701,26,157,26157,1368,635,122636319,109753299,1368,635,122636319,109753299,55729,24451,2367017962,2080088206,100,100,100,100,2.45,2.6,5.18,5.28
-48703,26,011,26011,3238,2787,124279517,113045162,3238,2787,124279517,113045162,15899,9803,1762979935,940660726,100,100,100,100,20.37,28.43,7.05,12.02
-48705,26,001,26001,535,754,230217126,228925490,535,754,230217126,228925490,10942,11073,4637587678,1747168145,100,100,100,100,4.89,6.81,4.96,13.1
-48706,26,017,26017,40596,18425,192154766,173498367,40596,18425,192154766,173498367,107771,48220,1633549694,1145557748,100,100,100,100,37.67,38.21,11.76,15.15
-48708,26,017,26017,27234,12345,72357562,70174674,27262,12357,74351449,72168561,107771,48220,1633549694,1145557748,99.9,99.9,97.32,97.24,25.27,25.6,4.43,6.13
-48708,26,145,26145,28,12,1993887,1993887,27262,12357,74351449,72168561,200169,86844,2113341368,2072284641,0.1,0.1,2.68,2.76,0.01,0.01,0.09,0.1
-48710,26,017,26017,0,0,1076945,1076945,0,0,1076945,1076945,107771,48220,1633549694,1145557748,0,0,100,100,0,0,0.07,0.09
-48720,26,063,26063,1042,609,90948404,82918318,1042,609,90948404,82918318,33118,21199,5534293780,2164469622,100,100,100,100,3.15,2.87,1.64,3.83
-48721,26,001,26001,411,393,76498851,71125962,411,393,76498851,71125962,10942,11073,4637587678,1747168145,100,100,100,100,3.76,3.55,1.65,4.07
-48722,26,145,26145,3123,1368,44830510,44065053,3123,1368,44830510,44065053,200169,86844,2113341368,2072284641,100,100,100,100,1.56,1.58,2.12,2.13
-48723,26,157,26157,12479,5409,343830020,334413535,12479,5409,343830020,334413535,55729,24451,2367017962,2080088206,100,100,100,100,22.39,22.12,14.53,16.08
-48724,26,145,26145,359,157,1167683,893685,359,157,1167683,893685,200169,86844,2113341368,2072284641,100,100,100,100,0.18,0.18,0.06,0.04
-48725,26,063,26063,2464,2932,106668884,91889368,2464,2932,106668884,91889368,33118,21199,5534293780,2164469622,100,100,100,100,7.44,13.83,1.93,4.25
-48726,26,063,26063,210,70,29904012,29866206,6172,2772,330625846,326887822,33118,21199,5534293780,2164469622,3.4,2.53,9.04,9.14,0.63,0.33,0.54,1.38
-48726,26,151,26151,837,383,84899232,84501721,6172,2772,330625846,326887822,43114,22725,4117929899,2493035045,13.56,13.82,25.68,25.85,1.94,1.69,2.06,3.39
-48726,26,157,26157,5125,2319,215822602,212519895,6172,2772,330625846,326887822,55729,24451,2367017962,2080088206,83.04,83.66,65.28,65.01,9.2,9.48,9.12,10.22
-48727,26,087,26087,859,369,47955772,47284833,1269,527,63839379,62339589,88319,36332,1716759776,1665397257,67.69,70.02,75.12,75.85,0.97,1.02,2.79,2.84
-48727,26,157,26157,410,158,15883607,15054756,1269,527,63839379,62339589,55729,24451,2367017962,2080088206,32.31,29.98,24.88,24.15,0.74,0.65,0.67,0.72
-48728,26,001,26001,251,561,301047204,298692811,290,669,336085622,332888206,10942,11073,4637587678,1747168145,86.55,83.86,89.57,89.73,2.29,5.07,6.49,17.1
-48728,26,135,26135,39,108,35038418,34195395,290,669,336085622,332888206,8640,9118,1480389868,1465236876,13.45,16.14,10.43,10.27,0.45,1.18,2.37,2.33
-48729,26,157,26157,1586,709,114870956,112334629,1586,709,114870956,112334629,55729,24451,2367017962,2080088206,100,100,100,100,2.85,2.9,4.85,5.4
-48730,26,069,26069,4716,3436,208351879,189787247,4716,3436,208351879,189787247,25887,20443,4895226335,1422153154,100,100,100,100,18.22,16.81,4.26,13.35
-48731,26,063,26063,1683,774,126133218,125900394,1683,774,126133218,125900394,33118,21199,5534293780,2164469622,100,100,100,100,5.08,3.65,2.28,5.82
-48732,26,017,26017,11483,5304,80258632,63681019,11483,5304,80258632,63681019,107771,48220,1633549694,1145557748,100,100,100,100,10.65,11,4.91,5.56
-48733,26,157,26157,1758,835,129806305,127220138,1758,835,129806305,127220138,55729,24451,2367017962,2080088206,100,100,100,100,3.15,3.41,5.48,6.12
-48734,26,145,26145,7304,3291,95342944,94814630,7444,3352,106315408,105724716,200169,86844,2113341368,2072284641,98.12,98.18,89.68,89.68,3.65,3.79,4.51,4.58
-48734,26,157,26157,140,61,10972464,10910086,7444,3352,106315408,105724716,55729,24451,2367017962,2080088206,1.88,1.82,10.32,10.32,0.25,0.25,0.46,0.52
-48735,26,063,26063,342,160,44825879,44723394,1051,464,97095556,96601394,33118,21199,5534293780,2164469622,32.54,34.48,46.17,46.3,1.03,0.75,0.81,2.07
-48735,26,157,26157,709,304,52269677,51878000,1051,464,97095556,96601394,55729,24451,2367017962,2080088206,67.46,65.52,53.83,53.7,1.27,1.24,2.21,2.49
-48737,26,001,26001,1095,1385,204663716,198611771,1245,1596,274321166,264845988,10942,11073,4637587678,1747168145,87.95,86.78,74.61,74.99,10.01,12.51,4.41,11.37
-48737,26,069,26069,150,211,69657450,66234217,1245,1596,274321166,264845988,25887,20443,4895226335,1422153154,12.05,13.22,25.39,25.01,0.58,1.03,1.42,4.66
-48738,26,001,26001,1156,1371,33869712,27210861,1269,1534,35369303,28160685,10942,11073,4637587678,1747168145,91.1,89.37,95.76,96.63,10.56,12.38,0.73,1.56
-48738,26,069,26069,113,163,1499591,949824,1269,1534,35369303,28160685,25887,20443,4895226335,1422153154,8.9,10.63,4.24,3.37,0.44,0.8,0.03,0.07
-48739,26,069,26069,3121,3000,173351714,167203020,4043,4346,254513449,241314042,25887,20443,4895226335,1422153154,77.2,69.03,68.11,69.29,12.06,14.67,3.54,11.76
-48739,26,129,26129,922,1346,81161735,74111022,4043,4346,254513449,241314042,21699,16047,1489119470,1459425916,22.8,30.97,31.89,30.71,4.25,8.39,5.45,5.08
-48740,26,001,26001,2556,1811,202024960,175033491,2556,1811,202024960,175033491,10942,11073,4637587678,1747168145,100,100,100,100,23.36,16.36,4.36,10.02
-48741,26,157,26157,2086,898,121118787,118750406,2086,898,121118787,118750406,55729,24451,2367017962,2080088206,100,100,100,100,3.74,3.67,5.12,5.71
-48742,26,001,26001,1647,1453,195935547,193785721,1647,1453,195935547,193785721,10942,11073,4637587678,1747168145,100,100,100,100,15.05,13.12,4.22,11.09
-48743,26,069,26069,63,42,5374019,5287430,63,42,5374019,5287430,25887,20443,4895226335,1422153154,100,100,100,100,0.24,0.21,0.11,0.37
-48744,26,087,26087,390,176,27513375,27457776,4615,2112,171056217,167645396,88319,36332,1716759776,1665397257,8.45,8.33,16.08,16.38,0.44,0.48,1.6,1.65
-48744,26,157,26157,4225,1936,143542842,140187620,4615,2112,171056217,167645396,55729,24451,2367017962,2080088206,91.55,91.67,83.92,83.62,7.58,7.92,6.06,6.74
-48745,26,001,26001,1330,868,190183427,190060233,1346,882,194110976,193987782,10942,11073,4637587678,1747168145,98.81,98.41,97.98,97.98,12.15,7.84,4.1,10.88
-48745,26,069,26069,16,14,3927549,3927549,1346,882,194110976,193987782,25887,20443,4895226335,1422153154,1.19,1.59,2.02,2.02,0.06,0.07,0.08,0.28
-48746,26,049,26049,826,326,21370886,21317233,8528,3487,212514160,210585548,425790,192180,1682422596,1649763682,9.69,9.35,10.06,10.12,0.19,0.17,1.27,1.29
-48746,26,157,26157,7702,3161,191143274,189268315,8528,3487,212514160,210585548,55729,24451,2367017962,2080088206,90.31,90.65,89.94,89.88,13.82,12.93,8.08,9.1
-48747,26,017,26017,1473,600,78124164,78079985,1494,607,79745330,79701151,107771,48220,1633549694,1145557748,98.59,98.85,97.97,97.97,1.37,1.24,4.78,6.82
-48747,26,145,26145,21,7,1621166,1621166,1494,607,79745330,79701151,200169,86844,2113341368,2072284641,1.41,1.15,2.03,2.03,0.01,0.01,0.08,0.08
-48748,26,069,26069,1693,2016,123271828,119972635,1693,2016,123271828,119972635,25887,20443,4895226335,1422153154,100,100,100,100,6.54,9.86,2.52,8.44
-48749,26,011,26011,1094,656,91204653,89963529,1094,656,91204653,89963529,15899,9803,1762979935,940660726,100,100,100,100,6.88,6.69,5.17,9.56
-48750,26,001,26001,57,28,6727285,6727285,8846,6867,278801253,248398470,10942,11073,4637587678,1747168145,0.64,0.41,2.41,2.71,0.52,0.25,0.15,0.39
-48750,26,069,26069,8789,6839,272073968,241671185,8846,6867,278801253,248398470,25887,20443,4895226335,1422153154,99.36,99.59,97.59,97.29,33.95,33.45,5.56,16.99
-48754,26,063,26063,1001,429,94761570,94706170,1001,429,94761570,94706170,33118,21199,5534293780,2164469622,100,100,100,100,3.02,2.02,1.71,4.38
-48755,26,063,26063,3110,2283,151542404,130726237,3110,2283,151542404,130726237,33118,21199,5534293780,2164469622,100,100,100,100,9.39,10.77,2.74,6.04
-48756,26,129,26129,4640,3380,207214133,202478662,4640,3380,207214133,202478662,21699,16047,1489119470,1459425916,100,100,100,100,21.38,21.06,13.92,13.87
-48757,26,017,26017,74,32,11644914,11613602,3817,1703,142757709,142676432,107771,48220,1633549694,1145557748,1.94,1.88,8.16,8.14,0.07,0.07,0.71,1.01
-48757,26,145,26145,828,356,36559395,36555353,3817,1703,142757709,142676432,200169,86844,2113341368,2072284641,21.69,20.9,25.61,25.62,0.41,0.41,1.73,1.76
-48757,26,157,26157,2915,1315,94553400,94507477,3817,1703,142757709,142676432,55729,24451,2367017962,2080088206,76.37,77.22,66.23,66.24,5.23,5.38,3.99,4.54
-48759,26,063,26063,3263,1729,132017534,127649024,3293,1742,133181215,128812705,33118,21199,5534293780,2164469622,99.09,99.25,99.13,99.1,9.85,8.16,2.39,5.9
-48759,26,157,26157,30,13,1163681,1163681,3293,1742,133181215,128812705,55729,24451,2367017962,2080088206,0.91,0.75,0.87,0.9,0.05,0.05,0.05,0.06
-48760,26,087,26087,612,232,39368755,38200083,1351,674,72753945,70938035,88319,36332,1716759776,1665397257,45.3,34.42,54.11,53.85,0.69,0.64,2.29,2.29
-48760,26,157,26157,739,442,33385190,32737952,1351,674,72753945,70938035,55729,24451,2367017962,2080088206,54.7,65.58,45.89,46.15,1.33,1.81,1.41,1.57
-48761,26,001,26001,210,413,68073458,67636671,1026,1492,229295632,226300192,10942,11073,4637587678,1747168145,20.47,27.68,29.69,29.89,1.92,3.73,1.47,3.87
-48761,26,069,26069,498,718,45825681,43702027,1026,1492,229295632,226300192,25887,20443,4895226335,1422153154,48.54,48.12,19.99,19.31,1.92,3.51,0.94,3.07
-48761,26,129,26129,279,308,74223584,73859262,1026,1492,229295632,226300192,21699,16047,1489119470,1459425916,27.19,20.64,32.37,32.64,1.29,1.92,4.98,5.06
-48761,26,135,26135,39,53,41172909,41102232,1026,1492,229295632,226300192,8640,9118,1480389868,1465236876,3.8,3.55,17.96,18.16,0.45,0.58,2.78,2.81
-48762,26,001,26001,948,975,99321742,98963532,1139,1063,116982203,116620642,10942,11073,4637587678,1747168145,83.23,91.72,84.9,84.86,8.66,8.81,2.14,5.66
-48762,26,007,26007,191,88,17660461,17657110,1139,1063,116982203,116620642,29598,16053,4389827707,1481110566,16.77,8.28,15.1,15.14,0.65,0.55,0.4,1.19
-48763,26,011,26011,405,454,22887554,21453752,5012,3152,253351093,241940107,15899,9803,1762979935,940660726,8.08,14.4,9.03,8.87,2.55,4.63,1.3,2.28
-48763,26,069,26069,4607,2698,230463539,220486355,5012,3152,253351093,241940107,25887,20443,4895226335,1422153154,91.92,85.6,90.97,91.13,17.8,13.2,4.71,15.5
-48765,26,011,26011,495,295,90625815,88100223,725,475,145850993,143312869,15899,9803,1762979935,940660726,68.28,62.11,62.14,61.47,3.11,3.01,5.14,9.37
-48765,26,069,26069,230,180,55225178,55212646,725,475,145850993,143312869,25887,20443,4895226335,1422153154,31.72,37.89,37.86,38.53,0.89,0.88,1.13,3.88
-48766,26,011,26011,1270,677,136251511,135105305,1270,677,136251511,135105305,15899,9803,1762979935,940660726,100,100,100,100,7.99,6.91,7.73,14.36
-48767,26,063,26063,25,12,4861411,4861411,2162,1062,219692763,192811550,33118,21199,5534293780,2164469622,1.16,1.13,2.21,2.52,0.08,0.06,0.09,0.22
-48767,26,157,26157,2137,1050,214831352,187950139,2162,1062,219692763,192811550,55729,24451,2367017962,2080088206,98.84,98.87,97.79,97.48,3.83,4.29,9.08,9.04
-48768,26,157,26157,9832,4151,273372774,271353153,9832,4151,273372774,271353153,55729,24451,2367017962,2080088206,100,100,100,100,17.64,16.98,11.55,13.05
-48770,26,069,26069,1891,1126,175831839,175682116,1891,1126,175831839,175682116,25887,20443,4895226335,1422153154,100,100,100,100,7.3,5.51,3.59,12.35
-48801,26,057,26057,12923,5279,186639371,185048302,12923,5279,186639371,185048302,42476,16339,1480464573,1472313856,100,100,100,100,30.42,32.31,12.61,12.57
-48806,26,057,26057,1676,685,168380074,167516568,1676,685,168380074,167516568,42476,16339,1480464573,1472313856,100,100,100,100,3.95,4.19,11.37,11.38
-48807,26,057,26057,642,272,55472770,55413466,916,394,72423119,72360757,42476,16339,1480464573,1472313856,70.09,69.04,76.6,76.58,1.51,1.66,3.75,3.76
-48807,26,145,26145,274,122,16950349,16947291,916,394,72423119,72360757,200169,86844,2113341368,2072284641,29.91,30.96,23.4,23.42,0.14,0.14,0.8,0.82
-48808,26,037,26037,5178,2293,70200040,63816793,5178,2293,70200040,63816793,75382,30695,1488097573,1466991079,100,100,100,100,6.87,7.47,4.72,4.35
-48809,26,067,26067,9389,3872,167692073,163702388,11015,4646,219756328,212022873,63905,24778,1502312987,1479671240,85.24,83.34,76.31,77.21,14.69,15.63,11.16,11.06
-48809,26,081,26081,1619,771,47517434,43953383,11015,4646,219756328,212022873,602622,246901,2258324280,2193584722,14.7,16.59,21.62,20.73,0.27,0.31,2.1,2
-48809,26,117,26117,7,3,4546821,4367102,11015,4646,219756328,212022873,63342,28221,1866932682,1826976057,0.06,0.06,2.07,2.06,0.01,0.01,0.24,0.24
-48811,26,057,26057,373,148,60344972,60341175,5641,1323,163279296,162738416,42476,16339,1480464573,1472313856,6.61,11.19,36.96,37.08,0.88,0.91,4.08,4.1
-48811,26,117,26117,5268,1175,102934324,102397241,5641,1323,163279296,162738416,63342,28221,1866932682,1826976057,93.39,88.81,63.04,62.92,8.32,4.16,5.51,5.6
-48813,26,025,26025,26,12,920353,920353,21182,8791,441126334,439794059,136146,61042,1860525582,1829135298,0.12,0.14,0.21,0.21,0.02,0.02,0.05,0.05
-48813,26,045,26045,21156,8779,440205981,438873706,21182,8791,441126334,439794059,107759,47050,1500723603,1489695507,99.88,99.86,99.79,99.79,19.63,18.66,29.33,29.46
-48815,26,067,26067,2228,974,70449683,69792222,2259,983,71791374,71132423,63905,24778,1502312987,1479671240,98.63,99.08,98.13,98.12,3.49,3.93,4.69,4.72
-48815,26,081,26081,31,9,1341691,1340201,2259,983,71791374,71132423,602622,246901,2258324280,2193584722,1.37,0.92,1.87,1.88,0.01,0,0.06,0.06
-48816,26,093,26093,121,54,1196930,1196194,121,54,1196930,1196194,180967,72809,1516189327,1464001028,100,100,100,100,0.07,0.07,0.08,0.08
-48817,26,155,26155,6422,2724,154136172,153064275,6422,2724,154136172,153064275,70648,30319,1401047133,1374422924,100,100,100,100,9.09,8.98,11,11.14
-48818,26,117,26117,2407,1537,70227444,65435020,2407,1537,70227444,65435020,63342,28221,1866932682,1826976057,100,100,100,100,3.8,5.45,3.76,3.58
-48819,26,065,26065,2701,1019,115310719,115129411,2701,1019,115310719,115129411,280895,121281,1452238253,1440343968,100,100,100,100,0.96,0.84,7.94,7.99
-48820,26,037,26037,16641,6496,171554822,170116432,16641,6496,171554822,170116432,75382,30695,1488097573,1466991079,100,100,100,100,22.08,21.16,11.53,11.6
-48821,26,045,26045,5527,2478,53543449,52661403,5836,2601,55943349,54903161,107759,47050,1500723603,1489695507,94.71,95.27,95.71,95.92,5.13,5.27,3.57,3.54
-48821,26,065,26065,309,123,2399900,2241758,5836,2601,55943349,54903161,280895,121281,1452238253,1440343968,5.29,4.73,4.29,4.08,0.11,0.1,0.17,0.16
-48822,26,037,26037,2714,1098,84543231,83805179,2714,1098,84543231,83805179,75382,30695,1488097573,1466991079,100,100,100,100,3.6,3.58,5.68,5.71
-48823,26,037,26037,7437,3267,24032591,23771252,51302,22908,58645370,58085338,75382,30695,1488097573,1466991079,14.5,14.26,40.98,40.92,9.87,10.64,1.61,1.62
-48823,26,065,26065,43865,19641,34612779,34314086,51302,22908,58645370,58085338,280895,121281,1452238253,1440343968,85.5,85.74,59.02,59.08,15.62,16.19,2.38,2.38
-48825,26,065,26065,12596,2,3283835,3213319,12596,2,3283835,3213319,280895,121281,1452238253,1440343968,100,100,100,100,4.48,0,0.23,0.22
-48827,26,045,26045,14056,5832,243641270,242020059,15971,6509,291290583,289216698,107759,47050,1500723603,1489695507,88.01,89.6,83.64,83.68,13.04,12.4,16.23,16.25
-48827,26,065,26065,1868,657,44867958,44415700,15971,6509,291290583,289216698,280895,121281,1452238253,1440343968,11.7,10.09,15.4,15.36,0.67,0.54,3.09,3.08
-48827,26,075,26075,47,20,2781355,2780939,15971,6509,291290583,289216698,160248,69458,1873846344,1817306121,0.29,0.31,0.95,0.96,0.03,0.03,0.15,0.15
-48829,26,073,26073,60,25,6656536,6656536,3254,1501,170218678,169719277,70311,28381,1496186077,1483225590,1.84,1.67,3.91,3.92,0.09,0.09,0.44,0.45
-48829,26,117,26117,3194,1476,163562142,163062741,3254,1501,170218678,169719277,63342,28221,1866932682,1826976057,98.16,98.33,96.09,96.08,5.04,5.23,8.76,8.93
-48831,26,037,26037,2172,888,83398992,82792978,3512,1419,189155818,188522051,75382,30695,1488097573,1466991079,61.85,62.58,44.09,43.92,2.88,2.89,5.6,5.64
-48831,26,057,26057,31,15,2590219,2590219,3512,1419,189155818,188522051,42476,16339,1480464573,1472313856,0.88,1.06,1.37,1.37,0.07,0.09,0.17,0.18
-48831,26,145,26145,584,224,38004359,38002265,3512,1419,189155818,188522051,200169,86844,2113341368,2072284641,16.63,15.79,20.09,20.16,0.29,0.26,1.8,1.83
-48831,26,155,26155,725,292,65162248,65136589,3512,1419,189155818,188522051,70648,30319,1401047133,1374422924,20.64,20.58,34.45,34.55,1.03,0.96,4.65,4.74
-48832,26,057,26057,1393,617,67567077,67139628,1393,617,67567077,67139628,42476,16339,1480464573,1472313856,100,100,100,100,3.28,3.78,4.56,4.56
-48834,26,067,26067,660,330,36841349,35638312,2090,938,122043651,119804590,63905,24778,1502312987,1479671240,31.58,35.18,30.19,29.75,1.03,1.33,2.45,2.41
-48834,26,117,26117,1430,608,85202302,84166278,2090,938,122043651,119804590,63342,28221,1866932682,1826976057,68.42,64.82,69.81,70.25,2.26,2.15,4.56,4.61
-48835,26,037,26037,2655,989,145246563,144243011,2680,996,146100293,145002324,75382,30695,1488097573,1466991079,99.07,99.3,99.42,99.48,3.52,3.22,9.76,9.83
-48835,26,057,26057,25,7,853730,759313,2680,996,146100293,145002324,42476,16339,1480464573,1472313856,0.93,0.7,0.58,0.52,0.06,0.04,0.06,0.05
-48836,26,093,26093,13510,5234,241728265,240852742,13510,5234,241728265,240852742,180967,72809,1516189327,1464001028,100,100,100,100,7.47,7.19,15.94,16.45
-48837,26,037,26037,2052,841,51142956,50167535,18926,8050,207799748,205870599,75382,30695,1488097573,1466991079,10.84,10.45,24.61,24.37,2.72,2.74,3.44,3.42
-48837,26,045,26045,16672,7122,147673626,146832543,18926,8050,207799748,205870599,107759,47050,1500723603,1489695507,88.09,88.47,71.07,71.32,15.47,15.14,9.84,9.86
-48837,26,067,26067,202,87,8983166,8870521,18926,8050,207799748,205870599,63905,24778,1502312987,1479671240,1.07,1.08,4.32,4.31,0.32,0.35,0.6,0.6
-48838,26,067,26067,29,11,2373736,2292945,17863,7750,249351555,239327212,63905,24778,1502312987,1479671240,0.16,0.14,0.95,0.96,0.05,0.04,0.16,0.15
-48838,26,081,26081,2532,1133,50045597,45894029,17863,7750,249351555,239327212,602622,246901,2258324280,2193584722,14.17,14.62,20.07,19.18,0.42,0.46,2.22,2.09
-48838,26,117,26117,15302,6606,196932222,191140238,17863,7750,249351555,239327212,63342,28221,1866932682,1826976057,85.66,85.24,78.98,79.87,24.16,23.41,10.55,10.46
-48840,26,037,26037,1108,421,10065522,9756603,12501,6214,53425414,50126856,75382,30695,1488097573,1466991079,8.86,6.78,18.84,19.46,1.47,1.37,0.68,0.67
-48840,26,065,26065,10712,5518,31307069,29140991,12501,6214,53425414,50126856,280895,121281,1452238253,1440343968,85.69,88.8,58.6,58.13,3.81,4.55,2.16,2.02
-48840,26,155,26155,681,275,12052823,11229262,12501,6214,53425414,50126856,70648,30319,1401047133,1374422924,5.45,4.43,22.56,22.4,0.96,0.91,0.86,0.82
-48841,26,145,26145,200,73,13567007,13565904,826,334,62061213,61375151,200169,86844,2113341368,2072284641,24.21,21.86,21.86,22.1,0.1,0.08,0.64,0.65
-48841,26,155,26155,626,261,48494206,47809247,826,334,62061213,61375151,70648,30319,1401047133,1374422924,75.79,78.14,78.14,77.9,0.89,0.86,3.46,3.48
-48842,26,065,26065,20432,8695,47211729,46603969,20432,8695,47211729,46603969,280895,121281,1452238253,1440343968,100,100,100,100,7.27,7.17,3.25,3.24
-48843,26,093,26093,42931,17195,240376630,233109562,42931,17195,240376630,233109562,180967,72809,1516189327,1464001028,100,100,100,100,23.72,23.62,15.85,15.92
-48845,26,037,26037,158,68,24122856,23848690,1003,409,64205893,63562445,75382,30695,1488097573,1466991079,15.75,16.63,37.57,37.52,0.21,0.22,1.62,1.63
-48845,26,057,26057,27,11,5179584,5179584,1003,409,64205893,63562445,42476,16339,1480464573,1472313856,2.69,2.69,8.07,8.15,0.06,0.07,0.35,0.35
-48845,26,067,26067,737,300,26427249,26090923,1003,409,64205893,63562445,63905,24778,1502312987,1479671240,73.48,73.35,41.16,41.05,1.15,1.21,1.76,1.76
-48845,26,117,26117,81,30,8476204,8443248,1003,409,64205893,63562445,63342,28221,1866932682,1826976057,8.08,7.33,13.2,13.28,0.13,0.11,0.45,0.46
-48846,26,067,26067,20269,6661,282773435,280776264,20269,6661,282773435,280776264,63905,24778,1502312987,1479671240,100,100,100,100,31.72,26.88,18.82,18.98
-48847,26,057,26057,6041,2637,317941886,317342975,6041,2637,317941886,317342975,42476,16339,1480464573,1472313856,100,100,100,100,14.22,16.14,21.48,21.55
-48848,26,037,26037,2824,1100,72787980,67015571,7789,3076,183549040,170734099,75382,30695,1488097573,1466991079,36.26,35.76,39.66,39.25,3.75,3.58,4.89,4.57
-48848,26,155,26155,4965,1976,110761060,103718528,7789,3076,183549040,170734099,70648,30319,1401047133,1374422924,63.74,64.24,60.34,60.75,7.03,6.52,7.91,7.55
-48849,26,015,26015,884,448,35829110,34704083,5717,2543,217440696,214709317,59173,27010,1494529574,1432500402,15.46,17.62,16.48,16.16,1.49,1.66,2.4,2.42
-48849,26,045,26045,136,59,9248415,9243016,5717,2543,217440696,214709317,107759,47050,1500723603,1489695507,2.38,2.32,4.25,4.3,0.13,0.13,0.62,0.62
-48849,26,067,26067,4697,2036,172363171,170762218,5717,2543,217440696,214709317,63905,24778,1502312987,1479671240,82.16,80.06,79.27,79.53,7.35,8.22,11.47,11.54
-48850,26,107,26107,807,318,70308613,70178387,4474,2203,212498294,209162949,42798,21131,1479386400,1437626850,18.04,14.43,33.09,33.55,1.89,1.5,4.75,4.88
-48850,26,117,26117,3667,1885,142189681,138984562,4474,2203,212498294,209162949,63342,28221,1866932682,1826976057,81.96,85.57,66.91,66.45,5.79,6.68,7.62,7.61
-48851,26,067,26067,2365,948,85128498,80779977,2365,948,85128498,80779977,63905,24778,1502312987,1479671240,100,100,100,100,3.7,3.83,5.67,5.46
-48852,26,117,26117,150,71,1089127,1089127,150,71,1089127,1089127,63342,28221,1866932682,1826976057,100,100,100,100,0.24,0.25,0.06,0.06
-48853,26,037,26037,671,273,2467926,2417652,671,273,2467926,2417652,75382,30695,1488097573,1466991079,100,100,100,100,0.89,0.89,0.17,0.16
-48854,26,065,26065,18598,7640,289683374,288925505,18598,7640,289683374,288925505,280895,121281,1452238253,1440343968,100,100,100,100,6.62,6.3,19.95,20.06
-48855,26,093,26093,14752,5681,239567279,235539734,14752,5681,239567279,235539734,180967,72809,1516189327,1464001028,100,100,100,100,8.15,7.8,15.8,16.09
-48856,26,057,26057,966,392,71252646,71236410,966,392,71252646,71236410,42476,16339,1480464573,1472313856,100,100,100,100,2.27,2.4,4.81,4.84
-48857,26,155,26155,2453,981,60917723,59375329,2453,981,60917723,59375329,70648,30319,1401047133,1374422924,100,100,100,100,3.47,3.24,4.35,4.32
-48858,26,073,26073,49858,18952,445408229,442600364,50025,19032,450574934,447759426,70311,28381,1496186077,1483225590,99.67,99.58,98.85,98.85,70.91,66.78,29.77,29.84
-48858,26,111,26111,167,80,5166705,5159062,50025,19032,450574934,447759426,83629,35960,1367689618,1337087878,0.33,0.42,1.15,1.15,0.2,0.22,0.38,0.39
-48860,26,067,26067,1334,586,77013640,76654058,1334,586,77013640,76654058,63905,24778,1502312987,1479671240,100,100,100,100,2.09,2.37,5.13,5.18
-48861,26,045,26045,1381,555,55490722,55406803,1522,610,60926624,60731344,107759,47050,1500723603,1489695507,90.74,90.98,91.08,91.23,1.28,1.18,3.7,3.72
-48861,26,067,26067,141,55,5435902,5324541,1522,610,60926624,60731344,63905,24778,1502312987,1479671240,9.26,9.02,8.92,8.77,0.22,0.22,0.36,0.36
-48864,26,065,26065,20148,8777,56305469,55845137,20148,8777,56305469,55845137,280895,121281,1452238253,1440343968,100,100,100,100,7.17,7.24,3.88,3.88
-48865,26,067,26067,1903,886,59158619,57895916,1903,886,59158619,57895916,63905,24778,1502312987,1479671240,100,100,100,100,2.98,3.58,3.94,3.91
-48866,26,037,26037,3505,1337,72876746,72466290,4851,1912,126659884,126038252,75382,30695,1488097573,1466991079,72.25,69.93,57.54,57.5,4.65,4.36,4.9,4.94
-48866,26,155,26155,1346,575,53783138,53571962,4851,1912,126659884,126038252,70648,30319,1401047133,1374422924,27.75,30.07,42.46,42.5,1.91,1.9,3.84,3.9
-48867,26,155,26155,28264,12416,362198556,356495369,28264,12416,362198556,356495369,70648,30319,1401047133,1374422924,100,100,100,100,40.01,40.95,25.85,25.94
-48870,26,067,26067,148,52,153209,153209,148,52,153209,153209,63905,24778,1502312987,1479671240,100,100,100,100,0.23,0.21,0.01,0.01
-48871,26,057,26057,1952,838,80386331,78426581,1952,838,80386331,78426581,42476,16339,1480464573,1472313856,100,100,100,100,4.6,5.13,5.43,5.33
-48872,26,065,26065,439,163,24005856,23742209,7840,3070,150085666,145837140,280895,121281,1452238253,1440343968,5.6,5.31,15.99,16.28,0.16,0.13,1.65,1.65
-48872,26,093,26093,231,78,5271498,5269662,7840,3070,150085666,145837140,180967,72809,1516189327,1464001028,2.95,2.54,3.51,3.61,0.13,0.11,0.35,0.36
-48872,26,155,26155,7170,2829,120808312,116825269,7840,3070,150085666,145837140,70648,30319,1401047133,1374422924,91.45,92.15,80.49,80.11,10.15,9.33,8.62,8.5
-48873,26,037,26037,270,100,33415873,33213688,1615,610,87235110,86719295,75382,30695,1488097573,1466991079,16.72,16.39,38.31,38.3,0.36,0.33,2.25,2.26
-48873,26,067,26067,1345,510,53819237,53505607,1615,610,87235110,86719295,63905,24778,1502312987,1479671240,83.28,83.61,61.69,61.7,2.1,2.06,3.58,3.62
-48874,26,057,26057,180,65,1491556,1491556,180,65,1491556,1491556,42476,16339,1480464573,1472313856,100,100,100,100,0.42,0.4,0.1,0.1
-48875,26,037,26037,449,155,21839465,21594635,10186,4165,226903883,223263416,75382,30695,1488097573,1466991079,4.41,3.72,9.62,9.67,0.6,0.5,1.47,1.47
-48875,26,067,26067,9737,4010,205064418,201668781,10186,4165,226903883,223263416,63905,24778,1502312987,1479671240,95.59,96.28,90.38,90.33,15.24,16.18,13.65,13.63
-48876,26,045,26045,4014,1674,36340615,35842382,4014,1674,36340615,35842382,107759,47050,1500723603,1489695507,100,100,100,100,3.72,3.56,2.42,2.41
-48877,26,057,26057,1485,623,42942880,42332240,2392,1029,88326477,87266812,42476,16339,1480464573,1472313856,62.08,60.54,48.62,48.51,3.5,3.81,2.9,2.88
-48877,26,073,26073,115,58,10985893,10985893,2392,1029,88326477,87266812,70311,28381,1496186077,1483225590,4.81,5.64,12.44,12.59,0.16,0.2,0.73,0.74
-48877,26,117,26117,792,348,34397704,33948679,2392,1029,88326477,87266812,63342,28221,1866932682,1826976057,33.11,33.82,38.94,38.9,1.25,1.23,1.84,1.86
-48878,26,073,26073,1677,698,83277952,83151927,1677,698,83277952,83151927,70311,28381,1496186077,1483225590,100,100,100,100,2.39,2.46,5.57,5.61
-48879,26,037,26037,17924,7243,478593514,476667514,18075,7299,491741474,489675577,75382,30695,1488097573,1466991079,99.16,99.23,97.33,97.34,23.78,23.6,32.16,32.49
-48879,26,057,26057,151,56,13147960,13008063,18075,7299,491741474,489675577,42476,16339,1480464573,1472313856,0.84,0.77,2.67,2.66,0.36,0.34,0.89,0.88
-48880,26,057,26057,9544,2496,108169763,107161494,10669,2948,195792904,194344658,42476,16339,1480464573,1472313856,89.46,84.67,55.25,55.14,22.47,15.28,7.31,7.28
-48880,26,073,26073,164,66,11387412,11384449,10669,2948,195792904,194344658,70311,28381,1496186077,1483225590,1.54,2.24,5.82,5.86,0.23,0.23,0.76,0.77
-48880,26,111,26111,961,386,76235729,75798715,10669,2948,195792904,194344658,83629,35960,1367689618,1337087878,9.01,13.09,38.94,39,1.15,1.07,5.57,5.67
-48881,26,067,26067,5501,2321,146093262,144350256,5501,2321,146093262,144350256,63905,24778,1502312987,1479671240,100,100,100,100,8.61,9.37,9.72,9.76
-48883,26,073,26073,5278,2235,201942790,201275395,7122,2996,307200008,304723247,70311,28381,1496186077,1483225590,74.11,74.6,65.74,66.05,7.51,7.87,13.5,13.57
-48883,26,111,26111,1844,761,105257218,103447852,7122,2996,307200008,304723247,83629,35960,1367689618,1337087878,25.89,25.4,34.26,33.95,2.2,2.12,7.7,7.74
-48884,26,117,26117,4427,1938,159995218,157603292,4427,1938,159995218,157603292,63342,28221,1866932682,1826976057,100,100,100,100,6.99,6.87,8.57,8.63
-48885,26,117,26117,927,383,44754244,43996767,927,383,44754244,43996767,63342,28221,1866932682,1826976057,100,100,100,100,1.46,1.36,2.4,2.41
-48886,26,107,26107,51,24,3436517,3429299,2116,1259,80155933,77172486,42798,21131,1479386400,1437626850,2.41,1.91,4.29,4.44,0.12,0.11,0.23,0.24
-48886,26,117,26117,2065,1235,76719416,73743187,2116,1259,80155933,77172486,63342,28221,1866932682,1826976057,97.59,98.09,95.71,95.56,3.26,4.38,4.11,4.04
-48888,26,117,26117,6366,3132,233910065,229263854,6366,3132,233910065,229263854,63342,28221,1866932682,1826976057,100,100,100,100,10.05,11.1,12.53,12.55
-48889,26,057,26057,1322,581,77315687,76615155,1322,581,77315687,76615155,42476,16339,1480464573,1472313856,100,100,100,100,3.11,3.56,5.22,5.2
-48890,26,045,26045,1291,548,41149644,40964161,2152,867,81145099,80557027,107759,47050,1500723603,1489695507,59.99,63.21,50.71,50.85,1.2,1.16,2.74,2.75
-48890,26,067,26067,861,319,39995455,39592866,2152,867,81145099,80557027,63905,24778,1502312987,1479671240,40.01,36.79,49.29,49.15,1.35,1.29,2.66,2.68
-48891,26,117,26117,2985,1355,112051659,110811584,2985,1355,112051659,110811584,63342,28221,1866932682,1826976057,100,100,100,100,4.71,4.8,6,6.07
-48892,26,065,26065,3560,1457,111551915,111273556,4382,1755,140963461,140616855,280895,121281,1452238253,1440343968,81.24,83.02,79.14,79.13,1.27,1.2,7.68,7.73
-48892,26,093,26093,822,298,29411546,29343299,4382,1755,140963461,140616855,180967,72809,1516189327,1464001028,18.76,16.98,20.86,20.87,0.45,0.41,1.94,2
-48893,26,073,26073,5212,2671,138700006,132911814,5212,2671,138700006,132911814,70311,28381,1496186077,1483225590,100,100,100,100,7.41,9.41,9.27,8.96
-48894,26,037,26037,2059,724,74656355,74559663,2059,724,74656355,74559663,75382,30695,1488097573,1466991079,100,100,100,100,2.73,2.36,5.02,5.08
-48895,26,065,26065,11189,4659,216244637,215086719,11189,4659,216244637,215086719,280895,121281,1452238253,1440343968,100,100,100,100,3.98,3.84,14.89,14.93
-48896,26,073,26073,154,70,705778,705778,154,70,705778,705778,70311,28381,1496186077,1483225590,100,100,100,100,0.22,0.25,0.05,0.05
-48897,26,015,26015,1496,612,83089823,82717658,1525,627,84490650,84051294,59173,27010,1494529574,1432500402,98.1,97.61,98.34,98.41,2.53,2.27,5.56,5.77
-48897,26,045,26045,29,15,1400827,1333636,1525,627,84490650,84051294,107759,47050,1500723603,1489695507,1.9,2.39,1.66,1.59,0.03,0.03,0.09,0.09
-48906,26,037,26037,7565,3402,67152141,66737593,26634,11851,86947856,85874213,75382,30695,1488097573,1466991079,28.4,28.71,77.23,77.72,10.04,11.08,4.51,4.55
-48906,26,045,26045,870,363,4917863,4526364,26634,11851,86947856,85874213,107759,47050,1500723603,1489695507,3.27,3.06,5.66,5.27,0.81,0.77,0.33,0.3
-48906,26,065,26065,18199,8086,14877852,14610256,26634,11851,86947856,85874213,280895,121281,1452238253,1440343968,68.33,68.23,17.11,17.01,6.48,6.67,1.02,1.01
-48910,26,065,26065,34560,17159,40282153,39381753,34560,17159,40282153,39381753,280895,121281,1452238253,1440343968,100,100,100,100,12.3,14.15,2.77,2.73
-48911,26,045,26045,5090,2387,6065490,5654499,40111,17617,41819312,41156696,107759,47050,1500723603,1489695507,12.69,13.55,14.5,13.74,4.72,5.07,0.4,0.38
-48911,26,065,26065,35021,15230,35753822,35502197,40111,17617,41819312,41156696,280895,121281,1452238253,1440343968,87.31,86.45,85.5,86.26,12.47,12.56,2.46,2.46
-48912,26,065,26065,17035,8528,12601359,12433396,17035,8528,12601359,12433396,280895,121281,1452238253,1440343968,100,100,100,100,6.06,7.03,0.87,0.86
-48915,26,065,26065,9218,4239,4850385,4699574,9218,4239,4850385,4699574,280895,121281,1452238253,1440343968,100,100,100,100,3.28,3.5,0.33,0.33
-48917,26,045,26045,26676,12945,56056619,55099857,32062,15650,64339657,62979814,107759,47050,1500723603,1489695507,83.2,82.72,87.13,87.49,24.76,27.51,3.74,3.7
-48917,26,065,26065,5386,2705,8283038,7879957,32062,15650,64339657,62979814,280895,121281,1452238253,1440343968,16.8,17.28,12.87,12.51,1.92,2.23,0.57,0.55
-48921,26,065,26065,0,0,1019524,922942,0,0,1019524,922942,280895,121281,1452238253,1440343968,0,0,100,100,0,0,0.07,0.06
-48933,26,065,26065,2530,1962,2031499,1953348,2530,1962,2031499,1953348,280895,121281,1452238253,1440343968,100,100,100,100,0.9,1.62,0.14,0.14
-49001,26,077,26077,22095,10001,20138431,19959470,22095,10001,20138431,19959470,250331,110007,1502962768,1454688724,100,100,100,100,8.83,9.09,1.34,1.37
-49002,26,077,26077,18786,8724,52941375,45743298,18786,8724,52941375,45743298,250331,110007,1502962768,1454688724,100,100,100,100,7.5,7.93,3.52,3.14
-49004,26,077,26077,15645,6782,54969667,54605197,15645,6782,54969667,54605197,250331,110007,1502962768,1454688724,100,100,100,100,6.25,6.17,3.66,3.75
-49006,26,077,26077,26455,10941,16900915,16896869,26455,10941,16900915,16896869,250331,110007,1502962768,1454688724,100,100,100,100,10.57,9.95,1.12,1.16
-49007,26,077,26077,10762,5227,9383499,9334595,10762,5227,9383499,9334595,250331,110007,1502962768,1454688724,100,100,100,100,4.3,4.75,0.62,0.64
-49008,26,077,26077,16186,7529,17481502,16965681,16186,7529,17481502,16965681,250331,110007,1502962768,1454688724,100,100,100,100,6.47,6.84,1.16,1.17
-49009,26,077,26077,42012,18847,258290247,255148439,42362,19007,269460565,266294289,250331,110007,1502962768,1454688724,99.17,99.16,95.85,95.81,16.78,17.13,17.19,17.54
-49009,26,159,26159,350,160,11170318,11145850,42362,19007,269460565,266294289,76258,36785,2822821407,1573351092,0.83,0.84,4.15,4.19,0.46,0.43,0.4,0.71
-49010,26,005,26005,17284,7713,425204403,407610941,17374,7760,428875288,411274072,111408,49426,4748194712,2137337922,99.48,99.39,99.14,99.11,15.51,15.61,8.96,19.07
-49010,26,159,26159,90,47,3670885,3663131,17374,7760,428875288,411274072,76258,36785,2822821407,1573351092,0.52,0.61,0.86,0.89,0.12,0.13,0.13,0.23
-49011,26,023,26023,45,19,7090370,6962880,2285,967,84358936,83714735,45248,20841,1345954024,1311488743,1.97,1.96,8.41,8.32,0.1,0.09,0.53,0.53
-49011,26,025,26025,2200,932,75951453,75516531,2285,967,84358936,83714735,136146,61042,1860525582,1829135298,96.28,96.38,90.03,90.21,1.62,1.53,4.08,4.13
-49011,26,149,26149,40,16,1317113,1235324,2285,967,84358936,83714735,61295,27778,1349467276,1296524618,1.75,1.65,1.56,1.48,0.07,0.06,0.1,0.1
-49012,26,025,26025,96,38,1166552,1166552,3339,1525,83293592,80342684,136146,61042,1860525582,1829135298,2.88,2.49,1.4,1.45,0.07,0.06,0.06,0.06
-49012,26,077,26077,3243,1487,82127040,79176132,3339,1525,83293592,80342684,250331,110007,1502962768,1454688724,97.12,97.51,98.6,98.55,1.3,1.35,5.46,5.44
-49013,26,159,26159,5508,2503,154748910,152829718,5508,2503,154748910,152829718,76258,36785,2822821407,1573351092,100,100,100,100,7.22,6.8,5.48,9.71
-49014,26,025,26025,22127,9578,199159067,195794643,22127,9578,199159067,195794643,136146,61042,1860525582,1829135298,100,100,100,100,16.25,15.69,10.7,10.7
-49015,26,025,26025,26782,12315,62583462,60914723,26782,12315,62583462,60914723,136146,61042,1860525582,1829135298,100,100,100,100,19.67,20.17,3.36,3.33
-49017,26,015,26015,1525,815,37854048,35629910,20785,9753,148735597,143658486,59173,27010,1494529574,1432500402,7.34,8.36,25.45,24.8,2.58,3.02,2.53,2.49
-49017,26,025,26025,19260,8938,110881549,108028576,20785,9753,148735597,143658486,136146,61042,1860525582,1829135298,92.66,91.64,74.55,75.2,14.15,14.64,5.96,5.91
-49021,26,015,26015,2106,869,94960667,93728987,6182,2624,241652994,237878360,59173,27010,1494529574,1432500402,34.07,33.12,39.3,39.4,3.56,3.22,6.35,6.54
-49021,26,025,26025,706,296,33962434,32312468,6182,2624,241652994,237878360,136146,61042,1860525582,1829135298,11.42,11.28,14.05,13.58,0.52,0.48,1.83,1.77
-49021,26,045,26045,3370,1459,112729893,111836905,6182,2624,241652994,237878360,107759,47050,1500723603,1489695507,54.51,55.6,46.65,47.01,3.13,3.1,7.51,7.51
-49022,26,021,26021,31565,14318,180368878,173135698,31814,14523,185450522,178140293,156813,76922,4095993231,1470457874,99.22,98.59,97.26,97.19,20.13,18.61,4.4,11.77
-49022,26,159,26159,249,205,5081644,5004595,31814,14523,185450522,178140293,76258,36785,2822821407,1573351092,0.78,1.41,2.74,2.81,0.33,0.56,0.18,0.32
-49024,26,077,26077,28552,12305,44896383,44431950,28552,12305,44896383,44431950,250331,110007,1502962768,1454688724,100,100,100,100,11.41,11.19,2.99,3.05
-49026,26,005,26005,169,124,8480782,8070220,2186,1250,78685775,76520030,111408,49426,4748194712,2137337922,7.73,9.92,10.78,10.55,0.15,0.25,0.18,0.38
-49026,26,159,26159,2017,1126,70204993,68449810,2186,1250,78685775,76520030,76258,36785,2822821407,1573351092,92.27,90.08,89.22,89.45,2.64,3.06,2.49,4.35
-49027,26,159,26159,161,66,1136958,1105549,161,66,1136958,1105549,76258,36785,2822821407,1573351092,100,100,100,100,0.21,0.18,0.04,0.07
-49028,26,023,26023,6387,2841,311150606,307617297,6387,2841,311150606,307617297,45248,20841,1345954024,1311488743,100,100,100,100,14.12,13.63,23.12,23.46
-49029,26,025,26025,1606,686,87645246,87187414,1606,686,87645246,87187414,136146,61042,1860525582,1829135298,100,100,100,100,1.18,1.12,4.71,4.77
-49030,26,023,26023,106,53,14695013,14318671,2523,1066,124479360,122697284,45248,20841,1345954024,1311488743,4.2,4.97,11.81,11.67,0.23,0.25,1.09,1.09
-49030,26,149,26149,2417,1013,109784347,108378613,2523,1066,124479360,122697284,61295,27778,1349467276,1296524618,95.8,95.03,88.19,88.33,3.94,3.65,8.14,8.36
-49031,26,027,26027,7884,4257,309001958,296284972,7884,4257,309001958,296284972,52293,25887,1316534768,1269253670,100,100,100,100,15.08,16.44,23.47,23.34
-49032,26,149,26149,3105,1159,96863189,95310654,3105,1159,96863189,95310654,61295,27778,1349467276,1296524618,100,100,100,100,5.07,4.17,7.18,7.35
-49033,26,025,26025,1760,752,84598140,83599419,1760,752,84598140,83599419,136146,61042,1860525582,1829135298,100,100,100,100,1.29,1.23,4.55,4.57
-49034,26,025,26025,193,76,17416175,17390909,2389,967,98737849,97999627,136146,61042,1860525582,1829135298,8.08,7.86,17.64,17.75,0.14,0.12,0.94,0.95
-49034,26,077,26077,2196,891,81321674,80608718,2389,967,98737849,97999627,250331,110007,1502962768,1454688724,91.92,92.14,82.36,82.25,0.88,0.81,5.41,5.54
-49036,26,023,26023,24868,11666,428067456,407748472,24868,11666,428067456,407748472,45248,20841,1345954024,1311488743,100,100,100,100,54.96,55.98,31.8,31.09
-49037,26,025,26025,22576,10567,65467993,64216392,22576,10567,65467993,64216392,136146,61042,1860525582,1829135298,100,100,100,100,16.58,17.31,3.52,3.51
-49038,26,021,26021,8910,4895,93645870,87304671,9310,5116,104050002,97692930,156813,76922,4095993231,1470457874,95.7,95.68,90,89.37,5.68,6.36,2.29,5.94
-49038,26,159,26159,400,221,10404132,10388259,9310,5116,104050002,97692930,76258,36785,2822821407,1573351092,4.3,4.32,10,10.63,0.52,0.6,0.37,0.66
-49040,26,023,26023,257,169,22573481,21771180,3388,1893,110055234,103904557,45248,20841,1345954024,1311488743,7.59,8.93,20.51,20.95,0.57,0.81,1.68,1.66
-49040,26,149,26149,3131,1724,87481753,82133377,3388,1893,110055234,103904557,61295,27778,1349467276,1296524618,92.41,91.07,79.49,79.05,5.11,6.21,6.48,6.33
-49042,26,027,26027,17,9,5184833,5182016,4892,2077,144691526,140969139,52293,25887,1316534768,1269253670,0.35,0.43,3.58,3.68,0.03,0.03,0.39,0.41
-49042,26,149,26149,4875,2068,139506693,135787123,4892,2077,144691526,140969139,61295,27778,1349467276,1296524618,99.65,99.57,96.42,96.32,7.95,7.44,10.34,10.47
-49043,26,159,26159,2462,1399,88814703,83867086,2462,1399,88814703,83867086,76258,36785,2822821407,1573351092,100,100,100,100,3.23,3.8,3.15,5.33
-49045,26,027,26027,449,284,45101735,43854374,5598,2730,231374446,224571193,52293,25887,1316534768,1269253670,8.02,10.4,19.49,19.53,0.86,1.1,3.43,3.46
-49045,26,159,26159,5149,2446,186272711,180716819,5598,2730,231374446,224571193,76258,36785,2822821407,1573351092,91.98,89.6,80.51,80.47,6.75,6.65,6.6,11.49
-49046,26,015,26015,7281,3771,223814047,204619036,7281,3771,223814047,204619036,59173,27010,1494529574,1432500402,100,100,100,100,12.3,13.96,14.98,14.28
-49047,26,021,26021,95,43,6241192,6215596,14805,8231,320053160,309522149,156813,76922,4095993231,1470457874,0.64,0.52,1.95,2.01,0.06,0.06,0.15,0.42
-49047,26,027,26027,13806,7249,289541919,281249275,14805,8231,320053160,309522149,52293,25887,1316534768,1269253670,93.25,88.07,90.47,90.87,26.4,28,21.99,22.16
-49047,26,159,26159,904,939,24270049,22057278,14805,8231,320053160,309522149,76258,36785,2822821407,1573351092,6.11,11.41,7.58,7.13,1.19,2.55,0.86,1.4
-49048,26,077,26077,25432,11090,101673455,98181514,25432,11090,101673455,98181514,250331,110007,1502962768,1454688724,100,100,100,100,10.16,10.08,6.76,6.75
-49050,26,015,26015,1557,744,66349829,64443504,1557,744,66349829,64443504,59173,27010,1494529574,1432500402,100,100,100,100,2.63,2.75,4.44,4.5
-49051,26,025,26025,2436,982,76770723,76218838,2436,982,76770723,76218838,136146,61042,1860525582,1829135298,100,100,100,100,1.79,1.61,4.13,4.17
-49052,26,025,26025,245,108,15945743,15894695,975,404,79923005,79871957,136146,61042,1860525582,1829135298,25.13,26.73,19.95,19.9,0.18,0.18,0.86,0.87
-49052,26,077,26077,730,296,63977262,63977262,975,404,79923005,79871957,250331,110007,1502962768,1454688724,74.87,73.27,80.05,80.1,0.29,0.27,4.26,4.4
-49053,26,077,26077,7028,2775,66402520,62342614,7028,2775,66402520,62342614,250331,110007,1502962768,1454688724,100,100,100,100,2.81,2.52,4.42,4.29
-49055,26,005,26005,513,357,11507737,10136662,6276,2965,157851258,152394039,111408,49426,4748194712,2137337922,8.17,12.04,7.29,6.65,0.46,0.72,0.24,0.47
-49055,26,159,26159,5763,2608,146343521,142257377,6276,2965,157851258,152394039,76258,36785,2822821407,1573351092,91.83,87.96,92.71,93.35,7.56,7.09,5.18,9.04
-49056,26,005,26005,1484,797,58861088,57640490,4016,2250,151581787,146624816,111408,49426,4748194712,2137337922,36.95,35.42,38.83,39.31,1.33,1.61,1.24,2.7
-49056,26,159,26159,2532,1453,92720699,88984326,4016,2250,151581787,146624816,76258,36785,2822821407,1573351092,63.05,64.58,61.17,60.69,3.32,3.95,3.28,5.66
-49057,26,159,26159,6795,2723,136044566,133344148,6795,2723,136044566,133344148,76258,36785,2822821407,1573351092,100,100,100,100,8.91,7.4,4.82,8.48
-49058,26,015,26015,19127,8316,391436250,381660928,19127,8316,391436250,381660928,59173,27010,1494529574,1432500402,100,100,100,100,32.32,30.79,26.19,26.64
-49060,26,015,26015,1174,526,38699056,36481807,1738,901,54724067,48961176,59173,27010,1494529574,1432500402,67.55,58.38,70.72,74.51,1.98,1.95,2.59,2.55
-49060,26,077,26077,564,375,16025011,12479369,1738,901,54724067,48961176,250331,110007,1502962768,1454688724,32.45,41.62,29.28,25.49,0.23,0.34,1.07,0.86
-49061,26,027,26027,1622,787,100533529,97032534,1622,787,100533529,97032534,52293,25887,1316534768,1269253670,100,100,100,100,3.1,3.04,7.64,7.64
-49064,26,159,26159,3717,1714,121540979,117693968,3717,1714,121540979,117693968,76258,36785,2822821407,1573351092,100,100,100,100,4.87,4.66,4.31,7.48
-49065,26,159,26159,6662,3000,118141083,111943745,6662,3000,118141083,111943745,76258,36785,2822821407,1573351092,100,100,100,100,8.74,8.16,4.19,7.11
-49066,26,149,26149,722,276,53074546,52323846,722,276,53074546,52323846,61295,27778,1349467276,1296524618,100,100,100,100,1.18,0.99,3.93,4.04
-49067,26,027,26027,3270,1546,142827829,137674572,4522,2131,221473405,214772949,52293,25887,1316534768,1269253670,72.31,72.55,64.49,64.1,6.25,5.97,10.85,10.85
-49067,26,149,26149,891,366,60800874,60020398,4522,2131,221473405,214772949,61295,27778,1349467276,1296524618,19.7,17.18,27.45,27.95,1.45,1.32,4.51,4.63
-49067,26,159,26159,361,219,17844702,17077979,4522,2131,221473405,214772949,76258,36785,2822821407,1573351092,7.98,10.28,8.06,7.95,0.47,0.6,0.63,1.09
-49068,26,025,26025,14646,6564,342338666,335282310,14646,6564,342338666,335282310,136146,61042,1860525582,1829135298,100,100,100,100,10.76,10.75,18.4,18.33
-49070,26,005,26005,2451,959,69917930,68377010,2451,959,69917930,68377010,111408,49426,4748194712,2137337922,100,100,100,100,2.2,1.94,1.47,3.2
-49071,26,077,26077,1607,589,17870800,16782750,9174,3500,75468985,73786576,250331,110007,1502962768,1454688724,17.52,16.83,23.68,22.74,0.64,0.54,1.19,1.15
-49071,26,159,26159,7567,2911,57598185,57003826,9174,3500,75468985,73786576,76258,36785,2822821407,1573351092,82.48,83.17,76.32,77.26,9.92,7.91,2.04,3.62
-49072,26,149,26149,3164,1316,149446860,145402737,3164,1316,149446860,145402737,61295,27778,1349467276,1296524618,100,100,100,100,5.16,4.74,11.07,11.21
-49073,26,015,26015,4546,1969,156603129,154354325,4951,2132,182850507,180562969,59173,27010,1494529574,1432500402,91.82,92.35,85.65,85.49,7.68,7.29,10.48,10.78
-49073,26,045,26045,405,163,26247378,26208644,4951,2132,182850507,180562969,107759,47050,1500723603,1489695507,8.18,7.65,14.35,14.51,0.38,0.35,1.75,1.76
-49074,26,077,26077,149,72,183834,183834,149,72,183834,183834,250331,110007,1502962768,1454688724,100,100,100,100,0.06,0.07,0.01,0.01
-49075,26,149,26149,121,69,138654,138654,121,69,138654,138654,61295,27778,1349467276,1296524618,100,100,100,100,0.2,0.25,0.01,0.01
-49076,26,025,26025,1064,475,65667496,65306532,4589,1659,145616905,144551153,136146,61042,1860525582,1829135298,23.19,28.63,45.1,45.18,0.78,0.78,3.53,3.57
-49076,26,045,26045,3525,1184,79949409,79244621,4589,1659,145616905,144551153,107759,47050,1500723603,1489695507,76.81,71.37,54.9,54.82,3.27,2.52,5.33,5.32
-49078,26,005,26005,8352,3538,107718887,106027350,8902,3752,126140611,124310372,111408,49426,4748194712,2137337922,93.82,94.3,85.4,85.29,7.5,7.16,2.27,4.96
-49078,26,077,26077,460,177,15722589,15590297,8902,3752,126140611,124310372,250331,110007,1502962768,1454688724,5.17,4.72,12.46,12.54,0.18,0.16,1.05,1.07
-49078,26,159,26159,90,37,2699135,2692725,8902,3752,126140611,124310372,76258,36785,2822821407,1573351092,1.01,0.99,2.14,2.17,0.12,0.1,0.1,0.17
-49079,26,159,26159,13606,6082,220885252,215070301,13606,6082,220885252,215070301,76258,36785,2822821407,1573351092,100,100,100,100,17.84,16.53,7.82,13.67
-49080,26,005,26005,11279,4635,107939399,106425500,15802,6588,207776502,201885240,111408,49426,4748194712,2137337922,71.38,70.36,51.95,52.72,10.12,9.38,2.27,4.98
-49080,26,015,26015,2938,1343,67767502,63751015,15802,6588,207776502,201885240,59173,27010,1494529574,1432500402,18.59,20.39,32.62,31.58,4.97,4.97,4.53,4.45
-49080,26,077,26077,1585,610,32069601,31708725,15802,6588,207776502,201885240,250331,110007,1502962768,1454688724,10.03,9.26,15.43,15.71,0.63,0.55,2.13,2.18
-49082,26,023,26023,6327,2892,209330788,205514492,6579,3076,227222402,222616577,45248,20841,1345954024,1311488743,96.17,94.02,92.13,92.32,13.98,13.88,15.55,15.67
-49082,26,059,26059,252,184,17891614,17102085,6579,3076,227222402,222616577,46688,21757,1572139031,1549158422,3.83,5.98,7.87,7.68,0.54,0.85,1.14,1.1
-49083,26,015,26015,24,11,74440,74440,6961,3105,92668938,87339702,59173,27010,1494529574,1432500402,0.34,0.35,0.08,0.09,0.04,0.04,0,0.01
-49083,26,077,26077,6937,3094,92594498,87265262,6961,3105,92668938,87339702,250331,110007,1502962768,1454688724,99.66,99.65,99.92,99.91,2.77,2.81,6.16,6
-49084,26,021,26021,36,17,48874,48874,36,17,48874,48874,156813,76922,4095993231,1470457874,100,100,100,100,0.02,0.02,0,0
-49085,26,021,26021,23804,11268,67684725,60949593,23804,11268,67684725,60949593,156813,76922,4095993231,1470457874,100,100,100,100,15.18,14.65,1.65,4.14
-49087,26,077,26077,6039,2345,154040429,149633923,6126,2377,161540776,157124301,250331,110007,1502962768,1454688724,98.58,98.65,95.36,95.23,2.41,2.13,10.25,10.29
-49087,26,159,26159,87,32,7500347,7490378,6126,2377,161540776,157124301,76258,36785,2822821407,1573351092,1.42,1.35,4.64,4.77,0.11,0.09,0.27,0.48
-49088,26,077,26077,3648,1469,85353562,83168246,3648,1469,85353562,83168246,250331,110007,1502962768,1454688724,100,100,100,100,1.46,1.34,5.68,5.72
-49089,26,023,26023,1875,889,101666795,100086166,1875,889,101666795,100086166,45248,20841,1345954024,1311488743,100,100,100,100,4.14,4.27,7.55,7.63
-49090,26,005,26005,2475,1867,82823023,82662532,13810,8579,210030910,204121417,111408,49426,4748194712,2137337922,17.92,21.76,39.43,40.5,2.22,3.78,1.74,3.87
-49090,26,159,26159,11335,6712,127207887,121458885,13810,8579,210030910,204121417,76258,36785,2822821407,1573351092,82.08,78.24,60.57,59.5,14.86,18.25,4.51,7.72
-49091,26,149,26149,19872,8794,238764992,225604514,19872,8794,238764992,225604514,61295,27778,1349467276,1296524618,100,100,100,100,32.42,31.66,17.69,17.4
-49092,26,023,26023,418,200,35034782,34678083,2187,956,146548100,144645595,45248,20841,1345954024,1311488743,19.11,20.92,23.91,23.97,0.92,0.96,2.6,2.64
-49092,26,025,26025,1769,756,111513318,109967512,2187,956,146548100,144645595,136146,61042,1860525582,1829135298,80.89,79.08,76.09,76.03,1.3,1.24,5.99,6.01
-49093,26,027,26027,460,272,16368323,15799661,18380,8858,290577593,273776359,52293,25887,1316534768,1269253670,2.5,3.07,5.63,5.77,0.88,1.05,1.24,1.24
-49093,26,149,26149,17920,8586,274209270,257976698,18380,8858,290577593,273776359,61295,27778,1349467276,1296524618,97.5,96.93,94.37,94.23,29.24,30.91,20.32,19.9
-49094,26,023,26023,3367,1579,119478672,116359481,4104,1902,151960619,147878444,45248,20841,1345954024,1311488743,82.04,83.02,78.62,78.69,7.44,7.58,8.88,8.87
-49094,26,025,26025,737,323,32481947,31518963,4104,1902,151960619,147878444,136146,61042,1860525582,1829135298,17.96,16.98,21.38,21.31,0.54,0.53,1.75,1.72
-49095,26,027,26027,1960,1351,76102858,72034225,1960,1351,76102858,72034225,52293,25887,1316534768,1269253670,100,100,100,100,3.75,5.22,5.78,5.68
-49096,26,045,26045,3316,1356,173342930,171822893,3316,1356,173342930,171822893,107759,47050,1500723603,1489695507,100,100,100,100,3.08,2.88,11.55,11.53
-49097,26,077,26077,10220,4381,190821390,183149114,10326,4423,200439423,192730942,250331,110007,1502962768,1454688724,98.97,99.05,95.2,95.03,4.08,3.98,12.7,12.59
-49097,26,149,26149,106,42,9618033,9581828,10326,4423,200439423,192730942,61295,27778,1349467276,1296524618,1.03,0.95,4.8,4.97,0.17,0.15,0.71,0.74
-49098,26,021,26021,5513,2796,67830191,64901074,5966,2978,87018754,84006413,156813,76922,4095993231,1470457874,92.41,93.89,77.95,77.26,3.52,3.63,1.66,4.41
-49098,26,159,26159,453,182,19188563,19105339,5966,2978,87018754,84006413,76258,36785,2822821407,1573351092,7.59,6.11,22.05,22.74,0.59,0.49,0.68,1.21
-49099,26,027,26027,698,344,31592169,30295158,5629,2693,160053121,152926010,52293,25887,1316534768,1269253670,12.4,12.77,19.74,19.81,1.33,1.33,2.4,2.39
-49099,26,149,26149,4931,2349,128460952,122630852,5629,2693,160053121,152926010,61295,27778,1349467276,1296524618,87.6,87.23,80.26,80.19,8.04,8.46,9.52,9.46
-49101,26,021,26021,3104,1350,56665084,56498217,3104,1350,56665084,56498217,156813,76922,4095993231,1470457874,100,100,100,100,1.98,1.76,1.38,3.84
-49102,26,021,26021,1556,592,40094103,38416833,1563,596,41747167,40069897,156813,76922,4095993231,1470457874,99.55,99.33,96.04,95.87,0.99,0.77,0.98,2.61
-49102,26,027,26027,7,4,1653064,1653064,1563,596,41747167,40069897,52293,25887,1316534768,1269253670,0.45,0.67,3.96,4.13,0.01,0.02,0.13,0.13
-49103,26,021,26021,11082,4607,120328541,115225844,11082,4607,120328541,115225844,156813,76922,4095993231,1470457874,100,100,100,100,7.07,5.99,2.94,7.84
-49104,26,021,26021,868,0,412375,412375,868,0,412375,412375,156813,76922,4095993231,1470457874,100,0,100,100,0.55,0,0.01,0.03
-49106,26,021,26021,4636,2342,44884759,40687452,4636,2342,44884759,40687452,156813,76922,4095993231,1470457874,100,100,100,100,2.96,3.04,1.1,2.77
-49107,26,021,26021,10382,4879,173386809,169398477,10382,4879,173386809,169398477,156813,76922,4095993231,1470457874,100,100,100,100,6.62,6.34,4.23,11.52
-49111,26,021,26021,3200,1436,105233538,103688270,3346,1540,107359497,105807558,156813,76922,4095993231,1470457874,95.64,93.25,98.02,98,2.04,1.87,2.57,7.05
-49111,26,027,26027,146,104,2125959,2119288,3346,1540,107359497,105807558,52293,25887,1316534768,1269253670,4.36,6.75,1.98,2,0.28,0.4,0.16,0.17
-49112,26,027,26027,10171,4508,117550960,111433865,10171,4508,117550960,111433865,52293,25887,1316534768,1269253670,100,100,100,100,19.45,17.41,8.93,8.78
-49113,26,021,26021,1904,916,91946503,91576412,1904,916,91946503,91576412,156813,76922,4095993231,1470457874,100,100,100,100,1.21,1.19,2.24,6.23
-49115,26,021,26021,294,531,6265187,3459965,294,531,6265187,3459965,156813,76922,4095993231,1470457874,100,100,100,100,0.19,0.69,0.15,0.24
-49116,26,021,26021,394,661,7950099,5460030,394,661,7950099,5460030,156813,76922,4095993231,1470457874,100,100,100,100,0.25,0.86,0.19,0.37
-49117,26,021,26021,3951,3736,54781973,49543336,3951,3736,54781973,49543336,156813,76922,4095993231,1470457874,100,100,100,100,2.52,4.86,1.34,3.37
-49119,26,021,26021,136,61,338943,337870,136,61,338943,337870,156813,76922,4095993231,1470457874,100,100,100,100,0.09,0.08,0.01,0.02
-49120,26,021,26021,26978,12154,164720778,160787296,37122,16436,310542413,304171025,156813,76922,4095993231,1470457874,72.67,73.95,53.04,52.86,17.2,15.8,4.02,10.93
-49120,26,027,26027,10144,4282,145821635,143383729,37122,16436,310542413,304171025,52293,25887,1316534768,1269253670,27.33,26.05,46.96,47.14,19.4,16.54,11.08,11.3
-49125,26,021,26021,2046,1634,38016501,34953065,2046,1634,38016501,34953065,156813,76922,4095993231,1470457874,100,100,100,100,1.3,2.12,0.93,2.38
-49126,26,021,26021,1341,633,42759492,41460467,1341,633,42759492,41460467,156813,76922,4095993231,1470457874,100,100,100,100,0.86,0.82,1.04,2.82
-49127,26,021,26021,10694,4902,47933647,41928933,10694,4902,47933647,41928933,156813,76922,4095993231,1470457874,100,100,100,100,6.82,6.37,1.17,2.85
-49128,26,021,26021,3715,1961,111868880,111081801,3715,1961,111868880,111081801,156813,76922,4095993231,1470457874,100,100,100,100,2.37,2.55,2.73,7.55
-49129,26,021,26021,609,1190,14186470,12985725,609,1190,14186470,12985725,156813,76922,4095993231,1470457874,100,100,100,100,0.39,1.55,0.35,0.88
-49130,26,027,26027,1659,890,33127997,31256937,1659,890,33127997,31256937,52293,25887,1316534768,1269253670,100,100,100,100,3.17,3.44,2.52,2.46
-49201,26,075,26075,45190,17071,408169141,395315443,45190,17071,408169141,395315443,160248,69458,1873846344,1817306121,100,100,100,100,28.2,24.58,21.78,21.75
-49202,26,075,26075,20661,10272,36218059,36098220,20661,10272,36218059,36098220,160248,69458,1873846344,1817306121,100,100,100,100,12.89,14.79,1.93,1.99
-49203,26,075,26075,38280,17213,70269479,68030376,38280,17213,70269479,68030376,160248,69458,1873846344,1817306121,100,100,100,100,23.89,24.78,3.75,3.74
-49220,26,059,26059,349,143,23119061,23073719,2290,1138,74032597,73363297,46688,21757,1572139031,1549158422,15.24,12.57,31.23,31.45,0.75,0.66,1.47,1.49
-49220,26,091,26091,1941,995,50913536,50289578,2290,1138,74032597,73363297,99892,43452,1972038943,1941337767,84.76,87.43,68.77,68.55,1.94,2.29,2.58,2.59
-49221,26,091,26091,41310,16292,308415114,306715838,41310,16292,308415114,306715838,99892,43452,1972038943,1941337767,100,100,100,100,41.35,37.49,15.64,15.8
-49224,26,025,26025,12400,5274,186219814,180608239,14224,6021,261723409,255961362,136146,61042,1860525582,1829135298,87.18,87.59,71.15,70.56,9.11,8.64,10.01,9.87
-49224,26,075,26075,1824,747,75503595,75353123,14224,6021,261723409,255961362,160248,69458,1873846344,1817306121,12.82,12.41,28.85,29.44,1.14,1.08,4.03,4.15
-49227,26,059,26059,1284,551,66497532,66176623,1284,551,66497532,66176623,46688,21757,1572139031,1549158422,100,100,100,100,2.75,2.53,4.23,4.27
-49228,26,091,26091,5545,2363,206490432,205770950,5545,2363,206490432,205770950,99892,43452,1972038943,1941337767,100,100,100,100,5.55,5.44,10.47,10.6
-49229,26,091,26091,3130,1247,130367090,130275828,3245,1293,142965978,142874716,99892,43452,1972038943,1941337767,96.46,96.44,91.19,91.18,3.13,2.87,6.61,6.71
-49229,26,115,26115,115,46,12598888,12598888,3245,1293,142965978,142874716,152021,62971,1761240519,1422924260,3.54,3.56,8.81,8.82,0.08,0.07,0.72,0.89
-49230,26,075,26075,8240,4559,129843460,118613353,10475,6151,186759208,169850984,160248,69458,1873846344,1817306121,78.66,74.12,69.52,69.83,5.14,6.56,6.93,6.53
-49230,26,091,26091,2235,1592,56915748,51237631,10475,6151,186759208,169850984,99892,43452,1972038943,1941337767,21.34,25.88,30.48,30.17,2.24,3.66,2.89,2.64
-49232,26,059,26059,2801,1326,164386388,162576815,2801,1326,164386388,162576815,46688,21757,1572139031,1549158422,100,100,100,100,6,6.09,10.46,10.49
-49233,26,059,26059,1470,719,18845025,18053787,2646,1313,57994698,55500599,46688,21757,1572139031,1549158422,55.56,54.76,32.49,32.53,3.15,3.3,1.2,1.17
-49233,26,075,26075,325,145,19048236,18782232,2646,1313,57994698,55500599,160248,69458,1873846344,1817306121,12.28,11.04,32.84,33.84,0.2,0.21,1.02,1.03
-49233,26,091,26091,851,449,20101437,18664580,2646,1313,57994698,55500599,99892,43452,1972038943,1941337767,32.16,34.2,34.66,33.63,0.85,1.03,1.02,0.96
-49234,26,075,26075,2579,1379,60166212,56755852,2579,1379,60166212,56755852,160248,69458,1873846344,1817306121,100,100,100,100,1.61,1.99,3.21,3.12
-49235,26,091,26091,2117,869,129944127,129324012,2117,869,129944127,129324012,99892,43452,1972038943,1941337767,100,100,100,100,2.12,2,6.59,6.66
-49236,26,091,26091,4194,1745,51785866,51608711,4838,2021,97888202,97228127,99892,43452,1972038943,1941337767,86.69,86.34,52.9,53.08,4.2,4.02,2.63,2.66
-49236,26,161,26161,644,276,46102336,45619416,4838,2021,97888202,97228127,344791,147573,1871057207,1828442046,13.31,13.66,47.1,46.92,0.19,0.19,2.46,2.49
-49237,26,025,26025,14,11,5073950,5073950,2980,1299,100545211,98738643,136146,61042,1860525582,1829135298,0.47,0.85,5.05,5.14,0.01,0.02,0.27,0.28
-49237,26,075,26075,2966,1288,95471261,93664693,2980,1299,100545211,98738643,160248,69458,1873846344,1817306121,99.53,99.15,94.95,94.86,1.85,1.85,5.09,5.15
-49238,26,091,26091,1407,571,51061062,50686936,1735,684,73687355,73227767,99892,43452,1972038943,1941337767,81.1,83.48,69.29,69.22,1.41,1.31,2.59,2.61
-49238,26,115,26115,328,113,22626293,22540831,1735,684,73687355,73227767,152021,62971,1761240519,1422924260,18.9,16.52,30.71,30.78,0.22,0.18,1.28,1.58
-49240,26,075,26075,7904,3421,240364084,231692864,8703,3725,283431204,273767160,160248,69458,1873846344,1817306121,90.82,91.84,84.81,84.63,4.93,4.93,12.83,12.75
-49240,26,161,26161,799,304,43067120,42074296,8703,3725,283431204,273767160,344791,147573,1871057207,1828442046,9.18,8.16,15.19,15.37,0.23,0.21,2.3,2.3
-49241,26,075,26075,2579,1075,89396285,88131916,2579,1075,89396285,88131916,160248,69458,1873846344,1817306121,100,100,100,100,1.61,1.55,4.77,4.85
-49242,26,059,26059,15248,6740,241486288,234666388,15248,6740,241486288,234666388,46688,21757,1572139031,1549158422,100,100,100,100,32.66,30.98,15.36,15.15
-49245,26,023,26023,96,36,4978614,4965648,4845,2016,252308373,250228206,45248,20841,1345954024,1311488743,1.98,1.79,1.97,1.98,0.21,0.17,0.37,0.38
-49245,26,025,26025,4721,1970,243670089,241602888,4845,2016,252308373,250228206,136146,61042,1860525582,1829135298,97.44,97.72,96.58,96.55,3.47,3.23,13.1,13.21
-49245,26,075,26075,28,10,3659670,3659670,4845,2016,252308373,250228206,160248,69458,1873846344,1817306121,0.58,0.5,1.45,1.46,0.02,0.01,0.2,0.2
-49246,26,059,26059,97,48,5337784,5110410,3255,1486,92091252,88518635,46688,21757,1572139031,1549158422,2.98,3.23,5.8,5.77,0.21,0.22,0.34,0.33
-49246,26,075,26075,3158,1438,86753468,83408225,3255,1486,92091252,88518635,160248,69458,1873846344,1817306121,97.02,96.77,94.2,94.23,1.97,2.07,4.63,4.59
-49247,26,059,26059,1403,638,80050177,79401433,5768,2710,225318880,221526468,46688,21757,1572139031,1549158422,24.32,23.54,35.53,35.84,3.01,2.93,5.09,5.13
-49247,26,091,26091,4365,2072,145268703,142125035,5768,2710,225318880,221526468,99892,43452,1972038943,1941337767,75.68,76.46,64.47,64.16,4.37,4.77,7.37,7.32
-49248,26,091,26091,899,378,85157231,85157231,899,378,85157231,85157231,99892,43452,1972038943,1941337767,100,100,100,100,0.9,0.87,4.32,4.39
-49249,26,059,26059,3050,1705,83325954,80031491,3408,1868,86794909,82957771,46688,21757,1572139031,1549158422,89.5,91.27,96,96.47,6.53,7.84,5.3,5.17
-49249,26,075,26075,358,163,3468955,2926280,3408,1868,86794909,82957771,160248,69458,1873846344,1817306121,10.5,8.73,4,3.53,0.22,0.23,0.19,0.16
-49250,26,059,26059,6010,2567,195173335,193825819,6182,2634,203765411,202347667,46688,21757,1572139031,1549158422,97.22,97.46,95.78,95.79,12.87,11.8,12.41,12.51
-49250,26,075,26075,172,67,8592076,8521848,6182,2634,203765411,202347667,160248,69458,1873846344,1817306121,2.78,2.54,4.22,4.21,0.11,0.1,0.46,0.47
-49251,26,065,26065,5933,2417,145076986,144418159,6229,2529,151798456,151121393,280895,121281,1452238253,1440343968,95.25,95.57,95.57,95.56,2.11,1.99,9.99,10.03
-49251,26,075,26075,296,112,6721470,6703234,6229,2529,151798456,151121393,160248,69458,1873846344,1817306121,4.75,4.43,4.43,4.44,0.18,0.16,0.36,0.37
-49252,26,023,26023,46,23,6534017,6249456,2605,1145,101612677,101007207,45248,20841,1345954024,1311488743,1.77,2.01,6.43,6.19,0.1,0.11,0.49,0.48
-49252,26,025,26025,9,4,518544,518544,2605,1145,101612677,101007207,136146,61042,1860525582,1829135298,0.35,0.35,0.51,0.51,0.01,0.01,0.03,0.03
-49252,26,059,26059,2435,1071,87847145,87573306,2605,1145,101612677,101007207,46688,21757,1572139031,1549158422,93.47,93.54,86.45,86.7,5.22,4.92,5.59,5.65
-49252,26,075,26075,115,47,6712971,6665901,2605,1145,101612677,101007207,160248,69458,1873846344,1817306121,4.41,4.1,6.61,6.6,0.07,0.07,0.36,0.37
-49253,26,091,26091,3166,2359,70966089,63552169,3166,2359,70966089,63552169,99892,43452,1972038943,1941337767,100,100,100,100,3.17,5.43,3.6,3.27
-49254,26,075,26075,3321,1569,10034977,8400466,3321,1569,10034977,8400466,160248,69458,1873846344,1817306121,100,100,100,100,2.07,2.26,0.54,0.46
-49255,26,023,26023,1100,374,61921250,61784737,1939,856,104454186,103560392,45248,20841,1345954024,1311488743,56.73,43.69,59.28,59.66,2.43,1.79,4.6,4.71
-49255,26,059,26059,839,482,42532936,41775655,1939,856,104454186,103560392,46688,21757,1572139031,1549158422,43.27,56.31,40.72,40.34,1.8,2.22,2.71,2.7
-49256,26,091,26091,3888,1658,152662072,152520811,3888,1658,152662072,152520811,99892,43452,1972038943,1941337767,100,100,100,100,3.89,3.82,7.74,7.86
-49259,26,075,26075,2523,1112,74999185,72484244,2523,1112,74999185,72484244,160248,69458,1873846344,1817306121,100,100,100,100,1.57,1.6,4,3.99
-49261,26,075,26075,290,125,1521485,1517832,290,125,1521485,1517832,160248,69458,1873846344,1817306121,100,100,100,100,0.18,0.18,0.08,0.08
-49262,26,059,26059,1280,563,59437601,59381067,1280,563,59437601,59381067,46688,21757,1572139031,1549158422,100,100,100,100,2.74,2.59,3.78,3.83
-49263,26,075,26075,85,42,260619,259466,85,42,260619,259466,160248,69458,1873846344,1817306121,100,100,100,100,0.05,0.06,0.01,0.01
-49264,26,065,26065,1508,591,51716320,51300281,1992,785,70100763,69470201,280895,121281,1452238253,1440343968,75.7,75.29,73.77,73.85,0.54,0.49,3.56,3.56
-49264,26,075,26075,484,194,18384443,18169920,1992,785,70100763,69470201,160248,69458,1873846344,1817306121,24.3,24.71,26.23,26.15,0.3,0.28,0.98,1
-49265,26,091,26091,4958,2352,83527067,77888928,4958,2352,83527067,77888928,99892,43452,1972038943,1941337767,100,100,100,100,4.96,5.41,4.24,4.01
-49266,26,059,26059,2942,1477,116053222,114489939,2942,1477,116053222,114489939,46688,21757,1572139031,1549158422,100,100,100,100,6.3,6.79,7.38,7.39
-49267,26,091,26091,284,124,21224186,21224186,4072,1653,104530890,103462084,99892,43452,1972038943,1941337767,6.97,7.5,20.3,20.51,0.28,0.29,1.08,1.09
-49267,26,115,26115,3788,1529,83306704,82237898,4072,1653,104530890,103462084,152021,62971,1761240519,1422924260,93.03,92.5,79.7,79.49,2.49,2.43,4.73,5.78
-49268,26,091,26091,1059,453,56193877,55890830,1059,453,56193877,55890830,99892,43452,1972038943,1941337767,100,100,100,100,1.06,1.04,2.85,2.88
-49269,26,075,26075,5998,2483,156416487,155475744,5998,2483,156416487,155475744,160248,69458,1873846344,1817306121,100,100,100,100,3.74,3.57,8.35,8.56
-49270,26,115,26115,5874,2266,117131491,116065594,5874,2266,117131491,116065594,152021,62971,1761240519,1422924260,100,100,100,100,3.86,3.6,6.65,8.16
-49271,26,059,26059,2256,943,143223836,142759974,2256,943,143223836,142759974,46688,21757,1572139031,1549158422,100,100,100,100,4.83,4.33,9.11,9.22
-49272,26,075,26075,2417,1117,31496888,29371020,2417,1117,31496888,29371020,160248,69458,1873846344,1817306121,100,100,100,100,1.51,1.61,1.68,1.62
-49274,26,023,26023,356,100,23432180,23432180,3670,1860,156810479,154833755,45248,20841,1345954024,1311488743,9.7,5.38,14.94,15.13,0.79,0.48,1.74,1.79
-49274,26,059,26059,3314,1760,133378299,131401575,3670,1860,156810479,154833755,46688,21757,1572139031,1549158422,90.3,94.62,85.06,84.87,7.1,8.09,8.48,8.48
-49276,26,091,26091,668,259,40592969,40591492,1003,384,58579105,58535412,99892,43452,1972038943,1941337767,66.6,67.45,69.3,69.35,0.67,0.6,2.06,2.09
-49276,26,115,26115,335,125,17986136,17943920,1003,384,58579105,58535412,152021,62971,1761240519,1422924260,33.4,32.55,30.7,30.65,0.22,0.2,1.02,1.26
-49277,26,075,26075,3668,1439,93409627,91995133,3668,1439,93409627,91995133,160248,69458,1873846344,1817306121,100,100,100,100,2.29,2.07,4.98,5.06
-49279,26,091,26091,797,321,68234536,68234536,797,321,68234536,68234536,99892,43452,1972038943,1941337767,100,100,100,100,0.8,0.74,3.46,3.51
-49282,26,059,26059,372,285,9243472,7585844,372,285,9243472,7585844,46688,21757,1572139031,1549158422,100,100,100,100,0.8,1.31,0.59,0.49
-49283,26,075,26075,4362,1372,36082977,35182417,4362,1372,36082977,35182417,160248,69458,1873846344,1817306121,100,100,100,100,2.72,1.98,1.93,1.94
-49284,26,025,26025,773,385,40572868,40094847,3028,1346,139660971,137913424,136146,61042,1860525582,1829135298,25.53,28.6,29.05,29.07,0.57,0.63,2.18,2.19
-49284,26,045,26045,245,131,12719472,12124015,3028,1346,139660971,137913424,107759,47050,1500723603,1489695507,8.09,9.73,9.11,8.79,0.23,0.28,0.85,0.81
-49284,26,075,26075,2010,830,86368631,85694562,3028,1346,139660971,137913424,160248,69458,1873846344,1817306121,66.38,61.66,61.84,62.14,1.25,1.19,4.61,4.72
-49285,26,065,26065,5088,2013,158960075,157309745,5720,2259,194620219,192446462,280895,121281,1452238253,1440343968,88.95,89.11,81.68,81.74,1.81,1.66,10.95,10.92
-49285,26,075,26075,316,127,16817568,16806081,5720,2259,194620219,192446462,160248,69458,1873846344,1817306121,5.52,5.62,8.64,8.73,0.2,0.18,0.9,0.92
-49285,26,093,26093,227,85,13579918,13329360,5720,2259,194620219,192446462,180967,72809,1516189327,1464001028,3.97,3.76,6.98,6.93,0.13,0.12,0.9,0.91
-49285,26,161,26161,89,34,5262658,5001276,5720,2259,194620219,192446462,344791,147573,1871057207,1828442046,1.56,1.51,2.7,2.6,0.03,0.02,0.28,0.27
-49286,26,091,26091,14797,6381,155905963,154500365,14797,6381,155905963,154500365,99892,43452,1972038943,1941337767,100,100,100,100,14.81,14.69,7.91,7.96
-49287,26,091,26091,1987,854,70232908,68999190,2099,933,74362585,72874094,99892,43452,1972038943,1941337767,94.66,91.53,94.45,94.68,1.99,1.97,3.56,3.55
-49287,26,161,26161,112,79,4129677,3874904,2099,933,74362585,72874094,344791,147573,1871057207,1828442046,5.34,8.47,5.55,5.32,0.03,0.05,0.22,0.21
-49288,26,059,26059,1286,555,84309362,84172492,1384,590,97873940,97737070,46688,21757,1572139031,1549158422,92.92,94.07,86.14,86.12,2.75,2.55,5.36,5.43
-49288,26,091,26091,98,35,13564578,13564578,1384,590,97873940,97737070,99892,43452,1972038943,1941337767,7.08,5.93,13.86,13.88,0.1,0.08,0.69,0.7
-49289,26,091,26091,167,74,1861768,1861768,167,74,1861768,1861768,99892,43452,1972038943,1941337767,100,100,100,100,0.17,0.17,0.09,0.1
-49301,26,081,26081,18701,6503,150372819,146837663,18701,6503,150372819,146837663,602622,246901,2258324280,2193584722,100,100,100,100,3.1,2.63,6.66,6.69
-49302,26,081,26081,7585,2690,128626803,126287625,7585,2690,128626803,126287625,602622,246901,2258324280,2193584722,100,100,100,100,1.26,1.09,5.7,5.76
-49303,26,121,26121,1079,382,37703852,37565975,1129,397,39053926,38916049,172188,73561,3781445966,1293040828,95.57,96.22,96.54,96.53,0.63,0.52,1,2.91
-49303,26,123,26123,50,15,1350074,1350074,1129,397,39053926,38916049,48460,25075,2231763883,2106188282,4.43,3.78,3.46,3.47,0.1,0.06,0.06,0.06
-49304,26,085,26085,4328,6321,344312050,334627941,4328,6321,344312050,334627941,11539,14966,1487378156,1469481397,100,100,100,100,37.51,42.24,23.15,22.77
-49305,26,073,26073,82,50,13539554,13532363,2264,1618,122778665,119004650,70311,28381,1496186077,1483225590,3.62,3.09,11.03,11.37,0.12,0.18,0.9,0.91
-49305,26,107,26107,2182,1568,109239111,105472287,2264,1618,122778665,119004650,42798,21131,1479386400,1437626850,96.38,96.91,88.97,88.63,5.1,7.42,7.38,7.34
-49306,26,081,26081,9244,3494,52594226,51312869,9244,3494,52594226,51312869,602622,246901,2258324280,2193584722,100,100,100,100,1.53,1.42,2.33,2.34
-49307,26,107,26107,19510,7531,282685331,275016976,20112,7781,360584349,350732990,42798,21131,1479386400,1437626850,97.01,96.79,78.4,78.41,45.59,35.64,19.11,19.13
-49307,26,123,26123,602,250,77899018,75716014,20112,7781,360584349,350732990,48460,25075,2231763883,2106188282,2.99,3.21,21.6,21.59,1.24,1,3.49,3.59
-49309,26,085,26085,59,74,5393445,5242977,1843,2272,324488215,295322017,11539,14966,1487378156,1469481397,3.2,3.26,1.66,1.78,0.51,0.49,0.36,0.36
-49309,26,123,26123,1784,2198,319094770,290079040,1843,2272,324488215,295322017,48460,25075,2231763883,2106188282,96.8,96.74,98.34,98.22,3.68,8.77,14.3,13.77
-49310,26,073,26073,1928,803,142682364,142296609,3016,1290,231679250,231090953,70311,28381,1496186077,1483225590,63.93,62.25,61.59,61.58,2.74,2.83,9.54,9.59
-49310,26,107,26107,1007,442,83757353,83554811,3016,1290,231679250,231090953,42798,21131,1479386400,1437626850,33.39,34.26,36.15,36.16,2.35,2.09,5.66,5.81
-49310,26,117,26117,81,45,5239533,5239533,3016,1290,231679250,231090953,63342,28221,1866932682,1826976057,2.69,3.49,2.26,2.27,0.13,0.16,0.28,0.29
-49312,26,123,26123,274,301,75964956,70698959,274,301,75964956,70698959,48460,25075,2231763883,2106188282,100,100,100,100,0.57,1.2,3.4,3.36
-49315,26,005,26005,375,139,15653978,15653978,19915,7573,138717096,138534638,111408,49426,4748194712,2137337922,1.88,1.84,11.28,11.3,0.34,0.28,0.33,0.73
-49315,26,081,26081,18741,7170,99836447,99658426,19915,7573,138717096,138534638,602622,246901,2258324280,2193584722,94.1,94.68,71.97,71.94,3.11,2.9,4.42,4.54
-49315,26,139,26139,799,264,23226671,23222234,19915,7573,138717096,138534638,263801,102495,4225331331,1459373665,4.01,3.49,16.74,16.76,0.3,0.26,0.55,1.59
-49316,26,005,26005,1876,758,27088577,25778324,20074,7544,150207488,147404788,111408,49426,4748194712,2137337922,9.35,10.05,18.03,17.49,1.68,1.53,0.57,1.21
-49316,26,015,26015,591,216,5152245,4626861,20074,7544,150207488,147404788,59173,27010,1494529574,1432500402,2.94,2.86,3.43,3.14,1,0.8,0.34,0.32
-49316,26,081,26081,17607,6570,117966666,116999603,20074,7544,150207488,147404788,602622,246901,2258324280,2193584722,87.71,87.09,78.54,79.37,2.92,2.66,5.22,5.33
-49318,26,081,26081,199,75,1986907,1964078,1398,545,46274762,45838062,602622,246901,2258324280,2193584722,14.23,13.76,4.29,4.28,0.03,0.03,0.09,0.09
-49318,26,121,26121,948,364,36155510,35891758,1398,545,46274762,45838062,172188,73561,3781445966,1293040828,67.81,66.79,78.13,78.3,0.55,0.49,0.96,2.78
-49318,26,139,26139,251,106,8132345,7982226,1398,545,46274762,45838062,263801,102495,4225331331,1459373665,17.95,19.45,17.57,17.41,0.1,0.1,0.19,0.55
-49319,26,081,26081,16181,6101,230638033,225140999,16181,6101,230638033,225140999,602622,246901,2258324280,2193584722,100,100,100,100,2.69,2.47,10.21,10.26
-49320,26,107,26107,21,30,927968,927968,21,30,927968,927968,42798,21131,1479386400,1437626850,100,100,100,100,0.05,0.14,0.06,0.06
-49321,26,081,26081,16241,6949,68302955,66874273,16241,6949,68302955,66874273,602622,246901,2258324280,2193584722,100,100,100,100,2.7,2.81,3.02,3.05
-49322,26,117,26117,1212,590,68490943,66315600,1212,590,68490943,66315600,63342,28221,1866932682,1826976057,100,100,100,100,1.91,2.09,3.67,3.63
-49323,26,005,26005,9410,3253,127796121,127153786,9410,3253,127796121,127153786,111408,49426,4748194712,2137337922,100,100,100,100,8.45,6.58,2.69,5.95
-49325,26,015,26015,1496,558,51286076,50902950,1909,702,72761437,72235829,59173,27010,1494529574,1432500402,78.37,79.49,70.49,70.47,2.53,2.07,3.43,3.55
-49325,26,067,26067,184,65,14002472,13986784,1909,702,72761437,72235829,63905,24778,1502312987,1479671240,9.64,9.26,19.24,19.36,0.29,0.26,0.93,0.95
-49325,26,081,26081,229,79,7472889,7346095,1909,702,72761437,72235829,602622,246901,2258324280,2193584722,12,11.25,10.27,10.17,0.04,0.03,0.33,0.33
-49326,26,081,26081,2722,1347,41488742,36343597,3752,1764,66391388,60678640,602622,246901,2258324280,2193584722,72.55,76.36,62.49,59.9,0.45,0.55,1.84,1.66
-49326,26,117,26117,1030,417,24902646,24335043,3752,1764,66391388,60678640,63342,28221,1866932682,1826976057,27.45,23.64,37.51,40.1,1.63,1.48,1.33,1.33
-49327,26,081,26081,45,14,925363,925363,8406,3489,245148449,239299437,602622,246901,2258324280,2193584722,0.54,0.4,0.38,0.39,0.01,0.01,0.04,0.04
-49327,26,123,26123,8361,3475,244223086,238374074,8406,3489,245148449,239299437,48460,25075,2231763883,2106188282,99.46,99.6,99.62,99.61,17.25,13.86,10.94,11.32
-49328,26,005,26005,3885,1681,148238852,146506115,3885,1681,148238852,146506115,111408,49426,4748194712,2137337922,100,100,100,100,3.49,3.4,3.12,6.85
-49329,26,117,26117,7340,3029,169093543,166594083,8641,3573,214299816,211493017,63342,28221,1866932682,1826976057,84.94,84.77,78.91,78.77,11.59,10.73,9.06,9.12
-49329,26,123,26123,1301,544,45206273,44898934,8641,3573,214299816,211493017,48460,25075,2231763883,2106188282,15.06,15.23,21.09,21.23,2.68,2.17,2.03,2.13
-49330,26,081,26081,5008,1793,100389704,99905215,5440,1953,115929124,114831341,602622,246901,2258324280,2193584722,92.06,91.81,86.6,87,0.83,0.73,4.45,4.55
-49330,26,121,26121,37,23,1722466,1721545,5440,1953,115929124,114831341,172188,73561,3781445966,1293040828,0.68,1.18,1.49,1.5,0.02,0.03,0.05,0.13
-49330,26,123,26123,303,104,9507058,8899358,5440,1953,115929124,114831341,48460,25075,2231763883,2106188282,5.57,5.33,8.2,7.75,0.63,0.41,0.43,0.42
-49330,26,139,26139,92,33,4309896,4305223,5440,1953,115929124,114831341,263801,102495,4225331331,1459373665,1.69,1.69,3.72,3.75,0.03,0.03,0.1,0.3
-49331,26,067,26067,2175,755,48544413,47833452,16627,6367,241510224,234176874,63905,24778,1502312987,1479671240,13.08,11.86,20.1,20.43,3.4,3.05,3.23,3.23
-49331,26,081,26081,14452,5612,192965811,186343422,16627,6367,241510224,234176874,602622,246901,2258324280,2193584722,86.92,88.14,79.9,79.57,2.4,2.27,8.54,8.49
-49332,26,107,26107,3019,2338,126350018,117067924,3019,2338,126350018,117067924,42798,21131,1479386400,1437626850,100,100,100,100,7.05,11.06,8.54,8.14
-49333,26,005,26005,5,5,1310468,1310468,11191,4749,215984972,205956643,111408,49426,4748194712,2137337922,0.04,0.11,0.61,0.64,0,0.01,0.03,0.06
-49333,26,015,26015,10980,4672,209865237,200056823,11191,4749,215984972,205956643,59173,27010,1494529574,1432500402,98.11,98.38,97.17,97.14,18.56,17.3,14.04,13.97
-49333,26,081,26081,206,72,4809267,4589352,11191,4749,215984972,205956643,602622,246901,2258324280,2193584722,1.84,1.52,2.23,2.23,0.03,0.03,0.21,0.21
-49335,26,005,26005,314,115,2456218,2456218,314,115,2456218,2456218,111408,49426,4748194712,2137337922,100,100,100,100,0.28,0.23,0.05,0.11
-49336,26,107,26107,4121,1647,185054673,183394268,4352,1763,205431393,202862947,42798,21131,1479386400,1437626850,94.69,93.42,90.08,90.4,9.63,7.79,12.51,12.76
-49336,26,117,26117,229,100,17814711,17805202,4352,1763,205431393,202862947,63342,28221,1866932682,1826976057,5.26,5.67,8.67,8.78,0.36,0.35,0.95,0.97
-49336,26,123,26123,2,16,2562009,1663477,4352,1763,205431393,202862947,48460,25075,2231763883,2106188282,0.05,0.91,1.25,0.82,0,0.06,0.11,0.08
-49337,26,107,26107,123,65,9361244,9349224,12088,6586,312609302,290559831,42798,21131,1479386400,1437626850,1.02,0.99,2.99,3.22,0.29,0.31,0.63,0.65
-49337,26,117,26117,228,100,7888868,7883049,12088,6586,312609302,290559831,63342,28221,1866932682,1826976057,1.89,1.52,2.52,2.71,0.36,0.35,0.42,0.43
-49337,26,123,26123,11737,6421,295359190,273327558,12088,6586,312609302,290559831,48460,25075,2231763883,2106188282,97.1,97.49,94.48,94.07,24.22,25.61,13.23,12.98
-49338,26,107,26107,1260,577,41241869,40925816,1842,907,137013247,134433108,42798,21131,1479386400,1437626850,68.4,63.62,30.1,30.44,2.94,2.73,2.79,2.85
-49338,26,123,26123,560,319,95500936,93236850,1842,907,137013247,134433108,48460,25075,2231763883,2106188282,30.4,35.17,69.7,69.36,1.16,1.27,4.28,4.43
-49338,26,133,26133,22,11,270442,270442,1842,907,137013247,134433108,23528,13632,1484312630,1466946699,1.19,1.21,0.2,0.2,0.09,0.08,0.02,0.02
-49339,26,117,26117,2283,1201,79666032,75862638,2283,1201,79666032,75862638,63342,28221,1866932682,1826976057,100,100,100,100,3.6,4.26,4.27,4.15
-49340,26,073,26073,785,339,65265447,64701940,2912,1363,225988325,223978029,70311,28381,1496186077,1483225590,26.96,24.87,28.88,28.89,1.12,1.19,4.36,4.36
-49340,26,107,26107,2127,1024,160722878,159276089,2912,1363,225988325,223978029,42798,21131,1479386400,1437626850,73.04,75.13,71.12,71.11,4.97,4.85,10.86,11.08
-49341,26,081,26081,33737,12486,224888944,214112926,33737,12486,224888944,214112926,602622,246901,2258324280,2193584722,100,100,100,100,5.6,5.06,9.96,9.76
-49342,26,107,26107,1649,1081,120734889,116377256,1649,1081,120734889,116377256,42798,21131,1479386400,1437626850,100,100,100,100,3.85,5.12,8.16,8.1
-49343,26,081,26081,3095,1333,77333585,72986822,5489,2371,143152773,136612866,602622,246901,2258324280,2193584722,56.39,56.22,54.02,53.43,0.51,0.54,3.42,3.33
-49343,26,117,26117,642,269,9399513,9087691,5489,2371,143152773,136612866,63342,28221,1866932682,1826976057,11.7,11.35,6.57,6.65,1.01,0.95,0.5,0.5
-49343,26,123,26123,1752,769,56419675,54538353,5489,2371,143152773,136612866,48460,25075,2231763883,2106188282,31.92,32.43,39.41,39.92,3.62,3.07,2.53,2.59
-49344,26,005,26005,2012,901,73359073,71290963,3410,1898,88993554,83619399,111408,49426,4748194712,2137337922,59,47.47,82.43,85.26,1.81,1.82,1.54,3.34
-49344,26,015,26015,1398,997,15634481,12328436,3410,1898,88993554,83619399,59173,27010,1494529574,1432500402,41,52.53,17.57,14.74,2.36,3.69,1.05,0.86
-49345,26,081,26081,13040,5173,139373724,136528999,13040,5173,139373724,136528999,602622,246901,2258324280,2193584722,100,100,100,100,2.16,2.1,6.17,6.22
-49346,26,107,26107,5436,3366,168474180,161442441,5446,3376,173798268,166741261,42798,21131,1479386400,1437626850,99.82,99.7,96.94,96.82,12.7,15.93,11.39,11.23
-49346,26,123,26123,10,10,5324088,5298820,5446,3376,173798268,166741261,48460,25075,2231763883,2106188282,0.18,0.3,3.06,3.18,0.02,0.04,0.24,0.25
-49347,26,081,26081,28,13,2712529,2712529,1257,701,50160849,48112827,602622,246901,2258324280,2193584722,2.23,1.85,5.41,5.64,0,0.01,0.12,0.12
-49347,26,117,26117,1229,688,47448320,45400298,1257,701,50160849,48112827,63342,28221,1866932682,1826976057,97.77,98.15,94.59,94.36,1.94,2.44,2.54,2.48
-49348,26,005,26005,9897,3875,154752480,153529752,12153,5092,177119277,172202554,111408,49426,4748194712,2137337922,81.44,76.1,87.37,89.16,8.88,7.84,3.26,7.18
-49348,26,015,26015,2050,1143,16113634,12419639,12153,5092,177119277,172202554,59173,27010,1494529574,1432500402,16.87,22.45,9.1,7.21,3.46,4.23,1.08,0.87
-49348,26,081,26081,206,74,6253163,6253163,12153,5092,177119277,172202554,602622,246901,2258324280,2193584722,1.7,1.45,3.53,3.63,0.03,0.03,0.28,0.29
-49349,26,123,26123,8087,4485,510779280,482902994,8087,4485,510779280,482902994,48460,25075,2231763883,2106188282,100,100,100,100,16.69,17.89,22.89,22.93
-49401,26,139,26139,20735,5832,67811098,66501346,20735,5832,67811098,66501346,263801,102495,4225331331,1459373665,100,100,100,100,7.86,5.69,1.6,4.56
-49402,26,085,26085,410,437,160541533,160004490,1380,1438,321710095,319707780,11539,14966,1487378156,1469481397,29.71,30.39,49.9,50.05,3.55,2.92,10.79,10.89
-49402,26,105,26105,884,896,156879783,155915277,1380,1438,321710095,319707780,28705,17293,3217908886,1282232870,64.06,62.31,48.76,48.77,3.08,5.18,4.88,12.16
-49402,26,127,26127,86,105,4288779,3788013,1380,1438,321710095,319707780,26570,15944,3382394195,1326257820,6.23,7.3,1.33,1.18,0.32,0.66,0.13,0.29
-49403,26,081,26081,39,14,1751837,1574477,2473,953,123028881,122179926,602622,246901,2258324280,2193584722,1.58,1.47,1.42,1.29,0.01,0.01,0.08,0.07
-49403,26,121,26121,100,40,7103300,7102396,2473,953,123028881,122179926,172188,73561,3781445966,1293040828,4.04,4.2,5.77,5.81,0.06,0.05,0.19,0.55
-49403,26,139,26139,2334,899,114173744,113503053,2473,953,123028881,122179926,263801,102495,4225331331,1459373665,94.38,94.33,92.8,92.9,0.88,0.88,2.7,7.78
-49404,26,121,26121,140,49,10890256,10862662,8269,3214,162967443,160977809,172188,73561,3781445966,1293040828,1.69,1.52,6.68,6.75,0.08,0.07,0.29,0.84
-49404,26,139,26139,8129,3165,152077187,150115147,8269,3214,162967443,160977809,263801,102495,4225331331,1459373665,98.31,98.48,93.32,93.25,3.08,3.09,3.6,10.29
-49405,26,105,26105,1559,975,180059386,178656830,1559,975,180059386,178656830,28705,17293,3217908886,1282232870,100,100,100,100,5.43,5.64,5.6,13.93
-49406,26,005,26005,884,882,5406226,4843609,884,882,5406226,4843609,111408,49426,4748194712,2137337922,100,100,100,100,0.79,1.78,0.11,0.23
-49408,26,005,26005,9091,4687,278351108,272938263,9091,4687,278351108,272938263,111408,49426,4748194712,2137337922,100,100,100,100,8.16,9.48,5.86,12.77
-49410,26,105,26105,2005,1549,116770277,111785074,2005,1549,116770277,111785074,28705,17293,3217908886,1282232870,100,100,100,100,6.98,8.96,3.63,8.72
-49411,26,105,26105,1538,1052,230212837,223973224,1538,1052,230212837,223973224,28705,17293,3217908886,1282232870,100,100,100,100,5.36,6.08,7.15,17.47
-49412,26,121,26121,73,23,2208809,2163473,11065,4861,287129254,274998372,172188,73561,3781445966,1293040828,0.66,0.47,0.77,0.79,0.04,0.03,0.06,0.17
-49412,26,123,26123,10862,4783,278654703,266742006,11065,4861,287129254,274998372,48460,25075,2231763883,2106188282,98.17,98.4,97.05,97,22.41,19.07,12.49,12.66
-49412,26,127,26127,130,55,6265742,6092893,11065,4861,287129254,274998372,26570,15944,3382394195,1326257820,1.17,1.13,2.18,2.22,0.49,0.34,0.19,0.46
-49415,26,121,26121,5898,2415,69472522,68713146,6480,2654,77001878,76222591,172188,73561,3781445966,1293040828,91.02,90.99,90.22,90.15,3.43,3.28,1.84,5.31
-49415,26,139,26139,582,239,7529356,7509445,6480,2654,77001878,76222591,263801,102495,4225331331,1459373665,8.98,9.01,9.78,9.85,0.22,0.23,0.18,0.51
-49417,26,139,26139,29183,13189,141721895,120288350,29183,13189,141721895,120288350,263801,102495,4225331331,1459373665,100,100,100,100,11.06,12.87,3.35,8.24
-49418,26,081,26081,23104,8929,33428716,32262726,27417,10815,50593405,49014819,602622,246901,2258324280,2193584722,84.27,82.56,66.07,65.82,3.83,3.62,1.48,1.47
-49418,26,139,26139,4313,1886,17164689,16752093,27417,10815,50593405,49014819,263801,102495,4225331331,1459373665,15.73,17.44,33.93,34.18,1.63,1.84,0.41,1.15
-49419,26,005,26005,7791,2787,188732149,186733033,7791,2787,188732149,186733033,111408,49426,4748194712,2137337922,100,100,100,100,6.99,5.64,3.97,8.74
-49420,26,127,26127,6420,2881,308339613,290010231,6420,2881,308339613,290010231,26570,15944,3382394195,1326257820,100,100,100,100,24.16,18.07,9.12,21.87
-49421,26,123,26123,2086,1024,147403736,133453904,5991,3080,351052894,320938956,48460,25075,2231763883,2106188282,34.82,33.25,41.99,41.58,4.3,4.08,6.6,6.34
-49421,26,127,26127,3905,2056,203649158,187485052,5991,3080,351052894,320938956,26570,15944,3382394195,1326257820,65.18,66.75,58.01,58.42,14.7,12.9,6.02,14.14
-49423,26,005,26005,15530,6861,168370273,167857629,44977,18415,205254169,201007334,111408,49426,4748194712,2137337922,34.53,37.26,82.03,83.51,13.94,13.88,3.55,7.85
-49423,26,139,26139,29447,11554,36883896,33149705,44977,18415,205254169,201007334,263801,102495,4225331331,1459373665,65.47,62.74,17.97,16.49,11.16,11.27,0.87,2.27
-49424,26,139,26139,44760,17893,166940154,148684301,44760,17893,166940154,148684301,263801,102495,4225331331,1459373665,100,100,100,100,16.97,17.46,3.95,10.19
-49425,26,121,26121,2922,1226,107293364,104237597,3660,1524,168249028,160866057,172188,73561,3781445966,1293040828,79.84,80.45,63.77,64.8,1.7,1.67,2.84,8.06
-49425,26,123,26123,245,93,13615062,13615062,3660,1524,168249028,160866057,48460,25075,2231763883,2106188282,6.69,6.1,8.09,8.46,0.51,0.37,0.61,0.65
-49425,26,127,26127,493,205,47340602,43013398,3660,1524,168249028,160866057,26570,15944,3382394195,1326257820,13.47,13.45,28.14,26.74,1.86,1.29,1.4,3.24
-49426,26,005,26005,25,11,501512,501512,33244,11546,162245756,161840163,111408,49426,4748194712,2137337922,0.08,0.1,0.31,0.31,0.02,0.02,0.01,0.02
-49426,26,139,26139,33219,11535,161744244,161338651,33244,11546,162245756,161840163,263801,102495,4225331331,1459373665,99.92,99.9,99.69,99.69,12.59,11.25,3.83,11.06
-49428,26,139,26139,25420,9709,44614096,42833263,25420,9709,44614096,42833263,263801,102495,4225331331,1459373665,100,100,100,100,9.64,9.47,1.06,2.94
-49431,26,105,26105,16875,9608,320060684,269360188,16875,9608,320060684,269360188,28705,17293,3217908886,1282232870,100,100,100,100,58.79,55.56,9.95,21.01
-49434,26,005,26005,5,20,25426,25426,20,71,962672,144360,111408,49426,4748194712,2137337922,25,28.17,2.64,17.61,0,0.04,0,0
-49434,26,139,26139,15,51,937246,118934,20,71,962672,144360,263801,102495,4225331331,1459373665,75,71.83,97.36,82.39,0.01,0.05,0.02,0.01
-49435,26,139,26139,3549,1277,57223100,56758443,3549,1277,57223100,56758443,263801,102495,4225331331,1459373665,100,100,100,100,1.35,1.25,1.35,3.89
-49436,26,127,26127,1622,2315,99786581,80980624,1622,2315,99786581,80980624,26570,15944,3382394195,1326257820,100,100,100,100,6.1,14.52,2.95,6.11
-49437,26,121,26121,5615,2906,124707943,102548169,6902,3556,205895818,167082441,172188,73561,3781445966,1293040828,81.35,81.72,60.57,61.38,3.26,3.95,3.3,7.93
-49437,26,127,26127,1287,650,81187875,64534272,6902,3556,205895818,167082441,26570,15944,3382394195,1326257820,18.65,18.28,39.43,38.62,4.84,4.08,2.4,4.87
-49440,26,121,26121,953,645,2235485,1559681,953,645,2235485,1559681,172188,73561,3781445966,1293040828,100,100,100,100,0.55,0.88,0.06,0.12
-49441,26,121,26121,36308,17369,93589591,56329899,36308,17369,93589591,56329899,172188,73561,3781445966,1293040828,100,100,100,100,21.09,23.61,2.47,4.36
-49442,26,121,26121,41214,16893,119510805,108935840,41214,16893,119510805,108935840,172188,73561,3781445966,1293040828,100,100,100,100,23.94,22.96,3.16,8.42
-49444,26,121,26121,29456,11148,62969642,61522909,29456,11148,62969642,61522909,172188,73561,3781445966,1293040828,100,100,100,100,17.11,15.15,1.67,4.76
-49445,26,121,26121,20784,8848,185519103,157932673,20784,8848,185519103,157932673,172188,73561,3781445966,1293040828,100,100,100,100,12.07,12.03,4.91,12.21
-49446,26,127,26127,2321,1119,85297640,82404857,2321,1119,85297640,82404857,26570,15944,3382394195,1326257820,100,100,100,100,8.74,7.02,2.52,6.21
-49448,26,121,26121,343,136,16832180,16777994,3410,1392,87699605,86064212,172188,73561,3781445966,1293040828,10.06,9.77,19.19,19.49,0.2,0.18,0.45,1.3
-49448,26,139,26139,3067,1256,70867425,69286218,3410,1392,87699605,86064212,263801,102495,4225331331,1459373665,89.94,90.23,80.81,80.51,1.16,1.23,1.68,4.75
-49449,26,105,26105,575,602,33926267,31236829,2675,2697,128435422,103782459,28705,17293,3217908886,1282232870,21.5,22.32,26.42,30.1,2,3.48,1.05,2.44
-49449,26,127,26127,2100,2095,94509155,72545630,2675,2697,128435422,103782459,26570,15944,3382394195,1326257820,78.5,77.68,73.58,69.9,7.9,13.14,2.79,5.47
-49450,26,005,26005,3302,1471,77530064,76333079,3302,1471,77530064,76333079,111408,49426,4748194712,2137337922,100,100,100,100,2.96,2.98,1.63,3.57
-49451,26,121,26121,5810,2198,211822729,208582302,6012,2285,217984892,214694543,172188,73561,3781445966,1293040828,96.64,96.19,97.17,97.15,3.37,2.99,5.6,16.13
-49451,26,139,26139,202,87,6162163,6112241,6012,2285,217984892,214694543,263801,102495,4225331331,1459373665,3.36,3.81,2.83,2.85,0.08,0.08,0.15,0.42
-49452,26,127,26127,1952,880,120014515,112106253,1952,880,120014515,112106253,26570,15944,3382394195,1326257820,100,100,100,100,7.35,5.52,3.55,8.45
-49453,26,005,26005,2626,1875,30738409,28180636,2626,1875,30738409,28180636,111408,49426,4748194712,2137337922,100,100,100,100,2.36,3.79,0.65,1.32
-49454,26,105,26105,4574,2094,190312382,189268330,4574,2094,190312382,189268330,28705,17293,3217908886,1282232870,100,100,100,100,15.93,12.11,5.91,14.76
-49455,26,127,26127,5034,2709,231141259,209969326,5034,2709,231141259,209969326,26570,15944,3382394195,1326257820,100,100,100,100,18.95,16.99,6.83,15.83
-49456,26,121,26121,1085,462,8210426,7707093,18581,8956,86684897,64446921,172188,73561,3781445966,1293040828,5.84,5.16,9.47,11.96,0.63,0.63,0.22,0.6
-49456,26,139,26139,17496,8494,78474471,56739828,18581,8956,86684897,64446921,263801,102495,4225331331,1459373665,94.16,94.84,90.53,88.04,6.63,8.29,1.86,3.89
-49457,26,121,26121,10494,4341,204182027,192313348,10565,4373,210390263,198471316,172188,73561,3781445966,1293040828,99.33,99.27,97.05,96.9,6.09,5.9,5.4,14.87
-49457,26,123,26123,71,32,6208236,6157968,10565,4373,210390263,198471316,48460,25075,2231763883,2106188282,0.67,0.73,2.95,3.1,0.15,0.13,0.28,0.29
-49458,26,105,26105,119,94,18717951,18569992,119,94,18717951,18569992,28705,17293,3217908886,1282232870,100,100,100,100,0.41,0.54,0.58,1.45
-49459,26,123,26123,131,59,7085678,6753776,1351,933,199903237,180081047,48460,25075,2231763883,2106188282,9.7,6.32,3.54,3.75,0.27,0.24,0.32,0.32
-49459,26,127,26127,1220,874,192817559,173327271,1351,933,199903237,180081047,26570,15944,3382394195,1326257820,90.3,93.68,96.46,96.25,4.59,5.48,5.7,13.07
-49460,26,139,26139,8126,3273,159602410,141481146,8126,3273,159602410,141481146,263801,102495,4225331331,1459373665,100,100,100,100,3.08,3.19,3.78,9.69
-49461,26,121,26121,8929,4093,124867109,110572368,8929,4093,124867109,110572368,172188,73561,3781445966,1293040828,100,100,100,100,5.19,5.56,3.3,8.55
-49464,26,005,26005,373,115,9298687,9294426,27481,9896,195331455,194992027,111408,49426,4748194712,2137337922,1.36,1.16,4.76,4.77,0.33,0.23,0.2,0.43
-49464,26,139,26139,27108,9781,186032768,185697601,27481,9896,195331455,194992027,263801,102495,4225331331,1459373665,98.64,98.84,95.24,95.23,10.28,9.54,4.4,12.72
-49503,26,081,26081,35940,16632,19087230,18613128,35940,16632,19087230,18613128,602622,246901,2258324280,2193584722,100,100,100,100,5.96,6.74,0.85,0.85
-49504,26,081,26081,39994,17634,29084432,28560713,39994,17634,29084432,28560713,602622,246901,2258324280,2193584722,100,100,100,100,6.64,7.14,1.29,1.3
-49505,26,081,26081,31216,13970,23630582,23052277,31216,13970,23630582,23052277,602622,246901,2258324280,2193584722,100,100,100,100,5.18,5.66,1.05,1.05
-49506,26,081,26081,31354,12669,20275561,18864713,31354,12669,20275561,18864713,602622,246901,2258324280,2193584722,100,100,100,100,5.2,5.13,0.9,0.86
-49507,26,081,26081,35459,13406,14290381,14290381,35459,13406,14290381,14290381,602622,246901,2258324280,2193584722,100,100,100,100,5.88,5.43,0.63,0.65
-49508,26,081,26081,39148,16128,31255624,31197223,39148,16128,31255624,31197223,602622,246901,2258324280,2193584722,100,100,100,100,6.5,6.53,1.38,1.42
-49509,26,081,26081,26720,10422,18811908,18759530,26720,10422,18811908,18759530,602622,246901,2258324280,2193584722,100,100,100,100,4.43,4.22,0.83,0.86
-49512,26,081,26081,15448,7881,59139671,58577763,15448,7881,59139671,58577763,602622,246901,2258324280,2193584722,100,100,100,100,2.56,3.19,2.62,2.67
-49519,26,081,26081,27424,11667,21220544,20807622,27424,11667,21220544,20807622,602622,246901,2258324280,2193584722,100,100,100,100,4.55,4.73,0.94,0.95
-49525,26,081,26081,27383,11192,63554226,60945418,27383,11192,63554226,60945418,602622,246901,2258324280,2193584722,100,100,100,100,4.54,4.53,2.81,2.78
-49534,26,081,26081,16647,7239,45926332,44826290,21570,9194,93422736,90698721,602622,246901,2258324280,2193584722,77.18,78.74,49.16,49.42,2.76,2.93,2.03,2.04
-49534,26,139,26139,4923,1955,47496404,45872431,21570,9194,93422736,90698721,263801,102495,4225331331,1459373665,22.82,21.26,50.84,50.58,1.87,1.91,1.12,3.14
-49544,26,081,26081,8893,3977,53188410,52746405,8944,3994,54314187,53868191,602622,246901,2258324280,2193584722,99.43,99.57,97.93,97.92,1.48,1.61,2.36,2.4
-49544,26,139,26139,51,17,1125777,1121786,8944,3994,54314187,53868191,263801,102495,4225331331,1459373665,0.57,0.43,2.07,2.08,0.02,0.02,0.03,0.08
-49546,26,081,26081,31880,13030,48390779,46785273,31880,13030,48390779,46785273,602622,246901,2258324280,2193584722,100,100,100,100,5.29,5.28,2.14,2.13
-49548,26,081,26081,30524,12650,27444748,27410151,30524,12650,27444748,27410151,602622,246901,2258324280,2193584722,100,100,100,100,5.07,5.12,1.22,1.25
-49601,26,113,26113,355,150,16840465,16794267,21236,10544,552732891,534384510,14849,9117,1486211484,1462634072,1.67,1.42,3.05,3.14,2.39,1.65,1.13,1.15
-49601,26,165,26165,20881,10394,535892426,517590243,21236,10544,552732891,534384510,32735,16736,1490449083,1463347858,98.33,98.58,96.95,96.86,63.79,62.11,35.96,35.37
-49611,26,009,26009,236,126,4069598,4069598,236,126,4069598,4069598,23580,17824,1558577158,1232064018,100,100,100,100,1,0.71,0.26,0.33
-49612,26,009,26009,796,733,49943866,33214541,1121,947,77850659,61121334,23580,17824,1558577158,1232064018,71.01,77.4,64.15,54.34,3.38,4.11,3.2,2.7
-49612,26,079,26079,325,214,27906793,27906793,1121,947,77850659,61121334,17153,12171,1478121875,1450043265,28.99,22.6,35.85,45.66,1.89,1.76,1.89,1.92
-49613,26,019,26019,136,141,23606400,23595021,680,662,68526256,60800455,17525,12199,2226268897,828028289,20,21.3,34.45,38.81,0.78,1.16,1.06,2.85
-49613,26,101,26101,544,521,44919856,37205434,680,662,68526256,60800455,24733,15694,3316645199,1404159906,80,78.7,65.55,61.19,2.2,3.32,1.35,2.65
-49614,26,101,26101,2790,1888,226903908,218681577,2790,1888,226903908,218681577,24733,15694,3316645199,1404159906,100,100,100,100,11.28,12.03,6.84,15.57
-49615,26,009,26009,4131,3650,207502068,180522075,4131,3650,207502068,180522075,23580,17824,1558577158,1232064018,100,100,100,100,17.52,20.48,13.31,14.65
-49616,26,019,26019,1974,1084,96572598,95692037,1974,1084,96572598,95692037,17525,12199,2226268897,828028289,100,100,100,100,11.26,8.89,4.34,11.56
-49617,26,019,26019,3363,2483,134734680,116799742,3363,2483,134734680,116799742,17525,12199,2226268897,828028289,100,100,100,100,19.19,20.35,6.05,14.11
-49618,26,165,26165,761,383,80471036,80451486,761,383,80471036,80451486,32735,16736,1490449083,1463347858,100,100,100,100,2.32,2.29,5.4,5.5
-49619,26,101,26101,1110,774,165053235,162464535,1110,774,165053235,162464535,24733,15694,3316645199,1404159906,100,100,100,100,4.49,4.93,4.98,11.57
-49620,26,055,26055,913,400,73158032,72733542,2445,1133,136186660,135341524,86986,41599,1557398200,1202611911,37.34,35.3,53.72,53.74,1.05,0.96,4.7,6.05
-49620,26,165,26165,1532,733,63028628,62607982,2445,1133,136186660,135341524,32735,16736,1490449083,1463347858,62.66,64.7,46.28,46.26,4.68,4.38,4.23,4.28
-49621,26,089,26089,3096,1903,171453259,152102921,3096,1903,171453259,152102921,21708,14935,6558346955,899168573,100,100,100,100,14.26,12.74,2.61,16.92
-49622,26,009,26009,2494,1925,127709495,116038375,2494,1925,127709495,116038375,23580,17824,1558577158,1232064018,100,100,100,100,10.58,10.8,8.19,9.42
-49623,26,085,26085,1164,912,148768092,148431255,1164,912,148768092,148431255,11539,14966,1487378156,1469481397,100,100,100,100,10.09,6.09,10,10.1
-49625,26,101,26101,1318,805,198480778,197975812,1379,839,218287064,217782098,24733,15694,3316645199,1404159906,95.58,95.95,90.93,90.91,5.33,5.13,5.98,14.1
-49625,26,165,26165,61,34,19806286,19806286,1379,839,218287064,217782098,32735,16736,1490449083,1463347858,4.42,4.05,9.07,9.09,0.19,0.2,1.33,1.35
-49626,26,101,26101,421,220,4443082,3600523,421,220,4443082,3600523,24733,15694,3316645199,1404159906,100,100,100,100,1.7,1.4,0.13,0.26
-49627,26,009,26009,206,238,10404864,4323065,206,238,10404864,4323065,23580,17824,1558577158,1232064018,100,100,100,100,0.87,1.34,0.67,0.35
-49628,26,019,26019,372,228,6100391,1917439,372,228,6100391,1917439,17525,12199,2226268897,828028289,100,100,100,100,2.12,1.87,0.27,0.23
-49629,26,009,26009,2223,1673,24087431,10404865,2223,1673,24087431,10404865,23580,17824,1558577158,1232064018,100,100,100,100,9.43,9.39,1.55,0.84
-49630,26,019,26019,32,34,14007840,13613734,1429,1207,135480457,117068115,17525,12199,2226268897,828028289,2.24,2.82,10.34,11.63,0.18,0.28,0.63,1.64
-49630,26,089,26089,1397,1173,121472617,103454381,1429,1207,135480457,117068115,21708,14935,6558346955,899168573,97.76,97.18,89.66,88.37,6.44,7.85,1.85,11.51
-49631,26,107,26107,715,657,64596966,59605005,6357,4196,395803193,384356216,42798,21131,1479386400,1437626850,11.25,15.66,16.32,15.51,1.67,3.11,4.37,4.15
-49631,26,133,26133,5642,3539,331206227,324751211,6357,4196,395803193,384356216,23528,13632,1484312630,1466946699,88.75,84.34,83.68,84.49,23.98,25.96,22.31,22.14
-49632,26,113,26113,1126,849,220653535,219338393,1126,849,220653535,219338393,14849,9117,1486211484,1462634072,100,100,100,100,7.58,9.31,14.85,15
-49633,26,055,26055,1171,771,89643664,86024014,3703,2783,432796487,425658207,86986,41599,1557398200,1202611911,31.62,27.7,20.71,20.21,1.35,1.85,5.76,7.15
-49633,26,079,26079,2402,1917,302916365,299764903,3703,2783,432796487,425658207,17153,12171,1478121875,1450043265,64.87,68.88,69.99,70.42,14,15.75,20.49,20.67
-49633,26,113,26113,23,37,18926569,18599404,3703,2783,432796487,425658207,14849,9117,1486211484,1462634072,0.62,1.33,4.37,4.37,0.15,0.41,1.27,1.27
-49633,26,165,26165,107,58,21309889,21269886,3703,2783,432796487,425658207,32735,16736,1490449083,1463347858,2.89,2.08,4.92,5,0.33,0.35,1.43,1.45
-49634,26,101,26101,116,51,387002,387002,116,51,387002,387002,24733,15694,3316645199,1404159906,100,100,100,100,0.47,0.32,0.01,0.03
-49635,26,019,26019,3350,3269,164010857,104321519,3350,3269,164010857,104321519,17525,12199,2226268897,828028289,100,100,100,100,19.12,26.8,7.37,12.6
-49636,26,089,26089,560,1239,58929243,30983640,560,1239,58929243,30983640,21708,14935,6558346955,899168573,100,100,100,100,2.58,8.3,0.9,3.45
-49637,26,055,26055,3405,1523,73330288,64754181,3405,1523,73330288,64754181,86986,41599,1557398200,1202611911,100,100,100,100,3.91,3.66,4.71,5.38
-49638,26,101,26101,70,74,34381536,32664071,824,665,179954091,178236626,24733,15694,3316645199,1404159906,8.5,11.13,19.11,18.33,0.28,0.47,1.04,2.33
-49638,26,165,26165,754,591,145572555,145572555,824,665,179954091,178236626,32735,16736,1490449083,1463347858,91.5,88.87,80.89,81.67,2.3,3.53,9.77,9.95
-49639,26,107,26107,581,322,35817664,35050414,2557,1411,157750514,155588650,42798,21131,1479386400,1437626850,22.72,22.82,22.71,22.53,1.36,1.52,2.42,2.44
-49639,26,133,26133,1976,1089,121932850,120538236,2557,1411,157750514,155588650,23528,13632,1484312630,1466946699,77.28,77.18,77.29,77.47,8.4,7.99,8.21,8.22
-49640,26,019,26019,1618,1346,173158173,154467034,1618,1346,173158173,154467034,17525,12199,2226268897,828028289,100,100,100,100,9.23,11.03,7.78,18.65
-49642,26,085,26085,842,1431,47720869,46955974,842,1431,47720869,46955974,11539,14966,1487378156,1469481397,100,100,100,100,7.3,9.56,3.21,3.2
-49643,26,019,26019,2005,915,88891817,87648580,6253,3142,156911935,145722681,17525,12199,2226268897,828028289,32.06,29.12,56.65,60.15,11.44,7.5,3.99,10.59
-49643,26,055,26055,4248,2227,68020118,58074101,6253,3142,156911935,145722681,86986,41599,1557398200,1202611911,67.94,70.88,43.35,39.85,4.88,5.35,4.37,4.83
-49644,26,085,26085,1912,3372,289492680,284698168,2033,3445,302865051,298042440,11539,14966,1487378156,1469481397,94.05,97.88,95.58,95.52,16.57,22.53,19.46,19.37
-49644,26,101,26101,119,67,8616894,8590179,2033,3445,302865051,298042440,24733,15694,3316645199,1404159906,5.85,1.94,2.85,2.88,0.48,0.43,0.26,0.61
-49644,26,105,26105,2,6,4755477,4754093,2033,3445,302865051,298042440,28705,17293,3217908886,1282232870,0.1,0.17,1.57,1.6,0.01,0.03,0.15,0.37
-49645,26,101,26101,1632,1041,105202712,104009889,1632,1041,105202712,104009889,24733,15694,3316645199,1404159906,100,100,100,100,6.6,6.63,3.17,7.41
-49646,26,079,26079,8229,5843,589107253,574646855,8229,5843,589107253,574646855,17153,12171,1478121875,1450043265,100,100,100,100,47.97,48.01,39.86,39.63
-49648,26,009,26009,2098,1878,127026488,68910857,2098,1878,127026488,68910857,23580,17824,1558577158,1232064018,100,100,100,100,8.9,10.54,8.15,5.59
-49649,26,055,26055,7624,2386,255138053,254630659,7789,2449,270000483,269449062,86986,41599,1557398200,1202611911,97.88,97.43,94.5,94.5,8.76,5.74,16.38,21.17
-49649,26,165,26165,165,63,14862430,14818403,7789,2449,270000483,269449062,32735,16736,1490449083,1463347858,2.12,2.57,5.5,5.5,0.5,0.38,1,1.01
-49650,26,019,26019,3144,1528,68910545,63842800,3144,1528,68910545,63842800,17525,12199,2226268897,828028289,100,100,100,100,17.94,12.53,3.1,7.71
-49651,26,113,26113,7665,5225,594616057,579272407,7665,5225,594616057,579272407,14849,9117,1486211484,1462634072,100,100,100,100,51.62,57.31,40.01,39.6
-49653,26,089,26089,1922,1354,81790949,72028980,1922,1354,81790949,72028980,21708,14935,6558346955,899168573,100,100,100,100,8.85,9.07,1.25,8.01
-49654,26,089,26089,690,821,97216582,90065556,690,821,97216582,90065556,21708,14935,6558346955,899168573,100,100,100,100,3.18,5.5,1.48,10.02
-49655,26,085,26085,174,113,16414216,16414216,3173,2206,236906021,232785908,11539,14966,1487378156,1469481397,5.48,5.12,6.93,7.05,1.51,0.76,1.1,1.12
-49655,26,133,26133,2999,2093,220491805,216371692,3173,2206,236906021,232785908,23528,13632,1484312630,1466946699,94.52,94.88,93.07,92.95,12.75,15.35,14.85,14.75
-49656,26,085,26085,1534,1650,328889422,327598520,1534,1650,328889422,327598520,11539,14966,1487378156,1469481397,100,100,100,100,13.29,11.02,22.11,22.29
-49657,26,113,26113,3683,1620,251257387,249732206,3683,1620,251257387,249732206,14849,9117,1486211484,1462634072,100,100,100,100,24.8,17.77,16.91,17.07
-49659,26,009,26009,5348,3183,320487075,318815224,6801,4505,431070443,427122779,23580,17824,1558577158,1232064018,78.64,70.65,74.35,74.64,22.68,17.86,20.56,25.88
-49659,26,079,26079,1453,1322,110583368,108307555,6801,4505,431070443,427122779,17153,12171,1478121875,1450043265,21.36,29.35,25.65,25.36,8.47,10.86,7.48,7.47
-49660,26,101,26101,13492,7144,407372160,384912807,14066,7561,508935980,483625840,24733,15694,3316645199,1404159906,95.92,94.48,80.04,79.59,54.55,45.52,12.28,27.41
-49660,26,105,26105,574,417,101563820,98713033,14066,7561,508935980,483625840,28705,17293,3217908886,1282232870,4.08,5.52,19.96,20.41,2,2.41,3.16,7.7
-49663,26,113,26113,1187,664,153368852,151444346,5874,2847,442670284,440495794,14849,9117,1486211484,1462634072,20.21,23.32,34.65,34.38,7.99,7.28,10.32,10.35
-49663,26,165,26165,4687,2183,289301432,289051448,5874,2847,442670284,440495794,32735,16736,1490449083,1463347858,79.79,76.68,65.35,65.62,14.32,13.04,19.41,19.75
-49664,26,089,26089,2067,1377,154825651,149612450,2067,1377,154825651,149612450,21708,14935,6558346955,899168573,100,100,100,100,9.52,9.22,2.36,16.64
-49665,26,035,26035,541,464,128148954,125983392,4413,2389,409519488,406873963,30926,23233,1490122481,1461569881,12.26,19.42,31.29,30.96,1.75,2,8.6,8.62
-49665,26,113,26113,261,96,21317223,21241372,4413,2389,409519488,406873963,14849,9117,1486211484,1462634072,5.91,4.02,5.21,5.22,1.76,1.05,1.43,1.45
-49665,26,133,26133,3611,1829,260053311,259649199,4413,2389,409519488,406873963,23528,13632,1484312630,1466946699,81.83,76.56,63.5,63.82,15.35,13.42,17.52,17.7
-49666,26,055,26055,106,52,6579442,6579442,106,52,6579442,6579442,86986,41599,1557398200,1202611911,100,100,100,100,0.12,0.13,0.42,0.55
-49667,26,113,26113,549,476,209231396,206211677,549,476,209231396,206211677,14849,9117,1486211484,1462634072,100,100,100,100,3.7,5.22,14.08,14.1
-49668,26,101,26101,14,18,557599,450981,3625,2120,283445947,275377303,24733,15694,3316645199,1404159906,0.39,0.85,0.2,0.16,0.06,0.11,0.02,0.03
-49668,26,165,26165,3611,2102,282888348,274926322,3625,2120,283445947,275377303,32735,16736,1490449083,1463347858,99.61,99.15,99.8,99.84,11.03,12.56,18.98,18.79
-49670,26,089,26089,1891,1845,175623178,119590442,1891,1845,175623178,119590442,21708,14935,6558346955,899168573,100,100,100,100,8.71,12.35,2.68,13.3
-49674,26,089,26089,110,84,6010296,4161313,110,84,6010296,4161313,21708,14935,6558346955,899168573,100,100,100,100,0.51,0.56,0.09,0.46
-49675,26,101,26101,1030,1001,44265634,31268467,1030,1001,44265634,31268467,24733,15694,3316645199,1404159906,100,100,100,100,4.16,6.38,1.33,2.23
-49676,26,009,26009,1115,1098,52344919,31752902,3407,2521,138960128,111555866,23580,17824,1558577158,1232064018,32.73,43.55,37.67,28.46,4.73,6.16,3.36,2.58
-49676,26,079,26079,2292,1423,86615209,79802964,3407,2521,138960128,111555866,17153,12171,1478121875,1450043265,67.27,56.45,62.33,71.54,13.36,11.69,5.86,5.5
-49677,26,085,26085,961,534,114726670,114577406,6631,3428,344228493,341291274,11539,14966,1487378156,1469481397,14.49,15.58,33.33,33.57,8.33,3.57,7.71,7.8
-49677,26,123,26123,242,177,39606055,38481061,6631,3428,344228493,341291274,48460,25075,2231763883,2106188282,3.65,5.16,11.51,11.28,0.5,0.71,1.77,1.83
-49677,26,133,26133,5428,2717,189895768,188232807,6631,3428,344228493,341291274,23528,13632,1484312630,1466946699,81.86,79.26,55.17,55.15,23.07,19.93,12.79,12.83
-49679,26,107,26107,189,141,16677126,16558685,1428,1066,144960644,142604338,42798,21131,1479386400,1437626850,13.24,13.23,11.5,11.61,0.44,0.67,1.13,1.15
-49679,26,133,26133,1239,925,128283518,126045653,1428,1066,144960644,142604338,23528,13632,1484312630,1466946699,86.76,86.77,88.5,88.39,5.27,6.79,8.64,8.59
-49680,26,055,26055,2,4,2597201,2597201,1916,1000,135850503,134971402,86986,41599,1557398200,1202611911,0.1,0.4,1.91,1.92,0,0.01,0.17,0.22
-49680,26,079,26079,1914,996,133253302,132374201,1916,1000,135850503,134971402,17153,12171,1478121875,1450043265,99.9,99.6,98.09,98.08,11.16,8.18,9.02,9.13
-49682,26,089,26089,4253,2223,168002734,95202865,4253,2223,168002734,95202865,21708,14935,6558346955,899168573,100,100,100,100,19.59,14.88,2.56,10.59
-49683,26,019,26019,1169,1018,158908470,158127658,1939,1632,223984543,222967745,17525,12199,2226268897,828028289,60.29,62.38,70.95,70.92,6.67,8.34,7.14,19.1
-49683,26,055,26055,107,66,12002813,12002813,1939,1632,223984543,222967745,86986,41599,1557398200,1202611911,5.52,4.04,5.36,5.38,0.12,0.16,0.77,1
-49683,26,101,26101,663,548,53073260,52837274,1939,1632,223984543,222967745,24733,15694,3316645199,1404159906,34.19,33.58,23.7,23.7,2.68,3.49,1.6,3.76
-49684,26,019,26019,362,153,8167637,8002725,37963,18012,326256727,260881867,17525,12199,2226268897,828028289,0.95,0.85,2.5,3.07,2.07,1.25,0.37,0.97
-49684,26,055,26055,31879,14943,192545343,170913117,37963,18012,326256727,260881867,86986,41599,1557398200,1202611911,83.97,82.96,59.02,65.51,36.65,35.92,12.36,14.21
-49684,26,089,26089,5722,2916,125543747,81966025,37963,18012,326256727,260881867,21708,14935,6558346955,899168573,15.07,16.19,38.48,31.42,26.36,19.52,1.91,9.12
-49686,26,055,26055,32056,16100,386457332,311413405,32056,16100,386457332,311413405,86986,41599,1557398200,1202611911,100,100,100,100,36.85,38.7,24.81,25.89
-49688,26,085,26085,155,122,31119179,30930450,2703,1496,251183014,249903035,11539,14966,1487378156,1469481397,5.73,8.16,12.39,12.38,1.34,0.82,2.09,2.1
-49688,26,133,26133,2518,1358,217419410,216328160,2703,1496,251183014,249903035,23528,13632,1484312630,1466946699,93.16,90.78,86.56,86.56,10.7,9.96,14.65,14.75
-49688,26,165,26165,30,16,2644425,2644425,2703,1496,251183014,249903035,32735,16736,1490449083,1463347858,1.11,1.07,1.05,1.06,0.09,0.1,0.18,0.18
-49689,26,101,26101,1414,1542,173782404,169111355,1560,1721,208454032,203720177,24733,15694,3316645199,1404159906,90.64,89.6,83.37,83.01,5.72,9.83,5.24,12.04
-49689,26,165,26165,146,179,34671628,34608822,1560,1721,208454032,203720177,32735,16736,1490449083,1463347858,9.36,10.4,16.63,16.99,0.45,1.07,2.33,2.37
-49690,26,009,26009,371,259,16765468,7447884,6182,3562,234318752,198923001,23580,17824,1558577158,1232064018,6,7.27,7.15,3.74,1.57,1.45,1.08,0.6
-49690,26,055,26055,5475,3127,188842835,162889436,6182,3562,234318752,198923001,86986,41599,1557398200,1202611911,88.56,87.79,80.59,81.89,6.29,7.52,12.13,13.54
-49690,26,079,26079,336,176,28710449,28585681,6182,3562,234318752,198923001,17153,12171,1478121875,1450043265,5.44,4.94,12.25,14.37,1.96,1.45,1.94,1.97
-49701,26,031,26031,428,484,22033956,17291967,1036,1041,48713157,32541772,26152,18298,2293131310,1852525483,41.31,46.49,45.23,53.14,1.64,2.65,0.96,0.93
-49701,26,047,26047,608,557,26679201,15249805,1036,1041,48713157,32541772,32694,21304,2284361777,1210803605,58.69,53.51,54.77,46.86,1.86,2.61,1.17,1.26
-49705,26,031,26031,937,496,197602422,196510081,937,496,197602422,196510081,26152,18298,2293131310,1852525483,100,100,100,100,3.58,2.71,8.62,10.61
-49706,26,031,26031,825,449,46888931,46873448,4585,2631,167382178,161856197,26152,18298,2293131310,1852525483,17.99,17.07,28.01,28.96,3.15,2.45,2.04,2.53
-49706,26,047,26047,3760,2182,120493247,114982749,4585,2631,167382178,161856197,32694,21304,2284361777,1210803605,82.01,82.93,71.99,71.04,11.5,10.24,5.27,9.5
-49707,26,007,26007,22143,11468,641152411,543300313,22701,12030,667827739,559605130,29598,16053,4389827707,1481110566,97.54,95.33,96.01,97.09,74.81,71.44,14.61,36.68
-49707,26,141,26141,558,562,26675328,16304817,22701,12030,667827739,559605130,13376,10428,6663407578,1706074274,2.46,4.67,3.99,2.91,4.17,5.39,0.4,0.96
-49709,26,119,26119,3618,4095,602301531,590031423,3618,4095,602301531,590031423,9765,9597,1457262509,1415851499,100,100,100,100,37.05,42.67,41.33,41.67
-49710,26,033,26033,409,502,135940866,94277549,409,502,135940866,94277549,38520,21253,6988798891,4036289692,100,100,100,100,1.06,2.36,1.95,2.34
-49712,26,009,26009,129,56,20943758,20943758,7890,4798,212692676,185672736,23580,17824,1558577158,1232064018,1.63,1.17,9.85,11.28,0.55,0.31,1.34,1.7
-49712,26,029,26029,7761,4742,191748918,164728978,7890,4798,212692676,185672736,25949,17249,3601284560,1078313350,98.37,98.83,90.15,88.72,29.91,27.49,5.32,15.28
-49713,26,009,26009,10,5,4989245,4984188,1864,1350,258733361,256303344,23580,17824,1558577158,1232064018,0.54,0.37,1.93,1.94,0.04,0.03,0.32,0.4
-49713,26,029,26029,1772,1312,249625834,247200874,1864,1350,258733361,256303344,25949,17249,3601284560,1078313350,95.06,97.19,96.48,96.45,6.83,7.61,6.93,22.92
-49713,26,047,26047,82,33,4118282,4118282,1864,1350,258733361,256303344,32694,21304,2284361777,1210803605,4.4,2.44,1.59,1.61,0.25,0.15,0.18,0.34
-49715,26,033,26033,3130,2011,553919921,476014049,3130,2011,553919921,476014049,38520,21253,6988798891,4036289692,100,100,100,100,8.13,9.46,7.93,11.79
-49716,26,031,26031,235,367,19480944,19474114,806,651,62846567,62633151,26152,18298,2293131310,1852525483,29.16,56.37,31,31.09,0.9,2.01,0.85,1.05
-49716,26,047,26047,571,284,43365623,43159037,806,651,62846567,62633151,32694,21304,2284361777,1210803605,70.84,43.63,69,68.91,1.75,1.33,1.9,3.56
-49717,26,031,26031,72,129,2370777,2370777,72,129,2370777,2370777,26152,18298,2293131310,1852525483,100,100,100,100,0.28,0.7,0.1,0.13
-49718,26,031,26031,61,86,13657450,12370501,701,788,179948887,128852691,26152,18298,2293131310,1852525483,8.7,10.91,7.59,9.6,0.23,0.47,0.6,0.67
-49718,26,047,26047,640,702,166291437,116482190,701,788,179948887,128852691,32694,21304,2284361777,1210803605,91.3,89.09,92.41,90.4,1.96,3.3,7.28,9.62
-49719,26,097,26097,1362,1737,210222242,151556351,1362,1737,210222242,151556351,11113,11010,5440642873,2645851022,100,100,100,100,12.26,15.78,3.86,5.73
-49720,26,009,26009,260,156,24138898,21837901,9172,6113,326224530,247688354,23580,17824,1558577158,1232064018,2.83,2.55,7.4,8.82,1.1,0.88,1.55,1.77
-49720,26,029,26029,8912,5957,302085632,225850453,9172,6113,326224530,247688354,25949,17249,3601284560,1078313350,97.17,97.45,92.6,91.18,34.34,34.54,8.39,20.94
-49721,26,031,26031,14436,8839,764983642,669816202,14436,8839,764983642,669816202,26152,18298,2293131310,1852525483,100,100,100,100,55.2,48.31,33.36,36.16
-49722,26,047,26047,220,183,2269543,1716875,220,183,2269543,1716875,32694,21304,2284361777,1210803605,100,100,100,100,0.67,0.86,0.1,0.14
-49724,26,033,26033,1146,512,145214956,144013366,1146,512,145214956,144013366,38520,21253,6988798891,4036289692,100,100,100,100,2.98,2.41,2.08,3.57
-49725,26,033,26033,766,864,170761451,124731458,766,864,170761451,124731458,38520,21253,6988798891,4036289692,100,100,100,100,1.99,4.07,2.44,3.09
-49726,26,033,26033,1058,1662,617416691,333385399,1058,1662,617416691,333385399,38520,21253,6988798891,4036289692,100,100,100,100,2.75,7.82,8.83,8.26
-49727,26,009,26009,1662,1028,176978225,175267623,7145,4244,361373996,334371145,23580,17824,1558577158,1232064018,23.26,24.22,48.97,52.42,7.05,5.77,11.36,14.23
-49727,26,029,26029,5483,3216,184395771,159103522,7145,4244,361373996,334371145,25949,17249,3601284560,1078313350,76.74,75.78,51.03,47.58,21.13,18.64,5.12,14.75
-49728,26,033,26033,334,686,533039376,463888684,334,686,533039376,463888684,38520,21253,6988798891,4036289692,100,100,100,100,0.87,3.23,7.63,11.49
-49729,26,009,26009,1282,851,95887247,82705550,1446,1002,111459396,97813213,23580,17824,1558577158,1232064018,88.66,84.93,86.03,84.55,5.44,4.77,6.15,6.71
-49729,26,029,26029,164,151,15572149,15107663,1446,1002,111459396,97813213,25949,17249,3601284560,1078313350,11.34,15.07,13.97,15.45,0.63,0.88,0.43,1.4
-49730,26,009,26009,1219,965,151331820,150825612,2187,1449,242968800,241962859,23580,17824,1558577158,1232064018,55.74,66.6,62.28,62.33,5.17,5.41,9.71,12.24
-49730,26,029,26029,432,226,38110423,37797213,2187,1449,242968800,241962859,25949,17249,3601284560,1078313350,19.75,15.6,15.69,15.62,1.66,1.31,1.06,3.51
-49730,26,137,26137,536,258,53526557,53340034,2187,1449,242968800,241962859,24164,14731,1362823594,1333769920,24.51,17.81,22.03,22.04,2.22,1.75,3.93,4
-49733,26,039,26039,1499,1303,284243226,282004970,1965,1743,330752800,327389513,14074,11092,1458789839,1440758147,76.28,74.76,85.94,86.14,10.65,11.75,19.48,19.57
-49733,26,137,26137,466,440,46509574,45384543,1965,1743,330752800,327389513,24164,14731,1362823594,1333769920,23.72,25.24,14.06,13.86,1.93,2.99,3.41,3.4
-49735,26,137,26137,19515,11071,669562773,648950376,19515,11071,669562773,648950376,24164,14731,1362823594,1333769920,100,100,100,100,80.76,75.15,49.13,48.66
-49736,26,033,26033,578,561,323614045,209709276,578,561,323614045,209709276,38520,21253,6988798891,4036289692,100,100,100,100,1.5,2.64,4.63,5.2
-49738,26,039,26039,9702,7409,717746141,703271389,9924,7713,775398262,760457421,14074,11092,1458789839,1440758147,97.76,96.06,92.56,92.48,68.94,66.8,49.2,48.81
-49738,26,079,26079,202,279,52475088,52128188,9924,7713,775398262,760457421,17153,12171,1478121875,1450043265,2.04,3.62,6.77,6.85,1.18,2.29,3.55,3.59
-49738,26,137,26137,20,25,5177033,5057844,9924,7713,775398262,760457421,24164,14731,1362823594,1333769920,0.2,0.32,0.67,0.67,0.08,0.17,0.38,0.38
-49740,26,047,26047,7042,6178,364068649,320240087,7042,6178,364068649,320240087,32694,21304,2284361777,1210803605,100,100,100,100,21.54,29,15.94,26.45
-49743,26,141,26141,769,783,237828515,233255423,769,783,237828515,233255423,13376,10428,6663407578,1706074274,100,100,100,100,5.75,7.51,3.57,13.67
-49744,26,007,26007,823,458,91951976,91840768,823,458,91951976,91840768,29598,16053,4389827707,1481110566,100,100,100,100,2.78,2.85,2.09,6.2
-49745,26,097,26097,1089,981,230611346,203861100,1089,981,230611346,203861100,11113,11010,5440642873,2645851022,100,100,100,100,9.8,8.91,4.24,7.7
-49746,26,007,26007,379,293,104950376,89566002,3685,2853,581473683,548435123,29598,16053,4389827707,1481110566,10.28,10.27,18.05,16.33,1.28,1.83,2.39,6.05
-49746,26,119,26119,3306,2560,476523307,458869121,3685,2853,581473683,548435123,9765,9597,1457262509,1415851499,89.72,89.73,81.95,83.67,33.86,26.68,32.7,32.41
-49747,26,001,26001,743,1030,143285189,143281014,1921,1681,251006777,250455161,10942,11073,4637587678,1747168145,38.68,61.27,57.08,57.21,6.79,9.3,3.09,8.2
-49747,26,007,26007,1178,651,107721588,107174147,1921,1681,251006777,250455161,29598,16053,4389827707,1481110566,61.32,38.73,42.92,42.79,3.98,4.06,2.45,7.24
-49748,26,033,26033,168,283,248950290,246330199,170,314,274447410,271760891,38520,21253,6988798891,4036289692,98.82,90.13,90.71,90.64,0.44,1.33,3.56,6.1
-49748,26,095,26095,2,31,25497120,25430692,170,314,274447410,271760891,6631,4343,4953320542,2328602234,1.18,9.87,9.29,9.36,0.03,0.71,0.51,1.09
-49749,26,031,26031,4283,3615,224715685,188225040,4283,3615,224715685,188225040,26152,18298,2293131310,1852525483,100,100,100,100,16.38,19.76,9.8,10.16
-49751,26,119,26119,261,242,114261322,113609535,2087,1997,398410531,392765018,9765,9597,1457262509,1415851499,12.51,12.12,28.68,28.93,2.67,2.52,7.84,8.02
-49751,26,137,26137,1826,1755,284149209,279155483,2087,1997,398410531,392765018,24164,14731,1362823594,1333769920,87.49,87.88,71.32,71.07,7.56,11.91,20.85,20.93
-49752,26,033,26033,515,257,67152924,66382317,515,257,67152924,66382317,38520,21253,6988798891,4036289692,100,100,100,100,1.34,1.21,0.96,1.64
-49753,26,007,26007,2057,1536,455098754,442574949,2057,1536,455098754,442574949,29598,16053,4389827707,1481110566,100,100,100,100,6.95,9.57,10.37,29.88
-49755,26,031,26031,357,445,76759189,63751233,1892,1345,273720800,258501357,26152,18298,2293131310,1852525483,18.87,33.09,28.04,24.66,1.37,2.43,3.35,3.44
-49755,26,047,26047,1535,900,196961611,194750124,1892,1345,273720800,258501357,32694,21304,2284361777,1210803605,81.13,66.91,71.96,75.34,4.7,4.22,8.62,16.08
-49756,26,039,26039,12,19,3323910,3323910,3857,4848,437125332,423565279,14074,11092,1458789839,1440758147,0.31,0.39,0.76,0.78,0.09,0.17,0.23,0.23
-49756,26,119,26119,2529,2631,151656007,141206524,3857,4848,437125332,423565279,9765,9597,1457262509,1415851499,65.57,54.27,34.69,33.34,25.9,27.41,10.41,9.97
-49756,26,135,26135,1255,2119,266869654,264112212,3857,4848,437125332,423565279,8640,9118,1480389868,1465236876,32.54,43.71,61.05,62.35,14.53,23.24,18.03,18.03
-49756,26,137,26137,61,79,15275761,14922633,3857,4848,437125332,423565279,24164,14731,1362823594,1333769920,1.58,1.63,3.49,3.52,0.25,0.54,1.12,1.12
-49757,26,097,26097,492,1002,48802915,11271216,492,1002,48802915,11271216,11113,11010,5440642873,2645851022,100,100,100,100,4.43,9.1,0.9,0.43
-49759,26,141,26141,1682,1773,409098168,390682198,1682,1773,409098168,390682198,13376,10428,6663407578,1706074274,100,100,100,100,12.57,17,6.14,22.9
-49760,26,097,26097,713,749,394800016,371973445,713,749,394800016,371973445,11113,11010,5440642873,2645851022,100,100,100,100,6.42,6.8,7.26,14.06
-49762,26,097,26097,639,891,797567834,566576739,639,891,797567834,566576739,11113,11010,5440642873,2645851022,100,100,100,100,5.75,8.09,14.66,21.41
-49764,26,047,26047,139,77,154134,154134,139,77,154134,154134,32694,21304,2284361777,1210803605,100,100,100,100,0.43,0.36,0.01,0.01
-49765,26,031,26031,1544,1186,324109258,308159380,4154,2980,679148473,650567686,26152,18298,2293131310,1852525483,37.17,39.8,47.72,47.37,5.9,6.48,14.13,16.63
-49765,26,141,26141,2610,1794,355039215,342408306,4154,2980,679148473,650567686,13376,10428,6663407578,1706074274,62.83,60.2,52.28,52.63,19.51,17.2,5.33,20.07
-49766,26,007,26007,2417,1324,136383987,114729196,2417,1324,136383987,114729196,29598,16053,4389827707,1481110566,100,100,100,100,8.17,8.25,3.11,7.75
-49768,26,033,26033,476,1012,507408828,426629704,476,1012,507408828,426629704,38520,21253,6988798891,4036289692,100,100,100,100,1.24,4.76,7.26,10.57
-49769,26,031,26031,129,181,19649750,14793099,1644,923,145566423,138196709,26152,18298,2293131310,1852525483,7.85,19.61,13.5,10.7,0.49,0.99,0.86,0.8
-49769,26,047,26047,1515,742,125916673,123403610,1644,923,145566423,138196709,32694,21304,2284361777,1210803605,92.15,80.39,86.5,89.3,4.63,3.48,5.51,10.19
-49770,26,029,26029,280,157,7576687,7526421,16862,9623,321502538,284073133,25949,17249,3601284560,1078313350,1.66,1.63,2.36,2.65,1.08,0.91,0.21,0.7
-49770,26,047,26047,16582,9466,313925851,276546712,16862,9623,321502538,284073133,32694,21304,2284361777,1210803605,98.34,98.37,97.64,97.35,50.72,44.43,13.74,22.84
-49774,26,033,26033,1486,979,381542303,306340376,1851,1190,493253366,417388994,38520,21253,6988798891,4036289692,80.28,82.27,77.35,73.39,3.86,4.61,5.46,7.59
-49774,26,097,26097,365,211,111711063,111048618,1851,1190,493253366,417388994,11113,11010,5440642873,2645851022,19.72,17.73,22.65,26.61,3.28,1.92,2.05,4.2
-49775,26,097,26097,95,542,125374383,90946628,95,542,125374383,90946628,11113,11010,5440642873,2645851022,100,100,100,100,0.85,4.92,2.3,3.44
-49776,26,007,26007,410,235,74524373,74268081,1888,1142,324322487,320238036,29598,16053,4389827707,1481110566,21.72,20.58,22.98,23.19,1.39,1.46,1.7,5.01
-49776,26,141,26141,1478,907,249798114,245969955,1888,1142,324322487,320238036,13376,10428,6663407578,1706074274,78.28,79.42,77.02,76.81,11.05,8.7,3.75,14.42
-49777,26,141,26141,1640,1857,248456391,164912894,1640,1857,248456391,164912894,13376,10428,6663407578,1706074274,100,100,100,100,12.26,17.81,3.73,9.67
-49779,26,141,26141,4639,2752,371803040,312540681,4639,2752,371803040,312540681,13376,10428,6663407578,1706074274,100,100,100,100,34.68,26.39,5.58,18.32
-49780,26,033,26033,1859,1089,625168544,621119545,1946,1264,783583929,775496778,38520,21253,6988798891,4036289692,95.53,86.16,79.78,80.09,4.83,5.12,8.95,15.39
-49780,26,097,26097,87,175,158415385,154377233,1946,1264,783583929,775496778,11113,11010,5440642873,2645851022,4.47,13.84,20.22,19.91,0.78,1.59,2.91,5.83
-49781,26,097,26097,4020,2270,260999464,203742753,4020,2270,260999464,203742753,11113,11010,5440642873,2645851022,100,100,100,100,36.17,20.62,4.8,7.7
-49782,26,029,26029,657,1016,193388922,188272628,657,1016,193388922,188272628,25949,17249,3601284560,1078313350,100,100,100,100,2.53,5.89,5.37,17.46
-49783,26,033,26033,19668,9445,495771933,391215697,19668,9445,495771933,391215697,38520,21253,6988798891,4036289692,100,100,100,100,51.06,44.44,7.09,9.69
-49788,26,033,26033,6609,1004,20163694,20071746,6609,1004,20163694,20071746,38520,21253,6988798891,4036289692,100,100,100,100,17.16,4.72,0.29,0.5
-49791,26,031,26031,329,305,2783613,2783613,329,305,2783613,2783613,26152,18298,2293131310,1852525483,100,100,100,100,1.26,1.67,0.12,0.15
-49793,26,033,26033,318,386,116424232,112180327,322,400,164309867,159958212,38520,21253,6988798891,4036289692,98.76,96.5,70.86,70.13,0.83,1.82,1.67,2.78
-49793,26,097,26097,4,14,47885635,47777885,322,400,164309867,159958212,11113,11010,5440642873,2645851022,1.24,3.5,29.14,29.87,0.04,0.13,0.88,1.81
-49795,26,029,26029,168,129,27985618,27479436,2097,1328,340448849,338278987,25949,17249,3601284560,1078313350,8.01,9.71,8.22,8.12,0.65,0.75,0.78,2.55
-49795,26,031,26031,189,96,23840544,23840544,2097,1328,340448849,338278987,26152,18298,2293131310,1852525483,9.01,7.23,7,7.05,0.72,0.52,1.04,1.29
-49795,26,137,26137,1740,1103,288622687,286959007,2097,1328,340448849,338278987,24164,14731,1362823594,1333769920,82.98,83.06,84.78,84.83,7.2,7.49,21.18,21.51
-49796,26,029,26029,320,343,10434880,5246162,320,343,10434880,5246162,25949,17249,3601284560,1078313350,100,100,100,100,1.23,1.99,0.29,0.49
-49799,26,031,26031,2327,1620,289781867,286265484,2327,1620,289781867,286265484,26152,18298,2293131310,1852525483,100,100,100,100,8.9,8.85,12.64,15.45
-49801,26,043,26043,11424,5798,403609999,390422217,11424,5798,403609999,390422217,26168,13990,2012551121,1972018016,100,100,100,100,43.66,41.44,20.05,19.8
-49802,26,043,26043,6230,2930,21954924,20523117,6230,2930,21954924,20523117,26168,13990,2012551121,1972018016,100,100,100,100,23.81,20.94,1.09,1.04
-49805,26,061,26061,10,7,180698,180698,336,234,83986904,77949599,36628,18636,3888869387,2613554735,2.98,2.99,0.22,0.23,0.03,0.04,0,0.01
-49805,26,083,26083,326,227,83806206,77768901,336,234,83986904,77949599,2156,2467,15452359110,1398883200,97.02,97.01,99.78,99.77,15.12,9.2,0.54,5.56
-49806,26,003,26003,627,686,158515782,118452096,627,686,158515782,118452096,9601,6554,13073573775,2370019042,100,100,100,100,6.53,10.47,1.21,5
-49807,26,041,26041,2698,1359,306368160,278157398,3390,1955,575160722,543621989,37069,20214,5157505620,3033124287,79.59,69.51,53.27,51.17,7.28,6.72,5.94,9.17
-49807,26,043,26043,217,234,95687150,92474241,3390,1955,575160722,543621989,26168,13990,2012551121,1972018016,6.4,11.97,16.64,17.01,0.83,1.67,4.75,4.69
-49807,26,109,26109,475,362,173105412,172990350,3390,1955,575160722,543621989,24029,14227,3465953100,2704152851,14.01,18.52,30.1,31.82,1.98,2.54,4.99,6.4
-49808,26,103,26103,352,538,563257507,418589644,352,538,563257507,418589644,67077,34330,8869516984,4683737366,100,100,100,100,0.52,1.57,6.35,8.94
-49812,26,109,26109,925,607,184822676,184753276,925,607,184822676,184753276,24029,14227,3465953100,2704152851,100,100,100,100,3.85,4.27,5.33,6.83
-49814,26,103,26103,1429,991,623605164,600922059,1429,991,623605164,600922059,67077,34330,8869516984,4683737366,100,100,100,100,2.13,2.89,7.03,12.83
-49815,26,043,26043,488,481,309298754,304059240,488,481,309298754,304059240,26168,13990,2012551121,1972018016,100,100,100,100,1.86,3.44,15.37,15.42
-49816,26,003,26003,724,424,148997576,143802898,724,424,148997576,143802898,9601,6554,13073573775,2370019042,100,100,100,100,7.54,6.47,1.14,6.07
-49817,26,041,26041,77,66,84121100,83785616,615,335,238947571,237722150,37069,20214,5157505620,3033124287,12.52,19.7,35.2,35.25,0.21,0.33,1.63,2.76
-49817,26,153,26153,538,269,154826471,153936534,615,335,238947571,237722150,8485,6313,4879485498,3033804451,87.48,80.3,64.8,64.75,6.34,4.26,3.17,5.07
-49818,26,041,26041,854,611,232787477,231337791,988,819,468931342,465782131,37069,20214,5157505620,3033124287,86.44,74.6,49.64,49.67,2.3,3.02,4.51,7.63
-49818,26,103,26103,134,208,236143865,234444340,988,819,468931342,465782131,67077,34330,8869516984,4683737366,13.56,25.4,50.36,50.33,0.2,0.61,2.66,5.01
-49819,26,103,26103,36,53,33886306,33681746,36,53,33886306,33681746,67077,34330,8869516984,4683737366,100,100,100,100,0.05,0.15,0.38,0.72
-49820,26,097,26097,382,360,53676612,52894922,382,360,53676612,52894922,11113,11010,5440642873,2645851022,100,100,100,100,3.44,3.27,0.99,2
-49821,26,109,26109,1354,1021,375567728,373703080,1354,1021,375567728,373703080,24029,14227,3465953100,2704152851,100,100,100,100,5.63,7.18,10.84,13.82
-49822,26,003,26003,213,278,174158834,154489871,220,290,177953015,157196735,9601,6554,13073573775,2370019042,96.82,95.86,97.87,98.28,2.22,4.24,1.33,6.52
-49822,26,103,26103,7,12,3794181,2706864,220,290,177953015,157196735,67077,34330,8869516984,4683737366,3.18,4.14,2.13,1.72,0.01,0.03,0.04,0.06
-49825,26,003,26003,299,169,59190620,58966148,299,169,59190620,58966148,9601,6554,13073573775,2370019042,100,100,100,100,3.11,2.58,0.45,2.49
-49826,26,003,26003,137,91,37213455,36993611,137,91,37213455,36993611,9601,6554,13073573775,2370019042,100,100,100,100,1.43,1.39,0.28,1.56
-49827,26,097,26097,897,786,271327062,266273645,897,786,271327062,266273645,11113,11010,5440642873,2645851022,100,100,100,100,8.07,7.14,4.99,10.06
-49829,26,041,26041,17347,8279,183477345,168706902,17347,8279,183477345,168706902,37069,20214,5157505620,3033124287,100,100,100,100,46.8,40.96,3.56,5.56
-49831,26,043,26043,719,536,170463662,165878481,780,654,306816715,302179010,26168,13990,2012551121,1972018016,92.18,81.96,55.56,54.89,2.75,3.83,8.47,8.41
-49831,26,103,26103,61,118,136353053,136300529,780,654,306816715,302179010,67077,34330,8869516984,4683737366,7.82,18.04,44.44,45.11,0.09,0.34,1.54,2.91
-49833,26,103,26103,266,201,22656941,20965929,266,201,22656941,20965929,67077,34330,8869516984,4683737366,100,100,100,100,0.4,0.59,0.26,0.45
-49834,26,043,26043,284,198,95111207,93400832,284,198,95111207,93400832,26168,13990,2012551121,1972018016,100,100,100,100,1.09,1.42,4.73,4.74
-49835,26,041,26041,802,740,271143014,244514489,802,740,271143014,244514489,37069,20214,5157505620,3033124287,100,100,100,100,2.16,3.66,5.26,8.06
-49836,26,097,26097,406,558,91816559,46676156,938,1028,316505406,261738948,11113,11010,5440642873,2645851022,43.28,54.28,29.01,17.83,3.65,5.07,1.69,1.76
-49836,26,153,26153,532,470,224688847,215062792,938,1028,316505406,261738948,8485,6313,4879485498,3033804451,56.72,45.72,70.99,82.17,6.27,7.44,4.6,7.09
-49837,26,041,26041,9795,4599,199615313,178324579,9795,4599,199615313,178324579,37069,20214,5157505620,3033124287,100,100,100,100,26.42,22.75,3.87,5.88
-49838,26,097,26097,504,607,375135428,361194846,504,607,375135428,361194846,11113,11010,5440642873,2645851022,100,100,100,100,4.54,5.51,6.9,13.65
-49839,26,003,26003,479,654,418937296,359697581,479,654,418937296,359697581,9601,6554,13073573775,2370019042,100,100,100,100,4.99,9.98,3.2,15.18
-49840,26,153,26153,771,765,512106755,467664163,771,765,512106755,467664163,8485,6313,4879485498,3033804451,100,100,100,100,9.09,12.12,10.5,15.42
-49841,26,103,26103,7016,4365,508209386,496890591,7016,4365,508209386,496890591,67077,34330,8869516984,4683737366,100,100,100,100,10.46,12.71,5.73,10.61
-49847,26,109,26109,998,580,153807042,153026742,998,580,153807042,153026742,24029,14227,3465953100,2704152851,100,100,100,100,4.15,4.08,4.44,5.66
-49848,26,109,26109,128,91,11088489,11088489,128,91,11088489,11088489,24029,14227,3465953100,2704152851,100,100,100,100,0.53,0.64,0.32,0.41
-49849,26,103,26103,12242,6212,770814640,736649049,12242,6212,770814640,736649049,67077,34330,8869516984,4683737366,100,100,100,100,18.25,18.09,8.69,15.73
-49852,26,043,26043,120,64,691628,614207,120,64,691628,614207,26168,13990,2012551121,1972018016,100,100,100,100,0.46,0.46,0.03,0.03
-49853,26,095,26095,1220,1238,461557883,433524933,1278,1365,467256391,439204418,6631,4343,4953320542,2328602234,95.46,90.7,98.78,98.71,18.4,28.51,9.32,18.62
-49853,26,097,26097,58,127,5698508,5679485,1278,1365,467256391,439204418,11113,11010,5440642873,2645851022,4.54,9.3,1.22,1.29,0.52,1.15,0.1,0.21
-49854,26,041,26041,51,94,64853891,62467725,6469,4459,1435012112,1341622740,37069,20214,5157505620,3033124287,0.79,2.11,4.52,4.66,0.14,0.47,1.26,2.06
-49854,26,153,26153,6418,4365,1370158221,1279155015,6469,4459,1435012112,1341622740,8485,6313,4879485498,3033804451,99.21,97.89,95.48,95.34,75.64,69.14,28.08,42.16
-49855,26,003,26003,22,16,142177,110423,33561,14728,624324203,519587375,9601,6554,13073573775,2370019042,0.07,0.11,0.02,0.02,0.23,0.24,0,0
-49855,26,103,26103,33539,14712,624182026,519476952,33561,14728,624324203,519587375,67077,34330,8869516984,4683737366,99.93,99.89,99.98,99.98,50,42.85,7.04,11.09
-49858,26,109,26109,12088,6502,242692079,222264516,12088,6502,242692079,222264516,24029,14227,3465953100,2704152851,100,100,100,100,50.31,45.7,7,8.22
-49861,26,013,26013,290,373,450810831,434509660,616,758,545032734,508479114,8860,5270,2768104344,2326474801,47.08,49.21,82.71,85.45,3.27,7.08,16.29,18.68
-49861,26,103,26103,326,385,94221903,73969454,616,758,545032734,508479114,67077,34330,8869516984,4683737366,52.92,50.79,17.29,14.55,0.49,1.12,1.06,1.58
-49862,26,003,26003,5025,2486,540543114,425038050,5025,2486,540543114,425038050,9601,6554,13073573775,2370019042,100,100,100,100,52.34,37.93,4.13,17.93
-49863,26,109,26109,130,66,1410791,1410791,130,66,1410791,1410791,24029,14227,3465953100,2704152851,100,100,100,100,0.54,0.46,0.04,0.05
-49864,26,041,26041,54,55,12282466,12282466,54,55,12282466,12282466,37069,20214,5157505620,3033124287,100,100,100,100,0.15,0.27,0.24,0.4
-49866,26,103,26103,8034,3786,389413157,376960622,8034,3786,389413157,376960622,67077,34330,8869516984,4683737366,100,100,100,100,11.98,11.03,4.39,8.05
-49868,26,095,26095,5409,3074,1921433081,1825957779,5409,3074,1921433081,1825957779,6631,4343,4953320542,2328602234,100,100,100,100,81.57,70.78,38.79,78.41
-49870,26,043,26043,3329,1665,143701482,142384720,3329,1665,143701482,142384720,26168,13990,2012551121,1972018016,100,100,100,100,12.72,11.9,7.14,7.22
-49871,26,103,26103,510,231,36622460,33740186,510,231,36622460,33740186,67077,34330,8869516984,4683737366,100,100,100,100,0.76,0.67,0.41,0.72
-49872,26,041,26041,206,124,49103087,49103087,206,124,49103087,49103087,37069,20214,5157505620,3033124287,100,100,100,100,0.56,0.61,0.95,1.62
-49873,26,043,26043,4,15,10662157,10645159,120,264,436097816,435359763,26168,13990,2012551121,1972018016,3.33,5.68,2.44,2.45,0.02,0.11,0.53,0.54
-49873,26,109,26109,116,249,425435659,424714604,120,264,436097816,435359763,24029,14227,3465953100,2704152851,96.67,94.32,97.56,97.55,0.48,1.75,12.27,15.71
-49874,26,109,26109,1126,514,102817784,102483700,1126,514,102817784,102483700,24029,14227,3465953100,2704152851,100,100,100,100,4.69,3.61,2.97,3.79
-49876,26,043,26043,1240,529,9565334,8958243,1240,529,9565334,8958243,26168,13990,2012551121,1972018016,100,100,100,100,4.74,3.78,0.48,0.45
-49877,26,043,26043,67,156,316534026,315416751,67,156,316534026,315416751,26168,13990,2012551121,1972018016,100,100,100,100,0.26,1.12,15.73,15.99
-49878,26,003,26003,47,31,13029924,13027281,3583,3020,1301464965,1209809415,9601,6554,13073573775,2370019042,1.31,1.03,1,1.08,0.49,0.47,0.1,0.55
-49878,26,041,26041,3536,2989,1288435041,1196782134,3583,3020,1301464965,1209809415,37069,20214,5157505620,3033124287,98.69,98.97,99,98.92,9.54,14.79,24.98,39.46
-49879,26,071,26071,13,25,19484095,18941901,1038,1166,385897503,365709337,11817,9197,3137018851,3020312287,1.25,2.14,5.05,5.18,0.11,0.27,0.62,0.63
-49879,26,103,26103,1025,1141,366413408,346767436,1038,1166,385897503,365709337,67077,34330,8869516984,4683737366,98.75,97.86,94.95,94.82,1.53,3.32,4.13,7.4
-49880,26,041,26041,830,623,247853693,247656854,1142,996,562532579,560327366,37069,20214,5157505620,3033124287,72.68,62.55,44.06,44.2,2.24,3.08,4.81,8.17
-49880,26,103,26103,312,373,314678886,312670512,1142,996,562532579,560327366,67077,34330,8869516984,4683737366,27.32,37.45,55.94,55.8,0.47,1.09,3.55,6.68
-49881,26,043,26043,345,289,121229960,120347840,345,289,121229960,120347840,26168,13990,2012551121,1972018016,100,100,100,100,1.32,2.07,6.02,6.1
-49883,26,003,26003,25,60,155274054,147851684,151,303,720956401,696716404,9601,6554,13073573775,2370019042,16.56,19.8,21.54,21.22,0.26,0.92,1.19,6.24
-49883,26,153,26153,126,243,565682347,548864720,151,303,720956401,696716404,8485,6313,4879485498,3033804451,83.44,80.2,78.46,78.78,1.48,3.85,11.59,18.09
-49884,26,003,26003,548,369,415748979,392318263,552,404,757787165,729104326,9601,6554,13073573775,2370019042,99.28,91.34,54.86,53.81,5.71,5.63,3.18,16.55
-49884,26,153,26153,4,35,342038186,336786063,552,404,757787165,729104326,8485,6313,4879485498,3033804451,0.72,8.66,45.14,46.19,0.05,0.55,7.01,11.1
-49885,26,003,26003,109,73,42466902,42391147,1897,1077,383700913,381392600,9601,6554,13073573775,2370019042,5.75,6.78,11.07,11.11,1.14,1.11,0.32,1.79
-49885,26,103,26103,1788,1004,341234011,339001453,1897,1077,383700913,381392600,67077,34330,8869516984,4683737366,94.25,93.22,88.93,88.89,2.67,2.92,3.85,7.24
-49886,26,109,26109,435,240,40256200,40256200,435,240,40256200,40256200,24029,14227,3465953100,2704152851,100,100,100,100,1.81,1.69,1.16,1.49
-49887,26,109,26109,2474,1942,591485720,555976315,2474,1942,591485720,555976315,24029,14227,3465953100,2704152851,100,100,100,100,10.3,13.65,17.07,20.56
-49891,26,003,26003,816,590,221693286,220698498,816,590,221693286,220698498,9601,6554,13073573775,2370019042,100,100,100,100,8.5,9,1.7,9.31
-49892,26,043,26043,1701,1095,314040838,306892968,1948,1337,430797417,421838397,26168,13990,2012551121,1972018016,87.32,81.9,72.9,72.75,6.5,7.83,15.6,15.56
-49892,26,109,26109,247,242,116756579,114945429,1948,1337,430797417,421838397,24029,14227,3465953100,2704152851,12.68,18.1,27.1,27.25,1.03,1.7,3.37,4.25
-49893,26,109,26109,1784,1059,196274820,194404996,1784,1059,196274820,194404996,24029,14227,3465953100,2704152851,100,100,100,100,7.42,7.44,5.66,7.19
-49894,26,041,26041,680,321,2263822,2184551,680,321,2263822,2184551,37069,20214,5157505620,3033124287,100,100,100,100,1.83,1.59,0.04,0.07
-49895,26,003,26003,530,627,265301937,256181491,765,1147,586581466,566337350,9601,6554,13073573775,2370019042,69.28,54.66,45.23,45.23,5.52,9.57,2.03,10.81
-49895,26,041,26041,139,354,283801907,277820695,765,1147,586581466,566337350,37069,20214,5157505620,3033124287,18.17,30.86,48.38,49.06,0.37,1.75,5.5,9.16
-49895,26,153,26153,96,166,37477622,32335164,765,1147,586581466,566337350,8485,6313,4879485498,3033804451,12.55,14.47,6.39,5.71,1.13,2.63,0.77,1.07
-49896,26,109,26109,1749,752,152360920,152134363,1749,752,152360920,152134363,24029,14227,3465953100,2704152851,100,100,100,100,7.28,5.29,4.4,5.63
-49901,26,083,26083,346,247,6286503,6286503,346,247,6286503,6286503,2156,2467,15452359110,1398883200,100,100,100,100,16.05,10.01,0.04,0.45
-49902,26,071,26071,145,121,816798,816798,145,121,816798,816798,11817,9197,3137018851,3020312287,100,100,100,100,1.23,1.32,0.03,0.03
-49903,26,071,26071,133,248,489132565,480599098,133,248,489132565,480599098,11817,9197,3137018851,3020312287,100,100,100,100,1.13,2.7,15.59,15.91
-49905,26,061,26061,2005,841,184879367,153695144,2005,841,184879367,153695144,36628,18636,3888869387,2613554735,100,100,100,100,5.47,4.51,4.75,5.88
-49908,26,013,26013,3292,1223,296647338,268589133,3292,1223,296647338,268589133,8860,5270,2768104344,2326474801,100,100,100,100,37.16,23.21,10.72,11.54
-49910,26,131,26131,385,466,339314608,314096852,385,466,339314608,314096852,6780,5672,9688675558,3396056253,100,100,100,100,5.68,8.22,3.5,9.25
-49911,26,053,26053,2744,1913,107316279,107243307,2744,1913,107316279,107243307,16427,10795,3823712186,2853775286,100,100,100,100,16.7,17.72,2.81,3.76
-49912,26,131,26131,1081,912,559129838,554920608,1081,912,559129838,554920608,6780,5672,9688675558,3396056253,100,100,100,100,15.94,16.08,5.77,16.34
-49913,26,061,26061,7081,3887,162113166,157866855,7248,3996,185724980,181467089,36628,18636,3888869387,2613554735,97.7,97.27,87.29,86.99,19.33,20.86,4.17,6.04
-49913,26,083,26083,167,109,23611814,23600234,7248,3996,185724980,181467089,2156,2467,15452359110,1398883200,2.3,2.73,12.71,13.01,7.75,4.42,0.15,1.69
-49915,26,071,26071,630,363,2326962,2326962,630,363,2326962,2326962,11817,9197,3137018851,3020312287,100,100,100,100,5.33,3.95,0.07,0.08
-49916,26,061,26061,2765,1512,293356890,276552578,2765,1512,293356890,276552578,36628,18636,3888869387,2613554735,100,100,100,100,7.55,8.11,7.54,10.58
-49917,26,061,26061,205,119,4444589,4444589,205,119,4444589,4444589,36628,18636,3888869387,2613554735,100,100,100,100,0.56,0.64,0.11,0.17
-49918,26,083,26083,120,188,184859560,122104050,120,188,184859560,122104050,2156,2467,15452359110,1398883200,100,100,100,100,5.57,7.62,1.2,8.73
-49919,26,013,26013,242,208,316880802,307745545,242,208,316880802,307745545,8860,5270,2768104344,2326474801,100,100,100,100,2.73,3.95,11.45,13.23
-49920,26,071,26071,4273,3385,1159050099,1095137278,4273,3385,1159050099,1095137278,11817,9197,3137018851,3020312287,100,100,100,100,36.16,36.81,36.95,36.26
-49921,26,061,26061,360,164,1055604,1050306,360,164,1055604,1050306,36628,18636,3888869387,2613554735,100,100,100,100,0.98,0.88,0.03,0.04
-49922,26,061,26061,1043,524,21573068,15203238,1043,524,21573068,15203238,36628,18636,3888869387,2613554735,100,100,100,100,2.85,2.81,0.55,0.58
-49925,26,131,26131,494,444,328393317,328159790,494,444,328393317,328159790,6780,5672,9688675558,3396056253,100,100,100,100,7.29,7.83,3.39,9.66
-49927,26,071,26071,483,258,46016041,45206896,483,258,46016041,45206896,11817,9197,3137018851,3020312287,100,100,100,100,4.09,2.81,1.47,1.5
-49929,26,131,26131,216,131,45763815,45763815,216,131,45763815,45763815,6780,5672,9688675558,3396056253,100,100,100,100,3.19,2.31,0.47,1.35
-49930,26,061,26061,6987,3241,138786625,126694054,6987,3241,138786625,126694054,36628,18636,3888869387,2613554735,100,100,100,100,19.08,17.39,3.57,4.85
-49931,26,061,26061,9630,3457,80710300,73593966,9630,3457,80710300,73593966,36628,18636,3888869387,2613554735,100,100,100,100,26.29,18.55,2.08,2.82
-49934,26,061,26061,900,437,7163849,5722885,900,437,7163849,5722885,36628,18636,3888869387,2613554735,100,100,100,100,2.46,2.34,0.18,0.22
-49935,26,071,26071,6096,4641,1263268239,1229775122,6096,4641,1263268239,1229775122,11817,9197,3137018851,3020312287,100,100,100,100,51.59,50.46,40.27,40.72
-49938,26,053,26053,7945,4812,671183887,616361708,7945,4812,671183887,616361708,16427,10795,3823712186,2853775286,100,100,100,100,48.37,44.58,17.55,21.6
-49942,26,061,26061,156,86,2659868,2640830,156,86,2659868,2640830,36628,18636,3888869387,2613554735,100,100,100,100,0.43,0.46,0.07,0.1
-49945,26,061,26061,2545,1977,295765359,257396790,2621,2193,473395881,429643879,36628,18636,3888869387,2613554735,97.1,90.15,62.48,59.91,6.95,10.61,7.61,9.85
-49945,26,083,26083,76,216,177630522,172247089,2621,2193,473395881,429643879,2156,2467,15452359110,1398883200,2.9,9.85,37.52,40.09,3.53,8.76,1.15,12.31
-49946,26,013,26013,4040,2375,771096682,703612959,4040,2375,771096682,703612959,8860,5270,2768104344,2326474801,100,100,100,100,45.6,45.07,27.86,30.24
-49947,26,053,26053,1730,704,842286886,804003318,1818,852,865503694,827187065,16427,10795,3823712186,2853775286,95.16,82.63,97.32,97.2,10.53,6.52,22.03,28.17
-49947,26,131,26131,88,148,23216808,23183747,1818,852,865503694,827187065,6780,5672,9688675558,3396056253,4.84,17.37,2.68,2.8,1.3,2.61,0.24,0.68
-49948,26,131,26131,590,501,345485389,344218008,590,501,345485389,344218008,6780,5672,9688675558,3396056253,100,100,100,100,8.7,8.83,3.57,10.14
-49950,26,083,26083,1121,1355,492348013,462748356,1121,1355,492348013,462748356,2156,2467,15452359110,1398883200,100,100,100,100,51.99,54.93,3.19,33.08
-49952,26,061,26061,141,167,169027249,165521497,143,176,173886224,170361027,36628,18636,3888869387,2613554735,98.6,94.89,97.21,97.16,0.38,0.9,4.35,6.33
-49952,26,131,26131,2,9,4858975,4839530,143,176,173886224,170361027,6780,5672,9688675558,3396056253,1.4,5.11,2.79,2.84,0.03,0.16,0.05,0.14
-49953,26,131,26131,2879,2081,1090437751,1087274874,2879,2081,1090437751,1087274874,6780,5672,9688675558,3396056253,100,100,100,100,42.46,36.69,11.25,32.02
-49955,26,061,26061,371,176,29583882,29347550,371,176,29583882,29347550,36628,18636,3888869387,2613554735,100,100,100,100,1.01,0.94,0.76,1.12
-49958,26,013,26013,493,346,95871399,86882330,1270,885,327097300,313886359,8860,5270,2768104344,2326474801,38.82,39.1,29.31,27.68,5.56,6.57,3.46,3.73
-49958,26,061,26061,777,539,231225901,227004029,1270,885,327097300,313886359,36628,18636,3888869387,2613554735,61.18,60.9,70.69,72.32,2.12,2.89,5.95,8.69
-49959,26,053,26053,344,229,1827907,1827907,344,229,1827907,1827907,16427,10795,3823712186,2853775286,100,100,100,100,2.09,2.12,0.05,0.06
-49960,26,131,26131,185,159,110974033,109230336,185,159,110974033,109230336,6780,5672,9688675558,3396056253,100,100,100,100,2.73,2.8,1.15,3.22
-49961,26,061,26061,107,189,157132798,155371154,107,189,157132798,155371154,36628,18636,3888869387,2613554735,100,100,100,100,0.29,1.01,4.04,5.94
-49962,26,013,26013,260,499,275399521,258690008,260,499,275399521,258690008,8860,5270,2768104344,2326474801,100,100,100,100,2.93,9.47,9.95,11.12
-49963,26,061,26061,1024,528,31095804,31095804,1024,528,31095804,31095804,36628,18636,3888869387,2613554735,100,100,100,100,2.8,2.83,0.8,1.19
-49965,26,061,26061,390,533,467559423,461395850,440,660,542361358,536196305,36628,18636,3888869387,2613554735,88.64,80.76,86.21,86.05,1.06,2.86,12.02,17.65
-49965,26,131,26131,50,127,74801935,74800455,440,660,542361358,536196305,6780,5672,9688675558,3396056253,11.36,19.24,13.79,13.95,0.74,2.24,0.77,2.2
-49967,26,061,26061,131,252,472623172,468776918,492,713,897766145,879310065,36628,18636,3888869387,2613554735,26.63,35.34,52.64,53.31,0.36,1.35,12.15,17.94
-49967,26,071,26071,34,128,151642866,144630075,492,713,897766145,879310065,11817,9197,3137018851,3020312287,6.91,17.95,16.89,16.45,0.29,1.39,4.83,4.79
-49967,26,131,26131,327,333,273500107,265903072,492,713,897766145,879310065,6780,5672,9688675558,3396056253,66.46,46.7,30.46,30.24,4.82,5.87,2.82,7.83
-49968,26,053,26053,2247,1474,653828297,648089341,2247,1474,653828297,648089341,16427,10795,3823712186,2853775286,100,100,100,100,13.68,13.65,17.1,22.71
-49969,26,053,26053,1401,1624,736560683,675524151,1401,1624,736560683,675524151,16427,10795,3823712186,2853775286,100,100,100,100,8.53,15.04,19.26,23.67
-49970,26,013,26013,243,246,269294065,266445166,243,246,269294065,266445166,8860,5270,2768104344,2326474801,100,100,100,100,2.74,4.67,9.73,11.45
-49971,26,131,26131,483,361,244373493,243665166,483,361,244373493,243665166,6780,5672,9688675558,3396056253,100,100,100,100,7.12,6.36,2.52,7.17
-50001,19,181,19181,680,289,62796656,62132136,680,289,62796656,62132136,46225,18371,1484970318,1475844938,100,100,100,100,1.47,1.57,4.23,4.21
-50002,19,001,19001,998,497,124676403,124494153,1297,636,279202219,279019969,7682,3698,1477002164,1474404167,76.95,78.14,44.65,44.62,12.99,13.44,8.44,8.44
-50002,19,077,19077,299,139,154525816,154525816,1297,636,279202219,279019969,10954,5756,1536054721,1529699184,23.05,21.86,55.35,55.38,2.73,2.41,10.06,10.1
-50003,19,049,19049,6594,2707,298086291,296262168,6594,2707,298086291,296262168,66135,27260,1532492145,1524070766,100,100,100,100,9.97,9.93,19.45,19.44
-50005,19,127,19127,730,318,69623573,69351844,730,318,69623573,69351844,40648,16831,1484573764,1482770678,100,100,100,100,1.8,1.89,4.69,4.68
-50006,19,069,19069,229,115,96499854,96466134,1676,761,317745150,317608669,10680,4894,1508730250,1507301318,13.66,15.11,30.37,30.37,2.14,2.35,6.4,6.4
-50006,19,083,19083,1447,646,221245296,221142535,1676,761,317745150,317608669,17534,8224,1476272566,1474498672,86.34,84.89,69.63,69.63,8.25,7.86,14.99,15
-50007,19,153,19153,474,167,13782897,13782897,474,167,13782897,13782897,430640,182262,1532067208,1486121332,100,100,100,100,0.11,0.09,0.9,0.93
-50008,19,185,19185,878,429,220623573,219823966,878,429,220623573,219823966,6403,3212,1365315679,1360874542,100,100,100,100,13.71,13.36,16.16,16.15
-50009,19,153,19153,16136,6319,65207113,65155566,16136,6319,65207113,65155566,430640,182262,1532067208,1486121332,100,100,100,100,3.75,3.47,4.26,4.38
-50010,19,169,19169,29359,13618,155294118,155033818,29359,13618,155294118,155033818,89542,36789,1485745039,1483592867,100,100,100,100,32.79,37.02,10.45,10.45
-50011,19,169,19169,1390,1,125094,125094,1390,1,125094,125094,89542,36789,1485745039,1483592867,100,100,100,100,1.55,0,0.01,0.01
-50012,19,169,19169,4062,29,1982622,1972687,4062,29,1982622,1972687,89542,36789,1485745039,1483592867,100,100,100,100,4.54,0.08,0.13,0.13
-50014,19,015,19015,709,332,65885721,65795722,28094,11868,144826088,144736089,26306,11756,1485721642,1480356844,2.52,2.8,45.49,45.46,2.7,2.82,4.43,4.44
-50014,19,169,19169,27385,11536,78940367,78940367,28094,11868,144826088,144736089,89542,36789,1485745039,1483592867,97.48,97.2,54.51,54.54,30.58,31.36,5.31,5.32
-50020,19,001,19001,52,23,38121459,38043024,1407,684,249128489,248209168,7682,3698,1477002164,1474404167,3.7,3.36,15.3,15.33,0.68,0.62,2.58,2.58
-50020,19,009,19009,37,19,24431312,24371402,1407,684,249128489,248209168,6119,2972,1148416719,1147264459,2.63,2.78,9.81,9.82,0.6,0.64,2.13,2.12
-50020,19,029,19029,1318,642,186575718,185794742,1407,684,249128489,248209168,13956,6591,1463209671,1461450856,93.67,93.86,74.89,74.85,9.44,9.74,12.75,12.71
-50021,19,153,19153,21595,9017,66725924,66701596,21595,9017,66725924,66701596,430640,182262,1532067208,1486121332,100,100,100,100,5.01,4.95,4.36,4.49
-50022,19,009,19009,78,32,23368220,23368220,8494,3975,431883311,431487278,6119,2972,1148416719,1147264459,0.92,0.81,5.41,5.42,1.27,1.08,2.03,2.04
-50022,19,029,19029,8392,3928,396075109,395679076,8494,3975,431883311,431487278,13956,6591,1463209671,1461450856,98.8,98.82,91.71,91.7,60.13,59.6,27.07,27.07
-50022,19,165,19165,24,15,12439982,12439982,8494,3975,431883311,431487278,12167,5542,1531596549,1530110414,0.28,0.38,2.88,2.88,0.2,0.27,0.81,0.81
-50023,19,153,19153,27986,10847,57424136,57348146,27986,10847,57424136,57348146,430640,182262,1532067208,1486121332,100,100,100,100,6.5,5.95,3.75,3.86
-50025,19,009,19009,3325,1630,507431421,507431421,3325,1630,507431421,507431421,6119,2972,1148416719,1147264459,100,100,100,100,54.34,54.85,44.19,44.23
-50026,19,073,19073,85,43,62143809,62143809,584,285,142869501,142869501,9336,4546,1479438726,1475188829,14.55,15.09,43.5,43.5,0.91,0.95,4.2,4.21
-50026,19,077,19077,499,242,80725692,80725692,584,285,142869501,142869501,10954,5756,1536054721,1529699184,85.45,84.91,56.5,56.5,4.56,4.2,5.26,5.28
-50027,19,123,19123,268,143,72727824,72136636,285,151,72891730,72300542,22381,9766,1485092487,1478527687,94.04,94.7,99.78,99.77,1.2,1.46,4.9,4.88
-50027,19,157,19157,17,8,163906,163906,285,151,72891730,72300542,18914,8949,1517907013,1514967877,5.96,5.3,0.22,0.23,0.09,0.09,0.01,0.01
-50028,19,099,19099,1681,689,114933651,114863517,1681,689,114933651,114863517,36842,16181,1898344866,1891779160,100,100,100,100,4.56,4.26,6.05,6.07
-50029,19,073,19073,9,5,7714679,7714679,691,339,105038360,104965036,9336,4546,1479438726,1475188829,1.3,1.47,7.34,7.35,0.1,0.11,0.52,0.52
-50029,19,077,19077,682,334,97323681,97250357,691,339,105038360,104965036,10954,5756,1536054721,1529699184,98.7,98.53,92.66,92.65,6.23,5.8,6.34,6.36
-50032,19,153,19153,399,185,955390,955390,399,185,955390,955390,430640,182262,1532067208,1486121332,100,100,100,100,0.09,0.1,0.06,0.06
-50033,19,121,19121,44,20,288201,288201,44,20,288201,288201,15679,6554,1455983252,1452999410,100,100,100,100,0.28,0.31,0.02,0.02
-50034,19,079,19079,430,179,113074882,113074882,490,251,163484203,161881537,15673,7219,1495743060,1493777716,87.76,71.31,69.17,69.85,2.74,2.48,7.56,7.57
-50034,19,197,19197,60,72,50409321,48806655,490,251,163484203,161881537,13229,6529,1507990781,1503286817,12.24,28.69,30.83,30.15,0.45,1.1,3.34,3.25
-50035,19,153,19153,5387,1958,116898150,116772406,5387,1958,116898150,116772406,430640,182262,1532067208,1486121332,100,100,100,100,1.25,1.07,7.63,7.86
-50036,19,015,19015,16287,7459,505063491,502476772,16287,7459,505063491,502476772,26306,11756,1485721642,1480356844,100,100,100,100,61.91,63.45,33.99,33.94
-50038,19,049,19049,205,111,8874239,7907934,205,111,8874239,7907934,66135,27260,1532492145,1524070766,100,100,100,100,0.31,0.41,0.58,0.52
-50039,19,049,19049,329,159,60662047,60629106,329,159,60662047,60629106,66135,27260,1532492145,1524070766,100,100,100,100,0.5,0.58,3.96,3.98
-50041,19,069,19069,92,54,1101427,1101427,92,54,1101427,1101427,10680,4894,1508730250,1507301318,100,100,100,100,0.86,1.1,0.07,0.07
-50042,19,009,19009,309,155,84162590,83827836,309,155,84162590,83827836,6119,2972,1148416719,1147264459,100,100,100,100,5.05,5.22,7.33,7.31
-50044,19,123,19123,152,65,48184150,48184150,887,403,118473056,118457713,22381,9766,1485092487,1478527687,17.14,16.13,40.67,40.68,0.68,0.67,3.24,3.26
-50044,19,125,19125,721,331,65244890,65229547,887,403,118473056,118457713,33309,13914,1477611897,1436237259,81.29,82.13,55.07,55.07,2.16,2.38,4.42,4.54
-50044,19,135,19135,14,7,5044016,5044016,887,403,118473056,118457713,7970,3884,1124839787,1123316981,1.58,1.74,4.26,4.26,0.18,0.18,0.45,0.45
-50046,19,153,19153,248,97,28210470,28021980,1524,619,119973352,119244056,430640,182262,1532067208,1486121332,16.27,15.67,23.51,23.5,0.06,0.05,1.84,1.89
-50046,19,169,19169,1276,522,91762882,91222076,1524,619,119973352,119244056,89542,36789,1485745039,1483592867,83.73,84.33,76.49,76.5,1.43,1.42,6.18,6.15
-50047,19,153,19153,489,223,27583595,26522337,5559,2208,152159628,150551626,430640,182262,1532067208,1486121332,8.8,10.1,18.13,17.62,0.11,0.12,1.8,1.78
-50047,19,181,19181,5070,1985,124576033,124029289,5559,2208,152159628,150551626,46225,18371,1484970318,1475844938,91.2,89.9,81.87,82.38,10.97,10.81,8.39,8.4
-50048,19,001,19001,195,95,97886087,97608155,861,423,226573270,226295338,7682,3698,1477002164,1474404167,22.65,22.46,43.2,43.13,2.54,2.57,6.63,6.62
-50048,19,077,19077,666,328,128687183,128687183,861,423,226573270,226295338,10954,5756,1536054721,1529699184,77.35,77.54,56.8,56.87,6.08,5.7,8.38,8.41
-50049,19,117,19117,6480,3088,517385177,515164204,6493,3095,523124656,520849102,8898,4238,1125084491,1115231642,99.8,99.77,98.9,98.91,72.83,72.86,45.99,46.19
-50049,19,185,19185,13,7,5739479,5684898,6493,3095,523124656,520849102,6403,3212,1365315679,1360874542,0.2,0.23,1.1,1.09,0.2,0.22,0.42,0.42
-50050,19,073,19073,710,353,197706628,197678090,710,353,197706628,197678090,9336,4546,1479438726,1475188829,100,100,100,100,7.6,7.77,13.36,13.4
-50051,19,127,19127,283,134,66573089,66182743,283,134,66573089,66182743,40648,16831,1484573764,1482770678,100,100,100,100,0.7,0.8,4.48,4.46
-50052,19,185,19185,138,78,50940630,50874664,138,78,50940630,50874664,6403,3212,1365315679,1360874542,100,100,100,100,2.16,2.43,3.73,3.74
-50054,19,099,19099,3356,1428,152872278,151303559,3356,1428,152872278,151303559,36842,16181,1898344866,1891779160,100,100,100,100,9.11,8.83,8.05,8
-50055,19,099,19099,138,72,38917122,38870304,913,408,126340521,126048093,36842,16181,1898344866,1891779160,15.12,17.65,30.8,30.84,0.37,0.44,2.05,2.05
-50055,19,169,19169,775,336,87423399,87177789,913,408,126340521,126048093,89542,36789,1485745039,1483592867,84.88,82.35,69.2,69.16,0.87,0.91,5.88,5.88
-50056,19,169,19169,1372,592,149192377,148881654,1372,592,149192377,148881654,89542,36789,1485745039,1483592867,100,100,100,100,1.53,1.61,10.04,10.04
-50057,19,125,19125,238,100,52183538,52157438,238,100,52183538,52157438,33309,13914,1477611897,1436237259,100,100,100,100,0.71,0.72,3.53,3.63
-50058,19,009,19009,68,25,41210395,41210395,1927,902,364231967,364071836,6119,2972,1148416719,1147264459,3.53,2.77,11.31,11.32,1.11,0.84,3.59,3.59
-50058,19,027,19027,1593,748,142623014,142623014,1927,902,364231967,364071836,20816,9376,1476980467,1474835105,82.67,82.93,39.16,39.17,7.65,7.98,9.66,9.67
-50058,19,073,19073,57,28,33575569,33575569,1927,902,364231967,364071836,9336,4546,1479438726,1475188829,2.96,3.1,9.22,9.22,0.61,0.62,2.27,2.28
-50058,19,077,19077,209,101,146822989,146662858,1927,902,364231967,364071836,10954,5756,1536054721,1529699184,10.85,11.2,40.31,40.28,1.91,1.75,9.56,9.59
-50060,19,185,19185,2507,1221,453610186,452369096,2507,1221,453610186,452369096,6403,3212,1365315679,1360874542,100,100,100,100,39.15,38.01,33.22,33.24
-50061,19,049,19049,482,185,6242001,5610408,1701,642,81699043,80154777,66135,27260,1532492145,1524070766,28.34,28.82,7.64,7,0.73,0.68,0.41,0.37
-50061,19,121,19121,415,162,36703325,36297306,1701,642,81699043,80154777,15679,6554,1455983252,1452999410,24.4,25.23,44.93,45.28,2.65,2.47,2.52,2.5
-50061,19,153,19153,48,18,8451379,8168394,1701,642,81699043,80154777,430640,182262,1532067208,1486121332,2.82,2.8,10.34,10.19,0.01,0.01,0.55,0.55
-50061,19,181,19181,756,277,30302338,30078669,1701,642,81699043,80154777,46225,18371,1484970318,1475844938,44.44,43.15,37.09,37.53,1.64,1.51,2.04,2.04
-50062,19,125,19125,741,313,80104319,80081240,741,313,80104319,80081240,33309,13914,1477611897,1436237259,100,100,100,100,2.22,2.25,5.42,5.58
-50063,19,049,19049,2604,1037,170532757,170414757,2604,1037,170532757,170414757,66135,27260,1532492145,1524070766,100,100,100,100,3.94,3.8,11.13,11.18
-50064,19,073,19073,126,55,40418909,40418909,126,55,40418909,40418909,9336,4546,1479438726,1475188829,100,100,100,100,1.35,1.21,2.73,2.74
-50065,19,053,19053,583,296,147902989,147327583,583,296,147902989,147327583,8457,3834,1381708168,1377566066,100,100,100,100,6.89,7.72,10.7,10.69
-50066,19,049,19049,262,128,64732191,64261113,262,128,64732191,64261113,66135,27260,1532492145,1524070766,100,100,100,100,0.4,0.47,4.22,4.22
-50067,19,053,19053,302,155,87093517,86782161,302,155,87093517,86782161,8457,3834,1381708168,1377566066,100,100,100,100,3.57,4.04,6.3,6.3
-50068,19,117,19117,332,143,104605298,104543428,366,161,114749633,114687763,8898,4238,1125084491,1115231642,90.71,88.82,91.16,91.15,3.73,3.37,9.3,9.37
-50068,19,185,19185,34,18,10144335,10144335,366,161,114749633,114687763,6403,3212,1365315679,1360874542,9.29,11.18,8.84,8.85,0.53,0.56,0.74,0.75
-50069,19,049,19049,1118,445,13262492,13262492,1118,445,13262492,13262492,66135,27260,1532492145,1524070766,100,100,100,100,1.69,1.63,0.87,0.87
-50070,19,001,19001,119,62,54277550,54257404,1489,734,171070769,170639223,7682,3698,1477002164,1474404167,7.99,8.45,31.73,31.8,1.55,1.68,3.67,3.68
-50070,19,049,19049,711,319,27187331,27187331,1489,734,171070769,170639223,66135,27260,1532492145,1524070766,47.75,43.46,15.89,15.93,1.08,1.17,1.77,1.78
-50070,19,077,19077,472,281,25590526,25179126,1489,734,171070769,170639223,10954,5756,1536054721,1529699184,31.7,38.28,14.96,14.76,4.31,4.88,1.67,1.65
-50070,19,121,19121,187,72,64015362,64015362,1489,734,171070769,170639223,15679,6554,1455983252,1452999410,12.56,9.81,37.42,37.52,1.19,1.1,4.4,4.41
-50071,19,069,19069,298,178,137722651,137440517,1007,566,293114182,292776820,10680,4894,1508730250,1507301318,29.59,31.45,46.99,46.94,2.79,3.64,9.13,9.12
-50071,19,197,19197,709,388,155391531,155336303,1007,566,293114182,292776820,13229,6529,1507990781,1503286817,70.41,68.55,53.01,53.06,5.36,5.94,10.3,10.33
-50072,19,049,19049,626,239,59092750,58965763,2671,1061,228908869,228458740,66135,27260,1532492145,1524070766,23.44,22.53,25.81,25.81,0.95,0.88,3.86,3.87
-50072,19,121,19121,2045,822,169816119,169492977,2671,1061,228908869,228458740,15679,6554,1455983252,1452999410,76.56,77.47,74.19,74.19,13.04,12.54,11.66,11.67
-50073,19,153,19153,1195,465,67420142,67244090,1195,465,67420142,67244090,430640,182262,1532067208,1486121332,100,100,100,100,0.28,0.26,4.4,4.52
-50074,19,159,19159,317,400,109066279,107118860,334,409,127815922,125812204,5131,2613,1395655450,1386933932,94.91,97.8,85.33,85.14,6.18,15.31,7.81,7.72
-50074,19,175,19175,17,9,18749643,18693344,334,409,127815922,125812204,12534,5937,1102811646,1097235730,5.09,2.2,14.67,14.86,0.14,0.15,1.7,1.7
-50075,19,079,19079,862,371,119369391,119361655,862,371,119369391,119361655,15673,7219,1495743060,1493777716,100,100,100,100,5.5,5.14,7.98,7.99
-50076,19,009,19009,1502,737,290651382,289965715,1502,737,290651382,289965715,6119,2972,1148416719,1147264459,100,100,100,100,24.55,24.8,25.31,25.27
-50078,19,127,19127,126,59,660699,660699,126,59,660699,660699,40648,16831,1484573764,1482770678,100,100,100,100,0.31,0.35,0.04,0.04
-50101,19,197,19197,66,29,25431226,25431226,66,29,25431226,25431226,13229,6529,1507990781,1503286817,100,100,100,100,0.5,0.44,1.69,1.69
-50102,19,083,19083,87,45,1304963,1304963,87,45,1304963,1304963,17534,8224,1476272566,1474498672,100,100,100,100,0.5,0.55,0.09,0.09
-50103,19,053,19053,452,228,157409444,157258966,452,228,157409444,157258966,8457,3834,1381708168,1377566066,100,100,100,100,5.34,5.95,11.39,11.42
-50104,19,107,19107,125,60,25189662,25189662,128,63,28940560,28940560,10511,4931,1501996571,1500067240,97.66,95.24,87.04,87.04,1.19,1.22,1.68,1.68
-50104,19,123,19123,3,3,3750898,3750898,128,63,28940560,28940560,22381,9766,1485092487,1478527687,2.34,4.76,12.96,12.96,0.01,0.03,0.25,0.25
-50105,19,169,19169,1158,424,20560447,20560447,1158,424,20560447,20560447,89542,36789,1485745039,1483592867,100,100,100,100,1.29,1.15,1.38,1.39
-50106,19,099,19099,97,44,42191505,42168901,1039,489,170141114,170041734,36842,16181,1898344866,1891779160,9.34,9,24.8,24.8,0.26,0.27,2.22,2.23
-50106,19,127,19127,858,405,88950786,88874010,1039,489,170141114,170041734,40648,16831,1484573764,1482770678,82.58,82.82,52.28,52.27,2.11,2.41,5.99,5.99
-50106,19,157,19157,16,9,8740318,8740318,1039,489,170141114,170041734,18914,8949,1517907013,1514967877,1.54,1.84,5.14,5.14,0.08,0.1,0.58,0.58
-50106,19,171,19171,68,31,30258505,30258505,1039,489,170141114,170041734,17767,7766,1870180568,1867411117,6.54,6.34,17.78,17.79,0.38,0.4,1.62,1.62
-50107,19,015,19015,25,11,8767512,8767512,1099,500,130433186,130323310,26306,11756,1485721642,1480356844,2.27,2.2,6.72,6.73,0.1,0.09,0.59,0.59
-50107,19,073,19073,1074,489,121665674,121555798,1099,500,130433186,130323310,9336,4546,1479438726,1475188829,97.73,97.8,93.28,93.27,11.5,10.76,8.22,8.24
-50108,19,039,19039,42,20,21691657,21670660,471,267,188608107,188443671,9286,4086,1118240826,1116716080,8.92,7.49,11.5,11.5,0.45,0.49,1.94,1.94
-50108,19,053,19053,429,247,166916450,166773011,471,267,188608107,188443671,8457,3834,1381708168,1377566066,91.08,92.51,88.5,88.5,5.07,6.44,12.08,12.11
-50109,19,049,19049,1453,595,25142318,25117472,2762,1037,62757235,56668494,66135,27260,1532492145,1524070766,52.61,57.38,40.06,44.32,2.2,2.18,1.64,1.65
-50109,19,153,19153,1309,442,37614917,31551022,2762,1037,62757235,56668494,430640,182262,1532067208,1486121332,47.39,42.62,59.94,55.68,0.3,0.24,2.46,2.12
-50111,19,049,19049,172,67,26168313,26168313,9407,3670,71484606,71187442,66135,27260,1532492145,1524070766,1.83,1.83,36.61,36.76,0.26,0.25,1.71,1.72
-50111,19,153,19153,9235,3603,45316293,45019129,9407,3670,71484606,71187442,430640,182262,1532067208,1486121332,98.17,98.17,63.39,63.24,2.14,1.98,2.96,3.03
-50112,19,099,19099,818,360,122580368,122467346,11536,4798,475672153,475237392,36842,16181,1898344866,1891779160,7.09,7.5,25.77,25.77,2.22,2.22,6.46,6.47
-50112,19,157,19157,10718,4438,353091785,352770046,11536,4798,475672153,475237392,18914,8949,1517907013,1514967877,92.91,92.5,74.23,74.23,56.67,49.59,23.26,23.29
-50115,19,077,19077,2674,1271,441185334,440965745,2674,1271,441185334,440965745,10954,5756,1536054721,1529699184,100,100,100,100,24.41,22.08,28.72,28.83
-50116,19,125,19125,299,126,44071754,44059135,299,126,44071754,44059135,33309,13914,1477611897,1436237259,100,100,100,100,0.9,0.91,2.98,3.07
-50117,19,009,19009,193,96,71657180,71585251,193,96,71657180,71585251,6119,2972,1148416719,1147264459,100,100,100,100,3.15,3.23,6.24,6.24
-50118,19,181,19181,1027,404,51466255,49691667,1027,404,51466255,49691667,46225,18371,1484970318,1475844938,100,100,100,100,2.22,2.2,3.47,3.37
-50119,19,125,19125,498,216,40354632,39608454,498,216,40354632,39608454,33309,13914,1477611897,1436237259,100,100,100,100,1.5,1.55,2.73,2.76
-50120,19,127,19127,323,130,43941350,43941350,323,130,43941350,43941350,40648,16831,1484573764,1482770678,100,100,100,100,0.79,0.77,2.96,2.96
-50122,19,083,19083,1373,623,218621364,218555456,1373,623,218621364,218555456,17534,8224,1476272566,1474498672,100,100,100,100,7.83,7.58,14.81,14.82
-50123,19,053,19053,21,10,11018162,11018162,818,455,204584834,204314880,8457,3834,1381708168,1377566066,2.57,2.2,5.39,5.39,0.25,0.26,0.8,0.8
-50123,19,117,19117,55,24,25171862,25144090,818,455,204584834,204314880,8898,4238,1125084491,1115231642,6.72,5.27,12.3,12.31,0.62,0.57,2.24,2.25
-50123,19,185,19185,742,421,168394810,168152628,818,455,204584834,204314880,6403,3212,1365315679,1360874542,90.71,92.53,82.31,82.3,11.59,13.11,12.33,12.36
-50124,19,153,19153,61,25,13695200,13695200,3750,1493,54098688,54098688,430640,182262,1532067208,1486121332,1.63,1.67,25.32,25.32,0.01,0.01,0.89,0.92
-50124,19,169,19169,3689,1468,40403488,40403488,3750,1493,54098688,54098688,89542,36789,1485745039,1483592867,98.37,98.33,74.68,74.68,4.12,3.99,2.72,2.72
-50125,19,181,19181,19556,7722,426521944,423849028,19556,7722,426521944,423849028,46225,18371,1484970318,1475844938,100,100,100,100,42.31,42.03,28.72,28.72
-50126,19,069,19069,216,91,86540617,86540617,6853,3176,351874830,351532763,10680,4894,1508730250,1507301318,3.15,2.87,24.59,24.62,2.02,1.86,5.74,5.74
-50126,19,083,19083,6637,3085,265334213,264992146,6853,3176,351874830,351532763,17534,8224,1476272566,1474498672,96.85,97.13,75.41,75.38,37.85,37.51,17.97,17.97
-50127,19,099,19099,29,12,28260,28260,29,12,28260,28260,36842,16181,1898344866,1891779160,100,100,100,100,0.08,0.07,0,0
-50128,19,049,19049,24,10,10571745,10571745,360,176,75898812,75688815,66135,27260,1532492145,1524070766,6.67,5.68,13.93,13.97,0.04,0.04,0.69,0.69
-50128,19,073,19073,40,21,28596067,28386070,360,176,75898812,75688815,9336,4546,1479438726,1475188829,11.11,11.93,37.68,37.5,0.43,0.46,1.93,1.92
-50128,19,077,19077,296,145,36731000,36731000,360,176,75898812,75688815,10954,5756,1536054721,1529699184,82.22,82.39,48.39,48.53,2.7,2.52,2.39,2.4
-50129,19,073,19073,5228,2566,435658650,434205215,5228,2566,435658650,434205215,9336,4546,1479438726,1475188829,100,100,100,100,56,56.45,29.45,29.43
-50130,19,079,19079,1648,713,171933052,170595167,1648,713,171933052,170595167,15673,7219,1495743060,1493777716,100,100,100,100,10.51,9.88,11.49,11.42
-50131,19,153,19153,17499,6729,64666939,56477726,17499,6729,64666939,56477726,430640,182262,1532067208,1486121332,100,100,100,100,4.06,3.69,4.22,3.8
-50132,19,079,19079,367,174,74609258,74609258,367,174,74609258,74609258,15673,7219,1495743060,1493777716,100,100,100,100,2.34,2.41,4.99,4.99
-50133,19,053,19053,24,11,20432132,20289066,567,295,196966937,195971232,8457,3834,1381708168,1377566066,4.23,3.73,10.37,10.35,0.28,0.29,1.48,1.47
-50133,19,159,19159,543,284,176534805,175682166,567,295,196966937,195971232,5131,2613,1395655450,1386933932,95.77,96.27,89.63,89.65,10.58,10.87,12.65,12.67
-50134,19,015,19015,48,20,11150519,11150519,660,273,48427675,48427675,26306,11756,1485721642,1480356844,7.27,7.33,23.03,23.03,0.18,0.17,0.75,0.75
-50134,19,169,19169,612,253,37277156,37277156,660,273,48427675,48427675,89542,36789,1485745039,1483592867,92.73,92.67,76.97,76.97,0.68,0.69,2.51,2.51
-50135,19,099,19099,1605,789,195278764,192731530,1605,789,195278764,192731530,36842,16181,1898344866,1891779160,100,100,100,100,4.36,4.88,10.29,10.19
-50136,19,095,19095,10,5,5856276,5835918,445,216,100632209,100596786,16355,7258,1521602861,1518916014,2.25,2.31,5.82,5.8,0.06,0.07,0.38,0.38
-50136,19,107,19107,435,211,94775933,94760868,445,216,100632209,100596786,10511,4931,1501996571,1500067240,97.75,97.69,94.18,94.2,4.14,4.28,6.31,6.32
-50138,19,125,19125,11720,5241,461827288,442220413,11720,5241,461827288,442220413,33309,13914,1477611897,1436237259,100,100,100,100,35.19,37.67,31.25,30.79
-50139,19,117,19117,139,64,49320307,49310231,1288,560,229508368,229328321,8898,4238,1125084491,1115231642,10.79,11.43,21.49,21.5,1.56,1.51,4.38,4.42
-50139,19,125,19125,249,96,56761013,56761013,1288,560,229508368,229328321,33309,13914,1477611897,1436237259,19.33,17.14,24.73,24.75,0.75,0.69,3.84,3.95
-50139,19,181,19181,900,400,123427048,123257077,1288,560,229508368,229328321,46225,18371,1484970318,1475844938,69.88,71.43,53.78,53.75,1.95,2.18,8.31,8.35
-50140,19,053,19053,2894,1133,174922844,173422268,2969,1164,241678133,239713197,8457,3834,1381708168,1377566066,97.47,97.34,72.38,72.35,34.22,29.55,12.66,12.59
-50140,19,159,19159,75,31,66755289,66290929,2969,1164,241678133,239713197,5131,2613,1395655450,1386933932,2.53,2.66,27.62,27.65,1.46,1.19,4.78,4.78
-50141,19,099,19099,101,46,40785872,40645540,569,263,93777481,93619441,36842,16181,1898344866,1891779160,17.75,17.49,43.49,43.42,0.27,0.28,2.15,2.15
-50141,19,127,19127,468,217,52991609,52973901,569,263,93777481,93619441,40648,16831,1484573764,1482770678,82.25,82.51,56.51,56.58,1.15,1.29,3.57,3.57
-50142,19,127,19127,931,398,2566675,2566675,931,398,2566675,2566675,40648,16831,1484573764,1482770678,100,100,100,100,2.29,2.36,0.17,0.17
-50143,19,123,19123,600,249,92958086,92510368,600,249,92958086,92510368,22381,9766,1485092487,1478527687,100,100,100,100,2.68,2.55,6.26,6.26
-50144,19,053,19053,2901,1349,362605062,361463599,2901,1349,362605062,361463599,8457,3834,1381708168,1377566066,100,100,100,100,34.3,35.19,26.24,26.24
-50146,19,049,19049,438,199,75845999,75845999,438,199,75845999,75845999,66135,27260,1532492145,1524070766,100,100,100,100,0.66,0.73,4.95,4.98
-50147,19,053,19053,107,59,95039295,95039295,440,250,187491745,187377446,8457,3834,1381708168,1377566066,24.32,23.6,50.69,50.72,1.27,1.54,6.88,6.9
-50147,19,185,19185,333,191,92452450,92338151,440,250,187491745,187377446,6403,3212,1365315679,1360874542,75.68,76.4,49.31,49.28,5.2,5.95,6.77,6.79
-50148,19,127,19127,432,191,51098115,51098115,432,191,51098115,51098115,40648,16831,1484573764,1482770678,100,100,100,100,1.06,1.13,3.44,3.45
-50149,19,121,19121,326,145,109105156,109025457,964,479,213449691,213331160,15679,6554,1455983252,1452999410,33.82,30.27,51.12,51.11,2.08,2.21,7.49,7.5
-50149,19,175,19175,638,334,104344535,104305703,964,479,213449691,213331160,12534,5937,1102811646,1097235730,66.18,69.73,48.88,48.89,5.09,5.63,9.46,9.51
-50150,19,135,19135,984,420,148536678,147921893,984,420,148536678,147921893,7970,3884,1124839787,1123316981,100,100,100,100,12.35,10.81,13.21,13.17
-50151,19,117,19117,675,335,187774104,187580769,724,362,205563843,205300543,8898,4238,1125084491,1115231642,93.23,92.54,91.35,91.37,7.59,7.9,16.69,16.82
-50151,19,181,19181,49,27,17789739,17719774,724,362,205563843,205300543,46225,18371,1484970318,1475844938,6.77,7.46,8.65,8.63,0.11,0.15,1.2,1.2
-50153,19,099,19099,692,294,71797752,71768576,734,309,80372194,80343018,36842,16181,1898344866,1891779160,94.28,95.15,89.33,89.33,1.88,1.82,3.78,3.79
-50153,19,123,19123,30,10,5741035,5741035,734,309,80372194,80343018,22381,9766,1485092487,1478527687,4.09,3.24,7.14,7.15,0.13,0.1,0.39,0.39
-50153,19,157,19157,12,5,2833407,2833407,734,309,80372194,80343018,18914,8949,1517907013,1514967877,1.63,1.62,3.53,3.53,0.06,0.06,0.19,0.19
-50154,19,083,19083,6,5,6510510,6510510,466,202,53144166,53144166,17534,8224,1476272566,1474498672,1.29,2.48,12.25,12.25,0.03,0.06,0.44,0.44
-50154,19,169,19169,460,197,46633656,46633656,466,202,53144166,53144166,89542,36789,1485745039,1483592867,98.71,97.52,87.75,87.75,0.51,0.54,3.14,3.14
-50155,19,001,19001,12,4,7720226,7720226,255,117,78501320,78465748,7682,3698,1477002164,1474404167,4.71,3.42,9.83,9.84,0.16,0.11,0.52,0.52
-50155,19,121,19121,243,113,70781094,70745522,255,117,78501320,78465748,15679,6554,1455983252,1452999410,95.29,96.58,90.17,90.16,1.55,1.72,4.86,4.87
-50156,19,015,19015,3885,1690,180510279,179846004,4412,1903,238724015,232315736,26306,11756,1485721642,1480356844,88.06,88.81,75.61,77.41,14.77,14.38,12.15,12.15
-50156,19,049,19049,102,43,14114402,13348879,4412,1903,238724015,232315736,66135,27260,1532492145,1524070766,2.31,2.26,5.91,5.75,0.15,0.16,0.92,0.88
-50156,19,153,19153,425,170,44099334,39120853,4412,1903,238724015,232315736,430640,182262,1532067208,1486121332,9.63,8.93,18.47,16.84,0.1,0.09,2.88,2.63
-50157,19,157,19157,762,353,168389373,168306476,762,353,168389373,168306476,18914,8949,1517907013,1514967877,100,100,100,100,4.03,3.94,11.09,11.11
-50158,19,127,19127,31549,12886,541763400,541205383,31591,12904,548346934,547770086,40648,16831,1484573764,1482770678,99.87,99.86,98.8,98.8,77.62,76.56,36.49,36.5
-50158,19,171,19171,42,18,6583534,6564703,31591,12904,548346934,547770086,17767,7766,1870180568,1867411117,0.13,0.14,1.2,1.2,0.24,0.23,0.35,0.35
-50160,19,181,19181,465,198,965184,965184,465,198,965184,965184,46225,18371,1484970318,1475844938,100,100,100,100,1.01,1.08,0.06,0.07
-50161,19,153,19153,525,229,123163846,122381573,2047,862,211812219,210950143,430640,182262,1532067208,1486121332,25.65,26.57,58.15,58.01,0.12,0.13,8.04,8.23
-50161,19,169,19169,1522,633,88648373,88568570,2047,862,211812219,210950143,89542,36789,1485745039,1483592867,74.35,73.43,41.85,41.99,1.7,1.72,5.97,5.97
-50162,19,127,19127,1233,528,132120698,132095121,1233,528,132120698,132095121,40648,16831,1484573764,1482770678,100,100,100,100,3.03,3.14,8.9,8.91
-50163,19,125,19125,858,410,1230059,1230059,858,410,1230059,1230059,33309,13914,1477611897,1436237259,100,100,100,100,2.58,2.95,0.08,0.09
-50164,19,001,19001,122,62,63394013,63151484,652,303,138235040,137992511,7682,3698,1477002164,1474404167,18.71,20.46,45.86,45.76,1.59,1.68,4.29,4.28
-50164,19,077,19077,530,241,74841027,74841027,652,303,138235040,137992511,10954,5756,1536054721,1529699184,81.29,79.54,54.14,54.24,4.84,4.19,4.87,4.89
-50165,19,185,19185,49,28,6437634,6437634,49,28,6437634,6437634,6403,3212,1365315679,1360874542,100,100,100,100,0.77,0.87,0.47,0.47
-50166,19,181,19181,1582,660,162522428,162193030,1582,660,162522428,162193030,46225,18371,1484970318,1475844938,100,100,100,100,3.42,3.59,10.94,10.99
-50167,19,049,19049,748,335,102610498,102105447,748,335,102610498,102105447,66135,27260,1532492145,1524070766,100,100,100,100,1.13,1.23,6.7,6.7
-50168,19,099,19099,842,367,104773461,104677767,842,367,104773461,104677767,36842,16181,1898344866,1891779160,100,100,100,100,2.29,2.27,5.52,5.53
-50169,19,099,19099,291,136,44098262,43897778,3093,1048,103378565,103076354,36842,16181,1898344866,1891779160,9.41,12.98,42.66,42.59,0.79,0.84,2.32,2.32
-50169,19,153,19153,2802,912,59280303,59178576,3093,1048,103378565,103076354,430640,182262,1532067208,1486121332,90.59,87.02,57.34,57.41,0.65,0.5,3.87,3.98
-50170,19,099,19099,2466,1099,148923214,148550505,2745,1226,230995030,227972731,36842,16181,1898344866,1891779160,89.84,89.64,64.47,65.16,6.69,6.79,7.84,7.85
-50170,19,125,19125,279,127,82071816,79422226,2745,1226,230995030,227972731,33309,13914,1477611897,1436237259,10.16,10.36,35.53,34.84,0.84,0.91,5.55,5.53
-50171,19,157,19157,2923,1746,281675684,279932013,2923,1746,281675684,279932013,18914,8949,1517907013,1514967877,100,100,100,100,15.45,19.51,18.56,18.48
-50173,19,171,19171,696,290,80140704,79810281,696,290,80140704,79810281,17767,7766,1870180568,1867411117,100,100,100,100,3.92,3.73,4.29,4.27
-50174,19,039,19039,1382,604,253823320,253627871,1429,622,278718495,278523046,9286,4086,1118240826,1116716080,96.71,97.11,91.07,91.06,14.88,14.78,22.7,22.71
-50174,19,175,19175,47,18,24895175,24895175,1429,622,278718495,278523046,12534,5937,1102811646,1097235730,3.29,2.89,8.93,8.94,0.37,0.3,2.26,2.27
-50201,19,169,19169,8199,3559,300453642,300071934,8199,3559,300453642,300071934,89542,36789,1485745039,1483592867,100,100,100,100,9.16,9.67,20.22,20.23
-50206,19,083,19083,473,205,101827935,101793100,526,230,124182004,124112610,17534,8224,1476272566,1474498672,89.92,89.13,82,82.02,2.7,2.49,6.9,6.9
-50206,19,127,19127,35,17,19151967,19117408,526,230,124182004,124112610,40648,16831,1484573764,1482770678,6.65,7.39,15.42,15.4,0.09,0.1,1.29,1.29
-50206,19,169,19169,18,8,3202102,3202102,526,230,124182004,124112610,89542,36789,1485745039,1483592867,3.42,3.48,2.58,2.58,0.02,0.02,0.22,0.22
-50207,19,123,19123,2518,1081,358933042,358674306,2537,1090,366588282,366329546,22381,9766,1485092487,1478527687,99.25,99.17,97.91,97.91,11.25,11.07,24.17,24.26
-50207,19,157,19157,19,9,7655240,7655240,2537,1090,366588282,366329546,18914,8949,1517907013,1514967877,0.75,0.83,2.09,2.09,0.1,0.1,0.5,0.51
-50208,19,099,19099,20417,9051,426046663,425424684,20417,9051,426046663,425424684,36842,16181,1898344866,1891779160,100,100,100,100,55.42,55.94,22.44,22.49
-50210,19,039,19039,280,111,46399189,46399189,1691,736,196767136,196407429,9286,4086,1118240826,1116716080,16.56,15.08,23.58,23.62,3.02,2.72,4.15,4.15
-50210,19,121,19121,36,12,3717311,3717311,1691,736,196767136,196407429,15679,6554,1455983252,1452999410,2.13,1.63,1.89,1.89,0.23,0.18,0.26,0.26
-50210,19,181,19181,1375,613,146650636,146290929,1691,736,196767136,196407429,46225,18371,1484970318,1475844938,81.31,83.29,74.53,74.48,2.97,3.34,9.88,9.91
-50211,19,121,19121,43,17,6199651,6199651,11192,4330,147182178,145671677,15679,6554,1455983252,1452999410,0.38,0.39,4.21,4.26,0.27,0.26,0.43,0.43
-50211,19,181,19181,11149,4313,140982527,139472026,11192,4330,147182178,145671677,46225,18371,1484970318,1475844938,99.62,99.61,95.79,95.74,24.12,23.48,9.49,9.45
-50212,19,015,19015,3131,1407,352230522,351662798,3131,1407,352230522,351662798,26306,11756,1485721642,1480356844,100,100,100,100,11.9,11.97,23.71,23.76
-50213,19,039,19039,6812,2989,543975469,542667169,6812,2989,543975469,542667169,9286,4086,1118240826,1116716080,100,100,100,100,73.36,73.15,48.65,48.59
-50214,19,125,19125,850,317,102571148,100079018,850,317,102571148,100079018,33309,13914,1477611897,1436237259,100,100,100,100,2.55,2.28,6.94,6.97
-50216,19,077,19077,2824,1802,145699881,140455483,2824,1802,145699881,140455483,10954,5756,1536054721,1529699184,100,100,100,100,25.78,31.31,9.49,9.18
-50217,19,015,19015,120,74,26118075,26118075,631,323,178606122,178588395,26306,11756,1485721642,1480356844,19.02,22.91,14.62,14.62,0.46,0.63,1.76,1.76
-50217,19,073,19073,511,249,152488047,152470320,631,323,178606122,178588395,9336,4546,1479438726,1475188829,80.98,77.09,85.38,85.38,5.47,5.48,10.31,10.34
-50218,19,121,19121,139,70,542828,542828,139,70,542828,542828,15679,6554,1455983252,1452999410,100,100,100,100,0.89,1.07,0.04,0.04
-50219,19,123,19123,743,258,113735808,113631458,13939,5365,317144262,304040257,22381,9766,1485092487,1478527687,5.33,4.81,35.86,37.37,3.32,2.64,7.66,7.69
-50219,19,125,19125,13196,5107,203408454,190408799,13939,5365,317144262,304040257,33309,13914,1477611897,1436237259,94.67,95.19,64.14,62.63,39.62,36.7,13.77,13.26
-50220,19,015,19015,452,192,85749034,85749034,9020,3732,268176779,266702750,26306,11756,1485721642,1480356844,5.01,5.14,31.97,32.15,1.72,1.63,5.77,5.79
-50220,19,049,19049,8534,3525,170059227,168633767,9020,3732,268176779,266702750,66135,27260,1532492145,1524070766,94.61,94.45,63.41,63.23,12.9,12.93,11.1,11.06
-50220,19,073,19073,34,15,12368518,12319949,9020,3732,268176779,266702750,9336,4546,1479438726,1475188829,0.38,0.4,4.61,4.62,0.36,0.33,0.84,0.84
-50222,19,121,19121,498,219,108369441,108352201,498,219,108369441,108352201,15679,6554,1455983252,1452999410,100,100,100,100,3.18,3.34,7.44,7.46
-50223,19,015,19015,480,241,76600548,76048297,480,241,76600548,76048297,26306,11756,1485721642,1480356844,100,100,100,100,1.82,2.05,5.16,5.14
-50225,19,125,19125,2748,1152,189498882,188362592,2940,1231,217246336,216053151,33309,13914,1477611897,1436237259,93.47,93.58,87.23,87.18,8.25,8.28,12.82,13.12
-50225,19,181,19181,192,79,27747454,27690559,2940,1231,217246336,216053151,46225,18371,1484970318,1475844938,6.53,6.42,12.77,12.82,0.42,0.43,1.87,1.88
-50226,19,153,19153,4685,1709,108922879,96118590,4724,1724,109873855,97069566,430640,182262,1532067208,1486121332,99.17,99.13,99.13,99.02,1.09,0.94,7.11,6.47
-50226,19,169,19169,39,15,950976,950976,4724,1724,109873855,97069566,89542,36789,1485745039,1483592867,0.83,0.87,0.87,0.98,0.04,0.04,0.06,0.06
-50227,19,069,19069,40,20,966375,966375,40,20,966375,966375,10680,4894,1508730250,1507301318,100,100,100,100,0.37,0.41,0.06,0.06
-50228,19,099,19099,2402,980,176017510,175957519,2417,987,180367188,180307197,36842,16181,1898344866,1891779160,99.38,99.29,97.59,97.59,6.52,6.06,9.27,9.3
-50228,19,125,19125,15,7,4349678,4349678,2417,987,180367188,180307197,33309,13914,1477611897,1436237259,0.62,0.71,2.41,2.41,0.05,0.05,0.29,0.3
-50229,19,121,19121,261,111,50867432,50794753,932,387,105616644,105357469,15679,6554,1455983252,1452999410,28,28.68,48.16,48.21,1.66,1.69,3.49,3.5
-50229,19,181,19181,671,276,54749212,54562716,932,387,105616644,105357469,46225,18371,1484970318,1475844938,72,71.32,51.84,51.79,1.45,1.5,3.69,3.7
-50230,19,079,19079,186,89,86162438,86084565,1083,524,223982113,223891614,15673,7219,1495743060,1493777716,17.17,16.98,38.47,38.45,1.19,1.23,5.76,5.76
-50230,19,083,19083,897,435,137819675,137807049,1083,524,223982113,223891614,17534,8224,1476272566,1474498672,82.83,83.02,61.53,61.55,5.12,5.29,9.34,9.35
-50231,19,079,19079,173,79,1065168,1065168,173,79,1065168,1065168,15673,7219,1495743060,1493777716,100,100,100,100,1.1,1.09,0.07,0.07
-50232,19,099,19099,537,231,86762448,86216313,537,231,86762448,86216313,36842,16181,1898344866,1891779160,100,100,100,100,1.46,1.43,4.57,4.56
-50233,19,049,19049,1286,588,106226190,106226190,1388,641,130640688,130640688,66135,27260,1532492145,1524070766,92.65,91.73,81.31,81.31,1.94,2.16,6.93,6.97
-50233,19,077,19077,102,53,24414498,24414498,1388,641,130640688,130640688,10954,5756,1536054721,1529699184,7.35,8.27,18.69,18.69,0.93,0.92,1.59,1.6
-50234,19,099,19099,55,22,14908036,14876095,613,292,81236093,80969880,36842,16181,1898344866,1891779160,8.97,7.53,18.35,18.37,0.15,0.14,0.79,0.79
-50234,19,127,19127,558,270,66328057,66093785,613,292,81236093,80969880,40648,16831,1484573764,1482770678,91.03,92.47,81.65,81.63,1.37,1.6,4.47,4.46
-50235,19,015,19015,22,8,10394812,10394812,483,228,121134316,120716395,26306,11756,1485721642,1480356844,4.55,3.51,8.58,8.61,0.08,0.07,0.7,0.7
-50235,19,049,19049,12,4,5191297,5001349,483,228,121134316,120716395,66135,27260,1532492145,1524070766,2.48,1.75,4.29,4.14,0.02,0.01,0.34,0.33
-50235,19,073,19073,449,216,105548207,105320234,483,228,121134316,120716395,9336,4546,1479438726,1475188829,92.96,94.74,87.13,87.25,4.81,4.75,7.13,7.14
-50236,19,169,19169,1550,645,89345522,89328918,1550,645,89345522,89328918,89542,36789,1485745039,1483592867,100,100,100,100,1.73,1.75,6.01,6.02
-50237,19,099,19099,45,25,12612605,12599663,3095,1134,146002809,143182465,36842,16181,1898344866,1891779160,1.45,2.2,8.64,8.8,0.12,0.15,0.66,0.67
-50237,19,125,19125,198,74,14828966,14071791,3095,1134,146002809,143182465,33309,13914,1477611897,1436237259,6.4,6.53,10.16,9.83,0.59,0.53,1,0.98
-50237,19,153,19153,2852,1035,118561238,116511011,3095,1134,146002809,143182465,430640,182262,1532067208,1486121332,92.15,91.27,81.2,81.37,0.66,0.57,7.74,7.84
-50238,19,117,19117,1065,500,238905635,231566812,1182,570,308904729,301463331,8898,4238,1125084491,1115231642,90.1,87.72,77.34,76.81,11.97,11.8,21.23,20.76
-50238,19,185,19185,117,70,69999094,69896519,1182,570,308904729,301463331,6403,3212,1365315679,1360874542,9.9,12.28,22.66,23.19,1.83,2.18,5.13,5.14
-50239,19,127,19127,210,96,44053312,43994087,210,96,44053312,43994087,40648,16831,1484573764,1482770678,100,100,100,100,0.52,0.57,2.97,2.97
-50240,19,121,19121,1535,626,101672073,101538395,2453,997,197714047,197056712,15679,6554,1455983252,1452999410,62.58,62.79,51.42,51.53,9.79,9.55,6.98,6.99
-50240,19,181,19181,918,371,96041974,95518317,2453,997,197714047,197056712,46225,18371,1484970318,1475844938,37.42,37.21,48.58,48.47,1.99,2.02,6.47,6.47
-50242,19,157,19157,439,201,106954493,106817265,439,201,106954493,106817265,18914,8949,1517907013,1514967877,100,100,100,100,2.32,2.25,7.05,7.05
-50243,19,153,19153,121,53,672232,672232,244,103,1425493,1425493,430640,182262,1532067208,1486121332,49.59,51.46,47.16,47.16,0.03,0.03,0.04,0.05
-50243,19,169,19169,123,50,753261,753261,244,103,1425493,1425493,89542,36789,1485745039,1483592867,50.41,48.54,52.84,52.84,0.14,0.14,0.05,0.05
-50244,19,015,19015,29,10,663221,663221,1813,730,57130248,57130248,26306,11756,1485721642,1480356844,1.6,1.37,1.16,1.16,0.11,0.09,0.04,0.04
-50244,19,153,19153,148,52,31838420,31838420,1813,730,57130248,57130248,430640,182262,1532067208,1486121332,8.16,7.12,55.73,55.73,0.03,0.03,2.08,2.14
-50244,19,169,19169,1636,668,24628607,24628607,1813,730,57130248,57130248,89542,36789,1485745039,1483592867,90.24,91.51,43.11,43.11,1.83,1.82,1.66,1.66
-50246,19,079,19079,735,352,120153227,120139148,735,352,120153227,120139148,15673,7219,1495743060,1493777716,100,100,100,100,4.69,4.88,8.03,8.04
-50247,19,127,19127,2477,981,204693383,204610543,2515,997,215968634,215688269,40648,16831,1484573764,1482770678,98.49,98.4,94.78,94.86,6.09,5.83,13.79,13.8
-50247,19,169,19169,38,16,11275251,11077726,2515,997,215968634,215688269,89542,36789,1485745039,1483592867,1.51,1.6,5.22,5.14,0.04,0.04,0.76,0.75
-50248,19,015,19015,54,32,19712976,19712976,4420,2004,211580755,211484087,26306,11756,1485721642,1480356844,1.22,1.6,9.32,9.32,0.21,0.27,1.33,1.33
-50248,19,079,19079,329,134,73840278,73810538,4420,2004,211580755,211484087,15673,7219,1495743060,1493777716,7.44,6.69,34.9,34.9,2.1,1.86,4.94,4.94
-50248,19,169,19169,4037,1838,118027501,117960573,4420,2004,211580755,211484087,89542,36789,1485745039,1483592867,91.33,91.72,55.78,55.78,4.51,5,7.94,7.95
-50249,19,015,19015,74,30,19822379,19718762,1332,592,202332923,201480618,26306,11756,1485721642,1480356844,5.56,5.07,9.8,9.79,0.28,0.26,1.33,1.33
-50249,19,079,19079,1118,503,143073670,143024691,1332,592,202332923,201480618,15673,7219,1495743060,1493777716,83.93,84.97,70.71,70.99,7.13,6.97,9.57,9.57
-50249,19,187,19187,140,59,39436874,38737165,1332,592,202332923,201480618,38013,17035,1860721392,1853443769,10.51,9.97,19.49,19.23,0.37,0.35,2.12,2.09
-50250,19,001,19001,1062,459,172995963,172931707,2330,1067,265060086,264919955,7682,3698,1477002164,1474404167,45.58,43.02,65.27,65.28,13.82,12.41,11.71,11.73
-50250,19,077,19077,1268,608,92064123,91988248,2330,1067,265060086,264919955,10954,5756,1536054721,1529699184,54.42,56.98,34.73,34.72,11.58,10.56,5.99,6.01
-50251,19,099,19099,1270,536,104817095,104731303,1270,536,104817095,104731303,36842,16181,1898344866,1891779160,100,100,100,100,3.45,3.31,5.52,5.54
-50252,19,125,19125,243,96,22861403,22129285,243,96,22861403,22129285,33309,13914,1477611897,1436237259,100,100,100,100,0.73,0.69,1.55,1.54
-50254,19,175,19175,282,162,113653650,113421039,282,162,113653650,113421039,12534,5937,1102811646,1097235730,100,100,100,100,2.25,2.73,10.31,10.34
-50255,19,107,19107,65,28,456756,456756,65,28,456756,456756,10511,4931,1501996571,1500067240,100,100,100,100,0.62,0.57,0.03,0.03
-50256,19,123,19123,45,30,14567980,13938509,501,231,70812037,70005080,22381,9766,1485092487,1478527687,8.98,12.99,20.57,19.91,0.2,0.31,0.98,0.94
-50256,19,125,19125,456,201,56244057,56066571,501,231,70812037,70005080,33309,13914,1477611897,1436237259,91.02,87.01,79.43,80.09,1.37,1.44,3.81,3.9
-50257,19,039,19039,63,27,20739671,20739671,992,401,103296613,103296613,9286,4086,1118240826,1116716080,6.35,6.73,20.08,20.08,0.68,0.66,1.85,1.86
-50257,19,121,19121,905,362,77948571,77948571,992,401,103296613,103296613,15679,6554,1455983252,1452999410,91.23,90.27,75.46,75.46,5.77,5.52,5.35,5.36
-50257,19,181,19181,24,12,4608371,4608371,992,401,103296613,103296613,46225,18371,1484970318,1475844938,2.42,2.99,4.46,4.46,0.05,0.07,0.31,0.31
-50258,19,083,19083,878,420,99019508,98615603,1002,475,139476319,139020377,17534,8224,1476272566,1474498672,87.62,88.42,70.99,70.94,5.01,5.11,6.71,6.69
-50258,19,127,19127,124,55,40456811,40404774,1002,475,139476319,139020377,40648,16831,1484573764,1482770678,12.38,11.58,29.01,29.06,0.31,0.33,2.73,2.72
-50261,19,049,19049,1460,581,36457463,36275987,2211,879,173242731,171581878,66135,27260,1532492145,1524070766,66.03,66.1,21.04,21.14,2.21,2.13,2.38,2.38
-50261,19,121,19121,751,298,136785268,135305891,2211,879,173242731,171581878,15679,6554,1455983252,1452999410,33.97,33.9,78.96,78.86,4.79,4.55,9.39,9.31
-50262,19,053,19053,453,222,83830606,83675780,453,222,83830606,83675780,8457,3834,1381708168,1377566066,100,100,100,100,5.36,5.79,6.07,6.07
-50263,19,049,19049,16069,6414,90002855,89811208,16069,6414,90002855,89811208,66135,27260,1532492145,1524070766,100,100,100,100,24.3,23.53,5.87,5.89
-50264,19,039,19039,175,97,99761807,99761807,466,221,174299474,174277982,9286,4086,1118240826,1116716080,37.55,43.89,57.24,57.24,1.88,2.37,8.92,8.93
-50264,19,053,19053,291,124,74537667,74516175,466,221,174299474,174277982,8457,3834,1381708168,1377566066,62.45,56.11,42.76,42.76,3.44,3.23,5.39,5.41
-50265,19,153,19153,31653,14137,46466559,44379906,31653,14137,46466559,44379906,430640,182262,1532067208,1486121332,100,100,100,100,7.35,7.76,3.03,2.99
-50266,19,049,19049,10331,4970,28276404,28158834,23625,11409,43060835,42782812,66135,27260,1532492145,1524070766,43.73,43.56,65.67,65.82,15.62,18.23,1.85,1.85
-50266,19,153,19153,13294,6439,14784431,14623978,23625,11409,43060835,42782812,430640,182262,1532067208,1486121332,56.27,56.44,34.33,34.18,3.09,3.53,0.96,0.98
-50268,19,107,19107,952,492,100839730,100722933,993,509,123524623,123395200,10511,4931,1501996571,1500067240,95.87,96.66,81.64,81.63,9.06,9.98,6.71,6.71
-50268,19,123,19123,41,17,22684893,22672267,993,509,123524623,123395200,22381,9766,1485092487,1478527687,4.13,3.34,18.36,18.37,0.18,0.17,1.53,1.53
-50271,19,079,19079,618,304,162213161,162213161,628,311,172819803,172819803,15673,7219,1495743060,1493777716,98.41,97.75,93.86,93.86,3.94,4.21,10.84,10.86
-50271,19,197,19197,10,7,10606642,10606642,628,311,172819803,172819803,13229,6529,1507990781,1503286817,1.59,2.25,6.14,6.14,0.08,0.11,0.7,0.71
-50272,19,117,19117,152,84,1922108,1922108,152,84,1922108,1922108,8898,4238,1125084491,1115231642,100,100,100,100,1.71,1.98,0.17,0.17
-50273,19,121,19121,8251,3505,519171420,518734984,8251,3505,519171420,518734984,15679,6554,1455983252,1452999410,100,100,100,100,52.62,53.48,35.66,35.7
-50274,19,029,19029,398,200,130159776,129895526,398,200,130159776,129895526,13956,6591,1463209671,1461450856,100,100,100,100,2.85,3.03,8.9,8.89
-50275,19,039,19039,532,238,131849713,131849713,532,238,131849713,131849713,9286,4086,1118240826,1116716080,100,100,100,100,5.73,5.82,11.79,11.81
-50276,19,015,19015,974,242,112678912,111878699,2517,973,209846960,208197916,26306,11756,1485721642,1480356844,38.7,24.87,53.7,53.74,3.7,2.06,7.58,7.56
-50276,19,049,19049,1543,731,97168048,96319217,2517,973,209846960,208197916,66135,27260,1532492145,1524070766,61.3,75.13,46.3,46.26,2.33,2.68,6.34,6.32
-50277,19,049,19049,50,21,17181307,17181307,483,232,104624278,104453458,66135,27260,1532492145,1524070766,10.35,9.05,16.42,16.45,0.08,0.08,1.12,1.13
-50277,19,077,19077,433,211,87442971,87272151,483,232,104624278,104453458,10954,5756,1536054721,1529699184,89.65,90.95,83.58,83.55,3.95,3.67,5.69,5.71
-50278,19,169,19169,842,381,138864198,138821968,842,381,138864198,138821968,89542,36789,1485745039,1483592867,100,100,100,100,0.94,1.04,9.35,9.36
-50309,19,153,19153,5431,3667,7776473,7348586,5431,3667,7776473,7348586,430640,182262,1532067208,1486121332,100,100,100,100,1.26,2.01,0.51,0.49
-50310,19,153,19153,30221,13915,21123546,20861437,30221,13915,21123546,20861437,430640,182262,1532067208,1486121332,100,100,100,100,7.02,7.63,1.38,1.4
-50311,19,153,19153,15113,6364,6511832,6511832,15113,6364,6511832,6511832,430640,182262,1532067208,1486121332,100,100,100,100,3.51,3.49,0.43,0.44
-50312,19,153,19153,15339,7923,15051060,14709325,15339,7923,15051060,14709325,430640,182262,1532067208,1486121332,100,100,100,100,3.56,4.35,0.98,0.99
-50313,19,153,19153,17376,7158,47635293,46753201,17376,7158,47635293,46753201,430640,182262,1532067208,1486121332,100,100,100,100,4.03,3.93,3.11,3.15
-50314,19,153,19153,12465,4985,6629721,6439448,12465,4985,6629721,6439448,430640,182262,1532067208,1486121332,100,100,100,100,2.89,2.74,0.43,0.43
-50315,19,153,19153,35853,15242,26560331,25951327,35853,15242,26560331,25951327,430640,182262,1532067208,1486121332,100,100,100,100,8.33,8.36,1.73,1.75
-50316,19,153,19153,16440,6439,9302481,9215176,16440,6439,9302481,9215176,430640,182262,1532067208,1486121332,100,100,100,100,3.82,3.53,0.61,0.62
-50317,19,153,19153,36207,15027,60041842,59339311,36207,15027,60041842,59339311,430640,182262,1532067208,1486121332,100,100,100,100,8.41,8.24,3.92,3.99
-50319,19,153,19153,0,0,213707,213707,0,0,213707,213707,430640,182262,1532067208,1486121332,0,0,100,100,0,0,0.01,0.01
-50320,19,153,19153,18216,7080,35724512,34550028,20027,7825,49547031,48336194,430640,182262,1532067208,1486121332,90.96,90.48,72.1,71.48,4.23,3.88,2.33,2.32
-50320,19,181,19181,1811,745,13822519,13786166,20027,7825,49547031,48336194,46225,18371,1484970318,1475844938,9.04,9.52,27.9,28.52,3.92,4.06,0.93,0.93
-50321,19,153,19153,7846,3444,30969186,30606507,7846,3444,30969186,30606507,430640,182262,1532067208,1486121332,100,100,100,100,1.82,1.89,2.02,2.06
-50322,19,153,19153,31530,13800,27938267,27877246,31530,13800,27938267,27877246,430640,182262,1532067208,1486121332,100,100,100,100,7.32,7.57,1.82,1.88
-50323,19,049,19049,6262,2184,10916301,10916301,10201,3637,19984131,19984131,66135,27260,1532492145,1524070766,61.39,60.05,54.62,54.62,9.47,8.01,0.71,0.72
-50323,19,153,19153,3939,1453,9067830,9067830,10201,3637,19984131,19984131,430640,182262,1532067208,1486121332,38.61,39.95,45.38,45.38,0.91,0.8,0.59,0.61
-50324,19,153,19153,4903,2319,3740280,3740280,4903,2319,3740280,3740280,430640,182262,1532067208,1486121332,100,100,100,100,1.14,1.27,0.24,0.25
-50325,19,049,19049,4720,1663,7887679,7887679,15448,6081,20224117,19913279,66135,27260,1532492145,1524070766,30.55,27.35,39,39.61,7.14,6.1,0.51,0.52
-50325,19,153,19153,10728,4418,12336438,12025600,15448,6081,20224117,19913279,430640,182262,1532067208,1486121332,69.45,72.65,61,60.39,2.49,2.42,0.81,0.81
-50327,19,153,19153,10467,4197,49702622,48669473,10467,4197,49702622,48669473,430640,182262,1532067208,1486121332,100,100,100,100,2.43,2.3,3.24,3.27
-50401,19,033,19033,29837,14147,387509792,386330590,29837,14147,387509792,386330590,44151,22163,1489549959,1471923432,100,100,100,100,67.58,63.83,26.02,26.25
-50420,19,069,19069,339,172,98336913,98336913,377,188,117256906,117256906,10680,4894,1508730250,1507301318,89.92,91.49,83.86,83.86,3.17,3.51,6.52,6.52
-50420,19,197,19197,38,16,18919993,18919993,377,188,117256906,117256906,13229,6529,1507990781,1503286817,10.08,8.51,16.14,16.14,0.29,0.25,1.25,1.26
-50421,19,197,19197,3032,1470,232911303,232430189,3032,1470,232911303,232430189,13229,6529,1507990781,1503286817,100,100,100,100,22.92,22.51,15.45,15.46
-50423,19,081,19081,2976,1381,376364842,374229159,2976,1381,376364842,374229159,11341,5330,1484160557,1478894985,100,100,100,100,26.24,25.91,25.36,25.3
-50424,19,109,19109,171,75,90880860,90880860,1482,744,315854649,315854649,15543,7486,2523487581,2519332852,11.54,10.08,28.77,28.77,1.1,1,3.6,3.61
-50424,19,189,19189,1311,669,224973789,224973789,1482,744,315854649,315854649,10866,5194,1040443596,1037261544,88.46,89.92,71.23,71.23,12.07,12.88,21.62,21.69
-50426,19,131,19131,56,27,60113,60113,56,27,60113,60113,10776,4850,1216167444,1215049026,100,100,100,100,0.52,0.56,0,0
-50428,19,033,19033,9384,5687,316380154,306745321,9384,5687,316380154,306745321,44151,22163,1489549959,1471923432,100,100,100,100,21.25,25.66,21.24,20.84
-50430,19,081,19081,435,225,104671128,104671128,518,266,160984015,160984015,11341,5330,1484160557,1478894985,83.98,84.59,65.02,65.02,3.84,4.22,7.05,7.08
-50430,19,109,19109,83,41,56312887,56312887,518,266,160984015,160984015,15543,7486,2523487581,2519332852,16.02,15.41,34.98,34.98,0.53,0.55,2.23,2.24
-50431,19,069,19069,273,113,1936776,1936776,273,113,1936776,1936776,10680,4894,1508730250,1507301318,100,100,100,100,2.56,2.31,0.13,0.13
-50432,19,081,19081,252,141,1127714,1127714,252,141,1127714,1127714,11341,5330,1484160557,1478894985,100,100,100,100,2.22,2.65,0.08,0.08
-50433,19,023,19023,13,7,6150441,6150441,256,130,125889253,125889253,14867,6682,1506743000,1502533262,5.08,5.38,4.89,4.89,0.09,0.1,0.41,0.41
-50433,19,033,19033,168,82,61435987,61435987,256,130,125889253,125889253,44151,22163,1489549959,1471923432,65.63,63.08,48.8,48.8,0.38,0.37,4.12,4.17
-50433,19,067,19067,40,19,24320429,24320429,256,130,125889253,125889253,16303,7526,1298573655,1296631086,15.63,14.62,19.32,19.32,0.25,0.25,1.87,1.88
-50433,19,069,19069,35,22,33982396,33982396,256,130,125889253,125889253,10680,4894,1508730250,1507301318,13.67,16.92,26.99,26.99,0.33,0.45,2.25,2.25
-50434,19,033,19033,37,19,8406600,8168473,498,217,23487419,23249292,44151,22163,1489549959,1471923432,7.43,8.76,35.79,35.13,0.08,0.09,0.56,0.55
-50434,19,195,19195,461,198,15080819,15080819,498,217,23487419,23249292,7598,3548,1041024075,1036314948,92.57,91.24,64.21,64.87,6.07,5.58,1.45,1.46
-50435,19,067,19067,721,314,105304339,105304339,721,314,105304339,105304339,16303,7526,1298573655,1296631086,100,100,100,100,4.42,4.17,8.11,8.12
-50436,19,081,19081,996,489,148615862,147436743,5848,2639,354034151,352540998,11341,5330,1484160557,1478894985,17.03,18.53,41.98,41.82,8.78,9.17,10.01,9.97
-50436,19,189,19189,4852,2150,205418289,205104255,5848,2639,354034151,352540998,10866,5194,1040443596,1037261544,82.97,81.47,58.02,58.18,44.65,41.39,19.74,19.77
-50438,19,081,19081,4159,1832,342635780,342477993,4159,1832,342635780,342477993,11341,5330,1484160557,1478894985,100,100,100,100,36.67,34.37,23.09,23.16
-50439,19,081,19081,289,148,84706319,84616343,289,148,84706319,84616343,11341,5330,1484160557,1478894985,100,100,100,100,2.55,2.78,5.71,5.72
-50440,19,195,19195,422,216,80665798,80662384,422,216,80665798,80662384,7598,3548,1041024075,1036314948,100,100,100,100,5.55,6.09,7.75,7.78
-50441,19,069,19069,5776,2595,395662654,395173317,5776,2595,395662654,395173317,10680,4894,1508730250,1507301318,100,100,100,100,54.08,53.02,26.22,26.22
-50444,19,033,19033,12,5,3080517,3080517,353,156,55966912,55947822,44151,22163,1489549959,1471923432,3.4,3.21,5.5,5.51,0.03,0.02,0.21,0.21
-50444,19,195,19195,341,151,52886395,52867305,353,156,55966912,55947822,7598,3548,1041024075,1036314948,96.6,96.79,94.5,94.49,4.49,4.26,5.08,5.1
-50446,19,189,19189,33,14,10783128,10783128,548,249,108869780,108697147,10866,5194,1040443596,1037261544,6.02,5.62,9.9,9.92,0.3,0.27,1.04,1.04
-50446,19,195,19195,515,235,98086652,97914019,548,249,108869780,108697147,7598,3548,1041024075,1036314948,93.98,94.38,90.1,90.08,6.78,6.62,9.42,9.45
-50447,19,081,19081,924,479,165884210,164573404,1081,542,261433926,260076390,11341,5330,1484160557,1478894985,85.48,88.38,63.45,63.28,8.15,8.99,11.18,11.13
-50447,19,197,19197,157,63,95549716,95502986,1081,542,261433926,260076390,13229,6529,1507990781,1503286817,14.52,11.62,36.55,36.72,1.19,0.96,6.34,6.35
-50448,19,195,19195,695,330,160165797,160124185,695,330,160165797,160124185,7598,3548,1041024075,1036314948,100,100,100,100,9.15,9.3,15.39,15.45
-50449,19,033,19033,3,2,5347136,5347136,724,359,95013046,94989415,44151,22163,1489549959,1471923432,0.41,0.56,5.63,5.63,0.01,0.01,0.36,0.36
-50449,19,081,19081,721,357,89665910,89642279,724,359,95013046,94989415,11341,5330,1484160557,1478894985,99.59,99.44,94.37,94.37,6.36,6.7,6.04,6.06
-50450,19,189,19189,2727,1350,151689055,149666093,2897,1424,214081289,209812899,10866,5194,1040443596,1037261544,94.13,94.8,70.86,71.33,25.1,25.99,14.58,14.43
-50450,19,195,19195,170,74,62392234,60146806,2897,1424,214081289,209812899,7598,3548,1041024075,1036314948,5.87,5.2,29.14,28.67,2.24,2.09,5.99,5.8
-50451,19,109,19109,537,274,164530815,164502448,537,274,164530815,164502448,15543,7486,2523487581,2519332852,100,100,100,100,3.45,3.66,6.52,6.53
-50452,19,069,19069,804,369,127424687,127237832,804,369,127424687,127237832,10680,4894,1508730250,1507301318,100,100,100,100,7.53,7.54,8.45,8.44
-50453,19,189,19189,588,271,114347611,114170099,588,271,114347611,114170099,10866,5194,1040443596,1037261544,100,100,100,100,5.41,5.22,10.99,11.01
-50454,19,131,19131,127,62,44766360,44766360,127,62,44766360,44766360,10776,4850,1216167444,1215049026,100,100,100,100,1.18,1.28,3.68,3.68
-50455,19,131,19131,450,180,84207513,84207513,450,180,84207513,84207513,10776,4850,1216167444,1215049026,100,100,100,100,4.18,3.71,6.92,6.93
-50456,19,195,19195,1741,789,120430473,120416382,1741,789,120430473,120416382,7598,3548,1041024075,1036314948,100,100,100,100,22.91,22.24,11.57,11.62
-50457,19,033,19033,320,169,26136945,26136945,441,224,88503707,88503707,44151,22163,1489549959,1471923432,72.56,75.45,29.53,29.53,0.72,0.76,1.75,1.78
-50457,19,069,19069,54,23,22882821,22882821,441,224,88503707,88503707,10680,4894,1508730250,1507301318,12.24,10.27,25.86,25.86,0.51,0.47,1.52,1.52
-50457,19,081,19081,51,24,28506792,28506792,441,224,88503707,88503707,11341,5330,1484160557,1478894985,11.56,10.71,32.21,32.21,0.45,0.45,1.92,1.93
-50457,19,197,19197,16,8,10977149,10977149,441,224,88503707,88503707,13229,6529,1507990781,1503286817,3.63,3.57,12.4,12.4,0.12,0.12,0.73,0.73
-50458,19,033,19033,230,103,71672985,71658761,2097,910,190798489,190715038,44151,22163,1489549959,1471923432,10.97,11.32,37.56,37.57,0.52,0.46,4.81,4.87
-50458,19,067,19067,1797,777,98676604,98607377,2097,910,190798489,190715038,16303,7526,1298573655,1296631086,85.69,85.38,51.72,51.7,11.02,10.32,7.6,7.6
-50458,19,131,19131,70,30,20448900,20448900,2097,910,190798489,190715038,10776,4850,1216167444,1215049026,3.34,3.3,10.72,10.72,0.65,0.62,1.68,1.68
-50459,19,195,19195,3018,1451,375483499,373316194,3018,1451,375483499,373316194,7598,3548,1041024075,1036314948,100,100,100,100,39.72,40.9,36.07,36.02
-50460,19,067,19067,43,12,16791504,16791504,364,146,93166151,93166151,16303,7526,1298573655,1296631086,11.81,8.22,18.02,18.02,0.26,0.16,1.29,1.3
-50460,19,131,19131,321,134,76374647,76374647,364,146,93166151,93166151,10776,4850,1216167444,1215049026,88.19,91.78,81.98,81.98,2.98,2.76,6.28,6.29
-50461,19,067,19067,14,7,2212220,2212220,5613,2593,446474922,446116781,16303,7526,1298573655,1296631086,0.25,0.27,0.5,0.5,0.09,0.09,0.17,0.17
-50461,19,131,19131,5599,2586,444262702,443904561,5613,2593,446474922,446116781,10776,4850,1216167444,1215049026,99.75,99.73,99.5,99.5,51.96,53.32,36.53,36.53
-50464,19,033,19033,527,248,32039024,32039024,673,308,61009266,61009266,44151,22163,1489549959,1471923432,78.31,80.52,52.52,52.52,1.19,1.12,2.15,2.18
-50464,19,195,19195,146,60,28970242,28970242,673,308,61009266,61009266,7598,3548,1041024075,1036314948,21.69,19.48,47.48,47.48,1.92,1.69,2.78,2.8
-50465,19,189,19189,250,127,9497218,9497218,250,127,9497218,9497218,10866,5194,1040443596,1037261544,100,100,100,100,2.3,2.45,0.91,0.92
-50466,19,089,19089,863,366,206821147,206585431,1828,787,354341172,354076016,9566,4367,1226634388,1225706425,47.21,46.51,58.37,58.34,9.02,8.38,16.86,16.85
-50466,19,131,19131,965,421,147520025,147490585,1828,787,354341172,354076016,10776,4850,1216167444,1215049026,52.79,53.49,41.63,41.66,8.96,8.68,12.13,12.14
-50467,19,033,19033,94,44,709984,709984,94,44,709984,709984,44151,22163,1489549959,1471923432,100,100,100,100,0.21,0.2,0.05,0.05
-50468,19,033,19033,134,58,60417554,60388218,1615,742,256209489,256180153,44151,22163,1489549959,1471923432,8.3,7.82,23.58,23.57,0.3,0.26,4.06,4.1
-50468,19,067,19067,1481,684,195791935,195791935,1615,742,256209489,256180153,16303,7526,1298573655,1296631086,91.7,92.18,76.42,76.43,9.08,9.09,15.08,15.1
-50469,19,033,19033,1574,690,227879604,227803634,1574,690,227879604,227803634,44151,22163,1489549959,1471923432,100,100,100,100,3.57,3.11,15.3,15.48
-50470,19,197,19197,275,165,62885229,62885229,275,165,62885229,62885229,13229,6529,1507990781,1503286817,100,100,100,100,2.08,2.53,4.17,4.18
-50471,19,067,19067,666,307,103262430,103262430,689,316,110089036,110089036,16303,7526,1298573655,1296631086,96.66,97.15,93.8,93.8,4.09,4.08,7.95,7.96
-50471,19,131,19131,23,9,6826606,6826606,689,316,110089036,110089036,10776,4850,1216167444,1215049026,3.34,2.85,6.2,6.2,0.21,0.19,0.56,0.56
-50472,19,131,19131,2305,1014,269554844,268905821,2394,1058,316417010,315722433,10776,4850,1216167444,1215049026,96.28,95.84,85.19,85.17,21.39,20.91,22.16,22.13
-50472,19,195,19195,89,44,46862166,46816612,2394,1058,316417010,315722433,7598,3548,1041024075,1036314948,3.72,4.16,14.81,14.83,1.17,1.24,4.5,4.52
-50473,19,189,19189,268,138,96000513,95399880,268,138,96000513,95399880,10866,5194,1040443596,1037261544,100,100,100,100,2.47,2.66,9.23,9.2
-50475,19,033,19033,128,48,54926430,54911373,1757,760,231102519,231013382,44151,22163,1489549959,1471923432,7.29,6.32,23.77,23.77,0.29,0.22,3.69,3.73
-50475,19,069,19069,1629,712,176176089,176102009,1757,760,231102519,231013382,10680,4894,1508730250,1507301318,92.71,93.68,76.23,76.23,15.25,14.55,11.68,11.68
-50476,19,131,19131,804,369,101702581,101620767,804,369,101702581,101620767,10776,4850,1216167444,1215049026,100,100,100,100,7.46,7.61,8.36,8.36
-50477,19,033,19033,347,151,58455862,58455862,347,151,58455862,58455862,44151,22163,1489549959,1471923432,100,100,100,100,0.79,0.68,3.92,3.97
-50478,19,189,19189,775,439,191575269,191508358,775,439,191575269,191508358,10866,5194,1040443596,1037261544,100,100,100,100,7.13,8.45,18.41,18.46
-50479,19,033,19033,615,289,106067158,106067158,684,325,150266394,150266394,44151,22163,1489549959,1471923432,89.91,88.92,70.59,70.59,1.39,1.3,7.12,7.21
-50479,19,069,19069,69,36,44199236,44199236,684,325,150266394,150266394,10680,4894,1508730250,1507301318,10.09,11.08,29.41,29.41,0.65,0.74,2.93,2.93
-50480,19,081,19081,11,6,3754655,3754655,880,461,163023328,162227230,11341,5330,1484160557,1478894985,1.25,1.3,2.3,2.31,0.1,0.11,0.25,0.25
-50480,19,109,19109,869,455,159268673,158472575,880,461,163023328,162227230,15543,7486,2523487581,2519332852,98.75,98.7,97.7,97.69,5.59,6.08,6.31,6.29
-50482,19,033,19033,741,421,69084227,62644449,774,438,81166123,74538658,44151,22163,1489549959,1471923432,95.74,96.12,85.11,84.04,1.68,1.9,4.64,4.26
-50482,19,081,19081,33,17,12081896,11894209,774,438,81166123,74538658,11341,5330,1484160557,1478894985,4.26,3.88,14.89,15.96,0.29,0.32,0.81,0.8
-50483,19,081,19081,123,47,53805110,53805110,781,354,198210428,198210428,11341,5330,1484160557,1478894985,15.75,13.28,27.15,27.15,1.08,0.88,3.63,3.64
-50483,19,109,19109,658,307,144405318,144405318,781,354,198210428,198210428,15543,7486,2523487581,2519332852,84.25,86.72,72.85,72.85,4.23,4.1,5.72,5.73
-50484,19,081,19081,371,184,72340339,72159456,444,225,113720772,113539889,11341,5330,1484160557,1478894985,83.56,81.78,63.61,63.55,3.27,3.45,4.87,4.88
-50484,19,109,19109,11,5,5221709,5221709,444,225,113720772,113539889,15543,7486,2523487581,2519332852,2.48,2.22,4.59,4.6,0.07,0.07,0.21,0.21
-50484,19,189,19189,62,36,36158724,36158724,444,225,113720772,113539889,10866,5194,1040443596,1037261544,13.96,16,31.8,31.85,0.57,0.69,3.48,3.49
-50501,19,187,19187,29078,12902,407215780,403940220,29078,12902,407215780,403940220,38013,17035,1860721392,1853443769,100,100,100,100,76.49,75.74,21.88,21.79
-50510,19,021,19021,1048,501,186876115,186876115,1116,529,219732120,219101382,20260,8237,1502780733,1489022575,93.91,94.71,85.05,85.29,5.17,6.08,12.44,12.55
-50510,19,151,19151,68,28,32856005,32225267,1116,529,219732120,219101382,7310,3794,1498713568,1495047042,6.09,5.29,14.95,14.71,0.93,0.74,2.19,2.16
-50511,19,109,19109,7137,3390,321723723,321026179,7137,3390,321723723,321026179,15543,7486,2523487581,2519332852,100,100,100,100,45.92,45.28,12.75,12.74
-50514,19,063,19063,1287,611,182514540,180978149,1452,686,287766282,285570120,10302,4758,1042529516,1025333118,88.64,89.07,63.42,63.37,12.49,12.84,17.51,17.65
-50514,19,109,19109,165,75,105251742,104591971,1452,686,287766282,285570120,15543,7486,2523487581,2519332852,11.36,10.93,36.58,36.63,1.06,1,4.17,4.15
-50515,19,041,19041,12,6,15265766,15265766,279,160,96076793,95985264,16667,8062,1483006155,1469139214,4.3,3.75,15.89,15.9,0.07,0.07,1.03,1.04
-50515,19,147,19147,267,154,80811027,80719498,279,160,96076793,95985264,9421,4628,1474829287,1460349241,95.7,96.25,84.11,84.1,2.83,3.33,5.48,5.53
-50516,19,091,19091,54,26,12635030,12635030,719,305,63984856,63843690,9815,4684,1128373420,1124967281,7.51,8.52,19.75,19.79,0.55,0.56,1.12,1.12
-50516,19,187,19187,665,279,51349826,51208660,719,305,63984856,63843690,38013,17035,1860721392,1853443769,92.49,91.48,80.25,80.21,1.75,1.64,2.76,2.76
-50517,19,109,19109,1051,503,198110964,196451521,1051,503,198110964,196451521,15543,7486,2523487581,2519332852,100,100,100,100,6.76,6.72,7.85,7.8
-50518,19,187,19187,381,159,80803741,80803741,381,159,80803741,80803741,38013,17035,1860721392,1853443769,100,100,100,100,1,0.93,4.34,4.36
-50519,19,091,19091,426,229,79814947,79814947,624,305,142395653,142395653,9815,4684,1128373420,1124967281,68.27,75.08,56.05,56.05,4.34,4.89,7.07,7.09
-50519,19,109,19109,198,76,62580706,62580706,624,305,142395653,142395653,15543,7486,2523487581,2519332852,31.73,24.92,43.95,43.95,1.27,1.02,2.48,2.48
-50520,19,091,19091,141,71,58175919,57433780,144,74,62072927,61318438,9815,4684,1128373420,1124967281,97.92,95.95,93.72,93.66,1.44,1.52,5.16,5.11
-50520,19,151,19151,3,3,3897008,3884658,144,74,62072927,61318438,7310,3794,1498713568,1495047042,2.08,4.05,6.28,6.34,0.04,0.08,0.26,0.26
-50521,19,187,19187,104,56,3160848,3160848,104,56,3160848,3160848,38013,17035,1860721392,1853443769,100,100,100,100,0.27,0.33,0.17,0.17
-50522,19,109,19109,857,373,176225395,175965366,857,373,176225395,175965366,15543,7486,2523487581,2519332852,100,100,100,100,5.51,4.98,6.98,6.98
-50523,19,187,19187,604,285,109190936,109190936,604,285,109190936,109190936,38013,17035,1860721392,1853443769,100,100,100,100,1.59,1.67,5.87,5.89
-50524,19,151,19151,10,7,8929935,8929935,521,239,148535431,148454625,7310,3794,1498713568,1495047042,1.92,2.93,6.01,6.02,0.14,0.18,0.6,0.6
-50524,19,187,19187,511,232,139605496,139524690,521,239,148535431,148454625,38013,17035,1860721392,1853443769,98.08,97.07,93.99,93.98,1.34,1.36,7.5,7.53
-50525,19,197,19197,3583,1829,363773781,361364714,3583,1829,363773781,361364714,13229,6529,1507990781,1503286817,100,100,100,100,27.08,28.01,24.12,24.04
-50527,19,147,19147,223,124,141597255,141597255,223,124,141597255,141597255,9421,4628,1474829287,1460349241,100,100,100,100,2.37,2.68,9.6,9.7
-50528,19,147,19147,383,184,191696767,191696767,383,184,191696767,191696767,9421,4628,1474829287,1460349241,100,100,100,100,4.07,3.98,13,13.13
-50529,19,091,19091,837,380,1445412,1404544,837,380,1445412,1404544,9815,4684,1128373420,1124967281,100,100,100,100,8.53,8.11,0.13,0.12
-50530,19,015,19015,16,8,10373641,10373641,1205,545,168385319,167469642,26306,11756,1485721642,1480356844,1.33,1.47,6.16,6.19,0.06,0.07,0.7,0.7
-50530,19,187,19187,1189,537,158011678,157096001,1205,545,168385319,167469642,38013,17035,1860721392,1853443769,98.67,98.53,93.84,93.81,3.13,3.15,8.49,8.48
-50531,19,063,19063,242,158,100449294,96657746,242,158,100449294,96657746,10302,4758,1042529516,1025333118,100,100,100,100,2.35,3.32,9.64,9.43
-50532,19,079,19079,12,6,7407897,7407897,873,417,181717930,181265335,15673,7219,1495743060,1493777716,1.37,1.44,4.08,4.09,0.08,0.08,0.5,0.5
-50532,19,187,19187,861,411,174310033,173857438,873,417,181717930,181265335,38013,17035,1860721392,1853443769,98.63,98.56,95.92,95.91,2.27,2.41,9.37,9.38
-50533,19,091,19091,57,26,30301790,30301790,4130,1898,258503120,258503120,9815,4684,1128373420,1124967281,1.38,1.37,11.72,11.72,0.58,0.56,2.69,2.69
-50533,19,187,19187,37,19,25095890,25095890,4130,1898,258503120,258503120,38013,17035,1860721392,1853443769,0.9,1,9.71,9.71,0.1,0.11,1.35,1.35
-50533,19,197,19197,4036,1853,203105440,203105440,4130,1898,258503120,258503120,13229,6529,1507990781,1503286817,97.72,97.63,78.57,78.57,30.51,28.38,13.47,13.51
-50535,19,161,19161,885,438,158492375,157943720,885,438,158492375,157943720,10350,5429,1497869802,1489272900,100,100,100,100,8.55,8.07,10.58,10.61
-50536,19,147,19147,4541,2133,370232494,366256005,4541,2133,370232494,366256005,9421,4628,1474829287,1460349241,100,100,100,100,48.2,46.09,25.1,25.08
-50538,19,025,19025,498,260,76956617,76939660,503,263,80889010,80872053,9670,5108,1481769530,1476209027,99.01,98.86,95.14,95.14,5.15,5.09,5.19,5.21
-50538,19,187,19187,5,3,3932393,3932393,503,263,80889010,80872053,38013,17035,1860721392,1853443769,0.99,1.14,4.86,4.86,0.01,0.02,0.21,0.21
-50539,19,109,19109,501,264,105855426,105855426,566,292,139538906,139538906,15543,7486,2523487581,2519332852,88.52,90.41,75.86,75.86,3.22,3.53,4.19,4.2
-50539,19,147,19147,65,28,33683480,33683480,566,292,139538906,139538906,9421,4628,1474829287,1460349241,11.48,9.59,24.14,24.14,0.69,0.61,2.28,2.31
-50540,19,025,19025,113,59,79763528,79645276,1022,527,275625728,274522336,9670,5108,1481769530,1476209027,11.06,11.2,28.94,29.01,1.17,1.16,5.38,5.4
-50540,19,151,19151,909,468,195862200,194877060,1022,527,275625728,274522336,7310,3794,1498713568,1495047042,88.94,88.8,71.06,70.99,12.44,12.34,13.07,13.03
-50541,19,091,19091,491,256,109330231,109060172,872,454,237749663,236217558,9815,4684,1128373420,1124967281,56.31,56.39,45.99,46.17,5,5.47,9.69,9.69
-50541,19,151,19151,381,198,128419432,127157386,872,454,237749663,236217558,7310,3794,1498713568,1495047042,43.69,43.61,54.01,53.83,5.21,5.22,8.57,8.51
-50542,19,091,19091,118,51,53608229,53608229,933,456,172884137,172856036,9815,4684,1128373420,1124967281,12.65,11.18,31.01,31.01,1.2,1.09,4.75,4.77
-50542,19,197,19197,815,405,119275908,119247807,933,456,172884137,172856036,13229,6529,1507990781,1503286817,87.35,88.82,68.99,68.99,6.16,6.2,7.91,7.93
-50543,19,187,19187,1492,683,212824794,212824794,1492,683,212824794,212824794,38013,17035,1860721392,1853443769,100,100,100,100,3.92,4.01,11.44,11.48
-50544,19,187,19187,515,244,75465666,75465666,515,244,75465666,75465666,38013,17035,1860721392,1853443769,100,100,100,100,1.35,1.43,4.06,4.07
-50545,19,091,19091,205,99,97252233,97206312,205,99,97252233,97206312,9815,4684,1128373420,1124967281,100,100,100,100,2.09,2.11,8.62,8.64
-50546,19,151,19151,346,202,137019674,136972383,346,202,137019674,136972383,7310,3794,1498713568,1495047042,100,100,100,100,4.73,5.32,9.14,9.16
-50548,19,091,19091,5808,2710,308750565,306878285,5869,2729,323465219,321533403,9815,4684,1128373420,1124967281,98.96,99.3,95.45,95.44,59.17,57.86,27.36,27.28
-50548,19,187,19187,61,19,14714654,14655118,5869,2729,323465219,321533403,38013,17035,1860721392,1853443769,1.04,0.7,4.55,4.56,0.16,0.11,0.79,0.79
-50551,19,025,19025,158,91,69704315,69704315,158,91,69704315,69704315,9670,5108,1481769530,1476209027,100,100,100,100,1.63,1.78,4.7,4.72
-50554,19,021,19021,10,4,5362770,4774773,1625,872,232762069,230386693,20260,8237,1502780733,1489022575,0.62,0.46,2.3,2.07,0.05,0.05,0.36,0.32
-50554,19,147,19147,18,14,23399443,21612064,1625,872,232762069,230386693,9421,4628,1474829287,1460349241,1.11,1.61,10.05,9.38,0.19,0.3,1.59,1.48
-50554,19,151,19151,1597,854,203999856,203999856,1625,872,232762069,230386693,7310,3794,1498713568,1495047042,98.28,97.94,87.64,88.55,21.85,22.51,13.61,13.65
-50556,19,109,19109,292,152,101116000,101104875,292,152,101116000,101104875,15543,7486,2523487581,2519332852,100,100,100,100,1.88,2.03,4.01,4.01
-50557,19,187,19187,750,388,130151481,129034762,750,388,130151481,129034762,38013,17035,1860721392,1853443769,100,100,100,100,1.97,2.28,6.99,6.96
-50558,19,091,19091,558,279,100900654,100877587,618,302,114721586,114698519,9815,4684,1128373420,1124967281,90.29,92.38,87.95,87.95,5.69,5.96,8.94,8.97
-50558,19,109,19109,60,23,13820932,13820932,618,302,114721586,114698519,15543,7486,2523487581,2519332852,9.71,7.62,12.05,12.05,0.39,0.31,0.55,0.55
-50559,19,109,19109,348,176,102790935,102790935,348,176,102790935,102790935,15543,7486,2523487581,2519332852,100,100,100,100,2.24,2.35,4.07,4.08
-50560,19,091,19091,77,41,30171050,30171050,590,317,225654488,225654488,9815,4684,1128373420,1124967281,13.05,12.93,13.37,13.37,0.78,0.88,2.67,2.68
-50560,19,109,19109,513,276,195483438,195483438,590,317,225654488,225654488,15543,7486,2523487581,2519332852,86.95,87.07,86.63,86.63,3.3,3.69,7.75,7.76
-50561,19,025,19025,166,80,68027476,68027476,520,256,119358374,119264336,9670,5108,1481769530,1476209027,31.92,31.25,56.99,57.04,1.72,1.57,4.59,4.61
-50561,19,161,19161,354,176,51330898,51236860,520,256,119358374,119264336,10350,5429,1497869802,1489272900,68.08,68.75,43.01,42.96,3.42,3.24,3.43,3.44
-50562,19,147,19147,502,240,150300174,150300174,527,248,165098566,165098566,9421,4628,1474829287,1460349241,95.26,96.77,91.04,91.04,5.33,5.19,10.19,10.29
-50562,19,151,19151,25,8,14798392,14798392,527,248,165098566,165098566,7310,3794,1498713568,1495047042,4.74,3.23,8.96,8.96,0.34,0.21,0.99,0.99
-50563,19,025,19025,2331,1285,181127906,180380306,2500,1359,253318021,252570421,9670,5108,1481769530,1476209027,93.24,94.55,71.5,71.42,24.11,25.16,12.22,12.22
-50563,19,151,19151,147,64,64357572,64357572,2500,1359,253318021,252570421,7310,3794,1498713568,1495047042,5.88,4.71,25.41,25.48,2.01,1.69,4.29,4.3
-50563,19,187,19187,22,10,7832543,7832543,2500,1359,253318021,252570421,38013,17035,1860721392,1853443769,0.88,0.74,3.09,3.1,0.06,0.06,0.42,0.42
-50565,19,021,19021,468,259,114004136,113882977,468,259,114004136,113882977,20260,8237,1502780733,1489022575,100,100,100,100,2.31,3.14,7.59,7.65
-50566,19,187,19187,433,206,89865522,89844358,433,206,89865522,89844358,38013,17035,1860721392,1853443769,100,100,100,100,1.14,1.21,4.83,4.85
-50567,19,161,19161,226,106,67326397,67115601,226,106,67326397,67115601,10350,5429,1497869802,1489272900,100,100,100,100,2.18,1.95,4.49,4.51
-50568,19,021,19021,1355,592,191464987,191361529,1398,611,220071293,219912855,20260,8237,1502780733,1489022575,96.92,96.89,87,87.02,6.69,7.19,12.74,12.85
-50568,19,161,19161,43,19,28606306,28551326,1398,611,220071293,219912855,10350,5429,1497869802,1489272900,3.08,3.11,13,12.98,0.42,0.35,1.91,1.92
-50569,19,187,19187,836,391,54889709,54375018,836,391,54889709,54375018,38013,17035,1860721392,1853443769,100,100,100,100,2.2,2.3,2.95,2.93
-50570,19,091,19091,179,78,71863305,71815128,248,103,112220748,112172571,9815,4684,1128373420,1124967281,72.18,75.73,64.04,64.02,1.82,1.67,6.37,6.38
-50570,19,109,19109,69,25,40357443,40357443,248,103,112220748,112172571,15543,7486,2523487581,2519332852,27.82,24.27,35.96,35.98,0.44,0.33,1.6,1.6
-50571,19,151,19151,394,207,115641227,115641227,394,207,115641227,115641227,7310,3794,1498713568,1495047042,100,100,100,100,5.39,5.46,7.72,7.73
-50573,19,151,19151,68,41,1045738,1045738,68,41,1045738,1045738,7310,3794,1498713568,1495047042,100,100,100,100,0.93,1.08,0.07,0.07
-50574,19,151,19151,2181,1148,288134473,288134473,2181,1148,288134473,288134473,7310,3794,1498713568,1495047042,100,100,100,100,29.84,30.26,19.23,19.27
-50575,19,025,19025,821,438,85402324,85402324,969,515,163446600,163446600,9670,5108,1481769530,1476209027,84.73,85.05,52.25,52.25,8.49,8.57,5.76,5.79
-50575,19,151,19151,148,77,78044276,78044276,969,515,163446600,163446600,7310,3794,1498713568,1495047042,15.27,14.95,47.75,47.75,2.02,2.03,5.21,5.22
-50576,19,021,19021,423,190,93051632,93051632,423,190,93051632,93051632,20260,8237,1502780733,1489022575,100,100,100,100,2.09,2.31,6.19,6.25
-50577,19,091,19091,328,182,58013348,58013348,410,221,106941323,106941323,9815,4684,1128373420,1124967281,80,82.35,54.25,54.25,3.34,3.89,5.14,5.16
-50577,19,197,19197,82,39,48927975,48927975,410,221,106941323,106941323,13229,6529,1507990781,1503286817,20,17.65,45.75,45.75,0.62,0.6,3.24,3.25
-50578,19,063,19063,632,324,167796105,167710434,646,334,192331445,192245774,10302,4758,1042529516,1025333118,97.83,97.01,87.24,87.24,6.13,6.81,16.1,16.36
-50578,19,147,19147,14,10,24535340,24535340,646,334,192331445,192245774,9421,4628,1474829287,1460349241,2.17,2.99,12.76,12.76,0.15,0.22,1.66,1.68
-50579,19,025,19025,2405,1331,359119951,355724263,2405,1331,359119951,355724263,9670,5108,1481769530,1476209027,100,100,100,100,24.87,26.06,24.24,24.1
-50581,19,147,19147,27,13,21494724,21494724,996,471,246722485,245993524,9421,4628,1474829287,1460349241,2.71,2.76,8.71,8.74,0.29,0.28,1.46,1.47
-50581,19,151,19151,969,458,225227761,224498800,996,471,246722485,245993524,7310,3794,1498713568,1495047042,97.29,97.24,91.29,91.26,13.26,12.07,15.03,15.02
-50582,19,091,19091,234,116,53572451,53208823,234,116,53572451,53208823,9815,4684,1128373420,1124967281,100,100,100,100,2.38,2.48,4.75,4.73
-50583,19,161,19161,2855,1469,306359541,305136071,2855,1469,306359541,305136071,10350,5429,1497869802,1489272900,100,100,100,100,27.58,27.06,20.45,20.49
-50585,19,021,19021,1009,478,83607162,83555607,1176,568,165291906,164764837,20260,8237,1502780733,1489022575,85.8,84.15,50.58,50.71,4.98,5.8,5.56,5.61
-50585,19,041,19041,167,90,81684744,81209230,1176,568,165291906,164764837,16667,8062,1483006155,1469139214,14.2,15.85,49.42,49.29,1,1.12,5.51,5.53
-50586,19,025,19025,294,153,86808216,86786104,307,159,91121320,91099208,9670,5108,1481769530,1476209027,95.77,96.23,95.27,95.27,3.04,3,5.86,5.88
-50586,19,187,19187,13,6,4313104,4313104,307,159,91121320,91099208,38013,17035,1860721392,1853443769,4.23,3.77,4.73,4.73,0.03,0.04,0.23,0.23
-50588,19,021,19021,12756,4749,368993698,356361817,12756,4749,368993698,356361817,20260,8237,1502780733,1489022575,100,100,100,100,62.96,57.65,24.55,23.93
-50590,19,109,19109,879,479,203980739,203960351,879,479,203980739,203960351,15543,7486,2523487581,2519332852,100,100,100,100,5.66,6.4,8.08,8.1
-50591,19,091,19091,302,140,62538256,62538256,320,150,73985552,73985552,9815,4684,1128373420,1124967281,94.38,93.33,84.53,84.53,3.08,2.99,5.54,5.56
-50591,19,187,19187,18,10,11447296,11447296,320,150,73985552,73985552,38013,17035,1860721392,1853443769,5.63,6.67,15.47,15.47,0.05,0.06,0.62,0.62
-50593,19,151,19151,64,31,480019,480019,64,31,480019,480019,7310,3794,1498713568,1495047042,100,100,100,100,0.88,0.82,0.03,0.03
-50594,19,187,19187,298,136,67103128,67103128,298,136,67103128,67103128,38013,17035,1860721392,1853443769,100,100,100,100,0.78,0.8,3.61,3.62
-50595,19,079,19079,9165,4301,399609138,399160086,9165,4301,399609138,399160086,15673,7219,1495743060,1493777716,100,100,100,100,58.48,59.58,26.72,26.72
-50597,19,109,19109,238,95,90797238,90797238,1293,597,214240511,213308415,15543,7486,2523487581,2519332852,18.41,15.91,42.38,42.57,1.53,1.27,3.6,3.6
-50597,19,147,19147,1055,502,123443273,122511177,1293,597,214240511,213308415,9421,4628,1474829287,1460349241,81.59,84.09,57.62,57.43,11.2,10.85,8.37,8.39
-50598,19,109,19109,839,386,128377856,128377856,912,421,176474137,176474137,15543,7486,2523487581,2519332852,92,91.69,72.75,72.75,5.4,5.16,5.09,5.1
-50598,19,147,19147,73,35,48096281,48096281,912,421,176474137,176474137,9421,4628,1474829287,1460349241,8,8.31,27.25,27.25,0.77,0.76,3.26,3.29
-50599,19,079,19079,30,14,23231500,23231500,380,199,133057067,132976009,15673,7219,1495743060,1493777716,7.89,7.04,17.46,17.47,0.19,0.19,1.55,1.56
-50599,19,197,19197,350,185,109825567,109744509,380,199,133057067,132976009,13229,6529,1507990781,1503286817,92.11,92.96,82.54,82.53,2.65,2.83,7.28,7.3
-50601,19,023,19023,132,61,62152459,62124976,2464,1194,368012120,367829271,14867,6682,1506743000,1502533262,5.36,5.11,16.89,16.89,0.89,0.91,4.12,4.13
-50601,19,069,19069,334,162,136438012,136332427,2464,1194,368012120,367829271,10680,4894,1508730250,1507301318,13.56,13.57,37.07,37.06,3.13,3.31,9.04,9.04
-50601,19,075,19075,179,75,60256452,60206671,2464,1194,368012120,367829271,12453,5530,1299900330,1299805924,7.26,6.28,16.37,16.37,1.44,1.36,4.64,4.63
-50601,19,083,19083,1819,896,109165197,109165197,2464,1194,368012120,367829271,17534,8224,1476272566,1474498672,73.82,75.04,29.66,29.68,10.37,10.89,7.39,7.4
-50602,19,023,19023,1603,719,207455662,207296305,1603,719,207455662,207296305,14867,6682,1506743000,1502533262,100,100,100,100,10.78,10.76,13.77,13.8
-50603,19,037,19037,546,239,99150821,99150821,625,269,122972014,122972014,12439,5679,1309648065,1306338733,87.36,88.85,80.63,80.63,4.39,4.21,7.57,7.59
-50603,19,089,19089,79,30,23821193,23821193,625,269,122972014,122972014,9566,4367,1226634388,1225706425,12.64,11.15,19.37,19.37,0.83,0.69,1.94,1.94
-50604,19,023,19023,1727,788,147251274,147158316,1850,841,184521061,184428103,14867,6682,1506743000,1502533262,93.35,93.7,79.8,79.79,11.62,11.79,9.77,9.79
-50604,19,075,19075,123,53,37269787,37269787,1850,841,184521061,184428103,12453,5530,1299900330,1299805924,6.65,6.3,20.2,20.21,0.99,0.96,2.87,2.87
-50605,19,023,19023,112,57,21764499,21764499,168,85,38865937,38865937,14867,6682,1506743000,1502533262,66.67,67.06,56,56,0.75,0.85,1.44,1.45
-50605,19,069,19069,56,28,17101438,17101438,168,85,38865937,38865937,10680,4894,1508730250,1507301318,33.33,32.94,44,44,0.52,0.57,1.13,1.13
-50606,19,043,19043,17,12,10300206,10300206,885,435,184315162,184256567,18129,8999,2052991683,2016405612,1.92,2.76,5.59,5.59,0.09,0.13,0.5,0.51
-50606,19,065,19065,868,423,174014956,173956361,885,435,184315162,184256567,20880,9558,1894125419,1892791345,98.08,97.24,94.41,94.41,4.16,4.43,9.19,9.19
-50607,19,019,19019,359,169,86519973,86519973,481,213,123088687,123088687,20958,8968,1484362549,1478934897,74.64,79.34,70.29,70.29,1.71,1.88,5.83,5.85
-50607,19,065,19065,122,44,36568714,36568714,481,213,123088687,123088687,20880,9558,1894125419,1892791345,25.36,20.66,29.71,29.71,0.58,0.46,1.93,1.93
-50609,19,075,19075,336,150,57368238,57347809,446,198,89218598,89198169,12453,5530,1299900330,1299805924,75.34,75.76,64.3,64.29,2.7,2.71,4.41,4.41
-50609,19,127,19127,103,45,29250614,29250614,446,198,89218598,89198169,40648,16831,1484573764,1482770678,23.09,22.73,32.79,32.79,0.25,0.27,1.97,1.97
-50609,19,171,19171,7,3,2599746,2599746,446,198,89218598,89198169,17767,7766,1870180568,1867411117,1.57,1.52,2.91,2.91,0.04,0.04,0.14,0.14
-50611,19,023,19023,392,182,78763743,78763743,392,182,78763743,78763743,14867,6682,1506743000,1502533262,100,100,100,100,2.64,2.72,5.23,5.24
-50612,19,013,19013,16,7,9141954,9141954,335,138,57581068,57581068,131090,55887,1483234054,1465333940,4.78,5.07,15.88,15.88,0.01,0.01,0.62,0.62
-50612,19,171,19171,319,131,48439114,48439114,335,138,57581068,57581068,17767,7766,1870180568,1867411117,95.22,94.93,84.12,84.12,1.8,1.69,2.59,2.59
-50613,19,013,19013,41454,16348,271361970,267289123,42031,16583,329972902,325898289,131090,55887,1483234054,1465333940,98.63,98.58,82.24,82.02,31.62,29.25,18.3,18.24
-50613,19,023,19023,44,21,4929803,4928037,42031,16583,329972902,325898289,14867,6682,1506743000,1502533262,0.1,0.13,1.49,1.51,0.3,0.31,0.33,0.33
-50613,19,075,19075,533,214,53681129,53681129,42031,16583,329972902,325898289,12453,5530,1299900330,1299805924,1.27,1.29,16.27,16.47,4.28,3.87,4.13,4.13
-50616,19,037,19037,87,27,25004623,24996975,10344,4841,448105088,447677877,12439,5679,1309648065,1306338733,0.84,0.56,5.58,5.58,0.7,0.48,1.91,1.91
-50616,19,067,19067,10257,4814,423100465,422680902,10344,4841,448105088,447677877,16303,7526,1298573655,1296631086,99.16,99.44,94.42,94.42,62.91,63.96,32.58,32.6
-50619,19,023,19023,2410,1022,230866230,229317854,2410,1022,230866230,229317854,14867,6682,1506743000,1502533262,100,100,100,100,16.21,15.29,15.32,15.26
-50620,19,067,19067,54,27,324589,324589,54,27,324589,324589,16303,7526,1298573655,1296631086,100,100,100,100,0.33,0.36,0.02,0.03
-50621,19,075,19075,1462,665,142548350,142548350,1530,695,165399151,165399151,12453,5530,1299900330,1299805924,95.56,95.68,86.18,86.18,11.74,12.03,10.97,10.97
-50621,19,127,19127,68,30,22850801,22850801,1530,695,165399151,165399151,40648,16831,1484573764,1482770678,4.44,4.32,13.82,13.82,0.17,0.18,1.54,1.54
-50622,19,017,19017,3206,1290,64857976,64784180,3206,1290,64857976,64784180,24276,9915,1138052044,1127880105,100,100,100,100,13.21,13.01,5.7,5.74
-50624,19,075,19075,1743,694,135187133,135187133,1743,694,135187133,135187133,12453,5530,1299900330,1299805924,100,100,100,100,14,12.55,10.4,10.4
-50625,19,023,19023,941,449,129373821,129217001,1004,477,158053593,157866903,14867,6682,1506743000,1502533262,93.73,94.13,81.85,81.85,6.33,6.72,8.59,8.6
-50625,19,069,19069,63,28,28679772,28649902,1004,477,158053593,157866903,10680,4894,1508730250,1507301318,6.27,5.87,18.15,18.15,0.59,0.57,1.9,1.9
-50626,19,013,19013,1804,699,130892804,130268151,1804,699,130892804,130268151,131090,55887,1483234054,1465333940,100,100,100,100,1.38,1.25,8.82,8.89
-50627,19,075,19075,102,52,45282638,45282638,3456,1642,277223505,276457942,12453,5530,1299900330,1299805924,2.95,3.17,16.33,16.38,0.82,0.94,3.48,3.48
-50627,19,083,19083,3354,1590,231940867,231175304,3456,1642,277223505,276457942,17534,8224,1476272566,1474498672,97.05,96.83,83.67,83.62,19.13,19.33,15.71,15.68
-50628,19,089,19089,1318,584,268913636,268728612,1374,602,289356789,289171765,9566,4367,1226634388,1225706425,95.92,97.01,92.93,92.93,13.78,13.37,21.92,21.92
-50628,19,131,19131,56,18,20443153,20443153,1374,602,289356789,289171765,10776,4850,1216167444,1215049026,4.08,2.99,7.07,7.07,0.52,0.37,1.68,1.68
-50629,19,013,19013,162,65,34332494,34057436,2418,969,205328666,204632578,131090,55887,1483234054,1465333940,6.7,6.71,16.72,16.64,0.12,0.12,2.31,2.32
-50629,19,017,19017,272,103,60019254,59665249,2418,969,205328666,204632578,24276,9915,1138052044,1127880105,11.25,10.63,29.23,29.16,1.12,1.04,5.27,5.29
-50629,19,019,19019,1466,597,67797680,67747465,2418,969,205328666,204632578,20958,8968,1484362549,1478934897,60.63,61.61,33.02,33.11,6.99,6.66,4.57,4.58
-50629,19,065,19065,518,204,43179238,43162428,2418,969,205328666,204632578,20880,9558,1894125419,1892791345,21.42,21.05,21.03,21.09,2.48,2.13,2.28,2.28
-50630,19,017,19017,61,32,21091386,20964352,1728,807,214715992,214483346,24276,9915,1138052044,1127880105,3.53,3.97,9.82,9.77,0.25,0.32,1.85,1.86
-50630,19,037,19037,1667,775,193624606,193518994,1728,807,214715992,214483346,12439,5679,1309648065,1306338733,96.47,96.03,90.18,90.23,13.4,13.65,14.78,14.81
-50632,19,127,19127,123,64,1438917,1438917,1107,534,110251250,109710138,40648,16831,1484573764,1482770678,11.11,11.99,1.31,1.31,0.3,0.38,0.1,0.1
-50632,19,171,19171,984,470,108812333,108271221,1107,534,110251250,109710138,17767,7766,1870180568,1867411117,88.89,88.01,98.69,98.69,5.54,6.05,5.82,5.8
-50633,19,069,19069,373,176,103078532,102851181,373,176,103078532,102851181,10680,4894,1508730250,1507301318,100,100,100,100,3.49,3.6,6.83,6.82
-50634,19,013,19013,713,314,1018252,1007524,713,314,1018252,1007524,131090,55887,1483234054,1465333940,100,100,100,100,0.54,0.56,0.07,0.07
-50635,19,127,19127,17,7,6059908,6059908,1602,764,217592812,217592812,40648,16831,1484573764,1482770678,1.06,0.92,2.78,2.78,0.04,0.04,0.41,0.41
-50635,19,171,19171,1585,757,211532904,211532904,1602,764,217592812,217592812,17767,7766,1870180568,1867411117,98.94,99.08,97.22,97.22,8.92,9.75,11.31,11.33
-50636,19,023,19023,1687,829,196297616,195300378,1982,970,313519052,312191604,14867,6682,1506743000,1502533262,85.12,85.46,62.61,62.56,11.35,12.41,13.03,13
-50636,19,067,19067,295,141,117221436,116891226,1982,970,313519052,312191604,16303,7526,1298573655,1296631086,14.88,14.54,37.39,37.44,1.81,1.87,9.03,9.01
-50638,19,075,19075,3313,1521,245826479,245826479,3313,1521,245826479,245826479,12453,5530,1299900330,1299805924,100,100,100,100,26.6,27.5,18.91,18.91
-50641,19,019,19019,2017,726,123019787,122810408,2017,726,123019787,122810408,20958,8968,1484362549,1478934897,100,100,100,100,9.62,8.1,8.29,8.3
-50642,19,075,19075,581,226,83404671,83390897,581,226,83404671,83390897,12453,5530,1299900330,1299805924,100,100,100,100,4.67,4.09,6.42,6.42
-50643,19,013,19013,2719,1117,150273032,149862363,2747,1130,163108458,162697789,131090,55887,1483234054,1465333940,98.98,98.85,92.13,92.11,2.07,2,10.13,10.23
-50643,19,075,19075,28,13,12835426,12835426,2747,1130,163108458,162697789,12453,5530,1299900330,1299805924,1.02,1.15,7.87,7.89,0.22,0.24,0.99,0.99
-50644,19,019,19019,8648,3892,372595201,369298026,8648,3892,372595201,369298026,20958,8968,1484362549,1478934897,100,100,100,100,41.26,43.4,25.1,24.97
-50645,19,017,19017,52,19,12984908,12984908,1204,519,214246026,213772471,24276,9915,1138052044,1127880105,4.32,3.66,6.06,6.07,0.21,0.19,1.14,1.15
-50645,19,037,19037,1124,488,194753312,194279757,1204,519,214246026,213772471,12439,5679,1309648065,1306338733,93.36,94.03,90.9,90.88,9.04,8.59,14.87,14.87
-50645,19,067,19067,28,12,6507806,6507806,1204,519,214246026,213772471,16303,7526,1298573655,1296631086,2.33,2.31,3.04,3.04,0.17,0.16,0.5,0.5
-50647,19,013,19013,657,283,28647453,27944093,1894,821,79065340,77451814,131090,55887,1483234054,1465333940,34.69,34.47,36.23,36.08,0.5,0.51,1.93,1.91
-50647,19,017,19017,1237,538,50417887,49507721,1894,821,79065340,77451814,24276,9915,1138052044,1127880105,65.31,65.53,63.77,63.92,5.1,5.43,4.43,4.39
-50648,19,013,19013,815,300,128302297,128216358,4054,1654,223212718,223049944,131090,55887,1483234054,1465333940,20.1,18.14,57.48,57.48,0.62,0.54,8.65,8.75
-50648,19,019,19019,3239,1354,94910421,94833586,4054,1654,223212718,223049944,20958,8968,1484362549,1478934897,79.9,81.86,42.52,42.52,15.45,15.1,6.39,6.41
-50650,19,019,19019,620,285,74036032,73975730,737,338,106756415,106696113,20958,8968,1484362549,1478934897,84.12,84.32,69.35,69.33,2.96,3.18,4.99,5
-50650,19,065,19065,117,53,32720383,32720383,737,338,106756415,106696113,20880,9558,1894125419,1892791345,15.88,15.68,30.65,30.67,0.56,0.55,1.73,1.73
-50651,19,011,19011,316,118,90044287,90042566,3578,1523,294627077,290042486,26076,11095,1860878112,1855117342,8.83,7.75,30.56,31.04,1.21,1.06,4.84,4.85
-50651,19,013,19013,3262,1405,204582790,199999920,3578,1523,294627077,290042486,131090,55887,1483234054,1465333940,91.17,92.25,69.44,68.96,2.49,2.51,13.79,13.65
-50652,19,171,19171,128,67,605668,605668,128,67,605668,605668,17767,7766,1870180568,1867411117,100,100,100,100,0.72,0.86,0.03,0.03
-50653,19,067,19067,639,299,134748744,133981606,639,299,134748744,133981606,16303,7526,1298573655,1296631086,100,100,100,100,3.92,3.97,10.38,10.33
-50654,19,019,19019,196,85,73401820,73401820,499,213,136188150,136188150,20958,8968,1484362549,1478934897,39.28,39.91,53.9,53.9,0.94,0.95,4.95,4.96
-50654,19,055,19055,303,128,62786330,62786330,499,213,136188150,136188150,17764,8028,1499463649,1496381153,60.72,60.09,46.1,46.1,1.71,1.59,4.19,4.2
-50655,19,065,19065,873,365,91051680,90963065,873,365,91051680,90963065,20880,9558,1894125419,1892791345,100,100,100,100,4.18,3.82,4.81,4.81
-50658,19,037,19037,2250,1078,116786449,114319023,2518,1191,187097603,184273746,12439,5679,1309648065,1306338733,89.36,90.51,62.42,62.04,18.09,18.98,8.92,8.75
-50658,19,067,19067,268,113,70311154,69954723,2518,1191,187097603,184273746,16303,7526,1298573655,1296631086,10.64,9.49,37.58,37.96,1.64,1.5,5.41,5.4
-50659,19,037,19037,5488,2490,403802766,403626744,5488,2490,403802766,403626744,12439,5679,1309648065,1306338733,100,100,100,100,44.12,43.85,30.83,30.9
-50660,19,023,19023,1201,498,81550508,81521061,1333,548,100165022,100135575,14867,6682,1506743000,1502533262,90.1,90.88,81.42,81.41,8.08,7.45,5.41,5.43
-50660,19,075,19075,132,50,18614514,18614514,1333,548,100165022,100135575,12453,5530,1299900330,1299805924,9.9,9.12,18.58,18.59,1.06,0.9,1.43,1.43
-50662,19,019,19019,52,20,2661110,2661110,7238,3402,176049517,175813071,20958,8968,1484362549,1478934897,0.72,0.59,1.51,1.51,0.25,0.22,0.18,0.18
-50662,19,065,19065,7186,3382,173388407,173151961,7238,3402,176049517,175813071,20880,9558,1894125419,1892791345,99.28,99.41,98.49,98.49,34.42,35.38,9.15,9.15
-50664,19,065,19065,53,29,95350,95350,53,29,95350,95350,20880,9558,1894125419,1892791345,100,100,100,100,0.25,0.3,0.01,0.01
-50665,19,023,19023,2495,1122,162244111,162244111,2841,1274,253290828,253290828,14867,6682,1506743000,1502533262,87.82,88.07,64.05,64.05,16.78,16.79,10.77,10.8
-50665,19,075,19075,346,152,91046717,91046717,2841,1274,253290828,253290828,12453,5530,1299900330,1299805924,12.18,11.93,35.95,35.95,2.78,2.75,7,7
-50666,19,017,19017,916,397,109887366,108984320,1027,444,140256035,139333332,24276,9915,1138052044,1127880105,89.19,89.41,78.35,78.22,3.77,4,9.66,9.66
-50666,19,023,19023,111,47,30368669,30349012,1027,444,140256035,139333332,14867,6682,1506743000,1502533262,10.81,10.59,21.65,21.78,0.75,0.7,2.02,2.02
-50667,19,013,19013,795,324,5217793,5217793,795,324,5217793,5217793,131090,55887,1483234054,1465333940,100,100,100,100,0.61,0.58,0.35,0.36
-50668,19,017,19017,1249,525,87689572,87460062,1249,525,87689572,87460062,24276,9915,1138052044,1127880105,100,100,100,100,5.14,5.3,7.71,7.75
-50669,19,013,19013,4,4,2555028,2555028,2436,1128,239750053,239739631,131090,55887,1483234054,1465333940,0.16,0.35,1.07,1.07,0,0.01,0.17,0.17
-50669,19,075,19075,2230,1031,165941990,165931568,2436,1128,239750053,239739631,12453,5530,1299900330,1299805924,91.54,91.4,69.21,69.21,17.91,18.64,12.77,12.77
-50669,19,171,19171,202,93,71253035,71253035,2436,1128,239750053,239739631,17767,7766,1870180568,1867411117,8.29,8.24,29.72,29.72,1.14,1.2,3.81,3.82
-50670,19,017,19017,25,6,1357537,1295763,2024,886,148931701,147693291,24276,9915,1138052044,1127880105,1.24,0.68,0.91,0.88,0.1,0.06,0.12,0.11
-50670,19,023,19023,1999,880,147574164,146397528,2024,886,148931701,147693291,14867,6682,1506743000,1502533262,98.76,99.32,99.09,99.12,13.45,13.17,9.79,9.74
-50671,19,019,19019,172,71,22036778,22036778,269,109,57533274,57516940,20958,8968,1484362549,1478934897,63.94,65.14,38.3,38.31,0.82,0.79,1.48,1.49
-50671,19,065,19065,97,38,35496496,35480162,269,109,57533274,57516940,20880,9558,1894125419,1892791345,36.06,34.86,61.7,61.69,0.46,0.4,1.87,1.87
-50672,19,075,19075,31,15,11510245,11510245,594,289,94993283,94947054,12453,5530,1299900330,1299805924,5.22,5.19,12.12,12.12,0.25,0.27,0.89,0.89
-50672,19,083,19083,563,274,83483038,83436809,594,289,94993283,94947054,17534,8224,1476272566,1474498672,94.78,94.81,87.88,87.88,3.21,3.33,5.65,5.66
-50673,19,075,19075,219,80,444167,444167,219,80,444167,444167,12453,5530,1299900330,1299805924,100,100,100,100,1.76,1.45,0.03,0.03
-50674,19,017,19017,3022,1358,255692168,252294852,3555,1581,408690075,405282166,24276,9915,1138052044,1127880105,85.01,85.9,62.56,62.25,12.45,13.7,22.47,22.37
-50674,19,037,19037,83,35,24388270,24377880,3555,1581,408690075,405282166,12439,5679,1309648065,1306338733,2.33,2.21,5.97,6.02,0.67,0.62,1.86,1.87
-50674,19,065,19065,450,188,128609637,128609434,3555,1581,408690075,405282166,20880,9558,1894125419,1892791345,12.66,11.89,31.47,31.73,2.16,1.97,6.79,6.79
-50675,19,013,19013,23,9,6495058,6495058,2456,1109,287237436,287086664,131090,55887,1483234054,1465333940,0.94,0.81,2.26,2.26,0.02,0.02,0.44,0.44
-50675,19,171,19171,2433,1100,280742378,280591606,2456,1109,287237436,287086664,17767,7766,1870180568,1867411117,99.06,99.19,97.74,97.74,13.69,14.16,15.01,15.03
-50676,19,017,19017,2105,943,148867149,147945860,2105,943,148867149,147945860,24276,9915,1138052044,1127880105,100,100,100,100,8.67,9.51,13.08,13.12
-50677,19,017,19017,12131,4704,325186841,321992838,12131,4704,325186841,321992838,24276,9915,1138052044,1127880105,100,100,100,100,49.97,47.44,28.57,28.55
-50680,19,075,19075,1095,539,138682394,138682394,1095,539,138682394,138682394,12453,5530,1299900330,1299805924,100,100,100,100,8.79,9.75,10.67,10.67
-50681,19,065,19065,457,202,63049395,63049395,457,202,63049395,63049395,20880,9558,1894125419,1892791345,100,100,100,100,2.19,2.11,3.33,3.33
-50682,19,019,19019,1572,643,220982610,220939846,1572,643,220982610,220939846,20958,8968,1484362549,1478934897,100,100,100,100,7.5,7.17,14.89,14.94
-50701,19,013,19013,30324,13837,214718743,211307390,30324,13837,214718743,211307390,131090,55887,1483234054,1465333940,100,100,100,100,23.13,24.76,14.48,14.42
-50702,19,013,19013,19970,8967,25608490,24299017,19970,8967,25608490,24299017,131090,55887,1483234054,1465333940,100,100,100,100,15.23,16.04,1.73,1.66
-50703,19,013,19013,19863,8605,244724015,242656830,19863,8605,244724015,242656830,131090,55887,1483234054,1465333940,100,100,100,100,15.15,15.4,16.5,16.56
-50707,19,013,19013,8509,3603,25361881,25015902,8509,3603,25361881,25015902,131090,55887,1483234054,1465333940,100,100,100,100,6.49,6.45,1.71,1.71
-50801,19,001,19001,116,54,61005544,60804150,9590,4533,545028688,541138684,7682,3698,1477002164,1474404167,1.21,1.19,11.19,11.24,1.51,1.46,4.13,4.12
-50801,19,003,19003,195,95,107571350,107537241,9590,4533,545028688,541138684,4029,2010,1102054156,1096700733,2.03,2.1,19.74,19.87,4.84,4.73,9.76,9.81
-50801,19,175,19175,9279,4384,376451794,372797293,9590,4533,545028688,541138684,12534,5937,1102811646,1097235730,96.76,96.71,69.07,68.89,74.03,73.84,34.14,33.98
-50830,19,175,19175,1743,778,306617835,305947024,1743,778,306617835,305947024,12534,5937,1102811646,1097235730,100,100,100,100,13.91,13.1,27.8,27.88
-50833,19,173,19173,2305,1142,536325319,532934532,2305,1142,536325319,532934532,6317,3107,1384752245,1377618597,100,100,100,100,36.49,36.76,38.73,38.69
-50835,19,159,19159,92,47,43994784,43864480,92,47,43994784,43864480,5131,2613,1395655450,1386933932,100,100,100,100,1.79,1.8,3.15,3.16
-50836,19,159,19159,110,57,95555597,95156688,457,251,232828727,231152011,5131,2613,1395655450,1386933932,24.07,22.71,41.04,41.17,2.14,2.18,6.85,6.86
-50836,19,173,19173,347,194,137273130,135995323,457,251,232828727,231152011,6317,3107,1384752245,1377618597,75.93,77.29,58.96,58.83,5.49,6.24,9.91,9.87
-50837,19,001,19001,334,178,97109210,96893101,376,200,130795854,130570445,7682,3698,1477002164,1474404167,88.83,89,74.24,74.21,4.35,4.81,6.57,6.57
-50837,19,003,19003,22,13,18289778,18289778,376,200,130795854,130570445,4029,2010,1102054156,1096700733,5.85,6.5,13.98,14.01,0.55,0.65,1.66,1.67
-50837,19,029,19029,20,9,15396866,15387566,376,200,130795854,130570445,13956,6591,1463209671,1461450856,5.32,4.5,11.77,11.78,0.14,0.14,1.05,1.05
-50839,19,003,19003,34,21,1828417,1828417,34,21,1828417,1828417,4029,2010,1102054156,1096700733,100,100,100,100,0.84,1.04,0.17,0.17
-50840,19,159,19159,85,41,49623189,49360715,560,267,129948770,129507338,5131,2613,1395655450,1386933932,15.18,15.36,38.19,38.11,1.66,1.57,3.56,3.56
-50840,19,173,19173,475,226,80325581,80146623,560,267,129948770,129507338,6317,3107,1384752245,1377618597,84.82,84.64,61.81,61.89,7.52,7.27,5.8,5.82
-50841,19,003,19003,2696,1359,539372505,534771897,2824,1415,610836196,606076473,4029,2010,1102054156,1096700733,95.47,96.04,88.3,88.24,66.91,67.61,48.94,48.76
-50841,19,173,19173,128,56,71463691,71304576,2824,1415,610836196,606076473,6317,3107,1384752245,1377618597,4.53,3.96,11.7,11.76,2.03,1.8,5.16,5.18
-50842,19,175,19175,105,47,674912,674912,105,47,674912,674912,12534,5937,1102811646,1097235730,100,100,100,100,0.84,0.79,0.06,0.06
-50843,19,003,19003,9,4,14195218,14195218,596,281,195866561,195833833,4029,2010,1102054156,1096700733,1.51,1.42,7.25,7.25,0.22,0.2,1.29,1.29
-50843,19,029,19029,587,277,181671343,181638615,596,281,195866561,195833833,13956,6591,1463209671,1461450856,98.49,98.58,92.75,92.75,4.21,4.2,12.42,12.43
-50845,19,159,19159,763,327,261117836,260000809,811,348,285590236,284295758,5131,2613,1395655450,1386933932,94.08,93.97,91.43,91.45,14.87,12.51,18.71,18.75
-50845,19,175,19175,48,21,24472400,24294949,811,348,285590236,284295758,12534,5937,1102811646,1097235730,5.92,6.03,8.57,8.55,0.38,0.35,2.22,2.21
-50846,19,001,19001,1123,546,238867152,238718135,1123,546,238867152,238718135,7682,3698,1477002164,1474404167,100,100,100,100,14.62,14.76,16.17,16.19
-50847,19,137,19137,87,48,863108,836560,87,48,863108,836560,10740,5239,1100816126,1098405666,100,100,100,100,0.81,0.92,0.08,0.08
-50848,19,173,19173,378,207,117720194,117220734,378,207,117720194,117220734,6317,3107,1384752245,1377618597,100,100,100,100,5.98,6.66,8.5,8.51
-50849,19,001,19001,2740,1338,304431532,303486226,2740,1338,304431532,303486226,7682,3698,1477002164,1474404167,100,100,100,100,35.67,36.18,20.61,20.58
-50851,19,003,19003,244,103,114772925,114412138,2087,969,335214398,333878001,4029,2010,1102054156,1096700733,11.69,10.63,34.24,34.27,6.06,5.12,10.41,10.43
-50851,19,159,19159,24,9,12392310,12315603,2087,969,335214398,333878001,5131,2613,1395655450,1386933932,1.15,0.93,3.7,3.69,0.47,0.34,0.89,0.89
-50851,19,173,19173,1666,784,152259409,151646737,2087,969,335214398,333878001,6317,3107,1384752245,1377618597,79.83,80.91,45.42,45.42,26.37,25.23,11,11.01
-50851,19,175,19175,153,73,55789754,55503523,2087,969,335214398,333878001,12534,5937,1102811646,1097235730,7.33,7.53,16.64,16.62,1.22,1.23,5.06,5.06
-50853,19,003,19003,11,4,3714087,3714087,702,354,195987739,195793685,4029,2010,1102054156,1096700733,1.57,1.13,1.9,1.9,0.27,0.2,0.34,0.34
-50853,19,029,19029,691,350,192273652,192079598,702,354,195987739,195793685,13956,6591,1463209671,1461450856,98.43,98.87,98.1,98.1,4.95,5.31,13.14,13.14
-50854,19,159,19159,2303,1095,350941226,348732719,2303,1095,350941226,348732719,5131,2613,1395655450,1386933932,100,100,100,100,44.88,41.91,25.15,25.14
-50857,19,003,19003,241,125,100041938,99889958,272,140,131265143,131037143,4029,2010,1102054156,1096700733,88.6,89.29,76.21,76.23,5.98,6.22,9.08,9.11
-50857,19,173,19173,31,15,31223205,31147185,272,140,131265143,131037143,6317,3107,1384752245,1377618597,11.4,10.71,23.79,23.77,0.49,0.48,2.25,2.26
-50858,19,001,19001,796,375,206995250,206774627,796,375,206995250,206774627,7682,3698,1477002164,1474404167,100,100,100,100,10.36,10.14,14.01,14.02
-50859,19,001,19001,13,5,9521775,9521775,584,287,206490726,206284787,7682,3698,1477002164,1474404167,2.23,1.74,4.61,4.62,0.17,0.14,0.64,0.65
-50859,19,003,19003,571,282,196968951,196763012,584,287,206490726,206284787,4029,2010,1102054156,1096700733,97.77,98.26,95.39,95.38,14.17,14.03,17.87,17.94
-50860,19,159,19159,474,156,115136578,114501829,474,156,115136578,114501829,5131,2613,1395655450,1386933932,100,100,100,100,9.24,5.97,8.25,8.26
-50861,19,159,19159,52,27,36358890,36173896,274,138,113520838,112876664,5131,2613,1395655450,1386933932,18.98,19.57,32.03,32.05,1.01,1.03,2.61,2.61
-50861,19,175,19175,222,111,77161948,76702768,274,138,113520838,112876664,12534,5937,1102811646,1097235730,81.02,80.43,67.97,67.95,1.77,1.87,7,6.99
-50862,19,173,19173,148,72,56218206,56002793,148,72,56218206,56002793,6317,3107,1384752245,1377618597,100,100,100,100,2.34,2.32,4.06,4.07
-50863,19,159,19159,293,139,78178667,77735238,293,139,78178667,77735238,5131,2613,1395655450,1386933932,100,100,100,100,5.71,5.32,5.6,5.6
-50864,19,003,19003,6,4,5298987,5298987,2057,991,377642994,376870947,4029,2010,1102054156,1096700733,0.29,0.4,1.4,1.41,0.15,0.2,0.48,0.48
-50864,19,029,19029,13,4,4822623,4822623,2057,991,377642994,376870947,13956,6591,1463209671,1461450856,0.63,0.4,1.28,1.28,0.09,0.06,0.33,0.33
-50864,19,137,19137,1773,866,254510953,253794484,2057,991,377642994,376870947,10740,5239,1100816126,1098405666,86.19,87.39,67.39,67.34,16.51,16.53,23.12,23.11
-50864,19,145,19145,197,86,77102103,77083913,2057,991,377642994,376870947,15932,7181,1386853547,1385494422,9.58,8.68,20.42,20.45,1.24,1.2,5.56,5.56
-50864,19,173,19173,68,31,35908328,35870940,2057,991,377642994,376870947,6317,3107,1384752245,1377618597,3.31,3.13,9.51,9.52,1.08,1,2.59,2.6
-51001,19,149,19149,2190,984,256687378,256433535,2432,1086,360862327,360544871,24986,10550,2237059044,2234881736,90.05,90.61,71.13,71.12,8.76,9.33,11.47,11.47
-51001,46,127,46127,242,102,104174949,104111336,2432,1086,360862327,360544871,14399,6280,1209858285,1192797818,9.95,9.39,28.87,28.88,1.68,1.62,8.61,8.73
-51002,19,021,19021,2737,1227,294555770,294458779,2741,1230,297148464,297051473,20260,8237,1502780733,1489022575,99.85,99.76,99.13,99.13,13.51,14.9,19.6,19.78
-51002,19,035,19035,4,3,2592694,2592694,2741,1230,297148464,297051473,12072,5777,1494603558,1494180371,0.15,0.24,0.87,0.87,0.03,0.05,0.17,0.17
-51003,19,167,19167,1700,674,144371109,144294826,1700,674,144371109,144294826,33704,12279,1991677130,1989969635,100,100,100,100,5.04,5.49,7.25,7.25
-51004,19,193,19193,1033,517,212848541,212017049,1033,517,212848541,212017049,102172,41484,2273422909,2260629616,100,100,100,100,1.01,1.25,9.36,9.38
-51005,19,021,19021,59,29,31097546,31085998,1491,675,244170260,244144831,20260,8237,1502780733,1489022575,3.96,4.3,12.74,12.73,0.29,0.35,2.07,2.09
-51005,19,035,19035,1432,646,213072714,213058833,1491,675,244170260,244144831,12072,5777,1494603558,1494180371,96.04,95.7,87.26,87.27,11.86,11.18,14.26,14.26
-51006,19,093,19093,1027,510,181079516,180294261,1075,532,213095547,212288291,7089,3426,1119006114,1117599646,95.53,95.86,84.98,84.93,14.49,14.89,16.18,16.13
-51006,19,193,19193,48,22,32016031,31994030,1075,532,213095547,212288291,102172,41484,2273422909,2260629616,4.47,4.14,15.02,15.07,0.05,0.05,1.41,1.42
-51007,19,193,19193,730,282,87318034,87318034,730,282,87318034,87318034,102172,41484,2273422909,2260629616,100,100,100,100,0.71,0.68,3.84,3.86
-51008,19,149,19149,151,66,630646,630646,151,66,630646,630646,24986,10550,2237059044,2234881736,100,100,100,100,0.6,0.63,0.03,0.03
-51009,19,141,19141,164,82,611821,611821,164,82,611821,611821,14398,6649,1484601539,1484154091,100,100,100,100,1.14,1.23,0.04,0.04
-51010,19,133,19133,456,253,176313125,175387775,456,253,176313125,175387775,9243,4697,1810230174,1797638295,100,100,100,100,4.93,5.39,9.74,9.76
-51011,19,167,19167,79,41,1275286,1275286,79,41,1275286,1275286,33704,12279,1991677130,1989969635,100,100,100,100,0.23,0.33,0.06,0.06
-51012,19,035,19035,6642,3210,386838104,386682411,6642,3210,386838104,386682411,12072,5777,1494603558,1494180371,100,100,100,100,55.02,55.57,25.88,25.88
-51014,19,035,19035,528,258,139646952,139616307,528,258,139646952,139616307,12072,5777,1494603558,1494180371,100,100,100,100,4.37,4.47,9.34,9.34
-51016,19,093,19093,40,21,23221711,23213351,1378,644,262895432,262372029,7089,3426,1119006114,1117599646,2.9,3.26,8.83,8.85,0.56,0.61,2.08,2.08
-51016,19,193,19193,1338,623,239673721,239158678,1378,644,262895432,262372029,102172,41484,2273422909,2260629616,97.1,96.74,91.17,91.15,1.31,1.5,10.54,10.58
-51018,19,093,19093,91,53,49001308,48903024,404,209,95118381,94973523,7089,3426,1119006114,1117599646,22.52,25.36,51.52,51.49,1.28,1.55,4.38,4.38
-51018,19,193,19193,313,156,46117073,46070499,404,209,95118381,94973523,102172,41484,2273422909,2260629616,77.48,74.64,48.48,48.51,0.31,0.38,2.03,2.04
-51019,19,047,19047,35,16,20258176,20199887,773,374,236787928,236507950,17096,6943,1851937168,1849742893,4.53,4.28,8.56,8.54,0.2,0.23,1.09,1.09
-51019,19,093,19093,55,27,30774084,30728766,773,374,236787928,236507950,7089,3426,1119006114,1117599646,7.12,7.22,13,12.99,0.78,0.79,2.75,2.75
-51019,19,193,19193,683,331,185755668,185579297,773,374,236787928,236507950,102172,41484,2273422909,2260629616,88.36,88.5,78.45,78.47,0.67,0.8,8.17,8.21
-51020,19,035,19035,32,16,16807478,16807478,658,292,140577018,140559611,12072,5777,1494603558,1494180371,4.86,5.48,11.96,11.96,0.27,0.28,1.12,1.12
-51020,19,093,19093,578,252,98949375,98931968,658,292,140577018,140559611,7089,3426,1119006114,1117599646,87.84,86.3,70.39,70.38,8.15,7.36,8.84,8.85
-51020,19,161,19161,48,24,24820165,24820165,658,292,140577018,140559611,10350,5429,1497869802,1489272900,7.29,8.22,17.66,17.66,0.46,0.44,1.66,1.67
-51022,19,141,19141,260,104,114322445,114322445,789,350,204082524,204082524,14398,6649,1484601539,1484154091,32.95,29.71,56.02,56.02,1.81,1.56,7.7,7.7
-51022,19,149,19149,6,4,5025064,5025064,789,350,204082524,204082524,24986,10550,2237059044,2234881736,0.76,1.14,2.46,2.46,0.02,0.04,0.22,0.22
-51022,19,167,19167,523,242,84735015,84735015,789,350,204082524,204082524,33704,12279,1991677130,1989969635,66.29,69.14,41.52,41.52,1.55,1.97,4.25,4.26
-51023,19,167,19167,3111,1367,228856232,227891093,3216,1409,271445490,270480351,33704,12279,1991677130,1989969635,96.74,97.02,84.31,84.25,9.23,11.13,11.49,11.45
-51023,46,127,46127,105,42,42589258,42589258,3216,1409,271445490,270480351,14399,6280,1209858285,1192797818,3.26,2.98,15.69,15.75,0.73,0.67,3.52,3.57
-51024,19,149,19149,2070,837,232728447,232644349,2070,837,232728447,232644349,24986,10550,2237059044,2234881736,100,100,100,100,8.28,7.93,10.4,10.41
-51025,19,035,19035,76,35,36215206,36200606,1989,942,278402985,278363472,12072,5777,1494603558,1494180371,3.82,3.72,13.01,13,0.63,0.61,2.42,2.42
-51025,19,093,19093,1913,907,242187779,242162866,1989,942,278402985,278363472,7089,3426,1119006114,1117599646,96.18,96.28,86.99,87,26.99,26.47,21.64,21.67
-51026,19,133,19133,101,55,94372152,94327264,862,418,281235872,280965339,9243,4697,1810230174,1797638295,11.72,13.16,33.56,33.57,1.09,1.17,5.21,5.25
-51026,19,193,19193,761,363,186863720,186638075,862,418,281235872,280965339,102172,41484,2273422909,2260629616,88.28,86.84,66.44,66.43,0.74,0.88,8.22,8.26
-51027,19,149,19149,105,42,37722827,37722827,1260,505,239835719,239811950,24986,10550,2237059044,2234881736,8.33,8.32,15.73,15.73,0.42,0.4,1.69,1.69
-51027,19,167,19167,1155,463,202112892,202089123,1260,505,239835719,239811950,33704,12279,1991677130,1989969635,91.67,91.68,84.27,84.27,3.43,3.77,10.15,10.16
-51028,19,149,19149,1889,839,267215212,267204873,2065,914,328930974,328877363,24986,10550,2237059044,2234881736,91.48,91.79,81.24,81.25,7.56,7.95,11.94,11.96
-51028,19,193,19193,176,75,61715762,61672490,2065,914,328930974,328877363,102172,41484,2273422909,2260629616,8.52,8.21,18.76,18.75,0.17,0.18,2.71,2.73
-51029,19,035,19035,251,125,58631884,58631884,251,125,58631884,58631884,12072,5777,1494603558,1494180371,100,100,100,100,2.08,2.16,3.92,3.92
-51030,19,193,19193,1737,683,153939315,153837616,1737,683,153939315,153837616,102172,41484,2273422909,2260629616,100,100,100,100,1.7,1.65,6.77,6.81
-51031,19,149,19149,12336,5209,605111843,605051258,12336,5209,605111843,605051258,24986,10550,2237059044,2234881736,100,100,100,100,49.37,49.37,27.05,27.07
-51033,19,021,19021,296,163,79863182,79741369,428,231,163475339,163353526,20260,8237,1502780733,1489022575,69.16,70.56,48.85,48.82,1.46,1.98,5.31,5.36
-51033,19,041,19041,132,68,83612157,83612157,428,231,163475339,163353526,16667,8062,1483006155,1469139214,30.84,29.44,51.15,51.18,0.79,0.84,5.64,5.69
-51034,19,047,19047,18,8,10317600,10264456,1820,897,290876284,290256763,17096,6943,1851937168,1849742893,0.99,0.89,3.55,3.54,0.11,0.12,0.56,0.55
-51034,19,133,19133,1726,861,241460524,241020483,1820,897,290876284,290256763,9243,4697,1810230174,1797638295,94.84,95.99,83.01,83.04,18.67,18.33,13.34,13.41
-51034,19,193,19193,76,28,39098160,38971824,1820,897,290876284,290256763,102172,41484,2273422909,2260629616,4.18,3.12,13.44,13.43,0.07,0.07,1.72,1.72
-51035,19,035,19035,1685,786,278976810,278976810,1685,786,278976810,278976810,12072,5777,1494603558,1494180371,100,100,100,100,13.96,13.61,18.67,18.67
-51036,19,167,19167,726,254,114229271,114214650,726,254,114229271,114214650,33704,12279,1991677130,1989969635,100,100,100,100,2.15,2.07,5.74,5.74
-51037,19,035,19035,322,163,61667480,61667480,322,163,61667480,61667480,12072,5777,1494603558,1494180371,100,100,100,100,2.67,2.82,4.13,4.13
-51038,19,149,19149,1535,652,233828323,233784005,1535,652,233828323,233784005,24986,10550,2237059044,2234881736,100,100,100,100,6.14,6.18,10.45,10.46
-51039,19,193,19193,2475,1021,223159311,222604749,2475,1021,223159311,222604749,102172,41484,2273422909,2260629616,100,100,100,100,2.42,2.46,9.82,9.85
-51040,19,133,19133,3712,1906,399810225,394259940,3712,1906,399810225,394259940,9243,4697,1810230174,1797638295,100,100,100,100,40.16,40.58,22.09,21.93
-51041,19,167,19167,6976,2369,184491043,184491043,6976,2369,184491043,184491043,33704,12279,1991677130,1989969635,100,100,100,100,20.7,19.29,9.26,9.27
-51044,19,193,19193,253,131,89839583,89676276,253,131,89839583,89676276,102172,41484,2273422909,2260629616,100,100,100,100,0.25,0.32,3.95,3.97
-51046,19,035,19035,21,13,12279314,12279314,1660,802,240918039,240751766,12072,5777,1494603558,1494180371,1.27,1.62,5.1,5.1,0.17,0.23,0.82,0.82
-51046,19,141,19141,1639,789,228638725,228472452,1660,802,240918039,240751766,14398,6649,1484601539,1484154091,98.73,98.38,94.9,94.9,11.38,11.87,15.4,15.39
-51047,19,021,19021,89,40,50223483,50191727,646,357,200078951,199489849,20260,8237,1502780733,1489022575,13.78,11.2,25.1,25.16,0.44,0.49,3.34,3.37
-51047,19,035,19035,37,16,29081418,29081418,646,357,200078951,199489849,12072,5777,1494603558,1494180371,5.73,4.48,14.53,14.58,0.31,0.28,1.95,1.95
-51047,19,041,19041,502,290,107895327,107340761,646,357,200078951,199489849,16667,8062,1483006155,1469139214,77.71,81.23,53.93,53.81,3.01,3.6,7.28,7.31
-51047,19,141,19141,18,11,12878723,12875943,646,357,200078951,199489849,14398,6649,1484601539,1484154091,2.79,3.08,6.44,6.45,0.13,0.17,0.87,0.87
-51048,19,035,19035,79,40,38766812,38766812,554,261,86240685,86240685,12072,5777,1494603558,1494180371,14.26,15.33,44.95,44.95,0.65,0.69,2.59,2.59
-51048,19,193,19193,475,221,47473873,47473873,554,261,86240685,86240685,102172,41484,2273422909,2260629616,85.74,84.67,55.05,55.05,0.46,0.53,2.09,2.1
-51049,19,035,19035,506,245,113097948,113047876,506,245,113097948,113047876,12072,5777,1494603558,1494180371,100,100,100,100,4.19,4.24,7.57,7.57
-51050,19,149,19149,2631,1085,353266814,353266814,2631,1085,353266814,353266814,24986,10550,2237059044,2234881736,100,100,100,100,10.53,10.28,15.79,15.81
-51051,19,133,19133,90,42,8740209,8724971,90,42,8740209,8724971,9243,4697,1810230174,1797638295,100,100,100,100,0.97,0.89,0.48,0.49
-51052,19,193,19193,1027,448,159659315,155944754,1027,448,159659315,155944754,102172,41484,2273422909,2260629616,100,100,100,100,1.01,1.08,7.02,6.9
-51053,19,093,19093,31,15,22902201,22887026,1161,515,195513267,195409950,7089,3426,1119006114,1117599646,2.67,2.91,11.71,11.71,0.44,0.44,2.05,2.05
-51053,19,161,19161,1130,500,172611066,172522924,1161,515,195513267,195409950,10350,5429,1497869802,1489272900,97.33,97.09,88.29,88.29,10.92,9.21,11.52,11.58
-51054,19,193,19193,5110,1819,106329025,103979705,5110,1819,106329025,103979705,102172,41484,2273422909,2260629616,100,100,100,100,5,4.38,4.68,4.6
-51055,19,133,19133,182,89,80336278,78859210,1319,601,174692448,172795960,9243,4697,1810230174,1797638295,13.8,14.81,45.99,45.64,1.97,1.89,4.44,4.39
-51055,19,193,19193,1137,512,94356170,93936750,1319,601,174692448,172795960,102172,41484,2273422909,2260629616,86.2,85.19,54.01,54.36,1.11,1.23,4.15,4.16
-51056,19,133,19133,15,6,13573172,13510058,478,228,88932213,88612403,9243,4697,1810230174,1797638295,3.14,2.63,15.26,15.25,0.16,0.13,0.75,0.75
-51056,19,193,19193,463,222,75359041,75102345,478,228,88932213,88612403,102172,41484,2273422909,2260629616,96.86,97.37,84.74,84.75,0.45,0.54,3.31,3.32
-51058,19,035,19035,19,9,11063017,11063017,1007,532,214786027,214583720,12072,5777,1494603558,1494180371,1.89,1.69,5.15,5.16,0.16,0.16,0.74,0.74
-51058,19,041,19041,4,4,2645429,2645429,1007,532,214786027,214583720,16667,8062,1483006155,1469139214,0.4,0.75,1.23,1.23,0.02,0.05,0.18,0.18
-51058,19,141,19141,984,519,201077581,200875274,1007,532,214786027,214583720,14398,6649,1484601539,1484154091,97.72,97.56,93.62,93.61,6.83,7.81,13.54,13.53
-51060,19,047,19047,73,32,35926893,35856947,615,322,156247108,156146936,17096,6943,1851937168,1849742893,11.87,9.94,22.99,22.96,0.43,0.46,1.94,1.94
-51060,19,133,19133,542,290,120320215,120289989,615,322,156247108,156146936,9243,4697,1810230174,1797638295,88.13,90.06,77.01,77.04,5.86,6.17,6.65,6.69
-51061,19,035,19035,438,212,95865727,95707431,510,242,121628171,121469875,12072,5777,1494603558,1494180371,85.88,87.6,78.82,78.79,3.63,3.67,6.41,6.41
-51061,19,093,19093,72,30,25762444,25762444,510,242,121628171,121469875,7089,3426,1119006114,1117599646,14.12,12.4,21.18,21.21,1.02,0.88,2.3,2.31
-51062,19,149,19149,526,247,144594267,144480984,526,247,144594267,144480984,24986,10550,2237059044,2234881736,100,100,100,100,2.11,2.34,6.46,6.46
-51063,19,133,19133,1100,484,162058438,159921593,1100,484,162058438,159921593,9243,4697,1810230174,1797638295,100,100,100,100,11.9,10.3,8.95,8.9
-51101,19,193,19193,809,486,3138764,3050811,809,486,3138764,3050811,102172,41484,2273422909,2260629616,100,100,100,100,0.79,1.17,0.14,0.13
-51103,19,193,19193,17453,6410,27863210,27329577,17453,6410,27863210,27329577,102172,41484,2273422909,2260629616,100,100,100,100,17.08,15.45,1.23,1.21
-51104,19,193,19193,22104,8975,20009530,20007969,22104,8975,20009530,20007969,102172,41484,2273422909,2260629616,100,100,100,100,21.63,21.63,0.88,0.89
-51105,19,193,19193,10216,4060,15825592,15751253,10216,4060,15825592,15751253,102172,41484,2273422909,2260629616,100,100,100,100,10,9.79,0.7,0.7
-51106,19,193,19193,26544,11008,81702782,80695546,26544,11008,81702782,80695546,102172,41484,2273422909,2260629616,100,100,100,100,25.98,26.54,3.59,3.57
-51108,19,149,19149,1235,453,60175309,60054977,5566,2263,116455967,116157980,24986,10550,2237059044,2234881736,22.19,20.02,51.67,51.7,4.94,4.29,2.69,2.69
-51108,19,193,19193,4331,1810,56280658,56103003,5566,2263,116455967,116157980,102172,41484,2273422909,2260629616,77.81,79.98,48.33,48.3,4.24,4.36,2.48,2.48
-51109,19,149,19149,312,132,40072914,38582404,3098,1357,49159557,46990825,24986,10550,2237059044,2234881736,10.07,9.73,81.52,82.11,1.25,1.25,1.79,1.73
-51109,19,193,19193,2786,1225,9086643,8408421,3098,1357,49159557,46990825,102172,41484,2273422909,2260629616,89.93,90.27,18.48,17.89,2.73,2.95,0.4,0.37
-51111,19,193,19193,94,56,17993387,17306992,94,56,17993387,17306992,102172,41484,2273422909,2260629616,100,100,100,100,0.09,0.13,0.79,0.77
-51201,19,119,19119,10,5,4238058,4238058,6193,2768,295817592,295733762,11581,4848,1522341602,1522007130,0.16,0.18,1.43,1.43,0.09,0.1,0.28,0.28
-51201,19,141,19141,5500,2489,144186371,144135868,6193,2768,295817592,295733762,14398,6649,1484601539,1484154091,88.81,89.92,48.74,48.74,38.2,37.43,9.71,9.71
-51201,19,167,19167,683,274,147393163,147359836,6193,2768,295817592,295733762,33704,12279,1991677130,1989969635,11.03,9.9,49.83,49.83,2.03,2.23,7.4,7.41
-51230,19,119,19119,462,171,64875507,64875507,462,171,64875507,64875507,11581,4848,1522341602,1522007130,100,100,100,100,3.99,3.53,4.26,4.26
-51231,19,141,19141,282,131,73029493,73029493,282,131,73029493,73029493,14398,6649,1484601539,1484154091,100,100,100,100,1.96,1.97,4.92,4.92
-51232,19,119,19119,109,39,41537585,41537585,875,381,156638511,156584013,11581,4848,1522341602,1522007130,12.46,10.24,26.52,26.53,0.94,0.8,2.73,2.73
-51232,19,143,19143,766,342,115100926,115046428,875,381,156638511,156584013,6462,2990,1034422702,1032587437,87.54,89.76,73.48,73.47,11.85,11.44,11.13,11.14
-51234,19,167,19167,1268,482,129274507,129270904,1268,482,129274507,129270904,33704,12279,1991677130,1989969635,100,100,100,100,3.76,3.93,6.49,6.5
-51235,19,119,19119,1053,378,140349052,140349052,1079,385,144971909,144971909,11581,4848,1522341602,1522007130,97.59,98.18,96.81,96.81,9.09,7.8,9.22,9.22
-51235,19,167,19167,26,7,4622857,4622857,1079,385,144971909,144971909,33704,12279,1991677130,1989969635,2.41,1.82,3.19,3.19,0.08,0.06,0.23,0.23
-51237,19,119,19119,1703,780,249759921,249747863,1703,780,249759921,249747863,11581,4848,1522341602,1522007130,100,100,100,100,14.71,16.09,16.41,16.41
-51238,19,141,19141,116,43,35980271,35980271,1184,484,118831336,118821879,14398,6649,1484601539,1484154091,9.8,8.88,30.28,30.28,0.81,0.65,2.42,2.42
-51238,19,167,19167,1068,441,82851065,82841608,1184,484,118831336,118821879,33704,12279,1991677130,1989969635,90.2,91.12,69.72,69.72,3.17,3.59,4.16,4.16
-51239,19,119,19119,37,14,10057741,10057741,3123,1061,171513941,171486564,11581,4848,1522341602,1522007130,1.18,1.32,5.86,5.87,0.32,0.29,0.66,0.66
-51239,19,167,19167,3086,1047,161456200,161428823,3123,1061,171513941,171486564,33704,12279,1991677130,1989969635,98.82,98.68,94.14,94.13,9.16,8.53,8.11,8.11
-51240,19,119,19119,1606,656,223814389,223541465,1746,696,263161609,262865520,11581,4848,1522341602,1522007130,91.98,94.25,85.05,85.04,13.87,13.53,14.7,14.69
-51240,19,167,19167,140,40,39347220,39324055,1746,696,263161609,262865520,33704,12279,1991677130,1989969635,8.02,5.75,14.95,14.96,0.42,0.33,1.98,1.98
-51241,19,119,19119,1737,691,232767886,232758318,1737,691,232767886,232758318,11581,4848,1522341602,1522007130,100,100,100,100,15,14.25,15.29,15.29
-51242,19,119,19119,212,80,1181066,1181066,212,80,1181066,1181066,11581,4848,1522341602,1522007130,100,100,100,100,1.83,1.65,0.08,0.08
-51243,19,119,19119,773,344,119078297,119078297,807,359,139238401,139202043,11581,4848,1522341602,1522007130,95.79,95.82,85.52,85.54,6.67,7.1,7.82,7.82
-51243,19,143,19143,34,15,20160104,20123746,807,359,139238401,139202043,6462,2990,1034422702,1032587437,4.21,4.18,14.48,14.46,0.53,0.5,1.95,1.95
-51244,19,167,19167,79,32,778428,778428,79,32,778428,778428,33704,12279,1991677130,1989969635,100,100,100,100,0.23,0.26,0.04,0.04
-51245,19,141,19141,1359,638,203413241,203413241,1359,638,203413241,203413241,14398,6649,1484601539,1484154091,100,100,100,100,9.44,9.6,13.7,13.71
-51246,19,119,19119,3844,1678,424515402,424475480,3844,1678,424515402,424475480,11581,4848,1522341602,1522007130,100,100,100,100,33.19,34.61,27.89,27.89
-51247,19,119,19119,35,12,10166698,10166698,4870,1839,289650577,289347761,11581,4848,1522341602,1522007130,0.72,0.65,3.51,3.51,0.3,0.25,0.67,0.67
-51247,19,167,19167,4835,1827,279483879,279181063,4870,1839,289650577,289347761,33704,12279,1991677130,1989969635,99.28,99.35,96.49,96.49,14.35,14.88,14.03,14.03
-51248,19,141,19141,1813,785,193651608,193651608,1857,804,214496950,214496950,14398,6649,1484601539,1484154091,97.63,97.64,90.28,90.28,12.59,11.81,13.04,13.05
-51248,19,143,19143,44,19,20845342,20845342,1857,804,214496950,214496950,6462,2990,1034422702,1032587437,2.37,2.36,9.72,9.72,0.68,0.64,2.02,2.02
-51249,19,143,19143,3593,1617,324743210,324698821,3593,1617,324743210,324698821,6462,2990,1034422702,1032587437,100,100,100,100,55.6,54.08,31.39,31.45
-51250,19,167,19167,8249,2719,186398963,186171025,8249,2719,186398963,186171025,33704,12279,1991677130,1989969635,100,100,100,100,24.47,22.14,9.36,9.36
-51301,19,041,19041,12691,6098,406942409,404708301,12691,6098,406942409,404708301,16667,8062,1483006155,1469139214,100,100,100,100,76.14,75.64,27.44,27.55
-51331,19,059,19059,1140,1506,7122510,4328713,1140,1506,7122510,4328713,16667,12849,1046255166,985764366,100,100,100,100,6.84,11.72,0.68,0.44
-51333,19,041,19041,522,231,170365473,167531168,522,231,170365473,167531168,16667,8062,1483006155,1469139214,100,100,100,100,3.13,2.87,11.49,11.4
-51334,19,059,19059,102,42,51162540,50468733,7661,3466,491781068,485368079,16667,12849,1046255166,985764366,1.33,1.21,10.4,10.4,0.61,0.33,4.89,5.12
-51334,19,063,19063,7559,3424,440618528,434899346,7661,3466,491781068,485368079,10302,4758,1042529516,1025333118,98.67,98.79,89.6,89.6,73.37,71.96,42.26,42.42
-51338,19,041,19041,958,439,151711975,150998950,1000,461,189299930,188586392,16667,8062,1483006155,1469139214,95.8,95.23,80.14,80.07,5.75,5.45,10.23,10.28
-51338,19,059,19059,42,22,37587955,37587442,1000,461,189299930,188586392,16667,12849,1046255166,985764366,4.2,4.77,19.86,19.93,0.25,0.17,3.59,3.81
-51341,19,041,19041,49,30,893950,893950,49,30,893950,893950,16667,8062,1483006155,1469139214,100,100,100,100,0.29,0.37,0.06,0.06
-51342,19,063,19063,103,47,73834806,73652137,1249,609,214231634,214048965,10302,4758,1042529516,1025333118,8.25,7.72,34.46,34.41,1,0.99,7.08,7.18
-51342,19,147,19147,1146,562,140396828,140396828,1249,609,214231634,214048965,9421,4628,1474829287,1460349241,91.75,92.28,65.54,65.59,12.16,12.14,9.52,9.61
-51343,19,041,19041,238,106,65322005,64797509,238,106,65322005,64797509,16667,8062,1483006155,1469139214,100,100,100,100,1.43,1.31,4.4,4.41
-51345,19,059,19059,7,4,1915059,1915059,403,197,146304432,145805647,16667,12849,1046255166,985764366,1.74,2.03,1.31,1.31,0.04,0.03,0.18,0.19
-51345,19,143,19143,396,193,144389373,143890588,403,197,146304432,145805647,6462,2990,1034422702,1032587437,98.26,97.97,98.69,98.69,6.13,6.45,13.96,13.93
-51346,19,041,19041,66,26,31130101,31099851,2451,1141,377358581,377302746,16667,8062,1483006155,1469139214,2.69,2.28,8.25,8.24,0.4,0.32,2.1,2.12
-51346,19,141,19141,2263,1058,276811260,276785675,2451,1141,377358581,377302746,14398,6649,1484601539,1484154091,92.33,92.73,73.35,73.36,15.72,15.91,18.65,18.65
-51346,19,143,19143,122,57,69417220,69417220,2451,1141,377358581,377302746,6462,2990,1034422702,1032587437,4.98,5,18.4,18.4,1.89,1.91,6.71,6.72
-51347,19,059,19059,1431,763,223928450,219032601,1431,763,223928450,219032601,16667,12849,1046255166,985764366,100,100,100,100,8.59,5.94,21.4,22.22
-51350,19,143,19143,411,221,112104258,112104258,411,221,112104258,112104258,6462,2990,1034422702,1032587437,100,100,100,100,6.36,7.39,10.84,10.86
-51351,19,059,19059,4365,2802,278931975,273457209,4365,2802,278931975,273457209,16667,12849,1046255166,985764366,100,100,100,100,26.19,21.81,26.66,27.74
-51354,19,143,19143,1096,526,227662269,226461034,1096,526,227662269,226461034,6462,2990,1034422702,1032587437,100,100,100,100,16.96,17.59,22.01,21.93
-51355,19,059,19059,874,1262,11052693,6366547,874,1262,11052693,6366547,16667,12849,1046255166,985764366,100,100,100,100,5.24,9.82,1.06,0.65
-51357,19,041,19041,728,329,108592195,108592195,728,329,108592195,108592195,16667,8062,1483006155,1469139214,100,100,100,100,4.37,4.08,7.32,7.39
-51358,19,041,19041,203,138,77812156,71672033,1310,767,202954357,189121681,16667,8062,1483006155,1469139214,15.5,17.99,38.34,37.9,1.22,1.71,5.25,4.88
-51358,19,147,19147,1107,629,125142201,117449648,1310,767,202954357,189121681,9421,4628,1474829287,1460349241,84.5,82.01,61.66,62.1,11.75,13.59,8.49,8.04
-51360,19,059,19059,7938,6096,304262323,262316401,8031,6167,334993966,288811859,16667,12849,1046255166,985764366,98.84,98.85,90.83,90.83,47.63,47.44,29.08,26.61
-51360,27,063,27063,93,71,30731643,26495458,8031,6167,334993966,288811859,10266,4990,1862809874,1820713972,1.16,1.15,9.17,9.17,0.91,1.42,1.65,1.46
-51363,19,059,19059,130,60,1050241,1050241,130,60,1050241,1050241,16667,12849,1046255166,985764366,100,100,100,100,0.78,0.47,0.1,0.11
-51364,19,041,19041,26,14,18918181,18918181,690,319,167034887,167034887,16667,8062,1483006155,1469139214,3.77,4.39,11.33,11.33,0.16,0.17,1.28,1.29
-51364,19,059,19059,638,292,129241420,129241420,690,319,167034887,167034887,16667,12849,1046255166,985764366,92.46,91.54,77.37,77.37,3.83,2.27,12.35,13.11
-51364,19,063,19063,26,13,18875286,18875286,690,319,167034887,167034887,10302,4758,1042529516,1025333118,3.77,4.08,11.3,11.3,0.25,0.27,1.81,1.84
-51365,19,063,19063,453,181,58440957,52560020,453,181,58440957,52560020,10302,4758,1042529516,1025333118,100,100,100,100,4.4,3.8,5.61,5.13
-51366,19,021,19021,10,5,3680252,3680252,379,198,163894539,163533985,20260,8237,1502780733,1489022575,2.64,2.53,2.25,2.25,0.05,0.06,0.24,0.25
-51366,19,041,19041,369,193,160214287,159853733,379,198,163894539,163533985,16667,8062,1483006155,1469139214,97.36,97.47,97.75,97.75,2.21,2.39,10.8,10.88
-51401,19,027,19027,12373,5579,454121000,453492483,12373,5579,454121000,453492483,20816,9376,1476980467,1474835105,100,100,100,100,59.44,59.5,30.75,30.75
-51430,19,027,19027,761,313,105531033,105486875,761,313,105531033,105486875,20816,9376,1476980467,1474835105,100,100,100,100,3.66,3.34,7.15,7.15
-51431,19,093,19093,372,191,90432127,90432127,394,198,101935208,101935208,7089,3426,1119006114,1117599646,94.42,96.46,88.72,88.72,5.25,5.58,8.08,8.09
-51431,19,161,19161,22,7,11503081,11503081,394,198,101935208,101935208,10350,5429,1497869802,1489272900,5.58,3.54,11.28,11.28,0.21,0.13,0.77,0.77
-51433,19,025,19025,168,78,59988709,59661113,676,321,147355553,146234075,9670,5108,1481769530,1476209027,24.85,24.3,40.71,40.8,1.74,1.53,4.05,4.04
-51433,19,161,19161,508,243,87366844,86572962,676,321,147355553,146234075,10350,5429,1497869802,1489272900,75.15,75.7,59.29,59.2,4.91,4.48,5.83,5.81
-51436,19,027,19027,766,335,102565415,102547208,904,393,156790205,156771998,20816,9376,1476980467,1474835105,84.73,85.24,65.42,65.41,3.68,3.57,6.94,6.95
-51436,19,047,19047,65,30,30924451,30924451,904,393,156790205,156771998,17096,6943,1851937168,1849742893,7.19,7.63,19.72,19.73,0.38,0.43,1.67,1.67
-51436,19,161,19161,73,28,23300339,23300339,904,393,156790205,156771998,10350,5429,1497869802,1489272900,8.08,7.12,14.86,14.86,0.71,0.52,1.56,1.56
-51439,19,047,19047,1047,507,223476837,223052570,1047,507,223476837,223052570,17096,6943,1851937168,1849742893,100,100,100,100,6.12,7.3,12.07,12.06
-51440,19,027,19027,400,160,66015871,66015871,400,160,66015871,66015871,20816,9376,1476980467,1474835105,100,100,100,100,1.92,1.71,4.47,4.48
-51441,19,047,19047,353,167,40266915,40168897,353,167,40266915,40168897,17096,6943,1851937168,1849742893,100,100,100,100,2.06,2.41,2.17,2.17
-51442,19,047,19047,9838,3614,448677639,448285493,9838,3614,448677639,448285493,17096,6943,1851937168,1849742893,100,100,100,100,57.55,52.05,24.23,24.24
-51443,19,027,19027,1798,798,276442701,275566438,1798,798,276442701,275566438,20816,9376,1476980467,1474835105,100,100,100,100,8.64,8.51,18.72,18.68
-51444,19,027,19027,246,98,422230,422230,246,98,422230,422230,20816,9376,1476980467,1474835105,100,100,100,100,1.18,1.05,0.03,0.03
-51445,19,093,19093,2867,1400,327873042,327461286,2867,1400,327873042,327461286,7089,3426,1119006114,1117599646,100,100,100,100,40.44,40.86,29.3,29.3
-51446,19,165,19165,511,267,90274738,90274738,511,267,90274738,90274738,12167,5542,1531596549,1530110414,100,100,100,100,4.2,4.82,5.89,5.9
-51447,19,165,19165,228,111,90268943,90268943,228,111,90268943,90268943,12167,5542,1531596549,1530110414,100,100,100,100,1.87,2,5.89,5.9
-51448,19,047,19047,504,235,88620159,88587382,611,284,144043445,144010668,17096,6943,1851937168,1849742893,82.49,82.75,61.52,61.51,2.95,3.38,4.79,4.79
-51448,19,093,19093,43,20,26822527,26822527,611,284,144043445,144010668,7089,3426,1119006114,1117599646,7.04,7.04,18.62,18.63,0.61,0.58,2.4,2.4
-51448,19,161,19161,64,29,28600759,28600759,611,284,144043445,144010668,10350,5429,1497869802,1489272900,10.47,10.21,19.86,19.86,0.62,0.53,1.91,1.92
-51449,19,025,19025,2069,997,208117103,207215242,2128,1025,232944822,231509383,9670,5108,1481769530,1476209027,97.23,97.27,89.34,89.51,21.4,19.52,14.05,14.04
-51449,19,027,19027,59,28,24827719,24294141,2128,1025,232944822,231509383,20816,9376,1476980467,1474835105,2.77,2.73,10.66,10.49,0.28,0.3,1.68,1.65
-51450,19,161,19161,1583,1193,157595822,153251668,1583,1193,157595822,153251668,10350,5429,1497869802,1489272900,100,100,100,100,15.29,21.97,10.52,10.29
-51451,19,027,19027,116,72,955449,951902,116,72,955449,951902,20816,9376,1476980467,1474835105,100,100,100,100,0.56,0.77,0.06,0.06
-51453,19,025,19025,647,336,206753385,206722948,695,353,223339647,223309210,9670,5108,1481769530,1476209027,93.09,95.18,92.57,92.57,6.69,6.58,13.95,14
-51453,19,027,19027,48,17,16586262,16586262,695,353,223339647,223309210,20816,9376,1476980467,1474835105,6.91,4.82,7.43,7.43,0.23,0.18,1.12,1.12
-51454,19,047,19047,1102,505,139358159,139244975,1346,617,259313231,259200047,17096,6943,1851937168,1849742893,81.87,81.85,53.74,53.72,6.45,7.27,7.52,7.53
-51454,19,165,19165,244,112,119955072,119955072,1346,617,259313231,259200047,12167,5542,1531596549,1530110414,18.13,18.15,46.26,46.28,2.01,2.02,7.83,7.84
-51455,19,009,19009,124,54,49516953,49516953,2306,1066,287004925,286971140,6119,2972,1148416719,1147264459,5.38,5.07,17.25,17.26,2.03,1.82,4.31,4.32
-51455,19,027,19027,1933,902,164845472,164811687,2306,1066,287004925,286971140,20816,9376,1476980467,1474835105,83.82,84.62,57.44,57.43,9.29,9.62,11.16,11.17
-51455,19,047,19047,238,105,68854729,68854729,2306,1066,287004925,286971140,17096,6943,1851937168,1849742893,10.32,9.85,23.99,23.99,1.39,1.51,3.72,3.72
-51455,19,165,19165,11,5,3787771,3787771,2306,1066,287004925,286971140,12167,5542,1531596549,1530110414,0.48,0.47,1.32,1.32,0.09,0.09,0.25,0.25
-51458,19,161,19161,1467,714,245407583,245286348,1467,714,245407583,245286348,10350,5429,1497869802,1489272900,100,100,100,100,14.17,13.15,16.38,16.47
-51459,19,027,19027,75,42,1355933,1355933,75,42,1355933,1355933,20816,9376,1476980467,1474835105,100,100,100,100,0.36,0.45,0.09,0.09
-51461,19,047,19047,1165,534,130196128,130099954,1165,534,130196128,130099954,17096,6943,1851937168,1849742893,100,100,100,100,6.81,7.69,7.03,7.03
-51462,19,073,19073,1013,506,281553969,279400187,1013,506,281553969,279400187,9336,4546,1479438726,1475188829,100,100,100,100,10.85,11.13,19.03,18.94
-51463,19,027,19027,552,246,77535941,77535941,552,246,77535941,77535941,20816,9376,1476980467,1474835105,100,100,100,100,2.65,2.62,5.25,5.26
-51465,19,047,19047,733,313,141104728,141083054,733,313,141104728,141083054,17096,6943,1851937168,1849742893,100,100,100,100,4.29,4.51,7.62,7.63
-51466,19,161,19161,1092,483,134548626,133431076,1092,483,134548626,133431076,10350,5429,1497869802,1489272900,100,100,100,100,10.55,8.9,8.98,8.96
-51467,19,027,19027,96,38,43152427,43145120,615,284,168975493,168862484,20816,9376,1476980467,1474835105,15.61,13.38,25.54,25.55,0.46,0.41,2.92,2.93
-51467,19,047,19047,519,246,125823066,125717364,615,284,168975493,168862484,17096,6943,1851937168,1849742893,84.39,86.62,74.46,74.45,3.04,3.54,6.79,6.8
-51501,19,155,19155,35406,15072,68663347,62565346,35406,15072,68663347,62565346,93158,39330,2484139689,2461213949,100,100,100,100,38.01,38.32,2.76,2.54
-51503,19,129,19129,194,90,43407004,42288256,36376,15251,311311378,307521189,15059,6109,1141262917,1132956394,0.53,0.59,13.94,13.75,1.29,1.47,3.8,3.73
-51503,19,155,19155,36182,15161,267904374,265232933,36376,15251,311311378,307521189,93158,39330,2484139689,2461213949,99.47,99.41,86.06,86.25,38.84,38.55,10.78,10.78
-51510,19,155,19155,3785,1481,5228569,4841212,3785,1481,5228569,4841212,93158,39330,2484139689,2461213949,100,100,100,100,4.06,3.77,0.21,0.2
-51520,19,047,19047,233,103,48585455,48585455,233,103,48585455,48585455,17096,6943,1851937168,1849742893,100,100,100,100,1.36,1.48,2.62,2.63
-51521,19,155,19155,1885,877,158210153,156971116,2036,938,223264160,222025123,93158,39330,2484139689,2461213949,92.58,93.5,70.86,70.7,2.02,2.23,6.37,6.38
-51521,19,165,19165,151,61,65054007,65054007,2036,938,223264160,222025123,12167,5542,1531596549,1530110414,7.42,6.5,29.14,29.3,1.24,1.1,4.25,4.25
-51523,19,085,19085,15,85,9627806,9246731,357,259,134969227,133141497,14928,6731,1817245559,1804827800,4.2,32.82,7.13,6.95,0.1,1.26,0.53,0.51
-51523,19,133,19133,342,174,125341421,123894766,357,259,134969227,133141497,9243,4697,1810230174,1797638295,95.8,67.18,92.87,93.05,3.7,3.7,6.92,6.89
-51525,19,155,19155,1184,520,158290149,156751446,1184,520,158290149,156751446,93158,39330,2484139689,2461213949,100,100,100,100,1.27,1.32,6.37,6.37
-51526,19,155,19155,1753,761,111333068,108386597,1753,761,111333068,108386597,93158,39330,2484139689,2461213949,100,100,100,100,1.88,1.93,4.48,4.4
-51527,19,047,19047,45,16,17356516,17356516,530,235,101109924,101087935,17096,6943,1851937168,1849742893,8.49,6.81,17.17,17.17,0.26,0.23,0.94,0.94
-51527,19,165,19165,485,219,83753408,83731419,530,235,101109924,101087935,12167,5542,1531596549,1530110414,91.51,93.19,82.83,82.83,3.99,3.95,5.47,5.47
-51528,19,047,19047,931,422,189885849,189303217,931,422,189885849,189303217,17096,6943,1851937168,1849742893,100,100,100,100,5.45,6.08,10.25,10.23
-51529,19,047,19047,197,90,92303868,92157546,1671,798,333953737,333100388,17096,6943,1851937168,1849742893,11.79,11.28,27.64,27.67,1.15,1.3,4.98,4.98
-51529,19,085,19085,1334,650,131735344,131442240,1671,798,333953737,333100388,14928,6731,1817245559,1804827800,79.83,81.45,39.45,39.46,8.94,9.66,7.25,7.28
-51529,19,133,19133,58,28,58432114,58432114,1671,798,333953737,333100388,9243,4697,1810230174,1797638295,3.47,3.51,17.5,17.54,0.63,0.6,3.23,3.25
-51529,19,165,19165,82,30,51482411,51068488,1671,798,333953737,333100388,12167,5542,1531596549,1530110414,4.91,3.76,15.42,15.33,0.67,0.54,3.36,3.34
-51530,19,165,19165,854,364,140370471,140236581,854,364,140370471,140236581,12167,5542,1531596549,1530110414,100,100,100,100,7.02,6.57,9.16,9.17
-51531,19,009,19009,82,32,17271269,17271269,914,383,73952439,73952439,6119,2972,1148416719,1147264459,8.97,8.36,23.35,23.35,1.34,1.08,1.5,1.51
-51531,19,165,19165,832,351,56681170,56681170,914,383,73952439,73952439,12167,5542,1531596549,1530110414,91.03,91.64,76.65,76.65,6.84,6.33,3.7,3.7
-51532,19,029,19029,7,3,3782498,3782498,622,288,147809710,147652406,13956,6591,1463209671,1461450856,1.13,1.04,2.56,2.56,0.05,0.05,0.26,0.26
-51532,19,137,19137,571,264,124853830,124715653,622,288,147809710,147652406,10740,5239,1100816126,1098405666,91.8,91.67,84.47,84.47,5.32,5.04,11.34,11.35
-51532,19,155,19155,44,21,19173382,19154255,622,288,147809710,147652406,93158,39330,2484139689,2461213949,7.07,7.29,12.97,12.97,0.05,0.05,0.77,0.78
-51533,19,129,19129,658,299,96873942,96844182,895,414,213641636,213611876,15059,6109,1141262917,1132956394,73.52,72.22,45.34,45.34,4.37,4.89,8.49,8.55
-51533,19,137,19137,237,115,116767694,116767694,895,414,213641636,213611876,10740,5239,1100816126,1098405666,26.48,27.78,54.66,54.66,2.21,2.2,10.61,10.63
-51534,19,129,19129,9236,3545,260803050,259972070,9236,3545,260803050,259972070,15059,6109,1141262917,1132956394,100,100,100,100,61.33,58.03,22.85,22.95
-51535,19,029,19029,1618,764,192280782,192280782,1923,900,337126792,337106413,13956,6591,1463209671,1461450856,84.14,84.89,57.04,57.04,11.59,11.59,13.14,13.16
-51535,19,155,19155,305,136,144846010,144825631,1923,900,337126792,337106413,93158,39330,2484139689,2461213949,15.86,15.11,42.96,42.96,0.33,0.35,5.83,5.88
-51536,19,155,19155,448,210,124955843,124194420,448,210,124955843,124194420,93158,39330,2484139689,2461213949,100,100,100,100,0.48,0.53,5.03,5.05
-51537,19,165,19165,6703,3069,422332929,421573846,6703,3069,422332929,421573846,12167,5542,1531596549,1530110414,100,100,100,100,55.09,55.38,27.57,27.55
-51540,19,129,19129,449,211,141382464,140723810,449,211,141382464,140723810,15059,6109,1141262917,1132956394,100,100,100,100,2.98,3.45,12.39,12.42
-51541,19,129,19129,317,147,78304372,77894243,363,169,106735256,106325127,15059,6109,1141262917,1132956394,87.33,86.98,73.36,73.26,2.11,2.41,6.86,6.88
-51541,19,137,19137,17,9,15191400,15191400,363,169,106735256,106325127,10740,5239,1100816126,1098405666,4.68,5.33,14.23,14.29,0.16,0.17,1.38,1.38
-51541,19,155,19155,29,13,13239484,13239484,363,169,106735256,106325127,93158,39330,2484139689,2461213949,7.99,7.69,12.4,12.45,0.03,0.03,0.53,0.54
-51542,19,155,19155,1011,417,92880710,92260796,1011,417,92880710,92260796,93158,39330,2484139689,2461213949,100,100,100,100,1.09,1.06,3.74,3.75
-51543,19,009,19009,401,192,38715997,38715997,445,210,57402651,57402651,6119,2972,1148416719,1147264459,90.11,91.43,67.45,67.45,6.55,6.46,3.37,3.37
-51543,19,165,19165,44,18,18686654,18686654,445,210,57402651,57402651,12167,5542,1531596549,1530110414,9.89,8.57,32.55,32.55,0.36,0.32,1.22,1.22
-51544,19,029,19029,676,302,106230551,106149077,721,331,145135032,145030361,13956,6591,1463209671,1461450856,93.76,91.24,73.19,73.19,4.84,4.58,7.26,7.26
-51544,19,155,19155,45,29,38904481,38881284,721,331,145135032,145030361,93158,39330,2484139689,2461213949,6.24,8.76,26.81,26.81,0.05,0.07,1.57,1.58
-51545,19,085,19085,354,206,81390592,79183726,378,219,116122152,113915286,14928,6731,1817245559,1804827800,93.65,94.06,70.09,69.51,2.37,3.06,4.48,4.39
-51545,19,133,19133,24,13,34731560,34731560,378,219,116122152,113915286,9243,4697,1810230174,1797638295,6.35,5.94,29.91,30.49,0.26,0.28,1.92,1.93
-51546,19,085,19085,2915,1182,293310022,292960399,2915,1182,293310022,292960399,14928,6731,1817245559,1804827800,100,100,100,100,19.53,17.56,16.14,16.23
-51548,19,155,19155,433,175,64393248,64393248,433,175,64393248,64393248,93158,39330,2484139689,2461213949,100,100,100,100,0.46,0.44,2.59,2.62
-51549,19,155,19155,465,221,84699901,84609734,465,221,84699901,84609734,93158,39330,2484139689,2461213949,100,100,100,100,0.5,0.56,3.41,3.44
-51550,19,085,19085,181,86,1456103,1456103,181,86,1456103,1456103,14928,6731,1817245559,1804827800,100,100,100,100,1.21,1.28,0.08,0.08
-51551,19,129,19129,1828,791,210796119,209838981,1828,791,210796119,209838981,15059,6109,1141262917,1132956394,100,100,100,100,12.14,12.95,18.47,18.52
-51552,19,029,19029,236,112,53940753,53940753,301,141,91256513,91256513,13956,6591,1463209671,1461450856,78.41,79.43,59.11,59.11,1.69,1.7,3.69,3.69
-51552,19,165,19165,65,29,37315760,37315760,301,141,91256513,91256513,12167,5542,1531596549,1530110414,21.59,20.57,40.89,40.89,0.53,0.52,2.44,2.44
-51553,19,155,19155,1013,412,118587348,118479391,1013,412,118587348,118479391,93158,39330,2484139689,2461213949,100,100,100,100,1.09,1.05,4.77,4.81
-51554,19,129,19129,187,75,6840874,6840874,187,75,6840874,6840874,15059,6109,1141262917,1132956394,100,100,100,100,1.24,1.23,0.6,0.6
-51555,19,085,19085,4935,2148,332711933,328761702,5245,2280,410136654,403793188,14928,6731,1817245559,1804827800,94.09,94.21,81.12,81.42,33.06,31.91,18.31,18.22
-51555,19,155,19155,310,132,77424721,75031486,5245,2280,410136654,403793188,93158,39330,2484139689,2461213949,5.91,5.79,18.88,18.58,0.33,0.34,3.12,3.05
-51556,19,085,19085,437,219,117494595,114386041,437,219,117494595,114386041,14928,6731,1817245559,1804827800,100,100,100,100,2.93,3.25,6.47,6.34
-51557,19,085,19085,833,394,176921757,176196622,873,474,181091843,180194271,14928,6731,1817245559,1804827800,95.42,83.12,97.7,97.78,5.58,5.85,9.74,9.76
-51557,31,021,31021,40,80,4170086,3997649,873,474,181091843,180194271,6858,3467,1287387501,1273189665,4.58,16.88,2.3,2.22,0.58,2.31,0.32,0.31
-51558,19,085,19085,63,33,33039205,33039205,560,297,213388981,213130775,14928,6731,1817245559,1804827800,11.25,11.11,15.48,15.5,0.42,0.49,1.82,1.83
-51558,19,133,19133,497,264,180349776,180091570,560,297,213388981,213130775,9243,4697,1810230174,1797638295,88.75,88.89,84.52,84.5,5.38,5.62,9.96,10.02
-51559,19,085,19085,89,43,38641623,38603982,1788,748,220723262,220153489,14928,6731,1817245559,1804827800,4.98,5.75,17.51,17.54,0.6,0.64,2.13,2.14
-51559,19,155,19155,1699,705,182081639,181549507,1788,748,220723262,220153489,93158,39330,2484139689,2461213949,95.02,94.25,82.49,82.46,1.82,1.79,7.33,7.38
-51560,19,155,19155,2099,923,254891645,252153928,2099,923,254891645,252153928,93158,39330,2484139689,2461213949,100,100,100,100,2.25,2.35,10.26,10.25
-51561,19,129,19129,1455,616,159384280,155128903,1455,616,159384280,155128903,15059,6109,1141262917,1132956394,100,100,100,100,9.66,10.08,13.97,13.69
-51562,19,165,19165,449,204,87966803,87844180,449,204,87966803,87844180,12167,5542,1531596549,1530110414,100,100,100,100,3.69,3.68,5.74,5.74
-51563,19,085,19085,779,316,142269566,142055146,779,316,142269566,142055146,14928,6731,1817245559,1804827800,100,100,100,100,5.22,4.69,7.83,7.87
-51564,19,085,19085,501,254,103461051,103451375,501,254,103461051,103451375,14928,6731,1817245559,1804827800,100,100,100,100,3.36,3.77,5.69,5.73
-51565,19,085,19085,64,33,32612515,32612515,501,233,126128110,126093483,14928,6731,1817245559,1804827800,12.77,14.16,25.86,25.86,0.43,0.49,1.79,1.81
-51565,19,165,19165,437,200,93515595,93480968,501,233,126128110,126093483,12167,5542,1531596549,1530110414,87.23,85.84,74.14,74.14,3.59,3.61,6.11,6.11
-51566,19,137,19137,6955,3446,424408083,422948532,7035,3478,457891547,456411140,10740,5239,1100816126,1098405666,98.86,99.08,92.69,92.67,64.76,65.78,38.55,38.51
-51566,19,145,19145,67,25,26399034,26399034,7035,3478,457891547,456411140,15932,7181,1386853547,1385494422,0.95,0.72,5.77,5.78,0.42,0.35,1.9,1.91
-51566,19,155,19155,13,7,7084430,7063574,7035,3478,457891547,456411140,93158,39330,2484139689,2461213949,0.18,0.2,1.55,1.55,0.01,0.02,0.29,0.29
-51570,19,085,19085,88,31,21152561,21004148,1039,474,166695973,166547560,14928,6731,1817245559,1804827800,8.47,6.54,12.69,12.61,0.59,0.46,1.16,1.16
-51570,19,155,19155,136,58,52361176,52361176,1039,474,166695973,166547560,93158,39330,2484139689,2461213949,13.09,12.24,31.41,31.44,0.15,0.15,2.11,2.13
-51570,19,165,19165,815,385,93182236,93182236,1039,474,166695973,166547560,12167,5542,1531596549,1530110414,78.44,81.22,55.9,55.95,6.7,6.95,6.08,6.09
-51571,19,129,19129,493,226,81954338,81951232,649,285,121369661,121295400,15059,6109,1141262917,1132956394,75.96,79.3,67.52,67.56,3.27,3.7,7.18,7.23
-51571,19,155,19155,156,59,39415323,39344168,649,285,121369661,121295400,93158,39330,2484139689,2461213949,24.04,20.7,32.48,32.44,0.17,0.15,1.59,1.6
-51572,19,133,19133,398,232,114390965,114187002,398,232,114390965,114187002,9243,4697,1810230174,1797638295,100,100,100,100,4.31,4.94,6.32,6.35
-51573,19,137,19137,1093,484,156152123,156082408,1093,484,156152123,156082408,10740,5239,1100816126,1098405666,100,100,100,100,10.18,9.24,14.19,14.21
-51575,19,155,19155,1616,642,126569658,126543884,1616,642,126569658,126543884,93158,39330,2484139689,2461213949,100,100,100,100,1.73,1.63,5.1,5.14
-51576,19,155,19155,2110,769,130453907,129895387,2110,769,130453907,129895387,93158,39330,2484139689,2461213949,100,100,100,100,2.26,1.96,5.25,5.28
-51577,19,155,19155,1031,529,142547123,142483946,1184,594,206979038,206915861,93158,39330,2484139689,2461213949,87.08,89.06,68.87,68.86,1.11,1.35,5.74,5.79
-51577,19,165,19165,153,65,64431915,64431915,1184,594,206979038,206915861,12167,5542,1531596549,1530110414,12.92,10.94,31.13,31.14,1.26,1.17,4.21,4.21
-51578,19,165,19165,79,37,96684,96684,79,37,96684,96684,12167,5542,1531596549,1530110414,100,100,100,100,0.65,0.67,0.01,0.01
-51579,19,085,19085,2340,1051,301420886,300427865,2340,1051,301420886,300427865,14928,6731,1817245559,1804827800,100,100,100,100,15.68,15.61,16.59,16.65
-51601,19,071,19071,248,119,103566035,103566035,6025,3001,276342590,276049821,7441,3431,1338087051,1323872918,4.12,3.97,37.48,37.52,3.33,3.47,7.74,7.82
-51601,19,145,19145,5777,2882,172776555,172483786,6025,3001,276342590,276049821,15932,7181,1386853547,1385494422,95.88,96.03,62.52,62.48,36.26,40.13,12.46,12.45
-51630,19,145,19145,173,88,65739953,65739953,173,88,65739953,65739953,15932,7181,1386853547,1385494422,100,100,100,100,1.09,1.23,4.74,4.74
-51631,19,145,19145,306,162,95851302,95638364,306,162,95851302,95638364,15932,7181,1386853547,1385494422,100,100,100,100,1.92,2.26,6.91,6.9
-51632,19,145,19145,7289,2939,537538725,537160949,7297,2942,540669979,540292203,15932,7181,1386853547,1385494422,99.89,99.9,99.42,99.42,45.75,40.93,38.76,38.77
-51632,19,173,19173,8,3,3131254,3131254,7297,2942,540669979,540292203,6317,3107,1384752245,1377618597,0.11,0.1,0.58,0.58,0.13,0.1,0.23,0.23
-51636,19,145,19145,405,215,144434643,144434643,405,215,144434643,144434643,15932,7181,1386853547,1385494422,100,100,100,100,2.54,2.99,10.41,10.42
-51637,19,145,19145,214,91,4185566,4185566,214,91,4185566,4185566,15932,7181,1386853547,1385494422,100,100,100,100,1.34,1.27,0.3,0.3
-51638,19,137,19137,7,7,8068935,8068935,1299,598,220766642,220309190,10740,5239,1100816126,1098405666,0.54,1.17,3.65,3.66,0.07,0.13,0.73,0.73
-51638,19,145,19145,1292,591,212697707,212240255,1299,598,220766642,220309190,15932,7181,1386853547,1385494422,99.46,98.83,96.35,96.34,8.11,8.23,15.34,15.32
-51639,19,071,19071,795,383,186791020,186680453,795,383,186791020,186680453,7441,3431,1338087051,1323872918,100,100,100,100,10.68,11.16,13.96,14.1
-51640,19,071,19071,1737,839,259164548,257049035,1748,848,313989946,310350585,7441,3431,1338087051,1323872918,99.37,98.94,82.54,82.83,23.34,24.45,19.37,19.42
-51640,29,005,29005,11,9,54825398,53301550,1748,848,313989946,310350585,5685,2985,1424824918,1417505255,0.63,1.06,17.46,17.17,0.19,0.3,3.85,3.76
-51645,19,071,19071,187,80,67783130,67783130,262,116,107043333,107043333,7441,3431,1338087051,1323872918,71.37,68.97,63.32,63.32,2.51,2.33,5.07,5.12
-51645,19,129,19129,75,36,39260203,39260203,262,116,107043333,107043333,15059,6109,1141262917,1132956394,28.63,31.03,36.68,36.68,0.5,0.59,3.44,3.47
-51646,19,173,19173,763,377,162903928,162217900,763,377,162903928,162217900,6317,3107,1384752245,1377618597,100,100,100,100,12.08,12.13,11.76,11.78
-51647,19,145,19145,141,72,49689882,49689882,141,72,49689882,49689882,15932,7181,1386853547,1385494422,100,100,100,100,0.89,1,3.58,3.59
-51648,19,071,19071,255,123,130838045,127267334,255,123,130838045,127267334,7441,3431,1338087051,1323872918,100,100,100,100,3.43,3.58,9.78,9.61
-51649,19,071,19071,328,161,106334486,105693737,328,161,106334486,105693737,7441,3431,1338087051,1323872918,100,100,100,100,4.41,4.69,7.95,7.98
-51650,19,071,19071,370,180,78508646,75412280,370,180,78508646,75412280,7441,3431,1338087051,1323872918,100,100,100,100,4.97,5.25,5.87,5.7
-51652,19,071,19071,1783,781,200054769,198939709,1783,781,200054769,198939709,7441,3431,1338087051,1323872918,100,100,100,100,23.96,22.76,14.95,15.03
-51653,19,071,19071,1212,522,67256261,67097218,1379,595,89512532,89310858,7441,3431,1338087051,1323872918,87.89,87.73,75.14,75.13,16.29,15.21,5.03,5.07
-51653,19,129,19129,167,73,22256271,22213640,1379,595,89512532,89310858,15059,6109,1141262917,1132956394,12.11,12.27,24.86,24.87,1.11,1.19,1.95,1.96
-51654,19,071,19071,526,243,137790111,134383987,526,243,137790111,134383987,7441,3431,1338087051,1323872918,100,100,100,100,7.07,7.08,10.3,10.15
-51656,19,145,19145,71,30,438077,438077,71,30,438077,438077,15932,7181,1386853547,1385494422,100,100,100,100,0.45,0.42,0.03,0.03
-52001,19,061,19061,43173,18680,75057763,67709949,43173,18680,75057763,67709949,93653,38951,1597070758,1575501687,100,100,100,100,46.1,47.96,4.7,4.3
-52002,19,061,19061,14559,5827,74769470,74769470,14559,5827,74769470,74769470,93653,38951,1597070758,1575501687,100,100,100,100,15.55,14.96,4.68,4.75
-52003,19,061,19061,13436,5553,151954104,146018984,13436,5553,151954104,146018984,93653,38951,1597070758,1575501687,100,100,100,100,14.35,14.26,9.51,9.27
-52030,19,097,19097,434,173,690483,690483,434,173,690483,690483,19848,9415,1682474489,1647332960,100,100,100,100,2.19,1.84,0.04,0.04
-52031,19,061,19061,466,202,22795569,22795569,5120,2462,448070077,434689857,93653,38951,1597070758,1575501687,9.1,8.2,5.09,5.24,0.5,0.52,1.43,1.45
-52031,19,097,19097,4654,2260,425274508,411894288,5120,2462,448070077,434689857,19848,9415,1682474489,1647332960,90.9,91.8,94.91,94.76,23.45,24,25.28,25
-52032,19,061,19061,730,295,130587375,130587375,1456,828,272572418,272313928,93653,38951,1597070758,1575501687,50.14,35.63,47.91,47.95,0.78,0.76,8.18,8.29
-52032,19,097,19097,666,505,122328241,122069751,1456,828,272572418,272313928,19848,9415,1682474489,1647332960,45.74,60.99,44.88,44.83,3.36,5.36,7.27,7.41
-52032,19,105,19105,60,28,19656802,19656802,1456,828,272572418,272313928,20638,8911,1494433731,1490851138,4.12,3.38,7.21,7.22,0.29,0.31,1.32,1.32
-52033,19,061,19061,2248,993,105770217,105770217,3202,1372,252635822,252635822,93653,38951,1597070758,1575501687,70.21,72.38,41.87,41.87,2.4,2.55,6.62,6.71
-52033,19,105,19105,954,379,146865605,146865605,3202,1372,252635822,252635822,20638,8911,1494433731,1490851138,29.79,27.62,58.13,58.13,4.62,4.25,9.83,9.85
-52035,19,043,19043,415,188,88170817,88160422,1010,468,139028244,139017849,18129,8999,2052991683,2016405612,41.09,40.17,63.42,63.42,2.29,2.09,4.29,4.37
-52035,19,055,19055,595,280,50857427,50857427,1010,468,139028244,139017849,17764,8028,1499463649,1496381153,58.91,59.83,36.58,36.58,3.35,3.49,3.39,3.4
-52037,19,045,19045,1204,505,172874336,172829769,1223,515,176775293,176730726,49116,21733,1839345041,1799821282,98.45,98.06,97.79,97.79,2.45,2.32,9.4,9.6
-52037,19,097,19097,19,10,3900957,3900957,1223,515,176775293,176730726,19848,9415,1682474489,1647332960,1.55,1.94,2.21,2.21,0.1,0.11,0.23,0.24
-52038,19,055,19055,491,223,76611993,76144562,491,223,76611993,76144562,17764,8028,1499463649,1496381153,100,100,100,100,2.76,2.78,5.11,5.09
-52039,19,061,19061,1158,435,91068312,91068312,1158,435,91068312,91068312,93653,38951,1597070758,1575501687,100,100,100,100,1.24,1.12,5.7,5.78
-52040,19,055,19055,881,307,79457351,79420452,5526,2330,157748966,157677619,17764,8028,1499463649,1496381153,15.94,13.18,50.37,50.37,4.96,3.82,5.3,5.31
-52040,19,061,19061,4645,2023,78291615,78257167,5526,2330,157748966,157677619,93653,38951,1597070758,1575501687,84.06,86.82,49.63,49.63,4.96,5.19,4.9,4.97
-52041,19,055,19055,1608,631,155040397,155013681,1608,631,155040397,155013681,17764,8028,1499463649,1496381153,100,100,100,100,9.05,7.86,10.34,10.36
-52042,19,043,19043,1235,425,129829781,129809417,1999,763,161463192,161442828,18129,8999,2052991683,2016405612,61.78,55.7,80.41,80.41,6.81,4.72,6.32,6.44
-52042,19,055,19055,764,338,31633411,31633411,1999,763,161463192,161442828,17764,8028,1499463649,1496381153,38.22,44.3,19.59,19.59,4.3,4.21,2.11,2.11
-52043,19,043,19043,2321,1141,258435335,258435335,2321,1141,258435335,258435335,18129,8999,2052991683,2016405612,100,100,100,100,12.8,12.68,12.59,12.82
-52044,19,043,19043,153,68,31383574,31383574,153,68,31383574,31383574,18129,8999,2052991683,2016405612,100,100,100,100,0.84,0.76,1.53,1.56
-52045,19,061,19061,2589,905,123925080,123925080,2589,905,123925080,123925080,93653,38951,1597070758,1575501687,100,100,100,100,2.76,2.32,7.76,7.87
-52046,19,061,19061,2127,815,119196635,119196635,2127,815,119196635,119196635,93653,38951,1597070758,1575501687,100,100,100,100,2.27,2.09,7.46,7.57
-52047,19,043,19043,567,260,88328123,88304462,567,260,88328123,88304462,18129,8999,2052991683,2016405612,100,100,100,100,3.13,2.89,4.3,4.38
-52048,19,043,19043,333,166,85789255,85789255,333,166,85789255,85789255,18129,8999,2052991683,2016405612,100,100,100,100,1.84,1.84,4.18,4.25
-52049,19,043,19043,1270,696,188393273,179161503,1270,696,188393273,179161503,18129,8999,2052991683,2016405612,100,100,100,100,7.01,7.73,9.18,8.89
-52050,19,043,19043,28,13,9179283,9143614,515,214,84028046,83972685,18129,8999,2052991683,2016405612,5.44,6.07,10.92,10.89,0.15,0.14,0.45,0.45
-52050,19,055,19055,487,201,74848763,74829071,515,214,84028046,83972685,17764,8028,1499463649,1496381153,94.56,93.93,89.08,89.11,2.74,2.5,4.99,5
-52052,19,043,19043,2984,1780,224038570,205311885,3136,1831,249000350,230273665,18129,8999,2052991683,2016405612,95.15,97.21,89.98,89.16,16.46,19.78,10.91,10.18
-52052,19,061,19061,152,51,24961780,24961780,3136,1831,249000350,230273665,93653,38951,1597070758,1575501687,4.85,2.79,10.02,10.84,0.16,0.13,1.56,1.58
-52053,19,043,19043,210,90,39169867,37994868,1163,453,154540299,153365300,18129,8999,2052991683,2016405612,18.06,19.87,25.35,24.77,1.16,1,1.91,1.88
-52053,19,061,19061,953,363,115370432,115370432,1163,453,154540299,153365300,93653,38951,1597070758,1575501687,81.94,80.13,74.65,75.23,1.02,0.93,7.22,7.32
-52054,19,061,19061,98,32,6181969,6181969,940,371,138186180,138186180,93653,38951,1597070758,1575501687,10.43,8.63,4.47,4.47,0.1,0.08,0.39,0.39
-52054,19,097,19097,842,339,132004211,132004211,940,371,138186180,138186180,19848,9415,1682474489,1647332960,89.57,91.37,95.53,95.53,4.24,3.6,7.85,8.01
-52057,19,055,19055,8222,3752,362350079,361760049,8222,3752,362350079,361760049,17764,8028,1499463649,1496381153,100,100,100,100,46.28,46.74,24.17,24.18
-52060,19,045,19045,156,64,47762785,47762785,8658,3988,409835195,408401938,49116,21733,1839345041,1799821282,1.8,1.6,11.65,11.7,0.32,0.29,2.6,2.65
-52060,19,097,19097,8502,3924,362072410,360639153,8658,3988,409835195,408401938,19848,9415,1682474489,1647332960,98.2,98.4,88.35,88.3,42.84,41.68,21.52,21.89
-52064,19,045,19045,67,25,15632649,15632649,847,382,107540582,106639281,49116,21733,1839345041,1799821282,7.91,6.54,14.54,14.66,0.14,0.12,0.85,0.87
-52064,19,097,19097,780,357,91907933,91006632,847,382,107540582,106639281,19848,9415,1682474489,1647332960,92.09,93.46,85.46,85.34,3.93,3.79,5.46,5.52
-52065,19,055,19055,141,54,37715744,37694383,1130,456,131382162,131360801,17764,8028,1499463649,1496381153,12.48,11.84,28.71,28.7,0.79,0.67,2.52,2.52
-52065,19,061,19061,989,402,93666418,93666418,1130,456,131382162,131360801,93653,38951,1597070758,1575501687,87.52,88.16,71.29,71.3,1.06,1.03,5.86,5.95
-52066,19,043,19043,80,132,681956,681956,80,132,681956,681956,18129,8999,2052991683,2016405612,100,100,100,100,0.44,1.47,0.03,0.03
-52068,19,061,19061,3924,1387,120418986,120418986,3924,1387,120418986,120418986,93653,38951,1597070758,1575501687,100,100,100,100,4.19,3.56,7.54,7.64
-52069,19,045,19045,110,49,29033563,29033563,1609,708,133277674,132636290,49116,21733,1839345041,1799821282,6.84,6.92,21.78,21.89,0.22,0.23,1.58,1.61
-52069,19,097,19097,1499,659,104244111,103602727,1609,708,133277674,132636290,19848,9415,1682474489,1647332960,93.16,93.08,78.22,78.11,7.55,7,6.2,6.29
-52070,19,045,19045,123,63,27754103,19872254,1128,590,154415679,128888564,49116,21733,1839345041,1799821282,10.9,10.68,17.97,15.42,0.25,0.29,1.51,1.1
-52070,19,097,19097,1005,527,126661576,109016310,1128,590,154415679,128888564,19848,9415,1682474489,1647332960,89.1,89.32,82.03,84.58,5.06,5.6,7.53,6.62
-52072,19,043,19043,381,173,87106056,87106056,381,173,87106056,87106056,18129,8999,2052991683,2016405612,100,100,100,100,2.1,1.92,4.24,4.32
-52073,19,043,19043,30,14,14752071,10740464,1414,589,139623458,127405862,18129,8999,2052991683,2016405612,2.12,2.38,10.57,8.43,0.17,0.16,0.72,0.53
-52073,19,061,19061,1384,575,124871387,116665398,1414,589,139623458,127405862,93653,38951,1597070758,1575501687,97.88,97.62,89.43,91.57,1.48,1.48,7.82,7.4
-52074,19,097,19097,310,139,80684903,79898449,310,139,80684903,79898449,19848,9415,1682474489,1647332960,100,100,100,100,1.56,1.48,4.8,4.85
-52076,19,043,19043,2160,972,215833553,215833553,2295,1031,252900986,252900986,18129,8999,2052991683,2016405612,94.12,94.28,85.34,85.34,11.91,10.8,10.51,10.7
-52076,19,055,19055,129,55,35217926,35217926,2295,1031,252900986,252900986,17764,8028,1499463649,1496381153,5.62,5.33,13.93,13.93,0.73,0.69,2.35,2.35
-52076,19,065,19065,6,4,1849507,1849507,2295,1031,252900986,252900986,20880,9558,1894125419,1892791345,0.26,0.39,0.73,0.73,0.03,0.04,0.1,0.1
-52077,19,043,19043,398,187,83729150,83704995,398,187,83729150,83704995,18129,8999,2052991683,2016405612,100,100,100,100,2.2,2.08,4.08,4.15
-52078,19,055,19055,233,76,39560649,39560649,914,336,106290071,106244371,17764,8028,1499463649,1496381153,25.49,22.62,37.22,37.24,1.31,0.95,2.64,2.64
-52078,19,061,19061,681,260,66729422,66683722,914,336,106290071,106244371,93653,38951,1597070758,1575501687,74.51,77.38,62.78,62.76,0.73,0.67,4.18,4.23
-52079,19,061,19061,326,147,68004434,68004434,782,347,153776141,153776141,93653,38951,1597070758,1575501687,41.69,42.36,44.22,44.22,0.35,0.38,4.26,4.32
-52079,19,097,19097,456,200,85771707,85771707,782,347,153776141,153776141,19848,9415,1682474489,1647332960,58.31,57.64,55.78,55.78,2.3,2.12,5.1,5.21
-52101,19,005,19005,39,30,20460659,20460659,13864,5570,804622162,804344852,14330,7617,1706209723,1655214493,0.28,0.54,2.54,2.54,0.27,0.39,1.2,1.24
-52101,19,191,19191,13825,5540,784161503,783884193,13864,5570,804622162,804344852,21056,8721,1787448719,1786750121,99.72,99.46,97.46,97.46,65.66,63.52,43.87,43.87
-52132,19,089,19089,25,13,2640017,2640017,1938,914,157379001,157236915,9566,4367,1226634388,1225706425,1.29,1.42,1.68,1.68,0.26,0.3,0.22,0.22
-52132,19,191,19191,1913,901,154738984,154596898,1938,914,157379001,157236915,21056,8721,1787448719,1786750121,98.71,98.58,98.32,98.32,9.09,10.33,8.66,8.65
-52133,19,065,19065,79,29,33598026,33598026,558,247,118295514,118276377,20880,9558,1894125419,1892791345,14.16,11.74,28.4,28.41,0.38,0.3,1.77,1.78
-52133,19,191,19191,479,218,84697488,84678351,558,247,118295514,118276377,21056,8721,1787448719,1786750121,85.84,88.26,71.6,71.59,2.27,2.5,4.74,4.74
-52134,19,089,19089,285,159,77559488,77559488,285,159,77559488,77559488,9566,4367,1226634388,1225706425,100,100,100,100,2.98,3.64,6.32,6.33
-52135,19,065,19065,864,406,67561964,67530596,864,406,67561964,67530596,20880,9558,1894125419,1892791345,100,100,100,100,4.14,4.25,3.57,3.57
-52136,19,089,19089,5378,2445,363635294,363394510,5967,2695,552444562,552203778,9566,4367,1226634388,1225706425,90.13,90.72,65.82,65.81,56.22,55.99,29.64,29.65
-52136,19,191,19191,589,250,188809268,188809268,5967,2695,552444562,552203778,21056,8721,1787448719,1786750121,9.87,9.28,34.18,34.19,2.8,2.87,10.56,10.57
-52140,19,005,19005,459,247,177634033,177573233,532,294,201586040,201525240,14330,7617,1706209723,1655214493,86.28,84.01,88.12,88.11,3.2,3.24,10.41,10.73
-52140,19,191,19191,73,47,23952007,23952007,532,294,201586040,201525240,21056,8721,1787448719,1786750121,13.72,15.99,11.88,11.89,0.35,0.54,1.34,1.34
-52141,19,043,19043,289,127,89215140,89203322,1435,663,216938945,216864900,18129,8999,2052991683,2016405612,20.14,19.16,41.12,41.13,1.59,1.41,4.35,4.42
-52141,19,065,19065,1146,536,127723805,127661578,1435,663,216938945,216864900,20880,9558,1894125419,1892791345,79.86,80.84,58.88,58.87,5.49,5.61,6.74,6.74
-52142,19,065,19065,1871,696,189331878,188687600,1871,696,189331878,188687600,20880,9558,1894125419,1892791345,100,100,100,100,8.96,7.28,10,9.97
-52144,19,065,19065,47,19,11589873,11589873,1261,541,194119174,194119174,20880,9558,1894125419,1892791345,3.73,3.51,5.97,5.97,0.23,0.2,0.61,0.61
-52144,19,191,19191,1214,522,182529301,182529301,1261,541,194119174,194119174,21056,8721,1787448719,1786750121,96.27,96.49,94.03,94.03,5.77,5.99,10.21,10.22
-52146,19,005,19005,1039,1228,221678469,202232153,1039,1228,221678469,202232153,14330,7617,1706209723,1655214493,100,100,100,100,7.25,16.12,12.99,12.22
-52147,19,065,19065,1050,488,187912171,187896612,1050,488,187912171,187896612,20880,9558,1894125419,1892791345,100,100,100,100,5.03,5.11,9.92,9.93
-52151,19,005,19005,2138,1320,324670969,311898185,2138,1320,324670969,311898185,14330,7617,1706209723,1655214493,100,100,100,100,14.92,17.33,19.03,18.84
-52154,19,037,19037,976,456,186220435,186151756,995,464,189966484,189897805,12439,5679,1309648065,1306338733,98.09,98.28,98.03,98.03,7.85,8.03,14.22,14.25
-52154,19,089,19089,19,8,3746049,3746049,995,464,189966484,189897805,9566,4367,1226634388,1225706425,1.91,1.72,1.97,1.97,0.2,0.18,0.31,0.31
-52155,19,089,19089,1323,597,274895155,274628716,1323,597,274895155,274628716,9566,4367,1226634388,1225706425,100,100,100,100,13.83,13.67,22.41,22.41
-52156,19,005,19005,101,52,31942419,31942419,659,290,110195420,110195420,14330,7617,1706209723,1655214493,15.33,17.93,28.99,28.99,0.7,0.68,1.87,1.93
-52156,19,043,19043,558,238,78253001,78253001,659,290,110195420,110195420,18129,8999,2052991683,2016405612,84.67,82.07,71.01,71.01,3.08,2.64,3.81,3.88
-52157,19,043,19043,1828,978,149443621,146694531,1828,978,149443621,146694531,18129,8999,2052991683,2016405612,100,100,100,100,10.08,10.87,7.28,7.28
-52158,19,043,19043,314,201,3357585,2809122,314,201,3357585,2809122,18129,8999,2052991683,2016405612,100,100,100,100,1.73,2.23,0.16,0.14
-52159,19,005,19005,376,164,100279174,100279174,2330,1054,197141302,197123907,14330,7617,1706209723,1655214493,16.14,15.56,50.87,50.87,2.62,2.15,5.88,6.06
-52159,19,043,19043,1954,890,96862128,96844733,2330,1054,197141302,197123907,18129,8999,2052991683,2016405612,83.86,84.44,49.13,49.13,10.78,9.89,4.72,4.8
-52160,19,005,19005,867,423,103702081,103221189,867,423,103702081,103221189,14330,7617,1706209723,1655214493,100,100,100,100,6.05,5.55,6.08,6.24
-52161,19,065,19065,80,30,18175156,18175156,1505,609,140304657,140304657,20880,9558,1894125419,1892791345,5.32,4.93,12.95,12.95,0.38,0.31,0.96,0.96
-52161,19,191,19191,1425,579,122129501,122129501,1505,609,140304657,140304657,21056,8721,1787448719,1786750121,94.68,95.07,87.05,87.05,6.77,6.64,6.83,6.84
-52162,19,005,19005,2483,1035,150954622,150954622,3285,1370,258921418,258921418,14330,7617,1706209723,1655214493,75.59,75.55,58.3,58.3,17.33,13.59,8.85,9.12
-52162,19,043,19043,604,248,80739338,80739338,3285,1370,258921418,258921418,18129,8999,2052991683,2016405612,18.39,18.1,31.18,31.18,3.33,2.76,3.93,4
-52162,19,065,19065,26,15,7543221,7543221,3285,1370,258921418,258921418,20880,9558,1894125419,1892791345,0.79,1.09,2.91,2.91,0.12,0.16,0.4,0.4
-52162,19,191,19191,172,72,19684237,19684237,3285,1370,258921418,258921418,21056,8721,1787448719,1786750121,5.24,5.26,7.6,7.6,0.82,0.83,1.1,1.1
-52163,19,089,19089,276,165,4602409,4602409,276,165,4602409,4602409,9566,4367,1226634388,1225706425,100,100,100,100,2.89,3.78,0.38,0.38
-52164,19,065,19065,212,106,65306405,65222954,212,106,65306405,65222954,20880,9558,1894125419,1892791345,100,100,100,100,1.02,1.11,3.45,3.45
-52165,19,191,19191,1004,429,172290350,172030285,1004,429,172290350,172030285,21056,8721,1787448719,1786750121,100,100,100,100,4.77,4.92,9.64,9.63
-52166,19,065,19065,104,63,493739,493739,104,63,493739,493739,20880,9558,1894125419,1892791345,100,100,100,100,0.5,0.66,0.03,0.03
-52168,19,191,19191,188,89,417415,417415,188,89,417415,417415,21056,8721,1787448719,1786750121,100,100,100,100,0.89,1.02,0.02,0.02
-52169,19,065,19065,432,220,77089638,77075550,432,220,77089638,77075550,20880,9558,1894125419,1892791345,100,100,100,100,2.07,2.3,4.07,4.07
-52170,19,005,19005,599,281,120174634,120174634,599,281,120174634,120174634,14330,7617,1706209723,1655214493,100,100,100,100,4.18,3.69,7.04,7.26
-52171,19,037,19037,218,91,65916783,65916783,1048,469,205897170,205831070,12439,5679,1309648065,1306338733,20.8,19.4,32.01,32.02,1.75,1.6,5.03,5.05
-52171,19,065,19065,730,332,103067197,103001097,1048,469,205897170,205831070,20880,9558,1894125419,1892791345,69.66,70.79,50.06,50.04,3.5,3.47,5.44,5.44
-52171,19,191,19191,100,46,36913190,36913190,1048,469,205897170,205831070,21056,8721,1787448719,1786750121,9.54,9.81,17.93,17.93,0.47,0.53,2.07,2.07
-52172,19,005,19005,6229,2837,392804839,392804839,6303,2865,409930314,409930314,14330,7617,1706209723,1655214493,98.83,99.02,95.82,95.82,43.47,37.25,23.02,23.73
-52172,19,191,19191,74,28,17125475,17125475,6303,2865,409930314,409930314,21056,8721,1787448719,1786750121,1.17,0.98,4.18,4.18,0.35,0.32,0.96,0.96
-52175,19,065,19065,3492,1686,224708583,224708583,3492,1686,224708583,224708583,20880,9558,1894125419,1892791345,100,100,100,100,16.72,17.64,11.86,11.87
-52201,19,183,19183,1267,521,171814169,171676653,1267,521,171814169,171676653,21704,9516,1478676085,1473276393,100,100,100,100,5.84,5.47,11.62,11.65
-52202,19,113,19113,1152,437,65295077,65271185,1152,437,65295077,65271185,211226,92251,1876459163,1856710588,100,100,100,100,0.55,0.47,3.48,3.52
-52203,19,095,19095,1784,790,90288888,89275255,1932,854,119753928,118264772,16355,7258,1521602861,1518916014,92.34,92.51,75.4,75.49,10.91,10.88,5.93,5.88
-52203,19,103,19103,148,64,29465040,28989517,1932,854,119753928,118264772,130882,55967,1613950741,1590355537,7.66,7.49,24.6,24.51,0.11,0.11,1.83,1.82
-52205,19,105,19105,8529,3373,269469412,268219415,8682,3442,309946308,308696311,20638,8911,1494433731,1490851138,98.24,98,86.94,86.89,41.33,37.85,18.03,17.99
-52205,19,113,19113,153,69,40476896,40476896,8682,3442,309946308,308696311,211226,92251,1876459163,1856710588,1.76,2,13.06,13.11,0.07,0.07,2.16,2.18
-52206,19,011,19011,2303,850,73245916,73245916,2303,850,73245916,73245916,26076,11095,1860878112,1855117342,100,100,100,100,8.83,7.66,3.94,3.95
-52207,19,045,19045,35,14,12134258,12134258,383,187,102173612,102173612,49116,21733,1839345041,1799821282,9.14,7.49,11.88,11.88,0.07,0.06,0.66,0.67
-52207,19,097,19097,348,173,90039354,90039354,383,187,102173612,102173612,19848,9415,1682474489,1647332960,90.86,92.51,88.12,88.12,1.75,1.84,5.35,5.47
-52208,19,011,19011,2919,1425,88720118,88510338,3153,1524,150729430,150288094,26076,11095,1860878112,1855117342,92.58,93.5,58.86,58.89,11.19,12.84,4.77,4.77
-52208,19,095,19095,168,71,51618736,51387180,3153,1524,150729430,150288094,16355,7258,1521602861,1518916014,5.33,4.66,34.25,34.19,1.03,0.98,3.39,3.38
-52208,19,157,19157,18,10,5377980,5377980,3153,1524,150729430,150288094,18914,8949,1517907013,1514967877,0.57,0.66,3.57,3.58,0.1,0.11,0.35,0.35
-52208,19,171,19171,48,18,5012596,5012596,3153,1524,150729430,150288094,17767,7766,1870180568,1867411117,1.52,1.18,3.33,3.34,0.27,0.23,0.27,0.27
-52209,19,011,19011,1074,461,95402594,95203996,1074,461,95402594,95203996,26076,11095,1860878112,1855117342,100,100,100,100,4.12,4.16,5.13,5.13
-52210,19,019,19019,697,312,90462642,90408046,697,312,90462642,90408046,20958,8968,1484362549,1478934897,100,100,100,100,3.33,3.48,6.09,6.11
-52211,19,157,19157,2624,1545,236939306,236363435,2624,1545,236939306,236363435,18914,8949,1517907013,1514967877,100,100,100,100,13.87,17.26,15.61,15.6
-52212,19,105,19105,285,143,60790568,60780511,285,143,60790568,60780511,20638,8911,1494433731,1490851138,100,100,100,100,1.38,1.6,4.07,4.08
-52213,19,011,19011,503,188,46275152,45981431,4340,1679,194486805,193133869,26076,11095,1860878112,1855117342,11.59,11.2,23.79,23.81,1.93,1.69,2.49,2.48
-52213,19,113,19113,3837,1491,148211653,147152438,4340,1679,194486805,193133869,211226,92251,1876459163,1856710588,88.41,88.8,76.21,76.19,1.82,1.62,7.9,7.93
-52214,19,113,19113,3090,1410,247622502,244351368,3090,1410,247622502,244351368,211226,92251,1876459163,1856710588,100,100,100,100,1.46,1.53,13.2,13.16
-52215,19,157,19157,97,47,39063485,39051642,843,367,224182198,223510103,18914,8949,1517907013,1514967877,11.51,12.81,17.42,17.47,0.51,0.53,2.57,2.58
-52215,19,171,19171,746,320,185118713,184458461,843,367,224182198,223510103,17767,7766,1870180568,1867411117,88.49,87.19,82.58,82.53,4.2,4.12,9.9,9.88
-52216,19,031,19031,1400,629,132240590,132240590,1428,641,146950128,146924409,18499,8064,1507117133,1500731293,98.04,98.13,89.99,90.01,7.57,7.8,8.77,8.81
-52216,19,105,19105,28,12,14709538,14683819,1428,641,146950128,146924409,20638,8911,1494433731,1490851138,1.96,1.87,10.01,9.99,0.14,0.13,0.98,0.98
-52217,19,171,19171,590,287,152367658,152367658,590,287,152367658,152367658,17767,7766,1870180568,1867411117,100,100,100,100,3.32,3.7,8.15,8.16
-52218,19,019,19019,151,59,42672750,42507276,1788,798,187432341,186401903,20958,8968,1484362549,1478934897,8.45,7.39,22.77,22.8,0.72,0.66,2.87,2.87
-52218,19,055,19055,147,60,33790574,33790574,1788,798,187432341,186401903,17764,8028,1499463649,1496381153,8.22,7.52,18.03,18.13,0.83,0.75,2.25,2.26
-52218,19,113,19113,1490,679,110969017,110104053,1788,798,187432341,186401903,211226,92251,1876459163,1856710588,83.33,85.09,59.2,59.07,0.71,0.74,5.91,5.93
-52219,19,113,19113,178,78,1194124,1194124,178,78,1194124,1194124,211226,92251,1876459163,1856710588,100,100,100,100,0.08,0.08,0.06,0.06
-52220,19,095,19095,237,94,1194245,1194245,237,94,1194245,1194245,16355,7258,1521602861,1518916014,100,100,100,100,1.45,1.3,0.08,0.08
-52221,19,095,19095,24,9,8394829,8326546,221,99,53776053,53693011,16355,7258,1521602861,1518916014,10.86,9.09,15.61,15.51,0.15,0.12,0.55,0.55
-52221,19,157,19157,197,90,45381224,45366465,221,99,53776053,53693011,18914,8949,1517907013,1514967877,89.14,90.91,84.39,84.49,1.04,1.01,2.99,2.99
-52222,19,095,19095,121,54,56436799,56231527,709,326,209152349,208915113,16355,7258,1521602861,1518916014,17.07,16.56,26.98,26.92,0.74,0.74,3.71,3.7
-52222,19,157,19157,588,272,152715550,152683586,709,326,209152349,208915113,18914,8949,1517907013,1514967877,82.93,83.44,73.02,73.08,3.11,3.04,10.06,10.08
-52223,19,055,19055,1351,918,127619807,125813447,1351,918,127619807,125813447,17764,8028,1499463649,1496381153,100,100,100,100,7.61,11.43,8.51,8.41
-52224,19,011,19011,285,125,127465873,127465873,2016,878,256593612,256378050,26076,11095,1860878112,1855117342,14.14,14.24,49.68,49.72,1.09,1.13,6.85,6.87
-52224,19,171,19171,1731,753,129127739,128912177,2016,878,256593612,256378050,17767,7766,1870180568,1867411117,85.86,85.76,50.32,50.28,9.74,9.7,6.9,6.9
-52225,19,011,19011,72,29,25874911,25874911,447,205,91276214,91276214,26076,11095,1860878112,1855117342,16.11,14.15,28.35,28.35,0.28,0.26,1.39,1.39
-52225,19,171,19171,375,176,65401303,65401303,447,205,91276214,91276214,17767,7766,1870180568,1867411117,83.89,85.85,71.65,71.65,2.11,2.27,3.5,3.5
-52227,19,113,19113,2461,956,76013553,74705535,2461,956,76013553,74705535,211226,92251,1876459163,1856710588,100,100,100,100,1.17,1.04,4.05,4.02
-52228,19,011,19011,83,29,12615479,12615479,2772,1064,96928032,96875158,26076,11095,1860878112,1855117342,2.99,2.73,13.02,13.02,0.32,0.26,0.68,0.68
-52228,19,103,19103,63,23,10825894,10825894,2772,1064,96928032,96875158,130882,55967,1613950741,1590355537,2.27,2.16,11.17,11.18,0.05,0.04,0.67,0.68
-52228,19,113,19113,2626,1012,73486659,73433785,2772,1064,96928032,96875158,211226,92251,1876459163,1856710588,94.73,95.11,75.82,75.8,1.24,1.1,3.92,3.96
-52229,19,011,19011,721,314,127391906,127345836,721,314,127391906,127345836,26076,11095,1860878112,1855117342,100,100,100,100,2.76,2.83,6.85,6.86
-52231,19,107,19107,328,148,84735151,84639740,328,148,84735151,84639740,10511,4931,1501996571,1500067240,100,100,100,100,3.12,3,5.64,5.64
-52232,19,157,19157,178,83,47517446,47498282,178,83,47517446,47498282,18914,8949,1517907013,1514967877,100,100,100,100,0.94,0.93,3.13,3.14
-52233,19,113,19113,6981,3298,9080084,9080084,6981,3298,9080084,9080084,211226,92251,1876459163,1856710588,100,100,100,100,3.3,3.58,0.48,0.49
-52235,19,103,19103,698,347,5257012,5244081,698,347,5257012,5244081,130882,55967,1613950741,1590355537,100,100,100,100,0.53,0.62,0.33,0.33
-52236,19,095,19095,592,239,74148178,74129557,592,239,74148178,74129557,16355,7258,1521602861,1518916014,100,100,100,100,3.62,3.29,4.87,4.88
-52237,19,055,19055,1507,640,207012148,206898141,1522,646,210461938,210347931,17764,8028,1499463649,1496381153,99.01,99.07,98.36,98.36,8.48,7.97,13.81,13.83
-52237,19,061,19061,15,6,3449790,3449790,1522,646,210461938,210347931,93653,38951,1597070758,1575501687,0.99,0.93,1.64,1.64,0.02,0.02,0.22,0.22
-52240,19,103,19103,32230,14526,415571318,414515848,32230,14526,415571318,414515848,130882,55967,1613950741,1590355537,100,100,100,100,24.63,25.95,25.75,26.06
-52241,19,103,19103,18911,8310,30871305,30767995,18911,8310,30871305,30767995,130882,55967,1613950741,1590355537,100,100,100,100,14.45,14.85,1.91,1.93
-52242,19,103,19103,1592,0,1995678,1874659,1592,0,1995678,1874659,130882,55967,1613950741,1590355537,100,0,100,100,1.22,0,0.12,0.12
-52245,19,103,19103,22573,8774,21712859,21437710,22573,8774,21712859,21437710,130882,55967,1613950741,1590355537,100,100,100,100,17.25,15.68,1.35,1.35
-52246,19,103,19103,21114,10151,23832009,23555236,21114,10151,23832009,23555236,130882,55967,1613950741,1590355537,100,100,100,100,16.13,18.14,1.48,1.48
-52247,19,103,19103,1816,524,112237741,112217861,5645,2161,206350122,206303697,130882,55967,1613950741,1590355537,32.17,24.25,54.39,54.39,1.39,0.94,6.95,7.06
-52247,19,183,19183,3829,1637,94112381,94085836,5645,2161,206350122,206303697,21704,9516,1478676085,1473276393,67.83,75.75,45.61,45.61,17.64,17.2,6.36,6.39
-52248,19,107,19107,1353,599,140767855,140258105,1815,786,295236835,294509645,10511,4931,1501996571,1500067240,74.55,76.21,47.68,47.62,12.87,12.15,9.37,9.35
-52248,19,183,19183,462,187,154468980,154251540,1815,786,295236835,294509645,21704,9516,1478676085,1473276393,25.45,23.79,52.32,52.38,2.13,1.97,10.45,10.47
-52249,19,011,19011,965,428,131160363,131160363,965,428,131160363,131160363,26076,11095,1860878112,1855117342,100,100,100,100,3.7,3.86,7.05,7.07
-52251,19,095,19095,590,256,106339173,106312085,590,256,106339173,106312085,16355,7258,1521602861,1518916014,100,100,100,100,3.61,3.53,6.99,7
-52253,19,031,19031,583,213,60130900,59928630,3192,1266,121480006,119617674,18499,8064,1507117133,1500731293,18.26,16.82,49.5,50.1,3.15,2.64,3.99,3.99
-52253,19,103,19103,112,55,13336079,11676017,3192,1266,121480006,119617674,130882,55967,1613950741,1590355537,3.51,4.34,10.98,9.76,0.09,0.1,0.83,0.73
-52253,19,105,19105,130,56,21711190,21711190,3192,1266,121480006,119617674,20638,8911,1494433731,1490851138,4.07,4.42,17.87,18.15,0.63,0.63,1.45,1.46
-52253,19,113,19113,2367,942,26301837,26301837,3192,1266,121480006,119617674,211226,92251,1876459163,1856710588,74.15,74.41,21.65,21.99,1.12,1.02,1.4,1.42
-52254,19,045,19045,895,427,146759383,146759383,895,427,146759383,146759383,49116,21733,1839345041,1799821282,100,100,100,100,1.82,1.96,7.98,8.15
-52255,19,031,19031,1208,545,112408307,112408307,1208,545,112408307,112408307,18499,8064,1507117133,1500731293,100,100,100,100,6.53,6.76,7.46,7.49
-52257,19,011,19011,210,96,40665450,40665450,210,96,40665450,40665450,26076,11095,1860878112,1855117342,100,100,100,100,0.81,0.87,2.19,2.19
-52301,19,011,19011,43,16,10375876,10375876,3873,1773,316484635,316128706,26076,11095,1860878112,1855117342,1.11,0.9,3.28,3.28,0.16,0.14,0.56,0.56
-52301,19,095,19095,3830,1757,306108759,305752830,3873,1773,316484635,316128706,16355,7258,1521602861,1518916014,98.89,99.1,96.72,96.72,23.42,24.21,20.12,20.13
-52302,19,113,19113,36980,15868,192237746,192103024,36980,15868,192237746,192103024,211226,92251,1876459163,1856710588,100,100,100,100,17.51,17.2,10.24,10.35
-52305,19,105,19105,555,242,58502649,58502649,629,274,73493573,73493573,20638,8911,1494433731,1490851138,88.24,88.32,79.6,79.6,2.69,2.72,3.91,3.92
-52305,19,113,19113,74,32,14990924,14990924,629,274,73493573,73493573,211226,92251,1876459163,1856710588,11.76,11.68,20.4,20.4,0.04,0.03,0.8,0.81
-52306,19,031,19031,1602,711,153603057,153564059,1754,765,194245557,193533415,18499,8064,1507117133,1500731293,91.33,92.94,79.08,79.35,8.66,8.82,10.19,10.23
-52306,19,105,19105,152,54,40642500,39969356,1754,765,194245557,193533415,20638,8911,1494433731,1490851138,8.67,7.06,20.92,20.65,0.74,0.61,2.72,2.68
-52307,19,095,19095,90,60,488234,488234,90,60,488234,488234,16355,7258,1521602861,1518916014,100,100,100,100,0.55,0.83,0.03,0.03
-52308,19,095,19095,132,65,233003,233003,132,65,233003,233003,16355,7258,1521602861,1518916014,100,100,100,100,0.81,0.9,0.02,0.02
-52309,19,097,19097,321,145,54452956,54357799,397,188,74291839,74161386,19848,9415,1682474489,1647332960,80.86,77.13,73.3,73.3,1.62,1.54,3.24,3.3
-52309,19,105,19105,76,43,19838883,19803587,397,188,74291839,74161386,20638,8911,1494433731,1490851138,19.14,22.87,26.7,26.7,0.37,0.48,1.33,1.33
-52310,19,055,19055,5,3,1800353,1800353,6431,2912,385183593,384963817,17764,8028,1499463649,1496381153,0.08,0.1,0.47,0.47,0.03,0.04,0.12,0.12
-52310,19,105,19105,6381,2893,371541485,371321709,6431,2912,385183593,384963817,20638,8911,1494433731,1490851138,99.22,99.35,96.46,96.46,30.92,32.47,24.86,24.91
-52310,19,113,19113,45,16,11841755,11841755,6431,2912,385183593,384963817,211226,92251,1876459163,1856710588,0.7,0.55,3.07,3.08,0.02,0.02,0.63,0.64
-52312,19,105,19105,115,51,242872,242872,115,51,242872,242872,20638,8911,1494433731,1490851138,100,100,100,100,0.56,0.57,0.02,0.02
-52313,19,011,19011,397,181,84959546,83425511,397,181,84959546,83425511,26076,11095,1860878112,1855117342,100,100,100,100,1.52,1.63,4.57,4.5
-52314,19,113,19113,5865,1967,155658054,154117330,5865,1967,155658054,154117330,211226,92251,1876459163,1856710588,100,100,100,100,2.78,2.13,8.3,8.3
-52315,19,011,19011,1222,515,75003645,75003645,1222,515,75003645,75003645,26076,11095,1860878112,1855117342,100,100,100,100,4.69,4.64,4.03,4.04
-52316,19,095,19095,1649,742,175081359,174934284,1659,747,180293861,180146786,16355,7258,1521602861,1518916014,99.4,99.33,97.11,97.11,10.08,10.22,11.51,11.52
-52316,19,107,19107,10,5,5212502,5212502,1659,747,180293861,180146786,10511,4931,1501996571,1500067240,0.6,0.67,2.89,2.89,0.1,0.1,0.35,0.35
-52317,19,103,19103,14775,6343,95897591,89861599,14775,6343,95897591,89861599,130882,55967,1613950741,1590355537,100,100,100,100,11.29,11.33,5.94,5.65
-52318,19,011,19011,930,404,75691902,75691902,1033,450,95080335,95080335,26076,11095,1860878112,1855117342,90.03,89.78,79.61,79.61,3.57,3.64,4.07,4.08
-52318,19,095,19095,103,46,19388433,19388433,1033,450,95080335,95080335,16355,7258,1521602861,1518916014,9.97,10.22,20.39,20.39,0.63,0.63,1.27,1.28
-52320,19,031,19031,69,31,23540552,23540552,1203,547,153985129,152972711,18499,8064,1507117133,1500731293,5.74,5.67,15.29,15.39,0.37,0.38,1.56,1.57
-52320,19,105,19105,1134,516,130444577,129432159,1203,547,153985129,152972711,20638,8911,1494433731,1490851138,94.26,94.33,84.71,84.61,5.49,5.79,8.73,8.68
-52321,19,105,19105,404,197,77841390,77841390,404,197,77841390,77841390,20638,8911,1494433731,1490851138,100,100,100,100,1.96,2.21,5.21,5.22
-52322,19,103,19103,2436,1045,231220008,230659835,2436,1045,231220008,230659835,130882,55967,1613950741,1590355537,100,100,100,100,1.86,1.87,14.33,14.5
-52323,19,031,19031,22,10,9803979,9803979,867,435,132353794,132024745,18499,8064,1507117133,1500731293,2.54,2.3,7.41,7.43,0.12,0.12,0.65,0.65
-52323,19,045,19045,51,23,17803497,17803497,867,435,132353794,132024745,49116,21733,1839345041,1799821282,5.88,5.29,13.45,13.48,0.1,0.11,0.97,0.99
-52323,19,105,19105,794,402,104746318,104417269,867,435,132353794,132024745,20638,8911,1494433731,1490851138,91.58,92.41,79.14,79.09,3.85,4.51,7.01,7
-52324,19,011,19011,204,79,18088807,17817084,1890,735,107056042,103897411,26076,11095,1860878112,1855117342,10.79,10.75,16.9,17.15,0.78,0.71,0.97,0.96
-52324,19,113,19113,1686,656,88967235,86080327,1890,735,107056042,103897411,211226,92251,1876459163,1856710588,89.21,89.25,83.1,82.85,0.8,0.71,4.74,4.64
-52325,19,095,19095,829,343,95732385,95655009,873,363,109143193,109065817,16355,7258,1521602861,1518916014,94.96,94.49,87.71,87.7,5.07,4.73,6.29,6.3
-52325,19,103,19103,44,20,13410808,13410808,873,363,109143193,109065817,130882,55967,1613950741,1590355537,5.04,5.51,12.29,12.3,0.03,0.04,0.83,0.84
-52326,19,019,19019,547,269,5447918,5259973,547,269,5447918,5259973,20958,8968,1484362549,1478934897,100,100,100,100,2.61,3,0.37,0.36
-52327,19,103,19103,466,179,60234495,59932975,3012,1293,217607612,216537935,130882,55967,1613950741,1590355537,15.47,13.84,27.68,27.68,0.36,0.32,3.73,3.77
-52327,19,183,19183,2546,1114,157373117,156604960,3012,1293,217607612,216537935,21704,9516,1478676085,1473276393,84.53,86.16,72.32,72.32,11.73,11.71,10.64,10.63
-52328,19,113,19113,2826,948,7989464,7989464,2826,948,7989464,7989464,211226,92251,1876459163,1856710588,100,100,100,100,1.34,1.03,0.43,0.43
-52329,19,019,19019,803,341,132090802,131743463,803,341,132090802,131743463,20958,8968,1484362549,1478934897,100,100,100,100,3.83,3.8,8.9,8.91
-52330,19,055,19055,900,362,123160697,123160697,900,362,123160697,123160697,17764,8028,1499463649,1496381153,100,100,100,100,5.07,4.51,8.21,8.23
-52332,19,011,19011,1997,889,101559754,101394661,2006,895,110692089,109615934,26076,11095,1860878112,1855117342,99.55,99.33,91.75,92.5,7.66,8.01,5.46,5.47
-52332,19,113,19113,9,6,9132335,8221273,2006,895,110692089,109615934,211226,92251,1876459163,1856710588,0.45,0.67,8.25,7.5,0,0.01,0.49,0.44
-52333,19,031,19031,38,18,11914175,10901321,6168,2481,234514567,223255329,18499,8064,1507117133,1500731293,0.62,0.73,5.08,4.88,0.21,0.22,0.79,0.73
-52333,19,103,19103,6130,2463,222600392,212354008,6168,2481,234514567,223255329,130882,55967,1613950741,1590355537,99.38,99.27,94.92,95.12,4.68,4.4,13.79,13.35
-52334,19,095,19095,311,122,43109728,43109728,311,122,43109728,43109728,16355,7258,1521602861,1518916014,100,100,100,100,1.9,1.68,2.83,2.84
-52335,19,107,19107,709,322,144712437,144626544,709,322,144712437,144626544,10511,4931,1501996571,1500067240,100,100,100,100,6.75,6.53,9.63,9.64
-52336,19,113,19113,2363,967,127253732,127231477,2363,967,127253732,127231477,211226,92251,1876459163,1856710588,100,100,100,100,1.12,1.05,6.78,6.85
-52337,19,031,19031,845,369,70714333,70714333,845,369,70714333,70714333,18499,8064,1507117133,1500731293,100,100,100,100,4.57,4.58,4.69,4.71
-52338,19,103,19103,3238,1222,82859449,81474678,3283,1236,88823370,87438599,130882,55967,1613950741,1590355537,98.63,98.87,93.29,93.18,2.47,2.18,5.13,5.12
-52338,19,113,19113,45,14,5963921,5963921,3283,1236,88823370,87438599,211226,92251,1876459163,1856710588,1.37,1.13,6.71,6.82,0.02,0.02,0.32,0.32
-52339,19,157,19157,16,7,7962109,7962109,4504,1844,265108854,264553696,18914,8949,1517907013,1514967877,0.36,0.38,3,3.01,0.08,0.08,0.52,0.53
-52339,19,171,19171,4488,1837,257146745,256591587,4504,1844,265108854,264553696,17767,7766,1870180568,1867411117,99.64,99.62,97,96.99,25.26,23.65,13.75,13.74
-52340,19,103,19103,2180,948,42940483,42919615,2180,948,42940483,42919615,130882,55967,1613950741,1590355537,100,100,100,100,1.67,1.69,2.66,2.7
-52341,19,113,19113,1093,450,34645440,33953650,1093,450,34645440,33953650,211226,92251,1876459163,1856710588,100,100,100,100,0.52,0.49,1.85,1.83
-52342,19,171,19171,3274,1384,232660911,232363570,3274,1384,232660911,232363570,17767,7766,1870180568,1867411117,100,100,100,100,18.43,17.82,12.44,12.44
-52345,19,011,19011,1468,548,8460683,8460118,1468,548,8460683,8460118,26076,11095,1860878112,1855117342,100,100,100,100,5.63,4.94,0.45,0.46
-52346,19,011,19011,1085,476,134845571,134845571,1085,476,134845571,134845571,26076,11095,1860878112,1855117342,100,100,100,100,4.16,4.29,7.25,7.27
-52347,19,095,19095,1120,521,113201327,113201327,1410,647,166647034,166647034,16355,7258,1521602861,1518916014,79.43,80.53,67.93,67.93,6.85,7.18,7.44,7.45
-52347,19,157,19157,290,126,53445707,53445707,1410,647,166647034,166647034,18914,8949,1517907013,1514967877,20.57,19.47,32.07,32.07,1.53,1.41,3.52,3.53
-52348,19,171,19171,51,31,2376982,2376982,51,31,2376982,2376982,17767,7766,1870180568,1867411117,100,100,100,100,0.29,0.4,0.13,0.13
-52349,19,011,19011,7643,3315,382672144,379632680,7643,3315,382672144,379632680,26076,11095,1860878112,1855117342,100,100,100,100,29.31,29.88,20.56,20.46
-52351,19,011,19011,1077,367,1308540,1308540,1455,490,2136430,2136430,26076,11095,1860878112,1855117342,74.02,74.9,61.25,61.25,4.13,3.31,0.07,0.07
-52351,19,113,19113,378,123,827890,827890,1455,490,2136430,2136430,211226,92251,1876459163,1856710588,25.98,25.1,38.75,38.75,0.18,0.13,0.04,0.04
-52352,19,011,19011,180,72,32455763,32455763,2025,784,205022618,203389043,26076,11095,1860878112,1855117342,8.89,9.18,15.83,15.96,0.69,0.65,1.74,1.75
-52352,19,019,19019,419,145,75727025,74791397,2025,784,205022618,203389043,20958,8968,1484362549,1478934897,20.69,18.49,36.94,36.77,2,1.62,5.1,5.06
-52352,19,113,19113,1426,567,96839830,96141883,2025,784,205022618,203389043,211226,92251,1876459163,1856710588,70.42,72.32,47.23,47.27,0.68,0.61,5.16,5.18
-52353,19,183,19183,9173,4083,395338718,395015639,9173,4083,395338718,395015639,21704,9516,1478676085,1473276393,100,100,100,100,42.26,42.91,26.74,26.81
-52354,19,011,19011,379,170,76593832,76593832,379,170,76593832,76593832,26076,11095,1860878112,1855117342,100,100,100,100,1.45,1.53,4.12,4.13
-52355,19,095,19095,18,8,7481602,7481602,277,136,95209770,95190631,16355,7258,1521602861,1518916014,6.5,5.88,7.86,7.86,0.11,0.11,0.49,0.49
-52355,19,107,19107,259,128,87728168,87709029,277,136,95209770,95190631,10511,4931,1501996571,1500067240,93.5,94.12,92.14,92.14,2.46,2.6,5.84,5.85
-52356,19,095,19095,220,84,36303709,36303709,2656,1132,232407800,232407800,16355,7258,1521602861,1518916014,8.28,7.42,15.62,15.62,1.35,1.16,2.39,2.39
-52356,19,103,19103,164,62,19450746,19450746,2656,1132,232407800,232407800,130882,55967,1613950741,1590355537,6.17,5.48,8.37,8.37,0.13,0.11,1.21,1.22
-52356,19,183,19183,2272,986,176653345,176653345,2656,1132,232407800,232407800,21704,9516,1478676085,1473276393,85.54,87.1,76.01,76.01,10.47,10.36,11.95,11.99
-52358,19,031,19031,3449,1448,170113349,169451847,3733,1550,200939529,200272897,18499,8064,1507117133,1500731293,92.39,93.42,84.66,84.61,18.64,17.96,11.29,11.29
-52358,19,103,19103,284,102,30826180,30821050,3733,1550,200939529,200272897,130882,55967,1613950741,1590355537,7.61,6.58,15.34,15.39,0.22,0.18,1.91,1.94
-52359,19,183,19183,279,129,38168572,38168572,279,129,38168572,38168572,21704,9516,1478676085,1473276393,100,100,100,100,1.29,1.36,2.58,2.59
-52361,19,095,19095,4527,1992,330197198,329675542,4527,1992,330197198,329675542,16355,7258,1521602861,1518916014,100,100,100,100,27.68,27.45,21.7,21.7
-52362,19,105,19105,1041,522,157429942,157402805,1041,522,157429942,157402805,20638,8911,1494433731,1490851138,100,100,100,100,5.04,5.86,10.53,10.56
-52401,19,113,19113,2017,992,3464505,3071004,2017,992,3464505,3071004,211226,92251,1876459163,1856710588,100,100,100,100,0.95,1.08,0.18,0.17
-52402,19,113,19113,40149,17985,36420817,35684277,40149,17985,36420817,35684277,211226,92251,1876459163,1856710588,100,100,100,100,19.01,19.5,1.94,1.92
-52403,19,113,19113,23673,10728,69523743,67994207,23673,10728,69523743,67994207,211226,92251,1876459163,1856710588,100,100,100,100,11.21,11.63,3.71,3.66
-52404,19,103,19103,51,27,4011319,4011319,37796,17495,142933490,142043563,130882,55967,1613950741,1590355537,0.13,0.15,2.81,2.82,0.04,0.05,0.25,0.25
-52404,19,113,19113,37745,17468,138922171,138032244,37796,17495,142933490,142043563,211226,92251,1876459163,1856710588,99.87,99.85,97.19,97.18,17.87,18.94,7.4,7.43
-52405,19,113,19113,23621,10660,38493180,37805569,23621,10660,38493180,37805569,211226,92251,1876459163,1856710588,100,100,100,100,11.18,11.56,2.05,2.04
-52411,19,113,19113,6896,2432,44635019,42589064,6896,2432,44635019,42589064,211226,92251,1876459163,1856710588,100,100,100,100,3.26,2.64,2.38,2.29
-52501,19,179,19179,30220,13599,591297871,584395540,30220,13599,591297871,584395540,35625,16098,1129289464,1118443326,100,100,100,100,84.83,84.48,52.36,52.25
-52530,19,179,19179,1005,491,36986236,36739157,1005,491,36986236,36739157,35625,16098,1129289464,1118443326,100,100,100,100,2.82,3.05,3.28,3.28
-52531,19,135,19135,5976,2746,563107904,562739585,5976,2746,563107904,562739585,7970,3884,1124839787,1123316981,100,100,100,100,74.98,70.7,50.06,50.1
-52533,19,101,19101,1023,474,154361208,154197783,1215,559,227778322,227595703,16843,7594,1131503196,1127964789,84.2,84.79,67.77,67.75,6.07,6.24,13.64,13.67
-52533,19,179,19179,192,85,73417114,73397920,1215,559,227778322,227595703,35625,16098,1129289464,1118443326,15.8,15.21,32.23,32.25,0.54,0.53,6.5,6.56
-52534,19,123,19123,284,134,1012395,1012395,284,134,1012395,1012395,22381,9766,1485092487,1478527687,100,100,100,100,1.27,1.37,0.07,0.07
-52535,19,101,19101,53,30,26278348,26232092,888,450,149696508,149442224,16843,7594,1131503196,1127964789,5.97,6.67,17.55,17.55,0.31,0.4,2.32,2.33
-52535,19,177,19177,835,420,123418160,123210132,888,450,149696508,149442224,7570,3670,1270437548,1255597645,94.03,93.33,82.45,82.45,11.03,11.44,9.71,9.81
-52536,19,135,19135,116,54,49215035,49148854,967,468,160133711,159982929,7970,3884,1124839787,1123316981,12,11.54,30.73,30.72,1.46,1.39,4.38,4.38
-52536,19,179,19179,851,414,110918676,110834075,967,468,160133711,159982929,35625,16098,1129289464,1118443326,88,88.46,69.27,69.28,2.39,2.57,9.82,9.91
-52537,19,051,19051,6744,2747,860487334,856804765,7098,2896,900130186,896396219,8753,3600,1307566056,1300661956,95.01,94.85,95.6,95.58,77.05,76.31,65.81,65.87
-52537,19,179,19179,354,149,39642852,39591454,7098,2896,900130186,896396219,35625,16098,1129289464,1118443326,4.99,5.15,4.4,4.42,0.99,0.93,3.51,3.54
-52540,19,101,19101,501,223,136839563,135787282,1420,657,257681662,253576975,16843,7594,1131503196,1127964789,35.28,33.94,53.1,53.55,2.97,2.94,12.09,12.04
-52540,19,183,19183,919,434,120842099,117789693,1420,657,257681662,253576975,21704,9516,1478676085,1473276393,64.72,66.06,46.9,46.45,4.23,4.56,8.17,8
-52542,19,177,19177,395,193,93617901,93546033,435,207,117166206,117023713,7570,3670,1270437548,1255597645,90.8,93.24,79.9,79.94,5.22,5.26,7.37,7.45
-52542,29,199,29199,40,14,23548305,23477680,435,207,117166206,117023713,4843,2369,1137770212,1130971492,9.2,6.76,20.1,20.06,0.83,0.59,2.07,2.08
-52543,19,123,19123,291,107,53398057,53378306,291,107,53398057,53378306,22381,9766,1485092487,1478527687,100,100,100,100,1.3,1.1,3.6,3.61
-52544,19,007,19007,7847,3949,355984819,354995856,7847,3949,355984819,354995856,12887,6633,1337065360,1287981483,100,100,100,100,60.89,59.54,26.62,27.56
-52548,19,179,19179,97,45,622729,588295,97,45,622729,588295,35625,16098,1129289464,1118443326,100,100,100,100,0.27,0.28,0.06,0.05
-52549,19,007,19007,762,328,113382459,113329384,762,328,113382459,113329384,12887,6633,1337065360,1287981483,100,100,100,100,5.91,4.94,8.48,8.8
-52550,19,107,19107,585,287,100697091,100555822,585,287,100697091,100555822,10511,4931,1501996571,1500067240,100,100,100,100,5.57,5.82,6.7,6.7
-52551,19,177,19177,688,357,151969068,149297301,688,357,151969068,149297301,7570,3670,1270437548,1255597645,100,100,100,100,9.09,9.73,11.96,11.89
-52552,19,051,19051,801,331,145608730,144158016,830,345,151883138,150432424,8753,3600,1307566056,1300661956,96.51,95.94,95.87,95.83,9.15,9.19,11.14,11.08
-52552,19,179,19179,29,14,6274408,6274408,830,345,151883138,150432424,35625,16098,1129289464,1118443326,3.49,4.06,4.13,4.17,0.08,0.09,0.56,0.56
-52553,19,123,19123,461,206,73041480,72678483,1745,758,218424094,216320658,22381,9766,1485092487,1478527687,26.42,27.18,33.44,33.6,2.06,2.11,4.92,4.92
-52553,19,135,19135,182,88,62999705,62677432,1745,758,218424094,216320658,7970,3884,1124839787,1123316981,10.43,11.61,28.84,28.97,2.28,2.27,5.6,5.58
-52553,19,179,19179,1102,464,82382909,80964743,1745,758,218424094,216320658,35625,16098,1129289464,1118443326,63.15,61.21,37.72,37.43,3.09,2.88,7.3,7.24
-52554,19,051,19051,9,3,4663345,4663345,1373,655,94705759,92616713,8753,3600,1307566056,1300661956,0.66,0.46,4.92,5.04,0.1,0.08,0.36,0.36
-52554,19,101,19101,27,13,9801062,9801062,1373,655,94705759,92616713,16843,7594,1131503196,1127964789,1.97,1.98,10.35,10.58,0.16,0.17,0.87,0.87
-52554,19,177,19177,16,8,4041750,4022134,1373,655,94705759,92616713,7570,3670,1270437548,1255597645,1.17,1.22,4.27,4.34,0.21,0.22,0.32,0.32
-52554,19,179,19179,1321,631,76199602,74130172,1373,655,94705759,92616713,35625,16098,1129289464,1118443326,96.21,96.34,80.46,80.04,3.71,3.92,6.75,6.63
-52555,19,007,19007,344,175,64737097,64699086,344,175,64737097,64699086,12887,6633,1337065360,1287981483,100,100,100,100,2.67,2.64,4.84,5.02
-52556,19,101,19101,13247,5999,458484550,457203874,13247,5999,458484550,457203874,16843,7594,1131503196,1127964789,100,100,100,100,78.65,79,40.52,40.53
-52557,19,101,19101,85,2,116099,116099,85,2,116099,116099,16843,7594,1131503196,1127964789,100,100,100,100,0.5,0.03,0.01,0.01
-52560,19,051,19051,430,200,91932554,90748254,430,200,91932554,90748254,8753,3600,1307566056,1300661956,100,100,100,100,4.91,5.56,7.03,6.98
-52561,19,107,19107,9,7,5290865,5290865,962,417,90172828,90093309,10511,4931,1501996571,1500067240,0.94,1.68,5.87,5.87,0.09,0.14,0.35,0.35
-52561,19,123,19123,953,410,84881963,84802444,962,417,90172828,90093309,22381,9766,1485092487,1478527687,99.06,98.32,94.13,94.13,4.26,4.2,5.72,5.74
-52563,19,101,19101,22,8,10444952,10444952,1583,733,299151430,299042502,16843,7594,1131503196,1127964789,1.39,1.09,3.49,3.49,0.13,0.11,0.92,0.93
-52563,19,107,19107,1275,594,179851761,179762338,1583,733,299151430,299042502,10511,4931,1501996571,1500067240,80.54,81.04,60.12,60.11,12.13,12.05,11.97,11.98
-52563,19,179,19179,286,131,108854717,108835212,1583,733,299151430,299042502,35625,16098,1129289464,1118443326,18.07,17.87,36.39,36.39,0.8,0.81,9.64,9.73
-52565,19,177,19177,2027,1064,307637735,300828566,2027,1064,307637735,300828566,7570,3670,1270437548,1255597645,100,100,100,100,26.78,28.99,24.22,23.96
-52566,19,179,19179,168,75,2692350,2692350,168,75,2692350,2692350,35625,16098,1129289464,1118443326,100,100,100,100,0.47,0.47,0.24,0.24
-52567,19,101,19101,591,259,64186638,64186638,615,274,73121919,73121919,16843,7594,1131503196,1127964789,96.1,94.53,87.78,87.78,3.51,3.41,5.67,5.69
-52567,19,177,19177,24,15,8935281,8935281,615,274,73121919,73121919,7570,3670,1270437548,1255597645,3.9,5.47,12.22,12.22,0.32,0.41,0.7,0.71
-52569,19,007,19007,68,56,16034609,9692035,610,617,249170073,241557072,12887,6633,1337065360,1287981483,11.15,9.08,6.44,4.01,0.53,0.84,1.2,0.75
-52569,19,135,19135,493,480,223951346,223835770,610,617,249170073,241557072,7970,3884,1124839787,1123316981,80.82,77.8,89.88,92.66,6.19,12.36,19.91,19.93
-52569,19,185,19185,49,81,9184118,8029267,610,617,249170073,241557072,6403,3212,1365315679,1360874542,8.03,13.13,3.69,3.32,0.77,2.52,0.67,0.59
-52570,19,051,19051,106,37,49982582,49750994,954,379,177637484,177255523,8753,3600,1307566056,1300661956,11.11,9.76,28.14,28.07,1.21,1.03,3.82,3.83
-52570,19,177,19177,848,342,127654902,127504529,954,379,177637484,177255523,7570,3670,1270437548,1255597645,88.89,90.24,71.86,71.93,11.2,9.32,10.05,10.15
-52571,19,007,19007,1202,755,204417451,176053797,1407,844,276402554,248003228,12887,6633,1337065360,1287981483,85.43,89.45,73.96,70.99,9.33,11.38,15.29,13.67
-52571,19,135,19135,205,89,71985103,71949431,1407,844,276402554,248003228,7970,3884,1124839787,1123316981,14.57,10.55,26.04,29.01,2.57,2.29,6.4,6.41
-52572,19,007,19007,1041,531,214670648,214305828,1132,570,252233684,251780760,12887,6633,1337065360,1287981483,91.96,93.16,85.11,85.12,8.08,8.01,16.06,16.64
-52572,19,051,19051,91,39,37563036,37474932,1132,570,252233684,251780760,8753,3600,1307566056,1300661956,8.04,6.84,14.89,14.88,1.04,1.08,2.87,2.88
-52573,19,177,19177,137,74,64856627,63903039,162,82,74630386,73619608,7570,3670,1270437548,1255597645,84.57,90.24,86.9,86.8,1.81,2.02,5.11,5.09
-52573,29,199,29199,25,8,9773759,9716569,162,82,74630386,73619608,4843,2369,1137770212,1130971492,15.43,9.76,13.1,13.2,0.52,0.34,0.86,0.86
-52574,19,007,19007,826,419,109572946,101241590,826,419,109572946,101241590,12887,6633,1337065360,1287981483,100,100,100,100,6.41,6.32,8.2,7.86
-52576,19,107,19107,568,263,117180743,117041974,568,263,117180743,117041974,10511,4931,1501996571,1500067240,100,100,100,100,5.4,5.33,7.8,7.8
-52577,19,123,19123,15055,6621,415772496,411815079,15055,6621,415772496,411815079,22381,9766,1485092487,1478527687,100,100,100,100,67.27,67.8,28,27.85
-52580,19,101,19101,460,213,98765465,98696227,460,213,98765465,98696227,16843,7594,1131503196,1127964789,100,100,100,100,2.73,2.8,8.73,8.75
-52581,19,007,19007,286,167,98051324,93508109,305,178,102818704,98275489,12887,6633,1337065360,1287981483,93.77,93.82,95.36,95.15,2.22,2.52,7.33,7.26
-52581,19,185,19185,19,11,4767380,4767380,305,178,102818704,98275489,6403,3212,1365315679,1360874542,6.23,6.18,4.64,4.85,0.3,0.34,0.35,0.35
-52583,19,185,19185,342,180,120716306,120561019,342,180,120716306,120561019,6403,3212,1365315679,1360874542,100,100,100,100,5.34,5.6,8.84,8.86
-52584,19,051,19051,438,171,58551231,58385858,438,171,58551231,58385858,8753,3600,1307566056,1300661956,100,100,100,100,5,4.75,4.48,4.49
-52585,19,101,19101,87,38,37684003,37659695,988,448,145900379,145151739,16843,7594,1131503196,1127964789,8.81,8.48,25.83,25.95,0.52,0.5,3.33,3.34
-52585,19,107,19107,810,364,86708528,86272355,988,448,145900379,145151739,10511,4931,1501996571,1500067240,81.98,81.25,59.43,59.44,7.71,7.38,5.77,5.75
-52585,19,183,19183,91,46,21507848,21219689,988,448,145900379,145151739,21704,9516,1478676085,1473276393,9.21,10.27,14.74,14.62,0.42,0.48,1.45,1.44
-52586,19,123,19123,521,250,122508394,122407367,521,250,122508394,122407367,22381,9766,1485092487,1478527687,100,100,100,100,2.33,2.56,8.25,8.28
-52588,19,051,19051,40,24,12277765,12277765,134,66,26887357,26405619,8753,3600,1307566056,1300661956,29.85,36.36,45.66,46.5,0.46,0.67,0.94,0.94
-52588,19,177,19177,94,42,14609592,14127854,134,66,26887357,26405619,7570,3670,1270437548,1255597645,70.15,63.64,54.34,53.5,1.24,1.14,1.15,1.13
-52590,19,007,19007,64,28,42220388,42214537,1246,505,194526072,194009522,12887,6633,1337065360,1287981483,5.14,5.54,21.7,21.76,0.5,0.42,3.16,3.28
-52590,19,185,19185,1182,477,152305684,151794985,1246,505,194526072,194009522,6403,3212,1365315679,1360874542,94.86,94.46,78.3,78.24,18.46,14.85,11.16,11.15
-52591,19,107,19107,3028,1423,327849389,327567747,3028,1423,327849389,327567747,10511,4931,1501996571,1500067240,100,100,100,100,28.81,28.86,21.83,21.84
-52593,19,007,19007,142,64,42505876,42464728,142,64,42505876,42464728,12887,6633,1337065360,1287981483,100,100,100,100,1.1,0.96,3.18,3.3
-52594,19,007,19007,305,161,75487743,75476533,399,209,121987222,121874560,12887,6633,1337065360,1287981483,76.44,77.03,61.88,61.93,2.37,2.43,5.65,5.86
-52594,19,051,19051,94,48,46499479,46398027,399,209,121987222,121874560,8753,3600,1307566056,1300661956,23.56,22.97,38.12,38.07,1.07,1.33,3.56,3.57
-52595,19,123,19123,416,182,1193986,1193986,416,182,1193986,1193986,22381,9766,1485092487,1478527687,100,100,100,100,1.86,1.86,0.08,0.08
-52601,19,057,19057,29723,13740,312025320,287154693,29723,13740,312025320,287154693,40325,18535,1113048973,1077754850,100,100,100,100,73.71,74.13,28.03,26.64
-52619,19,111,19111,594,248,95322544,94003111,594,248,95322544,94003111,35862,16205,1395660195,1340366450,100,100,100,100,1.66,1.53,6.83,7.01
-52620,19,177,19177,938,419,139397291,137753252,938,419,139397291,137753252,7570,3670,1270437548,1255597645,100,100,100,100,12.39,11.42,10.97,10.97
-52621,19,115,19115,72,35,16592270,16592270,668,299,109582868,109426658,11387,5002,1081368095,1040569636,10.78,11.71,15.14,15.16,0.63,0.7,1.53,1.59
-52621,19,183,19183,596,264,92990598,92834388,668,299,109582868,109426658,21704,9516,1478676085,1473276393,89.22,88.29,84.86,84.84,2.75,2.77,6.29,6.3
-52623,19,057,19057,1684,687,117714529,116939905,1993,804,151439917,149863756,40325,18535,1113048973,1077754850,84.5,85.45,77.73,78.03,4.18,3.71,10.58,10.85
-52623,19,087,19087,309,117,33725388,32923851,1993,804,151439917,149863756,20145,8280,1130684632,1124904348,15.5,14.55,22.27,21.97,1.53,1.41,2.98,2.93
-52624,19,111,19111,290,131,1656465,1656465,290,131,1656465,1656465,35862,16205,1395660195,1340366450,100,100,100,100,0.81,0.81,0.12,0.12
-52625,19,111,19111,2802,1198,285245058,285066161,2802,1198,285245058,285066161,35862,16205,1395660195,1340366450,100,100,100,100,7.81,7.39,20.44,21.27
-52626,19,111,19111,389,189,122111421,120928771,1346,682,247437264,243657718,35862,16205,1395660195,1340366450,28.9,27.71,49.35,49.63,1.08,1.17,8.75,9.02
-52626,19,177,19177,856,428,53035445,51279997,1346,682,247437264,243657718,7570,3670,1270437548,1255597645,63.6,62.76,21.43,21.05,11.31,11.66,4.17,4.08
-52626,29,045,29045,101,65,72290398,71448950,1346,682,247437264,243657718,7139,3473,1325620518,1307146971,7.5,9.53,29.22,29.32,1.41,1.87,5.45,5.47
-52627,19,111,19111,13105,5879,188414662,176642169,13105,5879,188414662,176642169,35862,16205,1395660195,1340366450,100,100,100,100,36.54,36.28,13.5,13.18
-52630,19,087,19087,248,121,26399738,26370457,445,200,109946731,109876580,20145,8280,1130684632,1124904348,55.73,60.5,24.01,24,1.23,1.46,2.33,2.34
-52630,19,111,19111,93,45,44166490,44135301,445,200,109946731,109876580,35862,16205,1395660195,1340366450,20.9,22.5,40.17,40.17,0.26,0.28,3.16,3.29
-52630,19,177,19177,104,34,39380503,39370822,445,200,109946731,109876580,7570,3670,1270437548,1255597645,23.37,17,35.82,35.83,1.37,0.93,3.1,3.14
-52632,19,111,19111,13086,6050,140470022,131951222,13086,6050,140470022,131951222,35862,16205,1395660195,1340366450,100,100,100,100,36.49,37.33,10.06,9.84
-52635,19,087,19087,10,3,4878161,4644792,675,301,112512335,111404053,20145,8280,1130684632,1124904348,1.48,1,4.34,4.17,0.05,0.04,0.43,0.41
-52635,19,101,19101,665,298,107634174,106759261,675,301,112512335,111404053,16843,7594,1131503196,1127964789,98.52,99,95.66,95.83,3.95,3.92,9.51,9.46
-52637,19,057,19057,2449,1052,172041910,172002147,2449,1052,172041910,172002147,40325,18535,1113048973,1077754850,100,100,100,100,6.07,5.68,15.46,15.96
-52638,19,057,19057,514,229,88521308,88053650,514,229,88521308,88053650,40325,18535,1113048973,1077754850,100,100,100,100,1.27,1.24,7.95,8.17
-52639,19,111,19111,2002,899,117469873,99006542,2002,899,117469873,99006542,35862,16205,1395660195,1340366450,100,100,100,100,5.58,5.55,8.42,7.39
-52640,19,057,19057,183,71,62704573,62704573,1447,607,188643645,188599646,40325,18535,1113048973,1077754850,12.65,11.7,33.24,33.25,0.45,0.38,5.63,5.82
-52640,19,115,19115,1264,536,125939072,125895073,1447,607,188643645,188599646,11387,5002,1081368095,1040569636,87.35,88.3,66.76,66.75,11.1,10.72,11.65,12.1
-52641,19,087,19087,12255,4879,528511908,525283122,12357,4925,551763610,548534824,20145,8280,1130684632,1124904348,99.17,99.07,95.79,95.76,60.83,58.93,46.74,46.7
-52641,19,101,19101,44,18,12120556,12120556,12357,4925,551763610,548534824,16843,7594,1131503196,1127964789,0.36,0.37,2.2,2.21,0.26,0.24,1.07,1.07
-52641,19,183,19183,58,28,11131146,11131146,12357,4925,551763610,548534824,21704,9516,1478676085,1473276393,0.47,0.57,2.02,2.03,0.27,0.29,0.75,0.76
-52644,19,057,19057,48,20,16688522,16688522,412,185,111080445,111080445,40325,18535,1113048973,1077754850,11.65,10.81,15.02,15.02,0.12,0.11,1.5,1.55
-52644,19,087,19087,364,165,94391923,94391923,412,185,111080445,111080445,20145,8280,1130684632,1124904348,88.35,89.19,84.98,84.98,1.81,1.99,8.35,8.39
-52645,19,057,19057,254,107,54097748,54070877,3176,1348,185650036,184352854,40325,18535,1113048973,1077754850,8,7.94,29.14,29.33,0.63,0.58,4.86,5.02
-52645,19,087,19087,2922,1241,131552288,130281977,3176,1348,185650036,184352854,20145,8280,1130684632,1124904348,92,92.06,70.86,70.67,14.5,14.99,11.63,11.58
-52646,19,057,19057,120,70,83131972,74596813,376,195,155005489,140333709,40325,18535,1113048973,1077754850,31.91,35.9,53.63,53.16,0.3,0.38,7.47,6.92
-52646,19,115,19115,256,125,71873517,65736896,376,195,155005489,140333709,11387,5002,1081368095,1040569636,68.09,64.1,46.37,46.84,2.25,2.5,6.65,6.32
-52647,19,087,19087,229,105,911591,911591,229,105,911591,911591,20145,8280,1130684632,1124904348,100,100,100,100,1.14,1.27,0.08,0.08
-52649,19,087,19087,805,371,93867601,93802307,887,404,119399466,119318917,20145,8280,1130684632,1124904348,90.76,91.83,78.62,78.61,4,4.48,8.3,8.34
-52649,19,111,19111,82,33,25531865,25516610,887,404,119399466,119318917,35862,16205,1395660195,1340366450,9.24,8.17,21.38,21.39,0.23,0.2,1.83,1.9
-52650,19,057,19057,826,351,104495885,104272813,826,351,104495885,104272813,40325,18535,1113048973,1077754850,100,100,100,100,2.05,1.89,9.39,9.68
-52651,19,101,19101,38,19,14786578,14759268,646,293,156669871,156577973,16843,7594,1131503196,1127964789,5.88,6.48,9.44,9.43,0.23,0.25,1.31,1.31
-52651,19,177,19177,608,274,141883293,141818705,646,293,156669871,156577973,7570,3670,1270437548,1255597645,94.12,93.52,90.56,90.57,8.03,7.47,11.17,11.29
-52653,19,115,19115,3570,1641,312475210,291933980,3570,1641,312475210,291933980,11387,5002,1081368095,1040569636,100,100,100,100,31.35,32.81,28.9,28.06
-52654,19,087,19087,1516,632,91790630,91661309,1728,719,136065742,135506241,20145,8280,1130684632,1124904348,87.73,87.9,67.46,67.64,7.53,7.63,8.12,8.15
-52654,19,183,19183,212,87,44275112,43844932,1728,719,136065742,135506241,21704,9516,1478676085,1473276393,12.27,12.1,32.54,32.36,0.98,0.91,2.99,2.98
-52655,19,057,19057,4219,2069,42564530,42480154,4219,2069,42564530,42480154,40325,18535,1113048973,1077754850,100,100,100,100,10.46,11.16,3.82,3.94
-52656,19,087,19087,27,11,2043567,2043567,2359,1054,247274743,246653156,20145,8280,1130684632,1124904348,1.14,1.04,0.83,0.83,0.13,0.13,0.18,0.18
-52656,19,111,19111,2332,1043,245231176,244609589,2359,1054,247274743,246653156,35862,16205,1395660195,1340366450,98.86,98.96,99.17,99.17,6.5,6.44,17.57,18.25
-52657,19,111,19111,95,35,494762,494762,95,35,494762,494762,35862,16205,1395660195,1340366450,100,100,100,100,0.26,0.22,0.04,0.04
-52658,19,057,19057,79,36,1695133,1459808,1071,491,131240990,117815555,40325,18535,1113048973,1077754850,7.38,7.33,1.29,1.24,0.2,0.19,0.15,0.14
-52658,19,111,19111,992,455,129545857,116355747,1071,491,131240990,117815555,35862,16205,1395660195,1340366450,92.62,92.67,98.71,98.76,2.77,2.81,9.28,8.68
-52659,19,087,19087,1460,635,122611837,122589452,1553,671,159819459,159797074,20145,8280,1130684632,1124904348,94.01,94.63,76.72,76.72,7.25,7.67,10.84,10.9
-52659,19,115,19115,93,36,37207622,37207622,1553,671,159819459,159797074,11387,5002,1081368095,1040569636,5.99,5.37,23.28,23.28,0.82,0.72,3.44,3.58
-52660,19,057,19057,226,103,57367543,57330895,226,103,57367543,57330895,40325,18535,1113048973,1077754850,100,100,100,100,0.56,0.56,5.15,5.32
-52701,19,045,19045,108,43,1643828,1643828,108,43,1643828,1643828,49116,21733,1839345041,1799821282,100,100,100,100,0.22,0.2,0.09,0.09
-52720,19,031,19031,226,109,41624246,40708709,861,446,110127460,105688120,18499,8064,1507117133,1500731293,26.25,24.44,37.8,38.52,1.22,1.35,2.76,2.71
-52720,19,139,19139,635,337,68503214,64979411,861,446,110127460,105688120,42745,17910,1163239359,1133040484,73.75,75.56,62.2,61.48,1.49,1.88,5.89,5.73
-52721,19,031,19031,798,347,108698097,108698097,798,347,108698097,108698097,18499,8064,1507117133,1500731293,100,100,100,100,4.31,4.3,7.21,7.24
-52722,19,163,19163,34754,15055,73161625,68714054,34754,15055,73161625,68714054,165224,71835,1212660090,1186444226,100,100,100,100,21.03,20.96,6.03,5.79
-52726,19,139,19139,488,204,43876406,42674599,4468,1774,94823134,93558953,42745,17910,1163239359,1133040484,10.92,11.5,46.27,45.61,1.14,1.14,3.77,3.77
-52726,19,163,19163,3980,1570,50946728,50884354,4468,1774,94823134,93558953,165224,71835,1212660090,1186444226,89.08,88.5,53.73,54.39,2.41,2.19,4.2,4.29
-52727,19,045,19045,409,165,63081901,63043506,409,165,63081901,63043506,49116,21733,1839345041,1799821282,100,100,100,100,0.83,0.76,3.43,3.5
-52728,19,163,19163,1110,460,5764558,4016961,1110,460,5764558,4016961,165224,71835,1212660090,1186444226,100,100,100,100,0.67,0.64,0.48,0.34
-52729,19,045,19045,874,380,108881384,108718701,874,380,108881384,108718701,49116,21733,1839345041,1799821282,100,100,100,100,1.78,1.75,5.92,6.04
-52730,19,045,19045,4950,2235,101243411,94758761,4950,2235,101243411,94758761,49116,21733,1839345041,1799821282,100,100,100,100,10.08,10.28,5.5,5.26
-52731,19,045,19045,882,375,134149268,134149268,894,379,136590407,136590407,49116,21733,1839345041,1799821282,98.66,98.94,98.21,98.21,1.8,1.73,7.29,7.45
-52731,19,097,19097,12,4,2441139,2441139,894,379,136590407,136590407,19848,9415,1682474489,1647332960,1.34,1.06,1.79,1.79,0.06,0.04,0.15,0.15
-52732,19,045,19045,28293,12811,310704633,287014236,28293,12811,310704633,287014236,49116,21733,1839345041,1799821282,100,100,100,100,57.6,58.95,16.89,15.95
-52737,19,115,19115,384,152,607264,607264,384,152,607264,607264,11387,5002,1081368095,1040569636,100,100,100,100,3.37,3.04,0.06,0.06
-52738,19,115,19115,3567,1499,323191180,318125497,3567,1499,323191180,318125497,11387,5002,1081368095,1040569636,100,100,100,100,31.33,29.97,29.89,30.57
-52739,19,115,19115,209,105,50612499,47686073,745,324,89211035,84960780,11387,5002,1081368095,1040569636,28.05,32.41,56.73,56.13,1.84,2.1,4.68,4.58
-52739,19,139,19139,536,219,38598536,37274707,745,324,89211035,84960780,42745,17910,1163239359,1133040484,71.95,67.59,43.27,43.87,1.25,1.22,3.32,3.29
-52742,19,045,19045,7618,3180,304142776,303606179,7618,3180,304142776,303606179,49116,21733,1839345041,1799821282,100,100,100,100,15.51,14.63,16.54,16.87
-52745,19,163,19163,633,273,74381611,73906469,633,273,74381611,73906469,165224,71835,1212660090,1186444226,100,100,100,100,0.38,0.38,6.13,6.23
-52746,19,163,19163,967,400,68807314,68556073,967,400,68807314,68556073,165224,71835,1212660090,1186444226,100,100,100,100,0.59,0.56,5.67,5.78
-52747,19,031,19031,1899,801,32064670,32064670,2106,885,56094151,56082804,18499,8064,1507117133,1500731293,90.17,90.51,57.16,57.17,10.27,9.93,2.13,2.14
-52747,19,139,19139,63,23,10924366,10913019,2106,885,56094151,56082804,42745,17910,1163239359,1133040484,2.99,2.6,19.48,19.46,0.15,0.13,0.94,0.96
-52747,19,163,19163,144,61,13105115,13105115,2106,885,56094151,56082804,165224,71835,1212660090,1186444226,6.84,6.89,23.36,23.37,0.09,0.08,1.08,1.1
-52748,19,163,19163,8850,3484,107004915,106896308,8850,3484,107004915,106896308,165224,71835,1212660090,1186444226,100,100,100,100,5.36,4.85,8.82,9.01
-52749,19,139,19139,925,326,5218220,5218220,925,326,5218220,5218220,42745,17910,1163239359,1133040484,100,100,100,100,2.16,1.82,0.45,0.46
-52750,19,045,19045,619,240,78435746,77963305,619,240,78435746,77963305,49116,21733,1839345041,1799821282,100,100,100,100,1.26,1.1,4.26,4.33
-52751,19,045,19045,1054,418,129085616,128873436,1054,418,129085616,128873436,49116,21733,1839345041,1799821282,100,100,100,100,2.15,1.92,7.02,7.16
-52752,19,115,19115,515,213,984227,984227,515,213,984227,984227,11387,5002,1081368095,1040569636,100,100,100,100,4.52,4.26,0.09,0.09
-52753,19,163,19163,5153,2181,68492183,64478931,5153,2181,68492183,64478931,165224,71835,1212660090,1186444226,100,100,100,100,3.12,3.04,5.65,5.43
-52754,19,115,19115,812,356,83677613,83474545,1274,578,186005712,184729827,11387,5002,1081368095,1040569636,63.74,61.59,44.99,45.19,7.13,7.12,7.74,8.02
-52754,19,139,19139,462,222,102328099,101255282,1274,578,186005712,184729827,42745,17910,1163239359,1133040484,36.26,38.41,55.01,54.81,1.08,1.24,8.8,8.94
-52755,19,103,19103,1857,782,145394335,144354086,1928,815,157930258,156465323,130882,55967,1613950741,1590355537,96.32,95.95,92.06,92.26,1.42,1.4,9.01,9.08
-52755,19,115,19115,71,33,12535923,12111237,1928,815,157930258,156465323,11387,5002,1081368095,1040569636,3.68,4.05,7.94,7.74,0.62,0.66,1.16,1.16
-52756,19,163,19163,2133,857,111107641,110779391,2133,857,111107641,110779391,165224,71835,1212660090,1186444226,100,100,100,100,1.29,1.19,9.16,9.34
-52757,19,045,19045,201,86,3069924,3069924,201,86,3069924,3069924,49116,21733,1839345041,1799821282,100,100,100,100,0.41,0.4,0.17,0.17
-52758,19,163,19163,199,85,1745891,1608926,199,85,1745891,1608926,165224,71835,1212660090,1186444226,100,100,100,100,0.12,0.12,0.14,0.14
-52760,19,031,19031,132,73,24107570,23286131,533,235,58900339,56930747,18499,8064,1507117133,1500731293,24.77,31.06,40.93,40.9,0.71,0.91,1.6,1.55
-52760,19,139,19139,401,162,34792769,33644616,533,235,58900339,56930747,42745,17910,1163239359,1133040484,75.23,68.94,59.07,59.1,0.94,0.9,2.99,2.97
-52761,19,115,19115,574,271,45671698,40214952,30678,13071,482973608,458486848,11387,5002,1081368095,1040569636,1.87,2.07,9.46,8.77,5.04,5.42,4.22,3.86
-52761,19,139,19139,30104,12800,437301910,418271896,30678,13071,482973608,458486848,42745,17910,1163239359,1133040484,98.13,97.93,90.54,91.23,70.43,71.47,37.59,36.92
-52765,19,031,19031,65,27,19317914,19317914,453,183,78185471,78185471,18499,8064,1507117133,1500731293,14.35,14.75,24.71,24.71,0.35,0.33,1.28,1.29
-52765,19,163,19163,388,156,58867557,58867557,453,183,78185471,78185471,165224,71835,1212660090,1186444226,85.65,85.25,75.29,75.29,0.23,0.22,4.85,4.96
-52766,19,139,19139,820,366,119401548,117320623,820,366,119401548,117320623,42745,17910,1163239359,1133040484,100,100,100,100,1.92,2.04,10.26,10.35
-52767,19,163,19163,349,151,3354642,1725980,349,151,3354642,1725980,165224,71835,1212660090,1186444226,100,100,100,100,0.21,0.21,0.28,0.15
-52768,19,163,19163,1426,610,89481384,83537465,1426,610,89481384,83537465,165224,71835,1212660090,1186444226,100,100,100,100,0.86,0.85,7.38,7.04
-52769,19,139,19139,413,171,50484611,50474837,671,278,106726313,106716539,42745,17910,1163239359,1133040484,61.55,61.51,47.3,47.3,0.97,0.95,4.34,4.45
-52769,19,163,19163,258,107,56241702,56241702,671,278,106726313,106716539,165224,71835,1212660090,1186444226,38.45,38.49,52.7,52.7,0.16,0.15,4.64,4.74
-52772,19,031,19031,5029,2279,342328096,339596319,5029,2279,342328096,339596319,18499,8064,1507117133,1500731293,100,100,100,100,27.19,28.26,22.71,22.63
-52773,19,139,19139,16,6,5142082,5079463,2380,1127,145837805,145770767,42745,17910,1163239359,1133040484,0.67,0.53,3.53,3.48,0.04,0.03,0.44,0.45
-52773,19,163,19163,2364,1121,140695723,140691304,2380,1127,145837805,145770767,165224,71835,1212660090,1186444226,99.33,99.47,96.47,96.52,1.43,1.56,11.6,11.86
-52774,19,045,19045,136,51,728977,728977,136,51,728977,728977,49116,21733,1839345041,1799821282,100,100,100,100,0.28,0.23,0.04,0.04
-52776,19,031,19031,313,137,75790295,75790295,4947,1800,219678908,219106223,18499,8064,1507117133,1500731293,6.33,7.61,34.5,34.59,1.69,1.7,5.03,5.05
-52776,19,139,19139,4634,1663,143888613,143315928,4947,1800,219678908,219106223,42745,17910,1163239359,1133040484,93.67,92.39,65.5,65.41,10.84,9.29,12.37,12.65
-52777,19,031,19031,26,19,5523613,5523613,1357,598,139946616,139946616,18499,8064,1507117133,1500731293,1.92,3.18,3.95,3.95,0.14,0.24,0.37,0.37
-52777,19,045,19045,1331,579,134423003,134423003,1357,598,139946616,139946616,49116,21733,1839345041,1799821282,98.08,96.82,96.05,96.05,2.71,2.66,7.31,7.47
-52778,19,031,19031,795,298,113193390,113191927,4043,1709,215972375,215809810,18499,8064,1507117133,1500731293,19.66,17.44,52.41,52.45,4.3,3.7,7.51,7.54
-52778,19,139,19139,3248,1411,102778985,102617883,4043,1709,215972375,215809810,42745,17910,1163239359,1133040484,80.34,82.56,47.59,47.55,7.6,7.88,8.84,9.06
-52801,19,163,19163,1122,728,1359908,939343,1122,728,1359908,939343,165224,71835,1212660090,1186444226,100,100,100,100,0.68,1.01,0.11,0.08
-52802,19,163,19163,10868,4556,29294412,24767339,10868,4556,29294412,24767339,165224,71835,1212660090,1186444226,100,100,100,100,6.58,6.34,2.42,2.09
-52803,19,163,19163,22174,10305,14068035,13273300,22174,10305,14068035,13273300,165224,71835,1212660090,1186444226,100,100,100,100,13.42,14.35,1.16,1.12
-52804,19,163,19163,27379,11433,88861422,87535930,27379,11433,88861422,87535930,165224,71835,1212660090,1186444226,100,100,100,100,16.57,15.92,7.33,7.38
-52806,19,163,19163,27503,11803,79448284,79448284,27503,11803,79448284,79448284,165224,71835,1212660090,1186444226,100,100,100,100,16.65,16.43,6.55,6.7
-52807,19,163,19163,13470,6439,76469440,76469440,13470,6439,76469440,76469440,165224,71835,1212660090,1186444226,100,100,100,100,8.15,8.96,6.31,6.45
-53001,55,117,55117,1901,796,77076105,76362304,1901,796,77076105,76362304,115507,50766,3292451751,1324171349,100,100,100,100,1.65,1.57,2.34,5.77
-53002,55,131,55131,2299,931,82443687,82291114,2299,931,82443687,82291114,131887,54695,1128520279,1115515204,100,100,100,100,1.74,1.7,7.31,7.38
-53003,55,027,55027,141,70,1213077,1213077,141,70,1213077,1213077,88759,37005,2349259551,2267857853,100,100,100,100,0.16,0.19,0.05,0.05
-53004,55,089,55089,3330,1341,93777917,91486480,3330,1341,93777917,91486480,86395,36267,2890937558,603666538,100,100,100,100,3.85,3.7,3.24,15.16
-53005,55,133,55133,19425,7876,38536874,37737731,19425,7876,38536874,37737731,389891,160864,1503735765,1423388982,100,100,100,100,4.98,4.9,2.56,2.65
-53006,55,027,55027,1378,548,79773224,79255544,1779,722,106962299,106429970,88759,37005,2349259551,2267857853,77.46,75.9,74.58,74.47,1.55,1.48,3.4,3.49
-53006,55,039,55039,401,174,27189075,27174426,1779,722,106962299,106429970,101633,43910,1983516130,1863633125,22.54,24.1,25.42,25.53,0.39,0.4,1.37,1.46
-53007,55,133,55133,1841,925,2039693,2011956,1841,925,2039693,2011956,389891,160864,1503735765,1423388982,100,100,100,100,0.47,0.58,0.14,0.14
-53010,55,039,55039,7375,3270,260198523,253628720,7681,3384,273150245,266580442,101633,43910,1983516130,1863633125,96.02,96.63,95.26,95.14,7.26,7.45,13.12,13.61
-53010,55,131,55131,306,114,12951722,12951722,7681,3384,273150245,266580442,131887,54695,1128520279,1115515204,3.98,3.37,4.74,4.86,0.23,0.21,1.15,1.16
-53011,55,039,55039,67,121,1381120,1371636,2260,1119,104006879,102656543,101633,43910,1983516130,1863633125,2.96,10.81,1.33,1.34,0.07,0.28,0.07,0.07
-53011,55,117,55117,2193,998,102625759,101284907,2260,1119,104006879,102656543,115507,50766,3292451751,1324171349,97.04,89.19,98.67,98.66,1.9,1.97,3.12,7.65
-53012,55,089,55089,16542,6844,62722711,62258750,18097,7432,91402611,90849848,86395,36267,2890937558,603666538,91.41,92.09,68.62,68.53,19.15,18.87,2.17,10.31
-53012,55,131,55131,1555,588,28679900,28591098,18097,7432,91402611,90849848,131887,54695,1128520279,1115515204,8.59,7.91,31.38,31.47,1.18,1.08,2.54,2.56
-53013,55,089,55089,311,165,14227710,12830080,3308,1430,76518862,74680594,86395,36267,2890937558,603666538,9.4,11.54,18.59,17.18,0.36,0.45,0.49,2.13
-53013,55,117,55117,2997,1265,62291152,61850514,3308,1430,76518862,74680594,115507,50766,3292451751,1324171349,90.6,88.46,81.41,82.82,2.59,2.49,1.89,4.67
-53014,55,015,55015,7710,3500,294757887,292932412,7962,3595,333967709,331160999,48971,19695,1028423834,824227417,96.83,97.36,88.26,88.46,15.74,17.77,28.66,35.54
-53014,55,039,55039,13,3,454894,454894,7962,3595,333967709,331160999,101633,43910,1983516130,1863633125,0.16,0.08,0.14,0.14,0.01,0.01,0.02,0.02
-53014,55,071,55071,239,92,38754928,37773693,7962,3595,333967709,331160999,81442,37189,3869637904,1525716187,3,2.56,11.6,11.41,0.29,0.25,1,2.48
-53015,55,071,55071,2193,949,75389272,68216678,2609,1112,110146918,102880770,81442,37189,3869637904,1525716187,84.06,85.34,68.44,66.31,2.69,2.55,1.95,4.47
-53015,55,117,55117,416,163,34757646,34664092,2609,1112,110146918,102880770,115507,50766,3292451751,1324171349,15.94,14.66,31.56,33.69,0.36,0.32,1.06,2.62
-53016,55,027,55027,384,159,1231064,1230537,384,159,1231064,1230537,88759,37005,2349259551,2267857853,100,100,100,100,0.43,0.43,0.05,0.05
-53017,55,131,55131,4560,1718,39164331,38594846,5538,2079,45936712,45291086,131887,54695,1128520279,1115515204,82.34,82.64,85.26,85.22,3.46,3.14,3.47,3.46
-53017,55,133,55133,978,361,6772381,6696240,5538,2079,45936712,45291086,389891,160864,1503735765,1423388982,17.66,17.36,14.74,14.78,0.25,0.22,0.45,0.47
-53018,55,133,55133,7899,2973,32397684,29831800,7899,2973,32397684,29831800,389891,160864,1503735765,1423388982,100,100,100,100,2.03,1.85,2.15,2.1
-53019,55,039,55039,2027,808,103291963,102833681,2027,808,103291963,102833681,101633,43910,1983516130,1863633125,100,100,100,100,1.99,1.84,5.21,5.52
-53020,55,015,55015,65,25,2965852,2958597,3500,1808,163431530,159244323,48971,19695,1028423834,824227417,1.86,1.38,1.81,1.86,0.13,0.13,0.29,0.36
-53020,55,071,55071,66,32,4926560,4925308,3500,1808,163431530,159244323,81442,37189,3869637904,1525716187,1.89,1.77,3.01,3.09,0.08,0.09,0.13,0.32
-53020,55,117,55117,3369,1751,155539118,151360418,3500,1808,163431530,159244323,115507,50766,3292451751,1324171349,96.26,96.85,95.17,95.05,2.92,3.45,4.72,11.43
-53021,55,089,55089,4024,1598,69186997,68416782,4709,1860,86839873,85738814,86395,36267,2890937558,603666538,85.45,85.91,79.67,79.8,4.66,4.41,2.39,11.33
-53021,55,131,55131,685,262,17652876,17322032,4709,1860,86839873,85738814,131887,54695,1128520279,1115515204,14.55,14.09,20.33,20.2,0.52,0.48,1.56,1.55
-53022,55,131,55131,18920,7746,72301225,72232181,18920,7746,72301225,72232181,131887,54695,1128520279,1115515204,100,100,100,100,14.35,14.16,6.41,6.48
-53023,55,117,55117,1496,610,105581776,104497170,1496,610,105581776,104497170,115507,50766,3292451751,1324171349,100,100,100,100,1.3,1.2,3.21,7.89
-53024,55,089,55089,16579,7194,75238021,70790819,16579,7194,75238021,70790819,86395,36267,2890937558,603666538,100,100,100,100,19.19,19.84,2.6,11.73
-53027,55,027,55027,563,224,42865861,42789503,22041,9189,242087588,239107180,88759,37005,2349259551,2267857853,2.55,2.44,17.71,17.9,0.63,0.61,1.82,1.89
-53027,55,131,55131,21478,8965,199221727,196317677,22041,9189,242087588,239107180,131887,54695,1128520279,1115515204,97.45,97.56,82.29,82.1,16.29,16.39,17.65,17.6
-53029,55,131,55131,94,42,5049119,5048483,20799,8230,103518538,96259037,131887,54695,1128520279,1115515204,0.45,0.51,4.88,5.24,0.07,0.08,0.45,0.45
-53029,55,133,55133,20705,8188,98469419,91210554,20799,8230,103518538,96259037,389891,160864,1503735765,1423388982,99.55,99.49,95.12,94.76,5.31,5.09,6.55,6.41
-53031,55,117,55117,43,13,23759,23759,43,13,23759,23759,115507,50766,3292451751,1324171349,100,100,100,100,0.04,0.03,0,0
-53032,55,027,55027,4757,2080,89812813,83465758,4757,2080,89812813,83465758,88759,37005,2349259551,2267857853,100,100,100,100,5.36,5.62,3.82,3.68
-53033,55,131,55131,4885,1986,39030396,38020325,4885,1986,39030396,38020325,131887,54695,1128520279,1115515204,100,100,100,100,3.7,3.63,3.46,3.41
-53034,55,027,55027,1811,876,28417264,21610077,1811,876,28417264,21610077,88759,37005,2349259551,2267857853,100,100,100,100,2.04,2.37,1.21,0.95
-53035,55,027,55027,2406,1010,92938414,91745167,2406,1010,92938414,91745167,88759,37005,2349259551,2267857853,100,100,100,100,2.71,2.73,3.96,4.05
-53036,55,027,55027,317,130,16844582,16431650,2720,1076,70751790,69382612,88759,37005,2349259551,2267857853,11.65,12.08,23.81,23.68,0.36,0.35,0.72,0.72
-53036,55,055,55055,2360,931,51113241,50194675,2720,1076,70751790,69382612,83686,35147,1509279739,1441259924,86.76,86.52,72.24,72.34,2.82,2.65,3.39,3.48
-53036,55,133,55133,43,15,2793967,2756287,2720,1076,70751790,69382612,389891,160864,1503735765,1423388982,1.58,1.39,3.95,3.97,0.01,0.01,0.19,0.19
-53037,55,131,55131,9260,3977,59721992,59509119,9260,3977,59721992,59509119,131887,54695,1128520279,1115515204,100,100,100,100,7.02,7.27,5.29,5.33
-53038,55,055,55055,4013,1626,79367669,78228973,4013,1626,79367669,78228973,83686,35147,1509279739,1441259924,100,100,100,100,4.8,4.63,5.26,5.43
-53039,55,027,55027,4863,1875,185129031,183463788,4863,1875,185129031,183463788,88759,37005,2349259551,2267857853,100,100,100,100,5.48,5.07,7.88,8.09
-53040,55,039,55039,388,153,15697758,15439194,8064,3280,169296541,168806762,101633,43910,1983516130,1863633125,4.81,4.66,9.27,9.15,0.38,0.35,0.79,0.83
-53040,55,117,55117,370,148,21006286,20830182,8064,3280,169296541,168806762,115507,50766,3292451751,1324171349,4.59,4.51,12.41,12.34,0.32,0.29,0.64,1.57
-53040,55,131,55131,7306,2979,132592497,132537386,8064,3280,169296541,168806762,131887,54695,1128520279,1115515204,90.6,90.82,78.32,78.51,5.54,5.45,11.75,11.88
-53042,55,015,55015,509,229,14279967,14065058,6690,3093,162499780,159733656,48971,19695,1028423834,824227417,7.61,7.4,8.79,8.81,1.04,1.16,1.39,1.71
-53042,55,071,55071,6181,2864,148219813,145668598,6690,3093,162499780,159733656,81442,37189,3869637904,1525716187,92.39,92.6,91.21,91.19,7.59,7.7,3.83,9.55
-53044,55,117,55117,2297,946,10345439,10182713,2297,946,10345439,10182713,115507,50766,3292451751,1324171349,100,100,100,100,1.99,1.86,0.31,0.77
-53045,55,133,55133,21686,8994,37788156,37272515,21686,8994,37788156,37272515,389891,160864,1503735765,1423388982,100,100,100,100,5.56,5.59,2.51,2.62
-53046,55,133,55133,1107,517,6323565,6271233,1107,517,6323565,6271233,389891,160864,1503735765,1423388982,100,100,100,100,0.28,0.32,0.42,0.44
-53047,55,027,55027,78,33,422653,422653,78,33,422653,422653,88759,37005,2349259551,2267857853,100,100,100,100,0.09,0.09,0.02,0.02
-53048,55,027,55027,3343,1459,66298633,66203661,3364,1469,68793334,68676703,88759,37005,2349259551,2267857853,99.38,99.32,96.37,96.4,3.77,3.94,2.82,2.92
-53048,55,039,55039,21,10,2494701,2473042,3364,1469,68793334,68676703,101633,43910,1983516130,1863633125,0.62,0.68,3.63,3.6,0.02,0.02,0.13,0.13
-53049,55,015,55015,80,52,4390871,4385295,2451,1168,103134216,102843207,48971,19695,1028423834,824227417,3.26,4.45,4.26,4.26,0.16,0.26,0.43,0.53
-53049,55,039,55039,2371,1116,98743345,98457912,2451,1168,103134216,102843207,101633,43910,1983516130,1863633125,96.74,95.55,95.74,95.74,2.33,2.54,4.98,5.28
-53050,55,027,55027,6986,3025,183783773,177537860,6986,3025,183783773,177537860,88759,37005,2349259551,2267857853,100,100,100,100,7.87,8.17,7.82,7.83
-53051,55,133,55133,35651,15159,86374325,85362174,35651,15159,86374325,85362174,389891,160864,1503735765,1423388982,100,100,100,100,9.14,9.42,5.74,6
-53057,55,039,55039,1928,665,86544136,85363928,1928,665,86544136,85363928,101633,43910,1983516130,1863633125,100,100,100,100,1.9,1.51,4.36,4.58
-53058,55,133,55133,3243,1468,19685369,14967985,3243,1468,19685369,14967985,389891,160864,1503735765,1423388982,100,100,100,100,0.83,0.91,1.31,1.05
-53059,55,027,55027,1767,732,83201150,81690257,1767,732,83201150,81690257,88759,37005,2349259551,2267857853,100,100,100,100,1.99,1.98,3.54,3.6
-53061,55,015,55015,4734,2130,93621619,93404687,5196,2317,118705466,118470428,48971,19695,1028423834,824227417,91.11,91.93,78.87,78.84,9.67,10.81,9.1,11.33
-53061,55,039,55039,411,173,24153087,24136289,5196,2317,118705466,118470428,101633,43910,1983516130,1863633125,7.91,7.47,20.35,20.37,0.4,0.39,1.22,1.3
-53061,55,071,55071,51,14,930760,929452,5196,2317,118705466,118470428,81442,37189,3869637904,1525716187,0.98,0.6,0.78,0.78,0.06,0.04,0.02,0.06
-53063,55,071,55071,1552,633,104570666,101353978,1552,633,104570666,101353978,81442,37189,3869637904,1525716187,100,100,100,100,1.91,1.7,2.7,6.64
-53065,55,027,55027,17,8,4142250,4142250,2226,871,116787173,115949255,88759,37005,2349259551,2267857853,0.76,0.92,3.55,3.57,0.02,0.02,0.18,0.18
-53065,55,039,55039,2209,863,112644923,111807005,2226,871,116787173,115949255,101633,43910,1983516130,1863633125,99.24,99.08,96.45,96.43,2.17,1.97,5.68,6
-53066,55,027,55027,1492,571,38365174,38201633,33830,14171,297708232,273759117,88759,37005,2349259551,2267857853,4.41,4.03,12.89,13.95,1.68,1.54,1.63,1.68
-53066,55,055,55055,2122,823,47535133,46646045,33830,14171,297708232,273759117,83686,35147,1509279739,1441259924,6.27,5.81,15.97,17.04,2.54,2.34,3.15,3.24
-53066,55,133,55133,30216,12777,211807925,188911439,33830,14171,297708232,273759117,389891,160864,1503735765,1423388982,89.32,90.16,71.15,69.01,7.75,7.94,14.09,13.27
-53069,55,133,55133,697,429,1697489,1004733,697,429,1697489,1004733,389891,160864,1503735765,1423388982,100,100,100,100,0.18,0.27,0.11,0.07
-53070,55,117,55117,4713,2086,80940148,73783061,4713,2086,80940148,73783061,115507,50766,3292451751,1324171349,100,100,100,100,4.08,4.11,2.46,5.57
-53072,55,133,55133,23907,10844,86374308,75600903,23907,10844,86374308,75600903,389891,160864,1503735765,1423388982,100,100,100,100,6.13,6.74,5.74,5.31
-53073,55,117,55117,15757,6380,213285891,210992270,15757,6380,213285891,210992270,115507,50766,3292451751,1324171349,100,100,100,100,13.64,12.57,6.48,15.93
-53074,55,089,55089,12880,5692,83470999,78062591,12880,5692,83470999,78062591,86395,36267,2890937558,603666538,100,100,100,100,14.91,15.69,2.89,12.93
-53075,55,089,55089,154,68,7542108,7341653,3345,1409,95487195,93906611,86395,36267,2890937558,603666538,4.6,4.83,7.9,7.82,0.18,0.19,0.26,1.22
-53075,55,117,55117,3191,1341,87945087,86564958,3345,1409,95487195,93906611,115507,50766,3292451751,1324171349,95.4,95.17,92.1,92.18,2.76,2.64,2.67,6.54
-53076,55,131,55131,3648,1337,57460366,57460366,3648,1337,57460366,57460366,131887,54695,1128520279,1115515204,100,100,100,100,2.77,2.44,5.09,5.15
-53078,55,027,55027,1912,723,87955143,87327565,1912,723,87955143,87327565,88759,37005,2349259551,2267857853,100,100,100,100,2.15,1.95,3.74,3.85
-53079,55,039,55039,1388,644,83329521,82378978,1413,655,89385888,88088853,101633,43910,1983516130,1863633125,98.23,98.32,93.22,93.52,1.37,1.47,4.2,4.42
-53079,55,117,55117,25,11,6056367,5709875,1413,655,89385888,88088853,115507,50766,3292451751,1324171349,1.77,1.68,6.78,6.48,0.02,0.02,0.18,0.43
-53080,55,089,55089,5715,2378,75843222,74325266,5715,2378,75843222,74325266,86395,36267,2890937558,603666538,100,100,100,100,6.61,6.56,2.62,12.31
-53081,55,117,55117,43129,19696,77570578,65853648,43129,19696,77570578,65853648,115507,50766,3292451751,1324171349,100,100,100,100,37.34,38.8,2.36,4.97
-53083,55,117,55117,20362,8675,93279072,84014243,20362,8675,93279072,84014243,115507,50766,3292451751,1324171349,100,100,100,100,17.63,17.09,2.83,6.34
-53085,55,117,55117,11267,5127,185812181,184218461,11267,5127,185812181,184218461,115507,50766,3292451751,1324171349,100,100,100,100,9.75,10.1,5.64,13.91
-53086,55,131,55131,8255,3390,56193052,55629542,8255,3390,56193052,55629542,131887,54695,1128520279,1115515204,100,100,100,100,6.26,6.2,4.98,4.99
-53088,55,015,55015,379,200,3426595,3419771,379,200,3426595,3419771,48971,19695,1028423834,824227417,100,100,100,100,0.77,1.02,0.33,0.41
-53089,55,133,55133,18568,7251,71263122,70538528,18568,7251,71263122,70538528,389891,160864,1503735765,1423388982,100,100,100,100,4.76,4.51,4.74,4.96
-53090,55,089,55089,204,81,2165904,2165904,21873,8850,146710859,145208159,86395,36267,2890937558,603666538,0.93,0.92,1.48,1.49,0.24,0.22,0.07,0.36
-53090,55,131,55131,21669,8769,144544955,143042255,21873,8850,146710859,145208159,131887,54695,1128520279,1115515204,99.07,99.08,98.52,98.51,16.43,16.03,12.81,12.82
-53091,55,027,55027,1966,857,64953771,63785225,2018,875,67913072,66744526,88759,37005,2349259551,2267857853,97.42,97.94,95.64,95.57,2.21,2.32,2.76,2.81
-53091,55,131,55131,52,18,2959301,2959301,2018,875,67913072,66744526,131887,54695,1128520279,1115515204,2.58,2.06,4.36,4.43,0.04,0.03,0.26,0.27
-53092,55,089,55089,20024,8794,57146556,52820381,20024,8794,57146556,52820381,86395,36267,2890937558,603666538,100,100,100,100,23.18,24.25,1.98,8.75
-53093,55,117,55117,1981,760,52530321,51978774,1981,760,52530321,51978774,115507,50766,3292451751,1324171349,100,100,100,100,1.72,1.5,1.6,3.93
-53094,55,055,55055,19169,7584,236514874,232275024,19169,7584,236514874,232275024,83686,35147,1509279739,1441259924,100,100,100,100,22.91,21.58,15.67,16.12
-53095,55,089,55089,224,98,13264424,13117257,27139,11971,191817557,186125014,86395,36267,2890937558,603666538,0.83,0.82,6.92,7.05,0.26,0.27,0.46,2.17
-53095,55,131,55131,26915,11873,178553133,173007757,27139,11971,191817557,186125014,131887,54695,1128520279,1115515204,99.17,99.18,93.08,92.95,20.41,21.71,15.82,15.51
-53097,55,089,55089,6319,1976,71965409,69821442,6319,1976,71965409,69821442,86395,36267,2890937558,603666538,100,100,100,100,7.31,5.45,2.49,11.57
-53098,55,027,55027,11965,5087,270135214,267581741,11965,5087,270135214,267581741,88759,37005,2349259551,2267857853,100,100,100,100,13.48,13.75,11.5,11.8
-53103,55,133,55133,3724,1418,34777274,33362731,3724,1418,34777274,33362731,389891,160864,1503735765,1423388982,100,100,100,100,0.96,0.88,2.31,2.34
-53104,55,059,55059,5426,2301,83739918,82530339,5426,2301,83739918,82530339,166426,69288,1952890103,704452046,100,100,100,100,3.26,3.32,4.29,11.72
-53105,55,059,55059,4129,1772,88473373,87375496,29225,12424,414378195,407704884,166426,69288,1952890103,704452046,14.13,14.26,21.35,21.43,2.48,2.56,4.53,12.4
-53105,55,101,55101,19886,8593,173126894,168320304,29225,12424,414378195,407704884,195408,82164,2051572373,861173331,68.04,69.16,41.78,41.28,10.18,10.46,8.44,19.55
-53105,55,127,55127,5210,2059,152777928,152009084,29225,12424,414378195,407704884,102228,51531,1493278758,1437771449,17.83,16.57,36.87,37.28,5.1,4,10.23,10.57
-53108,55,101,55101,3329,1382,51396791,51176919,3329,1382,51396791,51176919,195408,82164,2051572373,861173331,100,100,100,100,1.7,1.68,2.51,5.94
-53110,55,079,55079,18320,8688,14205219,12349506,18320,8688,14205219,12349506,947735,418053,3080893273,625228895,100,100,100,100,1.93,2.08,0.46,1.98
-53114,55,105,55105,195,73,19557578,19277096,2678,1009,90300672,89869754,160331,68422,1880605939,1859980029,7.28,7.23,21.66,21.45,0.12,0.11,1.04,1.04
-53114,55,127,55127,2483,936,70743094,70592658,2678,1009,90300672,89869754,102228,51531,1493278758,1437771449,92.72,92.77,78.34,78.55,2.43,1.82,4.74,4.91
-53115,55,127,55127,15788,8320,193671462,184314329,15788,8320,193671462,184314329,102228,51531,1493278758,1437771449,100,100,100,100,15.44,16.15,12.97,12.82
-53118,55,055,55055,489,242,12637656,12637656,7202,2935,100018934,97167230,83686,35147,1509279739,1441259924,6.79,8.25,12.64,13.01,0.58,0.69,0.84,0.88
-53118,55,133,55133,6713,2693,87381278,84529574,7202,2935,100018934,97167230,389891,160864,1503735765,1423388982,93.21,91.75,87.36,86.99,1.72,1.67,5.81,5.94
-53119,55,127,55127,361,168,8610547,8579774,5608,2089,102366665,100078740,102228,51531,1493278758,1437771449,6.44,8.04,8.41,8.57,0.35,0.33,0.58,0.6
-53119,55,133,55133,5247,1921,93756118,91498966,5608,2089,102366665,100078740,389891,160864,1503735765,1423388982,93.56,91.96,91.59,91.43,1.35,1.19,6.23,6.43
-53120,55,101,55101,344,131,15345390,15013127,9679,4350,155016705,149599459,195408,82164,2051572373,861173331,3.55,3.01,9.9,10.04,0.18,0.16,0.75,1.74
-53120,55,127,55127,9335,4219,139671315,134586332,9679,4350,155016705,149599459,102228,51531,1493278758,1437771449,96.45,96.99,90.1,89.96,9.13,8.19,9.35,9.36
-53121,55,127,55127,19045,8442,304132463,298440439,19045,8442,304132463,298440439,102228,51531,1493278758,1437771449,100,100,100,100,18.63,16.38,20.37,20.76
-53122,55,133,55133,5985,2534,8519616,8472040,5985,2534,8519616,8472040,389891,160864,1503735765,1423388982,100,100,100,100,1.54,1.58,0.57,0.6
-53125,55,127,55127,1895,2599,18995964,14135069,1895,2599,18995964,14135069,102228,51531,1493278758,1437771449,100,100,100,100,1.85,5.04,1.27,0.98
-53126,55,101,55101,6431,2495,135807046,135305185,6431,2495,135807046,135305185,195408,82164,2051572373,861173331,100,100,100,100,3.29,3.04,6.62,15.71
-53128,55,059,55059,1132,746,9324488,7627041,8947,4088,69136505,65791738,166426,69288,1952890103,704452046,12.65,18.25,13.49,11.59,0.68,1.08,0.48,1.08
-53128,55,127,55127,7815,3342,59812017,58164697,8947,4088,69136505,65791738,102228,51531,1493278758,1437771449,87.35,81.75,86.51,88.41,7.64,6.49,4.01,4.05
-53129,55,079,55079,13973,6262,13353708,13331607,13973,6262,13353708,13331607,947735,418053,3080893273,625228895,100,100,100,100,1.47,1.5,0.43,2.13
-53130,55,079,55079,7755,3536,8334107,8317785,7755,3536,8334107,8317785,947735,418053,3080893273,625228895,100,100,100,100,0.82,0.85,0.27,1.33
-53132,55,079,55079,34863,14025,90382804,90111017,34863,14025,90382804,90111017,947735,418053,3080893273,625228895,100,100,100,100,3.68,3.35,2.93,14.41
-53137,55,055,55055,1702,674,83768701,83735772,1702,674,83768701,83735772,83686,35147,1509279739,1441259924,100,100,100,100,2.03,1.92,5.55,5.81
-53139,55,059,55059,457,196,28995365,28945516,2802,1267,79887500,77640756,166426,69288,1952890103,704452046,16.31,15.47,36.3,37.28,0.27,0.28,1.48,4.11
-53139,55,101,55101,2345,1071,50892135,48695240,2802,1267,79887500,77640756,195408,82164,2051572373,861173331,83.69,84.53,63.7,62.72,1.2,1.3,2.48,5.65
-53140,55,059,55059,30017,13120,24112088,22383948,30017,13120,24112088,22383948,166426,69288,1952890103,704452046,100,100,100,100,18.04,18.94,1.23,3.18
-53142,55,059,55059,32375,12926,56234893,56052016,32375,12926,56234893,56052016,166426,69288,1952890103,704452046,100,100,100,100,19.45,18.66,2.88,7.96
-53143,55,059,55059,23264,9609,11307826,10807605,23264,9609,11307826,10807605,166426,69288,1952890103,704452046,100,100,100,100,13.98,13.87,0.58,1.53
-53144,55,059,55059,27256,10560,113367560,113331458,27256,10560,113367560,113331458,166426,69288,1952890103,704452046,100,100,100,100,16.38,15.24,5.81,16.09
-53146,55,133,55133,7458,2947,48231659,47507207,7458,2947,48231659,47507207,389891,160864,1503735765,1423388982,100,100,100,100,1.91,1.83,3.21,3.34
-53147,55,127,55127,16457,10241,203746521,184207203,16457,10241,203746521,184207203,102228,51531,1493278758,1437771449,100,100,100,100,16.1,19.87,13.64,12.81
-53149,55,101,55101,254,104,8379722,8369698,19057,7442,159043751,152093930,195408,82164,2051572373,861173331,1.33,1.4,5.27,5.5,0.13,0.13,0.41,0.97
-53149,55,127,55127,684,331,12479446,10978898,19057,7442,159043751,152093930,102228,51531,1493278758,1437771449,3.59,4.45,7.85,7.22,0.67,0.64,0.84,0.76
-53149,55,133,55133,18119,7007,138184583,132745334,19057,7442,159043751,152093930,389891,160864,1503735765,1423388982,95.08,94.15,86.88,87.28,4.65,4.36,9.19,9.33
-53150,55,101,55101,372,151,4264893,4264893,24850,9765,97758803,86631043,195408,82164,2051572373,861173331,1.5,1.55,4.36,4.92,0.19,0.18,0.21,0.5
-53150,55,133,55133,24478,9614,93493910,82366150,24850,9765,97758803,86631043,389891,160864,1503735765,1423388982,98.5,98.45,95.64,95.08,6.28,5.98,6.22,5.79
-53151,55,133,55133,31987,13785,46372168,45975308,31987,13785,46372168,45975308,389891,160864,1503735765,1423388982,100,100,100,100,8.2,8.57,3.08,3.23
-53153,55,133,55133,2328,875,10805054,10667911,2328,875,10805054,10667911,389891,160864,1503735765,1423388982,100,100,100,100,0.6,0.54,0.72,0.75
-53154,55,079,55079,34451,14754,76856947,73816827,34451,14754,76856947,73816827,947735,418053,3080893273,625228895,100,100,100,100,3.64,3.53,2.49,11.81
-53156,55,055,55055,2992,1404,84726467,83471082,2992,1404,84726467,83471082,83686,35147,1509279739,1441259924,100,100,100,100,3.58,3.99,5.61,5.79
-53158,55,059,55059,15917,6136,82426467,78603398,15917,6136,82426467,78603398,166426,69288,1952890103,704452046,100,100,100,100,9.56,8.86,4.22,11.16
-53167,55,101,55101,399,184,622773,558002,399,184,622773,558002,195408,82164,2051572373,861173331,100,100,100,100,0.2,0.22,0.03,0.06
-53168,55,059,55059,8643,3709,93118183,91124370,8643,3709,93118183,91124370,166426,69288,1952890103,704452046,100,100,100,100,5.19,5.35,4.77,12.94
-53170,55,059,55059,2380,1053,4766423,2669607,2380,1053,4766423,2669607,166426,69288,1952890103,704452046,100,100,100,100,1.43,1.52,0.24,0.38
-53172,55,079,55079,21156,9722,14657738,12428179,21156,9722,14657738,12428179,947735,418053,3080893273,625228895,100,100,100,100,2.23,2.33,0.48,1.99
-53177,55,059,55059,335,198,6111889,6098238,8329,2807,70772680,70651319,166426,69288,1952890103,704452046,4.02,7.05,8.64,8.63,0.2,0.29,0.31,0.87
-53177,55,101,55101,7994,2609,64660791,64553081,8329,2807,70772680,70651319,195408,82164,2051572373,861173331,95.98,92.95,91.36,91.37,4.09,3.18,3.15,7.5
-53178,55,055,55055,2626,1175,83526879,80761002,2626,1175,83526879,80761002,83686,35147,1509279739,1441259924,100,100,100,100,3.14,3.34,5.53,5.6
-53179,55,059,55059,6310,2596,31327658,27865212,6310,2596,31327658,27865212,166426,69288,1952890103,704452046,100,100,100,100,3.79,3.75,1.6,3.96
-53181,55,059,55059,7357,3774,40194110,36131181,7357,3774,40194110,36131181,166426,69288,1952890103,704452046,100,100,100,100,4.42,5.45,2.06,5.13
-53182,55,059,55059,743,286,48650441,48650441,9412,3550,147214957,147049968,166426,69288,1952890103,704452046,7.89,8.06,33.05,33.08,0.45,0.41,2.49,6.91
-53182,55,101,55101,8669,3264,98564516,98399527,9412,3550,147214957,147049968,195408,82164,2051572373,861173331,92.11,91.94,66.95,66.92,4.44,3.97,4.8,11.43
-53183,55,133,55133,2815,1080,9239366,9225476,2815,1080,9239366,9225476,389891,160864,1503735765,1423388982,100,100,100,100,0.72,0.67,0.61,0.65
-53184,55,127,55127,4271,1760,76103753,75912448,4271,1760,76103753,75912448,102228,51531,1493278758,1437771449,100,100,100,100,4.18,3.42,5.1,5.28
-53185,55,101,55101,18551,7515,129633711,118924971,18551,7515,129633711,118924971,195408,82164,2051572373,861173331,100,100,100,100,9.49,9.15,6.32,13.81
-53186,55,133,55133,33592,14339,32838019,32557513,33592,14339,32838019,32557513,389891,160864,1503735765,1423388982,100,100,100,100,8.62,8.91,2.18,2.29
-53188,55,133,55133,35195,14822,72244040,71303789,35195,14822,72244040,71303789,389891,160864,1503735765,1423388982,100,100,100,100,9.03,9.21,4.8,5.01
-53189,55,133,55133,26228,10018,125235833,122683346,26228,10018,125235833,122683346,389891,160864,1503735765,1423388982,100,100,100,100,6.73,6.23,8.33,8.62
-53190,55,055,55055,4153,982,79549326,79393619,19200,7469,353088445,347822696,83686,35147,1509279739,1441259924,21.63,13.15,22.53,22.83,4.96,2.79,5.27,5.51
-53190,55,105,55105,1312,502,101467805,100855142,19200,7469,353088445,347822696,160331,68422,1880605939,1859980029,6.83,6.72,28.74,29,0.82,0.73,5.4,5.42
-53190,55,127,55127,13735,5985,172071314,167573935,19200,7469,353088445,347822696,102228,51531,1493278758,1437771449,71.54,80.13,48.73,48.18,13.44,11.61,11.52,11.66
-53191,55,127,55127,2842,2133,12230552,10044201,2842,2133,12230552,10044201,102228,51531,1493278758,1437771449,100,100,100,100,2.78,4.14,0.82,0.7
-53192,55,059,55059,217,102,2922922,2808188,217,102,2922922,2808188,166426,69288,1952890103,704452046,100,100,100,100,0.13,0.15,0.15,0.4
-53195,55,127,55127,114,47,841628,841628,114,47,841628,841628,102228,51531,1493278758,1437771449,100,100,100,100,0.11,0.09,0.06,0.06
-53202,55,079,55079,23386,16804,8123061,5267236,23386,16804,8123061,5267236,947735,418053,3080893273,625228895,100,100,100,100,2.47,4.02,0.26,0.84
-53203,55,079,55079,938,708,1219266,1156887,938,708,1219266,1156887,947735,418053,3080893273,625228895,100,100,100,100,0.1,0.17,0.04,0.19
-53204,55,079,55079,42355,14477,8728317,8503810,42355,14477,8728317,8503810,947735,418053,3080893273,625228895,100,100,100,100,4.47,3.46,0.28,1.36
-53205,55,079,55079,10050,4005,3657413,3657413,10050,4005,3657413,3657413,947735,418053,3080893273,625228895,100,100,100,100,1.06,0.96,0.12,0.58
-53206,55,079,55079,28210,11625,6971563,6971563,28210,11625,6971563,6971563,947735,418053,3080893273,625228895,100,100,100,100,2.98,2.78,0.23,1.12
-53207,55,079,55079,35149,17038,29654524,25461406,35149,17038,29654524,25461406,947735,418053,3080893273,625228895,100,100,100,100,3.71,4.08,0.96,4.07
-53208,55,079,55079,31133,14410,10146098,10107676,31133,14410,10146098,10107676,947735,418053,3080893273,625228895,100,100,100,100,3.28,3.45,0.33,1.62
-53209,55,079,55079,46917,20706,28389889,28207403,46917,20706,28389889,28207403,947735,418053,3080893273,625228895,100,100,100,100,4.95,4.95,0.92,4.51
-53210,55,079,55079,28126,11403,6591578,6591578,28126,11403,6591578,6591578,947735,418053,3080893273,625228895,100,100,100,100,2.97,2.73,0.21,1.05
-53211,55,079,55079,35406,16474,12023481,10101822,35406,16474,12023481,10101822,947735,418053,3080893273,625228895,100,100,100,100,3.74,3.94,0.39,1.62
-53212,55,079,55079,30416,14833,10772252,10491872,30416,14833,10772252,10491872,947735,418053,3080893273,625228895,100,100,100,100,3.21,3.55,0.35,1.68
-53213,55,079,55079,26020,12233,10445577,10445577,26020,12233,10445577,10445577,947735,418053,3080893273,625228895,100,100,100,100,2.75,2.93,0.34,1.67
-53214,55,079,55079,34725,16929,18849738,18835092,34725,16929,18849738,18835092,947735,418053,3080893273,625228895,100,100,100,100,3.66,4.05,0.61,3.01
-53215,55,079,55079,60953,21135,14690586,14658668,60953,21135,14690586,14658668,947735,418053,3080893273,625228895,100,100,100,100,6.43,5.06,0.48,2.34
-53216,55,079,55079,32264,13913,12012155,12012155,32264,13913,12012155,12012155,947735,418053,3080893273,625228895,100,100,100,100,3.4,3.33,0.39,1.92
-53217,55,079,55079,29103,12506,42714422,36472468,29192,12544,42943555,36701601,947735,418053,3080893273,625228895,99.7,99.7,99.47,99.38,3.07,2.99,1.39,5.83
-53217,55,089,55089,89,38,229133,229133,29192,12544,42943555,36701601,86395,36267,2890937558,603666538,0.3,0.3,0.53,0.62,0.1,0.1,0.01,0.04
-53218,55,079,55079,40625,15347,15234511,15217503,40625,15347,15234511,15217503,947735,418053,3080893273,625228895,100,100,100,100,4.29,3.67,0.49,2.43
-53219,55,079,55079,33880,16144,12828544,12812754,33880,16144,12828544,12812754,947735,418053,3080893273,625228895,100,100,100,100,3.57,3.86,0.42,2.05
-53220,55,079,55079,26303,12383,14337480,14337480,26303,12383,14337480,14337480,947735,418053,3080893273,625228895,100,100,100,100,2.78,2.96,0.47,2.29
-53221,55,079,55079,37701,16596,23885885,23848404,37701,16596,23885885,23848404,947735,418053,3080893273,625228895,100,100,100,100,3.98,3.97,0.78,3.81
-53222,55,079,55079,25165,11748,14356854,14347675,25165,11748,14356854,14347675,947735,418053,3080893273,625228895,100,100,100,100,2.66,2.81,0.47,2.29
-53223,55,079,55079,29230,13213,26544817,26365824,29230,13213,26544817,26365824,947735,418053,3080893273,625228895,100,100,100,100,3.08,3.16,0.86,4.22
-53224,55,079,55079,21284,8477,25427754,25425329,21284,8477,25427754,25425329,947735,418053,3080893273,625228895,100,100,100,100,2.25,2.03,0.83,4.07
-53225,55,079,55079,25700,10499,17539372,17538920,25706,10501,17828841,17815378,947735,418053,3080893273,625228895,99.98,99.98,98.38,98.45,2.71,2.51,0.57,2.81
-53225,55,133,55133,6,2,289469,276458,25706,10501,17828841,17815378,389891,160864,1503735765,1423388982,0.02,0.02,1.62,1.55,0,0,0.02,0.02
-53226,55,079,55079,18370,8514,17821287,17820887,18370,8514,17821287,17820887,947735,418053,3080893273,625228895,100,100,100,100,1.94,2.04,0.58,2.85
-53227,55,079,55079,23357,11533,13215975,13185622,23357,11533,13215975,13185622,947735,418053,3080893273,625228895,100,100,100,100,2.46,2.76,0.43,2.11
-53228,55,079,55079,14369,6628,13483413,13468635,14369,6628,13483413,13468635,947735,418053,3080893273,625228895,100,100,100,100,1.52,1.59,0.44,2.15
-53233,55,079,55079,16453,5990,4380569,4380569,16453,5990,4380569,4380569,947735,418053,3080893273,625228895,100,100,100,100,1.74,1.43,0.14,0.7
-53235,55,079,55079,9270,4794,8371969,6575661,9270,4794,8371969,6575661,947735,418053,3080893273,625228895,100,100,100,100,0.98,1.15,0.27,1.05
-53295,55,079,55079,359,1,606085,606085,359,1,606085,606085,947735,418053,3080893273,625228895,100,100,100,100,0.04,0,0.02,0.1
-53402,55,101,55101,33174,14195,65799176,53036033,33174,14195,65799176,53036033,195408,82164,2051572373,861173331,100,100,100,100,16.98,17.28,3.21,6.16
-53403,55,059,55059,468,204,3662874,1447992,27432,11875,34412088,24695446,166426,69288,1952890103,704452046,1.71,1.72,10.64,5.86,0.28,0.29,0.19,0.21
-53403,55,101,55101,26964,11671,30749214,23247454,27432,11875,34412088,24695446,195408,82164,2051572373,861173331,98.29,98.28,89.36,94.14,13.8,14.2,1.5,2.7
-53404,55,101,55101,15658,6225,11974451,11534160,15658,6225,11974451,11534160,195408,82164,2051572373,861173331,100,100,100,100,8.01,7.58,0.58,1.34
-53405,55,101,55101,25193,10997,17166852,16853150,25193,10997,17166852,16853150,195408,82164,2051572373,861173331,100,100,100,100,12.89,13.38,0.84,1.96
-53406,55,101,55101,25845,11577,43131951,42921587,25845,11577,43131951,42921587,195408,82164,2051572373,861173331,100,100,100,100,13.23,14.09,2.1,4.98
-53501,55,105,55105,23,9,168878,168878,23,9,168878,168878,160331,68422,1880605939,1859980029,100,100,100,100,0.01,0.01,0.01,0.01
-53502,55,045,55045,2421,1079,132927745,132599437,2421,1079,132927745,132599437,36842,15856,1513756591,1512440867,100,100,100,100,6.57,6.8,8.78,8.77
-53503,55,049,55049,1947,868,150025944,146107000,1947,868,150025944,146107000,23687,10719,1988942071,1975072643,100,100,100,100,8.22,8.1,7.54,7.4
-53504,55,045,55045,566,245,103903664,103903664,2084,940,238362726,236310658,36842,15856,1513756591,1512440867,27.16,26.06,43.59,43.97,1.54,1.55,6.86,6.87
-53504,55,065,55065,1518,695,134459062,132406994,2084,940,238362726,236310658,16836,7230,1643524471,1640985371,72.84,73.94,56.41,56.03,9.02,9.61,8.18,8.07
-53505,55,105,55105,354,151,47699941,47697268,354,151,47699941,47697268,160331,68422,1880605939,1859980029,100,100,100,100,0.22,0.22,2.54,2.56
-53506,55,049,55049,1125,630,168733505,163949815,1125,630,168733505,163949815,23687,10719,1988942071,1975072643,100,100,100,100,4.75,5.88,8.48,8.3
-53507,55,049,55049,2196,886,163049542,162986388,2196,886,163049542,162986388,23687,10719,1988942071,1975072643,100,100,100,100,9.27,8.27,8.2,8.25
-53508,55,025,55025,3025,1299,118711093,117696815,5262,2151,180901440,179882451,488073,216022,3207041270,3100835926,57.49,60.39,65.62,65.43,0.62,0.6,3.7,3.8
-53508,55,045,55045,2237,852,62190347,62185636,5262,2151,180901440,179882451,36842,15856,1513756591,1512440867,42.51,39.61,34.38,34.57,6.07,5.37,4.11,4.11
-53510,55,065,55065,1482,620,109123728,108874206,1482,620,109123728,108874206,16836,7230,1643524471,1640985371,100,100,100,100,8.8,8.58,6.64,6.63
-53511,55,105,55105,48929,20241,289749621,286177718,48929,20241,289749621,286177718,160331,68422,1880605939,1859980029,100,100,100,100,30.52,29.58,15.41,15.39
-53515,55,025,55025,2268,980,96168065,96023386,2268,980,96168065,96023386,488073,216022,3207041270,3100835926,100,100,100,100,0.46,0.45,3,3.1
-53516,55,025,55025,35,15,6916951,6916951,2152,971,215587346,215531579,488073,216022,3207041270,3100835926,1.63,1.54,3.21,3.21,0.01,0.01,0.22,0.22
-53516,55,045,55045,696,292,78298946,78298946,2152,971,215587346,215531579,36842,15856,1513756591,1512440867,32.34,30.07,36.32,36.33,1.89,1.84,5.17,5.18
-53516,55,049,55049,312,139,30623474,30623474,2152,971,215587346,215531579,23687,10719,1988942071,1975072643,14.5,14.32,14.2,14.21,1.32,1.3,1.54,1.55
-53516,55,065,55065,1109,525,99747975,99692208,2152,971,215587346,215531579,16836,7230,1643524471,1640985371,51.53,54.07,46.27,46.25,6.59,7.26,6.07,6.08
-53517,55,025,55025,1436,576,69493994,69493917,1752,714,114756072,114755774,488073,216022,3207041270,3100835926,81.96,80.67,60.56,60.56,0.29,0.27,2.17,2.24
-53517,55,049,55049,316,138,45262078,45261857,1752,714,114756072,114755774,23687,10719,1988942071,1975072643,18.04,19.33,39.44,39.44,1.33,1.29,2.28,2.29
-53518,55,023,55023,20,9,4907188,4905825,1330,753,202575278,194108469,16644,8802,1551947271,1478001974,1.5,1.2,2.42,2.53,0.12,0.1,0.32,0.33
-53518,55,043,55043,519,284,32919919,28014980,1330,753,202575278,194108469,51208,21581,3064845854,2970324643,39.02,37.72,16.25,14.43,1.01,1.32,1.07,0.94
-53518,55,103,55103,791,460,164748171,161187664,1330,753,202575278,194108469,18021,8868,1526277126,1518123695,59.47,61.09,81.33,83.04,4.39,5.19,10.79,10.62
-53520,55,045,55045,5547,2368,146926188,146434418,6810,2894,320256682,318337257,36842,15856,1513756591,1512440867,81.45,81.82,45.88,46,15.06,14.93,9.71,9.68
-53520,55,105,55105,1263,526,173330494,171902839,6810,2894,320256682,318337257,160331,68422,1880605939,1859980029,18.55,18.18,54.12,54,0.79,0.77,9.22,9.24
-53521,55,025,55025,1926,723,60819151,60428392,3656,1429,159081617,158596942,488073,216022,3207041270,3100835926,52.68,50.59,38.23,38.1,0.39,0.33,1.9,1.95
-53521,55,045,55045,1433,579,78081905,78054860,3656,1429,159081617,158596942,36842,15856,1513756591,1512440867,39.2,40.52,49.08,49.22,3.89,3.65,5.16,5.16
-53521,55,105,55105,297,127,20180561,20113690,3656,1429,159081617,158596942,160331,68422,1880605939,1859980029,8.12,8.89,12.69,12.68,0.19,0.19,1.07,1.08
-53522,55,045,55045,1012,447,95545127,95179337,1085,485,100689045,100323255,36842,15856,1513756591,1512440867,93.27,92.16,94.89,94.87,2.75,2.82,6.31,6.29
-53522,55,065,55065,73,38,5143918,5143918,1085,485,100689045,100323255,16836,7230,1643524471,1640985371,6.73,7.84,5.11,5.13,0.43,0.53,0.31,0.31
-53523,55,025,55025,2535,1106,82309209,81474466,4949,2389,128759390,125544342,488073,216022,3207041270,3100835926,51.22,46.3,63.92,64.9,0.52,0.51,2.57,2.63
-53523,55,055,55055,2414,1283,46450181,44069876,4949,2389,128759390,125544342,83686,35147,1509279739,1441259924,48.78,53.7,36.08,35.1,2.88,3.65,3.08,3.06
-53525,55,105,55105,4052,1598,145032200,144643131,4052,1598,145032200,144643131,160331,68422,1880605939,1859980029,100,100,100,100,2.53,2.34,7.71,7.78
-53526,55,049,55049,565,249,21100011,21100011,565,249,21100011,21100011,23687,10719,1988942071,1975072643,100,100,100,100,2.39,2.32,1.06,1.07
-53527,55,025,55025,9963,3739,93174272,93091922,9963,3739,93174272,93091922,488073,216022,3207041270,3100835926,100,100,100,100,2.04,1.73,2.91,3
-53528,55,025,55025,5734,2342,122078600,121167181,5734,2342,122078600,121167181,488073,216022,3207041270,3100835926,100,100,100,100,1.17,1.08,3.81,3.91
-53529,55,025,55025,2031,762,95326164,94687859,2031,762,95326164,94687859,488073,216022,3207041270,3100835926,100,100,100,100,0.42,0.35,2.97,3.05
-53530,55,065,55065,4566,1927,345724398,345724398,4566,1927,345724398,345724398,16836,7230,1643524471,1640985371,100,100,100,100,27.12,26.65,21.04,21.07
-53531,55,025,55025,4338,1639,109802068,109605746,4338,1639,109802068,109605746,488073,216022,3207041270,3100835926,100,100,100,100,0.89,0.76,3.42,3.53
-53532,55,021,55021,230,88,20906941,20824063,13606,5335,140963393,140148341,56833,26137,2061557225,1982711486,1.69,1.65,14.83,14.86,0.4,0.34,1.01,1.05
-53532,55,025,55025,13376,5247,120056452,119324278,13606,5335,140963393,140148341,488073,216022,3207041270,3100835926,98.31,98.35,85.17,85.14,2.74,2.43,3.74,3.85
-53533,55,049,55049,7276,3199,373601816,372661431,7276,3199,373601816,372661431,23687,10719,1988942071,1975072643,100,100,100,100,30.72,29.84,18.78,18.87
-53534,55,025,55025,2090,976,98229032,95687207,11512,5492,218587418,210581609,488073,216022,3207041270,3100835926,18.15,17.77,44.94,45.44,0.43,0.45,3.06,3.09
-53534,55,055,55055,234,184,12124379,10777661,11512,5492,218587418,210581609,83686,35147,1509279739,1441259924,2.03,3.35,5.55,5.12,0.28,0.52,0.8,0.75
-53534,55,105,55105,9188,4332,108234007,104116741,11512,5492,218587418,210581609,160331,68422,1880605939,1859980029,79.81,78.88,49.52,49.44,5.73,6.33,5.76,5.6
-53536,55,105,55105,8503,3456,246020030,244917791,8503,3456,246020030,244917791,160331,68422,1880605939,1859980029,100,100,100,100,5.3,5.05,13.08,13.17
-53537,55,105,55105,781,317,2263842,2263842,781,317,2263842,2263842,160331,68422,1880605939,1859980029,100,100,100,100,0.49,0.46,0.12,0.12
-53538,55,055,55055,18345,8101,276468930,251994870,18468,8154,281451330,256977270,83686,35147,1509279739,1441259924,99.33,99.35,98.23,98.06,21.92,23.05,18.32,17.48
-53538,55,105,55105,123,53,4982400,4982400,18468,8154,281451330,256977270,160331,68422,1880605939,1859980029,0.67,0.65,1.77,1.94,0.08,0.08,0.26,0.27
-53540,55,103,55103,169,81,3546448,3546448,169,81,3546448,3546448,18021,8868,1526277126,1518123695,100,100,100,100,0.94,0.91,0.23,0.23
-53541,55,065,55065,861,406,160376872,160376872,861,406,160376872,160376872,16836,7230,1643524471,1640985371,100,100,100,100,5.11,5.62,9.76,9.77
-53543,55,043,55043,79,38,35583973,35583973,1641,744,206742846,205882201,51208,21581,3064845854,2970324643,4.81,5.11,17.21,17.28,0.15,0.18,1.16,1.2
-53543,55,049,55049,1562,706,171158873,170298228,1641,744,206742846,205882201,23687,10719,1988942071,1975072643,95.19,94.89,82.79,82.72,6.59,6.59,8.61,8.62
-53544,55,025,55025,10,3,944299,944299,800,351,103617087,103599863,488073,216022,3207041270,3100835926,1.25,0.85,0.91,0.91,0,0,0.03,0.03
-53544,55,049,55049,790,348,102672788,102655564,800,351,103617087,103599863,23687,10719,1988942071,1975072643,98.75,99.15,99.09,99.09,3.34,3.25,5.16,5.2
-53545,55,105,55105,23117,10484,65270461,64169107,23117,10484,65270461,64169107,160331,68422,1880605939,1859980029,100,100,100,100,14.42,15.32,3.47,3.45
-53546,55,105,55105,30648,13110,215053918,214058151,30648,13110,215053918,214058151,160331,68422,1880605939,1859980029,100,100,100,100,19.12,19.16,11.44,11.51
-53548,55,105,55105,18558,8042,186979728,185036258,18558,8042,186979728,185036258,160331,68422,1880605939,1859980029,100,100,100,100,11.57,11.75,9.94,9.95
-53549,55,055,55055,10414,4365,183566251,180985016,10414,4365,183566251,180985016,83686,35147,1509279739,1441259924,100,100,100,100,12.44,12.42,12.16,12.56
-53550,55,045,55045,1239,481,124127909,124109365,1239,481,124127909,124109365,36842,15856,1513756591,1512440867,100,100,100,100,3.36,3.03,8.2,8.21
-53551,55,055,55055,8273,3908,115690237,109372494,8273,3908,115690237,109372494,83686,35147,1509279739,1441259924,100,100,100,100,9.89,11.12,7.67,7.59
-53553,55,049,55049,624,266,22579552,22579552,624,266,22579552,22579552,23687,10719,1988942071,1975072643,100,100,100,100,2.63,2.48,1.14,1.14
-53554,55,043,55043,999,385,83091216,83078139,1134,443,121183747,121170670,51208,21581,3064845854,2970324643,88.1,86.91,68.57,68.56,1.95,1.78,2.71,2.8
-53554,55,049,55049,135,58,38092531,38092531,1134,443,121183747,121170670,23687,10719,1988942071,1975072643,11.9,13.09,31.43,31.44,0.57,0.54,1.92,1.93
-53555,55,021,55021,7854,3800,179906969,164146256,8465,4127,224339767,206539537,56833,26137,2061557225,1982711486,92.78,92.08,80.19,79.47,13.82,14.54,8.73,8.28
-53555,55,025,55025,611,327,44432798,42393281,8465,4127,224339767,206539537,488073,216022,3207041270,3100835926,7.22,7.92,19.81,20.53,0.13,0.15,1.39,1.37
-53556,55,103,55103,2282,1020,110416420,107788924,2594,1202,123179181,120540517,18021,8868,1526277126,1518123695,87.97,84.86,89.64,89.42,12.66,11.5,7.23,7.1
-53556,55,111,55111,312,182,12762761,12751593,2594,1202,123179181,120540517,61976,29708,2197907262,2152025932,12.03,15.14,10.36,10.58,0.5,0.61,0.58,0.59
-53557,55,027,55027,482,226,15068834,14609734,482,226,15068834,14609734,88759,37005,2349259551,2267857853,100,100,100,100,0.54,0.61,0.64,0.64
-53558,55,025,55025,10742,4438,47548631,44923981,10742,4438,47548631,44923981,488073,216022,3207041270,3100835926,100,100,100,100,2.2,2.05,1.48,1.45
-53559,55,025,55025,6051,2345,165580426,163872961,6063,2350,166597653,164890188,488073,216022,3207041270,3100835926,99.8,99.79,99.39,99.38,1.24,1.09,5.16,5.28
-53559,55,055,55055,12,5,1017227,1017227,6063,2350,166597653,164890188,83686,35147,1509279739,1441259924,0.2,0.21,0.61,0.62,0.01,0.01,0.07,0.07
-53560,55,025,55025,3369,1480,141966254,139820130,3458,1519,154805718,152657980,488073,216022,3207041270,3100835926,97.43,97.43,91.71,91.59,0.69,0.69,4.43,4.51
-53560,55,049,55049,89,39,12839464,12837850,3458,1519,154805718,152657980,23687,10719,1988942071,1975072643,2.57,2.57,8.29,8.41,0.38,0.36,0.65,0.65
-53561,55,021,55021,254,204,30404550,28200164,1618,1161,102465391,93403954,56833,26137,2061557225,1982711486,15.7,17.57,29.67,30.19,0.45,0.78,1.47,1.42
-53561,55,111,55111,1364,957,72060841,65203790,1618,1161,102465391,93403954,61976,29708,2197907262,2152025932,84.3,82.43,70.33,69.81,2.2,3.22,3.28,3.03
-53562,55,025,55025,23627,11053,82895984,82448717,23627,11053,82895984,82448717,488073,216022,3207041270,3100835926,100,100,100,100,4.84,5.12,2.58,2.66
-53563,55,055,55055,100,78,21951598,2686709,10728,4517,191425181,167311972,83686,35147,1509279739,1441259924,0.93,1.73,11.47,1.61,0.12,0.22,1.45,0.19
-53563,55,105,55105,10628,4439,169473583,164625263,10728,4517,191425181,167311972,160331,68422,1880605939,1859980029,99.07,98.27,88.53,98.39,6.63,6.49,9.01,8.85
-53565,55,049,55049,4178,1958,333055949,332811264,4765,2183,473918520,473638425,23687,10719,1988942071,1975072643,87.68,89.69,70.28,70.27,17.64,18.27,16.75,16.85
-53565,55,065,55065,587,225,140862571,140827161,4765,2183,473918520,473638425,16836,7230,1643524471,1640985371,12.32,10.31,29.72,29.73,3.49,3.11,8.57,8.58
-53566,55,045,55045,15217,6808,399418875,399381013,15217,6808,399418875,399381013,36842,15856,1513756591,1512440867,100,100,100,100,41.3,42.94,26.39,26.41
-53569,55,043,55043,872,386,64361119,64332515,1155,493,114389301,114360697,51208,21581,3064845854,2970324643,75.5,78.3,56.26,56.25,1.7,1.79,2.1,2.17
-53569,55,049,55049,283,107,50028182,50028182,1155,493,114389301,114360697,23687,10719,1988942071,1975072643,24.5,21.7,43.74,43.75,1.19,1,2.52,2.53
-53570,55,045,55045,2627,1139,186372277,186330583,2627,1139,186372277,186330583,36842,15856,1513756591,1512440867,100,100,100,100,7.13,7.18,12.31,12.32
-53571,55,025,55025,280,115,1051935,1051935,280,115,1051935,1051935,488073,216022,3207041270,3100835926,100,100,100,100,0.06,0.05,0.03,0.03
-53572,55,025,55025,9954,4001,267881770,267830553,9970,4010,269570201,269518984,488073,216022,3207041270,3100835926,99.84,99.78,99.37,99.37,2.04,1.85,8.35,8.64
-53572,55,045,55045,16,9,1688431,1688431,9970,4010,269570201,269518984,36842,15856,1513756591,1512440867,0.16,0.22,0.63,0.63,0.04,0.06,0.11,0.11
-53573,55,043,55043,2092,1024,119980974,119590380,3062,1582,283874335,282024490,51208,21581,3064845854,2970324643,68.32,64.73,42.27,42.4,4.09,4.74,3.91,4.03
-53573,55,049,55049,237,111,41248713,41212190,3062,1582,283874335,282024490,23687,10719,1988942071,1975072643,7.74,7.02,14.53,14.61,1,1.04,2.07,2.09
-53573,55,103,55103,733,447,122644648,121221920,3062,1582,283874335,282024490,18021,8868,1526277126,1518123695,23.94,28.26,43.2,42.98,4.07,5.04,8.04,7.98
-53574,55,025,55025,46,17,2897908,2897908,3877,1574,107173085,107173085,488073,216022,3207041270,3100835926,1.19,1.08,2.7,2.7,0.01,0.01,0.09,0.09
-53574,55,045,55045,3831,1557,104275177,104275177,3877,1574,107173085,107173085,36842,15856,1513756591,1512440867,98.81,98.92,97.3,97.3,10.4,9.82,6.89,6.89
-53575,55,025,55025,15494,5933,142919273,141524486,15494,5933,142919273,141524486,488073,216022,3207041270,3100835926,100,100,100,100,3.17,2.75,4.46,4.56
-53576,55,105,55105,2319,947,81261746,81096378,2319,947,81261746,81096378,160331,68422,1880605939,1859980029,100,100,100,100,1.45,1.38,4.32,4.36
-53577,55,111,55111,1371,620,119041377,118949533,1371,620,119041377,118949533,61976,29708,2197907262,2152025932,100,100,100,100,2.21,2.09,5.42,5.53
-53578,55,021,55021,694,296,15308996,13597199,5924,2535,130441410,127495431,56833,26137,2061557225,1982711486,11.72,11.68,11.74,10.66,1.22,1.13,0.74,0.69
-53578,55,111,55111,5230,2239,115132414,113898232,5924,2535,130441410,127495431,61976,29708,2197907262,2152025932,88.28,88.32,88.26,89.34,8.44,7.54,5.24,5.29
-53579,55,027,55027,1760,771,112811228,110870989,1760,771,112811228,110870989,88759,37005,2349259551,2267857853,100,100,100,100,1.98,2.08,4.8,4.89
-53580,55,049,55049,564,241,53534640,53534640,564,241,53534640,53534640,23687,10719,1988942071,1975072643,100,100,100,100,2.38,2.25,2.69,2.71
-53581,55,103,55103,10699,5144,616849372,616570917,10699,5144,616849372,616570917,18021,8868,1526277126,1518123695,100,100,100,100,59.37,58.01,40.42,40.61
-53582,55,049,55049,1079,505,88675672,88614884,1079,505,88675672,88614884,23687,10719,1988942071,1975072643,100,100,100,100,4.56,4.71,4.46,4.49
-53583,55,021,55021,53,61,422828,277581,5747,2490,206829242,197427721,56833,26137,2061557225,1982711486,0.92,2.45,0.2,0.14,0.09,0.23,0.02,0.01
-53583,55,025,55025,1456,584,68339971,66362959,5747,2490,206829242,197427721,488073,216022,3207041270,3100835926,25.33,23.45,33.04,33.61,0.3,0.27,2.13,2.14
-53583,55,111,55111,4238,1845,138066443,130787181,5747,2490,206829242,197427721,61976,29708,2197907262,2152025932,73.74,74.1,66.75,66.25,6.84,6.21,6.28,6.08
-53585,55,105,55105,22,8,3244844,3244844,2215,957,70635598,70635598,160331,68422,1880605939,1859980029,0.99,0.84,4.59,4.59,0.01,0.01,0.17,0.17
-53585,55,127,55127,2193,949,67390754,67390754,2215,957,70635598,70635598,102228,51531,1493278758,1437771449,99.01,99.16,95.41,95.41,2.15,1.84,4.51,4.69
-53586,55,065,55065,2284,1001,260120296,260120296,2284,1001,260120296,260120296,16836,7230,1643524471,1640985371,100,100,100,100,13.57,13.85,15.83,15.85
-53587,55,065,55065,1290,553,149894908,149803212,1290,553,149894908,149803212,16836,7230,1643524471,1640985371,100,100,100,100,7.66,7.65,9.12,9.13
-53588,55,049,55049,383,260,115442176,112500621,4077,1974,365643700,355325422,23687,10719,1988942071,1975072643,9.39,13.17,31.57,31.66,1.62,2.43,5.8,5.7
-53588,55,111,55111,3694,1714,250201524,242824801,4077,1974,365643700,355325422,61976,29708,2197907262,2152025932,90.61,86.83,68.43,68.34,5.96,5.77,11.38,11.28
-53589,55,025,55025,19408,8415,233446026,217622002,19427,8422,234080328,218255494,488073,216022,3207041270,3100835926,99.9,99.92,99.73,99.71,3.98,3.9,7.28,7.02
-53589,55,105,55105,19,7,634302,633492,19427,8422,234080328,218255494,160331,68422,1880605939,1859980029,0.1,0.08,0.27,0.29,0.01,0.01,0.03,0.03
-53590,55,025,55025,36294,14934,173724332,172920088,36294,14934,173724332,172920088,488073,216022,3207041270,3100835926,100,100,100,100,7.44,6.91,5.42,5.58
-53593,55,025,55025,19225,7858,186873475,186227918,19225,7858,186873475,186227918,488073,216022,3207041270,3100835926,100,100,100,100,3.94,3.64,5.83,6.01
-53594,55,025,55025,189,72,26217176,26162206,5144,2151,184587833,183047581,488073,216022,3207041270,3100835926,3.67,3.35,14.2,14.29,0.04,0.03,0.82,0.84
-53594,55,027,55027,687,297,65099667,63873152,5144,2151,184587833,183047581,88759,37005,2349259551,2267857853,13.36,13.81,35.27,34.89,0.77,0.8,2.77,2.82
-53594,55,055,55055,4268,1782,93270990,93012223,5144,2151,184587833,183047581,83686,35147,1509279739,1441259924,82.97,82.85,50.53,50.81,5.1,5.07,6.18,6.45
-53597,55,025,55025,16844,6518,135081397,134205304,16844,6518,135081397,134205304,488073,216022,3207041270,3100835926,100,100,100,100,3.45,3.02,4.21,4.33
-53598,55,025,55025,2511,1030,9020122,8931319,2511,1030,9020122,8931319,488073,216022,3207041270,3100835926,100,100,100,100,0.51,0.48,0.28,0.29
-53599,55,065,55065,69,38,657598,624263,69,38,657598,624263,16836,7230,1643524471,1640985371,100,100,100,100,0.41,0.53,0.04,0.04
-53702,55,133,55133,50,32,43101,43101,50,32,43101,43101,389891,160864,1503735765,1423388982,100,100,100,100,0.01,0.02,0,0
-53703,55,025,55025,27958,15128,4790142,4713532,27958,15128,4790142,4713532,488073,216022,3207041270,3100835926,100,100,100,100,5.73,7,0.15,0.15
-53704,55,025,55025,44034,21500,60103630,58035117,44034,21500,60103630,58035117,488073,216022,3207041270,3100835926,100,100,100,100,9.02,9.95,1.87,1.87
-53705,55,025,55025,23494,12224,17113006,17049538,23494,12224,17113006,17049538,488073,216022,3207041270,3100835926,100,100,100,100,4.81,5.66,0.53,0.55
-53706,55,025,55025,5133,56,1372275,1369089,5133,56,1372275,1369089,488073,216022,3207041270,3100835926,100,100,100,100,1.05,0.03,0.04,0.04
-53711,55,025,55025,45728,20074,75079831,66094206,45728,20074,75079831,66094206,488073,216022,3207041270,3100835926,100,100,100,100,9.37,9.29,2.34,2.13
-53713,55,025,55025,22146,10193,29525847,27016328,22146,10193,29525847,27016328,488073,216022,3207041270,3100835926,100,100,100,100,4.54,4.72,0.92,0.87
-53714,55,025,55025,16463,7391,12004323,11936833,16463,7391,12004323,11936833,488073,216022,3207041270,3100835926,100,100,100,100,3.37,3.42,0.37,0.38
-53715,55,025,55025,12136,4893,3133645,3133142,12136,4893,3133645,3133142,488073,216022,3207041270,3100835926,100,100,100,100,2.49,2.27,0.1,0.1
-53716,55,025,55025,18419,8584,17188673,17028548,18419,8584,17188673,17028548,488073,216022,3207041270,3100835926,100,100,100,100,3.77,3.97,0.54,0.55
-53717,55,025,55025,11962,6082,9493282,9449002,11962,6082,9493282,9449002,488073,216022,3207041270,3100835926,100,100,100,100,2.45,2.82,0.3,0.3
-53718,55,025,55025,11753,5581,52039130,51972443,11753,5581,52039130,51972443,488073,216022,3207041270,3100835926,100,100,100,100,2.41,2.58,1.62,1.68
-53719,55,025,55025,28487,13330,26381006,26135370,28487,13330,26381006,26135370,488073,216022,3207041270,3100835926,100,100,100,100,5.84,6.17,0.82,0.84
-53726,55,025,55025,5177,2339,1287131,1287131,5177,2339,1287131,1287131,488073,216022,3207041270,3100835926,100,100,100,100,1.06,1.08,0.04,0.04
-53792,55,025,55025,0,0,52522,52522,0,0,52522,52522,488073,216022,3207041270,3100835926,0,0,100,100,0,0,0,0
-53801,55,043,55043,878,779,170173508,153185532,878,779,170173508,153185532,51208,21581,3064845854,2970324643,100,100,100,100,1.71,3.61,5.55,5.16
-53802,55,043,55043,58,33,2465314,2465314,58,33,2465314,2465314,51208,21581,3064845854,2970324643,100,100,100,100,0.11,0.15,0.08,0.08
-53803,55,065,55065,1306,575,31769359,31769359,1306,575,31769359,31769359,16836,7230,1643524471,1640985371,100,100,100,100,7.76,7.95,1.93,1.94
-53804,55,043,55043,1372,568,131117184,131117184,1372,568,131117184,131117184,51208,21581,3064845854,2970324643,100,100,100,100,2.68,2.63,4.28,4.41
-53805,55,023,55023,591,331,141534222,139372161,5269,2304,365501974,360282579,16644,8802,1551947271,1478001974,11.22,14.37,38.72,38.68,3.55,3.76,9.12,9.43
-53805,55,043,55043,4678,1973,223967752,220910418,5269,2304,365501974,360282579,51208,21581,3064845854,2970324643,88.78,85.63,61.28,61.32,9.14,9.14,7.31,7.44
-53806,55,043,55043,1831,1020,198151815,179763168,1831,1020,198151815,179763168,51208,21581,3064845854,2970324643,100,100,100,100,3.58,4.73,6.47,6.05
-53807,55,043,55043,3937,1629,166619367,166483200,4843,1970,276303096,276166929,51208,21581,3064845854,2970324643,81.29,82.69,60.3,60.28,7.69,7.55,5.44,5.6
-53807,55,065,55065,906,341,109683729,109683729,4843,1970,276303096,276166929,16836,7230,1643524471,1640985371,18.71,17.31,39.7,39.72,5.38,4.72,6.67,6.68
-53808,55,043,55043,1049,467,2197115,2197115,1049,467,2197115,2197115,51208,21581,3064845854,2970324643,100,100,100,100,2.05,2.16,0.07,0.07
-53809,55,043,55043,4120,1749,262325943,262325943,4120,1749,262325943,262325943,51208,21581,3064845854,2970324643,100,100,100,100,8.05,8.1,8.56,8.83
-53810,55,043,55043,429,206,98753325,95444956,429,206,98753325,95444956,51208,21581,3064845854,2970324643,100,100,100,100,0.84,0.95,3.22,3.21
-53811,55,043,55043,3260,1285,108948055,102916876,3371,1333,131675150,125643971,51208,21581,3064845854,2970324643,96.71,96.4,82.74,81.91,6.37,5.95,3.55,3.46
-53811,55,065,55065,111,48,22727095,22727095,3371,1333,131675150,125643971,16836,7230,1643524471,1640985371,3.29,3.6,17.26,18.09,0.66,0.66,1.38,1.38
-53813,55,043,55043,6075,2624,382674445,382646033,6075,2624,382674445,382646033,51208,21581,3064845854,2970324643,100,100,100,100,11.86,12.16,12.49,12.88
-53816,55,043,55043,810,367,156269712,156269712,810,367,156269712,156269712,51208,21581,3064845854,2970324643,100,100,100,100,1.58,1.7,5.1,5.26
-53817,55,043,55043,205,95,4036955,4036955,205,95,4036955,4036955,51208,21581,3064845854,2970324643,100,100,100,100,0.4,0.44,0.13,0.14
-53818,55,043,55043,14391,5080,317163972,317136098,15091,5329,397614095,397564919,51208,21581,3064845854,2970324643,95.36,95.33,79.77,79.77,28.1,23.54,10.35,10.68
-53818,55,049,55049,26,11,7217161,7217161,15091,5329,397614095,397564919,23687,10719,1988942071,1975072643,0.17,0.21,1.82,1.82,0.11,0.1,0.36,0.37
-53818,55,065,55065,674,238,73232962,73211660,15091,5329,397614095,397564919,16836,7230,1643524471,1640985371,4.47,4.47,18.42,18.42,4,3.29,4.46,4.46
-53820,55,043,55043,2532,1123,270971501,232959989,2532,1123,270971501,232959989,51208,21581,3064845854,2970324643,100,100,100,100,4.94,5.2,8.84,7.84
-53821,55,023,55023,8213,4004,220770249,206055817,8456,4131,284027392,268068769,16644,8802,1551947271,1478001974,97.13,96.93,77.73,76.87,49.35,45.49,14.23,13.94
-53821,55,043,55043,243,127,63257143,62012952,8456,4131,284027392,268068769,51208,21581,3064845854,2970324643,2.87,3.07,22.27,23.13,0.47,0.59,2.06,2.09
-53825,55,043,55043,487,188,79870364,79870364,487,188,79870364,79870364,51208,21581,3064845854,2970324643,100,100,100,100,0.95,0.87,2.61,2.69
-53826,55,023,55023,1332,616,187757777,185211177,1332,616,187757777,185211177,16644,8802,1551947271,1478001974,100,100,100,100,8,7,12.1,12.53
-53827,55,043,55043,292,151,89945183,87982847,292,151,89945183,87982847,51208,21581,3064845854,2970324643,100,100,100,100,0.57,0.7,2.93,2.96
-53901,55,021,55021,14392,6643,389092031,365132630,14445,6666,391658292,367678663,56833,26137,2061557225,1982711486,99.63,99.65,99.34,99.31,25.32,25.42,18.87,18.42
-53901,55,077,55077,53,23,2566261,2546033,14445,6666,391658292,367678663,15404,9896,1202528116,1180003730,0.37,0.35,0.66,0.69,0.34,0.23,0.21,0.22
-53910,55,001,55001,3508,2097,160333748,159285751,3508,2097,160333748,159285751,20875,17436,1783340082,1672214172,100,100,100,100,16.8,12.03,8.99,9.53
-53911,55,021,55021,1325,562,85903066,85141522,1351,573,93307750,92488199,56833,26137,2061557225,1982711486,98.08,98.08,92.06,92.06,2.33,2.15,4.17,4.29
-53911,55,025,55025,26,11,7404684,7346677,1351,573,93307750,92488199,488073,216022,3207041270,3100835926,1.92,1.92,7.94,7.94,0.01,0.01,0.23,0.24
-53913,55,021,55021,7,3,689899,689899,19881,9424,350471528,340557424,56833,26137,2061557225,1982711486,0.04,0.03,0.2,0.2,0.01,0.01,0.03,0.03
-53913,55,111,55111,19874,9421,349781629,339867525,19881,9424,350471528,340557424,61976,29708,2197907262,2152025932,99.96,99.97,99.8,99.8,32.07,31.71,15.91,15.79
-53916,55,027,55027,22507,10150,286232030,260209391,22507,10150,286232030,260209391,88759,37005,2349259551,2267857853,100,100,100,100,25.36,27.43,12.18,11.47
-53919,55,039,55039,2629,1028,179069792,178171966,2629,1028,179069792,178171966,101633,43910,1983516130,1863633125,100,100,100,100,2.59,2.34,9.03,9.56
-53920,55,001,55001,107,117,9476157,6466769,414,348,24449754,20544527,20875,17436,1783340082,1672214172,25.85,33.62,38.76,31.48,0.51,0.67,0.53,0.39
-53920,55,077,55077,307,231,14973597,14077758,414,348,24449754,20544527,15404,9896,1202528116,1180003730,74.15,66.38,61.24,68.52,1.99,2.33,1.25,1.19
-53922,55,027,55027,1036,432,120508697,118590981,1036,432,120508697,118590981,88759,37005,2349259551,2267857853,100,100,100,100,1.17,1.17,5.13,5.23
-53923,55,021,55021,1864,786,181431912,180049630,2098,848,201556996,200107002,56833,26137,2061557225,1982711486,88.85,92.69,90.02,89.98,3.28,3.01,8.8,9.08
-53923,55,047,55047,234,62,20125084,20057372,2098,848,201556996,200107002,19051,10616,984967491,905037501,11.15,7.31,9.98,10.02,1.23,0.58,2.04,2.22
-53924,55,103,55103,1320,647,173583310,173350900,1360,664,181344452,181098819,18021,8868,1526277126,1518123695,97.06,97.44,95.72,95.72,7.32,7.3,11.37,11.42
-53924,55,111,55111,40,17,7761142,7747919,1360,664,181344452,181098819,61976,29708,2197907262,2152025932,2.94,2.56,4.28,4.28,0.06,0.06,0.35,0.36
-53925,55,021,55021,6276,2801,180207206,179387079,7781,3426,327056082,325118143,56833,26137,2061557225,1982711486,80.66,81.76,55.1,55.18,11.04,10.72,8.74,9.05
-53925,55,025,55025,289,109,32478281,32478281,7781,3426,327056082,325118143,488073,216022,3207041270,3100835926,3.71,3.18,9.93,9.99,0.06,0.05,1.01,1.05
-53925,55,027,55027,1216,516,114370595,113252783,7781,3426,327056082,325118143,88759,37005,2349259551,2267857853,15.63,15.06,34.97,34.83,1.37,1.39,4.87,4.99
-53926,55,021,55021,297,85,23719754,23621048,1628,544,127440234,125370101,56833,26137,2061557225,1982711486,18.24,15.63,18.61,18.84,0.52,0.33,1.15,1.19
-53926,55,047,55047,1107,382,74587136,73673778,1628,544,127440234,125370101,19051,10616,984967491,905037501,68,70.22,58.53,58.77,5.81,3.6,7.57,8.14
-53926,55,077,55077,224,77,29133344,28075275,1628,544,127440234,125370101,15404,9896,1202528116,1180003730,13.76,14.15,22.86,22.39,1.45,0.78,2.42,2.38
-53928,55,021,55021,128,49,726482,725604,128,49,726482,725604,56833,26137,2061557225,1982711486,100,100,100,100,0.23,0.19,0.04,0.04
-53929,55,057,55057,2353,1140,145285088,145178804,2782,1321,207206309,207073256,26664,14669,2082423201,1986327042,84.58,86.3,70.12,70.11,8.82,7.77,6.98,7.31
-53929,55,081,55081,227,95,35357050,35347798,2782,1321,207206309,207073256,44673,19204,2352273408,2332998070,8.16,7.19,17.06,17.07,0.51,0.49,1.5,1.52
-53929,55,123,55123,202,86,26564171,26546654,2782,1321,207206309,207073256,29773,13720,2114481536,2050180266,7.26,6.51,12.82,12.82,0.68,0.63,1.26,1.29
-53930,55,077,55077,1285,561,105642224,104381115,1285,561,105642224,104381115,15404,9896,1202528116,1180003730,100,100,100,100,8.34,5.67,8.79,8.85
-53931,55,039,55039,237,106,2231246,2189077,237,106,2231246,2189077,101633,43910,1983516130,1863633125,100,100,100,100,0.23,0.24,0.11,0.12
-53932,55,021,55021,2517,1012,91279117,89782484,2573,1042,97629733,96127628,56833,26137,2061557225,1982711486,97.82,97.12,93.5,93.4,4.43,3.87,4.43,4.53
-53932,55,027,55027,56,30,6350616,6345144,2573,1042,97629733,96127628,88759,37005,2349259551,2267857853,2.18,2.88,6.5,6.6,0.06,0.08,0.27,0.28
-53933,55,027,55027,4117,1699,111571931,96515090,4117,1699,111571931,96515090,88759,37005,2349259551,2267857853,100,100,100,100,4.64,4.59,4.75,4.26
-53934,55,001,55001,4396,4051,332450701,311991688,4396,4051,332450701,311991688,20875,17436,1783340082,1672214172,100,100,100,100,21.06,23.23,18.64,18.66
-53935,55,021,55021,307,122,2620759,2591802,307,122,2620759,2591802,56833,26137,2061557225,1982711486,100,100,100,100,0.54,0.47,0.13,0.13
-53936,55,001,55001,1610,1116,153952379,153496551,1610,1116,153952379,153496551,20875,17436,1783340082,1672214172,100,100,100,100,7.71,6.4,8.63,9.18
-53937,55,103,55103,155,88,33464945,33464945,1053,428,133569355,133046073,18021,8868,1526277126,1518123695,14.72,20.56,25.05,25.15,0.86,0.99,2.19,2.2
-53937,55,111,55111,898,340,100104410,99581128,1053,428,133569355,133046073,61976,29708,2197907262,2152025932,85.28,79.44,74.95,74.85,1.45,1.14,4.55,4.63
-53939,55,047,55047,244,119,1965480,1413802,244,119,1965480,1413802,19051,10616,984967491,905037501,100,100,100,100,1.28,1.12,0.2,0.16
-53941,55,057,55057,48,24,6338382,6338382,2932,1940,185692505,180798273,26664,14669,2082423201,1986327042,1.64,1.24,3.41,3.51,0.18,0.16,0.3,0.32
-53941,55,111,55111,2884,1916,179354123,174459891,2932,1940,185692505,180798273,61976,29708,2197907262,2152025932,98.36,98.76,96.59,96.49,4.65,6.45,8.16,8.11
-53943,55,111,55111,1065,453,126760417,126403820,1065,453,126760417,126403820,61976,29708,2197907262,2152025932,100,100,100,100,1.72,1.52,5.77,5.87
-53944,55,057,55057,2048,1162,171559465,166453115,2224,1244,206178269,201042866,26664,14669,2082423201,1986327042,92.09,93.41,83.21,82.79,7.68,7.92,8.24,8.38
-53944,55,111,55111,176,82,34618804,34589751,2224,1244,206178269,201042866,61976,29708,2197907262,2152025932,7.91,6.59,16.79,17.21,0.28,0.28,1.58,1.61
-53946,55,027,55027,2,3,3033166,2912522,4386,2595,361126404,327342935,88759,37005,2349259551,2267857853,0.05,0.12,0.84,0.89,0,0.01,0.13,0.13
-53946,55,039,55039,79,26,12364369,12340170,4386,2595,361126404,327342935,101633,43910,1983516130,1863633125,1.8,1,3.42,3.77,0.08,0.06,0.62,0.66
-53946,55,047,55047,4300,2563,341939787,308560933,4386,2595,361126404,327342935,19051,10616,984967491,905037501,98.04,98.77,94.69,94.26,22.57,24.14,34.72,34.09
-53946,55,077,55077,5,3,3789082,3529310,4386,2595,361126404,327342935,15404,9896,1202528116,1180003730,0.11,0.12,1.05,1.08,0.03,0.03,0.32,0.3
-53947,55,047,55047,137,159,668068,668068,137,159,668068,668068,19051,10616,984967491,905037501,100,100,100,100,0.72,1.5,0.07,0.07
-53948,55,057,55057,8414,4294,389617128,381375355,8414,4294,389617128,381375355,26664,14669,2082423201,1986327042,100,100,100,100,31.56,29.27,18.71,19.2
-53949,55,047,55047,33,33,19059143,16975722,6011,4181,454955531,439578229,19051,10616,984967491,905037501,0.55,0.79,4.19,3.86,0.17,0.31,1.94,1.88
-53949,55,077,55077,5978,4148,435896388,422602507,6011,4181,454955531,439578229,15404,9896,1202528116,1180003730,99.45,99.21,95.81,96.14,38.81,41.92,36.25,35.81
-53950,55,057,55057,5449,2875,276395445,267192191,5449,2875,276395445,267192191,26664,14669,2082423201,1986327042,100,100,100,100,20.44,19.6,13.27,13.45
-53951,55,111,55111,2601,1139,191219048,189641779,2601,1139,191219048,189641779,61976,29708,2197907262,2152025932,100,100,100,100,4.2,3.83,8.7,8.81
-53952,55,001,55001,2514,1198,129938425,127850986,4377,2247,248039248,245047849,20875,17436,1783340082,1672214172,57.44,53.32,52.39,52.17,12.04,6.87,7.29,7.65
-53952,55,077,55077,1863,1049,118100823,117196863,4377,2247,248039248,245047849,15404,9896,1202528116,1180003730,42.56,46.68,47.61,47.83,12.09,10.6,9.82,9.93
-53953,55,077,55077,282,158,6425479,6425479,282,158,6425479,6425479,15404,9896,1202528116,1180003730,100,100,100,100,1.83,1.6,0.53,0.54
-53954,55,021,55021,6796,2973,197788080,190836604,6926,3042,212355189,205309431,56833,26137,2061557225,1982711486,98.12,97.73,93.14,92.95,11.96,11.37,9.59,9.63
-53954,55,077,55077,130,69,14567109,14472827,6926,3042,212355189,205309431,15404,9896,1202528116,1180003730,1.88,2.27,6.86,7.05,0.84,0.7,1.21,1.23
-53955,55,021,55021,5692,2825,206023667,191541887,5692,2825,206023667,191541887,56833,26137,2061557225,1982711486,100,100,100,100,10.02,10.81,9.99,9.66
-53956,55,021,55021,1296,500,113036182,112533917,3397,1409,205547918,203472011,56833,26137,2061557225,1982711486,38.15,35.49,54.99,55.31,2.28,1.91,5.48,5.68
-53956,55,027,55027,2043,884,83003348,81441072,3397,1409,205547918,203472011,88759,37005,2349259551,2267857853,60.14,62.74,40.38,40.03,2.3,2.39,3.53,3.59
-53956,55,047,55047,58,25,9508388,9497022,3397,1409,205547918,203472011,19051,10616,984967491,905037501,1.71,1.77,4.63,4.67,0.3,0.24,0.97,1.05
-53959,55,111,55111,13384,5828,288304139,286066011,13384,5828,288304139,286066011,61976,29708,2197907262,2152025932,100,100,100,100,21.6,19.62,13.12,13.29
-53960,55,021,55021,3268,1451,239384252,234220025,3268,1451,239384252,234220025,56833,26137,2061557225,1982711486,100,100,100,100,5.75,5.55,11.61,11.81
-53961,55,111,55111,837,354,63049196,62082319,837,354,63049196,62082319,61976,29708,2197907262,2152025932,100,100,100,100,1.35,1.19,2.87,2.88
-53963,55,027,55027,8707,2530,93726348,91139049,13910,4674,220880358,216985006,88759,37005,2349259551,2267857853,62.6,54.13,42.43,42,9.81,6.84,3.99,4.02
-53963,55,039,55039,5203,2144,127154010,125845957,13910,4674,220880358,216985006,101633,43910,1983516130,1863633125,37.4,45.87,57.57,58,5.12,4.88,6.41,6.75
-53964,55,001,55001,70,70,28883223,28838191,3604,2122,295120204,293176715,20875,17436,1783340082,1672214172,1.94,3.3,9.79,9.84,0.34,0.4,1.62,1.72
-53964,55,077,55077,3515,2036,265224904,263326447,3604,2122,295120204,293176715,15404,9896,1202528116,1180003730,97.53,95.95,89.87,89.82,22.82,20.57,22.06,22.32
-53964,55,137,55137,19,16,1012077,1012077,3604,2122,295120204,293176715,24496,14843,1650880758,1621729475,0.53,0.75,0.34,0.35,0.08,0.11,0.06,0.06
-53965,55,001,55001,3168,2258,249238142,241998188,10398,6641,450891439,438395910,20875,17436,1783340082,1672214172,30.47,34,55.28,55.2,15.18,12.95,13.98,14.47
-53965,55,021,55021,3164,1721,99956463,97017502,10398,6641,450891439,438395910,56833,26137,2061557225,1982711486,30.43,25.91,22.17,22.13,5.57,6.58,4.85,4.89
-53965,55,057,55057,561,278,26556377,26470564,10398,6641,450891439,438395910,26664,14669,2082423201,1986327042,5.4,4.19,5.89,6.04,2.1,1.9,1.28,1.33
-53965,55,111,55111,3505,2384,75140457,72909656,10398,6641,450891439,438395910,61976,29708,2197907262,2152025932,33.71,35.9,16.66,16.63,5.66,8.02,3.42,3.39
-53968,55,057,55057,1784,877,105227284,105214060,2329,1111,186881210,186577151,26664,14669,2082423201,1986327042,76.6,78.94,56.31,56.39,6.69,5.98,5.05,5.3
-53968,55,111,55111,503,217,74548537,74261003,2329,1111,186881210,186577151,61976,29708,2197907262,2152025932,21.6,19.53,39.89,39.8,0.81,0.73,3.39,3.45
-53968,55,123,55123,42,17,7105389,7102088,2329,1111,186881210,186577151,29773,13720,2114481536,2050180266,1.8,1.53,3.8,3.81,0.14,0.12,0.34,0.35
-53969,55,021,55021,419,155,2748071,2394590,419,155,2748071,2394590,56833,26137,2061557225,1982711486,100,100,100,100,0.74,0.59,0.13,0.12
-54001,55,095,55095,8155,4254,317265521,299874596,8155,4254,317265521,299874596,44205,24248,2477084037,2367150768,100,100,100,100,18.45,17.54,12.81,12.67
-54002,55,109,55109,6278,2590,196538058,195764007,6278,2590,196538058,195764007,84345,33983,1905412622,1870824361,100,100,100,100,7.44,7.62,10.31,10.46
-54003,55,093,55093,1013,411,75216386,75035722,1013,411,75216386,75035722,41019,16132,1532945084,1485999482,100,100,100,100,2.47,2.55,4.91,5.05
-54004,55,005,55005,968,441,140651571,140401504,2317,1066,219826919,217656111,45870,23614,2304477127,2234411472,41.78,41.37,63.98,64.51,2.11,1.87,6.1,6.28
-54004,55,095,55095,1349,625,79175348,77254607,2317,1066,219826919,217656111,44205,24248,2477084037,2367150768,58.22,58.63,36.02,35.49,3.05,2.58,3.2,3.26
-54005,55,005,55005,161,76,15723821,15723821,3056,1301,207265334,206147666,45870,23614,2304477127,2234411472,5.27,5.84,7.59,7.63,0.35,0.32,0.68,0.7
-54005,55,033,55033,105,40,12851175,12832183,3056,1301,207265334,206147666,43857,17964,2237400827,2201762202,3.44,3.07,6.2,6.22,0.24,0.22,0.57,0.58
-54005,55,095,55095,2573,1086,140377066,139373863,3056,1301,207265334,206147666,44205,24248,2477084037,2367150768,84.2,83.47,67.73,67.61,5.82,4.48,5.67,5.89
-54005,55,109,55109,217,99,38313272,38217799,3056,1301,207265334,206147666,84345,33983,1905412622,1870824361,7.1,7.61,18.49,18.54,0.26,0.29,2.01,2.04
-54006,55,095,55095,743,374,73811600,70418436,743,374,73811600,70418436,44205,24248,2477084037,2367150768,100,100,100,100,1.68,1.54,2.98,2.97
-54007,55,095,55095,309,127,24366361,23850526,1188,497,123258425,122193233,44205,24248,2477084037,2367150768,26.01,25.55,19.77,19.52,0.7,0.52,0.98,1.01
-54007,55,109,55109,879,370,98892064,98342707,1188,497,123258425,122193233,84345,33983,1905412622,1870824361,73.99,74.45,80.23,80.48,1.04,1.09,5.19,5.26
-54009,55,095,55095,2509,1095,89283371,83503714,2509,1095,89283371,83503714,44205,24248,2477084037,2367150768,100,100,100,100,5.68,4.52,3.6,3.53
-54010,55,093,55093,50,35,35434,35434,50,35,35434,35434,41019,16132,1532945084,1485999482,100,100,100,100,0.12,0.22,0,0
-54011,55,093,55093,6819,2812,267059373,266514233,6819,2812,267059373,266514233,41019,16132,1532945084,1485999482,100,100,100,100,16.62,17.43,17.42,17.94
-54013,55,033,55033,32,13,4775202,4774352,3475,1419,263790638,262820066,43857,17964,2237400827,2201762202,0.92,0.92,1.81,1.82,0.07,0.07,0.21,0.22
-54013,55,109,55109,3443,1406,259015436,258045714,3475,1419,263790638,262820066,84345,33983,1905412622,1870824361,99.08,99.08,98.19,98.18,4.08,4.14,13.59,13.79
-54014,55,093,55093,2232,976,121733139,112232672,2232,976,121733139,112232672,41019,16132,1532945084,1485999482,100,100,100,100,5.44,6.05,7.94,7.55
-54015,55,109,55109,3586,1341,98004149,97888242,3586,1341,98004149,97888242,84345,33983,1905412622,1870824361,100,100,100,100,4.25,3.95,5.14,5.23
-54016,55,109,55109,30108,11892,191815744,176615808,30108,11892,191815744,176615808,84345,33983,1905412622,1870824361,100,100,100,100,35.7,34.99,10.07,9.44
-54017,55,095,55095,144,89,12184444,11027540,16743,6899,365216457,358432687,44205,24248,2477084037,2367150768,0.86,1.29,3.34,3.08,0.33,0.37,0.49,0.47
-54017,55,109,55109,16599,6810,353032013,347405147,16743,6899,365216457,358432687,84345,33983,1905412622,1870824361,99.14,98.71,96.66,96.92,19.68,20.04,18.53,18.57
-54020,55,095,55095,7165,3185,200017903,193013175,7260,3218,203018710,196013982,44205,24248,2477084037,2367150768,98.69,98.97,98.52,98.47,16.21,13.14,8.07,8.15
-54020,55,109,55109,95,33,3000807,3000807,7260,3218,203018710,196013982,84345,33983,1905412622,1870824361,1.31,1.03,1.48,1.53,0.11,0.1,0.16,0.16
-54021,55,093,55093,6622,2674,120648117,115347552,6622,2674,120648117,115347552,41019,16132,1532945084,1485999482,100,100,100,100,16.14,16.58,7.87,7.76
-54022,55,093,55093,16136,5621,227753878,225085687,22358,8281,367774819,363487645,41019,16132,1532945084,1485999482,72.17,67.88,61.93,61.92,39.34,34.84,14.86,15.15
-54022,55,109,55109,6222,2660,140020941,138401958,22358,8281,367774819,363487645,84345,33983,1905412622,1870824361,27.83,32.12,38.07,38.08,7.38,7.83,7.35,7.4
-54023,55,109,55109,3833,1503,107765544,106978789,3833,1503,107765544,106978789,84345,33983,1905412622,1870824361,100,100,100,100,4.54,4.42,5.66,5.72
-54024,55,095,55095,4811,2640,225974962,218359057,4811,2640,225974962,218359057,44205,24248,2477084037,2367150768,100,100,100,100,10.88,10.89,9.12,9.22
-54025,55,109,55109,6864,2692,129958522,125872409,6864,2692,129958522,125872409,84345,33983,1905412622,1870824361,100,100,100,100,8.14,7.92,6.82,6.73
-54026,55,095,55095,1139,600,59416745,55159690,1809,904,77187236,71841349,44205,24248,2477084037,2367150768,62.96,66.37,76.98,76.78,2.58,2.47,2.4,2.33
-54026,55,109,55109,670,304,17770491,16681659,1809,904,77187236,71841349,84345,33983,1905412622,1870824361,37.04,33.63,23.02,23.22,0.79,0.89,0.93,0.89
-54027,55,109,55109,989,410,77445491,77441741,989,410,77445491,77441741,84345,33983,1905412622,1870824361,100,100,100,100,1.17,1.21,4.06,4.14
-54028,55,109,55109,2493,1025,107359465,106885024,2493,1025,107359465,106885024,84345,33983,1905412622,1870824361,100,100,100,100,2.96,3.02,5.63,5.71
-54082,55,109,55109,1696,689,36745532,35073138,1696,689,36745532,35073138,84345,33983,1905412622,1870824361,100,100,100,100,2.01,2.03,1.93,1.87
-54101,55,083,55083,2751,1142,137298696,137208083,2751,1142,137298696,137208083,37660,23537,2975365242,2584775696,100,100,100,100,7.3,4.85,4.61,5.31
-54102,55,075,55075,875,1454,259535846,254757148,875,1454,259535846,254757148,41749,30379,4014506602,3624293202,100,100,100,100,2.1,4.79,6.46,7.03
-54103,55,041,55041,410,527,192995037,190998501,418,554,195336129,193290853,9304,8970,2709972729,2626421270,98.09,95.13,98.8,98.81,4.41,5.88,7.12,7.27
-54103,55,075,55075,8,27,2341092,2292352,418,554,195336129,193290853,41749,30379,4014506602,3624293202,1.91,4.87,1.2,1.19,0.02,0.09,0.06,0.06
-54104,55,041,55041,6,19,4091310,4003453,1051,2540,533101819,527185377,9304,8970,2709972729,2626421270,0.57,0.75,0.77,0.76,0.06,0.21,0.15,0.15
-54104,55,075,55075,1045,2521,529010509,523181924,1051,2540,533101819,527185377,41749,30379,4014506602,3624293202,99.43,99.25,99.23,99.24,2.5,8.3,13.18,14.44
-54106,55,087,55087,4997,1984,237872063,237269971,4997,1984,237872063,237269971,176695,73149,1669477187,1651177709,100,100,100,100,2.83,2.71,14.25,14.37
-54107,55,087,55087,6,3,765250,765250,3727,1512,191713550,190803770,176695,73149,1669477187,1651177709,0.16,0.2,0.4,0.4,0,0,0.05,0.05
-54107,55,115,55115,3721,1509,190948300,190038520,3727,1512,191713550,190803770,41949,20720,2355521554,2313007314,99.84,99.8,99.6,99.6,8.87,7.28,8.11,8.22
-54110,55,009,55009,123,39,14478209,14478209,5338,2201,169041736,167289783,248007,104371,1594679299,1371938244,2.3,1.77,8.56,8.65,0.05,0.04,0.91,1.06
-54110,55,015,55015,4631,1908,115560330,114661992,5338,2201,169041736,167289783,48971,19695,1028423834,824227417,86.76,86.69,68.36,68.54,9.46,9.69,11.24,13.91
-54110,55,071,55071,584,254,39003197,38149582,5338,2201,169041736,167289783,81442,37189,3869637904,1525716187,10.94,11.54,23.07,22.8,0.72,0.68,1.01,2.5
-54111,55,083,55083,74,53,8667895,8514887,2132,1165,141735999,136596226,37660,23537,2975365242,2584775696,3.47,4.55,6.12,6.23,0.2,0.23,0.29,0.33
-54111,55,115,55115,2058,1112,133068104,128081339,2132,1165,141735999,136596226,41949,20720,2355521554,2313007314,96.53,95.45,93.88,93.77,4.91,5.37,5.65,5.54
-54112,55,075,55075,1865,848,118395688,117445024,2284,1124,163987893,162605253,41749,30379,4014506602,3624293202,81.65,75.44,72.2,72.23,4.47,2.79,2.95,3.24
-54112,55,083,55083,419,276,45592205,45160229,2284,1124,163987893,162605253,37660,23537,2975365242,2584775696,18.35,24.56,27.8,27.77,1.11,1.17,1.53,1.75
-54113,55,087,55087,3325,1263,4941605,4488252,3325,1263,4941605,4488252,176695,73149,1669477187,1651177709,100,100,100,100,1.88,1.73,0.3,0.27
-54114,55,075,55075,4905,5549,584030744,561058649,5178,6352,661102318,635822999,41749,30379,4014506602,3624293202,94.73,87.36,88.34,88.24,11.75,18.27,14.55,15.48
-54114,55,083,55083,273,803,77071574,74764350,5178,6352,661102318,635822999,37660,23537,2975365242,2584775696,5.27,12.64,11.66,11.76,0.72,3.41,2.59,2.89
-54115,55,009,55009,39131,15865,281663586,275864066,41178,16552,331025091,325225571,248007,104371,1594679299,1371938244,95.03,95.85,85.09,84.82,15.78,15.2,17.66,20.11
-54115,55,087,55087,2047,687,49361505,49361505,41178,16552,331025091,325225571,176695,73149,1669477187,1651177709,4.97,4.15,14.91,15.18,1.16,0.94,2.96,2.99
-54119,55,075,55075,1083,850,245247577,242799365,1083,850,245247577,242799365,41749,30379,4014506602,3624293202,100,100,100,100,2.59,2.8,6.11,6.7
-54120,55,037,55037,156,367,221521885,220430667,245,647,255752250,253175720,4423,4780,1288580133,1264419915,63.67,56.72,86.62,87.07,3.53,7.68,17.19,17.43
-54120,55,075,55075,89,280,34230365,32745053,245,647,255752250,253175720,41749,30379,4014506602,3624293202,36.33,43.28,13.38,12.93,0.21,0.92,0.85,0.9
-54121,55,037,55037,2982,3139,692236625,677231717,2982,3139,692236625,677231717,4423,4780,1288580133,1264419915,100,100,100,100,67.42,65.67,53.72,53.56
-54123,55,015,55015,238,100,1299803,1296913,238,100,1299803,1296913,48971,19695,1028423834,824227417,100,100,100,100,0.49,0.51,0.13,0.16
-54124,55,078,55078,170,142,20775592,18138929,3881,1978,250096637,243818478,4232,2253,945239504,926201079,4.38,7.18,8.31,7.44,4.02,6.3,2.2,1.96
-54124,55,083,55083,3601,1779,227274521,223646898,3881,1978,250096637,243818478,37660,23537,2975365242,2584775696,92.79,89.94,90.87,91.73,9.56,7.56,7.64,8.65
-54124,55,115,55115,110,57,2046524,2032651,3881,1978,250096637,243818478,41949,20720,2355521554,2313007314,2.83,2.88,0.82,0.83,0.26,0.28,0.09,0.09
-54125,55,041,55041,2,60,44725636,44445005,519,576,194698416,191866167,9304,8970,2709972729,2626421270,0.39,10.42,22.97,23.16,0.02,0.67,1.65,1.69
-54125,55,075,55075,517,516,149972780,147421162,519,576,194698416,191866167,41749,30379,4014506602,3624293202,99.61,89.58,77.03,76.84,1.24,1.7,3.74,4.07
-54126,55,009,55009,3610,1385,195896827,195561500,3625,1393,197244692,196909365,248007,104371,1594679299,1371938244,99.59,99.43,99.32,99.32,1.46,1.33,12.28,14.25
-54126,55,071,55071,15,8,1347865,1347865,3625,1393,197244692,196909365,81442,37189,3869637904,1525716187,0.41,0.57,0.68,0.68,0.02,0.02,0.03,0.09
-54127,55,115,55115,76,35,218662,218662,76,35,218662,218662,41949,20720,2355521554,2313007314,100,100,100,100,0.18,0.17,0.01,0.01
-54128,55,115,55115,1778,949,136898153,134233437,1778,949,136898153,134233437,41949,20720,2355521554,2313007314,100,100,100,100,4.24,4.58,5.81,5.8
-54129,55,015,55015,3477,1455,188257004,187421416,3477,1455,188257004,187421416,48971,19695,1028423834,824227417,100,100,100,100,7.1,7.39,18.31,22.74
-54130,55,009,55009,898,310,24429882,24429882,25108,10256,209406190,206521689,248007,104371,1594679299,1371938244,3.58,3.02,11.67,11.83,0.36,0.3,1.53,1.78
-54130,55,015,55015,449,171,22332735,22317557,25108,10256,209406190,206521689,48971,19695,1028423834,824227417,1.79,1.67,10.66,10.81,0.92,0.87,2.17,2.71
-54130,55,087,55087,23761,9775,162643573,159774250,25108,10256,209406190,206521689,176695,73149,1669477187,1651177709,94.64,95.31,77.67,77.36,13.45,13.36,9.74,9.68
-54135,55,078,55078,3096,1786,217306049,208312526,3096,1786,217306049,208312526,4232,2253,945239504,926201079,100,100,100,100,73.16,79.27,22.99,22.49
-54136,55,087,55087,6406,2845,5759710,5356067,6406,2845,5759710,5356067,176695,73149,1669477187,1651177709,100,100,100,100,3.63,3.89,0.35,0.32
-54137,55,083,55083,356,145,28188434,28188434,1115,458,67760383,67760383,37660,23537,2975365242,2584775696,31.93,31.66,41.6,41.6,0.95,0.62,0.95,1.09
-54137,55,115,55115,759,313,39571949,39571949,1115,458,67760383,67760383,41949,20720,2355521554,2313007314,68.07,68.34,58.4,58.4,1.81,1.51,1.68,1.71
-54138,55,083,55083,821,1436,192765457,188923511,821,1436,192765457,188923511,37660,23537,2975365242,2584775696,100,100,100,100,2.18,6.1,6.48,7.31
-54139,55,075,55075,37,14,3983165,3983165,3096,1375,249006891,248067331,41749,30379,4014506602,3624293202,1.2,1.02,1.6,1.61,0.09,0.05,0.1,0.11
-54139,55,083,55083,3059,1361,245023726,244084166,3096,1375,249006891,248067331,37660,23537,2975365242,2584775696,98.8,98.98,98.4,98.39,8.12,5.78,8.24,9.44
-54140,55,087,55087,8533,3580,8738682,8204898,8533,3580,8738682,8204898,176695,73149,1669477187,1651177709,100,100,100,100,4.83,4.89,0.52,0.5
-54141,55,083,55083,2549,1141,80055472,67413952,2549,1141,80055472,67413952,37660,23537,2975365242,2584775696,100,100,100,100,6.77,4.85,2.69,2.61
-54143,55,075,55075,15225,7404,191485303,175555549,15225,7404,191485303,175555549,41749,30379,4014506602,3624293202,100,100,100,100,36.47,24.37,4.77,4.84
-54149,55,083,55083,1184,1960,330662859,324476270,1184,1960,330662859,324476270,37660,23537,2975365242,2584775696,100,100,100,100,3.14,8.33,11.11,12.55
-54150,55,078,55078,789,256,41523654,40449904,1037,329,45447035,44368437,4232,2253,945239504,926201079,76.08,77.81,91.37,91.17,18.64,11.36,4.39,4.37
-54150,55,115,55115,248,73,3923381,3918533,1037,329,45447035,44368437,41949,20720,2355521554,2313007314,23.92,22.19,8.63,8.83,0.59,0.35,0.17,0.17
-54151,55,037,55037,984,552,91894135,91000815,3556,2017,317997036,312468792,4423,4780,1288580133,1264419915,27.67,27.37,28.9,29.12,22.25,11.55,7.13,7.2
-54151,55,075,55075,2572,1465,226102901,221467977,3556,2017,317997036,312468792,41749,30379,4014506602,3624293202,72.33,72.63,71.1,70.88,6.16,4.82,5.63,6.11
-54153,55,083,55083,7252,3415,276517747,262053736,7252,3415,276517747,262053736,37660,23537,2975365242,2584775696,100,100,100,100,19.26,14.51,9.29,10.14
-54154,55,083,55083,5315,2391,196198992,193762012,5548,2483,218254655,215817675,37660,23537,2975365242,2584775696,95.8,96.29,89.89,89.78,14.11,10.16,6.59,7.5
-54154,55,115,55115,233,92,22055663,22055663,5548,2483,218254655,215817675,41949,20720,2355521554,2313007314,4.2,3.71,10.11,10.22,0.56,0.44,0.94,0.95
-54155,55,009,55009,3706,1397,37703166,37560922,5451,1927,89171378,89029134,248007,104371,1594679299,1371938244,67.99,72.5,42.28,42.19,1.49,1.34,2.36,2.74
-54155,55,087,55087,1745,530,51468212,51468212,5451,1927,89171378,89029134,176695,73149,1669477187,1651177709,32.01,27.5,57.72,57.81,0.99,0.72,3.08,3.12
-54156,55,075,55075,1535,2024,358028203,353131247,1535,2024,358028203,353131247,41749,30379,4014506602,3624293202,100,100,100,100,3.68,6.66,8.92,9.74
-54157,55,075,55075,5978,2752,232510438,225031540,5986,2767,237171472,229692574,41749,30379,4014506602,3624293202,99.87,99.46,98.03,97.97,14.32,9.06,5.79,6.21
-54157,55,083,55083,8,15,4661034,4661034,5986,2767,237171472,229692574,37660,23537,2975365242,2584775696,0.13,0.54,1.97,2.03,0.02,0.06,0.16,0.18
-54159,55,075,55075,1434,818,164158588,163239017,1434,818,164158588,163239017,41749,30379,4014506602,3624293202,100,100,100,100,3.43,2.69,4.09,4.5
-54160,55,015,55015,253,99,1212191,1176346,253,99,1212191,1176346,48971,19695,1028423834,824227417,100,100,100,100,0.52,0.5,0.12,0.14
-54161,55,075,55075,1683,948,156939789,154903207,2696,2246,332564112,322316848,41749,30379,4014506602,3624293202,62.43,42.21,47.19,48.06,4.03,3.12,3.91,4.27
-54161,55,083,55083,1013,1298,175624323,167413641,2696,2246,332564112,322316848,37660,23537,2975365242,2584775696,37.57,57.79,52.81,51.94,2.69,5.51,5.9,6.48
-54162,55,009,55009,4684,1957,61668188,61616884,9065,3538,295608997,295361352,248007,104371,1594679299,1371938244,51.67,55.31,20.86,20.86,1.89,1.88,3.87,4.49
-54162,55,083,55083,1697,597,48113549,47977949,9065,3538,295608997,295361352,37660,23537,2975365242,2584775696,18.72,16.87,16.28,16.24,4.51,2.54,1.62,1.86
-54162,55,115,55115,2684,984,185827260,185766519,9065,3538,295608997,295361352,41949,20720,2355521554,2313007314,29.61,27.81,62.86,62.89,6.4,4.75,7.89,8.03
-54165,55,009,55009,60,26,3012946,3012946,7539,3071,242023537,241904540,248007,104371,1594679299,1371938244,0.8,0.85,1.24,1.25,0.02,0.02,0.19,0.22
-54165,55,087,55087,7216,2939,217203142,217106573,7539,3071,242023537,241904540,176695,73149,1669477187,1651177709,95.72,95.7,89.74,89.75,4.08,4.02,13.01,13.15
-54165,55,115,55115,263,106,21807449,21785021,7539,3071,242023537,241904540,41949,20720,2355521554,2313007314,3.49,3.45,9.01,9.01,0.63,0.51,0.93,0.94
-54166,55,115,55115,17002,8992,394035161,365953518,17002,8992,394035161,365953518,41949,20720,2355521554,2313007314,100,100,100,100,40.53,43.4,16.73,15.82
-54169,55,015,55015,2600,987,8995163,8845985,2600,987,8995163,8845985,48971,19695,1028423834,824227417,100,100,100,100,5.31,5.01,0.87,1.07
-54170,55,087,55087,3491,1465,230466457,224397621,3730,1584,303009276,296162411,176695,73149,1669477187,1651177709,93.59,92.49,76.06,75.77,1.98,2,13.8,13.59
-54170,55,115,55115,231,114,62225673,61868167,3730,1584,303009276,296162411,41949,20720,2355521554,2313007314,6.19,7.2,20.54,20.89,0.55,0.55,2.64,2.67
-54170,55,135,55135,8,5,10317146,9896623,3730,1584,303009276,296162411,52410,25396,1981868416,1936566893,0.21,0.32,3.4,3.34,0.02,0.02,0.52,0.51
-54171,55,083,55083,3362,1222,60036546,60022168,3362,1222,60036546,60022168,37660,23537,2975365242,2584775696,100,100,100,100,8.93,5.19,2.02,2.32
-54173,55,009,55009,4095,1609,37091561,36473799,4095,1609,37091561,36473799,248007,104371,1594679299,1371938244,100,100,100,100,1.65,1.54,2.33,2.66
-54174,55,078,55078,177,69,165783873,164077158,3013,2438,501735653,494834711,4232,2253,945239504,926201079,5.87,2.83,33.04,33.16,4.18,3.06,17.54,17.72
-54174,55,083,55083,2836,2369,335951780,330757553,3013,2438,501735653,494834711,37660,23537,2975365242,2584775696,94.13,97.17,66.96,66.84,7.53,10.07,11.29,12.8
-54175,55,067,55067,0,12,66133,66133,1018,1920,151472093,140501399,19977,12360,2299604140,2254946857,0,0.63,0.04,0.05,0,0.1,0,0
-54175,55,083,55083,1018,1908,151405960,140435266,1018,1920,151472093,140501399,37660,23537,2975365242,2584775696,100,99.38,99.96,99.95,2.7,8.11,5.09,5.43
-54177,55,075,55075,2898,2909,459664116,445280823,2898,2909,459664116,445280823,41749,30379,4014506602,3624293202,100,100,100,100,6.94,9.58,11.45,12.29
-54180,55,009,55009,2710,1038,9204470,8568230,2861,1103,11258704,10622464,248007,104371,1594679299,1371938244,94.72,94.11,81.75,80.66,1.09,0.99,0.58,0.62
-54180,55,087,55087,151,65,2054234,2054234,2861,1103,11258704,10622464,176695,73149,1669477187,1651177709,5.28,5.89,18.25,19.34,0.09,0.09,0.12,0.12
-54201,55,029,55029,155,127,16023991,15986721,5345,2795,199251689,193995326,27785,23966,6138918397,1248316135,2.9,4.54,8.04,8.24,0.56,0.53,0.26,1.28
-54201,55,061,55061,5190,2668,183227698,178008605,5345,2795,199251689,193995326,20574,9304,2808317060,887118289,97.1,95.46,91.96,91.76,25.23,28.68,6.52,20.07
-54202,55,029,55029,1240,1711,113129251,107483856,1240,1711,113129251,107483856,27785,23966,6138918397,1248316135,100,100,100,100,4.46,7.14,1.84,8.61
-54204,55,029,55029,1819,1025,123347657,123307240,1819,1025,123347657,123307240,27785,23966,6138918397,1248316135,100,100,100,100,6.55,4.28,2.01,9.88
-54205,55,029,55029,65,26,4064686,4064686,2177,850,106823042,106805144,27785,23966,6138918397,1248316135,2.99,3.06,3.81,3.81,0.23,0.11,0.07,0.33
-54205,55,061,55061,2112,824,102758356,102740458,2177,850,106823042,106805144,20574,9304,2808317060,887118289,97.01,96.94,96.19,96.19,10.27,8.86,3.66,11.58
-54207,55,071,55071,176,69,2562275,2561063,176,69,2562275,2561063,81442,37189,3869637904,1525716187,100,100,100,100,0.22,0.19,0.07,0.17
-54208,55,009,55009,4807,1987,158100119,157405231,6061,2526,267640087,265068121,248007,104371,1594679299,1371938244,79.31,78.66,59.07,59.38,1.94,1.9,9.91,11.47
-54208,55,061,55061,716,312,77134316,75350811,6061,2526,267640087,265068121,20574,9304,2808317060,887118289,11.81,12.35,28.82,28.43,3.48,3.35,2.75,8.49
-54208,55,071,55071,538,227,32405652,32312079,6061,2526,267640087,265068121,81442,37189,3869637904,1525716187,8.88,8.99,12.11,12.19,0.66,0.61,0.84,2.12
-54209,55,029,55029,1195,2175,104187013,101995429,1195,2175,104187013,101995429,27785,23966,6138918397,1248316135,100,100,100,100,4.3,9.08,1.7,8.17
-54210,55,029,55029,897,1326,77766954,69091012,897,1326,77766954,69091012,27785,23966,6138918397,1248316135,100,100,100,100,3.23,5.53,1.27,5.53
-54211,55,029,55029,277,647,9182932,9181966,277,647,9182932,9181966,27785,23966,6138918397,1248316135,100,100,100,100,1,2.7,0.15,0.74
-54212,55,029,55029,997,1582,87528396,85277348,997,1582,87528396,85277348,27785,23966,6138918397,1248316135,100,100,100,100,3.59,6.6,1.43,6.83
-54213,55,029,55029,1211,551,86583001,86065735,1276,580,95556856,94962292,27785,23966,6138918397,1248316135,94.91,95,90.61,90.63,4.36,2.3,1.41,6.89
-54213,55,061,55061,65,29,8973855,8896557,1276,580,95556856,94962292,20574,9304,2808317060,887118289,5.09,5,9.39,9.37,0.32,0.31,0.32,1
-54214,55,071,55071,334,149,737784,737784,334,149,737784,737784,81442,37189,3869637904,1525716187,100,100,100,100,0.41,0.4,0.02,0.05
-54216,55,061,55061,6276,2904,295336814,280596868,6276,2904,295336814,280596868,20574,9304,2808317060,887118289,100,100,100,100,30.5,31.21,10.52,31.63
-54217,55,009,55009,786,361,30903476,30903476,7405,3207,295349034,292328478,248007,104371,1594679299,1371938244,10.61,11.26,10.46,10.57,0.32,0.35,1.94,2.25
-54217,55,029,55029,404,279,19901779,19900012,7405,3207,295349034,292328478,27785,23966,6138918397,1248316135,5.46,8.7,6.74,6.81,1.45,1.16,0.32,1.59
-54217,55,061,55061,6215,2567,244543779,241524990,7405,3207,295349034,292328478,20574,9304,2808317060,887118289,83.93,80.04,82.8,82.62,30.21,27.59,8.71,27.23
-54220,55,071,55071,40220,18674,269213065,255443775,40220,18674,269213065,255443775,81442,37189,3869637904,1525716187,100,100,100,100,49.38,50.21,6.96,16.74
-54227,55,071,55071,1568,631,81679617,81071338,1568,631,81679617,81071338,81442,37189,3869637904,1525716187,100,100,100,100,1.93,1.7,2.11,5.31
-54228,55,071,55071,2682,1196,104765737,104150294,2682,1196,104765737,104150294,81442,37189,3869637904,1525716187,100,100,100,100,3.29,3.22,2.71,6.83
-54229,55,009,55009,4306,1657,106316893,106287458,4306,1657,106316893,106287458,248007,104371,1594679299,1371938244,100,100,100,100,1.74,1.59,6.67,7.75
-54230,55,071,55071,4782,1939,287060564,284384169,4782,1939,287060564,284384169,81442,37189,3869637904,1525716187,100,100,100,100,5.87,5.21,7.42,18.64
-54232,55,071,55071,779,344,1989890,1931152,779,344,1989890,1931152,81442,37189,3869637904,1525716187,100,100,100,100,0.96,0.93,0.05,0.13
-54234,55,029,55029,1614,2247,62276109,62257236,1614,2247,62276109,62257236,27785,23966,6138918397,1248316135,100,100,100,100,5.81,9.38,1.01,4.99
-54235,55,029,55029,17203,11255,534070577,497675974,17203,11255,534070577,497675974,27785,23966,6138918397,1248316135,100,100,100,100,61.91,46.96,8.7,39.87
-54241,55,071,55071,14884,7109,186758287,171628123,14884,7109,186758287,171628123,81442,37189,3869637904,1525716187,100,100,100,100,18.28,19.12,4.83,11.25
-54245,55,071,55071,2259,1026,106468138,105047165,2259,1026,106468138,105047165,81442,37189,3869637904,1525716187,100,100,100,100,2.77,2.76,2.75,6.89
-54246,55,029,55029,708,1015,66268559,65998149,708,1015,66268559,65998149,27785,23966,6138918397,1248316135,100,100,100,100,2.55,4.24,1.08,5.29
-54247,55,071,55071,2339,979,88581235,88084091,2339,979,88581235,88084091,81442,37189,3869637904,1525716187,100,100,100,100,2.87,2.63,2.29,5.77
-54301,55,009,55009,22742,10348,18840941,16971584,22742,10348,18840941,16971584,248007,104371,1594679299,1371938244,100,100,100,100,9.17,9.91,1.18,1.24
-54302,55,009,55009,30611,13438,25423579,24737298,30611,13438,25423579,24737298,248007,104371,1594679299,1371938244,100,100,100,100,12.34,12.88,1.59,1.8
-54303,55,009,55009,27041,12747,28929748,28322639,27041,12747,28929748,28322639,248007,104371,1594679299,1371938244,100,100,100,100,10.9,12.21,1.81,2.06
-54304,55,009,55009,28153,13146,32024307,30361862,28153,13146,32024307,30361862,248007,104371,1594679299,1371938244,100,100,100,100,11.35,12.6,2.01,2.21
-54307,55,009,55009,1092,0,188932,188932,1092,0,188932,188932,248007,104371,1594679299,1371938244,100,0,100,100,0.44,0,0.01,0.01
-54311,55,009,55009,33580,13304,166568895,166021612,33580,13304,166568895,166021612,248007,104371,1594679299,1371938244,100,100,100,100,13.54,12.75,10.45,12.1
-54313,55,009,55009,35872,13757,156286796,153171714,35897,13769,157477902,154362820,248007,104371,1594679299,1371938244,99.93,99.91,99.24,99.23,14.46,13.18,9.8,11.16
-54313,55,087,55087,25,12,1191106,1191106,35897,13769,157477902,154362820,176695,73149,1669477187,1651177709,0.07,0.09,0.76,0.77,0.01,0.02,0.07,0.07
-54401,55,073,55073,30702,13899,220717911,215678441,30702,13899,220717911,215678441,134063,57734,4082627087,4001488029,100,100,100,100,22.9,24.07,5.41,5.39
-54403,55,073,55073,24272,10754,349302211,346472235,24272,10754,349302211,346472235,134063,57734,4082627087,4001488029,100,100,100,100,18.1,18.63,8.56,8.66
-54405,55,019,55019,1900,795,24410196,24396659,3032,1205,77490828,77477291,34690,15076,3156643111,3133407354,62.66,65.98,31.5,31.49,5.48,5.27,0.77,0.78
-54405,55,073,55073,1132,410,53080632,53080632,3032,1205,77490828,77477291,134063,57734,4082627087,4001488029,37.34,34.02,68.5,68.51,0.84,0.71,1.3,1.33
-54406,55,097,55097,3469,1480,175147669,173708589,3469,1480,175147669,173708589,70019,30054,2130673992,2073747839,100,100,100,100,4.95,4.92,8.22,8.38
-54407,55,097,55097,1515,720,124614450,121697208,1515,720,124614450,121697208,70019,30054,2130673992,2073747839,100,100,100,100,2.16,2.4,5.85,5.87
-54408,55,067,55067,45,21,1248330,1248330,1068,467,115753953,115225424,19977,12360,2299604140,2254946857,4.21,4.5,1.08,1.08,0.23,0.17,0.05,0.06
-54408,55,073,55073,723,304,104104418,104075415,1068,467,115753953,115225424,134063,57734,4082627087,4001488029,67.7,65.1,89.94,90.32,0.54,0.53,2.55,2.6
-54408,55,115,55115,300,142,10401205,9901679,1068,467,115753953,115225424,41949,20720,2355521554,2313007314,28.09,30.41,8.99,8.59,0.72,0.69,0.44,0.43
-54409,55,067,55067,12999,6057,485051167,482048026,13238,6192,552630016,549546638,19977,12360,2299604140,2254946857,98.19,97.82,87.77,87.72,65.07,49,21.09,21.38
-54409,55,073,55073,136,71,46974347,46902773,13238,6192,552630016,549546638,134063,57734,4082627087,4001488029,1.03,1.15,8.5,8.53,0.1,0.12,1.15,1.17
-54409,55,115,55115,103,64,20604502,20595839,13238,6192,552630016,549546638,41949,20720,2355521554,2313007314,0.78,1.03,3.73,3.75,0.25,0.31,0.87,0.89
-54410,55,141,55141,2392,907,171907276,171866742,2392,907,171907276,171866742,74749,34088,2096442702,2054162108,100,100,100,100,3.2,2.66,8.2,8.37
-54411,55,073,55073,5270,1982,467914215,467875320,5406,2041,492576389,492537494,134063,57734,4082627087,4001488029,97.48,97.11,94.99,94.99,3.93,3.43,11.46,11.69
-54411,55,119,55119,136,59,24662174,24662174,5406,2041,492576389,492537494,20689,10582,2549639705,2524917815,2.52,2.89,5.01,5.01,0.66,0.56,0.97,0.98
-54412,55,073,55073,444,213,73921805,67892356,2181,919,193374443,187291986,134063,57734,4082627087,4001488029,20.36,23.18,38.23,36.25,0.33,0.37,1.81,1.7
-54412,55,141,55141,1737,706,119452638,119399630,2181,919,193374443,187291986,74749,34088,2096442702,2054162108,79.64,76.82,61.77,63.75,2.32,2.07,5.7,5.81
-54413,55,141,55141,191,144,82118172,81215896,191,144,82118172,81215896,74749,34088,2096442702,2054162108,100,100,100,100,0.26,0.42,3.92,3.95
-54414,55,073,55073,1098,474,125399172,124427082,3404,1555,335029247,333615218,134063,57734,4082627087,4001488029,32.26,30.48,37.43,37.3,0.82,0.82,3.07,3.11
-54414,55,115,55115,2306,1081,209630075,209188136,3404,1555,335029247,333615218,41949,20720,2355521554,2313007314,67.74,69.52,62.57,62.7,5.5,5.22,8.9,9.04
-54416,55,115,55115,1684,857,215374318,214947766,1684,857,215374318,214947766,41949,20720,2355521554,2313007314,100,100,100,100,4.01,4.14,9.14,9.29
-54417,55,073,55073,46,22,989195,804780,46,22,989195,804780,134063,57734,4082627087,4001488029,100,100,100,100,0.03,0.04,0.02,0.02
-54418,55,067,55067,1080,548,304741881,302379880,1080,548,304741881,302379880,19977,12360,2299604140,2254946857,100,100,100,100,5.41,4.43,13.25,13.41
-54420,55,019,55019,1260,465,95841010,95475282,1307,485,99988589,99622861,34690,15076,3156643111,3133407354,96.4,95.88,95.85,95.84,3.63,3.08,3.04,3.05
-54420,55,141,55141,47,20,4147579,4147579,1307,485,99988589,99622861,74749,34088,2096442702,2054162108,3.6,4.12,4.15,4.16,0.06,0.06,0.2,0.2
-54421,55,019,55019,2152,800,81842383,81750999,3455,1316,183730539,183461522,34690,15076,3156643111,3133407354,62.29,60.79,44.54,44.56,6.2,5.31,2.59,2.61
-54421,55,073,55073,1303,516,101888156,101710523,3455,1316,183730539,183461522,134063,57734,4082627087,4001488029,37.71,39.21,55.46,55.44,0.97,0.89,2.5,2.54
-54422,55,019,55019,899,314,76420853,76199363,1209,411,100645400,100423910,34690,15076,3156643111,3133407354,74.36,76.4,75.93,75.88,2.59,2.08,2.42,2.43
-54422,55,119,55119,310,97,24224547,24224547,1209,411,100645400,100423910,20689,10582,2549639705,2524917815,25.64,23.6,24.07,24.12,1.5,0.92,0.95,0.96
-54423,55,097,55097,2343,939,140056545,138359172,2343,939,140056545,138359172,70019,30054,2130673992,2073747839,100,100,100,100,3.35,3.12,6.57,6.67
-54424,55,067,55067,1651,1358,436047366,425263888,1651,1358,436047366,425263888,19977,12360,2299604140,2254946857,100,100,100,100,8.26,10.99,18.96,18.86
-54425,55,019,55019,1474,606,62184595,61879994,2036,822,114508113,114187986,34690,15076,3156643111,3133407354,72.4,73.72,54.31,54.19,4.25,4.02,1.97,1.97
-54425,55,073,55073,429,158,38644400,38628874,2036,822,114508113,114187986,134063,57734,4082627087,4001488029,21.07,19.22,33.75,33.83,0.32,0.27,0.95,0.97
-54425,55,119,55119,133,58,13679118,13679118,2036,822,114508113,114187986,20689,10582,2549639705,2524917815,6.53,7.06,11.95,11.98,0.64,0.55,0.54,0.54
-54426,55,073,55073,4479,1717,281116899,280611348,4479,1717,281116899,280611348,134063,57734,4082627087,4001488029,100,100,100,100,3.34,2.97,6.89,7.01
-54427,55,073,55073,735,329,89727193,89167582,1099,494,116722765,116163154,134063,57734,4082627087,4001488029,66.88,66.6,76.87,76.76,0.55,0.57,2.2,2.23
-54427,55,115,55115,364,165,26995572,26995572,1099,494,116722765,116163154,41949,20720,2355521554,2313007314,33.12,33.4,23.13,23.24,0.87,0.8,1.15,1.17
-54428,55,067,55067,1109,1355,171107112,161140717,1127,1405,179911756,169013163,19977,12360,2299604140,2254946857,98.4,96.44,95.11,95.34,5.55,10.96,7.44,7.15
-54428,55,085,55085,18,50,8804644,7872446,1127,1405,179911756,169013163,35998,30125,3201201209,2882578692,1.6,3.56,4.89,4.66,0.05,0.17,0.28,0.27
-54430,55,067,55067,135,82,12918022,12610069,135,82,12918022,12610069,19977,12360,2299604140,2254946857,100,100,100,100,0.68,0.66,0.56,0.56
-54433,55,017,55017,200,85,48091891,47817384,1845,1016,427039966,415669864,62415,27185,2696907719,2611672690,10.84,8.37,11.26,11.5,0.32,0.31,1.78,1.83
-54433,55,119,55119,1645,931,378948075,367852480,1845,1016,427039966,415669864,20689,10582,2549639705,2524917815,89.16,91.63,88.74,88.5,7.95,8.8,14.86,14.57
-54435,55,067,55067,414,403,249758759,248617017,2010,1740,577396961,568318813,19977,12360,2299604140,2254946857,20.6,23.16,43.26,43.75,2.07,3.26,10.86,11.03
-54435,55,069,55069,1596,1337,327638202,319701796,2010,1740,577396961,568318813,28743,16784,2349118210,2276530049,79.4,76.84,56.74,56.25,5.55,7.97,13.95,14.04
-54436,55,019,55019,2203,933,277472272,276468584,2203,933,277472272,276468584,34690,15076,3156643111,3133407354,100,100,100,100,6.35,6.19,8.79,8.82
-54437,55,019,55019,3077,1314,310943461,308222270,3077,1314,310943461,308222270,34690,15076,3156643111,3133407354,100,100,100,100,8.87,8.72,9.85,9.84
-54440,55,073,55073,2964,1344,221837057,218879981,2964,1344,221837057,218879981,134063,57734,4082627087,4001488029,100,100,100,100,2.21,2.33,5.43,5.47
-54441,55,141,55141,828,313,2458256,2458256,828,313,2458256,2458256,74749,34088,2096442702,2054162108,100,100,100,100,1.11,0.92,0.12,0.12
-54442,55,069,55069,1177,683,194987585,192383430,1177,683,194987585,192383430,28743,16784,2349118210,2276530049,100,100,100,100,4.09,4.07,8.3,8.45
-54443,55,073,55073,25,7,142420,142420,2137,981,244197299,234832012,134063,57734,4082627087,4001488029,1.17,0.71,0.06,0.06,0.02,0.01,0,0
-54443,55,097,55097,2107,970,243024846,233659559,2137,981,244197299,234832012,70019,30054,2130673992,2073747839,98.6,98.88,99.52,99.5,3.01,3.23,11.41,11.27
-54443,55,141,55141,5,4,1030033,1030033,2137,981,244197299,234832012,74749,34088,2096442702,2054162108,0.23,0.41,0.42,0.44,0.01,0.01,0.05,0.05
-54446,55,019,55019,3123,1193,198444819,198019282,3123,1193,198444819,198019282,34690,15076,3156643111,3133407354,100,100,100,100,9,7.91,6.29,6.32
-54447,55,119,55119,498,268,80642583,80497662,498,268,80642583,80497662,20689,10582,2549639705,2524917815,100,100,100,100,2.41,2.53,3.16,3.19
-54448,55,073,55073,4249,1774,230723780,230551620,4249,1774,230723780,230551620,134063,57734,4082627087,4001488029,100,100,100,100,3.17,3.07,5.65,5.76
-54449,55,019,55019,8,5,934494,907577,26418,12345,442342446,441536440,34690,15076,3156643111,3133407354,0.03,0.04,0.21,0.21,0.02,0.03,0.03,0.03
-54449,55,073,55073,3580,1442,120484814,119988943,26418,12345,442342446,441536440,134063,57734,4082627087,4001488029,13.55,11.68,27.24,27.18,2.67,2.5,2.95,3
-54449,55,141,55141,22830,10898,320923138,320639920,26418,12345,442342446,441536440,74749,34088,2096442702,2054162108,86.42,88.28,72.55,72.62,30.54,31.97,15.31,15.61
-54450,55,115,55115,436,189,4320483,4320483,436,189,4320483,4320483,41949,20720,2355521554,2313007314,100,100,100,100,1.04,0.91,0.18,0.19
-54451,55,073,55073,44,19,12125990,12125990,11755,5735,904299826,899555736,134063,57734,4082627087,4001488029,0.37,0.33,1.34,1.35,0.03,0.03,0.3,0.3
-54451,55,119,55119,11711,5716,892173836,887429746,11755,5735,904299826,899555736,20689,10582,2549639705,2524917815,99.63,99.67,98.66,98.65,56.6,54.02,34.99,35.15
-54452,55,069,55069,17851,8496,1039857272,1025440342,19360,9099,1161148202,1145363943,28743,16784,2349118210,2276530049,92.21,93.37,89.55,89.53,62.11,50.62,44.27,45.04
-54452,55,073,55073,1509,603,121290930,119923601,19360,9099,1161148202,1145363943,134063,57734,4082627087,4001488029,7.79,6.63,10.45,10.47,1.13,1.04,2.97,3
-54454,55,073,55073,0,0,5180813,4383922,1279,526,119162766,118071004,134063,57734,4082627087,4001488029,0,0,4.35,3.71,0,0,0.13,0.11
-54454,55,097,55097,18,17,1766471,1766471,1279,526,119162766,118071004,70019,30054,2130673992,2073747839,1.41,3.23,1.48,1.5,0.03,0.06,0.08,0.09
-54454,55,141,55141,1261,509,112215482,111920611,1279,526,119162766,118071004,74749,34088,2096442702,2054162108,98.59,96.77,94.17,94.79,1.69,1.49,5.35,5.45
-54455,55,073,55073,16661,7034,609247702,559459021,17029,7187,646210143,595972938,134063,57734,4082627087,4001488029,97.84,97.87,94.28,93.87,12.43,12.18,14.92,13.98
-54455,55,097,55097,368,153,36962441,36513917,17029,7187,646210143,595972938,70019,30054,2130673992,2073747839,2.16,2.13,5.72,6.13,0.53,0.51,1.73,1.76
-54456,55,019,55019,6085,3199,580960448,574810855,6085,3199,580960448,574810855,34690,15076,3156643111,3133407354,100,100,100,100,17.54,21.22,18.4,18.34
-54457,55,001,55001,2780,3410,176251193,155037396,8539,6012,392393648,350936582,20875,17436,1783340082,1672214172,32.56,56.72,44.92,44.18,13.32,19.56,9.88,9.27
-54457,55,057,55057,310,267,91978719,76594908,8539,6012,392393648,350936582,26664,14669,2082423201,1986327042,3.63,4.44,23.44,21.83,1.16,1.82,4.42,3.86
-54457,55,141,55141,5449,2335,124163736,119304278,8539,6012,392393648,350936582,74749,34088,2096442702,2054162108,63.81,38.84,31.64,34,7.29,6.85,5.92,5.81
-54458,55,097,55097,124,53,1771520,1739619,124,53,1771520,1739619,70019,30054,2130673992,2073747839,100,100,100,100,0.18,0.18,0.08,0.08
-54459,55,099,55099,1148,1028,361830112,358820084,1148,1028,361830112,358820084,14159,11120,3311091268,3248817969,100,100,100,100,8.11,9.24,10.93,11.04
-54460,55,019,55019,2523,958,185786061,183204509,2746,1061,223250580,220650465,34690,15076,3156643111,3133407354,91.88,90.29,83.22,83.03,7.27,6.35,5.89,5.85
-54460,55,119,55119,223,103,37464519,37445956,2746,1061,223250580,220650465,20689,10582,2549639705,2524917815,8.12,9.71,16.78,16.97,1.08,0.97,1.47,1.48
-54462,55,067,55067,348,383,110426331,105262508,348,383,110426331,105262508,19977,12360,2299604140,2254946857,100,100,100,100,1.74,3.1,4.8,4.67
-54463,55,085,55085,684,1049,225625493,207760039,684,1049,225625493,207760039,35998,30125,3201201209,2882578692,100,100,100,100,1.9,3.48,7.05,7.21
-54465,55,041,55041,242,759,44446152,36677754,536,1045,82947888,72558933,9304,8970,2709972729,2626421270,45.15,72.63,53.58,50.55,2.6,8.46,1.64,1.4
-54465,55,067,55067,294,286,38501736,35881179,536,1045,82947888,72558933,19977,12360,2299604140,2254946857,54.85,27.37,46.42,49.45,1.47,2.31,1.67,1.59
-54466,55,019,55019,107,56,27824590,27208094,2815,1560,801238804,787054304,34690,15076,3156643111,3133407354,3.8,3.59,3.47,3.46,0.31,0.37,0.88,0.87
-54466,55,053,55053,191,263,307831315,303172383,2815,1560,801238804,787054304,20449,9727,2590702830,2558182292,6.79,16.86,38.42,38.52,0.93,2.7,11.88,11.85
-54466,55,141,55141,2517,1241,465582899,456673827,2815,1560,801238804,787054304,74749,34088,2096442702,2054162108,89.41,79.55,58.11,58.02,3.37,3.64,22.21,22.23
-54467,55,097,55097,13635,5793,181472012,178759437,13635,5793,181472012,178759437,70019,30054,2130673992,2073747839,100,100,100,100,19.47,19.28,8.52,8.62
-54469,55,141,55141,1792,728,7516380,6581149,1792,728,7516380,6581149,74749,34088,2096442702,2054162108,100,100,100,100,2.4,2.14,0.36,0.32
-54470,55,099,55099,16,21,1973502,1779882,2068,1173,276401892,273513951,14159,11120,3311091268,3248817969,0.77,1.79,0.71,0.65,0.11,0.19,0.06,0.05
-54470,55,119,55119,2052,1152,274428390,271734069,2068,1173,276401892,273513951,20689,10582,2549639705,2524917815,99.23,98.21,99.29,99.35,9.92,10.89,10.76,10.76
-54471,55,073,55073,1854,707,120385987,120171108,1854,707,120385987,120171108,134063,57734,4082627087,4001488029,100,100,100,100,1.38,1.22,2.95,3
-54473,55,073,55073,609,283,53959616,52853882,2700,1356,226028282,222282939,134063,57734,4082627087,4001488029,22.56,20.87,23.87,23.78,0.45,0.49,1.32,1.32
-54473,55,097,55097,2091,1073,172068666,169429057,2700,1356,226028282,222282939,70019,30054,2130673992,2073747839,77.44,79.13,76.13,76.22,2.99,3.57,8.08,8.17
-54474,55,073,55073,4019,1816,11858735,11271418,4019,1816,11858735,11271418,134063,57734,4082627087,4001488029,100,100,100,100,3,3.15,0.29,0.28
-54475,55,097,55097,133,49,16142486,16025537,1482,632,97094721,95075843,70019,30054,2130673992,2073747839,8.97,7.75,16.63,16.86,0.19,0.16,0.76,0.77
-54475,55,141,55141,1349,583,80952235,79050306,1482,632,97094721,95075843,74749,34088,2096442702,2054162108,91.03,92.25,83.37,83.14,1.8,1.71,3.86,3.85
-54476,55,073,55073,18580,8079,111836114,108967074,18580,8079,111836114,108967074,134063,57734,4082627087,4001488029,100,100,100,100,13.86,13.99,2.74,2.72
-54479,55,019,55019,1105,388,112904690,112701560,4119,1653,207345319,206608235,34690,15076,3156643111,3133407354,26.83,23.47,54.45,54.55,3.19,2.57,3.58,3.6
-54479,55,073,55073,3014,1265,94440629,93906675,4119,1653,207345319,206608235,134063,57734,4082627087,4001488029,73.17,76.53,45.55,45.45,2.25,2.19,2.31,2.35
-54480,55,073,55073,38,13,5297892,5297892,1332,559,90410867,90395131,134063,57734,4082627087,4001488029,2.85,2.33,5.86,5.86,0.03,0.02,0.13,0.13
-54480,55,119,55119,1294,546,85112975,85097239,1332,559,90410867,90395131,20689,10582,2549639705,2524917815,97.15,97.67,94.14,94.14,6.25,5.16,3.34,3.37
-54481,55,097,55097,29340,12272,187958748,165177526,29340,12272,187958748,165177526,70019,30054,2130673992,2073747839,100,100,100,100,41.9,40.83,8.82,7.97
-54482,55,097,55097,8955,3802,243806002,236687634,8955,3802,243806002,236687634,70019,30054,2130673992,2073747839,100,100,100,100,12.79,12.65,11.44,11.41
-54484,55,073,55073,4984,2024,272334928,269684561,4984,2024,272334928,269684561,134063,57734,4082627087,4001488029,100,100,100,100,3.72,3.51,6.67,6.74
-54485,55,067,55067,322,336,54648135,53101564,322,336,54648135,53101564,19977,12360,2299604140,2254946857,100,100,100,100,1.61,2.72,2.38,2.35
-54486,55,115,55115,2099,1103,257810380,257555847,2290,1249,319138353,318422722,41949,20720,2355521554,2313007314,91.66,88.31,80.78,80.88,5,5.32,10.94,11.14
-54486,55,135,55135,191,146,61327973,60866875,2290,1249,319138353,318422722,52410,25396,1981868416,1936566893,8.34,11.69,19.22,19.12,0.36,0.57,3.09,3.14
-54487,55,069,55069,7820,5945,614737459,568652535,9594,7564,839528831,778485572,28743,16784,2349118210,2276530049,81.51,78.6,73.22,73.05,27.21,35.42,26.17,24.98
-54487,55,085,55085,1774,1619,224791372,209833037,9594,7564,839528831,778485572,35998,30125,3201201209,2882578692,18.49,21.4,26.78,26.95,4.93,5.37,7.02,7.28
-54488,55,019,55019,701,242,53288629,53170429,1262,450,103739659,103568374,34690,15076,3156643111,3133407354,55.55,53.78,51.37,51.34,2.02,1.61,1.69,1.7
-54488,55,073,55073,561,208,50451030,50397945,1262,450,103739659,103568374,134063,57734,4082627087,4001488029,44.45,46.22,48.63,48.66,0.42,0.36,1.24,1.26
-54489,55,141,55141,1550,659,114882436,114082891,1550,659,114882436,114082891,74749,34088,2096442702,2054162108,100,100,100,100,2.07,1.93,5.48,5.55
-54490,55,099,55099,19,9,1674120,1674120,893,706,296353863,291537233,14159,11120,3311091268,3248817969,2.13,1.27,0.56,0.57,0.13,0.08,0.05,0.05
-54490,55,119,55119,874,697,294679743,289863113,893,706,296353863,291537233,20689,10582,2549639705,2524917815,97.87,98.73,99.44,99.43,4.22,6.59,11.56,11.48
-54491,55,067,55067,1580,1519,435089168,427327546,1652,1745,471799103,462639103,19977,12360,2299604140,2254946857,95.64,87.05,92.22,92.37,7.91,12.29,18.92,18.95
-54491,55,083,55083,72,226,36709935,35311557,1652,1745,471799103,462639103,37660,23537,2975365242,2584775696,4.36,12.95,7.78,7.63,0.19,0.96,1.23,1.37
-54493,55,019,55019,668,581,284800057,281463668,668,581,284800057,281463668,34690,15076,3156643111,3133407354,100,100,100,100,1.93,3.85,9.02,8.98
-54494,55,001,55001,35,18,15219840,15219840,27126,12224,355968027,345204778,20875,17436,1783340082,1672214172,0.13,0.15,4.28,4.41,0.17,0.1,0.85,0.91
-54494,55,097,55097,1927,823,145790984,142596946,27126,12224,355968027,345204778,70019,30054,2130673992,2073747839,7.1,6.73,40.96,41.31,2.75,2.74,6.84,6.88
-54494,55,141,55141,25164,11383,194957203,187387992,27126,12224,355968027,345204778,74749,34088,2096442702,2054162108,92.77,93.12,54.77,54.28,33.66,33.39,9.3,9.12
-54495,55,141,55141,7637,3658,294135239,278402998,7637,3658,294135239,278402998,74749,34088,2096442702,2054162108,100,100,100,100,10.22,10.73,14.03,13.55
-54498,55,019,55019,1845,716,154735498,153425316,2421,1014,316303702,314456250,34690,15076,3156643111,3133407354,76.21,70.61,48.92,48.79,5.32,4.75,4.9,4.9
-54498,55,119,55119,576,298,161568204,161030934,2421,1014,316303702,314456250,20689,10582,2549639705,2524917815,23.79,29.39,51.08,51.21,2.78,2.82,6.34,6.38
-54499,55,073,55073,603,267,87248096,86154615,3223,1439,293735169,292332752,134063,57734,4082627087,4001488029,18.71,18.55,29.7,29.47,0.45,0.46,2.14,2.15
-54499,55,097,55097,18,6,2533355,2524070,3223,1439,293735169,292332752,70019,30054,2130673992,2073747839,0.56,0.42,0.86,0.86,0.03,0.02,0.12,0.12
-54499,55,115,55115,2602,1166,203953718,203654067,3223,1439,293735169,292332752,41949,20720,2355521554,2313007314,80.73,81.03,69.43,69.67,6.2,5.63,8.66,8.8
-54501,55,069,55069,128,103,14497213,13590608,20019,11775,1012849510,946736206,28743,16784,2349118210,2276530049,0.64,0.87,1.43,1.44,0.45,0.61,0.62,0.6
-54501,55,085,55085,19891,11672,998352297,933145598,20019,11775,1012849510,946736206,35998,30125,3201201209,2882578692,99.36,99.13,98.57,98.56,55.26,38.75,31.19,32.37
-54511,55,041,55041,1216,1510,731247255,720705889,1216,1510,731247255,720705889,9304,8970,2709972729,2626421270,100,100,100,100,13.07,16.83,26.98,27.44
-54512,55,125,55125,833,1256,246277782,195878205,833,1256,246277782,195878205,21430,25116,2636205561,2218594892,100,100,100,100,3.89,5,9.34,8.83
-54513,55,099,55099,478,423,244360267,244116476,478,423,244360267,244116476,14159,11120,3311091268,3248817969,100,100,100,100,3.38,3.8,7.38,7.51
-54514,55,003,55003,1259,988,463230723,459189024,1717,1531,549053733,538681186,16157,9656,5937236172,2706628242,73.33,64.53,84.37,85.24,7.79,10.23,7.8,16.97
-54514,55,051,55051,65,183,39969164,37014853,1717,1531,549053733,538681186,5916,5999,2380624326,1963660997,3.79,11.95,7.28,6.87,1.1,3.05,1.68,1.88
-54514,55,099,55099,393,360,45853846,42477309,1717,1531,549053733,538681186,14159,11120,3311091268,3248817969,22.89,23.51,8.35,7.89,2.78,3.24,1.38,1.31
-54515,55,099,55099,472,409,215239365,214537223,472,409,215239365,214537223,14159,11120,3311091268,3248817969,100,100,100,100,3.33,3.68,6.5,6.6
-54517,55,003,55003,88,217,105118238,99131495,112,345,212993297,201441702,16157,9656,5937236172,2706628242,78.57,62.9,49.35,49.21,0.54,2.25,1.77,3.66
-54517,55,007,55007,7,56,29892361,27201391,112,345,212993297,201441702,15014,12999,5287910197,3827647135,6.25,16.23,14.03,13.5,0.05,0.43,0.57,0.71
-54517,55,113,55113,17,72,77982698,75108816,112,345,212993297,201441702,16557,15975,3497170414,3256403571,15.18,20.87,36.61,37.29,0.1,0.45,2.23,2.31
-54519,55,125,55125,1231,1676,229261324,207485724,1231,1676,229261324,207485724,21430,25116,2636205561,2218594892,100,100,100,100,5.74,6.67,8.7,9.35
-54520,55,041,55041,4141,3046,398725302,370280916,4141,3046,398725302,370280916,9304,8970,2709972729,2626421270,100,100,100,100,44.51,33.96,14.71,14.1
-54521,55,041,55041,36,80,29754016,28356910,7509,7855,669994982,587654452,9304,8970,2709972729,2626421270,0.48,1.02,4.44,4.83,0.39,0.89,1.1,1.08
-54521,55,085,55085,1140,1459,189745845,164391799,7509,7855,669994982,587654452,35998,30125,3201201209,2882578692,15.18,18.57,28.32,27.97,3.17,4.84,5.93,5.7
-54521,55,125,55125,6333,6316,450495121,394905743,7509,7855,669994982,587654452,21430,25116,2636205561,2218594892,84.34,80.41,67.24,67.2,29.55,25.15,17.09,17.8
-54524,55,099,55099,670,507,241032998,236715856,670,507,241032998,236715856,14159,11120,3311091268,3248817969,100,100,100,100,4.73,4.56,7.28,7.29
-54525,55,051,55051,279,167,1902557,1837024,279,167,1902557,1837024,5916,5999,2380624326,1963660997,100,100,100,100,4.72,2.78,0.08,0.09
-54526,55,107,55107,919,509,288893258,285948323,919,509,288893258,285948323,14755,8883,2410974892,2366174321,100,100,100,100,6.23,5.73,11.98,12.08
-54527,55,003,55003,1081,1006,603599555,600133443,1081,1006,603599555,600133443,16157,9656,5937236172,2706628242,100,100,100,100,6.69,10.42,10.17,22.17
-54529,55,085,55085,1133,1401,184760447,171418344,1133,1401,184760447,171418344,35998,30125,3201201209,2882578692,100,100,100,100,3.15,4.65,5.77,5.95
-54530,55,099,55099,88,54,50450874,50450874,868,623,283506852,281850918,14159,11120,3311091268,3248817969,10.14,8.67,17.8,17.9,0.62,0.49,1.52,1.55
-54530,55,107,55107,682,569,227971469,226443950,868,623,283506852,281850918,14755,8883,2410974892,2366174321,78.57,91.33,80.41,80.34,4.62,6.41,9.46,9.57
-54530,55,113,55113,98,0,5084509,4956094,868,623,283506852,281850918,16557,15975,3497170414,3256403571,11.29,0,1.79,1.76,0.59,0,0.15,0.15
-54531,55,085,55085,1454,1637,232910566,201129087,1454,1637,232910566,201129087,35998,30125,3201201209,2882578692,100,100,100,100,4.04,5.43,7.28,6.98
-54534,55,051,55051,2459,1834,345890458,338268083,2459,1834,345890458,338268083,5916,5999,2380624326,1963660997,100,100,100,100,41.57,30.57,14.53,17.23
-54536,55,051,55051,184,174,130590832,129505294,184,174,130590832,129505294,5916,5999,2380624326,1963660997,100,100,100,100,3.11,2.9,5.49,6.6
-54537,55,099,55099,561,409,251346161,251183022,561,409,251346161,251183022,14159,11120,3311091268,3248817969,100,100,100,100,3.96,3.68,7.59,7.73
-54538,55,051,55051,5,22,35159255,34057200,3137,2932,353939298,289671793,5916,5999,2380624326,1963660997,0.16,0.75,9.93,11.76,0.08,0.37,1.48,1.73
-54538,55,085,55085,76,243,39817508,32339368,3137,2932,353939298,289671793,35998,30125,3201201209,2882578692,2.42,8.29,11.25,11.16,0.21,0.81,1.24,1.12
-54538,55,099,55099,15,64,3829187,2993056,3137,2932,353939298,289671793,14159,11120,3311091268,3248817969,0.48,2.18,1.08,1.03,0.11,0.58,0.12,0.09
-54538,55,125,55125,3041,2603,275133348,220282169,3137,2932,353939298,289671793,21430,25116,2636205561,2218594892,96.94,88.78,77.73,76.05,14.19,10.36,10.44,9.93
-54539,55,085,55085,1383,1852,165866023,126546828,1383,1852,165866023,126546828,35998,30125,3201201209,2882578692,100,100,100,100,3.84,6.15,5.18,4.39
-54540,26,053,26053,16,39,1447866,725554,947,1696,260126974,214693200,16427,10795,3823712186,2853775286,1.69,2.3,0.56,0.34,0.1,0.36,0.04,0.03
-54540,55,125,55125,931,1657,258679108,213967646,947,1696,260126974,214693200,21430,25116,2636205561,2218594892,98.31,97.7,99.44,99.66,4.34,6.6,9.81,9.64
-54541,55,041,55041,1552,926,355019510,347233149,1552,926,355019510,347233149,9304,8970,2709972729,2626421270,100,100,100,100,16.68,10.32,13.1,13.22
-54542,55,037,55037,301,722,282927488,275756716,470,1251,699071551,687927877,4423,4780,1288580133,1264419915,64.04,57.71,40.47,40.09,6.81,15.1,21.96,21.81
-54542,55,041,55041,169,529,416144063,412171161,470,1251,699071551,687927877,9304,8970,2709972729,2626421270,35.96,42.29,59.53,59.91,1.82,5.9,15.36,15.69
-54545,55,051,55051,20,10,150520,146973,736,1476,137297090,112783967,5916,5999,2380624326,1963660997,2.72,0.68,0.11,0.13,0.34,0.17,0.01,0.01
-54545,55,125,55125,716,1466,137146570,112636994,736,1476,137297090,112783967,21430,25116,2636205561,2218594892,97.28,99.32,99.89,99.87,3.34,5.84,5.2,5.08
-54546,55,003,55003,1266,927,564405243,558090328,1266,927,564405243,558090328,16157,9656,5937236172,2706628242,100,100,100,100,7.84,9.6,9.51,20.62
-54547,55,051,55051,1392,2147,613402054,563364162,1392,2147,613402054,563364162,5916,5999,2380624326,1963660997,100,100,100,100,23.53,35.79,25.77,28.69
-54548,55,085,55085,4246,4312,229808260,195333524,4626,5101,282789993,229232915,35998,30125,3201201209,2882578692,91.79,84.53,81.26,85.21,11.8,14.31,7.18,6.78
-54548,55,125,55125,380,789,52981733,33899391,4626,5101,282789993,229232915,21430,25116,2636205561,2218594892,8.21,15.47,18.74,14.79,1.77,3.14,2.01,1.53
-54550,55,051,55051,685,444,72318494,62214881,685,444,72318494,62214881,5916,5999,2380624326,1963660997,100,100,100,100,11.58,7.4,3.04,3.17
-54552,55,051,55051,280,495,279859525,238998861,4416,3604,968078684,901038530,5916,5999,2380624326,1963660997,6.34,13.73,28.91,26.52,4.73,8.25,11.76,12.17
-54552,55,099,55099,4129,3070,659121492,634974761,4416,3604,968078684,901038530,14159,11120,3311091268,3248817969,93.5,85.18,68.09,70.47,29.16,27.61,19.91,19.54
-54552,55,113,55113,7,39,29097667,27064908,4416,3604,968078684,901038530,16557,15975,3497170414,3256403571,0.16,1.08,3.01,3,0.04,0.24,0.83,0.83
-54554,26,071,26071,10,28,5281186,2878157,1120,1460,255163199,224292582,11817,9197,3137018851,3020312287,0.89,1.92,2.07,1.28,0.08,0.3,0.17,0.1
-54554,55,125,55125,1110,1432,249882013,221414425,1120,1460,255163199,224292582,21430,25116,2636205561,2218594892,99.11,98.08,97.93,98.72,5.18,5.7,9.48,9.98
-54555,55,099,55099,4872,3946,843787690,821739339,4872,3946,843787690,821739339,14159,11120,3311091268,3248817969,100,100,100,100,34.41,35.49,25.48,25.29
-54556,55,099,55099,1298,814,232360024,230437259,1298,814,232360024,230437259,14159,11120,3311091268,3248817969,100,100,100,100,9.17,7.32,7.02,7.09
-54557,55,125,55125,925,2209,296068434,239519637,925,2209,296068434,239519637,21430,25116,2636205561,2218594892,100,100,100,100,4.32,8.8,11.23,10.8
-54558,55,085,55085,233,235,31558799,27157265,2177,2470,131263861,110495107,35998,30125,3201201209,2882578692,10.7,9.51,24.04,24.58,0.65,0.78,0.99,0.94
-54558,55,125,55125,1944,2235,99705062,83337842,2177,2470,131263861,110495107,21430,25116,2636205561,2218594892,89.3,90.49,75.96,75.42,9.07,8.9,3.78,3.76
-54559,55,003,55003,308,100,62780918,62780918,795,479,359147947,355016441,16157,9656,5937236172,2706628242,38.74,20.88,17.48,17.68,1.91,1.04,1.06,2.32
-54559,55,051,55051,487,379,296367029,292235523,795,479,359147947,355016441,5916,5999,2380624326,1963660997,61.26,79.12,82.52,82.32,8.23,6.32,12.45,14.88
-54560,55,125,55125,589,631,104658659,91055645,589,631,104658659,91055645,21430,25116,2636205561,2218594892,100,100,100,100,2.75,2.51,3.97,4.1
-54561,55,125,55125,35,97,48587028,43078101,35,97,48587028,43078101,21430,25116,2636205561,2218594892,100,100,100,100,0.16,0.39,1.84,1.94
-54562,55,041,55041,34,190,146957814,133473763,1948,3039,435260755,374610295,9304,8970,2709972729,2626421270,1.75,6.25,33.76,35.63,0.37,2.12,5.42,5.08
-54562,55,085,55085,1914,2849,288302941,241136532,1948,3039,435260755,374610295,35998,30125,3201201209,2882578692,98.25,93.75,66.24,64.37,5.32,9.46,9.01,8.37
-54563,55,107,55107,720,405,109287651,107532921,720,405,109287651,107532921,14755,8883,2410974892,2366174321,100,100,100,100,4.88,4.56,4.53,4.54
-54564,55,069,55069,171,220,157400479,156761338,387,732,465804666,457199007,28743,16784,2349118210,2276530049,44.19,30.05,33.79,34.29,0.59,1.31,6.7,6.89
-54564,55,085,55085,216,512,308404187,300437669,387,732,465804666,457199007,35998,30125,3201201209,2882578692,55.81,69.95,66.21,65.71,0.6,1.7,9.63,10.42
-54565,55,051,55051,60,144,267107485,266018143,60,144,267107485,266018143,5916,5999,2380624326,1963660997,100,100,100,100,1.01,2.4,11.22,13.55
-54566,55,041,55041,1496,1324,345866634,338074769,1496,1324,345866634,338074769,9304,8970,2709972729,2626421270,100,100,100,100,16.08,14.76,12.76,12.87
-54568,55,085,55085,1836,1234,44472481,36568065,5198,3983,231801860,197701435,35998,30125,3201201209,2882578692,35.32,30.98,19.19,18.5,5.1,4.1,1.39,1.27
-54568,55,125,55125,3362,2749,187329379,161133370,5198,3983,231801860,197701435,21430,25116,2636205561,2218594892,64.68,69.02,80.81,81.5,15.69,10.95,7.11,7.26
-54601,55,063,55063,49282,21040,193767080,190482955,49282,21040,193767080,190482955,114638,48402,1243002528,1169862598,100,100,100,100,42.99,43.47,15.59,16.28
-54603,55,063,55063,14305,6795,24860076,23704451,14305,6795,24860076,23704451,114638,48402,1243002528,1169862598,100,100,100,100,12.48,14.04,2,2.03
-54610,55,011,55011,1624,969,353280053,331659905,1624,969,353280053,331659905,13587,6664,1837840659,1739526593,100,100,100,100,11.95,14.54,19.22,19.07
-54611,55,053,55053,1307,577,140201677,140201677,1307,577,140201677,140201677,20449,9727,2590702830,2558182292,100,100,100,100,6.39,5.93,5.41,5.48
-54612,55,011,55011,487,211,112328499,112069009,5152,2123,402029775,401244576,13587,6664,1837840659,1739526593,9.45,9.94,27.94,27.93,3.58,3.17,6.11,6.44
-54612,55,121,55121,4665,1912,289701276,289175567,5152,2123,402029775,401244576,28816,12619,1921741329,1898370021,90.55,90.06,72.06,72.07,16.19,15.15,15.07,15.23
-54613,55,001,55001,1826,2374,244859634,189615422,1826,2374,244859634,189615422,20875,17436,1783340082,1672214172,100,100,100,100,8.75,13.62,13.73,11.34
-54614,55,063,55063,2947,1210,210777837,210774148,2947,1210,210777837,210774148,114638,48402,1243002528,1169862598,100,100,100,100,2.57,2.5,16.96,18.02
-54615,55,053,55053,10718,4588,769972407,762109283,10742,4601,786427910,777306230,20449,9727,2590702830,2558182292,99.78,99.72,97.91,98.04,52.41,47.17,29.72,29.79
-54615,55,081,55081,24,13,16455503,15196947,10742,4601,786427910,777306230,44673,19204,2352273408,2332998070,0.22,0.28,2.09,1.96,0.05,0.07,0.7,0.65
-54616,55,053,55053,25,20,25146813,25146813,2601,1170,230976059,230737166,20449,9727,2590702830,2558182292,0.96,1.71,10.89,10.9,0.12,0.21,0.97,0.98
-54616,55,121,55121,2576,1150,205829246,205590353,2601,1170,230976059,230737166,28816,12619,1921741329,1898370021,99.04,98.29,89.11,89.1,8.94,9.11,10.71,10.83
-54618,55,057,55057,1481,720,187166177,183209158,2262,1035,262060649,258091519,26664,14669,2082423201,1986327042,65.47,69.57,71.42,70.99,5.55,4.91,8.99,9.22
-54618,55,081,55081,781,315,74894472,74882361,2262,1035,262060649,258091519,44673,19204,2352273408,2332998070,34.53,30.43,28.58,29.01,1.75,1.64,3.18,3.21
-54619,55,063,55063,20,8,5163687,5163687,3923,1419,266468704,266434054,114638,48402,1243002528,1169862598,0.51,0.56,1.94,1.94,0.02,0.02,0.42,0.44
-54619,55,081,55081,2968,1175,200886332,200877417,3923,1419,266468704,266434054,44673,19204,2352273408,2332998070,75.66,82.8,75.39,75.39,6.64,6.12,8.54,8.61
-54619,55,123,55123,935,236,60418685,60392950,3923,1419,266468704,266434054,29773,13720,2114481536,2050180266,23.83,16.63,22.67,22.67,3.14,1.72,2.86,2.95
-54621,55,123,55123,1147,461,97922366,97726773,1147,461,97922366,97726773,29773,13720,2114481536,2050180266,100,100,100,100,3.85,3.36,4.63,4.77
-54622,55,011,55011,2121,1140,173478148,149107866,2121,1140,173478148,149107866,13587,6664,1837840659,1739526593,100,100,100,100,15.61,17.11,9.44,8.57
-54623,55,063,55063,588,230,79058847,79058847,1930,804,135718580,135701787,114638,48402,1243002528,1169862598,30.47,28.61,58.25,58.26,0.51,0.48,6.36,6.76
-54623,55,123,55123,1342,574,56659733,56642940,1930,804,135718580,135701787,29773,13720,2114481536,2050180266,69.53,71.39,41.75,41.74,4.51,4.18,2.68,2.76
-54624,55,023,55023,196,163,20145850,19901182,1383,984,175573212,169607448,16644,8802,1551947271,1478001974,14.17,16.57,11.47,11.73,1.18,1.85,1.3,1.35
-54624,55,123,55123,1187,821,155427362,149706266,1383,984,175573212,169607448,29773,13720,2114481536,2050180266,85.83,83.43,88.53,88.27,3.99,5.98,7.35,7.3
-54625,55,121,55121,240,126,16336104,16336104,240,126,16336104,16336104,28816,12619,1921741329,1898370021,100,100,100,100,0.83,1,0.85,0.86
-54626,55,023,55023,1215,776,176813790,173431193,1215,776,176813790,173431193,16644,8802,1551947271,1478001974,100,100,100,100,7.3,8.82,11.39,11.73
-54627,55,053,55053,75,43,20335819,20335819,1819,841,212893205,211681055,20449,9727,2590702830,2558182292,4.12,5.11,9.55,9.61,0.37,0.44,0.78,0.79
-54627,55,121,55121,1744,798,192557386,191345236,1819,841,212893205,211681055,28816,12619,1921741329,1898370021,95.88,94.89,90.45,90.39,6.05,6.32,10.02,10.08
-54628,55,023,55023,1026,782,186628731,186528299,1092,814,193742618,193639343,16644,8802,1551947271,1478001974,93.96,96.07,96.33,96.33,6.16,8.88,12.03,12.62
-54628,55,123,55123,66,32,7113887,7111044,1092,814,193742618,193639343,29773,13720,2114481536,2050180266,6.04,3.93,3.67,3.67,0.22,0.23,0.34,0.35
-54629,55,011,55011,2576,1254,309091620,274740922,2576,1254,309091620,274740922,13587,6664,1837840659,1739526593,100,100,100,100,18.96,18.82,16.82,15.79
-54630,55,121,55121,3770,1660,205608830,203854624,3770,1660,205608830,203854624,28816,12619,1921741329,1898370021,100,100,100,100,13.08,13.15,10.7,10.74
-54631,55,023,55023,1844,996,273151494,272939220,1844,996,273151494,272939220,16644,8802,1551947271,1478001974,100,100,100,100,11.08,11.32,17.6,18.47
-54632,55,123,55123,1247,593,125510326,121060478,1247,593,125510326,121060478,29773,13720,2114481536,2050180266,100,100,100,100,4.19,4.32,5.94,5.9
-54634,55,057,55057,3,3,2736499,2736499,4258,1894,386143626,385847778,26664,14669,2082423201,1986327042,0.07,0.16,0.71,0.71,0.01,0.02,0.13,0.14
-54634,55,103,55103,621,361,117119225,117108027,4258,1894,386143626,385847778,18021,8868,1526277126,1518123695,14.58,19.06,30.33,30.35,3.45,4.07,7.67,7.71
-54634,55,123,55123,3634,1530,266287902,266003252,4258,1894,386143626,385847778,29773,13720,2114481536,2050180266,85.35,80.78,68.96,68.94,12.21,11.15,12.59,12.97
-54635,55,053,55053,1799,889,222489218,222446583,1799,889,222489218,222446583,20449,9727,2590702830,2558182292,100,100,100,100,8.8,9.14,8.59,8.7
-54636,55,063,55063,13737,5197,217070250,214185728,13737,5197,217070250,214185728,114638,48402,1243002528,1169862598,100,100,100,100,11.98,10.74,17.46,18.31
-54637,55,057,55057,187,85,903227,903227,187,85,903227,903227,26664,14669,2082423201,1986327042,100,100,100,100,0.7,0.58,0.04,0.05
-54638,55,057,55057,28,17,3465150,3465150,1487,680,143705517,143686575,26664,14669,2082423201,1986327042,1.88,2.5,2.41,2.41,0.11,0.12,0.17,0.17
-54638,55,081,55081,1374,622,126500370,126481428,1487,680,143705517,143686575,44673,19204,2352273408,2332998070,92.4,91.47,88.03,88.03,3.08,3.24,5.38,5.42
-54638,55,123,55123,85,41,13739997,13739997,1487,680,143705517,143686575,29773,13720,2114481536,2050180266,5.72,6.03,9.56,9.56,0.29,0.3,0.65,0.67
-54639,55,103,55103,77,32,5662983,5662983,2397,1232,250346361,249700624,18021,8868,1526277126,1518123695,3.21,2.6,2.26,2.27,0.43,0.36,0.37,0.37
-54639,55,123,55123,2320,1200,244683378,244037641,2397,1232,250346361,249700624,29773,13720,2114481536,2050180266,96.79,97.4,97.74,97.73,7.79,8.75,11.57,11.9
-54641,55,053,55053,2,10,10685977,9650918,2,10,10685977,9650918,20449,9727,2590702830,2558182292,100,100,100,100,0.01,0.1,0.41,0.38
-54642,55,053,55053,1879,847,231468834,230033335,2125,951,246531980,245035310,20449,9727,2590702830,2558182292,88.42,89.06,93.89,93.88,9.19,8.71,8.93,8.99
-54642,55,063,55063,159,70,4694916,4694916,2125,951,246531980,245035310,114638,48402,1243002528,1169862598,7.48,7.36,1.9,1.92,0.14,0.14,0.38,0.4
-54642,55,121,55121,87,34,10368230,10307059,2125,951,246531980,245035310,28816,12619,1921741329,1898370021,4.09,3.58,4.21,4.21,0.3,0.27,0.54,0.54
-54643,55,053,55053,12,10,275894,237716,12,10,275894,237716,20449,9727,2590702830,2558182292,100,100,100,100,0.06,0.1,0.01,0.01
-54644,55,053,55053,24,10,10829030,9492993,1434,619,163703837,162367079,20449,9727,2590702830,2558182292,1.67,1.62,6.62,5.85,0.12,0.1,0.42,0.37
-54644,55,063,55063,1410,609,152874807,152874086,1434,619,163703837,162367079,114638,48402,1243002528,1169862598,98.33,98.38,93.38,94.15,1.23,1.26,12.3,13.07
-54645,55,023,55023,81,39,1257948,1257948,81,39,1257948,1257948,16644,8802,1551947271,1478001974,100,100,100,100,0.49,0.44,0.08,0.09
-54646,55,057,55057,3899,2751,476817461,434887975,3899,2751,476817461,434887975,26664,14669,2082423201,1986327042,100,100,100,100,14.62,18.75,22.9,21.89
-54648,55,081,55081,1737,683,187002150,186908401,1737,683,187002150,186908401,44673,19204,2352273408,2332998070,100,100,100,100,3.89,3.56,7.95,8.01
-54650,55,063,55063,23377,9817,80969729,80348155,23377,9817,80969729,80348155,114638,48402,1243002528,1169862598,100,100,100,100,20.39,20.28,6.51,6.87
-54651,55,081,55081,431,196,70263177,70258746,1382,653,149985193,149693621,44673,19204,2352273408,2332998070,31.19,30.02,46.85,46.94,0.96,1.02,2.99,3.01
-54651,55,123,55123,951,457,79722016,79434875,1382,653,149985193,149693621,29773,13720,2114481536,2050180266,68.81,69.98,53.15,53.06,3.19,3.33,3.77,3.87
-54652,55,123,55123,953,486,93566019,93355561,953,486,93566019,93355561,29773,13720,2114481536,2050180266,100,100,100,100,3.2,3.54,4.43,4.55
-54653,55,063,55063,762,302,23656110,23656110,894,357,44698302,44679401,114638,48402,1243002528,1169862598,85.23,84.59,52.92,52.95,0.66,0.62,1.9,2.02
-54653,55,081,55081,132,55,21042192,21023291,894,357,44698302,44679401,44673,19204,2352273408,2332998070,14.77,15.41,47.08,47.05,0.3,0.29,0.89,0.9
-54654,55,023,55023,153,64,1874643,1871879,153,64,1874643,1871879,16644,8802,1551947271,1478001974,100,100,100,100,0.92,0.73,0.12,0.13
-54655,55,023,55023,1562,824,193178792,193165937,1778,926,233438036,233425181,16644,8802,1551947271,1478001974,87.85,88.98,82.75,82.75,9.38,9.36,12.45,13.07
-54655,55,103,55103,143,78,36262863,36262863,1778,926,233438036,233425181,18021,8868,1526277126,1518123695,8.04,8.42,15.53,15.54,0.79,0.88,2.38,2.39
-54655,55,123,55123,73,24,3996381,3996381,1778,926,233438036,233425181,29773,13720,2114481536,2050180266,4.11,2.59,1.71,1.71,0.25,0.17,0.19,0.19
-54656,55,063,55063,8,4,178954,178954,17377,7331,648624736,647202364,114638,48402,1243002528,1169862598,0.05,0.05,0.03,0.03,0.01,0.01,0.01,0.02
-54656,55,081,55081,17369,7327,648445782,647023410,17377,7331,648624736,647202364,44673,19204,2352273408,2332998070,99.95,99.95,99.97,99.97,38.88,38.15,27.57,27.73
-54657,55,023,55023,411,198,70625586,70560768,411,198,70625586,70560768,16644,8802,1551947271,1478001974,100,100,100,100,2.47,2.25,4.55,4.77
-54658,55,063,55063,390,167,11990720,11984118,2501,1137,95623488,93933356,114638,48402,1243002528,1169862598,15.59,14.69,12.54,12.76,0.34,0.35,0.96,1.02
-54658,55,123,55123,2111,970,83632768,81949238,2501,1137,95623488,93933356,29773,13720,2114481536,2050180266,84.41,85.31,87.46,87.24,7.09,7.07,3.96,4
-54659,55,053,55053,1378,611,143529566,143481353,1409,626,146674430,146626217,20449,9727,2590702830,2558182292,97.8,97.6,97.86,97.86,6.74,6.28,5.54,5.61
-54659,55,121,55121,31,15,3144864,3144864,1409,626,146674430,146626217,28816,12619,1921741329,1898370021,2.2,2.4,2.14,2.14,0.11,0.12,0.16,0.17
-54660,55,081,55081,15688,6880,401699236,395236341,15688,6880,401699236,395236341,44673,19204,2352273408,2332998070,100,100,100,100,35.12,35.83,17.08,16.94
-54661,55,063,55063,1,1,367641,354799,3415,1594,152966723,134913590,114638,48402,1243002528,1169862598,0.03,0.06,0.24,0.26,0,0,0.03,0.03
-54661,55,121,55121,3414,1593,152599082,134558791,3415,1594,152966723,134913590,28816,12619,1921741329,1898370021,99.97,99.94,99.76,99.74,11.85,12.62,7.94,7.09
-54664,55,103,55103,1031,510,141978741,141958104,1516,844,203791492,203267661,18021,8868,1526277126,1518123695,68.01,60.43,69.67,69.84,5.72,5.75,9.3,9.35
-54664,55,123,55123,485,334,61812751,61309557,1516,844,203791492,203267661,29773,13720,2114481536,2050180266,31.99,39.57,30.33,30.16,1.63,2.43,2.92,2.99
-54665,55,123,55123,8427,3943,457031959,456568662,8427,3943,457031959,456568662,29773,13720,2114481536,2050180266,100,100,100,100,28.3,28.74,21.61,22.27
-54666,55,053,55053,430,260,319931771,306874736,2593,1633,618391642,591080844,20449,9727,2590702830,2558182292,16.58,15.92,51.74,51.92,2.1,2.67,12.35,12
-54666,55,057,55057,99,176,37098281,32265237,2593,1633,618391642,591080844,26664,14669,2082423201,1986327042,3.82,10.78,6,5.46,0.37,1.2,1.78,1.62
-54666,55,081,55081,2064,1197,261361590,251940871,2593,1633,618391642,591080844,44673,19204,2352273408,2332998070,79.6,73.3,42.26,42.62,4.62,6.23,11.11,10.8
-54667,55,063,55063,33,20,7760594,7760594,4599,1935,226376282,225859229,114638,48402,1243002528,1169862598,0.72,1.03,3.43,3.44,0.03,0.04,0.62,0.66
-54667,55,123,55123,4566,1915,218615688,218098635,4599,1935,226376282,225859229,29773,13720,2114481536,2050180266,99.28,98.97,96.57,96.56,15.34,13.96,10.34,10.64
-54669,55,063,55063,7619,2932,135217024,132780234,7619,2932,135217024,132780234,114638,48402,1243002528,1169862598,100,100,100,100,6.65,6.06,10.88,11.35
-54670,55,081,55081,1878,646,139834026,139834026,1878,646,139834026,139834026,44673,19204,2352273408,2332998070,100,100,100,100,4.2,3.36,5.94,5.99
-54701,55,033,55033,131,51,8475545,7864300,38803,16038,225913505,222505875,43857,17964,2237400827,2201762202,0.34,0.32,3.75,3.53,0.3,0.28,0.38,0.36
-54701,55,035,55035,38672,15987,217437960,214641575,38803,16038,225913505,222505875,98736,42151,1671180890,1652369085,99.66,99.68,96.25,96.47,39.17,37.93,13.01,12.99
-54703,55,017,55017,2932,1135,44902359,44103069,42272,18153,214865475,205703986,62415,27185,2696907719,2611672690,6.94,6.25,20.9,21.44,4.7,4.18,1.66,1.69
-54703,55,033,55033,215,90,2490550,2378943,42272,18153,214865475,205703986,43857,17964,2237400827,2201762202,0.51,0.5,1.16,1.16,0.49,0.5,0.11,0.11
-54703,55,035,55035,39125,16928,167472566,159221974,42272,18153,214865475,205703986,98736,42151,1671180890,1652369085,92.56,93.25,77.94,77.4,39.63,40.16,10.02,9.64
-54720,55,035,55035,7039,3414,13912301,12715921,7039,3414,13912301,12715921,98736,42151,1671180890,1652369085,100,100,100,100,7.13,8.1,0.83,0.77
-54721,55,033,55033,79,30,19612130,19612130,1373,615,167919774,164909355,43857,17964,2237400827,2201762202,5.75,4.88,11.68,11.89,0.18,0.17,0.88,0.89
-54721,55,091,55091,1294,585,148307644,145297225,1373,615,167919774,164909355,7469,3579,644116734,600833973,94.25,95.12,88.32,88.11,17.32,16.35,23.02,24.18
-54722,55,035,55035,4016,1778,378206125,373196328,4016,1778,378206125,373196328,98736,42151,1671180890,1652369085,100,100,100,100,4.07,4.22,22.63,22.59
-54723,55,093,55093,1191,524,95574884,79535741,1191,524,95574884,79535741,41019,16132,1532945084,1485999482,100,100,100,100,2.9,3.25,6.23,5.35
-54724,55,017,55017,7167,3167,415968768,410401179,7174,3170,418348037,412780448,62415,27185,2696907719,2611672690,99.9,99.91,99.43,99.42,11.48,11.65,15.42,15.71
-54724,55,033,55033,7,3,2379269,2379269,7174,3170,418348037,412780448,43857,17964,2237400827,2201762202,0.1,0.09,0.57,0.58,0.02,0.02,0.11,0.11
-54725,55,033,55033,2897,1275,259675403,258657150,2897,1275,259675403,258657150,43857,17964,2237400827,2201762202,100,100,100,100,6.61,7.1,11.61,11.75
-54726,55,017,55017,1467,627,147053883,146213364,1690,749,214641236,213800717,62415,27185,2696907719,2611672690,86.8,83.71,68.51,68.39,2.35,2.31,5.45,5.6
-54726,55,035,55035,223,122,67587353,67587353,1690,749,214641236,213800717,98736,42151,1671180890,1652369085,13.2,16.29,31.49,31.61,0.23,0.29,4.04,4.09
-54727,55,017,55017,4734,1974,342631887,341544087,4915,2043,364215756,363099202,62415,27185,2696907719,2611672690,96.32,96.62,94.07,94.06,7.58,7.26,12.7,13.08
-54727,55,035,55035,181,69,21583869,21555115,4915,2043,364215756,363099202,98736,42151,1671180890,1652369085,3.68,3.38,5.93,5.94,0.18,0.16,1.29,1.3
-54728,55,005,55005,5711,3245,268991963,255922329,6139,3594,344986622,327377687,45870,23614,2304477127,2234411472,93.03,90.29,77.97,78.17,12.45,13.74,11.67,11.45
-54728,55,107,55107,428,349,75994659,71455358,6139,3594,344986622,327377687,14755,8883,2410974892,2366174321,6.97,9.71,22.03,21.83,2.9,3.93,3.15,3.02
-54729,55,017,55017,31258,13602,444761435,415017055,31469,13686,460642809,430898429,62415,27185,2696907719,2611672690,99.33,99.39,96.55,96.31,50.08,50.03,16.49,15.89
-54729,55,035,55035,211,84,15881374,15881374,31469,13686,460642809,430898429,98736,42151,1671180890,1652369085,0.67,0.61,3.45,3.69,0.21,0.2,0.95,0.96
-54730,55,017,55017,594,231,74623232,74623232,4903,2184,368830168,360106487,62415,27185,2696907719,2611672690,12.12,10.58,20.23,20.72,0.95,0.85,2.77,2.86
-54730,55,033,55033,4309,1953,294206936,285483255,4903,2184,368830168,360106487,43857,17964,2237400827,2201762202,87.88,89.42,79.77,79.28,9.83,10.87,13.15,12.97
-54731,55,107,55107,802,390,126549614,125718736,802,390,126549614,125718736,14755,8883,2410974892,2366174321,100,100,100,100,5.44,4.39,5.25,5.31
-54732,55,017,55017,2924,1356,294085116,286011723,2924,1356,294085116,286011723,62415,27185,2696907719,2611672690,100,100,100,100,4.68,4.99,10.9,10.95
-54733,55,005,55005,1340,539,118997296,118879664,1340,539,118997296,118879664,45870,23614,2304477127,2234411472,100,100,100,100,2.92,2.28,5.16,5.32
-54734,55,033,55033,812,345,79303304,79175716,856,363,85611947,85484359,43857,17964,2237400827,2201762202,94.86,95.04,92.63,92.62,1.85,1.92,3.54,3.6
-54734,55,109,55109,44,18,6308643,6308643,856,363,85611947,85484359,84345,33983,1905412622,1870824361,5.14,4.96,7.37,7.38,0.05,0.05,0.33,0.34
-54736,55,011,55011,513,232,155154620,150344292,4127,1780,337108034,327380220,13587,6664,1837840659,1739526593,12.43,13.03,46.03,45.92,3.78,3.48,8.44,8.64
-54736,55,033,55033,32,18,7837718,7619904,4127,1780,337108034,327380220,43857,17964,2237400827,2201762202,0.78,1.01,2.32,2.33,0.07,0.1,0.35,0.35
-54736,55,091,55091,3582,1530,174115696,169416024,4127,1780,337108034,327380220,7469,3579,644116734,600833973,86.79,85.96,51.65,51.75,47.96,42.75,27.03,28.2
-54737,55,033,55033,452,215,55720541,53106465,487,228,58665950,56051874,43857,17964,2237400827,2201762202,92.81,94.3,94.98,94.75,1.03,1.2,2.49,2.41
-54737,55,091,55091,35,13,2945409,2945409,487,228,58665950,56051874,7469,3579,644116734,600833973,7.19,5.7,5.02,5.25,0.47,0.36,0.46,0.49
-54738,55,035,55035,1805,671,143974253,143974253,3149,1258,258392056,258147266,98736,42151,1671180890,1652369085,57.32,53.34,55.72,55.77,1.83,1.59,8.62,8.71
-54738,55,121,55121,1344,587,114417803,114173013,3149,1258,258392056,258147266,28816,12619,1921741329,1898370021,42.68,46.66,44.28,44.23,4.66,4.65,5.95,6.01
-54739,55,017,55017,1094,442,49909675,49909675,4950,1885,266072710,263838430,62415,27185,2696907719,2611672690,22.1,23.45,18.76,18.92,1.75,1.63,1.85,1.91
-54739,55,033,55033,3827,1436,215814399,213580119,4950,1885,266072710,263838430,43857,17964,2237400827,2201762202,77.31,76.18,81.11,80.95,8.73,7.99,9.65,9.7
-54739,55,035,55035,29,7,348636,348636,4950,1885,266072710,263838430,98736,42151,1671180890,1652369085,0.59,0.37,0.13,0.13,0.03,0.02,0.02,0.02
-54740,55,033,55033,497,224,98416185,98083020,2056,931,236179222,235569815,43857,17964,2237400827,2201762202,24.17,24.06,41.67,41.64,1.13,1.25,4.4,4.45
-54740,55,093,55093,1559,707,137763037,137486795,2056,931,236179222,235569815,41019,16132,1532945084,1485999482,75.83,75.94,58.33,58.36,3.8,4.38,8.99,9.25
-54741,55,019,55019,16,15,34073997,33940590,1577,806,248697445,248473963,34690,15076,3156643111,3133407354,1.01,1.86,13.7,13.66,0.05,0.1,1.08,1.08
-54741,55,035,55035,1064,526,123259724,123171523,1577,806,248697445,248473963,98736,42151,1671180890,1652369085,67.47,65.26,49.56,49.57,1.08,1.25,7.38,7.45
-54741,55,053,55053,497,265,91363724,91361850,1577,806,248697445,248473963,20449,9727,2590702830,2558182292,31.52,32.88,36.74,36.77,2.43,2.72,3.53,3.57
-54742,55,035,55035,4459,1780,271865559,270441652,4459,1780,271865559,270441652,98736,42151,1671180890,1652369085,100,100,100,100,4.52,4.22,16.27,16.37
-54745,55,017,55017,1963,1332,306883231,291277682,2261,1654,359502316,340868483,62415,27185,2696907719,2611672690,86.82,80.53,85.36,85.45,3.15,4.9,11.38,11.15
-54745,55,107,55107,298,322,52619085,49590801,2261,1654,359502316,340868483,14755,8883,2410974892,2366174321,13.18,19.47,14.64,14.55,2.02,3.62,2.18,2.1
-54746,55,019,55019,588,337,92187877,91272324,746,397,113957766,113042213,34690,15076,3156643111,3133407354,78.82,84.89,80.9,80.74,1.7,2.24,2.92,2.91
-54746,55,053,55053,158,60,21769889,21769889,746,397,113957766,113042213,20449,9727,2590702830,2558182292,21.18,15.11,19.1,19.26,0.77,0.62,0.84,0.85
-54747,55,011,55011,294,122,109560415,109483641,2534,1176,292697798,292299935,13587,6664,1837840659,1739526593,11.6,10.37,37.43,37.46,2.16,1.83,5.96,6.29
-54747,55,121,55121,2240,1054,183137383,182816294,2534,1176,292697798,292299935,28816,12619,1921741329,1898370021,88.4,89.63,62.57,62.54,7.77,8.35,9.53,9.63
-54748,55,017,55017,1217,546,111028172,106369531,1217,546,111028172,106369531,62415,27185,2696907719,2611672690,100,100,100,100,1.95,2.01,4.12,4.07
-54749,55,033,55033,1091,483,85473518,85440182,1231,539,99855833,99822497,43857,17964,2237400827,2201762202,88.63,89.61,85.6,85.59,2.49,2.69,3.82,3.88
-54749,55,109,55109,140,56,14382315,14382315,1231,539,99855833,99822497,84345,33983,1905412622,1870824361,11.37,10.39,14.4,14.41,0.17,0.16,0.75,0.77
-54750,55,093,55093,1062,518,175595414,164549967,1062,518,175595414,164549967,41019,16132,1532945084,1485999482,100,100,100,100,2.59,3.21,11.45,11.07
-54751,55,033,55033,25642,10150,601721511,588828227,25642,10150,601721511,588828227,43857,17964,2237400827,2201762202,100,100,100,100,58.47,56.5,26.89,26.74
-54754,55,019,55019,247,290,49543333,48787492,1552,1243,224712591,221021394,34690,15076,3156643111,3133407354,15.91,23.33,22.05,22.07,0.71,1.92,1.57,1.56
-54754,55,053,55053,1305,953,175169258,172233902,1552,1243,224712591,221021394,20449,9727,2590702830,2558182292,84.09,76.67,77.95,77.93,6.38,9.8,6.76,6.73
-54755,55,011,55011,5056,2249,428828618,426401835,7502,3229,711527296,704718187,13587,6664,1837840659,1739526593,67.4,69.65,60.27,60.51,37.21,33.75,23.33,24.51
-54755,55,033,55033,1079,424,116322799,111941156,7502,3229,711527296,704718187,43857,17964,2237400827,2201762202,14.38,13.13,16.35,15.88,2.46,2.36,5.2,5.08
-54755,55,035,55035,739,313,77422718,77422321,7502,3229,711527296,704718187,98736,42151,1671180890,1652369085,9.85,9.69,10.88,10.99,0.75,0.74,4.63,4.69
-54755,55,091,55091,628,243,88953161,88952875,7502,3229,711527296,704718187,7469,3579,644116734,600833973,8.37,7.53,12.5,12.62,8.41,6.79,13.81,14.8
-54756,55,011,55011,916,487,196118686,185719123,916,487,196118686,185719123,13587,6664,1837840659,1739526593,100,100,100,100,6.74,7.31,10.67,10.68
-54757,55,005,55005,824,374,81450426,81167502,3314,2018,427341474,406656322,45870,23614,2304477127,2234411472,24.86,18.53,19.06,19.96,1.8,1.58,3.53,3.63
-54757,55,017,55017,1871,1123,239328906,223587683,3314,2018,427341474,406656322,62415,27185,2696907719,2611672690,56.46,55.65,56,54.98,3,4.13,8.87,8.56
-54757,55,033,55033,422,200,68726380,67701201,3314,2018,427341474,406656322,43857,17964,2237400827,2201762202,12.73,9.91,16.08,16.65,0.96,1.11,3.07,3.07
-54757,55,107,55107,197,321,37835762,34199936,3314,2018,427341474,406656322,14755,8883,2410974892,2366174321,5.94,15.91,8.85,8.41,1.34,3.61,1.57,1.45
-54758,55,035,55035,665,254,98906100,98906100,4626,1999,412597059,412336789,98736,42151,1671180890,1652369085,14.38,12.71,23.97,23.99,0.67,0.6,5.92,5.99
-54758,55,053,55053,649,321,99701638,99633042,4626,1999,412597059,412336789,20449,9727,2590702830,2558182292,14.03,16.06,24.16,24.16,3.17,3.3,3.85,3.89
-54758,55,121,55121,3312,1424,213989321,213797647,4626,1999,412597059,412336789,28816,12619,1921741329,1898370021,71.6,71.24,51.86,51.85,11.49,11.28,11.14,11.26
-54759,55,091,55091,1533,878,152408722,133669807,1533,878,152408722,133669807,7469,3579,644116734,600833973,100,100,100,100,20.52,24.53,23.66,22.25
-54760,55,121,55121,255,113,371928,371928,255,113,371928,371928,28816,12619,1921741329,1898370021,100,100,100,100,0.88,0.9,0.02,0.02
-54761,55,093,55093,1216,518,106608940,105913541,1216,518,106608940,105913541,41019,16132,1532945084,1485999482,100,100,100,100,2.96,3.21,6.95,7.13
-54762,55,005,55005,1145,526,110062988,109939658,1246,574,128163724,127983014,45870,23614,2304477127,2234411472,91.89,91.64,85.88,85.9,2.5,2.23,4.78,4.92
-54762,55,033,55033,101,48,18100736,18043356,1246,574,128163724,127983014,43857,17964,2237400827,2201762202,8.11,8.36,14.12,14.1,0.23,0.27,0.81,0.82
-54763,55,005,55005,152,56,20741026,20741026,1134,507,143879393,143541629,45870,23614,2304477127,2234411472,13.4,11.05,14.42,14.45,0.33,0.24,0.9,0.93
-54763,55,033,55033,982,451,123138367,122800603,1134,507,143879393,143541629,43857,17964,2237400827,2201762202,86.6,88.95,85.58,85.55,2.24,2.51,5.5,5.58
-54765,55,033,55033,24,16,29769,29769,24,16,29769,29769,43857,17964,2237400827,2201762202,100,100,100,100,0.05,0.09,0,0
-54766,55,017,55017,116,56,24799769,24773691,1707,848,341521403,341151477,62415,27185,2696907719,2611672690,6.8,6.6,7.26,7.26,0.19,0.21,0.92,0.95
-54766,55,107,55107,834,358,128242574,128238621,1707,848,341521403,341151477,14755,8883,2410974892,2366174321,48.86,42.22,37.55,37.59,5.65,4.03,5.32,5.42
-54766,55,119,55119,757,434,188479060,188139165,1707,848,341521403,341151477,20689,10582,2549639705,2524917815,44.35,51.18,55.19,55.15,3.66,4.1,7.39,7.45
-54767,55,033,55033,18,11,5909217,5908797,3221,1377,218933386,216734098,43857,17964,2237400827,2201762202,0.56,0.8,2.7,2.73,0.04,0.06,0.26,0.27
-54767,55,093,55093,3014,1281,183980034,183306847,3221,1377,218933386,216734098,41019,16132,1532945084,1485999482,93.57,93.03,84.03,84.58,7.35,7.94,12,12.34
-54767,55,109,55109,189,85,29044135,27518454,3221,1377,218933386,216734098,84345,33983,1905412622,1870824361,5.87,6.17,13.27,12.7,0.22,0.25,1.52,1.47
-54768,55,017,55017,4878,1509,152839395,150023335,5990,1966,329081596,325619074,62415,27185,2696907719,2611672690,81.44,76.75,46.44,46.07,7.82,5.55,5.67,5.74
-54768,55,019,55019,790,301,111156047,110530423,5990,1966,329081596,325619074,34690,15076,3156643111,3133407354,13.19,15.31,33.78,33.94,2.28,2,3.52,3.53
-54768,55,035,55035,209,100,34060665,34043273,5990,1966,329081596,325619074,98736,42151,1671180890,1652369085,3.49,5.09,10.35,10.45,0.21,0.24,2.04,2.06
-54768,55,119,55119,113,56,31025489,31022043,5990,1966,329081596,325619074,20689,10582,2549639705,2524917815,1.89,2.85,9.43,9.53,0.55,0.53,1.22,1.23
-54769,55,091,55091,397,330,77386102,60552633,502,385,98362550,81507924,7469,3579,644116734,600833973,79.08,85.71,78.67,74.29,5.32,9.22,12.01,10.08
-54769,55,093,55093,105,55,20976448,20955291,502,385,98362550,81507924,41019,16132,1532945084,1485999482,20.92,14.29,21.33,25.71,0.26,0.34,1.37,1.41
-54770,55,035,55035,299,118,39261687,39261687,2101,873,177685812,177348515,98736,42151,1671180890,1652369085,14.23,13.52,22.1,22.14,0.3,0.28,2.35,2.38
-54770,55,121,55121,1802,755,138424125,138086828,2101,873,177685812,177348515,28816,12619,1921741329,1898370021,85.77,86.48,77.9,77.86,6.25,5.98,7.2,7.27
-54771,55,019,55019,3919,1568,340887801,339572084,4286,1735,403438793,401811653,34690,15076,3156643111,3133407354,91.44,90.37,84.5,84.51,11.3,10.4,10.8,10.84
-54771,55,119,55119,367,167,62550992,62239569,4286,1735,403438793,401811653,20689,10582,2549639705,2524917815,8.56,9.63,15.5,15.49,1.77,1.58,2.45,2.47
-54772,55,033,55033,1103,488,156420173,155522105,1103,488,156420173,155522105,43857,17964,2237400827,2201762202,100,100,100,100,2.51,2.72,6.99,7.06
-54773,55,121,55121,3336,1398,188669145,188607206,3336,1398,188669145,188607206,28816,12619,1921741329,1898370021,100,100,100,100,11.58,11.08,9.82,9.94
-54801,55,013,55013,609,913,114745361,101684497,6493,4790,526015022,489019501,15457,15278,2279788498,2128575375,9.38,19.06,21.81,20.79,3.94,5.98,5.03,4.78
-54801,55,129,55129,5884,3877,411269661,387335004,6493,4790,526015022,489019501,15911,12979,2210079602,2064513144,90.62,80.94,78.19,79.21,36.98,29.87,18.61,18.76
-54805,55,005,55005,1471,745,87184769,86373658,1471,745,87184769,86373658,45870,23614,2304477127,2234411472,100,100,100,100,3.21,3.15,3.78,3.87
-54806,55,003,55003,10367,4808,463553507,441909164,11810,5493,708888221,686997906,16157,9656,5937236172,2706628242,87.78,87.53,65.39,64.32,64.16,49.79,7.81,16.33
-54806,55,007,55007,1443,685,245334714,245088742,11810,5493,708888221,686997906,15014,12999,5287910197,3827647135,12.22,12.47,34.61,35.68,9.61,5.27,4.64,6.4
-54810,55,095,55095,2512,2151,131648692,117368893,2512,2151,131648692,117368893,44205,24248,2477084037,2367150768,100,100,100,100,5.68,8.87,5.31,4.96
-54812,55,005,55005,5728,2408,239043840,238535592,5728,2408,239043840,238535592,45870,23614,2304477127,2234411472,100,100,100,100,12.49,10.2,10.37,10.68
-54813,55,005,55005,363,207,45099337,43196415,601,375,144819157,140705931,45870,23614,2304477127,2234411472,60.4,55.2,31.14,30.7,0.79,0.88,1.96,1.93
-54813,55,013,55013,142,107,76277451,75725023,601,375,144819157,140705931,15457,15278,2279788498,2128575375,23.63,28.53,52.67,53.82,0.92,0.7,3.35,3.56
-54813,55,129,55129,96,61,23442369,21784493,601,375,144819157,140705931,15911,12979,2210079602,2064513144,15.97,16.27,16.19,15.48,0.6,0.47,1.06,1.06
-54814,55,007,55007,2478,1733,392233885,380231681,2478,1733,392233885,380231681,15014,12999,5287910197,3827647135,100,100,100,100,16.5,13.33,7.42,9.93
-54817,55,005,55005,606,716,70443939,60305167,2188,2519,461343939,418800347,45870,23614,2304477127,2234411472,27.7,28.42,15.27,14.4,1.32,3.03,3.06,2.7
-54817,55,107,55107,100,53,84215085,83934601,2188,2519,461343939,418800347,14755,8883,2410974892,2366174321,4.57,2.1,18.25,20.04,0.68,0.6,3.49,3.55
-54817,55,113,55113,519,814,131266538,118627865,2188,2519,461343939,418800347,16557,15975,3497170414,3256403571,23.72,32.31,28.45,28.33,3.13,5.1,3.75,3.64
-54817,55,129,55129,963,936,175418377,155932714,2188,2519,461343939,418800347,15911,12979,2210079602,2064513144,44.01,37.16,38.02,37.23,6.05,7.21,7.94,7.55
-54819,55,107,55107,2544,1600,437734682,430041158,2544,1600,437734682,430041158,14755,8883,2410974892,2366174321,100,100,100,100,17.24,18.01,18.16,18.17
-54820,55,007,55007,265,169,118132390,117837040,864,524,286060659,284260171,15014,12999,5287910197,3827647135,30.67,32.25,41.3,41.45,1.77,1.3,2.23,3.08
-54820,55,031,55031,599,355,167928269,166423131,864,524,286060659,284260171,44159,22825,3832344888,3377697851,69.33,67.75,58.7,58.55,1.36,1.56,4.38,4.93
-54821,55,007,55007,1246,1774,499919262,468495185,1276,1792,510877338,478625065,15014,12999,5287910197,3827647135,97.65,99,97.86,97.88,8.3,13.65,9.45,12.24
-54821,55,113,55113,30,18,10958076,10129880,1276,1792,510877338,478625065,16557,15975,3497170414,3256403571,2.35,1,2.14,2.12,0.18,0.11,0.31,0.31
-54822,55,005,55005,4516,2082,127739864,123915232,4516,2082,127739864,123915232,45870,23614,2304477127,2234411472,100,100,100,100,9.85,8.82,5.54,5.55
-54824,55,095,55095,2271,1207,100104685,97440354,2271,1207,100104685,97440354,44205,24248,2477084037,2367150768,100,100,100,100,5.14,4.98,4.04,4.12
-54826,55,005,55005,456,310,55169105,52149526,807,701,133388809,126963789,45870,23614,2304477127,2234411472,56.51,44.22,41.36,41.07,0.99,1.31,2.39,2.33
-54826,55,095,55095,351,391,78219704,74814263,807,701,133388809,126963789,44205,24248,2477084037,2367150768,43.49,55.78,58.64,58.93,0.79,1.61,3.16,3.16
-54827,55,007,55007,221,411,117165636,111952225,221,411,117165636,111952225,15014,12999,5287910197,3827647135,100,100,100,100,1.47,3.16,2.22,2.92
-54828,55,113,55113,678,818,173037990,158666598,678,818,173037990,158666598,16557,15975,3497170414,3256403571,100,100,100,100,4.09,5.12,4.95,4.87
-54829,55,005,55005,4913,3059,295963768,279019629,5236,3273,363505872,344691498,45870,23614,2304477127,2234411472,93.83,93.46,81.42,80.95,10.71,12.95,12.84,12.49
-54829,55,095,55095,323,214,67542104,65671869,5236,3273,363505872,344691498,44205,24248,2477084037,2367150768,6.17,6.54,18.58,19.05,0.73,0.88,2.73,2.77
-54830,55,013,55013,2565,4700,623205474,578710450,2752,5043,977774421,931221260,15457,15278,2279788498,2128575375,93.2,93.2,63.74,62.15,16.59,30.76,27.34,27.19
-54830,55,031,55031,184,325,351051279,349391349,2752,5043,977774421,931221260,44159,22825,3832344888,3377697851,6.69,6.44,35.9,37.52,0.42,1.42,9.16,10.34
-54830,55,129,55129,3,18,3517668,3119461,2752,5043,977774421,931221260,15911,12979,2210079602,2064513144,0.11,0.36,0.36,0.33,0.02,0.14,0.16,0.15
-54832,55,007,55007,412,574,282707820,273414075,412,574,282707820,273414075,15014,12999,5287910197,3827647135,100,100,100,100,2.74,4.42,5.35,7.14
-54835,55,107,55107,128,115,44056186,43648948,1018,803,374813609,369353095,14755,8883,2410974892,2366174321,12.57,14.32,11.75,11.82,0.87,1.29,1.83,1.84
-54835,55,113,55113,890,688,330757423,325704147,1018,803,374813609,369353095,16557,15975,3497170414,3256403571,87.43,85.68,88.25,88.18,5.38,4.31,9.46,10
-54836,55,031,55031,1080,509,340162248,338906741,1080,509,340162248,338906741,44159,22825,3832344888,3377697851,100,100,100,100,2.45,2.23,8.88,10.03
-54837,55,013,55013,443,365,78787768,74045403,3778,2229,468410990,454945819,15457,15278,2279788498,2128575375,11.73,16.38,16.82,16.28,2.87,2.39,3.46,3.48
-54837,55,095,55095,3335,1864,389623222,380900416,3778,2229,468410990,454945819,44205,24248,2477084037,2367150768,88.27,83.62,83.18,83.72,7.54,7.69,15.73,16.09
-54838,55,007,55007,0,0,6858,6858,1103,1622,628450417,598162439,15014,12999,5287910197,3827647135,0,0,0,0,0,0,0,0
-54838,55,031,55031,1103,1622,628443559,598155581,1103,1622,628450417,598162439,44159,22825,3832344888,3377697851,100,100,100,100,2.5,7.11,16.4,17.71
-54839,55,007,55007,302,216,121078933,120648060,302,216,121078933,120648060,15014,12999,5287910197,3827647135,100,100,100,100,2.01,1.66,2.29,3.15
-54840,55,013,55013,4591,2748,607612768,584615625,4643,2903,684834010,659913357,15457,15278,2279788498,2128575375,98.88,94.66,88.72,88.59,29.7,17.99,26.65,27.47
-54840,55,095,55095,52,155,77221242,75297732,4643,2903,684834010,659913357,44205,24248,2477084037,2367150768,1.12,5.34,11.28,11.41,0.12,0.64,3.12,3.18
-54841,55,005,55005,259,128,938844,938844,259,128,938844,938844,45870,23614,2304477127,2234411472,100,100,100,100,0.56,0.54,0.04,0.04
-54842,55,031,55031,185,81,15914882,15896985,185,81,15914882,15896985,44159,22825,3832344888,3377697851,100,100,100,100,0.42,0.35,0.42,0.47
-54843,55,113,55113,11077,9105,1199785430,1046856666,11487,9357,1296762037,1139748256,16557,15975,3497170414,3256403571,96.43,97.31,92.52,91.85,66.9,57,34.31,32.15
-54843,55,129,55129,410,252,96976607,92891590,11487,9357,1296762037,1139748256,15911,12979,2210079602,2064513144,3.57,2.69,7.48,8.15,2.58,1.94,4.39,4.5
-54844,55,007,55007,267,530,171748263,157253815,267,530,171748263,157253815,15014,12999,5287910197,3827647135,100,100,100,100,1.78,4.08,3.25,4.11
-54845,55,013,55013,147,84,17355123,17312759,147,84,17355123,17312759,15457,15278,2279788498,2128575375,100,100,100,100,0.95,0.55,0.76,0.81
-54846,55,003,55003,547,292,81228123,81058428,547,292,81228123,81058428,16157,9656,5937236172,2706628242,100,100,100,100,3.39,3.02,1.37,2.99
-54847,55,007,55007,2222,2011,444655347,426782817,2222,2011,444655347,426782817,15014,12999,5287910197,3827647135,100,100,100,100,14.8,15.47,8.41,11.15
-54848,55,107,55107,6141,3175,496343393,483949401,6141,3175,496343393,483949401,14755,8883,2410974892,2366174321,100,100,100,100,41.62,35.74,20.59,20.45
-54849,55,031,55031,1967,1280,244341639,235367559,1967,1280,244341639,235367559,44159,22825,3832344888,3377697851,100,100,100,100,4.45,5.61,6.38,6.97
-54850,55,003,55003,261,866,208443242,201397006,261,866,208443242,201397006,16157,9656,5937236172,2706628242,100,100,100,100,1.62,8.97,3.51,7.44
-54853,55,013,55013,102,140,11107033,9832478,4009,2715,261584453,241930404,15457,15278,2279788498,2128575375,2.54,5.16,4.25,4.06,0.66,0.92,0.49,0.46
-54853,55,095,55095,3907,2575,250477420,232097926,4009,2715,261584453,241930404,44205,24248,2477084037,2367150768,97.46,94.84,95.75,95.94,8.84,10.62,10.11,9.8
-54854,55,031,55031,990,475,218735845,206601366,990,475,218735845,206601366,44159,22825,3832344888,3377697851,100,100,100,100,2.24,2.08,5.71,6.12
-54855,55,003,55003,774,375,186770218,186313110,774,375,186770218,186313110,16157,9656,5937236172,2706628242,100,100,100,100,4.79,3.88,3.15,6.88
-54856,55,003,55003,56,23,3252996,3252996,1616,1024,603558791,598231144,16157,9656,5937236172,2706628242,3.47,2.25,0.54,0.54,0.35,0.24,0.05,0.12
-54856,55,007,55007,1560,1001,600305795,594978148,1616,1024,603558791,598231144,15014,12999,5287910197,3827647135,96.53,97.75,99.46,99.46,10.39,7.7,11.35,15.54
-54857,55,005,55005,62,60,795736,721645,62,60,795736,721645,45870,23614,2304477127,2234411472,100,100,100,100,0.14,0.25,0.03,0.03
-54858,55,095,55095,1518,1008,53812067,49960560,1518,1008,53812067,49960560,44205,24248,2477084037,2367150768,100,100,100,100,3.43,4.16,2.17,2.11
-54859,55,031,55031,274,454,106833450,95512056,1896,2405,503334568,469160074,44159,22825,3832344888,3377697851,14.45,18.88,21.23,20.36,0.62,1.99,2.79,2.83
-54859,55,129,55129,1622,1951,396501118,373648018,1896,2405,503334568,469160074,15911,12979,2210079602,2064513144,85.55,81.12,78.77,79.64,10.19,15.03,17.94,18.1
-54861,55,003,55003,150,54,12326458,12326458,150,54,12326458,12326458,16157,9656,5937236172,2706628242,100,100,100,100,0.93,0.56,0.21,0.46
-54862,55,113,55113,261,288,116343948,115136911,261,288,116343948,115136911,16557,15975,3497170414,3256403571,100,100,100,100,1.58,1.8,3.33,3.54
-54864,55,031,55031,1322,569,132204340,131794466,1322,569,132204340,131794466,44159,22825,3832344888,3377697851,100,100,100,100,2.99,2.49,3.45,3.9
-54865,55,007,55007,440,517,159389568,159106066,440,517,159389568,159106066,15014,12999,5287910197,3827647135,100,100,100,100,2.93,3.98,3.01,4.16
-54867,55,113,55113,435,336,86657988,85194441,435,336,86657988,85194441,16557,15975,3497170414,3256403571,100,100,100,100,2.63,2.1,2.48,2.62
-54868,55,005,55005,15435,7433,531581376,518691469,15512,7474,557221802,543236764,45870,23614,2304477127,2234411472,99.5,99.45,95.4,95.48,33.65,31.48,23.07,23.21
-54868,55,107,55107,52,25,18462021,18349362,15512,7474,557221802,543236764,14755,8883,2410974892,2366174321,0.34,0.33,3.31,3.38,0.35,0.28,0.77,0.78
-54868,55,129,55129,25,16,7178405,6195933,15512,7474,557221802,543236764,15911,12979,2210079602,2064513144,0.16,0.21,1.29,1.14,0.16,0.12,0.32,0.3
-54870,55,005,55005,36,14,3677211,3677211,1486,1491,259429076,233373578,45870,23614,2304477127,2234411472,2.42,0.94,1.42,1.58,0.08,0.06,0.16,0.16
-54870,55,129,55129,1450,1477,255751865,229696367,1486,1491,259429076,233373578,15911,12979,2210079602,2064513144,97.58,99.06,98.58,98.42,9.11,11.38,11.57,11.13
-54871,55,013,55013,531,380,124189564,121941661,3105,1984,306241660,288111461,15457,15278,2279788498,2128575375,17.1,19.15,40.55,42.32,3.44,2.49,5.45,5.73
-54871,55,129,55129,2574,1604,182052096,166169800,3105,1984,306241660,288111461,15911,12979,2210079602,2064513144,82.9,80.85,59.45,57.68,16.18,12.36,8.24,8.05
-54872,55,013,55013,2560,2103,173519979,156409322,2581,2113,178428914,161205918,15457,15278,2279788498,2128575375,99.19,99.53,97.25,97.02,16.56,13.76,7.61,7.35
-54872,55,095,55095,21,10,4908935,4796596,2581,2113,178428914,161205918,44205,24248,2477084037,2367150768,0.81,0.47,2.75,2.98,0.05,0.04,0.2,0.2
-54873,55,007,55007,762,1548,299668652,283010526,2799,3051,722802953,696181719,15014,12999,5287910197,3827647135,27.22,50.74,41.46,40.65,5.08,11.91,5.67,7.39
-54873,55,031,55031,2037,1503,423134301,413171193,2799,3051,722802953,696181719,44159,22825,3832344888,3377697851,72.78,49.26,58.54,59.35,4.61,6.58,11.04,12.23
-54874,55,031,55031,3646,1570,386187710,381144613,3646,1570,386187710,381144613,44159,22825,3832344888,3377697851,100,100,100,100,8.26,6.88,10.08,11.28
-54875,55,129,55129,1055,837,296000871,286257632,1055,837,296000871,286257632,15911,12979,2210079602,2064513144,100,100,100,100,6.63,6.45,13.39,13.87
-54876,55,113,55113,1067,1577,198758583,170307123,1551,2091,300699709,264122700,16557,15975,3497170414,3256403571,68.79,75.42,66.1,64.48,6.44,9.87,5.68,5.23
-54876,55,129,55129,484,514,101941126,93815577,1551,2091,300699709,264122700,15911,12979,2210079602,2064513144,31.21,24.58,33.9,35.52,3.04,3.96,4.61,4.54
-54880,55,031,55031,30772,14082,475465593,445332811,30772,14082,475465593,445332811,44159,22825,3832344888,3377697851,100,100,100,100,69.68,61.7,12.41,13.18
-54888,55,129,55129,1345,1436,260029439,247666555,1345,1436,260029439,247666555,15911,12979,2210079602,2064513144,100,100,100,100,8.45,11.06,11.77,12
-54889,55,005,55005,1724,1195,90220247,84111580,2742,1793,191872892,181078535,45870,23614,2304477127,2234411472,62.87,66.65,47.02,46.45,3.76,5.06,3.91,3.76
-54889,55,095,55095,1018,598,101652645,96966955,2742,1793,191872892,181078535,44205,24248,2477084037,2367150768,37.13,33.35,52.98,53.55,2.3,2.47,4.1,4.1
-54891,55,007,55007,3389,1774,192621981,190535931,3389,1774,192621981,190535931,15014,12999,5287910197,3827647135,100,100,100,100,22.57,13.65,3.64,4.98
-54893,55,013,55013,3767,3738,452987977,408298157,3767,3738,452987977,408298157,15457,15278,2279788498,2128575375,100,100,100,100,24.37,24.47,19.87,19.18
-54895,55,107,55107,910,692,280304201,274656953,910,692,280304201,274656953,14755,8883,2410974892,2366174321,100,100,100,100,6.17,7.79,11.63,11.61
-54896,55,107,55107,0,0,2465252,2465252,1478,2220,1139904816,1121115374,14755,8883,2410974892,2366174321,0,0,0.22,0.22,0,0,0.1,0.1
-54896,55,113,55113,1478,2220,1137439564,1118650122,1478,2220,1139904816,1121115374,16557,15975,3497170414,3256403571,100,100,99.78,99.78,8.93,13.9,32.52,34.35
-54901,55,139,55139,37710,14843,46207254,43192325,37710,14843,46207254,43192325,166994,73329,1498494198,1125316243,100,100,100,100,22.58,20.24,3.08,3.84
-54902,55,139,55139,22375,10896,94911844,90833600,22375,10896,94911844,90833600,166994,73329,1498494198,1125316243,100,100,100,100,13.4,14.86,6.33,8.07
-54904,55,139,55139,20623,8876,195126405,193402140,20623,8876,195126405,193402140,166994,73329,1498494198,1125316243,100,100,100,100,12.35,12.1,13.02,17.19
-54909,55,097,55097,1990,997,204214602,202849863,2181,1132,249964225,248568146,70019,30054,2130673992,2073747839,91.24,88.07,81.7,81.61,2.84,3.32,9.58,9.78
-54909,55,137,55137,191,135,45749623,45718283,2181,1132,249964225,248568146,24496,14843,1650880758,1621729475,8.76,11.93,18.3,18.39,0.78,0.91,2.77,2.82
-54911,55,087,55087,26674,11572,22268389,21470417,26674,11572,22268389,21470417,176695,73149,1669477187,1651177709,100,100,100,100,15.1,15.82,1.33,1.3
-54913,55,087,55087,17629,7101,163100849,163036871,17629,7101,163100849,163036871,176695,73149,1669477187,1651177709,100,100,100,100,9.98,9.71,9.77,9.87
-54914,55,087,55087,29826,13399,44345131,44138042,30475,13869,46348174,46108447,176695,73149,1669477187,1651177709,97.87,96.61,95.68,95.73,16.88,18.32,2.66,2.67
-54914,55,139,55139,649,470,2003043,1970405,30475,13869,46348174,46108447,166994,73329,1498494198,1125316243,2.13,3.39,4.32,4.27,0.39,0.64,0.13,0.18
-54915,55,015,55015,18788,6867,21142962,21065305,41855,16501,41500861,40643738,48971,19695,1028423834,824227417,44.89,41.62,50.95,51.83,38.37,34.87,2.06,2.56
-54915,55,087,55087,19194,7717,18057045,17326199,41855,16501,41500861,40643738,176695,73149,1669477187,1651177709,45.86,46.77,43.51,42.63,10.86,10.55,1.08,1.05
-54915,55,139,55139,3873,1917,2300854,2252234,41855,16501,41500861,40643738,166994,73329,1498494198,1125316243,9.25,11.62,5.54,5.54,2.32,2.61,0.15,0.2
-54921,55,001,55001,93,42,22815172,22806905,1326,568,202633926,201740457,20875,17436,1783340082,1672214172,7.01,7.39,11.26,11.31,0.45,0.24,1.28,1.36
-54921,55,097,55097,1233,526,179818754,178933552,1326,568,202633926,201740457,70019,30054,2130673992,2073747839,92.99,92.61,88.74,88.69,1.76,1.75,8.44,8.63
-54922,55,087,55087,952,390,70265395,69696718,1514,622,123682023,122991247,176695,73149,1669477187,1651177709,62.88,62.7,56.81,56.67,0.54,0.53,4.21,4.22
-54922,55,135,55135,562,232,53416628,53294529,1514,622,123682023,122991247,52410,25396,1981868416,1936566893,37.12,37.3,43.19,43.33,1.07,0.91,2.7,2.75
-54923,55,047,55047,6872,3150,156959936,151858537,8733,3983,366962383,350537481,19051,10616,984967491,905037501,78.69,79.09,42.77,43.32,36.07,29.67,15.94,16.78
-54923,55,137,55137,1633,738,181400448,170799186,8733,3983,366962383,350537481,24496,14843,1650880758,1621729475,18.7,18.53,49.43,48.72,6.67,4.97,10.99,10.53
-54923,55,139,55139,228,95,28601999,27879758,8733,3983,366962383,350537481,166994,73329,1498494198,1125316243,2.61,2.39,7.79,7.95,0.14,0.13,1.91,2.48
-54927,55,139,55139,538,247,607715,585884,538,247,607715,585884,166994,73329,1498494198,1125316243,100,100,100,100,0.32,0.34,0.04,0.05
-54928,55,115,55115,450,191,28879109,28407547,450,191,28879109,28407547,41949,20720,2355521554,2313007314,100,100,100,100,1.07,0.92,1.23,1.23
-54929,55,087,55087,45,14,4418161,4418161,8746,4301,313680346,309111242,176695,73149,1669477187,1651177709,0.51,0.33,1.41,1.43,0.03,0.02,0.26,0.27
-54929,55,115,55115,1358,893,76326806,73940611,8746,4301,313680346,309111242,41949,20720,2355521554,2313007314,15.53,20.76,24.33,23.92,3.24,4.31,3.24,3.2
-54929,55,135,55135,7343,3394,232935379,230752470,8746,4301,313680346,309111242,52410,25396,1981868416,1936566893,83.96,78.91,74.26,74.65,14.01,13.36,11.75,11.92
-54930,55,001,55001,218,162,93030969,93015363,1786,1129,241831305,240871000,20875,17436,1783340082,1672214172,12.21,14.35,38.47,38.62,1.04,0.93,5.22,5.56
-54930,55,077,55077,14,10,4855586,4817362,1786,1129,241831305,240871000,15404,9896,1202528116,1180003730,0.78,0.89,2.01,2,0.09,0.1,0.4,0.41
-54930,55,137,55137,1554,957,143944750,143038275,1786,1129,241831305,240871000,24496,14843,1650880758,1621729475,87.01,84.77,59.52,59.38,6.34,6.45,8.72,8.82
-54931,55,087,55087,260,105,674594,674594,260,105,674594,674594,176695,73149,1669477187,1651177709,100,100,100,100,0.15,0.14,0.04,0.04
-54932,55,039,55039,1185,446,79780162,78245144,1185,446,79780162,78245144,101633,43910,1983516130,1863633125,100,100,100,100,1.17,1.02,4.02,4.2
-54933,55,135,55135,231,96,2645869,2530511,231,96,2645869,2530511,52410,25396,1981868416,1936566893,100,100,100,100,0.44,0.38,0.13,0.13
-54934,55,139,55139,148,76,873015,869623,148,76,873015,869623,166994,73329,1498494198,1125316243,100,100,100,100,0.09,0.1,0.06,0.08
-54935,55,039,55039,41651,18776,43225851,40879331,41651,18776,43225851,40879331,101633,43910,1983516130,1863633125,100,100,100,100,40.98,42.76,2.18,2.19
-54937,55,039,55039,19112,7949,297597169,295536599,19112,7949,297597169,295536599,101633,43910,1983516130,1863633125,100,100,100,100,18.8,18.1,15,15.86
-54940,55,087,55087,409,160,22325499,22293209,4020,2114,231668581,225049684,176695,73149,1669477187,1651177709,10.17,7.57,9.64,9.91,0.23,0.22,1.34,1.35
-54940,55,135,55135,1912,981,65679380,63621514,4020,2114,231668581,225049684,52410,25396,1981868416,1936566893,47.56,46.4,28.35,28.27,3.65,3.86,3.31,3.29
-54940,55,137,55137,733,385,69715791,68519050,4020,2114,231668581,225049684,24496,14843,1650880758,1621729475,18.23,18.21,30.09,30.45,2.99,2.59,4.22,4.23
-54940,55,139,55139,966,588,73947911,70615911,4020,2114,231668581,225049684,166994,73329,1498494198,1125316243,24.03,27.81,31.92,31.38,0.58,0.8,4.93,6.28
-54941,55,047,55047,2613,1937,116396573,83950809,2613,1937,116396573,83950809,19051,10616,984967491,905037501,100,100,100,100,13.72,18.25,11.82,9.28
-54942,55,087,55087,8580,3058,53501057,53459431,8580,3058,53501057,53459431,176695,73149,1669477187,1651177709,100,100,100,100,4.86,4.18,3.2,3.24
-54943,55,001,55001,522,511,150794246,150498975,1923,1487,319415771,317698373,20875,17436,1783340082,1672214172,27.15,34.36,47.21,47.37,2.5,2.93,8.46,9
-54943,55,137,55137,1401,976,168621525,167199398,1923,1487,319415771,317698373,24496,14843,1650880758,1621729475,72.85,65.64,52.79,52.63,5.72,6.58,10.21,10.31
-54944,55,087,55087,8257,3161,177324811,175453677,8257,3161,177324811,175453677,176695,73149,1669477187,1651177709,100,100,100,100,4.67,4.32,10.62,10.63
-54945,55,097,55097,13,8,1894380,1894380,3545,2029,275852016,271932339,70019,30054,2130673992,2073747839,0.37,0.39,0.69,0.7,0.02,0.03,0.09,0.09
-54945,55,135,55135,3532,2021,273957636,270037959,3545,2029,275852016,271932339,52410,25396,1981868416,1936566893,99.63,99.61,99.31,99.3,6.74,7.96,13.82,13.94
-54946,55,135,55135,108,0,18110,18110,108,0,18110,18110,52410,25396,1981868416,1936566893,100,0,100,100,0.21,0,0,0
-54947,55,139,55139,2601,1266,121425850,120391296,2601,1266,121425850,120391296,166994,73329,1498494198,1125316243,100,100,100,100,1.56,1.73,8.1,10.7
-54948,55,115,55115,320,152,36687282,36677971,320,152,36687282,36677971,41949,20720,2355521554,2313007314,100,100,100,100,0.76,0.73,1.56,1.59
-54949,55,135,55135,3430,1567,166414081,163822088,3430,1567,166414081,163822088,52410,25396,1981868416,1936566893,100,100,100,100,6.54,6.17,8.4,8.46
-54950,55,115,55115,764,381,71911825,71297817,3083,1492,217892637,215493850,41949,20720,2355521554,2313007314,24.78,25.54,33,33.09,1.82,1.84,3.05,3.08
-54950,55,135,55135,2319,1111,145980812,144196033,3083,1492,217892637,215493850,52410,25396,1981868416,1936566893,75.22,74.46,67,66.91,4.42,4.37,7.37,7.45
-54952,55,015,55015,5058,1972,56515472,56276083,25729,11511,73857928,72855373,48971,19695,1028423834,824227417,19.66,17.13,76.52,77.24,10.33,10.01,5.5,6.83
-54952,55,139,55139,20671,9539,17342456,16579290,25729,11511,73857928,72855373,166994,73329,1498494198,1125316243,80.34,82.87,23.48,22.76,12.38,13.01,1.16,1.47
-54956,55,087,55087,81,32,3511686,3475556,42696,18395,160562884,158939634,176695,73149,1669477187,1651177709,0.19,0.17,2.19,2.19,0.05,0.04,0.21,0.21
-54956,55,139,55139,42615,18363,157051198,155464078,42696,18395,160562884,158939634,166994,73329,1498494198,1125316243,99.81,99.83,97.81,97.81,25.52,25.04,10.48,13.82
-54960,55,047,55047,147,72,50626635,49298644,2800,2189,275532244,271350450,19051,10616,984967491,905037501,5.25,3.29,18.37,18.17,0.77,0.68,5.14,5.45
-54960,55,077,55077,1602,1326,167609906,165581838,2800,2189,275532244,271350450,15404,9896,1202528116,1180003730,57.21,60.58,60.83,61.02,10.4,13.4,13.94,14.03
-54960,55,137,55137,1051,791,57295703,56469968,2800,2189,275532244,271350450,24496,14843,1650880758,1621729475,37.54,36.14,20.79,20.81,4.29,5.33,3.47,3.48
-54961,55,087,55087,3085,1292,117219031,114296895,14266,6271,326864771,319783629,176695,73149,1669477187,1651177709,21.62,20.6,35.86,35.74,1.75,1.77,7.02,6.92
-54961,55,135,55135,11181,4979,209645740,205486734,14266,6271,326864771,319783629,52410,25396,1981868416,1936566893,78.38,79.4,64.14,64.26,21.33,19.61,10.58,10.61
-54962,55,135,55135,1110,643,124360022,122719659,1110,643,124360022,122719659,52410,25396,1981868416,1936566893,100,100,100,100,2.12,2.53,6.27,6.34
-54963,55,139,55139,6917,2982,205444728,197936011,6917,2982,205444728,197936011,166994,73329,1498494198,1125316243,100,100,100,100,4.14,4.07,13.71,17.59
-54964,55,039,55039,221,85,23623222,23420382,1022,426,96762821,92734144,101633,43910,1983516130,1863633125,21.62,19.95,24.41,25.26,0.22,0.19,1.19,1.26
-54964,55,139,55139,801,341,73139599,69313762,1022,426,96762821,92734144,166994,73329,1498494198,1125316243,78.38,80.05,75.59,74.74,0.48,0.47,4.88,6.16
-54965,55,135,55135,20,9,2005686,2005686,1344,703,150552506,150215320,52410,25396,1981868416,1936566893,1.49,1.28,1.33,1.34,0.04,0.04,0.1,0.1
-54965,55,137,55137,1324,694,148546820,148209634,1344,703,150552506,150215320,24496,14843,1650880758,1621729475,98.51,98.72,98.67,98.66,5.4,4.68,9,9.14
-54966,55,001,55001,28,12,16096253,16092147,2008,999,208515756,207699645,20875,17436,1783340082,1672214172,1.39,1.2,7.72,7.75,0.13,0.07,0.9,0.96
-54966,55,097,55097,253,106,37236785,37143773,2008,999,208515756,207699645,70019,30054,2130673992,2073747839,12.6,10.61,17.86,17.88,0.36,0.35,1.75,1.79
-54966,55,137,55137,1727,881,155182718,154463725,2008,999,208515756,207699645,24496,14843,1650880758,1621729475,86.01,88.19,74.42,74.37,7.05,5.94,9.4,9.52
-54967,55,137,55137,434,213,8682331,8519744,434,213,8682331,8519744,24496,14843,1650880758,1621729475,100,100,100,100,1.77,1.44,0.53,0.53
-54968,55,047,55047,2700,1675,133163394,129401182,2779,1736,159274390,155512178,19051,10616,984967491,905037501,97.16,96.49,83.61,83.21,14.17,15.78,13.52,14.3
-54968,55,077,55077,79,61,26110996,26110996,2779,1736,159274390,155512178,15404,9896,1202528116,1180003730,2.84,3.51,16.39,16.79,0.51,0.62,2.17,2.21
-54970,55,137,55137,3902,1715,120513649,119888936,3902,1715,120513649,119888936,24496,14843,1650880758,1621729475,100,100,100,100,15.93,11.55,7.3,7.39
-54971,55,039,55039,9714,4114,171583721,169940352,10827,4788,295685865,285296044,101633,43910,1983516130,1863633125,89.72,85.92,58.03,59.57,9.56,9.37,8.65,9.12
-54971,55,047,55047,606,439,59967867,59681632,10827,4788,295685865,285296044,19051,10616,984967491,905037501,5.6,9.17,20.28,20.92,3.18,4.14,6.09,6.59
-54971,55,139,55139,507,235,64134277,55674060,10827,4788,295685865,285296044,166994,73329,1498494198,1125316243,4.68,4.91,21.69,19.51,0.3,0.32,4.28,4.95
-54974,55,039,55039,1581,630,68374339,68092699,1581,630,68374339,68092699,101633,43910,1983516130,1863633125,100,100,100,100,1.56,1.43,3.45,3.65
-54977,55,097,55097,88,40,12043841,12011461,1337,679,101071469,99510680,70019,30054,2130673992,2073747839,6.58,5.89,11.92,12.07,0.13,0.13,0.57,0.58
-54977,55,135,55135,1249,639,89027628,87499219,1337,679,101071469,99510680,52410,25396,1981868416,1936566893,93.42,94.11,88.08,87.93,2.38,2.52,4.49,4.52
-54979,55,039,55039,1422,606,63700970,63451743,1472,624,67697787,67440620,101633,43910,1983516130,1863633125,96.6,97.12,94.1,94.09,1.4,1.38,3.21,3.4
-54979,55,139,55139,50,18,3996817,3988877,1472,624,67697787,67440620,166994,73329,1498494198,1125316243,3.4,2.88,5.9,5.91,0.03,0.02,0.27,0.35
-54980,55,139,55139,149,74,1266555,1263593,149,74,1266555,1263593,166994,73329,1498494198,1125316243,100,100,100,100,0.09,0.1,0.08,0.11
-54981,55,097,55097,348,203,16591823,16526259,15426,8074,356788711,346235324,70019,30054,2130673992,2073747839,2.26,2.51,4.65,4.77,0.5,0.68,0.78,0.8
-54981,55,135,55135,14854,7546,325125506,316628482,15426,8074,356788711,346235324,52410,25396,1981868416,1936566893,96.29,93.46,91.13,91.45,28.34,29.71,16.4,16.35
-54981,55,137,55137,224,325,15071382,13080583,15426,8074,356788711,346235324,24496,14843,1650880758,1621729475,1.45,4.03,4.22,3.78,0.91,2.19,0.91,0.81
-54982,55,077,55077,67,144,7632417,6859920,7117,4540,329591888,322104443,15404,9896,1202528116,1180003730,0.94,3.17,2.32,2.13,0.43,1.46,0.63,0.58
-54982,55,137,55137,7050,4396,321959471,315244523,7117,4540,329591888,322104443,24496,14843,1650880758,1621729475,99.06,96.83,97.68,97.87,28.78,29.62,19.5,19.44
-54983,55,135,55135,4360,2027,219010820,203190401,4642,2144,236252536,220432117,52410,25396,1981868416,1936566893,93.93,94.54,92.7,92.18,8.32,7.98,11.05,10.49
-54983,55,137,55137,282,117,17241716,17241716,4642,2144,236252536,220432117,24496,14843,1650880758,1621729475,6.07,5.46,7.3,7.82,1.15,0.79,1.04,1.06
-54984,55,097,55097,51,24,5757612,5743809,2989,2510,201050261,197418081,70019,30054,2130673992,2073747839,1.71,0.96,2.86,2.91,0.07,0.08,0.27,0.28
-54984,55,137,55137,2938,2486,195292649,191674272,2989,2510,201050261,197418081,24496,14843,1650880758,1621729475,98.29,99.04,97.14,97.09,11.99,16.75,11.83,11.82
-54985,55,139,55139,836,0,261916,261916,836,0,261916,261916,166994,73329,1498494198,1125316243,100,0,100,100,0.5,0,0.02,0.02
-54986,55,137,55137,33,18,650105,650105,4770,2521,75995065,73449577,24496,14843,1650880758,1621729475,0.69,0.71,0.86,0.89,0.13,0.12,0.04,0.04
-54986,55,139,55139,4737,2503,75344960,72799472,4770,2521,75995065,73449577,166994,73329,1498494198,1125316243,99.31,99.29,99.14,99.11,2.84,3.41,5.03,6.47
-55001,27,163,27163,2916,1153,70866177,68257676,2916,1153,70866177,68257676,238136,92374,1094904431,995285532,100,100,100,100,1.22,1.25,6.47,6.86
-55003,27,163,27163,3471,912,8282138,5349029,3471,912,8282138,5349029,238136,92374,1094904431,995285532,100,100,100,100,1.46,0.99,0.76,0.54
-55005,27,003,27003,4422,1577,52395408,49968324,4422,1577,52395408,49968324,330844,126688,1155421127,1095590050,100,100,100,100,1.34,1.24,4.53,4.56
-55006,27,025,27025,213,72,16376935,15619837,4069,1687,207104850,202579802,53887,21172,1145834158,1074486739,5.23,4.27,7.91,7.71,0.4,0.34,1.43,1.45
-55006,27,059,27059,2425,1033,78398131,76405946,4069,1687,207104850,202579802,37816,15321,1169784565,1128701342,59.6,61.23,37.85,37.72,6.41,6.74,6.7,6.77
-55006,27,065,27065,879,367,75797169,74358763,4069,1687,207104850,202579802,16239,7849,1382232188,1350902712,21.6,21.75,36.6,36.71,5.41,4.68,5.48,5.5
-55006,27,115,27115,552,215,36532615,36195256,4069,1687,207104850,202579802,29750,17276,3715488639,3655220961,13.57,12.74,17.64,17.87,1.86,1.24,0.98,0.99
-55007,27,065,27065,1449,782,193159138,190033316,2498,1276,310939312,307813490,16239,7849,1382232188,1350902712,58.01,61.29,62.12,61.74,8.92,9.96,13.97,14.07
-55007,27,115,27115,1049,494,117780174,117780174,2498,1276,310939312,307813490,29750,17276,3715488639,3655220961,41.99,38.71,37.88,38.26,3.53,2.86,3.17,3.22
-55008,27,025,27025,10,4,371905,291236,14685,6098,272196600,260302550,53887,21172,1145834158,1074486739,0.07,0.07,0.14,0.11,0.02,0.02,0.03,0.03
-55008,27,059,27059,14675,6094,271824695,260011314,14685,6098,272196600,260302550,37816,15321,1169784565,1128701342,99.93,99.93,99.86,99.89,38.81,39.78,23.24,23.04
-55009,27,037,27037,793,335,62638902,59243180,8030,3422,321932940,315288538,398552,159598,1519978047,1456007312,9.88,9.79,19.46,18.79,0.2,0.21,4.12,4.07
-55009,27,049,27049,7237,3087,259294038,256045358,8030,3422,321932940,315288538,46183,20337,2021225747,1960200576,90.12,90.21,80.54,81.21,15.67,15.18,12.83,13.06
-55011,27,003,27003,10170,3591,121037525,116674742,10170,3591,121037525,116674742,330844,126688,1155421127,1095590050,100,100,100,100,3.07,2.83,10.48,10.65
-55012,27,025,27025,2078,803,62106556,58998851,2078,803,62106556,58998851,53887,21172,1145834158,1074486739,100,100,100,100,3.86,3.79,5.42,5.49
-55013,27,025,27025,6541,2753,90294235,76014887,6541,2753,90294235,76014887,53887,21172,1145834158,1074486739,100,100,100,100,12.14,13,7.88,7.07
-55014,27,003,27003,27274,9632,56212656,48414961,27274,9632,56212656,48414961,330844,126688,1155421127,1095590050,100,100,100,100,8.24,7.6,4.87,4.42
-55016,27,163,27163,34204,11944,85326467,75534643,34204,11944,85326467,75534643,238136,92374,1094904431,995285532,100,100,100,100,14.36,12.93,7.79,7.59
-55017,27,059,27059,714,293,79400075,78140863,714,293,79400075,78140863,37816,15321,1169784565,1128701342,100,100,100,100,1.89,1.91,6.79,6.92
-55018,27,049,27049,881,361,108957669,108925723,997,404,124856645,124824699,46183,20337,2021225747,1960200576,88.37,89.36,87.27,87.26,1.91,1.78,5.39,5.56
-55018,27,131,27131,116,43,15898976,15898976,997,404,124856645,124824699,64142,24453,1336265593,1283814887,11.63,10.64,12.73,12.74,0.18,0.18,1.19,1.24
-55019,27,131,27131,1817,714,52598814,52392524,1817,714,52598814,52392524,64142,24453,1336265593,1283814887,100,100,100,100,2.83,2.92,3.94,4.08
-55020,27,139,27139,3717,1234,65278186,64704485,3717,1234,65278186,64704485,129928,47124,954106799,923268376,100,100,100,100,2.86,2.62,6.84,7.01
-55021,27,131,27131,29732,11870,499109955,468310383,29732,11870,499109955,468310383,64142,24453,1336265593,1283814887,100,100,100,100,46.35,48.54,37.35,36.48
-55024,27,037,27037,32406,11364,233677524,230566319,32406,11364,233677524,230566319,398552,159598,1519978047,1456007312,100,100,100,100,8.13,7.12,15.37,15.84
-55025,27,003,27003,3728,1390,118951885,111744090,23244,9309,224988706,204069658,330844,126688,1155421127,1095590050,16.04,14.93,52.87,54.76,1.13,1.1,10.3,10.2
-55025,27,025,27025,1161,421,14748559,13934586,23244,9309,224988706,204069658,53887,21172,1145834158,1074486739,4.99,4.52,6.56,6.83,2.15,1.99,1.29,1.3
-55025,27,163,27163,18355,7498,91288262,78390982,23244,9309,224988706,204069658,238136,92374,1094904431,995285532,78.97,80.55,40.57,38.41,7.71,8.12,8.34,7.88
-55026,27,049,27049,455,235,17667199,14242847,455,235,17667199,14242847,46183,20337,2021225747,1960200576,100,100,100,100,0.99,1.16,0.87,0.73
-55027,27,049,27049,2976,1116,304640519,304482410,3031,1138,307296100,307105364,46183,20337,2021225747,1960200576,98.19,98.07,99.14,99.15,6.44,5.49,15.07,15.53
-55027,27,157,27157,55,22,2655581,2622954,3031,1138,307296100,307105364,21676,9997,1423500950,1354518312,1.81,1.93,0.86,0.85,0.25,0.22,0.19,0.19
-55029,27,059,27059,38,16,189730,189730,38,16,189730,189730,37816,15321,1169784565,1128701342,100,100,100,100,0.1,0.1,0.02,0.02
-55030,27,065,27065,300,133,18153679,17912874,1289,687,100355461,98987660,16239,7849,1382232188,1350902712,23.27,19.36,18.09,18.1,1.85,1.69,1.31,1.33
-55030,27,115,27115,989,554,82201782,81074786,1289,687,100355461,98987660,29750,17276,3715488639,3655220961,76.73,80.64,81.91,81.9,3.32,3.21,2.21,2.22
-55031,27,037,27037,2035,760,102633602,102575930,2035,760,102633602,102575930,398552,159598,1519978047,1456007312,100,100,100,100,0.51,0.48,6.75,7.05
-55032,27,025,27025,3616,1472,186772085,180524382,3616,1472,186772085,180524382,53887,21172,1145834158,1074486739,100,100,100,100,6.71,6.95,16.3,16.8
-55033,27,037,27037,27324,11155,284911197,270411875,29488,11991,384908895,365171618,398552,159598,1519978047,1456007312,92.66,93.03,74.02,74.05,6.86,6.99,18.74,18.57
-55033,27,049,27049,73,31,12188364,12182499,29488,11991,384908895,365171618,46183,20337,2021225747,1960200576,0.25,0.26,3.17,3.34,0.16,0.15,0.6,0.62
-55033,27,163,27163,2091,805,87809334,82577244,29488,11991,384908895,365171618,238136,92374,1094904431,995285532,7.09,6.71,22.81,22.61,0.88,0.87,8.02,8.3
-55036,27,115,27115,71,38,738722,738722,71,38,738722,738722,29750,17276,3715488639,3655220961,100,100,100,100,0.24,0.22,0.02,0.02
-55037,27,065,27065,111,67,52633213,52208404,4940,3473,800758769,791634757,16239,7849,1382232188,1350902712,2.25,1.93,6.57,6.6,0.68,0.85,3.81,3.86
-55037,27,115,27115,4829,3406,748125556,739426353,4940,3473,800758769,791634757,29750,17276,3715488639,3655220961,97.75,98.07,93.43,93.4,16.23,19.72,20.14,20.23
-55038,27,003,27003,8085,2628,41785509,36749932,20816,7613,139688727,128385836,330844,126688,1155421127,1095590050,38.84,34.52,29.91,28.62,2.44,2.07,3.62,3.35
-55038,27,123,27123,8,4,449438,440654,20816,7613,139688727,128385836,508640,217197,440499994,394228284,0.04,0.05,0.32,0.34,0,0,0.1,0.11
-55038,27,163,27163,12723,4981,97453780,91195250,20816,7613,139688727,128385836,238136,92374,1094904431,995285532,61.12,65.43,69.76,71.03,5.34,5.39,8.9,9.16
-55040,27,059,27059,12568,4884,264687121,256905073,12568,4884,264687121,256905073,37816,15321,1169784565,1128701342,100,100,100,100,33.23,31.88,22.63,22.76
-55041,27,049,27049,1652,953,67720789,56328416,7601,3812,411087863,379765080,46183,20337,2021225747,1960200576,21.73,25,16.47,14.83,3.58,4.69,3.35,2.87
-55041,27,157,27157,5949,2859,343367074,323436664,7601,3812,411087863,379765080,21676,9997,1423500950,1354518312,78.27,75,83.53,85.17,27.45,28.6,24.12,23.88
-55042,27,163,27163,8840,3126,68982367,63362059,8840,3126,68982367,63362059,238136,92374,1094904431,995285532,100,100,100,100,3.71,3.38,6.3,6.37
-55043,27,163,27163,3540,1522,15499746,10054990,3540,1522,15499746,10054990,238136,92374,1094904431,995285532,100,100,100,100,1.49,1.65,1.42,1.01
-55044,27,037,27037,44113,15340,120973221,116164696,47218,16382,171060821,166071221,398552,159598,1519978047,1456007312,93.42,93.64,70.72,69.95,11.07,9.61,7.96,7.98
-55044,27,139,27139,3105,1042,50087600,49906525,47218,16382,171060821,166071221,129928,47124,954106799,923268376,6.58,6.36,29.28,30.05,2.39,2.21,5.25,5.41
-55045,27,025,27025,7577,3222,108728749,91564729,7577,3222,108728749,91564729,53887,21172,1145834158,1074486739,100,100,100,100,14.06,15.22,9.49,8.52
-55046,27,131,27131,5211,2006,124745024,120737116,5211,2006,124745024,120737116,64142,24453,1336265593,1283814887,100,100,100,100,8.12,8.2,9.34,9.4
-55047,27,163,27163,2528,1230,91279331,77711587,2528,1230,91279331,77711587,238136,92374,1094904431,995285532,100,100,100,100,1.06,1.33,8.34,7.81
-55049,27,131,27131,28,12,8027547,8027547,2476,957,124493067,124307884,64142,24453,1336265593,1283814887,1.13,1.25,6.45,6.46,0.04,0.05,0.6,0.63
-55049,27,147,27147,2448,945,116465520,116280337,2476,957,124493067,124307884,36576,15343,1119752368,1112775578,98.87,98.75,93.55,93.54,6.69,6.16,10.4,10.45
-55051,27,065,27065,9719,4678,524379685,507088168,9719,4678,524379685,507088168,16239,7849,1382232188,1350902712,100,100,100,100,59.85,59.6,37.94,37.54
-55052,27,131,27131,2031,906,109580849,102419845,2090,934,127774624,120613620,64142,24453,1336265593,1283814887,97.18,97,85.76,84.92,3.17,3.71,8.2,7.98
-55052,27,147,27147,25,13,6768741,6768741,2090,934,127774624,120613620,36576,15343,1119752368,1112775578,1.2,1.39,5.3,5.61,0.07,0.08,0.6,0.61
-55052,27,161,27161,34,15,11425034,11425034,2090,934,127774624,120613620,19136,7903,1121395692,1096487773,1.63,1.61,8.94,9.47,0.18,0.19,1.02,1.04
-55053,27,049,27049,164,61,37080564,37075816,1009,376,111276992,111272244,46183,20337,2021225747,1960200576,16.25,16.22,33.32,33.32,0.36,0.3,1.83,1.89
-55053,27,131,27131,845,315,74196428,74196428,1009,376,111276992,111272244,64142,24453,1336265593,1283814887,83.75,83.78,66.68,66.68,1.32,1.29,5.55,5.78
-55054,27,139,27139,2171,705,3091141,3091141,2171,705,3091141,3091141,129928,47124,954106799,923268376,100,100,100,100,1.67,1.5,0.32,0.33
-55055,27,163,27163,3418,1461,9796919,9154927,3418,1461,9796919,9154927,238136,92374,1094904431,995285532,100,100,100,100,1.44,1.58,0.89,0.92
-55056,27,025,27025,11863,4399,185152003,182462335,13546,5024,266832839,262904078,53887,21172,1145834158,1074486739,87.58,87.56,69.39,69.4,22.01,20.78,16.16,16.98
-55056,27,059,27059,1683,625,81680836,80441743,13546,5024,266832839,262904078,37816,15321,1169784565,1128701342,12.42,12.44,30.61,30.6,4.45,4.08,6.98,7.13
-55057,27,037,27037,2910,1106,151082201,147039355,24602,8572,330301823,323636380,398552,159598,1519978047,1456007312,11.83,12.9,45.74,45.43,0.73,0.69,9.94,10.1
-55057,27,131,27131,21692,7466,179219622,176597025,24602,8572,330301823,323636380,64142,24453,1336265593,1283814887,88.17,87.1,54.26,54.57,33.82,30.53,13.41,13.76
-55060,27,147,27147,28911,12102,535143789,530896264,28911,12102,535143789,530896264,36576,15343,1119752368,1112775578,100,100,100,100,79.04,78.88,47.79,47.71
-55063,27,115,27115,9348,4692,447412984,432682826,9348,4692,447412984,432682826,29750,17276,3715488639,3655220961,100,100,100,100,31.42,27.16,12.04,11.84
-55065,27,037,27037,1182,436,84418082,83772393,1201,444,85843139,85120767,398552,159598,1519978047,1456007312,98.42,98.2,98.34,98.42,0.3,0.27,5.55,5.75
-55065,27,049,27049,19,8,1425057,1348374,1201,444,85843139,85120767,46183,20337,2021225747,1960200576,1.58,1.8,1.66,1.58,0.04,0.04,0.07,0.07
-55066,27,049,27049,18564,8413,331204889,309732456,18564,8413,331204889,309732456,46183,20337,2021225747,1960200576,100,100,100,100,40.2,41.37,16.39,15.8
-55068,27,037,27037,27490,9859,116224160,110951041,27490,9859,116224160,110951041,398552,159598,1519978047,1456007312,100,100,100,100,6.9,6.18,7.65,7.62
-55069,27,025,27025,5189,1917,167993621,156000988,5540,2060,204336986,191926027,53887,21172,1145834158,1074486739,93.66,93.06,82.21,81.28,9.63,9.05,14.66,14.52
-55069,27,115,27115,351,143,36343365,35925039,5540,2060,204336986,191926027,29750,17276,3715488639,3655220961,6.34,6.94,17.79,18.72,1.18,0.83,0.98,0.98
-55070,27,003,27003,7224,2650,47078748,46406981,7541,2772,71774727,71016214,330844,126688,1155421127,1095590050,95.8,95.6,65.59,65.35,2.18,2.09,4.07,4.24
-55070,27,059,27059,317,122,24695979,24609233,7541,2772,71774727,71016214,37816,15321,1169784565,1128701342,4.2,4.4,34.41,34.65,0.84,0.8,2.11,2.18
-55071,27,163,27163,5569,2201,16354620,13326726,5569,2201,16354620,13326726,238136,92374,1094904431,995285532,100,100,100,100,2.34,2.38,1.49,1.34
-55072,27,065,27065,153,151,57852890,54300675,4737,2291,825555800,815061521,16239,7849,1382232188,1350902712,3.23,6.59,7.01,6.66,0.94,1.92,4.19,4.02
-55072,27,115,27115,4584,2140,767702910,760760846,4737,2291,825555800,815061521,29750,17276,3715488639,3655220961,96.77,93.41,92.99,93.34,15.41,12.39,20.66,20.81
-55073,27,025,27025,406,134,9614801,9395954,3237,1282,76793047,71794412,53887,21172,1145834158,1074486739,12.54,10.45,12.52,13.09,0.75,0.63,0.84,0.87
-55073,27,163,27163,2831,1148,67178246,62398458,3237,1282,76793047,71794412,238136,92374,1094904431,995285532,87.46,89.55,87.48,86.91,1.19,1.24,6.14,6.27
-55074,27,025,27025,2222,881,92882123,90064863,2222,881,92882123,90064863,53887,21172,1145834158,1074486739,100,100,100,100,4.12,4.16,8.11,8.38
-55075,27,037,27037,20152,8667,15942621,14672640,20152,8667,15942621,14672640,398552,159598,1519978047,1456007312,100,100,100,100,5.06,5.43,1.05,1.01
-55076,27,037,27037,21323,9115,27678384,23592015,21323,9115,27678384,23592015,398552,159598,1519978047,1456007312,100,100,100,100,5.35,5.71,1.82,1.62
-55077,27,037,27037,12572,4955,50442927,48395789,12572,4955,50442927,48395789,398552,159598,1519978047,1456007312,100,100,100,100,3.15,3.1,3.32,3.32
-55079,27,003,27003,3540,1366,47196642,44668048,8329,3188,168813794,158938691,330844,126688,1155421127,1095590050,42.5,42.85,27.96,28.1,1.07,1.08,4.08,4.08
-55079,27,025,27025,4034,1534,68828304,64522816,8329,3188,168813794,158938691,53887,21172,1145834158,1074486739,48.43,48.12,40.77,40.6,7.49,7.25,6.01,6
-55079,27,059,27059,755,288,52788848,49747827,8329,3188,168813794,158938691,37816,15321,1169784565,1128701342,9.06,9.03,31.27,31.3,2,1.88,4.51,4.41
-55080,27,025,27025,994,517,47415854,43568376,2607,1152,175190350,168371198,53887,21172,1145834158,1074486739,38.13,44.88,27.07,25.88,1.84,2.44,4.14,4.05
-55080,27,059,27059,1613,635,127774496,124802822,2607,1152,175190350,168371198,37816,15321,1169784565,1128701342,61.87,55.12,72.93,74.12,4.27,4.14,10.92,11.06
-55082,27,163,27163,35024,14264,217114399,202521108,35024,14264,217114399,202521108,238136,92374,1094904431,995285532,100,100,100,100,14.71,15.44,19.83,20.35
-55084,27,025,27025,1628,722,65185275,62915202,1628,722,65185275,62915202,53887,21172,1145834158,1074486739,100,100,100,100,3.02,3.41,5.69,5.86
-55085,27,037,27037,417,161,2101143,2078720,417,161,2101143,2078720,398552,159598,1519978047,1456007312,100,100,100,100,0.1,0.1,0.14,0.14
-55087,27,131,27131,268,118,528220,528220,268,118,528220,528220,64142,24453,1336265593,1283814887,100,100,100,100,0.42,0.48,0.04,0.04
-55088,27,131,27131,1140,460,67877977,67850991,1704,659,90705782,90362563,64142,24453,1336265593,1283814887,66.9,69.8,74.83,75.09,1.78,1.88,5.08,5.29
-55088,27,139,27139,564,199,22827805,22511572,1704,659,90705782,90362563,129928,47124,954106799,923268376,33.1,30.2,25.17,24.91,0.43,0.42,2.39,2.44
-55089,27,037,27037,308,106,3698391,3676238,1814,715,164879355,156498766,398552,159598,1519978047,1456007312,16.98,14.83,2.24,2.35,0.08,0.07,0.24,0.25
-55089,27,049,27049,1506,609,161180964,152822528,1814,715,164879355,156498766,46183,20337,2021225747,1960200576,83.02,85.17,97.76,97.65,3.26,2.99,7.97,7.8
-55090,27,163,27163,401,192,273060,258327,401,192,273060,258327,238136,92374,1094904431,995285532,100,100,100,100,0.17,0.21,0.02,0.03
-55092,27,003,27003,4485,1852,67963493,58629803,10840,4173,97326646,87237500,330844,126688,1155421127,1095590050,41.37,44.38,69.83,67.21,1.36,1.46,5.88,5.35
-55092,27,025,27025,6355,2321,29363153,28607697,10840,4173,97326646,87237500,53887,21172,1145834158,1074486739,58.63,55.62,30.17,32.79,11.79,10.96,2.56,2.66
-55101,27,123,27123,5592,4156,2242399,2109625,5592,4156,2242399,2109625,508640,217197,440499994,394228284,100,100,100,100,1.1,1.91,0.51,0.54
-55102,27,123,27123,18207,10105,9128233,8421495,18207,10105,9128233,8421495,508640,217197,440499994,394228284,100,100,100,100,3.58,4.65,2.07,2.14
-55103,27,123,27123,12991,5179,5694886,5406933,12991,5179,5694886,5406933,508640,217197,440499994,394228284,100,100,100,100,2.55,2.38,1.29,1.37
-55104,27,123,27123,43248,18536,15844405,15723037,43248,18536,15844405,15723037,508640,217197,440499994,394228284,100,100,100,100,8.5,8.53,3.6,3.99
-55105,27,123,27123,28455,11495,9815392,9322464,28455,11495,9815392,9322464,508640,217197,440499994,394228284,100,100,100,100,5.59,5.29,2.23,2.36
-55106,27,123,27123,52730,19597,23730869,22444943,52730,19597,23730869,22444943,508640,217197,440499994,394228284,100,100,100,100,10.37,9.02,5.39,5.69
-55107,27,123,27123,14776,5704,12023071,10642423,14776,5704,12023071,10642423,508640,217197,440499994,394228284,100,100,100,100,2.91,2.63,2.73,2.7
-55108,27,123,27123,14688,6545,10228956,10178954,14688,6545,10228956,10178954,508640,217197,440499994,394228284,100,100,100,100,2.89,3.01,2.32,2.58
-55109,27,123,27123,31444,13166,32296520,30316358,31444,13166,32296520,30316358,508640,217197,440499994,394228284,100,100,100,100,6.18,6.06,7.33,7.69
-55110,27,003,27003,540,179,3173841,2527287,37759,15844,78584042,62539629,330844,126688,1155421127,1095590050,1.43,1.13,4.04,4.04,0.16,0.14,0.27,0.23
-55110,27,123,27123,33692,14246,52696979,41513711,37759,15844,78584042,62539629,508640,217197,440499994,394228284,89.23,89.91,67.06,66.38,6.62,6.56,11.96,10.53
-55110,27,163,27163,3527,1419,22713222,18498631,37759,15844,78584042,62539629,238136,92374,1094904431,995285532,9.34,8.96,28.9,29.58,1.48,1.54,2.07,1.86
-55111,27,053,27053,0,0,6507184,5850253,0,0,6507184,5850253,1152425,509469,1570949262,1433793826,0,0,100,100,0,0,0.41,0.41
-55112,27,123,27123,43250,17803,54251078,49440028,43250,17803,54251078,49440028,508640,217197,440499994,394228284,100,100,100,100,8.5,8.2,12.32,12.54
-55113,27,123,27123,38994,18138,40849557,38652209,38994,18138,40849557,38652209,508640,217197,440499994,394228284,100,100,100,100,7.67,8.35,9.27,9.8
-55114,27,123,27123,3100,1610,3448742,3370763,3100,1610,3448742,3370763,508640,217197,440499994,394228284,100,100,100,100,0.61,0.74,0.78,0.86
-55115,27,163,27163,8607,3255,22205045,17368712,8607,3255,22205045,17368712,238136,92374,1094904431,995285532,100,100,100,100,3.61,3.52,2.03,1.75
-55116,27,123,27123,23851,11971,15499886,14132168,23851,11971,15499886,14132168,508640,217197,440499994,394228284,100,100,100,100,4.69,5.51,3.52,3.58
-55117,27,123,27123,41649,17000,25522273,23910078,41649,17000,25522273,23910078,508640,217197,440499994,394228284,100,100,100,100,8.19,7.83,5.79,6.07
-55118,27,037,27037,27365,12555,28898976,27255266,27548,12638,28954116,27310406,398552,159598,1519978047,1456007312,99.34,99.34,99.81,99.8,6.87,7.87,1.9,1.87
-55118,27,123,27123,183,83,55140,55140,27548,12638,28954116,27310406,508640,217197,440499994,394228284,0.66,0.66,0.19,0.2,0.04,0.04,0.01,0.01
-55119,27,123,27123,38966,15962,42137803,36495450,38966,15962,42137803,36495450,508640,217197,440499994,394228284,100,100,100,100,7.66,7.35,9.57,9.26
-55120,27,037,27037,4352,1824,16076753,13830434,4352,1824,16076753,13830434,398552,159598,1519978047,1456007312,100,100,100,100,1.09,1.14,1.06,0.95
-55121,27,037,27037,7861,3816,25336818,23389920,7861,3816,25336818,23389920,398552,159598,1519978047,1456007312,100,100,100,100,1.97,2.39,1.67,1.61
-55122,27,037,27037,30346,13074,30702935,29177683,30346,13074,30702935,29177683,398552,159598,1519978047,1456007312,100,100,100,100,7.61,8.19,2.02,2
-55123,27,037,27037,26030,9533,30970361,28463118,26030,9533,30970361,28463118,398552,159598,1519978047,1456007312,100,100,100,100,6.53,5.97,2.04,1.95
-55124,27,037,27037,49084,19600,45331469,43542873,49084,19600,45331469,43542873,398552,159598,1519978047,1456007312,100,100,100,100,12.32,12.28,2.98,2.99
-55125,27,163,27163,43281,16873,40788954,39555892,43281,16873,40788954,39555892,238136,92374,1094904431,995285532,100,100,100,100,18.17,18.27,3.73,3.97
-55126,27,003,27003,69,27,1472713,1468136,25140,10866,37035561,31027596,330844,126688,1155421127,1095590050,0.27,0.25,3.98,4.73,0.02,0.02,0.13,0.13
-55126,27,123,27123,25071,10839,35562848,29559460,25140,10866,37035561,31027596,508640,217197,440499994,394228284,99.73,99.75,96.02,95.27,4.93,4.99,8.07,7.5
-55127,27,123,27123,16782,7177,41848210,34955433,16782,7177,41848210,34955433,508640,217197,440499994,394228284,100,100,100,100,3.3,3.3,9.5,8.87
-55128,27,163,27163,28113,11690,30150126,29129584,28113,11690,30150126,29129584,238136,92374,1094904431,995285532,100,100,100,100,11.81,12.66,2.75,2.93
-55129,27,163,27163,18697,6700,51542238,50639707,18697,6700,51542238,50639707,238136,92374,1094904431,995285532,100,100,100,100,7.85,7.25,4.71,5.09
-55130,27,123,27123,17575,5908,5194618,5190307,17575,5908,5194618,5190307,508640,217197,440499994,394228284,100,100,100,100,3.46,2.72,1.18,1.32
-55150,27,037,27037,198,82,1012613,889256,198,82,1012613,889256,398552,159598,1519978047,1456007312,100,100,100,100,0.05,0.05,0.07,0.06
-55155,27,123,27123,0,0,132079,132079,0,0,132079,132079,508640,217197,440499994,394228284,0,0,100,100,0,0,0.03,0.03
-55301,27,171,27171,10535,3807,27075955,26327334,10535,3807,27075955,26327334,124700,49000,1849946393,1713164762,100,100,100,100,8.45,7.77,1.46,1.54
-55302,27,171,27171,7107,3966,219067684,185168854,7107,3966,219067684,185168854,124700,49000,1849946393,1713164762,100,100,100,100,5.7,8.09,11.84,10.81
-55303,27,003,27003,46352,17737,169763989,163428478,46352,17737,169763989,163428478,330844,126688,1155421127,1095590050,100,100,100,100,14.01,14,14.69,14.92
-55304,27,003,27003,45967,15497,184967428,178924421,45967,15497,184967428,178924421,330844,126688,1155421127,1095590050,100,100,100,100,13.89,12.23,16.01,16.33
-55305,27,053,27053,19368,10009,24492913,24111531,19368,10009,24492913,24111531,1152425,509469,1570949262,1433793826,100,100,100,100,1.68,1.96,1.56,1.68
-55306,27,037,27037,15935,6776,18051720,16131914,15935,6776,18051720,16131914,398552,159598,1519978047,1456007312,100,100,100,100,4,4.25,1.19,1.11
-55307,27,143,27143,3227,1434,203762614,201263791,3227,1434,203762614,201263791,15226,6582,1555342082,1524931233,100,100,100,100,21.19,21.79,13.1,13.2
-55308,27,141,27141,9064,3099,164767877,162526753,9064,3099,164767877,162526753,88499,32379,1168196798,1121251072,100,100,100,100,10.24,9.57,14.1,14.5
-55309,27,141,27141,18208,6454,179201556,169806921,18208,6454,179201556,169806921,88499,32379,1168196798,1121251072,100,100,100,100,20.57,19.93,15.34,15.14
-55310,27,129,27129,1519,763,257066233,257066233,1519,763,257066233,257066233,15730,7355,2556567327,2545715384,100,100,100,100,9.66,10.37,10.06,10.1
-55311,27,053,27053,32788,11985,44682131,42475986,32788,11985,44682131,42475986,1152425,509469,1570949262,1433793826,100,100,100,100,2.85,2.35,2.84,2.96
-55312,27,085,27085,1595,698,191243020,184550337,1595,698,191243020,184550337,36651,15760,1309310802,1272903896,100,100,100,100,4.35,4.43,14.61,14.5
-55313,27,171,27171,23255,8914,309651005,281568568,23255,8914,309651005,281568568,124700,49000,1849946393,1713164762,100,100,100,100,18.65,18.19,16.74,16.44
-55314,27,129,27129,1189,560,148903065,140107638,1337,614,201627082,192831655,15730,7355,2556567327,2545715384,88.93,91.21,73.85,72.66,7.56,7.61,5.82,5.5
-55314,27,143,27143,148,54,52724017,52724017,1337,614,201627082,192831655,15226,6582,1555342082,1524931233,11.07,8.79,26.15,27.34,0.97,0.82,3.39,3.46
-55315,27,019,27019,4762,1651,70626759,68684244,4762,1651,70626759,68684244,91042,34536,974127102,917697893,100,100,100,100,5.23,4.78,7.25,7.48
-55316,27,053,27053,23089,8598,22611508,21153855,23089,8598,22611508,21153855,1152425,509469,1570949262,1433793826,100,100,100,100,2,1.69,1.44,1.48
-55317,27,019,27019,19218,7366,35620285,32449109,19218,7366,35620285,32449109,91042,34536,974127102,917697893,100,100,100,100,21.11,21.33,3.66,3.54
-55318,27,019,27019,25493,9963,112330964,107186289,25493,9963,112330964,107186289,91042,34536,974127102,917697893,100,100,100,100,28,28.85,11.53,11.68
-55319,27,141,27141,5038,2186,197621068,183986709,5038,2186,197621068,183986709,88499,32379,1168196798,1121251072,100,100,100,100,5.69,6.75,16.92,16.41
-55320,27,145,27145,1923,725,85508936,82056965,4973,2038,144102163,137570244,150642,61974,3599957541,3478697697,38.67,35.57,59.34,59.65,1.28,1.17,2.38,2.36
-55320,27,171,27171,3050,1313,58593227,55513279,4973,2038,144102163,137570244,124700,49000,1849946393,1713164762,61.33,64.43,40.66,40.35,2.45,2.68,3.17,3.24
-55321,27,171,27171,5341,1986,216239972,210279229,5341,1986,216239972,210279229,124700,49000,1849946393,1713164762,100,100,100,100,4.28,4.05,11.69,12.27
-55322,27,019,27019,3163,1171,147012226,141397234,3163,1171,147012226,141397234,91042,34536,974127102,917697893,100,100,100,100,3.47,3.39,15.09,15.41
-55324,27,093,27093,1234,683,109441956,91003444,1234,683,109441956,91003444,23300,10674,1669959610,1575174983,100,100,100,100,5.3,6.4,6.55,5.78
-55325,27,093,27093,4610,2073,224564479,199234147,4610,2073,224564479,199234147,23300,10674,1669959610,1575174983,100,100,100,100,19.79,19.42,13.45,12.65
-55327,27,053,27053,3416,1257,50655605,46179824,3478,1278,50871404,46338943,1152425,509469,1570949262,1433793826,98.22,98.36,99.58,99.66,0.3,0.25,3.22,3.22
-55327,27,171,27171,62,21,215799,159119,3478,1278,50871404,46338943,124700,49000,1849946393,1713164762,1.78,1.64,0.42,0.34,0.05,0.04,0.01,0.01
-55328,27,019,27019,102,41,4436484,4291811,8541,3211,118980640,115366787,91042,34536,974127102,917697893,1.19,1.28,3.73,3.72,0.11,0.12,0.46,0.47
-55328,27,053,27053,223,83,8340695,7924567,8541,3211,118980640,115366787,1152425,509469,1570949262,1433793826,2.61,2.58,7.01,6.87,0.02,0.02,0.53,0.55
-55328,27,171,27171,8216,3087,106203461,103150409,8541,3211,118980640,115366787,124700,49000,1849946393,1713164762,96.19,96.14,89.26,89.41,6.59,6.3,5.74,6.02
-55329,27,093,27093,1057,466,90296972,89441734,2118,1014,134562062,130337752,23300,10674,1669959610,1575174983,49.91,45.96,67.1,68.62,4.54,4.37,5.41,5.68
-55329,27,145,27145,1061,548,44265090,40896018,2118,1014,134562062,130337752,150642,61974,3599957541,3478697697,50.09,54.04,32.9,31.38,0.7,0.88,1.23,1.18
-55330,27,003,27003,1730,580,58822686,56072574,36440,13497,281141393,270634587,330844,126688,1155421127,1095590050,4.75,4.3,20.92,20.72,0.52,0.46,5.09,5.12
-55330,27,141,27141,26511,9830,177959430,172066184,36440,13497,281141393,270634587,88499,32379,1168196798,1121251072,72.75,72.83,63.3,63.58,29.96,30.36,15.23,15.35
-55330,27,171,27171,8199,3087,44359277,42495829,36440,13497,281141393,270634587,124700,49000,1849946393,1713164762,22.5,22.87,15.78,15.7,6.57,6.3,2.4,2.48
-55331,27,019,27019,4299,1488,17068925,12018485,17524,7203,57124815,38733455,91042,34536,974127102,917697893,24.53,20.66,29.88,31.03,4.72,4.31,1.75,1.31
-55331,27,053,27053,13225,5715,40055890,26714970,17524,7203,57124815,38733455,1152425,509469,1570949262,1433793826,75.47,79.34,70.12,68.97,1.15,1.12,2.55,1.86
-55332,27,103,27103,119,46,49012346,48838425,1922,898,297757323,296664087,32727,12873,1208856769,1161593168,6.19,5.12,16.46,16.46,0.36,0.36,4.05,4.2
-55332,27,129,27129,1803,852,248744977,247825662,1922,898,297757323,296664087,15730,7355,2556567327,2545715384,93.81,94.88,83.54,83.54,11.46,11.58,9.73,9.74
-55333,27,015,27015,5,4,8884711,8779153,856,387,183849906,183511287,25893,11493,1601815493,1582716009,0.58,1.03,4.83,4.78,0.02,0.03,0.55,0.55
-55333,27,127,27127,13,5,6961248,6806438,856,387,183849906,183511287,16059,7272,2283722235,2275491832,1.52,1.29,3.79,3.71,0.08,0.07,0.3,0.3
-55333,27,129,27129,838,378,168003947,167925696,856,387,183849906,183511287,15730,7355,2556567327,2545715384,97.9,97.67,91.38,91.51,5.33,5.14,6.57,6.6
-55334,27,103,27103,56,25,21814095,21376529,2939,1277,227693021,222692419,32727,12873,1208856769,1161593168,1.91,1.96,9.58,9.6,0.17,0.19,1.8,1.84
-55334,27,143,27143,2883,1252,205878926,201315890,2939,1277,227693021,222692419,15226,6582,1555342082,1524931233,98.09,98.04,90.42,90.4,18.93,19.02,13.24,13.2
-55335,27,103,27103,137,62,47904448,47040211,1629,746,296837132,292200778,32727,12873,1208856769,1161593168,8.41,8.31,16.14,16.1,0.42,0.48,3.96,4.05
-55335,27,143,27143,1492,684,248932684,245160567,1629,746,296837132,292200778,15226,6582,1555342082,1524931233,91.59,91.69,83.86,83.9,9.8,10.39,16.01,16.08
-55336,27,085,27085,7736,3268,283681574,282450899,8054,3391,339332216,330631364,36651,15760,1309310802,1272903896,96.05,96.37,83.6,85.43,21.11,20.74,21.67,22.19
-55336,27,143,27143,318,123,55650642,48180465,8054,3391,339332216,330631364,15226,6582,1555342082,1524931233,3.95,3.63,16.4,14.57,2.09,1.87,3.58,3.16
-55337,27,037,27037,44356,18979,51671150,48365503,44356,18979,51671150,48365503,398552,159598,1519978047,1456007312,100,100,100,100,11.13,11.89,3.4,3.32
-55338,27,143,27143,1123,462,106248221,102558200,1123,462,106248221,102558200,15226,6582,1555342082,1524931233,100,100,100,100,7.38,7.02,6.83,6.73
-55339,27,019,27019,833,333,37792613,37105301,988,385,58701722,58014410,91042,34536,974127102,917697893,84.31,86.49,64.38,63.96,0.91,0.96,3.88,4.04
-55339,27,143,27143,155,52,20909109,20909109,988,385,58701722,58014410,15226,6582,1555342082,1524931233,15.69,13.51,35.62,36.04,1.02,0.79,1.34,1.37
-55340,27,053,27053,6327,2236,95239155,93554197,6327,2236,95239155,93554197,1152425,509469,1570949262,1433793826,100,100,100,100,0.55,0.44,6.06,6.52
-55341,27,053,27053,577,193,5392687,5196485,2850,919,12681519,12320300,1152425,509469,1570949262,1433793826,20.25,21,42.52,42.18,0.05,0.04,0.34,0.36
-55341,27,171,27171,2273,726,7288832,7123815,2850,919,12681519,12320300,124700,49000,1849946393,1713164762,79.75,79,57.48,57.82,1.82,1.48,0.39,0.42
-55342,27,129,27129,2015,991,418606830,418590995,2015,991,418606830,418590995,15730,7355,2556567327,2545715384,100,100,100,100,12.81,13.47,16.37,16.44
-55343,27,053,27053,23933,12366,20241582,19566965,23933,12366,20241582,19566965,1152425,509469,1570949262,1433793826,100,100,100,100,2.08,2.43,1.29,1.36
-55344,27,053,27053,13952,7322,24611926,22806159,13952,7322,24611926,22806159,1152425,509469,1570949262,1433793826,100,100,100,100,1.21,1.44,1.57,1.59
-55345,27,053,27053,21147,8764,30187154,29454820,21147,8764,30187154,29454820,1152425,509469,1570949262,1433793826,100,100,100,100,1.84,1.72,1.92,2.05
-55346,27,053,27053,16776,6431,18447048,17821647,16776,6431,18447048,17821647,1152425,509469,1570949262,1433793826,100,100,100,100,1.46,1.26,1.17,1.24
-55347,27,053,27053,30069,11322,48209994,43584868,30069,11322,48209994,43584868,1152425,509469,1570949262,1433793826,100,100,100,100,2.61,2.22,3.07,3.04
-55349,27,171,27171,3887,1650,180223817,169834008,3887,1650,180223817,169834008,124700,49000,1849946393,1713164762,100,100,100,100,3.12,3.37,9.74,9.91
-55350,27,085,27085,17849,7840,380533464,361450914,18280,8040,437996114,416217964,36651,15760,1309310802,1272903896,97.64,97.51,86.88,86.84,48.7,49.75,29.06,28.4
-55350,27,093,27093,389,185,48407531,45711931,18280,8040,437996114,416217964,23300,10674,1669959610,1575174983,2.13,2.3,11.05,10.98,1.67,1.73,2.9,2.9
-55350,27,129,27129,42,15,9055119,9055119,18280,8040,437996114,416217964,15730,7355,2556567327,2545715384,0.23,0.19,2.07,2.18,0.27,0.2,0.35,0.36
-55352,27,139,27139,8751,3153,177116007,172877616,8751,3153,177116007,172877616,129928,47124,954106799,923268376,100,100,100,100,6.74,6.69,18.56,18.72
-55353,27,093,27093,618,237,73222632,72135840,3162,1394,227969615,218574537,23300,10674,1669959610,1575174983,19.54,17,32.12,33,2.65,2.22,4.38,4.58
-55353,27,145,27145,2544,1157,154746983,146438697,3162,1394,227969615,218574537,150642,61974,3599957541,3478697697,80.46,83,67.88,67,1.69,1.87,4.3,4.21
-55354,27,085,27085,2741,1098,82665241,82148404,2741,1098,82665241,82148404,36651,15760,1309310802,1272903896,100,100,100,100,7.48,6.97,6.31,6.45
-55355,27,093,27093,9656,4368,476096910,447864673,9656,4368,476096910,447864673,23300,10674,1669959610,1575174983,100,100,100,100,41.44,40.92,28.51,28.43
-55356,27,053,27053,5311,2186,36471799,32317269,5311,2186,36471799,32317269,1152425,509469,1570949262,1433793826,100,100,100,100,0.46,0.43,2.32,2.25
-55357,27,053,27053,3246,1168,50757076,49197381,3246,1168,50757076,49197381,1152425,509469,1570949262,1433793826,100,100,100,100,0.28,0.23,3.23,3.43
-55358,27,171,27171,4982,2415,156932811,141957501,4982,2415,156932811,141957501,124700,49000,1849946393,1713164762,100,100,100,100,4,4.93,8.48,8.29
-55359,27,053,27053,5954,2363,117842194,108466948,5954,2363,117842194,108466948,1152425,509469,1570949262,1433793826,100,100,100,100,0.52,0.46,7.5,7.57
-55360,27,019,27019,2672,972,83966088,82972691,2672,972,83966088,82972691,91042,34536,974127102,917697893,100,100,100,100,2.93,2.81,8.62,9.04
-55362,27,171,27171,18089,6967,169533407,158409554,18089,6967,169533407,158409554,124700,49000,1849946393,1713164762,100,100,100,100,14.51,14.22,9.16,9.25
-55363,27,171,27171,4496,1709,70746444,70189268,4496,1709,70746444,70189268,124700,49000,1849946393,1713164762,100,100,100,100,3.61,3.49,3.82,4.1
-55364,27,053,27053,14353,6455,58458554,40575949,14353,6455,58458554,40575949,1152425,509469,1570949262,1433793826,100,100,100,100,1.25,1.27,3.72,2.83
-55366,27,143,27143,443,199,1757332,1757332,443,199,1757332,1757332,15226,6582,1555342082,1524931233,100,100,100,100,2.91,3.02,0.11,0.12
-55367,27,019,27019,913,386,53814032,53274898,913,386,53814032,53274898,91042,34536,974127102,917697893,100,100,100,100,1,1.12,5.52,5.81
-55368,27,019,27019,2218,946,97073011,94871419,2218,946,97073011,94871419,91042,34536,974127102,917697893,100,100,100,100,2.44,2.74,9.97,10.34
-55369,27,053,27053,32524,13320,66443877,62062075,32524,13320,66443877,62062075,1152425,509469,1570949262,1433793826,100,100,100,100,2.82,2.61,4.23,4.33
-55370,27,085,27085,802,326,59428981,59327539,802,326,59428981,59327539,36651,15760,1309310802,1272903896,100,100,100,100,2.19,2.07,4.54,4.66
-55371,27,009,27009,112,43,9322988,9319732,16442,6445,492265381,477833435,38451,16140,1069814613,1057494279,0.68,0.67,1.89,1.95,0.29,0.27,0.87,0.88
-55371,27,059,27059,2194,948,136518366,127876788,16442,6445,492265381,477833435,37816,15321,1169784565,1128701342,13.34,14.71,27.73,26.76,5.8,6.19,11.67,11.33
-55371,27,095,27095,8549,3499,215032192,212177261,16442,6445,492265381,477833435,26097,12750,1765287171,1482276069,51.99,54.29,43.68,44.4,32.76,27.44,12.18,14.31
-55371,27,141,27141,5587,1955,131391835,128459654,16442,6445,492265381,477833435,88499,32379,1168196798,1121251072,33.98,30.33,26.69,26.88,6.31,6.04,11.25,11.46
-55372,27,139,27139,29811,11286,159600697,149034281,29811,11286,159600697,149034281,129928,47124,954106799,923268376,100,100,100,100,22.94,23.95,16.73,16.14
-55373,27,053,27053,1497,600,23393181,21191641,5600,2182,30805900,28475131,1152425,509469,1570949262,1433793826,26.73,27.5,75.94,74.42,0.13,0.12,1.49,1.48
-55373,27,171,27171,4103,1582,7412719,7283490,5600,2182,30805900,28475131,124700,49000,1849946393,1713164762,73.27,72.5,24.06,25.58,3.29,3.23,0.4,0.43
-55374,27,053,27053,12846,4487,90112342,87843224,13576,4726,94447705,92056949,1152425,509469,1570949262,1433793826,94.62,94.94,95.41,95.42,1.11,0.88,5.74,6.13
-55374,27,171,27171,730,239,4335363,4213725,13576,4726,94447705,92056949,124700,49000,1849946393,1713164762,5.38,5.06,4.59,4.58,0.59,0.49,0.23,0.25
-55375,27,019,27019,594,65,4950514,4358465,4518,1480,14397607,13589839,91042,34536,974127102,917697893,13.15,4.39,34.38,32.07,0.65,0.19,0.51,0.47
-55375,27,053,27053,3924,1415,9447093,9231374,4518,1480,14397607,13589839,1152425,509469,1570949262,1433793826,86.85,95.61,65.62,67.93,0.34,0.28,0.6,0.64
-55376,27,171,27171,16242,5422,87816382,78157634,16242,5422,87816382,78157634,124700,49000,1849946393,1713164762,100,100,100,100,13.02,11.07,4.75,4.56
-55378,27,139,27139,26958,9417,39558020,37568057,26958,9417,39558020,37568057,129928,47124,954106799,923268376,100,100,100,100,20.75,19.98,4.15,4.07
-55379,27,139,27139,40416,14583,158810788,152636075,40416,14583,158810788,152636075,129928,47124,954106799,923268376,100,100,100,100,31.11,30.95,16.64,16.53
-55381,27,085,27085,2063,865,121518436,118125766,2063,865,121518436,118125766,36651,15760,1309310802,1272903896,100,100,100,100,5.63,5.49,9.28,9.28
-55382,27,093,27093,333,216,23664993,20394812,3563,2107,198896495,182889331,23300,10674,1669959610,1575174983,9.35,10.25,11.9,11.15,1.43,2.02,1.42,1.29
-55382,27,145,27145,1845,937,102113344,96881852,3563,2107,198896495,182889331,150642,61974,3599957541,3478697697,51.78,44.47,51.34,52.97,1.22,1.51,2.84,2.79
-55382,27,171,27171,1385,954,73118158,65612667,3563,2107,198896495,182889331,124700,49000,1849946393,1713164762,38.87,45.28,36.76,35.88,1.11,1.95,3.95,3.83
-55384,27,053,27053,1672,1073,1591001,926865,1672,1073,1591001,926865,1152425,509469,1570949262,1433793826,100,100,100,100,0.15,0.21,0.1,0.06
-55385,27,085,27085,1002,448,136535875,133703767,1291,575,253715194,250411995,36651,15760,1309310802,1272903896,77.61,77.91,53.81,53.39,2.73,2.84,10.43,10.5
-55385,27,129,27129,204,89,75299787,75210612,1291,575,253715194,250411995,15730,7355,2556567327,2545715384,15.8,15.48,29.68,30.03,1.3,1.21,2.95,2.95
-55385,27,143,27143,85,38,41879532,41497616,1291,575,253715194,250411995,15226,6582,1555342082,1524931233,6.58,6.61,16.51,16.57,0.56,0.58,2.69,2.72
-55386,27,019,27019,6330,2186,19731832,17461229,6330,2186,19731832,17461229,91042,34536,974127102,917697893,100,100,100,100,6.95,6.33,2.03,1.9
-55387,27,019,27019,12233,4669,100353437,80649294,12249,4675,101178800,81229006,91042,34536,974127102,917697893,99.87,99.87,99.18,99.29,13.44,13.52,10.3,8.79
-55387,27,053,27053,16,6,825363,579712,12249,4675,101178800,81229006,1152425,509469,1570949262,1433793826,0.13,0.13,0.82,0.71,0,0,0.05,0.04
-55388,27,019,27019,5290,2141,88866744,84518528,5619,2265,108571017,103928644,91042,34536,974127102,917697893,94.14,94.53,81.85,81.32,5.81,6.2,9.12,9.21
-55388,27,053,27053,54,22,4443537,4433052,5619,2265,108571017,103928644,1152425,509469,1570949262,1433793826,0.96,0.97,4.09,4.27,0,0,0.28,0.31
-55388,27,171,27171,275,102,15260736,14977064,5619,2265,108571017,103928644,124700,49000,1849946393,1713164762,4.89,4.5,14.06,14.41,0.22,0.21,0.82,0.87
-55389,27,093,27093,2224,963,129755060,126157028,2643,1123,196674364,192544521,23300,10674,1669959610,1575174983,84.15,85.75,65.97,65.52,9.55,9.02,7.77,8.01
-55389,27,145,27145,419,160,66919304,66387493,2643,1123,196674364,192544521,150642,61974,3599957541,3478697697,15.85,14.25,34.03,34.48,0.28,0.26,1.86,1.91
-55390,27,171,27171,2473,1053,95871344,90743415,2473,1053,95871344,90743415,124700,49000,1849946393,1713164762,100,100,100,100,1.98,2.15,5.18,5.3
-55391,27,053,27053,14486,6545,72346004,44026580,14486,6545,72346004,44026580,1152425,509469,1570949262,1433793826,100,100,100,100,1.26,1.28,4.61,3.07
-55395,27,019,27019,43,16,3267697,3267236,2892,1228,55666049,53109259,91042,34536,974127102,917697893,1.49,1.3,5.87,6.15,0.05,0.05,0.34,0.36
-55395,27,085,27085,2849,1212,52398352,49842023,2892,1228,55666049,53109259,36651,15760,1309310802,1272903896,98.51,98.7,94.13,93.85,7.77,7.69,4,3.92
-55396,27,143,27143,2252,1015,278124844,275773429,2252,1015,278124844,275773429,15226,6582,1555342082,1524931233,100,100,100,100,14.79,15.42,17.88,18.08
-55397,27,019,27019,2679,1065,72487246,69349269,2693,1070,73793105,70653516,91042,34536,974127102,917697893,99.48,99.53,98.23,98.15,2.94,3.08,7.44,7.56
-55397,27,085,27085,14,5,1305859,1304247,2693,1070,73793105,70653516,36651,15760,1309310802,1272903896,0.52,0.47,1.77,1.85,0.04,0.03,0.1,0.1
-55398,27,059,27059,734,345,34493001,33020871,15540,5707,211634333,201263231,37816,15321,1169784565,1128701342,4.72,6.05,16.3,16.41,1.94,2.25,2.95,2.93
-55398,27,141,27141,14806,5362,177141332,168242360,15540,5707,211634333,201263231,88499,32379,1168196798,1121251072,95.28,93.95,83.7,83.59,16.73,16.56,15.16,15
-55401,27,053,27053,6590,4912,2708372,2331229,6590,4912,2708372,2331229,1152425,509469,1570949262,1433793826,100,100,100,100,0.57,0.96,0.17,0.16
-55402,27,053,27053,368,373,461184,461184,368,373,461184,461184,1152425,509469,1570949262,1433793826,100,100,100,100,0.03,0.07,0.03,0.03
-55403,27,053,27053,14985,11573,3589768,3548279,14985,11573,3589768,3548279,1152425,509469,1570949262,1433793826,100,100,100,100,1.3,2.27,0.23,0.25
-55404,27,053,27053,27121,13337,4582447,4582447,27121,13337,4582447,4582447,1152425,509469,1570949262,1433793826,100,100,100,100,2.35,2.62,0.29,0.32
-55405,27,053,27053,15411,7822,7678426,7184962,15411,7822,7678426,7184962,1152425,509469,1570949262,1433793826,100,100,100,100,1.34,1.54,0.49,0.5
-55406,27,053,27053,32112,15589,13530582,12957253,32112,15589,13530582,12957253,1152425,509469,1570949262,1433793826,100,100,100,100,2.79,3.06,0.86,0.9
-55407,27,053,27053,37881,15090,10730792,10469606,37881,15090,10730792,10469606,1152425,509469,1570949262,1433793826,100,100,100,100,3.29,2.96,0.68,0.73
-55408,27,053,27053,29981,15677,8457318,7038674,29981,15677,8457318,7038674,1152425,509469,1570949262,1433793826,100,100,100,100,2.6,3.08,0.54,0.49
-55409,27,053,27053,11615,5149,3216080,3216080,11615,5149,3216080,3216080,1152425,509469,1570949262,1433793826,100,100,100,100,1.01,1.01,0.2,0.22
-55410,27,053,27053,19340,8998,7708748,7708748,19340,8998,7708748,7708748,1152425,509469,1570949262,1433793826,100,100,100,100,1.68,1.77,0.49,0.54
-55411,27,053,27053,27428,10002,10730835,10550888,27428,10002,10730835,10550888,1152425,509469,1570949262,1433793826,100,100,100,100,2.38,1.96,0.68,0.74
-55412,27,053,27053,22148,9193,9617568,9407292,22148,9193,9617568,9407292,1152425,509469,1570949262,1433793826,100,100,100,100,1.92,1.8,0.61,0.66
-55413,27,053,27053,12934,6733,8842403,8538461,12934,6733,8842403,8538461,1152425,509469,1570949262,1433793826,100,100,100,100,1.12,1.32,0.56,0.6
-55414,27,053,27053,28495,10797,9186438,8751408,28495,10797,9186438,8751408,1152425,509469,1570949262,1433793826,100,100,100,100,2.47,2.12,0.58,0.61
-55415,27,053,27053,2604,1297,1121235,1121235,2604,1297,1121235,1121235,1152425,509469,1570949262,1433793826,100,100,100,100,0.23,0.25,0.07,0.08
-55416,27,053,27053,29027,16125,21588461,18938584,29027,16125,21588461,18938584,1152425,509469,1570949262,1433793826,100,100,100,100,2.52,3.17,1.37,1.32
-55417,27,053,27053,24875,11247,15566354,14084959,24875,11247,15566354,14084959,1152425,509469,1570949262,1433793826,100,100,100,100,2.16,2.21,0.99,0.98
-55418,27,053,27053,29332,13748,17838033,17503310,29472,13862,17887760,17553037,1152425,509469,1570949262,1433793826,99.52,99.18,99.72,99.72,2.55,2.7,1.14,1.22
-55418,27,123,27123,140,114,49727,49727,29472,13862,17887760,17553037,508640,217197,440499994,394228284,0.48,0.82,0.28,0.28,0.03,0.05,0.01,0.01
-55419,27,053,27053,26406,11202,11163808,10872252,26406,11202,11163808,10872252,1152425,509469,1570949262,1433793826,100,100,100,100,2.29,2.2,0.71,0.76
-55420,27,053,27053,21767,9548,17068137,16819429,21767,9548,17068137,16819429,1152425,509469,1570949262,1433793826,100,100,100,100,1.89,1.87,1.09,1.17
-55421,27,003,27003,23833,10526,15826681,15024540,27035,12360,17123680,16272408,330844,126688,1155421127,1095590050,88.16,85.16,92.43,92.33,7.2,8.31,1.37,1.37
-55421,27,053,27053,132,55,123629,95250,27035,12360,17123680,16272408,1152425,509469,1570949262,1433793826,0.49,0.44,0.72,0.59,0.01,0.01,0.01,0.01
-55421,27,123,27123,3070,1779,1173370,1152618,27035,12360,17123680,16272408,508640,217197,440499994,394228284,11.36,14.39,6.85,7.08,0.6,0.82,0.27,0.29
-55422,27,053,27053,27820,12766,22690339,21477197,27820,12766,22690339,21477197,1152425,509469,1570949262,1433793826,100,100,100,100,2.41,2.51,1.44,1.5
-55423,27,053,27053,35375,15797,18441928,18071306,35375,15797,18441928,18071306,1152425,509469,1570949262,1433793826,100,100,100,100,3.07,3.1,1.17,1.26
-55424,27,053,27053,9685,3612,6465985,6264144,9685,3612,6465985,6264144,1152425,509469,1570949262,1433793826,100,100,100,100,0.84,0.71,0.41,0.44
-55425,27,053,27053,8952,4095,17829850,12214239,8952,4095,17829850,12214239,1152425,509469,1570949262,1433793826,100,100,100,100,0.78,0.8,1.13,0.85
-55426,27,053,27053,24945,12256,18018942,17526016,24945,12256,18018942,17526016,1152425,509469,1570949262,1433793826,100,100,100,100,2.16,2.41,1.15,1.22
-55427,27,053,27053,22919,10237,18809503,18609501,22919,10237,18809503,18609501,1152425,509469,1570949262,1433793826,100,100,100,100,1.99,2.01,1.2,1.3
-55428,27,053,27053,29357,12563,21065913,20919220,29357,12563,21065913,20919220,1152425,509469,1570949262,1433793826,100,100,100,100,2.55,2.47,1.34,1.46
-55429,27,053,27053,26751,10585,16883983,16087193,26751,10585,16883983,16087193,1152425,509469,1570949262,1433793826,100,100,100,100,2.32,2.08,1.07,1.12
-55430,27,053,27053,21508,8484,15159695,14617903,21508,8484,15159695,14617903,1152425,509469,1570949262,1433793826,100,100,100,100,1.87,1.67,0.97,1.02
-55431,27,053,27053,18435,8181,21292347,20665925,18435,8181,21292347,20665925,1152425,509469,1570949262,1433793826,100,100,100,100,1.6,1.61,1.36,1.44
-55432,27,003,27003,29849,12947,27039257,25447896,30027,13027,27172977,25581616,330844,126688,1155421127,1095590050,99.41,99.39,99.51,99.48,9.02,10.22,2.34,2.32
-55432,27,123,27123,178,80,133720,133720,30027,13027,27172977,25581616,508640,217197,440499994,394228284,0.59,0.61,0.49,0.52,0.03,0.04,0.03,0.03
-55433,27,003,27003,33613,13800,31522655,30079325,33613,13800,31522655,30079325,330844,126688,1155421127,1095590050,100,100,100,100,10.16,10.89,2.73,2.75
-55434,27,003,27003,28823,11342,23993444,23828477,28823,11342,23993444,23828477,330844,126688,1155421127,1095590050,100,100,100,100,8.71,8.95,2.08,2.17
-55435,27,053,27053,11592,7212,8019909,7647197,11592,7212,8019909,7647197,1152425,509469,1570949262,1433793826,100,100,100,100,1.01,1.42,0.51,0.53
-55436,27,053,27053,13138,5983,12721346,12282537,13138,5983,12721346,12282537,1152425,509469,1570949262,1433793826,100,100,100,100,1.14,1.17,0.81,0.86
-55437,27,053,27053,17484,8174,18120168,16988777,17484,8174,18120168,16988777,1152425,509469,1570949262,1433793826,100,100,100,100,1.52,1.6,1.15,1.18
-55438,27,053,27053,16249,7640,23661495,21622491,16249,7640,23661495,21622491,1152425,509469,1570949262,1433793826,100,100,100,100,1.41,1.5,1.51,1.51
-55439,27,053,27053,8750,3697,12834885,12492486,8750,3697,12834885,12492486,1152425,509469,1570949262,1433793826,100,100,100,100,0.76,0.73,0.82,0.87
-55441,27,053,27053,17848,7891,26493733,22439475,17848,7891,26493733,22439475,1152425,509469,1570949262,1433793826,100,100,100,100,1.55,1.55,1.69,1.57
-55442,27,053,27053,13217,5728,15004499,13741277,13217,5728,15004499,13741277,1152425,509469,1570949262,1433793826,100,100,100,100,1.15,1.12,0.96,0.96
-55443,27,053,27053,32462,11463,24444113,23910786,32462,11463,24444113,23910786,1152425,509469,1570949262,1433793826,100,100,100,100,2.82,2.25,1.56,1.67
-55444,27,053,27053,15667,5380,12038695,11459197,15667,5380,12038695,11459197,1152425,509469,1570949262,1433793826,100,100,100,100,1.36,1.06,0.77,0.8
-55445,27,053,27053,9879,3667,20336980,20233485,9879,3667,20336980,20233485,1152425,509469,1570949262,1433793826,100,100,100,100,0.86,0.72,1.29,1.41
-55446,27,053,27053,18695,7757,26664702,26292819,18695,7757,26664702,26292819,1152425,509469,1570949262,1433793826,100,100,100,100,1.62,1.52,1.7,1.83
-55447,27,053,27053,21187,8780,24303811,22760671,21187,8780,24303811,22760671,1152425,509469,1570949262,1433793826,100,100,100,100,1.84,1.72,1.55,1.59
-55448,27,003,27003,27863,10662,28582525,28135649,27863,10662,28582525,28135649,330844,126688,1155421127,1095590050,100,100,100,100,8.42,8.42,2.47,2.57
-55449,27,003,27003,23277,8705,57634042,57396386,23277,8705,58123837,57874893,330844,126688,1155421127,1095590050,100,100,99.16,99.17,7.04,6.87,4.99,5.24
-55449,27,123,27123,0,0,489795,478507,23277,8705,58123837,57874893,508640,217197,440499994,394228284,0,0,0.84,0.83,0,0,0.11,0.12
-55450,27,053,27053,10,3,9785337,9767394,10,3,9785337,9767394,1152425,509469,1570949262,1433793826,100,100,100,100,0,0,0.62,0.68
-55454,27,053,27053,8125,3126,1719343,1580575,8125,3126,1719343,1580575,1152425,509469,1570949262,1433793826,100,100,100,100,0.71,0.61,0.11,0.11
-55455,27,053,27053,1050,4,823650,692288,1050,4,823650,692288,1152425,509469,1570949262,1433793826,100,100,100,100,0.09,0,0.05,0.05
-55601,27,075,27075,105,152,42600154,40947403,105,152,42600154,40947403,10866,7681,7745695387,5463040779,100,100,100,100,0.97,1.98,0.55,0.75
-55602,27,137,27137,177,403,361289884,347569056,177,403,361289884,347569056,200226,103058,17766028793,16180692391,100,100,100,100,0.09,0.39,2.03,2.15
-55603,27,075,27075,508,475,968563587,934662280,508,475,968563587,934662280,10866,7681,7745695387,5463040779,100,100,100,100,4.68,6.18,12.5,17.11
-55604,27,031,27031,3360,3340,2645907161,2305639807,3360,3340,2645907161,2305639807,5176,5839,8649394261,3761380730,100,100,100,100,64.91,57.2,30.59,61.3
-55605,27,031,27031,565,313,213087189,186371802,565,313,213087189,186371802,5176,5839,8649394261,3761380730,100,100,100,100,10.92,5.36,2.46,4.95
-55606,27,031,27031,272,410,348353944,339510864,272,410,348353944,339510864,5176,5839,8649394261,3761380730,100,100,100,100,5.26,7.02,4.03,9.03
-55607,27,075,27075,134,289,1178151324,1145536177,134,289,1178151324,1145536177,10866,7681,7745695387,5463040779,100,100,100,100,1.23,3.76,15.21,20.97
-55609,27,075,27075,303,185,9272299,9272299,303,185,9272299,9272299,10866,7681,7745695387,5463040779,100,100,100,100,2.79,2.41,0.12,0.17
-55612,27,031,27031,518,1122,450833758,419983905,518,1122,450833758,419983905,5176,5839,8649394261,3761380730,100,100,100,100,10.01,19.22,5.21,11.17
-55613,27,031,27031,205,323,229105061,223982768,205,323,229105061,223982768,5176,5839,8649394261,3761380730,100,100,100,100,3.96,5.53,2.65,5.95
-55614,27,075,27075,2627,1571,670777875,631398663,2627,1571,670777875,631398663,10866,7681,7745695387,5463040779,100,100,100,100,24.18,20.45,8.66,11.56
-55615,27,031,27031,256,331,297088150,285891584,256,331,297088150,285891584,5176,5839,8649394261,3761380730,100,100,100,100,4.95,5.67,3.43,7.6
-55616,27,075,27075,6626,4055,890669022,847851794,6994,4239,960974906,917905455,10866,7681,7745695387,5463040779,94.74,95.66,92.68,92.37,60.98,52.79,11.5,15.52
-55616,27,137,27137,368,184,70305884,70053661,6994,4239,960974906,917905455,200226,103058,17766028793,16180692391,5.26,4.34,7.32,7.63,0.18,0.18,0.4,0.43
-55702,27,137,27137,500,327,198623962,196374172,500,327,198623962,196374172,200226,103058,17766028793,16180692391,100,100,100,100,0.25,0.32,1.12,1.21
-55703,27,137,27137,701,426,359910853,359885487,701,426,359910853,359885487,200226,103058,17766028793,16180692391,100,100,100,100,0.35,0.41,2.03,2.22
-55704,27,115,27115,1128,600,143907427,143664947,1128,600,143907427,143664947,29750,17276,3715488639,3655220961,100,100,100,100,3.79,3.47,3.87,3.93
-55705,27,137,27137,3299,1731,312295868,301151543,3299,1731,312295868,301151543,200226,103058,17766028793,16180692391,100,100,100,100,1.65,1.68,1.76,1.86
-55706,27,137,27137,1825,1198,188466816,159257319,1825,1198,188466816,159257319,200226,103058,17766028793,16180692391,100,100,100,100,0.91,1.16,1.06,0.98
-55707,27,017,27017,3440,1668,415923070,408702478,3440,1668,415923070,408702478,35386,15656,2266972940,2230967465,100,100,100,100,9.72,10.65,18.35,18.32
-55708,27,137,27137,959,540,58190386,56306294,959,540,58190386,56306294,200226,103058,17766028793,16180692391,100,100,100,100,0.48,0.52,0.33,0.35
-55709,27,061,27061,4075,2582,651359685,594246047,4075,2582,651359685,594246047,45058,27065,7583388428,6909367239,100,100,100,100,9.04,9.54,8.59,8.6
-55710,27,137,27137,1292,881,269576896,259324931,1292,881,269576896,259324931,200226,103058,17766028793,16180692391,100,100,100,100,0.65,0.85,1.52,1.6
-55711,27,137,27137,607,220,177920346,175211390,607,220,177920346,175211390,200226,103058,17766028793,16180692391,100,100,100,100,0.3,0.21,1,1.08
-55712,27,115,27115,586,450,488684529,487756955,586,450,488684529,487756955,29750,17276,3715488639,3655220961,100,100,100,100,1.97,2.6,13.15,13.34
-55713,27,137,27137,1017,502,14162352,13987644,1017,502,14162352,13987644,200226,103058,17766028793,16180692391,100,100,100,100,0.51,0.49,0.08,0.09
-55716,27,061,27061,341,158,3482059,3447520,341,158,3482059,3447520,45058,27065,7583388428,6909367239,100,100,100,100,0.76,0.58,0.05,0.05
-55717,27,137,27137,335,403,292934377,283779567,335,403,292934377,283779567,200226,103058,17766028793,16180692391,100,100,100,100,0.17,0.39,1.65,1.75
-55718,27,017,27017,3281,1363,163560329,157743813,3281,1363,163560329,157743813,35386,15656,2266972940,2230967465,100,100,100,100,9.27,8.71,7.21,7.07
-55719,27,137,27137,5895,3008,184890243,181102002,5895,3008,184890243,181102002,200226,103058,17766028793,16180692391,100,100,100,100,2.94,2.92,1.04,1.12
-55720,27,017,27017,14921,6488,231770502,224148743,16999,7292,428869478,416518036,35386,15656,2266972940,2230967465,87.78,88.97,54.04,53.81,42.17,41.44,10.22,10.05
-55720,27,137,27137,2078,804,197098976,192369293,16999,7292,428869478,416518036,200226,103058,17766028793,16180692391,12.22,11.03,45.96,46.19,1.04,0.78,1.11,1.19
-55721,27,061,27061,3410,1794,262075528,226823886,3410,1794,262075528,226823886,45058,27065,7583388428,6909367239,100,100,100,100,7.57,6.63,3.46,3.28
-55722,27,061,27061,1200,519,7420481,6917649,1200,519,7420481,6917649,45058,27065,7583388428,6909367239,100,100,100,100,2.66,1.92,0.1,0.1
-55723,27,061,27061,243,398,551564664,537639404,2363,2449,1420617904,1360060159,45058,27065,7583388428,6909367239,10.28,16.25,38.83,39.53,0.54,1.47,7.27,7.78
-55723,27,137,27137,2120,2051,869053240,822420755,2363,2449,1420617904,1360060159,200226,103058,17766028793,16180692391,89.72,83.75,61.17,60.47,1.06,1.99,4.89,5.08
-55724,27,137,27137,741,928,633588446,618757104,741,928,633588446,618757104,200226,103058,17766028793,16180692391,100,100,100,100,0.37,0.9,3.57,3.82
-55725,27,137,27137,103,258,872666200,702297232,103,258,872666200,702297232,200226,103058,17766028793,16180692391,100,100,100,100,0.05,0.25,4.91,4.34
-55726,27,017,27017,1045,731,243587518,240090372,1045,731,243587518,240090372,35386,15656,2266972940,2230967465,100,100,100,100,2.95,4.67,10.75,10.76
-55731,27,075,27075,563,953,1490053707,1181522368,5820,5202,2622088977,2179688777,10866,7681,7745695387,5463040779,9.67,18.32,56.83,54.21,5.18,12.41,19.24,21.63
-55731,27,137,27137,5257,4249,1132035270,998166409,5820,5202,2622088977,2179688777,200226,103058,17766028793,16180692391,90.33,81.68,43.17,45.79,2.63,4.12,6.37,6.17
-55732,27,137,27137,1453,826,471767955,464953357,1453,826,471767955,464953357,200226,103058,17766028793,16180692391,100,100,100,100,0.73,0.8,2.66,2.87
-55733,27,017,27017,4616,1756,94454995,92832749,4616,1756,94454995,92832749,35386,15656,2266972940,2230967465,100,100,100,100,13.04,11.22,4.17,4.16
-55734,27,137,27137,6213,3436,273457214,257730273,6213,3436,273457214,257730273,200226,103058,17766028793,16180692391,100,100,100,100,3.1,3.33,1.54,1.59
-55735,27,001,27001,378,417,128249276,126021319,1809,1501,356866631,348520522,16202,16029,5167784397,4718084060,20.9,27.78,35.94,36.16,2.33,2.6,2.48,2.67
-55735,27,115,27115,1431,1084,228617355,222499203,1809,1501,356866631,348520522,29750,17276,3715488639,3655220961,79.1,72.22,64.06,63.84,4.81,6.27,6.15,6.09
-55736,27,061,27061,72,69,65221370,65185500,1550,1079,805514997,798120721,45058,27065,7583388428,6909367239,4.65,6.39,8.1,8.17,0.16,0.25,0.86,0.94
-55736,27,137,27137,1478,1010,740293627,732935221,1550,1079,805514997,798120721,200226,103058,17766028793,16180692391,95.35,93.61,91.9,91.83,0.74,0.98,4.17,4.53
-55738,27,137,27137,544,318,285459101,281419236,544,318,285459101,281419236,200226,103058,17766028793,16180692391,100,100,100,100,0.27,0.31,1.61,1.74
-55741,27,137,27137,3164,1782,178256965,169669159,3164,1782,178256965,169669159,200226,103058,17766028793,16180692391,100,100,100,100,1.58,1.73,1,1.05
-55742,27,061,27061,344,273,141699663,137409465,344,273,141699663,137409465,45058,27065,7583388428,6909367239,100,100,100,100,0.76,1.01,1.87,1.99
-55744,27,061,27061,20164,9867,735684443,644158141,20164,9867,735684443,644158141,45058,27065,7583388428,6909367239,100,100,100,100,44.75,36.46,9.7,9.32
-55746,27,061,27061,60,98,37919799,34520530,17228,8797,885011796,860679925,45058,27065,7583388428,6909367239,0.35,1.11,4.28,4.01,0.13,0.36,0.5,0.5
-55746,27,137,27137,17168,8699,847091997,826159395,17228,8797,885011796,860679925,200226,103058,17766028793,16180692391,99.65,98.89,95.72,95.99,8.57,8.44,4.77,5.11
-55748,27,001,27001,1209,885,176629642,171878966,1476,1006,318717061,312350286,16202,16029,5167784397,4718084060,81.91,87.97,55.42,55.03,7.46,5.52,3.42,3.64
-55748,27,061,27061,267,121,142087419,140471320,1476,1006,318717061,312350286,45058,27065,7583388428,6909367239,18.09,12.03,44.58,44.97,0.59,0.45,1.87,2.03
-55749,27,017,27017,313,278,167387441,166734415,449,383,208137861,206206715,35386,15656,2266972940,2230967465,69.71,72.58,80.42,80.86,0.88,1.78,7.38,7.47
-55749,27,115,27115,136,105,40750420,39472300,449,383,208137861,206206715,29750,17276,3715488639,3655220961,30.29,27.42,19.58,19.14,0.46,0.61,1.1,1.08
-55750,27,137,27137,2025,1032,390557630,375463521,2025,1032,390557630,375463521,200226,103058,17766028793,16180692391,100,100,100,100,1.01,1,2.2,2.32
-55751,27,137,27137,1553,708,161372095,158625336,1553,708,161372095,158625336,200226,103058,17766028793,16180692391,100,100,100,100,0.78,0.69,0.91,0.98
-55752,27,001,27001,381,347,521618443,512664228,395,357,529032699,520078484,16202,16029,5167784397,4718084060,96.46,97.2,98.6,98.57,2.35,2.16,10.09,10.87
-55752,27,061,27061,14,10,7414256,7414256,395,357,529032699,520078484,45058,27065,7583388428,6909367239,3.54,2.8,1.4,1.43,0.03,0.04,0.1,0.11
-55753,27,061,27061,989,508,1951419,1951419,989,508,1951419,1951419,45058,27065,7583388428,6909367239,100,100,100,100,2.19,1.88,0.03,0.03
-55756,27,017,27017,21,17,10268882,10268882,431,351,128742209,126087907,35386,15656,2266972940,2230967465,4.87,4.84,7.98,8.14,0.06,0.11,0.45,0.46
-55756,27,115,27115,410,334,118473327,115819025,431,351,128742209,126087907,29750,17276,3715488639,3655220961,95.13,95.16,92.02,91.86,1.38,1.93,3.19,3.17
-55757,27,017,27017,866,577,282734847,282697690,866,577,282734847,282697690,35386,15656,2266972940,2230967465,100,100,100,100,2.45,3.69,12.47,12.67
-55758,27,137,27137,145,74,6292417,5526245,145,74,6292417,5526245,200226,103058,17766028793,16180692391,100,100,100,100,0.07,0.07,0.04,0.03
-55760,27,001,27001,3108,3932,1025806421,959807620,3108,3932,1025806421,959807620,16202,16029,5167784397,4718084060,100,100,100,100,19.18,24.53,19.85,20.34
-55763,27,137,27137,554,819,478403810,453544099,554,819,478403810,453544099,200226,103058,17766028793,16180692391,100,100,100,100,0.28,0.79,2.69,2.8
-55764,27,061,27061,569,282,15795746,15095663,569,282,15795746,15095663,45058,27065,7583388428,6909367239,100,100,100,100,1.26,1.04,0.21,0.22
-55765,27,137,27137,802,475,454509607,451789942,802,475,454509607,451789942,200226,103058,17766028793,16180692391,100,100,100,100,0.4,0.46,2.56,2.79
-55766,27,137,27137,43,56,48478099,46530511,43,56,48478099,46530511,200226,103058,17766028793,16180692391,100,100,100,100,0.02,0.05,0.27,0.29
-55767,27,017,27017,4230,1480,142395697,138783624,4532,1727,145068702,141006206,35386,15656,2266972940,2230967465,93.34,85.7,98.16,98.42,11.95,9.45,6.28,6.22
-55767,27,115,27115,302,247,2673005,2222582,4532,1727,145068702,141006206,29750,17276,3715488639,3655220961,6.66,14.3,1.84,1.58,1.02,1.43,0.07,0.06
-55768,27,137,27137,2843,1397,169111624,162328344,2843,1397,169111624,162328344,200226,103058,17766028793,16180692391,100,100,100,100,1.42,1.36,0.95,1
-55769,27,061,27061,2313,1483,489286874,470116468,2313,1483,489286874,470116468,45058,27065,7583388428,6909367239,100,100,100,100,5.13,5.48,6.45,6.8
-55771,27,071,27071,74,109,410839143,410437115,1680,2126,2891649384,2706364337,13311,7900,8168879460,8039503592,4.4,5.13,14.21,15.17,0.56,1.38,5.03,5.11
-55771,27,137,27137,1606,2017,2480810241,2295927222,1680,2126,2891649384,2706364337,200226,103058,17766028793,16180692391,95.6,94.87,85.79,84.83,0.8,1.96,13.96,14.19
-55772,27,071,27071,76,27,58342822,38592271,76,27,58342822,38592271,13311,7900,8168879460,8039503592,100,100,100,100,0.57,0.34,0.71,0.48
-55775,27,061,27061,1205,809,168244338,153809103,1205,809,168244338,153809103,45058,27065,7583388428,6909367239,100,100,100,100,2.67,2.99,2.22,2.23
-55779,27,137,27137,3755,1654,359309246,344141410,3755,1654,359309246,344141410,200226,103058,17766028793,16180692391,100,100,100,100,1.88,1.6,2.02,2.13
-55780,27,017,27017,212,131,68437844,65857827,212,131,68437844,65857827,35386,15656,2266972940,2230967465,100,100,100,100,0.6,0.84,3.02,2.95
-55781,27,061,27061,147,202,91861910,89020545,734,873,211223000,197558666,45058,27065,7583388428,6909367239,20.03,23.14,43.49,45.06,0.33,0.75,1.21,1.29
-55781,27,137,27137,587,671,119361090,108538121,734,873,211223000,197558666,200226,103058,17766028793,16180692391,79.97,76.86,56.51,54.94,0.29,0.65,0.67,0.67
-55782,27,137,27137,480,281,35316585,34325986,480,281,35316585,34325986,200226,103058,17766028793,16180692391,100,100,100,100,0.24,0.27,0.2,0.21
-55783,27,001,27001,14,22,27906235,27906235,2437,1876,287514773,274338470,16202,16029,5167784397,4718084060,0.57,1.17,9.71,10.17,0.09,0.14,0.54,0.59
-55783,27,017,27017,68,42,28105820,28105820,2437,1876,287514773,274338470,35386,15656,2266972940,2230967465,2.79,2.24,9.78,10.24,0.19,0.27,1.24,1.26
-55783,27,115,27115,2355,1812,231502718,218326415,2437,1876,287514773,274338470,29750,17276,3715488639,3655220961,96.64,96.59,80.52,79.58,7.92,10.49,6.23,5.97
-55784,27,061,27061,89,68,64830143,64809275,89,68,64830143,64809275,45058,27065,7583388428,6909367239,100,100,100,100,0.2,0.25,0.85,0.94
-55785,27,001,27001,211,206,220113811,215543490,263,243,297814995,291299858,16202,16029,5167784397,4718084060,80.23,84.77,73.91,73.99,1.3,1.29,4.26,4.57
-55785,27,021,27021,52,37,77701184,75756368,263,243,297814995,291299858,28567,24903,6252510295,5235770376,19.77,15.23,26.09,26.01,0.18,0.15,1.24,1.45
-55786,27,061,27061,305,134,11336246,11065174,305,134,11336246,11065174,45058,27065,7583388428,6909367239,100,100,100,100,0.68,0.5,0.15,0.16
-55787,27,001,27001,432,385,186934018,184001076,525,470,228417320,224131587,16202,16029,5167784397,4718084060,82.29,81.91,81.84,82.1,2.67,2.4,3.62,3.9
-55787,27,017,27017,93,85,41483302,40130511,525,470,228417320,224131587,35386,15656,2266972940,2230967465,17.71,18.09,18.16,17.9,0.26,0.54,1.83,1.8
-55790,27,137,27137,1866,2476,1040228297,861148542,1866,2476,1040228297,861148542,200226,103058,17766028793,16180692391,100,100,100,100,0.93,2.4,5.86,5.32
-55792,27,137,27137,10107,5415,268292874,258084901,10107,5415,268292874,258084901,200226,103058,17766028793,16180692391,100,100,100,100,5.05,5.25,1.51,1.6
-55793,27,061,27061,615,391,209879455,205005479,615,391,209879455,205005479,45058,27065,7583388428,6909367239,100,100,100,100,1.36,1.44,2.77,2.97
-55795,27,115,27115,1629,962,224041750,220875532,1629,962,224041750,220875532,29750,17276,3715488639,3655220961,100,100,100,100,5.48,5.57,6.03,6.04
-55797,27,017,27017,1441,602,179238402,179200472,1441,602,179238402,179200472,35386,15656,2266972940,2230967465,100,100,100,100,4.07,3.85,7.91,8.03
-55798,27,001,27001,3,9,18693055,18693055,581,439,251624592,249361422,16202,16029,5167784397,4718084060,0.52,2.05,7.43,7.5,0.02,0.06,0.36,0.4
-55798,27,017,27017,520,326,189476244,187522022,581,439,251624592,249361422,35386,15656,2266972940,2230967465,89.5,74.26,75.3,75.2,1.47,2.08,8.36,8.41
-55798,27,137,27137,58,104,43455293,43146345,581,439,251624592,249361422,200226,103058,17766028793,16180692391,9.98,23.69,17.27,17.3,0.03,0.1,0.24,0.27
-55802,27,137,27137,2442,1623,28525865,6636041,2442,1623,28525865,6636041,200226,103058,17766028793,16180692391,100,100,100,100,1.22,1.57,0.16,0.04
-55803,27,137,27137,17431,8146,944950247,867677002,17431,8146,944950247,867677002,200226,103058,17766028793,16180692391,100,100,100,100,8.71,7.9,5.32,5.36
-55804,27,137,27137,14592,6194,264119469,236489646,14592,6194,264119469,236489646,200226,103058,17766028793,16180692391,100,100,100,100,7.29,6.01,1.49,1.46
-55805,27,137,27137,10194,5378,3655279,3655279,10194,5378,3655279,3655279,200226,103058,17766028793,16180692391,100,100,100,100,5.09,5.22,0.02,0.02
-55806,27,137,27137,9576,4808,10315434,8688079,9576,4808,10315434,8688079,200226,103058,17766028793,16180692391,100,100,100,100,4.78,4.67,0.06,0.05
-55807,27,137,27137,9963,4609,19454263,14916016,9963,4609,19454263,14916016,200226,103058,17766028793,16180692391,100,100,100,100,4.98,4.47,0.11,0.09
-55808,27,137,27137,5846,2698,34890916,28030422,5846,2698,34890916,28030422,200226,103058,17766028793,16180692391,100,100,100,100,2.92,2.62,0.2,0.17
-55810,27,017,27017,319,112,8148047,8148047,8702,3714,133124107,132986913,35386,15656,2266972940,2230967465,3.67,3.02,6.12,6.13,0.9,0.72,0.36,0.37
-55810,27,137,27137,8383,3602,124976060,124838866,8702,3714,133124107,132986913,200226,103058,17766028793,16180692391,96.33,96.98,93.88,93.87,4.19,3.5,0.7,0.77
-55811,27,137,27137,26246,10650,176111407,168683847,26246,10650,176111407,168683847,200226,103058,17766028793,16180692391,100,100,100,100,13.11,10.33,0.99,1.04
-55812,27,137,27137,10924,3666,6276344,4550597,10924,3666,6276344,4550597,200226,103058,17766028793,16180692391,100,100,100,100,5.46,3.56,0.04,0.03
-55814,27,137,27137,772,0,117937,117937,772,0,117937,117937,200226,103058,17766028793,16180692391,100,0,100,100,0.39,0,0,0
-55901,27,109,27109,51917,21939,77370261,77370164,51917,21939,77370261,77370164,144248,60495,1695921391,1692165422,100,100,100,100,35.99,36.27,4.56,4.57
-55902,27,109,27109,21968,9721,105404410,105086001,21968,9721,105404410,105086001,144248,60495,1695921391,1692165422,100,100,100,100,15.23,16.07,6.22,6.21
-55904,27,109,27109,26332,10657,161376278,161376278,26332,10657,161376278,161376278,144248,60495,1695921391,1692165422,100,100,100,100,18.25,17.62,9.52,9.54
-55905,27,109,27109,0,0,154860,154860,0,0,154860,154860,144248,60495,1695921391,1692165422,0,0,100,100,0,0,0.01,0.01
-55906,27,109,27109,17535,7582,157308235,155635020,17598,7608,166911192,165182013,144248,60495,1695921391,1692165422,99.64,99.66,94.25,94.22,12.16,12.53,9.28,9.2
-55906,27,157,27157,63,26,9602957,9546993,17598,7608,166911192,165182013,21676,9997,1423500950,1354518312,0.36,0.34,5.75,5.78,0.29,0.26,0.67,0.7
-55909,27,099,27099,1428,560,132241467,132241467,1428,560,132241467,132241467,39163,17027,1842949776,1842332613,100,100,100,100,3.65,3.29,7.18,7.18
-55910,27,157,27157,159,88,22669847,22115918,1423,623,228576986,227534012,21676,9997,1423500950,1354518312,11.17,14.13,9.92,9.72,0.73,0.88,1.59,1.63
-55910,27,169,27169,1264,535,205907139,205418094,1423,623,228576986,227534012,51461,20760,1661690154,1621864753,88.83,85.87,90.08,90.28,2.46,2.58,12.39,12.67
-55912,27,047,27047,536,222,115251771,114769744,28483,12519,488153727,487190789,31255,14231,1871061614,1831346129,1.88,1.77,23.61,23.56,1.71,1.56,6.16,6.27
-55912,27,099,27099,27947,12297,372901956,372421045,28483,12519,488153727,487190789,39163,17027,1842949776,1842332613,98.12,98.23,76.39,76.44,71.36,72.22,20.23,20.21
-55917,27,039,27039,413,159,95630019,95570023,3696,1540,350809548,349297525,20087,7947,1138520034,1137719781,11.17,10.32,27.26,27.36,2.06,2,8.4,8.4
-55917,27,047,27047,224,97,62782861,62759976,3696,1540,350809548,349297525,31255,14231,1871061614,1831346129,6.06,6.3,17.9,17.97,0.72,0.68,3.36,3.43
-55917,27,099,27099,205,81,42276638,42276393,3696,1540,350809548,349297525,39163,17027,1842949776,1842332613,5.55,5.26,12.05,12.1,0.52,0.48,2.29,2.29
-55917,27,147,27147,2854,1203,150120030,148691133,3696,1540,350809548,349297525,36576,15343,1119752368,1112775578,77.22,78.12,42.79,42.57,7.8,7.84,13.41,13.36
-55918,27,099,27099,982,450,66918722,66918722,982,450,66918722,66918722,39163,17027,1842949776,1842332613,100,100,100,100,2.51,2.64,3.63,3.63
-55919,27,055,27055,985,584,135083887,112162279,985,584,135083887,112162279,19027,8601,1473280761,1429824576,100,100,100,100,5.18,6.79,9.17,7.84
-55920,27,109,27109,7026,2752,181633147,181633147,7026,2752,181633147,181633147,144248,60495,1695921391,1692165422,100,100,100,100,4.87,4.55,10.71,10.73
-55921,27,055,27055,4964,2184,471579089,469195013,4964,2184,471579089,469195013,19027,8601,1473280761,1429824576,100,100,100,100,26.09,25.39,32.01,32.81
-55922,27,045,27045,1021,405,110341674,110341674,1021,405,110341674,110341674,20866,9732,2232802035,2230756787,100,100,100,100,4.89,4.16,4.94,4.95
-55923,27,045,27045,2352,1021,154335266,154335266,4469,1881,317724437,317724437,20866,9732,2232802035,2230756787,52.63,54.28,48.58,48.58,11.27,10.49,6.91,6.92
-55923,27,109,27109,2046,835,152376860,152376860,4469,1881,317724437,317724437,144248,60495,1695921391,1692165422,45.78,44.39,47.96,47.96,1.42,1.38,8.98,9
-55923,27,169,27169,71,25,11012311,11012311,4469,1881,317724437,317724437,51461,20760,1661690154,1621864753,1.59,1.33,3.47,3.47,0.14,0.12,0.66,0.68
-55924,27,039,27039,1061,466,145325257,145184483,1303,576,199901206,199760432,20087,7947,1138520034,1137719781,81.43,80.9,72.7,72.68,5.28,5.86,12.76,12.76
-55924,27,147,27147,242,110,54575949,54575949,1303,576,199901206,199760432,36576,15343,1119752368,1112775578,18.57,19.1,27.3,27.32,0.66,0.72,4.87,4.9
-55925,27,169,27169,1113,461,79628876,78570389,1113,461,79628876,78570389,51461,20760,1661690154,1621864753,100,100,100,100,2.16,2.22,4.79,4.84
-55926,27,099,27099,853,353,161129315,161129315,853,353,161129315,161129315,39163,17027,1842949776,1842332613,100,100,100,100,2.18,2.07,8.74,8.75
-55927,27,039,27039,4071,1610,207646660,207590400,4071,1610,207646660,207590400,20087,7947,1138520034,1137719781,100,100,100,100,20.27,20.26,18.24,18.25
-55929,27,109,27109,1209,472,119892747,119892747,1209,472,119892747,119892747,144248,60495,1695921391,1692165422,100,100,100,100,0.84,0.78,7.07,7.09
-55931,27,055,27055,330,164,47908356,47783313,330,164,47908356,47783313,19027,8601,1473280761,1429824576,100,100,100,100,1.73,1.91,3.25,3.34
-55932,27,109,27109,322,137,66751000,66751000,2042,783,131746924,131701797,144248,60495,1695921391,1692165422,15.77,17.5,50.67,50.68,0.22,0.23,3.94,3.94
-55932,27,157,27157,1720,646,64995924,64950797,2042,783,131746924,131701797,21676,9997,1423500950,1354518312,84.23,82.5,49.33,49.32,7.94,6.46,4.57,4.8
-55933,27,099,27099,273,110,68146919,68146919,273,110,68146919,68146919,39163,17027,1842949776,1842332613,100,100,100,100,0.7,0.65,3.7,3.7
-55934,27,109,27109,3338,1324,205835750,205835750,3338,1324,205835750,205835750,144248,60495,1695921391,1692165422,100,100,100,100,2.31,2.19,12.14,12.16
-55935,27,045,27045,939,398,141194788,141143987,939,398,141194788,141143987,20866,9732,2232802035,2230756787,100,100,100,100,4.5,4.09,6.32,6.33
-55936,27,099,27099,1861,778,211695674,211684557,1861,778,211695674,211684557,39163,17027,1842949776,1842332613,100,100,100,100,4.75,4.57,11.49,11.49
-55939,27,045,27045,1963,902,210921120,210921120,1963,902,210921120,210921120,20866,9732,2232802035,2230756787,100,100,100,100,9.41,9.27,9.45,9.46
-55940,27,039,27039,2548,1044,215468533,215379964,2666,1089,234702272,234613703,20087,7947,1138520034,1137719781,95.57,95.87,91.81,91.8,12.68,13.14,18.93,18.93
-55940,27,109,27109,118,45,19233739,19233739,2666,1089,234702272,234613703,144248,60495,1695921391,1692165422,4.43,4.13,8.19,8.2,0.08,0.07,1.13,1.14
-55941,27,055,27055,969,435,64868325,64605243,969,435,64868325,64605243,19027,8601,1473280761,1429824576,100,100,100,100,5.09,5.06,4.4,4.52
-55943,27,055,27055,2725,1258,356526669,353438064,3059,1395,444324357,441235752,19027,8601,1473280761,1429824576,89.08,90.18,80.24,80.1,14.32,14.63,24.2,24.72
-55943,27,169,27169,334,137,87797688,87797688,3059,1395,444324357,441235752,51461,20760,1661690154,1621864753,10.92,9.82,19.76,19.9,0.65,0.66,5.28,5.41
-55944,27,039,27039,7104,2769,142859090,142791323,7151,2784,150873629,150805862,20087,7947,1138520034,1137719781,99.34,99.46,94.69,94.69,35.37,34.84,12.55,12.55
-55944,27,109,27109,47,15,8014539,8014539,7151,2784,150873629,150805862,144248,60495,1695921391,1692165422,0.66,0.54,5.31,5.31,0.03,0.02,0.47,0.47
-55945,27,157,27157,1458,684,264742941,257105483,1458,684,264742941,257105483,21676,9997,1423500950,1354518312,100,100,100,100,6.73,6.84,18.6,18.98
-55946,27,049,27049,2945,1295,255617209,255559508,3178,1392,312206974,312149273,46183,20337,2021225747,1960200576,92.67,93.03,81.87,81.87,6.38,6.37,12.65,13.04
-55946,27,131,27131,233,97,56589765,56589765,3178,1392,312206974,312149273,64142,24453,1336265593,1283814887,7.33,6.97,18.13,18.13,0.36,0.4,4.23,4.41
-55947,27,055,27055,6726,2888,134547272,120400770,7513,3217,206793060,189192560,19027,8601,1473280761,1429824576,89.52,89.77,65.06,63.64,35.35,33.58,9.13,8.42
-55947,27,169,27169,787,329,72245788,68791790,7513,3217,206793060,189192560,51461,20760,1661690154,1621864753,10.48,10.23,34.94,36.36,1.53,1.58,4.35,4.24
-55949,27,045,27045,1808,1003,287385032,286518294,1808,1003,287385032,286518294,20866,9732,2232802035,2230756787,100,100,100,100,8.66,10.31,12.87,12.84
-55950,27,099,27099,169,79,1725725,1725725,169,79,1725725,1725725,39163,17027,1842949776,1842332613,100,100,100,100,0.43,0.46,0.09,0.09
-55951,27,045,27045,166,70,68875348,68875348,1567,746,196530117,196405227,20866,9732,2232802035,2230756787,10.59,9.38,35.05,35.07,0.8,0.72,3.08,3.09
-55951,27,099,27099,1401,676,127654769,127529879,1567,746,196530117,196405227,39163,17027,1842949776,1842332613,89.41,90.62,64.95,64.93,3.58,3.97,6.93,6.92
-55952,27,169,27169,2529,971,170050574,170050574,2529,971,170050574,170050574,51461,20760,1661690154,1621864753,100,100,100,100,4.91,4.68,10.23,10.48
-55953,27,047,27047,19,7,6223806,6223806,894,383,89070669,89070669,31255,14231,1871061614,1831346129,2.13,1.83,6.99,6.99,0.06,0.05,0.33,0.34
-55953,27,099,27099,875,376,82846863,82846863,894,383,89070669,89070669,39163,17027,1842949776,1842332613,97.87,98.17,93.01,93.01,2.23,2.21,4.5,4.5
-55954,27,045,27045,1355,700,151101262,151101262,1442,738,169386327,169371230,20866,9732,2232802035,2230756787,93.97,94.85,89.21,89.21,6.49,7.19,6.77,6.77
-55954,27,055,27055,87,38,18285065,18269968,1442,738,169386327,169371230,19027,8601,1473280761,1429824576,6.03,5.15,10.79,10.79,0.46,0.44,1.24,1.28
-55955,27,039,27039,2746,978,81964560,81822240,2746,978,81964560,81822240,20087,7947,1138520034,1137719781,100,100,100,100,13.67,12.31,7.2,7.19
-55956,27,049,27049,204,84,35026759,35021819,1962,822,141412962,140612291,46183,20337,2021225747,1960200576,10.4,10.22,24.77,24.91,0.44,0.41,1.73,1.79
-55956,27,109,27109,23,9,3475564,3475564,1962,822,141412962,140612291,144248,60495,1695921391,1692165422,1.17,1.09,2.46,2.47,0.02,0.01,0.2,0.21
-55956,27,157,27157,1735,729,102910639,102114908,1962,822,141412962,140612291,21676,9997,1423500950,1354518312,88.43,88.69,72.77,72.62,8,7.29,7.23,7.54
-55957,27,157,27157,756,313,105174031,104255461,756,313,105174031,104255461,21676,9997,1423500950,1354518312,100,100,100,100,3.49,3.13,7.39,7.7
-55959,27,169,27169,2321,942,109546901,96357304,2321,942,109546901,96357304,51461,20760,1661690154,1621864753,100,100,100,100,4.51,4.54,6.59,5.94
-55960,27,109,27109,3115,1245,93023299,91615436,3134,1257,93334986,91723367,144248,60495,1695921391,1692165422,99.39,99.05,99.67,99.88,2.16,2.06,5.49,5.41
-55960,27,157,27157,19,12,311687,107931,3134,1257,93334986,91723367,21676,9997,1423500950,1354518312,0.61,0.95,0.33,0.12,0.09,0.12,0.02,0.01
-55961,27,045,27045,339,158,25052501,25052501,447,204,85773697,85773697,20866,9732,2232802035,2230756787,75.84,77.45,29.21,29.21,1.62,1.62,1.12,1.12
-55961,27,099,27099,108,46,60721196,60721196,447,204,85773697,85773697,39163,17027,1842949776,1842332613,24.16,22.55,70.79,70.79,0.28,0.27,3.29,3.3
-55962,27,045,27045,737,377,157819486,157099787,763,388,164517795,163798096,20866,9732,2232802035,2230756787,96.59,97.16,95.93,95.91,3.53,3.87,7.07,7.04
-55962,27,169,27169,26,11,6698309,6698309,763,388,164517795,163798096,51461,20760,1661690154,1621864753,3.41,2.84,4.07,4.09,0.05,0.05,0.4,0.41
-55963,27,039,27039,353,139,37174194,36985406,4988,2078,202505942,202200088,20087,7947,1138520034,1137719781,7.08,6.69,18.36,18.29,1.76,1.75,3.27,3.25
-55963,27,049,27049,3183,1365,96391966,96276176,4988,2078,202505942,202200088,46183,20337,2021225747,1960200576,63.81,65.69,47.6,47.61,6.89,6.71,4.77,4.91
-55963,27,109,27109,1452,574,68939782,68938506,4988,2078,202505942,202200088,144248,60495,1695921391,1692165422,29.11,27.62,34.04,34.09,1.01,0.95,4.07,4.07
-55964,27,109,27109,103,46,26518468,26518468,4389,1788,231776278,231555880,144248,60495,1695921391,1692165422,2.35,2.57,11.44,11.45,0.07,0.08,1.56,1.57
-55964,27,157,27157,4230,1722,186926960,186750866,4389,1788,231776278,231555880,21676,9997,1423500950,1354518312,96.38,96.31,80.65,80.65,19.51,17.23,13.13,13.79
-55964,27,169,27169,56,20,18330850,18286546,4389,1788,231776278,231555880,51461,20760,1661690154,1621864753,1.28,1.12,7.91,7.9,0.11,0.1,1.1,1.13
-55965,27,045,27045,2376,1172,297473667,297401334,2376,1172,297473667,297401334,20866,9732,2232802035,2230756787,100,100,100,100,11.39,12.04,13.32,13.33
-55967,27,099,27099,938,360,97498740,97498740,938,360,97498740,97498740,39163,17027,1842949776,1842332613,100,100,100,100,2.4,2.11,5.29,5.29
-55968,27,157,27157,121,80,4100607,4099947,121,80,4100607,4099947,21676,9997,1423500950,1354518312,100,100,100,100,0.56,0.8,0.29,0.3
-55969,27,169,27169,1117,454,79909886,79909886,1117,454,79909886,79909886,51461,20760,1661690154,1621864753,100,100,100,100,2.17,2.19,4.81,4.93
-55970,27,099,27099,1016,402,156910623,156910623,1016,402,156910623,156910623,39163,17027,1842949776,1842332613,100,100,100,100,2.59,2.36,8.51,8.52
-55971,27,045,27045,2539,1099,95323488,95073421,2993,1265,209233031,208853158,20866,9732,2232802035,2230756787,84.83,86.88,45.56,45.52,12.17,11.29,4.27,4.26
-55971,27,055,27055,141,58,38518891,38389085,2993,1265,209233031,208853158,19027,8601,1473280761,1429824576,4.71,4.58,18.41,18.38,0.74,0.67,2.61,2.68
-55971,27,169,27169,313,108,75390652,75390652,2993,1265,209233031,208853158,51461,20760,1661690154,1621864753,10.46,8.54,36.03,36.1,0.61,0.52,4.54,4.65
-55972,27,109,27109,188,72,55015455,55015455,4995,1974,224944148,224944148,144248,60495,1695921391,1692165422,3.76,3.65,24.46,24.46,0.13,0.12,3.24,3.25
-55972,27,169,27169,4807,1902,169928693,169928693,4995,1974,224944148,224944148,51461,20760,1661690154,1621864753,96.24,96.35,75.54,75.54,9.34,9.16,10.23,10.48
-55973,27,099,27099,285,114,74416445,74416445,285,114,74416445,74416445,39163,17027,1842949776,1842332613,100,100,100,100,0.73,0.67,4.04,4.04
-55974,27,045,27045,32,16,11479511,11479511,2132,1008,217442718,217060352,20866,9732,2232802035,2230756787,1.5,1.59,5.28,5.29,0.15,0.16,0.51,0.51
-55974,27,055,27055,2100,992,205963207,205580841,2132,1008,217442718,217060352,19027,8601,1473280761,1429824576,98.5,98.41,94.72,94.71,11.04,11.53,13.98,14.38
-55975,27,045,27045,4152,1914,353099605,353013995,4335,1982,397159271,397073661,20866,9732,2232802035,2230756787,95.78,96.57,88.91,88.9,19.9,19.67,15.81,15.82
-55975,27,099,27099,183,68,44059666,44059666,4335,1982,397159271,397073661,39163,17027,1842949776,1842332613,4.22,3.43,11.09,11.1,0.47,0.4,2.39,2.39
-55976,27,045,27045,113,42,36950027,36950027,7582,3085,229221719,228949667,20866,9732,2232802035,2230756787,1.49,1.36,16.12,16.14,0.54,0.43,1.65,1.66
-55976,27,109,27109,7469,3043,192271692,191999640,7582,3085,229221719,228949667,144248,60495,1695921391,1692165422,98.51,98.64,83.88,83.86,5.18,5.03,11.34,11.35
-55977,27,099,27099,203,80,64010011,64010011,203,80,64010011,64010011,39163,17027,1842949776,1842332613,100,100,100,100,0.52,0.47,3.47,3.47
-55979,27,045,27045,49,17,11586014,11586014,1143,399,151537650,151537650,20866,9732,2232802035,2230756787,4.29,4.26,7.65,7.65,0.23,0.17,0.52,0.52
-55979,27,169,27169,1094,382,139951636,139951636,1143,399,151537650,151537650,51461,20760,1661690154,1621864753,95.71,95.74,92.35,92.35,2.13,1.84,8.42,8.63
-55981,27,157,27157,3961,2152,149661615,131183640,3961,2152,149661615,131183640,21676,9997,1423500950,1354518312,100,100,100,100,18.27,21.53,10.51,9.68
-55982,27,099,27099,436,197,77795047,77795047,436,197,77795047,77795047,39163,17027,1842949776,1842332613,100,100,100,100,1.11,1.16,4.22,4.22
-55983,27,049,27049,1588,684,100102422,100067217,1588,684,100102422,100067217,46183,20337,2021225747,1960200576,100,100,100,100,3.44,3.36,4.95,5.1
-55985,27,039,27039,1791,782,212451721,212395942,1858,814,235060996,235002263,20087,7947,1138520034,1137719781,96.39,96.07,90.38,90.38,8.92,9.84,18.66,18.67
-55985,27,049,27049,43,18,13494252,13491298,1858,814,235060996,235002263,46183,20337,2021225747,1960200576,2.31,2.21,5.74,5.74,0.09,0.09,0.67,0.69
-55985,27,147,27147,24,14,9115023,9115023,1858,814,235060996,235002263,36576,15343,1119752368,1112775578,1.29,1.72,3.88,3.88,0.07,0.09,0.81,0.82
-55987,27,169,27169,35629,14483,435290851,413700881,35629,14483,435290851,413700881,51461,20760,1661690154,1621864753,100,100,100,100,69.23,69.76,26.2,25.51
-55990,27,045,27045,925,438,119863246,119863246,925,438,119863246,119863246,20866,9732,2232802035,2230756787,100,100,100,100,4.43,4.5,5.37,5.37
-55991,27,109,27109,40,27,1325305,1242248,1490,683,144134137,141547026,144248,60495,1695921391,1692165422,2.68,3.95,0.92,0.88,0.03,0.04,0.08,0.07
-55991,27,157,27157,1450,656,142808832,140304778,1490,683,144134137,141547026,21676,9997,1423500950,1354518312,97.32,96.05,99.08,99.12,6.69,6.56,10.03,10.36
-55992,27,049,27049,4693,2017,193770741,193580698,4693,2017,193770741,193580698,46183,20337,2021225747,1960200576,100,100,100,100,10.16,9.92,9.59,9.88
-56001,27,013,27013,46327,18611,300576841,296656753,46327,18611,300576841,296656753,64013,26202,1982875933,1936906099,100,100,100,100,72.37,71.03,15.16,15.32
-56003,27,103,27103,14335,6249,114219245,113244015,14335,6249,114219245,113244015,32727,12873,1208856769,1161593168,100,100,100,100,43.8,48.54,9.45,9.75
-56007,27,047,27047,21228,9789,455892759,437955714,21228,9789,455892759,437955714,31255,14231,1871061614,1831346129,100,100,100,100,67.92,68.79,24.37,23.91
-56009,27,047,27047,1613,701,257507499,249204236,1613,701,257507499,249204236,31255,14231,1871061614,1831346129,100,100,100,100,5.16,4.93,13.76,13.61
-56010,27,013,27013,1129,538,217067748,211280466,1129,538,217067748,211280466,64013,26202,1982875933,1936906099,100,100,100,100,1.76,2.05,10.95,10.91
-56011,27,019,27019,200,77,24728245,23842391,8925,3351,274630700,269928238,91042,34536,974127102,917697893,2.24,2.3,9,8.83,0.22,0.22,2.54,2.6
-56011,27,079,27079,100,42,21127357,21127357,8925,3351,274630700,269928238,27703,12416,1227155035,1162284309,1.12,1.25,7.69,7.83,0.36,0.34,1.72,1.82
-56011,27,139,27139,7951,2999,180580154,178113175,8925,3351,274630700,269928238,129928,47124,954106799,923268376,89.09,89.5,65.75,65.99,6.12,6.36,18.93,19.29
-56011,27,143,27143,674,233,48194944,46845315,8925,3351,274630700,269928238,15226,6582,1555342082,1524931233,7.55,6.95,17.55,17.35,4.43,3.54,3.1,3.07
-56013,27,043,27043,4444,2146,399058682,397279344,4531,2184,439869635,438090297,14553,7090,1869724447,1845304181,98.08,98.26,90.72,90.68,30.54,30.27,21.34,21.53
-56013,27,091,27091,87,38,40810953,40810953,4531,2184,439869635,438090297,20840,10009,1889592947,1844971122,1.92,1.74,9.28,9.32,0.42,0.38,2.16,2.21
-56014,27,043,27043,797,387,190997959,190776686,797,387,190997959,190776686,14553,7090,1869724447,1845304181,100,100,100,100,5.48,5.46,10.22,10.34
-56016,27,047,27047,1096,462,69134301,68060846,1096,462,69134301,68060846,31255,14231,1871061614,1831346129,100,100,100,100,3.51,3.25,3.69,3.72
-56017,27,079,27079,1620,919,87717577,74648004,1620,919,87717577,74648004,27703,12416,1227155035,1162284309,100,100,100,100,5.85,7.4,7.15,6.42
-56019,27,015,27015,697,319,148556340,147871199,914,433,269097941,268030103,25893,11493,1601815493,1582716009,76.26,73.67,55.21,55.17,2.69,2.78,9.27,9.34
-56019,27,033,27033,177,91,94924247,94924247,914,433,269097941,268030103,11687,5412,1679765379,1653992908,19.37,21.02,35.27,35.42,1.51,1.68,5.65,5.74
-56019,27,165,27165,40,23,25617354,25234657,914,433,269097941,268030103,11211,5047,1138894710,1126508610,4.38,5.31,9.52,9.41,0.36,0.46,2.25,2.24
-56020,27,047,27047,115,55,2669398,2668504,115,55,2669398,2668504,31255,14231,1871061614,1831346129,100,100,100,100,0.37,0.39,0.14,0.15
-56021,27,103,27103,1038,419,111856941,93142536,1038,419,111856941,93142536,32727,12873,1208856769,1161593168,100,100,100,100,3.17,3.25,9.25,8.02
-56022,27,165,27165,70,36,247843,247843,70,36,247843,247843,11211,5047,1138894710,1126508610,100,100,100,100,0.62,0.71,0.02,0.02
-56023,27,043,27043,485,255,155227761,154665031,485,255,155227761,154665031,14553,7090,1869724447,1845304181,100,100,100,100,3.33,3.6,8.3,8.38
-56024,27,013,27013,2759,1072,52795154,51440500,2759,1072,52795154,51440500,64013,26202,1982875933,1936906099,100,100,100,100,4.31,4.09,2.66,2.66
-56025,27,043,27043,507,229,129738066,129704459,507,229,129738066,129704459,14553,7090,1869724447,1845304181,100,100,100,100,3.48,3.23,6.94,7.03
-56026,27,047,27047,451,182,106041333,101535874,2012,863,277319606,272691515,31255,14231,1871061614,1831346129,22.42,21.09,38.24,37.23,1.44,1.28,5.67,5.54
-56026,27,147,27147,1531,669,166474844,166352212,2012,863,277319606,272691515,36576,15343,1119752368,1112775578,76.09,77.52,60.03,61,4.19,4.36,14.87,14.95
-56026,27,161,27161,30,12,4803429,4803429,2012,863,277319606,272691515,19136,7903,1121395692,1096487773,1.49,1.39,1.73,1.76,0.16,0.15,0.43,0.44
-56027,19,109,19109,67,36,56394782,56372818,969,478,202102171,201941816,15543,7486,2523487581,2519332852,6.91,7.53,27.9,27.92,0.43,0.48,2.23,2.24
-56027,27,043,27043,858,421,122376732,122238341,969,478,202102171,201941816,14553,7090,1869724447,1845304181,88.54,88.08,60.55,60.53,5.9,5.94,6.55,6.62
-56027,27,091,27091,44,21,23330657,23330657,969,478,202102171,201941816,20840,10009,1889592947,1844971122,4.54,4.39,11.54,11.55,0.21,0.21,1.23,1.26
-56028,27,079,27079,1292,782,60007205,50114641,1372,819,70183897,57752316,27703,12416,1227155035,1162284309,94.17,95.48,85.5,86.78,4.66,6.3,4.89,4.31
-56028,27,161,27161,80,37,10176692,7637675,1372,819,70183897,57752316,19136,7903,1121395692,1096487773,5.83,4.52,14.5,13.22,0.42,0.47,0.91,0.7
-56029,27,047,27047,744,346,120716635,117483658,744,346,120716635,117483658,31255,14231,1871061614,1831346129,100,100,100,100,2.38,2.43,6.45,6.42
-56031,27,091,27091,12401,5980,422443818,404137755,12401,5980,422443818,404137755,20840,10009,1889592947,1844971122,100,100,100,100,59.51,59.75,22.36,21.9
-56032,27,047,27047,313,136,2199166,1654859,313,136,2199166,1654859,31255,14231,1871061614,1831346129,100,100,100,100,1,0.96,0.12,0.09
-56033,27,043,27043,345,196,92537151,92526446,345,196,92537151,92526446,14553,7090,1869724447,1845304181,100,100,100,100,2.37,2.76,4.95,5.01
-56034,27,013,27013,496,218,76286063,74444943,496,218,76286063,74444943,64013,26202,1982875933,1936906099,100,100,100,100,0.77,0.83,3.85,3.84
-56035,27,047,27047,546,226,1570347,1537342,546,226,1570347,1537342,31255,14231,1871061614,1831346129,100,100,100,100,1.75,1.59,0.08,0.08
-56036,27,047,27047,1959,892,306686316,305575415,1959,892,306686316,305575415,31255,14231,1871061614,1831346129,100,100,100,100,6.27,6.27,16.39,16.69
-56037,27,013,27013,1635,664,186562119,184921112,1635,664,186562119,184921112,64013,26202,1982875933,1936906099,100,100,100,100,2.55,2.53,9.41,9.55
-56039,27,091,27091,957,434,230072279,228343241,957,434,230072279,228343241,20840,10009,1889592947,1844971122,100,100,100,100,4.59,4.34,12.18,12.38
-56041,27,015,27015,1066,482,188521852,178242886,1066,482,188521852,178242886,25893,11493,1601815493,1582716009,100,100,100,100,4.12,4.19,11.77,11.26
-56042,27,047,27047,720,325,135801061,135743468,720,325,135801061,135743468,31255,14231,1871061614,1831346129,100,100,100,100,2.3,2.28,7.26,7.41
-56043,27,047,27047,486,221,52388154,52380015,486,221,52388154,52380015,31255,14231,1871061614,1831346129,100,100,100,100,1.55,1.55,2.8,2.86
-56044,27,079,27079,181,77,34709539,34709539,2082,868,211530436,207839178,27703,12416,1227155035,1162284309,8.69,8.87,16.41,16.7,0.65,0.62,2.83,2.99
-56044,27,143,27143,1901,791,176820897,173129639,2082,868,211530436,207839178,15226,6582,1555342082,1524931233,91.31,91.13,83.59,83.3,12.49,12.02,11.37,11.35
-56045,27,047,27047,813,374,72141146,70961367,813,374,72141146,70961367,31255,14231,1871061614,1831346129,100,100,100,100,2.6,2.63,3.86,3.87
-56046,27,147,27147,94,42,3785627,3785627,94,42,3785627,3785627,36576,15343,1119752368,1112775578,100,100,100,100,0.26,0.27,0.34,0.34
-56047,27,043,27043,117,55,4369850,4369850,117,55,4369850,4369850,14553,7090,1869724447,1845304181,100,100,100,100,0.8,0.78,0.23,0.24
-56048,27,013,27013,474,180,83141500,80904525,3898,1656,323483372,309502876,64013,26202,1982875933,1936906099,12.16,10.87,25.7,26.14,0.74,0.69,4.19,4.18
-56048,27,161,27161,3424,1476,240341872,228598351,3898,1656,323483372,309502876,19136,7903,1121395692,1096487773,87.84,89.13,74.3,73.86,17.89,18.68,21.43,20.85
-56050,27,079,27079,1464,649,56306720,54055182,1464,649,56306720,54055182,27703,12416,1227155035,1162284309,100,100,100,100,5.28,5.23,4.59,4.65
-56051,27,043,27043,703,374,79280449,79199946,703,374,79280449,79199946,14553,7090,1869724447,1845304181,100,100,100,100,4.83,5.28,4.24,4.29
-56052,27,079,27079,511,240,89909078,87900847,699,328,129522784,124154506,27703,12416,1227155035,1162284309,73.1,73.17,69.42,70.8,1.84,1.93,7.33,7.56
-56052,27,131,27131,188,88,39613706,36253659,699,328,129522784,124154506,64142,24453,1336265593,1283814887,26.9,26.83,30.58,29.2,0.29,0.36,2.96,2.82
-56054,27,103,27103,861,400,127012728,127012728,923,431,153989816,153989816,32727,12873,1208856769,1161593168,93.28,92.81,82.48,82.48,2.63,3.11,10.51,10.93
-56054,27,143,27143,62,31,26977088,26977088,923,431,153989816,153989816,15226,6582,1555342082,1524931233,6.72,7.19,17.52,17.52,0.41,0.47,1.73,1.77
-56055,27,013,27013,3902,1721,314493954,306385080,3902,1721,314493954,306385080,64013,26202,1982875933,1936906099,100,100,100,100,6.1,6.57,15.86,15.82
-56056,27,165,27165,96,49,2689286,2689286,96,49,2689286,2689286,11211,5047,1138894710,1126508610,100,100,100,100,0.86,0.97,0.24,0.24
-56057,27,079,27079,3867,1577,230930640,224840073,3867,1577,230930640,224840073,27703,12416,1227155035,1162284309,100,100,100,100,13.96,12.7,18.82,19.34
-56058,27,079,27079,5387,2316,212609545,209774231,5985,2578,337403616,333925845,27703,12416,1227155035,1162284309,90.01,89.84,63.01,62.82,19.45,18.65,17.33,18.05
-56058,27,103,27103,135,48,37312839,37312839,5985,2578,337403616,333925845,32727,12873,1208856769,1161593168,2.26,1.86,11.06,11.17,0.41,0.37,3.09,3.21
-56058,27,143,27143,463,214,87481232,86838775,5985,2578,337403616,333925845,15226,6582,1555342082,1524931233,7.74,8.3,25.93,26.01,3.04,3.25,5.62,5.69
-56060,27,165,27165,452,211,85079380,84864243,452,211,85079380,84864243,11211,5047,1138894710,1126508610,100,100,100,100,4.03,4.18,7.47,7.53
-56062,27,013,27013,201,95,92198371,91051600,3208,1400,329750957,325735989,64013,26202,1982875933,1936906099,6.27,6.79,27.96,27.95,0.31,0.36,4.65,4.7
-56062,27,015,27015,57,24,24514257,24505883,3208,1400,329750957,325735989,25893,11493,1601815493,1582716009,1.78,1.71,7.43,7.52,0.22,0.21,1.53,1.55
-56062,27,165,27165,2950,1281,213038329,210178506,3208,1400,329750957,325735989,11211,5047,1138894710,1126508610,91.96,91.5,64.61,64.52,26.31,25.38,18.71,18.66
-56063,27,013,27013,2001,1012,77496864,64135674,2724,1498,130485437,109216334,64013,26202,1982875933,1936906099,73.46,67.56,59.39,58.72,3.13,3.86,3.91,3.31
-56063,27,079,27079,682,469,42073541,34892754,2724,1498,130485437,109216334,27703,12416,1227155035,1162284309,25.04,31.31,32.24,31.95,2.46,3.78,3.43,3
-56063,27,161,27161,41,17,10915032,10187906,2724,1498,130485437,109216334,19136,7903,1121395692,1096487773,1.51,1.13,8.36,9.33,0.21,0.22,0.97,0.93
-56065,27,013,27013,2844,1170,306124786,301890698,2844,1170,306124786,301890698,64013,26202,1982875933,1936906099,100,100,100,100,4.44,4.47,15.44,15.59
-56068,27,013,27013,171,81,70724744,70072638,1087,506,178476641,169949971,64013,26202,1982875933,1936906099,15.73,16.01,39.63,41.23,0.27,0.31,3.57,3.62
-56068,27,043,27043,789,375,61546191,53671627,1087,506,178476641,169949971,14553,7090,1869724447,1845304181,72.59,74.11,34.48,31.58,5.42,5.29,3.29,2.91
-56068,27,161,27161,127,50,46205706,46205706,1087,506,178476641,169949971,19136,7903,1121395692,1096487773,11.68,9.88,25.89,27.19,0.66,0.63,4.12,4.21
-56069,27,079,27079,4020,1725,129327138,121189652,4467,1916,195934436,184990250,27703,12416,1227155035,1162284309,89.99,90.03,66.01,65.51,14.51,13.89,10.54,10.43
-56069,27,131,27131,447,191,66607298,63800598,4467,1916,195934436,184990250,64142,24453,1336265593,1283814887,10.01,9.97,33.99,34.49,0.7,0.78,4.98,4.97
-56071,27,079,27079,5059,1869,101044419,99633470,11817,4472,221115299,215213101,27703,12416,1227155035,1162284309,42.81,41.79,45.7,46.3,18.26,15.05,8.23,8.57
-56071,27,131,27131,274,97,22914479,22754182,11817,4472,221115299,215213101,64142,24453,1336265593,1283814887,2.32,2.17,10.36,10.57,0.43,0.4,1.71,1.77
-56071,27,139,27139,6484,2506,97156401,92825449,11817,4472,221115299,215213101,129928,47124,954106799,923268376,54.87,56.04,43.94,43.13,4.99,5.32,10.18,10.05
-56072,27,047,27047,57,27,26568121,25972866,2389,1094,317231894,315300010,31255,14231,1871061614,1831346129,2.39,2.47,8.37,8.24,0.18,0.19,1.42,1.42
-56072,27,147,27147,209,149,41642912,40935695,2389,1094,317231894,315300010,36576,15343,1119752368,1112775578,8.75,13.62,13.13,12.98,0.57,0.97,3.72,3.68
-56072,27,161,27161,2123,918,249020861,248391449,2389,1094,317231894,315300010,19136,7903,1121395692,1096487773,88.87,83.91,78.5,78.78,11.09,11.62,22.21,22.65
-56073,27,013,27013,201,97,31616358,31301946,16759,7364,525581202,517702523,64013,26202,1982875933,1936906099,1.2,1.32,6.02,6.05,0.31,0.37,1.59,1.62
-56073,27,015,27015,15348,6759,297566670,293811373,16759,7364,525581202,517702523,25893,11493,1601815493,1582716009,91.58,91.78,56.62,56.75,59.27,58.81,18.58,18.56
-56073,27,103,27103,1210,508,196398174,192589204,16759,7364,525581202,517702523,32727,12873,1208856769,1161593168,7.22,6.9,37.37,37.2,3.7,3.95,16.25,16.58
-56074,27,103,27103,2004,790,219821909,201970841,2004,790,219821909,201970841,32727,12873,1208856769,1161593168,100,100,100,100,6.12,6.14,18.18,17.39
-56075,27,091,27091,171,81,151505,151505,171,81,151505,151505,20840,10009,1889592947,1844971122,100,100,100,100,0.82,0.81,0.01,0.01
-56078,27,013,27013,361,138,25494160,25491455,476,190,56216823,56208014,64013,26202,1982875933,1936906099,75.84,72.63,45.35,45.35,0.56,0.53,1.29,1.32
-56078,27,161,27161,115,52,30722663,30716559,476,190,56216823,56208014,19136,7903,1121395692,1096487773,24.16,27.37,54.65,54.65,0.6,0.66,2.74,2.8
-56080,27,013,27013,770,275,1194283,1194283,770,275,1194283,1194283,64013,26202,1982875933,1936906099,100,100,100,100,1.2,1.05,0.06,0.06
-56081,27,015,27015,65,25,18208561,18208561,6098,2732,461182820,456482457,25893,11493,1601815493,1582716009,1.07,0.92,3.95,3.99,0.25,0.22,1.14,1.15
-56081,27,165,27165,6033,2707,442974259,438273896,6098,2732,461182820,456482457,11211,5047,1138894710,1126508610,98.93,99.08,96.05,96.01,53.81,53.64,38.9,38.91
-56082,27,079,27079,765,320,43930321,42166739,13597,4646,327434365,321232579,27703,12416,1227155035,1162284309,5.63,6.89,13.42,13.13,2.76,2.58,3.58,3.63
-56082,27,103,27103,12832,4326,283504044,279065840,13597,4646,327434365,321232579,32727,12873,1208856769,1161593168,94.37,93.11,86.58,86.87,39.21,33.61,23.45,24.02
-56083,27,015,27015,78,37,50082407,50058759,874,429,255581921,254658654,25893,11493,1601815493,1582716009,8.92,8.62,19.6,19.66,0.3,0.32,3.13,3.16
-56083,27,033,27033,193,81,91730449,91701635,874,429,255581921,254658654,11687,5412,1679765379,1653992908,22.08,18.88,35.89,36.01,1.65,1.5,5.46,5.54
-56083,27,127,27127,603,311,113769065,112898260,874,429,255581921,254658654,16059,7272,2283722235,2275491832,68.99,72.49,44.51,44.33,3.75,4.28,4.98,4.96
-56085,27,015,27015,5399,2387,525059596,522037576,5451,2408,545830009,542807989,25893,11493,1601815493,1582716009,99.05,99.13,96.19,96.17,20.85,20.77,32.78,32.98
-56085,27,127,27127,52,21,20770413,20770413,5451,2408,545830009,542807989,16059,7272,2283722235,2275491832,0.95,0.87,3.81,3.83,0.32,0.29,0.91,0.91
-56087,27,015,27015,2972,1355,286672581,285671216,3179,1446,380608561,379595501,25893,11493,1601815493,1582716009,93.49,93.71,75.32,75.26,11.48,11.79,17.9,18.05
-56087,27,127,27127,207,91,93935980,93924285,3179,1446,380608561,379595501,16059,7272,2283722235,2275491832,6.51,6.29,24.68,24.74,1.29,1.25,4.11,4.13
-56088,27,013,27013,48,24,26362622,26362622,1946,910,327057394,325119447,64013,26202,1982875933,1936906099,2.47,2.64,8.06,8.11,0.07,0.09,1.33,1.36
-56088,27,091,27091,1702,797,228130667,226258226,1946,910,327057394,325119447,20840,10009,1889592947,1844971122,87.46,87.58,69.75,69.59,8.17,7.96,12.07,12.26
-56088,27,165,27165,196,89,72564105,72498599,1946,910,327057394,325119447,11211,5047,1138894710,1126508610,10.07,9.78,22.19,22.3,1.75,1.76,6.37,6.44
-56089,27,047,27047,155,86,2422260,1974897,155,86,2422260,1974897,31255,14231,1871061614,1831346129,100,100,100,100,0.5,0.6,0.13,0.11
-56090,27,013,27013,694,306,120740366,119371804,694,306,120740366,119371804,64013,26202,1982875933,1936906099,100,100,100,100,1.08,1.17,6.09,6.16
-56091,27,161,27161,367,176,50771839,50117339,367,176,50771839,50117339,19136,7903,1121395692,1096487773,100,100,100,100,1.92,2.23,4.53,4.57
-56093,27,131,27131,10,3,1623542,1623542,12831,5152,473512675,465061047,64142,24453,1336265593,1283814887,0.08,0.06,0.34,0.35,0.02,0.01,0.12,0.13
-56093,27,147,27147,238,96,35659933,35374597,12831,5152,473512675,465061047,36576,15343,1119752368,1112775578,1.85,1.86,7.53,7.61,0.65,0.63,3.18,3.18
-56093,27,161,27161,12583,5053,436229200,428062908,12831,5152,473512675,465061047,19136,7903,1121395692,1096487773,98.07,98.08,92.13,92.04,65.76,63.94,38.9,39.04
-56096,27,079,27079,2755,1431,117461955,107231820,3021,1569,150496305,138541729,27703,12416,1227155035,1162284309,91.19,91.2,78.05,77.4,9.94,11.53,9.57,9.23
-56096,27,131,27131,110,67,17133391,15834086,3021,1569,150496305,138541729,64142,24453,1336265593,1283814887,3.64,4.27,11.38,11.43,0.17,0.27,1.28,1.23
-56096,27,161,27161,156,71,15900959,15475823,3021,1569,150496305,138541729,19136,7903,1121395692,1096487773,5.16,4.53,10.57,11.17,0.82,0.9,1.42,1.41
-56097,27,043,27043,3479,1637,393109039,386920953,3715,1746,483056124,476670089,14553,7090,1869724447,1845304181,93.65,93.76,81.38,81.17,23.91,23.09,21.02,20.97
-56097,27,047,27047,180,83,75064680,74883542,3715,1746,483056124,476670089,31255,14231,1871061614,1831346129,4.85,4.75,15.54,15.71,0.58,0.58,4.01,4.09
-56097,27,161,27161,56,26,14882405,14865594,3715,1746,483056124,476670089,19136,7903,1121395692,1096487773,1.51,1.49,3.08,3.12,0.29,0.33,1.33,1.36
-56098,27,043,27043,2029,1015,241482567,233951498,2124,1064,294416641,286885572,14553,7090,1869724447,1845304181,95.53,95.39,82.02,81.55,13.94,14.32,12.92,12.68
-56098,27,091,27091,95,49,52934074,52934074,2124,1064,294416641,286885572,20840,10009,1889592947,1844971122,4.47,4.61,17.98,18.45,0.46,0.49,2.8,2.87
-56101,27,033,27033,5364,2491,293323318,282710648,5867,2793,459551262,446809870,11687,5412,1679765379,1653992908,91.43,89.19,63.83,63.27,45.9,46.03,17.46,17.09
-56101,27,063,27063,503,302,166227944,164099222,5867,2793,459551262,446809870,10266,4990,1862809874,1820713972,8.57,10.81,36.17,36.73,4.9,6.05,8.92,9.01
-56110,27,105,27105,1843,784,279479326,278874434,1843,784,279479326,278874434,21378,8535,1871415389,1852116504,100,100,100,100,8.62,9.19,14.93,15.06
-56111,27,063,27063,420,193,129933250,129923554,420,193,129933250,129923554,10266,4990,1862809874,1820713972,100,100,100,100,4.09,3.87,6.98,7.14
-56113,27,081,27081,238,115,96139145,94344015,238,115,96139145,94344015,5896,3108,1420433108,1390192941,100,100,100,100,4.04,3.7,6.77,6.79
-56114,27,101,27101,361,186,124221615,122481853,361,186,124221615,122481853,8725,4556,1863502121,1825169529,100,100,100,100,4.14,4.08,6.67,6.71
-56115,27,083,27083,1131,530,200272720,195074403,1366,621,317627009,309661308,25857,11098,1869109859,1850698900,82.8,85.35,63.05,63,4.37,4.78,10.71,10.54
-56115,27,101,27101,235,91,117354289,114586905,1366,621,317627009,309661308,8725,4556,1863502121,1825169529,17.2,14.65,36.95,37,2.69,2,6.3,6.28
-56116,27,133,27133,628,251,110526291,110508816,628,251,110526291,110508816,9687,4262,1250250867,1249552632,100,100,100,100,6.48,5.89,8.84,8.84
-56117,27,105,27105,399,162,66895101,66069691,399,162,66895101,66069691,21378,8535,1871415389,1852116504,100,100,100,100,1.87,1.9,3.57,3.57
-56118,27,033,27033,396,170,121840860,119728552,421,179,138655182,136542874,11687,5412,1679765379,1653992908,94.06,94.97,87.87,87.69,3.39,3.14,7.25,7.24
-56118,27,063,27063,25,9,16814322,16814322,421,179,138655182,136542874,10266,4990,1862809874,1820713972,5.94,5.03,12.13,12.31,0.24,0.18,0.9,0.92
-56119,27,063,27063,170,78,93831833,93783003,1017,439,236517242,234513745,10266,4990,1862809874,1820713972,16.72,17.77,39.67,39.99,1.66,1.56,5.04,5.15
-56119,27,105,27105,847,361,142685409,140730742,1017,439,236517242,234513745,21378,8535,1871415389,1852116504,83.28,82.23,60.33,60.01,3.96,4.23,7.62,7.6
-56120,27,165,27165,1121,518,261157557,257668307,1121,518,261157557,257668307,11211,5047,1138894710,1126508610,100,100,100,100,10,10.26,22.93,22.87
-56121,27,091,27091,659,325,106327028,96396590,659,325,106327028,96396590,20840,10009,1889592947,1844971122,100,100,100,100,3.16,3.25,5.63,5.22
-56122,27,101,27101,562,233,121870664,121629990,586,243,131562557,131313024,8725,4556,1863502121,1825169529,95.9,95.88,92.63,92.63,6.44,5.11,6.54,6.66
-56122,27,105,27105,24,10,9691893,9683034,586,243,131562557,131313024,21378,8535,1871415389,1852116504,4.1,4.12,7.37,7.37,0.11,0.12,0.52,0.52
-56123,27,101,27101,514,323,183421543,180325452,514,323,183421543,180325452,8725,4556,1863502121,1825169529,100,100,100,100,5.89,7.09,9.84,9.88
-56125,27,101,27101,65,41,2621494,2621494,65,41,2621494,2621494,8725,4556,1863502121,1825169529,100,100,100,100,0.74,0.9,0.14,0.14
-56127,27,091,27091,398,187,135889175,135875467,398,187,135889175,135875467,20840,10009,1889592947,1844971122,100,100,100,100,1.91,1.87,7.19,7.36
-56128,27,101,27101,74,32,34590945,34590945,1984,853,304293240,303794019,8725,4556,1863502121,1825169529,3.73,3.75,11.37,11.39,0.85,0.7,1.86,1.9
-56128,27,105,27105,79,35,28801021,28765234,1984,853,304293240,303794019,21378,8535,1871415389,1852116504,3.98,4.1,9.46,9.47,0.37,0.41,1.54,1.55
-56128,27,117,27117,1714,736,179824632,179399621,1984,853,304293240,303794019,9596,4483,1206835386,1204486122,86.39,86.28,59.1,59.05,17.86,16.42,14.9,14.89
-56128,27,133,27133,117,50,61076642,61038219,1984,853,304293240,303794019,9687,4262,1250250867,1249552632,5.9,5.86,20.07,20.09,1.21,1.17,4.89,4.88
-56129,27,105,27105,613,297,65383555,65332133,741,344,121130796,121079374,21378,8535,1871415389,1852116504,82.73,86.34,53.98,53.96,2.87,3.48,3.49,3.53
-56129,27,133,27133,128,47,55747241,55747241,741,344,121130796,121079374,9687,4262,1250250867,1249552632,17.27,13.66,46.02,46.04,1.32,1.1,4.46,4.46
-56131,27,033,27033,49,25,55294957,49747264,2293,1059,430745526,420529190,11687,5412,1679765379,1653992908,2.14,2.36,12.84,11.83,0.42,0.46,3.29,3.01
-56131,27,101,27101,1782,806,195404676,194486465,2293,1059,430745526,420529190,8725,4556,1863502121,1825169529,77.71,76.11,45.36,46.25,20.42,17.69,10.49,10.66
-56131,27,105,27105,462,228,180045893,176295461,2293,1059,430745526,420529190,21378,8535,1871415389,1852116504,20.15,21.53,41.8,41.92,2.16,2.67,9.62,9.52
-56132,27,083,27083,328,148,94674564,93171878,540,349,163564176,154269616,25857,11098,1869109859,1850698900,60.74,42.41,57.88,60.4,1.27,1.33,5.07,5.03
-56132,27,101,27101,212,201,68889612,61097738,540,349,163564176,154269616,8725,4556,1863502121,1825169529,39.26,57.59,42.12,39.6,2.43,4.41,3.7,3.35
-56134,27,133,27133,462,206,132353994,132353994,462,206,132353994,132353994,9687,4262,1250250867,1249552632,100,100,100,100,4.77,4.83,10.59,10.59
-56136,27,081,27081,1118,620,228443678,222033801,1118,620,228443678,222033801,5896,3108,1420433108,1390192941,100,100,100,100,18.96,19.95,16.08,15.97
-56137,27,033,27033,123,64,114563579,114562902,1149,554,313998704,304228963,11687,5412,1679765379,1653992908,10.7,11.55,36.49,37.66,1.05,1.18,6.82,6.93
-56137,27,063,27063,1026,490,199435125,189666061,1149,554,313998704,304228963,10266,4990,1862809874,1820713972,89.3,88.45,63.51,62.34,9.99,9.82,10.71,10.42
-56138,27,133,27133,899,374,75063854,75037140,899,374,75063854,75037140,9687,4262,1250250867,1249552632,100,100,100,100,9.28,8.78,6,6.01
-56139,27,117,27117,430,214,115984534,115612677,430,214,115984534,115612677,9596,4483,1206835386,1204486122,100,100,100,100,4.48,4.77,9.61,9.6
-56140,27,117,27117,59,38,225517,214152,59,38,225517,214152,9596,4483,1206835386,1204486122,100,100,100,100,0.61,0.85,0.02,0.02
-56141,27,101,27101,307,158,94360660,93705190,323,166,103701140,102940737,8725,4556,1863502121,1825169529,95.05,95.18,90.99,91.03,3.52,3.47,5.06,5.13
-56141,27,105,27105,16,8,9340480,9235547,323,166,103701140,102940737,21378,8535,1871415389,1852116504,4.95,4.82,9.01,8.97,0.07,0.09,0.5,0.5
-56142,27,081,27081,981,550,254965846,250112542,981,550,254965846,250112542,5896,3108,1420433108,1390192941,100,100,100,100,16.64,17.7,17.95,17.99
-56143,27,063,27063,4478,2196,477984802,472505189,4478,2196,477984802,472505189,10266,4990,1862809874,1820713972,100,100,100,100,43.62,44.01,25.66,25.95
-56144,27,117,27117,832,404,114729227,114104660,1143,548,257144737,256515189,9596,4483,1206835386,1204486122,72.79,73.72,44.62,44.48,8.67,9.01,9.51,9.47
-56144,27,133,27133,221,102,100260826,100256192,1143,548,257144737,256515189,9687,4262,1250250867,1249552632,19.34,18.61,38.99,39.08,2.28,2.39,8.02,8.02
-56144,46,101,46101,90,42,42154684,42154337,1143,548,257144737,256515189,6486,2824,1348883708,1345204308,7.87,7.66,16.39,16.43,1.39,1.49,3.13,3.13
-56145,27,033,27033,622,309,138898550,138898550,622,309,138898550,138898550,11687,5412,1679765379,1653992908,100,100,100,100,5.32,5.71,8.27,8.4
-56146,27,133,27133,40,18,2570165,2570165,40,18,2570165,2570165,9687,4262,1250250867,1249552632,100,100,100,100,0.41,0.42,0.21,0.21
-56147,27,105,27105,37,18,34212038,34166677,192,83,76744252,76698891,21378,8535,1871415389,1852116504,19.27,21.69,44.58,44.55,0.17,0.21,1.83,1.84
-56147,27,133,27133,155,65,42532214,42532214,192,83,76744252,76698891,9687,4262,1250250867,1249552632,80.73,78.31,55.42,55.45,1.6,1.53,3.4,3.4
-56149,27,081,27081,1256,729,287787267,278142792,1268,732,297546548,287899937,5896,3108,1420433108,1390192941,99.05,99.59,96.72,96.61,21.3,23.46,20.26,20.01
-56149,27,117,27117,12,3,9759281,9757145,1268,732,297546548,287899937,9596,4483,1206835386,1204486122,0.95,0.41,3.28,3.39,0.13,0.07,0.81,0.81
-56150,27,063,27063,2742,1307,458499641,444045367,2742,1307,458499641,444045367,10266,4990,1862809874,1820713972,100,100,100,100,26.71,26.19,24.61,24.39
-56151,27,101,27101,823,387,261307528,259958011,823,387,261307528,259958011,8725,4556,1863502121,1825169529,100,100,100,100,9.43,8.49,14.02,14.24
-56152,27,033,27033,223,102,123884410,123399529,1507,731,343694037,342621122,11687,5412,1679765379,1653992908,14.8,13.95,36.04,36.02,1.91,1.88,7.38,7.46
-56152,27,127,27127,1284,629,219809627,219221593,1507,731,343694037,342621122,16059,7272,2283722235,2275491832,85.2,86.05,63.96,63.98,8,8.65,9.63,9.63
-56153,27,105,27105,224,121,9353154,9351328,224,121,9353154,9351328,21378,8535,1871415389,1852116504,100,100,100,100,1.05,1.42,0.5,0.5
-56155,27,105,27105,419,192,109988985,109918296,419,192,109988985,109918296,21378,8535,1871415389,1852116504,100,100,100,100,1.96,2.25,5.88,5.93
-56156,27,133,27133,6066,2763,433719086,433126662,6066,2763,433719086,433126662,9687,4262,1250250867,1249552632,100,100,100,100,62.62,64.83,34.69,34.66
-56157,27,083,27083,788,325,117366705,117105646,788,325,117366705,117105646,25857,11098,1869109859,1850698900,100,100,100,100,3.05,2.93,6.28,6.33
-56158,27,105,27105,71,28,29169234,29160397,434,173,105980973,105969251,21378,8535,1871415389,1852116504,16.36,16.18,27.52,27.52,0.33,0.33,1.56,1.57
-56158,27,133,27133,363,145,76811739,76808854,434,173,105980973,105969251,9687,4262,1250250867,1249552632,83.64,83.82,72.48,72.48,3.75,3.4,6.14,6.15
-56159,27,033,27033,2872,1202,270741866,269234726,2928,1228,311467360,309832706,11687,5412,1679765379,1653992908,98.09,97.88,86.92,86.9,24.57,22.21,16.12,16.28
-56159,27,063,27063,56,26,40725494,40597980,2928,1228,311467360,309832706,10266,4990,1862809874,1820713972,1.91,2.12,13.08,13.1,0.55,0.52,2.19,2.23
-56160,27,063,27063,25,10,15760812,15760812,214,111,57123850,55847011,10266,4990,1862809874,1820713972,11.68,9.01,27.59,28.22,0.24,0.2,0.85,0.87
-56160,27,091,27091,63,28,28540002,27936487,214,111,57123850,55847011,20840,10009,1889592947,1844971122,29.44,25.23,49.96,50.02,0.3,0.28,1.51,1.51
-56160,27,165,27165,126,73,12823036,12149712,214,111,57123850,55847011,11211,5047,1138894710,1126508610,58.88,65.77,22.45,21.76,1.12,1.45,1.13,1.08
-56161,27,063,27063,400,175,84844050,84142561,400,175,84844050,84142561,10266,4990,1862809874,1820713972,100,100,100,100,3.9,3.51,4.55,4.62
-56162,27,091,27091,158,69,36773720,36773720,285,129,59477281,59477281,20840,10009,1889592947,1844971122,55.44,53.49,61.83,61.83,0.76,0.69,1.95,1.99
-56162,27,165,27165,127,60,22703561,22703561,285,129,59477281,59477281,11211,5047,1138894710,1126508610,44.56,46.51,38.17,38.17,1.13,1.19,1.99,2.02
-56164,27,081,27081,149,68,63438468,63385264,5969,2801,679261777,678496148,5896,3108,1420433108,1390192941,2.5,2.43,9.34,9.34,2.53,2.19,4.47,4.56
-56164,27,117,27117,5771,2713,594620154,593907729,5969,2801,679261777,678496148,9596,4483,1206835386,1204486122,96.68,96.86,87.54,87.53,60.14,60.52,49.27,49.31
-56164,46,101,46101,49,20,21203155,21203155,5969,2801,679261777,678496148,6486,2824,1348883708,1345204308,0.82,0.71,3.12,3.13,0.76,0.71,1.57,1.58
-56165,27,105,27105,349,146,98998778,98853224,349,146,98998778,98853224,21378,8535,1871415389,1852116504,100,100,100,100,1.63,1.71,5.29,5.34
-56166,27,033,27033,69,33,44291508,44291508,253,110,92241532,92226710,11687,5412,1679765379,1653992908,27.27,30,48.02,48.02,0.59,0.61,2.64,2.68
-56166,27,127,27127,184,77,47950024,47935202,253,110,92241532,92226710,16059,7272,2283722235,2275491832,72.73,70,51.98,51.98,1.15,1.06,2.1,2.11
-56167,27,063,27063,228,93,113465650,108325135,661,326,138021811,131864463,10266,4990,1862809874,1820713972,34.49,28.53,82.21,82.15,2.22,1.86,6.09,5.95
-56167,27,105,27105,433,233,24556161,23539328,661,326,138021811,131864463,21378,8535,1871415389,1852116504,65.51,71.47,17.79,17.85,2.03,2.73,1.31,1.27
-56168,27,105,27105,932,424,253597695,253270364,932,424,253597695,253270364,21378,8535,1871415389,1852116504,100,100,100,100,4.36,4.97,13.55,13.67
-56169,27,083,27083,681,315,143784137,140801661,681,315,143784137,140801661,25857,11098,1869109859,1850698900,100,100,100,100,2.63,2.84,7.69,7.61
-56170,27,083,27083,85,41,25986587,23708197,587,280,180928049,178137162,25857,11098,1869109859,1850698900,14.48,14.64,14.36,13.31,0.33,0.37,1.39,1.28
-56170,27,101,27101,76,37,61999868,61617808,587,280,180928049,178137162,8725,4556,1863502121,1825169529,12.95,13.21,34.27,34.59,0.87,0.81,3.33,3.38
-56170,27,117,27117,426,202,92941594,92811157,587,280,180928049,178137162,9596,4483,1206835386,1204486122,72.57,72.14,51.37,52.1,4.44,4.51,7.7,7.71
-56171,27,091,27091,1821,934,250710884,243519105,1821,934,250710884,243519105,20840,10009,1889592947,1844971122,100,100,100,100,8.74,9.33,13.27,13.2
-56172,27,101,27101,3164,1665,314718296,308340129,3164,1665,314718296,308340129,8725,4556,1863502121,1825169529,100,100,100,100,36.26,36.55,16.89,16.89
-56173,27,133,27133,424,161,74431694,74431694,424,161,74431694,74431694,9687,4262,1250250867,1249552632,100,100,100,100,4.38,3.78,5.95,5.96
-56174,27,033,27033,357,194,101191720,99353938,357,194,101191720,99353938,11687,5412,1679765379,1653992908,100,100,100,100,3.05,3.58,6.02,6.01
-56175,27,083,27083,2655,1240,189912007,189755889,3085,1562,366359226,354199911,25857,11098,1869109859,1850698900,86.06,79.39,51.84,53.57,10.27,11.17,10.16,10.25
-56175,27,101,27101,280,261,94317616,82585958,3085,1562,366359226,354199911,8725,4556,1863502121,1825169529,9.08,16.71,25.74,23.32,3.21,5.73,5.06,4.52
-56175,27,127,27127,150,61,82129603,81858064,3085,1562,366359226,354199911,16059,7272,2283722235,2275491832,4.86,3.91,22.42,23.11,0.93,0.84,3.6,3.6
-56176,27,091,27091,1137,516,162724411,158817537,1137,516,162724411,158817537,20840,10009,1889592947,1844971122,100,100,100,100,5.46,5.16,8.61,8.61
-56177,27,117,27117,45,22,957166,957166,45,22,957166,957166,9596,4483,1206835386,1204486122,100,100,100,100,0.47,0.49,0.08,0.08
-56178,27,081,27081,1685,800,197364776,190470653,1746,824,226069921,219175798,5896,3108,1420433108,1390192941,96.51,97.09,87.3,86.9,28.58,25.74,13.89,13.7
-56178,27,083,27083,61,24,28705145,28705145,1746,824,226069921,219175798,25857,11098,1869109859,1850698900,3.49,2.91,12.7,13.1,0.24,0.22,1.54,1.55
-56180,27,033,27033,88,35,38890831,38890831,1408,588,299165213,298701874,11687,5412,1679765379,1653992908,6.25,5.95,13,13.02,0.75,0.65,2.32,2.35
-56180,27,101,27101,80,34,43448064,43448064,1408,588,299165213,298701874,8725,4556,1863502121,1825169529,5.68,5.78,14.52,14.55,0.92,0.75,2.33,2.38
-56180,27,127,27127,1240,519,216826318,216362979,1408,588,299165213,298701874,16059,7272,2283722235,2275491832,88.07,88.27,72.48,72.43,7.72,7.14,9.49,9.51
-56181,27,091,27091,1147,550,170753774,169685805,1147,550,170753774,169685805,20840,10009,1889592947,1844971122,100,100,100,100,5.5,5.5,9.04,9.2
-56183,27,033,27033,1154,615,190189084,186548578,1263,679,270244676,265425476,11687,5412,1679765379,1653992908,91.37,90.57,70.38,70.28,9.87,11.36,11.32,11.28
-56183,27,101,27101,109,64,80055592,78876898,1263,679,270244676,265425476,8725,4556,1863502121,1825169529,8.63,9.43,29.62,29.72,1.25,1.4,4.3,4.32
-56185,27,105,27105,560,250,113717057,113601752,560,250,113717057,113601752,21378,8535,1871415389,1852116504,100,100,100,100,2.62,2.93,6.08,6.13
-56186,27,101,27101,81,37,64919659,64816629,388,188,162712940,162538444,8725,4556,1863502121,1825169529,20.88,19.68,39.9,39.88,0.93,0.81,3.48,3.55
-56186,27,117,27117,307,151,97793281,97721815,388,188,162712940,162538444,9596,4483,1206835386,1204486122,79.12,80.32,60.1,60.12,3.2,3.37,8.1,8.11
-56187,27,063,27063,100,40,34555308,34555308,14170,5278,450054917,439824170,10266,4990,1862809874,1820713972,0.71,0.76,7.68,7.86,0.97,0.8,1.86,1.9
-56187,27,105,27105,14070,5238,415499609,405268862,14170,5278,450054917,439824170,21378,8535,1871415389,1852116504,99.29,99.24,92.32,92.14,65.82,61.37,22.2,21.88
-56201,27,067,27067,23173,9593,339335684,310197465,23173,9593,339335684,310197465,42239,19476,2233481047,2063662339,100,100,100,100,54.86,49.26,15.19,15.03
-56207,27,149,27149,244,111,118028681,113190420,251,118,127189053,121906109,9726,4160,1490068878,1459726518,97.21,94.07,92.8,92.85,2.51,2.67,7.92,7.75
-56207,27,151,27151,7,7,9160372,8715689,251,118,127189053,121906109,9783,4835,1948157657,1921985452,2.79,5.93,7.2,7.15,0.07,0.14,0.47,0.45
-56208,27,023,27023,8,7,19566340,17946421,2066,1200,508550811,488418252,12441,5721,1522333405,1505097828,0.39,0.58,3.85,3.67,0.06,0.12,1.29,1.19
-56208,27,073,27073,53,27,59220442,51848632,2066,1200,508550811,488418252,7259,3692,2015037789,1981394636,2.57,2.25,11.64,10.62,0.73,0.73,2.94,2.62
-56208,27,151,27151,2005,1166,429764029,418623199,2066,1200,508550811,488418252,9783,4835,1948157657,1921985452,97.05,97.17,84.51,85.71,20.49,24.12,22.06,21.78
-56209,27,067,27067,2194,1257,226259779,206033505,2339,1313,274202445,253276141,42239,19476,2233481047,2063662339,93.8,95.73,82.52,81.35,5.19,6.45,10.13,9.98
-56209,27,093,27093,145,56,47942666,47242636,2339,1313,274202445,253276141,23300,10674,1669959610,1575174983,6.2,4.27,17.48,18.65,0.62,0.52,2.87,3
-56210,27,011,27011,13,14,584752,584752,13,14,584752,584752,5269,3115,1367817841,1292461863,100,100,100,100,0.25,0.45,0.04,0.05
-56211,27,011,27011,403,260,178601267,170956684,529,399,302138665,280807253,5269,3115,1367817841,1292461863,76.18,65.16,59.11,60.88,7.65,8.35,13.06,13.23
-56211,27,155,27155,126,139,123537398,109850569,529,399,302138665,280807253,3558,2073,1517351738,1486399478,23.82,34.84,40.89,39.12,3.54,6.71,8.14,7.39
-56212,27,073,27073,531,278,213823835,213209912,531,278,213823835,213209912,7259,3692,2015037789,1981394636,100,100,100,100,7.32,7.53,10.61,10.76
-56214,27,127,27127,686,313,143578948,142735042,725,334,163393135,162526103,16059,7272,2283722235,2275491832,94.62,93.71,87.87,87.82,4.27,4.3,6.29,6.27
-56214,27,173,27173,39,21,19814187,19791061,725,334,163393135,162526103,10438,4760,1976748613,1966062753,5.38,6.29,12.13,12.18,0.37,0.44,1,1.01
-56215,27,121,27121,85,42,43954967,43578803,4693,2244,554735986,547254205,10995,6435,1857290435,1734549440,1.81,1.87,7.92,7.96,0.77,0.65,2.37,2.51
-56215,27,151,27151,4608,2202,510781019,503675402,4693,2244,554735986,547254205,9783,4835,1948157657,1921985452,98.19,98.13,92.08,92.04,47.1,45.54,26.22,26.21
-56216,27,067,27067,670,279,99241467,99203891,670,279,99241467,99203891,42239,19476,2233481047,2063662339,100,100,100,100,1.59,1.43,4.44,4.81
-56218,27,073,27073,448,236,153250331,152458917,628,312,254781373,253378275,7259,3692,2015037789,1981394636,71.34,75.64,60.15,60.17,6.17,6.39,7.61,7.69
-56218,27,173,27173,180,76,101531042,100919358,628,312,254781373,253378275,10438,4760,1976748613,1966062753,28.66,24.36,39.85,39.83,1.72,1.6,5.14,5.13
-56219,27,155,27155,735,476,86670849,81702143,1082,652,207642840,196449464,3558,2073,1517351738,1486399478,67.93,73.01,41.74,41.59,20.66,22.96,5.71,5.5
-56219,46,109,46109,347,176,120971991,114747321,1082,652,207642840,196449464,10149,4905,2941631471,2851684211,32.07,26.99,58.26,58.41,3.42,3.59,4.11,4.02
-56220,27,073,27073,185,87,140430992,140235918,3070,1472,711199725,710459510,7259,3692,2015037789,1981394636,6.03,5.91,19.75,19.74,2.55,2.36,6.97,7.08
-56220,27,081,27081,141,78,88939343,88658327,3070,1472,711199725,710459510,5896,3108,1420433108,1390192941,4.59,5.3,12.51,12.48,2.39,2.51,6.26,6.38
-56220,27,173,27173,2744,1307,481829390,481565265,3070,1472,711199725,710459510,10438,4760,1976748613,1966062753,89.38,88.79,67.75,67.78,26.29,27.46,24.37,24.49
-56221,27,011,27011,47,20,39511197,39511197,773,406,363802380,362815326,5269,3115,1367817841,1292461863,6.08,4.93,10.86,10.89,0.89,0.64,2.89,3.06
-56221,27,149,27149,724,384,312613060,311626006,773,406,363802380,362815326,9726,4160,1490068878,1459726518,93.66,94.58,85.93,85.89,7.44,9.23,20.98,21.35
-56221,27,155,27155,2,2,11678123,11678123,773,406,363802380,362815326,3558,2073,1517351738,1486399478,0.26,0.49,3.21,3.22,0.06,0.1,0.77,0.79
-56222,27,023,27023,1984,871,246862262,246829874,1984,871,246862262,246829874,12441,5721,1522333405,1505097828,100,100,100,100,15.95,15.22,16.22,16.4
-56223,27,173,27173,1408,670,302901431,302518842,1408,670,302901431,302518842,10438,4760,1976748613,1966062753,100,100,100,100,13.49,14.08,15.32,15.39
-56224,27,127,27127,333,166,96290338,96273153,333,166,96290338,96273153,16059,7272,2283722235,2275491832,100,100,100,100,2.07,2.28,4.22,4.23
-56225,27,011,27011,834,522,287070681,276506362,834,522,287070681,276506362,5269,3115,1367817841,1292461863,100,100,100,100,15.83,16.76,20.99,21.39
-56226,27,121,27121,70,33,50064278,50035111,254,111,81759844,81611453,10995,6435,1857290435,1734549440,27.56,29.73,61.23,61.31,0.64,0.51,2.7,2.88
-56226,27,151,27151,184,78,31695566,31576342,254,111,81759844,81611453,9783,4835,1948157657,1921985452,72.44,70.27,38.77,38.69,1.88,1.61,1.63,1.64
-56227,27,011,27011,223,142,190435342,170556627,223,142,190435342,170556627,5269,3115,1367817841,1292461863,100,100,100,100,4.23,4.56,13.92,13.2
-56228,27,093,27093,858,432,142957221,141960547,882,442,153443378,152446704,23300,10674,1669959610,1575174983,97.28,97.74,93.17,93.12,3.68,4.05,8.56,9.01
-56228,27,129,27129,24,10,10486157,10486157,882,442,153443378,152446704,15730,7355,2556567327,2545715384,2.72,2.26,6.83,6.88,0.15,0.14,0.41,0.41
-56229,27,083,27083,1699,736,201143533,196484631,1871,804,257701834,252925765,25857,11098,1869109859,1850698900,90.81,91.54,78.05,77.68,6.57,6.63,10.76,10.62
-56229,27,173,27173,172,68,56558301,56441134,1871,804,257701834,252925765,10438,4760,1976748613,1966062753,9.19,8.46,21.95,22.32,1.65,1.43,2.86,2.87
-56230,27,129,27129,854,374,157633031,157496981,854,374,157633031,157496981,15730,7355,2556567327,2545715384,100,100,100,100,5.43,5.08,6.17,6.19
-56231,27,151,27151,390,183,258597781,257947444,390,183,258597781,257947444,9783,4835,1948157657,1921985452,100,100,100,100,3.99,3.78,13.27,13.42
-56232,27,073,27073,2415,1141,385484315,377767468,2415,1141,385484315,377767468,7259,3692,2015037789,1981394636,100,100,100,100,33.27,30.9,19.13,19.07
-56235,27,149,27149,579,298,238828548,231382106,579,298,238828548,231382106,9726,4160,1490068878,1459726518,100,100,100,100,5.95,7.16,16.03,15.85
-56236,27,011,27011,57,26,17523539,17523539,359,183,252693635,252580139,5269,3115,1367817841,1292461863,15.88,14.21,6.93,6.94,1.08,0.83,1.28,1.36
-56236,27,155,27155,302,157,235170096,235056600,359,183,252693635,252580139,3558,2073,1517351738,1486399478,84.12,85.79,93.07,93.06,8.49,7.57,15.5,15.81
-56237,27,173,27173,600,274,173472151,170610740,600,274,173472151,170610740,10438,4760,1976748613,1966062753,100,100,100,100,5.75,5.76,8.78,8.68
-56239,27,083,27083,596,248,69558551,69558551,596,248,69558551,69558551,25857,11098,1869109859,1850698900,100,100,100,100,2.3,2.23,3.72,3.76
-56240,27,011,27011,895,424,251381886,242198792,1042,489,397239499,386983229,5269,3115,1367817841,1292461863,85.89,86.71,63.28,62.59,16.99,13.61,18.38,18.74
-56240,27,155,27155,147,65,145857613,144784437,1042,489,397239499,386983229,3558,2073,1517351738,1486399478,14.11,13.29,36.72,37.41,4.13,3.14,9.61,9.74
-56241,27,023,27023,1106,579,87802615,86318646,4166,1943,383784216,380560908,12441,5721,1522333405,1505097828,26.55,29.8,22.88,22.68,8.89,10.12,5.77,5.74
-56241,27,129,27129,122,53,37045769,36984406,4166,1943,383784216,380560908,15730,7355,2556567327,2545715384,2.93,2.73,9.65,9.72,0.78,0.72,1.45,1.45
-56241,27,173,27173,2938,1311,258935832,257257856,4166,1943,383784216,380560908,10438,4760,1976748613,1966062753,70.52,67.47,67.47,67.6,28.15,27.54,13.1,13.08
-56243,27,093,27093,1725,761,249954316,242367599,1725,761,249954316,242367599,23300,10674,1669959610,1575174983,100,100,100,100,7.4,7.13,14.97,15.39
-56244,27,121,27121,202,82,97943822,97703654,1496,607,313666234,311248388,10995,6435,1857290435,1734549440,13.5,13.51,31.23,31.39,1.84,1.27,5.27,5.63
-56244,27,149,27149,1272,516,195295750,193223774,1496,607,313666234,311248388,9726,4160,1490068878,1459726518,85.03,85.01,62.26,62.08,13.08,12.4,13.11,13.24
-56244,27,151,27151,22,9,20426662,20320960,1496,607,313666234,311248388,9783,4835,1948157657,1921985452,1.47,1.48,6.51,6.53,0.22,0.19,1.05,1.06
-56245,27,173,27173,535,210,122264149,121866542,535,210,122264149,121866542,10438,4760,1976748613,1966062753,100,100,100,100,5.13,4.41,6.19,6.2
-56248,27,051,27051,714,394,259474092,249454036,807,433,361522581,351427500,6018,3324,1490493152,1419728446,88.48,90.99,71.77,70.98,11.86,11.85,17.41,17.57
-56248,27,149,27149,50,21,52578273,52503248,807,433,361522581,351427500,9726,4160,1490068878,1459726518,6.2,4.85,14.54,14.94,0.51,0.5,3.53,3.6
-56248,27,155,27155,43,18,49470216,49470216,807,433,361522581,351427500,3558,2073,1517351738,1486399478,5.33,4.16,13.68,14.08,1.21,0.87,3.26,3.33
-56249,27,151,27151,296,154,171791200,171539708,296,154,171791200,171539708,9783,4835,1948157657,1921985452,100,100,100,100,3.03,3.19,8.82,8.93
-56251,27,067,27067,987,438,91827400,87482720,987,438,91827400,87482720,42239,19476,2233481047,2063662339,100,100,100,100,2.34,2.25,4.11,4.24
-56252,27,023,27023,117,42,54548677,54546057,1238,543,188854722,188409509,12441,5721,1522333405,1505097828,9.45,7.73,28.88,28.95,0.94,0.73,3.58,3.62
-56252,27,067,27067,47,19,18602828,18602828,1238,543,188854722,188409509,42239,19476,2233481047,2063662339,3.8,3.5,9.85,9.87,0.11,0.1,0.83,0.9
-56252,27,151,27151,1074,482,115703217,115260624,1238,543,188854722,188409509,9783,4835,1948157657,1921985452,86.75,88.77,61.27,61.18,10.98,9.97,5.94,6
-56253,27,067,27067,1015,694,295429369,276317102,1015,694,295429369,276317102,42239,19476,2233481047,2063662339,100,100,100,100,2.4,3.56,13.23,13.39
-56255,27,127,27127,394,193,103761785,103516527,394,193,103761785,103516527,16059,7272,2283722235,2275491832,100,100,100,100,2.45,2.65,4.54,4.55
-56256,27,073,27073,2581,1380,606394995,598448099,2581,1380,606394995,598448099,7259,3692,2015037789,1981394636,100,100,100,100,35.56,37.38,30.09,30.2
-56257,27,073,27073,508,289,224583756,222854716,508,289,224583756,222854716,7259,3692,2015037789,1981394636,100,100,100,100,7,7.83,11.15,11.25
-56258,27,083,27083,15568,6489,482630373,481506461,15617,6512,502334587,501157658,25857,11098,1869109859,1850698900,99.69,99.65,96.08,96.08,60.21,58.47,25.82,26.02
-56258,27,127,27127,49,23,19704214,19651197,15617,6512,502334587,501157658,16059,7272,2283722235,2275491832,0.31,0.35,3.92,3.92,0.31,0.32,0.86,0.86
-56260,27,023,27023,845,375,212992942,212784994,929,413,246409017,246201069,12441,5721,1522333405,1505097828,90.96,90.8,86.44,86.43,6.79,6.55,13.99,14.14
-56260,27,129,27129,84,38,33416075,33416075,929,413,246409017,246201069,15730,7355,2556567327,2545715384,9.04,9.2,13.56,13.57,0.53,0.52,1.31,1.31
-56262,27,023,27023,666,330,147079874,140320695,724,355,177965090,171169619,12441,5721,1522333405,1505097828,91.99,92.96,82.65,81.98,5.35,5.77,9.66,9.32
-56262,27,151,27151,58,25,30885216,30848924,724,355,177965090,171169619,9783,4835,1948157657,1921985452,8.01,7.04,17.35,18.02,0.59,0.52,1.59,1.61
-56263,27,083,27083,44,18,23244425,23217968,541,240,129173504,128628449,25857,11098,1869109859,1850698900,8.13,7.5,17.99,18.05,0.17,0.16,1.24,1.25
-56263,27,127,27127,497,222,105929079,105410481,541,240,129173504,128628449,16059,7272,2283722235,2275491832,91.87,92.5,82.01,81.95,3.09,3.05,4.64,4.63
-56264,27,081,27081,19,9,14343747,14321500,2204,987,327363058,327091327,5896,3108,1420433108,1390192941,0.86,0.91,4.38,4.38,0.32,0.29,1.01,1.03
-56264,27,083,27083,1960,860,239059886,239043231,2204,987,327363058,327091327,25857,11098,1869109859,1850698900,88.93,87.13,73.03,73.08,7.58,7.75,12.79,12.92
-56264,27,173,27173,225,118,73959425,73726596,2204,987,327363058,327091327,10438,4760,1976748613,1966062753,10.21,11.96,22.59,22.54,2.16,2.48,3.74,3.75
-56265,27,023,27023,7068,3230,526482982,523586697,7757,3532,692790160,689878316,12441,5721,1522333405,1505097828,91.12,91.45,75.99,75.9,56.81,56.46,34.58,34.79
-56265,27,073,27073,436,198,123786129,123772223,7757,3532,692790160,689878316,7259,3692,2015037789,1981394636,5.62,5.61,17.87,17.94,6.01,5.36,6.14,6.25
-56265,27,173,27173,253,104,42521049,42519396,7757,3532,692790160,689878316,10438,4760,1976748613,1966062753,3.26,2.94,6.14,6.16,2.42,2.18,2.15,2.16
-56266,27,015,27015,206,101,53748518,53529403,1628,737,266289900,265745182,25893,11493,1601815493,1582716009,12.65,13.7,20.18,20.14,0.8,0.88,3.36,3.38
-56266,27,127,27127,1422,636,212541382,212215779,1628,737,266289900,265745182,16059,7272,2283722235,2275491832,87.35,86.3,79.82,79.86,8.85,8.75,9.31,9.33
-56267,27,149,27149,6807,2803,537863096,524627908,6807,2803,537863096,524627908,9726,4160,1490068878,1459726518,100,100,100,100,69.99,67.38,36.1,35.94
-56270,27,127,27127,462,157,27884305,27623138,1061,445,104278295,103879612,16059,7272,2283722235,2275491832,43.54,35.28,26.74,26.59,2.88,2.16,1.22,1.21
-56270,27,129,27129,599,288,76393990,76256474,1061,445,104278295,103879612,15730,7355,2556567327,2545715384,56.46,64.72,73.26,73.41,3.81,3.92,2.99,3
-56271,27,023,27023,120,52,64294695,63092662,1196,540,392084642,387733049,12441,5721,1522333405,1505097828,10.03,9.63,16.4,16.27,0.96,0.91,4.22,4.19
-56271,27,151,27151,1076,488,327789947,324640387,1196,540,392084642,387733049,9783,4835,1948157657,1921985452,89.97,90.37,83.6,83.73,11,10.09,16.83,16.89
-56273,27,067,27067,4797,2352,283911024,254768033,4797,2352,283911024,254768033,42239,19476,2233481047,2063662339,100,100,100,100,11.36,12.08,12.71,12.35
-56274,27,051,27051,133,76,116062836,116062836,177,94,194244887,194244887,6018,3324,1490493152,1419728446,75.14,80.85,59.75,59.75,2.21,2.29,7.79,8.18
-56274,27,155,27155,44,18,78182051,78182051,177,94,194244887,194244887,3558,2073,1517351738,1486399478,24.86,19.15,40.25,40.25,1.24,0.87,5.15,5.26
-56276,27,011,27011,243,122,70369618,70215247,298,151,149546291,142127677,5269,3115,1367817841,1292461863,81.54,80.79,47.06,49.4,4.61,3.92,5.14,5.43
-56276,27,073,27073,55,29,79176673,71912430,298,151,149546291,142127677,7259,3692,2015037789,1981394636,18.46,19.21,52.94,50.6,0.76,0.79,3.93,3.63
-56277,27,129,27129,3191,1432,277112183,277033415,3191,1432,277112183,277033415,15730,7355,2556567327,2545715384,100,100,100,100,20.29,19.47,10.84,10.88
-56278,27,011,27011,2554,1585,332339559,304408663,2601,1612,361225880,333294984,5269,3115,1367817841,1292461863,98.19,98.33,92,91.33,48.47,50.88,24.3,23.55
-56278,27,073,27073,47,27,28886321,28886321,2601,1612,361225880,333294984,7259,3692,2015037789,1981394636,1.81,1.67,8,8.67,0.65,0.73,1.43,1.46
-56279,27,067,27067,1271,533,163983005,155850038,1271,533,163983005,155850038,42239,19476,2233481047,2063662339,100,100,100,100,3.01,2.74,7.34,7.55
-56280,27,081,27081,154,70,89770490,89647584,480,237,180694215,180446498,5896,3108,1420433108,1390192941,32.08,29.54,49.68,49.68,2.61,2.25,6.32,6.45
-56280,27,173,27173,326,167,90923725,90798914,480,237,180694215,180446498,10438,4760,1976748613,1966062753,67.92,70.46,50.32,50.32,3.12,3.51,4.6,4.62
-56281,27,067,27067,619,261,31890800,31890800,619,261,31890800,31890800,42239,19476,2233481047,2063662339,100,100,100,100,1.47,1.34,1.43,1.55
-56282,27,023,27023,217,89,102248590,102222777,1510,631,274186696,273084575,12441,5721,1522333405,1505097828,14.37,14.1,37.29,37.43,1.74,1.56,6.72,6.79
-56282,27,067,27067,1293,542,171938106,170861798,1510,631,274186696,273084575,42239,19476,2233481047,2063662339,85.63,85.9,62.71,62.57,3.06,2.78,7.7,8.28
-56283,27,127,27127,6451,2983,390562485,388041579,6636,3073,461358462,458695399,16059,7272,2283722235,2275491832,97.21,97.07,84.65,84.6,40.17,41.02,17.1,17.05
-56283,27,129,27129,185,90,70795977,70653820,6636,3073,461358462,458695399,15730,7355,2556567327,2545715384,2.79,2.93,15.35,15.4,1.18,1.22,2.77,2.78
-56284,27,067,27067,138,56,45190756,45190756,2111,955,364297796,364039969,42239,19476,2233481047,2063662339,6.54,5.86,12.4,12.41,0.33,0.29,2.02,2.19
-56284,27,127,27127,8,3,4356437,4299043,2111,955,364297796,364039969,16059,7272,2283722235,2275491832,0.38,0.31,1.2,1.18,0.05,0.04,0.19,0.19
-56284,27,129,27129,1965,896,314750603,314550170,2111,955,364297796,364039969,15730,7355,2556567327,2545715384,93.08,93.82,86.4,86.41,12.49,12.18,12.31,12.36
-56285,27,129,27129,1096,526,253253584,253055931,1096,526,253253584,253055931,15730,7355,2556567327,2545715384,100,100,100,100,6.97,7.15,9.91,9.94
-56287,27,127,27127,81,35,1144743,1143475,81,35,1144743,1143475,16059,7272,2283722235,2275491832,100,100,100,100,0.5,0.48,0.05,0.05
-56288,27,067,27067,4696,2788,164504268,121591665,4696,2788,164504268,121591665,42239,19476,2233481047,2063662339,100,100,100,100,11.12,14.32,7.37,5.89
-56289,27,067,27067,571,349,98144365,87865707,634,390,139707013,126702480,42239,19476,2233481047,2063662339,90.06,89.49,70.25,69.35,1.35,1.79,4.39,4.26
-56289,27,151,27151,63,41,41562648,38836773,634,390,139707013,126702480,9783,4835,1948157657,1921985452,9.94,10.51,29.75,30.65,0.64,0.85,2.13,2.02
-56291,27,081,27081,89,39,45056320,44972042,501,230,175222433,174812782,5896,3108,1420433108,1390192941,17.76,16.96,25.71,25.73,1.51,1.25,3.17,3.23
-56291,27,083,27083,261,124,52771226,52565239,501,230,175222433,174812782,25857,11098,1869109859,1850698900,52.1,53.91,30.12,30.07,1.01,1.12,2.82,2.84
-56291,27,173,27173,151,67,77394887,77275501,501,230,175222433,174812782,10438,4760,1976748613,1966062753,30.14,29.13,44.17,44.2,1.45,1.41,3.92,3.93
-56292,27,127,27127,636,261,154633496,154224898,636,261,154633496,154224898,16059,7272,2283722235,2275491832,100,100,100,100,3.96,3.59,6.77,6.78
-56293,27,127,27127,1223,525,220507804,219913399,1223,525,220507804,219913399,16059,7272,2283722235,2275491832,100,100,100,100,7.62,7.22,9.66,9.66
-56294,27,127,27127,84,41,674941,666887,84,41,674941,666887,16059,7272,2283722235,2275491832,100,100,100,100,0.52,0.56,0.03,0.03
-56295,27,023,27023,310,146,60454428,57449005,310,146,60454428,57449005,12441,5721,1522333405,1505097828,100,100,100,100,2.49,2.55,3.97,3.82
-56296,27,155,27155,2029,1132,657681492,646571439,2029,1132,657681492,646571439,3558,2073,1517351738,1486399478,100,100,100,100,57.03,54.61,43.34,43.5
-56297,27,173,27173,867,367,174643044,170771548,867,367,174643044,170771548,10438,4760,1976748613,1966062753,100,100,100,100,8.31,7.71,8.83,8.69
-56301,27,145,27145,32434,12235,197418666,192222225,32434,12235,197418666,192222225,150642,61974,3599957541,3478697697,100,100,100,100,21.53,19.74,5.48,5.53
-56303,27,145,27145,25984,11528,29470036,28920053,25984,11528,29470036,28920053,150642,61974,3599957541,3478697697,100,100,100,100,17.25,18.6,0.82,0.83
-56304,27,009,27009,6735,3389,19589267,19119861,16020,6882,159702967,155282352,38451,16140,1069814613,1057494279,42.04,49.24,12.27,12.31,17.52,21,1.83,1.81
-56304,27,141,27141,9285,3493,140113700,136162491,16020,6882,159702967,155282352,88499,32379,1168196798,1121251072,57.96,50.76,87.73,87.69,10.49,10.79,11.99,12.14
-56307,27,145,27145,5157,1981,282467559,277767815,5157,1981,282467559,277767815,150642,61974,3599957541,3478697697,100,100,100,100,3.42,3.2,7.85,7.98
-56308,27,041,27041,23899,12893,496175116,399138947,23961,12937,500744119,403707950,36009,19905,1864803623,1650598293,99.74,99.66,99.09,98.87,66.37,64.77,26.61,24.18
-56308,27,121,27121,62,44,4569003,4569003,23961,12937,500744119,403707950,10995,6435,1857290435,1734549440,0.26,0.34,0.91,1.13,0.56,0.68,0.25,0.26
-56309,27,051,27051,948,665,109554904,86859306,1185,774,169400697,141861406,6018,3324,1490493152,1419728446,80,85.92,64.67,61.23,15.75,20.01,7.35,6.12
-56309,27,111,27111,237,109,59845793,55002100,1185,774,169400697,141861406,57303,35594,5761527953,5107632889,20,14.08,35.33,38.77,0.41,0.31,1.04,1.08
-56310,27,145,27145,5120,2130,196203073,185459091,5120,2130,196203073,185459091,150642,61974,3599957541,3478697697,100,100,100,100,3.4,3.44,5.45,5.33
-56311,27,051,27051,757,375,193660921,182967203,757,375,193660921,182967203,6018,3324,1490493152,1419728446,100,100,100,100,12.58,11.28,12.99,12.89
-56312,27,067,27067,436,186,116572290,113115734,2365,998,455902860,448763815,42239,19476,2233481047,2063662339,18.44,18.64,25.57,25.21,1.03,0.96,5.22,5.48
-56312,27,145,27145,1929,812,339330570,335648081,2365,998,455902860,448763815,150642,61974,3599957541,3478697697,81.56,81.36,74.43,74.79,1.28,1.31,9.43,9.65
-56313,27,095,27095,106,49,378664,378664,106,49,378664,378664,26097,12750,1765287171,1482276069,100,100,100,100,0.41,0.38,0.02,0.03
-56314,27,097,27097,1202,476,103691832,102762906,1258,497,110894547,109965621,33198,15731,2987259818,2913897170,95.55,95.77,93.5,93.45,3.62,3.03,3.47,3.53
-56314,27,145,27145,56,21,7202715,7202715,1258,497,110894547,109965621,150642,61974,3599957541,3478697697,4.45,4.23,6.5,6.55,0.04,0.03,0.2,0.21
-56315,27,041,27041,1581,911,196918370,175121889,1591,919,203297732,180242796,36009,19905,1864803623,1650598293,99.37,99.13,96.86,97.16,4.39,4.58,10.56,10.61
-56315,27,111,27111,10,8,6379362,5120907,1591,919,203297732,180242796,57303,35594,5761527953,5107632889,0.63,0.87,3.14,2.84,0.02,0.02,0.11,0.1
-56316,27,067,27067,114,51,45494901,43701287,1580,722,361893450,350466393,42239,19476,2233481047,2063662339,7.22,7.06,12.57,12.47,0.27,0.26,2.04,2.12
-56316,27,121,27121,378,205,187818592,180046140,1580,722,361893450,350466393,10995,6435,1857290435,1734549440,23.92,28.39,51.9,51.37,3.44,3.19,10.11,10.38
-56316,27,145,27145,1088,466,128579957,126718966,1580,722,361893450,350466393,150642,61974,3599957541,3478697697,68.86,64.54,35.53,36.16,0.72,0.75,3.57,3.64
-56318,27,097,27097,454,189,38528703,35853353,1238,873,114242501,103326012,33198,15731,2987259818,2913897170,36.67,21.65,33.73,34.7,1.37,1.2,1.29,1.23
-56318,27,153,27153,784,684,75713798,67472659,1238,873,114242501,103326012,24895,12917,2536893164,2447491054,63.33,78.35,66.27,65.3,3.15,5.3,2.98,2.76
-56319,27,041,27041,1272,642,88514776,88318199,1321,668,104291551,104094974,36009,19905,1864803623,1650598293,96.29,96.11,84.87,84.84,3.53,3.23,4.75,5.35
-56319,27,153,27153,49,26,15776775,15776775,1321,668,104291551,104094974,24895,12917,2536893164,2447491054,3.71,3.89,15.13,15.16,0.2,0.2,0.62,0.64
-56320,27,145,27145,8080,3380,149022144,138751929,8080,3380,149022144,138751929,150642,61974,3599957541,3478697697,100,100,100,100,5.36,5.45,4.14,3.99
-56321,27,145,27145,1536,2,2376435,1716841,1536,2,2376435,1716841,150642,61974,3599957541,3478697697,100,100,100,100,1.02,0,0.07,0.05
-56323,27,121,27121,478,239,84226799,83094958,496,248,96758980,94364245,10995,6435,1857290435,1734549440,96.37,96.37,87.05,88.06,4.35,3.71,4.53,4.79
-56323,27,149,27149,18,9,12532181,11269287,496,248,96758980,94364245,9726,4160,1490068878,1459726518,3.63,3.63,12.95,11.94,0.19,0.22,0.84,0.77
-56324,27,111,27111,1115,647,179088700,145944856,1115,647,179088700,145944856,57303,35594,5761527953,5107632889,100,100,100,100,1.95,1.82,3.11,2.86
-56325,27,145,27145,211,91,419514,419514,211,91,419514,419514,150642,61974,3599957541,3478697697,100,100,100,100,0.14,0.15,0.01,0.01
-56326,27,041,27041,1447,768,259439683,226520631,1526,807,278693414,245083425,36009,19905,1864803623,1650598293,94.82,95.17,93.09,92.43,4.02,3.86,13.91,13.72
-56326,27,111,27111,79,39,19253731,18562794,1526,807,278693414,245083425,57303,35594,5761527953,5107632889,5.18,4.83,6.91,7.57,0.14,0.11,0.33,0.36
-56327,27,041,27041,568,453,67537995,54820084,803,557,148308158,129703782,36009,19905,1864803623,1650598293,70.73,81.33,45.54,42.27,1.58,2.28,3.62,3.32
-56327,27,121,27121,235,104,80770163,74883698,803,557,148308158,129703782,10995,6435,1857290435,1734549440,29.27,18.67,54.46,57.73,2.14,1.62,4.35,4.32
-56328,27,097,27097,128,55,3620411,3620411,128,55,3620411,3620411,33198,15731,2987259818,2913897170,100,100,100,100,0.39,0.35,0.12,0.12
-56329,27,009,27009,6953,2675,439781772,439516677,7367,2838,495834779,495569684,38451,16140,1069814613,1057494279,94.38,94.26,88.7,88.69,18.08,16.57,41.11,41.56
-56329,27,097,27097,414,163,56053007,56053007,7367,2838,495834779,495569684,33198,15731,2987259818,2913897170,5.62,5.74,11.3,11.31,1.25,1.04,1.88,1.92
-56330,27,009,27009,270,107,36370942,36366450,1691,671,103236526,103095304,38451,16140,1069814613,1057494279,15.97,15.95,35.23,35.27,0.7,0.66,3.4,3.44
-56330,27,095,27095,1421,564,66865584,66728854,1691,671,103236526,103095304,26097,12750,1765287171,1482276069,84.03,84.05,64.77,64.73,5.45,4.42,3.79,4.5
-56331,27,145,27145,2009,761,182786691,178422138,2019,764,183978618,179614065,150642,61974,3599957541,3478697697,99.5,99.61,99.35,99.34,1.33,1.23,5.08,5.13
-56331,27,153,27153,10,3,1191927,1191927,2019,764,183978618,179614065,24895,12917,2536893164,2447491054,0.5,0.39,0.65,0.66,0.04,0.02,0.05,0.05
-56332,27,041,27041,1407,684,140065550,132033777,1407,684,140065550,132033777,36009,19905,1864803623,1650598293,100,100,100,100,3.91,3.44,7.51,8
-56334,27,041,27041,102,97,3786819,3591668,5497,3392,568470323,520123265,36009,19905,1864803623,1650598293,1.86,2.86,0.67,0.69,0.28,0.49,0.2,0.22
-56334,27,121,27121,5395,3295,564683504,516531597,5497,3392,568470323,520123265,10995,6435,1857290435,1734549440,98.14,97.14,99.33,99.31,49.07,51.2,30.4,29.78
-56335,27,145,27145,199,95,1336224,1336224,199,95,1336224,1336224,150642,61974,3599957541,3478697697,100,100,100,100,0.13,0.15,0.04,0.04
-56336,27,145,27145,77,72,3787595,2987930,1514,1128,143581224,128623441,150642,61974,3599957541,3478697697,5.09,6.38,2.64,2.32,0.05,0.12,0.11,0.09
-56336,27,153,27153,1437,1056,139793629,125635511,1514,1128,143581224,128623441,24895,12917,2536893164,2447491054,94.91,93.62,97.36,97.68,5.77,8.18,5.51,5.13
-56338,27,035,27035,145,296,26571933,18508720,1691,1305,450507420,434641584,62500,40180,2995390792,2587642841,8.57,22.68,5.9,4.26,0.23,0.74,0.89,0.72
-56338,27,097,27097,1546,1009,423935487,416132864,1691,1305,450507420,434641584,33198,15731,2987259818,2913897170,91.43,77.32,94.1,95.74,4.66,6.41,14.19,14.28
-56339,27,041,27041,90,116,32283024,29945233,1129,609,170206297,162854616,36009,19905,1864803623,1650598293,7.97,19.05,18.97,18.39,0.25,0.58,1.73,1.81
-56339,27,051,27051,1039,493,137923273,132909383,1129,609,170206297,162854616,6018,3324,1490493152,1419728446,92.03,80.95,81.03,81.61,17.26,14.83,9.25,9.36
-56340,27,097,27097,414,149,35611810,35611810,2288,919,127859035,127850920,33198,15731,2987259818,2913897170,18.09,16.21,27.85,27.85,1.25,0.95,1.19,1.22
-56340,27,145,27145,1874,770,92247225,92239110,2288,919,127859035,127850920,150642,61974,3599957541,3478697697,81.91,83.79,72.15,72.15,1.24,1.24,2.56,2.65
-56342,27,001,27001,635,852,211221376,194029329,2739,2611,546511901,490234135,16202,16029,5167784397,4718084060,23.18,32.63,38.65,39.58,3.92,5.32,4.09,4.11
-56342,27,065,27065,440,293,180598445,178988459,2739,2611,546511901,490234135,16239,7849,1382232188,1350902712,16.06,11.22,33.05,36.51,2.71,3.73,13.07,13.25
-56342,27,095,27095,1664,1466,154692080,117216347,2739,2611,546511901,490234135,26097,12750,1765287171,1482276069,60.75,56.15,28.31,23.91,6.38,11.5,8.76,7.91
-56343,27,041,27041,764,437,125710576,111848289,926,511,194351009,178766797,36009,19905,1864803623,1650598293,82.51,85.52,64.68,62.57,2.12,2.2,6.74,6.78
-56343,27,051,27051,51,20,13335875,13157910,926,511,194351009,178766797,6018,3324,1490493152,1419728446,5.51,3.91,6.86,7.36,0.85,0.6,0.89,0.93
-56343,27,121,27121,79,36,32975269,31856829,926,511,194351009,178766797,10995,6435,1857290435,1734549440,8.53,7.05,16.97,17.82,0.72,0.56,1.78,1.84
-56343,27,149,27149,32,18,22329289,21903769,926,511,194351009,178766797,9726,4160,1490068878,1459726518,3.46,3.52,11.49,12.25,0.33,0.43,1.5,1.5
-56345,27,097,27097,14786,6455,598430516,587869470,14786,6455,598430516,587869470,33198,15731,2987259818,2913897170,100,100,100,100,44.54,41.03,20.03,20.17
-56347,27,153,27153,7062,2961,495593660,485804218,7062,2961,495593660,485804218,24895,12917,2536893164,2447491054,100,100,100,100,28.37,22.92,19.54,19.85
-56349,27,041,27041,80,53,14195362,13128447,733,357,130182060,110674899,36009,19905,1864803623,1650598293,10.91,14.85,10.9,11.86,0.22,0.27,0.76,0.8
-56349,27,121,27121,653,304,115986698,97546452,733,357,130182060,110674899,10995,6435,1857290435,1734549440,89.09,85.15,89.1,88.14,5.94,4.72,6.24,5.62
-56350,27,001,27001,570,570,594348852,593320268,570,570,594348852,593320268,16202,16029,5167784397,4718084060,100,100,100,100,3.52,3.56,11.5,12.58
-56352,27,145,27145,5868,2412,300354061,292742694,5868,2412,300354061,292742694,150642,61974,3599957541,3478697697,100,100,100,100,3.9,3.89,8.34,8.42
-56353,27,059,27059,47,21,11595227,11588522,8996,3789,483609882,480475991,37816,15321,1169784565,1128701342,0.52,0.55,2.4,2.41,0.12,0.14,0.99,1.03
-56353,27,065,27065,30,14,6396472,6390979,8996,3789,483609882,480475991,16239,7849,1382232188,1350902712,0.33,0.37,1.32,1.33,0.18,0.18,0.46,0.47
-56353,27,095,27095,8919,3754,465618183,462496490,8996,3789,483609882,480475991,26097,12750,1765287171,1482276069,99.14,99.08,96.28,96.26,34.18,29.44,26.38,31.2
-56354,27,041,27041,1367,1042,117798660,108665762,1367,1042,117798660,108665762,36009,19905,1864803623,1650598293,100,100,100,100,3.8,5.23,6.32,6.58
-56355,27,041,27041,579,237,67539958,67096120,579,237,67539958,67096120,36009,19905,1864803623,1650598293,100,100,100,100,1.61,1.19,3.62,4.06
-56356,27,145,27145,300,129,992921,992921,300,129,992921,992921,150642,61974,3599957541,3478697697,100,100,100,100,0.2,0.21,0.03,0.03
-56357,27,009,27009,710,274,77101324,77101324,1029,389,96013841,95998110,38451,16140,1069814613,1057494279,69,70.44,80.3,80.32,1.85,1.7,7.21,7.29
-56357,27,095,27095,319,115,18912517,18896786,1029,389,96013841,95998110,26097,12750,1765287171,1482276069,31,29.56,19.7,19.68,1.22,0.9,1.07,1.27
-56358,27,059,27059,53,17,5738060,4960610,3256,1413,323413738,318825551,37816,15321,1169784565,1128701342,1.63,1.2,1.77,1.56,0.14,0.11,0.49,0.44
-56358,27,065,27065,3158,1364,273261497,269621074,3256,1413,323413738,318825551,16239,7849,1382232188,1350902712,96.99,96.53,84.49,84.57,19.45,17.38,19.77,19.96
-56358,27,095,27095,45,32,44414181,44243867,3256,1413,323413738,318825551,26097,12750,1765287171,1482276069,1.38,2.26,13.73,13.88,0.17,0.25,2.52,2.98
-56359,27,095,27095,3878,2240,724273421,502331234,3878,2240,724273421,502331234,26097,12750,1765287171,1482276069,100,100,100,100,14.86,17.57,41.03,33.89
-56360,27,041,27041,2393,1274,164397384,154197850,3917,2530,370436667,335676022,36009,19905,1864803623,1650598293,61.09,50.36,44.38,45.94,6.65,6.4,8.82,9.34
-56360,27,153,27153,1524,1256,206039283,181478172,3917,2530,370436667,335676022,24895,12917,2536893164,2447491054,38.91,49.64,55.62,54.06,6.12,9.72,8.12,7.41
-56361,27,041,27041,348,252,70470033,66301579,2403,1269,423047510,403648338,36009,19905,1864803623,1650598293,14.48,19.86,16.66,16.43,0.97,1.27,3.78,4.02
-56361,27,111,27111,2055,1017,352577477,337346759,2403,1269,423047510,403648338,57303,35594,5761527953,5107632889,85.52,80.14,83.34,83.57,3.59,2.86,6.12,6.6
-56362,27,067,27067,218,78,41155005,40989010,5844,2978,400449405,381139150,42239,19476,2233481047,2063662339,3.73,2.62,10.28,10.75,0.52,0.4,1.84,1.99
-56362,27,093,27093,451,234,53654874,51660592,5844,2978,400449405,381139150,23300,10674,1669959610,1575174983,7.72,7.86,13.4,13.55,1.94,2.19,3.21,3.28
-56362,27,145,27145,5175,2666,305639526,288489548,5844,2978,400449405,381139150,150642,61974,3599957541,3478697697,88.55,89.52,76.32,75.69,3.44,4.3,8.49,8.29
-56363,27,095,27095,155,59,994281,992811,155,59,994281,992811,26097,12750,1765287171,1482276069,100,100,100,100,0.59,0.46,0.06,0.07
-56364,27,035,27035,90,46,19860256,19769748,5416,2244,620069851,617500862,62500,40180,2995390792,2587642841,1.66,2.05,3.2,3.2,0.14,0.11,0.66,0.76
-56364,27,097,27097,5326,2198,600209595,597731114,5416,2244,620069851,617500862,33198,15731,2987259818,2913897170,98.34,97.95,96.8,96.8,16.04,13.97,20.09,20.51
-56367,27,009,27009,4981,2022,223314674,215617490,6263,2519,271245915,262280763,38451,16140,1069814613,1057494279,79.53,80.27,82.33,82.21,12.95,12.53,20.87,20.39
-56367,27,145,27145,1282,497,47931241,46663273,6263,2519,271245915,262280763,150642,61974,3599957541,3478697697,20.47,19.73,17.67,17.79,0.85,0.8,1.33,1.34
-56368,27,145,27145,4239,2376,195034238,178424909,4239,2376,195034238,178424909,150642,61974,3599957541,3478697697,100,100,100,100,2.81,3.83,5.42,5.13
-56369,27,145,27145,528,235,2430006,2430006,528,235,2430006,2430006,150642,61974,3599957541,3478697697,100,100,100,100,0.35,0.38,0.07,0.07
-56371,27,145,27145,99,54,1182083,1182083,99,54,1182083,1182083,150642,61974,3599957541,3478697697,100,100,100,100,0.07,0.09,0.03,0.03
-56373,27,009,27009,287,114,25388045,24154713,3051,1168,266498627,260539609,38451,16140,1069814613,1057494279,9.41,9.76,9.53,9.27,0.75,0.71,2.37,2.28
-56373,27,097,27097,2764,1054,241110582,236384896,3051,1168,266498627,260539609,33198,15731,2987259818,2913897170,90.59,90.24,90.47,90.73,8.33,6.7,8.07,8.11
-56374,27,145,27145,9868,3209,180744959,175780774,9868,3209,180744959,175780774,150642,61974,3599957541,3478697697,100,100,100,100,6.55,5.18,5.02,5.05
-56375,27,145,27145,852,317,9468836,9468836,852,317,9468836,9468836,150642,61974,3599957541,3478697697,100,100,100,100,0.57,0.51,0.26,0.27
-56376,27,145,27145,358,138,4718361,4718361,358,138,4718361,4718361,150642,61974,3599957541,3478697697,100,100,100,100,0.24,0.22,0.13,0.14
-56377,27,009,27009,2240,943,2107839,2015659,17648,6771,56029639,54261529,38451,16140,1069814613,1057494279,12.69,13.93,3.76,3.71,5.83,5.84,0.2,0.19
-56377,27,145,27145,15408,5828,53921800,52245870,17648,6771,56029639,54261529,150642,61974,3599957541,3478697697,87.31,86.07,96.24,96.29,10.23,9.4,1.5,1.5
-56378,27,145,27145,6385,2814,409370364,401117681,7778,3605,566606145,547428246,150642,61974,3599957541,3478697697,82.09,78.06,72.25,73.27,4.24,4.54,11.37,11.53
-56378,27,153,27153,1393,791,157235781,146310565,7778,3605,566606145,547428246,24895,12917,2536893164,2447491054,17.91,21.94,27.75,26.73,5.6,6.12,6.2,5.98
-56379,27,009,27009,16163,6573,236837762,234282373,16163,6573,236837762,234282373,38451,16140,1069814613,1057494279,100,100,100,100,42.04,40.72,22.14,22.15
-56381,27,121,27121,2458,1380,422622852,392310869,2458,1380,422622852,392310869,10995,6435,1857290435,1734549440,100,100,100,100,22.36,21.45,22.75,22.62
-56382,27,097,27097,1170,476,149291876,144763354,1540,664,193751465,188653588,33198,15731,2987259818,2913897170,75.97,71.69,77.05,76.74,3.52,3.03,5,4.97
-56382,27,153,27153,370,188,44459589,43890234,1540,664,193751465,188653588,24895,12917,2536893164,2447491054,24.03,28.31,22.95,23.26,1.49,1.46,1.75,1.79
-56384,27,097,27097,328,161,2828985,2828985,328,161,2828985,2828985,33198,15731,2987259818,2913897170,100,100,100,100,0.99,1.02,0.09,0.1
-56385,27,041,27041,28,10,5626097,5618134,928,681,177300585,168010460,36009,19905,1864803623,1650598293,3.02,1.47,3.17,3.34,0.08,0.05,0.3,0.34
-56385,27,121,27121,900,671,171674488,162392326,928,681,177300585,168010460,10995,6435,1857290435,1734549440,96.98,98.53,96.83,96.66,8.19,10.43,9.24,9.36
-56386,27,095,27095,652,593,65634165,51629023,652,593,65634165,51629023,26097,12750,1765287171,1482276069,100,100,100,100,2.5,4.65,3.72,3.48
-56387,27,145,27145,6734,3428,21967084,21967084,6734,3428,21967084,21967084,150642,61974,3599957541,3478697697,100,100,100,100,4.47,5.53,0.61,0.63
-56389,27,153,27153,111,42,1861686,1530267,111,42,1861686,1530267,24895,12917,2536893164,2447491054,100,100,100,100,0.45,0.33,0.07,0.06
-56401,27,021,27021,1685,1142,70778459,46859479,29439,14910,939854144,843440143,28567,24903,6252510295,5235770376,5.72,7.66,7.53,5.56,5.9,4.59,1.13,0.89
-56401,27,035,27035,27754,13768,869075685,796580664,29439,14910,939854144,843440143,62500,40180,2995390792,2587642841,94.28,92.34,92.47,94.44,44.41,34.27,29.01,30.78
-56425,27,035,27035,7655,3188,55998799,49047370,7655,3188,55998799,49047370,62500,40180,2995390792,2587642841,100,100,100,100,12.25,7.93,1.87,1.9
-56431,27,001,27001,8263,7205,1328944431,1005695792,8931,7858,1508632669,1170344328,16202,16029,5167784397,4718084060,92.52,91.69,88.09,85.93,51,44.95,25.72,21.32
-56431,27,035,27035,668,653,179688238,164648536,8931,7858,1508632669,1170344328,62500,40180,2995390792,2587642841,7.48,8.31,11.91,14.07,1.07,1.63,6,6.36
-56433,27,021,27021,346,308,84613986,76403885,1840,1360,336129869,315090533,28567,24903,6252510295,5235770376,18.8,22.65,25.17,24.25,1.21,1.24,1.35,1.46
-56433,27,057,27057,1494,1052,251515883,238686648,1840,1360,336129869,315090533,20428,14622,2588846662,2397485927,81.2,77.35,74.83,75.75,7.31,7.19,9.72,9.96
-56434,27,153,27153,163,55,32095614,32095614,235,99,38677248,38677248,24895,12917,2536893164,2447491054,69.36,55.56,82.98,82.98,0.65,0.43,1.27,1.31
-56434,27,159,27159,72,44,6581634,6581634,235,99,38677248,38677248,13843,6899,1406967878,1388928925,30.64,44.44,17.02,17.02,0.52,0.64,0.47,0.47
-56435,27,021,27021,2367,2164,451862311,413021477,2372,2186,454869938,414762548,28567,24903,6252510295,5235770376,99.79,98.99,99.34,99.58,8.29,8.69,7.23,7.89
-56435,27,035,27035,5,22,3007627,1741071,2372,2186,454869938,414762548,62500,40180,2995390792,2587642841,0.21,1.01,0.66,0.42,0.01,0.05,0.1,0.07
-56436,27,057,27057,67,26,1732426,1685552,67,26,1732426,1685552,20428,14622,2588846662,2397485927,100,100,100,100,0.33,0.18,0.07,0.07
-56437,27,111,27111,91,37,27242585,27229611,1380,540,172403134,172390160,57303,35594,5761527953,5107632889,6.59,6.85,15.8,15.8,0.16,0.1,0.47,0.53
-56437,27,153,27153,1289,503,145160549,145160549,1380,540,172403134,172390160,24895,12917,2536893164,2447491054,93.41,93.15,84.2,84.2,5.18,3.89,5.72,5.93
-56438,27,153,27153,2949,1461,378560674,372257641,2949,1461,378560674,372257641,24895,12917,2536893164,2447491054,100,100,100,100,11.85,11.31,14.92,15.21
-56440,27,153,27153,1409,598,140711193,140682118,1409,598,140711193,140682118,24895,12917,2536893164,2447491054,100,100,100,100,5.66,4.63,5.55,5.75
-56441,27,035,27035,3596,2066,226869483,205476075,3596,2066,226869483,205476075,62500,40180,2995390792,2587642841,100,100,100,100,5.75,5.14,7.57,7.94
-56442,27,035,27035,2381,3136,122731650,91762613,2381,3136,122731650,91762613,62500,40180,2995390792,2587642841,100,100,100,100,3.81,7.8,4.1,3.55
-56443,27,097,27097,1069,1167,174687510,156034541,1417,1491,288133936,261149156,33198,15731,2987259818,2913897170,75.44,78.27,60.63,59.75,3.22,7.42,5.85,5.35
-56443,27,153,27153,348,324,113446426,105114615,1417,1491,288133936,261149156,24895,12917,2536893164,2447491054,24.56,21.73,39.37,40.25,1.4,2.51,4.47,4.29
-56444,27,035,27035,3087,2768,180828142,144483616,3087,2768,180828142,144483616,62500,40180,2995390792,2587642841,100,100,100,100,4.94,6.89,6.04,5.58
-56446,27,041,27041,84,36,14344220,14251684,1597,773,259051932,257998582,36009,19905,1864803623,1650598293,5.26,4.66,5.54,5.52,0.23,0.18,0.77,0.86
-56446,27,111,27111,85,44,28828696,28379509,1597,773,259051932,257998582,57303,35594,5761527953,5107632889,5.32,5.69,11.13,11,0.15,0.12,0.5,0.56
-56446,27,153,27153,1428,693,215879016,215367389,1597,773,259051932,257998582,24895,12917,2536893164,2447491054,89.42,89.65,83.33,83.48,5.74,5.37,8.51,8.8
-56447,27,035,27035,1150,1480,280384181,254839387,1150,1480,280384181,254839387,62500,40180,2995390792,2587642841,100,100,100,100,1.84,3.68,9.36,9.85
-56448,27,021,27021,25,58,599015,303295,332,613,78502571,69695250,28567,24903,6252510295,5235770376,7.53,9.46,0.76,0.44,0.09,0.23,0.01,0.01
-56448,27,035,27035,307,555,77903556,69391955,332,613,78502571,69695250,62500,40180,2995390792,2587642841,92.47,90.54,99.24,99.56,0.49,1.38,2.6,2.68
-56449,27,035,27035,1352,655,164220860,159640706,1769,827,244785861,238523102,62500,40180,2995390792,2587642841,76.43,79.2,67.09,66.93,2.16,1.63,5.48,6.17
-56449,27,097,27097,417,172,80565001,78882396,1769,827,244785861,238523102,33198,15731,2987259818,2913897170,23.57,20.8,32.91,33.07,1.26,1.09,2.7,2.71
-56450,27,035,27035,628,830,72494793,61196150,1017,1209,80966696,66380882,62500,40180,2995390792,2587642841,61.75,68.65,89.54,92.19,1,2.07,2.42,2.36
-56450,27,095,27095,389,379,8471903,5184732,1017,1209,80966696,66380882,26097,12750,1765287171,1482276069,38.25,31.35,10.46,7.81,1.49,2.97,0.48,0.35
-56452,27,021,27021,1755,3223,326396442,252887861,1755,3223,326396442,252887861,28567,24903,6252510295,5235770376,100,100,100,100,6.14,12.94,5.22,4.83
-56453,27,111,27111,317,160,82843904,82529901,871,423,141779958,141428113,57303,35594,5761527953,5107632889,36.39,37.83,58.43,58.35,0.55,0.45,1.44,1.62
-56453,27,153,27153,554,263,58936054,58898212,871,423,141779958,141428113,24895,12917,2536893164,2447491054,63.61,62.17,41.57,41.65,2.23,2.04,2.32,2.41
-56455,27,035,27035,1488,785,70042614,63155231,1488,785,70042614,63155231,62500,40180,2995390792,2587642841,100,100,100,100,2.38,1.95,2.34,2.44
-56456,27,035,27035,50,24,1918995,1918995,50,24,1918995,1918995,62500,40180,2995390792,2587642841,100,100,100,100,0.08,0.06,0.06,0.07
-56458,27,057,27057,357,292,70664165,65015985,357,292,70664165,65015985,20428,14622,2588846662,2397485927,100,100,100,100,1.75,2,2.73,2.71
-56461,27,021,27021,122,73,28198735,25570674,3241,2033,743117417,709717227,28567,24903,6252510295,5235770376,3.76,3.59,3.79,3.6,0.43,0.29,0.45,0.49
-56461,27,057,27057,3119,1960,714918682,684146553,3241,2033,743117417,709717227,20428,14622,2588846662,2397485927,96.24,96.41,96.21,96.4,15.27,13.4,27.62,28.54
-56464,27,005,27005,1069,488,220801679,220070912,4336,2539,674563931,657378595,32504,18784,3743006860,3406359731,24.65,19.22,32.73,33.48,3.29,2.6,5.9,6.46
-56464,27,057,27057,557,501,98352404,93406081,4336,2539,674563931,657378595,20428,14622,2588846662,2397485927,12.85,19.73,14.58,14.21,2.73,3.43,3.8,3.9
-56464,27,111,27111,84,45,34403237,33424114,4336,2539,674563931,657378595,57303,35594,5761527953,5107632889,1.94,1.77,5.1,5.08,0.15,0.13,0.6,0.65
-56464,27,159,27159,2626,1505,321006611,310477488,4336,2539,674563931,657378595,13843,6899,1406967878,1388928925,60.56,59.28,47.59,47.23,18.97,21.81,22.82,22.35
-56465,27,035,27035,2062,1693,135799156,100454865,2062,1693,135799156,100454865,62500,40180,2995390792,2587642841,100,100,100,100,3.3,4.21,4.53,3.88
-56466,27,021,27021,1401,837,354663359,350674316,3116,2136,498376354,483834779,28567,24903,6252510295,5235770376,44.96,39.19,71.16,72.48,4.9,3.36,5.67,6.7
-56466,27,097,27097,1372,1149,94497225,85022170,3116,2136,498376354,483834779,33198,15731,2987259818,2913897170,44.03,53.79,18.96,17.57,4.13,7.3,3.16,2.92
-56466,27,153,27153,343,150,49215770,48138293,3116,2136,498376354,483834779,24895,12917,2536893164,2447491054,11.01,7.02,9.88,9.95,1.38,1.16,1.94,1.97
-56467,27,057,27057,2412,2484,357468171,315292326,2412,2484,357468171,315292326,20428,14622,2588846662,2397485927,100,100,100,100,11.81,16.99,13.81,13.15
-56468,27,021,27021,1363,1312,77253051,58934589,4589,3694,196295591,133714869,28567,24903,6252510295,5235770376,29.7,35.52,39.36,44.07,4.77,5.27,1.24,1.13
-56468,27,035,27035,3226,2382,119042540,74780280,4589,3694,196295591,133714869,62500,40180,2995390792,2587642841,70.3,64.48,60.64,55.93,5.16,5.93,3.97,2.89
-56469,27,001,27001,998,1199,727318837,708522682,998,1199,727318837,708522682,16202,16029,5167784397,4718084060,100,100,100,100,6.16,7.48,14.07,15.02
-56470,27,005,27005,784,535,252341322,240934523,10334,7407,1107570955,1012328329,32504,18784,3743006860,3406359731,7.59,7.22,22.78,23.8,2.41,2.85,6.74,7.07
-56470,27,029,27029,26,54,111216415,100760873,10334,7407,1107570955,1012328329,8695,4773,2667003833,2587242195,0.25,0.73,10.04,9.95,0.3,1.13,4.17,3.89
-56470,27,057,27057,9509,6805,737395289,664469390,10334,7407,1107570955,1012328329,20428,14622,2588846662,2397485927,92.02,91.87,66.58,65.64,46.55,46.54,28.48,27.72
-56470,27,159,27159,15,13,6617929,6163543,10334,7407,1107570955,1012328329,13843,6899,1406967878,1388928925,0.15,0.18,0.6,0.61,0.11,0.19,0.47,0.44
-56472,27,021,27021,1263,625,264369794,259839248,7459,5803,459968090,403491657,28567,24903,6252510295,5235770376,16.93,10.77,57.48,64.4,4.42,2.51,4.23,4.96
-56472,27,035,27035,6196,5178,195598296,143652409,7459,5803,459968090,403491657,62500,40180,2995390792,2587642841,83.07,89.23,42.52,35.6,9.91,12.89,6.53,5.55
-56473,27,021,27021,3227,1627,191524126,181928124,3380,1747,219786798,208799247,28567,24903,6252510295,5235770376,95.47,93.13,87.14,87.13,11.3,6.53,3.06,3.47
-56473,27,097,27097,153,120,28262672,26871123,3380,1747,219786798,208799247,33198,15731,2987259818,2913897170,4.53,6.87,12.86,12.87,0.46,0.76,0.95,0.92
-56474,27,021,27021,3584,2084,483307733,463474256,4244,2739,676661721,630068706,28567,24903,6252510295,5235770376,84.45,76.09,71.43,73.56,12.55,8.37,7.73,8.85
-56474,27,035,27035,660,655,193353988,166594450,4244,2739,676661721,630068706,62500,40180,2995390792,2587642841,15.55,23.91,28.57,26.44,1.06,1.63,6.46,6.44
-56475,27,097,27097,1655,738,175300889,173743567,1655,738,175300889,173743567,33198,15731,2987259818,2913897170,100,100,100,100,4.99,4.69,5.87,5.96
-56477,27,021,27021,67,31,57848239,57775841,2758,1404,617634919,615330543,28567,24903,6252510295,5235770376,2.43,2.21,9.37,9.39,0.23,0.12,0.93,1.1
-56477,27,111,27111,476,206,133957273,133631499,2758,1404,617634919,615330543,57303,35594,5761527953,5107632889,17.26,14.67,21.69,21.72,0.83,0.58,2.33,2.62
-56477,27,159,27159,2215,1167,425829407,423923203,2758,1404,617634919,615330543,13843,6899,1406967878,1388928925,80.31,83.12,68.95,68.89,16,16.92,30.27,30.52
-56479,27,021,27021,212,96,157409680,156160868,5384,2631,522703838,512919088,28567,24903,6252510295,5235770376,3.94,3.65,30.11,30.45,0.74,0.39,2.52,2.98
-56479,27,153,27153,3327,1725,194604971,190164150,5384,2631,522703838,512919088,24895,12917,2536893164,2447491054,61.79,65.56,37.23,37.07,13.36,13.35,7.67,7.77
-56479,27,159,27159,1845,810,170689187,166594070,5384,2631,522703838,512919088,13843,6899,1406967878,1388928925,34.27,30.79,32.66,32.48,13.33,11.74,12.13,11.99
-56481,27,021,27021,51,22,26346914,26346914,2031,958,384100139,383036286,28567,24903,6252510295,5235770376,2.51,2.3,6.86,6.88,0.18,0.09,0.42,0.5
-56481,27,153,27153,310,129,66679846,66585222,2031,958,384100139,383036286,24895,12917,2536893164,2447491054,15.26,13.47,17.36,17.38,1.25,1,2.63,2.72
-56481,27,159,27159,1670,807,291073379,290104150,2031,958,384100139,383036286,13843,6899,1406967878,1388928925,82.23,84.24,75.78,75.74,12.06,11.7,20.69,20.89
-56482,27,111,27111,1231,454,151242408,151018152,6666,3016,340349062,340039912,57303,35594,5761527953,5107632889,18.47,15.05,44.44,44.41,2.15,1.28,2.63,2.96
-56482,27,153,27153,35,9,3936923,3936923,6666,3016,340349062,340039912,24895,12917,2536893164,2447491054,0.53,0.3,1.16,1.16,0.14,0.07,0.16,0.16
-56482,27,159,27159,5400,2553,185169731,185084837,6666,3016,340349062,340039912,13843,6899,1406967878,1388928925,81.01,84.65,54.41,54.43,39.01,37.01,13.16,13.33
-56484,27,021,27021,3205,2640,480481456,234770010,3205,2640,480481456,234770010,28567,24903,6252510295,5235770376,100,100,100,100,11.22,10.6,7.68,4.48
-56501,27,005,27005,15908,8820,544276396,458527145,16290,9412,579309220,484359064,32504,18784,3743006860,3406359731,97.66,93.71,93.95,94.67,48.94,46.95,14.54,13.46
-56501,27,111,27111,382,592,35032824,25831919,16290,9412,579309220,484359064,57303,35594,5761527953,5107632889,2.34,6.29,6.05,5.33,0.67,1.66,0.61,0.51
-56510,27,107,27107,2333,1131,612922527,611203172,2333,1131,612922527,611203172,6852,3421,2270720520,2260512228,100,100,100,100,34.05,33.06,26.99,27.04
-56511,27,005,27005,1878,1195,184799039,168075102,1878,1195,184799039,168075102,32504,18784,3743006860,3406359731,100,100,100,100,5.78,6.36,4.94,4.93
-56514,27,027,27027,3388,1423,345040540,344124186,3696,1560,555287784,554044943,58999,23959,2726345778,2707485607,91.67,91.22,62.14,62.11,5.74,5.94,12.66,12.71
-56514,27,111,27111,32,15,15257770,14937044,3696,1560,555287784,554044943,57303,35594,5761527953,5107632889,0.87,0.96,2.75,2.7,0.06,0.04,0.26,0.29
-56514,27,167,27167,276,122,194989474,194983713,3696,1560,555287784,554044943,6576,3078,1945521222,1944970552,7.47,7.82,35.12,35.19,4.2,3.96,10.02,10.03
-56515,27,111,27111,2892,3037,348142263,257555639,2892,3037,348142263,257555639,57303,35594,5761527953,5107632889,100,100,100,100,5.05,8.53,6.04,5.04
-56516,27,087,27087,241,116,185694990,183976719,294,140,209437629,207706589,5413,2786,1509734383,1444896195,81.97,82.86,88.66,88.58,4.45,4.16,12.3,12.73
-56516,27,107,27107,53,24,23742639,23729870,294,140,209437629,207706589,6852,3421,2270720520,2260512228,18.03,17.14,11.34,11.42,0.77,0.7,1.05,1.05
-56517,27,119,27119,279,118,245622832,245622832,279,118,245622832,245622832,31600,14610,5174241065,5105199042,100,100,100,100,0.88,0.81,4.75,4.81
-56518,27,111,27111,388,156,48656357,48436798,388,156,48656357,48436798,57303,35594,5761527953,5107632889,100,100,100,100,0.68,0.44,0.84,0.95
-56519,27,027,27027,91,39,88257086,88257086,300,150,245542512,245326972,58999,23959,2726345778,2707485607,30.33,26,35.94,35.98,0.15,0.16,3.24,3.26
-56519,27,107,27107,209,111,157285426,157069886,300,150,245542512,245326972,6852,3421,2270720520,2260512228,69.67,74,64.06,64.02,3.05,3.24,6.93,6.95
-56520,27,167,27167,3983,1868,318977216,318640112,3983,1868,318977216,318640112,6576,3078,1945521222,1944970552,100,100,100,100,60.57,60.69,16.4,16.38
-56521,27,005,27005,757,313,180515962,174277893,757,313,180515962,174277893,32504,18784,3743006860,3406359731,100,100,100,100,2.33,1.67,4.82,5.12
-56522,27,111,27111,42,18,46073056,46015855,538,271,379272791,379162909,57303,35594,5761527953,5107632889,7.81,6.64,12.15,12.14,0.07,0.05,0.8,0.9
-56522,27,167,27167,496,253,333199735,333147054,538,271,379272791,379162909,6576,3078,1945521222,1944970552,92.19,93.36,87.85,87.86,7.54,8.22,17.13,17.13
-56523,27,119,27119,539,228,214889461,214889461,539,228,214889461,214889461,31600,14610,5174241065,5105199042,100,100,100,100,1.71,1.56,4.15,4.21
-56524,27,111,27111,661,787,123976200,104376284,661,787,123976200,104376284,57303,35594,5761527953,5107632889,100,100,100,100,1.15,2.21,2.15,2.04
-56525,27,027,27027,106,48,5421187,5421187,106,48,5421187,5421187,58999,23959,2726345778,2707485607,100,100,100,100,0.18,0.2,0.2,0.2
-56527,27,111,27111,840,412,136647728,135107233,840,412,136647728,135107233,57303,35594,5761527953,5107632889,100,100,100,100,1.47,1.16,2.37,2.65
-56528,27,111,27111,1673,1729,226713482,167728716,1673,1729,226713482,167728716,57303,35594,5761527953,5107632889,100,100,100,100,2.92,4.86,3.93,3.28
-56529,27,027,27027,4026,1728,12813679,12789955,4026,1728,12813679,12789955,58999,23959,2726345778,2707485607,100,100,100,100,6.82,7.21,0.47,0.47
-56531,27,051,27051,1994,1093,430443063,413512847,1994,1093,430443063,413512847,6018,3324,1490493152,1419728446,100,100,100,100,33.13,32.88,28.88,29.13
-56533,27,111,27111,291,141,48633022,45845165,291,141,48633022,45845165,57303,35594,5761527953,5107632889,100,100,100,100,0.51,0.4,0.84,0.9
-56534,27,111,27111,1164,632,175836914,160156510,1164,632,175836914,160156510,57303,35594,5761527953,5107632889,100,100,100,100,2.03,1.78,3.05,3.14
-56535,27,119,27119,1337,872,201705955,185767822,1363,885,233467464,217529331,31600,14610,5174241065,5105199042,98.09,98.53,86.4,85.4,4.23,5.97,3.9,3.64
-56535,27,125,27125,26,13,31761509,31761509,1363,885,233467464,217529331,4089,1948,1120157183,1119929367,1.91,1.47,13.6,14.6,0.64,0.67,2.84,2.84
-56536,27,027,27027,482,224,264114227,263870469,482,224,264114227,263870469,58999,23959,2726345778,2707485607,100,100,100,100,0.82,0.93,9.69,9.75
-56537,27,111,27111,18548,8876,794163041,738293375,18548,8876,794163041,738293375,57303,35594,5761527953,5107632889,100,100,100,100,32.37,24.94,13.78,14.45
-56540,27,107,27107,208,100,116625094,116022276,1962,920,498322217,490318808,6852,3421,2270720520,2260512228,10.6,10.87,23.4,23.66,3.04,2.92,5.14,5.13
-56540,27,119,27119,1754,820,381697123,374296532,1962,920,498322217,490318808,31600,14610,5174241065,5105199042,89.4,89.13,76.6,76.34,5.55,5.61,7.38,7.33
-56541,27,107,27107,24,14,5187375,5183684,24,14,5187375,5183684,6852,3421,2270720520,2260512228,100,100,100,100,0.35,0.41,0.23,0.23
-56542,27,087,27087,158,82,132452967,124067686,2829,1377,522965787,495458749,5413,2786,1509734383,1444896195,5.59,5.95,25.33,25.04,2.92,2.94,8.77,8.59
-56542,27,119,27119,2671,1295,390512820,371391063,2829,1377,522965787,495458749,31600,14610,5174241065,5105199042,94.41,94.05,74.67,74.96,8.45,8.86,7.55,7.27
-56543,27,167,27167,276,130,172851043,172851043,276,130,172851043,172851043,6576,3078,1945521222,1944970552,100,100,100,100,4.2,4.22,8.88,8.89
-56544,27,005,27005,4279,1898,417071181,397265924,5294,2673,541790354,498073147,32504,18784,3743006860,3406359731,80.83,71.01,76.98,79.76,13.16,10.1,11.14,11.66
-56544,27,111,27111,1015,775,124719173,100807223,5294,2673,541790354,498073147,57303,35594,5761527953,5107632889,19.17,28.99,23.02,20.24,1.77,2.18,2.16,1.97
-56545,27,107,27107,682,347,402967606,402094211,682,347,402967606,402094211,6852,3421,2270720520,2260512228,100,100,100,100,9.95,10.14,17.75,17.79
-56546,27,027,27027,346,147,156156664,156153434,346,147,156156664,156153434,58999,23959,2726345778,2707485607,100,100,100,100,0.59,0.61,5.73,5.77
-56547,27,027,27027,2700,998,402357908,402022722,2700,998,402357908,402022722,58999,23959,2726345778,2707485607,100,100,100,100,4.58,4.17,14.76,14.85
-56548,27,107,27107,771,399,166980304,166075141,771,399,166980304,166075141,6852,3421,2270720520,2260512228,100,100,100,100,11.25,11.66,7.35,7.35
-56549,27,027,27027,4508,1963,551303942,540540817,4508,1963,551303942,540540817,58999,23959,2726345778,2707485607,100,100,100,100,7.64,8.19,20.22,19.96
-56550,27,107,27107,414,203,151254291,149950801,414,203,151254291,149950801,6852,3421,2270720520,2260512228,100,100,100,100,6.04,5.93,6.66,6.63
-56551,27,111,27111,2237,1452,297356988,279226541,2237,1452,297356988,279226541,57303,35594,5761527953,5107632889,100,100,100,100,3.9,4.08,5.16,5.47
-56552,27,005,27005,46,18,40589131,39607317,429,199,129275888,125269982,32504,18784,3743006860,3406359731,10.72,9.05,31.4,31.62,0.14,0.1,1.08,1.16
-56552,27,027,27027,383,181,88686757,85662665,429,199,129275888,125269982,58999,23959,2726345778,2707485607,89.28,90.95,68.6,68.38,0.65,0.76,3.25,3.16
-56553,27,167,27167,293,127,162628698,162628698,293,127,162628698,162628698,6576,3078,1945521222,1944970552,100,100,100,100,4.46,4.13,8.36,8.36
-56554,27,005,27005,2607,1826,316787713,277216311,2709,1866,347706262,305135403,32504,18784,3743006860,3406359731,96.23,97.86,91.11,90.85,8.02,9.72,8.46,8.14
-56554,27,027,27027,102,40,30918549,27919092,2709,1866,347706262,305135403,58999,23959,2726345778,2707485607,3.77,2.14,8.89,9.15,0.17,0.17,1.13,1.03
-56556,27,119,27119,1160,545,260870569,255293762,1160,545,260870569,255293762,31600,14610,5174241065,5105199042,100,100,100,100,3.67,3.73,5.04,5
-56557,27,029,27029,56,53,79694417,77077881,2811,1248,655870177,637298767,8695,4773,2667003833,2587242195,1.99,4.25,12.15,12.09,0.64,1.11,2.99,2.98
-56557,27,087,27087,2703,1172,555101179,539362047,2811,1248,655870177,637298767,5413,2786,1509734383,1444896195,96.16,93.91,84.64,84.63,49.94,42.07,36.77,37.33
-56557,27,107,27107,52,23,21074581,20858839,2811,1248,655870177,637298767,6852,3421,2270720520,2260512228,1.85,1.84,3.21,3.27,0.76,0.67,0.93,0.92
-56560,27,027,27027,40743,16292,404858637,404858637,40766,16298,409942810,409942810,58999,23959,2726345778,2707485607,99.94,99.96,98.76,98.76,69.06,68,14.85,14.95
-56560,27,167,27167,23,6,5084173,5084173,40766,16298,409942810,409942810,6576,3078,1945521222,1944970552,0.06,0.04,1.24,1.24,0.35,0.19,0.26,0.26
-56565,27,051,27051,9,4,24427950,24427950,107,52,74545971,74545971,6018,3324,1490493152,1419728446,8.41,7.69,32.77,32.77,0.15,0.12,1.64,1.72
-56565,27,167,27167,98,48,50118021,50118021,107,52,74545971,74545971,6576,3078,1945521222,1944970552,91.59,92.31,67.23,67.23,1.49,1.56,2.58,2.58
-56566,27,087,27087,668,262,56059029,46489491,668,262,56059029,46489491,5413,2786,1509734383,1444896195,100,100,100,100,12.34,9.4,3.71,3.22
-56567,27,111,27111,3169,1560,389266476,383548564,3169,1560,389266476,383548564,57303,35594,5761527953,5107632889,100,100,100,100,5.53,4.38,6.76,7.51
-56568,27,119,27119,142,89,87074292,86972838,142,89,87074292,86972838,31600,14610,5174241065,5105199042,100,100,100,100,0.45,0.61,1.68,1.7
-56569,27,005,27005,1357,809,349587243,327155974,1357,809,349587243,327155974,32504,18784,3743006860,3406359731,100,100,100,100,4.17,4.31,9.34,9.6
-56570,27,005,27005,1238,816,275567556,252396077,1238,816,275567556,252396077,32504,18784,3743006860,3406359731,100,100,100,100,3.81,4.34,7.36,7.41
-56571,27,111,27111,1800,1589,168043506,119250115,1800,1589,168043506,119250115,57303,35594,5761527953,5107632889,100,100,100,100,3.14,4.46,2.92,2.33
-56572,27,005,27005,151,111,21680551,19440895,5454,3893,512768956,424359382,32504,18784,3743006860,3406359731,2.77,2.85,4.23,4.58,0.46,0.59,0.58,0.57
-56572,27,111,27111,5303,3782,491088405,404918487,5454,3893,512768956,424359382,57303,35594,5761527953,5107632889,97.23,97.15,95.77,95.42,9.25,10.63,8.52,7.93
-56573,27,111,27111,5993,3340,404969062,357824272,5993,3340,404969062,357824272,57303,35594,5761527953,5107632889,100,100,100,100,10.46,9.38,7.03,7.01
-56574,27,107,27107,266,132,154305397,152824382,266,132,154305397,152824382,6852,3421,2270720520,2260512228,100,100,100,100,3.88,3.86,6.8,6.76
-56575,27,005,27005,763,582,426327865,389263143,763,582,426327865,389263143,32504,18784,3743006860,3406359731,100,100,100,100,2.35,3.1,11.39,11.43
-56576,27,111,27111,799,844,142041478,102283607,799,844,142041478,102283607,57303,35594,5761527953,5107632889,100,100,100,100,1.39,2.37,2.47,2
-56577,27,005,27005,21,15,1064739,786496,21,15,1064739,786496,32504,18784,3743006860,3406359731,100,100,100,100,0.06,0.08,0.03,0.02
-56578,27,005,27005,747,625,219953898,177883867,747,625,219953898,177883867,32504,18784,3743006860,3406359731,100,100,100,100,2.3,3.33,5.88,5.22
-56579,27,111,27111,483,246,127509288,125551141,1136,539,509205699,507092428,57303,35594,5761527953,5107632889,42.52,45.64,25.04,24.76,0.84,0.69,2.21,2.46
-56579,27,167,27167,653,293,381696411,381541287,1136,539,509205699,507092428,6576,3078,1945521222,1944970552,57.48,54.36,74.96,75.24,9.93,9.52,19.62,19.62
-56580,27,027,27027,1171,440,164699669,164504276,1171,440,164699669,164504276,58999,23959,2726345778,2707485607,100,100,100,100,1.98,1.84,6.04,6.08
-56581,27,107,27107,287,165,103013698,102723269,287,165,103013698,102723269,6852,3421,2270720520,2260512228,100,100,100,100,4.19,4.82,4.54,4.54
-56583,27,155,27155,130,66,129103900,129103900,168,96,207560176,207560176,3558,2073,1517351738,1486399478,77.38,68.75,62.2,62.2,3.65,3.18,8.51,8.69
-56583,27,167,27167,38,30,78456276,78456276,168,96,207560176,207560176,6576,3078,1945521222,1944970552,22.62,31.25,37.8,37.8,0.58,0.97,4.03,4.03
-56584,27,107,27107,1553,772,355361582,352776697,1553,772,355361582,352776697,6852,3421,2270720520,2260512228,100,100,100,100,22.66,22.57,15.65,15.61
-56585,27,005,27005,96,45,93001887,92836741,1049,481,304718820,304197822,32504,18784,3743006860,3406359731,9.15,9.36,30.52,30.52,0.3,0.24,2.48,2.73
-56585,27,027,27027,953,436,211716933,211361081,1049,481,304718820,304197822,58999,23959,2726345778,2707485607,90.85,90.64,69.48,69.48,1.62,1.82,7.77,7.81
-56586,27,111,27111,1839,1292,219829968,186279267,1839,1292,219829968,186279267,57303,35594,5761527953,5107632889,100,100,100,100,3.21,3.63,3.82,3.65
-56587,27,111,27111,1404,1132,172325637,148357452,1404,1132,172325637,148357452,57303,35594,5761527953,5107632889,100,100,100,100,2.45,3.18,2.99,2.9
-56588,27,111,27111,568,421,149582149,137111480,568,421,149582149,137111480,57303,35594,5761527953,5107632889,100,100,100,100,0.99,1.18,2.6,2.68
-56589,27,005,27005,619,615,196208020,168343864,1975,1456,694589247,638809362,32504,18784,3743006860,3406359731,31.34,42.24,28.25,26.35,1.9,3.27,5.24,4.94
-56589,27,029,27029,5,17,95002986,89131359,1975,1456,694589247,638809362,8695,4773,2667003833,2587242195,0.25,1.17,13.68,13.95,0.06,0.36,3.56,3.45
-56589,27,087,27087,1351,824,403378241,381334139,1975,1456,694589247,638809362,5413,2786,1509734383,1444896195,68.41,56.59,58.07,59.69,24.96,29.58,26.72,26.39
-56590,27,051,27051,373,204,205610238,200376975,373,204,205610238,200376975,6018,3324,1490493152,1419728446,100,100,100,100,6.2,6.14,13.79,14.11
-56591,27,005,27005,170,62,2386498,2231367,170,62,2386498,2231367,32504,18784,3743006860,3406359731,100,100,100,100,0.52,0.33,0.06,0.07
-56592,27,087,27087,4,6,15084333,15084333,516,243,154098467,151459723,5413,2786,1509734383,1444896195,0.78,2.47,9.79,9.96,0.07,0.22,1,1.04
-56592,27,119,27119,512,237,139014134,136375390,516,243,154098467,151459723,31600,14610,5174241065,5105199042,99.22,97.53,90.21,90.04,1.62,1.62,2.69,2.67
-56593,27,005,27005,14,11,46180,46180,14,11,46180,46180,32504,18784,3743006860,3406359731,100,100,100,100,0.04,0.06,0,0
-56594,27,167,27167,440,201,247520175,247520175,440,201,247520175,247520175,6576,3078,1945521222,1944970552,100,100,100,100,6.69,6.53,12.72,12.73
-56601,27,007,27007,30424,13568,913504512,797243971,32225,14446,1080235266,947837480,44442,20527,7914370803,6487764440,94.41,93.92,84.57,84.11,68.46,66.1,11.54,12.29
-56601,27,057,27057,1801,878,166730754,150593509,32225,14446,1080235266,947837480,20428,14622,2588846662,2397485927,5.59,6.08,15.43,15.89,8.82,6,6.44,6.28
-56621,27,029,27029,4564,2339,806782860,783544398,4639,2378,835422318,812075878,8695,4773,2667003833,2587242195,98.38,98.36,96.57,96.49,52.49,49,30.25,30.28
-56621,27,087,27087,9,4,9813667,9791046,4639,2378,835422318,812075878,5413,2786,1509734383,1444896195,0.19,0.17,1.17,1.21,0.17,0.14,0.65,0.68
-56621,27,119,27119,66,35,18825791,18740434,4639,2378,835422318,812075878,31600,14610,5174241065,5105199042,1.42,1.47,2.25,2.31,0.21,0.24,0.36,0.37
-56623,27,071,27071,106,92,244156033,242712573,2749,2102,1261832567,1225519734,13311,7900,8168879460,8039503592,3.86,4.38,19.35,19.8,0.8,1.16,2.99,3.02
-56623,27,077,27077,2643,2010,1017676534,982807161,2749,2102,1261832567,1225519734,4045,3672,4596362182,3361466280,96.14,95.62,80.65,80.2,65.34,54.74,22.14,29.24
-56626,27,021,27021,356,271,168683966,149402633,356,271,168683966,149402633,28567,24903,6252510295,5235770376,100,100,100,100,1.25,1.09,2.7,2.85
-56627,27,071,27071,309,346,2183428772,2180833173,309,346,2183428772,2180833173,13311,7900,8168879460,8039503592,100,100,100,100,2.32,4.38,26.73,27.13
-56628,27,061,27061,1681,1910,710015852,646517620,1681,1910,710015852,646517620,45058,27065,7583388428,6909367239,100,100,100,100,3.73,7.06,9.36,9.36
-56629,27,071,27071,197,216,648909549,644514255,197,216,648909549,644514255,13311,7900,8168879460,8039503592,100,100,100,100,1.48,2.73,7.94,8.02
-56630,27,007,27007,1921,1006,510231618,497688600,2117,1177,722172567,709006345,44442,20527,7914370803,6487764440,90.74,85.47,70.65,70.2,4.32,4.9,6.45,7.67
-56630,27,061,27061,196,171,211940949,211317745,2117,1177,722172567,709006345,45058,27065,7583388428,6909367239,9.26,14.53,29.35,29.8,0.43,0.63,2.79,3.06
-56633,27,007,27007,975,517,104824971,69625389,4541,2516,794517614,570777313,44442,20527,7914370803,6487764440,21.47,20.55,13.19,12.2,2.19,2.52,1.32,1.07
-56633,27,021,27021,2905,1654,648605904,462219366,4541,2516,794517614,570777313,28567,24903,6252510295,5235770376,63.97,65.74,81.64,80.98,10.17,6.64,10.37,8.83
-56633,27,057,27057,661,345,41086739,38932558,4541,2516,794517614,570777313,20428,14622,2588846662,2397485927,14.56,13.71,5.17,6.82,3.24,2.36,1.59,1.62
-56634,27,029,27029,1633,813,313038504,308036464,1639,817,315030801,309668433,8695,4773,2667003833,2587242195,99.63,99.51,99.37,99.47,18.78,17.03,11.74,11.91
-56634,27,119,27119,6,4,1992297,1631969,1639,817,315030801,309668433,31600,14610,5174241065,5105199042,0.37,0.49,0.63,0.53,0.02,0.03,0.04,0.03
-56636,27,021,27021,346,313,462657148,312757280,5137,3215,1449341886,1165945602,28567,24903,6252510295,5235770376,6.74,9.74,31.92,26.82,1.21,1.26,7.4,5.97
-56636,27,061,27061,4791,2902,986684738,853188322,5137,3215,1449341886,1165945602,45058,27065,7583388428,6909367239,93.26,90.26,68.08,73.18,10.63,10.72,13.01,12.35
-56637,27,061,27061,227,176,70032933,61567106,227,176,70032933,61567106,45058,27065,7583388428,6909367239,100,100,100,100,0.5,0.65,0.92,0.89
-56639,27,061,27061,445,443,365418489,353303298,459,486,795428251,781921378,45058,27065,7583388428,6909367239,96.95,91.15,45.94,45.18,0.99,1.64,4.82,5.11
-56639,27,071,27071,14,43,430009762,428618080,459,486,795428251,781921378,13311,7900,8168879460,8039503592,3.05,8.85,54.06,54.82,0.11,0.54,5.26,5.33
-56641,27,021,27021,324,354,101448567,81814324,324,354,101448567,81814324,28567,24903,6252510295,5235770376,100,100,100,100,1.13,1.42,1.62,1.56
-56644,27,029,27029,778,523,268597374,262376540,787,528,273745136,267523709,8695,4773,2667003833,2587242195,98.86,99.05,98.12,98.08,8.95,10.96,10.07,10.14
-56644,27,119,27119,9,5,5147762,5147169,787,528,273745136,267523709,31600,14610,5174241065,5105199042,1.14,0.95,1.88,1.92,0.03,0.03,0.1,0.1
-56646,27,119,27119,355,208,206171327,203083936,355,208,206171327,203083936,31600,14610,5174241065,5105199042,100,100,100,100,1.12,1.42,3.98,3.98
-56647,27,007,27007,839,520,226258408,208449560,839,520,226258408,208449560,44442,20527,7914370803,6487764440,100,100,100,100,1.89,2.53,2.86,3.21
-56649,27,071,27071,9932,5271,479171243,395251069,9932,5312,904586992,667058071,13311,7900,8168879460,8039503592,100,99.23,52.97,59.25,74.61,66.72,5.87,4.92
-56649,27,137,27137,0,41,425415749,271807002,9932,5312,904586992,667058071,200226,103058,17766028793,16180692391,0,0.77,47.03,40.75,0,0.04,2.39,1.68
-56650,27,007,27007,722,606,465224766,464963269,722,606,465224766,464963269,44442,20527,7914370803,6487764440,100,100,100,100,1.62,2.95,5.88,7.17
-56651,27,087,27087,279,320,152149977,144790734,538,476,181437820,172707590,5413,2786,1509734383,1444896195,51.86,67.23,83.86,83.84,5.15,11.49,10.08,10.02
-56651,27,119,27119,259,156,29287843,27916856,538,476,181437820,172707590,31600,14610,5174241065,5105199042,48.14,32.77,16.14,16.16,0.82,1.07,0.57,0.55
-56652,27,007,27007,53,28,20550304,20372882,539,350,226244410,217950272,44442,20527,7914370803,6487764440,9.83,8,9.08,9.35,0.12,0.14,0.26,0.31
-56652,27,029,27029,486,322,205694106,197577390,539,350,226244410,217950272,8695,4773,2667003833,2587242195,90.17,92,90.92,90.65,5.59,6.75,7.71,7.64
-56653,27,071,27071,1336,816,1638391721,1635027834,1336,816,1638391721,1635027834,13311,7900,8168879460,8039503592,100,100,100,100,10.04,10.33,20.06,20.34
-56654,27,071,27071,153,110,308119711,306283087,153,110,308119711,306283087,13311,7900,8168879460,8039503592,100,100,100,100,1.15,1.39,3.77,3.81
-56655,27,021,27021,1303,2188,345652022,272674254,1303,2188,345652022,272674254,28567,24903,6252510295,5235770376,100,100,100,100,4.56,8.79,5.53,5.21
-56657,27,061,27061,304,551,166733525,143838558,304,551,166733525,143838558,45058,27065,7583388428,6909367239,100,100,100,100,0.67,2.04,2.2,2.08
-56658,27,071,27071,6,28,187789104,187759190,6,28,187789104,187759190,13311,7900,8168879460,8039503592,100,100,100,100,0.05,0.35,2.3,2.34
-56659,27,061,27061,54,78,37520963,34047830,54,78,37520963,34047830,45058,27065,7583388428,6909367239,100,100,100,100,0.12,0.29,0.49,0.49
-56660,27,071,27071,240,200,467896173,466825593,240,200,467896173,466825593,13311,7900,8168879460,8039503592,100,100,100,100,1.8,2.53,5.73,5.81
-56661,27,007,27007,100,54,63572601,63534917,942,793,1043872643,1017466708,44442,20527,7914370803,6487764440,10.62,6.81,6.09,6.24,0.23,0.26,0.8,0.98
-56661,27,061,27061,346,374,390872323,367651536,942,793,1043872643,1017466708,45058,27065,7583388428,6909367239,36.73,47.16,37.44,36.13,0.77,1.38,5.15,5.32
-56661,27,071,27071,496,365,589427719,586280255,942,793,1043872643,1017466708,13311,7900,8168879460,8039503592,52.65,46.03,56.47,57.62,3.73,4.62,7.22,7.29
-56662,27,021,27021,511,1174,169736996,155090031,511,1174,169736996,155090031,28567,24903,6252510295,5235770376,100,100,100,100,1.79,4.71,2.71,2.96
-56663,27,007,27007,220,224,177259538,146594298,220,224,177259538,146594298,44442,20527,7914370803,6487764440,100,100,100,100,0.5,1.09,2.24,2.26
-56666,27,007,27007,1066,307,113884193,113863536,1066,307,113884193,113863536,44442,20527,7914370803,6487764440,100,100,100,100,2.4,1.5,1.44,1.76
-56667,27,007,27007,662,336,258232100,237904632,662,336,258232100,237904632,44442,20527,7914370803,6487764440,100,100,100,100,1.49,1.64,3.26,3.67
-56668,27,071,27071,136,77,408374,402637,136,77,408374,402637,13311,7900,8168879460,8039503592,100,100,100,100,1.02,0.97,0,0.01
-56669,27,071,27071,236,200,521989334,515966460,375,480,618252408,568538165,13311,7900,8168879460,8039503592,62.93,41.67,84.43,90.75,1.77,2.53,6.39,6.42
-56669,27,137,27137,139,280,96263074,52571705,375,480,618252408,568538165,200226,103058,17766028793,16180692391,37.07,58.33,15.57,9.25,0.07,0.27,0.54,0.32
-56670,27,007,27007,1440,429,122139168,120377507,1440,429,122139168,120377507,44442,20527,7914370803,6487764440,100,100,100,100,3.24,2.09,1.54,1.86
-56671,27,007,27007,3284,1044,141140993,132715190,3371,1078,587977031,572255628,44442,20527,7914370803,6487764440,97.42,96.85,24,23.19,7.39,5.09,1.78,2.05
-56671,27,029,27029,87,34,446836038,439540438,3371,1078,587977031,572255628,8695,4773,2667003833,2587242195,2.58,3.15,76,76.81,1,0.71,16.75,16.99
-56672,27,021,27021,2097,2670,1222371208,1121105283,2097,2670,1222371208,1121105283,28567,24903,6252510295,5235770376,100,100,100,100,7.34,10.72,19.55,21.41
-56673,27,077,27077,298,379,157692743,136687625,795,626,325255699,304223278,4045,3672,4596362182,3361466280,37.48,60.54,48.48,44.93,7.37,10.32,3.43,4.07
-56673,27,135,27135,497,247,167562956,167535653,795,626,325255699,304223278,15629,7469,4346354505,4329428887,62.52,39.46,51.52,55.07,3.18,3.31,3.86,3.87
-56676,27,007,27007,623,424,227750116,214438464,1663,1029,552233521,528205793,44442,20527,7914370803,6487764440,37.46,41.21,41.24,40.6,1.4,2.07,2.88,3.31
-56676,27,029,27029,1040,605,324483405,313767329,1663,1029,552233521,528205793,8695,4773,2667003833,2587242195,62.54,58.79,58.76,59.4,11.96,12.68,12.17,12.13
-56678,27,007,27007,850,353,160791281,158962813,1321,645,325431158,319649661,44442,20527,7914370803,6487764440,64.35,54.73,49.41,49.73,1.91,1.72,2.03,2.45
-56678,27,029,27029,20,13,15657728,15429523,1321,645,325431158,319649661,8695,4773,2667003833,2587242195,1.51,2.02,4.81,4.83,0.23,0.27,0.59,0.6
-56678,27,057,27057,451,279,148982149,145257325,1321,645,325431158,319649661,20428,14622,2588846662,2397485927,34.14,43.26,45.78,45.44,2.21,1.91,5.75,6.06
-56680,27,061,27061,117,185,82828603,74930206,117,185,82828603,74930206,45058,27065,7583388428,6909367239,100,100,100,100,0.26,0.68,1.09,1.08
-56681,27,061,27061,318,324,295185843,269278842,318,324,295185843,269278842,45058,27065,7583388428,6909367239,100,100,100,100,0.71,1.2,3.89,3.9
-56683,27,007,27007,772,439,176806760,160331868,772,439,176806760,160331868,44442,20527,7914370803,6487764440,100,100,100,100,1.74,2.14,2.23,2.47
-56684,27,113,27113,53,38,80335680,80329363,282,172,259536223,258977193,13930,6297,1601260833,1596909321,18.79,22.09,30.95,31.02,0.38,0.6,5.02,5.03
-56684,27,119,27119,229,134,179200543,178647830,282,172,259536223,258977193,31600,14610,5174241065,5105199042,81.21,77.91,69.05,68.98,0.72,0.92,3.46,3.5
-56685,27,007,27007,117,293,326820076,326416061,117,293,326820076,326416061,44442,20527,7914370803,6487764440,100,100,100,100,0.26,1.43,4.13,5.03
-56686,27,077,27077,984,832,465522909,456610218,984,832,465522909,456610218,4045,3672,4596362182,3361466280,100,100,100,100,24.33,22.66,10.13,13.58
-56687,27,007,27007,73,37,4494048,4462427,73,37,4494048,4462427,44442,20527,7914370803,6487764440,100,100,100,100,0.16,0.18,0.06,0.07
-56688,27,061,27061,157,185,292475249,288012437,157,185,292475249,288012437,45058,27065,7583388428,6909367239,100,100,100,100,0.35,0.68,3.86,4.17
-56701,27,089,27089,483,195,255018513,254993337,12690,5693,991837508,987868330,9439,4812,4695405471,4597404993,3.81,3.43,25.71,25.81,5.12,4.05,5.43,5.55
-56701,27,113,27113,12207,5498,736818995,732874993,12690,5693,991837508,987868330,13930,6297,1601260833,1596909321,96.19,96.57,74.29,74.19,87.63,87.31,46.01,45.89
-56710,27,089,27089,470,228,85860955,85860955,490,237,109221123,109221123,9439,4812,4695405471,4597404993,95.92,96.2,78.61,78.61,4.98,4.74,1.83,1.87
-56710,27,119,27119,20,9,23360168,23360168,490,237,109221123,109221123,31600,14610,5174241065,5105199042,4.08,3.8,21.39,21.39,0.06,0.06,0.45,0.46
-56711,27,077,27077,96,243,76288977,48964391,96,243,76288977,48964391,4045,3672,4596362182,3361466280,100,100,100,100,2.37,6.62,1.66,1.46
-56713,27,089,27089,1022,470,495484381,495440857,1022,470,495484381,495440857,9439,4812,4695405471,4597404993,100,100,100,100,10.83,9.77,10.55,10.78
-56714,27,135,27135,1157,593,537639302,537534754,1157,593,537639302,537534754,15629,7469,4346354505,4329428887,100,100,100,100,7.4,7.94,12.37,12.42
-56715,27,119,27119,10,5,17463678,17463678,350,171,165995082,165995082,31600,14610,5174241065,5105199042,2.86,2.92,10.52,10.52,0.03,0.03,0.34,0.34
-56715,27,125,27125,340,166,148531404,148531404,350,171,165995082,165995082,4089,1948,1120157183,1119929367,97.14,97.08,89.48,89.48,8.31,8.52,13.26,13.26
-56716,27,119,27119,9388,3852,812053852,811954997,9416,3865,820803486,820704631,31600,14610,5174241065,5105199042,99.7,99.66,98.93,98.93,29.71,26.37,15.69,15.9
-56716,27,125,27125,28,13,8749634,8749634,9416,3865,820803486,820704631,4089,1948,1120157183,1119929367,0.3,0.34,1.07,1.07,0.68,0.67,0.78,0.78
-56720,27,069,27069,57,27,49201378,49193912,57,27,49201378,49193912,4552,2605,2858320476,2845889450,100,100,100,100,1.25,1.04,1.72,1.73
-56721,27,119,27119,10096,4220,489699575,488480080,10096,4220,489699575,488480080,31600,14610,5174241065,5105199042,100,100,100,100,31.95,28.88,9.46,9.57
-56722,27,119,27119,386,167,374823412,374761000,386,167,374823412,374761000,31600,14610,5174241065,5105199042,100,100,100,100,1.22,1.14,7.24,7.34
-56723,27,119,27119,970,410,295181760,295181760,970,410,295181760,295181760,31600,14610,5174241065,5105199042,100,100,100,100,3.07,2.81,5.7,5.78
-56724,27,089,27089,159,131,297323854,297323854,159,131,297323854,297323854,9439,4812,4695405471,4597404993,100,100,100,100,1.68,2.72,6.33,6.47
-56725,27,089,27089,171,96,291495727,291416453,978,470,754641328,754515643,9439,4812,4695405471,4597404993,17.48,20.43,38.63,38.62,1.81,2,6.21,6.34
-56725,27,113,27113,807,374,463145601,463099190,978,470,754641328,754515643,13930,6297,1601260833,1596909321,82.52,79.57,61.37,61.38,5.79,5.94,28.92,29
-56726,27,135,27135,1631,795,814971776,814130915,1631,795,814971776,814130915,15629,7469,4346354505,4329428887,100,100,100,100,10.44,10.64,18.75,18.8
-56727,27,007,27007,301,342,1861469551,1860472049,769,630,2131746270,2130496229,44442,20527,7914370803,6487764440,39.14,54.29,87.32,87.33,0.68,1.67,23.52,28.68
-56727,27,089,27089,468,288,270276719,270024180,769,630,2131746270,2130496229,9439,4812,4695405471,4597404993,60.86,45.71,12.68,12.67,4.96,5.99,5.76,5.87
-56728,27,069,27069,1364,747,505248972,502253001,1364,747,505248972,502253001,4552,2605,2858320476,2845889450,100,100,100,100,29.96,28.68,17.68,17.65
-56729,27,069,27069,140,79,148100821,147371051,140,79,148100821,147371051,4552,2605,2858320476,2845889450,100,100,100,100,3.08,3.03,5.18,5.18
-56731,27,069,27069,93,47,97717742,97706126,93,47,97717742,97706126,4552,2605,2858320476,2845889450,100,100,100,100,2.04,1.8,3.42,3.43
-56732,27,069,27069,1074,562,254249857,252994655,1136,627,366754552,363811211,4552,2605,2858320476,2845889450,94.54,89.63,69.32,69.54,23.59,21.57,8.9,8.89
-56732,27,089,27089,51,57,68833212,67145073,1136,627,366754552,363811211,9439,4812,4695405471,4597404993,4.49,9.09,18.77,18.46,0.54,1.18,1.47,1.46
-56732,27,135,27135,11,8,43671483,43671483,1136,627,366754552,363811211,15629,7469,4346354505,4329428887,0.97,1.28,11.91,12,0.07,0.11,1,1.01
-56733,27,069,27069,390,234,380523283,379593140,390,234,380523283,379593140,4552,2605,2858320476,2845889450,100,100,100,100,8.57,8.98,13.31,13.34
-56734,27,069,27069,467,339,475105805,472035418,467,339,475105805,472035418,4552,2605,2858320476,2845889450,100,100,100,100,10.26,13.01,16.62,16.59
-56735,27,069,27069,794,455,744564578,742743742,816,487,887557040,878676518,4552,2605,2858320476,2845889450,97.3,93.43,83.89,84.53,17.44,17.47,26.05,26.1
-56735,27,135,27135,22,32,142992462,135932776,816,487,887557040,878676518,15629,7469,4346354505,4329428887,2.7,6.57,16.11,15.47,0.14,0.43,3.29,3.14
-56736,27,119,27119,871,961,241561886,230671445,903,978,286630732,275740291,31600,14610,5174241065,5105199042,96.46,98.26,84.28,83.66,2.76,6.58,4.67,4.52
-56736,27,125,27125,32,17,45068846,45068846,903,978,286630732,275740291,4089,1948,1120157183,1119929367,3.54,1.74,15.72,16.34,0.78,0.87,4.02,4.02
-56737,27,089,27089,871,496,530022328,495415492,871,496,530022328,495415492,9439,4812,4695405471,4597404993,100,100,100,100,9.23,10.31,11.29,10.78
-56738,27,089,27089,1368,626,463448383,463444720,1368,626,463448383,463444720,9439,4812,4695405471,4597404993,100,100,100,100,14.49,13.01,9.87,10.08
-56741,27,077,27077,23,159,13834806,13085194,23,159,13834806,13085194,4045,3672,4596362182,3361466280,100,100,100,100,0.57,4.33,0.3,0.39
-56742,27,113,27113,181,76,103059023,103059023,918,447,328824410,328766446,13930,6297,1601260833,1596909321,19.72,17,31.34,31.35,1.3,1.21,6.44,6.45
-56742,27,119,27119,20,8,13537386,13537386,918,447,328824410,328766446,31600,14610,5174241065,5105199042,2.18,1.79,4.12,4.12,0.06,0.05,0.26,0.27
-56742,27,125,27125,717,363,212228001,212170037,918,447,328824410,328766446,4089,1948,1120157183,1119929367,78.1,81.21,64.54,64.54,17.53,18.63,18.95,18.94
-56744,27,089,27089,462,226,136630637,134201568,621,305,270563190,265573256,9439,4812,4695405471,4597404993,74.4,74.1,50.5,50.53,4.89,4.7,2.91,2.92
-56744,27,119,27119,81,36,55887566,55351601,621,305,270563190,265573256,31600,14610,5174241065,5105199042,13.04,11.8,20.66,20.84,0.26,0.25,1.08,1.08
-56744,38,035,38035,25,12,4756254,4681272,621,305,270563190,265573256,66861,29344,3728294623,3720196548,4.03,3.93,1.76,1.76,0.04,0.04,0.13,0.13
-56744,38,099,38099,53,31,73288733,71338815,621,305,270563190,265573256,11119,5498,3351690699,3320186385,8.53,10.16,27.09,26.86,0.48,0.56,2.19,2.15
-56748,27,113,27113,34,18,41819714,41819714,600,291,224495186,224495186,13930,6297,1601260833,1596909321,5.67,6.19,18.63,18.63,0.24,0.29,2.61,2.62
-56748,27,125,27125,566,273,182675472,182675472,600,291,224495186,224495186,4089,1948,1120157183,1119929367,94.33,93.81,81.37,81.37,13.84,14.01,16.31,16.31
-56750,27,113,27113,102,47,80186063,80163440,2539,1171,600049409,599856934,13930,6297,1601260833,1596909321,4.02,4.01,13.36,13.36,0.73,0.75,5.01,5.02
-56750,27,119,27119,57,21,28721029,28721029,2539,1171,600049409,599856934,31600,14610,5174241065,5105199042,2.24,1.79,4.79,4.79,0.18,0.14,0.56,0.56
-56750,27,125,27125,2380,1103,491142317,490972465,2539,1171,600049409,599856934,4089,1948,1120157183,1119929367,93.74,94.19,81.85,81.85,58.2,56.62,43.85,43.84
-56751,27,135,27135,5575,2599,1217765831,1210792108,5575,2599,1217765831,1210792108,15629,7469,4346354505,4329428887,100,100,100,100,35.67,34.8,28.02,27.97
-56754,27,113,27113,546,246,95895757,95563598,546,246,95895757,95563598,13930,6297,1601260833,1596909321,100,100,100,100,3.92,3.91,5.99,5.98
-56755,27,069,27069,102,70,124973766,124397894,102,70,124973766,124397894,4552,2605,2858320476,2845889450,100,100,100,100,2.24,2.69,4.37,4.37
-56756,27,135,27135,799,362,274625354,274603460,799,362,274625354,274603460,15629,7469,4346354505,4329428887,100,100,100,100,5.11,4.85,6.32,6.34
-56757,27,089,27089,932,523,574937580,573588433,932,523,574937580,573588433,9439,4812,4695405471,4597404993,100,100,100,100,9.87,10.87,12.24,12.48
-56758,27,089,27089,418,247,276800822,276287641,418,247,276800822,276287641,9439,4812,4695405471,4597404993,100,100,100,100,4.43,5.13,5.9,6.01
-56759,27,089,27089,95,66,147584012,141224167,364,200,387470690,381009492,9439,4812,4695405471,4597404993,26.1,33,38.09,37.07,1.01,1.37,3.14,3.07
-56759,27,135,27135,269,134,239886678,239785325,364,200,387470690,381009492,15629,7469,4346354505,4329428887,73.9,67,61.91,62.93,1.72,1.79,5.52,5.54
-56760,27,089,27089,358,174,192521085,192521085,358,174,192521085,192521085,9439,4812,4695405471,4597404993,100,100,100,100,3.79,3.62,4.1,4.19
-56761,27,135,27135,488,272,276033542,276033542,488,272,276033542,276033542,15629,7469,4346354505,4329428887,100,100,100,100,3.12,3.64,6.35,6.38
-56762,27,089,27089,2111,989,420475731,420475731,2494,1164,880413735,880413735,9439,4812,4695405471,4597404993,84.64,84.97,47.76,47.76,22.36,20.55,8.96,9.15
-56762,27,119,27119,383,175,459938004,459938004,2494,1164,880413735,880413735,31600,14610,5174241065,5105199042,15.36,15.03,52.24,52.24,1.21,1.2,8.89,9.01
-56763,27,135,27135,5180,2427,631205121,629408871,5180,2427,631205121,629408871,15629,7469,4346354505,4329428887,100,100,100,100,33.14,32.49,14.52,14.54
-57001,46,083,46083,47,18,11662608,11662608,1672,792,329730417,329446438,44828,17875,1496362244,1495144520,2.81,2.27,3.54,3.54,0.1,0.1,0.78,0.78
-57001,46,127,46127,1625,774,318067809,317783830,1672,792,329730417,329446438,14399,6280,1209858285,1192797818,97.19,97.73,96.46,96.46,11.29,12.32,26.29,26.64
-57002,46,011,46011,863,394,153994275,153994275,863,394,153994275,153994275,31965,13137,2084772229,2051804629,100,100,100,100,2.7,3,7.39,7.51
-57003,46,099,46099,1879,706,125182773,124793686,1879,706,125182773,124793686,169468,71557,2107896681,2090501559,100,100,100,100,1.11,0.99,5.94,5.97
-57004,46,027,46027,301,125,125185154,125146316,3356,1489,515427176,515231024,13864,5639,1080633669,1067554320,8.97,8.39,24.29,24.29,2.17,2.22,11.58,11.72
-57004,46,083,46083,1038,444,247321235,247190679,3356,1489,515427176,515231024,44828,17875,1496362244,1495144520,30.93,29.82,47.98,47.98,2.32,2.48,16.53,16.53
-57004,46,127,46127,2017,920,142920787,142894029,3356,1489,515427176,515231024,14399,6280,1209858285,1192797818,60.1,61.79,27.73,27.73,14.01,14.65,11.81,11.98
-57005,46,099,46099,10473,3854,133902046,133214601,10473,3854,133902046,133214601,169468,71557,2107896681,2090501559,100,100,100,100,6.18,5.39,6.35,6.37
-57006,46,011,46011,24387,9668,357523097,354295009,24530,9745,407117146,402702682,31965,13137,2084772229,2051804629,99.42,99.21,87.82,87.98,76.29,73.59,17.15,17.27
-57006,46,101,46101,143,77,49594049,48407673,24530,9745,407117146,402702682,6486,2824,1348883708,1345204308,0.58,0.79,12.18,12.02,2.2,2.73,3.68,3.6
-57010,46,027,46027,384,201,106402229,103450734,493,251,149082750,146131255,13864,5639,1080633669,1067554320,77.89,80.08,71.37,70.79,2.77,3.56,9.85,9.69
-57010,46,127,46127,109,50,42680521,42680521,493,251,149082750,146131255,14399,6280,1209858285,1192797818,22.11,19.92,28.63,29.21,0.76,0.8,3.53,3.58
-57012,46,087,46087,1160,496,222536826,220567891,1160,496,222536826,220567891,5618,2491,1494080632,1487182118,100,100,100,100,20.65,19.91,14.89,14.83
-57013,46,083,46083,4440,1886,354690928,354182186,4440,1886,354690928,354182186,44828,17875,1496362244,1495144520,100,100,100,100,9.9,10.55,23.7,23.69
-57014,46,027,46027,158,65,112238362,112238362,1471,688,344408269,344361899,13864,5639,1080633669,1067554320,10.74,9.45,32.59,32.59,1.14,1.15,10.39,10.51
-57014,46,083,46083,169,71,87027087,87027087,1471,688,344408269,344361899,44828,17875,1496362244,1495144520,11.49,10.32,25.27,25.27,0.38,0.4,5.82,5.82
-57014,46,125,46125,1144,552,145142820,145096450,1471,688,344408269,344361899,8347,3939,1599820112,1598169823,77.77,80.23,42.14,42.13,13.71,14.01,9.07,9.08
-57015,46,125,46125,787,328,126917836,126917836,787,328,126917836,126917836,8347,3939,1599820112,1598169823,100,100,100,100,9.43,8.33,7.93,7.94
-57016,46,079,46079,693,469,93053503,87857373,693,469,93053503,87857373,11200,5559,1489663070,1458881294,100,100,100,100,6.19,8.44,6.25,6.02
-57017,46,101,46101,1340,568,327301045,325798917,1340,568,327301045,325798917,6486,2824,1348883708,1345204308,100,100,100,100,20.66,20.11,24.26,24.22
-57018,46,099,46099,1372,585,215592237,211716958,1372,585,215592237,211716958,169468,71557,2107896681,2090501559,100,100,100,100,0.81,0.82,10.23,10.13
-57020,46,099,46099,1502,533,41982490,41972793,1502,533,41982490,41972793,169468,71557,2107896681,2090501559,100,100,100,100,0.89,0.74,1.99,2.01
-57021,46,125,46125,276,133,80704235,80628174,276,133,80704235,80628174,8347,3939,1599820112,1598169823,100,100,100,100,3.31,3.38,5.04,5.05
-57022,46,079,46079,15,5,10571419,10350162,4996,1985,341088346,339869008,11200,5559,1489663070,1458881294,0.3,0.25,3.1,3.05,0.13,0.09,0.71,0.71
-57022,46,099,46099,4558,1821,196202651,195205881,4996,1985,341088346,339869008,169468,71557,2107896681,2090501559,91.23,91.74,57.52,57.44,2.69,2.54,9.31,9.34
-57022,46,101,46101,423,159,134314276,134312965,4996,1985,341088346,339869008,6486,2824,1348883708,1345204308,8.47,8.01,39.38,39.52,6.52,5.63,9.96,9.98
-57024,46,101,46101,428,183,82752845,82752845,428,183,82752845,82752845,6486,2824,1348883708,1345204308,100,100,100,100,6.6,6.48,6.13,6.15
-57025,46,127,46127,2795,1221,349073046,343287261,2795,1221,349073046,343287261,14399,6280,1209858285,1192797818,100,100,100,100,19.41,19.44,28.85,28.78
-57026,27,081,27081,66,30,54184028,54104421,1458,603,408402425,408307669,5896,3108,1420433108,1390192941,4.53,4.98,13.27,13.25,1.12,0.97,3.81,3.89
-57026,46,011,46011,1224,498,260332190,260332069,1458,603,408402425,408307669,31965,13137,2084772229,2051804629,83.95,82.59,63.74,63.76,3.83,3.79,12.49,12.69
-57026,46,101,46101,168,75,93886207,93871179,1458,603,408402425,408307669,6486,2824,1348883708,1345204308,11.52,12.44,22.99,22.99,2.59,2.66,6.96,6.98
-57027,46,083,46083,109,44,15276249,15228398,109,44,15276249,15228398,44828,17875,1496362244,1495144520,100,100,100,100,0.24,0.25,1.02,1.02
-57028,46,101,46101,3448,1528,519261053,518286843,3448,1528,519261053,518286843,6486,2824,1348883708,1345204308,100,100,100,100,53.16,54.11,38.5,38.53
-57029,46,067,46067,1785,902,381285819,381036494,2023,1007,496103869,495854544,7343,3351,2109341572,2105412805,88.24,89.57,76.86,76.84,24.31,26.92,18.08,18.1
-57029,46,125,46125,238,105,114818050,114818050,2023,1007,496103869,495854544,8347,3939,1599820112,1598169823,11.76,10.43,23.14,23.16,2.85,2.67,7.18,7.18
-57030,27,133,27133,143,63,78193745,78178065,2959,1145,390022350,389009927,9687,4262,1250250867,1249552632,4.83,5.5,20.05,20.1,1.48,1.48,6.25,6.26
-57030,46,099,46099,2816,1082,311828605,310831862,2959,1145,390022350,389009927,169468,71557,2107896681,2090501559,95.17,94.5,79.95,79.9,1.66,1.51,14.79,14.87
-57031,46,027,46027,60,23,36641224,34460692,741,315,130579525,125189492,13864,5639,1080633669,1067554320,8.1,7.3,28.06,27.53,0.43,0.41,3.39,3.23
-57031,46,135,46135,681,292,93938301,90728800,741,315,130579525,125189492,22438,9652,1378436674,1349807412,91.9,92.7,71.94,72.47,3.04,3.03,6.81,6.72
-57032,46,083,46083,5906,2140,126724234,126371399,5906,2140,126724234,126371399,44828,17875,1496362244,1495144520,100,100,100,100,13.17,11.97,8.47,8.45
-57033,46,099,46099,4713,1753,307143855,303702688,4713,1753,307143855,303702688,169468,71557,2107896681,2090501559,100,100,100,100,2.78,2.45,14.57,14.53
-57034,46,083,46083,662,301,162761520,162726664,712,318,187701297,187666441,44828,17875,1496362244,1495144520,92.98,94.65,86.71,86.71,1.48,1.68,10.88,10.88
-57034,46,127,46127,50,17,24939777,24939777,712,318,187701297,187666441,14399,6280,1209858285,1192797818,7.02,5.35,13.29,13.29,0.35,0.27,2.06,2.09
-57035,46,087,46087,30,10,14090519,13623429,1200,487,227711712,222706640,5618,2491,1494080632,1487182118,2.5,2.05,6.19,6.12,0.53,0.4,0.94,0.92
-57035,46,099,46099,1170,477,213621193,209083211,1200,487,227711712,222706640,169468,71557,2107896681,2090501559,97.5,97.95,93.81,93.88,0.69,0.67,10.13,10
-57036,46,125,46125,811,373,236978480,236184585,811,373,236978480,236184585,8347,3939,1599820112,1598169823,100,100,100,100,9.72,9.47,14.81,14.78
-57037,46,027,46027,138,54,18587746,18587746,819,369,258160524,258034307,13864,5639,1080633669,1067554320,16.85,14.63,7.2,7.2,1,0.96,1.72,1.74
-57037,46,125,46125,293,138,26233670,26233670,819,369,258160524,258034307,8347,3939,1599820112,1598169823,35.78,37.4,10.16,10.17,3.51,3.5,1.64,1.64
-57037,46,135,46135,388,177,213339108,213212891,819,369,258160524,258034307,22438,9652,1378436674,1349807412,47.37,47.97,82.64,82.63,1.73,1.83,15.48,15.8
-57038,46,127,46127,1667,672,144904293,138367763,1667,672,144904293,138367763,14399,6280,1209858285,1192797818,100,100,100,100,11.58,10.7,11.98,11.6
-57039,46,083,46083,3187,1332,210985060,210963596,3265,1361,228639779,228618315,44828,17875,1496362244,1495144520,97.61,97.87,92.28,92.28,7.11,7.45,14.1,14.11
-57039,46,125,46125,78,29,17654719,17654719,3265,1361,228639779,228618315,8347,3939,1599820112,1598169823,2.39,2.13,7.72,7.72,0.93,0.74,1.1,1.1
-57040,46,135,46135,389,189,170550484,170361851,389,189,170550484,170361851,22438,9652,1378436674,1349807412,100,100,100,100,1.73,1.96,12.37,12.62
-57041,46,099,46099,97,44,7709918,7709918,97,44,7709918,7709918,169468,71557,2107896681,2090501559,100,100,100,100,0.06,0.06,0.37,0.37
-57042,46,079,46079,8415,3845,542563504,531475542,8415,3845,542563504,531475542,11200,5559,1489663070,1458881294,100,100,100,100,75.13,69.17,36.42,36.43
-57043,46,067,46067,12,7,7745649,7734294,1378,636,282784217,282747234,7343,3351,2109341572,2105412805,0.87,1.1,2.74,2.74,0.16,0.21,0.37,0.37
-57043,46,087,46087,43,19,25038135,25038135,1378,636,282784217,282747234,5618,2491,1494080632,1487182118,3.12,2.99,8.85,8.86,0.77,0.76,1.68,1.68
-57043,46,125,46125,1323,610,250000433,249974805,1378,636,282784217,282747234,8347,3939,1599820112,1598169823,96.01,95.91,88.41,88.41,15.85,15.49,15.63,15.64
-57045,46,067,46067,908,458,233755942,233451248,996,500,316547958,316075737,7343,3351,2109341572,2105412805,91.16,91.6,73.85,73.86,12.37,13.67,11.08,11.09
-57045,46,135,46135,88,42,82792016,82624489,996,500,316547958,316075737,22438,9652,1378436674,1349807412,8.84,8.4,26.15,26.14,0.39,0.44,6.01,6.12
-57046,46,135,46135,626,274,123624674,121748207,626,274,123624674,121748207,22438,9652,1378436674,1349807412,100,100,100,100,2.79,2.84,8.97,9.02
-57047,46,087,46087,83,41,33410634,33410634,256,122,38182366,38182366,5618,2491,1494080632,1487182118,32.42,33.61,87.5,87.5,1.48,1.65,2.24,2.25
-57047,46,125,46125,173,81,4771732,4771732,256,122,38182366,38182366,8347,3939,1599820112,1598169823,67.58,66.39,12.5,12.5,2.07,2.06,0.3,0.3
-57048,46,087,46087,1077,410,288325945,287402548,1170,448,331877647,330815367,5618,2491,1494080632,1487182118,92.05,91.52,86.88,86.88,19.17,16.46,19.3,19.33
-57048,46,099,46099,93,38,43551702,43412819,1170,448,331877647,330815367,169468,71557,2107896681,2090501559,7.95,8.48,13.12,13.12,0.05,0.05,2.07,2.08
-57049,46,127,46127,5789,2482,40507845,36144043,5789,2482,40507845,36144043,14399,6280,1209858285,1192797818,100,100,100,100,40.2,39.52,3.35,3.03
-57050,46,079,46079,191,83,105732790,103561152,191,83,105732790,103561152,11200,5559,1489663070,1458881294,100,100,100,100,1.71,1.49,7.1,7.1
-57051,46,077,46077,263,174,169641303,165110952,263,174,169641303,165110952,5148,2720,2237136419,2155481343,100,100,100,100,5.11,6.4,7.58,7.66
-57052,46,067,46067,452,128,189580894,189445615,452,128,189580894,189445615,7343,3351,2109341572,2105412805,100,100,100,100,6.16,3.82,8.99,9
-57053,46,087,46087,83,33,20930592,20930592,1893,841,368463508,368463508,5618,2491,1494080632,1487182118,4.38,3.92,5.68,5.68,1.48,1.32,1.4,1.41
-57053,46,125,46125,1810,808,347532916,347532916,1893,841,368463508,368463508,8347,3939,1599820112,1598169823,95.62,96.08,94.32,94.32,21.68,20.51,21.72,21.75
-57054,46,079,46079,502,263,299580402,298622980,502,263,299580402,298622980,11200,5559,1489663070,1458881294,100,100,100,100,4.48,4.73,20.11,20.47
-57055,46,099,46099,1090,449,45364712,45169293,1090,449,45364712,45169293,169468,71557,2107896681,2090501559,100,100,100,100,0.64,0.63,2.15,2.16
-57057,46,079,46079,152,63,74814075,74555489,152,63,74814075,74555489,11200,5559,1489663070,1458881294,100,100,100,100,1.36,1.13,5.02,5.11
-57058,46,087,46087,1973,911,413580342,411959333,1973,911,413580342,411959333,5618,2491,1494080632,1487182118,100,100,100,100,35.12,36.57,27.68,27.7
-57059,46,009,46009,1202,632,297659263,296980878,1522,705,388601695,387922529,7070,2931,1506497953,1459979006,78.98,89.65,76.6,76.56,17,21.56,19.76,20.34
-57059,46,067,46067,320,73,90942432,90941651,1522,705,388601695,387922529,7343,3351,2109341572,2105412805,21.02,10.35,23.4,23.44,4.36,2.18,4.31,4.32
-57061,46,011,46011,102,49,561797,561797,102,49,561797,561797,31965,13137,2084772229,2051804629,100,100,100,100,0.32,0.37,0.03,0.03
-57062,46,009,46009,2410,694,278540089,261965801,2410,694,278540089,261965801,7070,2931,1506497953,1459979006,100,100,100,100,34.09,23.68,18.49,17.94
-57063,46,009,46009,885,333,216878981,188825119,1006,388,274398511,235626501,7070,2931,1506497953,1459979006,87.97,85.82,79.04,80.14,12.52,11.36,14.4,12.93
-57063,46,135,46135,121,55,57519530,46801382,1006,388,274398511,235626501,22438,9652,1378436674,1349807412,12.03,14.18,20.96,19.86,0.54,0.57,4.17,3.47
-57064,46,083,46083,5039,1772,57875979,57875979,5072,1790,67377032,67377032,44828,17875,1496362244,1495144520,99.35,98.99,85.9,85.9,11.24,9.91,3.87,3.87
-57064,46,125,46125,33,18,9501053,9501053,5072,1790,67377032,67377032,8347,3939,1599820112,1598169823,0.65,1.01,14.1,14.1,0.4,0.46,0.59,0.59
-57065,46,101,46101,397,172,78416394,78416394,397,172,78416394,78416394,6486,2824,1348883708,1345204308,100,100,100,100,6.12,6.09,5.81,5.83
-57066,46,009,46009,1508,731,303220784,303132871,1508,731,303220784,303132871,7070,2931,1506497953,1459979006,100,100,100,100,21.33,24.94,20.13,20.76
-57067,46,135,46135,537,204,170204680,169301887,537,204,170204680,169301887,22438,9652,1378436674,1349807412,100,100,100,100,2.39,2.11,12.35,12.54
-57068,27,133,27133,41,17,6963376,6963376,1512,622,116200230,116123707,9687,4262,1250250867,1249552632,2.71,2.73,5.99,6,0.42,0.4,0.56,0.56
-57068,46,099,46099,1471,605,109236854,109160331,1512,622,116200230,116123707,169468,71557,2107896681,2090501559,97.29,97.27,94.01,94,0.87,0.85,5.18,5.22
-57069,46,027,46027,11988,4767,433326998,425467947,11988,4767,433326998,425467947,13864,5639,1080633669,1067554320,100,100,100,100,86.47,84.54,40.1,39.85
-57070,46,125,46125,1314,729,219538775,218830440,1387,753,246092280,245383945,8347,3939,1599820112,1598169823,94.74,96.81,89.21,89.18,15.74,18.51,13.72,13.69
-57070,46,135,46135,73,24,26553505,26553505,1387,753,246092280,245383945,22438,9652,1378436674,1349807412,5.26,3.19,10.79,10.82,0.33,0.25,1.93,1.97
-57071,46,011,46011,2719,1200,292674876,288793406,2758,1221,312896947,308905146,31965,13137,2084772229,2051804629,98.59,98.28,93.54,93.49,8.51,9.13,14.04,14.08
-57071,46,079,46079,39,21,20222071,20111740,2758,1221,312896947,308905146,11200,5559,1489663070,1458881294,1.41,1.72,6.46,6.51,0.35,0.38,1.36,1.38
-57072,46,027,46027,138,63,79584307,79584307,584,267,224936531,224443432,13864,5639,1080633669,1067554320,23.63,23.6,35.38,35.46,1,1.12,7.36,7.45
-57072,46,135,46135,446,204,145352224,144859125,584,267,224936531,224443432,22438,9652,1378436674,1349807412,76.37,76.4,64.62,64.54,1.99,2.11,10.54,10.73
-57073,46,027,46027,697,341,168667649,168618216,711,347,178708770,178659337,13864,5639,1080633669,1067554320,98.03,98.27,94.38,94.38,5.03,6.05,15.61,15.79
-57073,46,125,46125,14,6,10041121,10041121,711,347,178708770,178659337,8347,3939,1599820112,1598169823,1.97,1.73,5.62,5.62,0.17,0.15,0.63,0.63
-57075,46,079,46079,893,730,186685546,176105844,893,730,186685546,176105844,11200,5559,1489663070,1458881294,100,100,100,100,7.97,13.13,12.53,12.07
-57076,46,079,46079,300,80,156439760,156241012,521,153,320790371,320591623,11200,5559,1489663070,1458881294,57.58,52.29,48.77,48.74,2.68,1.44,10.5,10.71
-57076,46,097,46097,221,73,164350611,164350611,521,153,320790371,320591623,2389,1308,1481294858,1477098731,42.42,47.71,51.23,51.26,9.25,5.58,11.1,11.13
-57077,46,083,46083,1324,508,118050498,117984285,1324,508,118050498,117984285,44828,17875,1496362244,1495144520,100,100,100,100,2.95,2.84,7.89,7.89
-57078,31,027,31027,32,13,6438902,5419837,19121,8204,301001054,289035112,8852,4148,1931733834,1917398625,0.17,0.16,2.14,1.88,0.36,0.31,0.33,0.28
-57078,46,135,46135,19089,8191,294562152,283615275,19121,8204,301001054,289035112,22438,9652,1378436674,1349807412,99.83,99.84,97.86,98.12,85.07,84.86,21.37,21.01
-57103,46,099,46099,34480,14067,31411684,31114106,34480,14067,31411684,31114106,169468,71557,2107896681,2090501559,100,100,100,100,20.35,19.66,1.49,1.49
-57104,46,099,46099,25901,12105,73085341,72467590,25901,12105,73085341,72467590,169468,71557,2107896681,2090501559,100,100,100,100,15.28,16.92,3.47,3.47
-57105,46,099,46099,22268,10052,18222585,18066824,22268,10052,18222585,18066824,169468,71557,2107896681,2090501559,100,100,100,100,13.14,14.05,0.86,0.86
-57106,46,083,46083,5758,2157,24811680,24811680,39852,17425,78211420,78058325,44828,17875,1496362244,1495144520,14.45,12.38,31.72,31.79,12.84,12.07,1.66,1.66
-57106,46,099,46099,34094,15268,53399740,53246645,39852,17425,78211420,78058325,169468,71557,2107896681,2090501559,85.55,87.62,68.28,68.21,20.12,21.34,2.53,2.55
-57107,46,099,46099,8044,3249,126204324,125791510,8044,3249,126204324,125791510,169468,71557,2107896681,2090501559,100,100,100,100,4.75,4.54,5.99,6.02
-57108,46,083,46083,17149,7202,79175166,79119959,17267,7283,79950647,79890940,44828,17875,1496362244,1495144520,99.32,98.89,99.03,99.03,38.26,40.29,5.29,5.29
-57108,46,099,46099,118,81,775481,770981,17267,7283,79950647,79890940,169468,71557,2107896681,2090501559,0.68,1.11,0.97,0.97,0.07,0.11,0.04,0.04
-57110,46,099,46099,12309,4788,53015486,52606858,12309,4788,53015486,52606858,169468,71557,2107896681,2090501559,100,100,100,100,7.26,6.69,2.52,2.52
-57117,46,099,46099,61,0,243309,243309,61,0,243309,243309,169468,71557,2107896681,2090501559,100,0,100,100,0.04,0,0.01,0.01
-57197,46,099,46099,959,0,219695,219695,959,0,219695,219695,169468,71557,2107896681,2090501559,100,0,100,100,0.57,0,0.01,0.01
-57201,46,029,46029,24983,11415,875655549,840295158,24983,11415,875655549,840295158,27227,12397,1857445879,1783194146,100,100,100,100,91.76,92.08,47.14,47.12
-57212,46,011,46011,469,272,271025759,261169508,2062,1039,617734094,590523450,31965,13137,2084772229,2051804629,22.74,26.18,43.87,44.23,1.47,2.07,13,12.73
-57212,46,057,46057,110,57,3390157,2437144,2062,1039,617734094,590523450,5903,2760,1393595435,1313721910,5.33,5.49,0.55,0.41,1.86,2.07,0.24,0.19
-57212,46,077,46077,1483,710,343318178,326916798,2062,1039,617734094,590523450,5148,2720,2237136419,2155481343,71.92,68.33,55.58,55.36,28.81,26.1,15.35,15.17
-57213,46,011,46011,212,158,94423236,88356831,485,300,187638837,177638756,31965,13137,2084772229,2051804629,43.71,52.67,50.32,49.74,0.66,1.2,4.53,4.31
-57213,46,039,46039,273,142,93215601,89281925,485,300,187638837,177638756,4364,2204,1648821388,1612749834,56.29,47.33,49.68,50.26,6.26,6.44,5.65,5.54
-57214,46,077,46077,75,37,10702285,10702285,75,37,10702285,10702285,5148,2720,2237136419,2155481343,100,100,100,100,1.46,1.36,0.48,0.5
-57216,46,051,46051,777,444,113842162,108259560,1044,728,177937609,161913774,7356,3526,1780714234,1764967869,74.43,60.99,63.98,66.86,10.56,12.59,6.39,6.13
-57216,46,109,46109,267,284,64095447,53654214,1044,728,177937609,161913774,10149,4905,2941631471,2851684211,25.57,39.01,36.02,33.14,2.63,5.79,2.18,1.88
-57217,46,025,46025,244,149,267923865,261414481,244,149,267923865,261414481,3691,1710,2505808994,2480181644,100,100,100,100,6.61,8.71,10.69,10.54
-57218,46,039,46039,327,146,181429592,181113766,327,146,181429592,181113766,4364,2204,1648821388,1612749834,100,100,100,100,7.49,6.62,11,11.23
-57219,46,037,46037,567,292,421895336,412608866,567,292,421895336,412608866,5710,3630,2825917291,2662166065,100,100,100,100,9.93,8.04,14.93,15.5
-57220,46,011,46011,767,428,295394856,285619288,767,428,295394856,285619288,31965,13137,2084772229,2051804629,100,100,100,100,2.4,3.26,14.17,13.92
-57221,46,025,46025,61,29,82697204,81734013,808,321,268531945,265938581,3691,1710,2505808994,2480181644,7.55,9.03,30.8,30.73,1.65,1.7,3.3,3.3
-57221,46,057,46057,747,292,185834741,184204568,808,321,268531945,265938581,5903,2760,1393595435,1313721910,92.45,90.97,69.2,69.27,12.65,10.58,13.33,14.02
-57223,46,039,46039,7,5,8582463,8582463,1356,602,341072518,331075703,4364,2204,1648821388,1612749834,0.52,0.83,2.52,2.59,0.16,0.23,0.52,0.53
-57223,46,057,46057,1349,597,332490055,322493240,1356,602,341072518,331075703,5903,2760,1393595435,1313721910,99.48,99.17,97.48,97.41,22.85,21.63,23.86,24.55
-57224,46,109,46109,195,95,134673356,134053994,195,95,134673356,134053994,10149,4905,2941631471,2851684211,100,100,100,100,1.92,1.94,4.58,4.7
-57225,46,025,46025,1873,887,729709823,723284887,1873,887,729709823,723284887,3691,1710,2505808994,2480181644,100,100,100,100,50.75,51.87,29.12,29.16
-57226,46,039,46039,2025,934,492766752,478274515,2072,949,505762436,491270199,4364,2204,1648821388,1612749834,97.73,98.42,97.43,97.35,46.4,42.38,29.89,29.66
-57226,46,057,46057,47,15,12995684,12995684,2072,949,505762436,491270199,5903,2760,1393595435,1313721910,2.27,1.58,2.57,2.65,0.8,0.54,0.93,0.99
-57227,46,051,46051,6,5,7658465,7658465,434,416,115913236,112523293,7356,3526,1780714234,1764967869,1.38,1.2,6.61,6.81,0.08,0.14,0.43,0.43
-57227,46,109,46109,428,411,108254771,104864828,434,416,115913236,112523293,10149,4905,2941631471,2851684211,98.62,98.8,93.39,93.19,4.22,8.38,3.68,3.68
-57231,46,077,46077,1695,887,739291548,708067060,1695,887,739291548,708067060,5148,2720,2237136419,2155481343,100,100,100,100,32.93,32.61,33.05,32.85
-57232,46,091,46091,299,284,254623569,206519166,299,284,254623569,206519166,4656,2534,2295310748,2170582034,100,100,100,100,6.42,11.21,11.09,9.51
-57233,46,077,46077,118,68,88798233,88798233,118,68,88798233,88798233,5148,2720,2237136419,2155481343,100,100,100,100,2.29,2.5,3.97,4.12
-57234,46,039,46039,145,63,137614423,137614423,1274,691,273034175,261740677,4364,2204,1648821388,1612749834,11.38,9.12,50.4,52.58,3.32,2.86,8.35,8.53
-57234,46,057,46057,1129,628,135419752,124126254,1274,691,273034175,261740677,5903,2760,1393595435,1313721910,88.62,90.88,49.6,47.42,19.13,22.75,9.72,9.45
-57235,46,029,46029,822,336,349137932,330670951,844,349,372122853,353028289,27227,12397,1857445879,1783194146,97.39,96.28,93.82,93.67,3.02,2.71,18.8,18.54
-57235,46,037,46037,22,13,22984921,22357338,844,349,372122853,353028289,5710,3630,2825917291,2662166065,2.61,3.72,6.18,6.33,0.39,0.36,0.81,0.84
-57236,46,025,46025,118,71,127583476,127005259,118,71,127583476,127005259,3691,1710,2505808994,2480181644,100,100,100,100,3.2,4.15,5.09,5.12
-57237,46,039,46039,665,473,252004576,245948683,665,473,252004576,245948683,4364,2204,1648821388,1612749834,100,100,100,100,15.24,21.46,15.28,15.25
-57238,46,029,46029,115,46,60029012,60024739,483,210,200394941,196250151,27227,12397,1857445879,1783194146,23.81,21.9,29.96,30.59,0.42,0.37,3.23,3.37
-57238,46,039,46039,351,158,131933774,127793257,483,210,200394941,196250151,4364,2204,1648821388,1612749834,72.67,75.24,65.84,65.12,8.04,7.17,8,7.92
-57238,46,057,46057,17,6,8432155,8432155,483,210,200394941,196250151,5903,2760,1393595435,1313721910,3.52,2.86,4.21,4.3,0.29,0.22,0.61,0.64
-57239,46,037,46037,223,437,124477588,118196102,223,437,124477588,118196102,5710,3630,2825917291,2662166065,100,100,100,100,3.91,12.04,4.4,4.44
-57241,46,057,46057,1048,389,279972297,261757643,1048,389,279972297,261757643,5903,2760,1393595435,1313721910,100,100,100,100,17.75,14.09,20.09,19.92
-57242,46,029,46029,58,24,38652707,38571258,432,163,212478180,212134622,27227,12397,1857445879,1783194146,13.43,14.72,18.19,18.18,0.21,0.19,2.08,2.16
-57242,46,057,46057,374,139,173825473,173563364,432,163,212478180,212134622,5903,2760,1393595435,1313721910,86.57,85.28,81.81,81.82,6.34,5.04,12.47,13.21
-57243,46,025,46025,43,15,33445735,33414767,604,270,324741473,309074796,3691,1710,2505808994,2480181644,7.12,5.56,10.3,10.81,1.16,0.88,1.33,1.35
-57243,46,029,46029,561,255,291295738,275660029,604,270,324741473,309074796,27227,12397,1857445879,1783194146,92.88,94.44,89.7,89.19,2.06,2.06,15.68,15.46
-57245,46,029,46029,126,54,1254867,1254867,126,54,1254867,1254867,27227,12397,1857445879,1783194146,100,100,100,100,0.46,0.44,0.07,0.07
-57246,46,051,46051,161,77,79403012,79343661,161,77,79403012,79343661,7356,3526,1780714234,1764967869,100,100,100,100,2.19,2.18,4.46,4.5
-57247,46,091,46091,320,460,176977223,148899315,320,460,176977223,148899315,4656,2534,2295310748,2170582034,100,100,100,100,6.87,18.15,7.71,6.86
-57248,46,057,46057,1006,610,185202110,147697001,1057,631,214538996,177033887,5903,2760,1393595435,1313721910,95.18,96.67,86.33,83.43,17.04,22.1,13.29,11.24
-57248,46,077,46077,51,21,29336886,29336886,1057,631,214538996,177033887,5148,2720,2237136419,2155481343,4.82,3.33,13.67,16.57,0.99,0.77,1.31,1.36
-57249,46,077,46077,994,596,410907317,381954765,994,596,410907317,381954765,5148,2720,2237136419,2155481343,100,100,100,100,19.31,21.91,18.37,17.72
-57251,46,051,46051,127,61,126163290,124074518,127,61,126163290,124074518,7356,3526,1780714234,1764967869,100,100,100,100,1.73,1.73,7.08,7.03
-57252,46,051,46051,4771,2256,411857586,409234256,4800,2268,424963197,422261181,7356,3526,1780714234,1764967869,99.4,99.47,96.92,96.91,64.86,63.98,23.13,23.19
-57252,46,109,46109,29,12,13105611,13026925,4800,2268,424963197,422261181,10149,4905,2941631471,2851684211,0.6,0.53,3.08,3.09,0.29,0.24,0.45,0.46
-57255,46,109,46109,538,243,279237153,273801609,538,243,279237153,273801609,10149,4905,2941631471,2851684211,100,100,100,100,5.3,4.95,9.49,9.6
-57256,46,051,46051,53,22,55965130,55665663,127,64,74869791,74244356,7356,3526,1780714234,1764967869,41.73,34.38,74.75,74.98,0.72,0.62,3.14,3.15
-57256,46,109,46109,74,42,18904661,18578693,127,64,74869791,74244356,10149,4905,2941631471,2851684211,58.27,65.63,25.25,25.02,0.73,0.86,0.64,0.65
-57257,46,109,46109,810,276,193079644,191776531,810,276,193079644,191776531,10149,4905,2941631471,2851684211,100,100,100,100,7.98,5.63,6.56,6.73
-57258,46,025,46025,278,104,310447338,309883726,385,127,315609360,315045748,3691,1710,2505808994,2480181644,72.21,81.89,98.36,98.36,7.53,6.08,12.39,12.49
-57258,46,115,46115,107,23,5162022,5162022,385,127,315609360,315045748,6415,3139,3910210396,3895148120,27.79,18.11,1.64,1.64,1.67,0.73,0.13,0.13
-57259,46,039,46039,130,65,142335537,141878989,505,240,354421268,353732940,4364,2204,1648821388,1612749834,25.74,27.08,40.16,40.11,2.98,2.95,8.63,8.8
-57259,46,051,46051,375,175,212085731,211853951,505,240,354421268,353732940,7356,3526,1780714234,1764967869,74.26,72.92,59.84,59.89,5.1,4.96,11.91,12
-57260,46,109,46109,1093,541,452948787,425590357,1093,541,452948787,425590357,10149,4905,2941631471,2851684211,100,100,100,100,10.77,11.03,15.4,14.92
-57261,46,037,46037,321,186,198657219,173405560,321,186,198657219,173405560,5710,3630,2825917291,2662166065,100,100,100,100,5.62,5.12,7.03,6.51
-57262,46,091,46091,153,54,63787616,56167028,4963,1998,925875013,897141388,4656,2534,2295310748,2170582034,3.08,2.7,6.89,6.26,3.29,2.13,2.78,2.59
-57262,46,109,46109,4810,1944,862087397,840974360,4963,1998,925875013,897141388,10149,4905,2941631471,2851684211,96.92,97.3,93.11,93.74,47.39,39.63,29.31,29.49
-57263,46,029,46029,393,189,171244740,168586496,450,207,245929393,242976936,27227,12397,1857445879,1783194146,87.33,91.3,69.63,69.38,1.44,1.52,9.22,9.45
-57263,46,051,46051,57,18,74684653,74390440,450,207,245929393,242976936,7356,3526,1780714234,1764967869,12.67,8.7,30.37,30.62,0.77,0.51,4.19,4.21
-57264,46,051,46051,219,104,112574011,112002015,219,104,112574011,112002015,7356,3526,1780714234,1764967869,100,100,100,100,2.98,2.95,6.32,6.35
-57265,46,039,46039,42,26,79391580,72731201,225,114,215299434,205990937,4364,2204,1648821388,1612749834,18.67,22.81,36.87,35.31,0.96,1.18,4.82,4.51
-57265,46,051,46051,183,88,135907854,133259736,225,114,215299434,205990937,7356,3526,1780714234,1764967869,81.33,77.19,63.13,64.69,2.49,2.5,7.63,7.55
-57266,46,051,46051,214,89,188269403,187736669,607,270,346611030,342770992,7356,3526,1780714234,1764967869,35.26,32.96,54.32,54.77,2.91,2.52,10.57,10.64
-57266,46,109,46109,393,181,158341627,155034323,607,270,346611030,342770992,10149,4905,2941631471,2851684211,64.74,67.04,45.68,45.23,3.87,3.69,5.38,5.44
-57268,46,011,46011,44,21,35129333,35129333,443,213,164676423,164659945,31965,13137,2084772229,2051804629,9.93,9.86,21.33,21.33,0.14,0.16,1.69,1.71
-57268,46,039,46039,399,192,129547090,129530612,443,213,164676423,164659945,4364,2204,1648821388,1612749834,90.07,90.14,78.67,78.67,9.14,8.71,7.86,8.03
-57269,46,051,46051,413,187,262302937,261488935,413,187,262302937,261488935,7356,3526,1780714234,1764967869,100,100,100,100,5.61,5.3,14.73,14.82
-57270,46,091,46091,878,349,411101140,395713134,904,363,449144972,433546272,4656,2534,2295310748,2170582034,97.12,96.14,91.53,91.27,18.86,13.77,17.91,18.23
-57270,46,109,46109,26,14,38043832,37833138,904,363,449144972,433546272,10149,4905,2941631471,2851684211,2.88,3.86,8.47,8.73,0.26,0.29,1.29,1.33
-57271,46,025,46025,171,73,150093579,150093579,247,100,226126590,226108436,3691,1710,2505808994,2480181644,69.23,73,66.38,66.38,4.63,4.27,5.99,6.05
-57271,46,057,46057,76,27,76033011,76014857,247,100,226126590,226108436,5903,2760,1393595435,1313721910,30.77,27,33.62,33.62,1.29,0.98,5.46,5.79
-57272,46,025,46025,4,6,19407414,18576725,173,84,89582748,86707373,3691,1710,2505808994,2480181644,2.31,7.14,21.66,21.42,0.11,0.35,0.77,0.75
-57272,46,029,46029,169,78,70175334,68130648,173,84,89582748,86707373,27227,12397,1857445879,1783194146,97.69,92.86,78.34,78.58,0.62,0.63,3.78,3.82
-57273,46,037,46037,1235,907,396616399,340761341,1316,940,510052703,452665845,5710,3630,2825917291,2662166065,93.84,96.49,77.76,75.28,21.63,24.99,14.03,12.8
-57273,46,109,46109,81,33,113436304,111904504,1316,940,510052703,452665845,10149,4905,2941631471,2851684211,6.16,3.51,22.24,24.72,0.8,0.67,3.86,3.92
-57274,46,025,46025,33,19,77976754,72358620,2813,1492,1069306365,1006511126,3691,1710,2505808994,2480181644,1.17,1.27,7.29,7.19,0.89,1.11,3.11,2.92
-57274,46,037,46037,2780,1473,991329611,934152506,2813,1492,1069306365,1006511126,5710,3630,2825917291,2662166065,98.83,98.73,92.71,92.81,48.69,40.58,35.08,35.09
-57276,46,011,46011,1178,449,323712810,323553113,1178,449,323712810,323553113,31965,13137,2084772229,2051804629,100,100,100,100,3.69,3.42,15.53,15.77
-57278,46,025,46025,748,292,463149366,459841194,748,292,463149366,459841194,3691,1710,2505808994,2480181644,100,100,100,100,20.27,17.08,18.48,18.54
-57279,46,109,46109,1058,653,384450890,375843414,1058,653,384450890,375843414,10149,4905,2941631471,2851684211,100,100,100,100,10.42,13.31,13.07,13.18
-57301,46,035,46035,17784,8124,495571326,492197410,18375,8256,630153068,626483879,19504,8852,1131616978,1128083214,96.78,98.4,78.64,78.57,91.18,91.78,43.79,43.63
-57301,46,061,46061,591,132,134581742,134286469,18375,8256,630153068,626483879,3331,1177,1127615662,1125383169,3.22,1.6,21.36,21.43,17.74,11.21,11.94,11.93
-57311,46,061,46061,1507,516,479267751,478675456,1616,517,481727412,481135117,3331,1177,1127615662,1125383169,93.25,99.81,99.49,99.49,45.24,43.84,42.5,42.53
-57311,46,067,46067,109,1,2459661,2459661,1616,517,481727412,481135117,7343,3351,2109341572,2105412805,6.75,0.19,0.51,0.51,1.48,0.03,0.12,0.12
-57312,46,005,46005,154,70,165198635,164920869,516,236,276205441,274834419,17398,8304,3275850825,3260042792,29.84,29.66,59.81,60.01,0.89,0.84,5.04,5.06
-57312,46,073,46073,362,166,111006806,109913550,516,236,276205441,274834419,2071,1070,1379605771,1362937167,70.16,70.34,40.19,39.99,17.48,15.51,8.05,8.06
-57313,46,023,46023,106,60,161673545,161657090,1128,588,453162333,452165287,9129,3849,2979093830,2842477063,9.4,10.2,35.68,35.75,1.16,1.56,5.43,5.69
-57313,46,043,46043,1022,528,291488788,290508197,1128,588,453162333,452165287,3002,1439,1123194775,1118361831,90.6,89.8,64.32,64.25,34.04,36.69,25.95,25.98
-57314,46,111,46111,734,345,727405681,725735069,734,345,727405681,725735069,2355,1172,1477526119,1474533498,100,100,100,100,31.17,29.44,49.23,49.22
-57315,46,009,46009,987,500,313731420,312659583,987,500,313731420,312659583,7070,2931,1506497953,1459979006,100,100,100,100,13.96,17.06,20.83,21.42
-57317,46,053,46053,526,308,425681760,402635940,526,308,425681760,402635940,4271,2503,2728626493,2628726426,100,100,100,100,12.32,12.31,15.6,15.32
-57319,46,067,46067,133,58,105821020,103921342,1003,487,383566606,380316771,7343,3351,2109341572,2105412805,13.26,11.91,27.59,27.32,1.81,1.73,5.02,4.94
-57319,46,087,46087,817,400,267761314,266411157,1003,487,383566606,380316771,5618,2491,1494080632,1487182118,81.46,82.14,69.81,70.05,14.54,16.06,17.92,17.91
-57319,46,125,46125,53,29,9984272,9984272,1003,487,383566606,380316771,8347,3939,1599820112,1598169823,5.28,5.95,2.6,2.63,0.63,0.74,0.62,0.62
-57321,46,061,46061,38,22,20255609,20104415,388,194,301091284,300791138,3331,1177,1127615662,1125383169,9.79,11.34,6.73,6.68,1.14,1.87,1.8,1.79
-57321,46,087,46087,42,21,49398392,49372080,388,194,301091284,300791138,5618,2491,1494080632,1487182118,10.82,10.82,16.41,16.41,0.75,0.84,3.31,3.32
-57321,46,097,46097,308,151,231437283,231314643,388,194,301091284,300791138,2389,1308,1481294858,1477098731,79.38,77.84,76.87,76.9,12.89,11.54,15.62,15.66
-57322,46,005,46005,180,55,214607943,214279933,296,112,416211142,415883132,17398,8304,3275850825,3260042792,60.81,49.11,51.56,51.52,1.03,0.66,6.55,6.57
-57322,46,025,46025,67,36,121353817,121353817,296,112,416211142,415883132,3691,1710,2505808994,2480181644,22.64,32.14,29.16,29.18,1.82,2.11,4.84,4.89
-57322,46,115,46115,49,21,80249382,80249382,296,112,416211142,415883132,6415,3139,3910210396,3895148120,16.55,18.75,19.28,19.3,0.76,0.67,2.05,2.06
-57323,46,097,46097,215,186,234110958,233277496,215,186,234110958,233277496,2389,1308,1481294858,1477098731,100,100,100,100,9,14.22,15.8,15.79
-57324,46,005,46005,383,184,191967949,191967949,383,184,191967949,191967949,17398,8304,3275850825,3260042792,100,100,100,100,2.2,2.22,5.86,5.89
-57325,46,015,46015,3006,1414,543919176,488308282,3054,1432,634911919,566661098,5255,2433,2192363028,2116641810,98.43,98.74,85.67,86.17,57.2,58.12,24.81,23.07
-57325,46,017,46017,48,18,90992743,78352816,3054,1432,634911919,566661098,1912,609,1263242516,1220880153,1.57,1.26,14.33,13.83,2.51,2.96,7.2,6.42
-57328,46,043,46043,1134,520,420314655,417554574,1134,520,420314655,417554574,3002,1439,1123194775,1118361831,100,100,100,100,37.77,36.14,37.42,37.34
-57329,46,023,46023,258,119,165895441,165516548,258,119,165895441,165516548,9129,3849,2979093830,2842477063,100,100,100,100,2.83,3.09,5.57,5.82
-57330,46,023,46023,148,38,107575752,107575752,625,257,331577287,331387386,9129,3849,2979093830,2842477063,23.68,14.79,32.44,32.46,1.62,0.99,3.61,3.78
-57330,46,043,46043,464,209,193525258,193387429,625,257,331577287,331387386,3002,1439,1123194775,1118361831,74.24,81.32,58.37,58.36,15.46,14.52,17.23,17.29
-57330,46,067,46067,13,10,30476277,30424205,625,257,331577287,331387386,7343,3351,2109341572,2105412805,2.08,3.89,9.19,9.18,0.18,0.3,1.44,1.45
-57331,46,035,46035,42,18,19212541,19212541,459,189,190542811,190228344,19504,8852,1131616978,1128083214,9.15,9.52,10.08,10.1,0.22,0.2,1.7,1.7
-57331,46,043,46043,69,27,41286652,41257062,459,189,190542811,190228344,3002,1439,1123194775,1118361831,15.03,14.29,21.67,21.69,2.3,1.88,3.68,3.69
-57331,46,067,46067,348,144,130043618,129758741,459,189,190542811,190228344,7343,3351,2109341572,2105412805,75.82,76.19,68.25,68.21,4.74,4.3,6.17,6.16
-57332,46,061,46061,612,280,130594575,130552341,730,342,266832030,266670023,3331,1177,1127615662,1125383169,83.84,81.87,48.94,48.96,18.37,23.79,11.58,11.6
-57332,46,067,46067,63,39,87148690,87056569,730,342,266832030,266670023,7343,3351,2109341572,2105412805,8.63,11.4,32.66,32.65,0.86,1.16,4.13,4.13
-57332,46,087,46087,55,23,49088765,49061113,730,342,266832030,266670023,5618,2491,1494080632,1487182118,7.53,6.73,18.4,18.4,0.98,0.92,3.29,3.3
-57334,46,035,46035,627,255,144809717,144772201,895,325,276931028,276782380,19504,8852,1131616978,1128083214,70.06,78.46,52.29,52.31,3.21,2.88,12.8,12.83
-57334,46,061,46061,152,61,107634740,107523608,895,325,276931028,276782380,3331,1177,1127615662,1125383169,16.98,18.77,38.87,38.85,4.56,5.18,9.55,9.55
-57334,46,067,46067,116,9,24486571,24486571,895,325,276931028,276782380,7343,3351,2109341572,2105412805,12.96,2.77,8.84,8.85,1.58,0.27,1.16,1.16
-57335,46,053,46053,244,162,302410748,266014265,244,162,302410748,266014265,4271,2503,2728626493,2628726426,100,100,100,100,5.71,6.47,11.08,10.12
-57337,46,097,46097,140,83,208294807,207793689,140,83,208294807,207793689,2389,1308,1481294858,1477098731,100,100,100,100,5.86,6.35,14.06,14.07
-57339,46,017,46017,1525,429,359044782,330982280,1525,429,359044782,330982280,1912,609,1263242516,1220880153,100,100,100,100,79.76,70.44,28.42,27.11
-57340,46,061,46061,343,133,168914416,168627118,355,140,208927575,207074087,3331,1177,1127615662,1125383169,96.62,95,80.85,81.43,10.3,11.3,14.98,14.98
-57340,46,097,46097,12,7,40013159,38446969,355,140,208927575,207074087,2389,1308,1481294858,1477098731,3.38,5,19.15,18.57,0.5,0.54,2.7,2.6
-57341,46,017,46017,151,97,655666252,654100903,151,97,655666252,654100903,1912,609,1263242516,1220880153,100,100,100,100,7.9,15.93,51.9,53.58
-57342,46,023,46023,558,340,436335209,414412487,558,340,436335209,414412487,9129,3849,2979093830,2842477063,100,100,100,100,6.11,8.83,14.65,14.58
-57344,46,043,46043,155,77,90215062,89309448,155,77,90215062,89309448,3002,1439,1123194775,1118361831,100,100,100,100,5.16,5.35,8.03,7.99
-57345,46,069,46069,1238,627,1708774770,1701123400,1238,627,1708774770,1701123400,1420,708,2243289445,2228747897,100,100,100,100,87.18,88.56,76.17,76.33
-57346,46,069,46069,68,27,139615766,133728749,68,27,139615766,133728749,1420,708,2243289445,2228747897,100,100,100,100,4.79,3.81,6.22,6
-57348,46,005,46005,363,175,374501415,374126210,527,257,655051791,654056694,17398,8304,3275850825,3260042792,68.88,68.09,57.17,57.2,2.09,2.11,11.43,11.48
-57348,46,115,46115,164,82,280550376,279930484,527,257,655051791,654056694,6415,3139,3910210396,3895148120,31.12,31.91,42.83,42.8,2.56,2.61,7.17,7.19
-57349,46,097,46097,1493,808,603088040,601915323,1493,808,603088040,601915323,2389,1308,1481294858,1477098731,100,100,100,100,62.49,61.77,40.71,40.75
-57350,46,005,46005,14534,6951,810063692,796451565,14534,6951,810063692,796451565,17398,8304,3275850825,3260042792,100,100,100,100,83.54,83.71,24.73,24.43
-57353,46,005,46005,360,118,360324855,360324855,829,345,805465524,804919219,17398,8304,3275850825,3260042792,43.43,34.2,44.73,44.77,2.07,1.42,11,11.05
-57353,46,077,46077,469,227,445140669,444594364,829,345,805465524,804919219,5148,2720,2237136419,2155481343,56.57,65.8,55.27,55.23,9.11,8.35,19.9,20.63
-57355,46,015,46015,1302,616,906632155,902066526,1352,639,1018646421,1012591421,5255,2433,2192363028,2116641810,96.3,96.4,89,89.08,24.78,25.32,41.35,42.62
-57355,46,017,46017,34,16,40510775,40485691,1352,639,1018646421,1012591421,1912,609,1263242516,1220880153,2.51,2.5,3.98,4,1.78,2.63,3.21,3.32
-57355,46,073,46073,16,7,71503491,70039204,1352,639,1018646421,1012591421,2071,1070,1379605771,1362937167,1.18,1.1,7.02,6.92,0.77,0.65,5.18,5.14
-57356,46,023,46023,1993,792,430968516,392027210,1993,792,430968516,392027210,9129,3849,2979093830,2842477063,100,100,100,100,21.83,20.58,14.47,13.79
-57358,46,073,46073,34,23,2450553,2450553,34,23,2450553,2450553,2071,1070,1379605771,1362937167,100,100,100,100,1.64,2.15,0.18,0.18
-57359,46,003,46003,64,45,88614941,88415614,649,329,433212369,432883850,2710,1324,1846012370,1834810993,9.86,13.68,20.46,20.42,2.36,3.4,4.8,4.82
-57359,46,035,46035,70,27,31941890,31941890,649,329,433212369,432883850,19504,8852,1131616978,1128083214,10.79,8.21,7.37,7.38,0.36,0.31,2.82,2.83
-57359,46,111,46111,515,257,312655538,312526346,649,329,433212369,432883850,2355,1172,1477526119,1474533498,79.35,78.12,72.17,72.2,21.87,21.93,21.16,21.19
-57361,46,023,46023,198,59,7462923,7462923,198,59,7462923,7462923,9129,3849,2979093830,2842477063,100,100,100,100,2.17,1.53,0.25,0.26
-57362,46,059,46059,2149,1133,1300651994,1296892508,2149,1133,1300651994,1296892508,3431,1815,3730048494,3720811266,100,100,100,100,62.63,62.42,34.87,34.86
-57363,46,035,46035,981,428,440081504,439959172,1003,442,463350377,463228045,19504,8852,1131616978,1128083214,97.81,96.83,94.98,94.98,5.03,4.84,38.89,39
-57363,46,111,46111,22,14,23268873,23268873,1003,442,463350377,463228045,2355,1172,1477526119,1474533498,2.19,3.17,5.02,5.02,0.93,1.19,1.57,1.58
-57364,46,043,46043,56,31,342441,342441,56,31,342441,342441,3002,1439,1123194775,1118361831,100,100,100,100,1.87,2.15,0.03,0.03
-57365,46,085,46085,522,274,184664182,159991700,522,274,184664182,159991700,3755,1704,4420264947,4252595025,100,100,100,100,13.9,16.08,4.18,3.76
-57366,46,043,46043,76,35,62727696,62727696,2228,1044,579101251,578290201,3002,1439,1123194775,1118361831,3.41,3.35,10.83,10.85,2.53,2.43,5.58,5.61
-57366,46,067,46067,2152,1009,516373555,515562505,2228,1044,579101251,578290201,7343,3351,2109341572,2105412805,96.59,96.65,89.17,89.15,29.31,30.11,24.48,24.49
-57367,46,023,46023,210,122,10303213,9607226,210,122,10303213,9607226,9129,3849,2979093830,2842477063,100,100,100,100,2.3,3.17,0.35,0.34
-57368,46,003,46003,1226,550,610135727,608438756,1226,550,610135727,608438756,2710,1324,1846012370,1834810993,100,100,100,100,45.24,41.54,33.05,33.16
-57369,46,015,46015,281,96,266659939,266039448,2495,1089,1214651182,1148483871,5255,2433,2192363028,2116641810,11.26,8.82,21.95,23.16,5.35,3.95,12.16,12.57
-57369,46,023,46023,2188,981,924697020,859169439,2495,1089,1214651182,1148483871,9129,3849,2979093830,2842477063,87.7,90.08,76.13,74.81,23.97,25.49,31.04,30.23
-57369,46,043,46043,26,12,23294223,23274984,2495,1089,1214651182,1148483871,3002,1439,1123194775,1118361831,1.04,1.1,1.92,2.03,0.87,0.83,2.07,2.08
-57370,46,015,46015,660,302,448266104,433341900,814,351,565294068,550300363,5255,2433,2192363028,2116641810,81.08,86.04,79.3,78.75,12.56,12.41,20.45,20.47
-57370,46,017,46017,154,49,117027964,116958463,814,351,565294068,550300363,1912,609,1263242516,1220880153,18.92,13.96,20.7,21.25,8.05,8.05,9.26,9.58
-57371,46,059,46059,234,148,513408424,512589927,234,148,513408424,512589927,3431,1815,3730048494,3720811266,100,100,100,100,6.82,8.15,13.76,13.78
-57373,46,059,46059,437,216,528655299,528429962,437,216,528655299,528429962,3431,1815,3730048494,3720811266,100,100,100,100,12.74,11.9,14.17,14.2
-57374,46,061,46061,88,33,86366829,85613762,343,160,196285997,195018968,3331,1177,1127615662,1125383169,25.66,20.63,44,43.9,2.64,2.8,7.66,7.61
-57374,46,087,46087,255,127,109919168,109405206,343,160,196285997,195018968,5618,2491,1494080632,1487182118,74.34,79.38,56,56.1,4.54,5.1,7.36,7.36
-57375,46,003,46003,647,339,377601021,377496759,647,339,377601021,377496759,2710,1324,1846012370,1834810993,100,100,100,100,23.87,25.6,20.45,20.57
-57376,46,009,46009,78,41,96467416,96414754,1010,554,405688860,405548663,7070,2931,1506497953,1459979006,7.72,7.4,23.78,23.77,1.1,1.4,6.4,6.6
-57376,46,067,46067,932,513,309221444,309133909,1010,554,405688860,405548663,7343,3351,2109341572,2105412805,92.28,92.6,76.22,76.23,12.69,15.31,14.66,14.68
-57379,46,005,46005,84,50,139742065,139533116,84,50,139742065,139533116,17398,8304,3275850825,3260042792,100,100,100,100,0.48,0.6,4.27,4.28
-57380,46,023,46023,3470,1338,734182211,725048388,3470,1338,734182211,725048388,9129,3849,2979093830,2842477063,100,100,100,100,38.01,34.76,24.64,25.51
-57381,46,005,46005,270,196,298748611,298721748,490,314,793772907,790572299,17398,8304,3275850825,3260042792,55.1,62.42,37.64,37.79,1.55,2.36,9.12,9.16
-57381,46,059,46059,220,118,495024296,491850551,490,314,793772907,790572299,3431,1815,3730048494,3720811266,44.9,37.58,62.36,62.21,6.41,6.5,13.27,13.22
-57382,46,003,46003,23,17,101950405,101507893,1591,827,1154331841,1141512128,2710,1324,1846012370,1834810993,1.45,2.06,8.83,8.89,0.85,1.28,5.52,5.53
-57382,46,005,46005,22,8,30712613,30520948,1591,827,1154331841,1141512128,17398,8304,3275850825,3260042792,1.38,0.97,2.66,2.67,0.13,0.1,0.94,0.94
-57382,46,073,46073,1546,802,1021668823,1009483287,1591,827,1154331841,1141512128,2071,1070,1379605771,1362937167,97.17,96.98,88.51,88.43,74.65,74.95,74.06,74.07
-57383,46,003,46003,726,364,654824637,646066332,732,369,681710291,672951986,2710,1324,1846012370,1834810993,99.18,98.64,96.06,96,26.79,27.49,35.47,35.21
-57383,46,015,46015,6,5,26885654,26885654,732,369,681710291,672951986,5255,2433,2192363028,2116641810,0.82,1.36,3.94,4,0.11,0.21,1.23,1.27
-57384,46,005,46005,839,404,549242420,549018099,839,404,549242420,549018099,17398,8304,3275850825,3260042792,100,100,100,100,4.82,4.87,16.77,16.84
-57385,46,003,46003,24,9,12885639,12885639,1221,637,600057764,596939422,2710,1324,1846012370,1834810993,1.97,1.41,2.15,2.16,0.89,0.68,0.7,0.7
-57385,46,073,46073,113,72,172976098,171050573,1221,637,600057764,596939422,2071,1070,1379605771,1362937167,9.25,11.3,28.83,28.65,5.46,6.73,12.54,12.55
-57385,46,111,46111,1084,556,414196027,413003210,1221,637,600057764,596939422,2355,1172,1477526119,1474533498,88.78,87.28,69.03,69.19,46.03,47.44,28.03,28.01
-57386,46,005,46005,209,93,140740627,140177500,209,93,140740627,140177500,17398,8304,3275850825,3260042792,100,100,100,100,1.2,1.12,4.3,4.3
-57401,46,013,46013,30061,13781,756420150,752483831,30061,13781,756420150,752483831,36531,16706,4483142800,4436601519,100,100,100,100,82.29,82.49,16.87,16.96
-57420,46,129,46129,75,195,119763182,119709868,75,195,119763182,119709868,5438,3003,1928558423,1835343493,100,100,100,100,1.38,6.49,6.21,6.52
-57421,46,091,46091,88,53,102608893,102347023,88,53,102608893,102347023,4656,2534,2295310748,2170582034,100,100,100,100,1.89,2.09,4.47,4.72
-57422,46,037,46037,235,141,287245058,285959497,235,141,287245058,285959497,5710,3630,2825917291,2662166065,100,100,100,100,4.12,3.88,10.16,10.74
-57424,46,049,46049,12,7,32713842,31978348,291,155,393477706,392721686,2364,1136,2605424986,2542720920,4.12,4.52,8.31,8.14,0.51,0.62,1.26,1.26
-57424,46,115,46115,279,148,360763864,360743338,291,155,393477706,392721686,6415,3139,3910210396,3895148120,95.88,95.48,91.69,91.86,4.35,4.71,9.23,9.26
-57426,46,013,46013,63,28,18123055,18123055,63,28,18123055,18123055,36531,16706,4483142800,4436601519,100,100,100,100,0.17,0.17,0.4,0.41
-57427,46,013,46013,620,250,156169916,156159155,620,250,156169916,156159155,36531,16706,4483142800,4436601519,100,100,100,100,1.7,1.5,3.48,3.52
-57428,46,045,46045,646,333,317450880,310127863,710,370,498303995,487307859,4071,1966,2981251027,2916212724,90.99,90,63.71,63.64,15.87,16.94,10.65,10.63
-57428,46,129,46129,64,37,180853115,177179996,710,370,498303995,487307859,5438,3003,1928558423,1835343493,9.01,10,36.29,36.36,1.18,1.23,9.38,9.65
-57429,46,115,46115,94,43,70103538,70103538,94,43,70103538,70103538,6415,3139,3910210396,3895148120,100,100,100,100,1.47,1.37,1.79,1.8
-57430,46,091,46091,2243,1047,959013940,941919741,2243,1047,959013940,941919741,4656,2534,2295310748,2170582034,100,100,100,100,48.17,41.32,41.78,43.39
-57432,46,013,46013,292,147,216777683,216687687,465,169,267171403,265414478,36531,16706,4483142800,4436601519,62.8,86.98,81.14,81.64,0.8,0.88,4.84,4.88
-57432,46,091,46091,173,22,50393720,48726791,465,169,267171403,265414478,4656,2534,2295310748,2170582034,37.2,13.02,18.86,18.36,3.72,0.87,2.2,2.24
-57433,46,013,46013,383,225,338708570,327913127,383,225,338708570,327913127,36531,16706,4483142800,4436601519,100,100,100,100,1.05,1.35,7.56,7.39
-57434,46,013,46013,212,40,142611867,142560517,566,269,748226396,746129522,36531,16706,4483142800,4436601519,37.46,14.87,19.06,19.11,0.58,0.24,3.18,3.21
-57434,46,025,46025,51,29,122020623,121220576,566,269,748226396,746129522,3691,1710,2505808994,2480181644,9.01,10.78,16.31,16.25,1.38,1.7,4.87,4.89
-57434,46,037,46037,24,16,54107399,52932901,566,269,748226396,746129522,5710,3630,2825917291,2662166065,4.24,5.95,7.23,7.09,0.42,0.44,1.91,1.99
-57434,46,115,46115,279,184,429486507,429415528,566,269,748226396,746129522,6415,3139,3910210396,3895148120,49.29,68.4,57.4,57.55,4.35,5.86,10.98,11.02
-57435,46,045,46045,36,13,90930556,90271950,247,147,366828927,360572841,4071,1966,2981251027,2916212724,14.57,8.84,24.79,25.04,0.88,0.66,3.05,3.1
-57435,46,049,46049,211,134,275898371,270300891,247,147,366828927,360572841,2364,1136,2605424986,2542720920,85.43,91.16,75.21,74.96,8.93,11.8,10.59,10.63
-57436,46,115,46115,384,242,551897406,551551180,384,242,551897406,551551180,6415,3139,3910210396,3895148120,100,100,100,100,5.99,7.71,14.11,14.16
-57437,46,021,46021,125,79,420545465,417195286,1286,921,1498533239,1482157132,1466,980,1996457998,1900214239,9.72,8.58,28.06,28.15,8.53,8.06,21.06,21.96
-57437,46,089,46089,1161,842,1077987774,1064961846,1286,921,1498533239,1482157132,2459,1418,2982463315,2943893701,90.28,91.42,71.94,71.85,47.21,59.38,36.14,36.18
-57438,46,049,46049,1580,658,1242983052,1214116145,1580,658,1242983052,1214116145,2364,1136,2605424986,2542720920,100,100,100,100,66.84,57.92,47.71,47.75
-57439,46,013,46013,52,27,12943881,12943881,52,27,12943881,12943881,36531,16706,4483142800,4436601519,100,100,100,100,0.14,0.16,0.29,0.29
-57440,46,115,46115,612,197,371005226,369252510,612,197,371005226,369252510,6415,3139,3910210396,3895148120,100,100,100,100,9.54,6.28,9.49,9.48
-57441,46,013,46013,607,321,739728472,733761669,607,321,739728472,733761669,36531,16706,4483142800,4436601519,100,100,100,100,1.66,1.92,16.5,16.54
-57442,46,041,46041,117,49,253070824,213865732,1664,1116,1702069115,1579243340,5301,2002,6333255223,5963433068,7.03,4.39,14.87,13.54,2.21,2.45,4,3.59
-57442,46,107,46107,1533,1057,1409232828,1325649273,1664,1116,1702069115,1579243340,2329,1500,2327533904,2230341155,92.13,94.71,82.8,83.94,65.82,70.47,60.55,59.44
-57442,46,119,46119,14,10,39765463,39728335,1664,1116,1702069115,1579243340,1373,845,2772028616,2607645054,0.84,0.9,2.34,2.52,1.02,1.18,1.43,1.52
-57445,46,013,46013,2068,894,663170637,662934280,2068,894,663170637,662934280,36531,16706,4483142800,4436601519,100,100,100,100,5.66,5.35,14.79,14.94
-57446,46,013,46013,472,283,405986457,400182303,472,283,405986457,400182303,36531,16706,4483142800,4436601519,100,100,100,100,1.29,1.69,9.06,9.02
-57448,46,045,46045,280,187,172473010,169579490,348,226,466220261,459634689,4071,1966,2981251027,2916212724,80.46,82.74,36.99,36.89,6.88,9.51,5.79,5.82
-57448,46,089,46089,68,39,293747251,290055199,348,226,466220261,459634689,2459,1418,2982463315,2943893701,19.54,17.26,63.01,63.11,2.77,2.75,9.85,9.85
-57449,46,013,46013,146,82,216251525,198587267,146,82,216251525,198587267,36531,16706,4483142800,4436601519,100,100,100,100,0.4,0.49,4.82,4.48
-57450,46,107,46107,557,292,324807218,316094747,672,349,526969568,507697034,2329,1500,2327533904,2230341155,82.89,83.67,61.64,62.26,23.92,19.47,13.95,14.17
-57450,46,129,46129,115,57,202162350,191602287,672,349,526969568,507697034,5438,3003,1928558423,1835343493,17.11,16.33,38.36,37.74,2.11,1.9,10.48,10.44
-57451,46,013,46013,78,35,71764783,71328392,2293,1044,1144755889,1136795375,36531,16706,4483142800,4436601519,3.4,3.35,6.27,6.27,0.21,0.21,1.6,1.61
-57451,46,045,46045,2215,1009,1072991106,1065466983,2293,1044,1144755889,1136795375,4071,1966,2981251027,2916212724,96.6,96.65,93.73,93.73,54.41,51.32,35.99,36.54
-57452,46,021,46021,73,32,177923231,176062964,278,192,517227170,513576771,1466,980,1996457998,1900214239,26.26,16.67,34.4,34.28,4.98,3.27,8.91,9.27
-57452,46,129,46129,205,160,339303939,337513807,278,192,517227170,513576771,5438,3003,1928558423,1835343493,73.74,83.33,65.6,65.72,3.77,5.33,17.59,18.39
-57454,46,037,46037,56,29,122561687,119651165,558,294,399366334,389941001,5710,3630,2825917291,2662166065,10.04,9.86,30.69,30.68,0.98,0.8,4.34,4.49
-57454,46,091,46091,502,265,276804647,270289836,558,294,399366334,389941001,4656,2534,2295310748,2170582034,89.96,90.14,69.31,69.32,10.78,10.46,12.06,12.45
-57455,46,107,46107,96,72,331174048,328587674,96,72,331174048,328587674,2329,1500,2327533904,2230341155,100,100,100,100,4.12,4.8,14.23,14.73
-57456,46,045,46045,88,2,25867568,25802150,862,422,1058409748,1048642353,4071,1966,2981251027,2916212724,10.21,0.47,2.44,2.46,2.16,0.1,0.87,0.88
-57456,46,089,46089,774,420,1032542180,1022840203,862,422,1058409748,1048642353,2459,1418,2982463315,2943893701,89.79,99.53,97.56,97.54,31.48,29.62,34.62,34.74
-57457,46,089,46089,90,84,329179786,317528636,90,84,329179786,317528636,2459,1418,2982463315,2943893701,100,100,100,100,3.66,5.92,11.04,10.79
-57460,46,013,46013,241,97,182370079,181887156,365,161,319872003,310706129,36531,16706,4483142800,4436601519,66.03,60.25,57.01,58.54,0.66,0.58,4.07,4.1
-57460,46,045,46045,25,21,72826875,68327753,365,161,319872003,310706129,4071,1966,2981251027,2916212724,6.85,13.04,22.77,21.99,0.61,1.07,2.44,2.34
-57460,46,049,46049,31,14,41966243,37858970,365,161,319872003,310706129,2364,1136,2605424986,2542720920,8.49,8.7,13.12,12.18,1.31,1.23,1.61,1.49
-57460,46,115,46115,68,29,22708806,22632250,365,161,319872003,310706129,6415,3139,3910210396,3895148120,18.63,18.01,7.1,7.28,1.06,0.92,0.58,0.58
-57461,46,115,46115,392,183,319629363,319629363,392,183,319629363,319629363,6415,3139,3910210396,3895148120,100,100,100,100,6.11,5.83,8.17,8.21
-57465,46,049,46049,98,50,147548547,145451778,371,170,402255698,399376857,2364,1136,2605424986,2542720920,26.42,29.41,36.68,36.42,4.15,4.4,5.66,5.72
-57465,46,115,46115,273,120,254707151,253925079,371,170,402255698,399376857,6415,3139,3910210396,3895148120,73.58,70.59,63.32,63.58,4.26,3.82,6.51,6.52
-57466,46,045,46045,28,13,110495380,106106852,124,77,377610044,363585467,4071,1966,2981251027,2916212724,22.58,16.88,29.26,29.18,0.69,0.66,3.71,3.64
-57466,46,049,46049,96,64,267114664,257478615,124,77,377610044,363585467,2364,1136,2605424986,2542720920,77.42,83.12,70.74,70.82,4.06,5.63,10.25,10.13
-57467,46,049,46049,81,48,51947160,51705611,293,152,487767758,486320140,2364,1136,2605424986,2542720920,27.65,31.58,10.65,10.63,3.43,4.23,1.99,2.03
-57467,46,059,46059,212,104,435820598,434614529,293,152,487767758,486320140,3431,1815,3730048494,3720811266,72.35,68.42,89.35,89.37,6.18,5.73,11.68,11.68
-57468,46,037,46037,247,136,206042073,202140789,247,136,206042073,202140789,5710,3630,2825917291,2662166065,100,100,100,100,4.33,3.75,7.29,7.59
-57469,46,049,46049,57,31,46612041,45372468,3305,1651,762837479,755038857,2364,1136,2605424986,2542720920,1.72,1.88,6.11,6.01,2.41,2.73,1.79,1.78
-57469,46,059,46059,55,32,122672275,122672275,3305,1651,762837479,755038857,3431,1815,3730048494,3720811266,1.66,1.94,16.08,16.25,1.6,1.76,3.29,3.3
-57469,46,115,46115,3193,1588,593553163,586994114,3305,1651,762837479,755038857,6415,3139,3910210396,3895148120,96.61,96.18,77.81,77.74,49.77,50.59,15.18,15.07
-57470,46,049,46049,78,53,156330425,153325121,143,93,392651988,389592590,2364,1136,2605424986,2542720920,54.55,56.99,39.81,39.36,3.3,4.67,6,6.03
-57470,46,059,46059,65,40,236321563,236267469,143,93,392651988,389592590,3431,1815,3730048494,3720811266,45.45,43.01,60.19,60.64,1.89,2.2,6.34,6.35
-57471,46,045,46045,674,346,915625115,883105990,674,346,915625115,883105990,4071,1966,2981251027,2916212724,100,100,100,100,16.56,17.6,30.71,30.28
-57472,46,129,46129,953,491,710087533,706980977,953,491,710087533,706980977,5438,3003,1928558423,1835343493,100,100,100,100,17.52,16.35,36.82,38.52
-57473,46,049,46049,120,77,342310641,335132973,161,92,436616372,428694527,2364,1136,2605424986,2542720920,74.53,83.7,78.4,78.18,5.08,6.78,13.14,13.18
-57473,46,107,46107,41,15,94305731,93561554,161,92,436616372,428694527,2329,1500,2327533904,2230341155,25.47,16.3,21.6,21.82,1.76,1,4.05,4.19
-57474,46,013,46013,197,92,157453733,157452775,197,92,157453733,157452775,36531,16706,4483142800,4436601519,100,100,100,100,0.54,0.55,3.51,3.55
-57475,46,045,46045,58,30,140055725,134999157,160,94,308069804,301447064,4071,1966,2981251027,2916212724,36.25,31.91,45.46,44.78,1.42,1.53,4.7,4.63
-57475,46,107,46107,102,64,168014079,166447907,160,94,308069804,301447064,2329,1500,2327533904,2230341155,63.75,68.09,54.54,55.22,4.38,4.27,7.22,7.46
-57476,46,059,46059,59,24,97494045,97494045,463,218,430773448,425976807,3431,1815,3730048494,3720811266,12.74,11.01,22.63,22.89,1.72,1.32,2.61,2.62
-57476,46,115,46115,404,194,333279403,328482762,463,218,430773448,425976807,6415,3139,3910210396,3895148120,87.26,88.99,77.37,77.11,6.3,6.18,8.52,8.43
-57477,46,115,46115,117,85,237114189,237076570,117,85,237114189,237076570,6415,3139,3910210396,3895148120,100,100,100,100,1.82,2.71,6.06,6.09
-57479,46,013,46013,666,252,137804497,137804497,666,252,137804497,137804497,36531,16706,4483142800,4436601519,100,100,100,100,1.82,1.51,3.07,3.11
-57481,46,013,46013,373,152,266857495,265791927,598,188,474375467,473105833,36531,16706,4483142800,4436601519,62.37,80.85,56.25,56.18,1.02,0.91,5.95,5.99
-57481,46,045,46045,21,12,62534812,62424536,598,188,474375467,473105833,4071,1966,2981251027,2916212724,3.51,6.38,13.18,13.19,0.52,0.61,2.1,2.14
-57481,46,089,46089,204,24,144983160,144889370,598,188,474375467,473105833,2459,1418,2982463315,2943893701,34.11,12.77,30.56,30.63,8.3,1.69,4.86,4.92
-57501,46,065,46065,16114,7190,997731995,899641591,16309,7384,1766442135,1514618132,17022,7623,2073889044,1920631032,98.8,97.37,56.48,59.4,94.67,94.32,48.11,46.84
-57501,46,119,46119,195,194,768710140,614976541,16309,7384,1766442135,1514618132,1373,845,2772028616,2607645054,1.2,2.63,43.52,40.6,14.2,22.96,27.73,23.58
-57520,46,119,46119,153,103,382010876,381356628,153,103,382010876,381356628,1373,845,2772028616,2607645054,100,100,100,100,11.14,12.19,13.78,14.62
-57521,46,071,46071,138,88,573219802,569209043,167,105,1006427045,1000474003,3031,1193,4846611837,4827514117,82.63,83.81,56.96,56.89,4.55,7.38,11.83,11.79
-57521,46,095,46095,29,17,433207243,431264960,167,105,1006427045,1000474003,2048,838,3395126476,3385906793,17.37,16.19,43.04,43.11,1.42,2.03,12.76,12.74
-57522,46,065,46065,463,220,305996107,305791451,463,220,305996107,305791451,17022,7623,2073889044,1920631032,100,100,100,100,2.72,2.89,14.75,15.92
-57523,46,053,46053,1094,655,710630482,677712693,1094,655,710630482,677712693,4271,2503,2728626493,2628726426,100,100,100,100,25.61,26.17,26.04,25.78
-57528,46,123,46123,748,397,518198397,517772838,748,397,518198397,517772838,5644,3072,4189488399,4176215610,100,100,100,100,13.25,12.92,12.37,12.4
-57529,46,053,46053,240,151,194615818,194101921,395,255,646986098,645461640,4271,2503,2728626493,2628726426,60.76,59.22,30.08,30.07,5.62,6.03,7.13,7.38
-57529,46,123,46123,155,104,452370280,451359719,395,255,646986098,645461640,5644,3072,4189488399,4176215610,39.24,40.78,69.92,69.93,2.75,3.39,10.8,10.81
-57531,46,075,46075,228,132,871238542,869544386,228,132,871238542,869544386,1006,589,2514600596,2511453417,100,100,100,100,22.66,22.41,34.65,34.62
-57532,46,085,46085,15,6,196237961,195954414,2835,1307,3203589202,3033319410,3755,1704,4420264947,4252595025,0.53,0.46,6.13,6.46,0.4,0.35,4.44,4.61
-57532,46,117,46117,2820,1301,3007351241,2837364996,2835,1307,3203589202,3033319410,2966,1387,3929445950,3741062251,99.47,99.54,93.87,93.54,95.08,93.8,76.53,75.84
-57533,46,053,46053,1811,1018,696127945,691760848,1900,1075,1077128131,1054595683,4271,2503,2728626493,2628726426,95.32,94.7,64.63,65.59,42.4,40.67,25.51,26.32
-57533,46,085,46085,89,57,381000186,362834835,1900,1075,1077128131,1054595683,3755,1704,4420264947,4252595025,4.68,5.3,35.37,34.41,2.37,3.35,8.62,8.53
-57534,46,123,46123,183,95,480778744,479075589,183,95,480778744,479075589,5644,3072,4189488399,4176215610,100,100,100,100,3.24,3.09,11.48,11.47
-57536,46,065,46065,445,213,770160942,715197990,469,235,1013998742,958461598,17022,7623,2073889044,1920631032,94.88,90.64,75.95,74.62,2.61,2.79,37.14,37.24
-57536,46,119,46119,24,22,243837800,243263608,469,235,1013998742,958461598,1373,845,2772028616,2607645054,5.12,9.36,24.05,25.38,1.75,2.6,8.8,9.33
-57537,46,117,46117,83,47,552847846,535297871,83,47,552847846,535297871,2966,1387,3929445950,3741062251,100,100,100,100,2.8,3.39,14.07,14.31
-57538,46,053,46053,322,178,344157416,343623075,322,178,344157416,343623075,4271,2503,2728626493,2628726426,100,100,100,100,7.54,7.11,12.61,13.07
-57540,46,069,46069,106,49,369411595,368408434,106,49,369411595,368408434,1420,708,2243289445,2228747897,100,100,100,100,7.46,6.92,16.47,16.53
-57541,46,123,46123,167,82,309484047,307033261,167,82,309484047,307033261,5644,3072,4189488399,4176215610,100,100,100,100,2.96,2.67,7.39,7.35
-57543,46,071,46071,870,460,1203897536,1196281012,870,460,1203897536,1196281012,3031,1193,4846611837,4827514117,100,100,100,100,28.7,38.56,24.84,24.78
-57544,46,085,46085,419,229,842843308,839932229,419,229,842843308,839932229,3755,1704,4420264947,4252595025,100,100,100,100,11.16,13.44,19.07,19.75
-57547,46,071,46071,139,70,656508203,655722179,139,70,656508203,655722179,3031,1193,4846611837,4827514117,100,100,100,100,4.59,5.87,13.55,13.58
-57548,46,085,46085,1380,393,394709836,302942662,1380,393,394709836,302942662,3755,1704,4420264947,4252595025,100,100,100,100,36.75,23.06,8.93,7.12
-57551,46,007,46007,2279,926,1892408310,1880501041,2279,926,1892408310,1880501041,3431,1263,3083392240,3068381373,100,100,100,100,66.42,73.32,61.37,61.29
-57552,46,055,46055,443,249,1903941131,1885920420,554,315,2663461564,2643836259,1937,1013,4731712063,4689260217,79.96,79.05,71.48,71.33,22.87,24.58,40.24,40.22
-57552,46,071,46071,14,8,72154127,71581833,554,315,2663461564,2643836259,3031,1193,4846611837,4827514117,2.53,2.54,2.71,2.71,0.46,0.67,1.49,1.48
-57552,46,075,46075,34,19,318119443,317934622,554,315,2663461564,2643836259,1006,589,2514600596,2511453417,6.14,6.03,11.94,12.03,3.38,3.23,12.65,12.66
-57552,46,117,46117,63,39,369246863,368399384,554,315,2663461564,2643836259,2966,1387,3929445950,3741062251,11.37,12.38,13.86,13.93,2.12,2.81,9.4,9.85
-57553,46,055,46055,153,75,689388440,680767352,153,75,689388440,680767352,1937,1013,4731712063,4689260217,100,100,100,100,7.9,7.4,14.57,14.52
-57555,46,121,46121,3834,1365,1088888901,1085952253,3834,1365,1088888901,1085952253,9612,3142,3602196884,3596342315,100,100,100,100,39.89,43.44,30.23,30.2
-57559,46,075,46075,638,382,984751720,984040284,638,382,984751720,984040284,1006,589,2514600596,2511453417,100,100,100,100,63.42,64.86,39.16,39.18
-57560,46,007,46007,13,9,145134000,145134000,436,154,425261244,424741976,3431,1263,3083392240,3068381373,2.98,5.84,34.13,34.17,0.38,0.71,4.71,4.73
-57560,46,095,46095,423,145,280127244,279607976,436,154,425261244,424741976,2048,838,3395126476,3385906793,97.02,94.16,65.87,65.83,20.65,17.3,8.25,8.26
-57562,46,075,46075,98,50,286171220,285614454,98,50,286171220,285614454,1006,589,2514600596,2511453417,100,100,100,100,9.74,8.49,11.38,11.37
-57563,46,121,46121,240,90,74918962,74832979,240,90,74918962,74832979,9612,3142,3602196884,3596342315,100,100,100,100,2.5,2.86,2.08,2.08
-57564,46,069,46069,8,5,25487314,25487314,995,521,1363191651,1353807256,1420,708,2243289445,2228747897,0.8,0.96,1.87,1.88,0.56,0.71,1.14,1.14
-57564,46,119,46119,987,516,1337704337,1328319942,995,521,1363191651,1353807256,1373,845,2772028616,2607645054,99.2,99.04,98.13,98.12,71.89,61.07,48.26,50.94
-57566,46,095,46095,26,12,58255611,58009393,1060,320,453281982,452129036,2048,838,3395126476,3385906793,2.45,3.75,12.85,12.83,1.27,1.43,1.72,1.71
-57566,46,121,46121,1034,308,395026371,394119643,1060,320,453281982,452129036,9612,3142,3602196884,3596342315,97.55,96.25,87.15,87.17,10.76,9.8,10.97,10.96
-57567,46,055,46055,1292,661,1808298442,1794738282,1406,718,2545698507,2528687059,1937,1013,4731712063,4689260217,91.89,92.06,71.03,70.98,66.7,65.25,38.22,38.27
-57567,46,071,46071,114,57,737400065,733948777,1406,718,2545698507,2528687059,3031,1193,4846611837,4827514117,8.11,7.94,28.97,29.02,3.76,4.78,15.21,15.2
-57568,46,085,46085,689,405,955729139,951981263,689,405,955729139,951981263,3755,1704,4420264947,4252595025,100,100,100,100,18.35,23.77,21.62,22.39
-57569,46,085,46085,445,235,956228653,931287635,445,235,956228653,931287635,3755,1704,4420264947,4252595025,100,100,100,100,11.85,13.79,21.63,21.9
-57570,46,121,46121,2064,618,246817446,246219792,2064,618,246817446,246219792,9612,3142,3602196884,3596342315,100,100,100,100,21.47,19.67,6.85,6.85
-57571,46,053,46053,14,16,1018696,1018696,14,16,1018696,1018696,4271,2503,2728626493,2628726426,100,100,100,100,0.33,0.64,0.04,0.04
-57572,46,121,46121,1847,523,434548749,434526692,1847,523,434548749,434526692,9612,3142,3602196884,3596342315,100,100,100,100,19.22,16.65,12.06,12.08
-57574,46,007,46007,104,61,509771665,506847972,104,61,509771665,506847972,3431,1263,3083392240,3068381373,100,100,100,100,3.03,4.83,16.53,16.52
-57576,46,075,46075,8,6,54319671,54319671,204,111,563171353,561989958,1006,589,2514600596,2511453417,3.92,5.41,9.65,9.67,0.8,1.02,2.16,2.16
-57576,46,085,46085,196,105,508851682,507670287,204,111,563171353,561989958,3755,1704,4420264947,4252595025,96.08,94.59,90.35,90.33,5.22,6.16,11.51,11.94
-57577,46,007,46007,8,3,14128329,14128329,1211,296,612984638,612428131,3431,1263,3083392240,3068381373,0.66,1.01,2.3,2.31,0.23,0.24,0.46,0.46
-57577,46,071,46071,1203,293,598856309,598299802,1211,296,612984638,612428131,3031,1193,4846611837,4827514117,99.34,98.99,97.7,97.69,39.69,24.56,12.36,12.39
-57579,46,095,46095,1330,525,1693184468,1689546340,1330,525,1693184468,1689546340,2048,838,3395126476,3385906793,100,100,100,100,64.94,62.65,49.87,49.9
-57580,46,095,46095,14,7,70197037,69948162,4449,2389,2807837090,2799889153,2048,838,3395126476,3385906793,0.31,0.29,2.5,2.5,0.68,0.84,2.07,2.07
-57580,46,121,46121,169,73,557240375,556646894,4449,2389,2807837090,2799889153,9612,3142,3602196884,3596342315,3.8,3.06,19.85,19.88,1.76,2.32,15.47,15.48
-57580,46,123,46123,4266,2309,2180399678,2173294097,4449,2389,2807837090,2799889153,5644,3072,4189488399,4176215610,95.89,96.65,77.65,77.62,75.58,75.16,52.04,52.04
-57584,46,123,46123,125,85,248257253,247680106,125,85,248257253,247680106,5644,3072,4189488399,4176215610,100,100,100,100,2.21,2.77,5.93,5.93
-57585,46,095,46095,226,132,860154873,857529962,226,132,860154873,857529962,2048,838,3395126476,3385906793,100,100,100,100,11.04,15.75,25.33,25.33
-57601,46,031,46031,35,12,139803418,121873376,4003,1948,575818315,539353000,4050,1540,6551759550,6396472290,0.87,0.62,24.28,22.6,0.86,0.78,2.13,1.91
-57601,46,041,46041,188,68,357525777,356636578,4003,1948,575818315,539353000,5301,2002,6333255223,5963433068,4.7,3.49,62.09,66.12,3.55,3.4,5.65,5.98
-57601,46,129,46129,3780,1868,78489120,60843046,4003,1948,575818315,539353000,5438,3003,1928558423,1835343493,94.43,95.89,13.63,11.28,69.51,62.2,4.07,3.32
-57620,46,105,46105,515,273,959368513,953576738,515,273,959368513,953576738,2982,1739,7485044318,7434504648,100,100,100,100,17.27,15.7,12.82,12.83
-57621,46,031,46031,378,97,249671111,246998162,378,97,249671111,246998162,4050,1540,6551759550,6396472290,100,100,100,100,9.33,6.3,3.81,3.86
-57622,46,137,46137,318,108,282207173,280914449,318,108,282207173,280914449,2801,987,5103882714,5079670231,100,100,100,100,11.35,10.94,5.53,5.53
-57623,46,137,46137,1042,415,2046642602,2040993492,1042,415,2046642602,2040993492,2801,987,5103882714,5079670231,100,100,100,100,37.2,42.05,40.1,40.18
-57625,46,041,46041,3316,1173,2711594190,2487916851,4230,1414,3415802724,3182362939,5301,2002,6333255223,5963433068,78.39,82.96,79.38,78.18,62.55,58.59,42.82,41.72
-57625,46,137,46137,914,241,704208534,694446088,4230,1414,3415802724,3182362939,2801,987,5103882714,5079670231,21.61,17.04,20.62,21.82,32.63,24.42,13.8,13.67
-57626,46,093,46093,592,317,1108297381,1104099892,971,488,3135509354,3128774736,25434,11000,9020535496,8989806533,60.97,64.96,35.35,35.29,2.33,2.88,12.29,12.28
-57626,46,105,46105,199,92,1364417187,1362523058,971,488,3135509354,3128774736,2982,1739,7485044318,7434504648,20.49,18.85,43.52,43.55,6.67,5.29,18.23,18.33
-57626,46,137,46137,180,79,662794786,662151786,971,488,3135509354,3128774736,2801,987,5103882714,5079670231,18.54,16.19,21.14,21.16,6.43,8,12.99,13.04
-57630,46,041,46041,32,16,28417455,28417455,32,16,28417455,28417455,5301,2002,6333255223,5963433068,100,100,100,100,0.6,0.8,0.45,0.48
-57631,46,021,46021,115,51,193258941,163708230,361,246,491158125,405221742,1466,980,1996457998,1900214239,31.86,20.73,39.35,40.4,7.84,5.2,9.68,8.62
-57631,46,129,46129,246,195,297899184,241513512,361,246,491158125,405221742,5438,3003,1928558423,1835343493,68.14,79.27,60.65,59.6,4.52,6.49,15.45,13.16
-57632,46,021,46021,634,355,527372843,524689953,634,355,527372843,524689953,1466,980,1996457998,1900214239,100,100,100,100,43.25,36.22,26.42,27.61
-57633,46,031,46031,128,62,969249398,966185027,414,199,1957416805,1949971145,4050,1540,6551759550,6396472290,30.92,31.16,49.52,49.55,3.16,4.03,14.79,15.1
-57633,46,041,46041,236,114,477961023,475715407,414,199,1957416805,1949971145,5301,2002,6333255223,5963433068,57,57.29,24.42,24.4,4.45,5.69,7.55,7.98
-57633,46,137,46137,50,23,510206384,508070711,414,199,1957416805,1949971145,2801,987,5103882714,5079670231,12.08,11.56,26.07,26.06,1.79,2.33,10,10
-57634,46,031,46031,115,58,572521753,571096475,115,58,572521753,571096475,4050,1540,6551759550,6396472290,100,100,100,100,2.84,3.77,8.74,8.93
-57636,46,041,46041,164,60,53131306,52832558,164,60,53131306,52832558,5301,2002,6333255223,5963433068,100,100,100,100,3.09,3,0.84,0.89
-57638,38,001,38001,199,117,693847630,693154166,1921,1170,2556800349,2530081465,2343,1377,2560756101,2557922251,10.36,10,27.14,27.4,8.49,8.5,27.1,27.1
-57638,38,037,38037,19,13,127035450,127035450,1921,1170,2556800349,2530081465,2394,1690,4314713635,4297150375,0.99,1.11,4.97,5.02,0.79,0.77,2.94,2.96
-57638,38,085,38085,28,16,123120347,123027519,1921,1170,2556800349,2530081465,4153,1311,2922141190,2833691263,1.46,1.37,4.82,4.86,0.67,1.22,4.21,4.34
-57638,46,031,46031,24,20,81268212,81100743,1921,1170,2556800349,2530081465,4050,1540,6551759550,6396472290,1.25,1.71,3.18,3.21,0.59,1.3,1.24,1.27
-57638,46,105,46105,1651,1004,1531528710,1505763587,1921,1170,2556800349,2530081465,2982,1739,7485044318,7434504648,85.94,85.81,59.9,59.51,55.37,57.73,20.46,20.25
-57639,46,031,46031,371,88,55245128,53483341,371,88,55245128,53483341,4050,1540,6551759550,6396472290,100,100,100,100,9.16,5.71,0.84,0.84
-57640,46,105,46105,176,112,1034547164,1032592681,176,112,1034547164,1032592681,2982,1739,7485044318,7434504648,100,100,100,100,5.9,6.44,13.82,13.89
-57641,38,085,38085,23,11,217559477,217374349,295,180,852644226,849555117,4153,1311,2922141190,2833691263,7.8,6.11,25.52,25.59,0.55,0.84,7.45,7.67
-57641,46,031,46031,272,169,635084749,632180768,295,180,852644226,849555117,4050,1540,6551759550,6396472290,92.2,93.89,74.48,74.41,6.72,10.97,9.69,9.88
-57642,38,085,38085,36,12,100159364,100124554,1917,703,1560976569,1510365501,4153,1311,2922141190,2833691263,1.88,1.71,6.42,6.63,0.87,0.92,3.43,3.53
-57642,46,031,46031,1881,691,1460817205,1410240947,1917,703,1560976569,1510365501,4050,1540,6551759550,6396472290,98.12,98.29,93.58,93.37,46.44,44.87,22.3,22.05
-57644,46,031,46031,29,19,385045418,384391136,335,182,2086233386,2076577278,4050,1540,6551759550,6396472290,8.66,10.44,18.46,18.51,0.72,1.23,5.88,6.01
-57644,46,105,46105,244,132,1233590600,1226011980,335,182,2086233386,2076577278,2982,1739,7485044318,7434504648,72.84,72.53,59.13,59.04,8.18,7.59,16.48,16.49
-57644,46,137,46137,62,31,467597368,466174162,335,182,2086233386,2076577278,2801,987,5103882714,5079670231,18.51,17.03,22.41,22.45,2.21,3.14,9.16,9.18
-57645,38,037,38037,39,25,261770386,261340442,217,118,648521953,646870688,2394,1690,4314713635,4297150375,17.97,21.19,40.36,40.4,1.63,1.48,6.07,6.08
-57645,38,085,38085,51,24,167660004,167603851,217,118,648521953,646870688,4153,1311,2922141190,2833691263,23.5,20.34,25.85,25.91,1.23,1.83,5.74,5.91
-57645,46,031,46031,127,69,219091563,217926395,217,118,648521953,646870688,4050,1540,6551759550,6396472290,58.53,58.47,33.78,33.69,3.14,4.48,3.34,3.41
-57646,46,021,46021,199,121,359019595,356428276,199,121,359019595,356428276,1466,980,1996457998,1900214239,100,100,100,100,13.57,12.35,17.98,18.76
-57648,38,029,38029,15,13,122063741,83986467,335,355,440401664,346115997,3550,2085,4027488748,3912008054,4.48,3.66,27.72,24.27,0.42,0.62,3.03,2.15
-57648,46,021,46021,320,342,318337923,262129530,335,355,440401664,346115997,1466,980,1996457998,1900214239,95.52,96.34,72.28,75.73,21.83,34.9,15.95,13.79
-57649,46,063,46063,41,19,224337198,224257361,217,128,1250356335,1242927233,1255,731,6935785501,6918829169,18.89,14.84,17.94,18.04,3.27,2.6,3.23,3.24
-57649,46,105,46105,176,109,1026019137,1018669872,217,128,1250356335,1242927233,2982,1739,7485044318,7434504648,81.11,85.16,82.06,81.96,5.9,6.27,13.71,13.7
-57650,46,063,46063,29,23,168349188,168010979,29,23,168349188,168010979,1255,731,6935785501,6918829169,100,100,100,100,2.31,3.15,2.43,2.43
-57651,46,063,46063,115,61,803281407,801947988,115,61,803281407,801947988,1255,731,6935785501,6918829169,100,100,100,100,9.16,8.34,11.58,11.59
-57652,46,041,46041,402,149,1248119273,1146341437,402,149,1248119273,1146341437,5301,2002,6333255223,5963433068,100,100,100,100,7.58,7.44,19.71,19.22
-57656,46,031,46031,32,15,208530807,205586243,723,331,1148896154,1144340155,4050,1540,6551759550,6396472290,4.43,4.53,18.15,17.97,0.79,0.97,3.18,3.21
-57656,46,041,46041,691,316,940365347,938753912,723,331,1148896154,1144340155,5301,2002,6333255223,5963433068,95.57,95.47,81.85,82.03,13.04,15.78,14.85,15.74
-57657,46,031,46031,136,69,505774059,498267348,203,101,715273841,707650240,4050,1540,6551759550,6396472290,67,68.32,70.71,70.41,3.36,4.48,7.72,7.79
-57657,46,041,46041,67,32,209499782,209382892,203,101,715273841,707650240,5301,2002,6333255223,5963433068,33,31.68,29.29,29.59,1.26,1.6,3.31,3.51
-57658,46,031,46031,446,132,416343621,354706422,446,132,416343621,354706422,4050,1540,6551759550,6396472290,100,100,100,100,11.01,8.57,6.35,5.55
-57660,38,037,38037,10,4,14311452,14245203,99,48,732688368,731507795,2394,1690,4314713635,4297150375,10.1,8.33,1.95,1.95,0.42,0.24,0.33,0.33
-57660,38,085,38085,13,5,65063808,64826685,99,48,732688368,731507795,4153,1311,2922141190,2833691263,13.13,10.42,8.88,8.86,0.31,0.38,2.23,2.29
-57660,46,031,46031,76,39,653313108,652435907,99,48,732688368,731507795,4050,1540,6551759550,6396472290,76.77,81.25,89.17,89.19,1.88,2.53,9.97,10.2
-57661,46,041,46041,88,25,53570246,53570246,88,25,53570246,53570246,5301,2002,6333255223,5963433068,100,100,100,100,1.66,1.25,0.85,0.9
-57701,46,093,46093,1105,404,96445715,96201421,43462,18977,183685626,183417086,25434,11000,9020535496,8989806533,2.54,2.13,52.51,52.45,4.34,3.67,1.07,1.07
-57701,46,103,46103,42357,18573,87239911,87215665,43462,18977,183685626,183417086,100948,44949,7211206523,7191239757,97.46,97.87,47.49,47.55,41.96,41.32,1.21,1.21
-57702,46,093,46093,463,190,40636903,40636903,32980,15142,761491845,756278009,25434,11000,9020535496,8989806533,1.4,1.25,5.34,5.37,1.82,1.73,0.45,0.45
-57702,46,103,46103,32517,14952,720854942,715641106,32980,15142,761491845,756278009,100948,44949,7211206523,7191239757,98.6,98.75,94.66,94.63,32.21,33.26,10,9.95
-57703,46,103,46103,14205,5645,333191480,332811948,14205,5645,333191480,332811948,100948,44949,7211206523,7191239757,100,100,100,100,14.07,12.56,4.62,4.63
-57706,46,093,46093,2497,883,16088464,16088464,2903,983,16686316,16686316,25434,11000,9020535496,8989806533,86.01,89.83,96.42,96.42,9.82,8.03,0.18,0.18
-57706,46,103,46103,406,100,597852,597852,2903,983,16686316,16686316,100948,44949,7211206523,7191239757,13.99,10.17,3.58,3.58,0.4,0.22,0.01,0.01
-57714,46,007,46007,872,226,483377248,483197343,872,226,483377248,483197343,3431,1263,3083392240,3068381373,100,100,100,100,25.42,17.89,15.68,15.75
-57716,46,007,46007,95,20,12516763,12516763,486,155,470251313,468160261,3431,1263,3083392240,3068381373,19.55,12.9,2.66,2.67,2.77,1.58,0.41,0.41
-57716,46,113,46113,391,135,457734550,455643498,486,155,470251313,468160261,13586,3593,5430296298,5423170067,80.45,87.1,97.34,97.33,2.88,3.76,8.43,8.4
-57717,46,019,46019,7887,3492,2412340346,2381887254,8007,3552,3246667261,3214026448,10110,4621,5869941041,5827210184,98.5,98.31,74.3,74.11,78.01,75.57,41.1,40.88
-57717,46,063,46063,19,11,305683262,304806609,8007,3552,3246667261,3214026448,1255,731,6935785501,6918829169,0.24,0.31,9.42,9.48,1.51,1.5,4.41,4.41
-57717,46,081,46081,31,13,11758329,11758329,8007,3552,3246667261,3214026448,24097,12756,2072795155,2072081513,0.39,0.37,0.36,0.37,0.13,0.1,0.57,0.57
-57717,56,011,56011,70,36,516885324,515574256,8007,3552,3246667261,3214026448,7083,3595,7421082168,7392881785,0.87,1.01,15.92,16.04,0.99,1,6.97,6.97
-57718,46,093,46093,6273,2504,58560399,58556624,6307,2520,58627238,58623463,25434,11000,9020535496,8989806533,99.46,99.37,99.89,99.89,24.66,22.76,0.65,0.65
-57718,46,103,46103,34,16,66839,66839,6307,2520,58627238,58623463,100948,44949,7211206523,7191239757,0.54,0.63,0.11,0.11,0.03,0.04,0,0
-57719,46,093,46093,863,342,335184852,331759343,6217,2400,431783731,428209302,25434,11000,9020535496,8989806533,13.88,14.25,77.63,77.48,3.39,3.11,3.72,3.69
-57719,46,103,46103,5354,2058,96598879,96449959,6217,2400,431783731,428209302,100948,44949,7211206523,7191239757,86.12,85.75,22.37,22.52,5.3,4.58,1.34,1.34
-57720,46,063,46063,651,397,3365384967,3354819776,651,397,3365384967,3354819776,1255,731,6935785501,6918829169,100,100,100,100,51.87,54.31,48.52,48.49
-57722,46,033,46033,199,128,404143698,403504553,283,173,1240521933,1239072904,8216,4628,4038098081,4032615511,70.32,73.99,32.58,32.57,2.42,2.77,10.01,10.01
-57722,46,047,46047,24,12,63408801,63408801,283,173,1240521933,1239072904,7094,4191,4530270385,4506359351,8.48,6.94,5.11,5.12,0.34,0.29,1.4,1.41
-57722,46,113,46113,60,33,772969434,772159550,283,173,1240521933,1239072904,13586,3593,5430296298,5423170067,21.2,19.08,62.31,62.32,0.44,0.92,14.23,14.24
-57724,30,011,30011,34,27,309766154,309478314,210,126,849609425,848367639,1160,810,8672002618,8652506323,16.19,21.43,36.46,36.48,2.93,3.33,3.57,3.58
-57724,46,063,46063,176,99,539843271,538889325,210,126,849609425,848367639,1255,731,6935785501,6918829169,83.81,78.57,63.54,63.52,14.02,13.54,7.78,7.79
-57725,46,103,46103,162,72,299446772,299384032,162,72,299446772,299384032,100948,44949,7211206523,7191239757,100,100,100,100,0.16,0.16,4.15,4.16
-57730,46,033,46033,5177,3025,1255782243,1254315308,5315,3134,1384476721,1383009786,8216,4628,4038098081,4032615511,97.4,96.52,90.7,90.69,63.01,65.36,31.1,31.1
-57730,46,103,46103,138,109,128694478,128694478,5315,3134,1384476721,1383009786,100948,44949,7211206523,7191239757,2.6,3.48,9.3,9.31,0.14,0.24,1.78,1.79
-57732,46,081,46081,1979,1329,299102538,299070789,1979,1329,299102538,299070789,24097,12756,2072795155,2072081513,100,100,100,100,8.21,10.42,14.43,14.43
-57735,46,033,46033,227,160,502132697,501908374,1327,883,2378513218,2376909884,8216,4628,4038098081,4032615511,17.11,18.12,21.11,21.12,2.76,3.46,12.43,12.45
-57735,46,047,46047,1100,723,1876380521,1875001510,1327,883,2378513218,2376909884,7094,4191,4530270385,4506359351,82.89,81.88,78.89,78.88,15.51,17.25,41.42,41.61
-57738,46,033,46033,170,92,388369312,387683820,170,92,388369312,387683820,8216,4628,4038098081,4032615511,100,100,100,100,2.07,1.99,9.62,9.61
-57741,46,093,46093,63,41,4565351,4565351,63,41,4565351,4565351,25434,11000,9020535496,8989806533,100,100,100,100,0.25,0.37,0.05,0.05
-57744,46,033,46033,1790,824,901479195,899117088,2238,977,1304871974,1302130596,8216,4628,4038098081,4032615511,79.98,84.34,69.09,69.05,21.79,17.8,22.32,22.3
-57744,46,103,46103,276,105,242641447,242311288,2238,977,1304871974,1302130596,100948,44949,7211206523,7191239757,12.33,10.75,18.6,18.61,0.27,0.23,3.36,3.37
-57744,46,113,46113,172,48,160751332,160702220,2238,977,1304871974,1302130596,13586,3593,5430296298,5423170067,7.69,4.91,12.32,12.34,1.27,1.34,2.96,2.96
-57745,46,103,46103,2109,1513,952533633,951085130,2109,1513,952533633,951085130,100948,44949,7211206523,7191239757,100,100,100,100,2.09,3.37,13.21,13.23
-57747,46,033,46033,480,268,305058323,305045187,5870,3389,1165164522,1144655578,8216,4628,4038098081,4032615511,8.18,7.91,26.18,26.65,5.84,5.79,7.55,7.56
-57747,46,047,46047,5390,3121,860106199,839610391,5870,3389,1165164522,1144655578,7094,4191,4530270385,4506359351,91.82,92.09,73.82,73.35,75.98,74.47,18.99,18.63
-57748,46,093,46093,83,51,589266938,585749132,318,141,1019492805,1012668675,25434,11000,9020535496,8989806533,26.1,36.17,57.8,57.84,0.33,0.46,6.53,6.52
-57748,46,137,46137,235,90,430225867,426919543,318,141,1019492805,1012668675,2801,987,5103882714,5079670231,73.9,63.83,42.2,42.16,8.39,9.12,8.43,8.4
-57750,46,071,46071,295,143,714206464,712688135,295,143,714206464,712688135,3031,1193,4846611837,4827514117,100,100,100,100,9.73,11.99,14.74,14.76
-57751,46,033,46033,10,31,68278714,68187282,844,556,176788732,176675936,8216,4628,4038098081,4032615511,1.18,5.58,38.62,38.59,0.12,0.67,1.69,1.69
-57751,46,103,46103,834,525,108510018,108488654,844,556,176788732,176675936,100948,44949,7211206523,7191239757,98.82,94.42,61.38,61.41,0.83,1.17,1.5,1.51
-57752,46,007,46007,60,18,26055925,26055925,2245,648,1088260353,1087690592,3431,1263,3083392240,3068381373,2.67,2.78,2.39,2.4,1.75,1.43,0.85,0.85
-57752,46,071,46071,234,60,201992822,201701280,2245,648,1088260353,1087690592,3031,1193,4846611837,4827514117,10.42,9.26,18.56,18.54,7.72,5.03,4.17,4.18
-57752,46,113,46113,1951,570,860211606,859933387,2245,648,1088260353,1087690592,13586,3593,5430296298,5423170067,86.9,87.96,79.04,79.06,14.36,15.86,15.84,15.86
-57754,46,081,46081,3793,2693,610477018,610472312,3793,2693,610477018,610472312,24097,12756,2072795155,2072081513,100,100,100,100,15.74,21.11,29.45,29.46
-57755,46,063,46063,116,66,582942073,582402581,116,66,582942073,582402581,1255,731,6935785501,6918829169,100,100,100,100,9.24,9.03,8.4,8.42
-57756,46,113,46113,1126,264,342416107,342345288,1126,264,342416107,342345288,13586,3593,5430296298,5423170067,100,100,100,100,8.29,7.35,6.31,6.31
-57758,46,093,46093,179,88,1016910642,1012889614,200,105,1352483649,1348256346,25434,11000,9020535496,8989806533,89.5,83.81,75.19,75.13,0.7,0.8,11.27,11.27
-57758,46,105,46105,21,17,335573007,335366732,200,105,1352483649,1348256346,2982,1739,7485044318,7434504648,10.5,16.19,24.81,24.87,0.7,0.98,4.48,4.51
-57759,46,081,46081,546,260,151130169,151106353,546,260,151130169,151106353,24097,12756,2072795155,2072081513,100,100,100,100,2.27,2.04,7.29,7.29
-57760,46,019,46019,1326,684,2765517894,2755425666,1353,695,3090893510,3079923802,10110,4621,5869941041,5827210184,98,98.42,89.47,89.46,13.12,14.8,47.11,47.29
-57760,46,063,46063,27,11,325375616,324498136,1353,695,3090893510,3079923802,1255,731,6935785501,6918829169,2,1.58,10.53,10.54,2.15,1.5,4.69,4.69
-57761,46,093,46093,232,103,925098793,922208389,1210,522,1390550509,1387313242,25434,11000,9020535496,8989806533,19.17,19.73,66.53,66.47,0.91,0.94,10.26,10.26
-57761,46,103,46103,978,419,465451716,465104853,1210,522,1390550509,1387313242,100948,44949,7211206523,7191239757,80.83,80.27,33.47,33.53,0.97,0.93,6.45,6.47
-57762,46,019,46019,531,263,274942493,274091942,531,263,274942493,274091942,10110,4621,5869941041,5827210184,100,100,100,100,5.25,5.69,4.68,4.7
-57763,46,047,46047,282,165,1071162623,1069814067,282,165,1071162623,1069814067,7094,4191,4530270385,4506359351,100,100,100,100,3.98,3.94,23.64,23.74
-57764,46,113,46113,1923,470,913854904,911310807,1923,470,913854904,911310807,13586,3593,5430296298,5423170067,100,100,100,100,14.15,13.08,16.83,16.8
-57766,46,047,46047,237,133,331916411,331408518,237,133,331916411,331408518,7094,4191,4530270385,4506359351,100,100,100,100,3.34,3.17,7.33,7.35
-57767,46,093,46093,51,30,184932152,184932152,149,72,405493049,405465297,25434,11000,9020535496,8989806533,34.23,41.67,45.61,45.61,0.2,0.27,2.05,2.06
-57767,46,103,46103,98,42,220560897,220533145,149,72,405493049,405465297,100948,44949,7211206523,7191239757,65.77,58.33,54.39,54.39,0.1,0.09,3.06,3.07
-57769,46,093,46093,3515,1519,328793158,328258375,3515,1519,328793158,328258375,25434,11000,9020535496,8989806533,100,100,100,100,13.82,13.81,3.64,3.65
-57770,46,113,46113,5271,1422,517628505,517004162,5271,1422,517628505,517004162,13586,3593,5430296298,5423170067,100,100,100,100,38.8,39.58,9.53,9.53
-57772,46,113,46113,2048,506,1274072244,1273413539,2048,506,1274072244,1273413539,13586,3593,5430296298,5423170067,100,100,100,100,15.07,14.08,23.46,23.48
-57773,46,033,46033,133,81,29011804,29011804,133,81,29011804,29011804,8216,4628,4038098081,4032615511,100,100,100,100,1.62,1.75,0.72,0.72
-57775,46,055,46055,49,28,330084050,327834163,230,120,829633672,825449205,1937,1013,4731712063,4689260217,21.3,23.33,39.79,39.72,2.53,2.76,6.98,6.99
-57775,46,071,46071,24,14,88376509,88082056,230,120,829633672,825449205,3031,1193,4846611837,4827514117,10.43,11.67,10.65,10.67,0.79,1.17,1.82,1.82
-57775,46,103,46103,157,78,411173113,409532986,230,120,829633672,825449205,100948,44949,7211206523,7191239757,68.26,65,49.56,49.61,0.16,0.17,5.7,5.69
-57776,46,063,46063,15,9,323024257,322062555,15,9,323024257,322062555,1255,731,6935785501,6918829169,100,100,100,100,1.2,1.23,4.66,4.65
-57779,46,081,46081,333,159,102716196,102563062,333,159,102716196,102563062,24097,12756,2072795155,2072081513,100,100,100,100,1.38,1.25,4.96,4.95
-57780,46,103,46103,102,57,848737147,846749214,102,57,848737147,846749214,100948,44949,7211206523,7191239757,100,100,100,100,0.1,0.13,11.77,11.77
-57782,46,047,46047,61,37,327295830,327116064,61,37,327295830,327116064,7094,4191,4530270385,4506359351,100,100,100,100,0.86,0.88,7.22,7.26
-57783,46,019,46019,20,13,20584217,20584217,14290,7097,608796840,608379788,10110,4621,5869941041,5827210184,0.14,0.18,3.38,3.38,0.2,0.28,0.35,0.35
-57783,46,081,46081,14270,7084,588212623,587795571,14290,7097,608796840,608379788,24097,12756,2072795155,2072081513,99.86,99.82,96.62,96.62,59.22,55.53,28.38,28.37
-57785,46,081,46081,869,510,92543954,92543954,9377,4532,1549780801,1544541071,24097,12756,2072795155,2072081513,9.27,11.25,5.97,5.99,3.61,4,4.46,4.47
-57785,46,093,46093,8508,4022,1457236847,1451997117,9377,4532,1549780801,1544541071,25434,11000,9020535496,8989806533,90.73,88.75,94.03,94.01,33.45,36.56,16.15,16.15
-57787,46,093,46093,365,200,1523917001,1521540142,365,200,1523917001,1521540142,25434,11000,9020535496,8989806533,100,100,100,100,1.44,1.82,16.89,16.93
-57788,46,019,46019,316,159,367376933,366094924,485,238,555850976,554524608,10110,4621,5869941041,5827210184,65.15,66.81,66.09,66.02,3.13,3.44,6.26,6.28
-57788,46,093,46093,169,79,188474043,188429684,485,238,555850976,554524608,25434,11000,9020535496,8989806533,34.85,33.19,33.91,33.98,0.66,0.72,2.09,2.1
-57790,46,103,46103,1111,605,1930631138,1922508539,1111,605,1930631138,1922508539,100948,44949,7211206523,7191239757,100,100,100,100,1.1,1.35,26.77,26.73
-57791,46,093,46093,80,35,374449462,371100921,190,96,534658238,531097505,25434,11000,9020535496,8989806533,42.11,36.46,70.04,69.87,0.31,0.32,4.15,4.13
-57791,46,103,46103,110,61,160208776,159996584,190,96,534658238,531097505,100948,44949,7211206523,7191239757,57.89,63.54,29.96,30.13,0.11,0.14,2.22,2.22
-57792,46,093,46093,129,76,634428862,633626400,129,76,634428862,633626400,25434,11000,9020535496,8989806533,100,100,100,100,0.51,0.69,7.03,7.05
-57793,46,019,46019,30,10,29179158,29126181,1913,824,382920519,382702433,10110,4621,5869941041,5827210184,1.57,1.21,7.62,7.61,0.3,0.22,0.5,0.5
-57793,46,081,46081,1616,698,216492828,216409643,1913,824,382920519,382702433,24097,12756,2072795155,2072081513,84.47,84.71,56.54,56.55,6.71,5.47,10.44,10.44
-57793,46,093,46093,267,116,137248533,137166609,1913,824,382920519,382702433,25434,11000,9020535496,8989806533,13.96,14.08,35.84,35.84,1.05,1.05,1.52,1.53
-57794,46,113,46113,644,145,130657616,130657616,644,145,130657616,130657616,13586,3593,5430296298,5423170067,100,100,100,100,4.74,4.04,2.41,2.41
-57799,46,081,46081,660,10,361500,361500,660,10,361500,361500,24097,12756,2072795155,2072081513,100,100,100,100,2.74,0.08,0.02,0.02
-58001,38,077,38077,55,28,624677,624677,55,28,624677,624677,16321,7503,3743686449,3718650537,100,100,100,100,0.34,0.37,0.02,0.02
-58002,38,017,38017,23,11,9064690,9024328,23,11,9064690,9024328,149778,67938,4578838901,4571166077,100,100,100,100,0.02,0.02,0.2,0.2
-58004,38,017,38017,266,115,147599508,147578836,266,115,147599508,147578836,149778,67938,4578838901,4571166077,100,100,100,100,0.18,0.17,3.22,3.23
-58005,38,017,38017,854,299,259334469,259334469,854,299,259334469,259334469,149778,67938,4578838901,4571166077,100,100,100,100,0.57,0.44,5.66,5.67
-58006,38,017,38017,427,183,159942829,159942829,427,183,159942829,159942829,149778,67938,4578838901,4571166077,100,100,100,100,0.29,0.27,3.49,3.5
-58007,38,017,38017,119,57,126166969,126166969,119,57,126166969,126166969,149778,67938,4578838901,4571166077,100,100,100,100,0.08,0.08,2.76,2.76
-58008,38,077,38077,229,102,141669869,141669869,229,102,141669869,141669869,16321,7503,3743686449,3718650537,100,100,100,100,1.4,1.36,3.78,3.81
-58009,38,097,38097,102,45,114821209,114821209,102,45,114821209,114821209,8121,3780,2233900419,2232438235,100,100,100,100,1.26,1.19,5.14,5.14
-58011,38,017,38017,391,192,287433207,287311350,391,192,287433207,287311350,149778,67938,4578838901,4571166077,100,100,100,100,0.26,0.28,6.28,6.29
-58012,38,017,38017,2474,986,174580621,174245380,2474,986,174580621,174245380,149778,67938,4578838901,4571166077,100,100,100,100,1.65,1.45,3.81,3.81
-58013,38,081,38081,101,71,197679841,191874052,101,71,197679841,191874052,3829,2004,2245259897,2223539399,100,100,100,100,2.64,3.54,8.8,8.63
-58015,38,077,38077,291,121,50454624,50454624,291,121,50454624,50454624,16321,7503,3743686449,3718650537,100,100,100,100,1.78,1.61,1.35,1.36
-58016,38,091,38091,55,22,80118423,80118423,192,81,180011880,180011880,1975,1171,1853043690,1844629354,28.65,27.16,44.51,44.51,2.78,1.88,4.32,4.34
-58016,38,097,38097,137,59,99893457,99893457,192,81,180011880,180011880,8121,3780,2233900419,2232438235,71.35,72.84,55.49,55.49,1.69,1.56,4.47,4.47
-58017,38,081,38081,313,199,498037189,497204109,313,199,498037189,497204109,3829,2004,2245259897,2223539399,100,100,100,100,8.17,9.93,22.18,22.36
-58018,38,077,38077,324,145,186467262,186467262,324,145,186467262,186467262,16321,7503,3743686449,3718650537,100,100,100,100,1.99,1.93,4.98,5.01
-58021,38,017,38017,447,176,167731479,167725921,447,176,167731479,167725921,149778,67938,4578838901,4571166077,100,100,100,100,0.3,0.26,3.66,3.67
-58027,38,003,38003,64,33,60168764,60168764,1391,689,476217339,473032395,11066,5704,3919700215,3863106624,4.6,4.79,12.63,12.72,0.58,0.58,1.54,1.56
-58027,38,017,38017,221,105,210155950,207021758,1391,689,476217339,473032395,149778,67938,4578838901,4571166077,15.89,15.24,44.13,43.76,0.15,0.15,4.59,4.53
-58027,38,073,38073,1106,551,205892625,205841873,1391,689,476217339,473032395,5457,2656,2237075327,2233494202,79.51,79.97,43.24,43.52,20.27,20.75,9.2,9.22
-58029,38,017,38017,129,60,108238533,107772546,129,60,108238533,107772546,149778,67938,4578838901,4571166077,100,100,100,100,0.09,0.09,2.36,2.36
-58030,38,077,38077,649,332,330451887,330451887,649,332,330451887,330451887,16321,7503,3743686449,3718650537,100,100,100,100,3.98,4.42,8.83,8.89
-58031,38,003,38003,225,122,208026142,207013517,414,205,414848368,413443505,11066,5704,3919700215,3863106624,54.35,59.51,50.15,50.07,2.03,2.14,5.31,5.36
-58031,38,017,38017,189,83,206822226,206429988,414,205,414848368,413443505,149778,67938,4578838901,4571166077,45.65,40.49,49.85,49.93,0.13,0.12,4.52,4.52
-58032,38,081,38081,722,354,264604058,263763798,722,354,264604058,263763798,3829,2004,2245259897,2223539399,100,100,100,100,18.86,17.66,11.79,11.86
-58033,38,073,38073,374,200,342798880,342597450,374,200,342798880,342597450,5457,2656,2237075327,2233494202,100,100,100,100,6.85,7.53,15.32,15.34
-58035,38,017,38017,32,17,82699665,82699665,262,147,238832683,238444597,149778,67938,4578838901,4571166077,12.21,11.56,34.63,34.68,0.02,0.03,1.81,1.81
-58035,38,091,38091,29,18,57661185,57500924,262,147,238832683,238444597,1975,1171,1853043690,1844629354,11.07,12.24,24.14,24.12,1.47,1.54,3.11,3.12
-58035,38,097,38097,201,112,98471833,98244008,262,147,238832683,238444597,8121,3780,2233900419,2232438235,76.72,76.19,41.23,41.2,2.48,2.96,4.41,4.4
-58036,38,017,38017,274,138,192122001,192122001,274,138,192122001,192122001,149778,67938,4578838901,4571166077,100,100,100,100,0.18,0.2,4.2,4.2
-58038,38,017,38017,241,109,88349138,88349138,332,152,223897392,223897392,149778,67938,4578838901,4571166077,72.59,71.71,39.46,39.46,0.16,0.16,1.93,1.93
-58038,38,097,38097,91,43,135548254,135548254,332,152,223897392,223897392,8121,3780,2233900419,2232438235,27.41,28.29,60.54,60.54,1.12,1.14,6.07,6.07
-58040,38,081,38081,920,459,211257317,208970386,920,459,211257317,208970386,3829,2004,2245259897,2223539399,100,100,100,100,24.03,22.9,9.41,9.4
-58041,38,077,38077,1545,786,531711178,521050713,1545,786,531711178,521050713,16321,7503,3743686449,3718650537,100,100,100,100,9.47,10.48,14.2,14.01
-58042,38,017,38017,1386,500,111645439,111352102,1386,500,111645439,111352102,149778,67938,4578838901,4571166077,100,100,100,100,0.93,0.74,2.44,2.44
-58043,38,081,38081,167,91,152377797,150677498,167,91,152377797,150677498,3829,2004,2245259897,2223539399,100,100,100,100,4.36,4.54,6.79,6.78
-58045,38,097,38097,2230,1042,527843646,526775370,2230,1042,527843646,526775370,8121,3780,2233900419,2232438235,100,100,100,100,27.46,27.57,23.63,23.6
-58046,38,003,38003,27,18,77306546,76618371,583,303,593688823,592572300,11066,5704,3919700215,3863106624,4.63,5.94,13.02,12.93,0.24,0.32,1.97,1.98
-58046,38,017,38017,11,3,5245546,5245546,583,303,593688823,592572300,149778,67938,4578838901,4571166077,1.89,0.99,0.88,0.89,0.01,0,0.11,0.11
-58046,38,091,38091,545,282,511136731,510708383,583,303,593688823,592572300,1975,1171,1853043690,1844629354,93.48,93.07,86.1,86.18,27.59,24.08,27.58,27.69
-58047,38,017,38017,3548,1247,179038398,178865953,3560,1251,181271072,181098627,149778,67938,4578838901,4571166077,99.66,99.68,98.77,98.77,2.37,1.84,3.91,3.91
-58047,38,077,38077,12,4,2232674,2232674,3560,1251,181271072,181098627,16321,7503,3743686449,3718650537,0.34,0.32,1.23,1.23,0.07,0.05,0.06,0.06
-58048,38,017,38017,384,199,224992454,224792236,418,213,285867191,285666973,149778,67938,4578838901,4571166077,91.87,93.43,78.71,78.69,0.26,0.29,4.91,4.92
-58048,38,097,38097,34,14,60874737,60874737,418,213,285867191,285666973,8121,3780,2233900419,2232438235,8.13,6.57,21.29,21.31,0.42,0.37,2.73,2.73
-58049,38,003,38003,206,127,226152637,224644428,289,174,344416640,342658884,11066,5704,3919700215,3863106624,71.28,72.99,65.66,65.56,1.86,2.23,5.77,5.82
-58049,38,045,38045,27,12,28680172,28558142,289,174,344416640,342658884,4139,2238,2980791907,2967978523,9.34,6.9,8.33,8.33,0.65,0.54,0.96,0.96
-58049,38,073,38073,56,35,89583831,89456314,289,174,344416640,342658884,5457,2656,2237075327,2233494202,19.38,20.11,26.01,26.11,1.03,1.32,4,4.01
-58051,38,017,38017,1178,475,173781833,173781833,1458,592,285045018,285035302,149778,67938,4578838901,4571166077,80.8,80.24,60.97,60.97,0.79,0.7,3.8,3.8
-58051,38,077,38077,280,117,111263185,111253469,1458,592,285045018,285035302,16321,7503,3743686449,3718650537,19.2,19.76,39.03,39.03,1.72,1.56,2.97,2.99
-58052,38,017,38017,455,223,220520710,220426782,581,282,393323400,393162400,149778,67938,4578838901,4571166077,78.31,79.08,56.07,56.07,0.3,0.33,4.82,4.82
-58052,38,073,38073,17,10,37522255,37494659,581,282,393323400,393162400,5457,2656,2237075327,2233494202,2.93,3.55,9.54,9.54,0.31,0.38,1.68,1.68
-58052,38,077,38077,109,49,135280435,135240959,581,282,393323400,393162400,16321,7503,3743686449,3718650537,18.76,17.38,34.39,34.4,0.67,0.65,3.61,3.64
-58053,38,077,38077,1064,602,462247121,448440750,1171,663,591977593,577031342,16321,7503,3743686449,3718650537,90.86,90.8,78.09,77.72,6.52,8.02,12.35,12.06
-58053,38,081,38081,107,61,129730472,128590592,1171,663,591977593,577031342,3829,2004,2245259897,2223539399,9.14,9.2,21.91,22.28,2.79,3.04,5.78,5.78
-58054,38,073,38073,3128,1534,751763093,750794084,3128,1534,751763093,750794084,5457,2656,2237075327,2233494202,100,100,100,100,57.32,57.76,33.6,33.62
-58056,38,003,38003,84,72,114028389,112480465,191,134,252072338,245243612,11066,5704,3919700215,3863106624,43.98,53.73,45.24,45.86,0.76,1.26,2.91,2.91
-58056,38,039,38039,17,9,28369242,24565717,191,134,252072338,245243612,2420,1461,1855581058,1835821650,8.9,6.72,11.25,10.02,0.7,0.62,1.53,1.34
-58056,38,091,38091,90,53,109674707,108197430,191,134,252072338,245243612,1975,1171,1853043690,1844629354,47.12,39.55,43.51,44.12,4.56,4.53,5.92,5.87
-58057,38,073,38073,64,37,85345816,85345816,147,78,233242537,233242537,5457,2656,2237075327,2233494202,43.54,47.44,36.59,36.59,1.17,1.39,3.82,3.82
-58057,38,077,38077,83,41,147896721,147896721,147,78,233242537,233242537,16321,7503,3743686449,3718650537,56.46,52.56,63.41,63.41,0.51,0.55,3.95,3.98
-58058,38,077,38077,123,61,48611435,48611435,123,61,48611435,48611435,16321,7503,3743686449,3718650537,100,100,100,100,0.75,0.81,1.3,1.31
-58059,38,017,38017,1168,448,317807208,317437467,1168,448,317807208,317437467,149778,67938,4578838901,4571166077,100,100,100,100,0.78,0.66,6.94,6.94
-58060,38,073,38073,296,95,251843609,251765689,1329,624,630018005,623430029,5457,2656,2237075327,2233494202,22.27,15.22,39.97,40.38,5.42,3.58,11.26,11.27
-58060,38,081,38081,1033,529,378174396,371664340,1329,624,630018005,623430029,3829,2004,2245259897,2223539399,77.73,84.78,60.03,59.62,26.98,26.4,16.84,16.71
-58061,38,077,38077,413,174,157467507,157322322,413,174,157467507,157322322,16321,7503,3743686449,3718650537,100,100,100,100,2.53,2.32,4.21,4.23
-58062,38,003,38003,127,67,73019066,72978271,174,90,145065772,144924441,11066,5704,3919700215,3863106624,72.99,74.44,50.34,50.36,1.15,1.17,1.86,1.89
-58062,38,073,38073,47,23,72046706,71946170,174,90,145065772,144924441,5457,2656,2237075327,2233494202,27.01,25.56,49.66,49.64,0.86,0.87,3.22,3.22
-58063,38,003,38003,340,160,318149161,317883470,340,160,318149161,317883470,11066,5704,3919700215,3863106624,100,100,100,100,3.07,2.81,8.12,8.23
-58064,38,003,38003,19,12,69158252,69126494,450,223,408851775,408519805,11066,5704,3919700215,3863106624,4.22,5.38,16.92,16.92,0.17,0.21,1.76,1.79
-58064,38,017,38017,415,205,326726086,326425874,450,223,408851775,408519805,149778,67938,4578838901,4571166077,92.22,91.93,79.91,79.9,0.28,0.3,7.14,7.14
-58064,38,091,38091,16,6,12967437,12967437,450,223,408851775,408519805,1975,1171,1853043690,1844629354,3.56,2.69,3.17,3.17,0.81,0.51,0.7,0.7
-58065,38,003,38003,22,17,53179627,53179627,22,17,53179627,53179627,11066,5704,3919700215,3863106624,100,100,100,100,0.2,0.3,1.36,1.38
-58067,38,081,38081,243,143,147317932,146390519,243,143,147317932,146390519,3829,2004,2245259897,2223539399,100,100,100,100,6.35,7.14,6.56,6.58
-58068,38,073,38073,321,151,292869545,291427000,321,151,292869545,291427000,5457,2656,2237075327,2233494202,100,100,100,100,5.88,5.69,13.09,13.05
-58069,38,073,38073,9,4,10484852,10484852,176,77,152248817,151520296,5457,2656,2237075327,2233494202,5.11,5.19,6.89,6.92,0.16,0.15,0.47,0.47
-58069,38,081,38081,167,73,141763965,141035444,176,77,152248817,151520296,3829,2004,2245259897,2223539399,94.89,94.81,93.11,93.08,4.36,3.64,6.31,6.34
-58071,38,003,38003,71,32,107526045,107515551,409,183,272057515,272040251,11066,5704,3919700215,3863106624,17.36,17.49,39.52,39.52,0.64,0.56,2.74,2.78
-58071,38,017,38017,338,151,164531470,164524700,409,183,272057515,272040251,149778,67938,4578838901,4571166077,82.64,82.51,60.48,60.48,0.23,0.22,3.59,3.6
-58072,38,003,38003,7997,3974,828427774,819789930,7997,3974,828427774,819789930,11066,5704,3919700215,3863106624,100,100,100,100,72.27,69.67,21.13,21.22
-58075,38,077,38077,9276,4210,645436156,645061457,9276,4210,645436156,645061457,16321,7503,3743686449,3718650537,100,100,100,100,56.83,56.11,17.24,17.35
-58076,38,077,38077,236,0,96571,96571,236,0,96571,96571,16321,7503,3743686449,3718650537,100,0,100,100,1.45,0,0,0
-58077,38,077,38077,787,325,364118441,364118441,787,325,364118441,364118441,16321,7503,3743686449,3718650537,100,100,100,100,4.82,4.33,9.73,9.79
-58078,38,017,38017,26321,10946,102578465,101456444,26321,10946,102578465,101456444,149778,67938,4578838901,4571166077,100,100,100,100,17.57,16.11,2.24,2.22
-58079,38,017,38017,530,220,345680643,345235165,530,220,345680643,345235165,149778,67938,4578838901,4571166077,100,100,100,100,0.35,0.32,7.55,7.55
-58081,38,077,38077,845,406,427656706,427656706,845,406,427656706,427656706,16321,7503,3743686449,3718650537,100,100,100,100,5.18,5.41,11.42,11.5
-58102,38,017,38017,29850,14338,81082150,80929583,29850,14338,81082150,80929583,149778,67938,4578838901,4571166077,100,100,100,100,19.93,21.1,1.77,1.77
-58103,38,017,38017,47302,24011,29283647,29283647,47302,24011,29283647,29283647,149778,67938,4578838901,4571166077,100,100,100,100,31.58,35.34,0.64,0.64
-58104,38,017,38017,28322,12436,74199324,74199324,28322,12436,74199324,74199324,149778,67938,4578838901,4571166077,100,100,100,100,18.91,18.3,1.62,1.62
-58105,38,017,38017,2483,5,1484243,1484243,2483,5,1484243,1484243,149778,67938,4578838901,4571166077,100,100,100,100,1.66,0.01,0.03,0.03
-58201,38,035,38035,34880,16488,183502028,182953299,34880,16488,183502028,182953299,66861,29344,3728294623,3720196548,100,100,100,100,52.17,56.19,4.92,4.92
-58202,38,035,38035,1839,3,432038,426583,1839,3,432038,426583,66861,29344,3728294623,3720196548,100,100,100,100,2.75,0.01,0.01,0.01
-58203,38,035,38035,18229,7772,176582094,175504570,18229,7772,176582094,175504570,66861,29344,3728294623,3720196548,100,100,100,100,27.26,26.49,4.74,4.72
-58204,38,035,38035,2107,807,20643953,20643953,2107,807,20643953,20643953,66861,29344,3728294623,3720196548,100,100,100,100,3.15,2.75,0.55,0.55
-58205,38,035,38035,260,0,417527,417527,260,0,417527,417527,66861,29344,3728294623,3720196548,100,0,100,100,0.39,0,0.01,0.01
-58210,38,099,38099,322,207,402688063,394815164,322,207,402688063,394815164,11119,5498,3351690699,3320186385,100,100,100,100,2.9,3.77,12.01,11.89
-58212,38,035,38035,19,13,52045708,52045708,474,283,526045455,522243776,66861,29344,3728294623,3720196548,4.01,4.59,9.89,9.97,0.03,0.04,1.4,1.4
-58212,38,039,38039,102,62,171998353,170754378,474,283,526045455,522243776,2420,1461,1855581058,1835821650,21.52,21.91,32.7,32.7,4.21,4.24,9.27,9.3
-58212,38,063,38063,336,200,263674762,261142744,474,283,526045455,522243776,3126,1927,2612821604,2542784509,70.89,70.67,50.12,50,10.75,10.38,10.09,10.27
-58212,38,091,38091,17,8,38326632,38300946,474,283,526045455,522243776,1975,1171,1853043690,1844629354,3.59,2.83,7.29,7.33,0.86,0.68,2.07,2.08
-58214,38,035,38035,367,179,178743988,178743988,367,179,178743988,178743988,66861,29344,3728294623,3720196548,100,100,100,100,0.55,0.61,4.79,4.8
-58216,38,067,38067,153,79,175998417,175998417,153,79,175998417,175998417,7413,3859,2904400286,2897404213,100,100,100,100,2.06,2.05,6.06,6.07
-58218,38,097,38097,700,306,318809767,318729057,700,306,318809767,318729057,8121,3780,2233900419,2232438235,100,100,100,100,8.62,8.1,14.27,14.28
-58219,38,097,38097,47,24,13895263,13895263,47,24,13895263,13895263,8121,3780,2233900419,2232438235,100,100,100,100,0.58,0.63,0.62,0.62
-58220,38,067,38067,2360,1198,448816227,447385679,2360,1198,448816227,447385679,7413,3859,2904400286,2897404213,100,100,100,100,31.84,31.04,15.45,15.44
-58222,38,067,38067,295,161,210114567,210091509,295,161,210114567,210091509,7413,3859,2904400286,2897404213,100,100,100,100,3.98,4.17,7.23,7.25
-58223,38,097,38097,212,109,183154827,183069454,212,109,183154827,183069454,8121,3780,2233900419,2232438235,100,100,100,100,2.61,2.88,8.2,8.2
-58224,38,063,38063,41,28,30754848,30754848,41,28,30754848,30754848,3126,1927,2612821604,2542784509,100,100,100,100,1.31,1.45,1.18,1.21
-58225,27,069,27069,71,45,78634274,77600511,1125,608,619013413,611497417,4552,2605,2858320476,2845889450,6.31,7.4,12.7,12.69,1.56,1.73,2.75,2.73
-58225,38,067,38067,956,508,392041391,389407281,1125,608,619013413,611497417,7413,3859,2904400286,2897404213,84.98,83.55,63.33,63.68,12.9,13.16,13.5,13.44
-58225,38,099,38099,98,55,148337748,144489625,1125,608,619013413,611497417,11119,5498,3351690699,3320186385,8.71,9.05,23.96,23.63,0.88,1,4.43,4.35
-58227,38,019,38019,10,3,10326795,10326795,504,291,274540858,274196217,3993,2309,3910778436,3855846875,1.98,1.03,3.76,3.77,0.25,0.13,0.26,0.27
-58227,38,067,38067,129,76,113681765,113681765,504,291,274540858,274196217,7413,3859,2904400286,2897404213,25.6,26.12,41.41,41.46,1.74,1.97,3.91,3.92
-58227,38,099,38099,365,212,150532298,150187657,504,291,274540858,274196217,11119,5498,3351690699,3320186385,72.42,72.85,54.83,54.77,3.28,3.86,4.49,4.52
-58228,38,035,38035,880,462,271080882,270810378,880,462,271080882,270810378,66861,29344,3728294623,3720196548,100,100,100,100,1.32,1.57,7.27,7.28
-58229,38,019,38019,15,10,40086696,39553618,114,87,214564500,212118285,3993,2309,3910778436,3855846875,13.16,11.49,18.68,18.65,0.38,0.43,1.03,1.03
-58229,38,071,38071,6,4,10374646,10226194,114,87,214564500,212118285,11451,5615,3369352655,3073936800,5.26,4.6,4.84,4.82,0.05,0.07,0.31,0.33
-58229,38,099,38099,93,73,164103158,162338473,114,87,214564500,212118285,11119,5498,3351690699,3320186385,81.58,83.91,76.48,76.53,0.84,1.33,4.9,4.89
-58230,38,091,38091,663,355,418222012,415919806,663,355,418222012,415919806,1975,1171,1853043690,1844629354,100,100,100,100,33.57,30.32,22.57,22.55
-58231,38,035,38035,158,52,132423828,131706032,490,232,318775438,317544362,66861,29344,3728294623,3720196548,32.24,22.41,41.54,41.48,0.24,0.18,3.55,3.54
-58231,38,099,38099,332,180,186351610,185838330,490,232,318775438,317544362,11119,5498,3351690699,3320186385,67.76,77.59,58.46,58.52,2.99,3.27,5.56,5.6
-58233,38,035,38035,20,6,10431057,10431057,283,136,181909475,181909475,66861,29344,3728294623,3720196548,7.07,4.41,5.73,5.73,0.03,0.02,0.28,0.28
-58233,38,099,38099,263,130,171478418,171478418,283,136,181909475,181909475,11119,5498,3351690699,3320186385,92.93,95.59,94.27,94.27,2.37,2.36,5.12,5.16
-58235,38,035,38035,418,216,227044778,227044778,418,216,227044778,227044778,66861,29344,3728294623,3720196548,100,100,100,100,0.63,0.74,6.09,6.1
-58237,38,099,38099,5499,2521,637571402,637019577,5499,2521,637571402,637019577,11119,5498,3351690699,3320186385,100,100,100,100,49.46,45.85,19.02,19.19
-58238,38,067,38067,167,100,240088074,239964784,167,100,240088074,239964784,7413,3859,2904400286,2897404213,100,100,100,100,2.25,2.59,8.27,8.28
-58239,38,019,38019,71,49,240459005,235012705,71,49,240459005,235012705,3993,2309,3910778436,3855846875,100,100,100,100,1.78,2.12,6.15,6.09
-58240,38,035,38035,115,50,76886798,76870119,1276,753,392157772,389392936,66861,29344,3728294623,3720196548,9.01,6.64,19.61,19.74,0.17,0.17,2.06,2.07
-58240,38,091,38091,182,223,193509015,190760858,1276,753,392157772,389392936,1975,1171,1853043690,1844629354,14.26,29.61,49.34,48.99,9.22,19.04,10.44,10.34
-58240,38,097,38097,979,480,121761959,121761959,1276,753,392157772,389392936,8121,3780,2233900419,2232438235,76.72,63.75,31.05,31.27,12.06,12.7,5.45,5.45
-58241,38,067,38067,126,84,126692727,126692727,126,84,126692727,126692727,7413,3859,2904400286,2897404213,100,100,100,100,1.7,2.18,4.36,4.37
-58243,38,067,38067,26,15,41362011,41362011,539,295,225768413,225768413,7413,3859,2904400286,2897404213,4.82,5.08,18.32,18.32,0.35,0.39,1.42,1.43
-58243,38,099,38099,513,280,184406402,184406402,539,295,225768413,225768413,11119,5498,3351690699,3320186385,95.18,94.92,81.68,81.68,4.61,5.09,5.5,5.55
-58244,38,035,38035,194,124,148906946,148872772,194,124,148906946,148872772,66861,29344,3728294623,3720196548,100,100,100,100,0.29,0.42,3.99,4
-58249,38,019,38019,2574,1419,1060622695,1051464878,2574,1419,1060622695,1051464878,3993,2309,3910778436,3855846875,100,100,100,100,64.46,61.46,27.12,27.27
-58250,38,099,38099,241,147,238650260,236149291,241,147,238650260,236149291,11119,5498,3351690699,3320186385,100,100,100,100,2.17,2.67,7.12,7.11
-58251,38,035,38035,2049,943,510125480,509144772,2049,943,510125480,509144772,66861,29344,3728294623,3720196548,100,100,100,100,3.06,3.21,13.68,13.69
-58254,38,063,38063,513,341,274181245,272648862,513,341,274181245,272648862,3126,1927,2612821604,2542784509,100,100,100,100,16.41,17.7,10.49,10.72
-58256,38,035,38035,872,356,237291909,235431019,872,356,237291909,235431019,66861,29344,3728294623,3720196548,100,100,100,100,1.3,1.21,6.36,6.33
-58257,38,097,38097,2239,1023,313175831,313175831,2239,1023,313175831,313175831,8121,3780,2233900419,2232438235,100,100,100,100,27.57,27.06,14.02,14.03
-58258,38,035,38035,290,135,111057332,110403573,290,135,111057332,110403573,66861,29344,3728294623,3720196548,100,100,100,100,0.43,0.46,2.98,2.97
-58259,38,063,38063,454,286,450056572,431588229,454,286,450056572,431588229,3126,1927,2612821604,2542784509,100,100,100,100,14.52,14.84,17.22,16.97
-58260,38,019,38019,173,119,332418313,331867162,173,119,332418313,331867162,3993,2309,3910778436,3855846875,100,100,100,100,4.33,5.15,8.5,8.61
-58261,38,035,38035,69,30,98336538,98336538,1112,536,370298687,366604405,66861,29344,3728294623,3720196548,6.21,5.6,26.56,26.82,0.1,0.1,2.64,2.64
-58261,38,099,38099,1043,506,271962149,268267867,1112,536,370298687,366604405,11119,5498,3351690699,3320186385,93.79,94.4,73.44,73.18,9.38,9.2,8.11,8.08
-58262,38,067,38067,134,71,46327169,46327169,134,71,46327169,46327169,7413,3859,2904400286,2897404213,100,100,100,100,1.81,1.84,1.6,1.6
-58265,38,067,38067,519,243,227576075,227510797,519,243,227576075,227510797,7413,3859,2904400286,2897404213,100,100,100,100,7,6.3,7.84,7.85
-58266,38,035,38035,178,97,202727786,202252477,203,116,280328346,278664163,66861,29344,3728294623,3720196548,87.68,83.62,72.32,72.58,0.27,0.33,5.44,5.44
-58266,38,063,38063,25,19,77600560,76411686,203,116,280328346,278664163,3126,1927,2612821604,2542784509,12.32,16.38,27.68,27.42,0.8,0.99,2.97,3.01
-58267,38,035,38035,1493,698,586480146,586251533,1520,710,610171178,609783750,66861,29344,3728294623,3720196548,98.22,98.31,96.12,96.14,2.23,2.38,15.73,15.76
-58267,38,091,38091,27,12,23691032,23532217,1520,710,610171178,609783750,1975,1171,1853043690,1844629354,1.78,1.69,3.88,3.86,1.37,1.02,1.28,1.28
-58269,38,019,38019,207,117,201573892,200896725,207,117,201573892,200896725,3993,2309,3910778436,3855846875,100,100,100,100,5.18,5.07,5.15,5.21
-58270,38,099,38099,1950,973,365551585,364814474,1950,973,365551585,364814474,11119,5498,3351690699,3320186385,100,100,100,100,17.54,17.7,10.91,10.99
-58271,38,067,38067,708,359,263060751,260852085,708,359,263060751,260852085,7413,3859,2904400286,2897404213,100,100,100,100,9.55,9.3,9.06,9
-58272,38,063,38063,312,172,318060860,314393843,312,172,318060860,314393843,3126,1927,2612821604,2542784509,100,100,100,100,9.98,8.93,12.17,12.36
-58273,38,099,38099,264,132,168063640,168063640,264,132,168063640,168063640,11119,5498,3351690699,3320186385,100,100,100,100,2.37,2.4,5.01,5.06
-58274,38,091,38091,126,59,181909946,181395492,953,453,338889748,338375294,1975,1171,1853043690,1844629354,13.22,13.02,53.68,53.61,6.38,5.04,9.82,9.83
-58274,38,097,38097,827,394,156979802,156979802,953,453,338889748,338375294,8121,3780,2233900419,2232438235,86.78,86.98,46.32,46.39,10.18,10.42,7.03,7.03
-58275,38,035,38035,411,163,177648502,177549144,733,292,266318336,266218978,66861,29344,3728294623,3720196548,56.07,55.82,66.71,66.69,0.61,0.56,4.76,4.77
-58275,38,097,38097,322,129,88669834,88669834,733,292,266318336,266218978,8121,3780,2233900419,2232438235,43.93,44.18,33.29,33.31,3.97,3.41,3.97,3.97
-58276,38,067,38067,503,279,308818736,308737792,503,279,308818736,308737792,7413,3859,2904400286,2897404213,100,100,100,100,6.79,7.23,10.63,10.66
-58277,38,091,38091,225,133,225826570,225227438,225,133,225826570,225227438,1975,1171,1853043690,1844629354,100,100,100,100,11.39,11.36,12.19,12.21
-58278,38,035,38035,1988,738,320729051,319675456,1988,738,320729051,319675456,66861,29344,3728294623,3720196548,100,100,100,100,2.97,2.51,8.6,8.59
-58281,38,019,38019,124,68,330663542,323546109,124,68,330663542,323546109,3993,2309,3910778436,3855846875,100,100,100,100,3.11,2.94,8.46,8.39
-58282,38,019,38019,104,77,305685602,305303037,1441,763,615507978,614695234,3993,2309,3910778436,3855846875,7.22,10.09,49.66,49.67,2.6,3.33,7.82,7.92
-58282,38,067,38067,1337,686,309822376,309392197,1441,763,615507978,614695234,7413,3859,2904400286,2897404213,92.78,89.91,50.34,50.33,18.04,17.78,10.67,10.68
-58301,38,005,38005,36,13,23171388,13047930,9864,4661,816924231,629454581,6660,2950,3728280234,3596736786,0.36,0.28,2.84,2.07,0.54,0.44,0.62,0.36
-58301,38,071,38071,9828,4648,793752843,616406651,9864,4661,816924231,629454581,11451,5615,3369352655,3073936800,99.64,99.72,97.16,97.93,85.83,82.78,23.56,20.05
-58311,38,019,38019,60,57,288919790,285195732,60,57,288919790,285195732,3993,2309,3910778436,3855846875,100,100,100,100,1.5,2.47,7.39,7.4
-58316,38,079,38079,6486,2242,320249832,305517201,6486,2242,320249832,305517201,13937,5372,2432882215,2338963694,100,100,100,100,46.54,41.73,13.16,13.06
-58317,38,095,38095,226,155,356714465,354096403,226,155,356714465,354096403,2246,1449,2697418697,2653599962,100,100,100,100,10.06,10.7,13.22,13.34
-58318,38,009,38009,3684,2707,772276333,740529609,3684,2707,772276333,740529609,6429,4341,4396109411,4321189959,100,100,100,100,57.3,62.36,17.57,17.14
-58321,38,063,38063,26,25,107885125,103950385,161,117,333677126,318979846,3126,1927,2612821604,2542784509,16.15,21.37,32.33,32.59,0.83,1.3,4.13,4.09
-58321,38,071,38071,106,74,163755334,155813005,161,117,333677126,318979846,11451,5615,3369352655,3073936800,65.84,63.25,49.08,48.85,0.93,1.32,4.86,5.07
-58321,38,099,38099,29,18,62036667,59216456,161,117,333677126,318979846,11119,5498,3351690699,3320186385,18.01,15.38,18.59,18.56,0.26,0.33,1.85,1.78
-58323,38,019,38019,47,28,150312151,148814266,47,28,150312151,148814266,3993,2309,3910778436,3855846875,100,100,100,100,1.18,1.21,3.84,3.86
-58324,38,095,38095,1345,831,644239595,632252973,1345,831,644239595,632252973,2246,1449,2697418697,2653599962,100,100,100,100,59.88,57.35,23.88,23.83
-58325,38,005,38005,44,23,105386000,100979887,92,49,314181497,277867140,6660,2950,3728280234,3596736786,47.83,46.94,33.54,36.34,0.66,0.78,2.83,2.81
-58325,38,071,38071,48,26,208795497,176887253,92,49,314181497,277867140,11451,5615,3369352655,3073936800,52.17,53.06,66.46,63.66,0.42,0.46,6.2,5.75
-58327,38,071,38071,390,177,449643683,410450733,390,177,449643683,410450733,11451,5615,3369352655,3073936800,100,100,100,100,3.41,3.15,13.35,13.35
-58329,38,009,38009,75,60,98890717,90389592,3313,1233,634263735,596212970,6429,4341,4396109411,4321189959,2.26,4.87,15.59,15.16,1.17,1.38,2.25,2.09
-58329,38,079,38079,3238,1173,535373018,505823378,3313,1233,634263735,596212970,13937,5372,2432882215,2338963694,97.74,95.13,84.41,84.84,23.23,21.84,22.01,21.63
-58330,38,071,38071,341,218,439316585,435279468,341,218,439316585,435279468,11451,5615,3369352655,3073936800,100,100,100,100,2.98,3.88,13.04,14.16
-58331,38,095,38095,122,97,271709265,264916787,122,97,271709265,264916787,2246,1449,2697418697,2653599962,100,100,100,100,5.43,6.69,10.07,9.98
-58332,38,005,38005,291,222,470859984,454863020,320,241,566700957,546538050,6660,2950,3728280234,3596736786,90.94,92.12,83.09,83.23,4.37,7.53,12.63,12.65
-58332,38,069,38069,29,19,95840973,91675030,320,241,566700957,546538050,4357,2199,2803233366,2638162604,9.06,7.88,16.91,16.77,0.67,0.86,3.42,3.47
-58335,38,005,38005,1694,409,82986542,76074748,1694,409,82986542,76074748,6660,2950,3728280234,3596736786,100,100,100,100,25.44,13.86,2.23,2.12
-58338,38,019,38019,31,15,103377100,102277586,105,72,209178575,205123815,3993,2309,3910778436,3855846875,29.52,20.83,49.42,49.86,0.78,0.65,2.64,2.65
-58338,38,071,38071,74,57,105801475,102846229,105,72,209178575,205123815,11451,5615,3369352655,3073936800,70.48,79.17,50.58,50.14,0.65,1.02,3.14,3.35
-58339,38,095,38095,47,30,80957850,80068305,47,30,80957850,80068305,2246,1449,2697418697,2653599962,100,100,100,100,2.09,2.07,3,3.02
-58341,38,005,38005,11,6,31417413,31256608,2597,1459,1205369676,1187176380,6660,2950,3728280234,3596736786,0.42,0.41,2.61,2.63,0.17,0.2,0.84,0.87
-58341,38,069,38069,161,89,270131551,260127060,2597,1459,1205369676,1187176380,4357,2199,2803233366,2638162604,6.2,6.1,22.41,21.91,3.7,4.05,9.64,9.86
-58341,38,083,38083,7,2,14752955,14752955,2597,1459,1205369676,1187176380,1321,894,2604593158,2518450003,0.27,0.14,1.22,1.24,0.53,0.22,0.57,0.59
-58341,38,103,38103,2418,1362,889067757,881039757,2597,1459,1205369676,1187176380,4207,2481,3342048937,3291995693,93.11,93.35,73.76,74.21,57.48,54.9,26.6,26.76
-58343,38,005,38005,81,53,171479596,165923604,81,53,171479596,165923604,6660,2950,3728280234,3596736786,100,100,100,100,1.22,1.8,4.6,4.61
-58344,38,063,38063,938,525,492054462,481146311,958,539,552023335,539585870,3126,1927,2612821604,2542784509,97.91,97.4,89.14,89.17,30.01,27.24,18.83,18.92
-58344,38,071,38071,20,14,59968873,58439559,958,539,552023335,539585870,11451,5615,3369352655,3073936800,2.09,2.6,10.86,10.83,0.17,0.25,1.78,1.9
-58345,38,071,38071,104,80,240015809,233591287,158,113,366684375,355353483,11451,5615,3369352655,3073936800,65.82,70.8,65.46,65.73,0.91,1.42,7.12,7.6
-58345,38,099,38099,54,33,126668566,121762196,158,113,366684375,355353483,11119,5498,3351690699,3320186385,34.18,29.2,34.54,34.27,0.49,0.6,3.78,3.67
-58346,38,005,38005,636,391,488942672,472029295,650,409,554335981,534322555,6660,2950,3728280234,3596736786,97.85,95.6,88.2,88.34,9.55,13.25,13.11,13.12
-58346,38,095,38095,14,18,65393309,62293260,650,409,554335981,534322555,2246,1449,2697418697,2653599962,2.15,4.4,11.8,11.66,0.62,1.24,2.42,2.35
-58348,38,005,38005,703,424,629020563,622814305,727,440,672322258,665143610,6660,2950,3728280234,3596736786,96.7,96.36,93.56,93.64,10.56,14.37,16.87,17.32
-58348,38,103,38103,24,16,43301695,42329305,727,440,672322258,665143610,4207,2481,3342048937,3291995693,3.3,3.64,6.44,6.36,0.57,0.64,1.3,1.29
-58351,38,005,38005,466,302,442153848,436404972,478,309,460811111,453107428,6660,2950,3728280234,3596736786,97.49,97.73,95.95,96.31,7,10.24,11.86,12.13
-58351,38,071,38071,12,7,18657263,16702456,478,309,460811111,453107428,11451,5615,3369352655,3073936800,2.51,2.27,4.05,3.69,0.1,0.12,0.55,0.54
-58352,38,019,38019,409,225,512328511,494105572,435,237,585565369,565968833,3993,2309,3910778436,3855846875,94.02,94.94,87.49,87.3,10.24,9.74,13.1,12.81
-58352,38,095,38095,26,12,73236858,71863261,435,237,585565369,565968833,2246,1449,2697418697,2653599962,5.98,5.06,12.51,12.7,1.16,0.83,2.72,2.71
-58353,38,079,38079,140,66,231847579,226227448,140,66,231847579,226227448,13937,5372,2432882215,2338963694,100,100,100,100,1,1.23,9.53,9.67
-58355,38,019,38019,84,61,116568251,114960980,84,61,116568251,114960980,3993,2309,3910778436,3855846875,100,100,100,100,2.1,2.64,2.98,2.98
-58356,38,027,38027,1688,914,628786065,625605109,1751,954,755959319,752249716,2385,1323,1668248313,1632134239,96.4,95.81,83.18,83.16,70.78,69.09,37.69,38.33
-58356,38,031,38031,16,8,29747264,29747264,1751,954,755959319,752249716,3343,1801,1675265429,1645814578,0.91,0.84,3.94,3.95,0.48,0.44,1.78,1.81
-58356,38,103,38103,47,32,97425990,96897343,1751,954,755959319,752249716,4207,2481,3342048937,3291995693,2.68,3.35,12.89,12.88,1.12,1.29,2.92,2.94
-58357,38,005,38005,364,160,320111383,305885454,364,160,320111383,305885454,6660,2950,3728280234,3596736786,100,100,100,100,5.47,5.42,8.59,8.5
-58361,38,063,38063,190,143,344504260,339927682,190,143,344504260,339927682,3126,1927,2612821604,2542784509,100,100,100,100,6.08,7.42,13.19,13.37
-58362,38,071,38071,82,43,83909784,83278108,82,43,83909784,83278108,11451,5615,3369352655,3073936800,100,100,100,100,0.72,0.77,2.49,2.71
-58363,38,079,38079,12,6,15497313,15428644,83,43,165360276,164963203,13937,5372,2432882215,2338963694,14.46,13.95,9.37,9.35,0.09,0.11,0.64,0.66
-58363,38,095,38095,71,37,149862963,149534559,83,43,165360276,164963203,2246,1449,2697418697,2653599962,85.54,86.05,90.63,90.65,3.16,2.55,5.56,5.64
-58365,38,095,38095,304,222,780977411,767730303,304,222,780977411,767730303,2246,1449,2697418697,2653599962,100,100,100,100,13.54,15.32,28.95,28.93
-58366,38,079,38079,1080,505,663500192,639266204,1080,505,663500192,639266204,13937,5372,2432882215,2338963694,100,100,100,100,7.75,9.4,27.27,27.33
-58367,38,079,38079,1695,777,297997114,296545787,1707,783,331308625,328959997,13937,5372,2432882215,2338963694,99.3,99.23,89.95,90.15,12.16,14.46,12.25,12.68
-58367,38,095,38095,12,6,33311511,32414210,1707,783,331308625,328959997,2246,1449,2697418697,2653599962,0.7,0.77,10.05,9.85,0.53,0.41,1.23,1.22
-58368,38,005,38005,62,24,87651971,78724757,3801,1895,1785753819,1678826928,6660,2950,3728280234,3596736786,1.63,1.27,4.91,4.69,0.93,0.81,2.35,2.19
-58368,38,049,38049,33,15,151450324,145456398,3801,1895,1785753819,1678826928,5395,2948,4950873934,4853519308,0.87,0.79,8.48,8.66,0.61,0.51,3.06,3
-58368,38,069,38069,3706,1856,1546651524,1454645773,3801,1895,1785753819,1678826928,4357,2199,2803233366,2638162604,97.5,97.94,86.61,86.65,85.06,84.4,55.17,55.14
-58369,38,079,38079,1231,574,194095653,176870351,1231,574,194095653,176870351,13937,5372,2432882215,2338963694,100,100,100,100,8.83,10.69,7.98,7.56
-58370,38,005,38005,1280,404,146936398,133149260,1280,404,146936398,133149260,6660,2950,3728280234,3596736786,100,100,100,100,19.22,13.69,3.94,3.7
-58372,38,019,38019,70,51,134794839,133866141,106,77,279823352,276764472,3993,2309,3910778436,3855846875,66.04,66.23,48.17,48.37,1.75,2.21,3.45,3.47
-58372,38,095,38095,36,26,145028513,142898331,106,77,279823352,276764472,2246,1449,2697418697,2653599962,33.96,33.77,51.83,51.63,1.6,1.79,5.38,5.39
-58374,38,005,38005,281,104,247769123,246000835,640,356,681020186,674153843,6660,2950,3728280234,3596736786,43.91,29.21,36.38,36.49,4.22,3.53,6.65,6.84
-58374,38,027,38027,337,231,344861114,341136773,640,356,681020186,674153843,2385,1323,1668248313,1632134239,52.66,64.89,50.64,50.6,14.13,17.46,20.67,20.9
-58374,38,103,38103,22,21,88389949,87016235,640,356,681020186,674153843,4207,2481,3342048937,3291995693,3.44,5.9,12.98,12.91,0.52,0.85,2.64,2.64
-58377,38,019,38019,14,10,82641254,78655569,334,196,617020117,603922053,3993,2309,3910778436,3855846875,4.19,5.1,13.39,13.02,0.35,0.43,2.11,2.04
-58377,38,071,38071,277,171,438391906,429734914,334,196,617020117,603922053,11451,5615,3369352655,3073936800,82.93,87.24,71.05,71.16,2.42,3.05,13.01,13.98
-58377,38,095,38095,43,15,95986957,95531570,334,196,617020117,603922053,2246,1449,2697418697,2653599962,12.87,7.65,15.56,15.82,1.91,1.04,3.56,3.6
-58379,38,005,38005,360,198,36765390,36051229,360,198,36765390,36051229,6660,2950,3728280234,3596736786,100,100,100,100,5.41,6.71,0.99,1
-58380,38,005,38005,13,12,66296525,65883978,442,265,469895567,444668807,6660,2950,3728280234,3596736786,2.94,4.53,14.11,14.82,0.2,0.41,1.78,1.83
-58380,38,027,38027,138,65,149550132,147964910,442,265,469895567,444668807,2385,1323,1668248313,1632134239,31.22,24.53,31.83,33.28,5.79,4.91,8.96,9.07
-58380,38,063,38063,291,188,254048910,230819919,442,265,469895567,444668807,3126,1927,2612821604,2542784509,65.84,70.94,54.06,51.91,9.31,9.76,9.72,9.08
-58381,38,005,38005,229,129,170701677,157431199,317,175,421072430,392743367,6660,2950,3728280234,3596736786,72.24,73.71,40.54,40.09,3.44,4.37,4.58,4.38
-58381,38,027,38027,88,46,250370753,235312168,317,175,421072430,392743367,2385,1323,1668248313,1632134239,27.76,26.29,59.46,59.91,3.69,3.48,15.01,14.42
-58382,38,071,38071,163,96,356968957,344280943,163,96,356968957,344280943,11451,5615,3369352655,3073936800,100,100,100,100,1.42,1.71,10.59,11.2
-58384,38,009,38009,321,233,480828270,479475328,549,353,1030000429,1014878989,6429,4341,4396109411,4321189959,58.47,66.01,46.68,47.24,4.99,5.37,10.94,11.1
-58384,38,049,38049,93,49,189323743,188754846,549,353,1030000429,1014878989,5395,2948,4950873934,4853519308,16.94,13.88,18.38,18.6,1.72,1.66,3.82,3.89
-58384,38,069,38069,95,50,217208398,205033238,549,353,1030000429,1014878989,4357,2199,2803233366,2638162604,17.3,14.16,21.09,20.2,2.18,2.27,7.75,7.77
-58384,38,079,38079,40,21,142640018,141615577,549,353,1030000429,1014878989,13937,5372,2432882215,2338963694,7.29,5.95,13.85,13.95,0.29,0.39,5.86,6.05
-58385,38,069,38069,210,109,301488290,286989493,225,117,333169786,318658597,4357,2199,2803233366,2638162604,93.33,93.16,90.49,90.06,4.82,4.96,10.76,10.88
-58385,38,079,38079,15,8,31681496,31669104,225,117,333169786,318658597,13937,5372,2432882215,2338963694,6.67,6.84,9.51,9.94,0.11,0.15,1.3,1.35
-58386,38,005,38005,109,76,206629761,200215705,134,93,323476451,305878266,6660,2950,3728280234,3596736786,81.34,81.72,63.88,65.46,1.64,2.58,5.54,5.57
-58386,38,069,38069,25,17,116846690,105662561,134,93,323476451,305878266,4357,2199,2803233366,2638162604,18.66,18.28,36.12,34.54,0.57,0.77,4.17,4.01
-58401,38,093,38093,17142,8103,1114345409,1093445105,17142,8103,1114345409,1093445105,21100,9862,5951554584,5754239519,100,100,100,100,81.24,82.16,18.72,19
-58402,38,093,38093,260,0,446362,446362,260,0,446362,446362,21100,9862,5951554584,5754239519,100,0,100,100,1.23,0,0.01,0.01
-58405,38,093,38093,427,0,110712,110712,427,0,110712,110712,21100,9862,5951554584,5754239519,100,0,100,100,2.02,0,0,0
-58413,38,021,38021,38,22,159535836,149586439,1150,797,1217474301,1174000801,5289,2636,2958105497,2930494938,3.3,2.76,13.1,12.74,0.72,0.83,5.39,5.1
-58413,38,051,38051,1112,775,1057938465,1024414362,1150,797,1217474301,1174000801,2809,1858,2576364221,2524546555,96.7,97.24,86.9,87.26,39.59,41.71,41.06,40.58
-58415,38,045,38045,145,61,153602131,153548611,145,61,153602131,153548611,4139,2238,2980791907,2967978523,100,100,100,100,3.5,2.73,5.15,5.17
-58416,38,039,38039,440,358,455540451,445804340,440,358,455540451,445804340,2420,1461,1855581058,1835821650,100,100,100,100,18.18,24.5,24.55,24.28
-58418,38,043,38043,13,9,69028375,66976859,353,230,567069023,555946688,2435,1674,3711226004,3499563866,3.68,3.91,12.17,12.05,0.53,0.54,1.86,1.91
-58418,38,103,38103,340,221,498040648,488969829,353,230,567069023,555946688,4207,2481,3342048937,3291995693,96.32,96.09,87.83,87.95,8.08,8.91,14.9,14.85
-58420,38,093,38093,314,137,437937936,420085158,314,137,437937936,420085158,21100,9862,5951554584,5754239519,100,100,100,100,1.49,1.39,7.36,7.3
-58421,38,027,38027,9,6,20735230,20542564,2850,1434,1022257966,1003331147,2385,1323,1668248313,1632134239,0.32,0.42,2.03,2.05,0.38,0.45,1.24,1.26
-58421,38,031,38031,2801,1399,887798424,869664024,2850,1434,1022257966,1003331147,3343,1801,1675265429,1645814578,98.28,97.56,86.85,86.68,83.79,77.68,52.99,52.84
-58421,38,093,38093,33,22,66326355,65872608,2850,1434,1022257966,1003331147,21100,9862,5951554584,5754239519,1.16,1.53,6.49,6.57,0.16,0.22,1.11,1.14
-58421,38,103,38103,7,7,47397957,47251951,2850,1434,1022257966,1003331147,4207,2481,3342048937,3291995693,0.25,0.49,4.64,4.71,0.17,0.28,1.42,1.44
-58422,38,103,38103,195,109,385670588,382788740,195,109,385670588,382788740,4207,2481,3342048937,3291995693,100,100,100,100,4.64,4.39,11.54,11.63
-58423,38,043,38043,11,12,76195574,68859370,78,64,271048994,259038803,2435,1674,3711226004,3499563866,14.1,18.75,28.11,26.58,0.45,0.72,2.05,1.97
-58423,38,103,38103,67,52,194853420,190179433,78,64,271048994,259038803,4207,2481,3342048937,3291995693,85.9,81.25,71.89,73.42,1.59,2.1,5.83,5.78
-58424,38,093,38093,301,165,496506990,468248217,301,165,496506990,468248217,21100,9862,5951554584,5754239519,100,100,100,100,1.43,1.67,8.34,8.14
-58425,38,039,38039,1379,742,555821350,553984986,1379,742,555821350,553984986,2420,1461,1855581058,1835821650,100,100,100,100,56.98,50.79,29.95,30.18
-58426,38,093,38093,200,111,360224369,356093615,200,111,360224369,356093615,21100,9862,5951554584,5754239519,100,100,100,100,0.95,1.13,6.05,6.19
-58428,38,043,38043,271,361,420646597,375030776,271,361,420646597,375030776,2435,1674,3711226004,3499563866,100,100,100,100,11.13,21.57,11.33,10.72
-58429,38,003,38003,349,237,351160265,339052902,357,240,358810652,346703289,11066,5704,3919700215,3863106624,97.76,98.75,97.87,97.79,3.15,4.15,8.96,8.78
-58429,38,039,38039,8,3,7650387,7650387,357,240,358810652,346703289,2420,1461,1855581058,1835821650,2.24,1.25,2.13,2.21,0.33,0.21,0.41,0.42
-58430,38,083,38083,112,71,248725679,242126908,112,71,248725679,242126908,1321,894,2604593158,2518450003,100,100,100,100,8.48,7.94,9.55,9.61
-58431,38,045,38045,132,83,184412452,184236309,132,83,184412452,184236309,4139,2238,2980791907,2967978523,100,100,100,100,3.19,3.71,6.19,6.21
-58433,38,021,38021,61,31,159689082,159400332,1092,559,798942640,797856328,5289,2636,2958105497,2930494938,5.59,5.55,19.99,19.98,1.15,1.18,5.4,5.44
-58433,38,045,38045,1031,528,639253558,638455996,1092,559,798942640,797856328,4139,2238,2980791907,2967978523,94.41,94.45,80.01,80.02,24.91,23.59,21.45,21.51
-58436,38,021,38021,1965,1008,823537699,822044786,1965,1008,823537699,822044786,5289,2636,2958105497,2930494938,100,100,100,100,37.15,38.24,27.84,28.05
-58438,38,103,38103,625,382,391955049,385965949,625,382,391955049,385965949,4207,2481,3342048937,3291995693,100,100,100,100,14.86,15.4,11.73,11.72
-58439,38,021,38021,148,96,273190853,270694721,310,105,377214017,374313168,5289,2636,2958105497,2930494938,47.74,91.43,72.42,72.32,2.8,3.64,9.24,9.24
-58439,46,089,46089,162,9,104023164,103618447,310,105,377214017,374313168,2459,1418,2982463315,2943893701,52.26,8.57,27.58,27.68,6.59,0.63,3.49,3.52
-58440,38,047,38047,127,94,304989796,302590392,181,147,606807147,598481466,1990,1144,2619101221,2571385626,70.17,63.95,50.26,50.56,6.38,8.22,11.64,11.77
-58440,38,051,38051,54,53,301817351,295891074,181,147,606807147,598481466,2809,1858,2576364221,2524546555,29.83,36.05,49.74,49.44,1.92,2.85,11.71,11.72
-58441,38,021,38021,389,170,379751597,378572236,389,170,379751597,378572236,5289,2636,2958105497,2930494938,100,100,100,100,7.35,6.45,12.84,12.92
-58442,38,047,38047,444,302,473177926,462368512,478,331,585573382,572848978,1990,1144,2619101221,2571385626,92.89,91.24,80.81,80.71,22.31,26.4,18.07,17.98
-58442,38,093,38093,34,29,112395456,110480466,478,331,585573382,572848978,21100,9862,5951554584,5754239519,7.11,8.76,19.19,19.29,0.16,0.29,1.89,1.92
-58443,38,031,38031,200,126,262960751,260540229,200,126,262960751,260540229,3343,1801,1675265429,1645814578,100,100,100,100,5.98,7,15.7,15.83
-58444,38,083,38083,192,180,501287081,479276503,192,180,501287081,479276503,1321,894,2604593158,2518450003,100,100,100,100,14.53,20.13,19.25,19.03
-58445,38,027,38027,25,9,38818839,38633959,160,153,146797379,142732731,2385,1323,1668248313,1632134239,15.63,5.88,26.44,27.07,1.05,0.68,2.33,2.37
-58445,38,031,38031,135,144,107978540,104098772,160,153,146797379,142732731,3343,1801,1675265429,1645814578,84.38,94.12,73.56,72.93,4.04,8,6.45,6.33
-58448,38,039,38039,347,195,380577461,378923105,347,195,380577461,378923105,2420,1461,1855581058,1835821650,100,100,100,100,14.34,13.35,20.51,20.64
-58451,38,103,38103,185,121,351325057,339681040,185,121,351325057,339681040,4207,2481,3342048937,3291995693,100,100,100,100,4.4,4.88,10.51,10.32
-58452,38,039,38039,27,15,4189432,4189432,27,15,4189432,4189432,2420,1461,1855581058,1835821650,100,100,100,100,1.12,1.03,0.23,0.23
-58454,38,045,38045,275,177,411293180,407413989,360,216,639494012,634432005,4139,2238,2980791907,2967978523,76.39,81.94,64.32,64.22,6.64,7.91,13.8,13.73
-58454,38,093,38093,85,39,228200832,227018016,360,216,639494012,634432005,21100,9862,5951554584,5754239519,23.61,18.06,35.68,35.78,0.4,0.4,3.83,3.95
-58455,38,031,38031,56,36,164299157,162327890,303,162,376422065,364719556,3343,1801,1675265429,1645814578,18.48,22.22,43.65,44.51,1.68,2,9.81,9.86
-58455,38,093,38093,247,126,212122908,202391666,303,162,376422065,364719556,21100,9862,5951554584,5754239519,81.52,77.78,56.35,55.49,1.17,1.28,3.56,3.52
-58456,38,021,38021,52,33,269501194,263503308,523,364,589005949,581850482,5289,2636,2958105497,2930494938,9.94,9.07,45.76,45.29,0.98,1.25,9.11,8.99
-58456,38,045,38045,455,316,234562067,234147503,523,364,589005949,581850482,4139,2238,2980791907,2967978523,87,86.81,39.82,40.24,10.99,14.12,7.87,7.89
-58456,38,051,38051,16,15,84942688,84199671,523,364,589005949,581850482,2809,1858,2576364221,2524546555,3.06,4.12,14.42,14.47,0.57,0.81,3.3,3.34
-58458,38,021,38021,11,9,28008996,27958119,1397,650,498353658,493652368,5289,2636,2958105497,2930494938,0.79,1.38,5.62,5.66,0.21,0.34,0.95,0.95
-58458,38,045,38045,1386,641,470344662,465694249,1397,650,498353658,493652368,4139,2238,2980791907,2967978523,99.21,98.62,94.38,94.34,33.49,28.64,15.78,15.69
-58460,38,047,38047,103,72,259233161,248443022,230,200,481093063,463986437,1990,1144,2619101221,2571385626,44.78,36,53.88,53.55,5.18,6.29,9.9,9.66
-58460,38,051,38051,127,128,221859902,215543415,230,200,481093063,463986437,2809,1858,2576364221,2524546555,55.22,64,46.12,46.45,4.52,6.89,8.61,8.54
-58461,38,003,38003,313,181,304456330,303805241,413,251,525920274,525088697,11066,5704,3919700215,3863106624,75.79,72.11,57.89,57.86,2.83,3.17,7.77,7.86
-58461,38,045,38045,100,70,221463944,221283456,413,251,525920274,525088697,4139,2238,2980791907,2967978523,24.21,27.89,42.11,42.14,2.42,3.13,7.43,7.46
-58463,38,083,38083,651,432,1028350103,1010619268,651,432,1028350103,1010619268,1321,894,2604593158,2518450003,100,100,100,100,49.28,48.32,39.48,40.13
-58464,38,027,38027,100,52,235126180,222938756,242,146,489124136,473724027,2385,1323,1668248313,1632134239,41.32,35.62,48.07,47.06,4.19,3.93,14.09,13.66
-58464,38,031,38031,124,79,163093341,160781200,242,146,489124136,473724027,3343,1801,1675265429,1645814578,51.24,54.11,33.34,33.94,3.71,4.39,9.74,9.77
-58464,38,039,38039,18,15,90904615,90004071,242,146,489124136,473724027,2420,1461,1855581058,1835821650,7.44,10.27,18.59,19,0.74,1.03,4.9,4.9
-58466,38,003,38003,100,46,148597306,148253159,355,203,418327636,417200989,11066,5704,3919700215,3863106624,28.17,22.66,35.52,35.54,0.9,0.81,3.79,3.84
-58466,38,045,38045,243,151,251538213,250766516,355,203,418327636,417200989,4139,2238,2980791907,2967978523,68.45,74.38,60.13,60.11,5.87,6.75,8.44,8.45
-58466,38,093,38093,12,6,18192117,18181314,355,203,418327636,417200989,21100,9862,5951554584,5754239519,3.38,2.96,4.35,4.36,0.06,0.06,0.31,0.32
-58467,38,043,38043,20,18,46267305,44729696,606,331,622253540,583070029,2435,1674,3711226004,3499563866,3.3,5.44,7.44,7.67,0.82,1.08,1.25,1.28
-58467,38,093,38093,586,313,575986235,538340333,606,331,622253540,583070029,21100,9862,5951554584,5754239519,96.7,94.56,92.56,92.33,2.78,3.17,9.68,9.36
-58472,38,045,38045,144,81,151667550,151518138,419,209,421572343,420912378,4139,2238,2980791907,2967978523,34.37,38.76,35.98,36,3.48,3.62,5.09,5.11
-58472,38,093,38093,275,128,269904793,269394240,419,209,421572343,420912378,21100,9862,5951554584,5754239519,65.63,61.24,64.02,64,1.3,1.3,4.54,4.68
-58474,38,021,38021,2625,1267,864890240,858734997,2681,1291,989207170,982103658,5289,2636,2958105497,2930494938,97.91,98.14,87.43,87.44,49.63,48.07,29.24,29.3
-58474,38,081,38081,56,24,124316930,123368661,2681,1291,989207170,982103658,3829,2004,2245259897,2223539399,2.09,1.86,12.57,12.56,1.46,1.2,5.54,5.55
-58475,38,043,38043,146,124,335403338,308737076,150,127,396014177,366419979,2435,1674,3711226004,3499563866,97.33,97.64,84.69,84.26,6,7.41,9.04,8.82
-58475,38,093,38093,4,3,60610839,57682903,150,127,396014177,366419979,21100,9862,5951554584,5754239519,2.67,2.36,15.31,15.74,0.02,0.03,1.02,1
-58476,38,093,38093,271,156,646612950,624910482,271,156,646612950,624910482,21100,9862,5951554584,5754239519,100,100,100,100,1.28,1.58,10.86,10.86
-58477,38,015,38015,148,92,344287137,342862523,148,92,344287137,342862523,81308,35754,4320869687,4228552194,100,100,100,100,0.18,0.26,7.97,8.11
-58478,38,043,38043,135,144,411648170,386125760,135,144,411648170,386125760,2435,1674,3711226004,3499563866,100,100,100,100,5.54,8.6,11.09,11.03
-58479,38,003,38003,192,173,174072174,164283394,192,173,174072174,164283394,11066,5704,3919700215,3863106624,100,100,100,100,1.74,3.03,4.44,4.25
-58480,38,003,38003,340,155,341229566,331784027,340,155,341229566,331784027,11066,5704,3919700215,3863106624,100,100,100,100,3.07,2.72,8.71,8.59
-58481,38,003,38003,171,81,238573048,230853481,272,133,362145223,352639243,11066,5704,3919700215,3863106624,62.87,60.9,65.88,65.46,1.55,1.42,6.09,5.98
-58481,38,093,38093,101,52,123572175,121785762,272,133,362145223,352639243,21100,9862,5951554584,5754239519,37.13,39.1,34.12,34.54,0.48,0.53,2.08,2.12
-58482,38,043,38043,1003,496,632935849,603512196,1003,496,632935849,603512196,2435,1674,3711226004,3499563866,100,100,100,100,41.19,29.63,17.05,17.25
-58483,38,043,38043,34,26,134804152,117674209,340,236,437909954,413876837,2435,1674,3711226004,3499563866,10,11.02,30.78,28.43,1.4,1.55,3.63,3.36
-58483,38,047,38047,57,34,131742640,127613909,340,236,437909954,413876837,1990,1144,2619101221,2571385626,16.76,14.41,30.08,30.83,2.86,2.97,5.03,4.96
-58483,38,093,38093,249,176,171363162,168588719,340,236,437909954,413876837,21100,9862,5951554584,5754239519,73.24,74.58,39.13,40.73,1.18,1.78,2.88,2.93
-58484,38,031,38031,11,9,59387952,58655199,65,55,154406133,153442214,3343,1801,1675265429,1645814578,16.92,16.36,38.46,38.23,0.33,0.5,3.54,3.56
-58484,38,039,38039,54,46,95018181,94787015,65,55,154406133,153442214,2420,1461,1855581058,1835821650,83.08,83.64,61.54,61.77,2.23,3.15,5.12,5.16
-58486,38,093,38093,17,10,97584332,93517383,262,151,414439748,406174341,21100,9862,5951554584,5754239519,6.49,6.62,23.55,23.02,0.08,0.1,1.64,1.63
-58486,38,103,38103,245,141,316855416,312656958,262,151,414439748,406174341,4207,2481,3342048937,3291995693,93.51,93.38,76.45,76.98,5.82,5.68,9.48,9.5
-58487,38,043,38043,444,235,665088284,639201377,444,235,665088284,639201377,2435,1674,3711226004,3499563866,100,100,100,100,18.23,14.04,17.92,18.27
-58488,38,043,38043,258,194,622537488,596926020,258,194,622537488,596926020,2435,1674,3711226004,3499563866,100,100,100,100,10.6,11.59,16.77,17.06
-58490,38,045,38045,201,118,233973978,232355614,240,134,330898093,328695909,4139,2238,2980791907,2967978523,83.75,88.06,70.71,70.69,4.86,5.27,7.85,7.83
-58490,38,073,38073,39,16,96924115,96340295,240,134,330898093,328695909,5457,2656,2237075327,2233494202,16.25,11.94,29.29,29.31,0.71,0.6,4.33,4.31
-58492,38,003,38003,399,191,206658672,203878571,481,227,369743241,364703260,11066,5704,3919700215,3863106624,82.95,84.14,55.89,55.9,3.61,3.35,5.27,5.28
-58492,38,039,38039,28,16,65511586,65158219,481,227,369743241,364703260,2420,1461,1855581058,1835821650,5.82,7.05,17.72,17.87,1.16,1.1,3.53,3.55
-58492,38,093,38093,54,20,97572983,95666470,481,227,369743241,364703260,21100,9862,5951554584,5754239519,11.23,8.81,26.39,26.23,0.26,0.2,1.64,1.66
-58494,38,015,38015,350,203,908291841,880511791,350,203,908291841,880511791,81308,35754,4320869687,4228552194,100,100,100,100,0.43,0.57,21.02,20.82
-58495,38,047,38047,90,57,384748356,374596763,1332,755,940572388,925519446,1990,1144,2619101221,2571385626,6.76,7.55,40.91,40.47,4.52,4.98,14.69,14.57
-58495,38,051,38051,1242,698,555824032,550922683,1332,755,940572388,925519446,2809,1858,2576364221,2524546555,93.24,92.45,59.09,59.53,44.22,37.57,21.57,21.82
-58496,38,093,38093,182,128,593699021,554141340,182,128,593699021,554141340,21100,9862,5951554584,5754239519,100,100,100,100,0.86,1.3,9.98,9.63
-58497,38,003,38003,20,6,19810451,19796961,326,144,287649099,287635609,11066,5704,3919700215,3863106624,6.13,4.17,6.89,6.88,0.18,0.11,0.51,0.51
-58497,38,093,38093,306,138,267838648,267838648,326,144,287649099,287635609,21100,9862,5951554584,5754239519,93.87,95.83,93.11,93.12,1.45,1.4,4.5,4.65
-58501,38,015,38015,28055,13182,62994434,62828782,28055,13182,62994434,62828782,81308,35754,4320869687,4228552194,100,100,100,100,34.5,36.87,1.46,1.49
-58503,38,015,38015,25734,10872,349228074,344008563,25734,10872,349228074,344008563,81308,35754,4320869687,4228552194,100,100,100,100,31.65,30.41,8.08,8.14
-58504,38,015,38015,24342,10169,289364875,268113806,24342,10169,289364875,268113806,81308,35754,4320869687,4228552194,100,100,100,100,29.94,28.44,6.7,6.34
-58505,38,015,38015,2,1,581761,581761,2,1,581761,581761,81308,35754,4320869687,4228552194,100,100,100,100,0,0,0.01,0.01
-58520,38,037,38037,41,25,139480003,139466282,264,144,472705904,472571919,2394,1690,4314713635,4297150375,15.53,17.36,29.51,29.51,1.71,1.48,3.23,3.25
-58520,38,059,38059,223,119,333225901,333105637,264,144,472705904,472571919,27471,12079,5038683797,4989016959,84.47,82.64,70.49,70.49,0.81,0.99,6.61,6.68
-58521,38,015,38015,658,263,395679942,392775388,658,263,395679942,392775388,81308,35754,4320869687,4228552194,100,100,100,100,0.81,0.74,9.16,9.29
-58523,38,057,38057,3539,1852,507963523,470067743,3619,1897,716454521,677769113,8424,4450,2881338816,2701246664,97.79,97.63,70.9,69.36,42.01,41.62,17.63,17.4
-58523,38,065,38065,80,45,208490998,207701370,3619,1897,716454521,677769113,1846,905,1893770255,1871293986,2.21,2.37,29.1,30.64,4.33,4.97,11.01,11.1
-58524,38,029,38029,69,55,223477839,223257740,100,70,279946750,279351548,3550,2085,4027488748,3912008054,69,78.57,79.83,79.92,1.94,2.64,5.55,5.71
-58524,38,043,38043,31,15,56468911,56093808,100,70,279946750,279351548,2435,1674,3711226004,3499563866,31,21.43,20.17,20.08,1.27,0.9,1.52,1.6
-58528,38,085,38085,798,195,194024960,175204684,798,195,194024960,175204684,4153,1311,2922141190,2833691263,100,100,100,100,19.22,14.87,6.64,6.18
-58529,38,037,38037,660,381,1149558118,1148882599,660,381,1149558118,1148882599,2394,1690,4314713635,4297150375,100,100,100,100,27.57,22.54,26.64,26.74
-58530,38,065,38065,1193,611,890429267,871285217,1193,611,890429267,871285217,1846,905,1893770255,1871293986,100,100,100,100,64.63,67.51,47.02,46.56
-58531,38,055,38055,307,279,377960452,297359210,307,279,377960452,297359210,8962,5590,6029534651,5467142997,100,100,100,100,3.43,4.99,6.27,5.44
-58532,38,015,38015,238,110,371366872,365576520,297,146,596162246,585997866,81308,35754,4320869687,4228552194,80.13,75.34,62.29,62.39,0.29,0.31,8.59,8.65
-58532,38,043,38043,59,36,224795374,220421346,297,146,596162246,585997866,2435,1674,3711226004,3499563866,19.87,24.66,37.71,37.61,2.42,2.15,6.06,6.3
-58533,38,037,38037,945,760,823027291,819059406,945,760,823027291,819059406,2394,1690,4314713635,4297150375,100,100,100,100,39.47,44.97,19.07,19.06
-58535,38,037,38037,94,51,304919148,304837456,571,303,860942949,860420753,2394,1690,4314713635,4297150375,16.46,16.83,35.42,35.43,3.93,3.02,7.07,7.09
-58535,38,059,38059,477,252,556023801,555583297,571,303,860942949,860420753,27471,12079,5038683797,4989016959,83.54,83.17,64.58,64.57,1.74,2.09,11.04,11.14
-58538,38,085,38085,2489,745,524184723,456106109,2489,745,524184723,456106109,4153,1311,2922141190,2833691263,100,100,100,100,59.93,56.83,17.94,16.1
-58540,38,055,38055,2449,1393,1344245135,1005241054,2449,1393,1344245135,1005241054,8962,5590,6029534651,5467142997,100,100,100,100,27.33,24.92,22.29,18.39
-58541,38,057,38057,364,206,548046362,479039647,364,206,548046362,479039647,8424,4450,2881338816,2701246664,100,100,100,100,4.32,4.63,19.02,17.73
-58542,38,029,38029,324,168,512273614,507273524,324,168,512273614,507273524,3550,2085,4027488748,3912008054,100,100,100,100,9.13,8.06,12.72,12.97
-58544,38,029,38029,551,318,894524807,867601296,551,318,894524807,867601296,3550,2085,4027488748,3912008054,100,100,100,100,15.52,15.25,22.21,22.18
-58545,38,057,38057,3374,1782,688299542,625647591,3461,1828,861290707,798066012,8424,4450,2881338816,2701246664,97.49,97.48,79.91,78.4,40.05,40.04,23.89,23.16
-58545,38,065,38065,87,46,172991165,172418421,3461,1828,861290707,798066012,1846,905,1893770255,1871293986,2.51,2.52,20.09,21.6,4.71,5.08,9.13,9.21
-58549,38,029,38029,120,66,289012421,282704262,214,106,503923504,497048963,3550,2085,4027488748,3912008054,56.07,62.26,57.35,56.88,3.38,3.17,7.18,7.23
-58549,38,043,38043,10,4,15406587,15275373,214,106,503923504,497048963,2435,1674,3711226004,3499563866,4.67,3.77,3.06,3.07,0.41,0.24,0.42,0.44
-58549,38,047,38047,84,36,199504496,199069328,214,106,503923504,497048963,1990,1144,2619101221,2571385626,39.25,33.96,39.59,40.05,4.22,3.15,7.62,7.74
-58552,38,029,38029,1797,1122,1451074377,1416184626,1797,1122,1451074377,1416184626,3550,2085,4027488748,3912008054,100,100,100,100,50.62,53.81,36.03,36.2
-58554,38,059,38059,22800,9766,1549624380,1507076287,22884,9792,1634446002,1591736503,27471,12079,5038683797,4989016959,99.63,99.73,94.81,94.68,83,80.85,30.75,30.21
-58554,38,065,38065,84,26,84821622,84660216,22884,9792,1634446002,1591736503,1846,905,1893770255,1871293986,0.37,0.27,5.19,5.32,4.55,2.87,4.48,4.52
-58558,38,015,38015,812,327,413416467,412940682,812,327,413416467,412940682,81308,35754,4320869687,4228552194,100,100,100,100,1,0.91,9.57,9.77
-58559,38,055,38055,211,346,355023819,340170018,218,354,429768594,412559631,8962,5590,6029534651,5467142997,96.79,97.74,82.61,82.45,2.35,6.19,5.89,6.22
-58559,38,083,38083,7,8,74744775,72389613,218,354,429768594,412559631,1321,894,2604593158,2518450003,3.21,2.26,17.39,17.55,0.53,0.89,2.87,2.87
-58560,38,015,38015,161,85,267065998,245887954,161,85,267065998,245887954,81308,35754,4320869687,4228552194,100,100,100,100,0.2,0.24,6.18,5.81
-58561,38,047,38047,1085,549,865704846,856703700,1085,549,865704846,856703700,1990,1144,2619101221,2571385626,100,100,100,100,54.52,47.99,33.05,33.32
-58562,38,001,38001,8,5,45148679,45117133,415,297,765160198,755586282,2343,1377,2560756101,2557922251,1.93,1.68,5.9,5.97,0.34,0.36,1.76,1.76
-58562,38,037,38037,346,254,512554249,503260662,415,297,765160198,755586282,2394,1690,4314713635,4297150375,83.37,85.52,66.99,66.61,14.45,15.03,11.88,11.71
-58562,38,041,38041,61,38,207457270,207208487,415,297,765160198,755586282,2477,1414,2936476307,2932439374,14.7,12.79,27.11,27.42,2.46,2.69,7.06,7.07
-58563,38,059,38059,1643,761,994049173,991181871,1977,906,1414265614,1409994325,27471,12079,5038683797,4989016959,83.11,84,70.29,70.3,5.98,6.3,19.73,19.87
-58563,38,065,38065,334,145,420216441,418812454,1977,906,1414265614,1409994325,1846,905,1893770255,1871293986,16.89,16,29.71,29.7,18.09,16.02,22.19,22.38
-58564,38,037,38037,92,64,306066296,305983794,92,64,306066296,305983794,2394,1690,4314713635,4297150375,100,100,100,100,3.84,3.79,7.09,7.12
-58565,38,055,38055,209,192,7796862,7458792,209,192,7796862,7458792,8962,5590,6029534651,5467142997,100,100,100,100,2.33,3.43,0.13,0.14
-58566,38,059,38059,180,75,212109601,212109601,180,75,212109601,212109601,27471,12079,5038683797,4989016959,100,100,100,100,0.66,0.62,4.21,4.25
-58568,38,085,38085,535,227,1203601427,1202833869,535,227,1203601427,1202833869,4153,1311,2922141190,2833691263,100,100,100,100,12.88,17.32,41.19,42.45
-58569,38,037,38037,77,52,361582428,361477884,77,52,361582428,361477884,2394,1690,4314713635,4297150375,100,100,100,100,3.22,3.08,8.38,8.41
-58570,38,059,38059,217,92,402352763,402300857,397,168,729119843,728890500,27471,12079,5038683797,4989016959,54.66,54.76,55.18,55.19,0.79,0.76,7.99,8.06
-58570,38,085,38085,180,76,326767080,326589643,397,168,729119843,728890500,4153,1311,2922141190,2833691263,45.34,45.24,44.82,44.81,4.33,5.8,11.18,11.53
-58571,38,057,38057,535,288,191734036,185465666,603,320,308554798,301881974,8424,4450,2881338816,2701246664,88.72,90,62.14,61.44,6.35,6.47,6.65,6.87
-58571,38,065,38065,68,32,116820762,116416308,603,320,308554798,301881974,1846,905,1893770255,1871293986,11.28,10,37.86,38.56,3.68,3.54,6.17,6.22
-58572,38,015,38015,319,171,448925403,448050097,319,171,448925403,448050097,81308,35754,4320869687,4228552194,100,100,100,100,0.39,0.48,10.39,10.6
-58573,38,029,38029,674,343,535061949,531000139,674,343,535061949,531000139,3550,2085,4027488748,3912008054,100,100,100,100,18.99,16.45,13.29,13.57
-58575,38,055,38055,920,579,630778596,610605236,920,579,630778596,610605236,8962,5590,6029534651,5467142997,100,100,100,100,10.27,10.36,10.46,11.17
-58576,38,055,38055,953,465,438774734,431902834,953,465,438774734,431902834,8962,5590,6029534651,5467142997,100,100,100,100,10.63,8.32,7.28,7.9
-58577,38,055,38055,1671,900,499803635,487071484,1671,900,499803635,487071484,8962,5590,6029534651,5467142997,100,100,100,100,18.65,16.1,8.29,8.91
-58579,38,015,38015,489,279,469666883,464414327,1190,609,677203237,671729803,81308,35754,4320869687,4228552194,41.09,45.81,69.35,69.14,0.6,0.78,10.87,10.98
-58579,38,055,38055,701,330,207536354,207315476,1190,609,677203237,671729803,8962,5590,6029534651,5467142997,58.91,54.19,30.65,30.86,7.82,5.9,3.44,3.79
-58580,38,057,38057,455,229,426310239,424712005,455,229,426310239,424712005,8424,4450,2881338816,2701246664,100,100,100,100,5.4,5.15,14.8,15.72
-58581,38,051,38051,258,189,353981783,353575350,258,189,353981783,353575350,2809,1858,2576364221,2524546555,100,100,100,100,9.18,10.17,13.74,14.01
-58601,38,025,38025,346,151,513557581,512258941,21078,9184,1495640377,1488387804,3536,2132,5392465572,5201886375,1.64,1.64,34.34,34.42,9.79,7.08,9.52,9.85
-58601,38,089,38089,20732,9033,982082796,976128863,21078,9184,1495640377,1488387804,24199,10735,3471084049,3456948249,98.36,98.36,65.66,65.58,85.67,84.15,28.29,28.24
-58620,38,007,38007,8,4,10108890,9952544,132,82,609845821,608003435,783,484,2987487569,2975515808,6.06,4.88,1.66,1.64,1.02,0.83,0.34,0.33
-58620,38,087,38087,124,78,599736931,598050891,132,82,609845821,608003435,727,436,3157611083,3146633069,93.94,95.12,98.34,98.36,17.06,17.89,18.99,19.01
-58621,38,033,38033,1231,730,1039958772,1038476996,1231,730,1039958772,1038476996,1680,967,2596171886,2592024347,100,100,100,100,73.27,75.49,40.06,40.06
-58622,38,007,38007,350,184,1228817084,1226304768,1489,743,1624148269,1620564646,783,484,2987487569,2975515808,23.51,24.76,75.66,75.67,44.7,38.02,41.13,41.21
-58622,38,089,38089,1139,559,395331185,394259878,1489,743,1624148269,1620564646,24199,10735,3471084049,3456948249,76.49,75.24,24.34,24.33,4.71,5.21,11.39,11.4
-58623,38,011,38011,2252,1150,1000460399,995598887,2370,1208,1515676973,1508531685,3151,1683,3022654806,3009066810,95.02,95.2,66.01,66,71.47,68.33,33.1,33.09
-58623,38,087,38087,111,56,487876243,485632920,2370,1208,1515676973,1508531685,727,436,3157611083,3146633069,4.68,4.64,32.19,32.19,15.27,12.84,15.45,15.43
-58623,46,063,46063,7,2,27340331,27299878,2370,1208,1515676973,1508531685,1255,731,6935785501,6918829169,0.3,0.17,1.8,1.81,0.56,0.27,0.39,0.39
-58625,38,025,38025,159,114,204053669,203574129,185,126,260658654,260042307,3536,2132,5392465572,5201886375,85.95,90.48,78.28,78.29,4.5,5.35,3.78,3.91
-58625,38,057,38057,26,12,56604985,56468178,185,126,260658654,260042307,8424,4450,2881338816,2701246664,14.05,9.52,21.72,21.71,0.31,0.27,1.96,2.09
-58626,38,025,38025,262,158,439340208,427771229,262,158,439340208,427771229,3536,2132,5392465572,5201886375,100,100,100,100,7.41,7.41,8.15,8.22
-58627,38,007,38007,154,83,708134457,707094147,154,83,708134457,707094147,783,484,2987487569,2975515808,100,100,100,100,19.67,17.15,23.7,23.76
-58630,38,025,38025,83,41,237077455,236679107,502,249,524499611,523154127,3536,2132,5392465572,5201886375,16.53,16.47,45.2,45.24,2.35,1.92,4.4,4.55
-58630,38,089,38089,419,208,287422156,286475020,502,249,524499611,523154127,24199,10735,3471084049,3456948249,83.47,83.53,54.8,54.76,1.73,1.94,8.28,8.29
-58631,38,037,38037,63,54,255304494,252720382,1150,610,964982914,959303778,2394,1690,4314713635,4297150375,5.48,8.85,26.46,26.34,2.63,3.2,5.92,5.88
-58631,38,057,38057,39,16,74678925,74423316,1150,610,964982914,959303778,8424,4450,2881338816,2701246664,3.39,2.62,7.74,7.76,0.46,0.36,2.59,2.76
-58631,38,059,38059,1048,540,634999495,632160080,1150,610,964982914,959303778,27471,12079,5038683797,4989016959,91.13,88.52,65.8,65.9,3.81,4.47,12.6,12.67
-58632,38,033,38033,149,95,207526180,207269648,149,95,207526180,207269648,1680,967,2596171886,2592024347,100,100,100,100,8.87,9.82,7.99,8
-58634,38,007,38007,28,12,69943415,69756066,251,152,1073491900,1069138146,783,484,2987487569,2975515808,11.16,7.89,6.52,6.52,3.58,2.48,2.34,2.34
-58634,38,053,38053,223,140,1003548485,999382080,251,152,1073491900,1069138146,6360,3090,7409374251,7149203878,88.84,92.11,93.48,93.48,3.51,4.53,13.54,13.98
-58636,38,025,38025,678,485,1098039966,1049780540,706,517,1169219524,1119573514,3536,2132,5392465572,5201886375,96.03,93.81,93.91,93.77,19.17,22.75,20.36,20.18
-58636,38,057,38057,28,32,71179558,69792974,706,517,1169219524,1119573514,8424,4450,2881338816,2701246664,3.97,6.19,6.09,6.23,0.33,0.72,2.47,2.58
-58638,38,025,38025,10,7,47328303,47082824,992,533,904159844,901644220,3536,2132,5392465572,5201886375,1.01,1.31,5.23,5.22,0.28,0.33,0.88,0.91
-58638,38,037,38037,8,7,59104320,58840815,992,533,904159844,901644220,2394,1690,4314713635,4297150375,0.81,1.31,6.54,6.53,0.33,0.41,1.37,1.37
-58638,38,057,38057,64,33,316521646,315629544,992,533,904159844,901644220,8424,4450,2881338816,2701246664,6.45,6.19,35.01,35.01,0.76,0.74,10.99,11.68
-58638,38,059,38059,883,474,356298683,355499329,992,533,904159844,901644220,27471,12079,5038683797,4989016959,89.01,88.93,39.41,39.43,3.21,3.92,7.07,7.13
-58638,38,089,38089,27,12,124906892,124591708,992,533,904159844,901644220,24199,10735,3471084049,3456948249,2.72,2.25,13.81,13.82,0.11,0.11,3.6,3.6
-58639,38,001,38001,1816,1048,1153987137,1152510614,1816,1048,1153987137,1152510614,2343,1377,2560756101,2557922251,100,100,100,100,77.51,76.11,45.06,45.06
-58640,38,025,38025,1344,674,1132619250,1127272279,1344,674,1132619250,1127272279,3536,2132,5392465572,5201886375,100,100,100,100,38.01,31.61,21,21.67
-58641,38,089,38089,79,56,182775992,182674957,79,56,182775992,182674957,24199,10735,3471084049,3456948249,100,100,100,100,0.33,0.52,5.27,5.28
-58642,38,007,38007,19,8,24580027,24551060,334,136,443997772,443185615,783,484,2987487569,2975515808,5.69,5.88,5.54,5.54,2.43,1.65,0.82,0.83
-58642,38,025,38025,315,128,419417745,418634555,334,136,443997772,443185615,3536,2132,5392465572,5201886375,94.31,94.12,94.46,94.46,8.91,6,7.78,8.05
-58643,38,011,38011,22,17,283856951,283218360,191,129,764596365,761128994,3151,1683,3022654806,3009066810,11.52,13.18,37.13,37.21,0.7,1.01,9.39,9.41
-58643,38,087,38087,169,112,480739414,477910634,191,129,764596365,761128994,727,436,3157611083,3146633069,88.48,86.82,62.87,62.79,23.25,25.69,15.22,15.19
-58645,38,007,38007,224,193,945903696,937857223,238,198,1093404241,1085171468,783,484,2987487569,2975515808,94.12,97.47,86.51,86.42,28.61,39.88,31.66,31.52
-58645,38,033,38033,14,5,147500545,147314245,238,198,1093404241,1085171468,1680,967,2596171886,2592024347,5.88,2.53,13.49,13.58,0.83,0.52,5.68,5.68
-58646,38,001,38001,14,10,129624162,129624162,1138,667,1452854494,1450399310,2343,1377,2560756101,2557922251,1.23,1.5,8.92,8.94,0.6,0.73,5.06,5.07
-58646,38,041,38041,1124,657,1323230332,1320775148,1138,667,1452854494,1450399310,2477,1414,2936476307,2932439374,98.77,98.5,91.08,91.06,45.38,46.46,45.06,45.04
-58647,38,041,38041,900,462,574554134,574034889,1142,596,1340515228,1339636560,2477,1414,2936476307,2932439374,78.81,77.52,42.86,42.85,36.33,32.67,19.57,19.58
-58647,38,087,38087,164,98,614518867,614335642,1142,596,1340515228,1339636560,727,436,3157611083,3146633069,14.36,16.44,45.84,45.86,22.56,22.48,19.46,19.52
-58647,38,089,38089,78,36,151442227,151266029,1142,596,1340515228,1339636560,24199,10735,3471084049,3456948249,6.83,6.04,11.3,11.29,0.32,0.34,4.36,4.38
-58649,38,001,38001,290,190,495379333,494763995,321,219,667826891,667069505,2343,1377,2560756101,2557922251,90.34,86.76,74.18,74.17,12.38,13.8,19.35,19.34
-58649,38,011,38011,2,4,43216246,43202455,321,219,667826891,667069505,3151,1683,3022654806,3009066810,0.62,1.83,6.47,6.48,0.06,0.24,1.43,1.44
-58649,38,041,38041,15,16,62271548,62271548,321,219,667826891,667069505,2477,1414,2936476307,2932439374,4.67,7.31,9.32,9.34,0.61,1.13,2.12,2.12
-58649,46,063,46063,14,9,66959764,66831507,321,219,667826891,667069505,1255,731,6935785501,6918829169,4.36,4.11,10.03,10.02,1.12,1.23,0.97,0.97
-58650,38,001,38001,16,7,42769160,42752181,393,248,811732183,810901483,2343,1377,2560756101,2557922251,4.07,2.82,5.27,5.27,0.68,0.51,1.67,1.67
-58650,38,041,38041,377,241,768963023,768149302,393,248,811732183,810901483,2477,1414,2936476307,2932439374,95.93,97.18,94.73,94.73,15.22,17.04,26.19,26.19
-58651,38,011,38011,374,216,1003943868,1001998463,475,277,1776620024,1772369389,3151,1683,3022654806,3009066810,78.74,77.98,56.51,56.53,11.87,12.83,33.21,33.3
-58651,38,087,38087,101,61,772676156,770370926,475,277,1776620024,1772369389,727,436,3157611083,3146633069,21.26,22.02,43.49,43.47,13.89,13.99,24.47,24.48
-58652,38,025,38025,76,43,235197551,234615780,987,487,1000911007,996363938,3536,2132,5392465572,5201886375,7.7,8.83,23.5,23.55,2.15,2.02,4.36,4.51
-58652,38,089,38089,911,444,765713456,761748158,987,487,1000911007,996363938,24199,10735,3471084049,3456948249,92.3,91.17,76.5,76.45,3.76,4.14,22.06,22.04
-58653,38,011,38011,501,296,691177342,685048645,601,347,1063602405,1056508148,3151,1683,3022654806,3009066810,83.36,85.3,64.98,64.84,15.9,17.59,22.87,22.77
-58653,38,087,38087,55,27,169160896,168457029,601,347,1063602405,1056508148,727,436,3157611083,3146633069,9.15,7.78,15.9,15.94,7.57,6.19,5.36,5.35
-58653,46,063,46063,45,24,203264167,203002474,601,347,1063602405,1056508148,1255,731,6935785501,6918829169,7.49,6.92,19.11,19.21,3.59,3.28,2.93,2.93
-58654,38,033,38033,286,137,1201186389,1198963458,289,141,1234088965,1230838485,1680,967,2596171886,2592024347,98.96,97.16,97.33,97.41,17.02,14.17,46.27,46.26
-58654,38,087,38087,3,4,32902576,31875027,289,141,1234088965,1230838485,727,436,3157611083,3146633069,1.04,2.84,2.67,2.59,0.41,0.92,1.04,1.01
-58655,38,089,38089,484,200,257167381,256557612,484,200,257167381,256557612,24199,10735,3471084049,3456948249,100,100,100,100,2,1.86,7.41,7.42
-58656,38,025,38025,36,26,151245023,150726280,366,213,475486987,473972304,3536,2132,5392465572,5201886375,9.84,12.21,31.81,31.8,1.02,1.22,2.8,2.9
-58656,38,089,38089,330,187,324241964,323246024,366,213,475486987,473972304,24199,10735,3471084049,3456948249,90.16,87.79,68.19,68.2,1.36,1.74,9.34,9.35
-58701,38,101,38101,28368,13381,579972939,571802084,28368,13381,579972939,571802084,61675,26744,5324911253,5214369294,100,100,100,100,46,50.03,10.89,10.97
-58702,38,101,38101,0,0,12695,12695,0,0,12695,12695,61675,26744,5324911253,5214369294,0,0,100,100,0,0,0,0
-58703,38,101,38101,19396,8278,418939974,415944709,19396,8278,418939974,415944709,61675,26744,5324911253,5214369294,100,100,100,100,31.45,30.95,7.87,7.98
-58704,38,101,38101,4770,1463,5004917,4753839,4770,1463,5004917,4753839,61675,26744,5324911253,5214369294,100,100,100,100,7.73,5.47,0.09,0.09
-58705,38,101,38101,751,0,385419,385419,751,0,385419,385419,61675,26744,5324911253,5214369294,100,0,100,100,1.22,0,0.01,0.01
-58707,38,101,38101,509,0,164989,164989,509,0,164989,164989,61675,26744,5324911253,5214369294,100,0,100,100,0.83,0,0,0
-58710,38,049,38049,336,209,174371297,172046998,469,276,504787582,479121828,5395,2948,4950873934,4853519308,71.64,75.72,34.54,35.91,6.23,7.09,3.52,3.54
-58710,38,069,38069,56,28,137473637,126662030,469,276,504787582,479121828,4357,2199,2803233366,2638162604,11.94,10.14,27.23,26.44,1.29,1.27,4.9,4.8
-58710,38,083,38083,77,39,192942648,180412800,469,276,504787582,479121828,1321,894,2604593158,2518450003,16.42,14.13,38.22,37.65,5.83,4.36,7.41,7.16
-58711,38,009,38009,211,121,306599605,305513966,211,121,306599605,305513966,6429,4341,4396109411,4321189959,100,100,100,100,3.28,2.79,6.97,7.07
-58712,38,049,38049,155,90,316599735,308392660,155,90,316599735,308392660,5395,2948,4950873934,4853519308,100,100,100,100,2.87,3.05,6.39,6.35
-58713,38,049,38049,35,21,70459232,70143318,35,21,70459232,70143318,5395,2948,4950873934,4853519308,100,100,100,100,0.65,0.71,1.42,1.45
-58716,38,055,38055,128,68,101390520,100132702,147,82,187536068,183943116,8962,5590,6029534651,5467142997,87.07,82.93,54.06,54.44,1.43,1.22,1.68,1.83
-58716,38,101,38101,19,14,86145548,83810414,147,82,187536068,183943116,61675,26744,5324911253,5214369294,12.93,17.07,45.94,45.56,0.03,0.05,1.62,1.61
-58718,38,061,38061,124,56,310432821,291413878,1040,456,1132012996,1071296214,7673,4119,5028640441,4727500245,11.92,12.28,27.42,27.2,1.62,1.36,6.17,6.16
-58718,38,075,38075,19,13,49121104,37278079,1040,456,1132012996,1071296214,2470,1386,2312205121,2271556786,1.83,2.85,4.34,3.48,0.77,0.94,2.12,1.64
-58718,38,101,38101,897,387,772459071,742604257,1040,456,1132012996,1071296214,61675,26744,5324911253,5214369294,86.25,84.87,68.24,69.32,1.45,1.45,14.51,14.24
-58721,38,013,38013,514,328,606610298,591274758,529,334,639825634,618992032,1968,1340,2923900173,2858226820,97.16,98.2,94.81,95.52,26.12,24.48,20.75,20.69
-58721,38,101,38101,15,6,33215336,27717274,529,334,639825634,618992032,61675,26744,5324911253,5214369294,2.84,1.8,5.19,4.48,0.02,0.02,0.62,0.53
-58722,38,101,38101,1516,592,165112070,163032350,1516,592,165112070,163032350,61675,26744,5324911253,5214369294,100,100,100,100,2.46,2.21,3.1,3.13
-58723,38,049,38049,15,16,18094378,18051427,236,206,552234345,533246980,5395,2948,4950873934,4853519308,6.36,7.77,3.28,3.39,0.28,0.54,0.37,0.37
-58723,38,055,38055,143,145,302662143,296550640,236,206,552234345,533246980,8962,5590,6029534651,5467142997,60.59,70.39,54.81,55.61,1.6,2.59,5.02,5.42
-58723,38,083,38083,78,45,231477824,218644913,236,206,552234345,533246980,1321,894,2604593158,2518450003,33.05,21.84,41.92,41,5.9,5.03,8.89,8.68
-58725,38,075,38075,90,43,240221006,239194530,341,157,376380409,373947879,2470,1386,2312205121,2271556786,26.39,27.39,63.82,63.96,3.64,3.1,10.39,10.53
-58725,38,101,38101,251,114,136159403,134753349,341,157,376380409,373947879,61675,26744,5324911253,5214369294,73.61,72.61,36.18,36.04,0.41,0.43,2.56,2.58
-58727,38,013,38013,279,250,653145087,644807401,279,250,653145087,644807401,1968,1340,2923900173,2858226820,100,100,100,100,14.18,18.66,22.34,22.56
-58730,38,023,38023,1295,749,656652760,639271214,1295,749,656652760,639271214,2071,1324,3352038967,3265421252,100,100,100,100,62.53,56.57,19.59,19.58
-58731,38,049,38049,289,136,281495136,281017827,300,143,307723275,307219343,5395,2948,4950873934,4853519308,96.33,95.1,91.48,91.47,5.36,4.61,5.69,5.79
-58731,38,101,38101,11,7,26228139,26201516,300,143,307723275,307219343,61675,26744,5324911253,5214369294,3.67,4.9,8.52,8.53,0.02,0.03,0.49,0.5
-58733,38,101,38101,402,164,250084072,241595489,402,164,250084072,241595489,61675,26744,5324911253,5214369294,100,100,100,100,0.65,0.61,4.7,4.63
-58734,38,061,38061,76,42,186919285,177801967,241,151,498035348,487335566,7673,4119,5028640441,4727500245,31.54,27.81,37.53,36.48,0.99,1.02,3.72,3.76
-58734,38,075,38075,27,23,118951831,118897378,241,151,498035348,487335566,2470,1386,2312205121,2271556786,11.2,15.23,23.88,24.4,1.09,1.66,5.14,5.23
-58734,38,101,38101,138,86,192164232,190636221,241,151,498035348,487335566,61675,26744,5324911253,5214369294,57.26,56.95,38.58,39.12,0.22,0.32,3.61,3.66
-58735,38,055,38055,92,49,220741125,219566046,314,304,525057050,513039267,8962,5590,6029534651,5467142997,29.3,16.12,42.04,42.8,1.03,0.88,3.66,4.02
-58735,38,101,38101,222,255,304315925,293473221,314,304,525057050,513039267,61675,26744,5324911253,5214369294,70.7,83.88,57.96,57.2,0.36,0.95,5.71,5.63
-58736,38,049,38049,410,282,328761061,311782354,452,305,438387508,416389086,5395,2948,4950873934,4853519308,90.71,92.46,74.99,74.88,7.6,9.57,6.64,6.42
-58736,38,083,38083,42,23,109626447,104606732,452,305,438387508,416389086,1321,894,2604593158,2518450003,9.29,7.54,25.01,25.12,3.18,2.57,4.21,4.15
-58737,38,013,38013,140,129,359631167,354129092,140,129,359631167,354129092,1968,1340,2923900173,2858226820,100,100,100,100,7.11,9.63,12.3,12.39
-58740,38,009,38009,9,3,15506749,15506749,755,343,433013028,432429873,6429,4341,4396109411,4321189959,1.19,0.87,3.58,3.59,0.14,0.07,0.35,0.36
-58740,38,075,38075,575,272,254093568,253857959,755,343,433013028,432429873,2470,1386,2312205121,2271556786,76.16,79.3,58.68,58.71,23.28,19.62,10.99,11.18
-58740,38,101,38101,171,68,163412711,163065165,755,343,433013028,432429873,61675,26744,5324911253,5214369294,22.65,19.83,37.74,37.71,0.28,0.25,3.07,3.13
-58741,38,049,38049,554,277,426258104,420153059,554,277,426258104,420153059,5395,2948,4950873934,4853519308,100,100,100,100,10.27,9.4,8.61,8.66
-58744,38,049,38049,143,110,225956230,224102087,143,110,225956230,224102087,5395,2948,4950873934,4853519308,100,100,100,100,2.65,3.73,4.56,4.62
-58746,38,013,38013,83,44,346721609,333509875,1620,836,1155870580,1132258857,1968,1340,2923900173,2858226820,5.12,5.26,30,29.46,4.22,3.28,11.86,11.67
-58746,38,075,38075,100,62,236241699,235449085,1620,836,1155870580,1132258857,2470,1386,2312205121,2271556786,6.17,7.42,20.44,20.79,4.05,4.47,10.22,10.37
-58746,38,101,38101,1437,730,572907272,563299897,1620,836,1155870580,1132258857,61675,26744,5324911253,5214369294,88.7,87.32,49.57,49.75,2.33,2.73,10.76,10.8
-58748,38,009,38009,142,115,278409352,273334711,148,120,326132425,309013861,6429,4341,4396109411,4321189959,95.95,95.83,85.37,88.45,2.21,2.65,6.33,6.33
-58748,38,049,38049,6,5,47723073,35679150,148,120,326132425,309013861,5395,2948,4950873934,4853519308,4.05,4.17,14.63,11.55,0.11,0.17,0.96,0.74
-58750,38,009,38009,445,216,353828073,353650618,528,250,582030111,573297490,6429,4341,4396109411,4321189959,84.28,86.4,60.79,61.69,6.92,4.98,8.05,8.18
-58750,38,075,38075,83,34,228202038,219646872,528,250,582030111,573297490,2470,1386,2312205121,2271556786,15.72,13.6,39.21,38.31,3.36,2.45,9.87,9.67
-58752,38,013,38013,223,137,176825208,174845662,223,137,176825208,174845662,1968,1340,2923900173,2858226820,100,100,100,100,11.33,10.22,6.05,6.12
-58755,38,013,38013,14,9,25560308,25560308,129,95,232270872,230352585,1968,1340,2923900173,2858226820,10.85,9.47,11,11.1,0.71,0.67,0.87,0.89
-58755,38,023,38023,36,23,95745978,94256055,129,95,232270872,230352585,2071,1324,3352038967,3265421252,27.91,24.21,41.22,40.92,1.74,1.74,2.86,2.89
-58755,38,105,38105,79,63,110964586,110536222,129,95,232270872,230352585,22398,10464,5562967700,5380444836,61.24,66.32,47.77,47.99,0.35,0.6,1.99,2.05
-58756,38,061,38061,15,9,46713386,46713386,250,140,233764689,230409713,7673,4119,5028640441,4727500245,6,6.43,19.98,20.27,0.2,0.22,0.93,0.99
-58756,38,101,38101,235,131,187051303,183696327,250,140,233764689,230409713,61675,26744,5324911253,5214369294,94,93.57,80.02,79.73,0.38,0.49,3.51,3.52
-58757,38,025,38025,222,302,825043877,703969046,909,507,1091811176,957596910,3536,2132,5392465572,5201886375,24.42,59.57,75.57,73.51,6.28,14.17,15.3,13.53
-58757,38,053,38053,687,205,266767299,253627864,909,507,1091811176,957596910,6360,3090,7409374251,7149203878,75.58,40.43,24.43,26.49,10.8,6.63,3.6,3.55
-58758,38,069,38069,35,18,56205124,54025431,222,129,296656181,286864895,4357,2199,2803233366,2638162604,15.77,13.95,18.95,18.83,0.8,0.82,2.01,2.05
-58758,38,083,38083,155,94,202685646,195620311,222,129,296656181,286864895,1321,894,2604593158,2518450003,69.82,72.87,68.32,68.19,11.73,10.51,7.78,7.77
-58758,38,103,38103,32,17,37765411,37219153,222,129,296656181,286864895,4207,2481,3342048937,3291995693,14.41,13.18,12.73,12.97,0.76,0.69,1.13,1.13
-58759,38,055,38055,513,246,295119324,293701876,821,374,608159627,599762584,8962,5590,6029534651,5467142997,62.48,65.78,48.53,48.97,5.72,4.4,4.89,5.37
-58759,38,101,38101,308,128,313040303,306060708,821,374,608159627,599762584,61675,26744,5324911253,5214369294,37.52,34.22,51.47,51.03,0.5,0.48,5.88,5.87
-58760,38,009,38009,254,146,393399453,392436614,254,146,393399453,392436614,6429,4341,4396109411,4321189959,100,100,100,100,3.95,3.36,8.95,9.08
-58761,38,009,38009,85,45,283251529,282586086,1104,612,736626179,727683482,6429,4341,4396109411,4321189959,7.7,7.35,38.45,38.83,1.32,1.04,6.44,6.54
-58761,38,075,38075,1019,567,453374650,445097396,1104,612,736626179,727683482,2470,1386,2312205121,2271556786,92.3,92.65,61.55,61.17,41.26,40.91,19.61,19.59
-58762,38,009,38009,223,133,227588578,221642595,246,149,288685493,282682423,6429,4341,4396109411,4321189959,90.65,89.26,78.84,78.41,3.47,3.06,5.18,5.13
-58762,38,049,38049,23,16,61096915,61039828,246,149,288685493,282682423,5395,2948,4950873934,4853519308,9.35,10.74,21.16,21.59,0.43,0.54,1.23,1.26
-58763,38,053,38053,777,352,561620761,472736358,3502,1917,1614480259,1341813768,6360,3090,7409374251,7149203878,22.19,18.36,34.79,35.23,12.22,11.39,7.58,6.61
-58763,38,055,38055,6,2,5349580,5319822,3502,1917,1614480259,1341813768,8962,5590,6029534651,5467142997,0.17,0.1,0.33,0.4,0.07,0.04,0.09,0.1
-58763,38,061,38061,2719,1563,1047509918,863757588,3502,1917,1614480259,1341813768,7673,4119,5028640441,4727500245,77.64,81.53,64.88,64.37,35.44,37.95,20.83,18.27
-58765,38,023,38023,248,184,421146733,415252618,248,184,421146733,415252618,2071,1324,3352038967,3265421252,100,100,100,100,11.97,13.9,12.56,12.72
-58768,38,049,38049,147,71,105930460,105852432,282,122,202590623,202386023,5395,2948,4950873934,4853519308,52.13,58.2,52.29,52.3,2.72,2.41,2.14,2.18
-58768,38,101,38101,135,51,96660163,96533591,282,122,202590623,202386023,61675,26744,5324911253,5214369294,47.87,41.8,47.71,47.7,0.22,0.19,1.82,1.85
-58769,38,061,38061,229,196,542383966,527726978,229,196,542383966,527726978,7673,4119,5028640441,4727500245,100,100,100,100,2.98,4.76,10.79,11.16
-58770,38,055,38055,82,155,275091978,202720084,1240,818,716327274,642915206,8962,5590,6029534651,5467142997,6.61,18.95,38.4,31.53,0.91,2.77,4.56,3.71
-58770,38,061,38061,1158,663,441235296,440195122,1240,818,716327274,642915206,7673,4119,5028640441,4727500245,93.39,81.05,61.6,68.47,15.09,16.1,8.77,9.31
-58771,38,055,38055,6,5,24620352,24381491,453,265,735913219,717226794,8962,5590,6029534651,5467142997,1.32,1.89,3.35,3.4,0.07,0.09,0.41,0.45
-58771,38,061,38061,379,225,536868667,526324708,453,265,735913219,717226794,7673,4119,5028640441,4727500245,83.66,84.91,72.95,73.38,4.94,5.46,10.68,11.13
-58771,38,101,38101,68,35,174424200,166520595,453,265,735913219,717226794,61675,26744,5324911253,5214369294,15.01,13.21,23.7,23.22,0.11,0.13,3.28,3.19
-58772,38,013,38013,137,94,130527210,129468786,137,94,130527210,129468786,1968,1340,2923900173,2858226820,100,100,100,100,6.96,7.01,4.46,4.53
-58773,38,013,38013,559,338,563070636,548794328,687,405,834164782,808660602,1968,1340,2923900173,2858226820,81.37,83.46,67.5,67.86,28.4,25.22,19.26,19.2
-58773,38,061,38061,128,67,271094146,259866274,687,405,834164782,808660602,7673,4119,5028640441,4727500245,18.63,16.54,32.5,32.14,1.67,1.63,5.39,5.5
-58775,38,055,38055,290,119,224517197,223232392,290,119,224517197,223232392,8962,5590,6029534651,5467142997,100,100,100,100,3.24,2.13,3.72,4.08
-58776,38,061,38061,298,153,436503305,432432609,298,153,436503305,432432609,7673,4119,5028640441,4727500245,100,100,100,100,3.88,3.71,8.68,9.15
-58778,38,049,38049,8,5,16508588,16040982,133,243,354519626,350910412,5395,2948,4950873934,4853519308,6.02,2.06,4.66,4.57,0.15,0.17,0.33,0.33
-58778,38,055,38055,125,238,338011038,334869430,133,243,354519626,350910412,8962,5590,6029534651,5467142997,93.98,97.94,95.34,95.43,1.39,4.26,5.61,6.13
-58779,38,055,38055,156,79,380111807,379544410,367,215,749880875,741675167,8962,5590,6029534651,5467142997,42.51,36.74,50.69,51.17,1.74,1.41,6.3,6.94
-58779,38,101,38101,211,136,369769068,362130757,367,215,749880875,741675167,61675,26744,5324911253,5214369294,57.49,63.26,49.31,48.83,0.34,0.51,6.94,6.94
-58781,38,101,38101,695,298,278458964,277738470,695,298,278458964,277738470,61675,26744,5324911253,5214369294,100,100,100,100,1.13,1.11,5.23,5.33
-58782,38,009,38009,15,7,41615005,41532672,436,231,492146314,491445201,6429,4341,4396109411,4321189959,3.44,3.03,8.46,8.45,0.23,0.16,0.95,0.96
-58782,38,075,38075,421,224,450531309,449912529,436,231,492146314,491445201,2470,1386,2312205121,2271556786,96.56,96.97,91.54,91.55,17.04,16.16,19.48,19.81
-58783,38,009,38009,346,232,688007323,681580443,346,232,688007323,681580443,6429,4341,4396109411,4321189959,100,100,100,100,5.38,5.34,15.65,15.77
-58784,38,013,38013,19,11,61808650,55836610,2330,962,860735910,830812541,1968,1340,2923900173,2858226820,0.82,1.14,7.18,6.72,0.97,0.82,2.11,1.95
-58784,38,061,38061,2311,951,798927260,774975931,2330,962,860735910,830812541,7673,4119,5028640441,4727500245,99.18,98.86,92.82,93.28,30.12,23.09,15.89,16.39
-58785,38,101,38101,1091,392,119073232,118803243,1091,392,119073232,118803243,61675,26744,5324911253,5214369294,100,100,100,100,1.77,1.47,2.24,2.28
-58787,38,075,38075,136,148,281467916,272222958,136,148,281467916,272222958,2470,1386,2312205121,2271556786,100,100,100,100,5.51,10.68,12.17,11.98
-58788,38,049,38049,1084,634,1349417067,1331269191,1124,647,1410804246,1384611179,5395,2948,4950873934,4853519308,96.44,97.99,95.65,96.15,20.09,21.51,27.26,27.43
-58788,38,069,38069,40,13,61387179,53341988,1124,647,1410804246,1384611179,4357,2199,2803233366,2638162604,3.56,2.01,4.35,3.85,0.92,0.59,2.19,2.02
-58789,38,009,38009,10,8,24276206,20263627,321,217,381163464,364515108,6429,4341,4396109411,4321189959,3.12,3.69,6.37,5.56,0.16,0.18,0.55,0.47
-58789,38,049,38049,311,209,356887258,344251481,321,217,381163464,364515108,5395,2948,4950873934,4853519308,96.88,96.31,93.63,94.44,5.76,7.09,7.21,7.09
-58790,38,049,38049,1526,665,397714415,396314950,1585,693,477463723,475947665,5395,2948,4950873934,4853519308,96.28,95.96,83.3,83.27,28.29,22.56,8.03,8.17
-58790,38,101,38101,59,28,79749308,79632715,1585,693,477463723,475947665,61675,26744,5324911253,5214369294,3.72,4.04,16.7,16.73,0.1,0.1,1.5,1.53
-58792,38,049,38049,227,138,432826918,423170320,227,138,432826918,423170320,5395,2948,4950873934,4853519308,100,100,100,100,4.21,4.68,8.74,8.72
-58793,38,009,38009,609,315,431632218,422747349,609,315,431632218,422747349,6429,4341,4396109411,4321189959,100,100,100,100,9.47,7.26,9.82,9.78
-58794,38,061,38061,159,150,275715333,252461751,159,150,275715333,252461751,7673,4119,5028640441,4727500245,100,100,100,100,2.07,3.64,5.48,5.34
-58795,38,023,38023,43,39,296997192,290046718,198,175,534799462,524156422,2071,1324,3352038967,3265421252,21.72,22.29,55.53,55.34,2.08,2.95,8.86,8.88
-58795,38,105,38105,155,136,237802270,234109704,198,175,534799462,524156422,22398,10464,5562967700,5380444836,78.28,77.71,44.47,44.66,0.69,1.3,4.27,4.35
-58801,38,053,38053,63,27,250351268,216470186,18371,8179,2245106870,2153625645,6360,3090,7409374251,7149203878,0.34,0.33,11.15,10.05,0.99,0.87,3.38,3.03
-58801,38,105,38105,18308,8152,1994755602,1937155459,18371,8179,2245106870,2153625645,22398,10464,5562967700,5380444836,99.66,99.67,88.85,89.95,81.74,77.91,35.86,36
-58830,38,023,38023,61,42,314718153,310930946,213,153,778238407,767513781,2071,1324,3352038967,3265421252,28.64,27.45,40.44,40.51,2.95,3.17,9.39,9.52
-58830,38,105,38105,152,111,463520254,456582835,213,153,778238407,767513781,22398,10464,5562967700,5380444836,71.36,72.55,59.56,59.49,0.68,1.06,8.33,8.49
-58831,38,053,38053,472,255,864945399,858003866,472,255,864945399,858003866,6360,3090,7409374251,7149203878,100,100,100,100,7.42,8.25,11.67,12
-58833,38,023,38023,80,71,226947845,220199227,80,71,226947845,220199227,2071,1324,3352038967,3265421252,100,100,100,100,3.86,5.36,6.77,6.74
-58835,38,053,38053,313,174,615334715,591169602,313,174,615334715,591169602,6360,3090,7409374251,7149203878,100,100,100,100,4.92,5.63,8.3,8.27
-58838,38,053,38053,199,101,662083259,643373488,199,101,662083259,643373488,6360,3090,7409374251,7149203878,100,100,100,100,3.13,3.27,8.94,9
-58843,38,105,38105,466,247,596235372,554682384,466,247,596235372,554682384,22398,10464,5562967700,5380444836,100,100,100,100,2.08,2.36,10.72,10.31
-58844,38,023,38023,142,112,622861832,608257024,142,112,622861832,608257024,2071,1324,3352038967,3265421252,100,100,100,100,6.86,8.46,18.58,18.63
-58845,38,023,38023,64,45,350017557,330246804,371,213,689901325,667384060,2071,1324,3352038967,3265421252,17.25,21.13,50.73,49.48,3.09,3.4,10.44,10.11
-58845,38,105,38105,307,168,339883768,337137256,371,213,689901325,667384060,22398,10464,5562967700,5380444836,82.75,78.87,49.27,50.52,1.37,1.61,6.11,6.27
-58847,38,053,38053,283,125,506801259,506692736,283,125,506801259,506692736,6360,3090,7409374251,7149203878,100,100,100,100,4.45,4.05,6.84,7.09
-58849,38,105,38105,883,521,669584930,657092892,883,521,669584930,657092892,22398,10464,5562967700,5380444836,100,100,100,100,3.94,4.98,12.04,12.21
-58852,38,061,38061,77,44,134337058,133830053,1750,933,951308820,898826133,7673,4119,5028640441,4727500245,4.4,4.72,14.12,14.89,1,1.07,2.67,2.83
-58852,38,105,38105,1673,889,816971762,764996080,1750,933,951308820,898826133,22398,10464,5562967700,5380444836,95.6,95.28,85.88,85.11,7.47,8.5,14.69,14.22
-58853,38,105,38105,292,118,9721795,9721795,292,118,9721795,9721795,22398,10464,5562967700,5380444836,100,100,100,100,1.3,1.13,0.17,0.18
-58854,38,025,38025,5,3,89544944,89521665,2804,1417,1627152879,1565821259,3536,2132,5392465572,5201886375,0.18,0.21,5.5,5.72,0.14,0.14,1.66,1.72
-58854,38,053,38053,2799,1414,1537607935,1476299594,2804,1417,1627152879,1565821259,6360,3090,7409374251,7149203878,99.82,99.79,94.5,94.28,44.01,45.76,20.75,20.65
-58856,38,023,38023,48,29,161113277,159713134,131,88,484640638,478143343,2071,1324,3352038967,3265421252,36.64,32.95,33.24,33.4,2.32,2.19,4.81,4.89
-58856,38,105,38105,83,59,323527361,318430209,131,88,484640638,478143343,22398,10464,5562967700,5380444836,63.36,67.05,66.76,66.6,0.37,0.56,5.82,5.92
-59001,30,009,30009,57,25,22847690,22847690,1643,904,413204914,413032866,10078,6441,5340976411,5306336324,3.47,2.77,5.53,5.53,0.57,0.39,0.43,0.43
-59001,30,095,30095,1586,879,390357224,390185176,1643,904,413204914,413032866,9117,4803,4673849816,4649935552,96.53,97.23,94.47,94.47,17.4,18.3,8.35,8.39
-59002,30,111,30111,165,75,169031006,168867755,165,75,169031006,168867755,147972,63943,6860960040,6820199333,100,100,100,100,0.11,0.12,2.46,2.48
-59003,30,075,30075,171,104,1145160483,1145073184,1160,531,1765235937,1765141299,1743,1022,8541529536,8539962788,14.74,19.59,64.87,64.87,9.81,10.18,13.41,13.41
-59003,30,087,30087,989,427,620075454,620068115,1160,531,1765235937,1765141299,9233,4057,13019888347,12976880880,85.26,80.41,35.13,35.13,10.71,10.53,4.76,4.78
-59006,30,111,30111,926,398,167090027,167057599,926,398,167090027,167057599,147972,63943,6860960040,6820199333,100,100,100,100,0.63,0.62,2.44,2.45
-59007,30,009,30009,113,79,149125568,149104807,113,79,149125568,149104807,10078,6441,5340976411,5306336324,100,100,100,100,1.12,1.23,2.79,2.81
-59008,30,009,30009,410,215,265449959,263558917,410,215,265449959,263558917,10078,6441,5340976411,5306336324,100,100,100,100,4.07,3.34,4.97,4.97
-59010,30,003,30003,48,21,323673388,323400272,102,55,859453820,857413150,12865,4695,12987780679,12938187715,47.06,38.18,37.66,37.72,0.37,0.45,2.49,2.5
-59010,30,103,30103,54,34,535780432,534012878,102,55,859453820,857413150,718,422,2548609411,2531448178,52.94,61.82,62.34,62.28,7.52,8.06,21.02,21.1
-59011,30,097,30097,3027,1694,2435632670,2425232886,3027,1694,2435632670,2425232886,3651,2148,4822644149,4804957748,100,100,100,100,82.91,78.86,50.5,50.47
-59012,30,087,30087,249,119,668293855,668153928,249,119,668293855,668153928,9233,4057,13019888347,12976880880,100,100,100,100,2.7,2.93,5.13,5.15
-59013,30,009,30009,127,69,7778110,7778110,127,69,7778110,7778110,10078,6441,5340976411,5306336324,100,100,100,100,1.26,1.07,0.15,0.15
-59014,30,009,30009,1446,736,1071761704,1069450929,1446,736,1071761704,1069450929,10078,6441,5340976411,5306336324,100,100,100,100,14.35,11.43,20.07,20.15
-59015,30,065,30065,48,28,106661540,106661540,576,200,642143301,640740098,4538,2654,4845626714,4838499504,8.33,14,16.61,16.65,1.06,1.06,2.2,2.2
-59015,30,095,30095,72,25,150276367,150267760,576,200,642143301,640740098,9117,4803,4673849816,4649935552,12.5,12.5,23.4,23.45,0.79,0.52,3.22,3.23
-59015,30,111,30111,456,147,385205394,383810798,576,200,642143301,640740098,147972,63943,6860960040,6820199333,79.17,73.5,59.99,59.9,0.31,0.23,5.61,5.63
-59016,30,003,30003,1089,333,1021908809,1021686192,1089,333,1021908809,1021686192,12865,4695,12987780679,12938187715,100,100,100,100,8.46,7.09,7.87,7.9
-59018,30,067,30067,602,337,541496162,541370748,602,337,541496162,541370748,15636,9375,7286911413,7259898824,100,100,100,100,3.85,3.59,7.43,7.46
-59019,30,009,30009,9,6,17477990,16765039,3972,1888,900420778,890788209,10078,6441,5340976411,5306336324,0.23,0.32,1.94,1.88,0.09,0.09,0.33,0.32
-59019,30,095,30095,3963,1882,882942788,874023170,3972,1888,900420778,890788209,9117,4803,4673849816,4649935552,99.77,99.68,98.06,98.12,43.47,39.18,18.89,18.8
-59020,30,067,30067,77,162,616170974,608359724,77,162,616170974,608359724,15636,9375,7286911413,7259898824,100,100,100,100,0.49,1.73,8.46,8.38
-59022,30,003,30003,1945,481,431651696,431463992,1945,481,431651696,431463992,12865,4695,12987780679,12938187715,100,100,100,100,15.12,10.24,3.32,3.33
-59024,30,003,30003,37,24,132271055,131123815,390,220,1308884297,1297924724,12865,4695,12987780679,12938187715,9.49,10.91,10.11,10.1,0.29,0.51,1.02,1.01
-59024,30,111,30111,353,196,1176613242,1166800909,390,220,1308884297,1297924724,147972,63943,6860960040,6820199333,90.51,89.09,89.89,89.9,0.24,0.31,17.15,17.11
-59025,30,003,30003,56,74,1183500957,1174689788,56,74,1183500957,1174689788,12865,4695,12987780679,12938187715,100,100,100,100,0.44,1.58,9.11,9.08
-59026,30,009,30009,194,91,53685495,53305971,194,91,53685495,53305971,10078,6441,5340976411,5306336324,100,100,100,100,1.92,1.41,1.01,1
-59027,30,067,30067,836,622,561200561,558189936,836,622,561200561,558189936,15636,9375,7286911413,7259898824,100,100,100,100,5.35,6.63,7.7,7.69
-59028,30,095,30095,434,369,569657025,566512289,434,369,569657025,566512289,9117,4803,4673849816,4649935552,100,100,100,100,4.76,7.68,12.19,12.18
-59029,30,009,30009,733,375,264479798,263006925,733,375,264479798,263006925,10078,6441,5340976411,5306336324,100,100,100,100,7.27,5.82,4.95,4.96
-59030,30,067,30067,1263,875,1253781489,1251086900,1263,875,1253781489,1251086900,15636,9375,7286911413,7259898824,100,100,100,100,8.08,9.33,17.21,17.23
-59031,30,003,30003,339,106,181866745,181846931,339,106,181866745,181846931,12865,4695,12987780679,12938187715,100,100,100,100,2.64,2.26,1.4,1.41
-59032,30,027,30027,392,195,882891605,882160562,408,206,1096436289,1094795048,11586,5836,11267521918,11240038932,96.08,94.66,80.52,80.58,3.38,3.34,7.84,7.85
-59032,30,069,30069,16,11,213544684,212634486,408,206,1096436289,1094795048,494,324,4335132954,4286096708,3.92,5.34,19.48,19.42,3.24,3.4,4.93,4.96
-59033,30,097,30097,334,165,201104645,197167201,334,165,201104645,197167201,3651,2148,4822644149,4804957748,100,100,100,100,9.15,7.68,4.17,4.1
-59034,30,003,30003,5189,2111,1992927374,1978239194,5189,2111,1992927374,1978239194,12865,4695,12987780679,12938187715,100,100,100,100,40.33,44.96,15.34,15.29
-59035,30,003,30003,227,238,196848633,195460638,227,238,196848633,195460638,12865,4695,12987780679,12938187715,100,100,100,100,1.76,5.07,1.52,1.51
-59036,30,107,30107,1505,765,1472228363,1471712276,1505,765,1472228363,1471712276,2168,1197,3699128207,3686057039,100,100,100,100,69.42,63.91,39.8,39.93
-59037,30,111,30111,1672,719,489527309,486150088,1672,719,489527309,486150088,147972,63943,6860960040,6820199333,100,100,100,100,1.13,1.12,7.13,7.13
-59038,30,003,30003,25,16,295780361,295732955,656,382,2277815027,2262373942,12865,4695,12987780679,12938187715,3.81,4.19,12.99,13.07,0.19,0.34,2.28,2.29
-59038,30,103,30103,631,366,1982034666,1966640987,656,382,2277815027,2262373942,718,422,2548609411,2531448178,96.19,95.81,87.01,86.93,87.88,86.73,77.77,77.69
-59039,30,087,30087,28,31,1131402802,1129649358,28,31,1131402802,1129649358,9233,4057,13019888347,12976880880,100,100,100,100,0.3,0.76,8.69,8.71
-59041,30,009,30009,1900,898,503059761,499897245,1950,921,513124877,509552693,10078,6441,5340976411,5306336324,97.44,97.5,98.04,98.11,18.85,13.94,9.42,9.42
-59041,30,111,30111,50,23,10065116,9655448,1950,921,513124877,509552693,147972,63943,6860960040,6820199333,2.56,2.5,1.96,1.89,0.03,0.04,0.15,0.14
-59043,30,003,30003,659,185,353196743,353078840,2950,863,1056771434,1056594513,12865,4695,12987780679,12938187715,22.34,21.44,33.42,33.42,5.12,3.94,2.72,2.73
-59043,30,087,30087,2291,678,703574691,703515673,2950,863,1056771434,1056594513,9233,4057,13019888347,12976880880,77.66,78.56,66.58,66.58,24.81,16.71,5.4,5.42
-59044,30,009,30009,356,140,49973245,48506940,10971,4588,465451352,459283638,10078,6441,5340976411,5306336324,3.24,3.05,10.74,10.56,3.53,2.17,0.94,0.91
-59044,30,111,30111,10615,4448,415478107,410776698,10971,4588,465451352,459283638,147972,63943,6860960040,6820199333,96.76,96.95,89.26,89.44,7.17,6.96,6.06,6.02
-59046,30,037,30037,381,209,1442722056,1440404311,390,218,1447322252,1445004507,884,476,3046710741,3044122460,97.69,95.87,99.68,99.68,43.1,43.91,47.35,47.32
-59046,30,065,30065,9,9,4600196,4600196,390,218,1447322252,1445004507,4538,2654,4845626714,4838499504,2.31,4.13,0.32,0.32,0.2,0.34,0.09,0.1
-59047,30,067,30067,11880,6506,2328816109,2321030241,11880,6506,2328816109,2321030241,15636,9375,7286911413,7259898824,100,100,100,100,75.98,69.4,31.96,31.97
-59050,30,003,30003,1715,540,1589135705,1586546107,1715,540,1589135705,1586546107,12865,4695,12987780679,12938187715,100,100,100,100,13.33,11.5,12.24,12.26
-59052,30,067,30067,25,154,712433535,711282255,139,321,1802881576,1799070966,15636,9375,7286911413,7259898824,17.99,47.98,39.52,39.54,0.16,1.64,9.78,9.8
-59052,30,097,30097,114,167,1090448041,1087788711,139,321,1802881576,1799070966,3651,2148,4822644149,4804957748,82.01,52.02,60.48,60.46,3.12,7.77,22.61,22.64
-59053,30,059,30059,188,265,1477534737,1474678441,354,299,1527213862,1524283190,1891,1432,6202403181,6195025766,53.11,88.63,96.75,96.75,9.94,18.51,23.82,23.8
-59053,30,107,30107,166,34,49679125,49604749,354,299,1527213862,1524283190,2168,1197,3699128207,3686057039,46.89,11.37,3.25,3.25,7.66,2.84,1.34,1.35
-59054,30,065,30065,237,140,577876906,577717030,315,184,1678825706,1677555491,4538,2654,4845626714,4838499504,75.24,76.09,34.42,34.44,5.22,5.28,11.93,11.94
-59054,30,087,30087,78,44,1100948800,1099838461,315,184,1678825706,1677555491,9233,4057,13019888347,12976880880,24.76,23.91,65.58,65.56,0.84,1.08,8.46,8.48
-59055,30,097,30097,59,40,637008434,636685509,59,40,637008434,636685509,3651,2148,4822644149,4804957748,100,100,100,100,1.62,1.86,13.21,13.25
-59057,30,095,30095,167,88,445311101,444598398,692,292,684709502,683917985,9117,4803,4673849816,4649935552,24.13,30.14,65.04,65.01,1.83,1.83,9.53,9.56
-59057,30,111,30111,525,204,239398401,239319587,692,292,684709502,683917985,147972,63943,6860960040,6820199333,75.87,69.86,34.96,34.99,0.35,0.32,3.49,3.51
-59058,30,033,30033,50,34,1030240666,1025928744,50,34,1030240666,1025928744,1206,844,12554899329,12109116880,100,100,100,100,4.15,4.03,8.21,8.47
-59059,30,065,30065,146,129,643536821,643514363,146,129,643536821,643514363,4538,2654,4845626714,4838499504,100,100,100,100,3.22,4.86,13.28,13.3
-59061,30,095,30095,272,401,700010351,696829250,272,401,700010351,696829250,9117,4803,4673849816,4649935552,100,100,100,100,2.98,8.35,14.98,14.99
-59062,30,075,30075,35,32,340689995,340563545,35,32,340689995,340563545,1743,1022,8541529536,8539962788,100,100,100,100,2.01,3.13,3.99,3.99
-59063,30,095,30095,2058,841,182623355,180362409,2058,841,182623355,180362409,9117,4803,4673849816,4649935552,100,100,100,100,22.57,17.51,3.91,3.88
-59064,30,003,30003,31,11,211023334,210879281,284,132,390597082,386415629,12865,4695,12987780679,12938187715,10.92,8.33,54.03,54.57,0.24,0.23,1.62,1.63
-59064,30,111,30111,253,121,179573748,175536348,284,132,390597082,386415629,147972,63943,6860960040,6820199333,89.08,91.67,45.97,45.43,0.17,0.19,2.62,2.57
-59065,30,067,30067,197,151,154715128,152909539,197,151,154715128,152909539,15636,9375,7286911413,7259898824,100,100,100,100,1.26,1.61,2.12,2.11
-59066,30,003,30003,701,236,777039361,776951938,701,236,777039361,776951938,12865,4695,12987780679,12938187715,100,100,100,100,5.45,5.03,5.98,6.01
-59067,30,095,30095,221,137,902584741,899205514,221,137,902584741,899205514,9117,4803,4673849816,4649935552,100,100,100,100,2.42,2.85,19.31,19.34
-59068,30,009,30009,3580,2913,1381063673,1366767095,3580,2913,1381063673,1366767095,10078,6441,5340976411,5306336324,100,100,100,100,35.52,45.23,25.86,25.76
-59069,30,095,30095,344,181,450086864,447951586,461,263,908537223,906035027,9117,4803,4673849816,4649935552,74.62,68.82,49.54,49.44,3.77,3.77,9.63,9.63
-59069,30,097,30097,117,82,458450359,458083441,461,263,908537223,906035027,3651,2148,4822644149,4804957748,25.38,31.18,50.46,50.56,3.2,3.82,9.51,9.53
-59070,30,009,30009,1047,651,408746515,405868921,1047,651,408746515,405868921,10078,6441,5340976411,5306336324,100,100,100,100,10.39,10.11,7.65,7.65
-59071,30,009,30009,104,239,256668073,255969478,104,239,256668073,255969478,10078,6441,5340976411,5306336324,100,100,100,100,1.03,3.71,4.81,4.82
-59072,30,065,30065,4098,2348,2360001202,2354265153,4140,2366,2596132719,2590049840,4538,2654,4845626714,4838499504,98.99,99.24,90.9,90.9,90.3,88.47,48.7,48.66
-59072,30,069,30069,42,18,236131517,235784687,4140,2366,2596132719,2590049840,494,324,4335132954,4286096708,1.01,0.76,9.1,9.1,8.5,5.56,5.45,5.5
-59074,30,037,30037,490,261,1560203449,1559932913,490,261,1560203449,1559932913,884,476,3046710741,3044122460,100,100,100,100,55.43,54.83,51.21,51.24
-59075,30,003,30003,289,141,754536369,751221687,289,141,754536369,751221687,12865,4695,12987780679,12938187715,100,100,100,100,2.25,3,5.81,5.81
-59076,30,103,30103,33,22,30794313,30794313,33,22,30794313,30794313,718,422,2548609411,2531448178,100,100,100,100,4.6,5.21,1.21,1.22
-59077,30,033,30033,79,58,1411854715,1410654841,79,58,1411854715,1410654841,1206,844,12554899329,12109116880,100,100,100,100,6.55,6.87,11.25,11.65
-59078,30,037,30037,13,6,43785236,43785236,145,146,647884125,639814201,884,476,3046710741,3044122460,8.97,4.11,6.76,6.84,1.47,1.26,1.44,1.44
-59078,30,107,30107,132,140,604098889,596028965,145,146,647884125,639814201,2168,1197,3699128207,3686057039,91.03,95.89,93.24,93.16,6.09,11.7,16.33,16.17
-59079,30,111,30111,3481,1354,918576582,917152356,3481,1354,918576582,917152356,147972,63943,6860960040,6820199333,100,100,100,100,2.35,2.12,13.39,13.45
-59081,30,067,30067,9,98,2317387,2317387,9,98,2317387,2317387,15636,9375,7286911413,7259898824,100,100,100,100,0.06,1.05,0.03,0.03
-59082,30,067,30067,39,18,793080,753595,39,18,793080,753595,15636,9375,7286911413,7259898824,100,100,100,100,0.25,0.19,0.01,0.01
-59085,30,107,30107,88,88,764475843,760080381,88,88,764475843,760080381,2168,1197,3699128207,3686057039,100,100,100,100,4.06,7.35,20.67,20.62
-59086,30,031,30031,71,42,67559785,67346658,727,489,1244016756,1241215140,89513,42289,6817021199,6740934490,9.77,8.59,5.43,5.43,0.08,0.1,0.99,1
-59086,30,059,30059,6,44,73610529,73610529,727,489,1244016756,1241215140,1891,1432,6202403181,6195025766,0.83,9,5.92,5.93,0.32,3.07,1.19,1.19
-59086,30,067,30067,650,403,1102846442,1100257953,727,489,1244016756,1241215140,15636,9375,7286911413,7259898824,89.41,82.41,88.65,88.64,4.16,4.3,15.13,15.16
-59087,30,069,30069,436,295,3885456753,3837677535,436,295,3885456753,3837677535,494,324,4335132954,4286096708,100,100,100,100,88.26,91.05,89.63,89.54
-59088,30,111,30111,1373,613,858868958,853308771,1373,613,858868958,853308771,147972,63943,6860960040,6820199333,100,100,100,100,0.93,0.96,12.52,12.51
-59089,30,003,30003,467,153,642343275,642214330,467,153,642343275,642214330,12865,4695,12987780679,12938187715,100,100,100,100,3.63,3.26,4.95,4.96
-59101,30,003,30003,22,8,35360102,35223981,39562,17387,1325640854,1318340900,12865,4695,12987780679,12938187715,0.06,0.05,2.67,2.67,0.17,0.17,0.27,0.27
-59101,30,111,30111,39540,17379,1290280752,1283116919,39562,17387,1325640854,1318340900,147972,63943,6860960040,6820199333,99.94,99.95,97.33,97.33,26.72,27.18,18.81,18.81
-59102,30,111,30111,46564,21613,38267476,38267476,46564,21613,38267476,38267476,147972,63943,6860960040,6820199333,100,100,100,100,31.47,33.8,0.56,0.56
-59105,30,111,30111,29624,11855,271854988,269289047,29624,11855,271854988,269289047,147972,63943,6860960040,6820199333,100,100,100,100,20.02,18.54,3.96,3.95
-59106,30,111,30111,12375,4798,251128934,251089534,12375,4798,251128934,251089534,147972,63943,6860960040,6820199333,100,100,100,100,8.36,7.5,3.66,3.68
-59201,30,055,30055,263,154,1388993171,1370964060,5100,2048,3593921096,3567261549,1734,1008,6948481206,6845784269,5.16,7.52,38.65,38.43,15.17,15.28,19.99,20.03
-59201,30,085,30085,4671,1827,1852846327,1846670668,5100,2048,3593921096,3567261549,10425,4063,6136762742,6098886500,91.59,89.21,51.56,51.77,44.81,44.97,30.19,30.28
-59201,30,105,30105,166,67,352081598,349626821,5100,2048,3593921096,3567261549,7369,4879,13109976050,12757810954,3.25,3.27,9.8,9.8,2.25,1.37,2.69,2.74
-59211,30,091,30091,125,97,276170224,276106262,125,97,276170224,276106262,3384,2089,4418759673,4343616730,100,100,100,100,3.69,4.64,6.25,6.36
-59212,30,085,30085,373,187,800635362,791637677,373,187,800635362,791637677,10425,4063,6136762742,6098886500,100,100,100,100,3.58,4.6,13.05,12.98
-59213,30,083,30083,75,41,388933182,383440838,772,283,1150829911,1140011975,9746,4550,5447487494,5397905671,9.72,14.49,33.8,33.63,0.77,0.9,7.14,7.1
-59213,30,085,30085,697,242,761896729,756571137,772,283,1150829911,1140011975,10425,4063,6136762742,6098886500,90.28,85.51,66.2,66.37,6.69,5.96,12.42,12.41
-59214,30,055,30055,120,73,905678410,887417572,120,73,905678410,887417572,1734,1008,6948481206,6845784269,100,100,100,100,6.92,7.24,13.03,12.96
-59215,30,021,30021,44,26,307450119,307386352,1135,606,3455701700,3436097462,8966,4233,6172384352,6143100615,3.88,4.29,8.9,8.95,0.49,0.61,4.98,5
-59215,30,055,30055,1091,580,3148251581,3128711110,1135,606,3455701700,3436097462,1734,1008,6948481206,6845784269,96.12,95.71,91.1,91.05,62.92,57.54,45.31,45.7
-59217,30,083,30083,100,42,9007765,9007765,100,42,9007765,9007765,9746,4550,5447487494,5397905671,100,100,100,100,1.03,0.92,0.17,0.17
-59218,30,083,30083,52,34,431835426,430472352,927,449,852086429,848197656,9746,4550,5447487494,5397905671,5.61,7.57,50.68,50.75,0.53,0.75,7.93,7.97
-59218,30,085,30085,875,415,420251003,417725304,927,449,852086429,848197656,10425,4063,6136762742,6098886500,94.39,92.43,49.32,49.25,8.39,10.21,6.85,6.85
-59219,30,091,30091,199,120,672945654,661650920,199,120,672945654,661650920,3384,2089,4418759673,4343616730,100,100,100,100,5.88,5.74,15.23,15.23
-59221,30,083,30083,1241,571,639181348,629152420,1658,795,748825125,733263938,9746,4550,5447487494,5397905671,74.85,71.82,85.36,85.8,12.73,12.55,11.73,11.66
-59221,38,053,38053,417,224,109643777,104111518,1658,795,748825125,733263938,6360,3090,7409374251,7149203878,25.15,28.18,14.64,14.2,6.56,7.25,1.48,1.46
-59222,30,019,30019,221,147,611772905,611581071,221,147,611772905,611581071,1751,1111,3694616113,3693594413,100,100,100,100,12.62,13.23,16.56,16.56
-59223,30,055,30055,54,70,579581768,533449198,364,290,639428891,575199149,1734,1008,6948481206,6845784269,14.84,24.14,90.64,92.74,3.11,6.94,8.34,7.79
-59223,30,105,30105,310,220,59847123,41749951,364,290,639428891,575199149,7369,4879,13109976050,12757810954,85.16,75.86,9.36,7.26,4.21,4.51,0.46,0.33
-59225,30,105,30105,560,203,798472490,794513020,560,203,798472490,794513020,7369,4879,13109976050,12757810954,100,100,100,100,7.6,4.16,6.09,6.23
-59226,30,085,30085,410,255,845019572,841476083,410,255,845019572,841476083,10425,4063,6136762742,6098886500,100,100,100,100,3.93,6.28,13.77,13.8
-59230,30,105,30105,4490,2385,4152812936,3997652749,4490,2385,4152812936,3997652749,7369,4879,13109976050,12757810954,100,100,100,100,60.93,48.88,31.68,31.33
-59231,30,105,30105,264,1001,5165801,5165801,264,1001,5165801,5165801,7369,4879,13109976050,12757810954,100,100,100,100,3.58,20.52,0.04,0.04
-59240,30,105,30105,21,17,104518380,104518380,21,17,104518380,104518380,7369,4879,13109976050,12757810954,100,100,100,100,0.28,0.35,0.8,0.82
-59241,30,105,30105,413,240,3431708432,3424980406,413,240,3431708432,3424980406,7369,4879,13109976050,12757810954,100,100,100,100,5.6,4.92,26.18,26.85
-59242,30,091,30091,79,41,137118508,98648002,79,41,137118508,98648002,3384,2089,4418759673,4343616730,100,100,100,100,2.33,1.96,3.1,2.27
-59243,30,083,30083,345,175,992285195,987382385,345,175,992285195,987382385,9746,4550,5447487494,5397905671,100,100,100,100,3.54,3.85,18.22,18.29
-59244,30,105,30105,65,40,513202807,512894356,65,40,513202807,512894356,7369,4879,13109976050,12757810954,100,100,100,100,0.88,0.82,3.91,4.02
-59247,30,091,30091,314,216,399983323,399176104,314,216,399983323,399176104,3384,2089,4418759673,4343616730,100,100,100,100,9.28,10.34,9.05,9.19
-59248,30,105,30105,762,465,1537018823,1524843154,762,465,1537018823,1524843154,7369,4879,13109976050,12757810954,100,100,100,100,10.34,9.53,11.72,11.95
-59250,30,105,30105,198,150,1419160598,1418193172,198,150,1419160598,1418193172,7369,4879,13109976050,12757810954,100,100,100,100,2.69,3.07,10.83,11.12
-59252,30,091,30091,115,96,498548478,498039081,115,96,498548478,498039081,3384,2089,4418759673,4343616730,100,100,100,100,3.4,4.6,11.28,11.47
-59253,30,019,30019,112,87,660963532,660917420,112,87,660963532,660917420,1751,1111,3694616113,3693594413,100,100,100,100,6.4,7.83,17.89,17.89
-59254,30,091,30091,2026,1125,703831722,703467156,2026,1125,703831722,703467156,3384,2089,4418759673,4343616730,100,100,100,100,59.87,53.85,15.93,16.2
-59255,30,083,30083,56,30,404406617,399506638,3429,1159,1751227493,1735019396,9746,4550,5447487494,5397905671,1.63,2.59,23.09,23.03,0.57,0.66,7.42,7.4
-59255,30,085,30085,3373,1129,1346820876,1335512758,3429,1159,1751227493,1735019396,10425,4063,6136762742,6098886500,98.37,97.41,76.91,76.97,32.35,27.79,21.95,21.9
-59256,30,091,30091,59,39,164734619,164239119,59,39,164734619,164239119,3384,2089,4418759673,4343616730,100,100,100,100,1.74,1.87,3.73,3.78
-59257,30,091,30091,61,71,397092672,397082173,61,71,397092672,397082173,3384,2089,4418759673,4343616730,100,100,100,100,1.8,3.4,8.99,9.14
-59258,30,085,30085,26,8,109292873,109292873,110,73,465108129,465066518,10425,4063,6136762742,6098886500,23.64,10.96,23.5,23.5,0.25,0.2,1.78,1.79
-59258,30,091,30091,84,65,355815256,355773645,110,73,465108129,465066518,3384,2089,4418759673,4343616730,76.36,89.04,76.5,76.5,2.48,3.11,8.05,8.19
-59259,30,021,30021,304,219,919949187,918948371,348,252,1624863886,1623287493,8966,4233,6172384352,6143100615,87.36,86.9,56.62,56.61,3.39,5.17,14.9,14.96
-59259,30,083,30083,44,33,704914699,704339122,348,252,1624863886,1623287493,9746,4550,5447487494,5397905671,12.64,13.1,43.38,43.39,0.45,0.73,12.94,13.05
-59260,30,019,30019,29,24,391219286,391219286,110,94,894226435,894003842,1751,1111,3694616113,3693594413,26.36,25.53,43.75,43.76,1.66,2.16,10.59,10.59
-59260,30,105,30105,81,70,503007149,502784556,110,94,894226435,894003842,7369,4879,13109976050,12757810954,73.64,74.47,56.25,56.24,1.1,1.43,3.84,3.94
-59261,30,071,30071,481,333,1233565621,1210860763,520,354,1313850726,1291138632,4253,2335,13498707181,13312629334,92.5,94.07,93.89,93.78,11.31,14.26,9.14,9.1
-59261,30,105,30105,39,21,80285105,80277869,520,354,1313850726,1291138632,7369,4879,13109976050,12757810954,7.5,5.93,6.11,6.22,0.53,0.43,0.61,0.63
-59262,30,021,30021,34,20,324469669,324469669,655,306,716389899,712737965,8966,4233,6172384352,6143100615,5.19,6.54,45.29,45.52,0.38,0.47,5.26,5.28
-59262,30,083,30083,621,286,391920230,388268296,655,306,716389899,712737965,9746,4550,5447487494,5397905671,94.81,93.46,54.71,54.48,6.37,6.29,7.19,7.19
-59263,30,019,30019,1349,800,1739488482,1738846633,1349,800,1739488482,1738846633,1751,1111,3694616113,3693594413,100,100,100,100,77.04,72.01,47.08,47.08
-59270,30,083,30083,7212,3338,1485003032,1466335855,7339,3411,2515673126,2493672441,9746,4550,5447487494,5397905671,98.27,97.86,59.03,58.8,74,73.36,27.26,27.16
-59270,38,053,38053,127,73,1030670094,1027336586,7339,3411,2515673126,2493672441,6360,3090,7409374251,7149203878,1.73,2.14,40.97,41.2,2,2.36,13.91,14.37
-59274,30,055,30055,206,131,925976276,925242329,206,131,925976276,925242329,1734,1008,6948481206,6845784269,100,100,100,100,11.88,13,13.33,13.52
-59275,30,091,30091,322,219,812519217,789434268,376,249,1018356857,986681780,3384,2089,4418759673,4343616730,85.64,87.95,79.79,80.01,9.52,10.48,18.39,18.17
-59275,38,023,38023,54,30,205837640,197247512,376,249,1018356857,986681780,2071,1324,3352038967,3265421252,14.36,12.05,20.21,19.99,2.61,2.27,6.14,6.04
-59276,30,019,30019,40,53,291171908,291030003,40,53,291171908,291030003,1751,1111,3694616113,3693594413,100,100,100,100,2.28,4.77,7.88,7.88
-59301,30,017,30017,11349,5374,7076811498,7058469146,11404,5421,8164888589,8145678644,11699,5560,9824387930,9798863306,99.52,99.13,86.67,86.65,97.01,96.65,72.03,72.03
-59301,30,033,30033,13,8,306241933,305920089,11404,5421,8164888589,8145678644,1206,844,12554899329,12109116880,0.11,0.15,3.75,3.76,1.08,0.95,2.44,2.53
-59301,30,075,30075,22,13,165551899,165551899,11404,5421,8164888589,8145678644,1743,1022,8541529536,8539962788,0.19,0.24,2.03,2.03,1.26,1.27,1.94,1.94
-59301,30,087,30087,20,26,616283259,615737510,11404,5421,8164888589,8145678644,9233,4057,13019888347,12976880880,0.18,0.48,7.55,7.56,0.22,0.64,4.73,4.74
-59311,30,011,30011,159,118,2638189397,2630498028,159,118,2638189397,2630498028,1160,810,8672002618,8652506323,100,100,100,100,13.71,14.57,30.42,30.4
-59312,30,033,30033,31,29,650783692,650616229,31,29,650783692,650616229,1206,844,12554899329,12109116880,100,100,100,100,2.57,3.44,5.18,5.37
-59313,30,025,30025,2498,1257,2405588123,2401019577,2498,1257,2405588123,2401019577,2890,1470,4203695964,4197780621,100,100,100,100,86.44,85.51,57.23,57.2
-59314,30,075,30075,112,76,729213890,728919060,112,76,729213890,728919060,1743,1022,8541529536,8539962788,100,100,100,100,6.43,7.44,8.54,8.54
-59315,30,021,30021,150,84,582885882,582689031,150,84,582885882,582689031,8966,4233,6172384352,6143100615,100,100,100,100,1.67,1.98,9.44,9.49
-59317,30,075,30075,1164,672,4769245883,4768566240,1164,672,4769245883,4768566240,1743,1022,8541529536,8539962788,100,100,100,100,66.78,65.75,55.84,55.84
-59318,30,033,30033,136,74,1398116798,1329003931,136,74,1398116798,1329003931,1206,844,12554899329,12109116880,100,100,100,100,11.28,8.77,11.14,10.98
-59322,30,033,30033,85,46,1421055802,1419618896,85,46,1421055802,1419618896,1206,844,12554899329,12109116880,100,100,100,100,7.05,5.45,11.32,11.72
-59323,30,087,30087,2294,1019,160408774,159687236,2294,1019,160408774,159687236,9233,4057,13019888347,12976880880,100,100,100,100,24.85,25.12,1.23,1.23
-59324,30,011,30011,821,578,4163891669,4157045621,821,578,4163891669,4157045621,1160,810,8672002618,8652506323,100,100,100,100,70.78,71.36,48.02,48.04
-59326,30,021,30021,13,7,44010252,35035289,265,152,929067336,918755706,8966,4233,6172384352,6143100615,4.91,4.61,4.74,3.81,0.14,0.17,0.71,0.57
-59326,30,079,30079,252,145,885057084,883720417,265,152,929067336,918755706,1179,673,4513224736,4498127620,95.09,95.39,95.26,96.19,21.37,21.55,19.61,19.65
-59327,30,087,30087,2945,1531,5507783904,5483029503,2945,1531,5507783904,5483029503,9233,4057,13019888347,12976880880,100,100,100,100,31.9,37.74,42.3,42.25
-59330,30,021,30021,8272,3789,3142496175,3123883951,8307,3806,3165656086,3146092717,8966,4233,6172384352,6143100615,99.58,99.55,99.27,99.29,92.26,89.51,50.91,50.85
-59330,30,079,30079,35,17,23159911,22208766,8307,3806,3165656086,3146092717,1179,673,4513224736,4498127620,0.42,0.45,0.73,0.71,2.97,2.53,0.51,0.49
-59332,30,011,30011,146,87,1560155398,1555484360,146,87,1560155398,1555484360,1160,810,8672002618,8652506323,100,100,100,100,12.59,10.74,17.99,17.98
-59333,30,087,30087,21,13,20410237,19229886,21,13,20410237,19229886,9233,4057,13019888347,12976880880,100,100,100,100,0.23,0.32,0.16,0.15
-59336,30,017,30017,141,85,1888139504,1886776431,192,115,2405379217,2403616571,11699,5560,9824387930,9798863306,73.44,73.91,78.5,78.5,1.21,1.53,19.22,19.26
-59336,30,025,30025,51,30,517239713,516840140,192,115,2405379217,2403616571,2890,1470,4203695964,4197780621,26.56,26.09,21.5,21.5,1.76,2.04,12.3,12.31
-59337,30,033,30033,812,595,6336605723,5967374150,812,595,6336605723,5967374150,1206,844,12554899329,12109116880,100,100,100,100,67.33,70.5,50.47,49.28
-59338,30,017,30017,142,57,207420343,202714726,142,57,207420343,202714726,11699,5560,9824387930,9798863306,100,100,100,100,1.21,1.03,2.11,2.07
-59339,30,021,30021,149,88,851123068,850687952,149,88,851123068,850687952,8966,4233,6172384352,6143100615,100,100,100,100,1.66,2.08,13.79,13.85
-59343,30,075,30075,82,42,453711227,453550735,82,42,453711227,453550735,1743,1022,8541529536,8539962788,100,100,100,100,4.7,4.11,5.31,5.31
-59344,30,025,30025,300,168,1164249098,1163398234,300,168,1164249098,1163398234,2890,1470,4203695964,4197780621,100,100,100,100,10.38,11.43,27.7,27.71
-59347,30,017,30017,3,3,174813634,174028162,321,172,2196909738,2183413464,11699,5560,9824387930,9798863306,0.93,1.74,7.96,7.97,0.03,0.05,1.78,1.78
-59347,30,087,30087,318,169,2022096104,2009385302,321,172,2196909738,2183413464,9233,4057,13019888347,12976880880,99.07,98.26,92.04,92.03,3.44,4.17,15.53,15.48
-59349,30,017,30017,21,15,30659328,30465077,913,526,3635667069,3622663514,11699,5560,9824387930,9798863306,2.3,2.85,0.84,0.84,0.18,0.27,0.31,0.31
-59349,30,079,30079,892,511,3605007741,3592198437,913,526,3635667069,3622663514,1179,673,4513224736,4498127620,97.7,97.15,99.16,99.16,75.66,75.93,79.88,79.86
-59351,30,017,30017,43,26,446543623,446409764,200,109,1384499782,1384147889,11699,5560,9824387930,9798863306,21.5,23.85,32.25,32.25,0.37,0.47,4.55,4.56
-59351,30,075,30075,157,83,937956159,937738125,200,109,1384499782,1384147889,1743,1022,8541529536,8539962788,78.5,76.15,67.75,67.75,9.01,8.12,10.98,10.98
-59353,30,109,30109,1017,538,2304897752,2303184548,1017,538,2304897752,2303184548,1017,538,2304897752,2303184548,100,100,100,100,100,100,100,100
-59354,30,025,30025,41,15,116619030,116522670,41,15,116619030,116522670,2890,1470,4203695964,4197780621,100,100,100,100,1.42,1.02,2.77,2.78
-59401,30,013,30013,13774,6749,8802194,8047826,13774,6749,8802194,8047826,81327,37276,7022711675,6988196577,100,100,100,100,16.94,18.11,0.13,0.12
-59404,30,013,30013,26817,11115,687828349,678232933,26867,11142,946164444,936538857,81327,37276,7022711675,6988196577,99.81,99.76,72.7,72.42,32.97,29.82,9.79,9.71
-59404,30,015,30015,50,27,258336095,258305924,26867,11142,946164444,936538857,5813,2879,10351470548,10288696814,0.19,0.24,27.3,27.58,0.86,0.94,2.5,2.51
-59405,30,013,30013,31438,14307,1058561318,1051061831,31438,14307,1058561318,1051061831,81327,37276,7022711675,6988196577,100,100,100,100,38.66,38.38,15.07,15.04
-59410,30,049,30049,641,585,3006534617,2985531186,666,608,3051456075,3028828352,63395,30180,9059039940,8958322731,96.25,96.22,98.53,98.57,1.01,1.94,33.19,33.33
-59410,30,099,30099,25,23,44921458,43297166,666,608,3051456075,3028828352,6073,2892,5937596030,5885423184,3.75,3.78,1.47,1.43,0.41,0.8,0.76,0.74
-59411,30,035,30035,460,467,638122791,619454431,460,467,638122791,619454431,13399,5348,7865598229,7759441299,100,100,100,100,3.43,8.73,8.11,7.98
-59412,30,013,30013,1747,799,994651839,994586429,1747,799,994651839,994586429,81327,37276,7022711675,6988196577,100,100,100,100,2.15,2.14,14.16,14.23
-59414,30,013,30013,904,474,4768166,4311609,904,474,4768166,4311609,81327,37276,7022711675,6988196577,100,100,100,100,1.11,1.27,0.07,0.06
-59416,30,015,30015,69,50,401655911,401333469,337,210,900580303,899259817,5813,2879,10351470548,10288696814,20.47,23.81,44.6,44.63,1.19,1.74,3.88,3.9
-59416,30,073,30073,268,160,498924392,497926348,337,210,900580303,899259817,6153,2659,4247162513,4203194623,79.53,76.19,55.4,55.37,4.36,6.02,11.75,11.85
-59417,30,035,30035,7719,2521,3690940872,3630657266,7719,2521,3690940872,3630657266,13399,5348,7865598229,7759441299,100,100,100,100,57.61,47.14,46.93,46.79
-59418,30,027,30027,21,12,21278836,21278836,95,49,264302266,264290479,11586,5836,11267521918,11240038932,22.11,24.49,8.05,8.05,0.18,0.21,0.19,0.19
-59418,30,045,30045,74,37,243023430,243011643,95,49,264302266,264290479,2072,1336,4844880520,4842813779,77.89,75.51,91.95,91.95,3.57,2.77,5.02,5.02
-59419,30,099,30099,96,61,229239578,217568763,96,61,229239578,217568763,6073,2892,5937596030,5885423184,100,100,100,100,1.58,2.11,3.86,3.7
-59420,30,015,30015,243,94,634118028,633795042,243,94,634118028,633795042,5813,2879,10351470548,10288696814,100,100,100,100,4.18,3.27,6.13,6.16
-59421,30,013,30013,1705,1222,1723986318,1712383580,1831,1441,1809794885,1797424790,81327,37276,7022711675,6988196577,93.12,84.8,95.26,95.27,2.1,3.28,24.55,24.5
-59421,30,049,30049,126,219,85808567,85041210,1831,1441,1809794885,1797424790,63395,30180,9059039940,8958322731,6.88,15.2,4.74,4.73,0.2,0.73,0.95,0.95
-59422,30,099,30099,2643,1338,2788865339,2769366869,2643,1338,2788865339,2769366869,6073,2892,5937596030,5885423184,100,100,100,100,43.52,46.27,46.97,47.05
-59424,30,027,30027,72,42,107993371,107993371,87,53,178127605,178097568,11586,5836,11267521918,11240038932,82.76,79.25,60.63,60.64,0.62,0.72,0.96,0.96
-59424,30,045,30045,15,11,70134234,70104197,87,53,178127605,178097568,2072,1336,4844880520,4842813779,17.24,20.75,39.37,39.36,0.72,0.82,1.45,1.45
-59425,30,073,30073,3690,1697,1329133957,1328232026,3751,1728,1461793509,1460561190,6153,2659,4247162513,4203194623,98.37,98.21,90.92,90.94,59.97,63.82,31.29,31.6
-59425,30,099,30099,61,31,132659552,132329164,3751,1728,1461793509,1460561190,6073,2892,5937596030,5885423184,1.63,1.79,9.08,9.06,1,1.07,2.23,2.25
-59427,30,035,30035,4757,2054,2773818609,2754374815,4757,2054,2773818609,2754374815,13399,5348,7865598229,7759441299,100,100,100,100,35.5,38.41,35.27,35.5
-59430,30,027,30027,434,262,1282848338,1280021639,454,271,1321736979,1318910280,11586,5836,11267521918,11240038932,95.59,96.68,97.06,97.05,3.75,4.49,11.39,11.39
-59430,30,045,30045,20,9,38888641,38888641,454,271,1321736979,1318910280,2072,1336,4844880520,4842813779,4.41,3.32,2.94,2.95,0.97,0.67,0.8,0.8
-59432,30,073,30073,104,75,126854273,126792052,104,75,126854273,126792052,6153,2659,4247162513,4203194623,100,100,100,100,1.69,2.82,2.99,3.02
-59433,30,099,30099,594,323,937078324,936793720,594,323,937078324,936793720,6073,2892,5937596030,5885423184,100,100,100,100,9.78,11.17,15.78,15.92
-59434,30,035,30035,463,306,762715957,754954787,463,306,762715957,754954787,13399,5348,7865598229,7759441299,100,100,100,100,3.46,5.72,9.7,9.73
-59436,30,099,30099,1827,828,698610241,680381308,1827,828,698610241,680381308,6073,2892,5937596030,5885423184,100,100,100,100,30.08,28.63,11.77,11.56
-59440,30,013,30013,70,32,133938280,131540102,175,92,444718730,441290856,81327,37276,7022711675,6988196577,40,34.78,30.12,29.81,0.09,0.09,1.91,1.88
-59440,30,015,30015,105,60,310780450,309750754,175,92,444718730,441290856,5813,2879,10351470548,10288696814,60,65.22,69.88,70.19,1.81,2.08,3,3.01
-59441,30,027,30027,82,96,641090491,640945299,82,96,641090491,640945299,11586,5836,11267521918,11240038932,100,100,100,100,0.71,1.64,5.69,5.7
-59442,30,015,30015,1789,1008,2224001652,2201869582,1789,1008,2224001652,2201869582,5813,2879,10351470548,10288696814,100,100,100,100,30.78,35.01,21.48,21.4
-59443,30,013,30013,566,241,151104550,151075827,612,261,161473614,161444891,81327,37276,7022711675,6988196577,92.48,92.34,93.58,93.58,0.7,0.65,2.15,2.16
-59443,30,099,30099,46,20,10369064,10369064,612,261,161473614,161444891,6073,2892,5937596030,5885423184,7.52,7.66,6.42,6.42,0.76,0.69,0.17,0.18
-59444,30,051,30051,238,34,69893646,69620747,355,111,865168177,861455504,2339,1043,3748169660,3703800609,67.04,30.63,8.08,8.08,10.18,3.26,1.86,1.88
-59444,30,101,30101,117,77,795274531,791834757,355,111,865168177,861455504,5324,2336,5039510308,4961503682,32.96,69.37,91.92,91.92,2.2,3.3,15.78,15.96
-59446,30,015,30015,564,329,1851801368,1834884977,564,329,1851801368,1834884977,5813,2879,10351470548,10288696814,100,100,100,100,9.7,11.43,17.89,17.83
-59447,30,045,30045,250,165,1006044056,1005734303,250,165,1006044056,1005734303,2072,1336,4844880520,4842813779,100,100,100,100,12.07,12.35,20.77,20.77
-59448,30,073,30073,743,206,296155462,292400032,743,206,296155462,292400032,6153,2659,4247162513,4203194623,100,100,100,100,12.08,7.75,6.97,6.96
-59450,30,015,30015,467,250,990507303,987406169,467,250,990507303,987406169,5813,2879,10351470548,10288696814,100,100,100,100,8.03,8.68,9.57,9.6
-59451,30,027,30027,241,132,602342586,601694518,241,132,602342586,601694518,11586,5836,11267521918,11240038932,100,100,100,100,2.08,2.26,5.35,5.35
-59452,30,045,30045,525,376,1073901977,1072716337,525,376,1073901977,1072716337,2072,1336,4844880520,4842813779,100,100,100,100,25.34,28.14,22.17,22.15
-59453,30,027,30027,68,44,299705011,299670548,362,220,1150665897,1150616115,11586,5836,11267521918,11240038932,18.78,20,26.05,26.04,0.59,0.75,2.66,2.67
-59453,30,045,30045,17,6,42314899,42314899,362,220,1150665897,1150616115,2072,1336,4844880520,4842813779,4.7,2.73,3.68,3.68,0.82,0.45,0.87,0.87
-59453,30,107,30107,277,170,808645987,808630668,362,220,1150665897,1150616115,2168,1197,3699128207,3686057039,76.52,77.27,70.28,70.28,12.78,14.2,21.86,21.94
-59454,30,101,30101,201,122,331428031,324132910,201,122,331428031,324132910,5324,2336,5039510308,4961503682,100,100,100,100,3.78,5.22,6.58,6.53
-59456,30,051,30051,37,28,466063622,432282336,233,91,1022265601,970675939,2339,1043,3748169660,3703800609,15.88,30.77,45.59,44.53,1.58,2.68,12.43,11.67
-59456,30,073,30073,20,14,108167519,108065180,233,91,1022265601,970675939,6153,2659,4247162513,4203194623,8.58,15.38,10.58,11.13,0.33,0.53,2.55,2.57
-59456,30,101,30101,176,49,448034460,430328423,233,91,1022265601,970675939,5324,2336,5039510308,4961503682,75.54,53.85,43.83,44.33,3.31,2.1,8.89,8.67
-59457,30,027,30027,9105,4448,2799758909,2798595405,9105,4448,2799758909,2798595405,11586,5836,11267521918,11240038932,100,100,100,100,78.59,76.22,24.85,24.9
-59460,30,015,30015,233,150,724586465,718370075,233,150,724586465,718370075,5813,2879,10351470548,10288696814,100,100,100,100,4.01,5.21,7,6.98
-59461,30,051,30051,33,19,137375938,137172743,33,19,137375938,137172743,2339,1043,3748169660,3703800609,100,100,100,100,1.41,1.82,3.67,3.7
-59462,30,045,30045,168,102,359544497,359363271,168,102,359544497,359363271,2072,1336,4844880520,4842813779,100,100,100,100,8.11,7.63,7.42,7.42
-59463,30,013,30013,169,379,567095074,567095074,169,391,590254687,590254687,81327,37276,7022711675,6988196577,100,96.93,96.08,96.08,0.21,1.02,8.08,8.12
-59463,30,045,30045,0,12,23159613,23159613,169,391,590254687,590254687,2072,1336,4844880520,4842813779,0,3.07,3.92,3.92,0,0.9,0.48,0.48
-59464,30,027,30027,480,227,522488352,522268029,500,236,566345583,566102848,11586,5836,11267521918,11240038932,96,96.19,92.26,92.26,4.14,3.89,4.64,4.65
-59464,30,045,30045,20,9,43857231,43834819,500,236,566345583,566102848,2072,1336,4844880520,4842813779,4,3.81,7.74,7.74,0.97,0.67,0.91,0.91
-59465,30,013,30013,52,185,112713362,112713362,52,185,112713362,112713362,81327,37276,7022711675,6988196577,100,100,100,100,0.06,0.5,1.6,1.61
-59466,30,101,30101,97,63,398591767,395884573,97,63,398591767,395884573,5324,2336,5039510308,4961503682,100,100,100,100,1.82,2.7,7.91,7.98
-59467,30,099,30099,259,44,636871957,636450987,259,44,636871957,636450987,6073,2892,5937596030,5885423184,100,100,100,100,4.26,1.52,10.73,10.81
-59468,30,013,30013,85,41,204175513,204105154,571,250,652843490,652658757,81327,37276,7022711675,6988196577,14.89,16.4,31.27,31.27,0.1,0.11,2.91,2.92
-59468,30,099,30099,486,209,448667977,448553603,571,250,652843490,652658757,6073,2892,5937596030,5885423184,85.11,83.6,68.73,68.73,8,7.23,7.56,7.62
-59469,30,045,30045,157,111,264370402,264370402,157,111,264370402,264370402,2072,1336,4844880520,4842813779,100,100,100,100,7.58,8.31,5.46,5.46
-59471,30,027,30027,295,166,2457201656,2449361285,295,166,2457201656,2449361285,11586,5836,11267521918,11240038932,100,100,100,100,2.55,2.84,21.81,21.79
-59472,30,013,30013,657,284,104485099,104444617,657,284,104485099,104444617,81327,37276,7022711675,6988196577,100,100,100,100,0.81,0.76,1.49,1.49
-59474,30,101,30101,3820,1602,1854526397,1829373767,3820,1602,1854526397,1829373767,5324,2336,5039510308,4961503682,100,100,100,100,71.75,68.58,36.8,36.87
-59477,30,013,30013,521,200,187243190,187046158,521,200,187243190,187046158,81327,37276,7022711675,6988196577,100,100,100,100,0.64,0.54,2.67,2.68
-59479,30,045,30045,826,498,1679641540,1679315654,826,498,1679641540,1679315654,2072,1336,4844880520,4842813779,100,100,100,100,39.86,37.28,34.67,34.68
-59480,30,013,30013,383,205,633175471,633140976,383,205,633175471,633140976,81327,37276,7022711675,6988196577,100,100,100,100,0.47,0.55,9.02,9.06
-59482,30,101,30101,802,329,863917840,844670760,802,329,863917840,844670760,5324,2336,5039510308,4961503682,100,100,100,100,15.06,14.08,17.14,17.02
-59483,30,013,30013,530,230,270704043,270589748,530,230,270704043,270589748,81327,37276,7022711675,6988196577,100,100,100,100,0.65,0.62,3.85,3.87
-59484,30,101,30101,111,94,347737282,345278492,111,94,347737282,345278492,5324,2336,5039510308,4961503682,100,100,100,100,2.08,4.02,6.9,6.96
-59485,30,013,30013,705,269,53725657,52070369,705,269,53725657,52070369,81327,37276,7022711675,6988196577,100,100,100,100,0.87,0.72,0.77,0.75
-59486,30,073,30073,1328,506,1457202372,1419110216,1328,506,1457202372,1419110216,6153,2659,4247162513,4203194623,100,100,100,100,21.58,19.03,34.31,33.76
-59487,30,013,30013,1204,544,125753252,125750982,1240,559,136065792,136063522,81327,37276,7022711675,6988196577,97.1,97.32,92.42,92.42,1.48,1.46,1.79,1.8
-59487,30,099,30099,36,15,10312540,10312540,1240,559,136065792,136063522,6073,2892,5937596030,5885423184,2.9,2.68,7.58,7.58,0.59,0.52,0.17,0.18
-59489,30,027,30027,396,212,1649922763,1636049440,396,212,1649922763,1636049440,11586,5836,11267521918,11240038932,100,100,100,100,3.42,3.63,14.64,14.56
-59501,30,041,30041,12638,5863,3353790310,3330702440,12638,5863,3353790310,3330702440,16096,7250,7552467496,7508258549,100,100,100,100,78.52,80.87,44.41,44.36
-59520,30,015,30015,1030,585,2820600321,2808258596,1030,585,2820600321,2808258596,5813,2879,10351470548,10288696814,100,100,100,100,17.72,20.32,27.25,27.29
-59521,30,015,30015,1263,326,135082955,134722226,3475,1002,764021450,763283487,5813,2879,10351470548,10288696814,36.35,32.53,17.68,17.65,21.73,11.32,1.3,1.31
-59521,30,041,30041,2212,676,628938495,628561261,3475,1002,764021450,763283487,16096,7250,7552467496,7508258549,63.65,67.47,82.32,82.35,13.74,9.32,8.33,8.37
-59522,30,051,30051,1755,749,2313149917,2303778045,1755,749,2313149917,2303778045,2339,1043,3748169660,3703800609,100,100,100,100,75.03,71.81,61.71,62.2
-59523,30,005,30005,2287,1180,3544177102,3531900257,2287,1180,3544177102,3531900257,6491,2843,10978380258,10949294445,100,100,100,100,35.23,41.51,32.28,32.26
-59524,30,005,30005,328,119,308116903,307855787,663,313,1876399866,1866138297,6491,2843,10978380258,10949294445,49.47,38.02,16.42,16.5,5.05,4.19,2.81,2.81
-59524,30,071,30071,335,194,1568282963,1558282510,663,313,1876399866,1866138297,4253,2335,13498707181,13312629334,50.53,61.98,83.58,83.5,7.88,8.31,11.62,11.71
-59525,30,041,30041,384,149,869561137,866095954,384,149,869561137,866095954,16096,7250,7552467496,7508258549,100,100,100,100,2.39,2.06,11.51,11.54
-59526,30,005,30005,2435,936,2024466371,2021830157,2435,936,2024466371,2021830157,6491,2843,10978380258,10949294445,100,100,100,100,37.51,32.92,18.44,18.47
-59527,30,005,30005,974,331,547798228,545286062,974,331,547798228,545286062,6491,2843,10978380258,10949294445,100,100,100,100,15.01,11.64,4.99,4.98
-59528,30,041,30041,208,130,393639410,393506461,208,130,393639410,393506461,16096,7250,7552467496,7508258549,100,100,100,100,1.29,1.79,5.21,5.24
-59529,30,005,30005,163,88,1076912021,1076248703,163,88,1076912021,1076248703,6491,2843,10978380258,10949294445,100,100,100,100,2.51,3.1,9.81,9.83
-59530,30,041,30041,99,92,634368202,633991585,99,92,634368202,633991585,16096,7250,7552467496,7508258549,100,100,100,100,0.62,1.27,8.4,8.44
-59531,30,041,30041,4,6,55879987,55867129,241,189,589895270,589635967,16096,7250,7552467496,7508258549,1.66,3.17,9.47,9.47,0.02,0.08,0.74,0.74
-59531,30,051,30051,237,183,534015283,533768838,241,189,589895270,589635967,2339,1043,3748169660,3703800609,98.34,96.83,90.53,90.53,10.13,17.55,14.25,14.41
-59532,30,041,30041,180,103,575269678,560943062,180,103,575269678,560943062,16096,7250,7552467496,7508258549,100,100,100,100,1.12,1.42,7.62,7.47
-59535,30,005,30005,74,69,1920280355,1912375421,74,69,1920280355,1912375421,6491,2843,10978380258,10949294445,100,100,100,100,1.14,2.43,17.49,17.47
-59537,30,071,30071,96,36,1166426737,1163709820,96,36,1166426737,1163709820,4253,2335,13498707181,13312629334,100,100,100,100,2.26,1.54,8.64,8.74
-59538,30,071,30071,3037,1553,6788984612,6651252546,3037,1553,6788984612,6651252546,4253,2335,13498707181,13312629334,100,100,100,100,71.41,66.51,50.29,49.96
-59540,30,041,30041,371,231,1041020277,1038590657,371,231,1041020277,1038590657,16096,7250,7552467496,7508258549,100,100,100,100,2.3,3.19,13.78,13.83
-59542,30,005,30005,192,95,632455171,631103630,192,95,632455171,631103630,6491,2843,10978380258,10949294445,100,100,100,100,2.96,3.34,5.76,5.76
-59544,30,071,30071,175,94,1395242375,1390281488,175,94,1395242375,1390281488,4253,2335,13498707181,13312629334,100,100,100,100,4.11,4.03,10.34,10.44
-59545,30,051,30051,39,30,227671254,227177900,39,30,227671254,227177900,2339,1043,3748169660,3703800609,100,100,100,100,1.67,2.88,6.07,6.13
-59546,30,071,30071,129,125,1346204873,1338242207,129,125,1346204873,1338242207,4253,2335,13498707181,13312629334,100,100,100,100,3.03,5.35,9.97,10.05
-59547,30,005,30005,38,23,73530545,73202140,38,23,73530545,73202140,6491,2843,10978380258,10949294445,100,100,100,100,0.59,0.81,0.67,0.67
-59601,30,043,30043,17,8,18850609,18850609,29283,14056,358993725,358316301,11406,5055,4296377796,4289687010,0.06,0.06,5.25,5.26,0.15,0.16,0.44,0.44
-59601,30,049,30049,29266,14048,340143116,339465692,29283,14056,358993725,358316301,63395,30180,9059039940,8958322731,99.94,99.94,94.75,94.74,46.16,46.55,3.75,3.79
-59602,30,049,30049,24285,10411,1436075826,1382134841,24285,10411,1436075826,1382134841,63395,30180,9059039940,8958322731,100,100,100,100,38.31,34.5,15.85,15.43
-59631,30,043,30043,237,157,441103563,441053463,237,157,441103563,441053463,11406,5055,4296377796,4289687010,100,100,100,100,2.08,3.11,10.27,10.28
-59632,30,043,30043,1939,914,1300918745,1297752214,1939,914,1300918745,1297752214,11406,5055,4296377796,4289687010,100,100,100,100,17,18.08,30.28,30.25
-59633,30,049,30049,206,186,578439158,578343021,206,186,578439158,578343021,63395,30180,9059039940,8958322731,100,100,100,100,0.32,0.62,6.39,6.46
-59634,30,043,30043,4819,1859,398717303,398216670,4819,1859,398717303,398216670,11406,5055,4296377796,4289687010,100,100,100,100,42.25,36.78,9.28,9.28
-59635,30,007,30007,230,94,21593260,21593260,7282,2892,187143223,186823787,5612,2695,3208365522,3088667752,3.16,3.25,11.54,11.56,4.1,3.49,0.67,0.7
-59635,30,043,30043,203,73,74801713,74739094,7282,2892,187143223,186823787,11406,5055,4296377796,4289687010,2.79,2.52,39.97,40.01,1.78,1.44,1.74,1.74
-59635,30,049,30049,6849,2725,90748250,90491433,7282,2892,187143223,186823787,63395,30180,9059039940,8958322731,94.05,94.23,48.49,48.44,10.8,9.03,1,1.01
-59636,30,049,30049,12,18,5051796,5051796,12,18,5051796,5051796,63395,30180,9059039940,8958322731,100,100,100,100,0.02,0.06,0.06,0.06
-59638,30,043,30043,617,283,249874550,249874183,617,283,249874550,249874183,11406,5055,4296377796,4289687010,100,100,100,100,5.41,5.6,5.82,5.82
-59639,30,049,30049,1286,1215,1758064052,1753524070,1286,1215,1758064052,1753524070,63395,30180,9059039940,8958322731,100,100,100,100,2.03,4.03,19.41,19.57
-59640,30,049,30049,89,63,8935148,8934724,89,63,8935148,8934724,63395,30180,9059039940,8958322731,100,100,100,100,0.14,0.21,0.1,0.1
-59642,30,059,30059,62,40,323911064,323186459,62,40,323911064,323186459,1891,1432,6202403181,6195025766,100,100,100,100,3.28,2.79,5.22,5.22
-59643,30,007,30007,437,261,541305178,538126297,437,261,541305178,538126297,5612,2695,3208365522,3088667752,100,100,100,100,7.79,9.68,16.87,17.42
-59644,30,007,30007,4036,1972,1975484354,1914160488,4036,1972,1975484354,1914160488,5612,2695,3208365522,3088667752,100,100,100,100,71.92,73.17,61.57,61.97
-59645,30,059,30059,1635,1083,4327346851,4323550337,1635,1083,4327346851,4323550337,1891,1432,6202403181,6195025766,100,100,100,100,86.46,75.63,69.77,69.79
-59647,30,007,30007,334,141,253901054,202243451,334,141,253901054,202243451,5612,2695,3208365522,3088667752,100,100,100,100,5.95,5.23,7.91,6.55
-59648,30,049,30049,635,710,1749239410,1729804758,635,710,1749239410,1729804758,63395,30180,9059039940,8958322731,100,100,100,100,1,2.35,19.31,19.31
-59701,30,043,30043,123,74,547851019,546217719,33147,16176,1173320501,1171365899,11406,5055,4296377796,4289687010,0.37,0.46,46.69,46.63,1.08,1.46,12.75,12.73
-59701,30,093,30093,33024,16102,625469482,625148180,33147,16176,1173320501,1171365899,34200,16717,1862336512,1860847940,99.63,99.54,53.31,53.37,96.56,96.32,33.59,33.59
-59703,30,093,30093,43,18,2321651,2321651,43,18,2321651,2321651,34200,16717,1862336512,1860847940,100,100,100,100,0.13,0.11,0.12,0.12
-59710,30,057,30057,286,264,1566000105,1562045333,286,264,1566000105,1562045333,7691,6940,9331190205,9291541248,100,100,100,100,3.72,3.8,16.78,16.81
-59711,30,023,30023,8543,4918,1074914019,1064909367,8933,5592,1617035386,1597568960,9298,5122,1919704060,1907605107,95.63,87.95,66.47,66.66,91.88,96.02,55.99,55.82
-59711,30,039,30039,163,560,381917414,372455640,8933,5592,1617035386,1597568960,3079,2822,4488567585,4473983997,1.82,10.01,23.62,23.31,5.29,19.84,8.51,8.32
-59711,30,093,30093,227,114,160203953,160203953,8933,5592,1617035386,1597568960,34200,16717,1862336512,1860847940,2.54,2.04,9.91,10.03,0.66,0.68,8.6,8.61
-59713,30,077,30077,213,113,426224667,426037156,213,113,426224667,426037156,7027,3105,6041525398,6025327864,100,100,100,100,3.03,3.64,7.05,7.07
-59714,30,031,30031,18182,7462,1155377850,1152621399,18182,7462,1155377850,1152621399,89513,42289,6817021199,6740934490,100,100,100,100,20.31,17.65,16.95,17.1
-59715,30,031,30031,31509,14321,1185714193,1185006690,31567,14370,1198054739,1197347236,89513,42289,6817021199,6740934490,99.82,99.66,98.97,98.97,35.2,33.86,17.39,17.58
-59715,30,067,30067,58,49,12340546,12340546,31567,14370,1198054739,1197347236,15636,9375,7286911413,7259898824,0.18,0.34,1.03,1.03,0.37,0.52,0.17,0.17
-59716,30,031,30031,1358,1417,31357666,31299505,1798,3137,1039168425,1037824419,89513,42289,6817021199,6740934490,75.53,45.17,3.02,3.02,1.52,3.35,0.46,0.46
-59716,30,057,30057,440,1720,1007810759,1006524914,1798,3137,1039168425,1037824419,7691,6940,9331190205,9291541248,24.47,54.83,96.98,96.98,5.72,24.78,10.8,10.83
-59718,30,031,30031,27367,12530,621933379,619007855,27367,12530,621933379,619007855,89513,42289,6817021199,6740934490,100,100,100,100,30.57,29.63,9.12,9.18
-59720,30,057,30057,191,394,952318212,943087834,191,394,952318212,943087834,7691,6940,9331190205,9291541248,100,100,100,100,2.48,5.68,10.21,10.15
-59721,30,043,30043,200,110,506968596,506026410,433,263,667396579,666227336,11406,5055,4296377796,4289687010,46.19,41.83,75.96,75.95,1.75,2.18,11.8,11.8
-59721,30,057,30057,233,153,160427983,160200926,433,263,667396579,666227336,7691,6940,9331190205,9291541248,53.81,58.17,24.04,24.05,3.03,2.2,1.72,1.72
-59722,30,023,30023,218,81,70885707,70885707,5781,2124,950437022,948510205,9298,5122,1919704060,1907605107,3.77,3.81,7.46,7.47,2.34,1.58,3.69,3.72
-59722,30,077,30077,5563,2043,879551315,877624498,5781,2124,950437022,948510205,7027,3105,6041525398,6025327864,96.23,96.19,92.54,92.53,79.17,65.8,14.56,14.57
-59724,30,001,30001,128,110,1516868117,1516778976,128,110,1516868117,1516778976,9246,5273,14431132221,14352738393,100,100,100,100,1.38,2.09,10.51,10.57
-59725,30,001,30001,7959,3850,5265092901,5243187623,7963,3861,5641607912,5619702634,9246,5273,14431132221,14352738393,99.95,99.72,93.33,93.3,86.08,73.01,36.48,36.53
-59725,30,057,30057,4,11,376515011,376515011,7963,3861,5641607912,5619702634,7691,6940,9331190205,9291541248,0.05,0.28,6.67,6.7,0.05,0.16,4.04,4.05
-59727,30,001,30001,39,41,153637711,153401706,221,163,716427358,715549908,9246,5273,14431132221,14352738393,17.65,25.15,21.44,21.44,0.42,0.78,1.06,1.07
-59727,30,093,30093,182,122,562789647,562148202,221,163,716427358,715549908,34200,16717,1862336512,1860847940,82.35,74.85,78.56,78.56,0.53,0.73,30.22,30.21
-59728,30,077,30077,343,229,533596942,533567894,343,229,533596942,533567894,7027,3105,6041525398,6025327864,100,100,100,100,4.88,7.38,8.83,8.86
-59729,30,057,30057,2141,1553,1399587426,1395154676,2141,1553,1399587426,1395154676,7691,6940,9331190205,9291541248,100,100,100,100,27.84,22.38,15,15.02
-59730,30,031,30031,1790,1341,1748176166,1743626459,1790,1341,1748176166,1743626459,89513,42289,6817021199,6740934490,100,100,100,100,2,3.17,25.64,25.87
-59731,30,077,30077,209,123,354643630,354636564,209,123,354643630,354636564,7027,3105,6041525398,6025327864,100,100,100,100,2.97,3.96,5.87,5.89
-59732,30,001,30001,91,69,270884504,270090506,128,101,359251680,358423444,9246,5273,14431132221,14352738393,71.09,68.32,75.4,75.36,0.98,1.31,1.88,1.88
-59732,30,057,30057,37,32,88367176,88332938,128,101,359251680,358423444,7691,6940,9331190205,9291541248,28.91,31.68,24.6,24.64,0.48,0.46,0.95,0.95
-59733,30,077,30077,198,117,470895034,469972792,198,117,470895034,469972792,7027,3105,6041525398,6025327864,100,100,100,100,2.82,3.77,7.79,7.8
-59735,30,057,30057,331,234,452150372,450237960,331,234,452150372,450237960,7691,6940,9331190205,9291541248,100,100,100,100,4.3,3.37,4.85,4.85
-59736,30,001,30001,127,134,1096257740,1094482043,127,134,1096257740,1094482043,9246,5273,14431132221,14352738393,100,100,100,100,1.37,2.54,7.6,7.63
-59739,30,001,30001,340,375,2545266142,2498616532,340,375,2545266142,2498616532,9246,5273,14431132221,14352738393,100,100,100,100,3.68,7.11,17.64,17.41
-59740,30,057,30057,495,357,319825434,303790053,495,357,319825434,303790053,7691,6940,9331190205,9291541248,100,100,100,100,6.44,5.14,3.43,3.27
-59741,30,031,30031,4352,1929,407752001,406300675,4352,1929,407752001,406300675,89513,42289,6817021199,6740934490,100,100,100,100,4.86,4.56,5.98,6.03
-59743,30,001,30001,21,31,84195367,84095021,134,122,212230955,212059927,9246,5273,14431132221,14352738393,15.67,25.41,39.67,39.66,0.23,0.59,0.58,0.59
-59743,30,093,30093,113,91,128035588,127964906,134,122,212230955,212059927,34200,16717,1862336512,1860847940,84.33,74.59,60.33,60.34,0.33,0.54,6.87,6.88
-59745,30,057,30057,134,82,453049277,451780559,134,82,453049277,451780559,7691,6940,9331190205,9291541248,100,100,100,100,1.74,1.18,4.86,4.86
-59746,30,001,30001,92,193,420996146,420190582,92,193,420996146,420190582,9246,5273,14431132221,14352738393,100,100,100,100,1,3.66,2.92,2.93
-59747,30,057,30057,159,143,150143156,149990805,159,143,150143156,149990805,7691,6940,9331190205,9291541248,100,100,100,100,2.07,2.06,1.61,1.61
-59748,30,093,30093,254,102,52593601,52593601,254,102,52593601,52593601,34200,16717,1862336512,1860847940,100,100,100,100,0.74,0.61,2.82,2.83
-59749,30,057,30057,1513,907,513217405,512857630,1513,907,513217405,512857630,7691,6940,9331190205,9291541248,100,100,100,100,19.67,13.07,5.5,5.52
-59750,30,093,30093,309,142,174657215,174278403,309,142,174657215,174278403,34200,16717,1862336512,1860847940,100,100,100,100,0.9,0.85,9.38,9.37
-59751,30,057,30057,208,140,600788761,600709592,208,140,600788761,600709592,7691,6940,9331190205,9291541248,100,100,100,100,2.7,2.02,6.44,6.47
-59752,30,007,30007,575,227,416081676,412544256,3431,1583,1014070468,1001000950,5612,2695,3208365522,3088667752,16.76,14.34,41.03,41.21,10.25,8.42,12.97,13.36
-59752,30,031,30031,2855,1353,565849785,556317687,3431,1583,1014070468,1001000950,89513,42289,6817021199,6740934490,83.21,85.47,55.8,55.58,3.19,3.2,8.3,8.25
-59752,30,043,30043,1,3,32139007,32139007,3431,1583,1014070468,1001000950,11406,5055,4296377796,4289687010,0.03,0.19,3.17,3.21,0.01,0.06,0.75,0.75
-59754,30,057,30057,964,556,771654936,771304440,964,556,771654936,771304440,7691,6940,9331190205,9291541248,100,100,100,100,12.53,8.01,8.27,8.3
-59755,30,057,30057,210,200,221579212,221525414,210,200,221579212,221525414,7691,6940,9331190205,9291541248,100,100,100,100,2.73,2.88,2.37,2.38
-59756,30,023,30023,463,48,29882610,29882610,463,48,29882610,29882610,9298,5122,1919704060,1907605107,100,100,100,100,4.98,0.94,1.56,1.57
-59758,30,031,30031,1769,1742,877736607,824943838,1769,1742,877736607,824943838,89513,42289,6817021199,6740934490,100,100,100,100,1.98,4.12,12.88,12.24
-59759,30,043,30043,3250,1574,725152691,724817641,3643,1794,1179173046,1178489848,11406,5055,4296377796,4289687010,89.21,87.74,61.5,61.5,28.49,31.14,16.88,16.9
-59759,30,057,30057,345,194,297754980,297483163,3643,1794,1179173046,1178489848,7691,6940,9331190205,9291541248,9.47,10.81,25.25,25.24,4.49,2.8,3.19,3.2
-59759,30,093,30093,48,26,156265375,156189044,3643,1794,1179173046,1178489848,34200,16717,1862336512,1860847940,1.32,1.45,13.25,13.25,0.14,0.16,8.39,8.39
-59760,30,031,30031,260,152,155563767,154463724,260,152,155563767,154463724,89513,42289,6817021199,6740934490,100,100,100,100,0.29,0.36,2.28,2.29
-59761,30,001,30001,265,274,2234010291,2229948549,265,274,2234010291,2229948549,9246,5273,14431132221,14352738393,100,100,100,100,2.87,5.2,15.48,15.54
-59762,30,001,30001,184,196,843923302,841946855,258,271,1587945026,1583874278,9246,5273,14431132221,14352738393,71.32,72.32,53.15,53.16,1.99,3.72,5.85,5.87
-59762,30,023,30023,74,75,744021724,741927423,258,271,1587945026,1583874278,9298,5122,1919704060,1907605107,28.68,27.68,46.85,46.84,0.8,1.46,38.76,38.89
-59801,30,063,30063,30940,14103,17813786,17620495,30940,14103,17813786,17620495,109299,50106,6781415413,6716936093,100,100,100,100,28.31,28.15,0.26,0.26
-59802,30,063,30063,18407,9143,120879536,119157242,18407,9143,120879536,119157242,109299,50106,6781415413,6716936093,100,100,100,100,16.84,18.25,1.78,1.77
-59803,30,063,30063,16203,6429,207490739,206695382,16203,6429,207490739,206695382,109299,50106,6781415413,6716936093,100,100,100,100,14.82,12.83,3.06,3.08
-59804,30,063,30063,7533,3236,329075324,326145514,7533,3236,329075324,326145514,109299,50106,6781415413,6716936093,100,100,100,100,6.89,6.46,4.85,4.86
-59808,30,063,30063,17904,7792,343926562,339609884,17904,7792,343926562,339609884,109299,50106,6781415413,6716936093,100,100,100,100,16.38,15.55,5.07,5.06
-59820,30,061,30061,707,425,768256775,766043260,1361,768,1033986956,1030541795,4223,2446,3168225521,3158326912,51.95,55.34,74.3,74.33,16.74,17.38,24.25,24.25
-59820,30,063,30063,654,343,265730181,264498535,1361,768,1033986956,1030541795,109299,50106,6781415413,6716936093,48.05,44.66,25.7,25.67,0.6,0.68,3.92,3.94
-59821,30,047,30047,1765,781,308650661,308469559,2377,1040,611149099,610148487,28746,16588,4283107448,3859469950,74.25,75.1,50.5,50.56,6.14,4.71,7.21,7.99
-59821,30,063,30063,583,245,170239646,169420136,2377,1040,611149099,610148487,109299,50106,6781415413,6716936093,24.53,23.56,27.86,27.77,0.53,0.49,2.51,2.52
-59821,30,089,30089,29,14,132258792,132258792,2377,1040,611149099,610148487,11413,6678,7226024790,7149723773,1.22,1.35,21.64,21.68,0.25,0.21,1.83,1.85
-59823,30,063,30063,1561,804,840219407,837290028,1561,804,840219407,837290028,109299,50106,6781415413,6716936093,100,100,100,100,1.43,1.6,12.39,12.47
-59824,30,047,30047,1792,713,246297251,234224646,1792,713,246297251,234224646,28746,16588,4283107448,3859469950,100,100,100,100,6.23,4.3,5.75,6.07
-59825,30,039,30039,206,289,876664996,876579476,2412,1243,1344252403,1341987361,3079,2822,4488567585,4473983997,8.54,23.25,65.22,65.32,6.69,10.24,19.53,19.59
-59825,30,063,30063,2206,954,467587407,465407885,2412,1243,1344252403,1341987361,109299,50106,6781415413,6716936093,91.46,76.75,34.78,34.68,2.02,1.9,6.9,6.93
-59826,30,063,30063,521,682,1152940262,1131889356,521,682,1152940262,1131889356,109299,50106,6781415413,6716936093,100,100,100,100,0.48,1.36,17,16.85
-59827,30,081,30081,300,209,196458791,196102667,300,209,196458791,196102667,40212,19583,6216494650,6192198176,100,100,100,100,0.75,1.07,3.16,3.17
-59828,30,081,30081,5543,2477,432627276,431741740,5543,2477,432627276,431741740,40212,19583,6216494650,6192198176,100,100,100,100,13.78,12.65,6.96,6.97
-59829,30,081,30081,2679,1642,1943483688,1934768009,2679,1642,1943483688,1934768009,40212,19583,6216494650,6192198176,100,100,100,100,6.66,8.38,31.26,31.25
-59830,30,061,30061,146,106,84847755,84847755,146,106,84847755,84847755,4223,2446,3168225521,3158326912,100,100,100,100,3.46,4.33,2.68,2.69
-59831,30,089,30089,454,210,284295553,281317823,454,210,284295553,281317823,11413,6678,7226024790,7149723773,100,100,100,100,3.98,3.14,3.93,3.93
-59832,30,039,30039,765,450,674805369,674120558,765,450,674805369,674120558,3079,2822,4488567585,4473983997,100,100,100,100,24.85,15.95,15.03,15.07
-59833,30,063,30063,1099,472,169084332,168576351,5448,2247,451748926,450222027,109299,50106,6781415413,6716936093,20.17,21.01,37.43,37.44,1.01,0.94,2.49,2.51
-59833,30,081,30081,4349,1775,282664594,281645676,5448,2247,451748926,450222027,40212,19583,6216494650,6192198176,79.83,78.99,62.57,62.56,10.82,9.06,4.55,4.55
-59834,30,063,30063,2240,852,191636171,190288189,2240,852,191636171,190288189,109299,50106,6781415413,6716936093,100,100,100,100,2.05,1.7,2.83,2.83
-59837,30,039,30039,407,224,432984657,432100428,407,224,432984657,432100428,3079,2822,4488567585,4473983997,100,100,100,100,13.22,7.94,9.65,9.66
-59840,30,081,30081,13052,6696,1220903465,1214005677,13052,6696,1220903465,1214005677,40212,19583,6216494650,6192198176,100,100,100,100,32.46,34.19,19.64,19.61
-59841,30,081,30081,917,194,3358313,3354738,917,194,3358313,3354738,40212,19583,6216494650,6192198176,100,100,100,100,2.28,0.99,0.05,0.05
-59842,30,061,30061,90,70,332118538,331826944,90,70,332118538,331826944,4223,2446,3168225521,3158326912,100,100,100,100,2.13,2.86,10.48,10.51
-59843,30,077,30077,260,244,962151561,957772847,260,244,962151561,957772847,7027,3105,6041525398,6025327864,100,100,100,100,3.7,7.86,15.93,15.9
-59844,30,089,30089,736,383,318235127,313096431,736,383,318235127,313096431,11413,6678,7226024790,7149723773,100,100,100,100,6.45,5.74,4.4,4.38
-59845,30,029,30029,21,14,193700610,193700610,1186,760,1186775247,1180427260,90928,46963,13614114813,13176979222,1.77,1.84,16.32,16.41,0.02,0.03,1.42,1.47
-59845,30,047,30047,46,35,212877609,212264940,1186,760,1186775247,1180427260,28746,16588,4283107448,3859469950,3.88,4.61,17.94,17.98,0.16,0.21,4.97,5.5
-59845,30,089,30089,1119,711,780197028,774461710,1186,760,1186775247,1180427260,11413,6678,7226024790,7149723773,94.35,93.55,65.74,65.61,9.8,10.65,10.8,10.83
-59846,30,063,30063,1617,741,534253766,533574357,1617,741,534253766,533574357,109299,50106,6781415413,6716936093,100,100,100,100,1.48,1.48,7.88,7.94
-59847,16,049,16049,52,43,189749822,189594210,5658,2290,928957037,927868047,16267,8744,22023575681,21956239945,0.92,1.88,20.43,20.43,0.32,0.49,0.86,0.86
-59847,30,063,30063,5606,2247,739207215,738273837,5658,2290,928957037,927868047,109299,50106,6781415413,6716936093,99.08,98.12,79.57,79.57,5.13,4.48,10.9,10.99
-59848,30,089,30089,106,52,92628323,91559044,106,52,92628323,91559044,11413,6678,7226024790,7149723773,100,100,100,100,0.93,0.78,1.28,1.28
-59851,30,063,30063,173,82,620752,558856,173,82,620752,558856,109299,50106,6781415413,6716936093,100,100,100,100,0.16,0.16,0.01,0.01
-59853,30,089,30089,699,481,690371171,674742915,699,481,690371171,674742915,11413,6678,7226024790,7149723773,100,100,100,100,6.12,7.2,9.55,9.44
-59854,30,077,30077,239,226,964369065,958041043,239,226,964369065,958041043,7027,3105,6041525398,6025327864,100,100,100,100,3.4,7.28,15.96,15.9
-59855,30,047,30047,957,363,1869748,1869748,957,363,1869748,1869748,28746,16588,4283107448,3859469950,100,100,100,100,3.33,2.19,0.04,0.05
-59856,30,089,30089,347,256,210567923,207072159,347,256,210567923,207072159,11413,6678,7226024790,7149723773,100,100,100,100,3.04,3.83,2.91,2.9
-59858,30,039,30039,1538,1299,2122195149,2118727895,1538,1299,2122195149,2118727895,3079,2822,4488567585,4473983997,100,100,100,100,49.95,46.03,47.28,47.36
-59859,30,089,30089,3270,1776,1808310925,1796271298,3270,1776,1808310925,1796271298,11413,6678,7226024790,7149723773,100,100,100,100,28.65,26.59,25.02,25.12
-59860,30,047,30047,9913,6461,780473883,628839920,9913,6461,780473883,628839920,28746,16588,4283107448,3859469950,100,100,100,100,34.48,38.95,18.22,16.29
-59863,30,047,30047,76,53,32059454,31974522,76,53,32059454,31974522,28746,16588,4283107448,3859469950,100,100,100,100,0.26,0.32,0.75,0.83
-59864,30,047,30047,6752,2753,497930070,490635567,6752,2753,497930070,490635567,28746,16588,4283107448,3859469950,100,100,100,100,23.49,16.6,11.63,12.71
-59865,30,047,30047,3185,1336,409287891,404780607,3185,1336,409287891,404780607,28746,16588,4283107448,3859469950,100,100,100,100,11.08,8.05,9.56,10.49
-59866,30,061,30061,943,588,590706228,588350667,943,588,590706228,588350667,4223,2446,3168225521,3158326912,100,100,100,100,22.33,24.04,18.64,18.63
-59867,30,061,30061,28,45,151364796,151267396,28,45,151364796,151267396,4223,2446,3168225521,3158326912,100,100,100,100,0.66,1.84,4.78,4.79
-59868,30,063,30063,2052,1981,446790235,427628561,2054,1991,487836761,468659168,109299,50106,6781415413,6716936093,99.9,99.5,91.59,91.25,1.88,3.95,6.59,6.37
-59868,30,077,30077,2,10,41046526,41030607,2054,1991,487836761,468659168,7027,3105,6041525398,6025327864,0.1,0.5,8.41,8.75,0.03,0.32,0.68,0.68
-59870,30,081,30081,9617,4444,660619496,657466584,9617,4444,660619496,657466584,40212,19583,6216494650,6192198176,100,100,100,100,23.92,22.69,10.63,10.62
-59871,30,081,30081,218,343,869487857,868010071,218,343,869487857,868010071,40212,19583,6216494650,6192198176,100,100,100,100,0.54,1.75,13.99,14.02
-59872,30,061,30061,2309,1212,1240931429,1235990890,2309,1212,1240931429,1235990890,4223,2446,3168225521,3158326912,100,100,100,100,54.68,49.55,39.17,39.13
-59873,30,089,30089,3085,1865,1970543738,1959419268,3085,1865,1970543738,1959419268,11413,6678,7226024790,7149723773,100,100,100,100,27.03,27.93,27.27,27.41
-59874,30,089,30089,1568,930,938616210,919524333,1568,930,938616210,919524333,11413,6678,7226024790,7149723773,100,100,100,100,13.74,13.93,12.99,12.86
-59875,30,081,30081,3537,1803,336584530,334868360,3537,1803,336584530,334868360,40212,19583,6216494650,6192198176,100,100,100,100,8.8,9.21,5.41,5.41
-59901,30,029,30029,49693,22002,1203813410,1170968819,49693,22002,1203813410,1170968819,90928,46963,13614114813,13176979222,100,100,100,100,54.65,46.85,8.84,8.89
-59910,30,047,30047,356,419,214394729,143474039,356,419,214394729,143474039,28746,16588,4283107448,3859469950,100,100,100,100,1.24,2.53,5.01,3.72
-59911,30,029,30029,5037,3688,213243892,187362368,7678,5995,1120325477,1016258548,90928,46963,13614114813,13176979222,65.6,61.52,19.03,18.44,5.54,7.85,1.57,1.42
-59911,30,047,30047,2641,2307,907081585,828896180,7678,5995,1120325477,1016258548,28746,16588,4283107448,3859469950,34.4,38.48,80.97,81.56,9.19,13.91,21.18,21.48
-59912,30,029,30029,13499,6048,369326338,363216876,13499,6048,369326338,363216876,90928,46963,13614114813,13176979222,100,100,100,100,14.85,12.88,2.71,2.76
-59913,30,029,30029,675,374,148686735,148002464,675,374,148686735,148002464,90928,46963,13614114813,13176979222,100,100,100,100,0.74,0.8,1.09,1.12
-59914,30,047,30047,234,242,54486388,36072427,234,242,54486388,36072427,28746,16588,4283107448,3859469950,100,100,100,100,0.81,1.46,1.27,0.93
-59915,30,047,30047,403,326,96726612,87069295,403,326,96726612,87069295,28746,16588,4283107448,3859469950,100,100,100,100,1.4,1.97,2.26,2.26
-59916,30,029,30029,130,389,271496827,270386370,130,389,271496827,270386370,90928,46963,13614114813,13176979222,100,100,100,100,0.14,0.83,1.99,2.05
-59917,30,053,30053,4225,2387,673786877,668804910,4225,2387,673786877,668804910,19687,11413,9518532071,9357408916,100,100,100,100,21.46,20.91,7.08,7.15
-59918,30,053,30053,592,326,237398318,235137383,592,326,237398318,235137383,19687,11413,9518532071,9357408916,100,100,100,100,3.01,2.86,2.49,2.51
-59919,30,029,30029,839,662,2468587486,2459948825,839,662,2468587486,2459948825,90928,46963,13614114813,13176979222,100,100,100,100,0.92,1.41,18.13,18.67
-59920,30,029,30029,1680,853,473094490,467114762,1680,853,473094490,467114762,90928,46963,13614114813,13176979222,100,100,100,100,1.85,1.82,3.48,3.54
-59922,30,029,30029,2347,1448,170253558,80009360,2408,1548,186923432,87606570,90928,46963,13614114813,13176979222,97.47,93.54,91.08,91.33,2.58,3.08,1.25,0.61
-59922,30,047,30047,61,100,16669874,7597210,2408,1548,186923432,87606570,28746,16588,4283107448,3859469950,2.53,6.46,8.92,8.67,0.21,0.6,0.39,0.2
-59923,30,053,30053,9856,5285,3564308638,3546462042,9856,5285,3564308638,3546462042,19687,11413,9518532071,9357408916,100,100,100,100,50.06,46.31,37.45,37.9
-59925,30,029,30029,1435,1011,1001072881,978837007,1435,1011,1001072881,978837007,90928,46963,13614114813,13176979222,100,100,100,100,1.58,2.15,7.35,7.43
-59926,30,029,30029,513,270,25305686,24989096,513,270,25305686,24989096,90928,46963,13614114813,13176979222,100,100,100,100,0.56,0.57,0.19,0.19
-59927,30,029,30029,368,217,621676308,615251264,368,217,621676308,615251264,90928,46963,13614114813,13176979222,100,100,100,100,0.4,0.46,4.57,4.67
-59928,30,029,30029,88,508,1570056272,1553916391,88,508,1570056272,1553916391,90928,46963,13614114813,13176979222,100,100,100,100,0.1,1.08,11.53,11.79
-59929,30,047,30047,237,263,163209870,156764810,237,263,163209870,156764810,28746,16588,4283107448,3859469950,100,100,100,100,0.82,1.59,3.81,4.06
-59930,30,053,30053,867,704,261838215,214628336,867,704,261838215,214628336,19687,11413,9518532071,9357408916,100,100,100,100,4.4,6.17,2.75,2.29
-59931,30,047,30047,328,436,78528493,26537498,328,436,78528493,26537498,28746,16588,4283107448,3859469950,100,100,100,100,1.14,2.63,1.83,0.69
-59932,30,029,30029,1648,974,96249169,67606713,1648,974,96249169,67606713,90928,46963,13614114813,13176979222,100,100,100,100,1.81,2.07,0.71,0.51
-59933,30,053,30053,43,37,21285283,20706511,43,37,21285283,20706511,19687,11413,9518532071,9357408916,100,100,100,100,0.22,0.32,0.22,0.22
-59934,30,053,30053,528,344,492728630,489388380,528,344,492728630,489388380,19687,11413,9518532071,9357408916,100,100,100,100,2.68,3.01,5.18,5.23
-59935,30,053,30053,3576,2330,2343554666,2329688177,3576,2330,2343554666,2329688177,19687,11413,9518532071,9357408916,100,100,100,100,18.16,20.42,24.62,24.9
-59936,30,029,30029,367,632,2446993819,2379916682,367,632,2446993819,2379916682,90928,46963,13614114813,13176979222,100,100,100,100,0.4,1.35,17.97,18.06
-59937,30,029,30029,12588,7873,802384796,778899587,12588,7873,802384796,778899587,90928,46963,13614114813,13176979222,100,100,100,100,13.84,16.76,5.89,5.91
-60002,17,097,17097,24299,10548,96878081,84457987,24299,10548,96878081,84457987,703462,260310,3544343519,1149099822,100,100,100,100,3.45,4.05,2.73,7.35
-60004,17,031,17031,50582,21177,28768583,28701818,50582,21177,28768583,28701818,5194675,2180359,4234265812,2448383588,100,100,100,100,0.97,0.97,0.68,1.17
-60005,17,031,17031,29308,13484,17084861,16979978,29308,13484,17084861,16979978,5194675,2180359,4234265812,2448383588,100,100,100,100,0.56,0.62,0.4,0.69
-60007,17,031,17031,33820,14168,35519709,34585450,33820,14168,37406211,36460145,5194675,2180359,4234265812,2448383588,100,100,94.96,94.86,0.65,0.65,0.84,1.41
-60007,17,043,17043,0,0,1886502,1874695,33820,14168,37406211,36460145,916924,356179,871301741,848218379,0,0,5.04,5.14,0,0,0.22,0.22
-60008,17,031,17031,22717,8905,13401173,13389228,22717,8905,13401173,13389228,5194675,2180359,4234265812,2448383588,100,100,100,100,0.44,0.41,0.32,0.55
-60010,17,031,17031,19530,7287,100277813,96890267,44095,17154,197951377,191097599,5194675,2180359,4234265812,2448383588,44.29,42.48,50.66,50.7,0.38,0.33,2.37,3.96
-60010,17,089,17089,137,51,3277817,3277817,44095,17154,197951377,191097599,515269,182047,1357673935,1346943286,0.31,0.3,1.66,1.72,0.03,0.03,0.24,0.24
-60010,17,097,17097,22187,8954,76550658,73279898,44095,17154,197951377,191097599,703462,260310,3544343519,1149099822,50.32,52.2,38.67,38.35,3.15,3.44,2.16,6.38
-60010,17,111,17111,2241,862,17845089,17649617,44095,17154,197951377,191097599,308760,116040,1581998246,1562206475,5.08,5.03,9.01,9.24,0.73,0.74,1.13,1.13
-60012,17,111,17111,11120,3933,44615986,44593835,11120,3933,44615986,44593835,308760,116040,1581998246,1562206475,100,100,100,100,3.6,3.39,2.82,2.85
-60013,17,097,17097,1068,380,4314190,3315954,26872,9409,39901815,37767656,703462,260310,3544343519,1149099822,3.97,4.04,10.81,8.78,0.15,0.15,0.12,0.29
-60013,17,111,17111,25804,9029,35587625,34451702,26872,9409,39901815,37767656,308760,116040,1581998246,1562206475,96.03,95.96,89.19,91.22,8.36,7.78,2.25,2.21
-60014,17,111,17111,48550,17894,68441944,65536181,48550,17894,68441944,65536181,308760,116040,1581998246,1562206475,100,100,100,100,15.72,15.42,4.33,4.2
-60015,17,031,17031,172,132,1243322,1197301,26800,9928,35526541,35037256,5194675,2180359,4234265812,2448383588,0.64,1.33,3.5,3.42,0,0.01,0.03,0.05
-60015,17,097,17097,26628,9796,34283219,33839955,26800,9928,35526541,35037256,703462,260310,3544343519,1149099822,99.36,98.67,96.5,96.58,3.79,3.76,0.97,2.94
-60016,17,031,17031,59690,25330,27769830,27518585,59690,25330,27769830,27518585,5194675,2180359,4234265812,2448383588,100,100,100,100,1.15,1.16,0.66,1.12
-60018,17,031,17031,30099,10954,43001382,42345213,30099,10954,43001382,42345213,5194675,2180359,4234265812,2448383588,100,100,100,100,0.58,0.5,1.02,1.73
-60020,17,097,17097,9825,5389,15133549,11831882,9825,5389,15133549,11831882,703462,260310,3544343519,1149099822,100,100,100,100,1.4,2.07,0.43,1.03
-60021,17,097,17097,486,143,400467,400467,5545,2162,6038284,5675592,703462,260310,3544343519,1149099822,8.76,6.61,6.63,7.06,0.07,0.05,0.01,0.03
-60021,17,111,17111,5059,2019,5637817,5275125,5545,2162,6038284,5675592,308760,116040,1581998246,1562206475,91.24,93.39,93.37,92.94,1.64,1.74,0.36,0.34
-60022,17,031,17031,8153,2993,13918769,10174351,8153,2993,13918769,10174351,5194675,2180359,4234265812,2448383588,100,100,100,100,0.16,0.14,0.33,0.42
-60025,17,031,17031,39105,15684,30061851,29799274,39105,15684,30061851,29799274,5194675,2180359,4234265812,2448383588,100,100,100,100,0.75,0.72,0.71,1.22
-60026,17,031,17031,13335,5359,10552664,10552664,13335,5359,10552664,10552664,5194675,2180359,4234265812,2448383588,100,100,100,100,0.26,0.25,0.25,0.43
-60029,17,031,17031,482,157,2165140,2165140,482,157,2165140,2165140,5194675,2180359,4234265812,2448383588,100,100,100,100,0.01,0.01,0.05,0.09
-60030,17,097,17097,36056,14489,69710823,66389884,36056,14489,69710823,66389884,703462,260310,3544343519,1149099822,100,100,100,100,5.13,5.57,1.97,5.78
-60031,17,097,17097,37947,14559,49734272,48850231,37947,14559,49734272,48850231,703462,260310,3544343519,1149099822,100,100,100,100,5.39,5.59,1.4,4.25
-60033,17,007,17007,98,47,17958854,17956288,13922,5223,314609581,314241724,54165,19970,730440608,727059777,0.7,0.9,5.71,5.71,0.18,0.24,2.46,2.47
-60033,17,111,17111,13824,5176,296650727,296285436,13922,5223,314609581,314241724,308760,116040,1581998246,1562206475,99.3,99.1,94.29,94.29,4.48,4.46,18.75,18.97
-60034,17,111,17111,2040,840,67279665,67279665,2040,840,67279665,67279665,308760,116040,1581998246,1562206475,100,100,100,100,0.66,0.72,4.25,4.31
-60035,17,097,17097,29763,12256,39744084,32848990,29763,12256,39744084,32848990,703462,260310,3544343519,1149099822,100,100,100,100,4.23,4.71,1.12,2.86
-60040,17,097,17097,5431,1950,1824463,1824463,5431,1950,1824463,1824463,703462,260310,3544343519,1149099822,100,100,100,100,0.77,0.75,0.05,0.16
-60041,17,097,17097,9250,3823,28833377,24887372,9250,3823,28833377,24887372,703462,260310,3544343519,1149099822,100,100,100,100,1.31,1.47,0.81,2.17
-60042,17,097,17097,3764,1456,7608602,6522301,8547,3309,13217782,11853313,703462,260310,3544343519,1149099822,44.04,44,57.56,55.03,0.54,0.56,0.21,0.57
-60042,17,111,17111,4783,1853,5609180,5331012,8547,3309,13217782,11853313,308760,116040,1581998246,1562206475,55.96,56,42.44,44.97,1.55,1.6,0.35,0.34
-60043,17,031,17031,2513,855,1591034,1591034,2513,855,1591034,1591034,5194675,2180359,4234265812,2448383588,100,100,100,100,0.05,0.04,0.04,0.06
-60044,17,097,17097,9792,4211,23395189,19592039,9792,4211,23395189,19592039,703462,260310,3544343519,1149099822,100,100,100,100,1.39,1.62,0.66,1.7
-60045,17,097,17097,20925,8004,59015191,54790343,20925,8004,59015191,54790343,703462,260310,3544343519,1149099822,100,100,100,100,2.97,3.07,1.67,4.77
-60046,17,097,17097,35111,12946,67344680,59312529,35111,12946,67344680,59312529,703462,260310,3544343519,1149099822,100,100,100,100,4.99,4.97,1.9,5.16
-60047,17,097,17097,41669,14157,93679590,90114747,41669,14157,93679590,90114747,703462,260310,3544343519,1149099822,100,100,100,100,5.92,5.44,2.64,7.84
-60048,17,097,17097,29095,11069,73104520,71298056,29095,11069,73104520,71298056,703462,260310,3544343519,1149099822,100,100,100,100,4.14,4.25,2.06,6.2
-60050,17,097,17097,299,157,634252,348783,31620,12682,74800369,72477002,703462,260310,3544343519,1149099822,0.95,1.24,0.85,0.48,0.04,0.06,0.02,0.03
-60050,17,111,17111,31321,12525,74166117,72128219,31620,12682,74800369,72477002,308760,116040,1581998246,1562206475,99.05,98.76,99.15,99.52,10.14,10.79,4.69,4.62
-60051,17,097,17097,4128,1855,10959019,10449859,25192,10202,86886119,82827733,703462,260310,3544343519,1149099822,16.39,18.18,12.61,12.62,0.59,0.71,0.31,0.91
-60051,17,111,17111,21064,8347,75927100,72377874,25192,10202,86886119,82827733,308760,116040,1581998246,1562206475,83.61,81.82,87.39,87.38,6.82,7.19,4.8,4.63
-60053,17,031,17031,23260,9030,13014738,13014738,23260,9030,13014738,13014738,5194675,2180359,4234265812,2448383588,100,100,100,100,0.45,0.41,0.31,0.53
-60056,17,031,17031,55219,22216,27851854,27850658,55219,22216,27851854,27850658,5194675,2180359,4234265812,2448383588,100,100,100,100,1.06,1.02,0.66,1.14
-60060,17,097,17097,37189,13194,64448560,61023056,37189,13194,64448560,61023056,703462,260310,3544343519,1149099822,100,100,100,100,5.29,5.07,1.82,5.31
-60061,17,097,17097,25748,10179,21144714,20639233,25748,10179,21144714,20639233,703462,260310,3544343519,1149099822,100,100,100,100,3.66,3.91,0.6,1.8
-60062,17,031,17031,39936,16649,48302828,47995817,39936,16649,48302828,47995817,5194675,2180359,4234265812,2448383588,100,100,100,100,0.77,0.76,1.14,1.96
-60064,17,097,17097,15407,5413,15154689,13408002,15407,5413,15154689,13408002,703462,260310,3544343519,1149099822,100,100,100,100,2.19,2.08,0.43,1.17
-60067,17,031,17031,38585,16577,35705786,35545352,38585,16577,35705786,35545352,5194675,2180359,4234265812,2448383588,100,100,100,100,0.74,0.76,0.84,1.45
-60068,17,031,17031,37475,15026,18451448,18373706,37475,15026,18451448,18373706,5194675,2180359,4234265812,2448383588,100,100,100,100,0.72,0.69,0.44,0.75
-60069,17,097,17097,8384,3830,17967781,17549922,8384,3830,17967781,17549922,703462,260310,3544343519,1149099822,100,100,100,100,1.19,1.47,0.51,1.53
-60070,17,031,17031,16001,6382,9404386,9329364,16001,6382,9404386,9329364,5194675,2180359,4234265812,2448383588,100,100,100,100,0.31,0.29,0.22,0.38
-60071,17,111,17111,3598,1666,67656899,67245458,3598,1666,67656899,67245458,308760,116040,1581998246,1562206475,100,100,100,100,1.17,1.44,4.28,4.3
-60072,17,111,17111,928,333,20630678,20630678,928,333,20630678,20630678,308760,116040,1581998246,1562206475,100,100,100,100,0.3,0.29,1.3,1.32
-60073,17,097,17097,60002,19344,55539661,53100857,60002,19344,55539661,53100857,703462,260310,3544343519,1149099822,100,100,100,100,8.53,7.43,1.57,4.62
-60074,17,031,17031,38803,15369,17835467,17561999,38985,15444,18812069,18487770,5194675,2180359,4234265812,2448383588,99.53,99.51,94.81,94.99,0.75,0.7,0.42,0.72
-60074,17,097,17097,182,75,976602,925771,38985,15444,18812069,18487770,703462,260310,3544343519,1149099822,0.47,0.49,5.19,5.01,0.03,0.03,0.03,0.08
-60076,17,031,17031,33415,11959,13866395,13866395,33415,11959,13866395,13866395,5194675,2180359,4234265812,2448383588,100,100,100,100,0.64,0.55,0.33,0.57
-60077,17,031,17031,26825,11332,10426672,10426672,26825,11332,10426672,10426672,5194675,2180359,4234265812,2448383588,100,100,100,100,0.52,0.52,0.25,0.43
-60081,17,097,17097,1874,877,3837479,3443161,10079,3712,46565337,45758232,703462,260310,3544343519,1149099822,18.59,23.63,8.24,7.52,0.27,0.34,0.11,0.3
-60081,17,111,17111,8205,2835,42727858,42315071,10079,3712,46565337,45758232,308760,116040,1581998246,1562206475,81.41,76.37,91.76,92.48,2.66,2.44,2.7,2.71
-60083,17,097,17097,9838,3671,69513223,68463662,9838,3671,69513223,68463662,703462,260310,3544343519,1149099822,100,100,100,100,1.4,1.41,1.96,5.96
-60084,17,097,17097,16771,6639,40370519,37841077,16771,6639,40370519,37841077,703462,260310,3544343519,1149099822,100,100,100,100,2.38,2.55,1.14,3.29
-60085,17,097,17097,71714,24362,41213752,38771835,71714,24362,41213752,38771835,703462,260310,3544343519,1149099822,100,100,100,100,10.19,9.36,1.16,3.37
-60087,17,097,17097,26978,9878,36731254,34455146,26978,9878,36731254,34455146,703462,260310,3544343519,1149099822,100,100,100,100,3.84,3.79,1.04,3
-60088,17,097,17097,15761,1430,8672770,6020439,15761,1430,8672770,6020439,703462,260310,3544343519,1149099822,100,100,100,100,2.24,0.55,0.24,0.52
-60089,17,031,17031,13643,6138,5487523,5487523,41533,17047,25351016,25258713,5194675,2180359,4234265812,2448383588,32.85,36.01,21.65,21.73,0.26,0.28,0.13,0.22
-60089,17,097,17097,27890,10909,19863493,19771190,41533,17047,25351016,25258713,703462,260310,3544343519,1149099822,67.15,63.99,78.35,78.27,3.96,4.19,0.56,1.72
-60090,17,031,17031,37633,15392,24477445,24323149,37633,15392,24477445,24323149,5194675,2180359,4234265812,2448383588,100,100,100,100,0.72,0.71,0.58,0.99
-60091,17,031,17031,27020,10268,17349909,13856986,27020,10268,17349909,13856986,5194675,2180359,4234265812,2448383588,100,100,100,100,0.52,0.47,0.41,0.57
-60093,17,031,17031,19570,7536,26066335,22045825,19570,7536,26066335,22045825,5194675,2180359,4234265812,2448383588,100,100,100,100,0.38,0.35,0.62,0.9
-60096,17,097,17097,6897,2755,14544841,12430994,6897,2755,14544841,12430994,703462,260310,3544343519,1149099822,100,100,100,100,0.98,1.06,0.41,1.08
-60097,17,111,17111,11250,4534,41273355,38192908,11250,4534,41273355,38192908,308760,116040,1581998246,1562206475,100,100,100,100,3.64,3.91,2.61,2.44
-60098,17,111,17111,32228,12646,272853530,272655866,32228,12646,272853530,272655866,308760,116040,1581998246,1562206475,100,100,100,100,10.44,10.9,17.25,17.45
-60099,17,097,17097,31104,11609,61778034,58826359,31104,11609,61778034,58826359,703462,260310,3544343519,1149099822,100,100,100,100,4.42,4.46,1.74,5.12
-60101,17,043,17043,39119,13341,30721485,29866966,39119,13341,30721485,29866966,916924,356179,871301741,848218379,100,100,100,100,4.27,3.75,3.53,3.52
-60102,17,089,17089,8854,2982,8286864,8066651,32193,11653,38480884,37541285,515269,182047,1357673935,1346943286,27.5,25.59,21.54,21.49,1.72,1.64,0.61,0.6
-60102,17,111,17111,23339,8671,30194020,29474634,32193,11653,38480884,37541285,308760,116040,1581998246,1562206475,72.5,74.41,78.46,78.51,7.56,7.47,1.91,1.89
-60103,17,031,17031,16884,6491,18596686,18447263,41928,14772,50594214,49681202,5194675,2180359,4234265812,2448383588,40.27,43.94,36.76,37.13,0.33,0.3,0.44,0.75
-60103,17,043,17043,25044,8281,31997528,31233939,41928,14772,50594214,49681202,916924,356179,871301741,848218379,59.73,56.06,63.24,62.87,2.73,2.32,3.67,3.68
-60104,17,031,17031,19038,6612,6096104,6096104,19038,6612,6096104,6096104,5194675,2180359,4234265812,2448383588,100,100,100,100,0.37,0.3,0.14,0.25
-60106,17,043,17043,20309,7444,23494210,23233400,20309,7444,23494210,23233400,916924,356179,871301741,848218379,100,100,100,100,2.21,2.09,2.7,2.74
-60107,17,031,17031,39927,13659,20732557,20645758,39927,13659,20732557,20645758,5194675,2180359,4234265812,2448383588,100,100,100,100,0.77,0.63,0.49,0.84
-60108,17,043,17043,22735,9369,19535809,18630709,22735,9369,19535809,18630709,916924,356179,871301741,848218379,100,100,100,100,2.48,2.63,2.24,2.2
-60109,17,089,17089,560,231,7445739,7445739,560,231,7445739,7445739,515269,182047,1357673935,1346943286,100,100,100,100,0.11,0.13,0.55,0.55
-60110,17,089,17089,38557,11822,23673293,23121084,38557,11822,23673293,23121084,515269,182047,1357673935,1346943286,100,100,100,100,7.48,6.49,1.74,1.72
-60111,17,037,17037,258,117,53022572,52828981,258,117,53022572,52828981,105160,41079,1643761548,1635077221,100,100,100,100,0.25,0.28,3.23,3.23
-60112,17,037,17037,4560,1651,9592550,9587096,4560,1651,9592550,9587096,105160,41079,1643761548,1635077221,100,100,100,100,4.34,4.02,0.58,0.59
-60113,17,141,17141,337,134,410023,410023,337,134,410023,410023,53497,22561,1976123405,1964698351,100,100,100,100,0.63,0.59,0.02,0.02
-60115,17,037,17037,46272,17761,210053182,209171024,46272,17761,210053182,209171024,105160,41079,1643761548,1635077221,100,100,100,100,44,43.24,12.78,12.79
-60118,17,089,17089,15851,6461,53943491,52304125,15851,6461,53943491,52304125,515269,182047,1357673935,1346943286,100,100,100,100,3.08,3.55,3.97,3.88
-60119,17,089,17089,10371,3772,130696700,130684223,10371,3772,130696700,130684223,515269,182047,1357673935,1346943286,100,100,100,100,2.01,2.07,9.63,9.7
-60120,17,031,17031,24997,8695,30061884,29585244,50955,16718,43828557,42961291,5194675,2180359,4234265812,2448383588,49.06,52.01,68.59,68.86,0.48,0.4,0.71,1.21
-60120,17,089,17089,25958,8023,13766673,13376047,50955,16718,43828557,42961291,515269,182047,1357673935,1346943286,50.94,47.99,31.41,31.14,5.04,4.41,1.01,0.99
-60123,17,089,17089,47405,17495,36347593,35666047,47405,17495,36347593,35666047,515269,182047,1357673935,1346943286,100,100,100,100,9.2,9.61,2.68,2.65
-60124,17,089,17089,18935,6987,99244442,99070783,18935,6987,99244442,99070783,515269,182047,1357673935,1346943286,100,100,100,100,3.67,3.84,7.31,7.36
-60126,17,031,17031,333,137,575649,575649,46371,17417,29137765,28841228,5194675,2180359,4234265812,2448383588,0.72,0.79,1.98,2,0.01,0.01,0.01,0.02
-60126,17,043,17043,46038,17280,28562116,28265579,46371,17417,29137765,28841228,916924,356179,871301741,848218379,99.28,99.21,98.02,98,5.02,4.85,3.28,3.33
-60129,17,037,17037,139,58,11339974,11339974,242,99,44293766,44293766,105160,41079,1643761548,1635077221,57.44,58.59,25.6,25.6,0.13,0.14,0.69,0.69
-60129,17,141,17141,103,41,32953792,32953792,242,99,44293766,44293766,53497,22561,1976123405,1964698351,42.56,41.41,74.4,74.4,0.19,0.18,1.67,1.68
-60130,17,031,17031,14167,7834,7168774,7168774,14167,7834,7168774,7168774,5194675,2180359,4234265812,2448383588,100,100,100,100,0.27,0.36,0.17,0.29
-60131,17,031,17031,18097,6479,14368840,14368840,18097,6479,14368840,14368840,5194675,2180359,4234265812,2448383588,100,100,100,100,0.35,0.3,0.34,0.59
-60133,17,031,17031,20636,5842,7307735,7307735,38103,11529,21803356,21024056,5194675,2180359,4234265812,2448383588,54.16,50.67,33.52,34.76,0.4,0.27,0.17,0.3
-60133,17,043,17043,17467,5687,14495621,13716321,38103,11529,21803356,21024056,916924,356179,871301741,848218379,45.84,49.33,66.48,65.24,1.9,1.6,1.66,1.62
-60134,17,089,17089,28565,10459,40501121,39872798,28565,10459,40501121,39872798,515269,182047,1357673935,1346943286,100,100,100,100,5.54,5.75,2.98,2.96
-60135,17,007,17007,15,5,1781028,1781028,7248,2741,120681376,120089744,54165,19970,730440608,727059777,0.21,0.18,1.48,1.48,0.03,0.03,0.24,0.24
-60135,17,037,17037,7230,2734,116260763,115669131,7248,2741,120681376,120089744,105160,41079,1643761548,1635077221,99.75,99.74,96.34,96.32,6.88,6.66,7.07,7.07
-60135,17,111,17111,3,2,2639585,2639585,7248,2741,120681376,120089744,308760,116040,1581998246,1562206475,0.04,0.07,2.19,2.2,0,0,0.17,0.17
-60136,17,089,17089,7013,2335,17779473,17768066,7013,2335,17779473,17768066,515269,182047,1357673935,1346943286,100,100,100,100,1.36,1.28,1.31,1.32
-60137,17,043,17043,37805,14837,28601457,28010288,37805,14837,28601457,28010288,916924,356179,871301741,848218379,100,100,100,100,4.12,4.17,3.28,3.3
-60139,17,043,17043,34381,11947,14738147,14375637,34381,11947,14738147,14375637,916924,356179,871301741,848218379,100,100,100,100,3.75,3.35,1.69,1.69
-60140,17,037,17037,62,23,7594343,7549633,14341,5166,212728285,212657836,105160,41079,1643761548,1635077221,0.43,0.45,3.57,3.55,0.06,0.06,0.46,0.46
-60140,17,089,17089,14279,5143,205133942,205108203,14341,5166,212728285,212657836,515269,182047,1357673935,1346943286,99.57,99.55,96.43,96.45,2.77,2.83,15.11,15.23
-60141,17,031,17031,224,84,1072024,1072024,224,84,1072024,1072024,5194675,2180359,4234265812,2448383588,100,100,100,100,0,0,0.03,0.04
-60142,17,089,17089,6319,3898,29166613,29084183,26447,11286,104100595,103982238,515269,182047,1357673935,1346943286,23.89,34.54,28.02,27.97,1.23,2.14,2.15,2.16
-60142,17,111,17111,20128,7388,74933982,74898055,26447,11286,104100595,103982238,308760,116040,1581998246,1562206475,76.11,65.46,71.98,72.03,6.52,6.37,4.74,4.79
-60143,17,043,17043,10360,4227,18535493,17832233,10360,4227,18535493,17832233,916924,356179,871301741,848218379,100,100,100,100,1.13,1.19,2.13,2.1
-60144,17,089,17089,58,27,106763,106763,58,27,106763,106763,515269,182047,1357673935,1346943286,100,100,100,100,0.01,0.01,0.01,0.01
-60145,17,007,17007,82,34,4911744,4911744,2627,957,93475313,92837637,54165,19970,730440608,727059777,3.12,3.55,5.25,5.29,0.15,0.17,0.67,0.68
-60145,17,037,17037,2545,923,88563569,87925893,2627,957,93475313,92837637,105160,41079,1643761548,1635077221,96.88,96.45,94.75,94.71,2.42,2.25,5.39,5.38
-60146,17,007,17007,69,21,10959316,10956009,2713,1029,140352961,139274043,54165,19970,730440608,727059777,2.54,2.04,7.81,7.87,0.13,0.11,1.5,1.51
-60146,17,037,17037,2626,999,125809062,124739661,2713,1029,140352961,139274043,105160,41079,1643761548,1635077221,96.79,97.08,89.64,89.56,2.5,2.43,7.65,7.63
-60146,17,141,17141,10,6,2810966,2804756,2713,1029,140352961,139274043,53497,22561,1976123405,1964698351,0.37,0.58,2,2.01,0.02,0.03,0.14,0.14
-60146,17,201,17201,8,3,773617,773617,2713,1029,140352961,139274043,295266,125965,1344852189,1329601795,0.29,0.29,0.55,0.56,0,0,0.06,0.06
-60148,17,043,17043,51468,21662,35786895,35095925,51468,21662,35786895,35095925,916924,356179,871301741,848218379,100,100,100,100,5.61,6.08,4.11,4.14
-60150,17,037,17037,1794,709,138750122,138573749,1794,709,138750122,138573749,105160,41079,1643761548,1635077221,100,100,100,100,1.71,1.73,8.44,8.48
-60151,17,037,17037,1021,387,52740453,52611514,4061,1577,211442199,211167486,105160,41079,1643761548,1635077221,25.14,24.54,24.94,24.91,0.97,0.94,3.21,3.22
-60151,17,089,17089,3040,1190,158701746,158555972,4061,1577,211442199,211167486,515269,182047,1357673935,1346943286,74.86,75.46,75.06,75.09,0.59,0.65,11.69,11.77
-60152,17,037,17037,29,12,4923238,4903080,12533,4918,244908139,244605801,105160,41079,1643761548,1635077221,0.23,0.24,2.01,2,0.03,0.03,0.3,0.3
-60152,17,111,17111,12504,4906,239984901,239702721,12533,4918,244908139,244605801,308760,116040,1581998246,1562206475,99.77,99.76,97.99,98,4.05,4.23,15.17,15.34
-60153,17,031,17031,24106,8400,7762120,7762120,24106,8400,7762120,7762120,5194675,2180359,4234265812,2448383588,100,100,100,100,0.46,0.39,0.18,0.32
-60154,17,031,17031,16773,7246,12486176,12486176,16773,7246,12486176,12486176,5194675,2180359,4234265812,2448383588,100,100,100,100,0.32,0.33,0.29,0.51
-60155,17,031,17031,7927,3321,4829426,4829426,7927,3321,4829426,4829426,5194675,2180359,4234265812,2448383588,100,100,100,100,0.15,0.15,0.11,0.2
-60156,17,111,17111,28987,9894,29891159,29297796,28987,9894,29891159,29297796,308760,116040,1581998246,1562206475,100,100,100,100,9.39,8.53,1.89,1.88
-60157,17,043,17043,2380,881,3941003,3844518,2380,881,3941003,3844518,916924,356179,871301741,848218379,100,100,100,100,0.26,0.25,0.45,0.45
-60160,17,031,17031,25432,8534,11518695,11518695,25432,8534,11518695,11518695,5194675,2180359,4234265812,2448383588,100,100,100,100,0.49,0.39,0.27,0.47
-60162,17,031,17031,8111,3114,8289155,8289155,8111,3114,8289155,8289155,5194675,2180359,4234265812,2448383588,100,100,100,100,0.16,0.14,0.2,0.34
-60163,17,031,17031,5209,1919,4165453,4165453,5209,1919,4165453,4165453,5194675,2180359,4234265812,2448383588,100,100,100,100,0.1,0.09,0.1,0.17
-60164,17,031,17031,22048,7332,12276020,12276020,22048,7332,12276020,12276020,5194675,2180359,4234265812,2448383588,100,100,100,100,0.42,0.34,0.29,0.5
-60165,17,031,17031,4946,1285,880352,880352,4946,1285,880352,880352,5194675,2180359,4234265812,2448383588,100,100,100,100,0.1,0.06,0.02,0.04
-60169,17,031,17031,33847,12805,20124406,19898547,33847,12805,20124406,19898547,5194675,2180359,4234265812,2448383588,100,100,100,100,0.65,0.59,0.48,0.81
-60171,17,031,17031,10246,4434,5847505,5847505,10246,4434,5847505,5847505,5194675,2180359,4234265812,2448383588,100,100,100,100,0.2,0.2,0.14,0.24
-60172,17,031,17031,4006,1596,3159681,3117589,24537,9711,18370867,18001807,5194675,2180359,4234265812,2448383588,16.33,16.43,17.2,17.32,0.08,0.07,0.07,0.13
-60172,17,043,17043,20531,8115,15211186,14884218,24537,9711,18370867,18001807,916924,356179,871301741,848218379,83.67,83.57,82.8,82.68,2.24,2.28,1.75,1.75
-60173,17,031,17031,12217,6548,15872888,15863102,12217,6548,15872888,15863102,5194675,2180359,4234265812,2448383588,100,100,100,100,0.24,0.3,0.37,0.65
-60174,17,043,17043,544,257,558022,549535,30752,12907,37414406,36274040,916924,356179,871301741,848218379,1.77,1.99,1.49,1.51,0.06,0.07,0.06,0.06
-60174,17,089,17089,30208,12650,36856384,35724505,30752,12907,37414406,36274040,515269,182047,1357673935,1346943286,98.23,98.01,98.51,98.49,5.86,6.95,2.71,2.65
-60175,17,089,17089,25564,8150,89381701,88657505,25564,8150,89381701,88657505,515269,182047,1357673935,1346943286,100,100,100,100,4.96,4.48,6.58,6.58
-60176,17,031,17031,11795,4700,6860618,6860618,11795,4700,6860618,6860618,5194675,2180359,4234265812,2448383588,100,100,100,100,0.23,0.22,0.16,0.28
-60177,17,089,17089,22659,7722,22968275,22128596,22659,7722,22968275,22128596,515269,182047,1357673935,1346943286,100,100,100,100,4.4,4.24,1.69,1.64
-60178,17,037,17037,21629,8946,163565700,162144477,21840,9022,180979033,179557810,105160,41079,1643761548,1635077221,99.03,99.16,90.38,90.3,20.57,21.78,9.95,9.92
-60178,17,089,17089,211,76,17413333,17413333,21840,9022,180979033,179557810,515269,182047,1357673935,1346943286,0.97,0.84,9.62,9.7,0.04,0.04,1.28,1.29
-60180,17,111,17111,1694,651,56109220,56109220,1694,651,56109220,56109220,308760,116040,1581998246,1562206475,100,100,100,100,0.55,0.56,3.55,3.59
-60181,17,043,17043,28836,11567,17289959,17076728,28836,11567,17289959,17076728,916924,356179,871301741,848218379,100,100,100,100,3.14,3.25,1.98,2.01
-60184,17,043,17043,1590,549,14270223,13530976,2448,897,21765749,21026502,916924,356179,871301741,848218379,64.95,61.2,65.56,64.35,0.17,0.15,1.64,1.6
-60184,17,089,17089,858,348,7495526,7495526,2448,897,21765749,21026502,515269,182047,1357673935,1346943286,35.05,38.8,34.44,35.65,0.17,0.19,0.55,0.56
-60185,17,043,17043,36377,11087,77852751,75775153,36527,11142,80648117,78570519,916924,356179,871301741,848218379,99.59,99.51,96.53,96.44,3.97,3.11,8.94,8.93
-60185,17,089,17089,150,55,2795366,2795366,36527,11142,80648117,78570519,515269,182047,1357673935,1346943286,0.41,0.49,3.47,3.56,0.03,0.03,0.21,0.21
-60187,17,043,17043,29016,10074,17396785,17154064,29016,10074,17396785,17154064,916924,356179,871301741,848218379,100,100,100,100,3.16,2.83,2,2.02
-60188,17,043,17043,42656,15967,26967886,26155804,42656,15967,26967886,26155804,916924,356179,871301741,848218379,100,100,100,100,4.65,4.48,3.1,3.08
-60189,17,043,17043,30472,12340,27304589,26394675,30472,12340,27304589,26394675,916924,356179,871301741,848218379,100,100,100,100,3.32,3.46,3.13,3.11
-60190,17,043,17043,10663,3999,12230966,12029415,10663,3999,12230966,12029415,916924,356179,871301741,848218379,100,100,100,100,1.16,1.12,1.4,1.42
-60191,17,043,17043,14310,5725,14858734,14511095,14310,5725,14858734,14511095,916924,356179,871301741,848218379,100,100,100,100,1.56,1.61,1.71,1.71
-60192,17,031,17031,16343,5520,27529032,27319690,16343,5520,27529032,27319690,5194675,2180359,4234265812,2448383588,100,100,100,100,0.31,0.25,0.65,1.12
-60193,17,031,17031,39188,16649,23741411,23666216,39188,16649,23741411,23666216,5194675,2180359,4234265812,2448383588,100,100,100,100,0.75,0.76,0.56,0.97
-60194,17,031,17031,19777,8476,9553425,9375542,19777,8476,9553425,9375542,5194675,2180359,4234265812,2448383588,100,100,100,100,0.38,0.39,0.23,0.38
-60195,17,031,17031,4769,2528,5122557,5122557,4769,2528,5122557,5122557,5194675,2180359,4234265812,2448383588,100,100,100,100,0.09,0.12,0.12,0.21
-60201,17,031,17031,43125,18268,14774752,12236667,43125,18268,14774752,12236667,5194675,2180359,4234265812,2448383588,100,100,100,100,0.83,0.84,0.35,0.5
-60202,17,031,17031,31361,14913,9368249,7913053,31361,14913,9368249,7913053,5194675,2180359,4234265812,2448383588,100,100,100,100,0.6,0.68,0.22,0.32
-60203,17,031,17031,4523,1763,1765387,1765387,4523,1763,1765387,1765387,5194675,2180359,4234265812,2448383588,100,100,100,100,0.09,0.08,0.04,0.07
-60301,17,031,17031,2539,1764,400865,400865,2539,1764,400865,400865,5194675,2180359,4234265812,2448383588,100,100,100,100,0.05,0.08,0.01,0.02
-60302,17,031,17031,32108,15670,7803797,7803797,32108,15670,7803797,7803797,5194675,2180359,4234265812,2448383588,100,100,100,100,0.62,0.72,0.18,0.32
-60304,17,031,17031,17231,7085,3969173,3969173,17231,7085,3969173,3969173,5194675,2180359,4234265812,2448383588,100,100,100,100,0.33,0.32,0.09,0.16
-60305,17,031,17031,11172,4176,6415680,6410886,11172,4176,6415680,6410886,5194675,2180359,4234265812,2448383588,100,100,100,100,0.22,0.19,0.15,0.26
-60401,17,091,17091,103,42,5008876,5008876,7797,3203,146999156,146986570,113449,45246,1764723117,1752271023,1.32,1.31,3.41,3.41,0.09,0.09,0.28,0.29
-60401,17,197,17197,7694,3161,141990280,141977694,7797,3203,146999156,146986570,677560,237501,2199485217,2167580722,98.68,98.69,96.59,96.59,1.14,1.33,6.46,6.55
-60402,17,031,17031,63448,23339,13805643,13653673,63448,23339,13805643,13653673,5194675,2180359,4234265812,2448383588,100,100,100,100,1.22,1.07,0.33,0.56
-60403,17,197,17197,17529,7649,16987395,16965798,17529,7649,16987395,16965798,677560,237501,2199485217,2167580722,100,100,100,100,2.59,3.22,0.77,0.78
-60404,17,197,17197,17395,6372,40901537,40433858,17395,6372,40901537,40433858,677560,237501,2199485217,2167580722,100,100,100,100,2.57,2.68,1.86,1.87
-60406,17,031,17031,25460,9559,14621666,14381543,25460,9559,14621666,14381543,5194675,2180359,4234265812,2448383588,100,100,100,100,0.49,0.44,0.35,0.59
-60407,17,063,17063,1099,430,28299588,27958826,1684,664,31415992,31051182,50063,19996,1114852754,1082725907,65.26,64.76,90.08,90.04,2.2,2.15,2.54,2.58
-60407,17,197,17197,585,234,3116404,3092356,1684,664,31415992,31051182,677560,237501,2199485217,2167580722,34.74,35.24,9.92,9.96,0.09,0.1,0.14,0.14
-60408,17,197,17197,5696,2202,20040778,19501759,5696,2202,20040778,19501759,677560,237501,2199485217,2167580722,100,100,100,100,0.84,0.93,0.91,0.9
-60409,17,031,17031,37186,15708,19609388,19287124,37186,15708,19609388,19287124,5194675,2180359,4234265812,2448383588,100,100,100,100,0.72,0.72,0.46,0.79
-60410,17,063,17063,3289,1051,10073886,9196246,12687,4258,70429880,64248674,50063,19996,1114852754,1082725907,25.92,24.68,14.3,14.31,6.57,5.26,0.9,0.85
-60410,17,197,17197,9398,3207,60355994,55052428,12687,4258,70429880,64248674,677560,237501,2199485217,2167580722,74.08,75.32,85.7,85.69,1.39,1.35,2.74,2.54
-60411,17,031,17031,58136,21400,82734405,82189811,58136,21400,82734405,82189811,5194675,2180359,4234265812,2448383588,100,100,100,100,1.12,0.98,1.95,3.36
-60415,17,031,17031,14139,5849,5944001,5944001,14139,5849,5944001,5944001,5194675,2180359,4234265812,2448383588,100,100,100,100,0.27,0.27,0.14,0.24
-60416,17,063,17063,9374,3814,58438538,55769049,9397,3825,60517813,57848324,50063,19996,1114852754,1082725907,99.76,99.71,96.56,96.41,18.72,19.07,5.24,5.15
-60416,17,197,17197,23,11,2079275,2079275,9397,3825,60517813,57848324,677560,237501,2199485217,2167580722,0.24,0.29,3.44,3.59,0,0,0.09,0.1
-60417,17,197,17197,15547,6426,101027555,100929225,15547,6426,101027555,100929225,677560,237501,2199485217,2167580722,100,100,100,100,2.29,2.71,4.59,4.66
-60419,17,031,17031,22788,8640,11016142,10879981,22788,8640,11016142,10879981,5194675,2180359,4234265812,2448383588,100,100,100,100,0.44,0.4,0.26,0.44
-60420,17,063,17063,249,93,76920022,76751812,6102,2173,260684021,260417231,50063,19996,1114852754,1082725907,4.08,4.28,29.51,29.47,0.5,0.47,6.9,7.09
-60420,17,105,17105,5853,2080,183763999,183665419,6102,2173,260684021,260417231,38950,15895,2708939484,2704686611,95.92,95.72,70.49,70.53,15.03,13.09,6.78,6.79
-60421,17,197,17197,3968,1570,106054495,105656104,3968,1570,106054495,105656104,677560,237501,2199485217,2167580722,100,100,100,100,0.59,0.66,4.82,4.87
-60422,17,031,17031,9403,3668,10918079,10918079,9403,3668,10918079,10918079,5194675,2180359,4234265812,2448383588,100,100,100,100,0.18,0.17,0.26,0.45
-60423,17,031,17031,23,7,4482044,4482044,30423,10540,94437269,94430508,5194675,2180359,4234265812,2448383588,0.08,0.07,4.75,4.75,0,0,0.11,0.18
-60423,17,197,17197,30400,10533,89955225,89948464,30423,10540,94437269,94430508,677560,237501,2199485217,2167580722,99.92,99.93,95.25,95.25,4.49,4.43,4.09,4.15
-60424,17,063,17063,2432,1013,131056732,130434185,2440,1017,134444207,133607502,50063,19996,1114852754,1082725907,99.67,99.61,97.48,97.62,4.86,5.07,11.76,12.05
-60424,17,091,17091,8,4,3387475,3173317,2440,1017,134444207,133607502,113449,45246,1764723117,1752271023,0.33,0.39,2.52,2.38,0.01,0.01,0.19,0.18
-60425,17,031,17031,9117,3578,12396163,12396163,9117,3578,12396163,12396163,5194675,2180359,4234265812,2448383588,100,100,100,100,0.18,0.16,0.29,0.51
-60426,17,031,17031,29594,11405,19954704,19954704,29594,11405,19954704,19954704,5194675,2180359,4234265812,2448383588,100,100,100,100,0.57,0.52,0.47,0.82
-60428,17,031,17031,12203,4278,13454827,13454827,12203,4278,13454827,13454827,5194675,2180359,4234265812,2448383588,100,100,100,100,0.23,0.2,0.32,0.55
-60429,17,031,17031,15630,6054,10178312,10123623,15630,6054,10178312,10123623,5194675,2180359,4234265812,2448383588,100,100,100,100,0.3,0.28,0.24,0.41
-60430,17,031,17031,20094,8276,17740574,17614501,20094,8276,17740574,17614501,5194675,2180359,4234265812,2448383588,100,100,100,100,0.39,0.38,0.42,0.72
-60431,17,093,17093,4414,1427,9405090,9405090,22577,8110,35406707,35290456,114736,40321,834805372,829664827,19.55,17.6,26.56,26.65,3.85,3.54,1.13,1.13
-60431,17,197,17197,18163,6683,26001617,25885366,22577,8110,35406707,35290456,677560,237501,2199485217,2167580722,80.45,82.4,73.44,73.35,2.68,2.81,1.18,1.19
-60432,17,197,17197,21403,6810,21942707,21711268,21403,6810,21942707,21711268,677560,237501,2199485217,2167580722,100,100,100,100,3.16,2.87,1,1
-60433,17,197,17197,17160,6163,33721793,33632353,17160,6163,33721793,33632353,677560,237501,2199485217,2167580722,100,100,100,100,2.53,2.59,1.53,1.55
-60435,17,197,17197,48899,19611,27860903,27734572,48899,19611,27860903,27734572,677560,237501,2199485217,2167580722,100,100,100,100,7.22,8.26,1.27,1.28
-60436,17,197,17197,18315,6926,41481343,39020767,18315,6926,41481343,39020767,677560,237501,2199485217,2167580722,100,100,100,100,2.7,2.92,1.89,1.8
-60437,17,063,17063,187,87,49763301,49756386,187,87,49763301,49756386,50063,19996,1114852754,1082725907,100,100,100,100,0.37,0.44,4.46,4.6
-60438,17,031,17031,28884,11963,20730770,20581151,28884,11963,20730770,20581151,5194675,2180359,4234265812,2448383588,100,100,100,100,0.56,0.55,0.49,0.84
-60439,17,031,17031,20913,7760,51109108,49480374,22919,8533,82215533,78807832,5194675,2180359,4234265812,2448383588,91.25,90.94,62.16,62.79,0.4,0.36,1.21,2.02
-60439,17,043,17043,1520,570,19168970,17847317,22919,8533,82215533,78807832,916924,356179,871301741,848218379,6.63,6.68,23.32,22.65,0.17,0.16,2.2,2.1
-60439,17,197,17197,486,203,11937455,11480141,22919,8533,82215533,78807832,677560,237501,2199485217,2167580722,2.12,2.38,14.52,14.57,0.07,0.09,0.54,0.53
-60440,17,043,17043,1571,505,763256,763106,52911,17217,42122708,41638235,916924,356179,871301741,848218379,2.97,2.93,1.81,1.83,0.17,0.14,0.09,0.09
-60440,17,197,17197,51340,16712,41359452,40875129,52911,17217,42122708,41638235,677560,237501,2199485217,2167580722,97.03,97.07,98.19,98.17,7.58,7.04,1.88,1.89
-60441,17,197,17197,36869,12655,74196868,72777727,36869,12655,74196868,72777727,677560,237501,2199485217,2167580722,100,100,100,100,5.44,5.33,3.37,3.36
-60442,17,197,17197,9924,3462,176967018,176967018,9924,3462,176967018,176967018,677560,237501,2199485217,2167580722,100,100,100,100,1.46,1.46,8.05,8.16
-60443,17,031,17031,21145,8209,30080650,29946635,21145,8209,30080650,29946635,5194675,2180359,4234265812,2448383588,100,100,100,100,0.41,0.38,0.71,1.22
-60444,17,063,17063,1761,723,123651778,122199738,1761,723,123651778,122199738,50063,19996,1114852754,1082725907,100,100,100,100,3.52,3.62,11.09,11.29
-60445,17,031,17031,26057,10811,18074423,17911389,26057,10811,18074423,17911389,5194675,2180359,4234265812,2448383588,100,100,100,100,0.5,0.5,0.43,0.73
-60446,17,197,17197,39807,12670,45370757,44694672,39807,12670,45370757,44694672,677560,237501,2199485217,2167580722,100,100,100,100,5.88,5.33,2.06,2.06
-60447,17,063,17063,9338,3208,37875286,37734303,13709,4787,177338486,176476060,50063,19996,1114852754,1082725907,68.12,67.01,21.36,21.38,18.65,16.04,3.4,3.49
-60447,17,093,17093,1821,666,128589030,128235335,13709,4787,177338486,176476060,114736,40321,834805372,829664827,13.28,13.91,72.51,72.66,1.59,1.65,15.4,15.46
-60447,17,197,17197,2550,913,10874170,10506422,13709,4787,177338486,176476060,677560,237501,2199485217,2167580722,18.6,19.07,6.13,5.95,0.38,0.38,0.49,0.48
-60448,17,197,17197,24423,8534,47052782,47015624,24423,8534,47052782,47015624,677560,237501,2199485217,2167580722,100,100,100,100,3.6,3.59,2.14,2.17
-60449,17,197,17197,9217,3539,126017367,125850268,9217,3539,126017367,125850268,677560,237501,2199485217,2167580722,100,100,100,100,1.36,1.49,5.73,5.81
-60450,17,063,17063,20285,8666,420239893,397379456,20332,8685,430387220,407526783,50063,19996,1114852754,1082725907,99.77,99.78,97.64,97.51,40.52,43.34,37.69,36.7
-60450,17,093,17093,47,19,10147327,10147327,20332,8685,430387220,407526783,114736,40321,834805372,829664827,0.23,0.22,2.36,2.49,0.04,0.05,1.22,1.22
-60451,17,197,17197,34063,11553,66278416,66085897,34063,11553,66278416,66085897,677560,237501,2199485217,2167580722,100,100,100,100,5.03,4.86,3.01,3.05
-60452,17,031,17031,27969,10663,24262048,24098229,27969,10663,24262048,24098229,5194675,2180359,4234265812,2448383588,100,100,100,100,0.54,0.49,0.57,0.98
-60453,17,031,17031,56855,23586,21904254,21904195,56855,23586,21904254,21904195,5194675,2180359,4234265812,2448383588,100,100,100,100,1.09,1.08,0.52,0.89
-60455,17,031,17031,16446,5894,11285494,11285494,16446,5894,11285494,11285494,5194675,2180359,4234265812,2448383588,100,100,100,100,0.32,0.27,0.27,0.46
-60456,17,031,17031,4349,1935,1240336,1240336,4349,1935,1240336,1240336,5194675,2180359,4234265812,2448383588,100,100,100,100,0.08,0.09,0.03,0.05
-60457,17,031,17031,14049,5487,7504069,7504069,14049,5487,7504069,7504069,5194675,2180359,4234265812,2448383588,100,100,100,100,0.27,0.25,0.18,0.31
-60458,17,031,17031,14428,5838,7565403,7439101,14428,5838,7565403,7439101,5194675,2180359,4234265812,2448383588,100,100,100,100,0.28,0.27,0.18,0.3
-60459,17,031,17031,28929,9717,10868636,10868636,28929,9717,10868636,10868636,5194675,2180359,4234265812,2448383588,100,100,100,100,0.56,0.45,0.26,0.44
-60460,17,105,17105,1522,654,249202640,249127860,1522,654,249202640,249127860,38950,15895,2708939484,2704686611,100,100,100,100,3.91,4.11,9.2,9.21
-60461,17,031,17031,4836,1999,7209502,7200227,4836,1999,7209502,7200227,5194675,2180359,4234265812,2448383588,100,100,100,100,0.09,0.09,0.17,0.29
-60462,17,031,17031,38723,15656,41590266,40625938,38723,15656,41590266,40625938,5194675,2180359,4234265812,2448383588,100,100,100,100,0.75,0.72,0.98,1.66
-60463,17,031,17031,14671,5853,14251720,13929262,14671,5853,14251720,13929262,5194675,2180359,4234265812,2448383588,100,100,100,100,0.28,0.27,0.34,0.57
-60464,17,031,17031,9620,4030,21038148,20067859,9620,4030,21038148,20067859,5194675,2180359,4234265812,2448383588,100,100,100,100,0.19,0.18,0.5,0.82
-60465,17,031,17031,17495,7637,12306166,12297367,17495,7637,12306166,12297367,5194675,2180359,4234265812,2448383588,100,100,100,100,0.34,0.35,0.29,0.5
-60466,17,031,17031,18630,8425,11494598,11428079,22115,9897,16666471,16599952,5194675,2180359,4234265812,2448383588,84.24,85.13,68.97,68.84,0.36,0.39,0.27,0.47
-60466,17,197,17197,3485,1472,5171873,5171873,22115,9897,16666471,16599952,677560,237501,2199485217,2167580722,15.76,14.87,31.03,31.16,0.51,0.62,0.24,0.24
-60467,17,031,17031,23733,8677,35566774,34511717,26046,9593,38740799,37685742,5194675,2180359,4234265812,2448383588,91.12,90.45,91.81,91.58,0.46,0.4,0.84,1.41
-60467,17,197,17197,2313,916,3174025,3174025,26046,9593,38740799,37685742,677560,237501,2199485217,2167580722,8.88,9.55,8.19,8.42,0.34,0.39,0.14,0.15
-60468,17,091,17091,78,30,9742656,9742656,6116,2377,187338967,187163524,113449,45246,1764723117,1752271023,1.28,1.26,5.2,5.21,0.07,0.07,0.55,0.56
-60468,17,197,17197,6038,2347,177596311,177420868,6116,2377,187338967,187163524,677560,237501,2199485217,2167580722,98.72,98.74,94.8,94.79,0.89,0.99,8.07,8.19
-60469,17,031,17031,5930,1866,2457397,2457397,5930,1866,2457397,2457397,5194675,2180359,4234265812,2448383588,100,100,100,100,0.11,0.09,0.06,0.1
-60470,17,063,17063,11,4,2166675,2166675,616,260,96170850,96170850,50063,19996,1114852754,1082725907,1.79,1.54,2.25,2.25,0.02,0.02,0.19,0.2
-60470,17,099,17099,605,256,94004175,94004175,616,260,96170850,96170850,113924,49978,2973658480,2939957539,98.21,98.46,97.75,97.75,0.53,0.51,3.16,3.2
-60471,17,031,17031,14036,5547,12005358,11973868,14101,5574,12461820,12430330,5194675,2180359,4234265812,2448383588,99.54,99.52,96.34,96.33,0.27,0.25,0.28,0.49
-60471,17,197,17197,65,27,456462,456462,14101,5574,12461820,12430330,677560,237501,2199485217,2167580722,0.46,0.48,3.66,3.67,0.01,0.01,0.02,0.02
-60472,17,031,17031,5390,2060,4439270,4284829,5390,2060,4439270,4284829,5194675,2180359,4234265812,2448383588,100,100,100,100,0.1,0.09,0.1,0.18
-60473,17,031,17031,22439,7893,22078234,22037857,22439,7893,22078234,22037857,5194675,2180359,4234265812,2448383588,100,100,100,100,0.43,0.36,0.52,0.9
-60474,17,063,17063,760,342,10323982,8556009,760,342,10323982,8556009,50063,19996,1114852754,1082725907,100,100,100,100,1.52,1.71,0.93,0.79
-60475,17,031,17031,4265,1694,9062149,9054294,9870,4248,12488865,12481010,5194675,2180359,4234265812,2448383588,43.21,39.88,72.56,72.54,0.08,0.08,0.21,0.37
-60475,17,197,17197,5605,2554,3426716,3426716,9870,4248,12488865,12481010,677560,237501,2199485217,2167580722,56.79,60.12,27.44,27.46,0.83,1.08,0.16,0.16
-60476,17,031,17031,2391,1059,8953230,8744246,2391,1059,8953230,8744246,5194675,2180359,4234265812,2448383588,100,100,100,100,0.05,0.05,0.21,0.36
-60477,17,031,17031,38158,16326,31833056,31802205,38161,16328,33078622,33047771,5194675,2180359,4234265812,2448383588,99.99,99.99,96.23,96.23,0.73,0.75,0.75,1.3
-60477,17,197,17197,3,2,1245566,1245566,38161,16328,33078622,33047771,677560,237501,2199485217,2167580722,0.01,0.01,3.77,3.77,0,0,0.06,0.06
-60478,17,031,17031,16833,6170,13502509,13456587,16833,6170,13502509,13456587,5194675,2180359,4234265812,2448383588,100,100,100,100,0.32,0.28,0.32,0.55
-60479,17,063,17063,760,290,105829062,105684426,760,290,105829062,105684426,50063,19996,1114852754,1082725907,100,100,100,100,1.52,1.45,9.49,9.76
-60480,17,031,17031,5246,2288,15814958,15117477,5246,2288,15814958,15117477,5194675,2180359,4234265812,2448383588,100,100,100,100,0.1,0.1,0.37,0.62
-60481,17,063,17063,246,170,2331518,1355167,11851,5735,297367963,284863855,50063,19996,1114852754,1082725907,2.08,2.96,0.78,0.48,0.49,0.85,0.21,0.13
-60481,17,091,17091,80,29,8714993,8714993,11851,5735,297367963,284863855,113449,45246,1764723117,1752271023,0.68,0.51,2.93,3.06,0.07,0.06,0.49,0.5
-60481,17,197,17197,11525,5536,286321452,274793695,11851,5735,297367963,284863855,677560,237501,2199485217,2167580722,97.25,96.53,96.29,96.46,1.7,2.33,13.02,12.68
-60482,17,031,17031,11063,4708,6355658,6322620,11063,4708,6355658,6322620,5194675,2180359,4234265812,2448383588,100,100,100,100,0.21,0.22,0.15,0.26
-60484,17,197,17197,6829,2605,17434256,17428533,6829,2605,17434256,17428533,677560,237501,2199485217,2167580722,100,100,100,100,1.01,1.1,0.79,0.8
-60487,17,031,17031,19307,6703,14135849,14090387,26928,9057,22364496,22300994,5194675,2180359,4234265812,2448383588,71.7,74.01,63.21,63.18,0.37,0.31,0.33,0.58
-60487,17,197,17197,7621,2354,8228647,8210607,26928,9057,22364496,22300994,677560,237501,2199485217,2167580722,28.3,25.99,36.79,36.82,1.12,0.99,0.37,0.38
-60490,17,197,17197,20463,5926,24495429,24443086,20463,5926,24495429,24443086,677560,237501,2199485217,2167580722,100,100,100,100,3.02,2.5,1.11,1.13
-60491,17,197,17197,22743,7919,66028864,65902462,22743,7919,66028864,65902462,677560,237501,2199485217,2167580722,100,100,100,100,3.36,3.33,3,3.04
-60501,17,031,17031,11626,3896,13497949,12527100,11626,3896,13497949,12527100,5194675,2180359,4234265812,2448383588,100,100,100,100,0.22,0.18,0.32,0.51
-60502,17,043,17043,18052,6737,17552289,17146520,21873,8200,27496394,27090071,916924,356179,871301741,848218379,82.53,82.16,63.83,63.29,1.97,1.89,2.01,2.02
-60502,17,089,17089,3821,1463,9944105,9943551,21873,8200,27496394,27090071,515269,182047,1357673935,1346943286,17.47,17.84,36.17,36.71,0.74,0.8,0.73,0.74
-60503,17,093,17093,5179,1764,2976210,2976210,16717,5441,8647466,8627509,114736,40321,834805372,829664827,30.98,32.42,34.42,34.5,4.51,4.37,0.36,0.36
-60503,17,197,17197,11538,3677,5671256,5651299,16717,5441,8647466,8627509,677560,237501,2199485217,2167580722,69.02,67.58,65.58,65.5,1.7,1.55,0.26,0.26
-60504,17,043,17043,28463,10588,19168452,18629589,37919,14382,23539803,22992804,916924,356179,871301741,848218379,75.06,73.62,81.43,81.02,3.1,2.97,2.2,2.2
-60504,17,089,17089,8512,3328,4210478,4202342,37919,14382,23539803,22992804,515269,182047,1357673935,1346943286,22.45,23.14,17.89,18.28,1.65,1.83,0.31,0.31
-60504,17,093,17093,944,466,160873,160873,37919,14382,23539803,22992804,114736,40321,834805372,829664827,2.49,3.24,0.68,0.7,0.82,1.16,0.02,0.02
-60505,17,089,17089,76573,23262,29377474,28917881,76573,23262,29377474,28917881,515269,182047,1357673935,1346943286,100,100,100,100,14.86,12.78,2.16,2.15
-60506,17,089,17089,53013,18743,49321333,48479757,53013,18743,49321333,48479757,515269,182047,1357673935,1346943286,100,100,100,100,10.29,10.3,3.63,3.6
-60510,17,043,17043,211,31,17281207,15934812,28897,11046,69567289,67148707,916924,356179,871301741,848218379,0.73,0.28,24.84,23.73,0.02,0.01,1.98,1.88
-60510,17,089,17089,28686,11015,52286082,51213895,28897,11046,69567289,67148707,515269,182047,1357673935,1346943286,99.27,99.72,75.16,76.27,5.57,6.05,3.85,3.8
-60511,17,037,17037,22,10,2837002,2803446,1793,693,77281506,77245763,105160,41079,1643761548,1635077221,1.23,1.44,3.67,3.63,0.02,0.02,0.17,0.17
-60511,17,089,17089,1771,683,74444504,74442317,1793,693,77281506,77245763,515269,182047,1357673935,1346943286,98.77,98.56,96.33,96.37,0.34,0.38,5.48,5.53
-60512,17,093,17093,1111,429,20557908,20557908,1111,429,20557908,20557908,114736,40321,834805372,829664827,100,100,100,100,0.97,1.06,2.46,2.48
-60513,17,031,17031,19047,7816,8193337,8175969,19047,7816,8193337,8175969,5194675,2180359,4234265812,2448383588,100,100,100,100,0.37,0.36,0.19,0.33
-60514,17,043,17043,9708,3967,5295453,5263005,9708,3967,5295453,5263005,916924,356179,871301741,848218379,100,100,100,100,1.06,1.11,0.61,0.62
-60515,17,043,17043,27503,12117,29480330,29182943,27503,12117,29480330,29182943,916924,356179,871301741,848218379,100,100,100,100,3,3.4,3.38,3.44
-60516,17,043,17043,29084,11969,20803684,20481229,29084,11969,20803684,20481229,916924,356179,871301741,848218379,100,100,100,100,3.17,3.36,2.39,2.41
-60517,17,043,17043,32038,12971,22999050,22512557,32038,12971,22999050,22512557,916924,356179,871301741,848218379,100,100,100,100,3.49,3.64,2.64,2.65
-60518,17,037,17037,279,118,85413709,84838794,3580,1538,347472920,346895933,105160,41079,1643761548,1635077221,7.79,7.67,24.58,24.46,0.27,0.29,5.2,5.19
-60518,17,099,17099,3123,1358,233375422,233373350,3580,1538,347472920,346895933,113924,49978,2973658480,2939957539,87.23,88.3,67.16,67.27,2.74,2.72,7.85,7.94
-60518,17,103,17103,178,62,28683789,28683789,3580,1538,347472920,346895933,36031,15049,1887979293,1877472815,4.97,4.03,8.25,8.27,0.49,0.41,1.52,1.53
-60519,17,043,17043,88,36,160704,160704,88,36,160704,160704,916924,356179,871301741,848218379,100,100,100,100,0.01,0.01,0.02,0.02
-60520,17,037,17037,2886,1155,116757199,116345479,2886,1155,116757199,116345479,105160,41079,1643761548,1635077221,100,100,100,100,2.74,2.81,7.1,7.12
-60521,17,031,17031,2227,735,2112962,2112962,17597,6308,12501266,12205020,5194675,2180359,4234265812,2448383588,12.66,11.65,16.9,17.31,0.04,0.03,0.05,0.09
-60521,17,043,17043,15370,5573,10388304,10092058,17597,6308,12501266,12205020,916924,356179,871301741,848218379,87.34,88.35,83.1,82.69,1.68,1.56,1.19,1.19
-60523,17,043,17043,9890,4751,23986916,23108741,9890,4751,23986916,23108741,916924,356179,871301741,848218379,100,100,100,100,1.08,1.33,2.75,2.72
-60525,17,031,17031,31168,13095,32681793,32646552,31168,13095,32681793,32646552,5194675,2180359,4234265812,2448383588,100,100,100,100,0.6,0.6,0.77,1.33
-60526,17,031,17031,13576,5837,7111387,7111387,13576,5837,7111387,7111387,5194675,2180359,4234265812,2448383588,100,100,100,100,0.26,0.27,0.17,0.29
-60527,17,031,17031,4035,1778,7676669,7655077,27486,12151,38436888,37499879,5194675,2180359,4234265812,2448383588,14.68,14.63,19.97,20.41,0.08,0.08,0.18,0.31
-60527,17,043,17043,23451,10373,30760219,29844802,27486,12151,38436888,37499879,916924,356179,871301741,848218379,85.32,85.37,80.03,79.59,2.56,2.91,3.53,3.52
-60530,17,037,17037,213,87,22918314,22873000,649,253,72886500,72829460,105160,41079,1643761548,1635077221,32.82,34.39,31.44,31.41,0.2,0.21,1.39,1.4
-60530,17,103,17103,436,166,49968186,49956460,649,253,72886500,72829460,36031,15049,1887979293,1877472815,67.18,65.61,68.56,68.59,1.21,1.1,2.65,2.66
-60531,17,037,17037,186,84,57674551,57549913,1902,786,151029151,150904320,105160,41079,1643761548,1635077221,9.78,10.69,38.19,38.14,0.18,0.2,3.51,3.52
-60531,17,099,17099,1716,702,93354600,93354407,1902,786,151029151,150904320,113924,49978,2973658480,2939957539,90.22,89.31,61.81,61.86,1.51,1.4,3.14,3.18
-60532,17,043,17043,27066,12481,23814176,23124188,27066,12481,23814176,23124188,916924,356179,871301741,848218379,100,100,100,100,2.95,3.5,2.73,2.73
-60534,17,031,17031,10649,4340,4472978,4398839,10649,4340,4472978,4398839,5194675,2180359,4234265812,2448383588,100,100,100,100,0.2,0.2,0.11,0.18
-60536,17,093,17093,126,48,1965028,1965028,126,48,1965028,1965028,114736,40321,834805372,829664827,100,100,100,100,0.11,0.12,0.24,0.24
-60537,17,093,17093,245,95,675822,670347,665,241,1866154,1712657,114736,40321,834805372,829664827,36.84,39.42,36.21,39.14,0.21,0.24,0.08,0.08
-60537,17,099,17099,420,146,1190332,1042310,665,241,1866154,1712657,113924,49978,2973658480,2939957539,63.16,60.58,63.79,60.86,0.37,0.29,0.04,0.04
-60538,17,089,17089,8057,3043,13383106,13198534,26619,9324,26400508,26134134,515269,182047,1357673935,1346943286,30.27,32.64,50.69,50.5,1.56,1.67,0.99,0.98
-60538,17,093,17093,18562,6281,13017402,12935600,26619,9324,26400508,26134134,114736,40321,834805372,829664827,69.73,67.36,49.31,49.5,16.18,15.58,1.56,1.56
-60539,17,089,17089,341,6,1989394,1941673,341,6,1989394,1941673,515269,182047,1357673935,1346943286,100,100,100,100,0.07,0,0.15,0.14
-60540,17,043,17043,42910,16130,34707450,34163246,42910,16130,34707450,34163246,916924,356179,871301741,848218379,100,100,100,100,4.68,4.53,3.98,4.03
-60541,17,063,17063,139,47,25512233,25510857,3148,1189,219339689,218465394,50063,19996,1114852754,1082725907,4.42,3.95,11.63,11.68,0.28,0.24,2.29,2.36
-60541,17,093,17093,2962,1125,191881217,191008298,3148,1189,219339689,218465394,114736,40321,834805372,829664827,94.09,94.62,87.48,87.43,2.58,2.79,22.99,23.02
-60541,17,099,17099,47,17,1946239,1946239,3148,1189,219339689,218465394,113924,49978,2973658480,2939957539,1.49,1.43,0.89,0.89,0.04,0.03,0.07,0.07
-60542,17,089,17089,17099,6233,25022231,24412860,17099,6233,25022231,24412860,515269,182047,1357673935,1346943286,100,100,100,100,3.32,3.42,1.84,1.81
-60543,17,089,17089,63,27,226057,226057,36156,12624,111576172,110499901,515269,182047,1357673935,1346943286,0.17,0.21,0.2,0.2,0.01,0.01,0.02,0.02
-60543,17,093,17093,36083,12592,110263441,109187170,36156,12624,111576172,110499901,114736,40321,834805372,829664827,99.8,99.75,98.82,98.81,31.45,31.23,13.21,13.16
-60543,17,197,17197,10,5,1086674,1086674,36156,12624,111576172,110499901,677560,237501,2199485217,2167580722,0.03,0.04,0.97,0.98,0,0,0.05,0.05
-60544,17,093,17093,168,63,14231443,14231443,25959,9812,64386726,60437797,114736,40321,834805372,829664827,0.65,0.64,22.1,23.55,0.15,0.16,1.7,1.72
-60544,17,197,17197,25791,9749,50155283,46206354,25959,9812,64386726,60437797,677560,237501,2199485217,2167580722,99.35,99.36,77.9,76.45,3.81,4.1,2.28,2.13
-60545,17,093,17093,12940,4691,98901622,98030276,12940,4691,98901622,98030276,114736,40321,834805372,829664827,100,100,100,100,11.28,11.63,11.85,11.82
-60546,17,031,17031,15668,6708,10076291,10027969,15668,6708,10076291,10027969,5194675,2180359,4234265812,2448383588,100,100,100,100,0.3,0.31,0.24,0.41
-60548,17,037,17037,7851,3064,58525871,58237544,12218,4918,105757548,104775331,105160,41079,1643761548,1635077221,64.26,62.3,55.34,55.58,7.47,7.46,3.56,3.56
-60548,17,093,17093,321,104,10233984,10233984,12218,4918,105757548,104775331,114736,40321,834805372,829664827,2.63,2.11,9.68,9.77,0.28,0.26,1.23,1.23
-60548,17,099,17099,4046,1750,36997693,36303803,12218,4918,105757548,104775331,113924,49978,2973658480,2939957539,33.12,35.58,34.98,34.65,3.55,3.5,1.24,1.23
-60549,17,099,17099,643,255,62199733,61566308,643,255,62199733,61566308,113924,49978,2973658480,2939957539,100,100,100,100,0.56,0.51,2.09,2.09
-60550,17,037,17037,1440,588,116709278,115180098,1440,588,116709278,115180098,105160,41079,1643761548,1635077221,100,100,100,100,1.37,1.43,7.1,7.04
-60551,17,099,17099,5062,1514,151082671,149407405,5062,1514,151082671,149407405,113924,49978,2973658480,2939957539,100,100,100,100,4.44,3.03,5.08,5.08
-60552,17,037,17037,2078,823,55837983,55655030,4448,1842,71013453,70274137,105160,41079,1643761548,1635077221,46.72,44.68,78.63,79.2,1.98,2,3.4,3.4
-60552,17,099,17099,2370,1019,15175470,14619107,4448,1842,71013453,70274137,113924,49978,2973658480,2939957539,53.28,55.32,21.37,20.8,2.08,2.04,0.51,0.5
-60553,17,103,17103,782,314,133268265,133154820,782,314,133268265,133154820,36031,15049,1887979293,1877472815,100,100,100,100,2.17,2.09,7.06,7.09
-60554,17,089,17089,11781,4367,92486316,92241087,11796,4371,92672344,92427115,515269,182047,1357673935,1346943286,99.87,99.91,99.8,99.8,2.29,2.4,6.81,6.85
-60554,17,093,17093,15,4,186028,186028,11796,4371,92672344,92427115,114736,40321,834805372,829664827,0.13,0.09,0.2,0.2,0.01,0.01,0.02,0.02
-60555,17,043,17043,13538,5272,18445135,17815545,13538,5272,18445135,17815545,916924,356179,871301741,848218379,100,100,100,100,1.48,1.48,2.12,2.1
-60556,17,037,17037,2007,814,135814795,135517540,2007,814,135814795,135517540,105160,41079,1643761548,1635077221,100,100,100,100,1.91,1.98,8.26,8.29
-60557,17,099,17099,155,63,1970367,1740612,155,63,1970367,1740612,113924,49978,2973658480,2939957539,100,100,100,100,0.14,0.13,0.07,0.06
-60558,17,031,17031,12960,4584,9131021,9130758,12960,4584,9131021,9130758,5194675,2180359,4234265812,2448383588,100,100,100,100,0.25,0.21,0.22,0.37
-60559,17,043,17043,24852,10847,12897312,12656797,24852,10847,12897312,12656797,916924,356179,871301741,848218379,100,100,100,100,2.71,3.05,1.48,1.49
-60560,17,093,17093,22415,8403,203584175,201705138,22415,8403,203584175,201705138,114736,40321,834805372,829664827,100,100,100,100,19.54,20.84,24.39,24.31
-60561,17,043,17043,23115,9587,16463767,16179386,23115,9587,16463767,16179386,916924,356179,871301741,848218379,100,100,100,100,2.52,2.69,1.89,1.91
-60563,17,043,17043,35922,16086,40444212,39270125,35922,16086,40444212,39270125,916924,356179,871301741,848218379,100,100,100,100,3.92,4.52,4.64,4.63
-60564,17,043,17043,5157,1801,9916492,9665648,41312,13153,42056377,41650701,916924,356179,871301741,848218379,12.48,13.69,23.58,23.21,0.56,0.51,1.14,1.14
-60564,17,197,17197,36155,11352,32139885,31985053,41312,13153,42056377,41650701,677560,237501,2199485217,2167580722,87.52,86.31,76.42,76.79,5.34,4.78,1.46,1.48
-60565,17,043,17043,25314,9151,20566996,20334188,40524,13942,32638698,32283283,916924,356179,871301741,848218379,62.47,65.64,63.01,62.99,2.76,2.57,2.36,2.4
-60565,17,197,17197,15210,4791,12071702,11949095,40524,13942,32638698,32283283,677560,237501,2199485217,2167580722,37.53,34.36,36.99,37.01,2.24,2.02,0.55,0.55
-60585,17,093,17093,2046,598,4779957,4779957,22311,6761,42113164,41520367,114736,40321,834805372,829664827,9.17,8.84,11.35,11.51,1.78,1.48,0.57,0.58
-60585,17,197,17197,20265,6163,37333207,36740410,22311,6761,42113164,41520367,677560,237501,2199485217,2167580722,90.83,91.16,88.65,88.49,2.99,2.59,1.7,1.69
-60586,17,093,17093,5337,1546,13248815,13248815,46251,13808,45770165,45379297,114736,40321,834805372,829664827,11.54,11.2,28.95,29.2,4.65,3.83,1.59,1.6
-60586,17,197,17197,40914,12262,32521350,32130482,46251,13808,45770165,45379297,677560,237501,2199485217,2167580722,88.46,88.8,71.05,70.8,6.04,5.16,1.48,1.48
-60601,17,031,17031,11110,8594,999363,999363,11110,8594,999363,999363,5194675,2180359,4234265812,2448383588,100,100,100,100,0.21,0.39,0.02,0.04
-60602,17,031,17031,1204,791,225435,225435,1204,791,225435,225435,5194675,2180359,4234265812,2448383588,100,100,100,100,0.02,0.04,0.01,0.01
-60603,17,031,17031,493,749,375285,375285,493,749,375285,375285,5194675,2180359,4234265812,2448383588,100,100,100,100,0.01,0.03,0.01,0.02
-60604,17,031,17031,570,496,239756,239756,570,496,239756,239756,5194675,2180359,4234265812,2448383588,100,100,100,100,0.01,0.02,0.01,0.01
-60605,17,031,17031,24668,14805,5256796,3225725,24668,14805,5256796,3225725,5194675,2180359,4234265812,2448383588,100,100,100,100,0.47,0.68,0.12,0.13
-60606,17,031,17031,2308,2022,661666,661666,2308,2022,661666,661666,5194675,2180359,4234265812,2448383588,100,100,100,100,0.04,0.09,0.02,0.03
-60607,17,031,17031,23897,13356,6009736,6009736,23897,13356,6009736,6009736,5194675,2180359,4234265812,2448383588,100,100,100,100,0.46,0.61,0.14,0.25
-60608,17,031,17031,82739,28852,16908948,16452029,82739,28852,16908948,16452029,5194675,2180359,4234265812,2448383588,100,100,100,100,1.59,1.32,0.4,0.67
-60609,17,031,17031,64906,24656,20142087,20092663,64906,24656,20142087,20092663,5194675,2180359,4234265812,2448383588,100,100,100,100,1.25,1.13,0.48,0.82
-60610,17,031,17031,37726,26614,4176317,3037781,37726,26614,4176317,3037781,5194675,2180359,4234265812,2448383588,100,100,100,100,0.73,1.22,0.1,0.12
-60611,17,031,17031,28718,24211,3637982,2094884,28718,24211,3637982,2094884,5194675,2180359,4234265812,2448383588,100,100,100,100,0.55,1.11,0.09,0.09
-60612,17,031,17031,33472,15513,9705205,9705205,33472,15513,9705205,9705205,5194675,2180359,4234265812,2448383588,100,100,100,100,0.64,0.71,0.23,0.4
-60613,17,031,17031,48281,29976,6748617,5634577,48281,29976,6748617,5634577,5194675,2180359,4234265812,2448383588,100,100,100,100,0.93,1.37,0.16,0.23
-60614,17,031,17031,66617,37951,8944390,8200331,66617,37951,8944390,8200331,5194675,2180359,4234265812,2448383588,100,100,100,100,1.28,1.74,0.21,0.33
-60615,17,031,17031,40603,23192,7394020,5730411,40603,23192,7394020,5730411,5194675,2180359,4234265812,2448383588,100,100,100,100,0.78,1.06,0.17,0.23
-60616,17,031,17031,48433,25198,11963763,10482831,48433,25198,11963763,10482831,5194675,2180359,4234265812,2448383588,100,100,100,100,0.93,1.16,0.28,0.43
-60617,17,031,17031,84155,33392,39821531,35909179,84155,33392,39821531,35909179,5194675,2180359,4234265812,2448383588,100,100,100,100,1.62,1.53,0.94,1.47
-60618,17,031,17031,92084,39547,13107751,13107751,92084,39547,13107751,13107751,5194675,2180359,4234265812,2448383588,100,100,100,100,1.77,1.81,0.31,0.54
-60619,17,031,17031,63825,31893,15593782,15593782,63825,31893,15593782,15593782,5194675,2180359,4234265812,2448383588,100,100,100,100,1.23,1.46,0.37,0.64
-60620,17,031,17031,72216,29936,18364711,18353976,72216,29936,18364711,18353976,5194675,2180359,4234265812,2448383588,100,100,100,100,1.39,1.37,0.43,0.75
-60621,17,031,17031,35912,16904,9656913,9656913,35912,16904,9656913,9656913,5194675,2180359,4234265812,2448383588,100,100,100,100,0.69,0.78,0.23,0.39
-60622,17,031,17031,52548,26433,6389531,6354377,52548,26433,6389531,6354377,5194675,2180359,4234265812,2448383588,100,100,100,100,1.01,1.21,0.15,0.26
-60623,17,031,17031,92108,30931,14126990,13873043,92108,30931,14126990,13873043,5194675,2180359,4234265812,2448383588,100,100,100,100,1.77,1.42,0.33,0.57
-60624,17,031,17031,38105,16693,9169406,9155267,38105,16693,9169406,9155267,5194675,2180359,4234265812,2448383588,100,100,100,100,0.73,0.77,0.22,0.37
-60625,17,031,17031,78651,32255,10122969,10093806,78651,32255,10122969,10093806,5194675,2180359,4234265812,2448383588,100,100,100,100,1.51,1.48,0.24,0.41
-60626,17,031,17031,50139,25517,5609248,4416736,50139,25517,5609248,4416736,5194675,2180359,4234265812,2448383588,100,100,100,100,0.97,1.17,0.13,0.18
-60628,17,031,17031,72202,28651,28475510,28281273,72202,28651,28475510,28281273,5194675,2180359,4234265812,2448383588,100,100,100,100,1.39,1.31,0.67,1.16
-60629,17,031,17031,113916,34000,17801147,17639584,113916,34000,17801147,17639584,5194675,2180359,4234265812,2448383588,100,100,100,100,2.19,1.56,0.42,0.72
-60630,17,031,17031,54093,22195,12368781,12365754,54093,22195,12368781,12365754,5194675,2180359,4234265812,2448383588,100,100,100,100,1.04,1.02,0.29,0.51
-60631,17,031,17031,28641,12650,9635928,9635928,28641,12650,9635928,9635928,5194675,2180359,4234265812,2448383588,100,100,100,100,0.55,0.58,0.23,0.39
-60632,17,031,17031,91326,27057,19358640,19235615,91326,27057,19358640,19235615,5194675,2180359,4234265812,2448383588,100,100,100,100,1.76,1.24,0.46,0.79
-60633,17,031,17031,12927,5182,31612483,26600801,12927,5182,31612483,26600801,5194675,2180359,4234265812,2448383588,100,100,100,100,0.25,0.24,0.75,1.09
-60634,17,031,17031,74298,27449,18446105,18422020,74298,27449,18446105,18422020,5194675,2180359,4234265812,2448383588,100,100,100,100,1.43,1.26,0.44,0.75
-60636,17,031,17031,40916,15300,10132375,10132375,40916,15300,10132375,10132375,5194675,2180359,4234265812,2448383588,100,100,100,100,0.79,0.7,0.24,0.41
-60637,17,031,17031,49503,24632,13578791,11667654,49503,24632,13578791,11667654,5194675,2180359,4234265812,2448383588,100,100,100,100,0.95,1.13,0.32,0.48
-60638,17,031,17031,55026,21397,28752636,28752636,55026,21397,28752636,28752636,5194675,2180359,4234265812,2448383588,100,100,100,100,1.06,0.98,0.68,1.17
-60639,17,031,17031,90407,28183,12631958,12631958,90407,28183,12631958,12631958,5194675,2180359,4234265812,2448383588,100,100,100,100,1.74,1.29,0.3,0.52
-60640,17,031,17031,65790,37598,6887350,6234410,65790,37598,6887350,6234410,5194675,2180359,4234265812,2448383588,100,100,100,100,1.27,1.72,0.16,0.25
-60641,17,031,17031,71663,27072,10468217,10468217,71663,27072,10468217,10468217,5194675,2180359,4234265812,2448383588,100,100,100,100,1.38,1.24,0.25,0.43
-60642,17,031,17031,18480,9910,4492570,4409406,18480,9910,4492570,4409406,5194675,2180359,4234265812,2448383588,100,100,100,100,0.36,0.45,0.11,0.18
-60643,17,031,17031,49952,19525,19059651,19027065,49952,19525,19059651,19027065,5194675,2180359,4234265812,2448383588,100,100,100,100,0.96,0.9,0.45,0.78
-60644,17,031,17031,48648,19620,9099257,9074682,48648,19620,9099257,9074682,5194675,2180359,4234265812,2448383588,100,100,100,100,0.94,0.9,0.21,0.37
-60645,17,031,17031,45274,17528,5847014,5847014,45274,17528,5847014,5847014,5194675,2180359,4234265812,2448383588,100,100,100,100,0.87,0.8,0.14,0.24
-60646,17,031,17031,27177,11443,11840818,11840818,27177,11443,11840818,11840818,5194675,2180359,4234265812,2448383588,100,100,100,100,0.52,0.52,0.28,0.48
-60647,17,031,17031,87291,38453,10511986,10481520,87291,38453,10511986,10481520,5194675,2180359,4234265812,2448383588,100,100,100,100,1.68,1.76,0.25,0.43
-60649,17,031,17031,46650,26343,10165292,7589170,46650,26343,10165292,7589170,5194675,2180359,4234265812,2448383588,100,100,100,100,0.9,1.21,0.24,0.31
-60651,17,031,17031,64267,23199,9055133,9055133,64267,23199,9055133,9055133,5194675,2180359,4234265812,2448383588,100,100,100,100,1.24,1.06,0.21,0.37
-60652,17,031,17031,40959,13394,12993375,12993375,40959,13394,12993375,12993375,5194675,2180359,4234265812,2448383588,100,100,100,100,0.79,0.61,0.31,0.53
-60653,17,031,17031,29908,15989,7739740,6043069,29908,15989,7739740,6043069,5194675,2180359,4234265812,2448383588,100,100,100,100,0.58,0.73,0.18,0.25
-60654,17,031,17031,14875,11859,1574555,1574555,14875,11859,1574555,1574555,5194675,2180359,4234265812,2448383588,100,100,100,100,0.29,0.54,0.04,0.06
-60655,17,031,17031,28550,11036,11411336,11411336,28550,11036,11411336,11411336,5194675,2180359,4234265812,2448383588,100,100,100,100,0.55,0.51,0.27,0.47
-60656,17,031,17031,27613,12660,8465988,8465988,27613,12660,8465988,8465988,5194675,2180359,4234265812,2448383588,100,100,100,100,0.53,0.58,0.2,0.35
-60657,17,031,17031,65996,41483,7914162,5888326,65996,41483,7914162,5888326,5194675,2180359,4234265812,2448383588,100,100,100,100,1.27,1.9,0.19,0.24
-60659,17,031,17031,38104,14198,5253542,5250723,38104,14198,5253542,5250723,5194675,2180359,4234265812,2448383588,100,100,100,100,0.73,0.65,0.12,0.21
-60660,17,031,17031,42752,23645,3899123,3303447,42752,23645,3899123,3303447,5194675,2180359,4234265812,2448383588,100,100,100,100,0.82,1.08,0.09,0.13
-60661,17,031,17031,7792,5866,769603,769603,7792,5866,769603,769603,5194675,2180359,4234265812,2448383588,100,100,100,100,0.15,0.27,0.02,0.03
-60706,17,031,17031,23134,9669,7660354,7660354,23134,9669,7660354,7660354,5194675,2180359,4234265812,2448383588,100,100,100,100,0.45,0.44,0.18,0.31
-60707,17,031,17031,42920,16901,9344447,9344447,42920,16901,9344447,9344447,5194675,2180359,4234265812,2448383588,100,100,100,100,0.83,0.78,0.22,0.38
-60712,17,031,17031,12590,4640,6888377,6888377,12590,4640,6888377,6888377,5194675,2180359,4234265812,2448383588,100,100,100,100,0.24,0.21,0.16,0.28
-60714,17,031,17031,29931,12623,16481998,16481998,29931,12623,16481998,16481998,5194675,2180359,4234265812,2448383588,100,100,100,100,0.58,0.58,0.39,0.67
-60803,17,031,17031,22285,9288,19943944,19567015,22285,9288,19943944,19567015,5194675,2180359,4234265812,2448383588,100,100,100,100,0.43,0.43,0.47,0.8
-60804,17,031,17031,84573,24986,20221220,19848453,84573,24986,20221220,19848453,5194675,2180359,4234265812,2448383588,100,100,100,100,1.63,1.15,0.48,0.81
-60805,17,031,17031,19852,7559,8823142,8823142,19852,7559,8823142,8823142,5194675,2180359,4234265812,2448383588,100,100,100,100,0.38,0.35,0.21,0.36
-60827,17,031,17031,27946,11457,19391293,18161652,27946,11457,19391293,18161652,5194675,2180359,4234265812,2448383588,100,100,100,100,0.54,0.53,0.46,0.74
-60901,17,091,17091,37157,14895,253258037,247980663,37157,14895,253258037,247980663,113449,45246,1764723117,1752271023,100,100,100,100,32.75,32.92,14.35,14.15
-60910,17,091,17091,538,226,1586931,1298839,538,226,1586931,1298839,113449,45246,1764723117,1752271023,100,100,100,100,0.47,0.5,0.09,0.07
-60911,17,075,17075,1372,597,166383855,166230204,1372,597,166383855,166230204,29718,13452,2898007857,2893835594,100,100,100,100,4.62,4.44,5.74,5.74
-60912,17,075,17075,599,268,92069340,92040351,599,268,92069340,92040351,29718,13452,2898007857,2893835594,100,100,100,100,2.02,1.99,3.18,3.18
-60913,17,091,17091,1617,631,118805919,118805919,1617,631,118805919,118805919,113449,45246,1764723117,1752271023,100,100,100,100,1.43,1.39,6.73,6.78
-60914,17,091,17091,29107,10589,127305147,126388530,29107,10589,127305147,126388530,113449,45246,1764723117,1752271023,100,100,100,100,25.66,23.4,7.21,7.21
-60915,17,091,17091,10774,4466,8288014,8208456,10774,4466,8288014,8208456,113449,45246,1764723117,1752271023,100,100,100,100,9.5,9.87,0.47,0.47
-60917,17,053,17053,15,6,7832275,7815796,574,217,95765751,95749272,14081,6282,1259360095,1257738509,2.61,2.76,8.18,8.16,0.11,0.1,0.62,0.62
-60917,17,091,17091,539,200,75232229,75232229,574,217,95765751,95749272,113449,45246,1764723117,1752271023,93.9,92.17,78.56,78.57,0.48,0.44,4.26,4.29
-60917,17,105,17105,20,11,12701247,12701247,574,217,95765751,95749272,38950,15895,2708939484,2704686611,3.48,5.07,13.26,13.27,0.05,0.07,0.47,0.47
-60918,17,075,17075,898,407,131477861,131327108,898,407,131477861,131327108,29718,13452,2898007857,2893835594,100,100,100,100,3.02,3.03,4.54,4.54
-60919,17,053,17053,347,160,39415226,39405628,558,238,90290027,90280429,14081,6282,1259360095,1257738509,62.19,67.23,43.65,43.65,2.46,2.55,3.13,3.13
-60919,17,091,17091,110,47,12994728,12994728,558,238,90290027,90280429,113449,45246,1764723117,1752271023,19.71,19.75,14.39,14.39,0.1,0.1,0.74,0.74
-60919,17,105,17105,101,31,37880073,37880073,558,238,90290027,90280429,38950,15895,2708939484,2704686611,18.1,13.03,41.95,41.96,0.26,0.2,1.4,1.4
-60920,17,105,17105,178,73,5098987,5098987,178,73,5098987,5098987,38950,15895,2708939484,2704686611,100,100,100,100,0.46,0.46,0.19,0.19
-60921,17,053,17053,19,6,8489707,8489707,1519,716,185524909,185358990,14081,6282,1259360095,1257738509,1.25,0.84,4.58,4.58,0.13,0.1,0.67,0.67
-60921,17,105,17105,1500,710,177035202,176869283,1519,716,185524909,185358990,38950,15895,2708939484,2704686611,98.75,99.16,95.42,95.42,3.85,4.47,6.54,6.54
-60922,17,075,17075,1100,473,67827961,67779873,2459,1045,138181540,137645111,29718,13452,2898007857,2893835594,44.73,45.26,49.09,49.24,3.7,3.52,2.34,2.34
-60922,17,091,17091,1359,572,70353579,69865238,2459,1045,138181540,137645111,113449,45246,1764723117,1752271023,55.27,54.74,50.91,50.76,1.2,1.26,3.99,3.99
-60924,17,075,17075,1635,780,188125625,188020204,1635,780,188125625,188020204,29718,13452,2898007857,2893835594,100,100,100,100,5.5,5.8,6.49,6.5
-60926,17,075,17075,67,35,7159743,7159743,67,35,7159743,7159743,29718,13452,2898007857,2893835594,100,100,100,100,0.23,0.26,0.25,0.25
-60927,17,075,17075,2404,950,190784825,190176967,2404,950,190784825,190176967,29718,13452,2898007857,2893835594,100,100,100,100,8.09,7.06,6.58,6.57
-60928,17,075,17075,709,320,28588297,28588297,709,320,28588297,28588297,29718,13452,2898007857,2893835594,100,100,100,100,2.39,2.38,0.99,0.99
-60929,17,053,17053,28,12,17310189,17310189,730,355,101697663,101697663,14081,6282,1259360095,1257738509,3.84,3.38,17.02,17.02,0.2,0.19,1.37,1.38
-60929,17,105,17105,702,343,84387474,84387474,730,355,101697663,101697663,38950,15895,2708939484,2704686611,96.16,96.62,82.98,82.98,1.8,2.16,3.12,3.12
-60930,17,075,17075,918,372,114181397,114181397,918,372,114181397,114181397,29718,13452,2898007857,2893835594,100,100,100,100,3.09,2.77,3.94,3.95
-60931,17,075,17075,615,258,119421013,119389258,615,258,119421013,119389258,29718,13452,2898007857,2893835594,100,100,100,100,2.07,1.92,4.12,4.13
-60932,17,183,17183,78,39,1917884,1917884,78,39,1917884,1917884,81625,36318,2334298050,2326763569,100,100,100,100,0.1,0.11,0.08,0.08
-60933,17,053,17053,302,137,5239176,5239176,302,137,5239176,5239176,14081,6282,1259360095,1257738509,100,100,100,100,2.14,2.18,0.42,0.42
-60934,17,105,17105,273,128,83893809,83820337,273,128,83893809,83820337,38950,15895,2708939484,2704686611,100,100,100,100,0.7,0.81,3.1,3.1
-60935,17,091,17091,1064,407,49973763,48993151,1064,407,49973763,48993151,113449,45246,1764723117,1752271023,100,100,100,100,0.94,0.9,2.83,2.8
-60936,17,019,17019,12,3,4570880,4570880,4321,1956,262904060,262293916,201081,87569,2585825453,2580316235,0.28,0.15,1.74,1.74,0.01,0,0.18,0.18
-60936,17,053,17053,4290,1945,247856101,247247445,4321,1956,262904060,262293916,14081,6282,1259360095,1257738509,99.28,99.44,94.28,94.26,30.47,30.96,19.68,19.66
-60936,17,113,17113,19,8,10477079,10475591,4321,1956,262904060,262293916,169572,69656,3072424395,3064933852,0.44,0.41,3.99,3.99,0.01,0.01,0.34,0.34
-60938,17,075,17075,2131,940,132153991,131982905,2131,940,132153991,131982905,29718,13452,2898007857,2893835594,100,100,100,100,7.17,6.99,4.56,4.56
-60940,17,091,17091,3306,1278,192952855,192885889,3369,1298,195993192,195926226,113449,45246,1764723117,1752271023,98.13,98.46,98.45,98.45,2.91,2.82,10.93,11.01
-60940,17,197,17197,63,20,3040337,3040337,3369,1298,195993192,195926226,677560,237501,2199485217,2167580722,1.87,1.54,1.55,1.55,0.01,0.01,0.14,0.14
-60941,17,075,17075,45,13,16853579,16853579,2039,831,135782973,135782973,29718,13452,2898007857,2893835594,2.21,1.56,12.41,12.41,0.15,0.1,0.58,0.58
-60941,17,091,17091,1994,818,118929394,118929394,2039,831,135782973,135782973,113449,45246,1764723117,1752271023,97.79,98.44,87.59,87.59,1.76,1.81,6.74,6.79
-60942,17,075,17075,192,82,93653067,93653067,6181,2880,299300022,299218819,29718,13452,2898007857,2893835594,3.11,2.85,31.29,31.3,0.65,0.61,3.23,3.24
-60942,17,183,17183,5989,2798,205646955,205565752,6181,2880,299300022,299218819,81625,36318,2334298050,2326763569,96.89,97.15,68.71,68.7,7.34,7.7,8.81,8.83
-60945,17,075,17075,153,92,1370577,1370577,153,92,1370577,1370577,29718,13452,2898007857,2893835594,100,100,100,100,0.51,0.68,0.05,0.05
-60946,17,053,17053,381,177,92716839,92716839,426,195,112757905,112757905,14081,6282,1259360095,1257738509,89.44,90.77,82.23,82.23,2.71,2.82,7.36,7.37
-60946,17,105,17105,45,18,20041066,20041066,426,195,112757905,112757905,38950,15895,2708939484,2704686611,10.56,9.23,17.77,17.77,0.12,0.11,0.74,0.74
-60948,17,053,17053,103,39,38492358,38462528,1533,813,123007839,122225924,14081,6282,1259360095,1257738509,6.72,4.8,31.29,31.47,0.73,0.62,3.06,3.06
-60948,17,075,17075,1430,774,84515481,83763396,1533,813,123007839,122225924,29718,13452,2898007857,2893835594,93.28,95.2,68.71,68.53,4.81,5.75,2.92,2.89
-60949,17,019,17019,606,268,59034813,58996943,636,281,65449797,65395164,201081,87569,2585825453,2580316235,95.28,95.37,90.2,90.22,0.3,0.31,2.28,2.29
-60949,17,053,17053,30,13,6414984,6398221,636,281,65449797,65395164,14081,6282,1259360095,1257738509,4.72,4.63,9.8,9.78,0.21,0.21,0.51,0.51
-60950,17,091,17091,12098,4877,186214213,185771105,12168,4902,198290007,197832607,113449,45246,1764723117,1752271023,99.42,99.49,93.91,93.9,10.66,10.78,10.55,10.6
-60950,17,197,17197,70,25,12075794,12061502,12168,4902,198290007,197832607,677560,237501,2199485217,2167580722,0.58,0.51,6.09,6.1,0.01,0.01,0.55,0.56
-60951,17,075,17075,961,423,138597035,137872589,961,423,138597035,137872589,29718,13452,2898007857,2893835594,100,100,100,100,3.23,3.14,4.78,4.76
-60952,17,053,17053,679,305,98816504,98742455,684,307,106497346,106387162,14081,6282,1259360095,1257738509,99.27,99.35,92.79,92.81,4.82,4.86,7.85,7.85
-60952,17,105,17105,5,2,7680842,7644707,684,307,106497346,106387162,38950,15895,2708939484,2704686611,0.73,0.65,7.21,7.19,0.01,0.01,0.28,0.28
-60953,17,075,17075,2469,1184,385015537,384960982,2469,1184,385015537,384960982,29718,13452,2898007857,2893835594,100,100,100,100,8.31,8.8,13.29,13.3
-60954,17,091,17091,6104,2677,174042651,172066808,6104,2677,174042651,172066808,113449,45246,1764723117,1752271023,100,100,100,100,5.38,5.92,9.86,9.82
-60955,17,075,17075,1901,737,225589429,225527849,1901,737,225589429,225527849,29718,13452,2898007857,2893835594,100,100,100,100,6.4,5.48,7.78,7.79
-60957,17,019,17019,101,39,30251123,30161784,5615,2410,258878828,258437345,201081,87569,2585825453,2580316235,1.8,1.62,11.69,11.67,0.05,0.04,1.17,1.17
-60957,17,053,17053,5514,2371,228627705,228275561,5615,2410,258878828,258437345,14081,6282,1259360095,1257738509,98.2,98.38,88.31,88.33,39.16,37.74,18.15,18.15
-60958,17,091,17091,2135,1059,135233859,135233859,2135,1059,135233859,135233859,113449,45246,1764723117,1752271023,100,100,100,100,1.88,2.34,7.66,7.72
-60959,17,053,17053,1062,482,133247528,133247528,1082,490,143631854,143631854,14081,6282,1259360095,1257738509,98.15,98.37,92.77,92.77,7.54,7.67,10.58,10.59
-60959,17,105,17105,20,8,10384326,10384326,1082,490,143631854,143631854,38950,15895,2708939484,2704686611,1.85,1.63,7.23,7.23,0.05,0.05,0.38,0.38
-60960,17,019,17019,7,4,4091707,4019900,1064,473,215265991,215186994,201081,87569,2585825453,2580316235,0.66,0.85,1.9,1.87,0,0,0.16,0.16
-60960,17,053,17053,180,69,47818770,47818770,1064,473,215265991,215186994,14081,6282,1259360095,1257738509,16.92,14.59,22.21,22.22,1.28,1.1,3.8,3.8
-60960,17,075,17075,35,14,18168903,18168903,1064,473,215265991,215186994,29718,13452,2898007857,2893835594,3.29,2.96,8.44,8.44,0.12,0.1,0.63,0.63
-60960,17,183,17183,842,386,145186611,145179421,1064,473,215265991,215186994,81625,36318,2334298050,2326763569,79.14,81.61,67.45,67.47,1.03,1.06,6.22,6.24
-60961,17,063,17063,4,2,3902031,3902031,700,418,96361772,96035981,50063,19996,1114852754,1082725907,0.57,0.48,4.05,4.06,0.01,0.01,0.35,0.36
-60961,17,091,17091,589,366,67806060,67480269,700,418,96361772,96035981,113449,45246,1764723117,1752271023,84.14,87.56,70.37,70.27,0.52,0.81,3.84,3.85
-60961,17,105,17105,107,50,24653681,24653681,700,418,96361772,96035981,38950,15895,2708939484,2704686611,15.29,11.96,25.58,25.67,0.27,0.31,0.91,0.91
-60962,17,053,17053,524,268,104885617,104710175,524,268,104885617,104710175,14081,6282,1259360095,1257738509,100,100,100,100,3.72,4.27,8.33,8.33
-60963,17,183,17183,1807,789,201660222,201660222,1807,789,201660222,201660222,81625,36318,2334298050,2326763569,100,100,100,100,2.21,2.17,8.64,8.67
-60964,17,075,17075,344,142,51411969,51377942,4968,2145,195647979,194218318,29718,13452,2898007857,2893835594,6.92,6.62,26.28,26.45,1.16,1.06,1.77,1.78
-60964,17,091,17091,4624,2003,144236010,142840376,4968,2145,195647979,194218318,113449,45246,1764723117,1752271023,93.08,93.38,73.72,73.55,4.08,4.43,8.17,8.15
-60966,17,075,17075,1526,696,155599673,155599673,1526,696,155599673,155599673,29718,13452,2898007857,2893835594,100,100,100,100,5.13,5.17,5.37,5.38
-60968,17,053,17053,77,42,54194657,54140876,433,207,112147436,112093655,14081,6282,1259360095,1257738509,17.78,20.29,48.32,48.3,0.55,0.67,4.3,4.3
-60968,17,075,17075,356,165,57952779,57952779,433,207,112147436,112093655,29718,13452,2898007857,2893835594,82.22,79.71,51.68,51.7,1.2,1.23,2,2
-60969,17,091,17091,65,30,655728,655728,65,30,655728,655728,113449,45246,1764723117,1752271023,100,100,100,100,0.06,0.07,0.04,0.04
-60970,17,075,17075,7190,3431,337620550,336372581,7190,3431,337620550,336372581,29718,13452,2898007857,2893835594,100,100,100,100,24.19,25.51,11.65,11.62
-60973,17,075,17075,385,187,89922773,89922773,385,187,89922773,89922773,29718,13452,2898007857,2893835594,100,100,100,100,1.3,1.39,3.1,3.11
-60974,17,075,17075,283,112,3562597,3562597,283,112,3562597,3562597,29718,13452,2898007857,2893835594,100,100,100,100,0.95,0.83,0.12,0.12
-61001,17,085,17085,1179,1209,102164202,100465323,1179,1209,102164202,100465323,22678,13574,1602498772,1556808594,100,100,100,100,5.2,8.91,6.38,6.45
-61006,17,103,17103,1519,648,131374404,131245231,1759,745,180007965,179878792,36031,15049,1887979293,1877472815,86.36,86.98,72.98,72.96,4.22,4.31,6.96,6.99
-61006,17,141,17141,240,97,48633561,48633561,1759,745,180007965,179878792,53497,22561,1976123405,1964698351,13.64,13.02,27.02,27.04,0.45,0.43,2.46,2.48
-61007,17,141,17141,347,144,40320744,40320744,534,219,69297991,69297991,53497,22561,1976123405,1964698351,64.98,65.75,58.18,58.18,0.65,0.64,2.04,2.05
-61007,17,177,17177,187,75,28977247,28977247,534,219,69297991,69297991,47711,22081,1463493668,1462107736,35.02,34.25,41.82,41.82,0.39,0.34,1.98,1.98
-61008,17,007,17007,34116,12700,223808430,222339447,34311,12775,225350700,223881717,54165,19970,730440608,727059777,99.43,99.41,99.32,99.31,62.99,63.6,30.64,30.58
-61008,17,201,17201,195,75,1542270,1542270,34311,12775,225350700,223881717,295266,125965,1344852189,1329601795,0.57,0.59,0.68,0.69,0.07,0.06,0.11,0.12
-61010,17,141,17141,8032,3109,102628795,100645312,8032,3109,102628795,100645312,53497,22561,1976123405,1964698351,100,100,100,100,15.01,13.78,5.19,5.12
-61011,17,007,17007,1716,640,80492316,80461788,2945,1106,98865238,98834710,54165,19970,730440608,727059777,58.27,57.87,81.42,81.41,3.17,3.2,11.02,11.07
-61011,17,201,17201,1229,466,18372922,18372922,2945,1106,98865238,98834710,295266,125965,1344852189,1329601795,41.73,42.13,18.58,18.59,0.42,0.37,1.37,1.38
-61012,17,007,17007,2175,808,94183179,93951389,2175,808,94183179,93951389,54165,19970,730440608,727059777,100,100,100,100,4.02,4.05,12.89,12.92
-61013,17,177,17177,528,228,901287,901287,528,228,901287,901287,47711,22081,1463493668,1462107736,100,100,100,100,1.11,1.03,0.06,0.06
-61014,17,015,17015,1033,478,144473267,144473267,1173,537,168217067,168217067,15387,8437,1207866846,1152045333,88.06,89.01,85.89,85.89,6.71,5.67,11.96,12.54
-61014,17,195,17195,140,59,23743800,23743800,1173,537,168217067,168217067,58498,25770,1803995335,1772198878,11.94,10.99,14.11,14.11,0.24,0.23,1.32,1.34
-61015,17,141,17141,946,402,106259169,106124180,946,402,106259169,106124180,53497,22561,1976123405,1964698351,100,100,100,100,1.77,1.78,5.38,5.4
-61016,17,007,17007,559,252,32180318,32072826,4837,2067,74211244,73023042,54165,19970,730440608,727059777,11.56,12.19,43.36,43.92,1.03,1.26,4.41,4.41
-61016,17,201,17201,4278,1815,42030926,40950216,4837,2067,74211244,73023042,295266,125965,1344852189,1329601795,88.44,87.81,56.64,56.08,1.45,1.44,3.13,3.08
-61018,17,177,17177,1080,454,83428996,83428996,1080,454,83428996,83428996,47711,22081,1463493668,1462107736,100,100,100,100,2.26,2.06,5.7,5.71
-61019,17,177,17177,2166,1102,60435287,59998194,3550,1906,94883343,93712000,47711,22081,1463493668,1462107736,61.01,57.82,63.69,64.02,4.54,4.99,4.13,4.1
-61019,17,201,17201,1384,804,34448056,33713806,3550,1906,94883343,93712000,295266,125965,1344852189,1329601795,38.99,42.18,36.31,35.98,0.47,0.64,2.56,2.54
-61020,17,141,17141,3051,1059,74295230,74295230,3108,1083,81789135,81789135,53497,22561,1976123405,1964698351,98.17,97.78,90.84,90.84,5.7,4.69,3.76,3.78
-61020,17,201,17201,57,24,7493905,7493905,3108,1083,81789135,81789135,295266,125965,1344852189,1329601795,1.83,2.22,9.16,9.16,0.02,0.02,0.56,0.56
-61021,17,103,17103,22239,9130,352148387,345920872,23745,9926,396582648,388060368,36031,15049,1887979293,1877472815,93.66,91.98,88.8,89.14,61.72,60.67,18.65,18.42
-61021,17,141,17141,1506,796,44434261,42139496,23745,9926,396582648,388060368,53497,22561,1976123405,1964698351,6.34,8.02,11.2,10.86,2.82,3.53,2.25,2.14
-61024,17,201,17201,2620,1094,162062160,161828362,2620,1094,162062160,161828362,295266,125965,1344852189,1329601795,100,100,100,100,0.89,0.87,12.05,12.17
-61025,17,085,17085,4867,2102,101097678,89898472,4867,2102,101097678,89898472,22678,13574,1602498772,1556808594,100,100,100,100,21.46,15.49,6.31,5.77
-61027,17,177,17177,52,26,666663,666663,52,26,666663,666663,47711,22081,1463493668,1462107736,100,100,100,100,0.11,0.12,0.05,0.05
-61028,17,085,17085,1989,1125,277117981,277103931,1989,1125,277117981,277103931,22678,13574,1602498772,1556808594,100,100,100,100,8.77,8.29,17.29,17.8
-61030,17,141,17141,2205,951,154635303,154549098,2205,951,154635303,154549098,53497,22561,1976123405,1964698351,100,100,100,100,4.12,4.22,7.83,7.87
-61031,17,103,17103,1622,649,114402387,114351320,1656,664,120182654,120131587,36031,15049,1887979293,1877472815,97.95,97.74,95.19,95.19,4.5,4.31,6.06,6.09
-61031,17,141,17141,34,15,5780267,5780267,1656,664,120182654,120131587,53497,22561,1976123405,1964698351,2.05,2.26,4.81,4.81,0.06,0.07,0.29,0.29
-61032,17,177,17177,31651,15028,383725703,383297473,31651,15028,383725703,383297473,47711,22081,1463493668,1462107736,100,100,100,100,66.34,68.06,26.22,26.22
-61036,17,085,17085,6821,5166,286358196,275504071,6821,5166,286358196,275504071,22678,13574,1602498772,1556808594,100,100,100,100,30.08,38.06,17.87,17.7
-61037,17,195,17195,140,58,435113,435113,140,58,435113,435113,58498,25770,1803995335,1772198878,100,100,100,100,0.24,0.23,0.02,0.02
-61038,17,007,17007,1264,501,102772694,102245103,1354,537,110888609,110293769,54165,19970,730440608,727059777,93.35,93.3,92.68,92.7,2.33,2.51,14.07,14.06
-61038,17,111,17111,90,36,8115915,8048666,1354,537,110888609,110293769,308760,116040,1581998246,1562206475,6.65,6.7,7.32,7.3,0.03,0.03,0.51,0.52
-61039,17,141,17141,109,52,26275838,26275838,802,341,72450012,72450012,53497,22561,1976123405,1964698351,13.59,15.25,36.27,36.27,0.2,0.23,1.33,1.34
-61039,17,177,17177,693,289,46174174,46174174,802,341,72450012,72450012,47711,22081,1463493668,1462107736,86.41,84.75,63.73,63.73,1.45,1.31,3.16,3.16
-61041,17,085,17085,1327,839,154954649,154680852,1327,839,154954649,154680852,22678,13574,1602498772,1556808594,100,100,100,100,5.85,6.18,9.67,9.94
-61042,17,103,17103,527,222,172270550,172233014,527,222,172270550,172233014,36031,15049,1887979293,1877472815,100,100,100,100,1.46,1.48,9.12,9.17
-61043,17,141,17141,131,59,4883555,4883555,131,59,4883555,4883555,53497,22561,1976123405,1964698351,100,100,100,100,0.24,0.26,0.25,0.25
-61044,17,085,17085,53,29,14233641,14233641,232,105,32578287,32578287,22678,13574,1602498772,1556808594,22.84,27.62,43.69,43.69,0.23,0.21,0.89,0.91
-61044,17,177,17177,179,76,18344646,18344646,232,105,32578287,32578287,47711,22081,1463493668,1462107736,77.16,72.38,56.31,56.31,0.38,0.34,1.25,1.25
-61046,17,015,17015,2831,2079,214637346,212975872,2831,2079,214637346,212975872,15387,8437,1207866846,1152045333,100,100,100,100,18.4,24.64,17.77,18.49
-61047,17,141,17141,1650,765,159020925,159020925,1711,788,172254247,172254247,53497,22561,1976123405,1964698351,96.43,97.08,92.32,92.32,3.08,3.39,8.05,8.09
-61047,17,177,17177,12,7,2895845,2895845,1711,788,172254247,172254247,47711,22081,1463493668,1462107736,0.7,0.89,1.68,1.68,0.03,0.03,0.2,0.2
-61047,17,201,17201,49,16,10337477,10337477,1711,788,172254247,172254247,295266,125965,1344852189,1329601795,2.86,2.03,6,6,0.02,0.01,0.77,0.78
-61048,17,085,17085,87,29,17521104,17521104,4360,1889,215920835,215706094,22678,13574,1602498772,1556808594,2,1.54,8.11,8.12,0.38,0.21,1.09,1.13
-61048,17,177,17177,4273,1860,198399731,198184990,4360,1889,215920835,215706094,47711,22081,1463493668,1462107736,98,98.46,91.89,91.88,8.96,8.42,13.56,13.55
-61049,17,141,17141,585,216,52888632,52836578,585,216,52888632,52836578,53497,22561,1976123405,1964698351,100,100,100,100,1.09,0.96,2.68,2.69
-61050,17,177,17177,376,161,24719219,24719219,376,161,24719219,24719219,47711,22081,1463493668,1462107736,100,100,100,100,0.79,0.73,1.69,1.69
-61051,17,015,17015,1541,716,134322528,134322528,1574,730,139433793,139433793,15387,8437,1207866846,1152045333,97.9,98.08,96.33,96.33,10.01,8.49,11.12,11.66
-61051,17,141,17141,33,14,5111265,5111265,1574,730,139433793,139433793,53497,22561,1976123405,1964698351,2.1,1.92,3.67,3.67,0.06,0.06,0.26,0.26
-61052,17,141,17141,1148,444,71493502,71493502,1148,444,71493502,71493502,53497,22561,1976123405,1964698351,100,100,100,100,2.15,1.97,3.62,3.64
-61053,17,015,17015,2759,1374,258754223,258717031,2852,1424,285962971,285925779,15387,8437,1207866846,1152045333,96.74,96.49,90.49,90.48,17.93,16.29,21.42,22.46
-61053,17,085,17085,93,50,27208748,27208748,2852,1424,285962971,285925779,22678,13574,1602498772,1556808594,3.26,3.51,9.51,9.52,0.41,0.37,1.7,1.75
-61054,17,141,17141,3973,1862,102855804,102855804,3973,1862,102855804,102855804,53497,22561,1976123405,1964698351,100,100,100,100,7.43,8.25,5.2,5.24
-61057,17,103,17103,168,57,4389664,4389664,168,57,4389664,4389664,36031,15049,1887979293,1877472815,100,100,100,100,0.47,0.38,0.23,0.23
-61059,17,085,17085,141,69,4315879,4315879,141,69,4315879,4315879,22678,13574,1602498772,1556808594,100,100,100,100,0.62,0.51,0.27,0.28
-61060,17,177,17177,1432,633,93712746,93712746,1432,633,93712746,93712746,47711,22081,1463493668,1462107736,100,100,100,100,3,2.87,6.4,6.41
-61061,17,141,17141,7009,3310,276495749,271513927,7009,3310,276495749,271513927,53497,22561,1976123405,1964698351,100,100,100,100,13.1,14.67,13.99,13.82
-61062,17,015,17015,2,1,1444630,1444630,1983,799,191355923,191332218,15387,8437,1207866846,1152045333,0.1,0.13,0.75,0.76,0.01,0.01,0.12,0.13
-61062,17,085,17085,32,16,12468131,12468131,1983,799,191355923,191332218,22678,13574,1602498772,1556808594,1.61,2,6.52,6.52,0.14,0.12,0.78,0.8
-61062,17,177,17177,1949,782,177443162,177419457,1983,799,191355923,191332218,47711,22081,1463493668,1462107736,98.29,97.87,92.73,92.73,4.09,3.54,12.12,12.13
-61063,17,177,17177,227,96,33489122,33489122,4132,1719,199032972,197888238,47711,22081,1463493668,1462107736,5.49,5.58,16.83,16.92,0.48,0.43,2.29,2.29
-61063,17,201,17201,3905,1623,165543850,164399116,4132,1719,199032972,197888238,295266,125965,1344852189,1329601795,94.51,94.42,83.17,83.08,1.32,1.29,12.31,12.36
-61064,17,103,17103,7,3,2886195,2886195,3868,1733,273589141,273589141,36031,15049,1887979293,1877472815,0.18,0.17,1.05,1.05,0.02,0.02,0.15,0.15
-61064,17,141,17141,3842,1721,268916646,268916646,3868,1733,273589141,273589141,53497,22561,1976123405,1964698351,99.33,99.31,98.29,98.29,7.18,7.63,13.61,13.69
-61064,17,195,17195,19,9,1786300,1786300,3868,1733,273589141,273589141,58498,25770,1803995335,1772198878,0.49,0.52,0.65,0.65,0.03,0.03,0.1,0.1
-61065,17,007,17007,11156,3939,133295900,132348585,11156,3939,133295900,132348585,54165,19970,730440608,727059777,100,100,100,100,20.6,19.72,18.25,18.2
-61067,17,177,17177,811,361,78045308,77763145,811,361,78045308,77763145,47711,22081,1463493668,1462107736,100,100,100,100,1.7,1.63,5.33,5.32
-61068,17,037,17037,33,16,9057318,9032164,14858,6074,304945606,304537796,105160,41079,1643761548,1635077221,0.22,0.26,2.97,2.97,0.03,0.04,0.55,0.55
-61068,17,103,17103,72,33,25857395,25815708,14858,6074,304945606,304537796,36031,15049,1887979293,1877472815,0.48,0.54,8.48,8.48,0.2,0.22,1.37,1.38
-61068,17,141,17141,14753,6025,270030893,269689924,14858,6074,304945606,304537796,53497,22561,1976123405,1964698351,99.29,99.19,88.55,88.56,27.58,26.71,13.66,13.73
-61070,17,177,17177,1130,484,89882701,89882701,1130,484,89882701,89882701,47711,22081,1463493668,1462107736,100,100,100,100,2.37,2.19,6.14,6.15
-61071,17,103,17103,94,54,19400574,18335845,14381,6397,189664514,184235182,36031,15049,1887979293,1877472815,0.65,0.84,10.23,9.95,0.26,0.36,1.03,0.98
-61071,17,195,17195,14287,6343,170263940,165899337,14381,6397,189664514,184235182,58498,25770,1803995335,1772198878,99.35,99.16,89.77,90.05,24.42,24.61,9.44,9.36
-61072,17,201,17201,11797,4606,138723371,136055039,11797,4606,138723371,136055039,295266,125965,1344852189,1329601795,100,100,100,100,4,3.66,10.32,10.23
-61073,17,007,17007,108,49,2196955,2196955,20052,7599,72235756,70812638,54165,19970,730440608,727059777,0.54,0.64,3.04,3.1,0.2,0.25,0.3,0.3
-61073,17,201,17201,19944,7550,70038801,68615683,20052,7599,72235756,70812638,295266,125965,1344852189,1329601795,99.46,99.36,96.96,96.9,6.75,5.99,5.21,5.16
-61074,17,015,17015,4405,2341,200241335,188659997,4431,2353,203956380,192352665,15387,8437,1207866846,1152045333,99.41,99.49,98.18,98.08,28.63,27.75,16.58,16.38
-61074,17,085,17085,26,12,3715045,3692668,4431,2353,203956380,192352665,22678,13574,1602498772,1556808594,0.59,0.51,1.82,1.92,0.11,0.09,0.23,0.24
-61075,17,085,17085,958,478,130977978,130977978,958,478,130977978,130977978,22678,13574,1602498772,1556808594,100,100,100,100,4.22,3.52,8.17,8.41
-61077,17,201,17201,73,39,82842,82842,73,39,82842,82842,295266,125965,1344852189,1329601795,100,100,100,100,0.02,0.03,0.01,0.01
-61078,17,015,17015,1176,541,98465482,98465482,1374,619,148689202,148689202,15387,8437,1207866846,1152045333,85.59,87.4,66.22,66.22,7.64,6.41,8.15,8.55
-61078,17,141,17141,108,41,23958635,23958635,1374,619,148689202,148689202,53497,22561,1976123405,1964698351,7.86,6.62,16.11,16.11,0.2,0.18,1.21,1.22
-61078,17,177,17177,90,37,26265085,26265085,1374,619,148689202,148689202,47711,22081,1463493668,1462107736,6.55,5.98,17.66,17.66,0.19,0.17,1.79,1.8
-61079,17,201,17201,188,78,4662607,4571209,188,78,4662607,4571209,295266,125965,1344852189,1329601795,100,100,100,100,0.06,0.06,0.35,0.34
-61080,17,007,17007,227,98,19870248,19853743,10599,4539,65876287,64991876,54165,19970,730440608,727059777,2.14,2.16,30.16,30.55,0.42,0.49,2.72,2.73
-61080,17,201,17201,10372,4441,46006039,45138133,10599,4539,65876287,64991876,295266,125965,1344852189,1329601795,97.86,97.84,69.84,69.45,3.51,3.53,3.42,3.39
-61081,17,103,17103,523,215,17803379,16947208,21934,9616,325334023,319967102,36031,15049,1887979293,1877472815,2.38,2.24,5.47,5.3,1.45,1.43,0.94,0.9
-61081,17,195,17195,21411,9401,307530644,303019894,21934,9616,325334023,319967102,58498,25770,1803995335,1772198878,97.62,97.76,94.53,94.7,36.6,36.48,17.05,17.1
-61084,17,141,17141,3057,1154,84746200,83753639,3175,1211,91055748,90063187,53497,22561,1976123405,1964698351,96.28,95.29,93.07,92.99,5.71,5.12,4.29,4.26
-61084,17,201,17201,118,57,6309548,6309548,3175,1211,91055748,90063187,295266,125965,1344852189,1329601795,3.72,4.71,6.93,7.01,0.04,0.05,0.47,0.47
-61085,17,085,17085,3443,1654,334798394,334798394,3443,1654,334798394,334798394,22678,13574,1602498772,1556808594,100,100,100,100,15.18,12.19,20.89,21.51
-61087,17,085,17085,1662,796,72170354,72170354,1670,800,77075124,77075124,22678,13574,1602498772,1556808594,99.52,99.5,93.64,93.64,7.33,5.86,4.5,4.64
-61087,17,177,17177,8,4,4904770,4904770,1670,800,77075124,77075124,47711,22081,1463493668,1462107736,0.48,0.5,6.36,6.36,0.02,0.02,0.34,0.34
-61088,17,201,17201,6020,2320,142865504,142843377,6020,2320,142865504,142843377,295266,125965,1344852189,1329601795,100,100,100,100,2.04,1.84,10.62,10.74
-61089,17,177,17177,867,378,111081976,111081976,867,378,111081976,111081976,47711,22081,1463493668,1462107736,100,100,100,100,1.82,1.71,7.59,7.6
-61091,17,141,17141,63,28,2104521,2104521,63,28,2104521,2104521,53497,22561,1976123405,1964698351,100,100,100,100,0.12,0.12,0.11,0.11
-61101,17,201,17201,21593,9024,108008513,107833729,21593,9024,108008513,107833729,295266,125965,1344852189,1329601795,100,100,100,100,7.31,7.16,8.03,8.11
-61102,17,141,17141,207,107,10901600,10349604,20538,7474,91980311,89168070,53497,22561,1976123405,1964698351,1.01,1.43,11.85,11.61,0.39,0.47,0.55,0.53
-61102,17,201,17201,20331,7367,81078711,78818466,20538,7474,91980311,89168070,295266,125965,1344852189,1329601795,98.99,98.57,88.15,88.39,6.89,5.85,6.03,5.93
-61103,17,201,17201,24578,11479,46154032,44744957,24578,11479,46154032,44744957,295266,125965,1344852189,1329601795,100,100,100,100,8.32,9.11,3.43,3.37
-61104,17,201,17201,19269,9013,11829394,11681766,19269,9013,11829394,11681766,295266,125965,1344852189,1329601795,100,100,100,100,6.53,7.16,0.88,0.88
-61107,17,007,17007,533,174,2261524,2227560,30439,14065,38764804,38423400,54165,19970,730440608,727059777,1.75,1.24,5.83,5.8,0.98,0.87,0.31,0.31
-61107,17,201,17201,29906,13891,36503280,36195840,30439,14065,38764804,38423400,295266,125965,1344852189,1329601795,98.25,98.76,94.17,94.2,10.13,11.03,2.71,2.72
-61108,17,201,17201,28550,12465,27379521,27341335,28550,12465,27379521,27341335,295266,125965,1344852189,1329601795,100,100,100,100,9.67,9.9,2.04,2.06
-61109,17,141,17141,18,9,3277529,3277529,28333,12056,100801720,99998954,53497,22561,1976123405,1964698351,0.06,0.07,3.25,3.28,0.03,0.04,0.17,0.17
-61109,17,201,17201,28315,12047,97524191,96721425,28333,12056,100801720,99998954,295266,125965,1344852189,1329601795,99.94,99.93,96.75,96.72,9.59,9.56,7.25,7.27
-61111,17,007,17007,1599,531,1685240,1685240,23492,10217,37959013,36826109,54165,19970,730440608,727059777,6.81,5.2,4.44,4.58,2.95,2.66,0.23,0.23
-61111,17,201,17201,21893,9686,36273773,35140869,23492,10217,37959013,36826109,295266,125965,1344852189,1329601795,93.19,94.8,95.56,95.42,7.41,7.69,2.7,2.64
-61112,17,201,17201,86,95,2021969,2021969,86,95,2021969,2021969,295266,125965,1344852189,1329601795,100,100,100,100,0.03,0.08,0.15,0.15
-61114,17,007,17007,448,171,2082862,2072072,15776,6832,20646043,20634896,54165,19970,730440608,727059777,2.84,2.5,10.09,10.04,0.83,0.86,0.29,0.28
-61114,17,201,17201,15328,6661,18563181,18562824,15776,6832,20646043,20634896,295266,125965,1344852189,1329601795,97.16,97.5,89.91,89.96,5.19,5.29,1.38,1.4
-61115,17,201,17201,23180,9226,28221729,27511093,23180,9226,28221729,27511093,295266,125965,1344852189,1329601795,100,100,100,100,7.85,7.32,2.1,2.07
-61201,17,161,17161,39116,17464,51939644,46759130,39116,17464,51939644,46759130,147546,65756,1168830553,1107573369,100,100,100,100,26.51,26.56,4.44,4.22
-61230,17,195,17195,1232,576,48749465,48675680,1232,576,48749465,48675680,58498,25770,1803995335,1772198878,100,100,100,100,2.11,2.24,2.7,2.75
-61231,17,131,17131,5627,2520,388157731,387926802,5627,2520,388157731,387926802,16434,7358,1472910313,1453506907,100,100,100,100,34.24,34.25,26.35,26.69
-61232,17,161,17161,1284,500,7332336,7332336,1284,500,7332336,7332336,147546,65756,1168830553,1107573369,100,100,100,100,0.87,0.76,0.63,0.66
-61234,17,073,17073,1258,574,149938735,149479740,1258,574,149938735,149479740,50486,22161,2138406439,2131522072,100,100,100,100,2.49,2.59,7.01,7.01
-61235,17,073,17073,1391,642,135218564,134698944,1391,642,135218564,134698944,50486,22161,2138406439,2131522072,100,100,100,100,2.76,2.9,6.32,6.32
-61236,17,161,17161,193,82,4004534,3860172,193,82,4004534,3860172,147546,65756,1168830553,1107573369,100,100,100,100,0.13,0.12,0.34,0.35
-61238,17,073,17073,3247,1388,268117962,268070698,3247,1388,268117962,268070698,50486,22161,2138406439,2131522072,100,100,100,100,6.43,6.26,12.54,12.58
-61239,17,161,17161,1219,509,4479389,4327804,1219,509,4479389,4327804,147546,65756,1168830553,1107573369,100,100,100,100,0.83,0.77,0.38,0.39
-61240,17,073,17073,1063,411,45860207,45329640,5870,2438,96360523,95383222,50486,22161,2138406439,2131522072,18.11,16.86,47.59,47.52,2.11,1.85,2.14,2.13
-61240,17,161,17161,4807,2027,50500316,50053582,5870,2438,96360523,95383222,147546,65756,1168830553,1107573369,81.89,83.14,52.41,52.48,3.26,3.08,4.32,4.52
-61241,17,073,17073,7124,2900,49563650,46720429,7124,2900,49563650,46720429,50486,22161,2138406439,2131522072,100,100,100,100,14.11,13.09,2.32,2.19
-61242,17,161,17161,1145,521,88182848,81284566,1145,521,88182848,81284566,147546,65756,1168830553,1107573369,100,100,100,100,0.78,0.79,7.54,7.34
-61243,17,195,17195,264,104,70557865,70557865,264,104,70557865,70557865,58498,25770,1803995335,1772198878,100,100,100,100,0.45,0.4,3.91,3.98
-61244,17,161,17161,24053,10312,72232182,67464803,24053,10312,72232182,67464803,147546,65756,1168830553,1107573369,100,100,100,100,16.3,15.68,6.18,6.09
-61250,17,073,17073,31,15,10712850,10712850,2737,1133,226205992,221936269,50486,22161,2138406439,2131522072,1.13,1.32,4.74,4.83,0.06,0.07,0.5,0.5
-61250,17,195,17195,2706,1118,215493142,211223419,2737,1133,226205992,221936269,58498,25770,1803995335,1772198878,98.87,98.68,95.26,95.17,4.63,4.34,11.95,11.92
-61251,17,195,17195,347,148,46048338,46048338,347,148,46048338,46048338,58498,25770,1803995335,1772198878,100,100,100,100,0.59,0.57,2.55,2.6
-61252,17,015,17015,9,5,6229290,6229290,5436,2550,154898735,152884361,15387,8437,1207866846,1152045333,0.17,0.2,4.02,4.07,0.06,0.06,0.52,0.54
-61252,17,195,17195,5427,2545,148669445,146655071,5436,2550,154898735,152884361,58498,25770,1803995335,1772198878,99.83,99.8,95.98,95.93,9.28,9.88,8.24,8.28
-61254,17,073,17073,11414,4956,449699602,447722980,11414,4956,449699602,447722980,50486,22161,2138406439,2131522072,100,100,100,100,22.61,22.36,21.03,21
-61256,17,161,17161,1822,788,5558188,3625940,1822,788,5558188,3625940,147546,65756,1168830553,1107573369,100,100,100,100,1.23,1.2,0.48,0.33
-61257,17,161,17161,1210,542,108978963,106224542,1210,542,108978963,106224542,147546,65756,1168830553,1107573369,100,100,100,100,0.82,0.82,9.32,9.59
-61258,17,073,17073,204,83,888721,888721,204,83,888721,888721,50486,22161,2138406439,2131522072,100,100,100,100,0.4,0.37,0.04,0.04
-61259,17,161,17161,1276,533,218748587,197948296,1276,533,218748587,197948296,147546,65756,1168830553,1107573369,100,100,100,100,0.86,0.81,18.72,17.87
-61260,17,131,17131,832,378,147491697,147455473,856,392,151738282,151702058,16434,7358,1472910313,1453506907,97.2,96.43,97.2,97.2,5.06,5.14,10.01,10.14
-61260,17,161,17161,24,14,4246585,4246585,856,392,151738282,151702058,147546,65756,1168830553,1107573369,2.8,3.57,2.8,2.8,0.02,0.02,0.36,0.38
-61261,17,195,17195,975,421,47640830,46463225,975,421,47640830,46463225,58498,25770,1803995335,1772198878,100,100,100,100,1.67,1.63,2.64,2.62
-61262,17,073,17073,1043,436,105605733,105514342,1188,492,111542526,111451135,50486,22161,2138406439,2131522072,87.79,88.62,94.68,94.67,2.07,1.97,4.94,4.95
-61262,17,131,17131,145,56,5936793,5936793,1188,492,111542526,111451135,16434,7358,1472910313,1453506907,12.21,11.38,5.32,5.33,0.88,0.76,0.4,0.41
-61263,17,131,17131,530,218,781595,781595,530,218,781595,781595,16434,7358,1472910313,1453506907,100,100,100,100,3.23,2.96,0.05,0.05
-61264,17,131,17131,112,48,3658408,3658408,10548,4801,194622189,185877568,16434,7358,1472910313,1453506907,1.06,1,1.88,1.97,0.68,0.65,0.25,0.25
-61264,17,161,17161,10436,4753,190963781,182219160,10548,4801,194622189,185877568,147546,65756,1168830553,1107573369,98.94,99,98.12,98.03,7.07,7.23,16.34,16.45
-61265,17,161,17161,45099,20647,52794817,49105652,45099,20647,52794817,49105652,147546,65756,1168830553,1107573369,100,100,100,100,30.57,31.4,4.52,4.43
-61270,17,195,17195,7306,3182,393456614,392873921,7306,3182,393456614,392873921,58498,25770,1803995335,1772198878,100,100,100,100,12.49,12.35,21.81,22.17
-61272,17,131,17131,1500,738,246767494,232770127,1504,741,247420954,233423587,16434,7358,1472910313,1453506907,99.73,99.6,99.74,99.72,9.13,10.03,16.75,16.01
-61272,17,161,17161,4,3,653460,653460,1504,741,247420954,233423587,147546,65756,1168830553,1107573369,0.27,0.4,0.26,0.28,0,0,0.06,0.06
-61273,17,073,17073,3140,1269,91786865,91786865,3316,1341,120845609,120845609,50486,22161,2138406439,2131522072,94.69,94.63,75.95,75.95,6.22,5.73,4.29,4.31
-61273,17,161,17161,176,72,29058744,29058744,3316,1341,120845609,120845609,147546,65756,1168830553,1107573369,5.31,5.37,24.05,24.05,0.12,0.11,2.49,2.62
-61274,17,073,17073,351,145,63314499,63314499,351,145,63314499,63314499,50486,22161,2138406439,2131522072,100,100,100,100,0.7,0.65,2.96,2.97
-61275,17,161,17161,4347,1826,90543006,86960956,4347,1826,90543006,86960956,147546,65756,1168830553,1107573369,100,100,100,100,2.95,2.78,7.75,7.85
-61276,17,131,17131,138,57,6052175,6052175,138,57,6052175,6052175,16434,7358,1472910313,1453506907,100,100,100,100,0.84,0.77,0.41,0.42
-61277,17,073,17073,379,167,125095815,125095815,3355,1490,330340347,327900572,50486,22161,2138406439,2131522072,11.3,11.21,37.87,38.15,0.75,0.75,5.85,5.87
-61277,17,195,17195,2976,1323,205244532,202804757,3355,1490,330340347,327900572,58498,25770,1803995335,1772198878,88.7,88.79,62.13,61.85,5.09,5.13,11.38,11.44
-61278,17,161,17161,412,184,2612254,2612254,412,184,2612254,2612254,147546,65756,1168830553,1107573369,100,100,100,100,0.28,0.28,0.22,0.24
-61279,17,131,17131,301,128,62750202,62750202,1061,447,110261813,110261813,16434,7358,1472910313,1453506907,28.37,28.64,56.91,56.91,1.83,1.74,4.26,4.32
-61279,17,161,17161,760,319,47511611,47511611,1061,447,110261813,110261813,147546,65756,1168830553,1107573369,71.63,71.36,43.09,43.09,0.52,0.49,4.06,4.29
-61281,17,131,17131,2535,1056,89521976,88877331,2597,1079,100349916,99705271,16434,7358,1472910313,1453506907,97.61,97.87,89.21,89.14,15.43,14.35,6.08,6.11
-61281,17,161,17161,62,23,10827940,10827940,2597,1079,100349916,99705271,147546,65756,1168830553,1107573369,2.39,2.13,10.79,10.86,0.04,0.03,0.93,0.98
-61282,17,161,17161,7809,3674,8648236,8648236,7809,3674,8648236,8648236,147546,65756,1168830553,1107573369,100,100,100,100,5.29,5.59,0.74,0.78
-61283,17,011,17011,372,151,106281516,106281516,1640,634,214868237,214868237,34978,15720,2262364133,2250780454,22.68,23.82,49.46,49.46,1.06,0.96,4.7,4.72
-61283,17,195,17195,1268,483,108586721,108586721,1640,634,214868237,214868237,58498,25770,1803995335,1772198878,77.32,76.18,50.54,50.54,2.17,1.87,6.02,6.13
-61284,17,161,17161,2292,963,119013132,116847600,2292,963,119013132,116847600,147546,65756,1168830553,1107573369,100,100,100,100,1.55,1.46,10.18,10.55
-61285,17,015,17015,1631,902,104083954,102304042,1631,902,104083954,102304042,15387,8437,1207866846,1152045333,100,100,100,100,10.6,10.69,8.62,8.88
-61301,17,099,17099,10588,4865,103431489,103080721,10588,4865,103431489,103080721,113924,49978,2973658480,2939957539,100,100,100,100,9.29,9.73,3.48,3.51
-61310,17,103,17103,3970,1757,278566860,277542139,3970,1757,278566860,277542139,36031,15049,1887979293,1877472815,100,100,100,100,11.02,11.68,14.75,14.78
-61311,17,105,17105,232,107,40351054,40351054,232,107,40351054,40351054,38950,15895,2708939484,2704686611,100,100,100,100,0.6,0.67,1.49,1.49
-61312,17,011,17011,474,220,90469772,90440323,474,220,90469772,90440323,34978,15720,2262364133,2250780454,100,100,100,100,1.36,1.4,4,4.02
-61313,17,105,17105,282,127,108824104,108824104,282,127,108824104,108824104,38950,15895,2708939484,2704686611,100,100,100,100,0.72,0.8,4.02,4.02
-61314,17,011,17011,807,382,121069215,121041227,807,382,121069215,121041227,34978,15720,2262364133,2250780454,100,100,100,100,2.31,2.43,5.35,5.38
-61315,17,011,17011,322,163,3898909,3727743,322,163,3898909,3727743,34978,15720,2262364133,2250780454,100,100,100,100,0.92,1.04,0.17,0.17
-61316,17,099,17099,282,138,4100430,4100430,282,138,4100430,4100430,113924,49978,2973658480,2939957539,100,100,100,100,0.25,0.28,0.14,0.14
-61317,17,011,17011,513,230,8460306,8460306,513,230,8460306,8460306,34978,15720,2262364133,2250780454,100,100,100,100,1.47,1.46,0.37,0.38
-61318,17,103,17103,700,314,89655652,89617453,700,314,89655652,89617453,36031,15049,1887979293,1877472815,100,100,100,100,1.94,2.09,4.75,4.77
-61319,17,105,17105,1293,576,129725298,128760830,1293,576,129725298,128760830,38950,15895,2708939484,2704686611,100,100,100,100,3.32,3.62,4.79,4.76
-61320,17,011,17011,710,314,2421214,2421214,710,314,2421214,2421214,34978,15720,2262364133,2250780454,100,100,100,100,2.03,2,0.11,0.11
-61321,17,099,17099,282,132,72555582,72555582,282,132,72555582,72555582,113924,49978,2973658480,2939957539,100,100,100,100,0.25,0.26,2.44,2.47
-61322,17,011,17011,1647,625,13189637,10218988,1647,625,13189637,10218988,34978,15720,2262364133,2250780454,100,100,100,100,4.71,3.98,0.58,0.45
-61323,17,011,17011,111,46,456242,456242,111,46,456242,456242,34978,15720,2262364133,2250780454,100,100,100,100,0.32,0.29,0.02,0.02
-61324,17,103,17103,109,42,503962,503962,109,42,503962,503962,36031,15049,1887979293,1877472815,100,100,100,100,0.3,0.28,0.03,0.03
-61325,17,099,17099,1073,436,130854554,130783142,1073,436,130854554,130783142,113924,49978,2973658480,2939957539,100,100,100,100,0.94,0.87,4.4,4.45
-61326,17,155,17155,2452,1091,129914943,127753991,2452,1091,129914943,127753991,6006,3074,446056852,414813807,100,100,100,100,40.83,35.49,29.13,30.8
-61327,17,155,17155,1235,560,93831941,88946083,1235,560,93831941,88946083,6006,3074,446056852,414813807,100,100,100,100,20.56,18.22,21.04,21.44
-61328,17,011,17011,42,18,1261054,1261054,42,18,1261054,1261054,34978,15720,2262364133,2250780454,100,100,100,100,0.12,0.11,0.06,0.06
-61329,17,011,17011,1303,590,4621643,4621643,1303,590,4621643,4621643,34978,15720,2262364133,2250780454,100,100,100,100,3.73,3.75,0.2,0.21
-61330,17,011,17011,1427,604,183168309,183137401,1483,625,199660985,199630077,34978,15720,2262364133,2250780454,96.22,96.64,91.74,91.74,4.08,3.84,8.1,8.14
-61330,17,103,17103,56,21,16492676,16492676,1483,625,199660985,199630077,36031,15049,1887979293,1877472815,3.78,3.36,8.26,8.26,0.16,0.14,0.87,0.88
-61331,17,103,17103,55,24,71553,71553,55,24,71553,71553,36031,15049,1887979293,1877472815,100,100,100,100,0.15,0.16,0,0
-61332,17,099,17099,134,64,1318075,1318075,134,64,1318075,1318075,113924,49978,2973658480,2939957539,100,100,100,100,0.12,0.13,0.04,0.04
-61333,17,105,17105,381,167,46243265,46243265,381,167,46243265,46243265,38950,15895,2708939484,2704686611,100,100,100,100,0.98,1.05,1.71,1.71
-61334,17,099,17099,714,309,95426936,95426936,741,322,96152877,96152877,113924,49978,2973658480,2939957539,96.36,95.96,99.25,99.25,0.63,0.62,3.21,3.25
-61334,17,155,17155,27,13,725941,725941,741,322,96152877,96152877,6006,3074,446056852,414813807,3.64,4.04,0.75,0.75,0.45,0.42,0.16,0.18
-61335,17,155,17155,532,299,54111525,54046919,532,299,54111525,54046919,6006,3074,446056852,414813807,100,100,100,100,8.86,9.73,12.13,13.03
-61336,17,123,17123,134,63,45770513,45770513,628,277,104813124,101948398,12640,5914,1032146996,1001778707,21.34,22.74,43.67,44.9,1.06,1.07,4.43,4.57
-61336,17,155,17155,494,214,59042611,56177885,628,277,104813124,101948398,6006,3074,446056852,414813807,78.66,77.26,56.33,55.1,8.23,6.96,13.24,13.54
-61337,17,011,17011,478,187,17196274,17196274,478,187,17196274,17196274,34978,15720,2262364133,2250780454,100,100,100,100,1.37,1.19,0.76,0.76
-61338,17,011,17011,284,129,1466626,1466626,284,129,1466626,1466626,34978,15720,2262364133,2250780454,100,100,100,100,0.81,0.82,0.06,0.07
-61340,17,155,17155,292,124,1324492,1324492,292,124,1324492,1324492,6006,3074,446056852,414813807,100,100,100,100,4.86,4.03,0.3,0.32
-61341,17,099,17099,8234,3656,245576063,235396309,8234,3656,245576063,235396309,113924,49978,2973658480,2939957539,100,100,100,100,7.23,7.32,8.26,8.01
-61342,17,011,17011,49,21,12252513,12252513,9216,3803,272361667,271994121,34978,15720,2262364133,2250780454,0.53,0.55,4.5,4.5,0.14,0.13,0.54,0.54
-61342,17,099,17099,9119,3758,246181840,245814294,9216,3803,272361667,271994121,113924,49978,2973658480,2939957539,98.95,98.82,90.39,90.37,8,7.52,8.28,8.36
-61342,17,103,17103,48,24,13927314,13927314,9216,3803,272361667,271994121,36031,15049,1887979293,1877472815,0.52,0.63,5.11,5.12,0.13,0.16,0.74,0.74
-61344,17,011,17011,363,167,60600328,60493238,374,171,63484264,63377174,34978,15720,2262364133,2250780454,97.06,97.66,95.46,95.45,1.04,1.06,2.68,2.69
-61344,17,073,17073,11,4,2883936,2883936,374,171,63484264,63377174,50486,22161,2138406439,2131522072,2.94,2.34,4.54,4.55,0.02,0.02,0.13,0.14
-61345,17,011,17011,803,363,115487112,115267561,846,385,127381544,127161993,34978,15720,2262364133,2250780454,94.92,94.29,90.66,90.65,2.3,2.31,5.1,5.12
-61345,17,175,17175,43,22,11894432,11894432,846,385,127381544,127161993,5994,2674,746830408,746121703,5.08,5.71,9.34,9.35,0.72,0.82,1.59,1.59
-61346,17,011,17011,75,44,462232,462232,75,44,462232,462232,34978,15720,2262364133,2250780454,100,100,100,100,0.21,0.28,0.02,0.02
-61348,17,099,17099,4696,2170,100561515,98737225,4696,2170,100561515,98737225,113924,49978,2973658480,2939957539,100,100,100,100,4.12,4.34,3.38,3.36
-61349,17,011,17011,853,397,128188080,128158749,977,446,171238134,171132787,34978,15720,2262364133,2250780454,87.31,89.01,74.86,74.89,2.44,2.53,5.67,5.69
-61349,17,103,17103,124,49,43050054,42974038,977,446,171238134,171132787,36031,15049,1887979293,1877472815,12.69,10.99,25.14,25.11,0.34,0.33,2.28,2.29
-61350,17,099,17099,24246,10984,411852694,398076249,24246,10984,411852694,398076249,113924,49978,2973658480,2939957539,100,100,100,100,21.28,21.98,13.85,13.54
-61353,17,103,17103,1333,587,82528846,82394337,1333,587,82528846,82394337,36031,15049,1887979293,1877472815,100,100,100,100,3.7,3.9,4.37,4.39
-61354,17,011,17011,50,18,7077420,7077420,10870,5062,110585323,109686222,34978,15720,2262364133,2250780454,0.46,0.36,6.4,6.45,0.14,0.11,0.31,0.31
-61354,17,099,17099,10811,5040,101550764,100651663,10870,5062,110585323,109686222,113924,49978,2973658480,2939957539,99.46,99.57,91.83,91.76,9.49,10.08,3.42,3.42
-61354,17,155,17155,9,4,1957139,1957139,10870,5062,110585323,109686222,6006,3074,446056852,414813807,0.08,0.08,1.77,1.78,0.15,0.13,0.44,0.47
-61356,17,011,17011,11281,5272,462329504,460184474,11281,5272,462329504,460184474,34978,15720,2262364133,2250780454,100,100,100,100,32.25,33.54,20.44,20.45
-61358,17,099,17099,376,178,32494377,32494377,478,221,64474197,64474197,113924,49978,2973658480,2939957539,78.66,80.54,50.4,50.4,0.33,0.36,1.09,1.11
-61358,17,123,17123,102,43,31979820,31979820,478,221,64474197,64474197,12640,5914,1032146996,1001778707,21.34,19.46,49.6,49.6,0.81,0.73,3.1,3.19
-61359,17,011,17011,312,144,2182798,2144660,312,144,2182798,2144660,34978,15720,2262364133,2250780454,100,100,100,100,0.89,0.92,0.1,0.1
-61360,17,063,17063,129,56,28468229,28370741,3393,1364,129729676,128697032,50063,19996,1114852754,1082725907,3.8,4.11,21.94,22.04,0.26,0.28,2.55,2.62
-61360,17,099,17099,3264,1308,101261447,100326291,3393,1364,129729676,128697032,113924,49978,2973658480,2939957539,96.2,95.89,78.06,77.96,2.87,2.62,3.41,3.41
-61361,17,011,17011,1381,649,202070782,201579300,1409,664,221237856,220535221,34978,15720,2262364133,2250780454,98.01,97.74,91.34,91.4,3.95,4.13,8.93,8.96
-61361,17,073,17073,28,15,19167074,18955921,1409,664,221237856,220535221,50486,22161,2138406439,2131522072,1.99,2.26,8.66,8.6,0.06,0.07,0.9,0.89
-61362,17,011,17011,5911,2616,65346044,64600476,5911,2616,65346044,64600476,34978,15720,2262364133,2250780454,100,100,100,100,16.9,16.64,2.89,2.87
-61363,17,155,17155,220,118,1357892,1357892,220,118,1357892,1357892,6006,3074,446056852,414813807,100,100,100,100,3.66,3.84,0.3,0.33
-61364,17,099,17099,18047,8164,292054793,291959254,20133,9159,376116102,375729148,113924,49978,2973658480,2939957539,89.64,89.14,77.65,77.7,15.84,16.34,9.82,9.93
-61364,17,105,17105,2086,995,84061309,83769894,20133,9159,376116102,375729148,38950,15895,2708939484,2704686611,10.36,10.86,22.35,22.3,5.36,6.26,3.1,3.1
-61367,17,103,17103,864,416,121169241,120773898,864,416,121169241,120773898,36031,15049,1887979293,1877472815,100,100,100,100,2.4,2.76,6.42,6.43
-61368,17,011,17011,1489,665,190721734,190433285,1489,665,190721734,190433285,34978,15720,2262364133,2250780454,100,100,100,100,4.26,4.23,8.43,8.46
-61369,17,123,17123,1711,767,118839666,118839666,1711,767,118839666,118839666,12640,5914,1032146996,1001778707,100,100,100,100,13.54,12.97,11.51,11.86
-61370,17,099,17099,1460,624,136022582,135913810,1460,624,136022582,135913810,113924,49978,2973658480,2939957539,100,100,100,100,1.28,1.25,4.57,4.62
-61372,17,099,17099,145,70,667768,667768,145,70,667768,667768,113924,49978,2973658480,2939957539,100,100,100,100,0.13,0.14,0.02,0.02
-61373,17,099,17099,2031,891,126805290,125652118,2031,891,126805290,125652118,113924,49978,2973658480,2939957539,100,100,100,100,1.78,1.78,4.26,4.27
-61374,17,011,17011,119,50,7319803,7319803,119,50,7319803,7319803,34978,15720,2262364133,2250780454,100,100,100,100,0.34,0.32,0.32,0.33
-61375,17,123,17123,1156,773,125100091,124184396,1156,773,125100091,124184396,12640,5914,1032146996,1001778707,100,100,100,100,9.15,13.07,12.12,12.4
-61376,17,011,17011,2187,942,214526379,214350203,2280,979,250309912,250133736,34978,15720,2262364133,2250780454,95.92,96.22,85.7,85.69,6.25,5.99,9.48,9.52
-61376,17,103,17103,93,37,35783533,35783533,2280,979,250309912,250133736,36031,15049,1887979293,1877472815,4.08,3.78,14.3,14.31,0.26,0.25,1.9,1.91
-61377,17,099,17099,235,111,79645579,79645579,1457,658,141530403,141435016,113924,49978,2973658480,2939957539,16.13,16.87,56.27,56.31,0.21,0.22,2.68,2.71
-61377,17,123,17123,1222,547,61884824,61789437,1457,658,141530403,141435016,12640,5914,1032146996,1001778707,83.87,83.13,43.73,43.69,9.67,9.25,6,6.17
-61378,17,103,17103,512,225,153776427,153471786,512,225,153776427,153471786,36031,15049,1887979293,1877472815,100,100,100,100,1.42,1.5,8.15,8.17
-61379,17,011,17011,1359,604,107058713,106990603,1359,604,107058713,106990603,34978,15720,2262364133,2250780454,100,100,100,100,3.89,3.84,4.73,4.75
-61401,17,095,17095,34544,15411,249893470,248691878,34788,15516,297671784,296371906,52919,24077,1864303284,1855453788,99.3,99.32,83.95,83.91,65.28,64.01,13.4,13.4
-61401,17,187,17187,244,105,47778314,47680028,34788,15516,297671784,296371906,17707,7682,1406497643,1404823508,0.7,0.68,16.05,16.09,1.38,1.37,3.4,3.39
-61410,17,095,17095,3793,1663,86523552,86512017,3912,1713,106729817,106705358,52919,24077,1864303284,1855453788,96.96,97.08,81.07,81.08,7.17,6.91,4.64,4.66
-61410,17,187,17187,119,50,20206265,20193341,3912,1713,106729817,106705358,17707,7682,1406497643,1404823508,3.04,2.92,18.93,18.92,0.67,0.65,1.44,1.44
-61411,17,109,17109,378,177,98089003,98046488,378,177,98089003,98046488,32612,14419,1528570815,1526558259,100,100,100,100,1.16,1.23,6.42,6.42
-61412,17,131,17131,595,279,115861220,115861220,1321,625,194420471,194419899,16434,7358,1472910313,1453506907,45.04,44.64,59.59,59.59,3.62,3.79,7.87,7.97
-61412,17,187,17187,726,346,78559251,78558679,1321,625,194420471,194419899,17707,7682,1406497643,1404823508,54.96,55.36,40.41,40.41,4.1,4.5,5.59,5.59
-61413,17,073,17073,1075,497,82510019,82399988,1075,497,82510019,82399988,50486,22161,2138406439,2131522072,100,100,100,100,2.13,2.24,3.86,3.87
-61414,17,073,17073,65,36,27583187,27583187,854,375,131193921,131193921,50486,22161,2138406439,2131522072,7.61,9.6,21.02,21.02,0.13,0.16,1.29,1.29
-61414,17,095,17095,789,339,103610734,103610734,854,375,131193921,131193921,52919,24077,1864303284,1855453788,92.39,90.4,78.98,78.98,1.49,1.41,5.56,5.58
-61415,17,057,17057,1190,560,181175219,181079527,1747,853,291280982,290256757,37069,16195,2285854575,2241880276,68.12,65.65,62.2,62.39,3.21,3.46,7.93,8.08
-61415,17,187,17187,557,293,110105763,109177230,1747,853,291280982,290256757,17707,7682,1406497643,1404823508,31.88,34.35,37.8,37.61,3.15,3.81,7.83,7.77
-61416,17,109,17109,235,119,2283710,2283710,235,119,2283710,2283710,32612,14419,1528570815,1526558259,100,100,100,100,0.72,0.83,0.15,0.15
-61417,17,187,17187,259,134,74422083,74422083,259,134,74422083,74422083,17707,7682,1406497643,1404823508,100,100,100,100,1.46,1.74,5.29,5.3
-61418,17,071,17071,673,326,138066735,137908264,673,326,138066735,137908264,7331,3827,1023614271,981273730,100,100,100,100,9.18,8.52,13.49,14.05
-61419,17,073,17073,128,65,1384627,1384627,128,65,1384627,1384627,50486,22161,2138406439,2131522072,100,100,100,100,0.25,0.29,0.06,0.06
-61420,17,067,17067,79,44,33077729,33077729,1067,565,184142854,184114849,19104,9274,2109276398,2055740516,7.4,7.79,17.96,17.97,0.41,0.47,1.57,1.61
-61420,17,071,17071,6,2,2651775,2651775,1067,565,184142854,184114849,7331,3827,1023614271,981273730,0.56,0.35,1.44,1.44,0.08,0.05,0.26,0.27
-61420,17,109,17109,982,519,148413350,148385345,1067,565,184142854,184114849,32612,14419,1528570815,1526558259,92.03,91.86,80.6,80.59,3.01,3.6,9.71,9.72
-61421,17,011,17011,202,81,90454545,90428867,1392,599,245443688,245234078,34978,15720,2262364133,2250780454,14.51,13.52,36.85,36.87,0.58,0.52,4,4.02
-61421,17,123,17123,60,34,21043191,20886813,1392,599,245443688,245234078,12640,5914,1032146996,1001778707,4.31,5.68,8.57,8.52,0.47,0.57,2.04,2.08
-61421,17,175,17175,1130,484,133945952,133918398,1392,599,245443688,245234078,5994,2674,746830408,746121703,81.18,80.8,54.57,54.61,18.85,18.1,17.94,17.95
-61422,17,109,17109,3416,1573,102542836,102508503,3416,1573,102542836,102508503,32612,14419,1528570815,1526558259,100,100,100,100,10.47,10.91,6.71,6.72
-61423,17,187,17187,682,296,127114388,127114388,682,296,127114388,127114388,17707,7682,1406497643,1404823508,100,100,100,100,3.85,3.85,9.04,9.05
-61424,17,123,17123,100,43,1891796,1891796,100,43,1891796,1891796,12640,5914,1032146996,1001778707,100,100,100,100,0.79,0.73,0.18,0.19
-61425,17,071,17071,483,378,83843215,80246325,483,378,83843215,80246325,7331,3827,1023614271,981273730,100,100,100,100,6.59,9.88,8.19,8.18
-61426,17,175,17175,107,40,8221384,8221384,107,40,8221384,8221384,5994,2674,746830408,746121703,100,100,100,100,1.79,1.5,1.1,1.1
-61427,17,057,17057,2329,1032,156602394,151857292,2329,1032,156602394,151857292,37069,16195,2285854575,2241880276,100,100,100,100,6.28,6.37,6.85,6.77
-61428,17,095,17095,986,903,87539769,85170709,986,903,87539769,85170709,52919,24077,1864303284,1855453788,100,100,100,100,1.86,3.75,4.7,4.59
-61430,17,095,17095,828,362,4629816,4486060,828,362,4629816,4486060,52919,24077,1864303284,1855453788,100,100,100,100,1.56,1.5,0.25,0.24
-61431,17,057,17057,371,176,87229433,86906297,371,176,87229433,86906297,37069,16195,2285854575,2241880276,100,100,100,100,1,1.09,3.82,3.88
-61432,17,057,17057,676,291,96365367,95348626,676,291,96365367,95348626,37069,16195,2285854575,2241880276,100,100,100,100,1.82,1.8,4.22,4.25
-61433,17,057,17057,74,25,2928978,2747558,74,25,2928978,2747558,37069,16195,2285854575,2241880276,100,100,100,100,0.2,0.15,0.13,0.12
-61434,17,073,17073,3133,1509,153872884,153855906,3312,1593,204995616,204978638,50486,22161,2138406439,2131522072,94.6,94.73,75.06,75.06,6.21,6.81,7.2,7.22
-61434,17,095,17095,168,80,50252909,50252909,3312,1593,204995616,204978638,52919,24077,1864303284,1855453788,5.07,5.02,24.51,24.52,0.32,0.33,2.7,2.71
-61434,17,175,17175,11,4,869823,869823,3312,1593,204995616,204978638,5994,2674,746830408,746121703,0.33,0.25,0.42,0.42,0.18,0.15,0.12,0.12
-61435,17,187,17187,116,57,25324079,25324079,116,57,25324079,25324079,17707,7682,1406497643,1404823508,100,100,100,100,0.66,0.74,1.8,1.8
-61436,17,095,17095,951,403,158903099,158863064,951,403,158903099,158863064,52919,24077,1864303284,1855453788,100,100,100,100,1.8,1.67,8.52,8.56
-61437,17,071,17071,818,459,109184131,104237490,818,459,109184131,104237490,7331,3827,1023614271,981273730,100,100,100,100,11.16,11.99,10.67,10.62
-61438,17,109,17109,760,356,111140559,111140559,760,356,111140559,111140559,32612,14419,1528570815,1526558259,100,100,100,100,2.33,2.47,7.27,7.28
-61439,17,095,17095,269,127,1757576,1757576,269,127,1757576,1757576,52919,24077,1864303284,1855453788,100,100,100,100,0.51,0.53,0.09,0.09
-61440,17,109,17109,724,344,108831754,108808850,766,368,132225949,132203045,32612,14419,1528570815,1526558259,94.52,93.48,82.31,82.3,2.22,2.39,7.12,7.13
-61440,17,169,17169,42,24,23394195,23394195,766,368,132225949,132203045,7544,3459,1143042712,1132531106,5.48,6.52,17.69,17.7,0.56,0.69,2.05,2.07
-61441,17,057,17057,897,468,158892111,158830565,897,468,158892111,158830565,37069,16195,2285854575,2241880276,100,100,100,100,2.42,2.89,6.95,7.08
-61442,17,071,17071,59,42,8897579,8754996,762,425,72046526,67510325,7331,3827,1023614271,981273730,7.74,9.88,12.35,12.97,0.8,1.1,0.87,0.89
-61442,17,131,17131,703,383,63148947,58755329,762,425,72046526,67510325,16434,7358,1472910313,1453506907,92.26,90.12,87.65,87.03,4.28,5.21,4.29,4.04
-61443,17,011,17011,15,9,4595331,4595331,14214,6516,252651691,252605049,34978,15720,2262364133,2250780454,0.11,0.14,1.82,1.82,0.04,0.06,0.2,0.2
-61443,17,073,17073,14173,6496,242058951,242012309,14214,6516,252651691,252605049,50486,22161,2138406439,2131522072,99.71,99.69,95.81,95.81,28.07,29.31,11.32,11.35
-61443,17,175,17175,26,11,5997409,5997409,14214,6516,252651691,252605049,5994,2674,746830408,746121703,0.18,0.17,2.37,2.37,0.43,0.41,0.8,0.8
-61447,17,071,17071,61,27,17436092,17413160,924,407,95877445,95753175,7331,3827,1023614271,981273730,6.6,6.63,18.19,18.19,0.83,0.71,1.7,1.77
-61447,17,187,17187,863,380,78441353,78340015,924,407,95877445,95753175,17707,7682,1406497643,1404823508,93.4,93.37,81.81,81.81,4.87,4.95,5.58,5.58
-61448,17,095,17095,3823,1637,109059820,109059820,3823,1637,109059820,109059820,52919,24077,1864303284,1855453788,100,100,100,100,7.22,6.8,5.85,5.88
-61449,17,095,17095,128,80,36002786,35882527,512,239,97620700,97500441,52919,24077,1864303284,1855453788,25,33.47,36.88,36.8,0.24,0.33,1.93,1.93
-61449,17,175,17175,384,159,61617914,61617914,512,239,97620700,97500441,5994,2674,746830408,746121703,75,66.53,63.12,63.2,6.41,5.95,8.25,8.26
-61450,17,067,17067,1683,808,184074555,184062743,1742,834,216968666,216956854,19104,9274,2109276398,2055740516,96.61,96.88,84.84,84.84,8.81,8.71,8.73,8.95
-61450,17,071,17071,33,17,23441760,23441760,1742,834,216968666,216956854,7331,3827,1023614271,981273730,1.89,2.04,10.8,10.8,0.45,0.44,2.29,2.39
-61450,17,109,17109,26,9,9452351,9452351,1742,834,216968666,216956854,32612,14419,1528570815,1526558259,1.49,1.08,4.36,4.36,0.08,0.06,0.62,0.62
-61451,17,143,17143,359,146,55892412,55618985,393,160,59872237,59598810,186494,83034,1633244151,1603744994,91.35,91.25,93.35,93.32,0.19,0.18,3.42,3.47
-61451,17,175,17175,34,14,3979825,3979825,393,160,59872237,59598810,5994,2674,746830408,746121703,8.65,8.75,6.65,6.68,0.57,0.52,0.53,0.53
-61452,17,169,17169,293,137,76048865,76048865,293,137,76048865,76048865,7544,3459,1143042712,1132531106,100,100,100,100,3.88,3.96,6.65,6.71
-61453,17,071,17071,196,75,62213153,62213153,781,333,148137930,148137930,7331,3827,1023614271,981273730,25.1,22.52,42,42,2.67,1.96,6.08,6.34
-61453,17,187,17187,585,258,85924777,85924777,781,333,148137930,148137930,17707,7682,1406497643,1404823508,74.9,77.48,58,58,3.3,3.36,6.11,6.12
-61454,17,071,17071,725,329,80567962,80492958,725,329,80567962,80492958,7331,3827,1023614271,981273730,100,100,100,100,9.89,8.6,7.87,8.2
-61455,17,109,17109,22086,9476,443758669,442476552,22086,9476,443758669,442476552,32612,14419,1528570815,1526558259,100,100,100,100,67.72,65.72,29.03,28.99
-61458,17,095,17095,822,395,215669323,215184809,822,395,215669323,215184809,52919,24077,1864303284,1855453788,100,100,100,100,1.55,1.64,11.57,11.6
-61459,17,057,17057,354,164,76161395,75759812,433,205,91261912,90860329,37069,16195,2285854575,2241880276,81.76,80,83.45,83.38,0.95,1.01,3.33,3.38
-61459,17,109,17109,79,41,15100517,15100517,433,205,91261912,90860329,32612,14419,1528570815,1526558259,18.24,20,16.55,16.62,0.24,0.28,0.99,0.99
-61460,17,071,17071,291,140,90441707,90441707,291,140,90441707,90441707,7331,3827,1023614271,981273730,100,100,100,100,3.97,3.66,8.84,9.22
-61462,17,071,17071,44,21,14429517,14429517,11643,4876,405671079,405163401,7331,3827,1023614271,981273730,0.38,0.43,3.56,3.56,0.6,0.55,1.41,1.47
-61462,17,187,17187,11599,4855,391241562,390733884,11643,4876,405671079,405163401,17707,7682,1406497643,1404823508,99.62,99.57,96.44,96.44,65.51,63.2,27.82,27.81
-61465,17,073,17073,64,28,19324307,19324307,1213,542,108274352,108235785,50486,22161,2138406439,2131522072,5.28,5.17,17.85,17.85,0.13,0.13,0.9,0.91
-61465,17,131,17131,1149,514,88950045,88911478,1213,542,108274352,108235785,16434,7358,1472910313,1453506907,94.72,94.83,82.15,82.15,6.99,6.99,6.04,6.12
-61466,17,131,17131,342,150,60617989,60617989,342,150,60617989,60617989,16434,7358,1472910313,1453506907,100,100,100,100,2.08,2.04,4.12,4.17
-61467,17,095,17095,1048,456,128467343,127971336,1048,456,128467343,127971336,52919,24077,1864303284,1855453788,100,100,100,100,1.98,1.89,6.89,6.9
-61468,17,073,17073,104,42,5046396,5046396,104,42,5046396,5046396,50486,22161,2138406439,2131522072,100,100,100,100,0.21,0.19,0.24,0.24
-61469,17,071,17071,2184,1197,128968168,117989789,2184,1197,128968168,117989789,7331,3827,1023614271,981273730,100,100,100,100,29.79,31.28,12.6,12.02
-61470,17,109,17109,547,232,57387642,57387642,547,232,57387642,57387642,32612,14419,1528570815,1526558259,100,100,100,100,1.68,1.61,3.75,3.76
-61471,17,071,17071,140,65,837632,837632,140,65,837632,837632,7331,3827,1023614271,981273730,100,100,100,100,1.91,1.7,0.08,0.09
-61472,17,095,17095,648,289,102461287,102461287,648,289,102461287,102461287,52919,24077,1864303284,1855453788,100,100,100,100,1.22,1.2,5.5,5.52
-61473,17,187,17187,1667,778,269036652,269011848,1667,778,269036652,269011848,17707,7682,1406497643,1404823508,100,100,100,100,9.41,10.13,19.13,19.15
-61474,17,095,17095,280,146,62268737,62240431,292,153,73538464,73510158,52919,24077,1864303284,1855453788,95.89,95.42,84.68,84.67,0.53,0.61,3.34,3.35
-61474,17,187,17187,12,7,11269727,11269727,292,153,73538464,73510158,17707,7682,1406497643,1404823508,4.11,4.58,15.32,15.33,0.07,0.09,0.8,0.8
-61475,17,109,17109,190,85,68551011,68551011,205,92,76414056,76414056,32612,14419,1528570815,1526558259,92.68,92.39,89.71,89.71,0.58,0.59,4.48,4.49
-61475,17,187,17187,15,7,7863045,7863045,205,92,76414056,76414056,17707,7682,1406497643,1404823508,7.32,7.61,10.29,10.29,0.08,0.09,0.56,0.56
-61476,17,071,17071,34,20,24224550,24173106,407,185,105723313,105671869,7331,3827,1023614271,981273730,8.35,10.81,22.91,22.88,0.46,0.52,2.37,2.46
-61476,17,131,17131,373,165,81498763,81498763,407,185,105723313,105671869,16434,7358,1472910313,1453506907,91.65,89.19,77.09,77.12,2.27,2.24,5.53,5.61
-61477,17,057,17057,631,301,130169164,130085371,631,301,130169164,130085371,37069,16195,2285854575,2241880276,100,100,100,100,1.7,1.86,5.69,5.8
-61478,17,071,17071,27,12,15033646,15033646,290,128,94244030,94244030,7331,3827,1023614271,981273730,9.31,9.38,15.95,15.95,0.37,0.31,1.47,1.53
-61478,17,187,17187,263,116,79210384,79210384,290,128,94244030,94244030,17707,7682,1406497643,1404823508,90.69,90.63,84.05,84.05,1.49,1.51,5.63,5.64
-61479,17,123,17123,68,27,14067824,14067824,165,68,31106764,31106764,12640,5914,1032146996,1001778707,41.21,39.71,45.22,45.22,0.54,0.46,1.36,1.4
-61479,17,175,17175,97,41,17038940,17038940,165,68,31106764,31106764,5994,2674,746830408,746121703,58.79,60.29,54.78,54.78,1.62,1.53,2.28,2.28
-61480,17,071,17071,1324,594,164546680,164523840,1324,594,164546680,164523840,7331,3827,1023614271,981273730,100,100,100,100,18.06,15.52,16.08,16.77
-61482,17,057,17057,604,271,121972133,121547701,650,296,143674938,143250506,37069,16195,2285854575,2241880276,92.92,91.55,84.89,84.85,1.63,1.67,5.34,5.42
-61482,17,109,17109,46,25,21702805,21702805,650,296,143674938,143250506,32612,14419,1528570815,1526558259,7.08,8.45,15.11,15.15,0.14,0.17,1.42,1.42
-61483,17,175,17175,1961,903,245652948,245598472,1961,903,245652948,245598472,5994,2674,746830408,746121703,100,100,100,100,32.72,33.77,32.89,32.92
-61484,17,057,17057,772,352,53605439,53463487,825,387,99611801,99341104,37069,16195,2285854575,2241880276,93.58,90.96,53.81,53.82,2.08,2.17,2.35,2.38
-61484,17,109,17109,41,29,37577037,37448292,825,387,99611801,99341104,32612,14419,1528570815,1526558259,4.97,7.49,37.72,37.7,0.13,0.2,2.46,2.45
-61484,17,169,17169,12,6,8429325,8429325,825,387,99611801,99341104,7544,3459,1143042712,1132531106,1.45,1.55,8.46,8.49,0.16,0.17,0.74,0.74
-61485,17,095,17095,560,296,114115886,112121811,560,296,114115886,112121811,52919,24077,1864303284,1855453788,100,100,100,100,1.06,1.23,6.12,6.04
-61486,17,131,17131,1552,668,111715278,111653222,1552,668,111715278,111653222,16434,7358,1472910313,1453506907,100,100,100,100,9.44,9.08,7.58,7.68
-61488,17,095,17095,1120,499,66940833,66940833,1120,499,66940833,66940833,52919,24077,1864303284,1855453788,100,100,100,100,2.12,2.07,3.59,3.61
-61489,17,095,17095,894,415,118086353,117782995,900,418,118545966,118242608,52919,24077,1864303284,1855453788,99.33,99.28,99.61,99.61,1.69,1.72,6.33,6.35
-61489,17,143,17143,6,3,459613,459613,900,418,118545966,118242608,186494,83034,1633244151,1603744994,0.67,0.72,0.39,0.39,0,0,0.03,0.03
-61490,17,073,17073,1060,483,88771855,88739972,1091,498,101926380,101894497,50486,22161,2138406439,2131522072,97.16,96.99,87.09,87.09,2.1,2.18,4.15,4.16
-61490,17,095,17095,31,15,13154525,13154525,1091,498,101926380,101894497,52919,24077,1864303284,1855453788,2.84,3.01,12.91,12.91,0.06,0.06,0.71,0.71
-61491,17,123,17123,67,29,25421526,25421526,2197,992,258917045,258290370,12640,5914,1032146996,1001778707,3.05,2.92,9.82,9.84,0.53,0.49,2.46,2.54
-61491,17,175,17175,2130,963,233495519,232868844,2197,992,258917045,258290370,5994,2674,746830408,746121703,96.95,97.08,90.18,90.16,35.54,36.01,31.26,31.21
-61501,17,057,17057,1921,900,208094259,201023658,1921,900,208094259,201023658,37069,16195,2285854575,2241880276,100,100,100,100,5.18,5.56,9.1,8.97
-61516,17,203,17203,720,301,81897259,81897259,720,301,81897259,81897259,38664,15145,1405435822,1366993724,100,100,100,100,1.86,1.99,5.83,5.99
-61517,17,143,17143,3259,1270,178720956,178564620,3259,1270,178720956,178564620,186494,83034,1633244151,1603744994,100,100,100,100,1.75,1.53,10.94,11.13
-61519,17,057,17057,233,115,3075062,3075062,233,115,3075062,3075062,37069,16195,2285854575,2241880276,100,100,100,100,0.63,0.71,0.13,0.14
-61520,17,057,17057,17839,7348,419970986,398100547,17839,7348,419970986,398100547,37069,16195,2285854575,2241880276,100,100,100,100,48.12,45.37,18.37,17.76
-61523,17,123,17123,54,25,11333034,11333034,11204,4842,144236413,138274182,12640,5914,1032146996,1001778707,0.48,0.52,7.86,8.2,0.43,0.42,1.1,1.13
-61523,17,143,17143,11150,4817,132903379,126941148,11204,4842,144236413,138274182,186494,83034,1633244151,1603744994,99.52,99.48,92.14,91.8,5.98,5.8,8.14,7.92
-61524,17,057,17057,262,121,616779,616779,262,121,616779,616779,37069,16195,2285854575,2241880276,100,100,100,100,0.71,0.75,0.03,0.03
-61525,17,143,17143,9021,3393,81131483,81131483,9021,3393,81131483,81131483,186494,83034,1633244151,1603744994,100,100,100,100,4.84,4.09,4.97,5.06
-61526,17,123,17123,66,31,6480205,6480205,1088,418,82698393,82677295,12640,5914,1032146996,1001778707,6.07,7.42,7.84,7.84,0.52,0.52,0.63,0.65
-61526,17,143,17143,1022,387,76218188,76197090,1088,418,82698393,82677295,186494,83034,1633244151,1603744994,93.93,92.58,92.16,92.16,0.55,0.47,4.67,4.75
-61528,17,143,17143,2668,998,47369338,47369338,2668,998,47369338,47369338,186494,83034,1633244151,1603744994,100,100,100,100,1.43,1.2,2.9,2.95
-61529,17,095,17095,34,17,11303114,10906355,2880,1210,166701033,165807156,52919,24077,1864303284,1855453788,1.18,1.4,6.78,6.58,0.06,0.07,0.61,0.59
-61529,17,143,17143,2846,1193,155397919,154900801,2880,1210,166701033,165807156,186494,83034,1633244151,1603744994,98.82,98.6,93.22,93.42,1.53,1.44,9.51,9.66
-61530,17,179,17179,9,3,1551222,1551222,6713,2507,161505128,161336095,135394,57516,1704046613,1680835450,0.13,0.12,0.96,0.96,0.01,0.01,0.09,0.09
-61530,17,203,17203,6704,2504,159953906,159784873,6713,2507,161505128,161336095,38664,15145,1405435822,1366993724,99.87,99.88,99.04,99.04,17.34,16.53,11.38,11.69
-61531,17,057,17057,3239,1409,92675061,92165647,3379,1469,147181547,145827438,37069,16195,2285854575,2241880276,95.86,95.92,62.97,63.2,8.74,8.7,4.05,4.11
-61531,17,095,17095,42,19,34980416,34161544,3379,1469,147181547,145827438,52919,24077,1864303284,1855453788,1.24,1.29,23.77,23.43,0.08,0.08,1.88,1.84
-61531,17,143,17143,98,41,19526070,19500247,3379,1469,147181547,145827438,186494,83034,1633244151,1603744994,2.9,2.79,13.27,13.37,0.05,0.05,1.2,1.22
-61532,17,125,17125,534,246,86187469,86187469,534,246,86187469,86187469,14666,7077,1459364382,1396619128,100,100,100,100,3.64,3.48,5.91,6.17
-61533,17,057,17057,230,92,16803406,16791263,2427,1039,108359203,106180244,37069,16195,2285854575,2241880276,9.48,8.85,15.51,15.81,0.62,0.57,0.74,0.75
-61533,17,143,17143,2197,947,91555797,89388981,2427,1039,108359203,106180244,186494,83034,1633244151,1603744994,90.52,91.15,84.49,84.19,1.18,1.14,5.61,5.57
-61534,17,179,17179,1737,708,142628033,142628033,1737,708,142628033,142628033,135394,57516,1704046613,1680835450,100,100,100,100,1.28,1.23,8.37,8.49
-61535,17,179,17179,1629,639,22655504,22491297,1629,639,22655504,22491297,135394,57516,1704046613,1680835450,100,100,100,100,1.2,1.11,1.33,1.34
-61536,17,143,17143,2919,1292,106666131,106341042,2919,1292,106666131,106341042,186494,83034,1633244151,1603744994,100,100,100,100,1.57,1.56,6.53,6.63
-61537,17,011,17011,30,15,7803931,7785011,2974,1357,155811819,152917014,34978,15720,2262364133,2250780454,1.01,1.11,5.01,5.09,0.09,0.1,0.34,0.35
-61537,17,123,17123,2944,1342,148007888,145132003,2974,1357,155811819,152917014,12640,5914,1032146996,1001778707,98.99,98.89,94.99,94.91,23.29,22.69,14.34,14.49
-61539,17,143,17143,205,97,2562963,2043925,205,97,2562963,2043925,186494,83034,1633244151,1603744994,100,100,100,100,0.11,0.12,0.16,0.13
-61540,17,123,17123,2916,1299,151583404,135115915,2916,1299,151583404,135115915,12640,5914,1032146996,1001778707,100,100,100,100,23.07,21.96,14.69,13.49
-61541,17,123,17123,136,63,425088,425088,136,63,425088,425088,12640,5914,1032146996,1001778707,100,100,100,100,1.08,1.07,0.04,0.04
-61542,17,057,17057,3794,1794,298634481,297641789,3794,1794,298634481,297641789,37069,16195,2285854575,2241880276,100,100,100,100,10.23,11.08,13.06,13.28
-61543,17,057,17057,151,77,24624141,20224308,151,77,24624141,20224308,37069,16195,2285854575,2241880276,100,100,100,100,0.41,0.48,1.08,0.9
-61544,17,057,17057,620,282,69183873,69097811,713,330,85225176,85056112,37069,16195,2285854575,2241880276,86.96,85.45,81.18,81.24,1.67,1.74,3.03,3.08
-61544,17,095,17095,93,48,16041303,15958301,713,330,85225176,85056112,52919,24077,1864303284,1855453788,13.04,14.55,18.82,18.76,0.18,0.2,0.86,0.86
-61545,17,203,17203,646,279,78964743,78964743,646,279,78964743,78964743,38664,15145,1405435822,1366993724,100,100,100,100,1.67,1.84,5.62,5.78
-61546,17,125,17125,2387,1031,107670193,98186104,4276,1919,280400241,262993557,14666,7077,1459364382,1396619128,55.82,53.73,38.4,37.33,16.28,14.57,7.38,7.03
-61546,17,179,17179,1889,888,172730048,164807453,4276,1919,280400241,262993557,135394,57516,1704046613,1680835450,44.18,46.27,61.6,62.67,1.4,1.54,10.14,9.81
-61547,17,143,17143,3779,1467,59372174,57910082,3779,1467,59372174,57910082,186494,83034,1633244151,1603744994,100,100,100,100,2.03,1.77,3.64,3.61
-61548,17,203,17203,12085,4569,206748342,196046104,12085,4569,206748342,196046104,38664,15145,1405435822,1366993724,100,100,100,100,31.26,30.17,14.71,14.34
-61550,17,179,17179,17721,7566,106070203,105928199,17721,7566,106070203,105928199,135394,57516,1704046613,1680835450,100,100,100,100,13.09,13.15,6.22,6.3
-61552,17,143,17143,239,100,1379365,1379365,239,100,1379365,1379365,186494,83034,1633244151,1603744994,100,100,100,100,0.13,0.12,0.08,0.09
-61553,17,057,17057,213,102,690658,690658,213,102,690658,690658,37069,16195,2285854575,2241880276,100,100,100,100,0.57,0.63,0.03,0.03
-61554,17,179,17179,43810,18655,182294333,181120412,43810,18655,182294333,181120412,135394,57516,1704046613,1680835450,100,100,100,100,32.36,32.43,10.7,10.78
-61559,17,143,17143,3261,1288,230476881,230145587,3332,1321,254593143,254261849,186494,83034,1633244151,1603744994,97.87,97.5,90.53,90.52,1.75,1.55,14.11,14.35
-61559,17,175,17175,71,33,24116262,24116262,3332,1321,254593143,254261849,5994,2674,746830408,746121703,2.13,2.5,9.47,9.48,1.18,1.23,3.23,3.23
-61560,17,011,17011,9,4,3260006,3260006,754,655,107050374,85783471,34978,15720,2262364133,2250780454,1.19,0.61,3.05,3.8,0.03,0.03,0.14,0.14
-61560,17,155,17155,745,651,103790368,82523465,754,655,107050374,85783471,6006,3074,446056852,414813807,98.81,99.39,96.95,96.2,12.4,21.18,23.27,19.89
-61561,17,203,17203,2788,1120,142925221,142794788,2788,1120,142925221,142794788,38664,15145,1405435822,1366993724,100,100,100,100,7.21,7.4,10.17,10.45
-61562,17,143,17143,46,25,70325,70325,46,25,70325,70325,186494,83034,1633244151,1603744994,100,100,100,100,0.02,0.03,0,0
-61563,17,057,17057,526,241,902896,902896,526,241,902896,902896,37069,16195,2285854575,2241880276,100,100,100,100,1.42,1.49,0.04,0.04
-61564,17,179,17179,1077,414,742194,742194,1077,414,742194,742194,135394,57516,1704046613,1680835450,100,100,100,100,0.8,0.72,0.04,0.04
-61565,17,123,17123,1456,631,177527135,168776648,1504,653,179346707,170596220,12640,5914,1032146996,1001778707,96.81,96.63,98.99,98.93,11.52,10.67,17.2,16.85
-61565,17,143,17143,48,22,1819572,1819572,1504,653,179346707,170596220,186494,83034,1633244151,1603744994,3.19,3.37,1.01,1.07,0.03,0.03,0.11,0.11
-61567,17,125,17125,624,330,95567764,95567764,624,330,95567764,95567764,14666,7077,1459364382,1396619128,100,100,100,100,4.25,4.66,6.55,6.84
-61568,17,179,17179,4459,1724,174330631,174108319,4459,1724,174330631,174108319,135394,57516,1704046613,1680835450,100,100,100,100,3.29,3,10.23,10.36
-61569,17,057,17057,7,4,1588615,1588615,1220,519,102951767,102079428,37069,16195,2285854575,2241880276,0.57,0.77,1.54,1.56,0.02,0.02,0.07,0.07
-61569,17,143,17143,1213,515,101363152,100490813,1220,519,102951767,102079428,186494,83034,1633244151,1603744994,99.43,99.23,98.46,98.44,0.65,0.62,6.21,6.27
-61570,17,123,17123,392,176,78816823,77709855,1879,775,185124444,172425705,12640,5914,1032146996,1001778707,20.86,22.71,42.58,45.07,3.1,2.98,7.64,7.76
-61570,17,203,17203,1487,599,106307621,94715850,1879,775,185124444,172425705,38664,15145,1405435822,1366993724,79.14,77.29,57.42,54.93,3.85,3.96,7.56,6.93
-61571,17,179,17179,23744,9799,147188285,147157075,23744,9799,147188285,147157075,135394,57516,1704046613,1680835450,100,100,100,100,17.54,17.04,8.64,8.75
-61572,17,095,17095,1068,477,92640633,92282267,1068,477,92640633,92282267,52919,24077,1864303284,1855453788,100,100,100,100,2.02,1.98,4.97,4.97
-61602,17,143,17143,1055,665,4479400,3943497,1055,665,4479400,3943497,186494,83034,1633244151,1603744994,100,100,100,100,0.57,0.8,0.27,0.25
-61603,17,143,17143,17600,7731,11265451,11117130,17600,7731,11265451,11117130,186494,83034,1633244151,1603744994,100,100,100,100,9.44,9.31,0.69,0.69
-61604,17,143,17143,31647,14343,40892671,40892671,31647,14343,40892671,40892671,186494,83034,1633244151,1603744994,100,100,100,100,16.97,17.27,2.5,2.55
-61605,17,143,17143,16303,7105,10769613,10769613,16303,7105,10769613,10769613,186494,83034,1633244151,1603744994,100,100,100,100,8.74,8.56,0.66,0.67
-61606,17,143,17143,8051,2998,3450145,3450145,8051,2998,3450145,3450145,186494,83034,1633244151,1603744994,100,100,100,100,4.32,3.61,0.21,0.22
-61607,17,143,17143,10941,4665,85562588,82986199,10941,4665,85562588,82986199,186494,83034,1633244151,1603744994,100,100,100,100,5.87,5.62,5.24,5.17
-61610,17,179,17179,5476,2423,11825400,10879378,5476,2423,11825400,10879378,135394,57516,1704046613,1680835450,100,100,100,100,4.04,4.21,0.69,0.65
-61611,17,179,17179,21364,9615,84725372,75143907,25268,11239,129955068,105906094,135394,57516,1704046613,1680835450,84.55,85.55,65.2,70.95,15.78,16.72,4.97,4.47
-61611,17,203,17203,3904,1624,45229696,30762187,25268,11239,129955068,105906094,38664,15145,1405435822,1366993724,15.45,14.45,34.8,29.05,10.1,10.72,3.22,2.25
-61614,17,143,17143,27628,13929,31487367,31250722,27628,13929,31487367,31250722,186494,83034,1633244151,1603744994,100,100,100,100,14.81,16.78,1.93,1.95
-61615,17,143,17143,22432,10534,81941466,81906221,22432,10534,81941466,81906221,186494,83034,1633244151,1603744994,100,100,100,100,12.03,12.69,5.02,5.11
-61616,17,143,17143,6116,3058,6897162,6562244,6116,3058,6897162,6562244,186494,83034,1633244151,1603744994,100,100,100,100,3.28,3.68,0.42,0.41
-61625,17,143,17143,385,5,36486,36486,385,5,36486,36486,186494,83034,1633244151,1603744994,100,100,100,100,0.21,0.01,0,0
-61701,17,113,17113,36105,17557,29243079,29243079,36105,17557,29243079,29243079,169572,69656,3072424395,3064933852,100,100,100,100,21.29,25.21,0.95,0.95
-61704,17,113,17113,35981,15047,47841319,47816811,35981,15047,47841319,47816811,169572,69656,3072424395,3064933852,100,100,100,100,21.22,21.6,1.56,1.56
-61705,17,113,17113,12263,4708,226613142,226415209,12263,4708,226613142,226415209,169572,69656,3072424395,3064933852,100,100,100,100,7.23,6.76,7.38,7.39
-61720,17,113,17113,236,120,72676088,72676088,236,120,72676088,72676088,169572,69656,3072424395,3064933852,100,100,100,100,0.14,0.17,2.37,2.37
-61721,17,107,17107,26,12,13804523,13804523,613,264,92046607,92019561,30305,12107,1603011686,1600764560,4.24,4.55,15,15,0.09,0.1,0.86,0.86
-61721,17,179,17179,587,252,78242084,78215038,613,264,92046607,92019561,135394,57516,1704046613,1680835450,95.76,95.45,85,85,0.43,0.44,4.59,4.65
-61722,17,113,17113,549,226,131286696,131272893,549,226,131286696,131272893,169572,69656,3072424395,3064933852,100,100,100,100,0.32,0.32,4.27,4.28
-61723,17,107,17107,2299,1024,154912520,154780241,2321,1032,168289317,168157038,30305,12107,1603011686,1600764560,99.05,99.22,92.05,92.05,7.59,8.46,9.66,9.67
-61723,17,113,17113,22,8,13376797,13376797,2321,1032,168289317,168157038,169572,69656,3072424395,3064933852,0.95,0.78,7.95,7.95,0.01,0.01,0.44,0.44
-61724,17,113,17113,536,247,99108662,99107265,536,247,99108662,99107265,169572,69656,3072424395,3064933852,100,100,100,100,0.32,0.35,3.23,3.23
-61725,17,113,17113,962,386,63240260,63215712,1547,608,124766664,124659385,169572,69656,3072424395,3064933852,62.18,63.49,50.69,50.71,0.57,0.55,2.06,2.06
-61725,17,203,17203,585,222,61526404,61443673,1547,608,124766664,124659385,38664,15145,1405435822,1366993724,37.82,36.51,49.31,49.29,1.51,1.47,4.38,4.49
-61726,17,105,17105,230,97,75779899,75397891,2544,1122,237194843,236625063,38950,15895,2708939484,2704686611,9.04,8.65,31.95,31.86,0.59,0.61,2.8,2.79
-61726,17,113,17113,2314,1025,161414944,161227172,2544,1122,237194843,236625063,169572,69656,3072424395,3064933852,90.96,91.35,68.05,68.14,1.36,1.47,5.25,5.26
-61727,17,039,17039,10015,4585,323417326,319222878,10015,4585,323417326,319222878,16561,7521,1049163396,1029554715,100,100,100,100,60.47,60.96,30.83,31.01
-61728,17,113,17113,1410,599,169909555,169854695,1410,599,169909555,169854695,169572,69656,3072424395,3064933852,100,100,100,100,0.83,0.86,5.53,5.54
-61729,17,113,17113,13,7,1690633,1690633,1073,399,48795233,48713452,169572,69656,3072424395,3064933852,1.21,1.75,3.46,3.47,0.01,0.01,0.06,0.06
-61729,17,203,17203,1060,392,47104600,47022819,1073,399,48795233,48713452,38664,15145,1405435822,1366993724,98.79,98.25,96.54,96.53,2.74,2.59,3.35,3.44
-61730,17,113,17113,379,171,75613335,75613335,379,171,75613335,75613335,169572,69656,3072424395,3064933852,100,100,100,100,0.22,0.25,2.46,2.47
-61731,17,053,17053,27,9,7231790,7231790,280,108,57619398,57619398,14081,6282,1259360095,1257738509,9.64,8.33,12.55,12.55,0.19,0.14,0.57,0.57
-61731,17,105,17105,55,23,24268034,24268034,280,108,57619398,57619398,38950,15895,2708939484,2704686611,19.64,21.3,42.12,42.12,0.14,0.14,0.9,0.9
-61731,17,113,17113,198,76,26119574,26119574,280,108,57619398,57619398,169572,69656,3072424395,3064933852,70.71,70.37,45.33,45.33,0.12,0.11,0.85,0.85
-61732,17,113,17113,2018,796,138604289,138471518,2096,827,144453120,144320349,169572,69656,3072424395,3064933852,96.28,96.25,95.95,95.95,1.19,1.14,4.51,4.52
-61732,17,179,17179,78,31,5848831,5848831,2096,827,144453120,144320349,135394,57516,1704046613,1680835450,3.72,3.75,4.05,4.05,0.06,0.05,0.34,0.35
-61733,17,179,17179,965,408,46197384,46131300,1124,469,55757174,55691090,135394,57516,1704046613,1680835450,85.85,86.99,82.85,82.83,0.71,0.71,2.71,2.74
-61733,17,203,17203,159,61,9559790,9559790,1124,469,55757174,55691090,38664,15145,1405435822,1366993724,14.15,13.01,17.15,17.17,0.41,0.4,0.68,0.7
-61734,17,179,17179,2867,1214,214565718,214513571,2867,1214,214565718,214513571,135394,57516,1704046613,1680835450,100,100,100,100,2.12,2.11,12.59,12.76
-61735,17,039,17039,420,199,89327283,81161749,420,199,89327283,81161749,16561,7521,1049163396,1029554715,100,100,100,100,2.54,2.65,8.51,7.88
-61736,17,113,17113,1808,657,95364283,95278636,1808,657,95364283,95278636,169572,69656,3072424395,3064933852,100,100,100,100,1.07,0.94,3.1,3.11
-61737,17,113,17113,516,233,88354865,88319735,516,233,88354865,88319735,169572,69656,3072424395,3064933852,100,100,100,100,0.3,0.33,2.88,2.88
-61738,17,113,17113,33,13,6439939,6439939,4212,1670,207066077,206924740,169572,69656,3072424395,3064933852,0.78,0.78,3.11,3.11,0.02,0.02,0.21,0.21
-61738,17,203,17203,4179,1657,200626138,200484801,4212,1670,207066077,206924740,38664,15145,1405435822,1366993724,99.22,99.22,96.89,96.89,10.81,10.94,14.28,14.67
-61739,17,105,17105,4888,2016,247637305,246884341,4897,2021,253785566,253032602,38950,15895,2708939484,2704686611,99.82,99.75,97.58,97.57,12.55,12.68,9.14,9.13
-61739,17,113,17113,9,5,6148261,6148261,4897,2021,253785566,253032602,169572,69656,3072424395,3064933852,0.18,0.25,2.42,2.43,0.01,0.01,0.2,0.2
-61740,17,105,17105,1634,720,191027962,191027962,1634,720,191027962,191027962,38950,15895,2708939484,2704686611,100,100,100,100,4.2,4.53,7.05,7.06
-61741,17,105,17105,1746,689,144768657,144768657,1746,689,144768657,144768657,38950,15895,2708939484,2704686611,100,100,100,100,4.48,4.33,5.34,5.35
-61742,17,179,17179,192,63,1034735,1034735,1144,423,16405710,16368594,135394,57516,1704046613,1680835450,16.78,14.89,6.31,6.32,0.14,0.11,0.06,0.06
-61742,17,203,17203,952,360,15370975,15333859,1144,423,16405710,16368594,38664,15145,1405435822,1366993724,83.22,85.11,93.69,93.68,2.46,2.38,1.09,1.12
-61743,17,105,17105,212,95,39148869,39148869,212,95,39148869,39148869,38950,15895,2708939484,2704686611,100,100,100,100,0.54,0.6,1.45,1.45
-61744,17,105,17105,199,72,68389639,68389639,2031,830,202578667,202578667,38950,15895,2708939484,2704686611,9.8,8.67,33.76,33.76,0.51,0.45,2.52,2.53
-61744,17,113,17113,1812,748,126646001,126646001,2031,830,202578667,202578667,169572,69656,3072424395,3064933852,89.22,90.12,62.52,62.52,1.07,1.07,4.12,4.13
-61744,17,203,17203,20,10,7543027,7543027,2031,830,202578667,202578667,38664,15145,1405435822,1366993724,0.98,1.2,3.72,3.72,0.05,0.07,0.54,0.55
-61745,17,039,17039,79,37,27175451,27175451,4408,1655,203809133,203455111,16561,7521,1049163396,1029554715,1.79,2.24,13.33,13.36,0.48,0.49,2.59,2.64
-61745,17,113,17113,4329,1618,176633682,176279660,4408,1655,203809133,203455111,169572,69656,3072424395,3064933852,98.21,97.76,86.67,86.64,2.55,2.32,5.75,5.75
-61747,17,179,17179,1560,669,72003146,71973394,1560,669,72003146,71973394,135394,57516,1704046613,1680835450,100,100,100,100,1.15,1.16,4.23,4.28
-61748,17,113,17113,2755,1164,103137311,98461866,2782,1175,107743398,102212318,169572,69656,3072424395,3064933852,99.03,99.06,95.72,96.33,1.62,1.67,3.36,3.21
-61748,17,203,17203,27,11,4606087,3750452,2782,1175,107743398,102212318,38664,15145,1405435822,1366993724,0.97,0.94,4.28,3.67,0.07,0.07,0.33,0.27
-61749,17,039,17039,512,259,71301635,71267588,556,279,84235117,84201070,16561,7521,1049163396,1029554715,92.09,92.83,84.65,84.64,3.09,3.44,6.8,6.92
-61749,17,107,17107,23,11,8399676,8399676,556,279,84235117,84201070,30305,12107,1603011686,1600764560,4.14,3.94,9.97,9.98,0.08,0.09,0.52,0.52
-61749,17,115,17115,21,9,4533806,4533806,556,279,84235117,84201070,110768,50475,1517383009,1503976676,3.78,3.23,5.38,5.38,0.02,0.02,0.3,0.3
-61750,17,039,17039,133,62,3089792,3089792,133,62,3089792,3089792,16561,7521,1049163396,1029554715,100,100,100,100,0.8,0.82,0.29,0.3
-61751,17,107,17107,124,57,4303557,4303557,124,57,4303557,4303557,30305,12107,1603011686,1600764560,100,100,100,100,0.41,0.47,0.27,0.27
-61752,17,039,17039,40,15,7892076,7892076,4339,1812,217156431,216362299,16561,7521,1049163396,1029554715,0.92,0.83,3.63,3.65,0.24,0.2,0.75,0.77
-61752,17,113,17113,4299,1797,209264355,208470223,4339,1812,217156431,216362299,169572,69656,3072424395,3064933852,99.08,99.17,96.37,96.35,2.54,2.58,6.81,6.8
-61753,17,113,17113,3012,1263,220485983,220328073,3012,1263,220485983,220328073,169572,69656,3072424395,3064933852,100,100,100,100,1.78,1.81,7.18,7.19
-61754,17,039,17039,57,22,10566531,10566531,1261,520,174929025,174874824,16561,7521,1049163396,1029554715,4.52,4.23,6.04,6.04,0.34,0.29,1.01,1.03
-61754,17,107,17107,36,12,10815983,10815983,1261,520,174929025,174874824,30305,12107,1603011686,1600764560,2.85,2.31,6.18,6.18,0.12,0.1,0.67,0.68
-61754,17,113,17113,1168,486,153546511,153492310,1261,520,174929025,174874824,169572,69656,3072424395,3064933852,92.62,93.46,87.78,87.77,0.69,0.7,5,5.01
-61755,17,179,17179,4669,1774,127599132,127047472,4669,1774,127599132,127047472,135394,57516,1704046613,1680835450,100,100,100,100,3.45,3.08,7.49,7.56
-61756,17,039,17039,146,60,56536541,56536541,2337,983,213580146,213580146,16561,7521,1049163396,1029554715,6.25,6.1,26.47,26.47,0.88,0.8,5.39,5.49
-61756,17,115,17115,2191,923,157043605,157043605,2337,983,213580146,213580146,110768,50475,1517383009,1503976676,93.75,93.9,73.53,73.53,1.98,1.83,10.35,10.44
-61759,17,179,17179,1534,659,88022188,87990143,1534,659,88022188,87990143,135394,57516,1704046613,1680835450,100,100,100,100,1.13,1.15,5.17,5.23
-61760,17,123,17123,56,21,11974168,11974168,2544,1108,189406395,189275321,12640,5914,1032146996,1001778707,2.2,1.9,6.32,6.33,0.44,0.36,1.16,1.2
-61760,17,203,17203,2488,1087,177432227,177301153,2544,1108,189406395,189275321,38664,15145,1405435822,1366993724,97.8,98.1,93.68,93.67,6.43,7.18,12.62,12.97
-61761,17,113,17113,52879,18982,110411905,110251111,52879,18982,110411905,110251111,169572,69656,3072424395,3064933852,100,100,100,100,31.18,27.25,3.59,3.6
-61764,17,105,17105,14460,5725,423983141,422653342,14460,5725,423983141,422653342,38950,15895,2708939484,2704686611,100,100,100,100,37.12,36.02,15.65,15.63
-61769,17,105,17105,619,258,98182789,98182789,619,258,98182789,98182789,38950,15895,2708939484,2704686611,100,100,100,100,1.59,1.62,3.62,3.63
-61770,17,113,17113,1108,503,161551884,161414408,1108,503,161551884,161414408,169572,69656,3072424395,3064933852,100,100,100,100,0.65,0.72,5.26,5.27
-61771,17,203,17203,860,349,59639786,59588346,860,349,59639786,59588346,38664,15145,1405435822,1366993724,100,100,100,100,2.22,2.3,4.24,4.36
-61772,17,113,17113,351,156,72163663,72163663,351,156,72163663,72163663,169572,69656,3072424395,3064933852,100,100,100,100,0.21,0.22,2.35,2.35
-61773,17,053,17053,477,225,112922324,112647583,477,225,112922324,112647583,14081,6282,1259360095,1257738509,100,100,100,100,3.39,3.58,8.97,8.96
-61774,17,113,17113,962,410,111699896,111699896,962,410,111699896,111699896,169572,69656,3072424395,3064933852,100,100,100,100,0.57,0.59,3.64,3.64
-61775,17,105,17105,307,120,89824813,89741480,307,120,89824813,89741480,38950,15895,2708939484,2704686611,100,100,100,100,0.79,0.75,3.32,3.32
-61776,17,113,17113,1409,594,114174476,113777770,1409,594,114174476,113777770,169572,69656,3072424395,3064933852,100,100,100,100,0.83,0.85,3.72,3.71
-61777,17,039,17039,952,418,104247002,104212314,952,418,104247002,104212314,16561,7521,1049163396,1029554715,100,100,100,100,5.75,5.56,9.94,10.12
-61778,17,039,17039,683,313,78187708,78187708,683,313,78187708,78187708,16561,7521,1049163396,1029554715,100,100,100,100,4.12,4.16,7.45,7.59
-61801,17,019,17019,30937,13868,13931726,13861667,30937,13868,13931726,13861667,201081,87569,2585825453,2580316235,100,100,100,100,15.39,15.84,0.54,0.54
-61802,17,019,17019,19052,9223,214887754,214640288,19052,9223,214887754,214640288,201081,87569,2585825453,2580316235,100,100,100,100,9.47,10.53,8.31,8.32
-61810,17,019,17019,14,7,7821306,7821306,361,154,53432081,53432081,201081,87569,2585825453,2580316235,3.88,4.55,14.64,14.64,0.01,0.01,0.3,0.3
-61810,17,045,17045,8,3,5919678,5919678,361,154,53432081,53432081,18576,8803,1616142633,1614531997,2.22,1.95,11.08,11.08,0.04,0.03,0.37,0.37
-61810,17,183,17183,339,144,39691097,39691097,361,154,53432081,53432081,81625,36318,2334298050,2326763569,93.91,93.51,74.28,74.28,0.42,0.4,1.7,1.71
-61811,17,183,17183,703,296,73419327,73419327,703,296,73419327,73419327,81625,36318,2334298050,2326763569,100,100,100,100,0.86,0.82,3.15,3.16
-61812,17,183,17183,375,172,69086175,69086175,375,172,69086175,69086175,81625,36318,2334298050,2326763569,100,100,100,100,0.46,0.47,2.96,2.97
-61813,17,147,17147,1971,833,168855308,168843285,1971,833,168855308,168843285,16729,7269,1138201526,1137528578,100,100,100,100,11.78,11.46,14.84,14.84
-61814,17,183,17183,1157,482,55782913,55782913,1157,482,55782913,55782913,81625,36318,2334298050,2326763569,100,100,100,100,1.42,1.33,2.39,2.4
-61815,17,019,17019,228,105,758355,758355,228,105,758355,758355,201081,87569,2585825453,2580316235,100,100,100,100,0.11,0.12,0.03,0.03
-61816,17,019,17019,509,215,74437586,74437586,509,215,74437586,74437586,201081,87569,2585825453,2580316235,100,100,100,100,0.25,0.25,2.88,2.88
-61817,17,183,17183,2583,1099,72419300,72222042,2583,1099,72419300,72222042,81625,36318,2334298050,2326763569,100,100,100,100,3.16,3.03,3.1,3.1
-61818,17,115,17115,61,27,17486715,17486715,1665,693,106740689,106729800,110768,50475,1517383009,1503976676,3.66,3.9,16.38,16.38,0.06,0.05,1.15,1.16
-61818,17,147,17147,1604,666,89253974,89243085,1665,693,106740689,106729800,16729,7269,1138201526,1137528578,96.34,96.1,83.62,83.62,9.59,9.16,7.84,7.85
-61820,17,019,17019,36964,14760,16928273,16927476,36964,14760,16928273,16927476,201081,87569,2585825453,2580316235,100,100,100,100,18.38,16.86,0.65,0.66
-61821,17,019,17019,30174,13784,19596017,19541881,30174,13784,19596017,19541881,201081,87569,2585825453,2580316235,100,100,100,100,15.01,15.74,0.76,0.76
-61822,17,019,17019,21608,9423,281935921,281768478,21608,9423,281935921,281768478,201081,87569,2585825453,2580316235,100,100,100,100,10.75,10.76,10.9,10.92
-61830,17,115,17115,45,22,16512834,16486886,478,224,98703393,98607931,110768,50475,1517383009,1503976676,9.41,9.82,16.73,16.72,0.04,0.04,1.09,1.1
-61830,17,147,17147,433,202,82190559,82121045,478,224,98703393,98607931,16729,7269,1138201526,1137528578,90.59,90.18,83.27,83.28,2.59,2.78,7.22,7.22
-61831,17,183,17183,157,72,30081623,30081623,157,72,30081623,30081623,81625,36318,2334298050,2326763569,100,100,100,100,0.19,0.2,1.29,1.29
-61832,17,183,17183,37290,17511,70095935,67130134,37290,17511,70095935,67130134,81625,36318,2334298050,2326763569,100,100,100,100,45.68,48.22,3,2.89
-61833,17,183,17183,2124,1018,4066219,4037123,2124,1018,4066219,4037123,81625,36318,2334298050,2326763569,100,100,100,100,2.6,2.8,0.17,0.17
-61834,17,183,17183,8454,2809,279373251,277929993,8454,2809,279373251,277929993,81625,36318,2334298050,2326763569,100,100,100,100,10.36,7.73,11.97,11.94
-61839,17,147,17147,586,272,86254118,86254118,586,272,86254118,86254118,16729,7269,1138201526,1137528578,100,100,100,100,3.5,3.74,7.58,7.58
-61840,17,019,17019,709,289,86678161,86469339,709,289,86678161,86469339,201081,87569,2585825453,2580316235,100,100,100,100,0.35,0.33,3.35,3.35
-61841,17,183,17183,1386,590,150580250,149778579,1386,590,150580250,149778579,81625,36318,2334298050,2326763569,100,100,100,100,1.7,1.62,6.45,6.44
-61842,17,039,17039,2798,1237,174667722,171907619,2984,1312,260506934,257724908,16561,7521,1049163396,1029554715,93.77,94.28,67.05,66.7,16.9,16.45,16.65,16.7
-61842,17,113,17113,78,32,43939491,43939491,2984,1312,260506934,257724908,169572,69656,3072424395,3064933852,2.61,2.44,16.87,17.05,0.05,0.05,1.43,1.43
-61842,17,147,17147,108,43,41899721,41877798,2984,1312,260506934,257724908,16729,7269,1138201526,1137528578,3.62,3.28,16.08,16.25,0.65,0.59,3.68,3.68
-61843,17,019,17019,2324,942,93533095,93127213,2363,956,98779532,98373650,201081,87569,2585825453,2580316235,98.35,98.54,94.69,94.67,1.16,1.08,3.62,3.61
-61843,17,113,17113,39,14,5246437,5246437,2363,956,98779532,98373650,169572,69656,3072424395,3064933852,1.65,1.46,5.31,5.33,0.02,0.02,0.17,0.17
-61844,17,183,17183,970,426,150309684,150290571,970,426,150309684,150290571,81625,36318,2334298050,2326763569,100,100,100,100,1.19,1.17,6.44,6.46
-61845,17,019,17019,338,158,70561387,70180864,364,174,78409732,78019106,201081,87569,2585825453,2580316235,92.86,90.8,89.99,89.95,0.17,0.18,2.73,2.72
-61845,17,053,17053,26,16,7848345,7838242,364,174,78409732,78019106,14081,6282,1259360095,1257738509,7.14,9.2,10.01,10.05,0.18,0.25,0.62,0.62
-61846,17,183,17183,5101,2228,113501342,113269162,5101,2228,113501342,113269162,81625,36318,2334298050,2326763569,100,100,100,100,6.25,6.13,4.86,4.87
-61847,17,019,17019,1256,507,80696578,80641593,1256,507,80696578,80641593,201081,87569,2585825453,2580316235,100,100,100,100,0.62,0.58,3.12,3.13
-61848,17,183,17183,227,95,2003491,2003491,227,95,2003491,2003491,81625,36318,2334298050,2326763569,100,100,100,100,0.28,0.26,0.09,0.09
-61849,17,019,17019,1676,714,99814548,99261700,1842,784,149470878,148896166,201081,87569,2585825453,2580316235,90.99,91.07,66.78,66.67,0.83,0.82,3.86,3.85
-61849,17,183,17183,166,70,49656330,49634466,1842,784,149470878,148896166,81625,36318,2334298050,2326763569,9.01,8.93,33.22,33.33,0.2,0.19,2.13,2.13
-61850,17,183,17183,671,284,89281902,89158703,671,284,89281902,89158703,81625,36318,2334298050,2326763569,100,100,100,100,0.82,0.78,3.82,3.83
-61851,17,019,17019,422,211,81027892,81027892,436,219,88467998,88467998,201081,87569,2585825453,2580316235,96.79,96.35,91.59,91.59,0.21,0.24,3.13,3.14
-61851,17,147,17147,14,8,7440106,7440106,436,219,88467998,88467998,16729,7269,1138201526,1137528578,3.21,3.65,8.41,8.41,0.08,0.11,0.65,0.65
-61852,17,019,17019,245,105,42663048,42663048,261,111,51003038,51003038,201081,87569,2585825453,2580316235,93.87,94.59,83.65,83.65,0.12,0.12,1.65,1.65
-61852,17,041,17041,16,6,8339990,8339990,261,111,51003038,51003038,19980,8390,1080605197,1079156495,6.13,5.41,16.35,16.35,0.08,0.07,0.77,0.77
-61853,17,019,17019,13096,5101,113070057,112058278,13206,5142,126415712,125403933,201081,87569,2585825453,2580316235,99.17,99.2,89.44,89.36,6.51,5.83,4.37,4.34
-61853,17,147,17147,110,41,13345655,13345655,13206,5142,126415712,125403933,16729,7269,1138201526,1137528578,0.83,0.8,10.56,10.64,0.66,0.56,1.17,1.17
-61854,17,147,17147,1438,628,139075095,138949661,1438,628,139075095,138949661,16729,7269,1138201526,1137528578,100,100,100,100,8.6,8.64,12.22,12.22
-61855,17,147,17147,96,52,26399907,26399907,96,52,26399907,26399907,16729,7269,1138201526,1137528578,100,100,100,100,0.57,0.72,2.32,2.32
-61856,17,147,17147,7433,3226,270395555,270110150,7433,3226,270395555,270110150,16729,7269,1138201526,1137528578,100,100,100,100,44.43,44.38,23.76,23.75
-61857,17,183,17183,153,74,619767,619767,153,74,619767,619767,81625,36318,2334298050,2326763569,100,100,100,100,0.19,0.2,0.03,0.03
-61858,17,183,17183,3124,1377,76117673,74563377,3124,1377,76117673,74563377,81625,36318,2334298050,2326763569,100,100,100,100,3.83,3.79,3.26,3.2
-61859,17,019,17019,1268,498,69727072,69694062,1297,510,81189738,81156728,201081,87569,2585825453,2580316235,97.76,97.65,85.88,85.88,0.63,0.57,2.7,2.7
-61859,17,183,17183,29,12,11462666,11462666,1297,510,81189738,81156728,81625,36318,2334298050,2326763569,2.24,2.35,14.12,14.12,0.04,0.03,0.49,0.49
-61862,17,019,17019,473,199,85614923,85407927,510,213,104574299,104362020,201081,87569,2585825453,2580316235,92.75,93.43,81.87,81.84,0.24,0.23,3.31,3.31
-61862,17,183,17183,37,14,18959376,18954093,510,213,104574299,104362020,81625,36318,2334298050,2326763569,7.25,6.57,18.13,18.16,0.05,0.04,0.81,0.81
-61863,17,019,17019,814,355,84316567,84235905,814,355,84316567,84235905,201081,87569,2585825453,2580316235,100,100,100,100,0.4,0.41,3.26,3.26
-61864,17,019,17019,1715,654,59062582,59010108,1715,654,59062582,59010108,201081,87569,2585825453,2580316235,100,100,100,100,0.85,0.75,2.28,2.29
-61865,17,183,17183,1391,592,199594716,199542732,1391,592,199594716,199542732,81625,36318,2334298050,2326763569,100,100,100,100,1.7,1.63,8.55,8.58
-61866,17,019,17019,14048,6542,208135244,207847661,14048,6542,208135244,207847661,201081,87569,2585825453,2580316235,100,100,100,100,6.99,7.47,8.05,8.06
-61870,17,045,17045,45,24,19745489,19745489,1327,600,107055364,107055364,18576,8803,1616142633,1614531997,3.39,4,18.44,18.44,0.24,0.27,1.22,1.22
-61870,17,183,17183,1282,576,87309875,87309875,1327,600,107055364,107055364,81625,36318,2334298050,2326763569,96.61,96,81.56,81.56,1.57,1.59,3.74,3.75
-61871,17,019,17019,284,129,900562,900562,284,129,900562,900562,201081,87569,2585825453,2580316235,100,100,100,100,0.14,0.15,0.03,0.03
-61872,17,019,17019,739,310,80564410,80391347,760,321,85223280,85050217,201081,87569,2585825453,2580316235,97.24,96.57,94.53,94.52,0.37,0.35,3.12,3.12
-61872,17,041,17041,21,11,4658870,4658870,760,321,85223280,85050217,19980,8390,1080605197,1079156495,2.76,3.43,5.47,5.48,0.11,0.13,0.43,0.43
-61873,17,019,17019,6250,2398,175020004,174220980,6250,2398,175020004,174220980,201081,87569,2585825453,2580316235,100,100,100,100,3.11,2.74,6.77,6.75
-61874,17,019,17019,7114,3355,10828539,10779441,7114,3355,10828539,10779441,201081,87569,2585825453,2580316235,100,100,100,100,3.54,3.83,0.42,0.42
-61875,17,019,17019,761,309,82298914,82295621,761,309,82298914,82295621,201081,87569,2585825453,2580316235,100,100,100,100,0.38,0.35,3.18,3.19
-61876,17,045,17045,48,25,31290034,31290034,800,333,112625539,112624454,18576,8803,1616142633,1614531997,6,7.51,27.78,27.78,0.26,0.28,1.94,1.94
-61876,17,183,17183,752,308,81335505,81334420,800,333,112625539,112624454,81625,36318,2334298050,2326763569,94,92.49,72.22,72.22,0.92,0.85,3.48,3.5
-61877,17,019,17019,1627,666,73256307,72984498,1627,666,73256307,72984498,201081,87569,2585825453,2580316235,100,100,100,100,0.81,0.76,2.83,2.83
-61878,17,019,17019,1433,682,72008611,71952521,1433,682,72008611,71952521,201081,87569,2585825453,2580316235,100,100,100,100,0.71,0.78,2.78,2.79
-61880,17,019,17019,4183,1711,157070705,156928345,4183,1711,157070705,156928345,201081,87569,2585825453,2580316235,100,100,100,100,2.08,1.95,6.07,6.08
-61882,17,039,17039,695,301,97103148,92683287,713,308,102378713,97958852,16561,7521,1049163396,1029554715,97.48,97.73,94.85,94.61,4.2,4,9.26,9
-61882,17,115,17115,18,7,5275565,5275565,713,308,102378713,97958852,110768,50475,1517383009,1503976676,2.52,2.27,5.15,5.39,0.02,0.01,0.35,0.35
-61883,17,183,17183,4438,2057,55137961,55137961,4438,2057,55137961,55137961,81625,36318,2334298050,2326763569,100,100,100,100,5.44,5.66,2.36,2.37
-61884,17,019,17019,48,13,15169020,15169020,1244,501,66402582,66256549,201081,87569,2585825453,2580316235,3.86,2.59,22.84,22.89,0.02,0.01,0.59,0.59
-61884,17,147,17147,1196,488,51233562,51087529,1244,501,66402582,66256549,16729,7269,1138201526,1137528578,96.14,97.41,77.16,77.11,7.15,6.71,4.5,4.49
-61910,17,029,17029,236,85,86485074,86418140,4463,1617,268838758,268502741,53873,23425,1321091177,1316466333,5.29,5.26,32.17,32.19,0.44,0.36,6.55,6.56
-61910,17,041,17041,4227,1532,182353684,182084601,4463,1617,268838758,268502741,19980,8390,1080605197,1079156495,94.71,94.74,67.83,67.81,21.16,18.26,16.88,16.87
-61911,17,029,17029,47,19,19288189,19288189,4860,1715,163059855,163016154,53873,23425,1321091177,1316466333,0.97,1.11,11.83,11.83,0.09,0.08,1.46,1.47
-61911,17,041,17041,2976,1068,68318394,68274693,4860,1715,163059855,163016154,19980,8390,1080605197,1079156495,61.23,62.27,41.9,41.88,14.89,12.73,6.32,6.33
-61911,17,139,17139,1837,628,75453272,75453272,4860,1715,163059855,163016154,14846,6260,892191423,870088946,37.8,36.62,46.27,46.29,12.37,10.03,8.46,8.67
-61912,17,029,17029,1344,592,131585016,131375803,1344,592,131585016,131375803,53873,23425,1321091177,1316466333,100,100,100,100,2.49,2.53,9.96,9.98
-61913,17,041,17041,956,429,56982606,56982606,1684,768,107992340,107992340,19980,8390,1080605197,1079156495,56.77,55.86,52.77,52.77,4.78,5.11,5.27,5.28
-61913,17,147,17147,728,339,51009734,51009734,1684,768,107992340,107992340,16729,7269,1138201526,1137528578,43.23,44.14,47.23,47.23,4.35,4.66,4.48,4.48
-61914,17,139,17139,1866,804,124111620,122654944,1920,828,154903791,153447115,14846,6260,892191423,870088946,97.19,97.1,80.12,79.93,12.57,12.84,13.91,14.1
-61914,17,173,17173,54,24,30792171,30792171,1920,828,154903791,153447115,22363,10396,1989291034,1964565410,2.81,2.9,19.88,20.07,0.24,0.23,1.55,1.57
-61917,17,041,17041,14,7,8989298,8989298,591,281,164873497,164873497,19980,8390,1080605197,1079156495,2.37,2.49,5.45,5.45,0.07,0.08,0.83,0.83
-61917,17,045,17045,577,274,155884199,155884199,591,281,164873497,164873497,18576,8803,1616142633,1614531997,97.63,97.51,94.55,94.55,3.11,3.11,9.65,9.66
-61919,17,041,17041,813,367,56885359,56766760,813,367,56885359,56766760,19980,8390,1080605197,1079156495,100,100,100,100,4.07,4.37,5.26,5.26
-61920,17,029,17029,25594,10220,389944574,387612577,25594,10220,389944574,387612577,53873,23425,1321091177,1316466333,100,100,100,100,47.51,43.63,29.52,29.44
-61924,17,045,17045,2449,1164,375471473,375365038,2449,1164,375471473,375365038,18576,8803,1616142633,1614531997,100,100,100,100,13.18,13.22,23.23,23.25
-61925,17,115,17115,311,127,81214728,81208583,912,368,108206101,108193424,110768,50475,1517383009,1503976676,34.1,34.51,75.06,75.06,0.28,0.25,5.35,5.4
-61925,17,139,17139,601,241,26991373,26984841,912,368,108206101,108193424,14846,6260,892191423,870088946,65.9,65.49,24.94,24.94,4.05,3.85,3.03,3.1
-61928,17,029,17029,157,109,6682314,6000815,757,362,93805637,93124138,53873,23425,1321091177,1316466333,20.74,30.11,7.12,6.44,0.29,0.47,0.51,0.46
-61928,17,139,17139,488,204,52531635,52531635,757,362,93805637,93124138,14846,6260,892191423,870088946,64.46,56.35,56,56.41,3.29,3.26,5.89,6.04
-61928,17,173,17173,112,49,34591688,34591688,757,362,93805637,93124138,22363,10396,1989291034,1964565410,14.8,13.54,36.88,37.15,0.5,0.47,1.74,1.76
-61929,17,147,17147,769,359,105035481,105033754,769,359,105035481,105033754,16729,7269,1138201526,1137528578,100,100,100,100,4.6,4.94,9.23,9.23
-61930,17,029,17029,28,8,13725470,13725470,515,239,80785226,80785226,53873,23425,1321091177,1316466333,5.44,3.35,16.99,16.99,0.05,0.03,1.04,1.04
-61930,17,041,17041,487,231,67059756,67059756,515,239,80785226,80785226,19980,8390,1080605197,1079156495,94.56,96.65,83.01,83.01,2.44,2.75,6.21,6.21
-61931,17,029,17029,1255,498,82583734,82524363,1255,498,82583734,82524363,53873,23425,1321091177,1316466333,100,100,100,100,2.33,2.13,6.25,6.27
-61932,17,045,17045,456,238,55931575,55931575,456,238,55931575,55931575,18576,8803,1616142633,1614531997,100,100,100,100,2.45,2.7,3.46,3.46
-61933,17,023,17023,32,18,12229651,12205537,1141,547,155197267,155110234,16335,7772,1307473409,1298666494,2.8,3.29,7.88,7.87,0.2,0.23,0.94,0.94
-61933,17,029,17029,6,4,5274253,5274253,1141,547,155197267,155110234,53873,23425,1321091177,1316466333,0.53,0.73,3.4,3.4,0.01,0.02,0.4,0.4
-61933,17,045,17045,1103,525,137693363,137630444,1141,547,155197267,155110234,18576,8803,1616142633,1614531997,96.67,95.98,88.72,88.73,5.94,5.96,8.52,8.52
-61936,17,147,17147,243,112,5812751,5812751,243,112,5812751,5812751,16729,7269,1138201526,1137528578,100,100,100,100,1.45,1.54,0.51,0.51
-61937,17,115,17115,41,19,17861079,17861079,2022,901,243914551,243872212,110768,50475,1517383009,1503976676,2.03,2.11,7.32,7.32,0.04,0.04,1.18,1.19
-61937,17,139,17139,1981,882,226053472,226011133,2022,901,243914551,243872212,14846,6260,892191423,870088946,97.97,97.89,92.68,92.68,13.34,14.09,25.34,25.98
-61938,17,029,17029,22409,10616,323816043,322883444,22409,10616,323816043,322883444,53873,23425,1321091177,1316466333,100,100,100,100,41.6,45.32,24.51,24.53
-61940,17,045,17045,258,129,72792788,72792788,258,129,72792788,72792788,18576,8803,1616142633,1614531997,100,100,100,100,1.39,1.47,4.5,4.51
-61941,17,041,17041,57,44,3541164,3541164,57,44,3541164,3541164,19980,8390,1080605197,1079156495,100,100,100,100,0.29,0.52,0.33,0.33
-61942,17,041,17041,1173,566,164544682,164348565,1202,579,183638952,183442835,19980,8390,1080605197,1079156495,97.59,97.75,89.6,89.59,5.87,6.75,15.23,15.23
-61942,17,045,17045,29,13,19094270,19094270,1202,579,183638952,183442835,18576,8803,1616142633,1614531997,2.41,2.25,10.4,10.41,0.16,0.15,1.18,1.18
-61943,17,029,17029,1408,676,114391388,114175040,1637,780,201571451,201180223,53873,23425,1321091177,1316466333,86.01,86.67,56.75,56.75,2.61,2.89,8.66,8.67
-61943,17,041,17041,161,74,73839451,73664571,1637,780,201571451,201180223,19980,8390,1080605197,1079156495,9.84,9.49,36.63,36.62,0.81,0.88,6.83,6.83
-61943,17,045,17045,68,30,13340612,13340612,1637,780,201571451,201180223,18576,8803,1616142633,1614531997,4.15,3.85,6.62,6.63,0.37,0.34,0.83,0.83
-61944,17,023,17023,10,4,3311635,3311635,12908,6079,687735011,686313176,16335,7772,1307473409,1298666494,0.08,0.07,0.48,0.48,0.06,0.05,0.25,0.26
-61944,17,045,17045,12898,6075,684423376,683001541,12908,6079,687735011,686313176,18576,8803,1616142633,1614531997,99.92,99.93,99.52,99.52,69.43,69.01,42.35,42.3
-61949,17,045,17045,179,88,7357388,7357388,179,88,7357388,7357388,18576,8803,1616142633,1614531997,100,100,100,100,0.96,1,0.46,0.46
-61951,17,029,17029,30,15,11485394,11479091,8017,3476,369918089,349319129,53873,23425,1321091177,1316466333,0.37,0.43,3.1,3.29,0.06,0.06,0.87,0.87
-61951,17,139,17139,7987,3461,358432695,337840038,8017,3476,369918089,349319129,14846,6260,892191423,870088946,99.63,99.57,96.9,96.71,53.8,55.29,40.17,38.83
-61953,17,041,17041,6216,2796,312995194,312417390,6216,2796,312995194,312417390,19980,8390,1080605197,1079156495,100,100,100,100,31.11,33.33,28.96,28.95
-61955,17,045,17045,157,78,645288,645288,157,78,645288,645288,18576,8803,1616142633,1614531997,100,100,100,100,0.85,0.89,0.04,0.04
-61956,17,019,17019,46,22,15561766,15561766,2909,1281,87658515,87589997,201081,87569,2585825453,2580316235,1.58,1.72,17.75,17.77,0.02,0.03,0.6,0.6
-61956,17,041,17041,2863,1259,72096749,72028231,2909,1281,87658515,87589997,19980,8390,1080605197,1079156495,98.42,98.28,82.25,82.23,14.33,15.01,6.67,6.67
-61957,17,139,17139,71,31,28245614,28241341,1869,856,221120460,213371879,14846,6260,892191423,870088946,3.8,3.62,12.77,13.24,0.48,0.5,3.17,3.25
-61957,17,173,17173,1798,825,192874846,185130538,1869,856,221120460,213371879,22363,10396,1989291034,1964565410,96.2,96.38,87.23,86.76,8.04,7.94,9.7,9.42
-62001,17,119,17119,1752,691,133596559,132747831,1752,691,133596559,132747831,269282,117106,1918044772,1853347576,100,100,100,100,0.65,0.59,6.97,7.16
-62002,17,117,17117,255,110,9293629,9147502,32704,15397,114301830,108835425,47765,21584,2247204577,2234917323,0.78,0.71,8.13,8.4,0.53,0.51,0.41,0.41
-62002,17,119,17119,32449,15287,105008201,99687923,32704,15397,114301830,108835425,269282,117106,1918044772,1853347576,99.22,99.29,91.87,91.6,12.05,13.05,5.47,5.38
-62006,17,013,17013,648,329,96641815,76055762,648,329,96641815,76055762,5089,2835,734459990,657402816,100,100,100,100,12.73,11.6,13.16,11.57
-62009,17,117,17117,1810,872,9765870,9756320,1810,872,9765870,9756320,47765,21584,2247204577,2234917323,100,100,100,100,3.79,4.04,0.43,0.44
-62010,17,119,17119,11186,4881,57900006,57233665,11186,4881,57900006,57233665,269282,117106,1918044772,1853347576,100,100,100,100,4.15,4.17,3.02,3.09
-62011,17,051,17051,284,135,74150241,74150241,284,135,74150241,74150241,22140,9302,1878629860,1855679809,100,100,100,100,1.28,1.45,3.95,4
-62012,17,083,17083,2837,1098,78067165,77712307,6654,2669,155323999,154163183,22985,9848,976757048,956408129,42.64,41.14,50.26,50.41,12.34,11.15,7.99,8.13
-62012,17,117,17117,3531,1456,69713064,68994527,6654,2669,155323999,154163183,47765,21584,2247204577,2234917323,53.07,54.55,44.88,44.75,7.39,6.75,3.1,3.09
-62012,17,119,17119,286,115,7543770,7456349,6654,2669,155323999,154163183,269282,117106,1918044772,1853347576,4.3,4.31,4.86,4.84,0.11,0.1,0.39,0.4
-62013,17,013,17013,552,330,78426303,64018383,552,330,78426303,64018383,5089,2835,734459990,657402816,100,100,100,100,10.85,11.64,10.68,9.74
-62014,17,117,17117,4122,1680,154478889,153781561,4122,1680,154478889,153781561,47765,21584,2247204577,2234917323,100,100,100,100,8.63,7.78,6.87,6.88
-62015,17,135,17135,487,240,88481505,86364357,487,240,88481505,86364357,30104,13080,1838052567,1822539599,100,100,100,100,1.62,1.83,4.81,4.74
-62016,17,061,17061,3816,1775,343879816,343647308,3816,1775,343879816,343647308,13886,6389,1414839199,1406413796,100,100,100,100,27.48,27.78,24.31,24.43
-62017,17,135,17135,1185,588,84876545,82081173,1185,588,84876545,82081173,30104,13080,1838052567,1822539599,100,100,100,100,3.94,4.5,4.62,4.5
-62018,17,119,17119,3604,1469,8280109,8216988,3604,1469,8280109,8216988,269282,117106,1918044772,1853347576,100,100,100,100,1.34,1.25,0.43,0.44
-62019,17,005,17005,171,81,41207358,41207358,490,234,71820331,70349778,17768,7089,991345036,984918676,34.9,34.62,57.38,58.57,0.96,1.14,4.16,4.18
-62019,17,135,17135,319,153,30612973,29142420,490,234,71820331,70349778,30104,13080,1838052567,1822539599,65.1,65.38,42.62,41.43,1.06,1.17,1.67,1.6
-62021,17,119,17119,936,417,52609544,51887369,936,417,52609544,51887369,269282,117106,1918044772,1853347576,100,100,100,100,0.35,0.36,2.74,2.8
-62022,17,083,17083,1138,453,48610705,48579866,1138,453,48610705,48579866,22985,9848,976757048,956408129,100,100,100,100,4.95,4.6,4.98,5.08
-62023,17,117,17117,91,32,877552,805187,91,32,877552,805187,47765,21584,2247204577,2234917323,100,100,100,100,0.19,0.15,0.04,0.04
-62024,17,119,17119,9775,4581,19064436,16159133,9775,4581,19064436,16159133,269282,117106,1918044772,1853347576,100,100,100,100,3.63,3.91,0.99,0.87
-62025,17,119,17119,33748,13409,287000043,282296361,33748,13409,287000043,282296361,269282,117106,1918044772,1853347576,100,100,100,100,12.53,11.45,14.96,15.23
-62027,17,061,17061,536,272,170509193,165397716,536,272,170509193,165397716,13886,6389,1414839199,1406413796,100,100,100,100,3.86,4.26,12.05,11.76
-62028,17,083,17083,1276,499,17644079,15284978,1276,499,17644079,15284978,22985,9848,976757048,956408129,100,100,100,100,5.55,5.07,1.81,1.6
-62030,17,083,17083,114,54,283996,283996,114,54,283996,283996,22985,9848,976757048,956408129,100,100,100,100,0.5,0.55,0.03,0.03
-62031,17,083,17083,970,533,153691130,148835883,970,533,153691130,148835883,22985,9848,976757048,956408129,100,100,100,100,4.22,5.41,15.73,15.56
-62032,17,051,17051,19,11,3627221,3627221,749,351,122770817,122770817,22140,9302,1878629860,1855679809,2.54,3.13,2.95,2.95,0.09,0.12,0.19,0.2
-62032,17,135,17135,730,340,119143596,119143596,749,351,122770817,122770817,30104,13080,1838052567,1822539599,97.46,96.87,97.05,97.05,2.42,2.6,6.48,6.54
-62033,17,117,17117,4894,2271,129405355,127831982,4894,2271,129405355,127831982,47765,21584,2247204577,2234917323,100,100,100,100,10.25,10.52,5.76,5.72
-62034,17,119,17119,13819,5867,36674408,36212358,13819,5867,36674408,36212358,269282,117106,1918044772,1853347576,100,100,100,100,5.13,5.01,1.91,1.95
-62035,17,083,17083,1019,477,42749588,38300596,16494,7036,128581911,119583858,22985,9848,976757048,956408129,6.18,6.78,33.25,32.03,4.43,4.84,4.38,4
-62035,17,119,17119,15475,6559,85832323,81283262,16494,7036,128581911,119583858,269282,117106,1918044772,1853347576,93.82,93.22,66.75,67.97,5.75,5.6,4.47,4.39
-62036,17,013,17013,704,368,85505247,74103891,704,368,85505247,74103891,5089,2835,734459990,657402816,100,100,100,100,13.83,12.98,11.64,11.27
-62037,17,083,17083,1993,947,159446837,151460880,1993,947,159446837,151460880,22985,9848,976757048,956408129,100,100,100,100,8.67,9.62,16.32,15.84
-62040,17,119,17119,43735,19464,136073747,115254887,43735,19464,136073747,115254887,269282,117106,1918044772,1853347576,100,100,100,100,16.24,16.62,7.09,6.22
-62044,17,061,17061,1903,854,223967163,223501655,2009,901,270338577,269806868,13886,6389,1414839199,1406413796,94.72,94.78,82.85,82.84,13.7,13.37,15.83,15.89
-62044,17,117,17117,106,47,46371414,46305213,2009,901,270338577,269806868,47765,21584,2247204577,2234917323,5.28,5.22,17.15,17.16,0.22,0.22,2.06,2.07
-62045,17,013,17013,647,407,105910532,98230949,647,407,105910532,98230949,5089,2835,734459990,657402816,100,100,100,100,12.71,14.36,14.42,14.94
-62046,17,119,17119,713,294,2068716,2055365,713,294,2068716,2055365,269282,117106,1918044772,1853347576,100,100,100,100,0.26,0.25,0.11,0.11
-62047,17,013,17013,1555,725,98128082,93278388,1555,725,98128082,93278388,5089,2835,734459990,657402816,100,100,100,100,30.56,25.57,13.36,14.19
-62048,17,119,17119,1459,697,21113110,19758062,1459,697,21113110,19758062,269282,117106,1918044772,1853347576,100,100,100,100,0.54,0.6,1.1,1.07
-62049,17,135,17135,8470,3035,223563047,219839904,8470,3035,223563047,219839904,30104,13080,1838052567,1822539599,100,100,100,100,28.14,23.2,12.16,12.06
-62050,17,061,17061,473,229,147219454,145095189,473,229,147219454,145095189,13886,6389,1414839199,1406413796,100,100,100,100,3.41,3.58,10.41,10.32
-62051,17,135,17135,950,426,99678441,98614415,950,426,99678441,98614415,30104,13080,1838052567,1822539599,100,100,100,100,3.16,3.26,5.42,5.41
-62052,17,083,17083,13002,5530,365396562,365178872,13002,5530,365396562,365178872,22985,9848,976757048,956408129,100,100,100,100,56.57,56.15,37.41,38.18
-62053,17,013,17013,650,436,121147334,119042777,650,436,121147334,119042777,5089,2835,734459990,657402816,100,100,100,100,12.77,15.38,16.49,18.11
-62054,17,061,17061,753,328,64837130,64809535,872,381,100859890,100832295,13886,6389,1414839199,1406413796,86.35,86.09,64.28,64.27,5.42,5.13,4.58,4.61
-62054,17,083,17083,119,53,36022760,36022760,872,381,100859890,100832295,22985,9848,976757048,956408129,13.65,13.91,35.72,35.73,0.52,0.54,3.69,3.77
-62056,17,117,17117,276,122,74192696,74139759,8930,4048,283133564,279376291,47765,21584,2247204577,2234917323,3.09,3.01,26.2,26.54,0.58,0.57,3.3,3.32
-62056,17,135,17135,8654,3926,208940868,205236532,8930,4048,283133564,279376291,30104,13080,1838052567,1822539599,96.91,96.99,73.8,73.46,28.75,30.02,11.37,11.26
-62058,17,119,17119,843,409,3104165,3092843,843,409,3104165,3092843,269282,117106,1918044772,1853347576,100,100,100,100,0.31,0.35,0.16,0.17
-62059,17,163,17163,746,325,685819,685819,746,325,685819,685819,270056,116249,1745738358,1703588508,100,100,100,100,0.28,0.28,0.04,0.04
-62060,17,119,17119,4847,2418,9836832,8734056,4847,2418,10241577,9138801,269282,117106,1918044772,1853347576,100,100,96.05,95.57,1.8,2.06,0.51,0.47
-62060,17,163,17163,0,0,404745,404745,4847,2418,10241577,9138801,270056,116249,1745738358,1703588508,0,0,3.95,4.43,0,0,0.02,0.02
-62061,17,119,17119,1718,715,63158723,62654720,1718,715,63158723,62654720,269282,117106,1918044772,1853347576,100,100,100,100,0.64,0.61,3.29,3.38
-62062,17,119,17119,7658,3216,16865109,16630310,7658,3216,16865109,16630310,269282,117106,1918044772,1853347576,100,100,100,100,2.84,2.75,0.88,0.9
-62063,17,083,17083,403,157,65307681,65277443,1214,493,125554066,125485546,22985,9848,976757048,956408129,33.2,31.85,52.02,52.02,1.75,1.59,6.69,6.83
-62063,17,117,17117,811,336,60246385,60208103,1214,493,125554066,125485546,47765,21584,2247204577,2234917323,66.8,68.15,47.98,47.98,1.7,1.56,2.68,2.69
-62065,17,013,17013,97,89,31393263,27990881,97,89,31393263,27990881,5089,2835,734459990,657402816,100,100,100,100,1.91,3.14,4.27,4.26
-62067,17,119,17119,2401,1013,48131095,47705757,2401,1013,48131095,47705757,269282,117106,1918044772,1853347576,100,100,100,100,0.89,0.87,2.51,2.57
-62069,17,117,17117,3306,1599,81070884,80364917,3313,1603,83117930,82406607,47765,21584,2247204577,2234917323,99.79,99.75,97.54,97.52,6.92,7.41,3.61,3.6
-62069,17,135,17135,7,4,2047046,2041690,3313,1603,83117930,82406607,30104,13080,1838052567,1822539599,0.21,0.25,2.46,2.48,0.02,0.03,0.11,0.11
-62070,17,013,17013,37,27,4502682,4417107,37,27,4502682,4417107,5089,2835,734459990,657402816,100,100,100,100,0.73,0.95,0.61,0.67
-62074,17,005,17005,132,55,11029461,11028228,1087,487,107949441,107401825,17768,7089,991345036,984918676,12.14,11.29,10.22,10.27,0.74,0.78,1.11,1.12
-62074,17,117,17117,96,38,7341050,7316915,1087,487,107949441,107401825,47765,21584,2247204577,2234917323,8.83,7.8,6.8,6.81,0.2,0.18,0.33,0.33
-62074,17,119,17119,844,387,85496024,84987107,1087,487,107949441,107401825,269282,117106,1918044772,1853347576,77.64,79.47,79.2,79.13,0.31,0.33,4.46,4.59
-62074,17,135,17135,15,7,4082906,4069575,1087,487,107949441,107401825,30104,13080,1838052567,1822539599,1.38,1.44,3.78,3.79,0.05,0.05,0.22,0.22
-62075,17,021,17021,137,59,51279870,51279870,3458,1612,286440703,286389970,34800,15563,1853500290,1837278793,3.96,3.66,17.9,17.91,0.39,0.38,2.77,2.79
-62075,17,051,17051,6,3,1553700,1553700,3458,1612,286440703,286389970,22140,9302,1878629860,1855679809,0.17,0.19,0.54,0.54,0.03,0.03,0.08,0.08
-62075,17,135,17135,3315,1550,233607133,233556400,3458,1612,286440703,286389970,30104,13080,1838052567,1822539599,95.86,96.15,81.56,81.55,11.01,11.85,12.71,12.81
-62076,17,135,17135,135,65,997472,997472,135,65,997472,997472,30104,13080,1838052567,1822539599,100,100,100,100,0.45,0.5,0.05,0.05
-62077,17,005,17005,141,65,689664,689664,347,178,1354414,1351944,17768,7089,991345036,984918676,40.63,36.52,50.92,51.01,0.79,0.92,0.07,0.07
-62077,17,135,17135,206,113,664750,662280,347,178,1354414,1351944,30104,13080,1838052567,1822539599,59.37,63.48,49.08,48.99,0.68,0.86,0.04,0.04
-62078,17,061,17061,119,50,1154544,1154544,119,50,1154544,1154544,13886,6389,1414839199,1406413796,100,100,100,100,0.86,0.78,0.08,0.08
-62079,17,083,17083,114,47,9536545,9470548,256,111,24682561,24562624,22985,9848,976757048,956408129,44.53,42.34,38.64,38.56,0.5,0.48,0.98,0.99
-62079,17,117,17117,142,64,15146016,15092076,256,111,24682561,24562624,47765,21584,2247204577,2234917323,55.47,57.66,61.36,61.44,0.3,0.3,0.67,0.68
-62080,17,051,17051,2458,1091,305581357,305079679,2508,1113,315121641,314619963,22140,9302,1878629860,1855679809,98.01,98.02,96.97,96.97,11.1,11.73,16.27,16.44
-62080,17,135,17135,50,22,9540284,9540284,2508,1113,315121641,314619963,30104,13080,1838052567,1822539599,1.99,1.98,3.03,3.03,0.17,0.17,0.52,0.52
-62081,17,061,17061,298,146,63268995,63223773,298,146,63268995,63223773,13886,6389,1414839199,1406413796,100,100,100,100,2.15,2.29,4.47,4.5
-62082,17,061,17061,2912,1322,228707676,228531383,3109,1410,281689604,281457065,13886,6389,1414839199,1406413796,93.66,93.76,81.19,81.2,20.97,20.69,16.16,16.25
-62082,17,171,17171,197,88,52981928,52925682,3109,1410,281689604,281457065,5355,2459,654673954,649861251,6.34,6.24,18.81,18.8,3.68,3.58,8.09,8.14
-62083,17,021,17021,250,89,34047870,34047870,295,110,50634729,50634729,34800,15563,1853500290,1837278793,84.75,80.91,67.24,67.24,0.72,0.57,1.84,1.85
-62083,17,135,17135,45,21,16586859,16586859,295,110,50634729,50634729,30104,13080,1838052567,1822539599,15.25,19.09,32.76,32.76,0.15,0.16,0.9,0.91
-62084,17,119,17119,1606,720,14113279,13683798,1606,720,14113279,13683798,269282,117106,1918044772,1853347576,100,100,100,100,0.6,0.61,0.74,0.74
-62085,17,117,17117,209,94,2089397,2057344,209,94,2089397,2057344,47765,21584,2247204577,2234917323,100,100,100,100,0.44,0.44,0.09,0.09
-62086,17,005,17005,1321,606,109109806,109052132,1437,660,137420709,137363035,17768,7089,991345036,984918676,91.93,91.82,79.4,79.39,7.43,8.55,11.01,11.07
-62086,17,135,17135,116,54,28310903,28310903,1437,660,137420709,137363035,30104,13080,1838052567,1822539599,8.07,8.18,20.6,20.61,0.39,0.41,1.54,1.55
-62087,17,119,17119,2087,875,8091029,7853118,2087,875,8091029,7853118,269282,117106,1918044772,1853347576,100,100,100,100,0.78,0.75,0.42,0.42
-62088,17,117,17117,6259,2818,71868975,70991438,6960,3136,113388054,112071435,47765,21584,2247204577,2234917323,89.93,89.86,63.38,63.34,13.1,13.06,3.2,3.18
-62088,17,119,17119,701,318,41519079,41079997,6960,3136,113388054,112071435,269282,117106,1918044772,1853347576,10.07,10.14,36.62,36.66,0.26,0.27,2.16,2.22
-62089,17,135,17135,489,231,2059441,1973320,489,231,2059441,1973320,30104,13080,1838052567,1822539599,100,100,100,100,1.62,1.77,0.11,0.11
-62090,17,119,17119,1189,513,4035501,4034907,1189,513,4035501,4034907,269282,117106,1918044772,1853347576,100,100,100,100,0.44,0.44,0.21,0.22
-62091,17,135,17135,337,155,81578810,81541680,337,155,81578810,81541680,30104,13080,1838052567,1822539599,100,100,100,100,1.12,1.19,4.44,4.47
-62092,17,061,17061,2979,1371,161528795,161286260,2979,1371,161528795,161286260,13886,6389,1414839199,1406413796,100,100,100,100,21.45,21.46,11.42,11.47
-62093,17,117,17117,435,194,1714772,1648018,435,194,1714772,1648018,47765,21584,2247204577,2234917323,100,100,100,100,0.91,0.9,0.08,0.07
-62094,17,135,17135,1152,585,83073012,83046249,1152,585,83073012,83046249,30104,13080,1838052567,1822539599,100,100,100,100,3.83,4.47,4.52,4.56
-62095,17,119,17119,11237,5154,18270899,18047959,11237,5154,18270899,18047959,269282,117106,1918044772,1853347576,100,100,100,100,4.17,4.4,0.95,0.97
-62097,17,119,17119,2828,1172,101576415,100180905,2828,1172,101576415,100180905,269282,117106,1918044772,1853347576,100,100,100,100,1.05,1,5.3,5.41
-62098,17,061,17061,91,39,8446744,8446744,91,39,8446744,8446744,13886,6389,1414839199,1406413796,100,100,100,100,0.66,0.61,0.6,0.6
-62201,17,119,17119,158,49,9416798,8725097,7547,2890,42746535,39068660,269282,117106,1918044772,1853347576,2.09,1.7,22.03,22.33,0.06,0.04,0.49,0.47
-62201,17,163,17163,7389,2841,33329737,30343563,7547,2890,42746535,39068660,270056,116249,1745738358,1703588508,97.91,98.3,77.97,77.67,2.74,2.44,1.91,1.78
-62203,17,163,17163,8209,3223,17667587,17235995,8209,3223,17667587,17235995,270056,116249,1745738358,1703588508,100,100,100,100,3.04,2.77,1.01,1.01
-62204,17,163,17163,7960,3799,14949870,14499430,7960,3799,14949870,14499430,270056,116249,1745738358,1703588508,100,100,100,100,2.95,3.27,0.86,0.85
-62205,17,163,17163,9329,4301,13263388,13078154,9329,4301,13263388,13078154,270056,116249,1745738358,1703588508,100,100,100,100,3.45,3.7,0.76,0.77
-62206,17,163,17163,16509,6649,37546601,36285156,16509,6649,37546601,36285156,270056,116249,1745738358,1703588508,100,100,100,100,6.11,5.72,2.15,2.13
-62207,17,163,17163,8750,3857,17496342,17255095,8750,3857,17496342,17255095,270056,116249,1745738358,1703588508,100,100,100,100,3.24,3.32,1,1.01
-62208,17,163,17163,17376,8044,34875621,34637989,17376,8044,34875621,34637989,270056,116249,1745738358,1703588508,100,100,100,100,6.43,6.92,2,2.03
-62214,17,189,17189,1229,545,165834786,165617067,1229,545,165834786,165617067,14716,6534,1460510170,1457055371,100,100,100,100,8.35,8.34,11.35,11.37
-62215,17,027,17027,1872,661,28057257,27704271,1872,661,28057257,27704271,37762,15311,1303466824,1227874498,100,100,100,100,4.96,4.32,2.15,2.26
-62216,17,027,17027,2526,912,55176511,55159103,2526,912,55176511,55159103,37762,15311,1303466824,1227874498,100,100,100,100,6.69,5.96,4.23,4.49
-62217,17,157,17157,807,391,77816537,71332631,807,391,77816537,71332631,33476,13707,1546753273,1490537612,100,100,100,100,2.41,2.85,5.03,4.79
-62218,17,027,17027,1481,570,120346544,119770573,1481,570,120346544,119770573,37762,15311,1303466824,1227874498,100,100,100,100,3.92,3.72,9.23,9.75
-62219,17,027,17027,1009,426,1569625,1569625,1009,426,1569625,1569625,37762,15311,1303466824,1227874498,100,100,100,100,2.67,2.78,0.12,0.13
-62220,17,163,17163,20504,9341,76927687,75802394,20504,9341,76927687,75802394,270056,116249,1745738358,1703588508,100,100,100,100,7.59,8.04,4.41,4.45
-62221,17,163,17163,27858,12063,89642496,88878409,27858,12063,89642496,88878409,270056,116249,1745738358,1703588508,100,100,100,100,10.32,10.38,5.13,5.22
-62223,17,163,17163,17560,8075,66077206,65634450,17560,8075,66077206,65634450,270056,116249,1745738358,1703588508,100,100,100,100,6.5,6.95,3.79,3.85
-62225,17,163,17163,5381,1654,18416436,18336732,5381,1654,18416436,18336732,270056,116249,1745738358,1703588508,100,100,100,100,1.99,1.42,1.05,1.08
-62226,17,163,17163,29744,13722,36761336,36022066,29744,13722,36761336,36022066,270056,116249,1745738358,1703588508,100,100,100,100,11.01,11.8,2.11,2.11
-62230,17,027,17027,6194,2535,129278934,129182493,6194,2535,129278934,129182493,37762,15311,1303466824,1227874498,100,100,100,100,16.4,16.56,9.92,10.52
-62231,17,027,17027,7589,3694,494430354,492077674,7589,3694,494430354,492077674,37762,15311,1303466824,1227874498,100,100,100,100,20.1,24.13,37.93,40.08
-62232,17,163,17163,7260,3025,34438292,34133518,7260,3025,34438292,34133518,270056,116249,1745738358,1703588508,100,100,100,100,2.69,2.6,1.97,2
-62233,17,157,17157,10037,2832,169784098,169006983,10037,2832,169784098,169006983,33476,13707,1546753273,1490537612,100,100,100,100,29.98,20.66,10.98,11.34
-62234,17,119,17119,29021,13263,83582115,81074839,33430,15004,97465872,94881819,269282,117106,1918044772,1853347576,86.81,88.4,85.76,85.45,10.78,11.33,4.36,4.37
-62234,17,163,17163,4409,1741,13883757,13806980,33430,15004,97465872,94881819,270056,116249,1745738358,1703588508,13.19,11.6,14.24,14.55,1.63,1.5,0.8,0.81
-62236,17,133,17133,11994,4804,129698458,122316771,12562,5029,149072348,141485650,32957,13392,1030907907,997173442,95.48,95.53,87,86.45,36.39,35.87,12.58,12.27
-62236,17,163,17163,568,225,19373890,19168879,12562,5029,149072348,141485650,270056,116249,1745738358,1703588508,4.52,4.47,13,13.55,0.21,0.19,1.11,1.13
-62237,17,145,17145,786,380,129358463,129117508,2659,1230,250976091,249647767,22350,9426,1157602305,1144154902,29.56,30.89,51.54,51.72,3.52,4.03,11.17,11.28
-62237,17,157,17157,1445,670,62238609,61294041,2659,1230,250976091,249647767,33476,13707,1546753273,1490537612,54.34,54.47,24.8,24.55,4.32,4.89,4.02,4.11
-62237,17,189,17189,428,180,59379019,59236218,2659,1230,250976091,249647767,14716,6534,1460510170,1457055371,16.1,14.63,23.66,23.73,2.91,2.75,4.07,4.07
-62238,17,145,17145,696,328,112072289,110374827,696,328,112072289,110374827,22350,9426,1157602305,1144154902,100,100,100,100,3.11,3.48,9.68,9.65
-62239,17,163,17163,4954,2238,20584748,20471529,4954,2238,20584748,20471529,270056,116249,1745738358,1703588508,100,100,100,100,1.83,1.93,1.18,1.2
-62240,17,163,17163,1966,842,44602377,41922434,1966,842,44602377,41922434,270056,116249,1745738358,1703588508,100,100,100,100,0.73,0.72,2.55,2.46
-62241,17,157,17157,1061,479,99160345,94923602,1061,479,99160345,94923602,33476,13707,1546753273,1490537612,100,100,100,100,3.17,3.49,6.41,6.37
-62242,17,157,17157,1526,725,145770421,142738168,1526,725,145770421,142738168,33476,13707,1546753273,1490537612,100,100,100,100,4.56,5.29,9.42,9.58
-62243,17,163,17163,5910,2408,141475509,136292414,5910,2408,141475509,136292414,270056,116249,1745738358,1703588508,100,100,100,100,2.19,2.07,8.1,8
-62244,17,133,17133,1156,496,132326440,129288100,1156,496,132326440,129288100,32957,13392,1030907907,997173442,100,100,100,100,3.51,3.7,12.84,12.97
-62245,17,027,17027,1794,726,56231601,55498415,1794,726,56231601,55498415,37762,15311,1303466824,1227874498,100,100,100,100,4.75,4.74,4.31,4.52
-62246,17,005,17005,10355,3770,373222154,369861147,10355,3770,373222154,369861147,17768,7089,991345036,984918676,100,100,100,100,58.28,53.18,37.65,37.55
-62248,17,133,17133,320,133,453925,453925,320,133,453925,453925,32957,13392,1030907907,997173442,100,100,100,100,0.97,0.99,0.04,0.05
-62249,17,027,17027,235,91,18029165,18029165,15971,6511,225062841,220685777,37762,15311,1303466824,1227874498,1.47,1.4,8.01,8.17,0.62,0.59,1.38,1.47
-62249,17,119,17119,15736,6420,207033676,202656612,15971,6511,225062841,220685777,269282,117106,1918044772,1853347576,98.53,98.6,91.99,91.83,5.84,5.48,10.79,10.93
-62250,17,027,17027,504,204,984987,984987,504,204,984987,984987,37762,15311,1303466824,1227874498,100,100,100,100,1.33,1.33,0.08,0.08
-62253,17,005,17005,416,216,72872655,70449166,696,386,94564349,87254220,17768,7089,991345036,984918676,59.77,55.96,77.06,80.74,2.34,3.05,7.35,7.15
-62253,17,027,17027,240,149,5962047,5917098,696,386,94564349,87254220,37762,15311,1303466824,1227874498,34.48,38.6,6.3,6.78,0.64,0.97,0.46,0.48
-62253,17,051,17051,40,21,15729647,10887956,696,386,94564349,87254220,22140,9302,1878629860,1855679809,5.75,5.44,16.63,12.48,0.18,0.23,0.84,0.59
-62254,17,163,17163,6089,2527,99309114,98068053,6089,2527,99309114,98068053,270056,116249,1745738358,1703588508,100,100,100,100,2.25,2.17,5.69,5.76
-62255,17,163,17163,1001,437,66801562,65442104,1001,437,66801562,65442104,270056,116249,1745738358,1703588508,100,100,100,100,0.37,0.38,3.83,3.84
-62257,17,157,17157,29,12,10893699,10319264,3214,1493,193425670,190693440,33476,13707,1546753273,1490537612,0.9,0.8,5.63,5.41,0.09,0.09,0.7,0.69
-62257,17,163,17163,2761,1303,121622167,119511261,3214,1493,193425670,190693440,270056,116249,1745738358,1703588508,85.91,87.27,62.88,62.67,1.02,1.12,6.97,7.02
-62257,17,189,17189,424,178,60909804,60862915,3214,1493,193425670,190693440,14716,6534,1460510170,1457055371,13.19,11.92,31.49,31.92,2.88,2.72,4.17,4.18
-62258,17,163,17163,9199,3745,192665882,190334213,9199,3745,192665882,190334213,270056,116249,1745738358,1703588508,100,100,100,100,3.41,3.22,11.04,11.17
-62260,17,163,17163,7290,3037,126156122,122949539,7290,3037,126156122,122949539,270056,116249,1745738358,1703588508,100,100,100,100,2.7,2.61,7.23,7.22
-62261,17,157,17157,152,165,82158002,74558180,152,165,82158002,74558180,33476,13707,1546753273,1490537612,100,100,100,100,0.45,1.2,5.31,5
-62262,17,005,17005,1424,688,107800449,107734573,1810,853,174287572,174221696,17768,7089,991345036,984918676,78.67,80.66,61.85,61.84,8.01,9.71,10.87,10.94
-62262,17,051,17051,386,165,66487123,66487123,1810,853,174287572,174221696,22140,9302,1878629860,1855679809,21.33,19.34,38.15,38.16,1.74,1.77,3.54,3.58
-62263,17,145,17145,75,38,2925746,2925746,5387,2354,379294524,377242014,22350,9426,1157602305,1144154902,1.39,1.61,0.77,0.78,0.34,0.4,0.25,0.26
-62263,17,189,17189,5312,2316,376368778,374316268,5387,2354,379294524,377242014,14716,6534,1460510170,1457055371,98.61,98.39,99.23,99.22,36.1,35.45,25.77,25.69
-62264,17,133,17133,116,48,9801285,9178085,3338,1417,180134559,169604635,32957,13392,1030907907,997173442,3.48,3.39,5.44,5.41,0.35,0.36,0.95,0.92
-62264,17,163,17163,3222,1369,170333274,160426550,3338,1417,180134559,169604635,270056,116249,1745738358,1703588508,96.52,96.61,94.56,94.59,1.19,1.18,9.76,9.42
-62265,17,027,17027,4070,1626,92260156,91871814,4353,1736,100922287,100465105,37762,15311,1303466824,1227874498,93.5,93.66,91.42,91.45,10.78,10.62,7.08,7.48
-62265,17,163,17163,283,110,8662131,8593291,4353,1736,100922287,100465105,270056,116249,1745738358,1703588508,6.5,6.34,8.58,8.55,0.1,0.09,0.5,0.5
-62266,17,027,17027,254,94,2937472,2937472,254,94,2937472,2937472,37762,15311,1303466824,1227874498,100,100,100,100,0.67,0.61,0.23,0.24
-62268,17,145,17145,20,11,2363125,2363125,738,320,135229433,135202914,22350,9426,1157602305,1144154902,2.71,3.44,1.75,1.75,0.09,0.12,0.2,0.21
-62268,17,189,17189,718,309,132866308,132839789,738,320,135229433,135202914,14716,6534,1460510170,1457055371,97.29,96.56,98.25,98.25,4.88,4.73,9.1,9.12
-62269,17,163,17163,31348,12753,70752564,69991816,31348,12753,70752564,69991816,270056,116249,1745738358,1703588508,100,100,100,100,11.61,10.97,4.05,4.11
-62271,17,189,17189,2077,954,150588903,150167958,2077,954,150588903,150167958,14716,6534,1460510170,1457055371,100,100,100,100,14.11,14.6,10.31,10.31
-62272,17,145,17145,297,130,36987522,36077172,1674,779,99699306,98191669,22350,9426,1157602305,1144154902,17.74,16.69,37.1,36.74,1.33,1.38,3.2,3.15
-62272,17,157,17157,1377,649,62711784,62114497,1674,779,99699306,98191669,33476,13707,1546753273,1490537612,82.26,83.31,62.9,63.26,4.11,4.73,4.05,4.17
-62273,17,005,17005,426,178,3481904,3481904,426,178,3481904,3481904,17768,7089,991345036,984918676,100,100,100,100,2.4,2.51,0.35,0.35
-62274,17,145,17145,8410,2894,365160177,361517079,8410,2894,365160177,361517079,22350,9426,1157602305,1144154902,100,100,100,100,37.63,30.7,31.54,31.6
-62275,17,005,17005,2746,1157,199342299,199029072,3621,1484,264052602,263578338,17768,7089,991345036,984918676,75.84,77.96,75.49,75.51,15.45,16.32,20.11,20.21
-62275,17,027,17027,224,93,19622645,19622645,3621,1484,264052602,263578338,37762,15311,1303466824,1227874498,6.19,6.27,7.43,7.44,0.59,0.61,1.51,1.6
-62275,17,119,17119,651,234,45087658,44926621,3621,1484,264052602,263578338,269282,117106,1918044772,1853347576,17.98,15.77,17.08,17.04,0.24,0.2,2.35,2.42
-62277,17,133,17133,254,139,71837269,71190113,1314,599,171874752,165431554,32957,13392,1030907907,997173442,19.33,23.21,41.8,43.03,0.77,1.04,6.97,7.14
-62277,17,157,17157,1060,460,100037483,94241441,1314,599,171874752,165431554,33476,13707,1546753273,1490537612,80.67,76.79,58.2,56.97,3.17,3.36,6.47,6.32
-62278,17,133,17133,1451,603,149952864,148407107,6690,2891,268516004,265162042,32957,13392,1030907907,997173442,21.69,20.86,55.85,55.97,4.4,4.5,14.55,14.88
-62278,17,157,17157,5239,2288,118563140,116754935,6690,2891,268516004,265162042,33476,13707,1546753273,1490537612,78.31,79.14,44.15,44.03,15.65,16.69,7.67,7.83
-62279,17,133,17133,69,33,348344,344845,69,33,348344,344845,32957,13392,1030907907,997173442,100,100,100,100,0.21,0.25,0.03,0.03
-62280,17,077,17077,192,82,80440809,77627264,444,200,139473129,136455327,60218,28578,1560155284,1512763725,43.24,41,57.67,56.89,0.32,0.29,5.16,5.13
-62280,17,157,17157,252,118,59032320,58828063,444,200,139473129,136455327,33476,13707,1546753273,1490537612,56.76,59,42.33,43.11,0.75,0.86,3.82,3.95
-62281,17,119,17119,2155,844,88191777,87241880,2155,844,88191777,87241880,269282,117106,1918044772,1853347576,100,100,100,100,0.8,0.72,4.6,4.71
-62282,17,163,17163,471,208,2644806,2644262,471,208,2644806,2644262,270056,116249,1745738358,1703588508,100,100,100,100,0.17,0.18,0.15,0.16
-62284,17,005,17005,636,273,72589286,72385432,636,273,72589286,72385432,17768,7089,991345036,984918676,100,100,100,100,3.58,3.85,7.32,7.35
-62285,17,163,17163,4484,1722,43461397,42378844,4484,1722,43461397,42378844,270056,116249,1745738358,1703588508,100,100,100,100,1.66,1.48,2.49,2.49
-62286,17,157,17157,6008,2819,284794170,280289125,6008,2819,284794170,280289125,33476,13707,1546753273,1490537612,100,100,100,100,17.95,20.57,18.41,18.8
-62288,17,157,17157,2918,1349,98465384,98316923,2918,1349,98465384,98316923,33476,13707,1546753273,1490537612,100,100,100,100,8.72,9.84,6.37,6.6
-62289,17,163,17163,350,151,535336,535336,350,151,535336,535336,270056,116249,1745738358,1703588508,100,100,100,100,0.13,0.13,0.03,0.03
-62292,17,157,17157,947,436,3820478,3789966,947,436,3820478,3789966,33476,13707,1546753273,1490537612,100,100,100,100,2.83,3.18,0.25,0.25
-62293,17,027,17027,3885,1674,65393666,65322077,4748,2019,154376355,154016770,37762,15311,1303466824,1227874498,81.82,82.91,42.36,42.41,10.29,10.93,5.02,5.32
-62293,17,119,17119,397,144,28062808,27847379,4748,2019,154376355,154016770,269282,117106,1918044772,1853347576,8.36,7.13,18.18,18.08,0.15,0.12,1.46,1.5
-62293,17,163,17163,466,201,60919881,60847314,4748,2019,154376355,154016770,270056,116249,1745738358,1703588508,9.81,9.96,39.46,39.51,0.17,0.17,3.49,3.57
-62294,17,119,17119,14268,5511,79065450,77656283,14367,5548,81090134,79652166,269282,117106,1918044772,1853347576,99.31,99.33,97.5,97.49,5.3,4.71,4.12,4.19
-62294,17,163,17163,99,37,2024684,1995883,14367,5548,81090134,79652166,270056,116249,1745738358,1703588508,0.69,0.67,2.5,2.51,0.04,0.03,0.12,0.12
-62295,17,133,17133,1599,677,193233638,176157155,1599,677,193233638,176157155,32957,13392,1030907907,997173442,100,100,100,100,4.85,5.06,18.74,17.67
-62297,17,157,17157,452,212,62386664,61825490,452,212,62386664,61825490,33476,13707,1546753273,1490537612,100,100,100,100,1.35,1.55,4.03,4.15
-62298,17,133,17133,15998,6459,343255684,339837341,16609,6735,377197915,373427051,32957,13392,1030907907,997173442,96.32,95.9,91,91.01,48.54,48.23,33.3,34.08
-62298,17,163,17163,611,276,33942231,33589710,16609,6735,377197915,373427051,270056,116249,1745738358,1703588508,3.68,4.1,9,8.99,0.23,0.24,1.94,1.97
-62301,17,001,17001,33758,15576,30657049,29259045,33758,15576,30657049,29259045,67103,29842,2256756616,2214963578,100,100,100,100,50.31,52.19,1.36,1.32
-62305,17,001,17001,18052,7668,379286180,358291765,18052,7668,379286180,358291765,67103,29842,2256756616,2214963578,100,100,100,100,26.9,25.7,16.81,16.18
-62311,17,001,17001,29,12,16524161,16497758,860,417,132312536,132148691,67103,29842,2256756616,2214963578,3.37,2.88,12.49,12.48,0.04,0.04,0.73,0.74
-62311,17,067,17067,746,363,62818443,62681001,860,417,132312536,132148691,19104,9274,2109276398,2055740516,86.74,87.05,47.48,47.43,3.9,3.91,2.98,3.05
-62311,17,169,17169,85,42,52969932,52969932,860,417,132312536,132148691,7544,3459,1143042712,1132531106,9.88,10.07,40.03,40.08,1.13,1.21,4.63,4.68
-62312,17,001,17001,225,95,52635387,52540385,2162,1023,238572118,238419841,67103,29842,2256756616,2214963578,10.41,9.29,22.06,22.04,0.34,0.32,2.33,2.37
-62312,17,149,17149,1937,928,185936731,185879456,2162,1023,238572118,238419841,16430,7951,2198601562,2153268105,89.59,90.71,77.94,77.96,11.79,11.67,8.46,8.63
-62313,17,067,17067,389,183,109763568,109584209,389,183,109763568,109584209,19104,9274,2109276398,2055740516,100,100,100,100,2.04,1.97,5.2,5.33
-62314,17,001,17001,72,40,25590422,25550696,611,325,181010810,180960627,67103,29842,2256756616,2214963578,11.78,12.31,14.14,14.12,0.11,0.13,1.13,1.15
-62314,17,149,17149,539,285,155420388,155409931,611,325,181010810,180960627,16430,7951,2198601562,2153268105,88.22,87.69,85.86,85.88,3.28,3.58,7.07,7.22
-62316,17,001,17001,2,2,5412653,5406296,660,283,106660210,106624094,67103,29842,2256756616,2214963578,0.3,0.71,5.07,5.07,0,0.01,0.24,0.24
-62316,17,067,17067,658,281,101247557,101217798,660,283,106660210,106624094,19104,9274,2109276398,2055740516,99.7,99.29,94.93,94.93,3.44,3.03,4.8,4.92
-62319,17,169,17169,264,141,105079879,105079879,264,141,105079879,105079879,7544,3459,1143042712,1132531106,100,100,100,100,3.5,4.08,9.19,9.28
-62320,17,001,17001,2185,949,225867247,225488250,2185,949,225867247,225488250,67103,29842,2256756616,2214963578,100,100,100,100,3.26,3.18,10.01,10.18
-62321,17,067,17067,4091,1997,434440272,433902056,4091,1997,434440272,433902056,19104,9274,2109276398,2055740516,100,100,100,100,21.41,21.53,20.6,21.11
-62323,17,009,17009,8,5,1956479,1956479,290,138,109260926,107863325,6937,2462,795657587,791518279,2.76,3.62,1.79,1.81,0.12,0.2,0.25,0.25
-62323,17,149,17149,282,133,107304447,105906846,290,138,109260926,107863325,16430,7951,2198601562,2153268105,97.24,96.38,98.21,98.19,1.72,1.67,4.88,4.92
-62324,17,001,17001,1332,597,211424688,210756389,1361,617,229541559,228873260,67103,29842,2256756616,2214963578,97.87,96.76,92.11,92.08,1.99,2,9.37,9.52
-62324,17,009,17009,29,20,18116871,18116871,1361,617,229541559,228873260,6937,2462,795657587,791518279,2.13,3.24,7.89,7.92,0.42,0.81,2.28,2.29
-62325,17,001,17001,403,176,40797272,40714337,403,176,40797272,40714337,67103,29842,2256756616,2214963578,100,100,100,100,0.6,0.59,1.81,1.84
-62326,17,067,17067,28,14,9470684,9470684,2478,1179,197220217,196757468,19104,9274,2109276398,2055740516,1.13,1.19,4.8,4.81,0.15,0.15,0.45,0.46
-62326,17,109,17109,2450,1165,187749533,187286784,2478,1179,197220217,196757468,32612,14419,1528570815,1526558259,98.87,98.81,95.2,95.19,7.51,8.08,12.28,12.27
-62330,17,067,17067,1536,802,197855864,193844661,1769,924,215379358,209372966,19104,9274,2109276398,2055740516,86.83,86.8,91.86,92.58,8.04,8.65,9.38,9.43
-62330,17,071,17071,233,122,17523494,15528305,1769,924,215379358,209372966,7331,3827,1023614271,981273730,13.17,13.2,8.14,7.42,3.18,3.19,1.71,1.58
-62334,17,067,17067,172,81,5801250,5796727,172,81,5801250,5796727,19104,9274,2109276398,2055740516,100,100,100,100,0.9,0.87,0.28,0.28
-62336,17,067,17067,47,26,153002,153002,47,26,153002,153002,19104,9274,2109276398,2055740516,100,100,100,100,0.25,0.28,0.01,0.01
-62338,17,001,17001,1473,600,95165490,94959896,1473,600,95165490,94959896,67103,29842,2256756616,2214963578,100,100,100,100,2.2,2.01,4.22,4.29
-62339,17,001,17001,874,383,84625126,84591479,874,383,84625126,84591479,67103,29842,2256756616,2214963578,100,100,100,100,1.3,1.28,3.75,3.82
-62340,17,149,17149,1715,810,238236302,235935326,1715,810,238236302,235935326,16430,7951,2198601562,2153268105,100,100,100,100,10.44,10.19,10.84,10.96
-62341,17,067,17067,3610,1587,129086710,120321019,3610,1587,129086710,120321019,19104,9274,2109276398,2055740516,100,100,100,100,18.9,17.11,6.12,5.85
-62343,17,001,17001,39,18,11274993,11238516,712,377,209509967,196463842,67103,29842,2256756616,2214963578,5.48,4.77,5.38,5.72,0.06,0.06,0.5,0.51
-62343,17,149,17149,673,359,198234974,185225326,712,377,209509967,196463842,16430,7951,2198601562,2153268105,94.52,95.23,94.62,94.28,4.1,4.52,9.02,8.6
-62344,17,169,17169,138,77,92668768,92668768,138,77,92668768,92668768,7544,3459,1143042712,1132531106,100,100,100,100,1.83,2.23,8.11,8.18
-62345,17,149,17149,357,193,56043701,56029383,357,193,56043701,56029383,16430,7951,2198601562,2153268105,100,100,100,100,2.17,2.43,2.55,2.6
-62346,17,001,17001,140,86,61525098,61509511,178,106,87773390,87714993,67103,29842,2256756616,2214963578,78.65,81.13,70.1,70.12,0.21,0.29,2.73,2.78
-62346,17,169,17169,38,20,26248292,26205482,178,106,87773390,87714993,7544,3459,1143042712,1132531106,21.35,18.87,29.9,29.88,0.5,0.58,2.3,2.31
-62347,17,001,17001,2282,983,311202941,310937009,2282,983,311202941,310937009,67103,29842,2256756616,2214963578,100,100,100,100,3.4,3.29,13.79,14.04
-62348,17,001,17001,170,70,4667990,4667990,170,70,4667990,4667990,67103,29842,2256756616,2214963578,100,100,100,100,0.25,0.23,0.21,0.21
-62349,17,001,17001,634,294,110283870,109845461,636,296,115303034,114840001,67103,29842,2256756616,2214963578,99.69,99.32,95.65,95.65,0.94,0.99,4.89,4.96
-62349,17,067,17067,2,2,5019164,4994540,636,296,115303034,114840001,19104,9274,2109276398,2055740516,0.31,0.68,4.35,4.35,0.01,0.02,0.24,0.24
-62351,17,001,17001,1752,711,179926114,179227219,1856,763,192748108,192016779,67103,29842,2256756616,2214963578,94.4,93.18,93.35,93.34,2.61,2.38,7.97,8.09
-62351,17,067,17067,104,52,12821994,12789560,1856,763,192748108,192016779,19104,9274,2109276398,2055740516,5.6,6.82,6.65,6.66,0.54,0.56,0.61,0.62
-62352,17,149,17149,271,118,978774,978774,271,118,978774,978774,16430,7951,2198601562,2153268105,100,100,100,100,1.65,1.48,0.04,0.05
-62353,17,009,17009,5635,1770,482017186,481590524,5637,1772,485417845,484991183,6937,2462,795657587,791518279,99.96,99.89,99.3,99.3,81.23,71.89,60.58,60.84
-62353,17,169,17169,2,2,3400659,3400659,5637,1772,485417845,484991183,7544,3459,1143042712,1132531106,0.04,0.11,0.7,0.7,0.03,0.06,0.3,0.3
-62354,17,067,17067,1684,973,115517599,95028359,1684,973,115517599,95028359,19104,9274,2109276398,2055740516,100,100,100,100,8.81,10.49,5.48,4.62
-62355,17,013,17013,199,120,101066827,92555172,820,432,220211016,211682298,5089,2835,734459990,657402816,24.27,27.78,45.9,43.72,3.91,4.23,13.76,14.08
-62355,17,149,17149,621,312,119144189,119127126,820,432,220211016,211682298,16430,7951,2198601562,2153268105,75.73,72.22,54.1,56.28,3.78,3.92,5.42,5.53
-62356,17,149,17149,571,318,155483302,150794516,571,318,155483302,150794516,16430,7951,2198601562,2153268105,100,100,100,100,3.48,4,7.07,7
-62357,17,149,17149,245,107,51940835,51914447,245,107,51940835,51914447,16430,7951,2198601562,2153268105,100,100,100,100,1.49,1.35,2.36,2.41
-62358,17,067,17067,752,350,114552763,111647005,752,350,114552763,111647005,19104,9274,2109276398,2055740516,100,100,100,100,3.94,3.77,5.43,5.43
-62359,17,001,17001,166,68,10367995,10360074,166,68,10367995,10360074,67103,29842,2256756616,2214963578,100,100,100,100,0.25,0.23,0.46,0.47
-62360,17,001,17001,1656,685,92627315,92627315,1656,685,92627315,92627315,67103,29842,2256756616,2214963578,100,100,100,100,2.47,2.3,4.1,4.18
-62361,17,149,17149,539,322,157549251,155866887,539,322,157549251,155866887,16430,7951,2198601562,2153268105,100,100,100,100,3.28,4.05,7.17,7.24
-62362,17,149,17149,399,211,982408,982408,399,211,982408,982408,16430,7951,2198601562,2153268105,100,100,100,100,2.43,2.65,0.04,0.05
-62363,17,149,17149,6353,2842,414053468,409308639,6353,2842,414053468,409308639,16430,7951,2198601562,2153268105,100,100,100,100,38.67,35.74,18.83,19.01
-62365,17,001,17001,647,262,72714869,72664377,647,262,72714869,72664377,67103,29842,2256756616,2214963578,100,100,100,100,0.96,0.88,3.22,3.28
-62366,17,013,17013,0,4,11737905,7709506,1408,716,197003356,184499459,5089,2835,734459990,657402816,0,0.56,5.96,4.18,0,0.14,1.6,1.17
-62366,17,149,17149,1408,712,185265451,176789953,1408,716,197003356,184499459,16430,7951,2198601562,2153268105,100,99.44,94.04,95.82,8.57,8.95,8.43,8.21
-62367,17,067,17067,700,365,117445593,117436276,1345,623,295830832,295810327,19104,9274,2109276398,2055740516,52.04,58.59,39.7,39.7,3.66,3.94,5.57,5.71
-62367,17,109,17109,441,153,88297516,88286328,1345,623,295830832,295810327,32612,14419,1528570815,1526558259,32.79,24.56,29.85,29.85,1.35,1.06,5.78,5.78
-62367,17,169,17169,204,105,90087723,90087723,1345,623,295830832,295810327,7544,3459,1143042712,1132531106,15.17,16.85,30.45,30.45,2.7,3.04,7.88,7.95
-62370,17,149,17149,520,301,172027341,163119087,520,301,172027341,163119087,16430,7951,2198601562,2153268105,100,100,100,100,3.16,3.79,7.82,7.58
-62373,17,067,17067,300,132,93437078,93073756,300,132,93437078,93073756,19104,9274,2109276398,2055740516,100,100,100,100,1.57,1.42,4.43,4.53
-62374,17,067,17067,87,43,31849292,31849292,298,159,59541814,59541814,19104,9274,2109276398,2055740516,29.19,27.04,53.49,53.49,0.46,0.46,1.51,1.55
-62374,17,109,17109,211,116,27692522,27692522,298,159,59541814,59541814,32612,14419,1528570815,1526558259,70.81,72.96,46.51,46.51,0.65,0.8,1.81,1.81
-62375,17,009,17009,369,194,116196693,116151309,369,194,116196693,116151309,6937,2462,795657587,791518279,100,100,100,100,5.32,7.88,14.6,14.67
-62376,17,001,17001,1198,552,205594390,195448214,1198,552,205594390,195448214,67103,29842,2256756616,2214963578,100,100,100,100,1.79,1.85,9.11,8.82
-62378,17,009,17009,896,473,177370358,173703096,896,473,177370358,173703096,6937,2462,795657587,791518279,100,100,100,100,12.92,19.21,22.29,21.95
-62379,17,001,17001,14,15,28585366,22381596,2049,1005,269137694,247286006,67103,29842,2256756616,2214963578,0.68,1.49,10.62,9.05,0.02,0.05,1.27,1.01
-62379,17,067,17067,2035,990,240552328,224904410,2049,1005,269137694,247286006,19104,9274,2109276398,2055740516,99.32,98.51,89.38,90.95,10.65,10.68,11.4,10.94
-62380,17,067,17067,401,181,110290953,109905689,401,181,110290953,109905689,19104,9274,2109276398,2055740516,100,100,100,100,2.1,1.95,5.23,5.35
-62401,17,049,17049,19020,8536,263817132,261423020,19096,8564,272169528,269775416,34242,14570,1243211135,1240027936,99.6,99.67,96.93,96.9,55.55,58.59,21.22,21.08
-62401,17,173,17173,76,28,8352396,8352396,19096,8564,272169528,269775416,22363,10396,1989291034,1964565410,0.4,0.33,3.07,3.1,0.34,0.27,0.42,0.43
-62410,17,185,17185,985,426,99171912,97208089,985,426,99171912,97208089,11947,5585,589236603,578218989,100,100,100,100,8.24,7.63,16.83,16.81
-62411,17,049,17049,4401,1819,217466018,217095687,4430,1832,223294117,222923786,34242,14570,1243211135,1240027936,99.35,99.29,97.39,97.39,12.85,12.48,17.49,17.51
-62411,17,051,17051,29,13,5828099,5828099,4430,1832,223294117,222923786,22140,9302,1878629860,1855679809,0.65,0.71,2.61,2.61,0.13,0.14,0.31,0.31
-62413,17,023,17023,24,12,8424584,8416457,421,168,81411529,81323649,16335,7772,1307473409,1298666494,5.7,7.14,10.35,10.35,0.15,0.15,0.64,0.65
-62413,17,033,17033,397,156,72986945,72907192,421,168,81411529,81323649,19817,8661,1154664937,1148994475,94.3,92.86,89.65,89.65,2,1.8,6.32,6.35
-62414,17,049,17049,803,372,45892475,45892475,1886,833,191424762,191322518,34242,14570,1243211135,1240027936,42.58,44.66,23.97,23.99,2.35,2.55,3.69,3.7
-62414,17,051,17051,833,351,112089666,111987422,1886,833,191424762,191322518,22140,9302,1878629860,1855679809,44.17,42.14,58.56,58.53,3.76,3.77,5.97,6.03
-62414,17,173,17173,250,110,33442621,33442621,1886,833,191424762,191322518,22363,10396,1989291034,1964565410,13.26,13.21,17.47,17.48,1.12,1.06,1.68,1.7
-62417,17,101,17101,3064,1340,93725668,93659814,3064,1340,93725668,93659814,16833,6936,969014648,963936870,100,100,100,100,18.2,19.32,9.67,9.72
-62418,17,051,17051,2133,972,239198304,238915998,2133,972,239198304,238915998,22140,9302,1878629860,1855679809,100,100,100,100,9.63,10.45,12.73,12.87
-62419,17,159,17159,410,186,59843977,59823386,410,186,59843977,59823386,16233,7513,937307949,932370871,100,100,100,100,2.53,2.48,6.38,6.42
-62420,17,023,17023,4231,1978,179279603,178889659,4759,2219,319179518,318695616,16335,7772,1307473409,1298666494,88.91,89.14,56.17,56.13,25.9,25.45,13.71,13.77
-62420,17,029,17029,68,27,17380407,17380407,4759,2219,319179518,318695616,53873,23425,1321091177,1316466333,1.43,1.22,5.45,5.45,0.13,0.12,1.32,1.32
-62420,17,035,17035,447,210,117169883,117075925,4759,2219,319179518,318695616,11048,4874,898734407,896198602,9.39,9.46,36.71,36.74,4.05,4.31,13.04,13.06
-62420,17,079,17079,13,4,5349625,5349625,4759,2219,319179518,318695616,9698,4345,1290122954,1280774187,0.27,0.18,1.68,1.68,0.13,0.09,0.41,0.42
-62421,17,033,17033,10,7,10005602,10005602,778,329,137178261,137178261,19817,8661,1154664937,1148994475,1.29,2.13,7.29,7.29,0.05,0.08,0.87,0.87
-62421,17,159,17159,768,322,127172659,127172659,778,329,137178261,137178261,16233,7513,937307949,932370871,98.71,97.87,92.71,92.71,4.73,4.29,13.57,13.64
-62422,17,051,17051,132,73,32199475,32199475,1156,515,103416593,103416593,22140,9302,1878629860,1855679809,11.42,14.17,31.14,31.14,0.6,0.78,1.71,1.74
-62422,17,173,17173,1024,442,71217118,71217118,1156,515,103416593,103416593,22363,10396,1989291034,1964565410,88.58,85.83,68.86,68.86,4.58,4.25,3.58,3.63
-62423,17,023,17023,615,278,40958837,40935679,724,324,60049450,60006845,16335,7772,1307473409,1298666494,84.94,85.8,68.21,68.22,3.76,3.58,3.13,3.15
-62423,17,045,17045,109,46,19090613,19071166,724,324,60049450,60006845,18576,8803,1616142633,1614531997,15.06,14.2,31.79,31.78,0.59,0.52,1.18,1.18
-62424,17,049,17049,2025,740,207960705,207867181,2092,768,223514365,223420841,34242,14570,1243211135,1240027936,96.8,96.35,93.04,93.04,5.91,5.08,16.73,16.76
-62424,17,079,17079,67,28,15553660,15553660,2092,768,223514365,223420841,9698,4345,1290122954,1280774187,3.2,3.65,6.96,6.96,0.69,0.64,1.21,1.21
-62425,17,079,17079,39,11,8973903,8950535,649,275,108443930,108295456,9698,4345,1290122954,1280774187,6.01,4,8.28,8.26,0.4,0.25,0.7,0.7
-62425,17,159,17159,610,264,99470027,99344921,649,275,108443930,108295456,16233,7513,937307949,932370871,93.99,96,91.72,91.74,3.76,3.51,10.61,10.66
-62426,17,025,17025,299,154,63971118,63756252,1085,512,122972757,122687704,13815,6404,1216237067,1212932408,27.56,30.08,52.02,51.97,2.16,2.4,5.26,5.26
-62426,17,049,17049,615,295,43966372,43917702,1085,512,122972757,122687704,34242,14570,1243211135,1240027936,56.68,57.62,35.75,35.8,1.8,2.02,3.54,3.54
-62426,17,051,17051,171,63,15035267,15013750,1085,512,122972757,122687704,22140,9302,1878629860,1855679809,15.76,12.3,12.23,12.24,0.77,0.68,0.8,0.81
-62427,17,033,17033,1402,623,170488710,169505326,1702,771,230975446,229992062,19817,8661,1154664937,1148994475,82.37,80.8,73.81,73.7,7.07,7.19,14.77,14.75
-62427,17,101,17101,300,148,60486736,60486736,1702,771,230975446,229992062,16833,6936,969014648,963936870,17.63,19.2,26.19,26.3,1.78,2.13,6.24,6.27
-62428,17,035,17035,3104,1467,248908939,248608135,3104,1467,248908939,248608135,11048,4874,898734407,896198602,100,100,100,100,28.1,30.1,27.7,27.74
-62431,17,051,17051,435,190,53658322,53658322,1232,549,142541108,142505646,22140,9302,1878629860,1855679809,35.31,34.61,37.64,37.65,1.96,2.04,2.86,2.89
-62431,17,173,17173,797,359,88882786,88847324,1232,549,142541108,142505646,22363,10396,1989291034,1964565410,64.69,65.39,62.36,62.35,3.56,3.45,4.47,4.52
-62432,17,079,17079,571,264,103053524,103053524,571,264,103053524,103053524,9698,4345,1290122954,1280774187,100,100,100,100,5.89,6.08,7.99,8.05
-62433,17,033,17033,998,470,84305304,83327219,998,470,84305304,83327219,19817,8661,1154664937,1148994475,100,100,100,100,5.04,5.43,7.3,7.25
-62434,17,025,17025,229,115,42163160,42114550,330,160,69114478,69003184,13815,6404,1216237067,1212932408,69.39,71.88,61,61.03,1.66,1.8,3.47,3.47
-62434,17,079,17079,101,45,26951318,26888634,330,160,69114478,69003184,9698,4345,1290122954,1280774187,30.61,28.13,39,38.97,1.04,1.04,2.09,2.1
-62436,17,035,17035,437,189,34294924,34294924,562,249,57828067,57828067,11048,4874,898734407,896198602,77.76,75.9,59.3,59.3,3.96,3.88,3.82,3.83
-62436,17,079,17079,125,60,23533143,23533143,562,249,57828067,57828067,9698,4345,1290122954,1280774187,22.24,24.1,40.7,40.7,1.29,1.38,1.82,1.84
-62438,17,173,17173,433,180,68505579,68505579,433,180,68505579,68505579,22363,10396,1989291034,1964565410,100,100,100,100,1.94,1.73,3.44,3.49
-62439,17,101,17101,7536,3814,368619784,365041518,7536,3814,368619784,365041518,16833,6936,969014648,963936870,100,100,100,100,44.77,54.99,38.04,37.87
-62440,17,029,17029,1082,471,76674932,76674932,1316,573,99999598,99999598,53873,23425,1321091177,1316466333,82.22,82.2,76.68,76.68,2.01,2.01,5.8,5.82
-62440,17,035,17035,234,102,23324666,23324666,1316,573,99999598,99999598,11048,4874,898734407,896198602,17.78,17.8,23.32,23.32,2.12,2.09,2.6,2.6
-62441,17,023,17023,7203,3402,436415298,431331769,7395,3493,453877785,448794256,16335,7772,1307473409,1298666494,97.4,97.39,96.15,96.11,44.1,43.77,33.38,33.21
-62441,17,045,17045,192,91,17462487,17462487,7395,3493,453877785,448794256,18576,8803,1616142633,1614531997,2.6,2.61,3.85,3.89,1.03,1.03,1.08,1.08
-62442,17,023,17023,2391,1195,357993291,356769932,2421,1210,366304091,365080732,16335,7772,1307473409,1298666494,98.76,98.76,97.73,97.72,14.64,15.38,27.38,27.47
-62442,17,033,17033,30,15,8310800,8310800,2421,1210,366304091,365080732,19817,8661,1154664937,1148994475,1.24,1.24,2.27,2.28,0.15,0.17,0.72,0.72
-62443,17,025,17025,167,66,23103589,23103589,1623,642,190366808,190205988,13815,6404,1216237067,1212932408,10.29,10.28,12.14,12.15,1.21,1.03,1.9,1.9
-62443,17,049,17049,1456,576,167263219,167102399,1623,642,190366808,190205988,34242,14570,1243211135,1240027936,89.71,89.72,87.86,87.85,4.25,3.95,13.45,13.48
-62444,17,173,17173,387,174,75304417,75304417,387,174,75304417,75304417,22363,10396,1989291034,1964565410,100,100,100,100,1.73,1.67,3.79,3.83
-62445,17,035,17035,416,166,52661940,52638156,907,383,121883903,121860119,11048,4874,898734407,896198602,45.87,43.34,43.21,43.2,3.77,3.41,5.86,5.87
-62445,17,049,17049,231,115,13570137,13570137,907,383,121883903,121860119,34242,14570,1243211135,1240027936,25.47,30.03,11.13,11.14,0.67,0.79,1.09,1.09
-62445,17,079,17079,260,102,55651826,55651826,907,383,121883903,121860119,9698,4345,1290122954,1280774187,28.67,26.63,45.66,45.67,2.68,2.35,4.31,4.35
-62446,17,191,17191,414,196,155478674,155207498,414,196,155478674,155207498,16760,7975,1853100815,1848769796,100,100,100,100,2.47,2.46,8.39,8.4
-62447,17,029,17029,9,9,516945,430742,3404,1579,158595119,154874910,53873,23425,1321091177,1316466333,0.26,0.57,0.33,0.28,0.02,0.04,0.04,0.03
-62447,17,035,17035,2801,1233,109033541,106981661,3404,1579,158595119,154874910,11048,4874,898734407,896198602,82.29,78.09,68.75,69.08,25.35,25.3,12.13,11.94
-62447,17,173,17173,594,337,49044633,47462507,3404,1579,158595119,154874910,22363,10396,1989291034,1964565410,17.45,21.34,30.92,30.65,2.66,3.24,2.47,2.42
-62448,17,025,17025,50,22,3822081,3793382,5834,2648,537211694,528357652,13815,6404,1216237067,1212932408,0.86,0.83,0.71,0.72,0.36,0.34,0.31,0.31
-62448,17,079,17079,5679,2586,521395349,512570006,5834,2648,537211694,528357652,9698,4345,1290122954,1280774187,97.34,97.66,97.06,97.01,58.56,59.52,40.41,40.02
-62448,17,159,17159,105,40,11994264,11994264,5834,2648,537211694,528357652,16233,7513,937307949,932370871,1.8,1.51,2.23,2.27,0.65,0.53,1.28,1.29
-62449,17,023,17023,12,6,3098774,3098774,3175,1388,316763242,316719181,16335,7772,1307473409,1298666494,0.38,0.43,0.98,0.98,0.07,0.08,0.24,0.24
-62449,17,033,17033,3017,1307,256792476,256756020,3175,1388,316763242,316719181,19817,8661,1154664937,1148994475,95.02,94.16,81.07,81.07,15.22,15.09,22.24,22.35
-62449,17,079,17079,146,75,56871992,56864387,3175,1388,316763242,316719181,9698,4345,1290122954,1280774187,4.6,5.4,17.95,17.95,1.51,1.73,4.41,4.44
-62450,17,159,17159,12211,5744,396501172,391912770,12218,5747,398814061,394225659,16233,7513,937307949,932370871,99.94,99.95,99.42,99.41,75.22,76.45,42.3,42.03
-62450,17,191,17191,7,3,2312889,2312889,12218,5747,398814061,394225659,16760,7975,1853100815,1848769796,0.06,0.05,0.58,0.59,0.04,0.04,0.12,0.13
-62451,17,033,17033,2156,1027,164059657,161484978,2156,1027,164059657,161484978,19817,8661,1154664937,1148994475,100,100,100,100,10.88,11.86,14.21,14.05
-62452,17,159,17159,400,183,52275352,52219397,400,183,52275352,52219397,16233,7513,937307949,932370871,100,100,100,100,2.46,2.44,5.58,5.6
-62454,17,033,17033,11467,4905,319603043,318655627,11467,4905,319603043,318655627,19817,8661,1154664937,1148994475,100,100,100,100,57.86,56.63,27.68,27.73
-62458,17,049,17049,73,28,19007161,19007161,2228,956,148099051,147706702,34242,14570,1243211135,1240027936,3.28,2.93,12.83,12.87,0.21,0.19,1.53,1.53
-62458,17,051,17051,2155,928,129091890,128699541,2228,956,148099051,147706702,22140,9302,1878629860,1855679809,96.72,97.07,87.17,87.13,9.73,9.98,6.87,6.94
-62459,17,079,17079,243,123,2827359,2827359,243,123,2827359,2827359,9698,4345,1290122954,1280774187,100,100,100,100,2.51,2.83,0.22,0.22
-62460,17,101,17101,1206,556,118852819,117630143,1231,564,120915673,119692997,16833,6936,969014648,963936870,97.97,98.58,98.29,98.28,7.16,8.02,12.27,12.2
-62460,17,185,17185,25,8,2062854,2062854,1231,564,120915673,119692997,11947,5585,589236603,578218989,2.03,1.42,1.71,1.72,0.21,0.14,0.35,0.36
-62461,17,049,17049,766,321,79617846,79522198,854,359,103749674,103654026,34242,14570,1243211135,1240027936,89.7,89.42,76.74,76.72,2.24,2.2,6.4,6.41
-62461,17,173,17173,88,38,24131828,24131828,854,359,103749674,103654026,22363,10396,1989291034,1964565410,10.3,10.58,23.26,23.28,0.39,0.37,1.21,1.23
-62462,17,035,17035,425,145,53672029,53672029,1149,408,104305000,104285321,11048,4874,898734407,896198602,36.99,35.54,51.46,51.47,3.85,2.97,5.97,5.99
-62462,17,173,17173,724,263,50632971,50613292,1149,408,104305000,104285321,22363,10396,1989291034,1964565410,63.01,64.46,48.54,48.53,3.24,2.53,2.55,2.58
-62463,17,173,17173,1294,555,120637036,120637036,1294,555,120637036,120637036,22363,10396,1989291034,1964565410,100,100,100,100,5.79,5.34,6.06,6.14
-62465,17,173,17173,858,377,96122400,96122400,858,377,96122400,96122400,22363,10396,1989291034,1964565410,100,100,100,100,3.84,3.63,4.83,4.89
-62466,17,033,17033,87,36,32228263,32228263,4848,1130,368124850,367913868,19817,8661,1154664937,1148994475,1.79,3.19,8.75,8.76,0.44,0.42,2.79,2.8
-62466,17,101,17101,4727,1078,327329641,327118659,4848,1130,368124850,367913868,16833,6936,969014648,963936870,97.5,95.4,88.92,88.91,28.08,15.54,33.78,33.94
-62466,17,159,17159,34,16,8566946,8566946,4848,1130,368124850,367913868,16233,7513,937307949,932370871,0.7,1.42,2.33,2.33,0.21,0.21,0.91,0.92
-62467,17,035,17035,263,82,20137498,20137498,3741,1335,152594169,152594169,11048,4874,898734407,896198602,7.03,6.14,13.2,13.2,2.38,1.68,2.24,2.25
-62467,17,049,17049,3388,1221,116702075,116702075,3741,1335,152594169,152594169,34242,14570,1243211135,1240027936,90.56,91.46,76.48,76.48,9.89,8.38,9.39,9.41
-62467,17,079,17079,90,32,15754596,15754596,3741,1335,152594169,152594169,9698,4345,1290122954,1280774187,2.41,2.4,10.32,10.32,0.93,0.74,1.22,1.23
-62468,17,035,17035,2564,1132,183371406,183364704,2564,1132,183371406,183364704,11048,4874,898734407,896198602,100,100,100,100,23.21,23.23,20.4,20.46
-62469,17,029,17029,78,29,6556535,6556535,419,171,60571213,60512536,53873,23425,1321091177,1316466333,18.62,16.96,10.82,10.84,0.14,0.12,0.5,0.5
-62469,17,035,17035,341,142,54014678,53956001,419,171,60571213,60512536,11048,4874,898734407,896198602,81.38,83.04,89.18,89.16,3.09,2.91,6.01,6.02
-62471,17,051,17051,10233,4027,358477109,354575608,10233,4027,358477109,354575608,22140,9302,1878629860,1855679809,100,100,100,100,46.22,43.29,19.08,19.11
-62473,17,049,17049,1422,533,57262643,57242549,1422,533,57262643,57242549,34242,14570,1243211135,1240027936,100,100,100,100,4.15,3.66,4.61,4.62
-62474,17,023,17023,726,344,59225155,59225155,848,391,93926064,93891687,16335,7772,1307473409,1298666494,85.61,87.98,63.06,63.08,4.44,4.43,4.53,4.56
-62474,17,029,17029,122,47,34700909,34666532,848,391,93926064,93891687,53873,23425,1321091177,1316466333,14.39,12.02,36.94,36.92,0.23,0.2,2.63,2.63
-62475,17,079,17079,387,160,78472588,78326059,387,160,78472588,78326059,9698,4345,1290122954,1280774187,100,100,100,100,3.99,3.68,6.08,6.12
-62476,17,047,17047,1522,757,141489419,141261148,1734,853,195015869,194787598,6721,3187,576842947,576054180,87.77,88.75,72.55,72.52,22.65,23.75,24.53,24.52
-62476,17,185,17185,212,96,53526450,53526450,1734,853,195015869,194787598,11947,5585,589236603,578218989,12.23,11.25,27.45,27.48,1.77,1.72,9.08,9.26
-62477,17,023,17023,946,460,165861366,163860360,946,460,165861366,163860360,16335,7772,1307473409,1298666494,100,100,100,100,5.79,5.92,12.69,12.62
-62478,17,023,17023,145,75,40675215,40621537,398,190,76559352,76434985,16335,7772,1307473409,1298666494,36.43,39.47,53.13,53.15,0.89,0.97,3.11,3.13
-62478,17,033,17033,253,115,35884137,35813448,398,190,76559352,76434985,19817,8661,1154664937,1148994475,63.57,60.53,46.87,46.85,1.28,1.33,3.11,3.12
-62479,17,079,17079,820,342,136955400,136911583,820,342,136955400,136911583,9698,4345,1290122954,1280774187,100,100,100,100,8.46,7.87,10.62,10.69
-62480,17,079,17079,787,341,147622700,147383279,787,341,147622700,147383279,9698,4345,1290122954,1280774187,100,100,100,100,8.12,7.85,11.44,11.51
-62481,17,035,17035,16,6,2144903,2144903,386,178,93300874,93300874,11048,4874,898734407,896198602,4.15,3.37,2.3,2.3,0.14,0.12,0.24,0.24
-62481,17,079,17079,370,172,91155971,91155971,386,178,93300874,93300874,9698,4345,1290122954,1280774187,95.85,96.63,97.7,97.7,3.82,3.96,7.07,7.12
-62501,17,115,17115,2661,1119,206003353,205344934,2661,1119,206003353,205344934,110768,50475,1517383009,1503976676,100,100,100,100,2.4,2.22,13.58,13.65
-62510,17,021,17021,1437,690,105513694,105513694,1669,803,198349828,198323710,34800,15563,1853500290,1837278793,86.1,85.93,53.2,53.2,4.13,4.43,5.69,5.74
-62510,17,173,17173,232,113,92836134,92810016,1669,803,198349828,198323710,22363,10396,1989291034,1964565410,13.9,14.07,46.8,46.8,1.04,1.09,4.67,4.72
-62512,17,039,17039,31,13,5651181,5651181,500,210,120531218,120520203,16561,7521,1049163396,1029554715,6.2,6.19,4.69,4.69,0.19,0.17,0.54,0.55
-62512,17,107,17107,469,197,114880037,114869022,500,210,120531218,120520203,30305,12107,1603011686,1600764560,93.8,93.81,95.31,95.31,1.55,1.63,7.17,7.18
-62513,17,021,17021,240,97,89971854,89971854,1766,741,180252008,180252008,34800,15563,1853500290,1837278793,13.59,13.09,49.91,49.91,0.69,0.62,4.85,4.9
-62513,17,115,17115,1526,644,90280154,90280154,1766,741,180252008,180252008,110768,50475,1517383009,1503976676,86.41,86.91,50.09,50.09,1.38,1.28,5.95,6
-62514,17,115,17115,252,113,2889730,2889730,252,113,2889730,2889730,110768,50475,1517383009,1503976676,100,100,100,100,0.23,0.22,0.19,0.19
-62515,17,167,17167,961,412,164513058,164494789,961,412,164513058,164494789,197465,89901,2271469907,2248892510,100,100,100,100,0.49,0.46,7.24,7.31
-62517,17,021,17021,226,101,350778,319625,226,101,350778,319625,34800,15563,1853500290,1837278793,100,100,100,100,0.65,0.65,0.02,0.02
-62518,17,107,17107,457,203,65982023,65982023,457,203,65982023,65982023,30305,12107,1603011686,1600764560,100,100,100,100,1.51,1.68,4.12,4.12
-62519,17,107,17107,94,44,3896441,3896441,94,44,3896441,3896441,30305,12107,1603011686,1600764560,100,100,100,100,0.31,0.36,0.24,0.24
-62520,17,167,17167,1529,640,56622374,56622374,1529,640,56622374,56622374,197465,89901,2271469907,2248892510,100,100,100,100,0.77,0.71,2.49,2.52
-62521,17,115,17115,35851,16791,183578690,173319594,35851,16791,183578690,173319594,110768,50475,1517383009,1503976676,100,100,100,100,32.37,33.27,12.1,11.52
-62522,17,115,17115,16630,7395,66365810,65714810,16630,7395,66365810,65714810,110768,50475,1517383009,1503976676,100,100,100,100,15.01,14.65,4.37,4.37
-62523,17,115,17115,1237,404,1241689,1241689,1237,404,1241689,1241689,110768,50475,1517383009,1503976676,100,100,100,100,1.12,0.8,0.08,0.08
-62526,17,115,17115,34075,16415,160293020,159627935,34075,16415,160293020,159627935,110768,50475,1517383009,1503976676,100,100,100,100,30.76,32.52,10.56,10.61
-62530,17,167,17167,1532,685,73364288,73275327,1532,685,73364288,73275327,197465,89901,2271469907,2248892510,100,100,100,100,0.78,0.76,3.23,3.26
-62531,17,021,17021,1792,821,156903147,156330123,1792,821,156903147,156330123,34800,15563,1853500290,1837278793,100,100,100,100,5.15,5.28,8.47,8.51
-62532,17,115,17115,105,45,5382547,5382547,105,45,5382547,5382547,110768,50475,1517383009,1503976676,100,100,100,100,0.09,0.09,0.35,0.36
-62533,17,135,17135,973,460,125571256,125412710,973,460,125571256,125412710,30104,13080,1838052567,1822539599,100,100,100,100,3.23,3.52,6.83,6.88
-62534,17,139,17139,15,9,371742,371742,1130,571,158854865,153290568,14846,6260,892191423,870088946,1.33,1.58,0.23,0.24,0.1,0.14,0.04,0.04
-62534,17,173,17173,1115,562,158483123,152918826,1130,571,158854865,153290568,22363,10396,1989291034,1964565410,98.67,98.42,99.77,99.76,4.99,5.41,7.97,7.78
-62535,17,115,17115,3534,1370,9600818,9600818,3534,1370,9600818,9600818,110768,50475,1517383009,1503976676,100,100,100,100,3.19,2.71,0.63,0.64
-62536,17,167,17167,912,338,18062402,17900735,912,338,18062402,17900735,197465,89901,2271469907,2248892510,100,100,100,100,0.46,0.38,0.8,0.8
-62537,17,115,17115,92,37,2350330,2350330,92,37,2350330,2350330,110768,50475,1517383009,1503976676,100,100,100,100,0.08,0.07,0.15,0.16
-62538,17,021,17021,96,48,17450273,17450273,378,186,87995962,87995962,34800,15563,1853500290,1837278793,25.4,25.81,19.83,19.83,0.28,0.31,0.94,0.95
-62538,17,135,17135,282,138,70545689,70545689,378,186,87995962,87995962,30104,13080,1838052567,1822539599,74.6,74.19,80.17,80.17,0.94,1.06,3.84,3.87
-62539,17,115,17115,57,24,25863689,25863689,1358,574,120566449,120566449,110768,50475,1517383009,1503976676,4.2,4.18,21.45,21.45,0.05,0.05,1.7,1.72
-62539,17,167,17167,1301,550,94702760,94702760,1358,574,120566449,120566449,197465,89901,2271469907,2248892510,95.8,95.82,78.55,78.55,0.66,0.61,4.17,4.21
-62540,17,021,17021,1492,686,5837513,5292372,1492,686,5837513,5292372,34800,15563,1853500290,1837278793,100,100,100,100,4.29,4.41,0.31,0.29
-62541,17,107,17107,57,29,1063302,1063302,57,29,1063302,1063302,30305,12107,1603011686,1600764560,100,100,100,100,0.19,0.24,0.07,0.07
-62543,17,107,17107,504,225,35813384,35813384,540,243,53695109,53695109,30305,12107,1603011686,1600764560,93.33,92.59,66.7,66.7,1.66,1.86,2.23,2.24
-62543,17,115,17115,36,18,17881725,17881725,540,243,53695109,53695109,110768,50475,1517383009,1503976676,6.67,7.41,33.3,33.3,0.03,0.04,1.18,1.19
-62544,17,115,17115,1776,768,177029131,177029131,1776,768,177029131,177029131,110768,50475,1517383009,1503976676,100,100,100,100,1.6,1.52,11.67,11.77
-62545,17,021,17021,291,132,27685237,27621610,1246,509,72428647,71869783,34800,15563,1853500290,1837278793,23.35,25.93,38.22,38.43,0.84,0.85,1.49,1.5
-62545,17,167,17167,955,377,44743410,44248173,1246,509,72428647,71869783,197465,89901,2271469907,2248892510,76.65,74.07,61.78,61.57,0.48,0.42,1.97,1.97
-62546,17,021,17021,1567,681,268626029,268586153,1630,712,296542592,296502716,34800,15563,1853500290,1837278793,96.13,95.65,90.59,90.58,4.5,4.38,14.49,14.62
-62546,17,135,17135,63,31,27916563,27916563,1630,712,296542592,296502716,30104,13080,1838052567,1822539599,3.87,4.35,9.41,9.42,0.21,0.24,1.52,1.53
-62547,17,021,17021,783,344,107166318,107157301,804,354,108469255,108460238,34800,15563,1853500290,1837278793,97.39,97.18,98.8,98.8,2.25,2.21,5.78,5.83
-62547,17,115,17115,21,10,1302937,1302937,804,354,108469255,108460238,110768,50475,1517383009,1503976676,2.61,2.82,1.2,1.2,0.02,0.02,0.09,0.09
-62548,17,107,17107,2256,1033,224853272,224787986,2258,1035,229931423,229866137,30305,12107,1603011686,1600764560,99.91,99.81,97.79,97.79,7.44,8.53,14.03,14.04
-62548,17,167,17167,2,2,5078151,5078151,2258,1035,229931423,229866137,197465,89901,2271469907,2248892510,0.09,0.19,2.21,2.21,0,0,0.22,0.23
-62549,17,115,17115,6269,2503,20553865,20522229,6269,2503,20553865,20522229,110768,50475,1517383009,1503976676,100,100,100,100,5.66,4.96,1.35,1.36
-62550,17,021,17021,398,155,74803488,74758026,2869,1238,229731686,229679958,34800,15563,1853500290,1837278793,13.87,12.52,32.56,32.55,1.14,1,4.04,4.07
-62550,17,115,17115,45,21,13710646,13710646,2869,1238,229731686,229679958,110768,50475,1517383009,1503976676,1.57,1.7,5.97,5.97,0.04,0.04,0.9,0.91
-62550,17,173,17173,2426,1062,141217552,141211286,2869,1238,229731686,229679958,22363,10396,1989291034,1964565410,84.56,85.78,61.47,61.48,10.85,10.22,7.1,7.19
-62551,17,115,17115,837,366,69693698,69542898,837,366,69693698,69542898,110768,50475,1517383009,1503976676,100,100,100,100,0.76,0.73,4.59,4.62
-62553,17,135,17135,58,27,17854123,17854123,437,191,92589272,92589272,30104,13080,1838052567,1822539599,13.27,14.14,19.28,19.28,0.19,0.21,0.97,0.98
-62553,17,173,17173,379,164,74735149,74735149,437,191,92589272,92589272,22363,10396,1989291034,1964565410,86.73,85.86,80.72,80.72,1.69,1.58,3.76,3.8
-62554,17,115,17115,1563,651,48697552,47739348,1563,651,48697552,47739348,110768,50475,1517383009,1503976676,100,100,100,100,1.41,1.29,3.21,3.17
-62555,17,021,17021,540,226,92764982,91879097,540,226,92764982,91879097,34800,15563,1853500290,1837278793,100,100,100,100,1.55,1.45,5,5
-62556,17,021,17021,422,186,55597382,55577407,422,186,55597382,55577407,34800,15563,1853500290,1837278793,100,100,100,100,1.21,1.2,3,3.02
-62557,17,021,17021,6897,3324,227191983,226621774,7607,3878,324053258,322751411,34800,15563,1853500290,1837278793,90.67,85.71,70.11,70.22,19.82,21.36,12.26,12.33
-62557,17,135,17135,58,25,20546134,20546134,7607,3878,324053258,322751411,30104,13080,1838052567,1822539599,0.76,0.64,6.34,6.37,0.19,0.19,1.12,1.13
-62557,17,173,17173,652,529,76315141,75583503,7607,3878,324053258,322751411,22363,10396,1989291034,1964565410,8.57,13.64,23.55,23.42,2.92,5.09,3.84,3.85
-62558,17,021,17021,155,66,102135388,93858589,3590,1504,247580427,239226530,34800,15563,1853500290,1837278793,4.32,4.39,41.25,39.23,0.45,0.42,5.51,5.11
-62558,17,135,17135,28,12,20178189,20178189,3590,1504,247580427,239226530,30104,13080,1838052567,1822539599,0.78,0.8,8.15,8.43,0.09,0.09,1.1,1.11
-62558,17,167,17167,3407,1426,125266850,125189752,3590,1504,247580427,239226530,197465,89901,2271469907,2248892510,94.9,94.81,50.6,52.33,1.73,1.59,5.51,5.57
-62560,17,117,17117,30,15,16140730,16140730,1508,666,164925613,164689659,47765,21584,2247204577,2234917323,1.99,2.25,9.79,9.8,0.06,0.07,0.72,0.72
-62560,17,135,17135,1478,651,148784883,148548929,1508,666,164925613,164689659,30104,13080,1838052567,1822539599,98.01,97.75,90.21,90.2,4.91,4.98,8.09,8.15
-62561,17,167,17167,5315,2145,69590313,68811611,5315,2145,69590313,68811611,197465,89901,2271469907,2248892510,100,100,100,100,2.69,2.39,3.06,3.06
-62563,17,021,17021,56,21,4402982,4402683,5686,2210,150395633,149143546,34800,15563,1853500290,1837278793,0.98,0.95,2.93,2.95,0.16,0.13,0.24,0.24
-62563,17,167,17167,5630,2189,145992651,144740863,5686,2210,150395633,149143546,197465,89901,2271469907,2248892510,99.02,99.05,97.07,97.05,2.85,2.43,6.43,6.44
-62565,17,173,17173,7538,3578,324183625,315180748,7538,3578,324183625,315180748,22363,10396,1989291034,1964565410,100,100,100,100,33.71,34.42,16.3,16.04
-62567,17,021,17021,1154,495,99847287,99847287,1154,495,99847287,99847287,34800,15563,1853500290,1837278793,100,100,100,100,3.32,3.18,5.39,5.43
-62568,17,021,17021,16355,7113,331192098,326083921,16355,7113,331192098,326083921,34800,15563,1853500290,1837278793,100,100,100,100,47,45.7,17.87,17.75
-62570,17,021,17021,512,229,732117,679264,512,229,732117,679264,34800,15563,1853500290,1837278793,100,100,100,100,1.47,1.47,0.04,0.04
-62571,17,173,17173,1532,627,176987820,176974967,1532,627,176987820,176974967,22363,10396,1989291034,1964565410,100,100,100,100,6.85,6.03,8.9,9.01
-62572,17,117,17117,250,126,58705050,58705050,666,309,107886367,107886367,47765,21584,2247204577,2234917323,37.54,40.78,54.41,54.41,0.52,0.58,2.61,2.63
-62572,17,135,17135,416,183,49181317,49181317,666,309,107886367,107886367,30104,13080,1838052567,1822539599,62.46,59.22,45.59,45.59,1.38,1.4,2.68,2.7
-62573,17,115,17115,1513,647,114735293,114735293,1513,647,114735293,114735293,110768,50475,1517383009,1503976676,100,100,100,100,1.37,1.28,7.56,7.63
-62601,17,137,17137,434,206,116028617,116026425,434,206,116028617,116026425,35547,15515,1482240685,1473161231,100,100,100,100,1.22,1.33,7.83,7.88
-62610,17,171,17171,199,93,881097,881097,199,93,881097,881097,5355,2459,654673954,649861251,100,100,100,100,3.72,3.78,0.13,0.14
-62611,17,017,17017,832,372,129221336,125359986,1067,469,195128787,191267437,13642,5836,993946583,973365036,77.98,79.32,66.22,65.54,6.1,6.37,13,12.88
-62611,17,137,17137,235,97,65907451,65907451,1067,469,195128787,191267437,35547,15515,1482240685,1473161231,22.02,20.68,33.78,34.46,0.66,0.63,4.45,4.47
-62612,17,017,17017,1567,707,132854456,132854456,1915,865,233085245,233048522,13642,5836,993946583,973365036,81.83,81.73,57,57.01,11.49,12.11,13.37,13.65
-62612,17,137,17137,348,158,100230789,100194066,1915,865,233085245,233048522,35547,15515,1482240685,1473161231,18.17,18.27,43,42.99,0.98,1.02,6.76,6.8
-62613,17,107,17107,19,9,10623830,10623830,3872,1609,169642711,169335530,30305,12107,1603011686,1600764560,0.49,0.56,6.26,6.27,0.06,0.07,0.66,0.66
-62613,17,129,17129,3813,1585,147272549,146965368,3872,1609,169642711,169335530,12705,5654,817029910,814388302,98.48,98.51,86.81,86.79,30.01,28.03,18.03,18.05
-62613,17,167,17167,40,15,11746332,11746332,3872,1609,169642711,169335530,197465,89901,2271469907,2248892510,1.03,0.93,6.92,6.94,0.02,0.02,0.52,0.52
-62615,17,167,17167,5748,2262,131639437,131639437,5748,2262,131639437,131639437,197465,89901,2271469907,2248892510,100,100,100,100,2.91,2.52,5.8,5.85
-62617,17,125,17125,762,472,176917504,149584324,762,472,176917504,149584324,14666,7077,1459364382,1396619128,100,100,100,100,5.2,6.67,12.12,10.71
-62618,17,017,17017,7955,3166,227166259,222138323,7955,3166,227166259,222138323,13642,5836,993946583,973365036,100,100,100,100,58.31,54.25,22.85,22.82
-62621,17,137,17137,21,11,5227123,5227123,1171,532,136104908,135739395,35547,15515,1482240685,1473161231,1.79,2.07,3.84,3.85,0.06,0.07,0.35,0.35
-62621,17,171,17171,1150,521,130877785,130512272,1171,532,136104908,135739395,5355,2459,654673954,649861251,98.21,97.93,96.16,96.15,21.48,21.19,19.99,20.08
-62622,17,017,17017,49,21,4855207,4855207,49,21,4855207,4855207,13642,5836,993946583,973365036,100,100,100,100,0.36,0.36,0.49,0.5
-62624,17,169,17169,546,300,92210972,91127516,546,300,92210972,91127516,7544,3459,1143042712,1132531106,100,100,100,100,7.24,8.67,8.07,8.05
-62625,17,167,17167,855,349,58914449,58513289,855,349,58914449,58513289,197465,89901,2271469907,2248892510,100,100,100,100,0.43,0.39,2.59,2.6
-62626,17,117,17117,8354,3716,445996919,444472934,8354,3716,445996919,444472934,47765,21584,2247204577,2234917323,100,100,100,100,17.49,17.22,19.85,19.89
-62627,17,017,17017,746,383,133636749,132880741,992,523,237160632,231524499,13642,5836,993946583,973365036,75.2,73.23,56.35,57.39,5.47,6.56,13.45,13.65
-62627,17,125,17125,246,140,103523883,98643758,992,523,237160632,231524499,14666,7077,1459364382,1396619128,24.8,26.77,43.65,42.61,1.68,1.98,7.09,7.06
-62628,17,137,17137,853,372,84597857,84597857,896,390,97570906,97570906,35547,15515,1482240685,1473161231,95.2,95.38,86.7,86.7,2.4,2.4,5.71,5.74
-62628,17,171,17171,43,18,12973049,12973049,896,390,97570906,97570906,5355,2459,654673954,649861251,4.8,4.62,13.3,13.3,0.8,0.73,1.98,2
-62629,17,167,17167,12949,5062,102010255,98373829,12949,5062,102010255,98373829,197465,89901,2271469907,2248892510,100,100,100,100,6.56,5.63,4.49,4.37
-62630,17,061,17061,6,3,1319689,1319689,532,251,105744220,105475194,13886,6389,1414839199,1406413796,1.13,1.2,1.25,1.25,0.04,0.05,0.09,0.09
-62630,17,117,17117,526,248,104424531,104155505,532,251,105744220,105475194,47765,21584,2247204577,2234917323,98.87,98.8,98.75,98.75,1.1,1.15,4.65,4.66
-62631,17,137,17137,262,118,36063400,35978865,262,118,36063400,35978865,35547,15515,1482240685,1473161231,100,100,100,100,0.74,0.76,2.43,2.44
-62633,17,125,17125,647,317,178747176,178458628,647,317,178747176,178458628,14666,7077,1459364382,1396619128,100,100,100,100,4.41,4.48,12.25,12.78
-62634,17,107,17107,821,390,145580672,145521350,821,390,145580672,145521350,30305,12107,1603011686,1600764560,100,100,100,100,2.71,3.22,9.08,9.09
-62635,17,107,17107,724,325,94117715,94117715,738,331,101445939,101445939,30305,12107,1603011686,1600764560,98.1,98.19,92.78,92.78,2.39,2.68,5.87,5.88
-62635,17,179,17179,14,6,7328224,7328224,738,331,101445939,101445939,135394,57516,1704046613,1680835450,1.9,1.81,7.22,7.22,0.01,0.01,0.43,0.44
-62638,17,117,17117,16,9,6240572,6240572,1337,611,175520373,175083552,47765,21584,2247204577,2234917323,1.2,1.47,3.56,3.56,0.03,0.04,0.28,0.28
-62638,17,137,17137,1321,602,169279801,168842980,1337,611,175520373,175083552,35547,15515,1482240685,1473161231,98.8,98.53,96.44,96.44,3.72,3.88,11.42,11.46
-62639,17,169,17169,316,146,90784024,88085814,316,146,90784024,88085814,7544,3459,1143042712,1132531106,100,100,100,100,4.19,4.22,7.94,7.78
-62640,17,117,17117,3722,1772,188707678,186266834,3756,1786,200122034,197681190,47765,21584,2247204577,2234917323,99.09,99.22,94.3,94.23,7.79,8.21,8.4,8.33
-62640,17,135,17135,34,14,11414356,11414356,3756,1786,200122034,197681190,30104,13080,1838052567,1822539599,0.91,0.78,5.7,5.77,0.11,0.11,0.62,0.63
-62642,17,129,17129,1440,696,194055360,193369150,1440,696,194055360,193369150,12705,5654,817029910,814388302,100,100,100,100,11.33,12.31,23.75,23.74
-62643,17,107,17107,526,234,88457598,88457598,526,234,88457598,88457598,30305,12107,1603011686,1600764560,100,100,100,100,1.74,1.93,5.52,5.53
-62644,17,057,17057,136,70,83892725,82335007,5385,2679,287905824,267283836,37069,16195,2285854575,2241880276,2.53,2.61,29.14,30.8,0.37,0.43,3.67,3.67
-62644,17,125,17125,5249,2609,204013099,184948829,5385,2679,287905824,267283836,14666,7077,1459364382,1396619128,97.47,97.39,70.86,69.2,35.79,36.87,13.98,13.24
-62649,17,117,17117,488,237,98064407,97639349,488,237,98064407,97639349,47765,21584,2247204577,2234917323,100,100,100,100,1.02,1.1,4.36,4.37
-62650,17,137,17137,26912,11611,517336049,514341757,26992,11648,531036882,528042590,35547,15515,1482240685,1473161231,99.7,99.68,97.42,97.41,75.71,74.84,34.9,34.91
-62650,17,171,17171,80,37,13700833,13700833,26992,11648,531036882,528042590,5355,2459,654673954,649861251,0.3,0.32,2.58,2.59,1.49,1.5,2.09,2.11
-62655,17,125,17125,568,275,147371919,146493027,568,275,147371919,146493027,14666,7077,1459364382,1396619128,100,100,100,100,3.87,3.89,10.1,10.49
-62656,17,107,17107,20405,7638,375493856,373608646,20405,7638,375493856,373608646,30305,12107,1603011686,1600764560,100,100,100,100,67.33,63.09,23.42,23.34
-62661,17,167,17167,1213,512,105738915,105512490,1213,512,105738915,105512490,197465,89901,2271469907,2248892510,100,100,100,100,0.61,0.57,4.66,4.69
-62663,17,171,17171,292,138,2574513,2574513,292,138,2574513,2574513,5355,2459,654673954,649861251,100,100,100,100,5.45,5.61,0.39,0.4
-62664,17,125,17125,3042,1409,283178238,282469469,3042,1409,283178238,282469469,14666,7077,1459364382,1396619128,100,100,100,100,20.74,19.91,19.4,20.23
-62665,17,137,17137,1456,676,95793202,90542847,1629,788,120110935,112464967,35547,15515,1482240685,1473161231,89.38,85.79,79.75,80.51,4.1,4.36,6.46,6.15
-62665,17,171,17171,173,112,24317733,21922120,1629,788,120110935,112464967,5355,2459,654673954,649861251,10.62,14.21,20.25,19.49,3.23,4.55,3.71,3.37
-62666,17,107,17107,554,271,62558268,62478873,616,295,78206451,78077585,30305,12107,1603011686,1600764560,89.94,91.86,79.99,80.02,1.83,2.24,3.9,3.9
-62666,17,129,17129,62,24,15648183,15598712,616,295,78206451,78077585,12705,5654,817029910,814388302,10.06,8.14,20.01,19.98,0.49,0.42,1.92,1.92
-62667,17,117,17117,454,215,90883325,90827238,464,218,95716176,95660089,47765,21584,2247204577,2234917323,97.84,98.62,94.95,94.95,0.95,1,4.04,4.06
-62667,17,137,17137,10,3,4832851,4832851,464,218,95716176,95660089,35547,15515,1482240685,1473161231,2.16,1.38,5.05,5.05,0.03,0.02,0.33,0.33
-62668,17,137,17137,1433,636,147766784,147585548,1512,675,166802009,166620773,35547,15515,1482240685,1473161231,94.78,94.22,88.59,88.58,4.03,4.1,9.97,10.02
-62668,17,171,17171,79,39,19035225,19035225,1512,675,166802009,166620773,5355,2459,654673954,649861251,5.22,5.78,11.41,11.42,1.48,1.59,2.91,2.93
-62670,17,137,17137,51,16,12555975,12554168,2997,1234,218037375,218035568,35547,15515,1482240685,1473161231,1.7,1.3,5.76,5.76,0.14,0.1,0.85,0.85
-62670,17,167,17167,2946,1218,205481400,205481400,2997,1234,218037375,218035568,197465,89901,2271469907,2248892510,98.3,98.7,94.24,94.24,1.49,1.35,9.05,9.14
-62671,17,107,17107,536,237,113029618,113029618,572,247,124967322,124967322,30305,12107,1603011686,1600764560,93.71,95.95,90.45,90.45,1.77,1.96,7.05,7.06
-62671,17,125,17125,36,10,11937704,11937704,572,247,124967322,124967322,14666,7077,1459364382,1396619128,6.29,4.05,9.55,9.55,0.25,0.14,0.82,0.85
-62672,17,117,17117,244,105,1898766,1898766,244,105,1898766,1898766,47765,21584,2247204577,2234917323,100,100,100,100,0.51,0.49,0.08,0.08
-62673,17,017,17017,65,31,32585025,32154120,530,235,82368389,81443978,13642,5836,993946583,973365036,12.26,13.19,39.56,39.48,0.48,0.53,3.28,3.3
-62673,17,129,17129,465,204,49783364,49289858,530,235,82368389,81443978,12705,5654,817029910,814388302,87.74,86.81,60.44,60.52,3.66,3.61,6.09,6.05
-62674,17,117,17117,1454,689,194393033,193079438,1454,689,194393033,193079438,47765,21584,2247204577,2234917323,100,100,100,100,3.04,3.19,8.65,8.64
-62675,17,129,17129,6154,2785,284005278,282900038,6154,2785,284005278,282900038,12705,5654,817029910,814388302,100,100,100,100,48.44,49.26,34.76,34.74
-62677,17,129,17129,10,5,4683665,4683665,2562,1062,238385840,238252996,12705,5654,817029910,814388302,0.39,0.47,1.96,1.97,0.08,0.09,0.57,0.58
-62677,17,167,17167,2552,1057,233702175,233569331,2562,1062,238385840,238252996,197465,89901,2271469907,2248892510,99.61,99.53,98.04,98.03,1.29,1.18,10.29,10.39
-62681,17,169,17169,5602,2458,450218291,448477045,5602,2458,450218291,448477045,7544,3459,1143042712,1132531106,100,100,100,100,74.26,71.06,39.39,39.6
-62682,17,107,17107,323,130,33738902,33738902,907,374,107902652,107795271,30305,12107,1603011686,1600764560,35.61,34.76,31.27,31.3,1.07,1.07,2.1,2.11
-62682,17,125,17125,571,238,64249433,64142052,907,374,107902652,107795271,14666,7077,1459364382,1396619128,62.95,63.64,59.54,59.5,3.89,3.36,4.4,4.59
-62682,17,179,17179,13,6,9914317,9914317,907,374,107902652,107795271,135394,57516,1704046613,1680835450,1.43,1.6,9.19,9.2,0.01,0.01,0.58,0.59
-62684,17,167,17167,5111,1904,65389897,65066083,5111,1904,65389897,65066083,197465,89901,2271469907,2248892510,100,100,100,100,2.59,2.12,2.88,2.89
-62685,17,117,17117,2097,965,219491886,218460894,2097,965,219491886,218460894,47765,21584,2247204577,2234917323,100,100,100,100,4.39,4.47,9.77,9.77
-62688,17,129,17129,761,355,121581511,121581511,761,355,121581511,121581511,12705,5654,817029910,814388302,100,100,100,100,5.99,6.28,14.88,14.93
-62689,17,167,17167,518,236,1592603,1592603,518,236,1592603,1592603,197465,89901,2271469907,2248892510,100,100,100,100,0.26,0.26,0.07,0.07
-62690,17,117,17117,3787,1754,88681732,88589151,4120,1885,131066018,130951451,47765,21584,2247204577,2234917323,91.92,93.05,67.66,67.65,7.93,8.13,3.95,3.96
-62690,17,135,17135,52,24,28214466,28192480,4120,1885,131066018,130951451,30104,13080,1838052567,1822539599,1.26,1.27,21.53,21.53,0.17,0.18,1.54,1.55
-62690,17,167,17167,281,107,14169820,14169820,4120,1885,131066018,130951451,197465,89901,2271469907,2248892510,6.82,5.68,10.81,10.82,0.14,0.12,0.62,0.63
-62691,17,017,17017,2426,1155,280075385,279840100,2426,1155,280075385,279840100,13642,5836,993946583,973365036,100,100,100,100,17.78,19.79,28.18,28.75
-62692,17,137,17137,1865,859,118109976,118018483,2093,963,227155217,227063724,35547,15515,1482240685,1473161231,89.11,89.2,52,51.98,5.25,5.54,7.97,8.01
-62692,17,167,17167,228,104,109045241,109045241,2093,963,227155217,227063724,197465,89901,2271469907,2248892510,10.89,10.8,48,48.02,0.12,0.12,4.8,4.85
-62693,17,107,17107,52,26,40686509,40671890,1638,652,102212636,102126991,30305,12107,1603011686,1600764560,3.17,3.99,39.81,39.82,0.17,0.21,2.54,2.54
-62693,17,167,17167,1586,626,61526127,61455101,1638,652,102212636,102126991,197465,89901,2271469907,2248892510,96.83,96.01,60.19,60.18,0.8,0.7,2.71,2.73
-62694,17,137,17137,50,20,8125599,8125599,3192,1433,405457390,403462059,35547,15515,1482240685,1473161231,1.57,1.4,2,2.01,0.14,0.13,0.55,0.55
-62694,17,171,17171,3142,1413,397331791,395336460,3192,1433,405457390,403462059,5355,2459,654673954,649861251,98.43,98.6,98,97.99,58.67,57.46,60.69,60.83
-62695,17,137,17137,296,130,385211,385211,296,130,385211,385211,35547,15515,1482240685,1473161231,100,100,100,100,0.83,0.84,0.03,0.03
-62701,17,167,17167,1152,758,988330,988330,1152,758,988330,988330,197465,89901,2271469907,2248892510,100,100,100,100,0.58,0.84,0.04,0.04
-62702,17,167,17167,37281,18081,40077387,39974311,37281,18081,40077387,39974311,197465,89901,2271469907,2248892510,100,100,100,100,18.88,20.11,1.76,1.78
-62703,17,167,17167,30333,13925,39973593,39872849,30333,13925,39973593,39872849,197465,89901,2271469907,2248892510,100,100,100,100,15.36,15.49,1.76,1.77
-62704,17,167,17167,39831,20721,31343155,31305616,39831,20721,31343155,31305616,197465,89901,2271469907,2248892510,100,100,100,100,20.17,23.05,1.38,1.39
-62707,17,167,17167,7648,3261,112732487,111141570,7648,3261,112732487,111141570,197465,89901,2271469907,2248892510,100,100,100,100,3.87,3.63,4.96,4.94
-62711,17,167,17167,15347,6582,79750000,79346300,15347,6582,79750000,79346300,197465,89901,2271469907,2248892510,100,100,100,100,7.77,7.32,3.51,3.53
-62712,17,167,17167,10302,4357,67712047,55034043,10302,4357,67712047,55034043,197465,89901,2271469907,2248892510,100,100,100,100,5.22,4.85,2.98,2.45
-62801,17,027,17027,5818,1829,122520455,122327063,22415,9942,357931790,353589717,37762,15311,1303466824,1227874498,25.96,18.4,34.23,34.6,15.41,11.95,9.4,9.96
-62801,17,081,17081,422,177,50196682,50171548,22415,9942,357931790,353589717,38827,16954,1511994330,1479320495,1.88,1.78,14.02,14.19,1.09,1.04,3.32,3.39
-62801,17,121,17121,15712,7725,132357175,128368594,22415,9942,357931790,353589717,39437,18296,1491926495,1482413602,70.1,77.7,36.98,36.3,39.84,42.22,8.87,8.66
-62801,17,189,17189,463,211,52857478,52722512,22415,9942,357931790,353589717,14716,6534,1460510170,1457055371,2.07,2.12,14.77,14.91,3.15,3.23,3.62,3.62
-62803,17,189,17189,1014,409,149692741,149680291,1014,409,149692741,149680291,14716,6534,1460510170,1457055371,100,100,100,100,6.89,6.26,10.25,10.27
-62806,17,047,17047,3412,1583,265460585,264995612,3412,1583,265460585,264995612,6721,3187,576842947,576054180,100,100,100,100,50.77,49.67,46.02,46
-62807,17,121,17121,961,475,114251330,114053744,961,475,114251330,114053744,39437,18296,1491926495,1482413602,100,100,100,100,2.44,2.6,7.66,7.69
-62808,17,081,17081,285,122,64261905,64244824,1457,666,197487479,197408987,38827,16954,1511994330,1479320495,19.56,18.32,32.54,32.54,0.73,0.72,4.25,4.34
-62808,17,189,17189,1172,544,133225574,133164163,1457,666,197487479,197408987,14716,6534,1460510170,1457055371,80.44,81.68,67.46,67.46,7.96,8.33,9.12,9.14
-62809,17,191,17191,142,68,30476371,30395325,142,68,30476371,30395325,16760,7975,1853100815,1848769796,100,100,100,100,0.85,0.85,1.64,1.64
-62810,17,065,17065,33,14,7237580,7237580,1089,424,159662762,158562327,8457,4104,1128952447,1125777456,3.03,3.3,4.53,4.56,0.39,0.34,0.64,0.64
-62810,17,081,17081,1048,406,142098107,140997672,1089,424,159662762,158562327,38827,16954,1511994330,1479320495,96.24,95.75,89,88.92,2.7,2.39,9.4,9.53
-62810,17,191,17191,8,4,10327075,10327075,1089,424,159662762,158562327,16760,7975,1853100815,1848769796,0.73,0.94,6.47,6.51,0.05,0.05,0.56,0.56
-62811,17,185,17185,310,148,1558844,1558844,310,148,1558844,1558844,11947,5585,589236603,578218989,100,100,100,100,2.59,2.65,0.26,0.27
-62812,17,055,17055,11265,5341,251320466,247391047,11265,5341,251320466,247391047,39561,18525,1117434514,1059017642,100,100,100,100,28.48,28.83,22.49,23.36
-62814,17,081,17081,1844,774,153067748,152445163,2124,875,184081051,183414365,38827,16954,1511994330,1479320495,86.82,88.46,83.15,83.12,4.75,4.57,10.12,10.31
-62814,17,191,17191,280,101,31013303,30969202,2124,875,184081051,183414365,16760,7975,1853100815,1848769796,13.18,11.54,16.85,16.88,1.67,1.27,1.67,1.68
-62815,17,047,17047,416,171,54173636,54162917,416,171,54173636,54162917,6721,3187,576842947,576054180,100,100,100,100,6.19,5.37,9.39,9.4
-62816,17,081,17081,1306,617,106833206,89527642,1306,617,106833206,89527642,38827,16954,1511994330,1479320495,100,100,100,100,3.36,3.64,7.07,6.05
-62817,17,065,17065,557,290,180855756,180413739,557,290,180855756,180413739,8457,4104,1128952447,1125777456,100,100,100,100,6.59,7.07,16.02,16.03
-62818,17,047,17047,258,122,31067724,31067724,330,154,67322510,67322510,6721,3187,576842947,576054180,78.18,79.22,46.15,46.15,3.84,3.83,5.39,5.39
-62818,17,185,17185,72,32,36254786,36254786,330,154,67322510,67322510,11947,5585,589236603,578218989,21.82,20.78,53.85,53.85,0.6,0.57,6.15,6.27
-62819,17,055,17055,448,217,2979665,2897017,448,217,2979665,2897017,39561,18525,1117434514,1059017642,100,100,100,100,1.13,1.17,0.27,0.27
-62820,17,191,17191,37,20,19476905,19428796,162,102,55094704,55012747,16760,7975,1853100815,1848769796,22.84,19.61,35.35,35.32,0.22,0.25,1.05,1.05
-62820,17,193,17193,125,82,35617799,35583951,162,102,55094704,55012747,14665,7181,1299814046,1281438823,77.16,80.39,64.65,64.68,0.85,1.14,2.74,2.78
-62821,17,193,17193,7657,3701,463204976,455435276,7657,3701,463204976,455435276,14665,7181,1299814046,1281438823,100,100,100,100,52.21,51.54,35.64,35.54
-62822,17,055,17055,2574,1274,6974627,6929457,2574,1274,6974627,6929457,39561,18525,1117434514,1059017642,100,100,100,100,6.51,6.88,0.62,0.65
-62823,17,191,17191,1691,802,209842167,209611258,1691,802,209842167,209611258,16760,7975,1853100815,1848769796,100,100,100,100,10.09,10.06,11.32,11.34
-62824,17,025,17025,1663,829,231207029,229758443,1761,878,275969473,274520887,13815,6404,1216237067,1212932408,94.43,94.42,83.78,83.69,12.04,12.95,19.01,18.94
-62824,17,191,17191,98,49,44762444,44762444,1761,878,275969473,274520887,16760,7975,1853100815,1848769796,5.57,5.58,16.22,16.31,0.58,0.61,2.42,2.42
-62825,17,055,17055,203,92,815493,812955,203,92,815493,812955,39561,18525,1117434514,1059017642,100,100,100,100,0.51,0.5,0.07,0.08
-62827,17,193,17193,1245,608,171345400,167677547,1245,608,171345400,167677547,14665,7181,1299814046,1281438823,100,100,100,100,8.49,8.47,13.18,13.09
-62828,17,065,17065,1426,621,211943431,211659808,1426,621,211943431,211659808,8457,4104,1128952447,1125777456,100,100,100,100,16.86,15.13,18.77,18.8
-62829,17,065,17065,72,35,4433548,4431527,72,35,4433548,4431527,8457,4104,1128952447,1125777456,100,100,100,100,0.85,0.85,0.39,0.39
-62830,17,081,17081,1365,642,72334171,72248990,1392,653,73655762,73570581,38827,16954,1511994330,1479320495,98.06,98.32,98.21,98.2,3.52,3.79,4.78,4.88
-62830,17,121,17121,27,11,1321591,1321591,1392,653,73655762,73570581,39437,18296,1491926495,1482413602,1.94,1.68,1.79,1.8,0.07,0.06,0.09,0.09
-62831,17,145,17145,71,40,23696624,23696624,573,286,104179197,104053695,22350,9426,1157602305,1144154902,12.39,13.99,22.75,22.77,0.32,0.42,2.05,2.07
-62831,17,189,17189,502,246,80482573,80357071,573,286,104179197,104053695,14716,6534,1460510170,1457055371,87.61,86.01,77.25,77.23,3.41,3.76,5.51,5.52
-62832,17,077,17077,70,30,8621212,8511862,9208,4342,257643404,250743185,60218,28578,1560155284,1512763725,0.76,0.69,3.35,3.39,0.12,0.1,0.55,0.56
-62832,17,145,17145,9138,4312,249022192,242231323,9208,4342,257643404,250743185,22350,9426,1157602305,1144154902,99.24,99.31,96.65,96.61,40.89,45.75,21.51,21.17
-62833,17,047,17047,166,80,37780459,37711427,383,177,120181259,119704170,6721,3187,576842947,576054180,43.34,45.2,31.44,31.5,2.47,2.51,6.55,6.55
-62833,17,191,17191,217,97,82400800,81992743,383,177,120181259,119704170,16760,7975,1853100815,1848769796,56.66,54.8,68.56,68.5,1.29,1.22,4.45,4.43
-62835,17,065,17065,36,22,24587609,24570618,1152,547,189042315,188909999,8457,4104,1128952447,1125777456,3.13,4.02,13.01,13.01,0.43,0.54,2.18,2.18
-62835,17,193,17193,1116,525,164454706,164339381,1152,547,189042315,188909999,14665,7181,1299814046,1281438823,96.88,95.98,86.99,86.99,7.61,7.31,12.65,12.82
-62836,17,055,17055,801,325,98822201,98487927,801,325,98822201,98487927,39561,18525,1117434514,1059017642,100,100,100,100,2.02,1.75,8.84,9.3
-62837,17,191,17191,8867,4356,423402595,422334393,8867,4356,423402595,422334393,16760,7975,1853100815,1848769796,100,100,100,100,52.91,54.62,22.85,22.84
-62838,17,025,17025,429,175,60253715,60209334,1497,685,221680903,221517867,13815,6404,1216237067,1212932408,28.66,25.55,27.18,27.18,3.11,2.73,4.95,4.96
-62838,17,049,17049,9,4,3451974,3451974,1497,685,221680903,221517867,34242,14570,1243211135,1240027936,0.6,0.58,1.56,1.56,0.03,0.03,0.28,0.28
-62838,17,051,17051,1044,499,146948181,146829526,1497,685,221680903,221517867,22140,9302,1878629860,1855679809,69.74,72.85,66.29,66.28,4.72,5.36,7.82,7.91
-62838,17,121,17121,15,7,11027033,11027033,1497,685,221680903,221517867,39437,18296,1491926495,1482413602,1,1.02,4.97,4.98,0.04,0.04,0.74,0.74
-62839,17,025,17025,6718,3086,190432350,190012004,6718,3086,190432350,190012004,13815,6404,1216237067,1212932408,100,100,100,100,48.63,48.19,15.66,15.67
-62841,17,199,17199,98,45,254182,254182,98,45,254182,254182,66357,30359,1150865682,1088181449,100,100,100,100,0.15,0.15,0.02,0.02
-62842,17,191,17191,835,385,113981715,113956773,835,385,113981715,113956773,16760,7975,1853100815,1848769796,100,100,100,100,4.98,4.83,6.15,6.16
-62843,17,191,17191,100,58,15635778,15555324,100,58,15635778,15555324,16760,7975,1853100815,1848769796,100,100,100,100,0.6,0.73,0.84,0.84
-62844,17,047,17047,947,474,46871124,46855352,2083,1026,115620646,114655361,6721,3187,576842947,576054180,45.46,46.2,40.54,40.87,14.09,14.87,8.13,8.13
-62844,17,193,17193,1136,552,68749522,67800009,2083,1026,115620646,114655361,14665,7181,1299814046,1281438823,54.54,53.8,59.46,59.13,7.75,7.69,5.29,5.29
-62846,17,081,17081,2631,349,60633841,55072770,2631,349,60633841,55072770,38827,16954,1511994330,1479320495,100,100,100,100,6.78,2.06,4.01,3.72
-62848,17,189,17189,636,297,8495120,8479297,636,297,8495120,8479297,14716,6534,1460510170,1457055371,100,100,100,100,4.32,4.55,0.58,0.58
-62849,17,121,17121,2205,971,292534620,292093001,2205,971,292534620,292093001,39437,18296,1491926495,1482413602,100,100,100,100,5.59,5.31,19.61,19.7
-62850,17,191,17191,381,142,74469093,73418948,381,142,74469093,73418948,16760,7975,1853100815,1848769796,100,100,100,100,2.27,1.78,4.02,3.97
-62851,17,081,17081,14,10,2260293,2260293,329,160,72503950,72415501,38827,16954,1511994330,1479320495,4.26,6.25,3.12,3.12,0.04,0.06,0.15,0.15
-62851,17,121,17121,4,3,1705991,1705991,329,160,72503950,72415501,39437,18296,1491926495,1482413602,1.22,1.88,2.35,2.36,0.01,0.02,0.11,0.12
-62851,17,191,17191,311,147,68537666,68449217,329,160,72503950,72415501,16760,7975,1853100815,1848769796,94.53,91.88,94.53,94.52,1.86,1.84,3.7,3.7
-62852,17,185,17185,160,80,254367,254367,160,80,254367,254367,11947,5585,589236603,578218989,100,100,100,100,1.34,1.43,0.04,0.04
-62853,17,121,17121,1034,426,69670758,69576485,1034,426,69670758,69576485,39437,18296,1491926495,1482413602,100,100,100,100,2.62,2.33,4.67,4.69
-62854,17,025,17025,23,7,2622600,2622600,1776,791,238521192,235258615,13815,6404,1216237067,1212932408,1.3,0.88,1.1,1.11,0.17,0.11,0.22,0.22
-62854,17,121,17121,1753,784,235898592,232636015,1776,791,238521192,235258615,39437,18296,1491926495,1482413602,98.7,99.12,98.9,98.89,4.45,4.29,15.81,15.69
-62856,17,055,17055,324,153,2425517,2408256,324,153,2425517,2408256,39561,18525,1117434514,1059017642,100,100,100,100,0.82,0.83,0.22,0.23
-62858,17,025,17025,2948,1343,392707770,391913079,2981,1353,399941148,399146457,13815,6404,1216237067,1212932408,98.89,99.26,98.19,98.19,21.34,20.97,32.29,32.31
-62858,17,049,17049,33,10,7233378,7233378,2981,1353,399941148,399146457,34242,14570,1243211135,1240027936,1.11,0.74,1.81,1.81,0.1,0.07,0.58,0.58
-62859,17,065,17065,5748,2823,541414140,539202163,5748,2823,541414140,539202163,8457,4104,1128952447,1125777456,100,100,100,100,67.97,68.79,47.96,47.9
-62860,17,055,17055,346,160,61701861,61527915,524,247,86065192,85814215,39561,18525,1117434514,1059017642,66.03,64.78,71.69,71.7,0.87,0.86,5.52,5.81
-62860,17,065,17065,178,87,24363331,24286300,524,247,86065192,85814215,8457,4104,1128952447,1125777456,33.97,35.22,28.31,28.3,2.1,2.12,2.16,2.16
-62861,17,193,17193,128,75,1950398,1407530,128,75,1950398,1407530,14665,7181,1299814046,1281438823,100,100,100,100,0.87,1.04,0.15,0.11
-62862,17,193,17193,364,193,69672326,69595336,364,193,69672326,69595336,14665,7181,1299814046,1281438823,100,100,100,100,2.48,2.69,5.36,5.43
-62863,17,185,17185,10183,4795,396407390,387353599,10183,4795,396407390,387353599,11947,5585,589236603,578218989,100,100,100,100,85.23,85.85,67.27,66.99
-62864,17,081,17081,24108,11420,377618659,375957141,24108,11420,377618659,375957141,38827,16954,1511994330,1479320495,100,100,100,100,62.09,67.36,24.97,25.41
-62865,17,055,17055,2018,919,143851168,141164541,2018,919,143851168,141164541,39561,18525,1117434514,1059017642,100,100,100,100,5.1,4.96,12.87,13.33
-62867,17,059,17059,460,241,22217388,21856571,521,306,90788299,86833021,5589,2746,849988972,836750424,88.29,78.76,24.47,25.17,8.23,8.78,2.61,2.61
-62867,17,193,17193,61,65,68570911,64976450,521,306,90788299,86833021,14665,7181,1299814046,1281438823,11.71,21.24,75.53,74.83,0.42,0.91,5.28,5.07
-62868,17,025,17025,119,53,41683990,41683990,1872,836,261334020,261007739,13815,6404,1216237067,1212932408,6.36,6.34,15.95,15.97,0.86,0.83,3.43,3.44
-62868,17,159,17159,1695,758,181483552,181336528,1872,836,261334020,261007739,16233,7513,937307949,932370871,90.54,90.67,69.45,69.48,10.44,10.09,19.36,19.45
-62868,17,191,17191,58,25,38166478,37987221,1872,836,261334020,261007739,16760,7975,1853100815,1848769796,3.1,2.99,14.6,14.55,0.35,0.31,2.06,2.05
-62869,17,059,17059,11,4,1290077,1283564,2682,1303,234356164,232657340,5589,2746,849988972,836750424,0.41,0.31,0.55,0.55,0.2,0.15,0.15,0.15
-62869,17,065,17065,13,7,4406948,4400879,2682,1303,234356164,232657340,8457,4104,1128952447,1125777456,0.48,0.54,1.88,1.89,0.15,0.17,0.39,0.39
-62869,17,165,17165,11,5,6472138,6410561,2682,1303,234356164,232657340,24913,11697,1001754823,983725654,0.41,0.38,2.76,2.76,0.04,0.04,0.65,0.65
-62869,17,193,17193,2647,1287,222187001,220562336,2682,1303,234356164,232657340,14665,7181,1299814046,1281438823,98.7,98.77,94.81,94.8,18.05,17.92,17.09,17.21
-62870,17,121,17121,2080,894,101228182,101172275,2080,894,101228182,101172275,39437,18296,1491926495,1482413602,100,100,100,100,5.27,4.89,6.79,6.82
-62871,17,059,17059,686,320,132545263,132259217,686,320,132545263,132259217,5589,2746,849988972,836750424,100,100,100,100,12.27,11.65,15.59,15.81
-62872,17,081,17081,1178,462,61177022,61138765,1178,462,61177022,61138765,38827,16954,1511994330,1479320495,100,100,100,100,3.03,2.73,4.05,4.13
-62874,17,055,17055,372,177,3748636,3669090,372,177,3748636,3669090,39561,18525,1117434514,1059017642,100,100,100,100,0.94,0.96,0.34,0.35
-62875,17,027,17027,22,5,4972247,4972247,1167,529,188136467,175493468,37762,15311,1303466824,1227874498,1.89,0.95,2.64,2.83,0.06,0.03,0.38,0.4
-62875,17,051,17051,191,85,78545373,65902374,1167,529,188136467,175493468,22140,9302,1878629860,1855679809,16.37,16.07,41.75,37.55,0.86,0.91,4.18,3.55
-62875,17,121,17121,954,439,104618847,104618847,1167,529,188136467,175493468,39437,18296,1491926495,1482413602,81.75,82.99,55.61,59.61,2.42,2.4,7.01,7.06
-62876,17,189,17189,247,112,7944997,7944997,247,112,7944997,7944997,14716,6534,1460510170,1457055371,100,100,100,100,1.68,1.71,0.54,0.55
-62877,17,081,17081,20,10,3155574,3155574,514,243,85019663,84822399,38827,16954,1511994330,1479320495,3.89,4.12,3.71,3.72,0.05,0.06,0.21,0.21
-62877,17,189,17189,494,233,81864089,81666825,514,243,85019663,84822399,14716,6534,1460510170,1457055371,96.11,95.88,96.29,96.28,3.36,3.57,5.61,5.6
-62878,17,191,17191,410,191,91342155,91313837,410,191,91342155,91313837,16760,7975,1853100815,1848769796,100,100,100,100,2.45,2.39,4.93,4.94
-62879,17,025,17025,85,49,508346,508346,85,49,508346,508346,13815,6404,1216237067,1212932408,100,100,100,100,0.62,0.77,0.04,0.04
-62880,17,051,17051,717,304,107617393,107617393,717,304,107617393,107617393,22140,9302,1878629860,1855679809,100,100,100,100,3.24,3.27,5.73,5.8
-62881,17,121,17121,11385,5083,261313093,260038127,11385,5083,261313093,260038127,39437,18296,1491926495,1482413602,100,100,100,100,28.87,27.78,17.52,17.54
-62882,17,027,17027,45,22,13691759,13691759,2331,1017,81849539,81750659,37762,15311,1303466824,1227874498,1.93,2.16,16.73,16.75,0.12,0.14,1.05,1.12
-62882,17,121,17121,2286,995,68157780,68058900,2331,1017,81849539,81750659,39437,18296,1491926495,1482413602,98.07,97.84,83.27,83.25,5.8,5.44,4.57,4.59
-62883,17,055,17055,101,38,9377322,9339719,591,271,104844058,104621639,39561,18525,1117434514,1059017642,17.09,14.02,8.94,8.93,0.26,0.21,0.84,0.88
-62883,17,081,17081,414,204,75652500,75488183,591,271,104844058,104621639,38827,16954,1511994330,1479320495,70.05,75.28,72.16,72.15,1.07,1.2,5,5.1
-62883,17,145,17145,76,29,19814236,19793737,591,271,104844058,104621639,22350,9426,1157602305,1144154902,12.86,10.7,18.9,18.92,0.34,0.31,1.71,1.73
-62884,17,055,17055,2940,1372,83229203,81093923,2940,1372,83229203,81093923,39561,18525,1117434514,1059017642,100,100,100,100,7.43,7.41,7.45,7.66
-62885,17,051,17051,839,356,126326251,126214759,839,356,126326251,126214759,22140,9302,1878629860,1855679809,100,100,100,100,3.79,3.83,6.72,6.8
-62886,17,191,17191,440,199,76886507,76848852,440,199,76886507,76848852,16760,7975,1853100815,1848769796,100,100,100,100,2.63,2.5,4.15,4.16
-62887,17,065,17065,109,55,24517081,24498604,295,148,58578088,58559611,8457,4104,1128952447,1125777456,36.95,37.16,41.85,41.84,1.29,1.34,2.17,2.18
-62887,17,193,17193,186,93,34061007,34061007,295,148,58578088,58559611,14665,7181,1299814046,1281438823,63.05,62.84,58.15,58.16,1.27,1.3,2.62,2.66
-62888,17,145,17145,2135,975,200472469,200328299,2135,975,200472469,200328299,22350,9426,1157602305,1144154902,100,100,100,100,9.55,10.34,17.32,17.51
-62889,17,081,17081,692,299,55594669,55501575,851,367,78603783,78485632,38827,16954,1511994330,1479320495,81.32,81.47,70.73,70.72,1.78,1.76,3.68,3.75
-62889,17,121,17121,159,68,23009114,22984057,851,367,78603783,78485632,39437,18296,1491926495,1482413602,18.68,18.53,29.27,29.28,0.4,0.37,1.54,1.55
-62890,17,055,17055,1933,862,140259018,138928721,2882,1307,273880463,272238644,39561,18525,1117434514,1059017642,67.07,65.95,51.21,51.03,4.89,4.65,12.55,13.12
-62890,17,065,17065,193,107,50617446,50513085,2882,1307,273880463,272238644,8457,4104,1128952447,1125777456,6.7,8.19,18.48,18.55,2.28,2.61,4.48,4.49
-62890,17,165,17165,122,57,21838361,21773380,2882,1307,273880463,272238644,24913,11697,1001754823,983725654,4.23,4.36,7.97,8,0.49,0.49,2.18,2.21
-62890,17,199,17199,634,281,61165638,61023458,2882,1307,273880463,272238644,66357,30359,1150865682,1088181449,22,21.5,22.33,22.42,0.96,0.93,5.31,5.61
-62891,17,055,17055,652,292,1958382,1952938,652,292,1958382,1952938,39561,18525,1117434514,1059017642,100,100,100,100,1.65,1.58,0.18,0.18
-62892,17,051,17051,35,15,6485241,6451622,317,188,58082942,57976412,22140,9302,1878629860,1855679809,11.04,7.98,11.17,11.13,0.16,0.16,0.35,0.35
-62892,17,121,17121,282,173,51597701,51524790,317,188,58082942,57976412,39437,18296,1491926495,1482413602,88.96,92.02,88.83,88.87,0.72,0.95,3.46,3.48
-62893,17,081,17081,397,180,25163244,24897230,977,422,48397932,48131382,38827,16954,1511994330,1479320495,40.63,42.65,51.99,51.73,1.02,1.06,1.66,1.68
-62893,17,121,17121,580,242,23234688,23234152,977,422,48397932,48131382,39437,18296,1491926495,1482413602,59.37,57.35,48.01,48.27,1.47,1.32,1.56,1.57
-62894,17,081,17081,1006,426,122046942,116436590,1006,426,122046942,116436590,38827,16954,1511994330,1479320495,100,100,100,100,2.59,2.51,8.07,7.87
-62895,17,065,17065,85,39,48951229,48951229,2022,937,265203651,265033366,8457,4104,1128952447,1125777456,4.2,4.16,18.46,18.47,1.01,0.95,4.34,4.35
-62895,17,191,17191,1937,898,216252422,216082137,2022,937,265203651,265033366,16760,7975,1853100815,1848769796,95.8,95.84,81.54,81.53,11.56,11.26,11.67,11.69
-62896,17,055,17055,11853,5589,146307255,143097448,12626,5902,170314625,166798967,39561,18525,1117434514,1059017642,93.88,94.7,85.9,85.79,29.96,30.17,13.09,13.51
-62896,17,199,17199,773,313,24007370,23701519,12626,5902,170314625,166798967,66357,30359,1150865682,1088181449,6.12,5.3,14.1,14.21,1.16,1.03,2.09,2.18
-62897,17,055,17055,398,213,35282450,32285490,398,213,35282450,32285490,39561,18525,1117434514,1059017642,100,100,100,100,1.01,1.15,3.16,3.05
-62898,17,081,17081,2097,856,139899767,139776535,2097,856,139899767,139776535,38827,16954,1511994330,1479320495,100,100,100,100,5.4,5.05,9.25,9.45
-62899,17,025,17025,1085,505,163761319,163456839,1612,739,266257474,265900629,13815,6404,1216237067,1212932408,67.31,68.34,61.5,61.47,7.85,7.89,13.46,13.48
-62899,17,191,17191,527,234,102496155,102443790,1612,739,266257474,265900629,16760,7975,1853100815,1848769796,32.69,31.66,38.5,38.53,3.14,2.93,5.53,5.54
-62901,17,077,17077,26231,12476,68329131,66950473,27182,12916,79919719,77545948,60218,28578,1560155284,1512763725,96.5,96.59,85.5,86.34,43.56,43.66,4.38,4.43
-62901,17,199,17199,951,440,11590588,10595475,27182,12916,79919719,77545948,66357,30359,1150865682,1088181449,3.5,3.41,14.5,13.66,1.43,1.45,1.01,0.97
-62902,17,077,17077,3464,1718,59057326,58136346,4531,2240,163675656,159204711,60218,28578,1560155284,1512763725,76.45,76.7,36.08,36.52,5.75,6.01,3.79,3.84
-62902,17,181,17181,7,4,2533425,2520499,4531,2240,163675656,159204711,17808,7924,1093358017,1070854490,0.15,0.18,1.55,1.58,0.04,0.05,0.23,0.24
-62902,17,199,17199,1060,518,102084905,98547866,4531,2240,163675656,159204711,66357,30359,1150865682,1088181449,23.39,23.13,62.37,61.9,1.6,1.71,8.87,9.06
-62903,17,077,17077,2962,1506,55282831,51339715,2962,1506,55282831,51339715,60218,28578,1560155284,1512763725,100,100,100,100,4.92,5.27,3.54,3.39
-62905,17,077,17077,71,37,18183069,17472695,677,304,90195207,89376856,60218,28578,1560155284,1512763725,10.49,12.17,20.16,19.55,0.12,0.13,1.17,1.16
-62905,17,181,17181,606,267,72012138,71904161,677,304,90195207,89376856,17808,7924,1093358017,1070854490,89.51,87.83,79.84,80.45,3.4,3.37,6.59,6.71
-62906,17,181,17181,7276,3267,159633346,158106058,7276,3267,159633346,158106058,17808,7924,1093358017,1070854490,100,100,100,100,40.86,41.23,14.6,14.76
-62907,17,077,17077,2156,941,244502681,237465495,2164,944,245852595,238813760,60218,28578,1560155284,1512763725,99.63,99.68,99.45,99.44,3.58,3.29,15.67,15.7
-62907,17,157,17157,8,3,1349914,1348265,2164,944,245852595,238813760,33476,13707,1546753273,1490537612,0.37,0.32,0.55,0.56,0.02,0.02,0.09,0.09
-62908,17,087,17087,219,109,46105094,45642378,467,228,133782402,131456451,12582,5598,903552342,890735754,46.9,47.81,34.46,34.72,1.74,1.95,5.1,5.12
-62908,17,127,17127,248,119,87677308,85814073,467,228,133782402,131456451,15429,7113,626295108,614390561,53.1,52.19,65.54,65.28,1.61,1.67,14,13.97
-62910,17,127,17127,2580,1165,158743964,155753419,2865,1315,275560157,268614559,15429,7113,626295108,614390561,90.05,88.59,57.61,57.98,16.72,16.38,25.35,25.35
-62910,17,151,17151,285,150,116816193,112861140,2865,1315,275560157,268614559,4470,2491,969438728,955110060,9.95,11.41,42.39,42.02,6.38,6.02,12.05,11.82
-62912,17,087,17087,628,298,79984341,79238678,1179,548,139821926,138696123,12582,5598,903552342,890735754,53.27,54.38,57.2,57.13,4.99,5.32,8.85,8.9
-62912,17,181,17181,551,250,59837585,59457445,1179,548,139821926,138696123,17808,7924,1093358017,1070854490,46.73,45.62,42.8,42.87,3.09,3.15,5.47,5.55
-62914,17,003,17003,3147,1782,51875799,50837105,3147,1782,51875799,50837105,8238,4006,654234231,609965908,100,100,100,100,38.2,44.48,7.93,8.33
-62915,17,199,17199,321,149,313171,313171,321,149,313171,313171,66357,30359,1150865682,1088181449,100,100,100,100,0.48,0.49,0.03,0.03
-62916,17,077,17077,837,331,59882487,59842292,995,406,87926769,87866955,60218,28578,1560155284,1512763725,84.12,81.53,68.1,68.11,1.39,1.16,3.84,3.96
-62916,17,145,17145,47,22,14833519,14833519,995,406,87926769,87866955,22350,9426,1157602305,1144154902,4.72,5.42,16.87,16.88,0.21,0.23,1.28,1.3
-62916,17,157,17157,111,53,13210763,13191144,995,406,87926769,87866955,33476,13707,1546753273,1490537612,11.16,13.05,15.02,15.01,0.33,0.39,0.85,0.88
-62917,17,165,17165,2184,1099,73151566,69931582,2305,1145,86331996,83051297,24913,11697,1001754823,983725654,94.75,95.98,84.73,84.2,8.77,9.4,7.3,7.11
-62917,17,199,17199,121,46,13180430,13119715,2305,1145,86331996,83051297,66357,30359,1150865682,1088181449,5.25,4.02,15.27,15.8,0.18,0.15,1.15,1.21
-62918,17,199,17199,9793,4403,97113735,93303989,9793,4403,97113735,93303989,66357,30359,1150865682,1088181449,100,100,100,100,14.76,14.5,8.44,8.57
-62919,17,069,17069,1003,640,133120058,126501717,1003,640,133120058,126501717,4320,2488,470285561,459794312,100,100,100,100,23.22,25.72,28.31,27.51
-62920,17,181,17181,3265,1425,170866215,169656281,3265,1425,170866215,169656281,17808,7924,1093358017,1070854490,100,100,100,100,18.33,17.98,15.63,15.84
-62921,17,199,17199,375,204,1998460,1971949,375,204,1998460,1971949,66357,30359,1150865682,1088181449,100,100,100,100,0.57,0.67,0.17,0.18
-62922,17,087,17087,647,445,44353535,42753846,3119,1723,172645846,167740879,12582,5598,903552342,890735754,20.74,25.83,25.69,25.49,5.14,7.95,4.91,4.8
-62922,17,199,17199,2472,1278,128292311,124987033,3119,1723,172645846,167740879,66357,30359,1150865682,1088181449,79.26,74.17,74.31,74.51,3.73,4.21,11.15,11.49
-62923,17,087,17087,456,224,61985901,61679587,518,255,78728635,78086810,12582,5598,903552342,890735754,88.03,87.84,78.73,78.99,3.62,4,6.86,6.92
-62923,17,153,17153,41,24,12392572,12088465,518,255,78728635,78086810,6161,3155,526361402,515886434,7.92,9.41,15.74,15.48,0.67,0.76,2.35,2.34
-62923,17,181,17181,21,7,4350162,4318758,518,255,78728635,78086810,17808,7924,1093358017,1070854490,4.05,2.75,5.53,5.53,0.12,0.09,0.4,0.4
-62924,17,077,17077,2419,1077,100764584,97751807,2809,1260,113210469,109884801,60218,28578,1560155284,1512763725,86.12,85.48,89.01,88.96,4.02,3.77,6.46,6.46
-62924,17,199,17199,390,183,12445885,12132994,2809,1260,113210469,109884801,66357,30359,1150865682,1088181449,13.88,14.52,10.99,11.04,0.59,0.6,1.08,1.11
-62926,17,153,17153,237,109,43499729,43127941,2263,990,209494844,207818282,6161,3155,526361402,515886434,10.47,11.01,20.76,20.75,3.85,3.45,8.26,8.36
-62926,17,181,17181,2026,881,165995115,164690341,2263,990,209494844,207818282,17808,7924,1093358017,1070854490,89.53,88.99,79.24,79.25,11.38,11.12,15.18,15.38
-62927,17,077,17077,367,179,1143195,1134755,367,179,1143195,1134755,60218,28578,1560155284,1512763725,100,100,100,100,0.61,0.63,0.07,0.08
-62928,17,151,17151,293,182,44072729,43954467,293,182,44072729,43954467,4470,2491,969438728,955110060,100,100,100,100,6.55,7.31,4.55,4.6
-62930,17,059,17059,21,11,7210165,7194115,6263,3031,184834653,183537479,5589,2746,849988972,836750424,0.34,0.36,3.9,3.92,0.38,0.4,0.85,0.86
-62930,17,165,17165,6242,3020,177624488,176343364,6263,3031,184834653,183537479,24913,11697,1001754823,983725654,99.66,99.64,96.1,96.08,25.06,25.82,17.73,17.93
-62931,17,059,17059,45,18,20092075,19642982,1571,933,269379815,266918552,5589,2746,849988972,836750424,2.86,1.93,7.46,7.36,0.81,0.66,2.36,2.35
-62931,17,069,17069,1526,915,249287740,247275570,1571,933,269379815,266918552,4320,2488,470285561,459794312,97.14,98.07,92.54,92.64,35.32,36.78,53.01,53.78
-62932,17,077,17077,1592,711,104058898,99687684,1592,711,104058898,99687684,60218,28578,1560155284,1512763725,100,100,100,100,2.64,2.49,6.67,6.59
-62933,17,199,17199,1230,578,3871940,3722083,1230,578,3871940,3722083,66357,30359,1150865682,1088181449,100,100,100,100,1.85,1.9,0.34,0.34
-62934,17,059,17059,780,386,125827340,124967806,927,460,201646215,198985474,5589,2746,849988972,836750424,84.14,83.91,62.4,62.8,13.96,14.06,14.8,14.93
-62934,17,165,17165,147,74,75818875,74017668,927,460,201646215,198985474,24913,11697,1001754823,983725654,15.86,16.09,37.6,37.2,0.59,0.63,7.57,7.52
-62935,17,065,17065,7,4,5624348,5611924,1943,978,146232327,144355726,8457,4104,1128952447,1125777456,0.36,0.41,3.85,3.89,0.08,0.1,0.5,0.5
-62935,17,165,17165,1936,974,140607979,138743802,1943,978,146232327,144355726,24913,11697,1001754823,983725654,99.64,99.59,96.15,96.11,7.77,8.33,14.04,14.1
-62938,17,069,17069,164,97,17720409,17522117,3033,1606,444671309,435664707,4320,2488,470285561,459794312,5.41,6.04,3.99,4.02,3.8,3.9,3.77,3.81
-62938,17,151,17151,2869,1509,426950900,418142590,3033,1606,444671309,435664707,4470,2491,969438728,955110060,94.59,93.96,96.01,95.98,64.18,60.58,44.04,43.78
-62939,17,087,17087,2970,1543,106468981,104471457,3119,1610,115793443,113689635,12582,5598,903552342,890735754,95.22,95.84,91.95,91.89,23.61,27.56,11.78,11.73
-62939,17,181,17181,52,23,4685773,4656030,3119,1610,115793443,113689635,17808,7924,1093358017,1070854490,1.67,1.43,4.05,4.1,0.29,0.29,0.43,0.43
-62939,17,199,17199,97,44,4638689,4562148,3119,1610,115793443,113689635,66357,30359,1150865682,1088181449,3.11,2.73,4.01,4.01,0.15,0.14,0.4,0.42
-62940,17,077,17077,445,202,68768176,66915868,445,202,68768176,66915868,60218,28578,1560155284,1512763725,100,100,100,100,0.74,0.71,4.41,4.42
-62941,17,127,17127,219,97,22527771,21403545,808,391,92719751,87890170,15429,7113,626295108,614390561,27.1,24.81,24.3,24.35,1.42,1.36,3.6,3.48
-62941,17,153,17153,589,294,70191980,66486625,808,391,92719751,87890170,6161,3155,526361402,515886434,72.9,75.19,75.7,75.65,9.56,9.32,13.34,12.89
-62942,17,077,17077,707,336,88436529,84043437,707,336,88436529,84043437,60218,28578,1560155284,1512763725,100,100,100,100,1.17,1.18,5.67,5.56
-62943,17,087,17087,493,216,62130233,61581034,715,327,99743785,98823817,12582,5598,903552342,890735754,68.95,66.06,62.29,62.31,3.92,3.86,6.88,6.91
-62943,17,127,17127,160,72,23008315,22735861,715,327,99743785,98823817,15429,7113,626295108,614390561,22.38,22.02,23.07,23.01,1.04,1.01,3.67,3.7
-62943,17,151,17151,62,39,14605237,14506922,715,327,99743785,98823817,4470,2491,969438728,955110060,8.67,11.93,14.64,14.68,1.39,1.57,1.51,1.52
-62946,17,151,17151,69,39,23953355,23934152,12930,5880,366615722,360057998,4470,2491,969438728,955110060,0.53,0.66,6.53,6.65,1.54,1.57,2.47,2.51
-62946,17,165,17165,12861,5841,342662367,336123846,12930,5880,366615722,360057998,24913,11697,1001754823,983725654,99.47,99.34,93.47,93.35,51.62,49.94,34.21,34.17
-62947,17,069,17069,299,163,48428605,48320610,539,308,177492582,177079054,4320,2488,470285561,459794312,55.47,52.92,27.28,27.29,6.92,6.55,10.3,10.51
-62947,17,151,17151,172,117,103606239,103307568,539,308,177492582,177079054,4470,2491,969438728,955110060,31.91,37.99,58.37,58.34,3.85,4.7,10.69,10.82
-62947,17,165,17165,68,28,25457738,25450876,539,308,177492582,177079054,24913,11697,1001754823,983725654,12.62,9.09,14.34,14.37,0.27,0.24,2.54,2.59
-62948,17,199,17199,12865,5893,49673607,48619075,12865,5893,49673607,48619075,66357,30359,1150865682,1088181449,100,100,100,100,19.39,19.41,4.32,4.47
-62949,17,199,17199,810,400,4070506,4001695,810,400,4070506,4001695,66357,30359,1150865682,1088181449,100,100,100,100,1.22,1.32,0.35,0.37
-62950,17,077,17077,193,97,80682937,77920973,193,97,80682937,77920973,60218,28578,1560155284,1512763725,100,100,100,100,0.32,0.34,5.17,5.15
-62951,17,199,17199,5352,2459,65454159,63956813,5352,2459,65454159,63956813,66357,30359,1150865682,1088181449,100,100,100,100,8.07,8.1,5.69,5.88
-62952,17,003,17003,33,15,4970092,4969129,3372,1487,260365822,253513024,8238,4006,654234231,609965908,0.98,1.01,1.91,1.96,0.4,0.37,0.76,0.81
-62952,17,181,17181,3339,1472,255395730,248543895,3372,1487,260365822,253513024,17808,7924,1093358017,1070854490,99.02,98.99,98.09,98.04,18.75,18.58,23.36,23.21
-62953,17,127,17127,360,168,2561357,2237076,360,168,2561357,2237076,15429,7113,626295108,614390561,100,100,100,100,2.33,2.36,0.41,0.36
-62954,17,059,17059,515,247,127762588,126634253,515,247,127762588,126634253,5589,2746,849988972,836750424,100,100,100,100,9.21,8.99,15.03,15.13
-62956,17,127,17127,269,113,30420342,30134438,869,433,67779949,67185400,15429,7113,626295108,614390561,30.96,26.1,44.88,44.85,1.74,1.59,4.86,4.9
-62956,17,153,17153,600,320,37359607,37050962,869,433,67779949,67185400,6161,3155,526361402,515886434,69.04,73.9,55.12,55.15,9.74,10.14,7.1,7.18
-62957,17,003,17003,978,443,100938627,95889889,996,453,115774430,110312684,8238,4006,654234231,609965908,98.19,97.79,87.19,86.93,11.87,11.06,15.43,15.72
-62957,17,181,17181,18,10,14835803,14422795,996,453,115774430,110312684,17808,7924,1093358017,1070854490,1.81,2.21,12.81,13.07,0.1,0.13,1.36,1.35
-62958,17,077,17077,1871,900,61847673,58088441,2262,1093,124846238,118651437,60218,28578,1560155284,1512763725,82.71,82.34,49.54,48.96,3.11,3.15,3.96,3.84
-62958,17,181,17181,163,93,52282774,51902441,2262,1093,124846238,118651437,17808,7924,1093358017,1070854490,7.21,8.51,41.88,43.74,0.92,1.17,4.78,4.85
-62958,17,199,17199,228,100,10715791,8660555,2262,1093,124846238,118651437,66357,30359,1150865682,1088181449,10.08,9.15,8.58,7.3,0.34,0.33,0.93,0.8
-62959,17,199,17199,26948,12202,361389142,350234121,26948,12202,361389142,350234121,66357,30359,1150865682,1088181449,100,100,100,100,40.61,40.19,31.4,32.19
-62960,17,127,17127,11593,5379,301356051,296312149,11603,5384,306315525,301250793,15429,7113,626295108,614390561,99.91,99.91,98.38,98.36,75.14,75.62,48.12,48.23
-62960,17,151,17151,10,5,4959474,4938644,11603,5384,306315525,301250793,4470,2491,969438728,955110060,0.09,0.09,1.62,1.64,0.22,0.2,0.51,0.52
-62961,17,181,17181,65,23,596356,580949,65,23,596356,580949,17808,7924,1093358017,1070854490,100,100,100,100,0.37,0.29,0.05,0.05
-62962,17,003,17003,82,46,122596672,101668180,82,46,122596672,101668180,8238,4006,654234231,609965908,100,100,100,100,1,1.15,18.74,16.67
-62963,17,153,17153,611,284,13170285,11912566,611,284,13170285,11912566,6161,3155,526361402,515886434,100,100,100,100,9.92,9,2.5,2.31
-62964,17,153,17153,1456,744,69276357,68099604,1456,744,69276357,68099604,6161,3155,526361402,515886434,100,100,100,100,23.63,23.58,13.16,13.2
-62965,17,165,17165,125,59,1755551,1654544,125,59,1755551,1654544,24913,11697,1001754823,983725654,100,100,100,100,0.5,0.5,0.18,0.17
-62966,17,077,17077,15607,7512,301160135,293174741,15607,7512,301160135,293174741,60218,28578,1560155284,1512763725,100,100,100,100,25.92,26.29,19.3,19.38
-62967,17,087,17087,326,163,16874899,16821827,326,163,16874899,16821827,12582,5598,903552342,890735754,100,100,100,100,2.59,2.91,1.87,1.89
-62969,17,003,17003,731,400,55960479,51329077,731,400,55960479,51329077,8238,4006,654234231,609965908,100,100,100,100,8.87,9.99,8.55,8.42
-62970,17,153,17153,639,329,72518384,71718978,639,329,72518384,71718978,6161,3155,526361402,515886434,100,100,100,100,10.37,10.43,13.78,13.9
-62972,17,087,17087,1122,615,133516107,130176181,1205,682,176002225,172645170,12582,5598,903552342,890735754,93.11,90.18,75.86,75.4,8.92,10.99,14.78,14.61
-62972,17,151,17151,83,67,42486118,42468989,1205,682,176002225,172645170,4470,2491,969438728,955110060,6.89,9.82,24.14,24.6,1.86,2.69,4.38,4.45
-62974,17,199,17199,1401,618,70170043,69217505,1401,618,70170043,69217505,66357,30359,1150865682,1088181449,100,100,100,100,2.11,2.04,6.1,6.36
-62975,17,077,17077,279,135,60911551,59997379,279,135,60911551,59997379,60218,28578,1560155284,1512763725,100,100,100,100,0.46,0.47,3.9,3.97
-62976,17,153,17153,469,264,68528142,68179509,469,264,68528142,68179509,6161,3155,526361402,515886434,100,100,100,100,7.61,8.37,13.02,13.22
-62977,17,165,17165,700,314,51289868,51044170,700,314,51289868,51044170,24913,11697,1001754823,983725654,100,100,100,100,2.81,2.68,5.12,5.19
-62979,17,059,17059,1230,619,201289035,197745381,1230,619,201289035,197745381,5589,2746,849988972,836750424,100,100,100,100,22.01,22.54,23.68,23.63
-62982,17,069,17069,1328,673,21728749,20174298,1328,673,21728749,20174298,4320,2488,470285561,459794312,100,100,100,100,30.74,27.05,4.62,4.39
-62983,17,055,17055,1504,688,52941437,52297326,1504,688,52941437,52297326,39561,18525,1117434514,1059017642,100,100,100,100,3.8,3.71,4.74,4.94
-62984,17,059,17059,1841,900,211755041,205166535,1841,900,211755041,205166535,5589,2746,849988972,836750424,100,100,100,100,32.94,32.77,24.91,24.52
-62985,17,087,17087,437,211,67512863,67034629,845,468,175289915,173874772,12582,5598,903552342,890735754,51.72,45.09,38.51,38.55,3.47,3.77,7.47,7.53
-62985,17,151,17151,408,257,107777052,106840143,845,468,175289915,173874772,4470,2491,969438728,955110060,48.28,54.91,61.49,61.45,9.13,10.32,11.12,11.19
-62987,17,151,17151,219,126,84211431,84155445,1174,557,216715732,212152917,4470,2491,969438728,955110060,18.65,22.62,38.86,39.67,4.9,5.06,8.69,8.81
-62987,17,165,17165,517,226,85075892,82231861,1174,557,216715732,212152917,24913,11697,1001754823,983725654,44.04,40.57,39.26,38.76,2.08,1.93,8.49,8.36
-62987,17,199,17199,438,205,47428409,45765611,1174,557,216715732,212152917,66357,30359,1150865682,1088181449,37.31,36.8,21.89,21.57,0.66,0.68,4.12,4.21
-62988,17,003,17003,2110,789,161237790,161222167,2110,789,161237790,161222167,8238,4006,654234231,609965908,100,100,100,100,25.61,19.7,24.65,26.43
-62990,17,003,17003,1109,510,115274817,111088308,1109,510,115274817,111088308,8238,4006,654234231,609965908,100,100,100,100,13.46,12.73,17.62,18.21
-62992,17,003,17003,48,21,18485127,18485127,1032,525,90703258,90036361,8238,4006,654234231,609965908,4.65,4,20.38,20.53,0.58,0.52,2.83,3.03
-62992,17,153,17153,984,504,72218131,71551234,1032,525,90703258,90036361,6161,3155,526361402,515886434,95.35,96,79.62,79.47,15.97,15.97,13.72,13.87
-62994,17,077,17077,755,308,98082060,96702498,755,308,98082060,96702498,60218,28578,1560155284,1512763725,100,100,100,100,1.25,1.08,6.29,6.39
-62995,17,087,17087,5284,1774,284620388,281336137,5284,1774,284620388,281336137,12582,5598,903552342,890735754,100,100,100,100,42,31.69,31.5,31.58
-62996,17,153,17153,535,283,67206215,65670550,535,283,67206215,65670550,6161,3155,526361402,515886434,100,100,100,100,8.68,8.97,12.77,12.73
-62997,17,145,17145,599,267,895943,895943,599,267,895943,895943,22350,9426,1157602305,1144154902,100,100,100,100,2.68,2.83,0.08,0.08
-62998,17,181,17181,419,202,130333595,120094837,419,202,130333595,120094837,17808,7924,1093358017,1070854490,100,100,100,100,2.35,2.55,11.92,11.21
-62999,17,055,17055,1829,813,5697765,5554641,1829,813,5697765,5554641,39561,18525,1117434514,1059017642,100,100,100,100,4.62,4.39,0.51,0.52
-63005,29,189,29189,17753,6384,94776147,89940830,17753,6384,94776147,89940830,998954,438032,1354609842,1315195242,100,100,100,100,1.78,1.46,7,6.84
-63010,29,099,29099,35439,14159,57736991,56342909,35439,14159,57736991,56342909,218733,87626,1720488943,1700660922,100,100,100,100,16.2,16.16,3.36,3.31
-63011,29,189,29189,36347,14828,37358218,37358218,36347,14828,37358218,37358218,998954,438032,1354609842,1315195242,100,100,100,100,3.64,3.39,2.76,2.84
-63012,29,099,29099,9973,3659,75278196,73902237,9973,3659,75278196,73902237,218733,87626,1720488943,1700660922,100,100,100,100,4.56,4.18,4.38,4.35
-63013,29,071,29071,1589,669,97074570,97010631,1589,669,97074570,97010631,101492,43419,2410463474,2389732948,100,100,100,100,1.57,1.54,4.03,4.06
-63014,29,071,29071,688,336,98835293,93812559,779,375,105274283,100237814,101492,43419,2410463474,2389732948,88.32,89.6,93.88,93.59,0.68,0.77,4.1,3.93
-63014,29,073,29073,91,39,6438990,6425255,779,375,105274283,100237814,15222,8205,1358295940,1341103601,11.68,10.4,6.12,6.41,0.6,0.48,0.47,0.48
-63015,29,071,29071,1631,677,28962609,28440909,2076,842,44032327,43509691,101492,43419,2410463474,2389732948,78.56,80.4,65.78,65.37,1.61,1.56,1.2,1.19
-63015,29,099,29099,445,165,15069718,15068782,2076,842,44032327,43509691,218733,87626,1720488943,1700660922,21.44,19.6,34.22,34.63,0.2,0.19,0.88,0.89
-63016,29,099,29099,7582,3017,59494397,59097794,7582,3017,59494397,59097794,218733,87626,1720488943,1700660922,100,100,100,100,3.47,3.44,3.46,3.47
-63017,29,189,29189,41470,17735,51413876,50722249,41470,17735,51413876,50722249,998954,438032,1354609842,1315195242,100,100,100,100,4.15,4.05,3.8,3.86
-63019,29,099,29099,4449,1937,9605359,8492363,4449,1937,9605359,8492363,218733,87626,1720488943,1700660922,100,100,100,100,2.03,2.21,0.56,0.5
-63020,29,099,29099,20667,8611,364701395,363066152,20714,8643,368244603,366609360,218733,87626,1720488943,1700660922,99.77,99.63,99.04,99.03,9.45,9.83,21.2,21.35
-63020,29,221,29221,47,32,3543208,3543208,20714,8643,368244603,366609360,25195,11017,1974835318,1968164689,0.23,0.37,0.96,0.97,0.19,0.29,0.18,0.18
-63021,29,189,29189,56261,22553,57508028,56473197,56261,22553,57508028,56473197,998954,438032,1354609842,1315195242,100,100,100,100,5.63,5.15,4.25,4.29
-63023,29,099,29099,5831,2506,182314239,181933033,5831,2506,182314239,181933033,218733,87626,1720488943,1700660922,100,100,100,100,2.67,2.86,10.6,10.7
-63025,29,099,29099,2683,1106,44219468,42959452,13854,5218,106569985,103577510,218733,87626,1720488943,1700660922,19.37,21.2,41.49,41.48,1.23,1.26,2.57,2.53
-63025,29,189,29189,11171,4112,62350517,60618058,13854,5218,106569985,103577510,998954,438032,1354609842,1315195242,80.63,78.8,58.51,58.52,1.12,0.94,4.6,4.61
-63026,29,099,29099,20097,8458,32738101,31923938,44124,17360,67335961,65526686,218733,87626,1720488943,1700660922,45.55,48.72,48.62,48.72,9.19,9.65,1.9,1.88
-63026,29,189,29189,24027,8902,34597860,33602748,44124,17360,67335961,65526686,998954,438032,1354609842,1315195242,54.45,51.28,51.38,51.28,2.41,2.03,2.55,2.55
-63028,29,099,29099,25771,10464,273036079,269738003,26413,10756,320017926,316705389,218733,87626,1720488943,1700660922,97.57,97.29,85.32,85.17,11.78,11.94,15.87,15.86
-63028,29,186,29186,642,292,46981847,46967386,26413,10756,320017926,316705389,18145,8637,1312540197,1292799524,2.43,2.71,14.68,14.83,3.54,3.38,3.58,3.63
-63030,29,221,29221,407,172,50972832,50647548,407,172,50972832,50647548,25195,11017,1974835318,1968164689,100,100,100,100,1.62,1.56,2.58,2.57
-63031,29,189,29189,48212,20039,40915551,38008005,48212,20039,40915551,38008005,998954,438032,1354609842,1315195242,100,100,100,100,4.83,4.57,3.02,2.89
-63033,29,189,29189,43000,18401,32064529,32008713,43000,18401,32064529,32008713,998954,438032,1354609842,1315195242,100,100,100,100,4.3,4.2,2.37,2.43
-63034,29,189,29189,17761,6865,54511319,48504472,17761,6865,54511319,48504472,998954,438032,1354609842,1315195242,100,100,100,100,1.78,1.57,4.02,3.69
-63036,29,186,29186,176,250,13877120,13778334,1064,1783,70828512,69655369,18145,8637,1312540197,1292799524,16.54,14.02,19.59,19.78,0.97,2.89,1.06,1.07
-63036,29,187,29187,888,1533,56951392,55877035,1064,1783,70828512,69655369,65359,28458,1177598089,1170380864,83.46,85.98,80.41,80.22,1.36,5.39,4.84,4.77
-63037,29,071,29071,3241,1542,212897445,212485506,3241,1542,212897445,212485506,101492,43419,2410463474,2389732948,100,100,100,100,3.19,3.55,8.83,8.89
-63038,29,189,29189,6914,2532,54365159,54205565,6914,2532,54365159,54205565,998954,438032,1354609842,1315195242,100,100,100,100,0.69,0.58,4.01,4.12
-63039,29,071,29071,726,329,9936551,9914172,726,329,9936551,9914172,101492,43419,2410463474,2389732948,100,100,100,100,0.72,0.76,0.41,0.41
-63040,29,189,29189,8512,3100,11744869,11744869,8512,3100,11744869,11744869,998954,438032,1354609842,1315195242,100,100,100,100,0.85,0.71,0.87,0.89
-63041,29,071,29071,443,188,34956029,34846358,534,229,35850324,35740653,101492,43419,2410463474,2389732948,82.96,82.1,97.51,97.5,0.44,0.43,1.45,1.46
-63041,29,099,29099,91,41,894295,894295,534,229,35850324,35740653,218733,87626,1720488943,1700660922,17.04,17.9,2.49,2.5,0.04,0.05,0.05,0.05
-63042,29,189,29189,19602,9347,31723484,31552710,19602,9347,31723484,31552710,998954,438032,1354609842,1315195242,100,100,100,100,1.96,2.13,2.34,2.4
-63043,29,189,29189,22367,10030,37420037,36542078,22367,10030,37420037,36542078,998954,438032,1354609842,1315195242,100,100,100,100,2.24,2.29,2.76,2.78
-63044,29,189,29189,10568,4626,41044966,39188163,10568,4626,41044966,39188163,998954,438032,1354609842,1315195242,100,100,100,100,1.06,1.06,3.03,2.98
-63045,29,189,29189,3,3,5070189,4644832,3,3,5070189,4644832,998954,438032,1354609842,1315195242,100,100,100,100,0,0,0.37,0.35
-63047,29,099,29099,31,13,567836,567836,31,13,567836,567836,218733,87626,1720488943,1700660922,100,100,100,100,0.01,0.01,0.03,0.03
-63048,29,099,29099,3357,1404,9561829,8816595,3357,1404,9561829,8816595,218733,87626,1720488943,1700660922,100,100,100,100,1.53,1.6,0.56,0.52
-63049,29,099,29099,15689,6354,52392367,52392367,15896,6429,65410435,65399124,218733,87626,1720488943,1700660922,98.7,98.83,80.1,80.11,7.17,7.25,3.05,3.08
-63049,29,189,29189,207,75,13018068,13006757,15896,6429,65410435,65399124,998954,438032,1354609842,1315195242,1.3,1.17,19.9,19.89,0.02,0.02,0.96,0.99
-63050,29,099,29099,15716,6211,234867819,233298200,15716,6211,234867819,233298200,218733,87626,1720488943,1700660922,100,100,100,100,7.19,7.09,13.65,13.72
-63051,29,099,29099,14495,5656,120650256,119979659,14495,5656,120650256,119979659,218733,87626,1720488943,1700660922,100,100,100,100,6.63,6.45,7.01,7.05
-63052,29,099,29099,26431,9727,86182338,84331739,26431,9727,86182338,84331739,218733,87626,1720488943,1700660922,100,100,100,100,12.08,11.1,5.01,4.96
-63053,29,099,29099,62,29,65553,65553,62,29,65553,65553,218733,87626,1720488943,1700660922,100,100,100,100,0.03,0.03,0,0
-63055,29,071,29071,2449,1000,73369141,71201891,2449,1000,73369141,71201891,101492,43419,2410463474,2389732948,100,100,100,100,2.41,2.3,3.04,2.98
-63056,29,071,29071,2002,933,151879700,151466619,2002,933,151879700,151466619,101492,43419,2410463474,2389732948,100,100,100,100,1.97,2.15,6.3,6.34
-63057,29,099,29099,56,0,130940,130940,56,0,130940,130940,218733,87626,1720488943,1700660922,100,0,100,100,0.03,0,0.01,0.01
-63060,29,071,29071,2461,1056,123682134,123499505,2461,1056,123682134,123499505,101492,43419,2410463474,2389732948,100,100,100,100,2.42,2.43,5.13,5.17
-63061,29,071,29071,95,44,5458767,5402804,95,44,5458767,5402804,101492,43419,2410463474,2389732948,100,100,100,100,0.09,0.1,0.23,0.23
-63068,29,071,29071,4834,2117,231033386,228928067,4909,2160,235961567,233851502,101492,43419,2410463474,2389732948,98.47,98.01,97.91,97.89,4.76,4.88,9.58,9.58
-63068,29,073,29073,75,43,4928181,4923435,4909,2160,235961567,233851502,15222,8205,1358295940,1341103601,1.53,1.99,2.09,2.11,0.49,0.52,0.36,0.37
-63069,29,071,29071,10360,4523,84124922,83462409,15647,6145,181400182,179158493,101492,43419,2410463474,2389732948,66.21,73.6,46.38,46.59,10.21,10.42,3.49,3.49
-63069,29,099,29099,2043,823,39161794,38152740,15647,6145,181400182,179158493,218733,87626,1720488943,1700660922,13.06,13.39,21.59,21.3,0.93,0.94,2.28,2.24
-63069,29,189,29189,3244,799,58113466,57543344,15647,6145,181400182,179158493,998954,438032,1354609842,1315195242,20.73,13,32.04,32.12,0.32,0.18,4.29,4.38
-63070,29,099,29099,7438,3119,35992432,35195913,7438,3119,35992432,35195913,218733,87626,1720488943,1700660922,100,100,100,100,3.4,3.56,2.09,2.07
-63071,29,221,29221,1103,491,103522587,102959516,1103,491,103522587,102959516,25195,11017,1974835318,1968164689,100,100,100,100,4.38,4.46,5.24,5.23
-63072,29,071,29071,3060,1251,104973606,104472767,3194,1313,107458896,106958057,101492,43419,2410463474,2389732948,95.8,95.28,97.69,97.68,3.02,2.88,4.35,4.37
-63072,29,099,29099,134,62,2485290,2485290,3194,1313,107458896,106958057,218733,87626,1720488943,1700660922,4.2,4.72,2.31,2.32,0.06,0.07,0.14,0.15
-63073,29,071,29071,301,119,19522913,17766962,301,119,19522913,17766962,101492,43419,2410463474,2389732948,100,100,100,100,0.3,0.27,0.81,0.74
-63074,29,189,29189,15164,7542,9951665,9951665,15164,7542,9951665,9951665,998954,438032,1354609842,1315195242,100,100,100,100,1.52,1.72,0.73,0.76
-63077,29,071,29071,11798,5213,225423908,224777781,11798,5213,225423908,224777781,101492,43419,2410463474,2389732948,100,100,100,100,11.62,12.01,9.35,9.41
-63079,29,071,29071,58,25,2209361,2209361,58,25,2209361,2209361,101492,43419,2410463474,2389732948,100,100,100,100,0.06,0.06,0.09,0.09
-63080,29,055,29055,2092,891,24131418,24131418,13987,6427,676023371,675093150,24696,11955,1926312624,1923109129,14.96,13.86,3.57,3.57,8.47,7.45,1.25,1.25
-63080,29,071,29071,10672,4672,372076506,371729297,13987,6427,676023371,675093150,101492,43419,2410463474,2389732948,76.3,72.69,55.04,55.06,10.52,10.76,15.44,15.56
-63080,29,221,29221,1223,864,279815447,279232435,13987,6427,676023371,675093150,25195,11017,1974835318,1968164689,8.74,13.44,41.39,41.36,4.85,7.84,14.17,14.19
-63084,29,071,29071,17414,7047,194681456,194507515,17414,7047,194681456,194507515,101492,43419,2410463474,2389732948,100,100,100,100,17.16,16.23,8.08,8.14
-63087,29,099,29099,63,22,3463951,3463951,769,345,34363110,34256787,218733,87626,1720488943,1700660922,8.19,6.38,10.08,10.11,0.03,0.03,0.2,0.2
-63087,29,187,29187,706,323,30899159,30792836,769,345,34363110,34256787,65359,28458,1177598089,1170380864,91.81,93.62,89.92,89.89,1.08,1.14,2.62,2.63
-63088,29,189,29189,8269,4018,16241681,15460796,8269,4018,16241681,15460796,998954,438032,1354609842,1315195242,100,100,100,100,0.83,0.92,1.2,1.18
-63089,29,071,29071,5965,2367,94348061,93934749,5965,2367,94348061,93934749,101492,43419,2410463474,2389732948,100,100,100,100,5.88,5.45,3.91,3.93
-63090,29,071,29071,21524,9232,216726953,211572923,21524,9232,216726953,211572923,101492,43419,2410463474,2389732948,100,100,100,100,21.21,21.26,8.99,8.85
-63091,29,071,29071,165,72,25539040,25539040,1264,579,126027461,125230295,101492,43419,2410463474,2389732948,13.05,12.44,20.26,20.39,0.16,0.17,1.06,1.07
-63091,29,073,29073,1099,507,100488421,99691255,1264,579,126027461,125230295,15222,8205,1358295940,1341103601,86.95,87.56,79.74,79.61,7.22,6.18,7.4,7.43
-63101,29,510,29510,2620,2085,976846,976846,2620,2085,976846,976846,319294,176002,171026250,160343174,100,100,100,100,0.82,1.18,0.57,0.61
-63102,29,510,29510,2316,1351,5125911,3864674,2316,1351,5125911,3864674,319294,176002,171026250,160343174,100,100,100,100,0.73,0.77,3,2.41
-63103,29,510,29510,6900,5625,5592208,5592208,6900,5625,5592208,5592208,319294,176002,171026250,160343174,100,100,100,100,2.16,3.2,3.27,3.49
-63104,29,510,29510,18656,10840,9847412,8950000,18656,10840,9847412,8950000,319294,176002,171026250,160343174,100,100,100,100,5.84,6.16,5.76,5.58
-63105,29,189,29189,16613,6658,6526123,6526123,17667,7399,6883619,6883619,998954,438032,1354609842,1315195242,94.03,89.99,94.81,94.81,1.66,1.52,0.48,0.5
-63105,29,510,29510,1054,741,357496,357496,17667,7399,6883619,6883619,319294,176002,171026250,160343174,5.97,10.01,5.19,5.19,0.33,0.42,0.21,0.22
-63106,29,510,29510,11883,5865,5843886,5843886,11883,5865,5843886,5843886,319294,176002,171026250,160343174,100,100,100,100,3.72,3.33,3.42,3.64
-63107,29,510,29510,11912,7090,6218033,6218033,11912,7090,6218033,6218033,319294,176002,171026250,160343174,100,100,100,100,3.73,4.03,3.64,3.88
-63108,29,510,29510,21568,13197,5802373,5802373,21568,13197,5802373,5802373,319294,176002,171026250,160343174,100,100,100,100,6.75,7.5,3.39,3.62
-63109,29,510,29510,26946,14884,9425740,9248824,26946,14884,9425740,9248824,319294,176002,171026250,160343174,100,100,100,100,8.44,8.46,5.51,5.77
-63110,29,510,29510,17107,9404,16220321,16220321,17107,9404,16220321,16220321,319294,176002,171026250,160343174,100,100,100,100,5.36,5.34,9.48,10.12
-63111,29,510,29510,20313,10670,10320595,8383840,20313,10670,10320595,8383840,319294,176002,171026250,160343174,100,100,100,100,6.36,6.06,6.03,5.23
-63112,29,510,29510,20368,11931,8567955,8567955,20368,11931,8567955,8567955,319294,176002,171026250,160343174,100,100,100,100,6.38,6.78,5.01,5.34
-63113,29,510,29510,13167,7160,6574088,6574088,13167,7160,6574088,6574088,319294,176002,171026250,160343174,100,100,100,100,4.12,4.07,3.84,4.1
-63114,29,189,29189,36201,16568,22883140,22838169,36201,16568,22883140,22838169,998954,438032,1354609842,1315195242,100,100,100,100,3.62,3.78,1.69,1.74
-63115,29,510,29510,20775,11417,11057944,11057944,20775,11417,11057944,11057944,319294,176002,171026250,160343174,100,100,100,100,6.51,6.49,6.47,6.9
-63116,29,510,29510,43540,21983,14317597,14257521,43540,21983,14317597,14257521,319294,176002,171026250,160343174,100,100,100,100,13.64,12.49,8.37,8.89
-63117,29,189,29189,8569,4692,5805976,5805976,9163,5060,6101992,6101992,998954,438032,1354609842,1315195242,93.52,92.73,95.15,95.15,0.86,1.07,0.43,0.44
-63117,29,510,29510,594,368,296016,296016,9163,5060,6101992,6101992,319294,176002,171026250,160343174,6.48,7.27,4.85,4.85,0.19,0.21,0.17,0.18
-63118,29,510,29510,26704,14594,9362668,8687833,26704,14594,9362668,8687833,319294,176002,171026250,160343174,100,100,100,100,8.36,8.29,5.47,5.42
-63119,29,189,29189,33651,15196,21546841,21546841,33969,15446,21732317,21732317,998954,438032,1354609842,1315195242,99.06,98.38,99.15,99.15,3.37,3.47,1.59,1.64
-63119,29,510,29510,318,250,185476,185476,33969,15446,21732317,21732317,319294,176002,171026250,160343174,0.94,1.62,0.85,0.85,0.1,0.14,0.11,0.12
-63120,29,189,29189,1186,528,429726,429726,10296,4976,6259219,6259219,998954,438032,1354609842,1315195242,11.52,10.61,6.87,6.87,0.12,0.12,0.03,0.03
-63120,29,510,29510,9110,4448,5829493,5829493,10296,4976,6259219,6259219,319294,176002,171026250,160343174,88.48,89.39,93.13,93.13,2.85,2.53,3.41,3.64
-63121,29,189,29189,26602,12491,18594104,18594104,26602,12491,18594104,18594104,998954,438032,1354609842,1315195242,100,100,100,100,2.66,2.85,1.37,1.41
-63122,29,189,29189,38495,17320,36848890,36671420,38495,17320,36848890,36671420,998954,438032,1354609842,1315195242,100,100,100,100,3.85,3.95,2.72,2.79
-63123,29,189,29189,47056,22214,30964660,30964660,49308,23271,32566761,32521712,998954,438032,1354609842,1315195242,95.43,95.46,95.08,95.21,4.71,5.07,2.29,2.35
-63123,29,510,29510,2252,1057,1602101,1557052,49308,23271,32566761,32521712,319294,176002,171026250,160343174,4.57,4.54,4.92,4.79,0.71,0.6,0.94,0.97
-63124,29,189,29189,10417,4935,22670949,22670949,10417,4935,22670949,22670949,998954,438032,1354609842,1315195242,100,100,100,100,1.04,1.13,1.67,1.72
-63125,29,189,29189,31843,14785,27529697,25508057,32201,14961,27764403,25727230,998954,438032,1354609842,1315195242,98.89,98.82,99.15,99.15,3.19,3.38,2.03,1.94
-63125,29,510,29510,358,176,234706,219173,32201,14961,27764403,25727230,319294,176002,171026250,160343174,1.11,1.18,0.85,0.85,0.11,0.1,0.14,0.14
-63126,29,189,29189,15112,6811,12031136,12031136,15112,6811,12031136,12031136,998954,438032,1354609842,1315195242,100,100,100,100,1.51,1.55,0.89,0.91
-63127,29,189,29189,4939,2216,16534952,16301015,4939,2216,16534952,16301015,998954,438032,1354609842,1315195242,100,100,100,100,0.49,0.51,1.22,1.24
-63128,29,189,29189,29356,13134,39633228,38882716,29356,13134,39633228,38882716,998954,438032,1354609842,1315195242,100,100,100,100,2.94,3,2.93,2.96
-63129,29,189,29189,52718,22125,59193651,54122271,52718,22125,59193651,54122271,998954,438032,1354609842,1315195242,100,100,100,100,5.28,5.05,4.37,4.12
-63130,29,189,29189,29719,13824,12882333,12882333,30084,14020,13044463,13044463,998954,438032,1354609842,1315195242,98.79,98.6,98.76,98.76,2.98,3.16,0.95,0.98
-63130,29,510,29510,365,196,162130,162130,30084,14020,13044463,13044463,319294,176002,171026250,160343174,1.21,1.4,1.24,1.24,0.11,0.11,0.09,0.1
-63131,29,189,29189,16769,6416,36040575,36040575,16769,6416,36040575,36040575,998954,438032,1354609842,1315195242,100,100,100,100,1.68,1.46,2.66,2.74
-63132,29,189,29189,13988,6538,13628266,13628266,13988,6538,13628266,13628266,998954,438032,1354609842,1315195242,100,100,100,100,1.4,1.49,1.01,1.04
-63133,29,189,29189,8016,3509,7701600,7701600,8161,3660,7734843,7734843,998954,438032,1354609842,1315195242,98.22,95.87,99.57,99.57,0.8,0.8,0.57,0.59
-63133,29,510,29510,145,151,33243,33243,8161,3660,7734843,7734843,319294,176002,171026250,160343174,1.78,4.13,0.43,0.43,0.05,0.09,0.02,0.02
-63134,29,189,29189,13638,5731,21292661,21283008,13638,5731,21292661,21283008,998954,438032,1354609842,1315195242,100,100,100,100,1.37,1.31,1.57,1.62
-63135,29,189,29189,21334,9104,16269032,16248529,21334,9104,16269032,16248529,998954,438032,1354609842,1315195242,100,100,100,100,2.14,2.08,1.2,1.24
-63136,29,189,29189,45166,20031,26262146,26262146,48560,21585,27405368,27405368,998954,438032,1354609842,1315195242,93.01,92.8,95.83,95.83,4.52,4.57,1.94,2
-63136,29,510,29510,3394,1554,1143222,1143222,48560,21585,27405368,27405368,319294,176002,171026250,160343174,6.99,7.2,4.17,4.17,1.06,0.88,0.67,0.71
-63137,29,189,29189,19549,8223,15605309,15605309,20654,8771,22597228,19278628,998954,438032,1354609842,1315195242,94.65,93.75,69.06,80.95,1.96,1.88,1.15,1.19
-63137,29,510,29510,1105,548,6991919,3673319,20654,8771,22597228,19278628,319294,176002,171026250,160343174,5.35,6.25,30.94,19.05,0.35,0.31,4.09,2.29
-63138,29,189,29189,20175,9083,52470548,47511686,20175,9083,52470548,47511686,998954,438032,1354609842,1315195242,100,100,100,100,2.02,2.07,3.87,3.61
-63139,29,510,29510,22789,12843,10078120,10078120,22789,12843,10078120,10078120,319294,176002,171026250,160343174,100,100,100,100,7.14,7.3,5.89,6.29
-63140,29,189,29189,294,173,1303667,1303667,294,173,1303667,1303667,998954,438032,1354609842,1315195242,100,100,100,100,0.03,0.04,0.1,0.1
-63141,29,189,29189,20593,9040,36603879,36603879,20593,9040,36603879,36603879,998954,438032,1354609842,1315195242,100,100,100,100,2.06,2.06,2.7,2.78
-63143,29,189,29189,8016,4879,3805413,3805413,9678,5708,5106164,5104698,998954,438032,1354609842,1315195242,82.83,85.48,74.53,74.55,0.8,1.11,0.28,0.29
-63143,29,510,29510,1662,829,1300751,1299285,9678,5708,5106164,5104698,319294,176002,171026250,160343174,17.17,14.52,25.47,25.45,0.52,0.47,0.76,0.81
-63144,29,189,29189,8825,4775,6088574,6088574,8825,4775,6088574,6088574,998954,438032,1354609842,1315195242,100,100,100,100,0.88,1.09,0.45,0.46
-63146,29,189,29189,29262,15142,39273137,36259825,29262,15142,39273137,36259825,998954,438032,1354609842,1315195242,100,100,100,100,2.93,3.46,2.9,2.76
-63147,29,510,29510,11373,4745,17500289,15205092,11373,4745,17500289,15205092,319294,176002,171026250,160343174,100,100,100,100,3.56,2.7,10.23,9.48
-63155,29,510,29510,0,0,57711,57711,0,0,57711,57711,319294,176002,171026250,160343174,0,0,100,100,0,0,0.03,0.04
-63301,29,183,29183,48514,20603,254849899,228905760,48514,20603,254849899,228905760,360485,141016,1534846279,1451520382,100,100,100,100,13.46,14.61,16.6,15.77
-63303,29,183,29183,45834,19851,55393204,51405804,45834,19851,55393204,51405804,360485,141016,1534846279,1451520382,100,100,100,100,12.71,14.08,3.61,3.54
-63304,29,183,29183,40336,14765,116386671,108146922,40336,14765,116386671,108146922,360485,141016,1534846279,1451520382,100,100,100,100,11.19,10.47,7.58,7.45
-63330,29,163,29163,125,190,86678654,79129889,125,190,86678654,79129889,18516,7875,1773405209,1736425445,100,100,100,100,0.68,2.41,4.89,4.56
-63332,29,183,29183,1292,575,144311419,139276532,1292,575,144311419,139276532,360485,141016,1534846279,1451520382,100,100,100,100,0.36,0.41,9.4,9.6
-63333,29,113,29113,11,7,8848358,8712708,783,392,114051169,113468053,52566,21011,1658791598,1622772175,1.4,1.79,7.76,7.68,0.02,0.03,0.53,0.54
-63333,29,139,29139,772,385,105202811,104755345,783,392,114051169,113468053,12236,6130,1403794086,1388874432,98.6,98.21,92.24,92.32,6.31,6.28,7.49,7.54
-63334,29,113,29113,82,38,30774669,30658804,8569,2831,453961126,451815710,52566,21011,1658791598,1622772175,0.96,1.34,6.78,6.79,0.16,0.18,1.86,1.89
-63334,29,163,29163,8487,2793,423186457,421156906,8569,2831,453961126,451815710,18516,7875,1773405209,1736425445,99.04,98.66,93.22,93.21,45.84,35.47,23.86,24.25
-63336,29,163,29163,1146,663,195287907,186976244,1146,663,195287907,186976244,18516,7875,1773405209,1736425445,100,100,100,100,6.19,8.42,11.01,10.77
-63339,29,163,29163,1145,476,220326238,219001557,1145,476,220326238,219001557,18516,7875,1773405209,1736425445,100,100,100,100,6.18,6.04,12.42,12.61
-63341,29,183,29183,3530,1403,145354839,141822357,3530,1403,145354839,141822357,360485,141016,1534846279,1451520382,100,100,100,100,0.98,0.99,9.47,9.77
-63343,29,113,29113,4498,2091,275554146,265285637,4546,2118,296789032,286520523,52566,21011,1658791598,1622772175,98.94,98.73,92.85,92.59,8.56,9.95,16.61,16.35
-63343,29,163,29163,48,27,21234886,21234886,4546,2118,296789032,286520523,18516,7875,1773405209,1736425445,1.06,1.27,7.15,7.41,0.26,0.34,1.2,1.22
-63344,29,113,29113,503,222,89499475,89168876,1663,707,204027363,203377108,52566,21011,1658791598,1622772175,30.25,31.4,43.87,43.84,0.96,1.06,5.4,5.49
-63344,29,163,29163,1160,485,114527888,114208232,1663,707,204027363,203377108,18516,7875,1773405209,1736425445,69.75,68.6,56.13,56.16,6.26,6.16,6.46,6.58
-63345,29,007,29007,393,200,53585997,53231414,393,200,53585997,53231414,25529,10852,1804761101,1792879633,100,100,100,100,1.54,1.84,2.97,2.97
-63347,29,113,29113,3078,1273,108081775,97699918,3078,1273,108081775,97699918,52566,21011,1658791598,1622772175,100,100,100,100,5.86,6.06,6.52,6.02
-63348,29,113,29113,284,110,3091863,3077270,6059,2365,139720566,138581072,52566,21011,1658791598,1622772175,4.69,4.65,2.21,2.22,0.54,0.52,0.19,0.19
-63348,29,183,29183,3980,1547,107800400,107556496,6059,2365,139720566,138581072,360485,141016,1534846279,1451520382,65.69,65.41,77.15,77.61,1.1,1.1,7.02,7.41
-63348,29,219,29219,1795,708,28828303,27947306,6059,2365,139720566,138581072,32513,14685,1133818932,1110071693,29.63,29.94,20.63,20.17,5.52,4.82,2.54,2.52
-63349,29,113,29113,1889,771,81591974,80701439,1934,798,94344055,93391391,52566,21011,1658791598,1622772175,97.67,96.62,86.48,86.41,3.59,3.67,4.92,4.97
-63349,29,219,29219,45,27,12752081,12689952,1934,798,94344055,93391391,32513,14685,1133818932,1110071693,2.33,3.38,13.52,13.59,0.14,0.18,1.12,1.14
-63350,29,139,29139,562,299,63749434,62384493,562,299,63749434,62384493,12236,6130,1403794086,1388874432,100,100,100,100,4.59,4.88,4.54,4.49
-63351,29,139,29139,1201,541,66524777,66274664,1768,796,143752105,143267492,12236,6130,1403794086,1388874432,67.93,67.96,46.28,46.26,9.82,8.83,4.74,4.77
-63351,29,219,29219,567,255,77227328,76992828,1768,796,143752105,143267492,32513,14685,1133818932,1110071693,32.07,32.04,53.72,53.74,1.74,1.74,6.81,6.94
-63352,29,007,29007,1022,502,244120781,243002130,1078,523,274997128,273739929,25529,10852,1804761101,1792879633,94.81,95.98,88.77,88.77,4,4.63,13.53,13.55
-63352,29,173,29173,56,21,30876347,30737799,1078,523,274997128,273739929,10167,5183,1253123775,1216726347,5.19,4.02,11.23,11.23,0.55,0.41,2.46,2.53
-63353,29,163,29163,4593,2344,223943869,218269978,4593,2344,223943869,218269978,18516,7875,1773405209,1736425445,100,100,100,100,24.81,29.77,12.63,12.57
-63357,29,183,29183,312,135,14306581,14306581,5534,2378,339727382,328525156,360485,141016,1534846279,1451520382,5.64,5.68,4.21,4.35,0.09,0.1,0.93,0.99
-63357,29,219,29219,5222,2243,325420801,314218575,5534,2378,339727382,328525156,32513,14685,1133818932,1110071693,94.36,94.32,95.79,95.65,16.06,15.27,28.7,28.31
-63359,29,007,29007,52,19,23081001,22935817,1296,675,370686596,368430767,25529,10852,1804761101,1792879633,4.01,2.81,6.23,6.23,0.2,0.18,1.28,1.28
-63359,29,113,29113,35,23,10071850,10031578,1296,675,370686596,368430767,52566,21011,1658791598,1622772175,2.7,3.41,2.72,2.72,0.07,0.11,0.61,0.62
-63359,29,139,29139,635,364,143550736,142571656,1296,675,370686596,368430767,12236,6130,1403794086,1388874432,49,53.93,38.73,38.7,5.19,5.94,10.23,10.27
-63359,29,163,29163,574,269,193983009,192891716,1296,675,370686596,368430767,18516,7875,1773405209,1736425445,44.29,39.85,52.33,52.35,3.1,3.42,10.94,11.11
-63361,29,027,29027,266,184,90231850,89710614,4525,2203,414531073,411587737,44332,18522,2194645547,2161538606,5.88,8.35,21.77,21.8,0.6,0.99,4.11,4.15
-63361,29,139,29139,4259,2019,324299223,321877123,4525,2203,414531073,411587737,12236,6130,1403794086,1388874432,94.12,91.65,78.23,78.2,34.81,32.94,23.1,23.18
-63362,29,113,29113,6350,2394,96646571,95377694,6350,2394,96646571,95377694,52566,21011,1658791598,1622772175,100,100,100,100,12.08,11.39,5.83,5.88
-63363,29,139,29139,1614,884,218911413,217523857,1719,955,226977772,225496063,12236,6130,1403794086,1388874432,93.89,92.57,96.45,96.46,13.19,14.42,15.59,15.66
-63363,29,219,29219,105,71,8066359,7972206,1719,955,226977772,225496063,32513,14685,1133818932,1110071693,6.11,7.43,3.55,3.54,0.32,0.48,0.71,0.72
-63366,29,183,29183,46175,17758,181505897,178063818,46175,17758,181505897,178063818,360485,141016,1534846279,1451520382,100,100,100,100,12.81,12.59,11.83,12.27
-63367,29,183,29183,19433,7958,36747703,34642454,19433,7958,36747703,34642454,360485,141016,1534846279,1451520382,100,100,100,100,5.39,5.64,2.39,2.39
-63368,29,183,29183,43360,15431,42698642,42698642,43360,15431,42698642,42698642,360485,141016,1534846279,1451520382,100,100,100,100,12.03,10.94,2.78,2.94
-63369,29,113,29113,2258,886,87217875,83857627,2258,886,87217875,83857627,52566,21011,1658791598,1622772175,100,100,100,100,4.3,4.22,5.26,5.17
-63370,29,113,29113,33,17,623746,620954,33,17,623746,620954,52566,21011,1658791598,1622772175,100,100,100,100,0.06,0.08,0.04,0.04
-63373,29,183,29183,603,309,50914359,42986852,603,309,50914359,42986852,360485,141016,1534846279,1451520382,100,100,100,100,0.17,0.22,3.32,2.96
-63376,29,183,29183,70828,27628,107626412,107584057,70828,27628,107626412,107584057,360485,141016,1534846279,1451520382,100,100,100,100,19.65,19.59,7.01,7.41
-63377,29,113,29113,2462,1049,345022930,341927099,2462,1049,345022930,341927099,52566,21011,1658791598,1622772175,100,100,100,100,4.68,4.99,20.8,21.07
-63379,29,113,29113,23348,9034,354728213,350952331,23348,9034,354728213,350952331,52566,21011,1658791598,1622772175,100,100,100,100,44.42,43,21.38,21.63
-63381,29,113,29113,202,93,24071735,23935746,532,244,70341126,69944152,52566,21011,1658791598,1622772175,37.97,38.11,34.22,34.22,0.38,0.44,1.45,1.47
-63381,29,139,29139,105,48,23782467,23664696,532,244,70341126,69944152,12236,6130,1403794086,1388874432,19.74,19.67,33.81,33.83,0.86,0.78,1.69,1.7
-63381,29,219,29219,225,103,22486924,22343710,532,244,70341126,69944152,32513,14685,1133818932,1110071693,42.29,42.21,31.97,31.95,0.69,0.7,1.98,2.01
-63382,29,007,29007,4546,1549,152718229,152005194,4897,1709,300028211,298493560,25529,10852,1804761101,1792879633,92.83,90.64,50.9,50.92,17.81,14.27,8.46,8.48
-63382,29,163,29163,62,26,12544579,12483579,4897,1709,300028211,298493560,18516,7875,1773405209,1736425445,1.27,1.52,4.18,4.18,0.33,0.33,0.71,0.72
-63382,29,173,29173,289,134,134765403,134004787,4897,1709,300028211,298493560,10167,5183,1253123775,1216726347,5.9,7.84,44.92,44.89,2.84,2.59,10.75,11.01
-63383,29,113,29113,174,72,9645690,9602807,15770,6547,414431824,410849910,52566,21011,1658791598,1622772175,1.1,1.1,2.33,2.34,0.33,0.34,0.58,0.59
-63383,29,219,29219,15596,6475,404786134,401247103,15770,6547,414431824,410849910,32513,14685,1133818932,1110071693,98.9,98.9,97.67,97.66,47.97,44.09,35.7,36.15
-63384,29,007,29007,99,50,34963245,34692707,1955,922,219596467,217544579,25529,10852,1804761101,1792879633,5.06,5.42,15.92,15.95,0.39,0.46,1.94,1.94
-63384,29,027,29027,8,6,6431156,6389857,1955,922,219596467,217544579,44332,18522,2194645547,2161538606,0.41,0.65,2.93,2.94,0.02,0.03,0.29,0.3
-63384,29,139,29139,1848,866,178202066,176462015,1955,922,219596467,217544579,12236,6130,1403794086,1388874432,94.53,93.93,81.15,81.12,15.1,14.13,12.69,12.71
-63385,29,183,29183,35750,12777,173912133,173598873,35750,12777,173912133,173598873,360485,141016,1534846279,1451520382,100,100,100,100,9.92,9.06,11.33,11.96
-63386,29,183,29183,538,276,103038120,80525234,538,276,103038120,80525234,360485,141016,1534846279,1451520382,100,100,100,100,0.15,0.2,6.71,5.55
-63387,29,113,29113,73,31,245238,241598,73,31,245238,241598,52566,21011,1658791598,1622772175,100,100,100,100,0.14,0.15,0.01,0.01
-63388,29,027,29027,710,466,160755902,158779912,710,466,160755902,158779912,44332,18522,2194645547,2161538606,100,100,100,100,1.6,2.52,7.32,7.35
-63389,29,113,29113,6336,2520,107038460,105129167,6336,2520,107038460,105129167,52566,21011,1658791598,1622772175,100,100,100,100,12.05,11.99,6.45,6.48
-63390,29,113,29113,950,380,26037030,25790922,9760,5113,204808316,199470126,52566,21011,1658791598,1622772175,9.73,7.43,12.71,12.93,1.81,1.81,1.57,1.59
-63390,29,219,29219,8810,4733,178771286,173679204,9760,5113,204808316,199470126,32513,14685,1133818932,1110071693,90.27,92.57,87.29,87.07,27.1,32.23,15.77,15.65
-63401,29,127,29127,19604,8752,140739483,137814716,22067,9750,276457923,270291422,28781,12826,1150741772,1131627516,88.84,89.76,50.91,50.99,68.11,68.24,12.23,12.18
-63401,29,173,29173,2463,998,135718440,132476706,22067,9750,276457923,270291422,10167,5183,1253123775,1216726347,11.16,10.24,49.09,49.01,24.23,19.26,10.83,10.89
-63430,29,045,29045,639,281,143559062,135776964,639,281,143559062,135776964,7139,3473,1325620518,1307146971,100,100,100,100,8.95,8.09,10.83,10.39
-63431,29,121,29121,334,167,121135379,120849441,334,167,121135379,120849441,15566,7665,2104031386,2075167141,100,100,100,100,2.15,2.18,5.76,5.82
-63432,29,045,29045,40,25,26786725,26565019,513,282,230909905,229861066,7139,3473,1325620518,1307146971,7.8,8.87,11.6,11.56,0.56,0.72,2.02,2.03
-63432,29,199,29199,473,257,204123180,203296047,513,282,230909905,229861066,4843,2369,1137770212,1130971492,92.2,91.13,88.4,88.44,9.77,10.85,17.94,17.98
-63433,29,163,29163,68,40,40999787,32405844,68,40,40999787,32405844,18516,7875,1773405209,1736425445,100,100,100,100,0.37,0.51,2.31,1.87
-63434,29,205,29205,687,317,166409293,166195843,687,317,166409293,166195843,6373,3206,1300995080,1297230497,100,100,100,100,10.78,9.89,12.79,12.81
-63435,29,045,29045,385,251,123363108,121371544,4219,1743,373351972,364920296,7139,3473,1325620518,1307146971,9.13,14.4,33.04,33.26,5.39,7.23,9.31,9.29
-63435,29,111,29111,3834,1492,249988864,243548752,4219,1743,373351972,364920296,10211,4535,1322954243,1308052730,90.87,85.6,66.96,66.74,37.55,32.9,18.9,18.62
-63436,29,173,29173,1155,658,222105644,218520805,1155,658,222105644,218520805,10167,5183,1253123775,1216726347,100,100,100,100,11.36,12.7,17.72,17.96
-63437,29,121,29121,33,16,19684740,19638593,1503,762,322088695,320529067,15566,7665,2104031386,2075167141,2.2,2.1,6.11,6.13,0.21,0.21,0.94,0.95
-63437,29,137,29137,34,23,18584011,18515520,1503,762,322088695,320529067,8840,4798,1735715303,1677414025,2.26,3.02,5.77,5.78,0.38,0.48,1.07,1.1
-63437,29,205,29205,1436,723,283819944,282374954,1503,762,322088695,320529067,6373,3206,1300995080,1297230497,95.54,94.88,88.12,88.1,22.53,22.55,21.82,21.77
-63438,29,111,29111,357,162,25630259,25600460,466,206,36159999,35755949,10211,4535,1322954243,1308052730,76.61,78.64,70.88,71.6,3.5,3.57,1.94,1.96
-63438,29,127,29127,109,44,10529740,10155489,466,206,36159999,35755949,28781,12826,1150741772,1131627516,23.39,21.36,29.12,28.4,0.38,0.34,0.92,0.9
-63439,29,127,29127,33,25,14515422,14515422,127,78,52247025,52247025,28781,12826,1150741772,1131627516,25.98,32.05,27.78,27.78,0.11,0.19,1.26,1.28
-63439,29,205,29205,94,53,37731603,37731603,127,78,52247025,52247025,6373,3206,1300995080,1297230497,74.02,67.95,72.22,72.22,1.47,1.65,2.9,2.91
-63440,29,111,29111,1244,554,169426151,169204038,1407,642,232685538,232219153,10211,4535,1322954243,1308052730,88.42,86.29,72.81,72.86,12.18,12.22,12.81,12.94
-63440,29,127,29127,148,80,58000194,57755922,1407,642,232685538,232219153,28781,12826,1150741772,1131627516,10.52,12.46,24.93,24.87,0.51,0.62,5.04,5.1
-63440,29,205,29205,15,8,5259193,5259193,1407,642,232685538,232219153,6373,3206,1300995080,1297230497,1.07,1.25,2.26,2.26,0.24,0.25,0.4,0.41
-63441,29,163,29163,1055,537,216067822,214612078,1121,565,234841715,232916387,18516,7875,1773405209,1736425445,94.11,95.04,92.01,92.14,5.7,6.82,12.18,12.36
-63441,29,173,29173,66,28,18773893,18304309,1121,565,234841715,232916387,10167,5183,1253123775,1216726347,5.89,4.96,7.99,7.86,0.65,0.54,1.5,1.5
-63443,29,127,29127,61,24,17685849,17684933,440,259,127260914,125585164,28781,12826,1150741772,1131627516,13.86,9.27,13.9,14.08,0.21,0.19,1.54,1.56
-63443,29,137,29137,118,87,58445736,57822344,440,259,127260914,125585164,8840,4798,1735715303,1677414025,26.82,33.59,45.93,46.04,1.33,1.81,3.37,3.45
-63443,29,205,29205,261,148,51129329,50077887,440,259,127260914,125585164,6373,3206,1300995080,1297230497,59.32,57.14,40.18,39.88,4.1,4.62,3.93,3.86
-63445,29,045,29045,3911,1820,433684703,429920103,3911,1820,433684703,429920103,7139,3473,1325620518,1307146971,100,100,100,100,54.78,52.4,32.72,32.89
-63446,29,103,29103,667,342,257433982,256190557,691,363,283517264,282272321,4131,2289,1312683278,1305381639,96.53,94.21,90.8,90.76,16.15,14.94,19.61,19.63
-63446,29,111,29111,24,21,26083282,26081764,691,363,283517264,282272321,10211,4535,1322954243,1308052730,3.47,5.79,9.2,9.24,0.24,0.46,1.97,1.99
-63447,29,111,29111,1133,548,221080936,220510091,1133,548,221080936,220510091,10211,4535,1322954243,1308052730,100,100,100,100,11.1,12.08,16.71,16.86
-63448,29,111,29111,1520,733,130966645,127749144,1520,733,130966645,127749144,10211,4535,1322954243,1308052730,100,100,100,100,14.89,16.16,9.9,9.77
-63450,29,137,29137,20,15,25190596,25160123,132,69,65802090,65771617,8840,4798,1735715303,1677414025,15.15,21.74,38.28,38.25,0.23,0.31,1.45,1.5
-63450,29,205,29205,112,54,40611494,40611494,132,69,65802090,65771617,6373,3206,1300995080,1297230497,84.85,78.26,61.72,61.75,1.76,1.68,3.12,3.13
-63451,29,205,29205,244,137,149610052,149362011,244,137,149610052,149362011,6373,3206,1300995080,1297230497,100,100,100,100,3.83,4.27,11.5,11.51
-63452,29,111,29111,1167,570,249019845,248666667,1167,570,249019845,248666667,10211,4535,1322954243,1308052730,100,100,100,100,11.43,12.57,18.82,19.01
-63453,29,045,29045,519,219,157908457,157008883,519,219,157908457,157008883,7139,3473,1325620518,1307146971,100,100,100,100,7.27,6.31,11.91,12.01
-63454,29,111,29111,368,163,29303251,29291695,946,424,98518204,98226450,10211,4535,1322954243,1308052730,38.9,38.44,29.74,29.82,3.6,3.59,2.21,2.24
-63454,29,127,29127,578,261,69214953,68934755,946,424,98518204,98226450,28781,12826,1150741772,1131627516,61.1,61.56,70.26,70.18,2.01,2.03,6.01,6.09
-63456,29,127,29127,1141,497,194391334,194388755,4271,2290,489342709,477700710,28781,12826,1150741772,1131627516,26.72,21.7,39.72,40.69,3.96,3.87,16.89,17.18
-63456,29,137,29137,2437,1190,125068675,122516456,4271,2290,489342709,477700710,8840,4798,1735715303,1677414025,57.06,51.97,25.56,25.65,27.57,24.8,7.21,7.3
-63456,29,173,29173,693,603,169882700,160795499,4271,2290,489342709,477700710,10167,5183,1253123775,1216726347,16.23,26.33,34.72,33.66,6.82,11.63,13.56,13.22
-63457,29,111,29111,337,141,89366160,89243103,337,141,89366160,89243103,10211,4535,1322954243,1308052730,100,100,100,100,3.3,3.11,6.76,6.82
-63458,29,103,29103,197,124,78734480,78009622,197,124,78734480,78009622,4131,2289,1312683278,1305381639,100,100,100,100,4.77,5.42,6,5.98
-63459,29,163,29163,53,25,24624113,24054536,4153,1824,366157545,359117760,18516,7875,1773405209,1736425445,1.28,1.37,6.73,6.7,0.29,0.32,1.39,1.39
-63459,29,173,29173,4100,1799,341533432,335063224,4153,1824,366157545,359117760,10167,5183,1253123775,1216726347,98.72,98.63,93.27,93.3,40.33,34.71,27.25,27.54
-63460,29,103,29103,328,200,222062865,221400321,328,200,222062865,221400321,4131,2289,1312683278,1305381639,100,100,100,100,7.94,8.74,16.92,16.96
-63461,29,127,29127,5876,2597,417892357,410159865,5876,2597,417892357,410159865,28781,12826,1150741772,1131627516,100,100,100,100,20.42,20.25,36.32,36.25
-63462,29,137,29137,188,146,137533912,130065283,1458,1056,336454155,316340828,8840,4798,1735715303,1677414025,12.89,13.83,40.88,41.12,2.13,3.04,7.92,7.75
-63462,29,173,29173,1270,910,198920243,186275545,1458,1056,336454155,316340828,10167,5183,1253123775,1216726347,87.11,86.17,59.12,58.88,12.49,17.56,15.87,15.31
-63463,29,127,29127,652,292,122498331,122052080,652,292,122498331,122052080,28781,12826,1150741772,1131627516,100,100,100,100,2.27,2.28,10.65,10.79
-63464,29,103,29103,21,24,3322842,3316530,21,24,3322842,3316530,4131,2289,1312683278,1305381639,100,100,100,100,0.51,1.05,0.25,0.25
-63465,29,045,29045,407,207,117513040,115478854,407,207,117513040,115478854,7139,3473,1325620518,1307146971,100,100,100,100,5.7,5.96,8.86,8.83
-63467,29,173,29173,75,32,547673,547673,75,32,547673,547673,10167,5183,1253123775,1216726347,100,100,100,100,0.74,0.62,0.04,0.05
-63468,29,137,29137,306,154,136755154,136293462,2644,1319,364769918,363922531,8840,4798,1735715303,1677414025,11.57,11.68,37.49,37.45,3.46,3.21,7.88,8.13
-63468,29,205,29205,2338,1165,228014764,227629069,2644,1319,364769918,363922531,6373,3206,1300995080,1297230497,88.43,88.32,62.51,62.55,36.69,36.34,17.53,17.55
-63469,29,103,29103,8,8,7472948,7444629,1194,609,345882356,345433072,4131,2289,1312683278,1305381639,0.67,1.31,2.16,2.16,0.19,0.35,0.57,0.57
-63469,29,205,29205,1186,601,338409408,337988443,1194,609,345882356,345433072,6373,3206,1300995080,1297230497,99.33,98.69,97.84,97.84,18.61,18.75,26.01,26.05
-63471,29,111,29111,60,29,31393190,28074881,639,283,136667299,126240460,10211,4535,1322954243,1308052730,9.39,10.25,22.97,22.24,0.59,0.64,2.37,2.15
-63471,29,127,29127,579,254,105274109,98165579,639,283,136667299,126240460,28781,12826,1150741772,1131627516,90.61,89.75,77.03,77.76,2.01,1.98,9.15,8.67
-63472,29,045,29045,587,275,6045387,5987619,587,275,6045387,5987619,7139,3473,1325620518,1307146971,100,100,100,100,8.22,7.92,0.46,0.46
-63473,29,045,29045,95,56,77300308,77173943,262,178,177995968,177256078,7139,3473,1325620518,1307146971,36.26,31.46,43.43,43.54,1.33,1.61,5.83,5.9
-63473,29,111,29111,167,122,100695660,100082135,262,178,177995968,177256078,10211,4535,1322954243,1308052730,63.74,68.54,56.57,56.46,1.64,2.69,7.61,7.65
-63474,29,045,29045,455,274,167169330,166415092,479,282,174120997,173363387,7139,3473,1325620518,1307146971,94.99,97.16,96.01,95.99,6.37,7.89,12.61,12.73
-63474,29,199,29199,24,8,6951667,6948295,479,282,174120997,173363387,4843,2369,1137770212,1130971492,5.01,2.84,3.99,4.01,0.5,0.34,0.61,0.61
-63501,29,001,29001,21532,9321,535355694,532136550,21532,9321,535355694,532136550,25607,11263,1474830099,1469361117,100,100,100,100,84.09,82.76,36.3,36.22
-63530,29,121,29121,868,435,259956539,258105935,868,435,259956539,258105935,15566,7665,2104031386,2075167141,100,100,100,100,5.58,5.68,12.36,12.44
-63531,29,103,29103,362,252,114476856,113740933,532,334,216438150,215194459,4131,2289,1312683278,1305381639,68.05,75.45,52.89,52.85,8.76,11.01,8.72,8.71
-63531,29,199,29199,170,82,101961294,101453526,532,334,216438150,215194459,4843,2369,1137770212,1130971492,31.95,24.55,47.11,47.15,3.51,3.46,8.96,8.97
-63532,29,121,29121,1322,656,134481254,132516869,1322,656,134481254,132516869,15566,7665,2104031386,2075167141,100,100,100,100,8.49,8.56,6.39,6.39
-63533,29,001,29001,796,373,151909301,151860818,805,382,171231747,171145258,25607,11263,1474830099,1469361117,98.88,97.64,88.72,88.73,3.11,3.31,10.3,10.34
-63533,29,103,29103,9,9,19322446,19284440,805,382,171231747,171145258,4131,2289,1312683278,1305381639,1.12,2.36,11.28,11.27,0.22,0.39,1.47,1.48
-63534,29,121,29121,804,428,197005735,191426629,804,428,197005735,191426629,15566,7665,2104031386,2075167141,100,100,100,100,5.17,5.58,9.36,9.22
-63535,29,171,29171,14,10,13270009,13270009,114,64,68012603,67872014,4979,2982,1345787317,1339845120,12.28,15.63,19.51,19.55,0.28,0.34,0.99,0.99
-63535,29,197,29197,100,54,54742594,54602005,114,64,68012603,67872014,4431,2102,798128402,795911533,87.72,84.38,80.49,80.45,2.26,2.57,6.86,6.86
-63536,29,197,29197,691,332,117406725,117064284,851,407,196727031,196230371,4431,2102,798128402,795911533,81.2,81.57,59.68,59.66,15.59,15.79,14.71,14.71
-63536,29,199,29199,160,75,79320306,79166087,851,407,196727031,196230371,4843,2369,1137770212,1130971492,18.8,18.43,40.32,40.34,3.3,3.17,6.97,7
-63537,29,103,29103,1916,1002,340045696,338088778,1916,1002,340045696,338088778,4131,2289,1312683278,1305381639,100,100,100,100,46.38,43.77,25.9,25.9
-63538,29,121,29121,283,165,149899467,147715552,283,165,149899467,147715552,15566,7665,2104031386,2075167141,100,100,100,100,1.82,2.15,7.12,7.12
-63539,29,121,29121,206,145,111890264,111538737,206,145,111890264,111538737,15566,7665,2104031386,2075167141,100,100,100,100,1.32,1.89,5.32,5.37
-63540,29,001,29001,150,61,22530718,22529122,150,61,22530718,22529122,25607,11263,1474830099,1469361117,100,100,100,100,0.59,0.54,1.53,1.53
-63541,29,197,29197,409,210,99401223,99264442,409,210,99401223,99264442,4431,2102,798128402,795911533,100,100,100,100,9.23,9.99,12.45,12.47
-63543,29,199,29199,352,185,101009843,100432814,352,185,101009843,100432814,4843,2369,1137770212,1130971492,100,100,100,100,7.27,7.81,8.88,8.88
-63544,29,001,29001,359,203,155896410,155843148,818,460,317458793,316955638,25607,11263,1474830099,1469361117,43.89,44.13,49.11,49.17,1.4,1.8,10.57,10.61
-63544,29,171,29171,34,33,43640009,43640009,818,460,317458793,316955638,4979,2982,1345787317,1339845120,4.16,7.17,13.75,13.77,0.68,1.11,3.24,3.26
-63544,29,211,29211,425,224,117922374,117472481,818,460,317458793,316955638,6714,3358,1687387615,1678263572,51.96,48.7,37.15,37.06,6.33,6.67,6.99,7
-63545,29,211,29211,1111,597,297553562,296462311,1111,597,297553562,296462311,6714,3358,1687387615,1678263572,100,100,100,100,16.55,17.78,17.63,17.66
-63546,29,001,29001,977,425,191851901,190032353,1715,741,297199924,295008157,25607,11263,1474830099,1469361117,56.97,57.35,64.55,64.42,3.82,3.77,13.01,12.93
-63546,29,197,29197,738,316,105348023,104975804,1715,741,297199924,295008157,4431,2102,798128402,795911533,43.03,42.65,35.45,35.58,16.66,15.03,13.2,13.19
-63547,29,001,29001,13,6,7715570,7715570,459,255,177141319,176001745,25607,11263,1474830099,1469361117,2.83,2.35,4.36,4.38,0.05,0.05,0.52,0.53
-63547,29,103,29103,446,249,169425749,168286175,459,255,177141319,176001745,4131,2289,1312683278,1305381639,97.17,97.65,95.64,95.62,10.8,10.88,12.91,12.89
-63548,29,197,29197,1287,606,199262037,198474697,1287,606,199262037,198474697,4431,2102,798128402,795911533,100,100,100,100,29.05,28.83,24.97,24.94
-63549,29,001,29001,402,150,126446888,126390077,2742,1197,375128971,374324656,25607,11263,1474830099,1469361117,14.66,12.53,33.71,33.76,1.57,1.33,8.57,8.6
-63549,29,121,29121,2340,1047,248682083,247934579,2742,1197,375128971,374324656,15566,7665,2104031386,2075167141,85.34,87.47,66.29,66.24,15.03,13.66,11.82,11.95
-63551,29,171,29171,338,200,89293358,89293358,338,200,89293358,89293358,4979,2982,1345787317,1339845120,100,100,100,100,6.79,6.71,6.64,6.66
-63552,29,121,29121,7926,3820,346036454,334442074,7926,3820,346036454,334442074,15566,7665,2104031386,2075167141,100,100,100,100,50.92,49.84,16.45,16.12
-63555,29,199,29199,3201,1553,517875467,513690147,3201,1553,517875467,513690147,4843,2369,1137770212,1130971492,100,100,100,100,66.1,65.56,45.52,45.42
-63556,29,211,29211,3779,1749,629965585,625567005,3779,1749,629965585,625567005,6714,3358,1687387615,1678263572,100,100,100,100,56.29,52.08,37.33,37.27
-63557,29,001,29001,2,8,20140843,20140843,291,204,270143702,269300600,25607,11263,1474830099,1469361117,0.69,3.92,7.46,7.48,0.01,0.07,1.37,1.37
-63557,29,115,29115,229,149,163372735,162640371,291,204,270143702,269300600,12761,6429,1609357328,1594303225,78.69,73.04,60.48,60.39,1.79,2.32,10.15,10.2
-63557,29,121,29121,60,47,86630124,86519386,291,204,270143702,269300600,15566,7665,2104031386,2075167141,20.62,23.04,32.07,32.13,0.39,0.61,4.12,4.17
-63558,29,041,29041,181,106,93221208,92440954,742,412,294566627,292449373,7831,4167,1985905418,1945550588,24.39,25.73,31.65,31.61,2.31,2.54,4.69,4.75
-63558,29,121,29121,561,306,201345419,200008419,742,412,294566627,292449373,15566,7665,2104031386,2075167141,75.61,74.27,68.35,68.39,3.6,3.99,9.57,9.64
-63559,29,001,29001,1376,716,262982774,262712636,1420,748,286434475,286164337,25607,11263,1474830099,1469361117,96.9,95.72,91.81,91.8,5.37,6.36,17.83,17.88
-63559,29,171,29171,44,32,23451701,23451701,1420,748,286434475,286164337,4979,2982,1345787317,1339845120,3.1,4.28,8.19,8.2,0.88,1.07,1.74,1.75
-63560,29,171,29171,10,5,12535290,12502368,239,136,110297726,110052412,4979,2982,1345787317,1339845120,4.18,3.68,11.36,11.36,0.2,0.17,0.93,0.93
-63560,29,211,29211,229,131,97762436,97550044,239,136,110297726,110052412,6714,3358,1687387615,1678263572,95.82,96.32,88.64,88.64,3.41,3.9,5.79,5.81
-63561,29,197,29197,1206,584,221967800,221530301,1206,584,221967800,221530301,4431,2102,798128402,795911533,100,100,100,100,27.22,27.78,27.81,27.83
-63563,29,103,29103,177,79,100385414,99619654,575,266,193591805,192409981,4131,2289,1312683278,1305381639,30.78,29.7,51.85,51.77,4.28,3.45,7.65,7.63
-63563,29,199,29199,398,187,93206391,92790327,575,266,193591805,192409981,4843,2369,1137770212,1130971492,69.22,70.3,48.15,48.23,8.22,7.89,8.19,8.2
-63565,29,171,29171,3805,2280,712494770,707702329,3805,2280,712494770,707702329,4979,2982,1345787317,1339845120,100,100,100,100,76.42,76.46,52.94,52.82
-63566,29,115,29115,26,18,26298662,26198900,125,86,78208388,77881554,12761,6429,1609357328,1594303225,20.8,20.93,33.63,33.64,0.2,0.28,1.63,1.64
-63566,29,211,29211,99,68,51909726,51682654,125,86,78208388,77881554,6714,3358,1687387615,1678263572,79.2,79.07,66.37,66.36,1.47,2.03,3.08,3.08
-63567,29,171,29171,192,117,28707572,28707572,192,117,28707572,28707572,4979,2982,1345787317,1339845120,100,100,100,100,3.86,3.92,2.13,2.14
-63601,29,187,29187,16656,7416,146873484,146464394,16656,7416,146873484,146464394,65359,28458,1177598089,1170380864,100,100,100,100,25.48,26.06,12.47,12.51
-63620,29,093,29093,1360,791,344630743,344004716,1619,997,509492502,506935176,10630,5329,1429840336,1425165244,84,79.34,67.64,67.86,12.79,14.84,24.1,24.14
-63620,29,123,29123,137,119,102982073,101895541,1619,997,509492502,506935176,12226,5970,1288776444,1280463424,8.46,11.94,20.21,20.1,1.12,1.99,7.99,7.96
-63620,29,179,29179,122,87,61879686,61034919,1619,997,509492502,506935176,6696,4033,2109320007,2093947170,7.54,8.73,12.15,12.04,1.82,2.16,2.93,2.91
-63621,29,093,29093,1192,612,160201091,159175106,1228,634,171062586,169954404,10630,5329,1429840336,1425165244,97.07,96.53,93.65,93.66,11.21,11.48,11.2,11.17
-63621,29,123,29123,36,22,10861495,10779298,1228,634,171062586,169954404,12226,5970,1288776444,1280463424,2.93,3.47,6.35,6.34,0.29,0.37,0.84,0.84
-63622,29,221,29221,1011,461,116567971,116033057,1011,461,116567971,116033057,25195,11017,1974835318,1968164689,100,100,100,100,4.01,4.18,5.9,5.9
-63623,29,093,29093,882,389,260961987,260887264,882,389,260961987,260887264,10630,5329,1429840336,1425165244,100,100,100,100,8.3,7.3,18.25,18.31
-63624,29,093,29093,122,61,26429837,25928782,3757,1826,162147677,160253148,10630,5329,1429840336,1425165244,3.25,3.34,16.3,16.18,1.15,1.14,1.85,1.82
-63624,29,187,29187,3093,1444,86879791,85711411,3757,1826,162147677,160253148,65359,28458,1177598089,1170380864,82.33,79.08,53.58,53.49,4.73,5.07,7.38,7.32
-63624,29,221,29221,542,321,48838049,48612955,3757,1826,162147677,160253148,25195,11017,1974835318,1968164689,14.43,17.58,30.12,30.34,2.15,2.91,2.47,2.47
-63625,29,093,29093,43,34,52904876,52711428,457,284,208730413,208155279,10630,5329,1429840336,1425165244,9.41,11.97,25.35,25.32,0.4,0.64,3.7,3.7
-63625,29,179,29179,414,250,155825537,155443851,457,284,208730413,208155279,6696,4033,2109320007,2093947170,90.59,88.03,74.65,74.68,6.18,6.2,7.39,7.42
-63626,29,187,29187,105,41,10241388,10241388,1037,412,41196176,40893429,65359,28458,1177598089,1170380864,10.13,9.95,24.86,25.04,0.16,0.14,0.87,0.88
-63626,29,221,29221,932,371,30954788,30652041,1037,412,41196176,40893429,25195,11017,1974835318,1968164689,89.87,90.05,75.14,74.96,3.7,3.37,1.57,1.56
-63627,29,099,29099,157,61,13726736,12254369,2937,1289,197137659,188426207,218733,87626,1720488943,1700660922,5.35,4.73,6.96,6.5,0.07,0.07,0.8,0.72
-63627,29,186,29186,2780,1228,183410923,176171838,2937,1289,197137659,188426207,18145,8637,1312540197,1292799524,94.65,95.27,93.04,93.5,15.32,14.22,13.97,13.63
-63628,29,099,29099,33,22,6151564,6106812,16014,6551,304630830,302306702,218733,87626,1720488943,1700660922,0.21,0.34,2.02,2.02,0.02,0.03,0.36,0.36
-63628,29,186,29186,157,70,21274561,21256384,16014,6551,304630830,302306702,18145,8637,1312540197,1292799524,0.98,1.07,6.98,7.03,0.87,0.81,1.62,1.64
-63628,29,187,29187,15622,6354,265420129,263195007,16014,6551,304630830,302306702,65359,28458,1177598089,1170380864,97.55,96.99,87.13,87.06,23.9,22.33,22.54,22.49
-63628,29,221,29221,202,105,11784576,11748499,16014,6551,304630830,302306702,25195,11017,1974835318,1968164689,1.26,1.6,3.87,3.89,0.8,0.95,0.6,0.6
-63629,29,065,29065,274,141,110965414,110962070,1314,640,672655249,670443619,15657,7285,1954162445,1949717319,20.85,22.03,16.5,16.55,1.75,1.94,5.68,5.69
-63629,29,179,29179,869,418,269426382,267301584,1314,640,672655249,670443619,6696,4033,2109320007,2093947170,66.13,65.31,40.05,39.87,12.98,10.36,12.77,12.77
-63629,29,203,29203,171,81,292263453,292179965,1314,640,672655249,670443619,8441,4164,2600345139,2599881132,13.01,12.66,43.45,43.58,2.03,1.95,11.24,11.24
-63630,29,187,29187,23,6,11711446,11711446,4062,1657,173336567,172607409,65359,28458,1177598089,1170380864,0.57,0.36,6.76,6.79,0.04,0.02,0.99,1
-63630,29,221,29221,4039,1651,161625121,160895963,4062,1657,173336567,172607409,25195,11017,1974835318,1968164689,99.43,99.64,93.24,93.21,16.03,14.99,8.18,8.17
-63631,29,093,29093,169,84,46827997,46821490,849,421,107684755,107612529,10630,5329,1429840336,1425165244,19.91,19.95,43.49,43.51,1.59,1.58,3.28,3.29
-63631,29,221,29221,680,337,60856758,60791039,849,421,107684755,107612529,25195,11017,1974835318,1968164689,80.09,80.05,56.51,56.49,2.7,3.06,3.08,3.09
-63633,29,179,29179,645,369,254084504,253491008,645,369,254084504,253491008,6696,4033,2109320007,2093947170,100,100,100,100,9.63,9.15,12.05,12.11
-63636,29,093,29093,533,257,43221389,42990109,608,316,97665860,96693882,10630,5329,1429840336,1425165244,87.66,81.33,44.25,44.46,5.01,4.82,3.02,3.02
-63636,29,123,29123,40,35,27207701,26936378,608,316,97665860,96693882,12226,5970,1288776444,1280463424,6.58,11.08,27.86,27.86,0.33,0.59,2.11,2.1
-63636,29,223,29223,35,24,27236770,26767395,608,316,97665860,96693882,13521,8083,2004816904,1966257806,5.76,7.59,27.89,27.68,0.26,0.3,1.36,1.36
-63637,29,187,29187,1329,585,43206281,43149255,1329,585,43206281,43149255,65359,28458,1177598089,1170380864,100,100,100,100,2.03,2.06,3.67,3.69
-63638,29,179,29179,2886,1596,689535017,688174832,2920,1639,861082951,859689155,6696,4033,2109320007,2093947170,98.84,97.38,80.08,80.05,43.1,39.57,32.69,32.86
-63638,29,203,29203,34,43,171547934,171514323,2920,1639,861082951,859689155,8441,4164,2600345139,2599881132,1.16,2.62,19.92,19.95,0.4,1.03,6.6,6.6
-63640,29,186,29186,1522,671,167950341,167249750,26335,10474,541556417,539523848,18145,8637,1312540197,1292799524,5.78,6.41,31.01,31,8.39,7.77,12.8,12.94
-63640,29,187,29187,24813,9803,373606076,372274098,26335,10474,541556417,539523848,65359,28458,1177598089,1170380864,94.22,93.59,68.99,69,37.96,34.45,31.73,31.81
-63645,29,123,29123,10999,5241,879647756,873602004,11420,5486,992385846,986177722,12226,5970,1288776444,1280463424,96.31,95.53,88.64,88.58,89.96,87.79,68.25,68.23
-63645,29,186,29186,102,57,41562502,41503614,11420,5486,992385846,986177722,18145,8637,1312540197,1292799524,0.89,1.04,4.19,4.21,0.56,0.66,3.17,3.21
-63645,29,187,29187,319,188,71175588,71072104,11420,5486,992385846,986177722,65359,28458,1177598089,1170380864,2.79,3.43,7.17,7.21,0.49,0.66,6.04,6.07
-63648,29,187,29187,127,49,5791332,5791332,1628,664,76338532,76297839,65359,28458,1177598089,1170380864,7.8,7.38,7.59,7.59,0.19,0.17,0.49,0.49
-63648,29,221,29221,1501,615,70547200,70506507,1628,664,76338532,76297839,25195,11017,1974835318,1968164689,92.2,92.62,92.41,92.41,5.96,5.58,3.57,3.58
-63650,29,093,29093,3890,1861,207473984,206631624,4401,2115,287410615,285794605,10630,5329,1429840336,1425165244,88.39,87.99,72.19,72.3,36.59,34.92,14.51,14.5
-63650,29,123,29123,39,31,8838400,8806215,4401,2115,287410615,285794605,12226,5970,1288776444,1280463424,0.89,1.47,3.08,3.08,0.32,0.52,0.69,0.69
-63650,29,187,29187,472,223,71098231,70356766,4401,2115,287410615,285794605,65359,28458,1177598089,1170380864,10.72,10.54,24.74,24.62,0.72,0.78,6.04,6.01
-63653,29,187,29187,1206,493,3743792,3743792,1206,493,3743792,3743792,65359,28458,1177598089,1170380864,100,100,100,100,1.85,1.73,0.32,0.32
-63654,29,093,29093,21,9,2221058,2220051,706,423,195932417,193674852,10630,5329,1429840336,1425165244,2.97,2.13,1.13,1.15,0.2,0.17,0.16,0.16
-63654,29,179,29179,685,414,193711359,191454801,706,423,195932417,193674852,6696,4033,2109320007,2093947170,97.03,97.87,98.87,98.85,10.23,10.27,9.18,9.14
-63655,29,017,29017,444,206,77739708,77618890,1523,786,381440190,380293520,12363,5878,1608896827,1600368466,29.15,26.21,20.38,20.41,3.59,3.5,4.83,4.85
-63655,29,123,29123,975,522,259239019,258443988,1523,786,381440190,380293520,12226,5970,1288776444,1280463424,64.02,66.41,67.96,67.96,7.97,8.74,20.12,20.18
-63655,29,223,29223,104,58,44461463,44230642,1523,786,381440190,380293520,13521,8083,2004816904,1966257806,6.83,7.38,11.66,11.63,0.77,0.72,2.22,2.25
-63656,29,093,29093,450,232,78436163,78301682,531,301,167231001,166433541,10630,5329,1429840336,1425165244,84.75,77.08,46.9,47.05,4.23,4.35,5.49,5.49
-63656,29,179,29179,81,69,88794838,88131859,531,301,167231001,166433541,6696,4033,2109320007,2093947170,15.25,22.92,53.1,52.95,1.21,1.71,4.21,4.21
-63660,29,221,29221,4276,1410,97184893,96681132,4276,1410,97184893,96681132,25195,11017,1974835318,1968164689,100,100,100,100,16.97,12.8,4.92,4.91
-63662,29,017,29017,1185,566,169890153,169672009,1185,566,169890153,169672009,12363,5878,1608896827,1600368466,100,100,100,100,9.59,9.63,10.56,10.6
-63663,29,093,29093,723,381,1799703,1789179,723,381,1799703,1789179,10630,5329,1429840336,1425165244,100,100,100,100,6.8,7.15,0.13,0.13
-63664,29,221,29221,8920,3967,764263675,761703436,8920,3967,764263675,761703436,25195,11017,1974835318,1968164689,100,100,100,100,35.4,36.01,38.7,38.7
-63665,29,179,29179,241,175,180437497,179142045,241,175,180437497,179142045,6696,4033,2109320007,2093947170,100,100,100,100,3.6,4.34,8.55,8.56
-63666,29,179,29179,93,37,7364682,7361264,93,37,7364682,7361264,6696,4033,2109320007,2093947170,100,100,100,100,1.39,0.92,0.35,0.35
-63670,29,186,29186,11295,5342,680625674,670470974,11295,5342,680625674,670470974,18145,8637,1312540197,1292799524,100,100,100,100,62.25,61.85,51.86,51.86
-63673,17,157,17157,47,46,67896719,60580887,2115,1024,292223058,283148575,33476,13707,1546753273,1490537612,2.22,4.49,23.23,21.4,0.14,0.34,4.39,4.06
-63673,29,157,29157,597,251,67469110,67166444,2115,1024,292223058,283148575,18971,8568,1253968967,1228570257,28.23,24.51,23.09,23.72,3.15,2.93,5.38,5.47
-63673,29,186,29186,1471,727,156857229,155401244,2115,1024,292223058,283148575,18145,8637,1312540197,1292799524,69.55,71,53.68,54.88,8.11,8.42,11.95,12.02
-63674,29,221,29221,132,57,8796937,8758849,132,57,8796937,8758849,25195,11017,1974835318,1968164689,100,100,100,100,0.52,0.52,0.45,0.45
-63675,29,093,29093,144,78,33832674,33818184,144,78,33832674,33818184,10630,5329,1429840336,1425165244,100,100,100,100,1.35,1.46,2.37,2.37
-63701,29,031,29031,36812,15423,343531024,334871973,36812,15423,343531024,334871973,75674,32616,1518573051,1498398199,100,100,100,100,48.65,47.29,22.62,22.35
-63703,29,031,29031,8182,4243,37845292,33404030,8182,4243,37845292,33404030,75674,32616,1518573051,1498398199,100,100,100,100,10.81,13.01,2.49,2.23
-63730,29,017,29017,447,218,109153254,108277890,3430,1583,314519060,312031406,12363,5878,1608896827,1600368466,13.03,13.77,34.7,34.7,3.62,3.71,6.78,6.77
-63730,29,031,29031,263,123,39812621,39748224,3430,1583,314519060,312031406,75674,32616,1518573051,1498398199,7.67,7.77,12.66,12.74,0.35,0.38,2.62,2.65
-63730,29,207,29207,2720,1242,165553185,164005292,3430,1583,314519060,312031406,29968,13609,2147154582,2132134868,79.3,78.46,52.64,52.56,9.08,9.13,7.71,7.69
-63732,29,031,29031,384,162,39259661,39259661,834,361,104896998,98398093,75674,32616,1518573051,1498398199,46.04,44.88,37.43,39.9,0.51,0.5,2.59,2.62
-63732,29,157,29157,450,199,65637337,59138432,834,361,104896998,98398093,18971,8568,1253968967,1228570257,53.96,55.12,62.57,60.1,2.37,2.32,5.23,4.81
-63735,29,201,29201,44,18,16545602,16532185,847,390,156437112,156046434,39191,16987,1102965461,1087768829,5.19,4.62,10.58,10.59,0.11,0.11,1.5,1.52
-63735,29,207,29207,803,372,139891510,139514249,847,390,156437112,156046434,29968,13609,2147154582,2132134868,94.81,95.38,89.42,89.41,2.68,2.73,6.52,6.54
-63736,29,201,29201,3310,1370,180375613,174810242,3310,1370,180375613,174810242,39191,16987,1102965461,1087768829,100,100,100,100,8.45,8.06,16.35,16.07
-63738,29,207,29207,76,42,748425,743236,76,42,748425,743236,29968,13609,2147154582,2132134868,100,100,100,100,0.25,0.31,0.03,0.03
-63739,29,031,29031,464,247,37403885,37314861,464,247,37403885,37314861,75674,32616,1518573051,1498398199,100,100,100,100,0.61,0.76,2.46,2.49
-63740,29,031,29031,964,438,115490351,114972754,5339,2359,232424852,230948421,75674,32616,1518573051,1498398199,18.06,18.57,49.69,49.78,1.27,1.34,7.61,7.67
-63740,29,201,29201,4375,1921,116934501,115975667,5339,2359,232424852,230948421,39191,16987,1102965461,1087768829,81.94,81.43,50.31,50.22,11.16,11.31,10.6,10.66
-63742,29,201,29201,64,38,798404,798404,64,38,798404,798404,39191,16987,1102965461,1087768829,100,100,100,100,0.16,0.22,0.07,0.07
-63743,29,031,29031,122,47,16143019,16100371,122,47,16143019,16100371,75674,32616,1518573051,1498398199,100,100,100,100,0.16,0.14,1.06,1.07
-63744,29,031,29031,111,55,315408,315408,111,55,315408,315408,75674,32616,1518573051,1498398199,100,100,100,100,0.15,0.17,0.02,0.02
-63745,29,031,29031,66,26,13423787,13360639,66,26,13423787,13360639,75674,32616,1518573051,1498398199,100,100,100,100,0.09,0.08,0.88,0.89
-63746,29,157,29157,65,25,3265025,3265025,65,25,3265025,3265025,18971,8568,1253968967,1228570257,100,100,100,100,0.34,0.29,0.26,0.27
-63747,29,031,29031,469,197,52332277,52314004,469,197,52332277,52314004,75674,32616,1518573051,1498398199,100,100,100,100,0.62,0.6,3.45,3.49
-63748,29,157,29157,1015,477,197193606,189107617,1015,477,197193606,189107617,18971,8568,1253968967,1228570257,100,100,100,100,5.35,5.57,15.73,15.39
-63750,29,017,29017,43,29,23409602,23279064,43,29,23409602,23279064,12363,5878,1608896827,1600368466,100,100,100,100,0.35,0.49,1.46,1.45
-63751,29,017,29017,1249,658,233095897,232256125,1249,658,233095897,232256125,12363,5878,1608896827,1600368466,100,100,100,100,10.1,11.19,14.49,14.51
-63755,29,031,29031,24006,9984,447816353,442587054,24006,9984,447816353,442587054,75674,32616,1518573051,1498398199,100,100,100,100,31.72,30.61,29.49,29.54
-63758,29,201,29201,170,84,1079866,1066152,170,84,1079866,1066152,39191,16987,1102965461,1087768829,100,100,100,100,0.43,0.49,0.1,0.1
-63760,29,017,29017,614,255,76334402,76126493,614,255,76334402,76126493,12363,5878,1608896827,1600368466,100,100,100,100,4.97,4.34,4.74,4.76
-63763,29,223,29223,223,112,64939819,64913755,223,112,64939819,64913755,13521,8083,2004816904,1966257806,100,100,100,100,1.65,1.39,3.24,3.3
-63764,29,017,29017,5795,2667,489184406,488408237,5984,2742,501883318,501107149,12363,5878,1608896827,1600368466,96.84,97.26,97.47,97.47,46.87,45.37,30.4,30.52
-63764,29,031,29031,189,75,12698912,12698912,5984,2742,501883318,501107149,75674,32616,1518573051,1498398199,3.16,2.74,2.53,2.53,0.25,0.23,0.84,0.85
-63766,29,017,29017,208,104,44404721,44320110,1288,555,130457239,130255396,12363,5878,1608896827,1600368466,16.15,18.74,34.04,34.03,1.68,1.77,2.76,2.77
-63766,29,031,29031,1080,451,86052518,85935286,1288,555,130457239,130255396,75674,32616,1518573051,1498398199,83.85,81.26,65.96,65.97,1.43,1.38,5.67,5.74
-63767,29,201,29201,655,302,3454506,3454506,655,302,3454506,3454506,39191,16987,1102965461,1087768829,100,100,100,100,1.67,1.78,0.31,0.32
-63769,29,031,29031,1389,612,135498097,135416227,1389,612,135498097,135416227,75674,32616,1518573051,1498398199,100,100,100,100,1.84,1.88,8.92,9.04
-63770,29,031,29031,97,37,1212426,1212426,192,78,4957498,4957498,75674,32616,1518573051,1498398199,50.52,47.44,24.46,24.46,0.13,0.11,0.08,0.08
-63770,29,157,29157,95,41,3745072,3745072,192,78,4957498,4957498,18971,8568,1253968967,1228570257,49.48,52.56,75.54,75.54,0.5,0.48,0.3,0.3
-63771,29,031,29031,9,8,4499760,4499760,2862,1237,255023005,254464296,75674,32616,1518573051,1498398199,0.31,0.65,1.76,1.77,0.01,0.02,0.3,0.3
-63771,29,201,29201,2668,1140,194428005,193918769,2862,1237,255023005,254464296,39191,16987,1102965461,1087768829,93.22,92.16,76.24,76.21,6.81,6.71,17.63,17.83
-63771,29,207,29207,185,89,56095240,56045767,2862,1237,255023005,254464296,29968,13609,2147154582,2132134868,6.46,7.19,22,22.03,0.62,0.65,2.61,2.63
-63774,29,201,29201,76,45,8562290,8560099,76,45,8562290,8560099,39191,16987,1102965461,1087768829,100,100,100,100,0.19,0.26,0.78,0.79
-63775,29,031,29031,93,44,10365711,10349557,16710,7559,914396248,903868944,75674,32616,1518573051,1498398199,0.56,0.58,1.13,1.15,0.12,0.13,0.68,0.69
-63775,29,157,29157,16617,7515,904030537,893519387,16710,7559,914396248,903868944,18971,8568,1253968967,1228570257,99.44,99.42,98.87,98.85,87.59,87.71,72.09,72.73
-63780,29,031,29031,3,1,2983503,2770982,6740,2867,144257302,139720348,75674,32616,1518573051,1498398199,0.04,0.03,2.07,1.98,0,0,0.2,0.18
-63780,29,201,29201,6737,2866,141273799,136949366,6740,2867,144257302,139720348,39191,16987,1102965461,1087768829,99.96,99.97,97.93,98.02,17.19,16.87,12.81,12.59
-63781,29,017,29017,1272,552,166610072,166297325,1272,552,166610072,166297325,12363,5878,1608896827,1600368466,100,100,100,100,10.29,9.39,10.36,10.39
-63782,29,017,29017,274,135,40083656,39897082,274,135,40083656,39897082,12363,5878,1608896827,1600368466,100,100,100,100,2.22,2.3,2.49,2.49
-63783,29,157,29157,132,60,12628280,12628280,132,60,12628280,12628280,18971,8568,1253968967,1228570257,100,100,100,100,0.7,0.7,1.01,1.03
-63784,29,201,29201,279,107,2201297,2201297,279,107,2201297,2201297,39191,16987,1102965461,1087768829,100,100,100,100,0.71,0.63,0.2,0.2
-63785,29,017,29017,29,11,3356921,3355343,1000,454,125245367,124621413,12363,5878,1608896827,1600368466,2.9,2.42,2.68,2.69,0.23,0.19,0.21,0.21
-63785,29,031,29031,971,443,121888446,121266070,1000,454,125245367,124621413,75674,32616,1518573051,1498398199,97.1,97.58,97.32,97.31,1.28,1.36,8.03,8.09
-63787,29,017,29017,719,413,147472366,146617788,719,413,147472366,146617788,12363,5878,1608896827,1600368466,100,100,100,100,5.82,7.03,9.17,9.16
-63801,29,143,29143,2842,1236,172942323,172716777,23123,10112,544281407,543271829,18956,8531,1804120002,1747828331,12.29,12.22,31.77,31.79,14.99,14.49,9.59,9.88
-63801,29,201,29201,20227,8851,316673307,315964793,23123,10112,544281407,543271829,39191,16987,1102965461,1087768829,87.48,87.53,58.18,58.16,51.61,52.1,28.71,29.05
-63801,29,207,29207,54,25,54665777,54590259,23123,10112,544281407,543271829,29968,13609,2147154582,2132134868,0.23,0.25,10.04,10.05,0.18,0.18,2.55,2.56
-63820,29,133,29133,226,104,1248268,1248268,226,104,1248268,1248268,14358,5711,1110490010,1065995440,100,100,100,100,1.57,1.82,0.11,0.12
-63821,29,069,29069,970,444,96071845,95647801,970,444,96071845,95647801,31953,14419,1417200656,1401361859,100,100,100,100,3.04,3.08,6.78,6.83
-63822,29,207,29207,2867,1329,171806717,171246322,2867,1329,171806717,171246322,29968,13609,2147154582,2132134868,100,100,100,100,9.57,9.77,8,8.03
-63823,29,133,29133,1210,551,87823606,87788841,1247,566,103316108,103236118,14358,5711,1110490010,1065995440,97.03,97.35,85,85.04,8.43,9.65,7.91,8.24
-63823,29,201,29201,37,15,15492502,15447277,1247,566,103316108,103236118,39191,16987,1102965461,1087768829,2.97,2.65,15,14.96,0.09,0.09,1.4,1.42
-63824,29,201,29201,164,69,231877,231877,164,69,231877,231877,39191,16987,1102965461,1087768829,100,100,100,100,0.42,0.41,0.02,0.02
-63825,29,207,29207,4409,1963,256858138,254527749,4409,1963,256858138,254527749,29968,13609,2147154582,2132134868,100,100,100,100,14.71,14.42,11.96,11.94
-63826,29,155,29155,84,43,8088412,8076603,84,43,8088412,8076603,18296,8161,1329786469,1275682068,100,100,100,100,0.46,0.53,0.61,0.63
-63827,29,155,29155,829,400,231373585,229174386,829,400,231373585,229174386,18296,8161,1329786469,1275682068,100,100,100,100,4.53,4.9,17.4,17.96
-63828,29,143,29143,345,123,2537451,2537451,345,123,2537451,2537451,18956,8531,1804120002,1747828331,100,100,100,100,1.82,1.44,0.14,0.15
-63829,29,069,29069,1120,576,62691073,61967829,1120,576,62691073,61967829,31953,14419,1417200656,1401361859,100,100,100,100,3.51,3.99,4.42,4.42
-63830,29,155,29155,7102,3140,202610429,177909321,7102,3140,202610429,177909321,18296,8161,1329786469,1275682068,100,100,100,100,38.82,38.48,15.24,13.95
-63833,29,143,29143,183,78,124197247,124000739,242,110,212302519,211840946,18956,8531,1804120002,1747828331,75.62,70.91,58.5,58.53,0.97,0.91,6.88,7.09
-63833,29,207,29207,59,32,88105272,87840207,242,110,212302519,211840946,29968,13609,2147154582,2132134868,24.38,29.09,41.5,41.47,0.2,0.24,4.1,4.12
-63834,29,133,29133,6750,2270,570206529,542813878,7135,2431,675120421,644672073,14358,5711,1110490010,1065995440,94.6,93.38,84.46,84.2,47.01,39.75,51.35,50.92
-63834,29,201,29201,385,161,104913892,101858195,7135,2431,675120421,644672073,39191,16987,1102965461,1087768829,5.4,6.62,15.54,15.8,0.98,0.95,9.51,9.36
-63837,29,069,29069,1653,742,58773435,58747255,1653,742,58773435,58747255,31953,14419,1417200656,1401361859,100,100,100,100,5.17,5.15,4.15,4.19
-63839,29,155,29155,485,197,4196028,4196028,485,197,4196028,4196028,18296,8161,1329786469,1275682068,100,100,100,100,2.65,2.41,0.32,0.33
-63841,29,207,29207,13123,5977,346882397,345352916,13123,5977,346882397,345352916,29968,13609,2147154582,2132134868,100,100,100,100,43.79,43.92,16.16,16.2
-63845,29,133,29133,5741,2548,450008079,432965326,5814,2585,545918552,528648880,14358,5711,1110490010,1065995440,98.74,98.57,82.43,81.9,39.98,44.62,40.52,40.62
-63845,29,143,29143,73,37,95910473,95683554,5814,2585,545918552,528648880,18956,8531,1804120002,1747828331,1.26,1.43,17.57,18.1,0.39,0.43,5.32,5.47
-63846,29,207,29207,1554,711,286611084,284961399,1554,711,286611084,284961399,29968,13609,2147154582,2132134868,100,100,100,100,5.19,5.22,13.35,13.37
-63847,29,069,29069,64,34,4651607,4651607,64,34,4651607,4651607,31953,14419,1417200656,1401361859,100,100,100,100,0.2,0.24,0.33,0.33
-63848,29,143,29143,1565,660,168421456,167237292,1592,671,189849827,188274444,18956,8531,1804120002,1747828331,98.3,98.36,88.71,88.83,8.26,7.74,9.34,9.57
-63848,29,155,29155,27,11,21428371,21037152,1592,671,189849827,188274444,18296,8161,1329786469,1275682068,1.7,1.64,11.29,11.17,0.15,0.13,1.61,1.65
-63849,29,069,29069,99,41,36181127,35925591,186,80,48461103,48202911,31953,14419,1417200656,1401361859,53.23,51.25,74.66,74.53,0.31,0.28,2.55,2.56
-63849,29,155,29155,87,39,12279976,12277320,186,80,48461103,48202911,18296,8161,1329786469,1275682068,46.77,48.75,25.34,25.47,0.48,0.48,0.92,0.96
-63851,29,155,29155,4225,1920,256766374,239922513,4225,1920,256766374,239922513,18296,8161,1329786469,1275682068,100,100,100,100,23.09,23.53,19.31,18.81
-63852,29,069,29069,1456,643,113415373,112835417,1488,655,132759881,132075846,31953,14419,1417200656,1401361859,97.85,98.17,85.43,85.43,4.56,4.46,8,8.05
-63852,29,155,29155,32,12,19344508,19240429,1488,655,132759881,132075846,18296,8161,1329786469,1275682068,2.15,1.83,14.57,14.57,0.17,0.15,1.45,1.51
-63853,29,155,29155,244,120,4030270,4030270,244,120,4030270,4030270,18296,8161,1329786469,1275682068,100,100,100,100,1.33,1.47,0.3,0.32
-63855,29,069,29069,1117,524,207272641,203558485,1117,524,207272641,203558485,31953,14419,1417200656,1401361859,100,100,100,100,3.5,3.63,14.63,14.53
-63857,29,069,29069,12956,5698,290139797,283509664,12956,5698,290139797,283509664,31953,14419,1417200656,1401361859,100,100,100,100,40.55,39.52,20.47,20.23
-63860,29,143,29143,131,60,17440244,17372209,131,60,17440244,17372209,18956,8531,1804120002,1747828331,100,100,100,100,0.69,0.7,0.97,0.99
-63862,29,143,29143,1705,806,154133793,152893304,1705,806,154133793,152893304,18956,8531,1804120002,1747828331,100,100,100,100,8.99,9.45,8.54,8.75
-63863,29,069,29069,6263,2936,112405197,112215755,6359,2982,153984846,153762891,31953,14419,1417200656,1401361859,98.49,98.46,73,72.98,19.6,20.36,7.93,8.01
-63863,29,143,29143,96,46,41579649,41547136,6359,2982,153984846,153762891,18956,8531,1804120002,1747828331,1.51,1.54,27,27.02,0.51,0.54,2.3,2.38
-63866,29,143,29143,488,244,16568230,16514593,488,244,16568230,16514593,18956,8531,1804120002,1747828331,100,100,100,100,2.57,2.86,0.92,0.94
-63867,29,143,29143,1019,446,232858305,232474515,1019,446,232858305,232474515,18956,8531,1804120002,1747828331,100,100,100,100,5.38,5.23,12.91,13.3
-63868,29,143,29143,838,434,4115280,4115280,838,434,4115280,4115280,18956,8531,1804120002,1747828331,100,100,100,100,4.42,5.09,0.23,0.24
-63869,29,143,29143,3783,1743,262857964,232353678,3783,1743,262857964,232353678,18956,8531,1804120002,1747828331,100,100,100,100,19.96,20.43,14.57,13.29
-63870,29,143,29143,975,456,128137084,128004504,1097,512,217329050,217017402,18956,8531,1804120002,1747828331,88.88,89.06,58.96,58.98,5.14,5.35,7.1,7.32
-63870,29,207,29207,122,56,89191966,89012898,1097,512,217329050,217017402,29968,13609,2147154582,2132134868,11.12,10.94,41.04,41.02,0.41,0.41,4.15,4.17
-63873,29,143,29143,4425,1924,378071206,356045532,4947,2165,548276697,517859856,18956,8531,1804120002,1747828331,89.45,88.87,68.96,68.75,23.34,22.55,20.96,20.37
-63873,29,155,29155,522,241,170205491,161814324,4947,2165,548276697,517859856,18296,8161,1329786469,1275682068,10.55,11.13,31.04,31.25,2.85,2.95,12.8,12.68
-63874,29,143,29143,350,171,2961226,2943696,350,171,2961226,2943696,18956,8531,1804120002,1747828331,100,100,100,100,1.85,2,0.16,0.17
-63876,29,069,29069,2374,1029,151109574,150675766,2374,1029,151109574,150675766,31953,14419,1417200656,1401361859,100,100,100,100,7.43,7.14,10.66,10.75
-63877,29,069,29069,45,44,18838764,18672181,3931,1716,358643189,357251675,31953,14419,1417200656,1401361859,1.14,2.56,5.25,5.23,0.14,0.31,1.33,1.33
-63877,29,155,29155,3886,1672,339804425,338579494,3931,1716,358643189,357251675,18296,8161,1329786469,1275682068,98.86,97.44,94.75,94.77,21.24,20.49,25.55,26.54
-63878,29,143,29143,138,67,1388071,1388071,138,67,1388071,1388071,18956,8531,1804120002,1747828331,100,100,100,100,0.73,0.79,0.08,0.08
-63879,29,155,29155,773,366,59658600,59424228,773,366,59658600,59424228,18296,8161,1329786469,1275682068,100,100,100,100,4.22,4.48,4.49,4.66
-63880,29,069,29069,117,41,409210,406690,117,41,409210,406690,31953,14419,1417200656,1401361859,100,100,100,100,0.37,0.28,0.03,0.03
-63882,29,133,29133,431,238,1203528,1179127,431,238,1203528,1179127,14358,5711,1110490010,1065995440,100,100,100,100,3,4.17,0.11,0.11
-63901,29,023,29023,34629,15637,787860286,784506844,34665,15651,814546527,811184998,42794,19731,1810380018,1799185123,99.9,99.91,96.72,96.71,80.92,79.25,43.52,43.6
-63901,29,181,29181,36,14,26686241,26678154,34665,15651,814546527,811184998,14100,6597,1635941595,1630492528,0.1,0.09,3.28,3.29,0.26,0.21,1.63,1.64
-63902,29,023,29023,0,0,27936,27936,0,0,27936,27936,42794,19731,1810380018,1799185123,0,0,100,100,0,0,0,0
-63932,29,023,29023,1254,587,135859312,135411495,1254,587,135859312,135411495,42794,19731,1810380018,1799185123,100,100,100,100,2.93,2.98,7.5,7.53
-63933,29,069,29069,3719,1667,265241013,262547818,3719,1667,265241013,262547818,31953,14419,1417200656,1401361859,100,100,100,100,11.64,11.56,18.72,18.74
-63934,29,223,29223,201,110,30560114,30515117,201,110,30560114,30515117,13521,8083,2004816904,1966257806,100,100,100,100,1.49,1.36,1.52,1.55
-63935,29,035,29035,30,11,1192785,1191709,10158,4817,1232330869,1226981622,6265,3247,1318357534,1314058615,0.3,0.23,0.1,0.1,0.48,0.34,0.09,0.09
-63935,29,149,29149,70,45,80234956,79937659,10158,4817,1232330869,1226981622,10881,5486,2050089796,2045561195,0.69,0.93,6.51,6.51,0.64,0.82,3.91,3.91
-63935,29,181,29181,10058,4761,1150903128,1145852254,10158,4817,1232330869,1226981622,14100,6597,1635941595,1630492528,99.02,98.84,93.39,93.39,71.33,72.17,70.35,70.28
-63936,29,207,29207,754,358,203071281,201155801,754,358,203071281,201155801,29968,13609,2147154582,2132134868,100,100,100,100,2.52,2.63,9.46,9.43
-63937,29,023,29023,276,118,54403933,54295059,2922,1335,489286838,488050997,42794,19731,1810380018,1799185123,9.45,8.84,11.12,11.12,0.64,0.6,3.01,3.02
-63937,29,035,29035,2596,1197,407764266,406760673,2922,1335,489286838,488050997,6265,3247,1318357534,1314058615,88.84,89.66,83.34,83.34,41.44,36.86,30.93,30.95
-63937,29,223,29223,50,20,27118639,26995265,2922,1335,489286838,488050997,13521,8083,2004816904,1966257806,1.71,1.5,5.54,5.53,0.37,0.25,1.35,1.37
-63939,29,181,29181,1430,613,94876059,94826342,1430,613,94876059,94826342,14100,6597,1635941595,1630492528,100,100,100,100,10.14,9.29,5.8,5.82
-63940,29,023,29023,1393,677,143927884,142821685,1393,677,143927884,142821685,42794,19731,1810380018,1799185123,100,100,100,100,3.26,3.43,7.95,7.94
-63941,29,035,29035,291,156,271100627,271063400,371,216,391045663,390723270,6265,3247,1318357534,1314058615,78.44,72.22,69.33,69.37,4.64,4.8,20.56,20.63
-63941,29,149,29149,80,60,119945036,119659870,371,216,391045663,390723270,10881,5486,2050089796,2045561195,21.56,27.78,30.67,30.63,0.74,1.09,5.85,5.85
-63942,29,149,29149,91,63,65202286,64758391,652,332,219561765,219117870,10881,5486,2050089796,2045561195,13.96,18.98,29.7,29.55,0.84,1.15,3.18,3.17
-63942,29,181,29181,561,269,154359479,154359479,652,332,219561765,219117870,14100,6597,1635941595,1630492528,86.04,81.02,70.3,70.45,3.98,4.08,9.44,9.47
-63943,29,035,29035,817,387,110537347,110122200,915,433,148559320,148141831,6265,3247,1318357534,1314058615,89.29,89.38,74.41,74.34,13.04,11.92,8.38,8.38
-63943,29,181,29181,98,46,38021973,38019631,915,433,148559320,148141831,14100,6597,1635941595,1630492528,10.71,10.62,25.59,25.66,0.7,0.7,2.32,2.33
-63944,29,223,29223,1844,1189,475804366,467423461,1844,1189,475804366,467423461,13521,8083,2004816904,1966257806,100,100,100,100,13.64,14.71,23.73,23.77
-63945,29,023,29023,1163,546,70090093,69769639,1163,546,70090093,69769639,42794,19731,1810380018,1799185123,100,100,100,100,2.72,2.77,3.87,3.88
-63951,29,223,29223,331,197,69428560,68794653,331,197,69428560,68794653,13521,8083,2004816904,1966257806,100,100,100,100,2.45,2.44,3.46,3.5
-63952,29,223,29223,408,237,145051048,143782588,408,237,145051048,143782588,13521,8083,2004816904,1966257806,100,100,100,100,3.02,2.93,7.24,7.31
-63953,29,023,29023,62,31,12514810,12457866,1635,756,145728326,145333335,42794,19731,1810380018,1799185123,3.79,4.1,8.59,8.57,0.14,0.16,0.69,0.69
-63953,29,181,29181,1573,725,133213516,132875469,1635,756,145728326,145333335,14100,6597,1635941595,1630492528,96.21,95.9,91.41,91.43,11.16,10.99,8.14,8.15
-63954,29,023,29023,1163,547,244558767,243893576,1219,573,262463230,261798039,42794,19731,1810380018,1799185123,95.41,95.46,93.18,93.16,2.72,2.77,13.51,13.56
-63954,29,181,29181,56,26,17904463,17904463,1219,573,262463230,261798039,14100,6597,1635941595,1630492528,4.59,4.54,6.82,6.84,0.4,0.39,1.09,1.1
-63955,29,181,29181,288,143,19976736,19976736,288,143,19976736,19976736,14100,6597,1635941595,1630492528,100,100,100,100,2.04,2.17,1.22,1.23
-63956,29,223,29223,1133,573,199221903,197157353,1133,573,199221903,197157353,13521,8083,2004816904,1966257806,100,100,100,100,8.38,7.09,9.94,10.03
-63957,29,179,29179,336,448,107499885,102886922,5440,3244,502593145,496249457,6696,4033,2109320007,2093947170,6.18,13.81,21.39,20.73,5.02,11.11,5.1,4.91
-63957,29,223,29223,5104,2796,395093260,393362535,5440,3244,502593145,496249457,13521,8083,2004816904,1966257806,93.82,86.19,78.61,79.27,37.75,34.59,19.71,20.01
-63960,29,017,29017,84,64,28161669,24242110,3326,1477,315835259,307380883,12363,5878,1608896827,1600368466,2.53,4.33,8.92,7.89,0.68,1.09,1.75,1.51
-63960,29,207,29207,3242,1413,287673590,283138773,3326,1477,315835259,307380883,29968,13609,2147154582,2132134868,97.47,95.67,91.08,92.11,10.82,10.38,13.4,13.28
-63961,29,023,29023,1610,776,230065499,227501168,1610,776,230065499,227501168,42794,19731,1810380018,1799185123,100,100,100,100,3.76,3.93,12.71,12.64
-63962,29,023,29023,41,19,46710,46710,41,19,46710,46710,42794,19731,1810380018,1799185123,100,100,100,100,0.1,0.1,0,0
-63964,29,223,29223,784,502,166211810,165719013,784,502,166211810,165719013,13521,8083,2004816904,1966257806,100,100,100,100,5.8,6.21,8.29,8.43
-63965,29,035,29035,2531,1496,527762509,524920633,2697,1572,548701820,545829164,6265,3247,1318357534,1314058615,93.85,95.17,96.18,96.17,40.4,46.07,40.03,39.95
-63965,29,179,29179,166,76,20939311,20908531,2697,1572,548701820,545829164,6696,4033,2109320007,2093947170,6.15,4.83,3.82,3.83,2.48,1.88,0.99,1
-63966,29,023,29023,545,487,35001947,33593170,2601,1987,185921467,170982802,42794,19731,1810380018,1799185123,20.95,24.51,18.83,19.65,1.27,2.47,1.93,1.87
-63966,29,223,29223,2056,1500,150919520,137389632,2601,1987,185921467,170982802,13521,8083,2004816904,1966257806,79.05,75.49,81.17,80.35,15.21,18.56,7.53,6.99
-63967,29,023,29023,658,306,96022841,94859975,1906,1071,304792473,294066372,42794,19731,1810380018,1799185123,34.52,28.57,31.5,32.26,1.54,1.55,5.3,5.27
-63967,29,223,29223,1248,765,208769632,199206397,1906,1071,304792473,294066372,13521,8083,2004816904,1966257806,65.48,71.43,68.5,67.74,9.23,9.46,10.41,10.13
-64001,29,107,29107,656,298,102246913,102075856,656,298,102246913,102075856,33381,14718,1654855495,1627634631,100,100,100,100,1.97,2.02,6.18,6.27
-64011,29,101,29101,428,164,11097529,11056565,3106,1441,81884056,81421619,52595,21528,2157956488,2147829735,13.78,11.38,13.55,13.58,0.81,0.76,0.51,0.51
-64011,29,107,29107,2678,1277,70786527,70365054,3106,1441,81884056,81421619,33381,14718,1654855495,1627634631,86.22,88.62,86.45,86.42,8.02,8.68,4.28,4.32
-64012,29,037,29037,27260,11265,124403525,123513336,27260,11265,124403525,123513336,99478,40030,1819435261,1804797172,100,100,100,100,27.4,28.14,6.84,6.84
-64014,29,095,29095,24797,9518,31283823,31210422,24797,9518,31283823,31210422,674158,312105,1596071502,1565549922,100,100,100,100,3.68,3.05,1.96,1.99
-64015,29,095,29095,31217,12590,64906472,59084187,31217,12590,64906472,59084187,674158,312105,1596071502,1565549922,100,100,100,100,4.63,4.03,4.07,3.77
-64016,29,095,29095,4713,1903,84199068,84191974,4713,1903,84199068,84191974,674158,312105,1596071502,1565549922,100,100,100,100,0.7,0.61,5.28,5.38
-64017,29,107,29107,15,5,23491334,22270866,464,205,51717240,50065065,33381,14718,1654855495,1627634631,3.23,2.44,45.42,44.48,0.04,0.03,1.42,1.37
-64017,29,177,29177,449,200,28225906,27794199,464,205,51717240,50065065,23494,9984,1486487548,1473198814,96.77,97.56,54.58,55.52,1.91,2,1.9,1.89
-64018,29,165,29165,890,367,61158037,60688427,890,367,61158037,60688427,89322,39223,1105418848,1088286859,100,100,100,100,1,0.94,5.53,5.58
-64019,29,101,29101,2368,951,218914313,218292675,2368,951,218914313,218292675,52595,21528,2157956488,2147829735,100,100,100,100,4.5,4.42,10.14,10.16
-64020,29,101,29101,220,93,62699657,62219645,3608,1621,279069963,276270601,52595,21528,2157956488,2147829735,6.1,5.74,22.47,22.52,0.42,0.43,2.91,2.9
-64020,29,107,29107,3361,1515,203021302,200816524,3608,1621,279069963,276270601,33381,14718,1654855495,1627634631,93.15,93.46,72.75,72.69,10.07,10.29,12.27,12.34
-64020,29,195,29195,27,13,13349004,13234432,3608,1621,279069963,276270601,23370,10117,1986304356,1956746210,0.75,0.8,4.78,4.79,0.12,0.13,0.67,0.68
-64021,29,107,29107,633,297,93765692,93615279,633,297,93765692,93615279,33381,14718,1654855495,1627634631,100,100,100,100,1.9,2.02,5.67,5.75
-64022,29,107,29107,183,93,27486583,26196397,183,93,27486583,26196397,33381,14718,1654855495,1627634631,100,100,100,100,0.55,0.63,1.66,1.61
-64024,29,047,29047,12675,5432,117472169,116637802,16230,6853,183851161,182515180,221939,93918,1058453745,1028998027,78.1,79.26,63.9,63.91,5.71,5.78,11.1,11.34
-64024,29,177,29177,3555,1421,66378992,65877378,16230,6853,183851161,182515180,23494,9984,1486487548,1473198814,21.9,20.74,36.1,36.09,15.13,14.23,4.47,4.47
-64029,29,095,29095,16574,6276,73702963,73661374,16574,6276,73702963,73661374,674158,312105,1596071502,1565549922,100,100,100,100,2.46,2.01,4.62,4.71
-64030,29,095,29095,24422,11052,38260888,38117439,24422,11052,38260888,38117439,674158,312105,1596071502,1565549922,100,100,100,100,3.62,3.54,2.4,2.43
-64034,29,037,29037,1156,514,7906897,6822555,7612,2799,53537762,52357979,99478,40030,1819435261,1804797172,15.19,18.36,14.77,13.03,1.16,1.28,0.43,0.38
-64034,29,095,29095,6456,2285,45630865,45535424,7612,2799,53537762,52357979,674158,312105,1596071502,1565549922,84.81,81.64,85.23,86.97,0.96,0.73,2.86,2.91
-64035,29,033,29033,9,5,6668275,6668259,971,443,165304398,163181294,9295,4630,1816594739,1799061284,0.93,1.13,4.03,4.09,0.1,0.11,0.37,0.37
-64035,29,177,29177,962,438,158636123,156513035,971,443,165304398,163181294,23494,9984,1486487548,1473198814,99.07,98.87,95.97,95.91,4.09,4.39,10.67,10.62
-64036,29,177,29177,389,147,51457314,48364338,389,147,51457314,48364338,23494,9984,1486487548,1473198814,100,100,100,100,1.66,1.47,3.46,3.28
-64037,29,107,29107,6150,2794,261984022,259220334,6150,2794,261984022,259220334,33381,14718,1654855495,1627634631,100,100,100,100,18.42,18.98,15.83,15.93
-64040,29,101,29101,6574,2838,445949968,443881761,6574,2838,445949968,443881761,52595,21528,2157956488,2147829735,100,100,100,100,12.5,13.18,20.67,20.67
-64048,29,047,29047,2457,943,76909751,76693282,4140,1615,121540368,121286456,221939,93918,1058453745,1028998027,59.35,58.39,63.28,63.23,1.11,1,7.27,7.45
-64048,29,049,29049,1683,672,44630617,44593174,4140,1615,121540368,121286456,20743,8876,1096813598,1085089929,40.65,41.61,36.72,36.77,8.11,7.57,4.07,4.11
-64050,29,095,29095,22178,10470,35062518,34157034,22178,10470,35062518,34157034,674158,312105,1596071502,1565549922,100,100,100,100,3.29,3.35,2.2,2.18
-64052,29,095,29095,20911,10253,16865361,16865361,20911,10253,16865361,16865361,674158,312105,1596071502,1565549922,100,100,100,100,3.1,3.29,1.06,1.08
-64053,29,095,29095,5319,2710,8424789,8215839,5319,2710,8424789,8215839,674158,312105,1596071502,1565549922,100,100,100,100,0.79,0.87,0.53,0.52
-64054,29,095,29095,3731,1892,5306802,5220909,3731,1892,5306802,5220909,674158,312105,1596071502,1565549922,100,100,100,100,0.55,0.61,0.33,0.33
-64055,29,095,29095,33858,16057,31755176,31683934,33858,16057,31755176,31683934,674158,312105,1596071502,1565549922,100,100,100,100,5.02,5.14,1.99,2.02
-64056,29,095,29095,16576,6411,54501263,53920499,16576,6411,54501263,53920499,674158,312105,1596071502,1565549922,100,100,100,100,2.46,2.05,3.41,3.44
-64057,29,095,29095,14141,6296,39413109,39251650,14141,6296,39413109,39251650,674158,312105,1596071502,1565549922,100,100,100,100,2.1,2.02,2.47,2.51
-64058,29,095,29095,6659,2454,96286595,91262081,6659,2454,96286595,91262081,674158,312105,1596071502,1565549922,100,100,100,100,0.99,0.79,6.03,5.83
-64060,29,047,29047,13042,4847,148204801,147229605,13042,4847,148204801,147229605,221939,93918,1058453745,1028998027,100,100,100,100,5.88,5.16,14,14.31
-64061,29,037,29037,94,52,27522623,27501603,3387,1446,168628634,167221026,99478,40030,1819435261,1804797172,2.78,3.6,16.32,16.45,0.09,0.13,1.51,1.52
-64061,29,101,29101,3293,1394,141106011,139719423,3387,1446,168628634,167221026,52595,21528,2157956488,2147829735,97.22,96.4,83.68,83.55,6.26,6.48,6.54,6.51
-64062,29,047,29047,471,186,32402959,32032742,6121,2413,230343078,229769750,221939,93918,1058453745,1028998027,7.69,7.71,14.07,13.94,0.21,0.2,3.06,3.11
-64062,29,049,29049,681,273,25149500,25149500,6121,2413,230343078,229769750,20743,8876,1096813598,1085089929,11.13,11.31,10.92,10.95,3.28,3.08,2.29,2.32
-64062,29,177,29177,4969,1954,172790619,172587508,6121,2413,230343078,229769750,23494,9984,1486487548,1473198814,81.18,80.98,75.01,75.11,21.15,19.57,11.62,11.72
-64063,29,095,29095,20374,8396,16222907,16222907,20374,8396,16222907,16222907,674158,312105,1596071502,1565549922,100,100,100,100,3.02,2.69,1.02,1.04
-64064,29,095,29095,16223,6500,47778720,45015537,16223,6500,47778720,45015537,674158,312105,1596071502,1565549922,100,100,100,100,2.41,2.08,2.99,2.88
-64065,29,095,29095,27,10,1877037,1856996,27,10,1877037,1856996,674158,312105,1596071502,1565549922,100,100,100,100,0,0,0.12,0.12
-64066,29,095,29095,38,18,4306175,4281439,38,18,4306175,4281439,674158,312105,1596071502,1565549922,100,100,100,100,0.01,0.01,0.27,0.27
-64067,29,107,29107,5789,2583,196553262,189749969,5789,2583,196553262,189749969,33381,14718,1654855495,1627634631,100,100,100,100,17.34,17.55,11.88,11.66
-64068,29,047,29047,36280,14208,225762914,223598466,36280,14208,225762914,223598466,221939,93918,1058453745,1028998027,100,100,100,100,16.35,15.13,21.33,21.73
-64070,29,095,29095,3013,1197,83869181,83707478,3309,1316,102324114,101957401,674158,312105,1596071502,1565549922,91.05,90.96,81.96,82.1,0.45,0.38,5.25,5.35
-64070,29,101,29101,296,119,18454933,18249923,3309,1316,102324114,101957401,52595,21528,2157956488,2147829735,8.95,9.04,18.04,17.9,0.56,0.55,0.86,0.85
-64071,29,107,29107,828,347,95457151,94773370,828,347,95457151,94773370,33381,14718,1654855495,1627634631,100,100,100,100,2.48,2.36,5.77,5.82
-64072,29,047,29047,239,116,2718308,2254084,239,116,2718308,2254084,221939,93918,1058453745,1028998027,100,100,100,100,0.11,0.12,0.26,0.22
-64074,29,107,29107,638,273,59819255,58037093,638,273,59819255,58037093,33381,14718,1654855495,1627634631,100,100,100,100,1.91,1.85,3.61,3.57
-64075,29,095,29095,11182,4334,119434228,118904702,11810,4560,131770988,131224462,674158,312105,1596071502,1565549922,94.68,95.04,90.64,90.61,1.66,1.39,7.48,7.6
-64075,29,107,29107,628,226,12336760,12319760,11810,4560,131770988,131224462,33381,14718,1654855495,1627634631,5.32,4.96,9.36,9.39,1.88,1.54,0.75,0.76
-64076,29,101,29101,427,158,29526251,29496080,9512,3986,316229870,313594200,52595,21528,2157956488,2147829735,4.49,3.96,9.34,9.41,0.81,0.73,1.37,1.37
-64076,29,107,29107,9085,3828,286703619,284098120,9512,3986,316229870,313594200,33381,14718,1654855495,1627634631,95.51,96.04,90.66,90.59,27.22,26.01,17.32,17.45
-64077,29,047,29047,16,10,11996653,10727578,1940,828,189954784,184874665,221939,93918,1058453745,1028998027,0.82,1.21,6.32,5.8,0.01,0.01,1.13,1.04
-64077,29,177,29177,1924,818,177958131,174147087,1940,828,189954784,184874665,23494,9984,1486487548,1473198814,99.18,98.79,93.68,94.2,8.19,8.19,11.97,11.82
-64078,29,037,29037,8902,3454,144746103,144359272,8902,3454,144746103,144359272,99478,40030,1819435261,1804797172,100,100,100,100,8.95,8.63,7.96,8
-64079,29,165,29165,12485,5112,247380601,243109984,12485,5112,247380601,243109984,89322,39223,1105418848,1088286859,100,100,100,100,13.98,13.03,22.38,22.34
-64080,29,037,29037,12765,4986,317376661,312753966,12866,5027,323310182,318687487,99478,40030,1819435261,1804797172,99.21,99.18,98.16,98.14,12.83,12.46,17.44,17.33
-64080,29,095,29095,101,41,5933521,5933521,12866,5027,323310182,318687487,674158,312105,1596071502,1565549922,0.79,0.82,1.84,1.86,0.01,0.01,0.37,0.38
-64081,29,095,29095,23144,9818,37036395,36947566,23144,9818,37036395,36947566,674158,312105,1596071502,1565549922,100,100,100,100,3.43,3.15,2.32,2.36
-64082,29,037,29037,1855,723,5551840,4857844,14456,5188,52109344,49875313,99478,40030,1819435261,1804797172,12.83,13.94,10.65,9.74,1.86,1.81,0.31,0.27
-64082,29,095,29095,12601,4465,46557504,45017469,14456,5188,52109344,49875313,674158,312105,1596071502,1565549922,87.17,86.06,89.35,90.26,1.87,1.43,2.92,2.88
-64083,29,037,29037,20995,8194,74752889,74209976,20995,8194,74752889,74209976,99478,40030,1819435261,1804797172,100,100,100,100,21.11,20.47,4.11,4.11
-64084,29,177,29177,1556,621,127433590,127330635,1556,621,127433590,127330635,23494,9984,1486487548,1473198814,100,100,100,100,6.62,6.22,8.57,8.64
-64085,29,177,29177,8803,4004,441472182,438760132,8803,4004,441472182,438760132,23494,9984,1486487548,1473198814,100,100,100,100,37.47,40.1,29.7,29.78
-64086,29,095,29095,21925,9203,101010515,96916305,21925,9203,101010515,96916305,674158,312105,1596071502,1565549922,100,100,100,100,3.25,2.95,6.33,6.19
-64088,29,095,29095,1378,559,73523254,71974582,1378,559,73523254,71974582,674158,312105,1596071502,1565549922,100,100,100,100,0.2,0.18,4.61,4.6
-64089,29,047,29047,10187,3931,137521875,121509558,11470,4442,181790239,165629535,221939,93918,1058453745,1028998027,88.81,88.5,75.65,73.36,4.59,4.19,12.99,11.81
-64089,29,165,29165,1283,511,44268364,44119977,11470,4442,181790239,165629535,89322,39223,1105418848,1088286859,11.19,11.5,24.35,26.64,1.44,1.3,4,4.05
-64090,29,037,29037,116,48,305567,305567,116,48,305567,305567,99478,40030,1819435261,1804797172,100,100,100,100,0.12,0.12,0.02,0.02
-64092,29,165,29165,44,24,16228676,15058411,44,24,16228676,15058411,89322,39223,1105418848,1088286859,100,100,100,100,0.05,0.06,1.47,1.38
-64093,29,101,29101,27589,11067,483949871,482187301,27608,11075,486007335,484244765,52595,21528,2157956488,2147829735,99.93,99.93,99.58,99.58,52.46,51.41,22.43,22.45
-64093,29,107,29107,19,8,2057464,2057464,27608,11075,486007335,484244765,33381,14718,1654855495,1627634631,0.07,0.07,0.42,0.42,0.06,0.05,0.12,0.13
-64096,29,107,29107,1171,512,114851379,110008479,1171,512,114851379,110008479,33381,14718,1654855495,1627634631,100,100,100,100,3.51,3.48,6.94,6.76
-64097,29,107,29107,1410,605,90262229,88017461,1410,605,90262229,88017461,33381,14718,1654855495,1627634631,100,100,100,100,4.22,4.11,5.45,5.41
-64098,29,165,29165,2892,1312,191502175,189864041,2892,1312,191502175,189864041,89322,39223,1105418848,1088286859,100,100,100,100,3.24,3.34,17.32,17.45
-64101,29,095,29095,339,24,1040002,1040002,339,24,1040002,1040002,674158,312105,1596071502,1565549922,100,100,100,100,0.05,0.01,0.07,0.07
-64102,29,095,29095,0,0,797713,797713,0,0,797713,797713,674158,312105,1596071502,1565549922,0,0,100,100,0,0,0.05,0.05
-64105,29,095,29095,3505,2904,2170447,1949993,3505,2904,2170447,1949993,674158,312105,1596071502,1565549922,100,100,100,100,0.52,0.93,0.14,0.12
-64106,29,095,29095,7701,3669,4148596,3988802,7701,3669,4148596,3988802,674158,312105,1596071502,1565549922,100,100,100,100,1.14,1.18,0.26,0.25
-64108,29,095,29095,7584,4484,9410789,9405986,7584,4484,9410789,9405986,674158,312105,1596071502,1565549922,100,100,100,100,1.12,1.44,0.59,0.6
-64109,29,095,29095,9931,5994,5370273,5365744,9931,5994,5370273,5365744,674158,312105,1596071502,1565549922,100,100,100,100,1.47,1.92,0.34,0.34
-64110,29,095,29095,15318,7985,7852892,7852892,15318,7985,7852892,7852892,674158,312105,1596071502,1565549922,100,100,100,100,2.27,2.56,0.49,0.5
-64111,29,095,29095,16318,11569,7051152,7051152,16318,11569,7051152,7051152,674158,312105,1596071502,1565549922,100,100,100,100,2.42,3.71,0.44,0.45
-64112,29,095,29095,8147,5744,3819182,3819182,8147,5744,3819182,3819182,674158,312105,1596071502,1565549922,100,100,100,100,1.21,1.84,0.24,0.24
-64113,29,095,29095,11328,4863,6460877,6460877,11328,4863,6460877,6460877,674158,312105,1596071502,1565549922,100,100,100,100,1.68,1.56,0.4,0.41
-64114,29,095,29095,23158,12764,18138888,18132052,23158,12764,18138888,18132052,674158,312105,1596071502,1565549922,100,100,100,100,3.44,4.09,1.14,1.16
-64116,29,047,29047,15318,8032,30041014,28114888,15318,8032,30041014,28114888,221939,93918,1058453745,1028998027,100,100,100,100,6.9,8.55,2.84,2.73
-64117,29,047,29047,14017,6360,16203322,15588833,14017,6360,16203322,15588833,221939,93918,1058453745,1028998027,100,100,100,100,6.32,6.77,1.53,1.51
-64118,29,047,29047,39887,18645,32935161,32894675,40191,18746,33221403,33180917,221939,93918,1058453745,1028998027,99.24,99.46,99.14,99.14,17.97,19.85,3.11,3.2
-64118,29,165,29165,304,101,286242,286242,40191,18746,33221403,33180917,89322,39223,1105418848,1088286859,0.76,0.54,0.86,0.86,0.34,0.26,0.03,0.03
-64119,29,047,29047,27341,11880,34921311,34764002,27341,11880,34921311,34764002,221939,93918,1058453745,1028998027,100,100,100,100,12.32,12.65,3.3,3.38
-64120,29,095,29095,369,239,23210781,21214475,369,239,23210781,21214475,674158,312105,1596071502,1565549922,100,100,100,100,0.05,0.08,1.45,1.36
-64123,29,095,29095,10387,4108,4266260,4266260,10387,4108,4266260,4266260,674158,312105,1596071502,1565549922,100,100,100,100,1.54,1.32,0.27,0.27
-64124,29,095,29095,12639,5618,4409734,4409734,12639,5618,4409734,4409734,674158,312105,1596071502,1565549922,100,100,100,100,1.87,1.8,0.28,0.28
-64125,29,095,29095,1953,849,4371244,4278780,1953,849,4371244,4278780,674158,312105,1596071502,1565549922,100,100,100,100,0.29,0.27,0.27,0.27
-64126,29,095,29095,6514,2828,6506848,6447492,6514,2828,6506848,6447492,674158,312105,1596071502,1565549922,100,100,100,100,0.97,0.91,0.41,0.41
-64127,29,095,29095,17332,8464,10838126,10838126,17332,8464,10838126,10838126,674158,312105,1596071502,1565549922,100,100,100,100,2.57,2.71,0.68,0.69
-64128,29,095,29095,11613,6344,7935529,7935529,11613,6344,7935529,7935529,674158,312105,1596071502,1565549922,100,100,100,100,1.72,2.03,0.5,0.51
-64129,29,095,29095,9486,4467,27029585,26999048,9486,4467,27029585,26999048,674158,312105,1596071502,1565549922,100,100,100,100,1.41,1.43,1.69,1.72
-64130,29,095,29095,20492,10854,18639293,18639293,20492,10854,18639293,18639293,674158,312105,1596071502,1565549922,100,100,100,100,3.04,3.48,1.17,1.19
-64131,29,095,29095,21465,11139,19300962,19266884,21465,11139,19300962,19266884,674158,312105,1596071502,1565549922,100,100,100,100,3.18,3.57,1.21,1.23
-64132,29,095,29095,13810,6787,26474032,26397243,13810,6787,26474032,26397243,674158,312105,1596071502,1565549922,100,100,100,100,2.05,2.17,1.66,1.69
-64133,29,095,29095,33780,15503,43360634,43126499,33780,15503,43360634,43126499,674158,312105,1596071502,1565549922,100,100,100,100,5.01,4.97,2.72,2.75
-64134,29,095,29095,21973,9316,33101018,30850741,21973,9316,33101018,30850741,674158,312105,1596071502,1565549922,100,100,100,100,3.26,2.98,2.07,1.97
-64136,29,095,29095,2153,983,12348659,12256241,2153,983,12348659,12256241,674158,312105,1596071502,1565549922,100,100,100,100,0.32,0.31,0.77,0.78
-64137,29,095,29095,10554,4703,18998509,18764232,10554,4703,18998509,18764232,674158,312105,1596071502,1565549922,100,100,100,100,1.57,1.51,1.19,1.2
-64138,29,095,29095,25294,11220,34723024,34702536,25294,11220,34723024,34702536,674158,312105,1596071502,1565549922,100,100,100,100,3.75,3.59,2.18,2.22
-64139,29,095,29095,1762,575,10656708,10588840,1762,575,10656708,10588840,674158,312105,1596071502,1565549922,100,100,100,100,0.26,0.18,0.67,0.68
-64145,29,095,29095,5389,2303,17214038,17044922,5389,2303,17214038,17044922,674158,312105,1596071502,1565549922,100,100,100,100,0.8,0.74,1.08,1.09
-64146,29,095,29095,1376,732,12529408,12466686,1376,732,12529408,12466686,674158,312105,1596071502,1565549922,100,100,100,100,0.2,0.23,0.79,0.8
-64147,29,037,29037,197,27,1168492,1168454,769,232,8441537,8441499,99478,40030,1819435261,1804797172,25.62,11.64,13.84,13.84,0.2,0.07,0.06,0.06
-64147,29,095,29095,572,205,7273045,7273045,769,232,8441537,8441499,674158,312105,1596071502,1565549922,74.38,88.36,86.16,86.16,0.08,0.07,0.46,0.46
-64149,29,095,29095,343,151,22833856,22122023,343,151,22833856,22122023,674158,312105,1596071502,1565549922,100,100,100,100,0.05,0.05,1.43,1.41
-64150,29,165,29165,3048,1570,15139016,14423809,3048,1570,15139016,14423809,89322,39223,1105418848,1088286859,100,100,100,100,3.41,4,1.37,1.33
-64151,29,165,29165,24134,11197,34634103,34102020,24134,11197,34634103,34102020,89322,39223,1105418848,1088286859,100,100,100,100,27.02,28.55,3.13,3.13
-64152,29,165,29165,26024,10240,79547280,76977596,26024,10240,79547280,76977596,89322,39223,1105418848,1088286859,100,100,100,100,29.14,26.11,7.2,7.07
-64153,29,165,29165,5358,2634,95847524,94849737,5358,2634,95847524,94849737,89322,39223,1105418848,1088286859,100,100,100,100,6,6.72,8.67,8.72
-64154,29,165,29165,9257,4432,36165344,36047302,9257,4432,36165344,36047302,89322,39223,1105418848,1088286859,100,100,100,100,10.36,11.3,3.27,3.31
-64155,29,047,29047,21901,8670,28859089,28790814,21901,8670,28859089,28790814,221939,93918,1058453745,1028998027,100,100,100,100,9.87,9.23,2.73,2.8
-64156,29,047,29047,5404,2259,36572683,36547157,5404,2259,36572683,36547157,221939,93918,1058453745,1028998027,100,100,100,100,2.43,2.41,3.46,3.55
-64157,29,047,29047,16122,5686,28637874,28585683,16122,5686,28637874,28585683,221939,93918,1058453745,1028998027,100,100,100,100,7.26,6.05,2.71,2.78
-64158,29,047,29047,5161,2156,7850833,7839103,5161,2156,7850833,7839103,221939,93918,1058453745,1028998027,100,100,100,100,2.33,2.3,0.74,0.76
-64161,29,047,29047,388,174,43461804,40904691,388,174,43461804,40904691,221939,93918,1058453745,1028998027,100,100,100,100,0.17,0.19,4.11,3.98
-64163,29,165,29165,689,417,22319641,22285114,689,417,22319641,22285114,89322,39223,1105418848,1088286859,100,100,100,100,0.77,1.06,2.02,2.05
-64164,29,165,29165,302,128,26670293,26653353,302,128,26670293,26653353,89322,39223,1105418848,1088286859,100,100,100,100,0.34,0.33,2.41,2.45
-64165,29,047,29047,112,44,10994635,10994635,112,44,10994635,10994635,221939,93918,1058453745,1028998027,100,100,100,100,0.05,0.05,1.04,1.07
-64166,29,047,29047,278,109,12863322,12863322,278,109,12863322,12863322,221939,93918,1058453745,1028998027,100,100,100,100,0.13,0.12,1.22,1.25
-64167,29,047,29047,353,124,3675165,3548624,353,124,3675165,3548624,221939,93918,1058453745,1028998027,100,100,100,100,0.16,0.13,0.35,0.34
-64192,29,095,29095,15,9,640269,640269,15,9,640269,640269,674158,312105,1596071502,1565549922,100,100,100,100,0,0,0.04,0.04
-64401,29,021,29021,1417,557,98602448,97319984,1417,557,98602448,97319984,89201,38427,1073957763,1056784404,100,100,100,100,1.59,1.45,9.18,9.21
-64402,29,075,29075,2388,1198,351682315,351472701,2388,1198,351682315,351472701,6738,3209,1273539144,1272776760,100,100,100,100,35.44,37.33,27.61,27.61
-64420,29,227,29227,53,35,1470351,1470351,53,35,1470351,1470351,2171,1281,691059005,690523510,100,100,100,100,2.44,2.73,0.21,0.21
-64421,29,003,29003,952,454,73126723,71420069,952,454,73126723,71420069,17291,7306,1130346227,1120694861,100,100,100,100,5.51,6.21,6.47,6.37
-64422,29,063,29063,337,151,84862551,84362109,337,151,84862551,84362109,12892,4329,1102870457,1091307336,100,100,100,100,2.61,3.49,7.69,7.73
-64423,29,147,29147,761,356,193216357,193134661,761,356,193216357,193134661,23370,9524,2273687999,2271326393,100,100,100,100,3.26,3.74,8.5,8.5
-64424,29,081,29081,4585,2132,459939982,457237759,4585,2132,459939982,457237759,8957,4407,1881380379,1871276203,100,100,100,100,51.19,48.38,24.45,24.43
-64426,29,081,29081,356,193,135232183,135009863,356,193,135232183,135009863,8957,4407,1881380379,1871276203,100,100,100,100,3.97,4.38,7.19,7.21
-64427,29,003,29003,540,253,129715722,128987751,606,283,159583490,158792277,17291,7306,1130346227,1120694861,89.11,89.4,81.28,81.23,3.12,3.46,11.48,11.51
-64427,29,147,29147,66,30,29867768,29804526,606,283,159583490,158792277,23370,9524,2273687999,2271326393,10.89,10.6,18.72,18.77,0.28,0.31,1.31,1.31
-64428,29,005,29005,20,13,46620499,46552776,898,438,251826230,251100241,5685,2985,1424824918,1417505255,2.23,2.97,18.51,18.54,0.35,0.44,3.27,3.28
-64428,29,147,29147,878,425,205205731,204547465,898,438,251826230,251100241,23370,9524,2273687999,2271326393,97.77,97.03,81.49,81.46,3.76,4.46,9.03,9.01
-64429,29,025,29025,837,357,126199777,125282836,13158,4317,409543770,406471882,9424,4605,1112754704,1104352197,6.36,8.27,30.81,30.82,8.88,7.75,11.34,11.34
-64429,29,049,29049,6137,2611,132120940,131978794,13158,4317,409543770,406471882,20743,8876,1096813598,1085089929,46.64,60.48,32.26,32.47,29.59,29.42,12.05,12.16
-64429,29,061,29061,95,43,21866760,21666252,13158,4317,409543770,406471882,8433,4199,1473820199,1458784509,0.72,1,5.34,5.33,1.13,1.02,1.48,1.49
-64429,29,063,29063,6089,1306,129356293,127544000,13158,4317,409543770,406471882,12892,4329,1102870457,1091307336,46.28,30.25,31.59,31.38,47.23,30.17,11.73,11.69
-64430,29,003,29003,66,27,13235960,13082288,764,357,107563627,106609289,17291,7306,1130346227,1120694861,8.64,7.56,12.31,12.27,0.38,0.37,1.17,1.17
-64430,29,063,29063,698,330,94327667,93527001,764,357,107563627,106609289,12892,4329,1102870457,1091307336,91.36,92.44,87.69,87.73,5.41,7.62,8.55,8.57
-64431,29,147,29147,382,221,126825371,126612340,382,221,126825371,126612340,23370,9524,2273687999,2271326393,100,100,100,100,1.63,2.32,5.58,5.57
-64432,29,147,29147,141,30,544513,544513,141,30,544513,544513,23370,9524,2273687999,2271326393,100,100,100,100,0.6,0.31,0.02,0.02
-64433,29,147,29147,210,30,1968473,1941542,210,30,1968473,1941542,23370,9524,2273687999,2271326393,100,100,100,100,0.9,0.31,0.09,0.09
-64434,29,147,29147,518,218,91014832,91014832,518,218,91014832,91014832,23370,9524,2273687999,2271326393,100,100,100,100,2.22,2.29,4,4.01
-64436,29,003,29003,781,315,84314806,83041085,781,315,84314806,83041085,17291,7306,1130346227,1120694861,100,100,100,100,4.52,4.31,7.46,7.41
-64437,29,087,29087,792,742,412576660,402049444,792,742,412576660,402049444,4912,2806,1218208653,1198369596,100,100,100,100,16.12,26.44,33.87,33.55
-64438,29,075,29075,270,128,120839073,120822972,270,128,120839073,120822972,6738,3209,1273539144,1272776760,100,100,100,100,4.01,3.99,9.49,9.49
-64439,29,021,29021,501,220,55339273,54906934,1642,745,138642460,137937598,89201,38427,1073957763,1056784404,30.51,29.53,39.92,39.81,0.56,0.57,5.15,5.2
-64439,29,165,29165,1141,525,83303187,83030664,1642,745,138642460,137937598,89322,39223,1105418848,1088286859,69.49,70.47,60.08,60.19,1.28,1.34,7.54,7.63
-64440,29,021,29021,717,286,90218175,90120858,737,295,97706298,97608981,89201,38427,1073957763,1056784404,97.29,96.95,92.34,92.33,0.8,0.74,8.4,8.53
-64440,29,165,29165,20,9,7488123,7488123,737,295,97706298,97608981,89322,39223,1105418848,1088286859,2.71,3.05,7.66,7.67,0.02,0.02,0.68,0.69
-64441,29,075,29075,50,44,52540450,52540450,178,132,132360993,132335075,6738,3209,1273539144,1272776760,28.09,33.33,39.69,39.7,0.74,1.37,4.13,4.13
-64441,29,227,29227,128,88,79820543,79794625,178,132,132360993,132335075,2171,1281,691059005,690523510,71.91,66.67,60.31,60.3,5.9,6.87,11.55,11.56
-64442,29,081,29081,882,366,217191972,215633468,882,366,217191972,215633468,8957,4407,1881380379,1871276203,100,100,100,100,9.85,8.3,11.54,11.52
-64443,29,021,29021,1096,487,127251277,126040763,1096,487,127251277,126040763,89201,38427,1073957763,1056784404,100,100,100,100,1.23,1.27,11.85,11.93
-64444,29,021,29021,80,34,16697246,16586855,1340,566,90830166,90600162,89201,38427,1073957763,1056784404,5.97,6.01,18.38,18.31,0.09,0.09,1.55,1.57
-64444,29,165,29165,1260,532,74132920,74013307,1340,566,90830166,90600162,89322,39223,1105418848,1088286859,94.03,93.99,81.62,81.69,1.41,1.36,6.71,6.8
-64445,29,147,29147,312,159,109371543,109354854,312,159,109371543,109354854,23370,9524,2273687999,2271326393,100,100,100,100,1.34,1.67,4.81,4.81
-64446,29,005,29005,1105,588,367968196,365698485,1117,594,380615122,378345411,5685,2985,1424824918,1417505255,98.93,98.99,96.68,96.66,19.44,19.7,25.83,25.8
-64446,29,087,29087,12,6,12646926,12646926,1117,594,380615122,378345411,4912,2806,1218208653,1198369596,1.07,1.01,3.32,3.34,0.24,0.21,1.04,1.06
-64448,29,021,29021,1104,467,98997777,98674733,1104,467,98997777,98674733,89201,38427,1073957763,1056784404,100,100,100,100,1.24,1.22,9.22,9.34
-64449,29,003,29003,451,209,103016794,102783604,451,209,103016794,102783604,17291,7306,1130346227,1120694861,100,100,100,100,2.61,2.86,9.11,9.17
-64451,29,087,29087,446,237,125174128,119751619,446,237,125174128,119751619,4912,2806,1218208653,1198369596,100,100,100,100,9.08,8.45,10.28,9.99
-64453,29,075,29075,217,105,97396788,97396788,217,105,97396788,97396788,6738,3209,1273539144,1272776760,100,100,100,100,3.22,3.27,7.65,7.65
-64454,29,021,29021,548,235,72476544,71924925,2667,1073,170935822,170384203,89201,38427,1073957763,1056784404,20.55,21.9,42.4,42.21,0.61,0.61,6.75,6.81
-64454,29,049,29049,2119,838,98459278,98459278,2667,1073,170935822,170384203,20743,8876,1096813598,1085089929,79.45,78.1,57.6,57.79,10.22,9.44,8.98,9.07
-64455,29,003,29003,19,7,13616431,13616431,368,188,135498127,135353254,17291,7306,1130346227,1120694861,5.16,3.72,10.05,10.06,0.11,0.1,1.2,1.21
-64455,29,147,29147,349,181,121881696,121736823,368,188,135498127,135353254,23370,9524,2273687999,2271326393,94.84,96.28,89.95,89.94,1.49,1.9,5.36,5.36
-64456,29,081,29081,14,8,12224151,12164708,1459,844,437356076,437050418,8957,4407,1881380379,1871276203,0.96,0.95,2.8,2.78,0.16,0.18,0.65,0.65
-64456,29,227,29227,1445,836,425131925,424885710,1459,844,437356076,437050418,2171,1281,691059005,690523510,99.04,99.05,97.2,97.22,66.56,65.26,61.52,61.53
-64457,29,003,29003,26,14,14127241,14077763,329,157,103298702,103216793,17291,7306,1130346227,1120694861,7.9,8.92,13.68,13.64,0.15,0.19,1.25,1.26
-64457,29,147,29147,303,143,89171461,89139030,329,157,103298702,103216793,23370,9524,2273687999,2271326393,92.1,91.08,86.32,86.36,1.3,1.5,3.92,3.92
-64458,29,081,29081,145,82,158429142,157552646,145,82,158429142,157552646,8957,4407,1881380379,1871276203,100,100,100,100,1.62,1.86,8.42,8.42
-64459,29,003,29003,472,232,64455945,63877870,472,232,64455945,63877870,17291,7306,1130346227,1120694861,100,100,100,100,2.73,3.18,5.7,5.7
-64461,29,147,29147,897,441,200036982,199854523,897,441,200036982,199854523,23370,9524,2273687999,2271326393,100,100,100,100,3.84,4.63,8.8,8.8
-64463,29,003,29003,45,26,24192997,24036022,1643,767,359406465,357134212,17291,7306,1130346227,1120694861,2.74,3.39,6.73,6.73,0.26,0.36,2.14,2.14
-64463,29,063,29063,152,67,98008903,96429104,1643,767,359406465,357134212,12892,4329,1102870457,1091307336,9.25,8.74,27.27,27,1.18,1.55,8.89,8.84
-64463,29,075,29075,1446,674,237204565,236669086,1643,767,359406465,357134212,6738,3209,1273539144,1272776760,88.01,87.87,66,66.27,21.46,21,18.63,18.59
-64465,29,025,29025,259,120,34979729,34663761,4251,1886,248340387,247157604,9424,4605,1112754704,1104352197,6.09,6.36,14.09,14.02,2.75,2.61,3.14,3.14
-64465,29,049,29049,3992,1766,213360658,212493843,4251,1886,248340387,247157604,20743,8876,1096813598,1085089929,93.91,93.64,85.91,85.98,19.25,19.9,19.45,19.58
-64466,29,087,29087,541,266,151569224,151127614,541,266,151569224,151127614,4912,2806,1218208653,1198369596,100,100,100,100,11.01,9.48,12.44,12.61
-64467,29,081,29081,186,101,115114537,114478150,186,101,115114537,114478150,8957,4407,1881380379,1871276203,100,100,100,100,2.08,2.29,6.12,6.12
-64468,29,147,29147,16023,6029,375223339,374578517,16023,6029,375223339,374578517,23370,9524,2273687999,2271326393,100,100,100,100,68.56,63.3,16.5,16.49
-64469,29,063,29063,2339,1014,318485567,315718828,2339,1014,318485567,315718828,12892,4329,1102870457,1091307336,100,100,100,100,18.14,23.42,28.88,28.93
-64470,29,087,29087,1631,819,197785406,196631670,1631,819,197785406,196631670,4912,2806,1218208653,1198369596,100,100,100,100,33.2,29.19,16.24,16.41
-64471,29,075,29075,24,15,18506392,18505202,483,263,108973450,108378779,6738,3209,1273539144,1272776760,4.97,5.7,16.98,17.07,0.36,0.47,1.45,1.45
-64471,29,081,29081,459,248,90467058,89873577,483,263,108973450,108378779,8957,4407,1881380379,1871276203,95.03,94.3,83.02,82.93,5.12,5.63,4.81,4.8
-64473,29,087,29087,1457,720,285770670,283488203,1457,720,285770670,283488203,4912,2806,1218208653,1198369596,100,100,100,100,29.66,25.66,23.46,23.66
-64474,29,049,29049,174,82,69587563,69569983,820,388,155987835,154125320,20743,8876,1096813598,1085089929,21.22,21.13,44.61,45.14,0.84,0.92,6.34,6.41
-64474,29,063,29063,646,306,86400272,84555337,820,388,155987835,154125320,12892,4329,1102870457,1091307336,78.78,78.87,55.39,54.86,5.01,7.07,7.83,7.75
-64475,29,147,29147,383,215,106488418,106440327,468,258,183287922,183239831,23370,9524,2273687999,2271326393,81.84,83.33,58.1,58.09,1.64,2.26,4.68,4.69
-64475,29,227,29227,85,43,76799504,76799504,468,258,183287922,183239831,2171,1281,691059005,690523510,18.16,16.67,41.9,41.91,3.92,3.36,11.11,11.12
-64476,29,147,29147,379,190,77841297,77775741,379,190,77841297,77775741,23370,9524,2273687999,2271326393,100,100,100,100,1.62,1.99,3.42,3.42
-64477,29,049,29049,3404,1533,235383359,233798439,3404,1533,235383359,233798439,20743,8876,1096813598,1085089929,100,100,100,100,16.41,17.27,21.46,21.55
-64479,29,075,29075,50,24,30451094,30451094,906,400,177201225,177199232,6738,3209,1273539144,1272776760,5.52,6,17.18,17.18,0.74,0.75,2.39,2.39
-64479,29,147,29147,856,376,146750131,146748138,906,400,177201225,177199232,23370,9524,2273687999,2271326393,94.48,94,82.82,82.82,3.66,3.95,6.45,6.46
-64480,29,003,29003,307,140,73764768,73134963,307,140,73764768,73134963,17291,7306,1130346227,1120694861,100,100,100,100,1.78,1.92,6.53,6.53
-64481,29,081,29081,1088,586,328364434,325956014,1088,586,328364434,325956014,8957,4407,1881380379,1871276203,100,100,100,100,12.15,13.3,17.45,17.42
-64482,29,005,29005,2101,1062,319811708,318951755,2101,1062,319811708,318951755,5685,2985,1424824918,1417505255,100,100,100,100,36.96,35.58,22.45,22.5
-64483,29,003,29003,709,298,96319733,95791779,709,298,96319733,95791779,17291,7306,1130346227,1120694861,100,100,100,100,4.1,4.08,8.52,8.55
-64484,29,021,29021,1038,470,126570757,122186084,1229,582,195918079,187474836,89201,38427,1073957763,1056784404,84.46,80.76,64.6,65.17,1.16,1.22,11.79,11.56
-64484,29,165,29165,191,112,69347322,65288752,1229,582,195918079,187474836,89322,39223,1105418848,1088286859,15.54,19.24,35.4,34.83,0.21,0.29,6.27,6
-64485,29,003,29003,8124,3376,269484900,267315965,8124,3376,269484900,267315965,17291,7306,1130346227,1120694861,100,100,100,100,46.98,46.21,23.84,23.85
-64486,29,147,29147,96,47,63100997,63100997,455,266,151825721,151562359,23370,9524,2273687999,2271326393,21.1,17.67,41.56,41.63,0.41,0.49,2.78,2.78
-64486,29,227,29227,359,219,88724724,88461362,455,266,151825721,151562359,2171,1281,691059005,690523510,78.9,82.33,58.44,58.37,16.54,17.1,12.84,12.81
-64487,29,005,29005,44,19,60176021,60163703,757,408,349569051,349388854,5685,2985,1424824918,1417505255,5.81,4.66,17.21,17.22,0.77,0.64,4.22,4.24
-64487,29,087,29087,33,16,32685639,32674120,757,408,349569051,349388854,4912,2806,1218208653,1198369596,4.36,3.92,9.35,9.35,0.67,0.57,2.68,2.73
-64487,29,147,29147,680,373,256707391,256551031,757,408,349569051,349388854,23370,9524,2273687999,2271326393,89.83,91.42,73.44,73.43,2.91,3.92,11.29,11.3
-64489,29,075,29075,2062,857,245555717,245555717,2198,917,324027416,324002250,6738,3209,1273539144,1272776760,93.81,93.46,75.78,75.79,30.6,26.71,19.28,19.29
-64489,29,147,29147,136,60,78471699,78446533,2198,917,324027416,324002250,23370,9524,2273687999,2271326393,6.19,6.54,24.22,24.21,0.58,0.63,3.45,3.45
-64490,29,021,29021,71,27,10634067,10559164,2056,891,240660180,239555445,89201,38427,1073957763,1056784404,3.45,3.03,4.42,4.41,0.08,0.07,0.99,1
-64490,29,049,29049,601,265,136650017,136542748,2056,891,240660180,239555445,20743,8876,1096813598,1085089929,29.23,29.74,56.78,57,2.9,2.99,12.46,12.58
-64490,29,063,29063,1384,599,93376096,92453533,2056,891,240660180,239555445,12892,4329,1102870457,1091307336,67.32,67.23,38.8,38.59,10.74,13.84,8.47,8.47
-64491,29,005,29005,1875,1000,292253628,292142523,1875,1000,292253628,292142523,5685,2985,1424824918,1417505255,100,100,100,100,32.98,33.5,20.51,20.61
-64492,29,047,29047,290,106,18448102,16878483,1782,733,88888812,78351697,221939,93918,1058453745,1028998027,16.27,14.46,20.75,21.54,0.13,0.11,1.74,1.64
-64492,29,049,29049,1492,627,70440710,61473214,1782,733,88888812,78351697,20743,8876,1096813598,1085089929,83.73,85.54,79.25,78.46,7.19,7.06,6.42,5.67
-64493,29,049,29049,460,209,71030956,71030956,460,209,71030956,71030956,20743,8876,1096813598,1085089929,100,100,100,100,2.22,2.35,6.48,6.55
-64494,29,003,29003,312,132,78375378,77698737,1018,459,156760165,155608189,17291,7306,1130346227,1120694861,30.65,28.76,50,49.93,1.8,1.81,6.93,6.93
-64494,29,063,29063,706,327,78384787,77909452,1018,459,156760165,155608189,12892,4329,1102870457,1091307336,69.35,71.24,50,50.07,5.48,7.55,7.11,7.14
-64496,29,005,29005,154,90,89462388,86987383,154,90,89462388,86987383,5685,2985,1424824918,1417505255,100,100,100,100,2.71,3.02,6.28,6.14
-64497,29,061,29061,168,79,41744355,41370927,598,256,108772189,107846523,8433,4199,1473820199,1458784509,28.09,30.86,38.38,38.36,1.99,1.88,2.83,2.84
-64497,29,063,29063,430,177,67027834,66475596,598,256,108772189,107846523,12892,4329,1102870457,1091307336,71.91,69.14,61.62,61.64,3.34,4.09,6.08,6.09
-64498,29,005,29005,375,204,193707080,193707080,375,204,193707080,193707080,5685,2985,1424824918,1417505255,100,100,100,100,6.6,6.83,13.6,13.67
-64499,29,075,29075,18,8,7641218,7641218,119,68,26753176,26753176,6738,3209,1273539144,1272776760,15.13,11.76,28.56,28.56,0.27,0.25,0.6,0.6
-64499,29,227,29227,101,60,19111958,19111958,119,68,26753176,26753176,2171,1281,691059005,690523510,84.87,88.24,71.44,71.44,4.65,4.68,2.77,2.77
-64501,29,021,29021,12503,5914,9954003,9354543,12503,5914,9954003,9354543,89201,38427,1073957763,1056784404,100,100,100,100,14.02,15.39,0.93,0.89
-64503,29,021,29021,12921,5730,39929497,39160873,12921,5730,39929497,39160873,89201,38427,1073957763,1056784404,100,100,100,100,14.49,14.91,3.72,3.71
-64504,29,021,29021,10763,4657,123535946,119286563,10763,4657,123535946,119286563,89201,38427,1073957763,1056784404,100,100,100,100,12.07,12.12,11.5,11.29
-64505,29,003,29003,3652,1475,91525341,90776636,13161,5546,118305042,116936145,17291,7306,1130346227,1120694861,27.75,26.6,77.36,77.63,21.12,20.19,8.1,8.1
-64505,29,021,29021,9509,4071,26779701,26159509,13161,5546,118305042,116936145,89201,38427,1073957763,1056784404,72.25,73.4,22.64,22.37,10.66,10.59,2.49,2.48
-64506,29,003,29003,835,348,1073488,1053898,24030,9627,28643375,28489618,17291,7306,1130346227,1120694861,3.47,3.61,3.75,3.7,4.83,4.76,0.09,0.09
-64506,29,021,29021,23195,9279,27569887,27435720,24030,9627,28643375,28489618,89201,38427,1073957763,1056784404,96.53,96.39,96.25,96.3,26,24.15,2.57,2.6
-64507,29,021,29021,13738,5993,149401165,147066896,13738,5993,149401165,147066896,89201,38427,1073957763,1056784404,100,100,100,100,15.4,15.6,13.91,13.92
-64601,29,117,29117,12438,5385,628347471,621245770,12438,5385,628347471,621245770,15195,6730,1394881809,1378726390,100,100,100,100,81.86,80.01,45.05,45.06
-64620,29,061,29061,466,288,48249478,47324100,466,288,48249478,47324100,8433,4199,1473820199,1458784509,100,100,100,100,5.53,6.86,3.27,3.24
-64622,29,033,29033,600,293,170301020,170101036,600,293,170301020,170101036,9295,4630,1816594739,1799061284,100,100,100,100,6.46,6.33,9.37,9.45
-64623,29,033,29033,609,321,183053543,181944044,609,321,183053543,181944044,9295,4630,1816594739,1799061284,100,100,100,100,6.55,6.93,10.08,10.11
-64624,29,025,29025,1334,625,138937827,138094208,1662,780,298645732,297757389,9424,4605,1112754704,1104352197,80.26,80.13,46.52,46.38,14.16,13.57,12.49,12.5
-64624,29,033,29033,167,80,87459528,87456275,1662,780,298645732,297757389,9295,4630,1816594739,1799061284,10.05,10.26,29.29,29.37,1.8,1.73,4.81,4.86
-64624,29,117,29117,38,19,18996120,18996120,1662,780,298645732,297757389,15195,6730,1394881809,1378726390,2.29,2.44,6.36,6.38,0.25,0.28,1.36,1.38
-64624,29,177,29177,123,56,53252257,53210786,1662,780,298645732,297757389,23494,9984,1486487548,1473198814,7.4,7.18,17.83,17.87,0.52,0.56,3.58,3.61
-64625,29,025,29025,573,308,124950330,123921264,644,348,178220725,176678178,9424,4605,1112754704,1104352197,88.98,88.51,70.11,70.14,6.08,6.69,11.23,11.22
-64625,29,061,29061,43,23,39716369,39202888,644,348,178220725,176678178,8433,4199,1473820199,1458784509,6.68,6.61,22.28,22.19,0.51,0.55,2.69,2.69
-64625,29,117,29117,28,17,13554026,13554026,644,348,178220725,176678178,15195,6730,1394881809,1378726390,4.35,4.89,7.61,7.67,0.18,0.25,0.97,0.98
-64628,29,041,29041,110,45,50740165,50613633,6144,3015,398358090,394722311,7831,4167,1985905418,1945550588,1.79,1.49,12.74,12.82,1.4,1.08,2.56,2.6
-64628,29,115,29115,6034,2970,347617925,344108678,6144,3015,398358090,394722311,12761,6429,1609357328,1594303225,98.21,98.51,87.26,87.18,47.28,46.2,21.6,21.58
-64630,29,115,29115,364,197,121089071,120192041,602,331,262782539,261145866,12761,6429,1609357328,1594303225,60.47,59.52,46.08,46.02,2.85,3.06,7.52,7.54
-64630,29,211,29211,238,134,141693468,140953825,602,331,262782539,261145866,6714,3358,1687387615,1678263572,39.53,40.48,53.92,53.98,3.54,3.99,8.4,8.4
-64631,29,115,29115,735,415,117651895,117332998,902,515,198267691,197826528,12761,6429,1609357328,1594303225,81.49,80.58,59.34,59.31,5.76,6.46,7.31,7.36
-64631,29,121,29121,167,100,80615796,80493530,902,515,198267691,197826528,15566,7665,2104031386,2075167141,18.51,19.42,40.66,40.69,1.07,1.3,3.83,3.88
-64632,29,081,29081,430,252,102356149,101821451,629,388,250785911,250251213,8957,4407,1881380379,1871276203,68.36,64.95,40.81,40.69,4.8,5.72,5.44,5.44
-64632,29,129,29129,199,136,148429762,148429762,629,388,250785911,250251213,3785,2135,1178729856,1175427598,31.64,35.05,59.19,59.31,5.26,6.37,12.59,12.63
-64633,29,033,29033,5216,2556,607755279,598320930,5216,2556,607755279,598320930,9295,4630,1816594739,1799061284,100,100,100,100,56.12,55.21,33.46,33.26
-64635,29,079,29079,24,14,21233895,21193099,515,244,152673564,151979462,10261,5023,1134483749,1127360747,4.66,5.74,13.91,13.94,0.23,0.28,1.87,1.88
-64635,29,115,29115,13,7,14001195,13936084,515,244,152673564,151979462,12761,6429,1609357328,1594303225,2.52,2.87,9.17,9.17,0.1,0.11,0.87,0.87
-64635,29,117,29117,478,223,117438474,116850279,515,244,152673564,151979462,15195,6730,1394881809,1378726390,92.82,91.39,76.92,76.89,3.15,3.31,8.42,8.48
-64636,29,061,29061,289,140,55488810,55252278,299,146,62570742,62307783,8433,4199,1473820199,1458784509,96.66,95.89,88.68,88.68,3.43,3.33,3.76,3.79
-64636,29,081,29081,10,6,7081932,7055505,299,146,62570742,62307783,8957,4407,1881380379,1871276203,3.34,4.11,11.32,11.32,0.11,0.14,0.38,0.38
-64637,29,025,29025,537,288,147946790,147165060,667,353,214346204,213454697,9424,4605,1112754704,1104352197,80.51,81.59,69.02,68.94,5.7,6.25,13.3,13.33
-64637,29,177,29177,130,65,66399414,66289637,667,353,214346204,213454697,23494,9984,1486487548,1473198814,19.49,18.41,30.98,31.06,0.55,0.65,4.47,4.5
-64638,29,033,29033,115,59,66955034,66938461,521,246,170876957,170654483,9295,4630,1816594739,1799061284,22.07,23.98,39.18,39.22,1.24,1.27,3.69,3.72
-64638,29,117,29117,406,187,103921923,103716022,521,246,170876957,170654483,15195,6730,1394881809,1378726390,77.93,76.02,60.82,60.78,2.67,2.78,7.45,7.52
-64639,29,033,29033,240,123,108292637,103928200,240,123,108292637,103928200,9295,4630,1816594739,1799061284,100,100,100,100,2.58,2.66,5.96,5.78
-64640,29,061,29061,3140,1738,368715101,363212289,3140,1738,368715101,363212289,8433,4199,1473820199,1458784509,100,100,100,100,37.23,41.39,25.02,24.9
-64641,29,079,29079,557,281,152498822,151426953,666,339,197582567,196200912,10261,5023,1134483749,1127360747,83.63,82.89,77.18,77.18,5.43,5.59,13.44,13.43
-64641,29,211,29211,109,58,45083745,44773959,666,339,197582567,196200912,6714,3358,1687387615,1678263572,16.37,17.11,22.82,22.82,1.62,1.73,2.67,2.67
-64642,29,061,29061,48,35,63877063,63749099,855,475,294233698,293356444,8433,4199,1473820199,1458784509,5.61,7.37,21.71,21.73,0.57,0.83,4.33,4.37
-64642,29,079,29079,127,61,38598224,38097545,855,475,294233698,293356444,10261,5023,1134483749,1127360747,14.85,12.84,13.12,12.99,1.24,1.21,3.4,3.38
-64642,29,081,29081,680,379,191758411,191509800,855,475,294233698,293356444,8957,4407,1881380379,1871276203,79.53,79.79,65.17,65.28,7.59,8.6,10.19,10.23
-64643,29,033,29033,757,391,156938936,156264122,1072,556,287183872,283886944,9295,4630,1816594739,1799061284,70.62,70.32,54.65,55.04,8.14,8.44,8.64,8.69
-64643,29,117,29117,315,165,130244936,127622822,1072,556,287183872,283886944,15195,6730,1394881809,1378726390,29.38,29.68,45.35,44.96,2.07,2.45,9.34,9.26
-64644,29,025,29025,2858,1260,240250246,237980191,3024,1344,287554836,284909254,9424,4605,1112754704,1104352197,94.51,93.75,83.55,83.53,30.33,27.36,21.59,21.55
-64644,29,061,29061,166,84,47304590,46929063,3024,1344,287554836,284909254,8433,4199,1473820199,1458784509,5.49,6.25,16.45,16.47,1.97,2,3.21,3.22
-64645,29,129,29129,58,31,38047193,37842668,195,121,114525727,114019338,3785,2135,1178729856,1175427598,29.74,25.62,33.22,33.19,1.53,1.45,3.23,3.22
-64645,29,211,29211,137,90,76478534,76176670,195,121,114525727,114019338,6714,3358,1687387615,1678263572,70.26,74.38,66.78,66.81,2.04,2.68,4.53,4.54
-64646,29,115,29115,26,19,24051414,23934359,297,172,149742535,148684504,12761,6429,1609357328,1594303225,8.75,11.05,16.06,16.1,0.2,0.3,1.49,1.5
-64646,29,211,29211,271,153,125691121,124750145,297,172,149742535,148684504,6714,3358,1687387615,1678263572,91.25,88.95,83.94,83.9,4.04,4.56,7.45,7.43
-64647,29,061,29061,379,198,132659222,131649650,379,198,132659222,131649650,8433,4199,1473820199,1458784509,100,100,100,100,4.49,4.72,9,9.02
-64648,29,061,29061,1732,692,239505098,238211992,2129,823,304237450,302870827,8433,4199,1473820199,1458784509,81.35,84.08,78.72,78.65,20.54,16.48,16.25,16.33
-64648,29,079,29079,320,109,53423942,53409666,2129,823,304237450,302870827,10261,5023,1134483749,1127360747,15.03,13.24,17.56,17.63,3.12,2.17,4.71,4.74
-64648,29,117,29117,77,22,11308410,11249169,2129,823,304237450,302870827,15195,6730,1394881809,1378726390,3.62,2.67,3.72,3.71,0.51,0.33,0.81,0.82
-64649,29,025,29025,659,264,53100611,52586339,864,360,95834798,94950729,9424,4605,1112754704,1104352197,76.27,73.33,55.41,55.38,6.99,5.73,4.77,4.76
-64649,29,061,29061,205,96,42734187,42364390,864,360,95834798,94950729,8433,4199,1473820199,1458784509,23.73,26.67,44.59,44.62,2.43,2.29,2.9,2.9
-64650,29,025,29025,727,318,106850914,105967042,727,318,106850914,105967042,9424,4605,1112754704,1104352197,100,100,100,100,7.71,6.91,9.6,9.6
-64651,29,115,29115,570,311,113397219,112044122,570,311,113397219,112044122,12761,6429,1609357328,1594303225,100,100,100,100,4.47,4.84,7.05,7.03
-64652,29,079,29079,441,223,118247567,117321914,441,223,118247567,117321914,10261,5023,1134483749,1127360747,100,100,100,100,4.3,4.44,10.42,10.41
-64653,29,115,29115,687,344,241409003,239196630,687,344,241409003,239196630,12761,6429,1609357328,1594303225,100,100,100,100,5.38,5.35,15,15
-64654,29,061,29061,52,28,7352738,7193077,52,28,7352738,7193077,8433,4199,1473820199,1458784509,100,100,100,100,0.62,0.67,0.5,0.49
-64655,29,171,29171,264,153,186602680,186071519,264,153,186602680,186071519,4979,2982,1345787317,1339845120,100,100,100,100,5.3,5.13,13.87,13.89
-64656,29,117,29117,240,158,52262676,52261916,240,158,52262676,52261916,15195,6730,1394881809,1378726390,100,100,100,100,1.58,2.35,3.75,3.79
-64657,29,061,29061,41,23,22129370,22007171,323,204,169039340,168739321,8433,4199,1473820199,1458784509,12.69,11.27,13.09,13.04,0.49,0.55,1.5,1.51
-64657,29,075,29075,189,141,98268926,98268926,323,204,169039340,168739321,6738,3209,1273539144,1272776760,58.51,69.12,58.13,58.24,2.8,4.39,7.72,7.72
-64657,29,081,29081,93,40,48641044,48463224,323,204,169039340,168739321,8957,4407,1881380379,1871276203,28.79,19.61,28.77,28.72,1.04,0.91,2.59,2.59
-64658,29,041,29041,675,317,176822142,175620428,3277,1627,247132964,244986080,7831,4167,1985905418,1945550588,20.6,19.48,71.55,71.69,8.62,7.61,8.9,9.03
-64658,29,115,29115,2602,1310,70310822,69365652,3277,1627,247132964,244986080,12761,6429,1609357328,1594303225,79.4,80.52,28.45,28.31,20.39,20.38,4.37,4.35
-64659,29,115,29115,964,425,194731208,191198233,964,425,194731208,191198233,12761,6429,1609357328,1594303225,100,100,100,100,7.55,6.61,12.1,11.99
-64660,29,041,29041,513,272,213249082,206183484,513,272,213249082,206183484,7831,4167,1985905418,1945550588,100,100,100,100,6.55,6.53,10.74,10.6
-64661,29,129,29129,916,657,268694773,267249318,916,657,268694773,267249318,3785,2135,1178729856,1175427598,100,100,100,100,24.2,30.77,22.8,22.74
-64664,29,117,29117,350,171,133033636,131792762,350,171,133033636,131792762,15195,6730,1394881809,1378726390,100,100,100,100,2.3,2.54,9.54,9.56
-64667,29,129,29129,52,26,74273690,74119201,395,195,231916893,231175280,3785,2135,1178729856,1175427598,13.16,13.33,32.03,32.06,1.37,1.22,6.3,6.31
-64667,29,171,29171,27,15,54316139,54181601,395,195,231916893,231175280,4979,2982,1345787317,1339845120,6.84,7.69,23.42,23.44,0.54,0.5,4.04,4.04
-64667,29,211,29211,316,154,103327064,102874478,395,195,231916893,231175280,6714,3358,1687387615,1678263572,80,78.97,44.55,44.5,4.71,4.59,6.12,6.13
-64668,29,033,29033,1204,626,337560684,335899812,1416,714,398322565,396527601,9295,4630,1816594739,1799061284,85.03,87.68,84.75,84.71,12.95,13.52,18.58,18.67
-64668,29,177,29177,212,88,60761881,60627789,1416,714,398322565,396527601,23494,9984,1486487548,1473198814,14.97,12.32,15.25,15.29,0.9,0.88,4.09,4.12
-64670,29,061,29061,926,428,252449538,249446195,1090,509,333122015,329751215,8433,4199,1473820199,1458784509,84.95,84.09,75.78,75.65,10.98,10.19,17.13,17.1
-64670,29,063,29063,111,52,52640487,52332376,1090,509,333122015,329751215,12892,4329,1102870457,1091307336,10.18,10.22,15.8,15.87,0.86,1.2,4.77,4.8
-64670,29,075,29075,24,15,13452606,13452606,1090,509,333122015,329751215,6738,3209,1273539144,1272776760,2.2,2.95,4.04,4.08,0.36,0.47,1.06,1.06
-64670,29,081,29081,29,14,14579384,14520038,1090,509,333122015,329751215,8957,4407,1881380379,1871276203,2.66,2.75,4.38,4.4,0.32,0.32,0.77,0.78
-64671,29,025,29025,1640,1065,139538480,138691496,2062,1237,221259619,220387786,9424,4605,1112754704,1104352197,79.53,86.1,63.07,62.93,17.4,23.13,12.54,12.56
-64671,29,177,29177,422,172,81721139,81696290,2062,1237,221259619,220387786,23494,9984,1486487548,1473198814,20.47,13.9,36.93,37.07,1.8,1.72,5.5,5.55
-64672,29,171,29171,251,137,181475789,181024654,251,137,181475789,181024654,4979,2982,1345787317,1339845120,100,100,100,100,5.04,4.59,13.48,13.51
-64673,29,129,29129,2492,1258,621298203,619800414,2492,1258,621298203,619800414,3785,2135,1178729856,1175427598,100,100,100,100,65.84,58.92,52.71,52.73
-64674,29,115,29115,428,241,153202165,152258066,428,241,153202165,152258066,12761,6429,1609357328,1594303225,100,100,100,100,3.35,3.75,9.52,9.55
-64676,29,041,29041,215,110,73226535,72921148,215,110,73226535,72921148,7831,4167,1985905418,1945550588,100,100,100,100,2.75,2.64,3.69,3.75
-64679,29,079,29079,737,331,198620509,198298110,805,358,226606744,226284345,10261,5023,1134483749,1127360747,91.55,92.46,87.65,87.63,7.18,6.59,17.51,17.59
-64679,29,129,29129,68,27,27986235,27986235,805,358,226606744,226284345,3785,2135,1178729856,1175427598,8.45,7.54,12.35,12.37,1.8,1.26,2.37,2.38
-64681,29,041,29041,192,170,122102120,113529914,192,170,122102120,113529914,7831,4167,1985905418,1945550588,100,100,100,100,2.45,4.08,6.15,5.84
-64682,29,033,29033,378,176,91609803,91540145,378,176,91609803,91540145,9295,4630,1816594739,1799061284,100,100,100,100,4.07,3.8,5.04,5.09
-64683,29,079,29079,8055,4004,551860790,547613460,8144,4048,596978717,592301650,10261,5023,1134483749,1127360747,98.91,98.91,92.44,92.46,78.5,79.71,48.64,48.57
-64683,29,117,29117,89,44,45117927,44688190,8144,4048,596978717,592301650,15195,6730,1394881809,1378726390,1.09,1.09,7.56,7.54,0.59,0.65,3.23,3.24
-64686,29,117,29117,271,122,4313782,4199550,271,122,4313782,4199550,15195,6730,1394881809,1378726390,100,100,100,100,1.78,1.81,0.31,0.3
-64688,29,115,29115,83,23,22224014,21897091,548,240,158566442,154446855,12761,6429,1609357328,1594303225,15.15,9.58,14.02,14.18,0.65,0.36,1.38,1.37
-64688,29,117,29117,465,217,136342428,132549764,548,240,158566442,154446855,15195,6730,1394881809,1378726390,84.85,90.42,85.98,85.82,3.06,3.22,9.77,9.61
-64689,29,061,29061,683,304,90027520,89205138,683,304,90027520,89205138,8433,4199,1473820199,1458784509,100,100,100,100,8.1,7.24,6.11,6.12
-64701,29,037,29037,14385,5845,306012992,303869346,14385,5845,306012992,303869346,99478,40030,1819435261,1804797172,100,100,100,100,14.46,14.6,16.82,16.84
-64720,29,013,29013,3843,1676,340801568,338980051,3843,1676,340801568,338980051,17049,7842,2205065497,2167014473,100,100,100,100,22.54,21.37,15.46,15.64
-64722,29,013,29013,525,239,100120687,98934974,525,239,100120687,98934974,17049,7842,2205065497,2167014473,100,100,100,100,3.08,3.05,4.54,4.57
-64723,29,013,29013,665,308,117891480,116917298,665,308,117891480,116917298,17049,7842,2205065497,2167014473,100,100,100,100,3.9,3.93,5.35,5.4
-64724,29,013,29013,241,96,114662512,113285517,1859,959,321155844,317863533,17049,7842,2205065497,2167014473,12.96,10.01,35.7,35.64,1.41,1.22,5.2,5.23
-64724,29,185,29185,1618,863,206493332,204578016,1859,959,321155844,317863533,9805,5640,1818304394,1735247885,87.04,89.99,64.3,64.36,16.5,15.3,11.36,11.79
-64725,29,013,29013,276,105,28118417,27579917,2271,917,154415895,152776376,17049,7842,2205065497,2167014473,12.15,11.45,18.21,18.05,1.62,1.34,1.28,1.27
-64725,29,037,29037,1995,812,126297478,125196459,2271,917,154415895,152776376,99478,40030,1819435261,1804797172,87.85,88.55,81.79,81.95,2.01,2.03,6.94,6.94
-64726,29,083,29083,413,215,103790631,102678247,467,236,115813978,114689296,22272,10886,1896724665,1805085008,88.44,91.1,89.62,89.53,1.85,1.98,5.47,5.69
-64726,29,101,29101,54,21,12023347,12011049,467,236,115813978,114689296,52595,21528,2157956488,2147829735,11.56,8.9,10.38,10.47,0.1,0.1,0.56,0.56
-64728,29,217,29217,594,271,199862103,198229552,594,271,199862103,198229552,21159,9495,2167376874,2140360166,100,100,100,100,2.81,2.85,9.22,9.26
-64730,29,013,29013,7109,3354,743322388,737683017,7109,3354,743322388,737683017,17049,7842,2205065497,2167014473,100,100,100,100,41.7,42.77,33.71,34.04
-64733,29,083,29083,232,99,57067414,56764427,1159,529,189782804,189334550,22272,10886,1896724665,1805085008,20.02,18.71,30.07,29.98,1.04,0.91,3.01,3.14
-64733,29,101,29101,927,430,132715390,132570123,1159,529,189782804,189334550,52595,21528,2157956488,2147829735,79.98,81.29,69.93,70.02,1.76,2,6.15,6.17
-64734,29,037,29037,2004,788,111492468,110898691,2004,788,111492468,110898691,99478,40030,1819435261,1804797172,100,100,100,100,2.01,1.97,6.13,6.14
-64735,29,015,29015,192,166,11321986,8492032,13258,6509,731642324,681759339,19056,14150,1949087823,1823507941,1.45,2.55,1.55,1.25,1.01,1.17,0.58,0.47
-64735,29,083,29083,13066,6343,720320338,673267307,13258,6509,731642324,681759339,22272,10886,1896724665,1805085008,98.55,97.45,98.45,98.75,58.67,58.27,37.98,37.3
-64738,29,185,29185,1149,609,209627455,208016002,1149,609,209627455,208016002,9805,5640,1818304394,1735247885,100,100,100,100,11.72,10.8,11.53,11.99
-64739,29,037,29037,799,352,97970682,97843204,997,434,132686093,132548803,99478,40030,1819435261,1804797172,80.14,81.11,73.84,73.82,0.8,0.88,5.38,5.42
-64739,29,083,29083,198,82,34715411,34705599,997,434,132686093,132548803,22272,10886,1896724665,1805085008,19.86,18.89,26.16,26.18,0.89,0.75,1.83,1.92
-64740,29,083,29083,1617,957,207844102,184566073,1884,1130,277766078,249095676,22272,10886,1896724665,1805085008,85.83,84.69,74.83,74.09,7.26,8.79,10.96,10.22
-64740,29,185,29185,267,173,69921976,64529603,1884,1130,277766078,249095676,9805,5640,1818304394,1735247885,14.17,15.31,25.17,25.91,2.72,3.07,3.85,3.72
-64741,29,217,29217,351,157,85488377,84713394,351,157,85488377,84713394,21159,9495,2167376874,2140360166,100,100,100,100,1.66,1.65,3.94,3.96
-64742,29,013,29013,630,255,63968701,63182460,2193,958,197286378,196170496,17049,7842,2205065497,2167014473,28.73,26.62,32.42,32.21,3.7,3.25,2.9,2.92
-64742,29,037,29037,1563,703,133317677,132988036,2193,958,197286378,196170496,99478,40030,1819435261,1804797172,71.27,73.38,67.58,67.79,1.57,1.76,7.33,7.37
-64743,29,037,29037,292,111,770145,770145,292,111,770145,770145,99478,40030,1819435261,1804797172,100,100,100,100,0.29,0.28,0.04,0.04
-64744,29,039,29039,6649,3306,370179768,367293140,7836,3867,659080246,647123049,13982,7224,1291508920,1228906021,84.85,85.49,56.17,56.76,47.55,45.76,28.66,29.89
-64744,29,185,29185,539,266,188513824,180356372,7836,3867,659080246,647123049,9805,5640,1818304394,1735247885,6.88,6.88,28.6,27.87,5.5,4.72,10.37,10.39
-64744,29,217,29217,648,295,100386654,99473537,7836,3867,659080246,647123049,21159,9495,2167376874,2140360166,8.27,7.63,15.23,15.37,3.06,3.11,4.63,4.65
-64745,29,013,29013,117,63,8451978,8133946,117,63,8451978,8133946,17049,7842,2205065497,2167014473,100,100,100,100,0.69,0.8,0.38,0.38
-64746,29,037,29037,1428,630,81086658,80296353,1428,630,81086658,80296353,99478,40030,1819435261,1804797172,100,100,100,100,1.44,1.57,4.46,4.45
-64747,29,037,29037,3672,1526,258752564,257442365,3910,1637,313199571,311108178,99478,40030,1819435261,1804797172,93.91,93.22,82.62,82.75,3.69,3.81,14.22,14.26
-64747,29,101,29101,238,111,54447007,53665813,3910,1637,313199571,311108178,52595,21528,2157956488,2147829735,6.09,6.78,17.38,17.25,0.45,0.52,2.52,2.5
-64748,29,011,29011,1069,547,114605473,114058654,1493,733,277709402,276445209,12402,5600,1545502893,1533067694,71.6,74.62,41.27,41.26,8.62,9.77,7.42,7.44
-64748,29,057,29057,212,96,80001473,79658719,1493,733,277709402,276445209,7883,3965,1311193757,1269124871,14.2,13.1,28.81,28.82,2.69,2.42,6.1,6.28
-64748,29,097,29097,179,72,59534046,59519191,1493,733,277709402,276445209,117404,50668,1660904489,1653674930,11.99,9.82,21.44,21.53,0.15,0.14,3.58,3.6
-64748,29,109,29109,33,18,23568410,23208645,1493,733,277709402,276445209,38634,16649,1588640113,1584390538,2.21,2.46,8.49,8.4,0.09,0.11,1.48,1.46
-64750,29,217,29217,423,194,81622220,80847114,423,194,81622220,80847114,21159,9495,2167376874,2140360166,100,100,100,100,2,2.04,3.77,3.78
-64752,29,013,29013,538,244,78322180,75673756,735,341,177651031,174124712,17049,7842,2205065497,2167014473,73.2,71.55,44.09,43.46,3.16,3.11,3.55,3.49
-64752,29,217,29217,197,97,99328851,98450956,735,341,177651031,174124712,21159,9495,2167376874,2140360166,26.8,28.45,55.91,56.54,0.93,1.02,4.58,4.6
-64755,29,011,29011,443,188,141220797,140119524,2596,1147,393137853,390946237,12402,5600,1545502893,1533067694,17.06,16.39,35.92,35.84,3.57,3.36,9.14,9.14
-64755,29,097,29097,2153,959,251917056,250826713,2596,1147,393137853,390946237,117404,50668,1660904489,1653674930,82.94,83.61,64.08,64.16,1.83,1.89,15.17,15.17
-64756,29,039,29039,629,340,123081909,122821795,742,401,163050235,162641052,13982,7224,1291508920,1228906021,84.77,84.79,75.49,75.52,4.5,4.71,9.53,9.99
-64756,29,057,29057,113,61,39968326,39819257,742,401,163050235,162641052,7883,3965,1311193757,1269124871,15.23,15.21,24.51,24.48,1.43,1.54,3.05,3.14
-64759,29,011,29011,8224,3656,684478235,678931198,8244,3662,688631245,683069144,12402,5600,1545502893,1533067694,99.76,99.84,99.4,99.39,66.31,65.29,44.29,44.29
-64759,29,057,29057,20,6,4153010,4137946,8244,3662,688631245,683069144,7883,3965,1311193757,1269124871,0.24,0.16,0.6,0.61,0.25,0.15,0.32,0.33
-64761,29,083,29083,139,58,42309932,42161369,1493,658,186254947,185790763,22272,10886,1896724665,1805085008,9.31,8.81,22.72,22.69,0.62,0.53,2.23,2.34
-64761,29,101,29101,1354,600,143945015,143629394,1493,658,186254947,185790763,52595,21528,2157956488,2147829735,90.69,91.19,77.28,77.31,2.57,2.79,6.67,6.69
-64762,29,011,29011,1604,744,342802570,340688629,1604,744,342802570,340688629,12402,5600,1545502893,1533067694,100,100,100,100,12.93,13.29,22.18,22.22
-64763,29,185,29185,1568,1007,224367797,208869634,1568,1007,224367797,208869634,9805,5640,1818304394,1735247885,100,100,100,100,15.99,17.85,12.34,12.04
-64765,29,217,29217,44,28,251234,249598,44,28,251234,249598,21159,9495,2167376874,2140360166,100,100,100,100,0.21,0.29,0.01,0.01
-64767,29,217,29217,821,358,148365973,147529746,821,358,148365973,147529746,21159,9495,2167376874,2140360166,100,100,100,100,3.88,3.77,6.85,6.89
-64769,29,011,29011,611,272,103555308,101686758,611,272,103555308,101686758,12402,5600,1545502893,1533067694,100,100,100,100,4.93,4.86,6.7,6.63
-64770,29,013,29013,131,58,38415775,38280088,1056,552,308197221,298362402,17049,7842,2205065497,2167014473,12.41,10.51,12.46,12.83,0.77,0.74,1.74,1.77
-64770,29,083,29083,889,482,251756605,242218103,1056,552,308197221,298362402,22272,10886,1896724665,1805085008,84.19,87.32,81.69,81.18,3.99,4.43,13.27,13.42
-64770,29,185,29185,36,12,18024841,17864211,1056,552,308197221,298362402,9805,5640,1818304394,1735247885,3.41,2.17,5.85,5.99,0.37,0.21,0.99,1.03
-64771,29,217,29217,610,281,106026339,105575550,610,281,106026339,105575550,21159,9495,2167376874,2140360166,100,100,100,100,2.88,2.96,4.89,4.93
-64772,29,217,29217,13596,6138,361788783,358744142,13596,6138,361788783,358744142,21159,9495,2167376874,2140360166,100,100,100,100,64.26,64.64,16.69,16.76
-64776,29,015,29015,43,47,45631382,39782028,3942,2307,667009349,621438621,19056,14150,1949087823,1823507941,1.09,2.04,6.84,6.4,0.23,0.33,2.34,2.18
-64776,29,185,29185,3899,2260,621377967,581656593,3942,2307,667009349,621438621,9805,5640,1818304394,1735247885,98.91,97.96,93.16,93.6,39.77,40.07,34.17,33.52
-64778,29,217,29217,702,281,306845479,302521618,702,281,306845479,302521618,21159,9495,2167376874,2140360166,100,100,100,100,3.32,2.96,14.16,14.13
-64779,29,013,29013,2349,1113,381277473,366865629,2693,1236,511996148,494717691,17049,7842,2205065497,2167014473,87.23,90.05,74.47,74.16,13.78,14.19,17.29,16.93
-64779,29,217,29217,344,123,130718675,127852062,2693,1236,511996148,494717691,21159,9495,2167376874,2140360166,12.77,9.95,25.53,25.84,1.63,1.3,6.03,5.97
-64780,29,013,29013,403,224,114560227,106684924,639,377,265968328,252875442,17049,7842,2205065497,2167014473,63.07,59.42,43.07,42.19,2.36,2.86,5.2,4.92
-64780,29,185,29185,236,153,151408101,146190518,639,377,265968328,252875442,9805,5640,1818304394,1735247885,36.93,40.58,56.93,57.81,2.41,2.71,8.33,8.42
-64781,29,185,29185,106,69,3106401,2700032,106,69,3106401,2700032,9805,5640,1818304394,1735247885,100,100,100,100,1.08,1.22,0.17,0.16
-64783,29,185,29185,126,80,50439620,46052175,775,396,173488177,162016031,9805,5640,1818304394,1735247885,16.26,20.2,29.07,28.42,1.29,1.42,2.77,2.65
-64783,29,217,29217,649,316,123048557,115963856,775,396,173488177,162016031,21159,9495,2167376874,2140360166,83.74,79.8,70.93,71.58,3.07,3.33,5.68,5.42
-64784,29,011,29011,173,74,69194627,68829229,1500,664,287836525,286653337,12402,5600,1545502893,1533067694,11.53,11.14,24.04,24.01,1.39,1.32,4.48,4.49
-64784,29,039,29039,8,7,3881444,3830599,1500,664,287836525,286653337,13982,7224,1291508920,1228906021,0.53,1.05,1.35,1.34,0.06,0.1,0.3,0.31
-64784,29,217,29217,1319,583,214760454,213993509,1500,664,287836525,286653337,21159,9495,2167376874,2140360166,87.93,87.8,74.61,74.65,6.23,6.14,9.91,10
-64788,29,013,29013,222,107,75152111,74812896,1415,685,275454102,271966598,17049,7842,2205065497,2167014473,15.69,15.62,27.28,27.51,1.3,1.36,3.41,3.45
-64788,29,083,29083,1193,578,200301991,197153702,1415,685,275454102,271966598,22272,10886,1896724665,1805085008,84.31,84.38,72.72,72.49,5.36,5.31,10.56,10.92
-64790,29,217,29217,861,373,208883175,206215532,861,373,208883175,206215532,21159,9495,2167376874,2140360166,100,100,100,100,4.07,3.93,9.64,9.63
-64801,29,097,29097,34753,16039,152144608,152073809,34753,16039,152144608,152073809,117404,50668,1660904489,1653674930,100,100,100,100,29.6,31.66,9.16,9.2
-64804,29,097,29097,21011,9709,44907363,44864311,37521,16825,237684691,236144379,117404,50668,1660904489,1653674930,56,57.71,18.89,19,17.9,19.16,2.7,2.71
-64804,29,145,29145,16510,7116,192777328,191280068,37521,16825,237684691,236144379,58114,24313,1622850767,1618133227,44,42.29,81.11,81,28.41,29.27,11.88,11.82
-64830,29,097,29097,639,281,3683381,3683381,639,281,3683381,3683381,117404,50668,1660904489,1653674930,100,100,100,100,0.54,0.55,0.22,0.22
-64831,29,119,29119,5879,2527,304751717,304714638,5879,2527,304751717,304714638,23083,9925,1397767453,1397247203,100,100,100,100,25.47,25.46,21.8,21.81
-64832,29,011,29011,188,76,75247134,74467623,731,347,186182755,183622203,12402,5600,1545502893,1533067694,25.72,21.9,40.42,40.55,1.52,1.36,4.87,4.86
-64832,29,097,29097,543,271,110935621,109154580,731,347,186182755,183622203,117404,50668,1660904489,1653674930,74.28,78.1,59.58,59.45,0.46,0.53,6.68,6.6
-64833,29,097,29097,125,54,506308,506308,125,54,506308,506308,117404,50668,1660904489,1653674930,100,100,100,100,0.11,0.11,0.03,0.03
-64834,29,097,29097,9556,3580,82429643,82017761,9556,3580,82429643,82017761,117404,50668,1660904489,1653674930,100,100,100,100,8.14,7.07,4.96,4.96
-64835,29,097,29097,1899,804,6222247,6222247,1899,804,6222247,6222247,117404,50668,1660904489,1653674930,100,100,100,100,1.62,1.59,0.37,0.38
-64836,29,097,29097,23940,9671,473573899,471665086,23940,9671,473573899,471665086,117404,50668,1660904489,1653674930,100,100,100,100,20.39,19.09,28.51,28.52
-64840,29,097,29097,311,123,17322332,17322332,2813,1140,132093693,131824521,117404,50668,1660904489,1653674930,11.06,10.79,13.11,13.14,0.26,0.24,1.04,1.05
-64840,29,145,29145,2502,1017,114771361,114502189,2813,1140,132093693,131824521,58114,24313,1622850767,1618133227,88.94,89.21,86.89,86.86,4.31,4.18,7.07,7.08
-64841,29,097,29097,384,173,1001009,1001009,384,173,1001009,1001009,117404,50668,1660904489,1653674930,100,100,100,100,0.33,0.34,0.06,0.06
-64842,29,009,29009,43,14,2578251,2576698,829,349,57815454,57787591,35597,17523,2048601393,2015660483,5.19,4.01,4.46,4.46,0.12,0.08,0.13,0.13
-64842,29,145,29145,786,335,55237203,55210893,829,349,57815454,57787591,58114,24313,1622850767,1618133227,94.81,95.99,95.54,95.54,1.35,1.38,3.4,3.41
-64843,29,119,29119,2910,1223,126968994,126968994,3259,1375,147618235,147618235,23083,9925,1397767453,1397247203,89.29,88.95,86.01,86.01,12.61,12.32,9.08,9.09
-64843,29,145,29145,349,152,20649241,20649241,3259,1375,147618235,147618235,58114,24313,1622850767,1618133227,10.71,11.05,13.99,13.99,0.6,0.63,1.27,1.28
-64844,29,145,29145,4680,1941,169440752,168949249,4680,1941,169440752,168949249,58114,24313,1622850767,1618133227,100,100,100,100,8.05,7.98,10.44,10.44
-64847,29,119,29119,437,220,10182371,10182371,437,220,10182371,10182371,23083,9925,1397767453,1397247203,100,100,100,100,1.89,2.22,0.73,0.73
-64848,29,097,29097,179,69,3863541,3861714,744,290,118425516,117622014,117404,50668,1660904489,1653674930,24.06,23.79,3.26,3.28,0.15,0.14,0.23,0.23
-64848,29,109,29109,565,221,114561975,113760300,744,290,118425516,117622014,38634,16649,1588640113,1584390538,75.94,76.21,96.74,96.72,1.46,1.33,7.21,7.18
-64849,29,097,29097,186,81,1016654,1016654,186,81,1016654,1016654,117404,50668,1660904489,1653674930,100,100,100,100,0.16,0.16,0.06,0.06
-64850,29,119,29119,101,39,20320582,20320582,24063,9940,531544732,530470600,23083,9925,1397767453,1397247203,0.42,0.39,3.82,3.83,0.44,0.39,1.45,1.45
-64850,29,145,29145,23962,9901,511224150,510150018,24063,9940,531544732,530470600,58114,24313,1622850767,1618133227,99.58,99.61,96.18,96.17,41.23,40.72,31.5,31.53
-64854,29,119,29119,4170,1779,175069356,174804369,4170,1779,175069356,174804369,23083,9925,1397767453,1397247203,100,100,100,100,18.07,17.92,12.52,12.51
-64855,29,011,29011,90,43,14398749,14286079,2795,1078,112736922,112214544,12402,5600,1545502893,1533067694,3.22,3.99,12.77,12.73,0.73,0.77,0.93,0.93
-64855,29,097,29097,2705,1035,98338173,97928465,2795,1078,112736922,112214544,117404,50668,1660904489,1653674930,96.78,96.01,87.23,87.27,2.3,2.04,5.92,5.92
-64856,29,119,29119,4251,1857,260939822,260898852,4251,1857,260939822,260898852,23083,9925,1397767453,1397247203,100,100,100,100,18.42,18.71,18.67,18.67
-64857,29,097,29097,424,174,1559406,1559406,424,174,1559406,1559406,117404,50668,1660904489,1653674930,100,100,100,100,0.36,0.34,0.09,0.09
-64858,29,145,29145,166,73,1099655,1047179,166,73,1099655,1047179,58114,24313,1622850767,1618133227,100,100,100,100,0.29,0.3,0.07,0.06
-64859,29,097,29097,1358,547,133802413,133692130,1358,547,133802413,133692130,117404,50668,1660904489,1653674930,100,100,100,100,1.16,1.08,8.06,8.08
-64861,29,119,29119,1123,490,142247808,142199691,1179,515,147293781,147244892,23083,9925,1397767453,1397247203,95.25,95.15,96.57,96.57,4.87,4.94,10.18,10.18
-64861,29,145,29145,56,25,5045973,5045201,1179,515,147293781,147244892,58114,24313,1622850767,1618133227,4.75,4.85,3.43,3.43,0.1,0.1,0.31,0.31
-64862,29,097,29097,2734,1197,129918408,128677078,3337,1453,218452157,216861353,117404,50668,1660904489,1653674930,81.93,82.38,59.47,59.34,2.33,2.36,7.82,7.78
-64862,29,109,29109,172,73,31065224,30970692,3337,1453,218452157,216861353,38634,16649,1588640113,1584390538,5.15,5.02,14.22,14.28,0.45,0.44,1.96,1.95
-64862,29,145,29145,431,183,57468525,57213583,3337,1453,218452157,216861353,58114,24313,1622850767,1618133227,12.92,12.59,26.31,26.38,0.74,0.75,3.54,3.54
-64863,29,119,29119,1828,749,80418695,80358029,1828,749,80418695,80358029,23083,9925,1397767453,1397247203,100,100,100,100,7.92,7.55,5.75,5.75
-64865,29,119,29119,497,178,34406619,34406619,5997,2399,201281883,201157513,23083,9925,1397767453,1397247203,8.29,7.42,17.09,17.1,2.15,1.79,2.46,2.46
-64865,29,145,29145,5500,2221,166875264,166750894,5997,2399,201281883,201157513,58114,24313,1622850767,1618133227,91.71,92.58,82.91,82.9,9.46,9.14,10.28,10.31
-64866,29,145,29145,1484,610,146637648,146107223,1484,610,146637648,146107223,58114,24313,1622850767,1618133227,100,100,100,100,2.55,2.51,9.04,9.03
-64867,29,119,29119,833,379,93506124,93451888,1440,654,149372476,149167850,23083,9925,1397767453,1397247203,57.85,57.95,62.6,62.65,3.61,3.82,6.69,6.69
-64867,29,145,29145,607,275,55866352,55715962,1440,654,149372476,149167850,58114,24313,1622850767,1618133227,42.15,42.05,37.4,37.35,1.04,1.13,3.44,3.44
-64870,29,097,29097,14325,5829,88228381,88082755,14325,5829,88228381,88082755,117404,50668,1660904489,1653674930,100,100,100,100,12.2,11.5,5.31,5.33
-64873,29,109,29109,618,234,60948660,60817536,1072,430,111455607,111205875,38634,16649,1588640113,1584390538,57.65,54.42,54.68,54.69,1.6,1.41,3.84,3.84
-64873,29,145,29145,454,196,50506947,50388339,1072,430,111455607,111205875,58114,24313,1622850767,1618133227,42.35,45.58,45.32,45.31,0.78,0.81,3.11,3.11
-64874,29,009,29009,760,360,5347171,5344594,760,360,5347171,5344594,35597,17523,2048601393,2015660483,100,100,100,100,2.14,2.05,0.26,0.27
-65001,29,125,29125,96,44,25208316,25108425,414,189,48283078,48132604,9176,4611,1372505864,1364869338,23.19,23.28,52.21,52.17,1.05,0.95,1.84,1.84
-65001,29,151,29151,318,145,23074762,23024179,414,189,48283078,48132604,13878,6533,1581061007,1565248144,76.81,76.72,47.79,47.83,2.29,2.22,1.46,1.47
-65010,29,019,29019,5704,2350,157869176,157410047,5704,2350,157869176,157410047,162642,69551,1789632611,1775212930,100,100,100,100,3.51,3.38,8.82,8.87
-65011,29,135,29135,93,31,17992724,17935641,2374,1374,211757256,207281062,15607,6176,1084871480,1074910753,3.92,2.26,8.5,8.65,0.6,0.5,1.66,1.67
-65011,29,141,29141,2281,1343,193764532,189345421,2374,1374,211757256,207281062,20565,15517,1590306177,1547855851,96.08,97.74,91.5,91.35,11.09,8.66,12.18,12.23
-65013,29,125,29125,2652,1287,188006135,187107888,3515,1782,320353447,318633233,9176,4611,1372505864,1364869338,75.45,72.22,58.69,58.72,28.9,27.91,13.7,13.71
-65013,29,151,29151,863,495,132347312,131525345,3515,1782,320353447,318633233,13878,6533,1581061007,1565248144,24.55,27.78,41.31,41.28,6.22,7.58,8.37,8.4
-65014,29,073,29073,1795,962,232950484,232111488,2252,1257,340496728,339003010,15222,8205,1358295940,1341103601,79.71,76.53,68.41,68.47,11.79,11.72,17.15,17.31
-65014,29,125,29125,71,32,7623812,7576819,2252,1257,340496728,339003010,9176,4611,1372505864,1364869338,3.15,2.55,2.24,2.24,0.77,0.69,0.56,0.56
-65014,29,151,29151,386,263,99922432,99314703,2252,1257,340496728,339003010,13878,6533,1581061007,1565248144,17.14,20.92,29.35,29.3,2.78,4.03,6.32,6.34
-65016,29,151,29151,1376,605,132873581,130177414,1376,605,132873581,130177414,13878,6533,1581061007,1565248144,100,100,100,100,9.91,9.26,8.4,8.32
-65017,29,029,29029,3,62,2284606,2284606,1549,710,152642948,150972090,44002,41183,1835380578,1698831838,0.19,8.73,1.5,1.51,0.01,0.15,0.12,0.13
-65017,29,131,29131,1546,648,150358342,148687484,1549,710,152642948,150972090,24748,12758,1553972263,1534813196,99.81,91.27,98.5,98.49,6.25,5.08,9.68,9.69
-65018,29,053,29053,161,60,35040674,35038236,7714,3300,425748136,423154283,17601,7463,1474172120,1462735802,2.09,1.82,8.23,8.28,0.91,0.8,2.38,2.4
-65018,29,135,29135,7553,3240,390707462,388116047,7714,3300,425748136,423154283,15607,6176,1084871480,1074910753,97.91,98.18,91.77,91.72,48.39,52.46,36.01,36.11
-65020,29,029,29029,14286,9927,349717371,323175217,14286,9927,349717371,323175217,44002,41183,1835380578,1698831838,100,100,100,100,32.47,24.1,19.05,19.02
-65023,29,051,29051,1453,677,107912493,105853085,1730,793,141553200,139327539,75990,32324,1040980813,1019808362,83.99,85.37,76.23,75.97,1.91,2.09,10.37,10.38
-65023,29,135,29135,277,116,33640707,33474454,1730,793,141553200,139327539,15607,6176,1084871480,1074910753,16.01,14.63,23.77,24.03,1.77,1.88,3.1,3.11
-65024,29,151,29151,1086,611,265563197,259797727,1086,611,265563197,259797727,13878,6533,1581061007,1565248144,100,100,100,100,7.83,9.35,16.8,16.6
-65025,29,053,29053,208,94,50492002,50438876,786,352,122506281,122191665,17601,7463,1474172120,1462735802,26.46,26.7,41.22,41.28,1.18,1.26,3.43,3.45
-65025,29,135,29135,578,258,72014279,71752789,786,352,122506281,122191665,15607,6176,1084871480,1074910753,73.54,73.3,58.78,58.72,3.7,4.18,6.64,6.68
-65026,29,131,29131,11504,5591,368521503,365546855,11551,5609,376404614,373429966,24748,12758,1553972263,1534813196,99.59,99.68,97.91,97.89,46.48,43.82,23.71,23.82
-65026,29,141,29141,47,18,7883111,7883111,11551,5609,376404614,373429966,20565,15517,1590306177,1547855851,0.41,0.32,2.09,2.11,0.23,0.12,0.5,0.51
-65032,29,051,29051,881,357,50331090,50166672,1792,718,149791499,148490606,75990,32324,1040980813,1019808362,49.16,49.72,33.6,33.78,1.16,1.1,4.83,4.92
-65032,29,131,29131,911,361,99460409,98323934,1792,718,149791499,148490606,24748,12758,1553972263,1534813196,50.84,50.28,66.4,66.22,3.68,2.83,6.4,6.41
-65034,29,135,29135,302,129,25412343,25362494,679,265,88909281,88848365,15607,6176,1084871480,1074910753,44.48,48.68,28.58,28.55,1.94,2.09,2.34,2.36
-65034,29,141,29141,377,136,63496938,63485871,679,265,88909281,88848365,20565,15517,1590306177,1547855851,55.52,51.32,71.42,71.45,1.83,0.88,3.99,4.1
-65035,29,151,29151,1826,782,207659742,207083423,1826,782,207659742,207083423,13878,6533,1581061007,1565248144,100,100,100,100,13.16,11.97,13.13,13.23
-65037,29,029,29029,955,1272,37362983,29462798,4938,5573,233119959,211007876,44002,41183,1835380578,1698831838,19.34,22.82,16.03,13.96,2.17,3.09,2.04,1.73
-65037,29,141,29141,3983,4301,195756976,181545078,4938,5573,233119959,211007876,20565,15517,1590306177,1547855851,80.66,77.18,83.97,86.04,19.37,27.72,12.31,11.73
-65039,29,019,29019,2206,976,140324647,136539053,2328,1027,156771503,152700918,162642,69551,1789632611,1775212930,94.76,95.03,89.51,89.42,1.36,1.4,7.84,7.69
-65039,29,027,29027,122,51,16446856,16161865,2328,1027,156771503,152700918,44332,18522,2194645547,2161538606,5.24,4.97,10.49,10.58,0.28,0.28,0.75,0.75
-65040,29,051,29051,1033,506,86597123,85791908,1208,578,109666462,108412118,75990,32324,1040980813,1019808362,85.51,87.54,78.96,79.13,1.36,1.57,8.32,8.41
-65040,29,131,29131,175,72,23069339,22620210,1208,578,109666462,108412118,24748,12758,1553972263,1534813196,14.49,12.46,21.04,20.87,0.71,0.56,1.48,1.47
-65041,29,073,29073,4932,2965,433833139,427515585,5725,3384,618098644,608273551,15222,8205,1358295940,1341103601,86.15,87.62,70.19,70.28,32.4,36.14,31.94,31.88
-65041,29,139,29139,645,349,108785789,107777157,5725,3384,618098644,608273551,12236,6130,1403794086,1388874432,11.27,10.31,17.6,17.72,5.27,5.69,7.75,7.76
-65041,29,219,29219,148,70,75479716,72980809,5725,3384,618098644,608273551,32513,14685,1133818932,1110071693,2.59,2.07,12.21,12,0.46,0.48,6.66,6.57
-65043,29,027,29027,9452,4036,137667100,135692800,9452,4036,137667100,135692800,44332,18522,2194645547,2161538606,100,100,100,100,21.32,21.79,6.27,6.28
-65046,29,135,29135,1194,562,196419171,193022979,1194,562,196419171,193022979,15607,6176,1084871480,1074910753,100,100,100,100,7.65,9.1,18.11,17.96
-65047,29,029,29029,205,304,15170244,13535276,1351,877,86925611,83849869,44002,41183,1835380578,1698831838,15.17,34.66,17.45,16.14,0.47,0.74,0.83,0.8
-65047,29,131,29131,1146,573,71755367,70314593,1351,877,86925611,83849869,24748,12758,1553972263,1534813196,84.83,65.34,82.55,83.86,4.63,4.49,4.62,4.58
-65048,29,151,29151,154,76,51788187,51681039,154,76,51788187,51681039,13878,6533,1581061007,1565248144,100,100,100,100,1.11,1.16,3.28,3.3
-65049,29,029,29029,4660,6642,42434907,24050437,6618,8517,75901090,50320046,44002,41183,1835380578,1698831838,70.41,77.99,55.91,47.79,10.59,16.13,2.31,1.42
-65049,29,131,29131,1958,1875,33466183,26269609,6618,8517,75901090,50320046,24748,12758,1553972263,1534813196,29.59,22.01,44.09,52.21,7.91,14.7,2.15,1.71
-65050,29,135,29135,755,216,59768996,59618453,755,216,59768996,59618453,15607,6176,1084871480,1074910753,100,100,100,100,4.84,3.5,5.51,5.55
-65051,29,073,29073,2,8,1887566,1887566,4874,2177,314430848,313294194,15222,8205,1358295940,1341103601,0.04,0.37,0.6,0.6,0.01,0.1,0.14,0.14
-65051,29,151,29151,4872,2169,312543282,311406628,4874,2177,314430848,313294194,13878,6533,1581061007,1565248144,99.96,99.63,99.4,99.4,35.11,33.2,19.77,19.9
-65052,29,029,29029,3446,1924,146089408,133445140,3446,1924,146089408,133445140,44002,41183,1835380578,1698831838,100,100,100,100,7.83,4.67,7.96,7.86
-65053,29,051,29051,1425,585,90955187,90932289,1425,585,90955187,90932289,75990,32324,1040980813,1019808362,100,100,100,100,1.88,1.81,8.74,8.92
-65054,29,151,29151,835,369,65777043,65576638,835,369,65777043,65576638,13878,6533,1581061007,1565248144,100,100,100,100,6.02,5.65,4.16,4.19
-65058,29,051,29051,29,11,7829095,7176894,1017,480,247908696,246799178,75990,32324,1040980813,1019808362,2.85,2.29,3.16,2.91,0.04,0.03,0.75,0.7
-65058,29,125,29125,482,237,170748210,170365416,1017,480,247908696,246799178,9176,4611,1372505864,1364869338,47.39,49.38,68.88,69.03,5.25,5.14,12.44,12.48
-65058,29,131,29131,196,74,38725040,38650517,1017,480,247908696,246799178,24748,12758,1553972263,1534813196,19.27,15.42,15.62,15.66,0.79,0.58,2.49,2.52
-65058,29,151,29151,310,158,30606351,30606351,1017,480,247908696,246799178,13878,6533,1581061007,1565248144,30.48,32.92,12.35,12.4,2.23,2.42,1.94,1.96
-65059,29,027,29027,867,364,99082781,95077979,867,364,99082781,95077979,44332,18522,2194645547,2161538606,100,100,100,100,1.96,1.97,4.51,4.4
-65061,29,073,29073,578,443,76246733,70928113,746,577,137428147,132045427,15222,8205,1358295940,1341103601,77.48,76.78,55.48,53.71,3.8,5.4,5.61,5.29
-65061,29,151,29151,168,134,61181414,61117314,746,577,137428147,132045427,13878,6533,1581061007,1565248144,22.52,23.22,44.52,46.29,1.21,2.05,3.87,3.9
-65062,29,073,29073,35,33,3540752,3377924,49,57,11062065,10251997,15222,8205,1358295940,1341103601,71.43,57.89,32.01,32.95,0.23,0.4,0.26,0.25
-65062,29,151,29151,14,24,7521313,6874073,49,57,11062065,10251997,13878,6533,1581061007,1565248144,28.57,42.11,67.99,67.05,0.1,0.37,0.48,0.44
-65063,29,027,29027,3412,1398,228136567,226349988,3412,1398,228136567,226349988,44332,18522,2194645547,2161538606,100,100,100,100,7.7,7.55,10.4,10.47
-65064,29,131,29131,578,262,46958938,46934767,578,262,46958938,46934767,24748,12758,1553972263,1534813196,100,100,100,100,2.34,2.05,3.02,3.06
-65065,29,029,29029,6100,8021,51893257,37504461,6414,8216,54908905,40520109,44002,41183,1835380578,1698831838,95.1,97.63,94.51,92.56,13.86,19.48,2.83,2.21
-65065,29,131,29131,314,195,3015648,3015648,6414,8216,54908905,40520109,24748,12758,1553972263,1534813196,4.9,2.37,5.49,7.44,1.27,1.53,0.19,0.2
-65066,29,055,29055,263,131,44791818,44654130,6703,3262,520663245,516863871,24696,11955,1926312624,1923109129,3.92,4.02,8.6,8.64,1.06,1.1,2.33,2.32
-65066,29,073,29073,6440,3131,475871427,472209741,6703,3262,520663245,516863871,15222,8205,1358295940,1341103601,96.08,95.98,91.4,91.36,42.31,38.16,35.03,35.21
-65067,29,027,29027,379,269,115338366,114313385,379,269,115338366,114313385,44332,18522,2194645547,2161538606,100,100,100,100,0.85,1.45,5.26,5.29
-65068,29,053,29053,827,364,115866951,115790140,827,364,115866951,115790140,17601,7463,1474172120,1462735802,100,100,100,100,4.7,4.88,7.86,7.92
-65069,29,027,29027,50,34,30332430,28748591,645,409,201117800,194332017,44332,18522,2194645547,2161538606,7.75,8.31,15.08,14.79,0.11,0.18,1.38,1.33
-65069,29,139,29139,595,375,170785370,165583426,645,409,201117800,194332017,12236,6130,1403794086,1388874432,92.25,91.69,84.92,85.21,4.86,6.12,12.17,11.92
-65072,29,131,29131,358,407,3962539,3953907,1847,2721,57919662,48926645,24748,12758,1553972263,1534813196,19.38,14.96,6.84,8.08,1.45,3.19,0.25,0.26
-65072,29,141,29141,1489,2314,53957123,44972738,1847,2721,57919662,48926645,20565,15517,1590306177,1547855851,80.62,85.04,93.16,91.92,7.24,14.91,3.39,2.91
-65074,29,051,29051,2107,900,116137405,116067150,3061,1284,238736591,237980933,75990,32324,1040980813,1019808362,68.83,70.09,48.65,48.77,2.77,2.78,11.16,11.38
-65074,29,135,29135,954,384,122599186,121913783,3061,1284,238736591,237980933,15607,6176,1084871480,1074910753,31.17,29.91,51.35,51.23,6.11,6.22,11.3,11.34
-65075,29,131,29131,784,335,119289339,118316369,784,335,119289339,118316369,24748,12758,1553972263,1534813196,100,100,100,100,3.17,2.63,7.68,7.71
-65076,29,051,29051,645,228,39461349,38353853,829,298,68604184,66986030,75990,32324,1040980813,1019808362,77.8,76.51,57.52,57.26,0.85,0.71,3.79,3.76
-65076,29,151,29151,184,70,29142835,28632177,829,298,68604184,66986030,13878,6533,1581061007,1565248144,22.2,23.49,42.48,42.74,1.33,1.07,1.84,1.83
-65077,29,027,29027,561,326,76239759,75333590,561,326,76239759,75333590,44332,18522,2194645547,2161538606,100,100,100,100,1.27,1.76,3.47,3.49
-65078,29,015,29015,13,15,10184261,9649154,3743,3078,407904083,394083557,19056,14150,1949087823,1823507941,0.35,0.49,2.5,2.45,0.07,0.11,0.52,0.53
-65078,29,141,29141,3730,3063,397719822,384434403,3743,3078,407904083,394083557,20565,15517,1590306177,1547855851,99.65,99.51,97.5,97.55,18.14,19.74,25.01,24.84
-65079,29,029,29029,4440,5912,102923985,75411966,4729,6349,106140687,78390861,44002,41183,1835380578,1698831838,93.89,93.12,96.97,96.2,10.09,14.36,5.61,4.44
-65079,29,131,29131,3,18,31952,31952,4729,6349,106140687,78390861,24748,12758,1553972263,1534813196,0.06,0.28,0.03,0.04,0.01,0.14,0,0
-65079,29,141,29141,286,419,3184750,2946943,4729,6349,106140687,78390861,20565,15517,1590306177,1547855851,6.05,6.6,3,3.76,1.39,2.7,0.2,0.19
-65080,29,027,29027,1015,443,113337635,109035311,1015,443,113337635,109035311,44332,18522,2194645547,2161538606,100,100,100,100,2.29,2.39,5.16,5.04
-65081,29,053,29053,84,40,37799505,37775823,3928,1267,171081457,170636444,17601,7463,1474172120,1462735802,2.14,3.16,22.09,22.14,0.48,0.54,2.56,2.58
-65081,29,135,29135,3742,1186,127586139,127164808,3928,1267,171081457,170636444,15607,6176,1084871480,1074910753,95.26,93.61,74.58,74.52,23.98,19.2,11.76,11.83
-65081,29,141,29141,102,41,5695813,5695813,3928,1267,171081457,170636444,20565,15517,1590306177,1547855851,2.6,3.24,3.33,3.34,0.5,0.26,0.36,0.37
-65082,29,131,29131,1127,498,177503977,174434753,1127,498,177503977,174434753,24748,12758,1553972263,1534813196,100,100,100,100,4.55,3.9,11.42,11.37
-65083,29,131,29131,375,161,39052269,39009236,375,161,39052269,39009236,24748,12758,1553972263,1534813196,100,100,100,100,1.52,1.26,2.51,2.54
-65084,29,135,29135,63,12,5399692,5382226,6797,3223,438435422,437202766,15607,6176,1084871480,1074910753,0.93,0.37,1.23,1.23,0.4,0.19,0.5,0.5
-65084,29,141,29141,6734,3211,433035730,431820540,6797,3223,438435422,437202766,20565,15517,1590306177,1547855851,99.07,99.63,98.77,98.77,32.74,20.69,27.23,27.9
-65085,29,151,29151,1240,519,147369165,145015662,1240,519,147369165,145015662,13878,6533,1581061007,1565248144,100,100,100,100,8.94,7.94,9.32,9.26
-65101,29,027,29027,14,6,20685430,17859183,30587,12197,358706662,343899160,44332,18522,2194645547,2161538606,0.05,0.05,5.77,5.19,0.03,0.03,0.94,0.83
-65101,29,051,29051,30327,12078,324330841,312624506,30587,12197,358706662,343899160,75990,32324,1040980813,1019808362,99.15,99.02,90.42,90.91,39.91,37.37,31.16,30.66
-65101,29,151,29151,246,113,13690391,13415471,30587,12197,358706662,343899160,13878,6533,1581061007,1565248144,0.8,0.93,3.82,3.9,1.77,1.73,0.87,0.86
-65109,29,051,29051,38090,16982,217426230,212842005,38090,16982,217426230,212842005,75990,32324,1040980813,1019808362,100,100,100,100,50.13,52.54,20.89,20.87
-65201,29,019,29019,39352,15540,216325425,215641119,39417,15571,222316779,221517393,162642,69551,1789632611,1775212930,99.84,99.8,97.31,97.35,24.2,22.34,12.09,12.15
-65201,29,027,29027,65,31,5991354,5876274,39417,15571,222316779,221517393,44332,18522,2194645547,2161538606,0.16,0.2,2.69,2.65,0.15,0.17,0.27,0.27
-65202,29,019,29019,46048,20259,348634701,347412574,46547,20485,387455052,385568391,162642,69551,1789632611,1775212930,98.93,98.9,89.98,90.1,28.31,29.13,19.48,19.57
-65202,29,027,29027,499,226,38820351,38155817,46547,20485,387455052,385568391,44332,18522,2194645547,2161538606,1.07,1.1,10.02,9.9,1.13,1.22,1.77,1.77
-65203,29,019,29019,53307,23790,204830122,200080930,53307,23790,204830122,200080930,162642,69551,1789632611,1775212930,100,100,100,100,32.78,34.21,11.45,11.27
-65215,29,019,29019,203,0,22985,22985,203,0,22985,22985,162642,69551,1789632611,1775212930,100,0,100,100,0.12,0,0,0
-65230,29,089,29089,642,311,142763987,142340323,703,347,177747204,177319920,10144,4582,1221256368,1201362829,91.32,89.63,80.32,80.27,6.33,6.79,11.69,11.85
-65230,29,175,29175,61,36,34983217,34979597,703,347,177747204,177319920,25414,10714,1263461250,1250145642,8.68,10.37,19.68,19.73,0.24,0.34,2.77,2.8
-65231,29,027,29027,3334,1514,323178986,320860226,3334,1514,323178986,320860226,44332,18522,2194645547,2161538606,100,100,100,100,7.52,8.17,14.73,14.84
-65232,29,007,29007,249,129,64273623,63974660,249,129,64273623,63974660,25529,10852,1804761101,1792879633,100,100,100,100,0.98,1.19,3.56,3.57
-65233,29,053,29053,11703,4749,368397851,362085059,11703,4749,368397851,362085059,17601,7463,1474172120,1462735802,100,100,100,100,66.49,63.63,24.99,24.75
-65236,29,041,29041,1404,740,196284194,192533557,1404,740,196284194,192533557,7831,4167,1985905418,1945550588,100,100,100,100,17.93,17.76,9.88,9.9
-65237,29,053,29053,907,437,245889702,245727721,907,437,245889702,245727721,17601,7463,1474172120,1462735802,100,100,100,100,5.15,5.86,16.68,16.8
-65239,29,175,29175,1309,598,142334541,141087487,1309,598,142334541,141087487,25414,10714,1263461250,1250145642,100,100,100,100,5.15,5.58,11.27,11.29
-65240,29,007,29007,1302,503,278185227,277315876,7590,3169,462245728,460595376,25529,10852,1804761101,1792879633,17.15,15.87,60.18,60.21,5.1,4.64,15.41,15.47
-65240,29,019,29019,6199,2622,161374133,160680922,7590,3169,462245728,460595376,162642,69551,1789632611,1775212930,81.67,82.74,34.91,34.89,3.81,3.77,9.02,9.05
-65240,29,027,29027,74,36,6760749,6687312,7590,3169,462245728,460595376,44332,18522,2194645547,2161538606,0.97,1.14,1.46,1.45,0.17,0.19,0.31,0.31
-65240,29,137,29137,15,8,15925619,15911266,7590,3169,462245728,460595376,8840,4798,1735715303,1677414025,0.2,0.25,3.45,3.45,0.17,0.17,0.92,0.95
-65243,29,007,29007,883,155,62371736,62236001,2806,891,256033705,255494322,25529,10852,1804761101,1792879633,31.47,17.4,24.36,24.36,3.46,1.43,3.46,3.47
-65243,29,019,29019,528,208,62302114,62118306,2806,891,256033705,255494322,162642,69551,1789632611,1775212930,18.82,23.34,24.33,24.31,0.32,0.3,3.48,3.5
-65243,29,089,29089,112,44,18873931,18828103,2806,891,256033705,255494322,10144,4582,1221256368,1201362829,3.99,4.94,7.37,7.37,1.1,0.96,1.55,1.57
-65243,29,137,29137,69,13,4566413,4562035,2806,891,256033705,255494322,8840,4798,1735715303,1677414025,2.46,1.46,1.78,1.79,0.78,0.27,0.26,0.27
-65243,29,175,29175,1214,471,107919511,107749877,2806,891,256033705,255494322,25414,10714,1263461250,1250145642,43.26,52.86,42.15,42.17,4.78,4.4,8.54,8.62
-65244,29,175,29175,412,215,176564438,173428597,412,215,176564438,173428597,25414,10714,1263461250,1250145642,100,100,100,100,1.62,2.01,13.97,13.87
-65246,29,041,29041,101,71,87676279,83559477,101,71,87676279,83559477,7831,4167,1985905418,1945550588,100,100,100,100,1.29,1.7,4.41,4.29
-65247,29,121,29121,616,314,128416621,125768065,616,314,128416621,125768065,15566,7665,2104031386,2075167141,100,100,100,100,3.96,4.1,6.1,6.06
-65248,29,089,29089,4619,1966,441652487,437396987,4619,1966,441652487,437396987,10144,4582,1221256368,1201362829,100,100,100,100,45.53,42.91,36.16,36.41
-65250,29,089,29089,617,287,145034599,139664779,617,287,145034599,139664779,10144,4582,1221256368,1201362829,100,100,100,100,6.08,6.26,11.88,11.63
-65251,29,027,29027,22437,8694,565426359,558257003,22437,8694,565426359,558257003,44332,18522,2194645547,2161538606,100,100,100,100,50.61,46.94,25.76,25.83
-65254,29,041,29041,119,69,89821706,85366176,1810,872,284063925,274346440,7831,4167,1985905418,1945550588,6.57,7.91,31.62,31.12,1.52,1.66,4.52,4.39
-65254,29,089,29089,1691,803,194242219,188980264,1810,872,284063925,274346440,10144,4582,1221256368,1201362829,93.43,92.09,68.38,68.88,16.67,17.53,15.91,15.73
-65255,29,019,29019,3731,1511,140781257,140609087,3731,1511,140781257,140609087,162642,69551,1789632611,1775212930,100,100,100,100,2.29,2.17,7.87,7.92
-65256,29,019,29019,1508,615,98020980,97925330,1787,715,129825250,129652566,162642,69551,1789632611,1775212930,84.39,86.01,75.5,75.53,0.93,0.88,5.48,5.52
-65256,29,089,29089,279,100,31804270,31727236,1787,715,129825250,129652566,10144,4582,1221256368,1201362829,15.61,13.99,24.5,24.47,2.75,2.18,2.6,2.64
-65257,29,089,29089,305,167,78005111,77609997,1564,775,217114003,216424322,10144,4582,1221256368,1201362829,19.5,21.55,35.93,35.86,3.01,3.64,6.39,6.46
-65257,29,175,29175,1259,608,139108892,138814325,1564,775,217114003,216424322,25414,10714,1263461250,1250145642,80.5,78.45,64.07,64.14,4.95,5.67,11.01,11.1
-65258,29,137,29137,500,245,135399407,134619133,500,245,135399407,134619133,8840,4798,1735715303,1677414025,100,100,100,100,5.66,5.11,7.8,8.03
-65259,29,175,29175,2858,1240,276220085,269321567,2858,1240,276220085,269321567,25414,10714,1263461250,1250145642,100,100,100,100,11.25,11.57,21.86,21.54
-65260,29,121,29121,46,19,18251511,18209332,574,253,120128221,119955797,15566,7665,2104031386,2075167141,8.01,7.51,15.19,15.18,0.3,0.25,0.87,0.88
-65260,29,137,29137,24,15,13484359,13367007,574,253,120128221,119955797,8840,4798,1735715303,1677414025,4.18,5.93,11.22,11.14,0.27,0.31,0.78,0.8
-65260,29,175,29175,504,219,88392351,88379458,574,253,120128221,119955797,25414,10714,1263461250,1250145642,87.8,86.56,73.58,73.68,1.98,2.04,7,7.07
-65261,29,041,29041,1094,693,228419046,224731556,1094,693,228419046,224731556,7831,4167,1985905418,1945550588,100,100,100,100,13.97,16.63,11.5,11.55
-65262,29,027,29027,955,389,126961530,125718759,955,389,126961530,125718759,44332,18522,2194645547,2161538606,100,100,100,100,2.15,2.1,5.79,5.82
-65263,29,137,29137,1910,873,342240912,341186135,1948,891,352330460,351275683,8840,4798,1735715303,1677414025,98.05,97.98,97.14,97.13,21.61,18.2,19.72,20.34
-65263,29,175,29175,38,18,10089548,10089548,1948,891,352330460,351275683,25414,10714,1263461250,1250145642,1.95,2.02,2.86,2.87,0.15,0.17,0.8,0.81
-65264,29,007,29007,608,295,106104995,105281494,720,344,138925381,137811634,25529,10852,1804761101,1792879633,84.44,85.76,76.38,76.4,2.38,2.72,5.88,5.87
-65264,29,027,29027,112,49,32820386,32530140,720,344,138925381,137811634,44332,18522,2194645547,2161538606,15.56,14.24,23.62,23.6,0.25,0.26,1.5,1.5
-65265,29,007,29007,15335,7005,561187763,555413037,15409,7050,592095160,586190938,25529,10852,1804761101,1792879633,99.52,99.36,94.78,94.75,60.07,64.55,31.09,30.98
-65265,29,137,29137,74,45,30907397,30777901,15409,7050,592095160,586190938,8840,4798,1735715303,1677414025,0.48,0.64,5.22,5.25,0.84,0.94,1.78,1.83
-65270,29,137,29137,45,21,9618272,9608020,17681,7278,297174266,295610533,8840,4798,1735715303,1677414025,0.25,0.29,3.24,3.25,0.51,0.44,0.55,0.57
-65270,29,175,29175,17636,7257,287555994,286002513,17681,7278,297174266,295610533,25414,10714,1263461250,1250145642,99.75,99.71,96.76,96.75,69.39,67.73,22.76,22.88
-65274,29,089,29089,1710,815,136182610,132385342,1710,815,136182610,132385342,10144,4582,1221256368,1201362829,100,100,100,100,16.86,17.79,11.15,11.02
-65275,29,137,29137,2535,1402,463532766,457106709,2535,1402,463532766,457106709,8840,4798,1735715303,1677414025,100,100,100,100,28.68,29.22,26.71,27.25
-65276,29,053,29053,1609,720,252209470,251865341,1609,720,252209470,251865341,17601,7463,1474172120,1462735802,100,100,100,100,9.14,9.65,17.11,17.22
-65278,29,175,29175,123,52,292673,292673,123,52,292673,292673,25414,10714,1263461250,1250145642,100,100,100,100,0.48,0.49,0.02,0.02
-65279,29,019,29019,1597,704,111892028,109961983,1766,793,144589182,142391781,162642,69551,1789632611,1775212930,90.43,88.78,77.39,77.22,0.98,1.01,6.25,6.19
-65279,29,089,29089,169,89,32697154,32429798,1766,793,144589182,142391781,10144,4582,1221256368,1201362829,9.57,11.22,22.61,22.78,1.67,1.94,2.68,2.7
-65280,29,007,29007,243,110,50556418,50361962,243,110,50556418,50361962,25529,10852,1804761101,1792879633,100,100,100,100,0.95,1.01,2.8,2.81
-65281,29,041,29041,3098,1486,535444975,531454768,3098,1486,535444975,531454768,7831,4167,1985905418,1945550588,100,100,100,100,39.56,35.66,26.96,27.32
-65282,29,137,29137,178,144,33538362,31853282,178,144,33538362,31853282,8840,4798,1735715303,1677414025,100,100,100,100,2.01,3,1.93,1.9
-65283,29,137,29137,387,417,184923712,148049349,387,417,184923712,148049349,8840,4798,1735715303,1677414025,100,100,100,100,4.38,8.69,10.65,8.83
-65284,29,007,29007,102,34,27172705,26900784,2361,1010,174427748,173711378,25529,10852,1804761101,1792879633,4.32,3.37,15.58,15.49,0.4,0.31,1.51,1.5
-65284,29,019,29019,2259,976,147255043,146810594,2361,1010,174427748,173711378,162642,69551,1789632611,1775212930,95.68,96.63,84.42,84.51,1.39,1.4,8.23,8.27
-65285,29,007,29007,695,301,146439381,145528557,695,301,146439381,145528557,25529,10852,1804761101,1792879633,100,100,100,100,2.72,2.77,8.11,8.12
-65286,29,041,29041,129,88,118897966,116595493,129,88,118897966,116595493,7831,4167,1985905418,1945550588,100,100,100,100,1.65,2.11,5.99,5.99
-65287,29,053,29053,326,169,51032124,50217678,422,211,84362905,81384757,17601,7463,1474172120,1462735802,77.25,80.09,60.49,61.7,1.85,2.26,3.46,3.43
-65287,29,135,29135,96,42,33330781,31167079,422,211,84362905,81384757,15607,6176,1084871480,1074910753,22.75,19.91,39.51,38.3,0.62,0.68,3.07,2.9
-65301,29,159,29159,34267,15029,628407764,623296635,34267,15029,628407764,623296635,42201,18249,1777429172,1766947035,100,100,100,100,81.2,82.36,35.35,35.28
-65305,29,101,29101,2538,784,14838880,14813253,2538,784,14838880,14813253,52595,21528,2157956488,2147829735,100,100,100,100,4.83,3.64,0.69,0.69
-65320,29,195,29195,56,61,345226,345226,56,61,345226,345226,23370,10117,1986304356,1956746210,100,100,100,100,0.24,0.6,0.02,0.02
-65321,29,107,29107,39,15,13449268,13429870,417,200,87697412,87581217,33381,14718,1654855495,1627634631,9.35,7.5,15.34,15.33,0.12,0.1,0.81,0.83
-65321,29,195,29195,378,185,74248144,74151347,417,200,87697412,87581217,23370,10117,1986304356,1956746210,90.65,92.5,84.66,84.67,1.62,1.83,3.74,3.79
-65322,29,053,29053,587,281,143467077,140226593,587,281,143467077,140226593,17601,7463,1474172120,1462735802,100,100,100,100,3.34,3.77,9.73,9.59
-65323,29,083,29083,976,455,151699891,146655577,976,455,151699891,146655577,22272,10886,1896724665,1805085008,100,100,100,100,4.38,4.18,8,8.12
-65324,29,029,29029,1634,1778,184195381,172285849,1634,1778,184195381,172285849,44002,41183,1835380578,1698831838,100,100,100,100,3.71,4.32,10.04,10.14
-65325,29,015,29015,3171,1505,394189037,392941308,3171,1505,394189037,392941308,19056,14150,1949087823,1823507941,100,100,100,100,16.64,10.64,20.22,21.55
-65326,29,015,29015,1476,1534,312675830,304870139,1996,2617,368175324,355403910,19056,14150,1949087823,1823507941,73.95,58.62,84.93,85.78,7.75,10.84,16.04,16.72
-65326,29,029,29029,520,1083,55499494,50533771,1996,2617,368175324,355403910,44002,41183,1835380578,1698831838,26.05,41.38,15.07,14.22,1.18,2.63,3.02,2.97
-65327,29,107,29107,98,42,582735,582735,227,105,993588,993588,33381,14718,1654855495,1627634631,43.17,40,58.65,58.65,0.29,0.29,0.04,0.04
-65327,29,195,29195,129,63,410853,410853,227,105,993588,993588,23370,10117,1986304356,1956746210,56.83,60,41.35,41.35,0.55,0.62,0.02,0.02
-65329,29,141,29141,494,214,83670341,83652481,494,214,83670341,83652481,20565,15517,1590306177,1547855851,100,100,100,100,2.4,1.38,5.26,5.4
-65330,29,195,29195,412,203,125409647,120471868,412,203,125409647,120471868,23370,10117,1986304356,1956746210,100,100,100,100,1.76,2.01,6.31,6.16
-65332,29,101,29101,11,8,7201769,7162962,1652,659,231953077,230990731,52595,21528,2157956488,2147829735,0.67,1.21,3.1,3.1,0.02,0.04,0.33,0.33
-65332,29,159,29159,1641,651,224751308,223827769,1652,659,231953077,230990731,42201,18249,1777429172,1766947035,99.33,98.79,96.9,96.9,3.89,3.57,12.64,12.67
-65333,29,159,29159,644,282,137239008,136603799,759,327,162284319,161392784,42201,18249,1777429172,1766947035,84.85,86.24,84.57,84.64,1.53,1.55,7.72,7.73
-65333,29,195,29195,115,45,25045311,24788985,759,327,162284319,161392784,23370,10117,1986304356,1956746210,15.15,13.76,15.43,15.36,0.49,0.44,1.26,1.27
-65334,29,159,29159,935,347,177223322,176587860,935,347,177223322,176587860,42201,18249,1777429172,1766947035,100,100,100,100,2.22,1.9,9.97,9.99
-65335,29,015,29015,131,77,20053559,19979999,196,102,33035495,32936920,19056,14150,1949087823,1823507941,66.84,75.49,60.7,60.66,0.69,0.54,1.03,1.1
-65335,29,159,29159,65,25,12981936,12956921,196,102,33035495,32936920,42201,18249,1777429172,1766947035,33.16,24.51,39.3,39.34,0.15,0.14,0.73,0.73
-65336,29,101,29101,5917,2666,295505652,293958886,5981,2693,303237943,301663843,52595,21528,2157956488,2147829735,98.93,99,97.45,97.45,11.25,12.38,13.69,13.69
-65336,29,159,29159,64,27,7732291,7704957,5981,2693,303237943,301663843,42201,18249,1777429172,1766947035,1.07,1,2.55,2.55,0.15,0.15,0.44,0.44
-65337,29,159,29159,1899,775,215128961,214041238,1899,775,215128961,214041238,42201,18249,1777429172,1766947035,100,100,100,100,4.5,4.25,12.1,12.11
-65338,29,015,29015,3046,2013,313343260,305450543,3046,2013,313343260,305450543,19056,14150,1949087823,1823507941,100,100,100,100,15.98,14.23,16.08,16.75
-65339,29,195,29195,712,313,247212667,241541636,712,313,247212667,241541636,23370,10117,1986304356,1956746210,100,100,100,100,3.05,3.09,12.45,12.34
-65340,29,159,29159,71,28,19214260,19083290,15937,6458,671671866,668766558,42201,18249,1777429172,1766947035,0.45,0.43,2.86,2.85,0.17,0.15,1.08,1.08
-65340,29,195,29195,15866,6430,652457606,649683268,15937,6458,671671866,668766558,23370,10117,1986304356,1956746210,99.55,99.57,97.14,97.15,67.89,63.56,32.85,33.2
-65344,29,195,29195,332,158,199852202,193593873,332,158,199852202,193593873,23370,10117,1986304356,1956746210,100,100,100,100,1.42,1.56,10.06,9.89
-65345,29,015,29015,114,52,27072276,27037423,387,163,69638754,69535920,19056,14150,1949087823,1823507941,29.46,31.9,38.88,38.88,0.6,0.37,1.39,1.48
-65345,29,141,29141,73,34,14124351,14124351,387,163,69638754,69535920,20565,15517,1590306177,1547855851,18.86,20.86,20.28,20.31,0.35,0.22,0.89,0.91
-65345,29,159,29159,200,77,28442127,28374146,387,163,69638754,69535920,42201,18249,1777429172,1766947035,51.68,47.24,40.84,40.81,0.47,0.42,1.6,1.61
-65347,29,053,29053,51,31,25645525,25314641,681,340,205357357,202467501,17601,7463,1474172120,1462735802,7.49,9.12,12.49,12.5,0.29,0.42,1.74,1.73
-65347,29,159,29159,70,39,30447007,30222466,681,340,205357357,202467501,42201,18249,1777429172,1766947035,10.28,11.47,14.83,14.93,0.17,0.21,1.71,1.71
-65347,29,195,29195,560,270,149264825,146930394,681,340,205357357,202467501,23370,10117,1986304356,1956746210,82.23,79.41,72.69,72.57,2.4,2.67,7.51,7.51
-65348,29,053,29053,1089,501,141685013,141609468,1350,618,191184678,191069599,17601,7463,1474172120,1462735802,80.67,81.07,74.11,74.11,6.19,6.71,9.61,9.68
-65348,29,141,29141,261,117,49499665,49460131,1350,618,191184678,191069599,20565,15517,1590306177,1547855851,19.33,18.93,25.89,25.89,1.27,0.75,3.11,3.2
-65349,29,195,29195,2441,1292,251549819,246394836,2441,1292,251549819,246394836,23370,10117,1986304356,1956746210,100,100,100,100,10.45,12.77,12.66,12.59
-65350,29,141,29141,129,57,28060414,28040867,1822,755,180175150,179475464,20565,15517,1590306177,1547855851,7.08,7.55,15.57,15.62,0.63,0.37,1.76,1.81
-65350,29,159,29159,1693,698,152114736,151434597,1822,755,180175150,179475464,42201,18249,1777429172,1766947035,92.92,92.45,84.43,84.38,4.01,3.82,8.56,8.57
-65351,29,101,29101,26,7,3775131,3740527,2525,1163,307762532,305336392,52595,21528,2157956488,2147829735,1.03,0.6,1.23,1.23,0.05,0.03,0.17,0.17
-65351,29,159,29159,157,72,56828349,56396373,2525,1163,307762532,305336392,42201,18249,1777429172,1766947035,6.22,6.19,18.46,18.47,0.37,0.39,3.2,3.19
-65351,29,195,29195,2342,1084,247159052,245199492,2525,1163,307762532,305336392,23370,10117,1986304356,1956746210,92.75,93.21,80.31,80.3,10.02,10.71,12.44,12.53
-65354,29,053,29053,49,17,6646226,6646226,628,266,67102837,67094329,17601,7463,1474172120,1462735802,7.8,6.39,9.9,9.91,0.28,0.23,0.45,0.45
-65354,29,141,29141,579,249,60456611,60448103,628,266,67102837,67094329,20565,15517,1590306177,1547855851,92.2,93.61,90.1,90.09,2.82,1.6,3.8,3.91
-65355,29,015,29015,10465,8549,694031417,595039113,10519,8572,695902511,596858553,19056,14150,1949087823,1823507941,99.49,99.73,99.73,99.7,54.92,60.42,35.61,32.63
-65355,29,085,29085,54,23,1871094,1819440,10519,8572,695902511,596858553,9627,6835,1066319214,1033641536,0.51,0.27,0.27,0.3,0.56,0.34,0.18,0.18
-65360,29,015,29015,373,166,107935887,107637506,4752,2099,403578104,400143449,19056,14150,1949087823,1823507941,7.85,7.91,26.74,26.9,1.96,1.17,5.54,5.9
-65360,29,083,29083,3549,1617,126918350,124914604,4752,2099,403578104,400143449,22272,10886,1896724665,1805085008,74.68,77.04,31.45,31.22,15.93,14.85,6.69,6.92
-65360,29,101,29101,335,117,81805764,81174355,4752,2099,403578104,400143449,52595,21528,2157956488,2147829735,7.05,5.57,20.27,20.29,0.64,0.54,3.79,3.78
-65360,29,159,29159,495,199,86918103,86416984,4752,2099,403578104,400143449,42201,18249,1777429172,1766947035,10.42,9.48,21.54,21.6,1.17,1.09,4.89,4.89
-65401,29,065,29065,510,236,84902539,84697687,32383,13795,687467024,685125613,15657,7285,1954162445,1949717319,1.57,1.71,12.35,12.36,3.26,3.24,4.34,4.34
-65401,29,125,29125,257,133,21147938,20956468,32383,13795,687467024,685125613,9176,4611,1372505864,1364869338,0.79,0.96,3.08,3.06,2.8,2.88,1.54,1.54
-65401,29,161,29161,31616,13426,581416547,579471458,32383,13795,687467024,685125613,45156,19533,1746486614,1739911952,97.63,97.33,84.57,84.58,70.02,68.73,33.29,33.3
-65436,29,161,29161,91,47,53881858,53845736,91,47,53881858,53845736,45156,19533,1746486614,1739911952,100,100,100,100,0.2,0.24,3.09,3.09
-65438,29,149,29149,433,234,339165651,338723457,2980,1409,846246468,845769135,10881,5486,2050089796,2045561195,14.53,16.61,40.08,40.05,3.98,4.27,16.54,16.56
-65438,29,203,29203,2547,1175,507080817,507045678,2980,1409,846246468,845769135,8441,4164,2600345139,2599881132,85.47,83.39,59.92,59.95,30.17,28.22,19.5,19.5
-65439,29,093,29093,259,128,103530835,102598847,259,128,103530835,102598847,10630,5329,1429840336,1425165244,100,100,100,100,2.44,2.4,7.24,7.2
-65440,29,065,29065,369,169,135685430,135240572,527,263,215506739,213856126,15657,7285,1954162445,1949717319,70.02,64.26,62.96,63.24,2.36,2.32,6.94,6.94
-65440,29,179,29179,158,94,79821309,78615554,527,263,215506739,213856126,6696,4033,2109320007,2093947170,29.98,35.74,37.04,36.76,2.36,2.33,3.78,3.75
-65441,29,055,29055,5059,2285,335295003,334694750,5194,2416,454932822,454243980,24696,11955,1926312624,1923109129,97.4,94.58,73.7,73.68,20.49,19.11,17.41,17.4
-65441,29,071,29071,16,7,2751123,2751123,5194,2416,454932822,454243980,101492,43419,2410463474,2389732948,0.31,0.29,0.6,0.61,0.02,0.02,0.11,0.12
-65441,29,221,29221,119,124,116886696,116798107,5194,2416,454932822,454243980,25195,11017,1974835318,1968164689,2.29,5.13,25.69,25.71,0.47,1.13,5.92,5.93
-65443,29,125,29125,96,52,22253071,22182874,96,52,22253071,22182874,9176,4611,1372505864,1364869338,100,100,100,100,1.05,1.13,1.62,1.63
-65444,29,215,29215,1087,544,212663286,212129746,1087,544,212663286,212129746,26008,11685,3054175869,3049104495,100,100,100,100,4.18,4.66,6.96,6.96
-65446,29,055,29055,331,174,99807103,99769687,331,174,99807103,99769687,24696,11955,1926312624,1923109129,100,100,100,100,1.34,1.46,5.18,5.19
-65449,29,055,29055,274,184,109903564,109883266,351,218,125374339,125352100,24696,11955,1926312624,1923109129,78.06,84.4,87.66,87.66,1.11,1.54,5.71,5.71
-65449,29,161,29161,77,34,15470775,15468834,351,218,125374339,125352100,45156,19533,1746486614,1739911952,21.94,15.6,12.34,12.34,0.17,0.17,0.89,0.89
-65452,29,131,29131,81,38,17091187,17091187,3315,1489,241131847,240416122,24748,12758,1553972263,1534813196,2.44,2.55,7.09,7.11,0.33,0.3,1.1,1.11
-65452,29,169,29169,3234,1451,224040660,223324935,3315,1489,241131847,240416122,52274,17904,1428326623,1416979227,97.56,97.45,92.91,92.89,6.19,8.1,15.69,15.76
-65453,29,055,29055,8417,4290,338794540,337218386,8548,4349,358058475,356405313,24696,11955,1926312624,1923109129,98.47,98.64,94.62,94.62,34.08,35.88,17.59,17.54
-65453,29,073,29073,131,59,19263935,19186927,8548,4349,358058475,356405313,15222,8205,1358295940,1341103601,1.53,1.36,5.38,5.38,0.86,0.72,1.42,1.43
-65456,29,055,29055,518,286,167110441,167077173,518,286,167110441,167077173,24696,11955,1926312624,1923109129,100,100,100,100,2.1,2.39,8.68,8.69
-65457,29,169,29169,338,152,50198996,49207610,338,152,50198996,49207610,52274,17904,1428326623,1416979227,100,100,100,100,0.65,0.85,3.51,3.47
-65459,29,125,29125,1778,895,327945326,326553268,8233,3724,610910624,607181578,9176,4611,1372505864,1364869338,21.6,24.03,53.68,53.78,19.38,19.41,23.89,23.93
-65459,29,131,29131,269,128,30502296,30502296,8233,3724,610910624,607181578,24748,12758,1553972263,1534813196,3.27,3.44,4.99,5.02,1.09,1,1.96,1.99
-65459,29,161,29161,140,59,35663553,35085060,8233,3724,610910624,607181578,45156,19533,1746486614,1739911952,1.7,1.58,5.84,5.78,0.31,0.3,2.04,2.02
-65459,29,169,29169,6046,2642,216799449,215040954,8233,3724,610910624,607181578,52274,17904,1428326623,1416979227,73.44,70.95,35.49,35.42,11.57,14.76,15.18,15.18
-65461,29,161,29161,67,30,11431598,11429451,105,52,48039999,47361974,45156,19533,1746486614,1739911952,63.81,57.69,23.8,24.13,0.15,0.15,0.65,0.66
-65461,29,169,29169,38,22,36608401,35932523,105,52,48039999,47361974,52274,17904,1428326623,1416979227,36.19,42.31,76.2,75.87,0.07,0.12,2.56,2.54
-65462,29,065,29065,129,64,38536712,38533433,1593,725,244853341,244757782,15657,7285,1954162445,1949717319,8.1,8.83,15.74,15.74,0.82,0.88,1.97,1.98
-65462,29,161,29161,1464,661,206316629,206224349,1593,725,244853341,244757782,45156,19533,1746486614,1739911952,91.9,91.17,84.26,84.26,3.24,3.38,11.81,11.85
-65463,29,029,29029,7,7,6538995,6316505,1011,478,178571827,178025778,44002,41183,1835380578,1698831838,0.69,1.46,3.66,3.55,0.02,0.02,0.36,0.37
-65463,29,059,29059,18,12,5603386,5569908,1011,478,178571827,178025778,16777,7662,1405974845,1400586526,1.78,2.51,3.14,3.13,0.11,0.16,0.4,0.4
-65463,29,105,29105,986,459,166429446,166139365,1011,478,178571827,178025778,35571,15778,1989143220,1980608825,97.53,96.03,93.2,93.32,2.77,2.91,8.37,8.39
-65464,29,215,29215,492,271,150941215,150900930,492,271,150941215,150900930,26008,11685,3054175869,3049104495,100,100,100,100,1.89,2.32,4.94,4.95
-65466,29,203,29203,1634,923,483913881,483790649,1634,923,483913881,483790649,8441,4164,2600345139,2599881132,100,100,100,100,19.36,22.17,18.61,18.61
-65468,29,215,29215,102,50,31403028,31403028,102,50,31403028,31403028,26008,11685,3054175869,3049104495,100,100,100,100,0.39,0.43,1.03,1.03
-65470,29,105,29105,833,391,234392066,233148303,923,448,277355693,275872007,35571,15778,1989143220,1980608825,90.25,87.28,84.51,84.51,2.34,2.48,11.78,11.77
-65470,29,229,29229,90,57,42963627,42723704,923,448,277355693,275872007,18815,8700,1769313189,1765779860,9.75,12.72,15.49,15.49,0.48,0.66,2.43,2.42
-65473,29,169,29169,15059,2013,258167209,256337594,15059,2013,258167209,256337594,52274,17904,1428326623,1416979227,100,100,100,100,28.81,11.24,18.07,18.09
-65479,29,203,29203,218,103,147978747,147946881,441,218,221659356,221612063,8441,4164,2600345139,2599881132,49.43,47.25,66.76,66.76,2.58,2.47,5.69,5.69
-65479,29,215,29215,223,115,73680609,73665182,441,218,221659356,221612063,26008,11685,3054175869,3049104495,50.57,52.75,33.24,33.24,0.86,0.98,2.41,2.42
-65483,29,215,29215,4737,2279,274691768,273733964,4737,2279,274691768,273733964,26008,11685,3054175869,3049104495,100,100,100,100,18.21,19.5,8.99,8.98
-65484,29,215,29215,186,95,64110778,64087777,186,95,64110778,64087777,26008,11685,3054175869,3049104495,100,100,100,100,0.72,0.81,2.1,2.1
-65486,29,131,29131,3423,1522,331207935,331109879,3423,1522,331207935,331109879,24748,12758,1553972263,1534813196,100,100,100,100,13.83,11.93,21.31,21.57
-65501,29,065,29065,163,97,48044969,48037372,163,97,48044969,48037372,15657,7285,1954162445,1949717319,100,100,100,100,1.04,1.33,2.46,2.46
-65529,29,161,29161,232,127,1806148,1519468,232,127,1806148,1519468,45156,19533,1746486614,1739911952,100,100,100,100,0.51,0.65,0.1,0.09
-65534,29,105,29105,47,21,29729254,29480546,1029,431,106365422,106029286,35571,15778,1989143220,1980608825,4.57,4.87,27.95,27.8,0.13,0.13,1.49,1.49
-65534,29,169,29169,982,410,76636168,76548740,1029,431,106365422,106029286,52274,17904,1428326623,1416979227,95.43,95.13,72.05,72.2,1.88,2.29,5.37,5.4
-65535,29,055,29055,1673,791,112175725,112048976,1673,791,112175725,112048976,24696,11955,1926312624,1923109129,100,100,100,100,6.77,6.62,5.82,5.83
-65536,29,029,29029,47,20,6181175,6180236,28874,12903,1057485497,1052115048,44002,41183,1835380578,1698831838,0.16,0.16,0.58,0.59,0.11,0.05,0.34,0.36
-65536,29,059,29059,215,166,48173936,47328009,28874,12903,1057485497,1052115048,16777,7662,1405974845,1400586526,0.74,1.29,4.56,4.5,1.28,2.17,3.43,3.38
-65536,29,105,29105,28612,12717,1003130386,998606803,28874,12903,1057485497,1052115048,35571,15778,1989143220,1980608825,99.09,98.56,94.86,94.91,80.44,80.6,50.43,50.42
-65541,29,065,29065,236,113,43864757,43786134,236,113,43864757,43786134,15657,7285,1954162445,1949717319,100,100,100,100,1.51,1.55,2.24,2.25
-65542,29,065,29065,144,82,44620144,44612116,6776,2424,564322615,563001368,15657,7285,1954162445,1949717319,2.13,3.38,7.91,7.92,0.92,1.13,2.28,2.29
-65542,29,215,29215,6632,2342,519702471,518389252,6776,2424,564322615,563001368,26008,11685,3054175869,3049104495,97.87,96.62,92.09,92.08,25.5,20.04,17.02,17
-65543,29,105,29105,262,111,76558724,76448895,431,184,159840031,159654041,35571,15778,1989143220,1980608825,60.79,60.33,47.9,47.88,0.74,0.7,3.85,3.86
-65543,29,229,29229,169,73,83281307,83205146,431,184,159840031,159654041,18815,8700,1769313189,1765779860,39.21,39.67,52.1,52.12,0.9,0.84,4.71,4.71
-65548,29,091,29091,5382,2443,264135692,263745944,5908,2726,414902372,414346668,40400,18021,2404475683,2401562178,91.1,89.62,63.66,63.65,13.32,13.56,10.99,10.98
-65548,29,203,29203,407,211,117144264,117143729,5908,2726,414902372,414346668,8441,4164,2600345139,2599881132,6.89,7.74,28.23,28.27,4.82,5.07,4.5,4.51
-65548,29,215,29215,119,72,33622416,33456995,5908,2726,414902372,414346668,26008,11685,3054175869,3049104495,2.01,2.64,8.1,8.07,0.46,0.62,1.1,1.1
-65550,29,161,29161,2822,1429,433259548,431344236,3127,1593,469868103,467172095,45156,19533,1746486614,1739911952,90.25,89.7,92.21,92.33,6.25,7.32,24.81,24.79
-65550,29,169,29169,305,164,36608555,35827859,3127,1593,469868103,467172095,52274,17904,1428326623,1416979227,9.75,10.3,7.79,7.67,0.58,0.92,2.56,2.53
-65552,29,105,29105,52,24,24878962,24865280,2013,911,385715850,384608881,35571,15778,1989143220,1980608825,2.58,2.63,6.45,6.47,0.15,0.15,1.25,1.26
-65552,29,169,29169,193,85,46623029,46413401,2013,911,385715850,384608881,52274,17904,1428326623,1416979227,9.59,9.33,12.09,12.07,0.37,0.47,3.26,3.28
-65552,29,215,29215,1768,802,314213859,313330200,2013,911,385715850,384608881,26008,11685,3054175869,3049104495,87.83,88.04,81.46,81.47,6.8,6.86,10.29,10.28
-65555,29,215,29215,1087,565,210358903,210354602,1087,565,210358903,210354602,26008,11685,3054175869,3049104495,100,100,100,100,4.18,4.84,6.89,6.9
-65556,29,029,29029,1049,495,179743556,179736340,5869,2716,592037772,588325620,44002,41183,1835380578,1698831838,17.87,18.23,30.36,30.55,2.38,1.2,9.79,10.58
-65556,29,105,29105,903,413,158142525,156714764,5869,2716,592037772,588325620,35571,15778,1989143220,1980608825,15.39,15.21,26.71,26.64,2.54,2.62,7.95,7.91
-65556,29,169,29169,3917,1808,254151691,251874516,5869,2716,592037772,588325620,52274,17904,1428326623,1416979227,66.74,66.57,42.93,42.81,7.49,10.1,17.79,17.78
-65557,29,215,29215,166,76,13473020,13459459,166,76,13473020,13459459,26008,11685,3054175869,3049104495,100,100,100,100,0.64,0.65,0.44,0.44
-65559,29,055,29055,29,15,4113081,4090225,9385,4057,488074163,485792082,24696,11955,1926312624,1923109129,0.31,0.37,0.84,0.84,0.12,0.13,0.21,0.21
-65559,29,073,29073,44,15,2846312,2846312,9385,4057,488074163,485792082,15222,8205,1358295940,1341103601,0.47,0.37,0.58,0.59,0.29,0.18,0.21,0.21
-65559,29,125,29125,734,355,108926271,108382268,9385,4057,488074163,485792082,9176,4611,1372505864,1364869338,7.82,8.75,22.32,22.31,8,7.7,7.94,7.94
-65559,29,161,29161,8578,3672,372188499,370473277,9385,4057,488074163,485792082,45156,19533,1746486614,1739911952,91.4,90.51,76.26,76.26,19,18.8,21.31,21.29
-65560,29,055,29055,284,158,85063280,84839790,14392,6742,1777056361,1773052067,24696,11955,1926312624,1923109129,1.97,2.34,4.79,4.78,1.15,1.32,4.42,4.41
-65560,29,065,29065,13832,6383,1447542480,1443847935,14392,6742,1777056361,1773052067,15657,7285,1954162445,1949717319,96.11,94.68,81.46,81.43,88.34,87.62,74.07,74.05
-65560,29,161,29161,69,48,35051459,35050083,14392,6742,1777056361,1773052067,45156,19533,1746486614,1739911952,0.48,0.71,1.97,1.98,0.15,0.25,2.01,2.01
-65560,29,203,29203,207,153,209399142,209314259,14392,6742,1777056361,1773052067,8441,4164,2600345139,2599881132,1.44,2.27,11.78,11.81,2.45,3.67,8.05,8.05
-65564,29,215,29215,220,93,29458098,29442104,220,93,29458098,29442104,26008,11685,3054175869,3049104495,100,100,100,100,0.85,0.8,0.96,0.97
-65565,29,055,29055,5723,2722,600901026,600475703,5854,2797,703809043,703258675,24696,11955,1926312624,1923109129,97.76,97.32,85.38,85.38,23.17,22.77,31.19,31.22
-65565,29,093,29093,70,36,54233437,54182575,5854,2797,703809043,703258675,10630,5329,1429840336,1425165244,1.2,1.29,7.71,7.7,0.66,0.68,3.79,3.8
-65565,29,221,29221,61,39,48674580,48600397,5854,2797,703809043,703258675,25195,11017,1974835318,1968164689,1.04,1.39,6.92,6.91,0.24,0.35,2.46,2.47
-65566,29,093,29093,772,376,13134562,13104207,772,376,13134562,13104207,10630,5329,1429840336,1425165244,100,100,100,100,7.26,7.06,0.92,0.92
-65567,29,029,29029,1100,505,141361534,141092908,1253,578,158135778,157854017,44002,41183,1835380578,1698831838,87.79,87.37,89.39,89.38,2.5,1.23,7.7,8.31
-65567,29,105,29105,153,73,16774244,16761109,1253,578,158135778,157854017,35571,15778,1989143220,1980608825,12.21,12.63,10.61,10.62,0.43,0.46,0.84,0.85
-65570,29,215,29215,528,242,74807671,74765698,528,242,74807671,74765698,26008,11685,3054175869,3049104495,100,100,100,100,2.03,2.07,2.45,2.45
-65571,29,203,29203,574,283,244797518,244797518,2134,1045,471015311,470824230,8441,4164,2600345139,2599881132,26.9,27.08,51.97,51.99,6.8,6.8,9.41,9.42
-65571,29,215,29215,1560,762,226217793,226026712,2134,1045,471015311,470824230,26008,11685,3054175869,3049104495,73.1,72.92,48.03,48.01,6,6.52,7.41,7.41
-65580,29,125,29125,829,413,143305548,142556793,829,413,143305548,142556793,9176,4611,1372505864,1364869338,100,100,100,100,9.03,8.96,10.44,10.44
-65582,29,125,29125,2181,1163,357341237,354079119,2181,1163,357341237,354079119,9176,4611,1372505864,1364869338,100,100,100,100,23.77,25.22,26.04,25.94
-65583,29,169,29169,12307,4992,167529334,165649917,12307,4992,167529334,165649917,52274,17904,1428326623,1416979227,100,100,100,100,23.54,27.88,11.73,11.69
-65584,29,169,29169,9855,4165,60963131,60821178,9855,4165,60963131,60821178,52274,17904,1428326623,1416979227,100,100,100,100,18.85,23.26,4.27,4.29
-65586,29,055,29055,33,28,4225625,4225625,33,28,4225625,4225625,24696,11955,1926312624,1923109129,100,100,100,100,0.13,0.23,0.22,0.22
-65588,29,149,29149,31,21,99857916,99656335,2680,1213,526077299,525804465,10881,5486,2050089796,2045561195,1.16,1.73,18.98,18.95,0.28,0.38,4.87,4.87
-65588,29,203,29203,2649,1192,426219383,426148130,2680,1213,526077299,525804465,8441,4164,2600345139,2599881132,98.84,98.27,81.02,81.05,31.38,28.63,16.39,16.39
-65589,29,215,29215,188,90,28633651,28633651,188,90,28633651,28633651,26008,11685,3054175869,3049104495,100,100,100,100,0.72,0.77,0.94,0.94
-65590,29,059,29059,1231,583,177366987,176422680,1231,583,177366987,176422680,16777,7662,1405974845,1400586526,100,100,100,100,7.34,7.61,12.62,12.6
-65591,29,029,29029,1512,668,129992083,129990573,1512,668,129992083,129990573,44002,41183,1835380578,1698831838,100,100,100,100,3.44,1.62,7.08,7.65
-65601,29,039,29039,17,19,5587481,1738942,812,440,146844004,129870758,13982,7224,1291508920,1228906021,2.09,4.32,3.81,1.34,0.12,0.26,0.43,0.14
-65601,29,057,29057,194,137,49261907,41748440,812,440,146844004,129870758,7883,3965,1311193757,1269124871,23.89,31.14,33.55,32.15,2.46,3.46,3.76,3.29
-65601,29,167,29167,601,284,91994616,86383376,812,440,146844004,129870758,31137,13304,1663836363,1645996569,74.01,64.55,62.65,66.51,1.93,2.13,5.53,5.25
-65603,29,057,29057,206,131,65948787,59952204,206,131,65948787,59952204,7883,3965,1311193757,1269124871,100,100,100,100,2.61,3.3,5.03,4.72
-65604,29,057,29057,111,46,13772524,13744266,3746,1625,221706905,221321588,7883,3965,1311193757,1269124871,2.96,2.83,6.21,6.21,1.41,1.16,1.05,1.08
-65604,29,077,29077,2517,1126,135071470,135026271,3746,1625,221706905,221321588,275174,125387,1755701148,1749030414,67.19,69.29,60.92,61.01,0.91,0.9,7.69,7.72
-65604,29,109,29109,1118,453,72862911,72551051,3746,1625,221706905,221321588,38634,16649,1588640113,1584390538,29.85,27.88,32.86,32.78,2.89,2.72,4.59,4.58
-65605,29,009,29009,1844,844,238364715,237674896,12136,5451,414126512,412969107,35597,17523,2048601393,2015660483,15.19,15.48,57.56,57.55,5.18,4.82,11.64,11.79
-65605,29,109,29109,10292,4607,175761797,175294211,12136,5451,414126512,412969107,38634,16649,1588640113,1584390538,84.81,84.52,42.44,42.45,26.64,27.67,11.06,11.06
-65606,29,149,29149,3613,1765,529688032,527819704,3613,1765,529688032,527819704,10881,5486,2050089796,2045561195,100,100,100,100,33.2,32.17,25.84,25.8
-65608,29,067,29067,9203,4353,968962890,968109655,9403,4462,1119343013,1118481267,13684,6519,2109794567,2107296301,97.87,97.56,86.57,86.56,67.25,66.77,45.93,45.94
-65608,29,153,29153,45,29,34358738,34358081,9403,4462,1119343013,1118481267,9723,5652,1956042297,1929467474,0.48,0.65,3.07,3.07,0.46,0.51,1.76,1.78
-65608,29,213,29213,155,80,116021385,116013531,9403,4462,1119343013,1118481267,51675,29255,1687739607,1638002904,1.65,1.79,10.37,10.37,0.3,0.27,6.87,7.08
-65609,29,091,29091,191,72,28214487,28210748,778,365,92272398,91759221,40400,18021,2404475683,2401562178,24.55,19.73,30.58,30.74,0.47,0.4,1.17,1.17
-65609,29,153,29153,587,293,64057911,63548473,778,365,92272398,91759221,9723,5652,1956042297,1929467474,75.45,80.27,69.42,69.26,6.04,5.18,3.27,3.29
-65610,29,043,29043,3841,1608,137081225,136790632,5239,2161,230437454,230095973,77422,31576,1460256423,1457243827,73.32,74.41,59.49,59.45,4.96,5.09,9.39,9.39
-65610,29,077,29077,580,225,28749173,28748388,5239,2161,230437454,230095973,275174,125387,1755701148,1749030414,11.07,10.41,12.48,12.49,0.21,0.18,1.64,1.64
-65610,29,109,29109,94,38,5442329,5426573,5239,2161,230437454,230095973,38634,16649,1588640113,1584390538,1.79,1.76,2.36,2.36,0.24,0.23,0.34,0.34
-65610,29,209,29209,724,290,59164727,59130380,5239,2161,230437454,230095973,32202,20373,1322907099,1201840755,13.82,13.42,25.67,25.7,2.25,1.42,4.47,4.92
-65611,29,209,29209,1933,1368,92990497,76373952,1969,1409,93621082,77004537,32202,20373,1322907099,1201840755,98.17,97.09,99.33,99.18,6,6.71,7.03,6.35
-65611,29,213,29213,36,41,630585,630585,1969,1409,93621082,77004537,51675,29255,1687739607,1638002904,1.83,2.91,0.67,0.82,0.07,0.14,0.04,0.04
-65612,29,077,29077,1247,539,81980386,81927480,1354,596,91888754,91798207,275174,125387,1755701148,1749030414,92.1,90.44,89.22,89.25,0.45,0.43,4.67,4.68
-65612,29,109,29109,107,57,9908368,9870727,1354,596,91888754,91798207,38634,16649,1588640113,1584390538,7.9,9.56,10.78,10.75,0.28,0.34,0.62,0.62
-65613,29,167,29167,17396,7269,491939128,488227432,17396,7269,491939128,488227432,31137,13304,1663836363,1645996569,100,100,100,100,55.87,54.64,29.57,29.66
-65614,29,043,29043,91,36,20191176,20190229,591,271,215898534,215897587,77422,31576,1460256423,1457243827,15.4,13.28,9.35,9.35,0.12,0.11,1.38,1.39
-65614,29,213,29213,500,235,195707358,195707358,591,271,215898534,215897587,51675,29255,1687739607,1638002904,84.6,86.72,90.65,90.65,0.97,0.8,11.6,11.95
-65616,29,209,29209,1207,1290,24576753,17347449,24284,15673,204435886,191931986,32202,20373,1322907099,1201840755,4.97,8.23,12.02,9.04,3.75,6.33,1.86,1.44
-65616,29,213,29213,23077,14383,179859133,174584537,24284,15673,204435886,191931986,51675,29255,1687739607,1638002904,95.03,91.77,87.98,90.96,44.66,49.16,10.66,10.66
-65617,29,077,29077,598,245,30028628,30028628,1630,667,76016376,75861591,275174,125387,1755701148,1749030414,36.69,36.73,39.5,39.58,0.22,0.2,1.71,1.72
-65617,29,167,29167,1032,422,45987748,45832963,1630,667,76016376,75861591,31137,13304,1663836363,1645996569,63.31,63.27,60.5,60.42,3.31,3.17,2.76,2.78
-65618,29,153,29153,148,94,71986404,71830684,148,94,71986404,71830684,9723,5652,1956042297,1929467474,100,100,100,100,1.52,1.66,3.68,3.72
-65619,29,043,29043,208,82,8719604,8564220,7393,3048,49631526,49472040,77422,31576,1460256423,1457243827,2.81,2.69,17.57,17.31,0.27,0.26,0.6,0.59
-65619,29,077,29077,7185,2966,40911922,40907820,7393,3048,49631526,49472040,275174,125387,1755701148,1749030414,97.19,97.31,82.43,82.69,2.61,2.37,2.33,2.34
-65620,29,043,29043,262,102,27239313,27221665,262,102,27239313,27221665,77422,31576,1460256423,1457243827,100,100,100,100,0.34,0.32,1.87,1.87
-65622,29,059,29059,8199,3772,380922968,379777152,8716,3980,417110380,415850660,16777,7662,1405974845,1400586526,94.07,94.77,91.32,91.33,48.87,49.23,27.09,27.12
-65622,29,167,29167,517,208,36187412,36073508,8716,3980,417110380,415850660,31137,13304,1663836363,1645996569,5.93,5.23,8.68,8.67,1.66,1.56,2.17,2.19
-65623,29,009,29009,36,13,45406,45406,36,13,45406,45406,35597,17523,2048601393,2015660483,100,100,100,100,0.1,0.07,0,0
-65624,29,009,29009,110,61,73024582,72775606,1577,1046,152993743,144441262,35597,17523,2048601393,2015660483,6.98,5.83,47.73,50.38,0.31,0.35,3.56,3.61
-65624,29,209,29209,1467,985,79969161,71665656,1577,1046,152993743,144441262,32202,20373,1322907099,1201840755,93.02,94.17,52.27,49.62,4.56,4.83,6.04,5.96
-65625,29,009,29009,8328,3750,412361557,410504199,8328,3750,412361557,410504199,35597,17523,2048601393,2015660483,100,100,100,100,23.4,21.4,20.13,20.37
-65626,29,091,29091,807,385,115962405,115909810,1637,814,268860144,268502954,40400,18021,2404475683,2401562178,49.3,47.3,43.13,43.17,2,2.14,4.82,4.83
-65626,29,153,29153,830,429,152897739,152593144,1637,814,268860144,268502954,9723,5652,1956042297,1929467474,50.7,52.7,56.87,56.83,8.54,7.59,7.82,7.91
-65627,29,213,29213,460,491,150108191,140056436,460,491,150108191,140056436,51675,29255,1687739607,1638002904,100,100,100,100,0.89,1.68,8.89,8.55
-65629,29,043,29043,574,277,176760001,176754197,574,277,176760001,176754197,77422,31576,1460256423,1457243827,100,100,100,100,0.74,0.88,12.1,12.13
-65630,29,043,29043,310,138,25362278,25361062,310,138,25362278,25361062,77422,31576,1460256423,1457243827,100,100,100,100,0.4,0.44,1.74,1.74
-65631,29,043,29043,4031,1611,75662161,75410245,4678,1864,111423813,110995926,77422,31576,1460256423,1457243827,86.17,86.43,67.9,67.94,5.21,5.1,5.18,5.17
-65631,29,209,29209,647,253,35761652,35585681,4678,1864,111423813,110995926,32202,20373,1322907099,1201840755,13.83,13.57,32.1,32.06,2.01,1.24,2.7,2.96
-65632,29,059,29059,477,201,58513586,58372326,2939,1239,269442020,268959179,16777,7662,1405974845,1400586526,16.23,16.22,21.72,21.7,2.84,2.62,4.16,4.17
-65632,29,105,29105,1774,772,135013977,134802051,2939,1239,269442020,268959179,35571,15778,1989143220,1980608825,60.36,62.31,50.11,50.12,4.99,4.89,6.79,6.81
-65632,29,225,29225,688,266,75914457,75784802,2939,1239,269442020,268959179,36202,14417,1537840651,1534729111,23.41,21.47,28.17,28.18,1.9,1.85,4.94,4.94
-65633,29,009,29009,619,248,43798258,43787678,4131,1788,220254763,219782570,35597,17523,2048601393,2015660483,14.98,13.87,19.89,19.92,1.74,1.42,2.14,2.17
-65633,29,209,29209,3512,1540,176456505,175994892,4131,1788,220254763,219782570,32202,20373,1322907099,1201840755,85.02,86.13,80.11,80.08,10.91,7.56,13.34,14.64
-65634,29,015,29015,11,7,3952458,3948477,766,461,207818749,206157240,19056,14150,1949087823,1823507941,1.44,1.52,1.9,1.92,0.06,0.05,0.2,0.22
-65634,29,029,29029,4,5,321755,321755,766,461,207818749,206157240,44002,41183,1835380578,1698831838,0.52,1.08,0.15,0.16,0.01,0.01,0.02,0.02
-65634,29,085,29085,751,449,203544536,201887008,766,461,207818749,206157240,9627,6835,1066319214,1033641536,98.04,97.4,97.94,97.93,7.8,6.57,19.09,19.53
-65635,29,039,29039,60,63,29289248,16236351,541,288,117047461,98527246,13982,7224,1291508920,1228906021,11.09,21.88,25.02,16.48,0.43,0.87,2.27,1.32
-65635,29,057,29057,481,225,87758213,82290895,541,288,117047461,98527246,7883,3965,1311193757,1269124871,88.91,78.13,74.98,83.52,6.1,5.67,6.69,6.48
-65637,29,067,29067,255,126,60989058,60848041,1135,575,236658381,235831393,13684,6519,2109794567,2107296301,22.47,21.91,25.77,25.8,1.86,1.93,2.89,2.89
-65637,29,091,29091,213,97,30784169,30771172,1135,575,236658381,235831393,40400,18021,2404475683,2401562178,18.77,16.87,13.01,13.05,0.53,0.54,1.28,1.28
-65637,29,153,29153,667,352,144885154,144212180,1135,575,236658381,235831393,9723,5652,1956042297,1929467474,58.77,61.22,61.22,61.15,6.86,6.23,7.41,7.47
-65638,29,067,29067,372,210,110255072,110202523,461,263,139277017,139046794,13684,6519,2109794567,2107296301,80.69,79.85,79.16,79.26,2.72,3.22,5.23,5.23
-65638,29,153,29153,89,53,29021945,28844271,461,263,139277017,139046794,9723,5652,1956042297,1929467474,19.31,20.15,20.84,20.74,0.92,0.94,1.48,1.49
-65640,29,039,29039,118,62,30359781,30271793,887,362,105681889,105377519,13982,7224,1291508920,1228906021,13.3,17.13,28.73,28.73,0.84,0.86,2.35,2.46
-65640,29,167,29167,769,300,75322108,75105726,887,362,105681889,105377519,31137,13304,1663836363,1645996569,86.7,82.87,71.27,71.27,2.47,2.25,4.53,4.56
-65641,29,009,29009,1250,956,130938033,123249457,1250,956,130938033,123249457,35597,17523,2048601393,2015660483,100,100,100,100,3.51,5.46,6.39,6.11
-65644,29,059,29059,1689,737,134720996,134220280,2759,1197,209913581,209194601,16777,7662,1405974845,1400586526,61.22,61.57,64.18,64.16,10.07,9.62,9.58,9.58
-65644,29,225,29225,1070,460,75192585,74974321,2759,1197,209913581,209194601,36202,14417,1537840651,1534729111,38.78,38.43,35.82,35.84,2.96,3.19,4.89,4.89
-65646,29,057,29057,1532,728,210954711,208760690,2046,954,274685344,272368031,7883,3965,1311193757,1269124871,74.88,76.31,76.8,76.65,19.43,18.36,16.09,16.45
-65646,29,109,29109,514,226,63730633,63607341,2046,954,274685344,272368031,38634,16649,1588640113,1584390538,25.12,23.69,23.2,23.35,1.33,1.36,4.01,4.01
-65647,29,009,29009,2312,1005,135171885,134908415,2347,1022,144861389,144597919,35597,17523,2048601393,2015660483,98.51,98.34,93.31,93.3,6.49,5.74,6.6,6.69
-65647,29,119,29119,35,17,9689504,9689504,2347,1022,144861389,144597919,23083,9925,1397767453,1397247203,1.49,1.66,6.69,6.7,0.15,0.17,0.69,0.69
-65648,29,059,29059,1094,413,47722434,47702584,5614,2326,203104955,202809776,16777,7662,1405974845,1400586526,19.49,17.76,23.5,23.52,6.52,5.39,3.39,3.41
-65648,29,077,29077,3995,1692,125100558,125017710,5614,2326,203104955,202809776,275174,125387,1755701148,1749030414,71.16,72.74,61.59,61.64,1.45,1.35,7.13,7.15
-65648,29,167,29167,202,87,15362942,15186670,5614,2326,203104955,202809776,31137,13304,1663836363,1645996569,3.6,3.74,7.56,7.49,0.65,0.65,0.92,0.92
-65648,29,225,29225,323,134,14919021,14902812,5614,2326,203104955,202809776,36202,14417,1537840651,1534729111,5.75,5.76,7.35,7.35,0.89,0.93,0.97,0.97
-65649,29,039,29039,457,256,83947076,70830211,1593,779,175559881,159750009,13982,7224,1291508920,1228906021,28.69,32.86,47.82,44.34,3.27,3.54,6.5,5.76
-65649,29,167,29167,1136,523,91612805,88919798,1593,779,175559881,159750009,31137,13304,1663836363,1645996569,71.31,67.14,52.18,55.66,3.65,3.93,5.51,5.4
-65650,29,085,29085,865,569,110161803,106438824,1520,1013,191951413,185721769,9627,6835,1066319214,1033641536,56.91,56.17,57.39,57.31,8.99,8.32,10.33,10.3
-65650,29,167,29167,655,444,81789610,79282945,1520,1013,191951413,185721769,31137,13304,1663836363,1645996569,43.09,43.83,42.61,42.69,2.1,3.34,4.92,4.82
-65652,29,043,29043,321,122,25583963,25540805,4157,1491,187390859,187144299,77422,31576,1460256423,1457243827,7.72,8.18,13.65,13.65,0.41,0.39,1.75,1.75
-65652,29,067,29067,31,18,3498419,3498419,4157,1491,187390859,187144299,13684,6519,2109794567,2107296301,0.75,1.21,1.87,1.87,0.23,0.28,0.17,0.17
-65652,29,225,29225,3805,1351,158308477,158105075,4157,1491,187390859,187144299,36202,14417,1537840651,1534729111,91.53,90.61,84.48,84.48,10.51,9.37,10.29,10.3
-65653,29,043,29043,200,72,68398226,68398226,5708,2930,169811651,166414169,77422,31576,1460256423,1457243827,3.5,2.46,40.28,41.1,0.26,0.23,4.68,4.69
-65653,29,213,29213,5508,2858,101413425,98015943,5708,2930,169811651,166414169,51675,29255,1687739607,1638002904,96.5,97.54,59.72,58.9,10.66,9.77,6.01,5.98
-65654,29,109,29109,159,89,2841566,2840550,159,89,2841566,2840550,38634,16649,1588640113,1584390538,100,100,100,100,0.41,0.53,0.18,0.18
-65655,29,153,29153,3186,1579,543309441,540785338,3186,1579,543309441,540785338,9723,5652,1956042297,1929467474,100,100,100,100,32.77,27.94,27.78,28.03
-65656,29,009,29009,33,19,9179130,9179130,4929,2836,316778944,303676123,35597,17523,2048601393,2015660483,0.67,0.67,2.9,3.02,0.09,0.11,0.45,0.46
-65656,29,043,29043,12,6,652762,652762,4929,2836,316778944,303676123,77422,31576,1460256423,1457243827,0.24,0.21,0.21,0.21,0.02,0.02,0.04,0.04
-65656,29,209,29209,4884,2811,306947052,293844231,4929,2836,316778944,303676123,32202,20373,1322907099,1201840755,99.09,99.12,96.9,96.76,15.17,13.8,23.2,24.45
-65657,29,043,29043,94,39,45958986,45922764,94,39,45958986,45922764,77422,31576,1460256423,1457243827,100,100,100,100,0.12,0.12,3.15,3.15
-65658,29,009,29009,1131,971,62453742,53906487,1131,971,62453742,53906487,35597,17523,2048601393,2015660483,100,100,100,100,3.18,5.54,3.05,2.67
-65660,29,215,29215,23,12,7005049,7002740,182,90,58216768,58165170,26008,11685,3054175869,3049104495,12.64,13.33,12.03,12.04,0.09,0.1,0.23,0.23
-65660,29,229,29229,159,78,51211719,51162430,182,90,58216768,58165170,18815,8700,1769313189,1765779860,87.36,86.67,87.97,87.96,0.85,0.9,2.89,2.9
-65661,29,057,29057,2562,1392,239883208,221753587,2562,1392,239883208,221753587,7883,3965,1311193757,1269124871,100,100,100,100,32.5,35.11,18.3,17.47
-65662,29,105,29105,268,113,45968066,45713016,1269,591,195157836,194882064,35571,15778,1989143220,1980608825,21.12,19.12,23.55,23.46,0.75,0.72,2.31,2.31
-65662,29,229,29229,1001,478,149189770,149169048,1269,591,195157836,194882064,18815,8700,1769313189,1765779860,78.88,80.88,76.45,76.54,5.32,5.49,8.43,8.45
-65663,29,167,29167,2481,1004,291949279,291342522,2481,1004,291949279,291342522,31137,13304,1663836363,1645996569,100,100,100,100,7.97,7.55,17.55,17.7
-65664,29,109,29109,159,78,2018155,2013254,159,78,2018155,2013254,38634,16649,1588640113,1584390538,100,100,100,100,0.41,0.47,0.13,0.13
-65667,29,229,29229,3305,1620,480675194,479016615,3305,1620,480675194,479016615,18815,8700,1769313189,1765779860,100,100,100,100,17.57,18.62,27.17,27.13
-65668,29,085,29085,1745,1101,94587855,91638240,1745,1101,94587855,91638240,9627,6835,1066319214,1033641536,100,100,100,100,18.13,16.11,8.87,8.87
-65669,29,043,29043,1813,748,82028455,82010695,2031,859,106124555,105851331,77422,31576,1460256423,1457243827,89.27,87.08,77.29,77.48,2.34,2.37,5.62,5.63
-65669,29,209,29209,218,111,24096100,23840636,2031,859,106124555,105851331,32202,20373,1322907099,1201840755,10.73,12.92,22.71,22.52,0.68,0.54,1.82,1.98
-65672,29,213,29213,9048,4700,150476364,143525999,9048,4700,150476364,143525999,51675,29255,1687739607,1638002904,100,100,100,100,17.51,16.07,8.92,8.76
-65674,29,039,29039,905,381,96925638,96596489,2991,1321,256533142,255300828,13982,7224,1291508920,1228906021,30.26,28.84,37.78,37.84,6.47,5.27,7.5,7.86
-65674,29,085,29085,105,49,24950712,24562765,2991,1321,256533142,255300828,9627,6835,1066319214,1033641536,3.51,3.71,9.73,9.62,1.09,0.72,2.34,2.38
-65674,29,167,29167,1907,849,116283873,115857815,2991,1321,256533142,255300828,31137,13304,1663836363,1645996569,63.76,64.27,45.33,45.38,6.12,6.38,6.99,7.04
-65674,29,185,29185,74,42,18372919,18283759,2991,1321,256533142,255300828,9805,5640,1818304394,1735247885,2.47,3.18,7.16,7.16,0.75,0.74,1.01,1.05
-65676,29,153,29153,472,319,45966937,41540449,472,319,45966937,41540449,9723,5652,1956042297,1929467474,100,100,100,100,4.85,5.64,2.35,2.15
-65679,29,213,29213,2704,1220,145340174,136155584,2704,1220,145340174,136155584,51675,29255,1687739607,1638002904,100,100,100,100,5.23,4.17,8.61,8.31
-65680,29,213,29213,1201,612,57817503,55597849,1201,612,57817503,55597849,51675,29255,1687739607,1638002904,100,100,100,100,2.32,2.09,3.43,3.39
-65681,29,209,29209,2345,1648,101208782,87499919,2345,1648,101208782,87499919,32202,20373,1322907099,1201840755,100,100,100,100,7.28,8.09,7.65,7.28
-65682,29,057,29057,1908,886,374115713,373080963,1980,921,390549851,389471925,7883,3965,1311193757,1269124871,96.36,96.2,95.79,95.79,24.2,22.35,28.53,29.4
-65682,29,109,29109,72,35,16434138,16390962,1980,921,390549851,389471925,38634,16649,1588640113,1584390538,3.64,3.8,4.21,4.21,0.19,0.21,1.03,1.03
-65685,29,059,29059,692,342,65737754,65701261,877,423,86396802,86350755,16777,7662,1405974845,1400586526,78.91,80.85,76.09,76.09,4.12,4.46,4.68,4.69
-65685,29,167,29167,185,81,20659048,20649494,877,423,86396802,86350755,31137,13304,1663836363,1645996569,21.09,19.15,23.91,23.91,0.59,0.61,1.24,1.25
-65686,29,209,29209,4920,3461,39209823,24721434,4920,3461,39209823,24721434,32202,20373,1322907099,1201840755,100,100,100,100,15.28,16.99,2.96,2.06
-65689,29,067,29067,244,108,80751416,80428348,4859,2312,474175425,473334795,13684,6519,2109794567,2107296301,5.02,4.67,17.03,16.99,1.78,1.66,3.83,3.82
-65689,29,091,29091,58,27,22222709,22215903,4859,2312,474175425,473334795,40400,18021,2404475683,2401562178,1.19,1.17,4.69,4.69,0.14,0.15,0.92,0.93
-65689,29,215,29215,4557,2177,371201300,370690544,4859,2312,474175425,473334795,26008,11685,3054175869,3049104495,93.78,94.16,78.28,78.31,17.52,18.63,12.15,12.16
-65690,29,149,29149,298,169,114143509,113554629,298,169,114143509,113554629,10881,5486,2050089796,2045561195,100,100,100,100,2.74,3.08,5.57,5.55
-65692,29,091,29091,349,166,93740874,93740874,1332,634,296353556,296226986,40400,18021,2404475683,2401562178,26.2,26.18,31.63,31.64,0.86,0.92,3.9,3.9
-65692,29,149,29149,983,468,202612682,202486112,1332,634,296353556,296226986,10881,5486,2050089796,2045561195,73.8,73.82,68.37,68.36,9.03,8.53,9.88,9.9
-65702,29,067,29067,116,59,38554795,38547077,473,213,74785458,74772899,13684,6519,2109794567,2107296301,24.52,27.7,51.55,51.55,0.85,0.91,1.83,1.83
-65702,29,229,29229,357,154,36230663,36225822,473,213,74785458,74772899,18815,8700,1769313189,1765779860,75.48,72.3,48.45,48.45,1.9,1.77,2.05,2.05
-65704,29,067,29067,444,213,84098840,84092997,4047,1854,324744796,324642059,13684,6519,2109794567,2107296301,10.97,11.49,25.9,25.9,3.24,3.27,3.99,3.99
-65704,29,229,29229,3603,1641,240645956,240549062,4047,1854,324744796,324642059,18815,8700,1769313189,1765779860,89.03,88.51,74.1,74.1,19.15,18.86,13.6,13.62
-65705,29,109,29109,3657,1650,72032714,71911260,3999,1786,104210117,104070133,38634,16649,1588640113,1584390538,91.45,92.39,69.12,69.1,9.47,9.91,4.53,4.54
-65705,29,209,29209,342,136,32177403,32158873,3999,1786,104210117,104070133,32202,20373,1322907099,1201840755,8.55,7.61,30.88,30.9,1.06,0.67,2.43,2.68
-65706,29,225,29225,14439,6083,466425120,465331372,14439,6083,466425120,465331372,36202,14417,1537840651,1534729111,100,100,100,100,39.88,42.19,30.33,30.32
-65707,29,109,29109,2299,1052,248714144,248192207,2299,1052,248714144,248192207,38634,16649,1588640113,1584390538,100,100,100,100,5.95,6.32,15.66,15.66
-65708,29,009,29009,8066,3450,172057684,171800934,12624,5298,237378377,237001271,35597,17523,2048601393,2015660483,63.89,65.12,72.48,72.49,22.66,19.69,8.4,8.52
-65708,29,109,29109,4558,1848,65320693,65200337,12624,5298,237378377,237001271,38634,16649,1588640113,1584390538,36.11,34.88,27.52,27.51,11.8,11.1,4.11,4.12
-65710,29,167,29167,1275,520,79444728,78935296,1275,520,79444728,78935296,31137,13304,1663836363,1645996569,100,100,100,100,4.09,3.91,4.77,4.8
-65711,29,067,29067,561,263,147268161,147220564,9926,4600,755053108,753726584,13684,6519,2109794567,2107296301,5.65,5.72,19.5,19.53,4.1,4.03,6.98,6.99
-65711,29,215,29215,1679,755,211356860,211191989,9926,4600,755053108,753726584,26008,11685,3054175869,3049104495,16.92,16.41,27.99,28.02,6.46,6.46,6.92,6.93
-65711,29,229,29229,7686,3582,396428087,395314031,9926,4600,755053108,753726584,18815,8700,1769313189,1765779860,77.43,77.87,52.5,52.45,40.85,41.17,22.41,22.39
-65712,29,109,29109,8494,3608,315433863,315011522,8494,3608,315433863,315011522,38634,16649,1588640113,1584390538,100,100,100,100,21.99,21.67,19.86,19.88
-65713,29,225,29225,2261,1037,219753446,219145044,2496,1156,282287910,281554729,36202,14417,1537840651,1534729111,90.58,89.71,77.85,77.83,6.25,7.19,14.29,14.28
-65713,29,229,29229,235,119,62534464,62409685,2496,1156,282287910,281554729,18815,8700,1769313189,1765779860,9.42,10.29,22.15,22.17,1.25,1.37,3.53,3.53
-65714,29,043,29043,29241,11904,126958820,126338821,29818,12114,135279938,134557698,77422,31576,1460256423,1457243827,98.06,98.27,93.85,93.89,37.77,37.7,8.69,8.67
-65714,29,209,29209,577,210,8321118,8218877,29818,12114,135279938,134557698,32202,20373,1322907099,1201840755,1.94,1.73,6.15,6.11,1.79,1.03,0.63,0.68
-65715,29,153,29153,92,46,35411872,35404877,92,46,35411872,35404877,9723,5652,1956042297,1929467474,100,100,100,100,0.95,0.81,1.81,1.83
-65717,29,067,29067,629,310,174072018,174056034,2568,1099,356422254,356372666,13684,6519,2109794567,2107296301,24.49,28.21,48.84,48.84,4.6,4.76,8.25,8.26
-65717,29,229,29229,1939,789,182350236,182316632,2568,1099,356422254,356372666,18815,8700,1769313189,1765779860,75.51,71.79,51.16,51.16,10.31,9.07,10.31,10.32
-65720,29,043,29043,491,206,57560478,57502416,665,285,89872015,89797985,77422,31576,1460256423,1457243827,73.83,72.28,64.05,64.04,0.63,0.65,3.94,3.95
-65720,29,067,29067,174,79,32311537,32295569,665,285,89872015,89797985,13684,6519,2109794567,2107296301,26.17,27.72,35.95,35.96,1.27,1.21,1.53,1.53
-65721,29,043,29043,27709,11288,247057500,246371135,28550,11646,253215675,252529310,77422,31576,1460256423,1457243827,97.05,96.93,97.57,97.56,35.79,35.75,16.92,16.91
-65721,29,077,29077,841,358,6158175,6158175,28550,11646,253215675,252529310,275174,125387,1755701148,1749030414,2.95,3.07,2.43,2.44,0.31,0.29,0.35,0.35
-65722,29,059,29059,228,116,46164434,46121123,1909,800,144290004,144049816,16777,7662,1405974845,1400586526,11.94,14.5,31.99,32.02,1.36,1.51,3.28,3.29
-65722,29,105,29105,1681,684,98125570,97928693,1909,800,144290004,144049816,35571,15778,1989143220,1980608825,88.06,85.5,68.01,67.98,4.73,4.34,4.93,4.94
-65723,29,009,29009,243,109,41071959,40993457,3606,1552,229069743,228592229,35597,17523,2048601393,2015660483,6.74,7.02,17.93,17.93,0.68,0.62,2,2.03
-65723,29,109,29109,2736,1175,112747416,112475584,3606,1552,229069743,228592229,38634,16649,1588640113,1584390538,75.87,75.71,49.22,49.2,7.08,7.06,7.1,7.1
-65723,29,145,29145,627,268,75250368,75123188,3606,1552,229069743,228592229,58114,24313,1622850767,1618133227,17.39,17.27,32.85,32.86,1.08,1.1,4.64,4.64
-65724,29,085,29085,1392,1574,68735189,55257389,1392,1574,68735189,55257389,9627,6835,1066319214,1033641536,100,100,100,100,14.46,23.03,6.45,5.35
-65725,29,077,29077,715,283,28053830,28053830,2459,1046,86223950,85862180,275174,125387,1755701148,1749030414,29.08,27.06,32.54,32.67,0.26,0.23,1.6,1.6
-65725,29,167,29167,1744,763,58170120,57808350,2459,1046,86223950,85862180,31137,13304,1663836363,1645996569,70.92,72.94,67.46,67.33,5.6,5.74,3.5,3.51
-65727,29,167,29167,218,93,36271988,36050856,218,93,36271988,36050856,31137,13304,1663836363,1645996569,100,100,100,100,0.7,0.7,2.18,2.19
-65728,29,209,29209,76,28,2367166,2367166,76,28,2367166,2367166,32202,20373,1322907099,1201840755,100,100,100,100,0.24,0.14,0.18,0.2
-65729,05,089,05089,36,45,12033036,6157236,264,271,47717548,38651677,16653,9354,1658419833,1546245256,13.64,16.61,25.22,15.93,0.22,0.48,0.73,0.4
-65729,29,153,29153,228,226,35684512,32494441,264,271,47717548,38651677,9723,5652,1956042297,1929467474,86.36,83.39,74.78,84.07,2.34,4,1.82,1.68
-65730,29,119,29119,196,108,37003800,37003800,196,108,37003800,37003800,23083,9925,1397767453,1397247203,100,100,100,100,0.85,1.09,2.65,2.65
-65731,29,213,29213,281,145,3881071,3650069,281,145,3881071,3650069,51675,29255,1687739607,1638002904,100,100,100,100,0.54,0.5,0.23,0.22
-65732,29,085,29085,871,427,136173753,135804340,871,427,136173753,135804340,9627,6835,1066319214,1033641536,100,100,100,100,9.05,6.25,12.77,13.14
-65733,05,009,05009,5,5,8484181,4885260,720,667,185397717,163442583,36903,16827,1558736618,1528692190,0.69,0.75,4.58,2.99,0.01,0.03,0.54,0.32
-65733,05,089,05089,212,292,30723519,18188558,720,667,185397717,163442583,16653,9354,1658419833,1546245256,29.44,43.78,16.57,11.13,1.27,3.12,1.85,1.18
-65733,29,153,29153,8,9,7655838,5290263,720,667,185397717,163442583,9723,5652,1956042297,1929467474,1.11,1.35,4.13,3.24,0.08,0.16,0.39,0.27
-65733,29,213,29213,495,361,138534179,135078502,720,667,185397717,163442583,51675,29255,1687739607,1638002904,68.75,54.12,74.72,82.65,0.96,1.23,8.21,8.25
-65734,29,009,29009,3497,1480,207507962,207051336,3497,1480,207507962,207051336,35597,17523,2048601393,2015660483,100,100,100,100,9.82,8.45,10.13,10.27
-65735,29,015,29015,9,6,7034751,7018500,110,79,53839259,53719377,19056,14150,1949087823,1823507941,8.18,7.59,13.07,13.07,0.05,0.04,0.36,0.38
-65735,29,085,29085,101,73,46804508,46700877,110,79,53839259,53719377,9627,6835,1066319214,1033641536,91.82,92.41,86.93,86.93,1.05,1.07,4.39,4.52
-65737,29,043,29043,13,5,2078000,2078000,8413,5212,236174165,219311308,77422,31576,1460256423,1457243827,0.15,0.1,0.88,0.95,0.02,0.02,0.14,0.14
-65737,29,209,29209,7973,5030,205630747,188767890,8413,5212,236174165,219311308,32202,20373,1322907099,1201840755,94.77,96.51,87.07,86.07,24.76,24.69,15.54,15.71
-65737,29,213,29213,427,177,28465418,28465418,8413,5212,236174165,219311308,51675,29255,1687739607,1638002904,5.08,3.4,12.05,12.98,0.83,0.61,1.69,1.74
-65738,29,043,29043,343,133,15977143,15941406,17550,7271,133768612,133678392,77422,31576,1460256423,1457243827,1.95,1.83,11.94,11.93,0.44,0.42,1.09,1.09
-65738,29,077,29077,17181,7124,115875203,115829695,17550,7271,133768612,133678392,275174,125387,1755701148,1749030414,97.9,97.98,86.62,86.65,6.24,5.68,6.6,6.62
-65738,29,109,29109,26,14,1916266,1907291,17550,7271,133768612,133678392,38634,16649,1588640113,1584390538,0.15,0.19,1.43,1.43,0.07,0.08,0.12,0.12
-65739,29,213,29213,1326,863,40587458,33906707,1326,863,40587458,33906707,51675,29255,1687739607,1638002904,100,100,100,100,2.57,2.95,2.4,2.07
-65740,29,213,29213,3405,1795,12373172,11634426,3405,1795,12373172,11634426,51675,29255,1687739607,1638002904,100,100,100,100,6.59,6.14,0.73,0.71
-65742,29,043,29043,1891,759,82209769,81834075,11367,4691,303150907,302351290,77422,31576,1460256423,1457243827,16.64,16.18,27.12,27.07,2.44,2.4,5.63,5.62
-65742,29,077,29077,4652,1996,126010110,125840019,11367,4691,303150907,302351290,275174,125387,1755701148,1749030414,40.93,42.55,41.57,41.62,1.69,1.59,7.18,7.19
-65742,29,225,29225,4824,1936,94931028,94677196,11367,4691,303150907,302351290,36202,14417,1537840651,1534729111,42.44,41.27,31.31,31.31,13.33,13.43,6.17,6.17
-65744,29,213,29213,142,68,54460953,54460953,142,68,54460953,54460953,51675,29255,1687739607,1638002904,100,100,100,100,0.27,0.23,3.23,3.32
-65745,29,009,29009,2276,999,151925128,151761919,2693,1179,183748578,183571174,35597,17523,2048601393,2015660483,84.52,84.73,82.68,82.67,6.39,5.7,7.42,7.53
-65745,29,119,29119,417,180,31823450,31809255,2693,1179,183748578,183571174,23083,9925,1397767453,1397247203,15.48,15.27,17.32,17.33,1.81,1.81,2.28,2.28
-65746,29,067,29067,362,152,52915071,52898302,7895,2802,467300805,466721070,13684,6519,2109794567,2107296301,4.59,5.42,11.32,11.33,2.65,2.33,2.51,2.51
-65746,29,225,29225,7262,2541,370583568,370135083,7895,2802,467300805,466721070,36202,14417,1537840651,1534729111,91.98,90.69,79.3,79.31,20.06,17.63,24.1,24.12
-65746,29,229,29229,271,109,43802166,43687685,7895,2802,467300805,466721070,18815,8700,1769313189,1765779860,3.43,3.89,9.37,9.36,1.44,1.25,2.48,2.47
-65747,29,009,29009,2369,2130,109737963,97274789,3746,3342,243767576,201598508,35597,17523,2048601393,2015660483,63.24,63.73,45.02,48.25,6.66,12.16,5.36,4.83
-65747,29,209,29209,1377,1212,134029613,104323719,3746,3342,243767576,201598508,32202,20373,1322907099,1201840755,36.76,36.27,54.98,51.75,4.28,5.95,10.13,8.68
-65752,29,057,29057,382,178,99184021,99015422,432,202,108960583,108786303,7883,3965,1311193757,1269124871,88.43,88.12,91.03,91.02,4.85,4.49,7.56,7.8
-65752,29,109,29109,50,24,9776562,9770881,432,202,108960583,108786303,38634,16649,1588640113,1584390538,11.57,11.88,8.97,8.98,0.13,0.14,0.62,0.62
-65753,29,043,29043,5027,2066,181086582,180671336,5027,2066,181086582,180671336,77422,31576,1460256423,1457243827,100,100,100,100,6.49,6.54,12.4,12.4
-65754,29,043,29043,950,374,53689981,53689136,950,374,53689981,53689136,77422,31576,1460256423,1457243827,100,100,100,100,1.23,1.18,3.68,3.68
-65755,29,067,29067,380,188,64123275,64116645,519,260,106150584,106139819,13684,6519,2109794567,2107296301,73.22,72.31,60.41,60.41,2.78,2.88,3.04,3.04
-65755,29,153,29153,139,72,42027309,42023174,519,260,106150584,106139819,9723,5652,1956042297,1929467474,26.78,27.69,39.59,39.59,1.43,1.27,2.15,2.18
-65756,29,109,29109,748,323,74257298,74164851,748,323,74257298,74164851,38634,16649,1588640113,1584390538,100,100,100,100,1.94,1.94,4.67,4.68
-65757,29,077,29077,5445,2241,151673489,151472597,6975,2850,213486438,213146003,275174,125387,1755701148,1749030414,78.06,78.63,71.05,71.07,1.98,1.79,8.64,8.66
-65757,29,225,29225,1530,609,61812949,61673406,6975,2850,213486438,213146003,36202,14417,1537840651,1534729111,21.94,21.37,28.95,28.93,4.23,4.22,4.02,4.02
-65759,29,213,29213,1423,605,126187364,126099545,1423,605,126187364,126099545,51675,29255,1687739607,1638002904,100,100,100,100,2.75,2.07,7.48,7.7
-65760,29,153,29153,739,447,86030328,84885502,739,447,86030328,84885502,9723,5652,1956042297,1929467474,100,100,100,100,7.6,7.91,4.4,4.4
-65761,05,089,05089,93,99,49626719,32455262,1273,1041,339165883,313373544,16653,9354,1658419833,1546245256,7.31,9.51,14.63,10.36,0.56,1.06,2.99,2.1
-65761,29,153,29153,1106,900,210119717,201498835,1273,1041,339165883,313373544,9723,5652,1956042297,1929467474,86.88,86.46,61.95,64.3,11.38,15.92,10.74,10.44
-65761,29,213,29213,74,42,79419447,79419447,1273,1041,339165883,313373544,51675,29255,1687739607,1638002904,5.81,4.03,23.42,25.34,0.14,0.14,4.71,4.85
-65762,29,153,29153,441,243,192068166,190940744,441,243,192068166,190940744,9723,5652,1956042297,1929467474,100,100,100,100,4.54,4.3,9.82,9.9
-65764,29,059,29059,1287,561,239074138,237919023,1287,561,239074138,237919023,16777,7662,1405974845,1400586526,100,100,100,100,7.67,7.32,17,16.99
-65766,29,153,29153,105,124,15024587,14099485,105,124,15024587,14099485,9723,5652,1956042297,1929467474,100,100,100,100,1.08,2.19,0.77,0.73
-65767,29,059,29059,1342,621,145807360,145744179,2106,1124,225536738,223305174,16777,7662,1405974845,1400586526,63.72,55.25,64.65,65.27,8,8.1,10.37,10.41
-65767,29,085,29085,671,458,64535024,62456318,2106,1124,225536738,223305174,9627,6835,1066319214,1033641536,31.86,40.75,28.61,27.97,6.97,6.7,6.05,6.04
-65767,29,167,29167,93,45,15194354,15104677,2106,1124,225536738,223305174,31137,13304,1663836363,1645996569,4.42,4,6.74,6.76,0.3,0.34,0.91,0.92
-65768,29,067,29067,488,238,150584280,150471360,488,238,150584280,150471360,13684,6519,2109794567,2107296301,100,100,100,100,3.57,3.65,7.14,7.14
-65769,29,009,29009,928,382,111739008,111635796,3091,1208,221035999,220640559,35597,17523,2048601393,2015660483,30.02,31.62,50.55,50.6,2.61,2.18,5.45,5.54
-65769,29,109,29109,2163,826,109296991,109004763,3091,1208,221035999,220640559,38634,16649,1588640113,1584390538,69.98,68.38,49.45,49.4,5.6,4.96,6.88,6.88
-65770,29,057,29057,153,74,39114562,38883886,3002,1295,259190139,258634904,7883,3965,1311193757,1269124871,5.1,5.71,15.09,15.03,1.94,1.87,2.98,3.06
-65770,29,077,29077,2119,904,122892261,122890673,3002,1295,259190139,258634904,275174,125387,1755701148,1749030414,70.59,69.81,47.41,47.52,0.77,0.72,7,7.03
-65770,29,167,29167,730,317,97183316,96860345,3002,1295,259190139,258634904,31137,13304,1663836363,1645996569,24.32,24.48,37.49,37.45,2.34,2.38,5.84,5.88
-65771,29,213,29213,1398,569,101974135,101974135,1398,569,101974135,101974135,51675,29255,1687739607,1638002904,100,100,100,100,2.71,1.94,6.04,6.23
-65772,29,009,29009,1752,732,141298959,141189686,2158,911,211737570,211628297,35597,17523,2048601393,2015660483,81.19,80.35,66.73,66.72,4.92,4.18,6.9,7
-65772,29,119,29119,406,179,70438611,70438611,2158,911,211737570,211628297,23083,9925,1397767453,1397247203,18.81,19.65,33.27,33.28,1.76,1.8,5.04,5.04
-65773,29,153,29153,711,368,171493912,171402432,711,368,171493912,171402432,9723,5652,1956042297,1929467474,100,100,100,100,7.31,6.51,8.77,8.88
-65774,29,085,29085,877,438,114148503,113738738,953,481,132393941,131879245,9627,6835,1066319214,1033641536,92.03,91.06,86.22,86.24,9.11,6.41,10.7,11
-65774,29,185,29185,76,43,18245438,18140507,953,481,132393941,131879245,9805,5640,1818304394,1735247885,7.97,8.94,13.78,13.76,0.78,0.76,1,1.05
-65775,29,067,29067,181,81,40815152,40397883,24908,11035,1181116181,1178768500,13684,6519,2109794567,2107296301,0.73,0.73,3.46,3.43,1.32,1.24,1.93,1.92
-65775,29,091,29091,24570,10877,1090681610,1088761731,24908,11035,1181116181,1178768500,40400,18021,2404475683,2401562178,98.64,98.57,92.34,92.36,60.82,60.36,45.36,45.34
-65775,29,149,29149,157,77,49619419,49608886,24908,11035,1181116181,1178768500,10881,5486,2050089796,2045561195,0.63,0.7,4.2,4.21,1.44,1.4,2.42,2.43
-65777,29,091,29091,328,159,41540679,41466790,328,159,41540679,41466790,40400,18021,2404475683,2401562178,100,100,100,100,0.81,0.88,1.73,1.73
-65778,29,149,29149,524,309,102597506,102404706,524,309,102597506,102404706,10881,5486,2050089796,2045561195,100,100,100,100,4.82,5.63,5,5.01
-65779,29,015,29015,12,13,1661719,1661719,2207,1687,202467956,194999316,19056,14150,1949087823,1823507941,0.54,0.77,0.82,0.85,0.06,0.09,0.09,0.09
-65779,29,085,29085,2195,1674,200806237,193337597,2207,1687,202467956,194999316,9627,6835,1066319214,1033641536,99.46,99.23,99.18,99.15,22.8,24.49,18.83,18.7
-65781,29,077,29077,8347,3270,165919978,165919978,8543,3365,184403266,184294774,275174,125387,1755701148,1749030414,97.71,97.18,89.98,90.03,3.03,2.61,9.45,9.49
-65781,29,167,29167,196,95,18483288,18374796,8543,3365,184403266,184294774,31137,13304,1663836363,1645996569,2.29,2.82,10.02,9.97,0.63,0.71,1.11,1.12
-65783,29,059,29059,225,104,45978366,45519501,225,104,45978366,45519501,16777,7662,1405974845,1400586526,100,100,100,100,1.34,1.36,3.27,3.25
-65784,29,153,29153,34,15,4924914,4924914,34,15,4924914,4924914,9723,5652,1956042297,1929467474,100,100,100,100,0.35,0.27,0.25,0.26
-65785,29,039,29039,5139,2790,548256575,519286701,5259,2858,593738600,563575760,13982,7224,1291508920,1228906021,97.72,97.62,92.34,92.14,36.75,38.62,42.45,42.26
-65785,29,057,29057,9,5,7077302,6278596,5259,2858,593738600,563575760,7883,3965,1311193757,1269124871,0.17,0.17,1.19,1.11,0.11,0.13,0.54,0.49
-65785,29,185,29185,111,63,38404723,38010463,5259,2858,593738600,563575760,9805,5640,1818304394,1735247885,2.11,2.2,6.47,6.74,1.13,1.12,2.11,2.19
-65786,29,029,29029,2170,1069,270451916,268847111,2250,1103,280640416,279035611,44002,41183,1835380578,1698831838,96.44,96.92,96.37,96.35,4.93,2.6,14.74,15.83
-65786,29,059,29059,80,34,10188500,10188500,2250,1103,280640416,279035611,16777,7662,1405974845,1400586526,3.56,3.08,3.63,3.65,0.48,0.44,0.72,0.73
-65787,29,029,29029,1864,1489,113217928,104656889,1864,1489,113217928,104656889,44002,41183,1835380578,1698831838,100,100,100,100,4.24,3.62,6.17,6.16
-65788,29,091,29091,406,166,50955595,50925300,422,173,56790680,56760385,40400,18021,2404475683,2401562178,96.21,95.95,89.73,89.72,1,0.92,2.12,2.12
-65788,29,149,29149,16,7,5835085,5835085,422,173,56790680,56760385,10881,5486,2050089796,2045561195,3.79,4.05,10.27,10.28,0.15,0.13,0.28,0.29
-65789,29,091,29091,2014,905,206573370,206482310,2014,905,206573370,206482310,40400,18021,2404475683,2401562178,100,100,100,100,4.99,5.02,8.59,8.6
-65790,29,091,29091,643,276,71165521,71156954,739,330,140282394,139947141,40400,18021,2404475683,2401562178,87.01,83.64,50.73,50.85,1.59,1.53,2.96,2.96
-65790,29,153,29153,96,54,69116873,68790187,739,330,140282394,139947141,9723,5652,1956042297,1929467474,12.99,16.36,49.27,49.15,0.99,0.96,3.53,3.57
-65791,29,149,29149,4585,2268,341187718,341116361,4585,2268,341187718,341116361,10881,5486,2050089796,2045561195,100,100,100,100,42.14,41.34,16.64,16.68
-65793,29,067,29067,244,121,100594583,100112884,6337,2912,695727249,694727448,13684,6519,2109794567,2107296301,3.85,4.16,14.46,14.41,1.78,1.86,4.77,4.75
-65793,29,091,29091,5439,2448,388498572,388174642,6337,2912,695727249,694727448,40400,18021,2404475683,2401562178,85.83,84.07,55.84,55.87,13.46,13.58,16.16,16.16
-65793,29,215,29215,654,343,206634094,206439922,6337,2912,695727249,694727448,26008,11685,3054175869,3049104495,10.32,11.78,29.7,29.72,2.51,2.94,6.77,6.77
-65802,29,077,29077,44270,19682,164737198,164728470,44270,19682,164737198,164728470,275174,125387,1755701148,1749030414,100,100,100,100,16.09,15.7,9.38,9.42
-65803,29,077,29077,40902,18732,244848444,240750741,40902,18732,244848444,240750741,275174,125387,1755701148,1749030414,100,100,100,100,14.86,14.94,13.95,13.76
-65804,29,077,29077,36801,18923,48553189,47250794,36801,18923,48553189,47250794,275174,125387,1755701148,1749030414,100,100,100,100,13.37,15.09,2.77,2.7
-65806,29,077,29077,10586,6008,5369508,5369508,10586,6008,5369508,5369508,275174,125387,1755701148,1749030414,100,100,100,100,3.85,4.79,0.31,0.31
-65807,29,077,29077,54952,25655,56274512,56212563,54952,25655,56274512,56212563,275174,125387,1755701148,1749030414,100,100,100,100,19.97,20.46,3.21,3.21
-65809,29,077,29077,11257,4629,46379745,45948401,11257,4629,46379745,45948401,275174,125387,1755701148,1749030414,100,100,100,100,4.09,3.69,2.64,2.63
-65810,29,077,29077,20984,8789,31113369,30948673,20984,8789,31113369,30948673,275174,125387,1755701148,1749030414,100,100,100,100,7.63,7.01,1.77,1.77
-66002,20,005,20005,13398,5438,358720323,353604580,13755,5588,471162157,465082157,16924,6990,1123587257,1116729659,97.4,97.32,76.14,76.03,79.17,77.8,31.93,31.66
-66002,20,043,20043,156,71,67014007,66193048,13755,5588,471162157,465082157,7945,3576,1031529864,1018914848,1.13,1.27,14.22,14.23,1.96,1.99,6.5,6.5
-66002,20,087,20087,78,34,25091312,24948014,13755,5588,471162157,465082157,19126,8160,1441787239,1379359803,0.57,0.61,5.33,5.36,0.41,0.42,1.74,1.81
-66002,20,103,20103,123,45,20336515,20336515,13755,5588,471162157,465082157,76227,28697,1214632398,1198726879,0.89,0.81,4.32,4.37,0.16,0.16,1.67,1.7
-66006,20,045,20045,7401,2839,268443951,265439149,7459,2862,280656761,277609345,110826,46731,1229302794,1180699859,99.22,99.2,95.65,95.62,6.68,6.08,21.84,22.48
-66006,20,059,20059,58,23,12212810,12170196,7459,2862,280656761,277609345,25992,11147,1494776359,1480840246,0.78,0.8,4.35,4.38,0.22,0.21,0.82,0.82
-66007,20,103,20103,5614,2265,59031301,58779197,5614,2265,59031301,58779197,76227,28697,1214632398,1198726879,100,100,100,100,7.36,7.89,4.86,4.9
-66008,20,043,20043,286,133,89118429,89084538,286,133,89118429,89084538,7945,3576,1031529864,1018914848,100,100,100,100,3.6,3.72,8.64,8.74
-66010,20,011,20011,19,11,10276606,10251813,606,308,235086723,233995665,15173,7167,1655239401,1645861744,3.14,3.57,4.37,4.38,0.13,0.15,0.62,0.62
-66010,20,107,20107,587,297,224810117,223743852,606,308,235086723,233995665,9656,5446,1570556374,1538604962,96.86,96.43,95.63,95.62,6.08,5.45,14.31,14.54
-66012,20,103,20103,3860,1440,79250732,77561712,11210,4492,127220473,124079132,76227,28697,1214632398,1198726879,34.43,32.06,62.29,62.51,5.06,5.02,6.52,6.47
-66012,20,209,20209,7350,3052,47969741,46517420,11210,4492,127220473,124079132,157505,66747,404537817,392642353,65.57,67.94,37.71,37.49,4.67,4.57,11.86,11.85
-66013,20,091,20091,806,288,38507088,37970296,1839,695,110104606,108845261,544179,226571,1242925140,1226034453,43.83,41.44,34.97,34.88,0.15,0.13,3.1,3.1
-66013,20,121,20121,1033,407,71597518,70874965,1839,695,110104606,108845261,32787,13190,1528755271,1490955548,56.17,58.56,65.03,65.12,3.15,3.09,4.68,4.75
-66014,20,003,20003,10,6,6538294,6482227,349,176,173890345,172880673,8102,3720,1511863263,1501276302,2.87,3.41,3.76,3.75,0.12,0.16,0.43,0.43
-66014,20,107,20107,339,170,167352051,166398446,349,176,173890345,172880673,9656,5446,1570556374,1538604962,97.13,96.59,96.24,96.25,3.51,3.12,10.66,10.81
-66015,20,001,20001,66,35,45521083,45225324,782,360,248570872,247109984,13371,6226,1308786199,1295779123,8.44,9.72,18.31,18.3,0.49,0.56,3.48,3.49
-66015,20,003,20003,716,325,203049789,201884660,782,360,248570872,247109984,8102,3720,1511863263,1501276302,91.56,90.28,81.69,81.7,8.84,8.74,13.43,13.45
-66016,20,005,20005,519,214,81789688,81774335,519,214,81789688,81774335,16924,6990,1123587257,1116729659,100,100,100,100,3.07,3.06,7.28,7.32
-66017,20,043,20043,304,156,100326866,100261703,304,156,100326866,100261703,7945,3576,1031529864,1018914848,100,100,100,100,3.83,4.36,9.73,9.84
-66018,20,091,20091,5760,2196,57746680,54532092,5760,2196,57746680,54532092,544179,226571,1242925140,1226034453,100,100,100,100,1.06,0.97,4.65,4.45
-66019,20,091,20091,246,120,110999,110999,246,120,110999,110999,544179,226571,1242925140,1226034453,100,100,100,100,0.05,0.05,0.01,0.01
-66020,20,103,20103,1442,578,160653048,160256188,1442,578,160653048,160256188,76227,28697,1214632398,1198726879,100,100,100,100,1.89,2.01,13.23,13.37
-66021,20,045,20045,159,61,10325406,10186551,2612,1027,126644173,123784575,110826,46731,1229302794,1180699859,6.09,5.94,8.15,8.23,0.14,0.13,0.84,0.86
-66021,20,091,20091,2252,888,84347948,83576578,2612,1027,126644173,123784575,544179,226571,1242925140,1226034453,86.22,86.47,66.6,67.52,0.41,0.39,6.79,6.82
-66021,20,121,20121,201,78,31970819,30021446,2612,1027,126644173,123784575,32787,13190,1528755271,1490955548,7.7,7.59,25.24,24.25,0.61,0.59,2.09,2.01
-66023,20,005,20005,1124,522,183991406,183265096,1124,522,183991406,183265096,16924,6990,1123587257,1116729659,100,100,100,100,6.64,7.47,16.38,16.41
-66024,20,043,20043,927,401,13402727,11574509,927,401,13402727,11574509,7945,3576,1031529864,1018914848,100,100,100,100,11.67,11.21,1.3,1.14
-66025,20,045,20045,7520,2852,137145970,135108043,7704,2931,171970745,169492516,110826,46731,1229302794,1180699859,97.61,97.3,79.75,79.71,6.79,6.1,11.16,11.44
-66025,20,091,20091,184,79,34824775,34384473,7704,2931,171970745,169492516,544179,226571,1242925140,1226034453,2.39,2.7,20.25,20.29,0.03,0.03,2.8,2.8
-66026,20,107,20107,186,71,44133447,43395741,698,284,108279298,106910585,9656,5446,1570556374,1538604962,26.65,25,40.76,40.59,1.93,1.3,2.81,2.82
-66026,20,121,20121,512,213,64145851,63514844,698,284,108279298,106910585,32787,13190,1528755271,1490955548,73.35,75,59.24,59.41,1.56,1.61,4.2,4.26
-66027,20,103,20103,5742,1585,23125552,21298782,5742,1585,23125552,21298782,76227,28697,1214632398,1198726879,100,100,100,100,7.53,5.52,1.9,1.78
-66030,20,091,20091,20961,8126,124009767,122715034,20961,8126,124009767,122715034,544179,226571,1242925140,1226034453,100,100,100,100,3.85,3.59,9.98,10.01
-66031,20,091,20091,1072,0,7562865,7515354,1072,0,7562865,7515354,544179,226571,1242925140,1226034453,100,0,100,100,0.2,0,0.61,0.61
-66032,20,003,20003,5115,2303,544040008,540119833,5115,2303,544040008,540119833,8102,3720,1511863263,1501276302,100,100,100,100,63.13,61.91,35.98,35.98
-66033,20,003,20003,645,300,101520153,100888681,767,363,142623834,141809181,8102,3720,1511863263,1501276302,84.09,82.64,71.18,71.14,7.96,8.06,6.71,6.72
-66033,20,059,20059,82,44,26250190,26169765,767,363,142623834,141809181,25992,11147,1494776359,1480840246,10.69,12.12,18.41,18.45,0.32,0.39,1.76,1.77
-66033,20,107,20107,40,19,14853491,14750735,767,363,142623834,141809181,9656,5446,1570556374,1538604962,5.22,5.23,10.41,10.4,0.41,0.35,0.95,0.96
-66035,20,043,20043,1311,526,139870773,139217255,1311,526,139870773,139217255,7945,3576,1031529864,1018914848,100,100,100,100,16.5,14.71,13.56,13.66
-66039,20,001,20001,2,2,2741103,2735677,628,325,255509419,254249080,13371,6226,1308786199,1295779123,0.32,0.62,1.07,1.08,0.01,0.03,0.21,0.21
-66039,20,003,20003,626,323,252768316,251513403,628,325,255509419,254249080,8102,3720,1511863263,1501276302,99.68,99.38,98.93,98.92,7.73,8.68,16.72,16.75
-66040,20,107,20107,3118,1967,285922081,270022753,3404,2103,392447175,374785343,9656,5446,1570556374,1538604962,91.6,93.53,72.86,72.05,32.29,36.12,18.21,17.55
-66040,20,121,20121,286,136,106525094,104762590,3404,2103,392447175,374785343,32787,13190,1528755271,1490955548,8.4,6.47,27.14,27.95,0.87,1.03,6.97,7.03
-66041,20,005,20005,701,299,128776065,128630596,725,312,141612666,141439067,16924,6990,1123587257,1116729659,96.69,95.83,90.94,90.94,4.14,4.28,11.46,11.52
-66041,20,043,20043,24,13,12836601,12808471,725,312,141612666,141439067,7945,3576,1031529864,1018914848,3.31,4.17,9.06,9.06,0.3,0.36,1.24,1.26
-66042,20,059,20059,454,225,48607073,47957580,657,308,74464520,73642590,25992,11147,1494776359,1480840246,69.1,73.05,65.28,65.12,1.75,2.02,3.25,3.24
-66042,20,121,20121,203,83,25857447,25685010,657,308,74464520,73642590,32787,13190,1528755271,1490955548,30.9,26.95,34.72,34.88,0.62,0.63,1.69,1.72
-66043,20,103,20103,10787,3193,35507478,33981847,10787,3193,35507478,33981847,76227,28697,1214632398,1198726879,100,100,100,100,14.15,11.13,2.92,2.83
-66044,20,045,20045,27327,11324,66184598,63931220,28417,11792,164228079,160824232,110826,46731,1229302794,1180699859,96.16,96.03,40.3,39.75,24.66,24.23,5.38,5.41
-66044,20,087,20087,498,217,48804013,48320258,28417,11792,164228079,160824232,19126,8160,1441787239,1379359803,1.75,1.84,29.72,30.05,2.6,2.66,3.38,3.5
-66044,20,103,20103,592,251,49239468,48572754,28417,11792,164228079,160824232,76227,28697,1214632398,1198726879,2.08,2.13,29.98,30.2,0.78,0.87,4.05,4.05
-66045,20,045,20045,2023,2,843725,838040,2023,2,843725,838040,110826,46731,1229302794,1180699859,100,100,100,100,1.83,0,0.07,0.07
-66046,20,045,20045,19452,8669,108079500,105730625,19452,8669,108079500,105730625,110826,46731,1229302794,1180699859,100,100,100,100,17.55,18.55,8.79,8.95
-66047,20,045,20045,18268,8420,141971396,137240744,18268,8420,141971396,137240744,110826,46731,1229302794,1180699859,100,100,100,100,16.48,18.02,11.55,11.62
-66048,20,103,20103,35475,14425,353445225,350337468,35475,14425,353445225,350337468,76227,28697,1214632398,1198726879,100,100,100,100,46.54,50.27,29.1,29.23
-66049,20,045,20045,25957,11386,119142074,115282200,25957,11386,119142074,115282200,110826,46731,1229302794,1180699859,100,100,100,100,23.42,24.36,9.69,9.76
-66050,20,045,20045,1753,738,112692966,111084094,1822,767,113530602,111921730,110826,46731,1229302794,1180699859,96.21,96.22,99.26,99.25,1.58,1.58,9.17,9.41
-66050,20,177,20177,69,29,837636,837636,1822,767,113530602,111921730,177934,79140,1439325960,1408995941,3.79,3.78,0.74,0.75,0.04,0.04,0.06,0.06
-66052,20,103,20103,2031,811,111654822,107839148,2031,811,111654822,107839148,76227,28697,1214632398,1198726879,100,100,100,100,2.66,2.83,9.19,9
-66053,20,121,20121,7524,2941,260847290,257311695,7524,2941,260847290,257311695,32787,13190,1528755271,1490955548,100,100,100,100,22.95,22.3,17.06,17.26
-66054,20,087,20087,2150,974,130838359,129116292,2860,1247,198937051,196703610,19126,8160,1441787239,1379359803,75.17,78.11,65.77,65.64,11.24,11.94,9.07,9.36
-66054,20,103,20103,710,273,68098692,67587318,2860,1247,198937051,196703610,76227,28697,1214632398,1198726879,24.83,21.89,34.23,34.36,0.93,0.95,5.61,5.64
-66056,20,107,20107,1694,1165,223029534,220851984,1694,1165,223029534,220851984,9656,5446,1570556374,1538604962,100,100,100,100,17.54,21.39,14.2,14.35
-66058,20,005,20005,393,179,93370293,93301827,393,179,93370293,93301827,16924,6990,1123587257,1116729659,100,100,100,100,2.32,2.56,8.31,8.35
-66060,20,005,20005,252,112,75008540,74971662,1122,474,156065194,155305698,16924,6990,1123587257,1116729659,22.46,23.63,48.06,48.27,1.49,1.6,6.68,6.71
-66060,20,087,20087,870,362,81056654,80334036,1122,474,156065194,155305698,19126,8160,1441787239,1379359803,77.54,76.37,51.94,51.73,4.55,4.44,5.62,5.82
-66061,20,091,20091,55805,21117,168671317,166149206,55805,21117,168671317,166149206,544179,226571,1242925140,1226034453,100,100,100,100,10.25,9.32,13.57,13.55
-66062,20,091,20091,74411,27198,124820576,123721575,74411,27198,124820576,123721575,544179,226571,1242925140,1226034453,100,100,100,100,13.67,12,10.04,10.09
-66064,20,059,20059,45,22,6734998,6641332,6098,2570,196738584,194214299,25992,11147,1494776359,1480840246,0.74,0.86,3.42,3.42,0.17,0.2,0.45,0.45
-66064,20,121,20121,6053,2548,190003586,187572967,6098,2570,196738584,194214299,32787,13190,1528755271,1490955548,99.26,99.14,96.58,96.58,18.46,19.32,12.43,12.58
-66066,20,087,20087,2636,1132,205697637,201000606,2636,1132,205697637,201000606,19126,8160,1441787239,1379359803,100,100,100,100,13.78,13.87,14.27,14.57
-66067,20,059,20059,16170,7013,433648762,429694101,16170,7013,433648762,429694101,25992,11147,1494776359,1480840246,100,100,100,100,62.21,62.91,29.01,29.02
-66070,20,087,20087,2661,1191,117615703,78907828,2661,1191,117615703,78907828,19126,8160,1441787239,1379359803,100,100,100,100,13.91,14.6,8.16,5.72
-66071,20,121,20121,12360,5107,621107415,602000984,12360,5107,621107415,602000984,32787,13190,1528755271,1490955548,100,100,100,100,37.7,38.72,40.63,40.38
-66072,20,107,20107,1035,435,189441794,188433575,1054,446,195642641,194615255,9656,5446,1570556374,1538604962,98.2,97.53,96.83,96.82,10.72,7.99,12.06,12.25
-66072,20,121,20121,19,11,6200847,6181680,1054,446,195642641,194615255,32787,13190,1528755271,1490955548,1.8,2.47,3.17,3.18,0.06,0.08,0.41,0.41
-66073,20,087,20087,2537,1022,174535164,169591319,2537,1022,174535164,169591319,19126,8160,1441787239,1379359803,100,100,100,100,13.26,12.52,12.11,12.29
-66075,20,107,20107,2103,1059,280497333,272318335,2103,1059,280497333,272318335,9656,5446,1570556374,1538604962,100,100,100,100,21.78,19.45,17.86,17.7
-66076,20,059,20059,2200,951,253639555,251663518,2200,951,253639555,251663518,25992,11147,1494776359,1480840246,100,100,100,100,8.46,8.53,16.97,16.99
-66078,20,059,20059,961,404,169070390,167107750,961,404,169070390,167107750,25992,11147,1494776359,1480840246,100,100,100,100,3.7,3.62,11.31,11.28
-66079,20,059,20059,781,344,110451987,109151449,781,344,110451987,109151449,25992,11147,1494776359,1480840246,100,100,100,100,3,3.09,7.39,7.37
-66080,20,003,20003,155,65,52983574,52622140,1065,429,152637469,151410032,8102,3720,1511863263,1501276302,14.55,15.15,34.71,34.75,1.91,1.75,3.5,3.51
-66080,20,059,20059,910,364,99653895,98787892,1065,429,152637469,151410032,25992,11147,1494776359,1480840246,85.45,84.85,65.29,65.25,3.5,3.27,6.67,6.67
-66083,20,091,20091,4732,1820,72176963,71295259,8910,3326,175393511,167336652,544179,226571,1242925140,1226034453,53.11,54.72,41.15,42.61,0.87,0.8,5.81,5.82
-66083,20,121,20121,4178,1506,103216548,96041393,8910,3326,175393511,167336652,32787,13190,1528755271,1490955548,46.89,45.28,58.85,57.39,12.74,11.42,6.75,6.44
-66085,20,091,20091,7779,2885,68379958,67598379,7779,2885,68379958,67598379,544179,226571,1242925140,1226034453,100,100,100,100,1.43,1.27,5.5,5.51
-66086,20,087,20087,27,13,2723163,2698165,9759,3800,248099786,246715823,19126,8160,1441787239,1379359803,0.28,0.34,1.1,1.09,0.14,0.16,0.19,0.2
-66086,20,103,20103,9732,3787,245376623,244017658,9759,3800,248099786,246715823,76227,28697,1214632398,1198726879,99.72,99.66,98.9,98.91,12.77,13.2,20.2,20.36
-66087,20,043,20043,2042,924,291488245,289364572,2042,924,291488245,289364572,7945,3576,1031529864,1018914848,100,100,100,100,25.7,25.84,28.26,28.4
-66088,20,005,20005,49,16,9069438,9033797,2457,1036,318189556,313121644,16924,6990,1123587257,1116729659,1.99,1.54,2.85,2.89,0.29,0.23,0.81,0.81
-66088,20,087,20087,2408,1020,309120118,304087847,2457,1036,318189556,313121644,19126,8160,1441787239,1379359803,98.01,98.46,97.15,97.11,12.59,12.5,21.44,22.05
-66090,20,043,20043,2520,1125,207133553,201906603,2520,1125,207133553,201906603,7945,3576,1031529864,1018914848,100,100,100,100,31.72,31.46,20.08,19.82
-66091,20,003,20003,352,195,157662618,155846045,352,195,157662618,155846045,8102,3720,1511863263,1501276302,100,100,100,100,4.34,5.24,10.43,10.38
-66092,20,045,20045,341,148,36950840,36571467,4084,1637,218824593,217160047,110826,46731,1229302794,1180699859,8.35,9.04,16.89,16.84,0.31,0.32,3.01,3.1
-66092,20,059,20059,3325,1329,134590897,133600606,4084,1637,218824593,217160047,25992,11147,1494776359,1480840246,81.42,81.19,61.51,61.52,12.79,11.92,9,9.02
-66092,20,121,20121,418,160,47282856,46987974,4084,1637,218824593,217160047,32787,13190,1528755271,1490955548,10.24,9.77,21.61,21.64,1.27,1.21,3.09,3.15
-66093,20,003,20003,456,189,174062801,172807281,609,274,288174664,286281575,8102,3720,1511863263,1501276302,74.88,68.98,60.4,60.36,5.63,5.08,11.51,11.51
-66093,20,031,20031,153,85,114111863,113474294,609,274,288174664,286281575,8601,3964,1694094880,1623784229,25.12,31.02,39.6,39.64,1.78,2.14,6.74,6.99
-66094,20,013,20013,176,73,66054100,66054100,416,244,125582802,123748288,9984,4779,1481748045,1478551884,42.31,29.92,52.6,53.38,1.76,1.53,4.46,4.47
-66094,20,043,20043,240,171,59528702,57694188,416,244,125582802,123748288,7945,3576,1031529864,1018914848,57.69,70.08,47.4,46.62,3.02,4.78,5.77,5.66
-66095,20,003,20003,16,9,12203809,12115976,896,386,185501686,183466808,8102,3720,1511863263,1501276302,1.79,2.33,6.58,6.6,0.2,0.24,0.81,0.81
-66095,20,059,20059,880,377,173297877,171350832,896,386,185501686,183466808,25992,11147,1494776359,1480840246,98.21,97.67,93.42,93.4,3.39,3.38,11.59,11.57
-66097,20,087,20087,1062,474,128393141,127427877,1071,478,129124057,128158793,19126,8160,1441787239,1379359803,99.16,99.16,99.43,99.43,5.55,5.81,8.91,9.24
-66097,20,103,20103,9,4,730916,730916,1071,478,129124057,128158793,76227,28697,1214632398,1198726879,0.84,0.84,0.57,0.57,0.01,0.01,0.06,0.06
-66101,20,209,20209,13220,5831,8420003,8420003,13220,5831,8420003,8420003,157505,66747,404537817,392642353,100,100,100,100,8.39,8.74,2.08,2.14
-66102,20,209,20209,29282,11633,29109807,28935079,29282,11633,29109807,28935079,157505,66747,404537817,392642353,100,100,100,100,18.59,17.43,7.2,7.37
-66103,20,209,20209,13934,7072,12894129,12542285,13934,7072,12894129,12542285,157505,66747,404537817,392642353,100,100,100,100,8.85,10.6,3.19,3.19
-66104,20,209,20209,25401,11325,43478574,41774015,25401,11325,43478574,41774015,157505,66747,404537817,392642353,100,100,100,100,16.13,16.97,10.75,10.64
-66105,20,209,20209,2924,1025,9109704,8690722,2924,1025,9109704,8690722,157505,66747,404537817,392642353,100,100,100,100,1.86,1.54,2.25,2.21
-66106,20,209,20209,23367,9209,50012228,48197667,23367,9209,50012228,48197667,157505,66747,404537817,392642353,100,100,100,100,14.84,13.8,12.36,12.28
-66109,20,103,20103,110,40,8182026,7427376,20480,8140,122415073,119207033,76227,28697,1214632398,1198726879,0.54,0.49,6.68,6.23,0.14,0.14,0.67,0.62
-66109,20,209,20209,20370,8100,114233047,111779657,20480,8140,122415073,119207033,157505,66747,404537817,392642353,99.46,99.51,93.32,93.77,12.93,12.14,28.24,28.47
-66111,20,209,20209,10155,4171,58082938,56351297,10155,4171,58082938,56351297,157505,66747,404537817,392642353,100,100,100,100,6.45,6.25,14.36,14.35
-66112,20,209,20209,11458,5309,16146653,16146653,11458,5309,16146653,16146653,157505,66747,404537817,392642353,100,100,100,100,7.27,7.95,3.99,4.11
-66115,20,209,20209,0,0,11585871,10273915,0,0,11585871,10273915,157505,66747,404537817,392642353,0,0,100,100,0,0,2.86,2.62
-66118,20,209,20209,3,0,2459663,2100603,3,0,2459663,2100603,157505,66747,404537817,392642353,100,0,100,100,0,0,0.61,0.53
-66202,20,091,20091,16173,8826,13644781,13611180,16173,8826,13644781,13611180,544179,226571,1242925140,1226034453,100,100,100,100,2.97,3.9,1.1,1.11
-66203,20,091,20091,19156,8754,16279258,16268606,19156,8754,16279258,16268606,544179,226571,1242925140,1226034453,100,100,100,100,3.52,3.86,1.31,1.33
-66204,20,091,20091,18832,9423,12825563,12800344,18832,9423,12825563,12800344,544179,226571,1242925140,1226034453,100,100,100,100,3.46,4.16,1.03,1.04
-66205,20,091,20091,13216,6484,9723341,9723341,13216,6484,9723341,9723341,544179,226571,1242925140,1226034453,100,100,100,100,2.43,2.86,0.78,0.79
-66206,20,091,20091,9693,4071,10288550,10235053,9693,4071,10288550,10235053,544179,226571,1242925140,1226034453,100,100,100,100,1.78,1.8,0.83,0.83
-66207,20,091,20091,13004,5730,12134700,12102721,13004,5730,12134700,12102721,544179,226571,1242925140,1226034453,100,100,100,100,2.39,2.53,0.98,0.99
-66208,20,091,20091,20945,9748,16831795,16829321,20945,9748,16831795,16829321,544179,226571,1242925140,1226034453,100,100,100,100,3.85,4.3,1.35,1.37
-66209,20,091,20091,19561,8445,16036247,15992185,19561,8445,16036247,15992185,544179,226571,1242925140,1226034453,100,100,100,100,3.59,3.73,1.29,1.3
-66210,20,091,20091,18102,8772,15794336,15709372,18102,8772,15794336,15709372,544179,226571,1242925140,1226034453,100,100,100,100,3.33,3.87,1.27,1.28
-66211,20,091,20091,4276,2296,11615713,11528999,4276,2296,11615713,11528999,544179,226571,1242925140,1226034453,100,100,100,100,0.79,1.01,0.93,0.94
-66212,20,091,20091,32096,15496,19945902,19894176,32096,15496,19945902,19894176,544179,226571,1242925140,1226034453,100,100,100,100,5.9,6.84,1.6,1.62
-66213,20,091,20091,27322,11190,19679865,19604662,27322,11190,19679865,19604662,544179,226571,1242925140,1226034453,100,100,100,100,5.02,4.94,1.58,1.6
-66214,20,091,20091,11691,5603,10143219,10123892,11691,5603,10143219,10123892,544179,226571,1242925140,1226034453,100,100,100,100,2.15,2.47,0.82,0.83
-66215,20,091,20091,24770,11130,20443377,20405437,24770,11130,20443377,20405437,544179,226571,1242925140,1226034453,100,100,100,100,4.55,4.91,1.64,1.66
-66216,20,091,20091,24368,9466,20368095,20204094,24368,9466,20368095,20204094,544179,226571,1242925140,1226034453,100,100,100,100,4.48,4.18,1.64,1.65
-66217,20,091,20091,5278,2647,24341041,23379058,5319,2667,25376500,24292095,544179,226571,1242925140,1226034453,99.23,99.25,95.92,96.24,0.97,1.17,1.96,1.91
-66217,20,209,20209,41,20,1035459,913037,5319,2667,25376500,24292095,157505,66747,404537817,392642353,0.77,0.75,4.08,3.76,0.03,0.03,0.26,0.23
-66218,20,091,20091,7754,2577,23514403,23299965,7754,2577,23514403,23299965,544179,226571,1242925140,1226034453,100,100,100,100,1.42,1.14,1.89,1.9
-66219,20,091,20091,10486,4842,19836097,19664575,10486,4842,19836097,19664575,544179,226571,1242925140,1226034453,100,100,100,100,1.93,2.14,1.6,1.6
-66220,20,091,20091,7133,2534,17612004,17476690,7133,2534,17612004,17476690,544179,226571,1242925140,1226034453,100,100,100,100,1.31,1.12,1.42,1.43
-66221,20,091,20091,15219,5196,19728071,19485132,15219,5196,19728071,19485132,544179,226571,1242925140,1226034453,100,100,100,100,2.8,2.29,1.59,1.59
-66223,20,091,20091,21759,8514,16300610,16072349,21759,8514,16300610,16072349,544179,226571,1242925140,1226034453,100,100,100,100,4,3.76,1.31,1.31
-66224,20,091,20091,11917,4010,18019963,17835298,11917,4010,18019963,17835298,544179,226571,1242925140,1226034453,100,100,100,100,2.19,1.77,1.45,1.45
-66226,20,091,20091,12877,4225,31595327,29613547,12877,4225,31595327,29613547,544179,226571,1242925140,1226034453,100,100,100,100,2.37,1.86,2.54,2.42
-66227,20,091,20091,4543,1875,34511339,34255192,4543,1875,34511339,34255192,544179,226571,1242925140,1226034453,100,100,100,100,0.83,0.83,2.78,2.79
-66401,20,197,20197,1721,968,615134047,612397558,1721,968,615134047,612397558,7053,3227,2071006594,2057231892,100,100,100,100,24.4,30,29.7,29.77
-66402,20,177,20177,2955,1157,114131084,111309924,2955,1157,114131084,111309924,177934,79140,1439325960,1408995941,100,100,100,100,1.66,1.46,7.93,7.9
-66403,20,117,20117,721,305,195958818,195495386,757,324,244846471,244340770,10117,4866,2344217439,2331463499,95.24,94.14,80.03,80.01,7.13,6.27,8.36,8.39
-66403,20,131,20131,36,19,48887653,48845384,757,324,244846471,244340770,10178,4562,1863334404,1858126462,4.76,5.86,19.97,19.99,0.35,0.42,2.62,2.63
-66404,20,131,20131,530,212,173847380,173616003,530,212,173847380,173616003,10178,4562,1863334404,1858126462,100,100,100,100,5.21,4.65,9.33,9.34
-66406,20,117,20117,421,205,141576523,141240731,421,205,141576523,141240731,10117,4866,2344217439,2331463499,100,100,100,100,4.16,4.21,6.04,6.06
-66407,20,149,20149,345,131,94010623,92283339,479,192,151044411,148530428,21604,8626,2232339309,2178235871,72.03,68.23,62.24,62.13,1.6,1.52,4.21,4.24
-66407,20,197,20197,134,61,57033788,56247089,479,192,151044411,148530428,7053,3227,2071006594,2057231892,27.97,31.77,37.76,37.87,1.9,1.89,2.75,2.73
-66408,20,131,20131,434,204,115852897,115844301,434,204,115852897,115844301,10178,4562,1863334404,1858126462,100,100,100,100,4.26,4.47,6.22,6.23
-66409,20,045,20045,130,67,36330057,35449028,2997,1200,171269510,169094014,110826,46731,1229302794,1180699859,4.34,5.58,21.21,20.96,0.12,0.14,2.96,3
-66409,20,177,20177,2867,1133,134939453,133644986,2997,1200,171269510,169094014,177934,79140,1439325960,1408995941,95.66,94.42,78.79,79.04,1.61,1.43,9.38,9.49
-66411,20,117,20117,1230,565,261223166,258286034,1292,607,303695190,297940013,10117,4866,2344217439,2331463499,95.2,93.08,86.01,86.69,12.16,11.61,11.14,11.08
-66411,20,161,20161,62,42,42472024,39653979,1292,607,303695190,297940013,71115,28212,1610858558,1579300177,4.8,6.92,13.99,13.31,0.09,0.15,2.64,2.51
-66412,20,117,20117,271,123,105545332,105317193,287,132,126275714,125977751,10117,4866,2344217439,2331463499,94.43,93.18,83.58,83.6,2.68,2.53,4.5,4.52
-66412,20,201,20201,16,9,20730382,20660558,287,132,126275714,125977751,5799,2955,2327546308,2317406254,5.57,6.82,16.42,16.4,0.28,0.3,0.89,0.89
-66413,20,111,20111,47,19,23414677,23220685,1802,894,261069239,260379662,33690,15237,2215520107,2194947808,2.61,2.13,8.97,8.92,0.14,0.12,1.06,1.06
-66413,20,139,20139,1752,872,233884924,233399177,1802,894,261069239,260379662,16295,7503,1864391125,1827283988,97.23,97.54,89.59,89.64,10.75,11.62,12.54,12.77
-66413,20,197,20197,3,3,3769638,3759800,1802,894,261069239,260379662,7053,3227,2071006594,2057231892,0.17,0.34,1.44,1.44,0.04,0.09,0.18,0.18
-66414,20,139,20139,2914,1257,160136895,157906071,2914,1257,160136895,157906071,16295,7503,1864391125,1827283988,100,100,100,100,17.88,16.75,8.59,8.64
-66415,20,131,20131,885,399,247203881,245262091,885,399,247203881,245262091,10178,4562,1863334404,1858126462,100,100,100,100,8.7,8.75,13.27,13.2
-66416,20,085,20085,478,203,83467745,83384790,489,209,91187826,91072824,13462,5779,1704260630,1699594134,97.75,97.13,91.53,91.56,3.55,3.51,4.9,4.91
-66416,20,131,20131,11,6,7720081,7688034,489,209,91187826,91072824,10178,4562,1863334404,1858126462,2.25,2.87,8.47,8.44,0.11,0.13,0.41,0.41
-66417,20,131,20131,310,129,92834030,92631630,310,129,92834030,92631630,10178,4562,1863334404,1858126462,100,100,100,100,3.05,2.83,4.98,4.99
-66418,20,085,20085,707,249,222791636,222528533,707,249,222791636,222528533,13462,5779,1704260630,1699594134,100,100,100,100,5.25,4.31,13.07,13.09
-66419,20,085,20085,396,168,33205130,33205130,442,187,46546530,46438443,13462,5779,1704260630,1699594134,89.59,89.84,71.34,71.5,2.94,2.91,1.95,1.95
-66419,20,087,20087,46,19,13341400,13233313,442,187,46546530,46438443,19126,8160,1441787239,1379359803,10.41,10.16,28.66,28.5,0.24,0.23,0.93,0.96
-66422,20,085,20085,86,30,32663074,32663074,487,194,160034918,159287494,13462,5779,1704260630,1699594134,17.66,15.46,20.41,20.51,0.64,0.52,1.92,1.92
-66422,20,149,20149,401,164,127371844,126624420,487,194,160034918,159287494,21604,8626,2232339309,2178235871,82.34,84.54,79.59,79.49,1.86,1.9,5.71,5.81
-66423,20,197,20197,985,444,414974033,413729301,985,444,414974033,413729301,7053,3227,2071006594,2057231892,100,100,100,100,13.97,13.76,20.04,20.11
-66424,20,005,20005,102,46,38396658,38232363,610,295,148562948,148114260,16924,6990,1123587257,1116729659,16.72,15.59,25.85,25.81,0.6,0.66,3.42,3.42
-66424,20,013,20013,508,249,110166290,109881897,610,295,148562948,148114260,9984,4779,1481748045,1478551884,83.28,84.41,74.15,74.19,5.09,5.21,7.43,7.43
-66425,20,013,20013,465,238,121226413,120899666,465,238,121226413,120899666,9984,4779,1481748045,1478551884,100,100,100,100,4.66,4.98,8.18,8.18
-66427,20,117,20117,1255,598,488876938,486494459,1281,614,546683182,543974544,10117,4866,2344217439,2331463499,97.97,97.39,89.43,89.43,12.4,12.29,20.85,20.87
-66427,20,149,20149,26,16,57806244,57480085,1281,614,546683182,543974544,21604,8626,2232339309,2178235871,2.03,2.61,10.57,10.57,0.12,0.19,2.59,2.64
-66428,20,131,20131,415,203,243834059,243159692,415,203,243834059,243159692,10178,4562,1863334404,1858126462,100,100,100,100,4.08,4.45,13.09,13.09
-66429,20,087,20087,579,244,33648844,33476442,579,244,33648844,33476442,19126,8160,1441787239,1379359803,100,100,100,100,3.03,2.99,2.33,2.43
-66431,20,177,20177,49,23,13063342,12968550,671,290,164149631,163245213,177934,79140,1439325960,1408995941,7.3,7.93,7.96,7.94,0.03,0.03,0.91,0.92
-66431,20,197,20197,622,267,151086289,150276663,671,290,164149631,163245213,7053,3227,2071006594,2057231892,92.7,92.07,92.04,92.06,8.82,8.27,7.3,7.3
-66432,20,085,20085,36,21,28041409,28015242,396,188,157335450,156632683,13462,5779,1704260630,1699594134,9.09,11.17,17.82,17.89,0.27,0.36,1.65,1.65
-66432,20,149,20149,360,167,129294041,128617441,396,188,157335450,156632683,21604,8626,2232339309,2178235871,90.91,88.83,82.18,82.11,1.67,1.94,5.79,5.9
-66434,20,013,20013,4828,2363,560200354,559196178,4828,2363,560200354,559196178,9984,4779,1481748045,1478551884,100,100,100,100,48.36,49.45,37.81,37.82
-66436,20,005,20005,173,71,65008234,64982707,5879,2677,486457076,482774115,16924,6990,1123587257,1116729659,2.94,2.65,13.36,13.46,1.02,1.02,5.79,5.82
-66436,20,085,20085,5691,2600,413950487,410349247,5879,2677,486457076,482774115,13462,5779,1704260630,1699594134,96.8,97.12,85.09,85,42.27,44.99,24.29,24.14
-66436,20,087,20087,15,6,7498355,7442161,5879,2677,486457076,482774115,19126,8160,1441787239,1379359803,0.26,0.22,1.54,1.54,0.08,0.07,0.52,0.54
-66438,20,117,20117,149,63,48063433,47956211,149,63,48063433,47956211,10117,4866,2344217439,2331463499,100,100,100,100,1.47,1.29,2.05,2.06
-66439,20,005,20005,213,93,89456612,88932696,2747,1296,228080902,226601385,16924,6990,1123587257,1116729659,7.75,7.18,39.22,39.25,1.26,1.33,7.96,7.96
-66439,20,013,20013,2521,1198,130161626,129206025,2747,1296,228080902,226601385,9984,4779,1481748045,1478551884,91.77,92.44,57.07,57.02,25.25,25.07,8.78,8.74
-66439,20,085,20085,13,5,8462664,8462664,2747,1296,228080902,226601385,13462,5779,1704260630,1699594134,0.47,0.39,3.71,3.73,0.1,0.09,0.5,0.5
-66440,20,085,20085,2063,829,127487433,127386339,2063,829,127487433,127386339,13462,5779,1704260630,1699594134,100,100,100,100,15.32,14.35,7.48,7.5
-66441,20,041,20041,138,60,30785918,30589787,26746,12102,625933300,618476803,19754,8972,2206541066,2193906542,0.52,0.5,4.92,4.95,0.7,0.67,1.4,1.39
-66441,20,061,20061,26600,12039,587883078,580812433,26746,12102,625933300,618476803,34362,14517,1047611719,996156662,99.45,99.48,93.92,93.91,77.41,82.93,56.12,58.31
-66441,20,161,20161,8,3,7264304,7074583,26746,12102,625933300,618476803,71115,28212,1610858558,1579300177,0.03,0.02,1.16,1.14,0.01,0.01,0.45,0.45
-66442,20,061,20061,5838,1623,35442502,34358193,14283,3517,90150548,88795722,34362,14517,1047611719,996156662,40.87,46.15,39.31,38.69,16.99,11.18,3.38,3.45
-66442,20,161,20161,8445,1894,54708046,54437529,14283,3517,90150548,88795722,71115,28212,1610858558,1579300177,59.13,53.85,60.69,61.31,11.88,6.71,3.4,3.45
-66449,20,161,20161,846,378,173273560,173176655,846,378,173273560,173176655,71115,28212,1610858558,1579300177,100,100,100,100,1.19,1.34,10.76,10.97
-66451,20,139,20139,1793,886,217914855,213675978,1793,886,217914855,213675978,16295,7503,1864391125,1827283988,100,100,100,100,11,11.81,11.69,11.69
-66501,20,197,20197,260,124,622280,608802,260,124,622280,608802,7053,3227,2071006594,2057231892,100,100,100,100,3.69,3.84,0.03,0.03
-66502,20,061,20061,58,33,86975107,86559391,43850,19332,609058438,594567578,34362,14517,1047611719,996156662,0.13,0.17,14.28,14.56,0.17,0.23,8.3,8.69
-66502,20,149,20149,3178,1223,150173659,141913706,43850,19332,609058438,594567578,21604,8626,2232339309,2178235871,7.25,6.33,24.66,23.87,14.71,14.18,6.73,6.52
-66502,20,161,20161,40580,18061,354376803,348862299,43850,19332,609058438,594567578,71115,28212,1610858558,1579300177,92.54,93.43,58.18,58.67,57.06,64.02,22,22.09
-66502,20,197,20197,34,15,17532869,17232182,43850,19332,609058438,594567578,7053,3227,2071006594,2057231892,0.08,0.08,2.88,2.9,0.48,0.46,0.85,0.84
-66503,20,161,20161,13428,5888,222822290,210679162,13428,5888,222822290,210679162,71115,28212,1610858558,1579300177,100,100,100,100,18.88,20.87,13.83,13.34
-66506,20,161,20161,3614,36,1723768,1723768,3614,36,1723768,1723768,71115,28212,1610858558,1579300177,100,100,100,100,5.08,0.13,0.11,0.11
-66507,20,197,20197,1247,468,249697425,247171056,1247,468,249697425,247171056,7053,3227,2071006594,2057231892,100,100,100,100,17.68,14.5,12.06,12.01
-66508,20,117,20117,4375,2118,528624171,525949394,4375,2118,528624171,525949394,10117,4866,2344217439,2331463499,100,100,100,100,43.24,43.53,22.55,22.56
-66509,20,085,20085,2596,1049,327934579,327830388,2596,1049,327934579,327830388,13462,5779,1704260630,1699594134,100,100,100,100,19.28,18.15,19.24,19.29
-66510,20,139,20139,779,361,147202215,146703383,779,361,147202215,146703383,16295,7503,1864391125,1827283988,100,100,100,100,4.78,4.81,7.9,8.03
-66512,20,085,20085,115,49,18113327,18113327,3361,1371,172543765,169677441,13462,5779,1704260630,1699594134,3.42,3.57,10.5,10.68,0.85,0.85,1.06,1.07
-66512,20,087,20087,3148,1282,144318117,141481124,3361,1371,172543765,169677441,19126,8160,1441787239,1379359803,93.66,93.51,83.64,83.38,16.46,15.71,10.01,10.26
-66512,20,177,20177,98,40,10112321,10082990,3361,1371,172543765,169677441,177934,79140,1439325960,1408995941,2.92,2.92,5.86,5.94,0.06,0.05,0.7,0.72
-66514,20,061,20061,1657,729,42211344,42004146,1657,729,42211344,42004146,34362,14517,1047611719,996156662,100,100,100,100,4.82,5.02,4.03,4.22
-66515,20,013,20013,425,184,83639152,83508999,425,184,83639152,83508999,9984,4779,1481748045,1478551884,100,100,100,100,4.26,3.85,5.64,5.65
-66516,20,013,20013,75,32,38309597,38301429,378,161,120488688,120390578,9984,4779,1481748045,1478551884,19.84,19.88,31.8,31.81,0.75,0.67,2.59,2.59
-66516,20,085,20085,303,129,82179091,82089149,378,161,120488688,120390578,13462,5779,1704260630,1699594134,80.16,80.12,68.2,68.19,2.25,2.23,4.82,4.83
-66517,20,161,20161,2087,992,4203471,4048489,2087,992,4203471,4048489,71115,28212,1610858558,1579300177,100,100,100,100,2.93,3.52,0.26,0.26
-66518,20,117,20117,189,102,99920675,99335198,189,102,99920675,99335198,10117,4866,2344217439,2331463499,100,100,100,100,1.87,2.1,4.26,4.26
-66520,20,149,20149,577,279,303321208,270496094,577,279,303321208,270496094,21604,8626,2232339309,2178235871,100,100,100,100,2.67,3.23,13.59,12.42
-66521,20,131,20131,58,33,51834606,51658585,1532,750,475217448,473954043,10178,4562,1863334404,1858126462,3.79,4.4,10.91,10.9,0.57,0.72,2.78,2.78
-66521,20,149,20149,1474,717,423382842,422295458,1532,750,475217448,473954043,21604,8626,2232339309,2178235871,96.21,95.6,89.09,89.1,6.82,8.31,18.97,19.39
-66522,20,131,20131,49,20,445109,445109,49,20,445109,445109,10178,4562,1863334404,1858126462,100,100,100,100,0.48,0.44,0.02,0.02
-66523,20,111,20111,37,13,18145015,18026944,3833,1755,406751768,389645891,33690,15237,2215520107,2194947808,0.97,0.74,4.46,4.63,0.11,0.09,0.82,0.82
-66523,20,139,20139,3796,1742,388606753,371618947,3833,1755,406751768,389645891,16295,7503,1864391125,1827283988,99.03,99.26,95.54,95.37,23.3,23.22,20.84,20.34
-66524,20,045,20045,495,225,153895539,152869379,2499,1092,332039710,330612292,110826,46731,1229302794,1180699859,19.81,20.6,46.35,46.24,0.45,0.48,12.52,12.95
-66524,20,139,20139,1971,850,168233473,167917979,2499,1092,332039710,330612292,16295,7503,1864391125,1827283988,78.87,77.84,50.67,50.79,12.1,11.33,9.02,9.19
-66524,20,177,20177,33,17,9910698,9824934,2499,1092,332039710,330612292,177934,79140,1439325960,1408995941,1.32,1.56,2.98,2.97,0.02,0.02,0.69,0.7
-66526,20,197,20197,801,321,184281903,183135713,801,321,184281903,183135713,7053,3227,2071006594,2057231892,100,100,100,100,11.36,9.95,8.9,8.9
-66527,20,013,20013,267,117,105313876,105259109,267,117,105313876,105259109,9984,4779,1481748045,1478551884,100,100,100,100,2.67,2.45,7.11,7.12
-66528,20,059,20059,126,51,26617925,26545225,945,416,171462312,171288523,25992,11147,1494776359,1480840246,13.33,12.26,15.52,15.5,0.48,0.46,1.78,1.79
-66528,20,139,20139,819,365,144844387,144743298,945,416,171462312,171288523,16295,7503,1864391125,1827283988,86.67,87.74,84.48,84.5,5.03,4.86,7.77,7.92
-66531,20,161,20161,1380,580,98644288,98569844,1380,580,98644288,98569844,71115,28212,1610858558,1579300177,100,100,100,100,1.94,2.06,6.12,6.24
-66532,20,013,20013,533,247,177781873,177484330,668,303,228591834,228294291,9984,4779,1481748045,1478551884,79.79,81.52,77.77,77.74,5.34,5.17,12,12
-66532,20,043,20043,135,56,50809961,50809961,668,303,228591834,228294291,7945,3576,1031529864,1018914848,20.21,18.48,22.23,22.26,1.7,1.57,4.93,4.99
-66533,20,177,20177,1832,689,137304929,134952199,1832,689,137304929,134952199,177934,79140,1439325960,1408995941,100,100,100,100,1.03,0.87,9.54,9.58
-66534,20,013,20013,163,71,77310718,77176105,3725,1663,385184509,383966185,9984,4779,1481748045,1478551884,4.38,4.27,20.07,20.1,1.63,1.49,5.22,5.22
-66534,20,131,20131,3562,1592,307873791,306790080,3725,1663,385184509,383966185,10178,4562,1863334404,1858126462,95.62,95.73,79.93,79.9,35,34.9,16.52,16.51
-66535,20,149,20149,2616,1075,111161906,110311932,2616,1075,111161906,110311932,21604,8626,2232339309,2178235871,100,100,100,100,12.11,12.46,4.98,5.06
-66536,20,085,20085,32,7,4259322,4243903,3922,1213,157169926,152578371,13462,5779,1704260630,1699594134,0.82,0.58,2.71,2.78,0.24,0.12,0.25,0.25
-66536,20,149,20149,3730,1165,125154214,121899708,3922,1213,157169926,152578371,21604,8626,2232339309,2178235871,95.1,96.04,79.63,79.89,17.27,13.51,5.61,5.6
-66536,20,177,20177,143,34,15084950,15028395,3922,1213,157169926,152578371,177934,79140,1439325960,1408995941,3.65,2.8,9.6,9.85,0.08,0.04,1.05,1.07
-66536,20,197,20197,17,7,12671440,11406365,3922,1213,157169926,152578371,7053,3227,2071006594,2057231892,0.43,0.58,8.06,7.48,0.24,0.22,0.61,0.55
-66537,20,139,20139,1448,593,149007236,147908334,1448,593,149007236,147908334,16295,7503,1864391125,1827283988,100,100,100,100,8.89,7.9,7.99,8.09
-66538,20,131,20131,3264,1486,377684350,377635139,3264,1486,377684350,377635139,10178,4562,1863334404,1858126462,100,100,100,100,32.07,32.57,20.27,20.32
-66539,20,177,20177,2806,1091,108000529,106687863,2806,1091,108000529,106687863,177934,79140,1439325960,1408995941,100,100,100,100,1.58,1.38,7.5,7.57
-66540,20,085,20085,503,225,183760820,183525469,540,245,220073427,219743802,13462,5779,1704260630,1699594134,93.15,91.84,83.5,83.52,3.74,3.89,10.78,10.8
-66540,20,131,20131,37,20,36312607,36218333,540,245,220073427,219743802,10178,4562,1863334404,1858126462,6.85,8.16,16.5,16.48,0.36,0.44,1.95,1.95
-66541,20,117,20117,236,144,78901142,78711668,264,154,109161118,108931025,10117,4866,2344217439,2331463499,89.39,93.51,72.28,72.26,2.33,2.96,3.37,3.38
-66541,31,133,31133,28,10,30259976,30219357,264,154,109161118,108931025,2773,1588,1121330489,1116478095,10.61,6.49,27.72,27.74,1.01,0.63,2.7,2.71
-66542,20,177,20177,3335,1325,86665039,84185096,3335,1325,86665039,84185096,177934,79140,1439325960,1408995941,100,100,100,100,1.87,1.67,6.02,5.97
-66543,20,139,20139,725,411,22692403,22675922,725,411,22692403,22675922,16295,7503,1864391125,1827283988,100,100,100,100,4.45,5.48,1.22,1.24
-66544,20,117,20117,312,184,196225015,194409934,337,193,224283097,222262701,10117,4866,2344217439,2331463499,92.58,95.34,87.49,87.47,3.08,3.78,8.37,8.34
-66544,20,131,20131,25,9,28058082,27852767,337,193,224283097,222262701,10178,4562,1863334404,1858126462,7.42,4.66,12.51,12.53,0.25,0.2,1.51,1.5
-66546,20,139,20139,23,12,7329094,7210871,1012,436,100281119,99132886,16295,7503,1864391125,1827283988,2.27,2.75,7.31,7.27,0.14,0.16,0.39,0.39
-66546,20,177,20177,989,424,92952025,91922015,1012,436,100281119,99132886,177934,79140,1439325960,1408995941,97.73,97.25,92.69,92.73,0.56,0.54,6.46,6.52
-66547,20,149,20149,7251,2968,261280901,258307910,7617,3118,353582924,349074405,21604,8626,2232339309,2178235871,95.19,95.19,73.9,74,33.56,34.41,11.7,11.86
-66547,20,197,20197,366,150,92302023,90766495,7617,3118,353582924,349074405,7053,3227,2071006594,2057231892,4.81,4.81,26.1,26,5.19,4.65,4.46,4.41
-66548,20,117,20117,958,459,199302226,198267291,961,462,204546217,203504352,10117,4866,2344217439,2331463499,99.69,99.35,97.44,97.43,9.47,9.43,8.5,8.5
-66548,20,201,20201,3,3,5243991,5237061,961,462,204546217,203504352,5799,2955,2327546308,2317406254,0.31,0.65,2.56,2.57,0.05,0.1,0.23,0.23
-66549,20,149,20149,1646,721,449381827,448005778,1646,721,449381827,448005778,21604,8626,2232339309,2178235871,100,100,100,100,7.62,8.36,20.13,20.57
-66550,20,013,20013,23,7,11584046,11584046,607,253,161081919,160593127,9984,4779,1481748045,1478551884,3.79,2.77,7.19,7.21,0.23,0.15,0.78,0.78
-66550,20,085,20085,22,16,18551995,18529767,607,253,161081919,160593127,13462,5779,1704260630,1699594134,3.62,6.32,11.52,11.54,0.16,0.28,1.09,1.09
-66550,20,131,20131,562,230,130945878,130479314,607,253,161081919,160593127,10178,4562,1863334404,1858126462,92.59,90.91,81.29,81.25,5.52,5.04,7.03,7.02
-66552,20,085,20085,396,189,118058063,117933257,396,189,118058063,117933257,13462,5779,1704260630,1699594134,100,100,100,100,2.94,3.27,6.93,6.94
-66554,20,161,20161,567,293,287780866,277553704,567,293,287780866,277553704,71115,28212,1610858558,1579300177,100,100,100,100,0.8,1.04,17.87,17.57
-66603,20,177,20177,2001,1169,2402935,2236348,2001,1169,2402935,2236348,177934,79140,1439325960,1408995941,100,100,100,100,1.12,1.48,0.17,0.16
-66604,20,177,20177,23344,11539,17157706,17137815,23344,11539,17157706,17137815,177934,79140,1439325960,1408995941,100,100,100,100,13.12,14.58,1.19,1.22
-66605,20,177,20177,19919,8018,26494228,25842412,19919,8018,26494228,25842412,177934,79140,1439325960,1408995941,100,100,100,100,11.19,10.13,1.84,1.83
-66606,20,177,20177,11284,5913,15586150,14815828,11284,5913,15586150,14815828,177934,79140,1439325960,1408995941,100,100,100,100,6.34,7.47,1.08,1.05
-66607,20,177,20177,10498,3793,18520181,18512870,10498,3793,18520181,18512870,177934,79140,1439325960,1408995941,100,100,100,100,5.9,4.79,1.29,1.31
-66608,20,177,20177,5991,2722,13114600,12110526,5991,2722,13114600,12110526,177934,79140,1439325960,1408995941,100,100,100,100,3.37,3.44,0.91,0.86
-66609,20,177,20177,7068,3285,32541712,31129756,7068,3285,32541712,31129756,177934,79140,1439325960,1408995941,100,100,100,100,3.97,4.15,2.26,2.21
-66610,20,177,20177,9080,3447,101630172,99269961,9080,3447,101630172,99269961,177934,79140,1439325960,1408995941,100,100,100,100,5.1,4.36,7.06,7.05
-66611,20,177,20177,9832,5014,8808909,8801074,9832,5014,8808909,8801074,177934,79140,1439325960,1408995941,100,100,100,100,5.53,6.34,0.61,0.62
-66612,20,177,20177,2477,1645,2660726,2660726,2477,1645,2660726,2660726,177934,79140,1439325960,1408995941,100,100,100,100,1.39,2.08,0.18,0.19
-66614,20,177,20177,31303,14707,64689497,64110672,31354,14724,74999201,74340030,177934,79140,1439325960,1408995941,99.84,99.88,86.25,86.24,17.59,18.58,4.49,4.55
-66614,20,197,20197,51,17,10309704,10229358,31354,14724,74999201,74340030,7053,3227,2071006594,2057231892,0.16,0.12,13.75,13.76,0.72,0.53,0.5,0.5
-66615,20,177,20177,2644,1269,90979109,86973208,2814,1332,121818886,117227885,177934,79140,1439325960,1408995941,93.96,95.27,74.68,74.19,1.49,1.6,6.32,6.17
-66615,20,197,20197,170,63,30839777,30254677,2814,1332,121818886,117227885,7053,3227,2071006594,2057231892,6.04,4.73,25.32,25.81,2.41,1.95,1.49,1.47
-66616,20,177,20177,5874,2700,16889247,15589728,5874,2700,16889247,15589728,177934,79140,1439325960,1408995941,100,100,100,100,3.3,3.41,1.17,1.11
-66617,20,085,20085,25,10,1333855,1333855,8688,3538,111619070,108584981,13462,5779,1704260630,1699594134,0.29,0.28,1.2,1.23,0.19,0.17,0.08,0.08
-66617,20,087,20087,411,170,19105259,17294521,8688,3538,111619070,108584981,19126,8160,1441787239,1379359803,4.73,4.8,17.12,15.93,2.15,2.08,1.33,1.25
-66617,20,177,20177,8252,3358,91179956,89956605,8688,3538,111619070,108584981,177934,79140,1439325960,1408995941,94.98,94.91,81.69,82.84,4.64,4.24,6.33,6.38
-66618,20,177,20177,9402,3486,192154251,186991864,9402,3486,192154251,186991864,177934,79140,1439325960,1408995941,100,100,100,100,5.28,4.4,13.35,13.27
-66619,20,177,20177,3070,1113,20595303,20492688,3070,1113,20595303,20492688,177934,79140,1439325960,1408995941,100,100,100,100,1.73,1.41,1.43,1.45
-66621,20,177,20177,643,0,646632,646632,643,0,646632,646632,177934,79140,1439325960,1408995941,100,0,100,100,0.36,0,0.04,0.05
-66622,20,177,20177,76,0,272640,272640,76,0,272640,272640,177934,79140,1439325960,1408995941,100,0,100,100,0.04,0,0.02,0.02
-66701,20,011,20011,12306,5637,752602860,747290607,12325,5645,768061380,762737317,15173,7167,1655239401,1645861744,99.85,99.86,97.99,97.97,81.1,78.65,45.47,45.4
-66701,20,037,20037,19,8,15458520,15446710,12325,5645,768061380,762737317,39134,17801,1541072921,1527461827,0.15,0.14,2.01,2.03,0.05,0.04,1,1.01
-66710,20,205,20205,746,354,181944354,180652601,746,354,181944354,180652601,9409,4682,1489434416,1477377048,100,100,100,100,7.93,7.56,12.22,12.23
-66711,20,011,20011,14,6,6982648,6979561,610,318,134177326,133575064,15173,7167,1655239401,1645861744,2.3,1.89,5.2,5.23,0.09,0.08,0.42,0.42
-66711,20,037,20037,596,312,127194678,126595503,610,318,134177326,133575064,39134,17801,1541072921,1527461827,97.7,98.11,94.8,94.77,1.52,1.75,8.25,8.29
-66712,20,037,20037,1939,950,56727750,56413467,1939,950,56727750,56413467,39134,17801,1541072921,1527461827,100,100,100,100,4.95,5.34,3.68,3.69
-66713,20,021,20021,5836,2668,154568296,153613351,5836,2668,154568296,153613351,21603,9890,1530742434,1521793550,100,100,100,100,27.01,26.98,10.1,10.09
-66714,20,205,20205,177,96,70941929,70503066,177,96,70941929,70503066,9409,4682,1489434416,1477377048,100,100,100,100,1.88,2.05,4.76,4.77
-66716,20,001,20001,62,35,34679767,34485145,567,290,223111248,222108390,13371,6226,1308786199,1295779123,10.93,12.07,15.54,15.53,0.46,0.56,2.65,2.66
-66716,20,011,20011,505,255,188431481,187623245,567,290,223111248,222108390,15173,7167,1655239401,1645861744,89.07,87.93,84.46,84.47,3.33,3.56,11.38,11.4
-66717,20,205,20205,497,251,137851712,136750979,497,251,137851712,136750979,9409,4682,1489434416,1477377048,100,100,100,100,5.28,5.36,9.26,9.26
-66720,20,001,20001,117,57,12921100,12709341,11299,5168,479786993,475651545,13371,6226,1308786199,1295779123,1.04,1.1,2.69,2.67,0.88,0.92,0.99,0.98
-66720,20,133,20133,10867,4966,351370595,348063827,11299,5168,479786993,475651545,16512,7513,1496480642,1480106485,96.18,96.09,73.23,73.18,65.81,66.1,23.48,23.52
-66720,20,205,20205,315,145,115495298,114878377,11299,5168,479786993,475651545,9409,4682,1489434416,1477377048,2.79,2.81,24.07,24.15,3.35,3.1,7.75,7.78
-66724,20,021,20021,96,40,34223683,34180905,1065,466,94451194,94055592,21603,9890,1530742434,1521793550,9.01,8.58,36.23,36.34,0.44,0.4,2.24,2.25
-66724,20,037,20037,969,426,60227511,59874687,1065,466,94451194,94055592,39134,17801,1541072921,1527461827,90.99,91.42,63.77,63.66,2.48,2.39,3.91,3.92
-66725,20,021,20021,5739,2700,609840163,608061672,5739,2700,609840163,608061672,21603,9890,1530742434,1521793550,100,100,100,100,26.57,27.3,39.84,39.96
-66728,20,021,20021,91,42,3412309,3412309,91,42,3412309,3412309,21603,9890,1530742434,1521793550,100,100,100,100,0.42,0.42,0.22,0.22
-66732,20,001,20001,291,146,119808042,119095387,291,146,119808042,119095387,13371,6226,1308786199,1295779123,100,100,100,100,2.18,2.35,9.15,9.19
-66733,20,133,20133,2215,1053,368336462,365755950,2215,1053,368336462,365755950,16512,7513,1496480642,1480106485,100,100,100,100,13.41,14.02,24.61,24.71
-66734,20,037,20037,332,192,75974885,75040871,332,192,75974885,75040871,39134,17801,1541072921,1527461827,100,100,100,100,0.85,1.08,4.93,4.91
-66735,20,037,20037,421,190,9864680,9809949,421,190,9864680,9809949,39134,17801,1541072921,1527461827,100,100,100,100,1.08,1.07,0.64,0.64
-66736,20,049,20049,29,11,43082162,42692068,3954,1993,671138751,665035284,2882,1760,1684699449,1668637984,0.73,0.55,6.42,6.42,1.01,0.63,2.56,2.56
-66736,20,125,20125,5,3,6540623,6493607,3954,1993,671138751,665035284,35471,16578,1687330028,1666728264,0.13,0.15,0.97,0.98,0.01,0.02,0.39,0.39
-66736,20,205,20205,3920,1979,621515966,615849609,3954,1993,671138751,665035284,9409,4682,1489434416,1477377048,99.14,99.3,92.61,92.6,41.66,42.27,41.73,41.69
-66738,20,011,20011,355,189,92121278,91700889,376,200,100008808,99556300,15173,7167,1655239401,1645861744,94.41,94.5,92.11,92.11,2.34,2.64,5.57,5.57
-66738,20,107,20107,21,11,7887530,7855411,376,200,100008808,99556300,9656,5446,1570556374,1538604962,5.59,5.5,7.89,7.89,0.22,0.2,0.5,0.51
-66739,20,021,20021,5453,2465,181674563,178520690,5453,2465,181674563,178520690,21603,9890,1530742434,1521793550,100,100,100,100,25.24,24.92,11.87,11.73
-66740,20,133,20133,477,183,116268292,116028397,477,183,116268292,116028397,16512,7513,1496480642,1480106485,100,100,100,100,2.89,2.44,7.77,7.84
-66741,20,011,20011,237,94,54059739,53755154,237,94,54059739,53755154,15173,7167,1655239401,1645861744,100,100,100,100,1.56,1.31,3.27,3.27
-66743,20,037,20037,4373,1908,385956872,383826183,4373,1908,385956872,383826183,39134,17801,1541072921,1527461827,100,100,100,100,11.17,10.72,25.04,25.13
-66746,20,011,20011,20,10,44045916,44012033,261,120,123119919,122701561,15173,7167,1655239401,1645861744,7.66,8.33,35.77,35.87,0.13,0.14,2.66,2.67
-66746,20,037,20037,241,110,79074003,78689528,261,120,123119919,122701561,39134,17801,1541072921,1527461827,92.34,91.67,64.23,64.13,0.62,0.62,5.13,5.15
-66748,20,001,20001,2611,1211,242555397,239337162,2750,1271,300091684,296659738,13371,6226,1308786199,1295779123,94.95,95.28,80.83,80.68,19.53,19.45,18.53,18.47
-66748,20,133,20133,79,32,7171040,7171040,2750,1271,300091684,296659738,16512,7513,1496480642,1480106485,2.87,2.52,2.39,2.42,0.48,0.43,0.48,0.48
-66748,20,207,20207,60,28,50365247,50151536,2750,1271,300091684,296659738,3309,2022,1308599011,1289347304,2.18,2.2,16.78,16.91,1.81,1.38,3.85,3.89
-66749,20,001,20001,7974,3659,307662598,302761411,7974,3659,307662598,302761411,13371,6226,1308786199,1295779123,100,100,100,100,59.64,58.77,23.51,23.37
-66751,20,001,20001,849,404,122320702,121338122,849,404,122320702,121338122,13371,6226,1308786199,1295779123,100,100,100,100,6.35,6.49,9.35,9.36
-66753,20,021,20021,182,84,127872565,127537292,1077,506,347475136,345434771,21603,9890,1530742434,1521793550,16.9,16.6,36.8,36.92,0.84,0.85,8.35,8.38
-66753,20,037,20037,830,388,189881279,188502941,1077,506,347475136,345434771,39134,17801,1541072921,1527461827,77.07,76.68,54.65,54.57,2.12,2.18,12.32,12.34
-66753,20,099,20099,65,34,29721292,29394538,1077,506,347475136,345434771,21607,10092,1691566909,1671305414,6.04,6.72,8.55,8.51,0.3,0.34,1.76,1.76
-66754,20,011,20011,429,365,111006698,110158065,451,376,120879618,119979002,15173,7167,1655239401,1645861744,95.12,97.07,91.83,91.81,2.83,5.09,6.71,6.69
-66754,20,107,20107,22,11,9872920,9820937,451,376,120879618,119979002,9656,5446,1570556374,1538604962,4.88,2.93,8.17,8.19,0.23,0.2,0.63,0.64
-66755,20,001,20001,1146,555,332886262,330881084,1178,588,348662785,346561587,13371,6226,1308786199,1295779123,97.28,94.39,95.48,95.48,8.57,8.91,25.43,25.54
-66755,20,011,20011,32,33,15776523,15680503,1178,588,348662785,346561587,15173,7167,1655239401,1645861744,2.72,5.61,4.52,4.52,0.21,0.46,0.95,0.95
-66756,20,037,20037,1007,496,54081425,52889954,1007,496,54081425,52889954,39134,17801,1541072921,1527461827,100,100,100,100,2.57,2.79,3.51,3.46
-66757,20,125,20125,201,85,66501098,66255176,3560,1671,297129233,294908147,35471,16578,1687330028,1666728264,5.65,5.09,22.38,22.47,0.57,0.51,3.94,3.98
-66757,20,205,20205,3359,1586,230628135,228652971,3560,1671,297129233,294908147,9409,4682,1489434416,1477377048,94.35,94.91,77.62,77.53,35.7,33.87,15.48,15.48
-66758,20,003,20003,11,5,7033901,6996056,216,127,113623425,112023675,8102,3720,1511863263,1501276302,5.09,3.94,6.19,6.25,0.14,0.13,0.47,0.47
-66758,20,031,20031,8,4,5149272,5129182,216,127,113623425,112023675,8601,3964,1694094880,1623784229,3.7,3.15,4.53,4.58,0.09,0.1,0.3,0.32
-66758,20,207,20207,197,118,101440252,99898437,216,127,113623425,112023675,3309,2022,1308599011,1289347304,91.2,92.91,89.28,89.18,5.95,5.84,7.75,7.75
-66760,20,037,20037,98,57,1979865,1970181,98,57,1979865,1970181,39134,17801,1541072921,1527461827,100,100,100,100,0.25,0.32,0.13,0.13
-66761,20,207,20207,238,118,110121480,109268455,238,118,110121480,109268455,3309,2022,1308599011,1289347304,100,100,100,100,7.19,5.84,8.42,8.47
-66762,20,021,20021,299,134,60768047,60736795,24786,11172,351502662,347012277,21603,9890,1530742434,1521793550,1.21,1.2,17.29,17.5,1.38,1.35,3.97,3.99
-66762,20,037,20037,24487,11038,290734615,286275482,24786,11172,351502662,347012277,39134,17801,1541072921,1527461827,98.79,98.8,82.71,82.5,62.57,62.01,18.87,18.74
-66763,20,037,20037,3369,1506,17161519,16598898,3369,1506,17161519,16598898,39134,17801,1541072921,1527461827,100,100,100,100,8.61,8.46,1.11,1.09
-66767,20,107,20107,511,241,122756076,121013193,511,241,122756076,121013193,9656,5446,1570556374,1538604962,100,100,100,100,5.29,4.43,7.82,7.87
-66769,20,011,20011,557,224,137343294,136795918,557,224,137343294,136795918,15173,7167,1655239401,1645861744,100,100,100,100,3.67,3.13,8.3,8.31
-66770,20,021,20021,1158,484,18262126,17964804,1158,484,18262126,17964804,21603,9890,1530742434,1521793550,100,100,100,100,5.36,4.89,1.19,1.18
-66771,20,133,20133,1028,421,188701405,183067918,1028,421,188701405,183067918,16512,7513,1496480642,1480106485,100,100,100,100,6.23,5.6,12.61,12.37
-66772,20,001,20001,253,122,87690145,87210470,253,122,87690145,87210470,13371,6226,1308786199,1295779123,100,100,100,100,1.89,1.96,6.7,6.73
-66773,20,021,20021,866,409,80394892,80222975,866,409,80394892,80222975,21603,9890,1530742434,1521793550,100,100,100,100,4.01,4.14,5.25,5.27
-66775,20,133,20133,191,102,67138467,67045238,191,102,67138467,67045238,16512,7513,1496480642,1480106485,100,100,100,100,1.16,1.36,4.49,4.53
-66776,20,099,20099,79,25,11176198,11176198,1288,541,283668909,282855880,21607,10092,1691566909,1671305414,6.13,4.62,3.94,3.95,0.37,0.25,0.66,0.67
-66776,20,133,20133,1053,450,196975559,196487484,1288,541,283668909,282855880,16512,7513,1496480642,1480106485,81.75,83.18,69.44,69.47,6.38,5.99,13.16,13.28
-66776,20,205,20205,156,66,75517152,75192198,1288,541,283668909,282855880,9409,4682,1489434416,1477377048,12.11,12.2,26.62,26.58,1.66,1.41,5.07,5.09
-66777,20,073,20073,56,40,183930623,182470676,639,560,377933867,366163866,6689,4068,2985288498,2961132699,8.76,7.14,48.67,49.83,0.84,0.98,6.16,6.16
-66777,20,205,20205,27,15,23434923,23115305,639,560,377933867,366163866,9409,4682,1489434416,1477377048,4.23,2.68,6.2,6.31,0.29,0.32,1.57,1.56
-66777,20,207,20207,556,505,170568321,160577885,639,560,377933867,366163866,3309,2022,1308599011,1289347304,87.01,90.18,45.13,43.85,16.8,24.98,13.03,12.45
-66778,20,021,20021,139,68,389398,389398,139,68,389398,389398,21603,9890,1530742434,1521793550,100,100,100,100,0.64,0.69,0.03,0.03
-66779,20,011,20011,650,313,192590218,191800566,650,313,192590218,191800566,15173,7167,1655239401,1645861744,100,100,100,100,4.28,4.37,11.64,11.65
-66780,20,011,20011,49,30,50002140,49813390,589,296,281008078,279742162,15173,7167,1655239401,1645861744,8.32,10.14,17.79,17.81,0.32,0.42,3.02,3.03
-66780,20,037,20037,417,204,169040103,167983650,589,296,281008078,279742162,39134,17801,1541072921,1527461827,70.8,68.92,60.15,60.05,1.07,1.15,10.97,11
-66780,20,133,20133,123,62,61965835,61945122,589,296,281008078,279742162,16512,7513,1496480642,1480106485,20.88,20.95,22.05,22.14,0.74,0.83,4.14,4.19
-66781,20,021,20021,1311,591,111098293,110944130,1347,607,118813509,118487953,21603,9890,1530742434,1521793550,97.33,97.36,93.51,93.63,6.07,5.98,7.26,7.29
-66781,20,037,20037,36,16,7715216,7543823,1347,607,118813509,118487953,39134,17801,1541072921,1527461827,2.67,2.64,6.49,6.37,0.09,0.09,0.5,0.49
-66782,20,021,20021,178,93,766729,766729,178,93,766729,766729,21603,9890,1530742434,1521793550,100,100,100,100,0.82,0.94,0.05,0.05
-66783,20,207,20207,2230,1241,782474868,776342196,2230,1241,782474868,776342196,3309,2022,1308599011,1289347304,100,100,100,100,67.39,61.37,59.79,60.21
-66801,20,017,20017,163,81,105804686,105060973,28492,12936,768473924,759975316,2790,1503,2014304923,2002216830,0.57,0.63,13.77,13.82,5.84,5.39,5.25,5.25
-66801,20,111,20111,28329,12855,662669238,654914343,28492,12936,768473924,759975316,33690,15237,2215520107,2194947808,99.43,99.37,86.23,86.18,84.09,84.37,29.91,29.84
-66830,20,111,20111,262,116,75410584,75007548,262,116,75410584,75007548,33690,15237,2215520107,2194947808,100,100,100,100,0.78,0.76,3.4,3.42
-66833,20,111,20111,536,246,330066936,327931550,536,246,330066936,327931550,33690,15237,2215520107,2194947808,100,100,100,100,1.59,1.61,14.9,14.94
-66834,20,061,20061,88,40,83465577,83079274,848,419,399798151,398361433,34362,14517,1047611719,996156662,10.38,9.55,20.88,20.86,0.26,0.28,7.97,8.34
-66834,20,127,20127,118,60,85581196,85265326,848,419,399798151,398361433,5923,3206,1820474700,1800763909,13.92,14.32,21.41,21.4,1.99,1.87,4.7,4.73
-66834,20,197,20197,642,319,230751378,230016833,848,419,399798151,398361433,7053,3227,2071006594,2057231892,75.71,76.13,57.72,57.74,9.1,9.89,11.14,11.18
-66835,20,111,20111,1360,569,157378575,156146095,1360,569,157378575,156146095,33690,15237,2215520107,2194947808,100,100,100,100,4.04,3.73,7.1,7.11
-66838,20,017,20017,10,5,7463391,7407721,182,94,133493577,132915416,2790,1503,2014304923,2002216830,5.49,5.32,5.59,5.57,0.36,0.33,0.37,0.37
-66838,20,127,20127,172,89,126030186,125507695,182,94,133493577,132915416,5923,3206,1820474700,1800763909,94.51,94.68,94.41,94.43,2.9,2.78,6.92,6.97
-66839,20,031,20031,4007,1851,410790142,365926910,4007,1851,410790142,365926910,8601,3964,1694094880,1623784229,100,100,100,100,46.59,46.7,24.25,22.54
-66840,20,015,20015,384,139,277134803,276261529,777,336,483928221,482662795,65880,26058,3746489690,3703329246,49.42,41.37,57.27,57.24,0.58,0.53,7.4,7.46
-66840,20,017,20017,53,28,88868444,88653723,777,336,483928221,482662795,2790,1503,2014304923,2002216830,6.82,8.33,18.36,18.37,1.9,1.86,4.41,4.43
-66840,20,115,20115,340,169,117924974,117747543,777,336,483928221,482662795,12660,5946,2470149956,2445700985,43.76,50.3,24.37,24.4,2.69,2.84,4.77,4.81
-66842,20,015,20015,324,213,283782294,282146113,324,213,283782294,282146113,65880,26058,3746489690,3703329246,100,100,100,100,0.49,0.82,7.57,7.62
-66843,20,017,20017,205,140,351837059,349835586,205,140,351837059,349835586,2790,1503,2014304923,2002216830,100,100,100,100,7.35,9.31,17.47,17.47
-66845,20,017,20017,1232,573,395502449,392640524,1232,573,395502449,392640524,2790,1503,2014304923,2002216830,100,100,100,100,44.16,38.12,19.63,19.61
-66846,20,017,20017,19,93,818398,299962,3504,2114,756530109,739487905,2790,1503,2014304923,2002216830,0.54,4.4,0.11,0.04,0.68,6.19,0.04,0.01
-66846,20,111,20111,75,35,89417584,88792229,3504,2114,756530109,739487905,33690,15237,2215520107,2194947808,2.14,1.66,11.82,12.01,0.22,0.23,4.04,4.05
-66846,20,127,20127,3410,1986,666294127,650395714,3504,2114,756530109,739487905,5923,3206,1820474700,1800763909,97.32,93.95,88.07,87.95,57.57,61.95,36.6,36.12
-66849,20,061,20061,81,41,93176075,92803694,485,235,176645680,175929111,34362,14517,1047611719,996156662,16.7,17.45,52.75,52.75,0.24,0.28,8.89,9.32
-66849,20,127,20127,404,194,83469605,83125417,485,235,176645680,175929111,5923,3206,1820474700,1800763909,83.3,82.55,47.25,47.25,6.82,6.05,4.59,4.62
-66850,20,017,20017,228,119,363928406,361707678,228,119,363928406,361707678,2790,1503,2014304923,2002216830,100,100,100,100,8.17,7.92,18.07,18.07
-66851,20,115,20115,583,339,183093099,182627565,583,339,183093099,182627565,12660,5946,2470149956,2445700985,100,100,100,100,4.61,5.7,7.41,7.47
-66852,20,031,20031,568,286,226765340,224563484,631,315,376534456,373608775,8601,3964,1694094880,1623784229,90.02,90.79,60.22,60.11,6.6,7.21,13.39,13.83
-66852,20,073,20073,35,17,56140273,55936496,631,315,376534456,373608775,6689,4068,2985288498,2961132699,5.55,5.4,14.91,14.97,0.52,0.42,1.88,1.89
-66852,20,207,20207,28,12,93628843,93108795,631,315,376534456,373608775,3309,2022,1308599011,1289347304,4.44,3.81,24.87,24.92,0.85,0.59,7.15,7.22
-66853,20,073,20073,429,258,361270975,359804684,429,258,361270975,359804684,6689,4068,2985288498,2961132699,100,100,100,100,6.41,6.34,12.1,12.15
-66854,20,031,20031,147,86,92661506,80131457,816,418,274619272,261101529,8601,3964,1694094880,1623784229,18.01,20.57,33.74,30.69,1.71,2.17,5.47,4.93
-66854,20,111,20111,669,332,181957766,180970072,816,418,274619272,261101529,33690,15237,2215520107,2194947808,81.99,79.43,66.26,69.31,1.99,2.18,8.21,8.24
-66856,20,031,20031,1414,613,240680829,235904483,1613,728,375722442,361879932,8601,3964,1694094880,1623784229,87.66,84.2,64.06,65.19,16.44,15.46,14.21,14.53
-66856,20,139,20139,199,115,135041613,125975449,1613,728,375722442,361879932,16295,7503,1864391125,1827283988,12.34,15.8,35.94,34.81,1.22,1.53,7.24,6.89
-66857,20,031,20031,943,440,229689332,227429127,943,440,229689332,227429127,8601,3964,1694094880,1623784229,100,100,100,100,10.96,11.1,13.56,14.01
-66858,20,115,20115,456,217,201452753,201074799,456,217,201452753,201074799,12660,5946,2470149956,2445700985,100,100,100,100,3.6,3.65,8.16,8.22
-66859,20,115,20115,170,78,73441968,73371101,178,86,94041337,93925511,12660,5946,2470149956,2445700985,95.51,90.7,78.1,78.12,1.34,1.31,2.97,3
-66859,20,127,20127,8,8,20599369,20554410,178,86,94041337,93925511,5923,3206,1820474700,1800763909,4.49,9.3,21.9,21.88,0.14,0.25,1.13,1.14
-66860,20,073,20073,1120,612,410262231,407837543,1258,680,494520435,491295257,6689,4068,2985288498,2961132699,89.03,90,82.96,83.01,16.74,15.04,13.74,13.77
-66860,20,111,20111,138,68,84258204,83457714,1258,680,494520435,491295257,33690,15237,2215520107,2194947808,10.97,10,17.04,16.99,0.41,0.45,3.8,3.8
-66861,20,115,20115,3204,1749,553820378,537310812,3204,1749,553820378,537310812,12660,5946,2470149956,2445700985,100,100,100,100,25.31,29.41,22.42,21.97
-66862,20,017,20017,116,91,246980069,245925270,116,91,246980069,245925270,2790,1503,2014304923,2002216830,100,100,100,100,4.16,6.05,12.26,12.28
-66863,20,073,20073,63,30,2320969,2320969,63,30,2320969,2320969,6689,4068,2985288498,2961132699,100,100,100,100,0.94,0.74,0.08,0.08
-66864,20,031,20031,42,16,33848688,33377761,456,205,107267924,105382637,8601,3964,1694094880,1623784229,9.21,7.8,31.56,31.67,0.49,0.4,2,2.06
-66864,20,111,20111,414,189,73419236,72004876,456,205,107267924,105382637,33690,15237,2215520107,2194947808,90.79,92.2,68.44,68.33,1.23,1.24,3.31,3.28
-66865,20,017,20017,16,8,141399742,140642152,1124,479,399125192,396227360,2790,1503,2014304923,2002216830,1.42,1.67,35.43,35.5,0.57,0.53,7.02,7.02
-66865,20,111,20111,1108,471,257725450,255585208,1124,479,399125192,396227360,33690,15237,2215520107,2194947808,98.58,98.33,64.57,64.5,3.29,3.09,11.63,11.64
-66866,20,079,20079,100,39,39161074,39114581,1789,822,363534506,362840331,34684,14527,1400464714,1397957172,5.59,4.74,10.77,10.78,0.29,0.27,2.8,2.8
-66866,20,115,20115,1689,783,324373432,323725750,1789,822,363534506,362840331,12660,5946,2470149956,2445700985,94.41,95.26,89.23,89.22,13.34,13.17,13.13,13.24
-66868,20,031,20031,6,2,8992880,8868001,764,349,337124230,332322912,8601,3964,1694094880,1623784229,0.79,0.57,2.67,2.67,0.07,0.05,0.53,0.55
-66868,20,111,20111,715,324,261656842,258890544,764,349,337124230,332322912,33690,15237,2215520107,2194947808,93.59,92.84,77.61,77.9,2.12,2.13,11.81,11.79
-66868,20,139,20139,43,23,66474508,64564367,764,349,337124230,332322912,16295,7503,1864391125,1827283988,5.63,6.59,19.72,19.43,0.26,0.31,3.57,3.53
-66869,20,017,20017,748,365,311702279,310043241,748,365,311702279,310043241,2790,1503,2014304923,2002216830,100,100,100,100,26.81,24.28,15.47,15.48
-66870,20,073,20073,166,123,204388126,203740566,166,123,204388126,203740566,6689,4068,2985288498,2961132699,100,100,100,100,2.48,3.02,6.85,6.88
-66871,20,031,20031,1313,581,331405028,328979530,1346,597,354427797,351963742,8601,3964,1694094880,1623784229,97.55,97.32,93.5,93.47,15.27,14.66,19.56,20.26
-66871,20,139,20139,33,16,23022769,22984212,1346,597,354427797,351963742,16295,7503,1864391125,1827283988,2.45,2.68,6.5,6.53,0.2,0.21,1.23,1.26
-66872,20,061,20061,18,8,23635089,23459923,1134,533,380556046,379224101,34362,14517,1047611719,996156662,1.59,1.5,6.21,6.19,0.05,0.06,2.26,2.36
-66872,20,127,20127,1116,525,356920957,355764178,1134,533,380556046,379224101,5923,3206,1820474700,1800763909,98.41,98.5,93.79,93.81,18.84,16.38,19.61,19.76
-66873,20,127,20127,319,162,221606343,220934745,319,162,221606343,220934745,5923,3206,1820474700,1800763909,100,100,100,100,5.39,5.05,12.17,12.27
-66901,20,029,20029,6508,3068,581614812,578107625,6605,3108,641612178,637968777,9533,4659,1859586451,1852726587,98.53,98.71,90.65,90.62,68.27,65.85,31.28,31.2
-66901,20,157,20157,97,40,59997366,59861152,6605,3108,641612178,637968777,4980,2877,1865948766,1857981647,1.47,1.29,9.35,9.38,1.95,1.39,3.22,3.22
-66930,20,157,20157,186,135,194205866,193730314,186,135,194205866,193730314,4980,2877,1865948766,1857981647,100,100,100,100,3.73,4.69,10.41,10.43
-66932,20,183,20183,157,87,187272367,187222967,157,87,187272367,187222967,3853,2232,2323127772,2319243495,100,100,100,100,4.07,3.9,8.06,8.07
-66933,20,161,20161,13,5,3383772,3383520,298,186,214479505,213518344,71115,28212,1610858558,1579300177,4.36,2.69,1.58,1.58,0.02,0.02,0.21,0.21
-66933,20,201,20201,285,181,211095733,210134824,298,186,214479505,213518344,5799,2955,2327546308,2317406254,95.64,97.31,98.42,98.42,4.91,6.13,9.07,9.07
-66935,20,157,20157,2563,1416,381922820,381027886,2563,1416,381922820,381027886,4980,2877,1865948766,1857981647,100,100,100,100,51.47,49.22,20.47,20.51
-66936,20,089,20089,344,258,355068963,354407202,344,258,355068963,354407202,3077,2032,2368181544,2356321996,100,100,100,100,11.18,12.7,14.99,15.04
-66937,20,027,20027,385,190,179560645,177500073,893,437,385316812,382911102,8535,4042,1697996133,1671322093,43.11,43.48,46.6,46.36,4.51,4.7,10.57,10.62
-66937,20,201,20201,508,247,205756167,205411029,893,437,385316812,382911102,5799,2955,2327546308,2317406254,56.89,56.52,53.4,53.64,8.76,8.36,8.84,8.86
-66938,20,029,20029,946,484,221758001,220513701,1005,513,281035006,279505339,9533,4659,1859586451,1852726587,94.13,94.35,78.91,78.89,9.92,10.39,11.93,11.9
-66938,20,201,20201,59,29,59277005,58991638,1005,513,281035006,279505339,5799,2955,2327546308,2317406254,5.87,5.65,21.09,21.11,1.02,0.98,2.55,2.55
-66939,20,089,20089,28,16,52018699,51525558,537,291,286545963,285414464,3077,2032,2368181544,2356321996,5.21,5.5,18.15,18.05,0.91,0.79,2.2,2.19
-66939,20,157,20157,509,275,234527264,233888906,537,291,286545963,285414464,4980,2877,1865948766,1857981647,94.79,94.5,81.85,81.95,10.22,9.56,12.57,12.59
-66940,20,157,20157,339,233,181252003,180961985,339,233,181252003,180961985,4980,2877,1865948766,1857981647,100,100,100,100,6.81,8.1,9.71,9.74
-66941,20,089,20089,242,173,309761278,309133146,242,173,309761278,309133146,3077,2032,2368181544,2356321996,100,100,100,100,7.86,8.51,13.08,13.12
-66942,20,089,20089,247,155,255965579,254994873,247,155,255965579,254994873,3077,2032,2368181544,2356321996,100,100,100,100,8.03,7.63,10.81,10.82
-66943,20,201,20201,505,282,240265572,239645699,505,282,240265572,239645699,5799,2955,2327546308,2317406254,100,100,100,100,8.71,9.54,10.32,10.34
-66944,20,201,20201,195,157,228060583,227540178,195,157,228060583,227540178,5799,2955,2327546308,2317406254,100,100,100,100,3.36,5.31,9.8,9.82
-66945,20,201,20201,1096,499,270458901,267919409,1096,499,270458901,267919409,5799,2955,2327546308,2317406254,100,100,100,100,18.9,16.89,11.62,11.56
-66946,20,201,20201,126,76,134665057,133852090,126,76,134665057,133852090,5799,2955,2327546308,2317406254,100,100,100,100,2.17,2.57,5.79,5.78
-66948,20,029,20029,440,233,240400160,238506591,494,259,299735820,295913259,9533,4659,1859586451,1852726587,89.07,89.96,80.2,80.6,4.62,5,12.93,12.87
-66948,20,157,20157,54,26,59335660,57406668,494,259,299735820,295913259,4980,2877,1865948766,1857981647,10.93,10.04,19.8,19.4,1.08,0.9,3.18,3.09
-66949,20,089,20089,668,374,309354551,309104747,668,374,309354551,309104747,3077,2032,2368181544,2356321996,100,100,100,100,21.71,18.41,13.06,13.12
-66951,20,147,20147,87,33,87978395,87724145,764,389,428484995,427285853,5642,3049,2316903572,2294410181,11.39,8.48,20.53,20.53,1.54,1.08,3.8,3.82
-66951,20,183,20183,677,356,340506600,339561708,764,389,428484995,427285853,3853,2232,2323127772,2319243495,88.61,91.52,79.47,79.47,17.57,15.95,14.66,14.64
-66952,20,089,20089,6,7,10214607,10214607,499,358,626674910,625240758,3077,2032,2368181544,2356321996,1.2,1.96,1.63,1.63,0.19,0.34,0.43,0.43
-66952,20,183,20183,493,351,616460303,615026151,499,358,626674910,625240758,3853,2232,2323127772,2319243495,98.8,98.04,98.37,98.37,12.8,15.73,26.54,26.52
-66953,20,201,20201,703,289,199347749,198796469,703,289,199347749,198796469,5799,2955,2327546308,2317406254,100,100,100,100,12.12,9.78,8.56,8.58
-66955,20,201,20201,114,71,105082567,104804180,114,71,105082567,104804180,5799,2955,2327546308,2317406254,100,100,100,100,1.97,2.4,4.51,4.52
-66956,20,089,20089,1157,675,518776180,514842709,1157,675,518776180,514842709,3077,2032,2368181544,2356321996,100,100,100,100,37.6,33.22,21.91,21.85
-66958,20,201,20201,314,181,213310701,212353769,314,181,213310701,212353769,5799,2955,2327546308,2317406254,100,100,100,100,5.41,6.13,9.16,9.16
-66959,20,157,20157,203,126,137794804,137492023,203,126,137794804,137492023,4980,2877,1865948766,1857981647,100,100,100,100,4.08,4.38,7.38,7.4
-66960,20,157,20157,167,107,151873482,151706749,167,107,151873482,151706749,4980,2877,1865948766,1857981647,100,100,100,100,3.35,3.72,8.14,8.17
-66962,20,027,20027,15,7,32683819,32630799,264,134,133267793,132991135,8535,4042,1697996133,1671322093,5.68,5.22,24.52,24.54,0.18,0.17,1.92,1.95
-66962,20,201,20201,249,127,100583974,100360336,264,134,133267793,132991135,5799,2955,2327546308,2317406254,94.32,94.78,75.48,75.46,4.29,4.3,4.32,4.33
-66963,20,089,20089,135,104,205120216,204668516,135,104,205120216,204668516,3077,2032,2368181544,2356321996,100,100,100,100,4.39,5.12,8.66,8.69
-66964,20,157,20157,204,147,147409172,146223106,204,147,147409172,146223106,4980,2877,1865948766,1857981647,100,100,100,100,4.1,5.11,7.9,7.87
-66966,20,157,20157,624,353,265354126,263529901,624,353,265354126,263529901,4980,2877,1865948766,1857981647,100,100,100,100,12.53,12.27,14.22,14.18
-66967,20,183,20183,2096,1165,652434336,651650032,2096,1165,652434336,651650032,3853,2232,2323127772,2319243495,100,100,100,100,54.4,52.2,28.08,28.1
-66968,20,201,20201,1626,804,333667926,331699014,1626,804,333667926,331699014,5799,2955,2327546308,2317406254,100,100,100,100,28.04,27.21,14.34,14.31
-66970,20,089,20089,97,181,90818579,86790538,97,181,90818579,86790538,3077,2032,2368181544,2356321996,100,100,100,100,3.15,8.91,3.83,3.68
-67001,20,173,20173,1676,527,61388282,61303312,1676,527,61388282,61303312,498365,211593,2613611145,2583543968,100,100,100,100,0.34,0.25,2.35,2.37
-67002,20,015,20015,13764,5076,96002440,95560921,13764,5076,96002440,95560921,65880,26058,3746489690,3703329246,100,100,100,100,20.89,19.48,2.56,2.58
-67003,20,077,20077,2626,1406,644293047,641726796,2626,1406,644293047,641726796,6034,3116,2079189849,2075276375,100,100,100,100,43.52,45.12,30.99,30.92
-67004,20,077,20077,58,21,58932954,58809211,827,397,265269995,265120140,6034,3116,2079189849,2075276375,7.01,5.29,22.22,22.18,0.96,0.67,2.83,2.83
-67004,20,191,20191,769,376,206337041,206310929,827,397,265269995,265120140,24132,10865,3069018619,3061212453,92.99,94.71,77.78,77.82,3.19,3.46,6.72,6.74
-67005,20,035,20035,16535,7456,406731825,400505825,16535,7456,406731825,400505825,36311,16030,2932971018,2915679697,100,100,100,100,45.54,46.51,13.87,13.74
-67008,20,015,20015,117,63,133534371,133359978,556,287,318954688,318578668,65880,26058,3746489690,3703329246,21.04,21.95,41.87,41.86,0.18,0.24,3.56,3.6
-67008,20,035,20035,439,224,185420317,185218690,556,287,318954688,318578668,36311,16030,2932971018,2915679697,78.96,78.05,58.13,58.14,1.21,1.4,6.32,6.35
-67009,20,077,20077,856,413,344534148,344198217,856,413,344534148,344198217,6034,3116,2079189849,2075276375,100,100,100,100,14.19,13.25,16.57,16.59
-67010,20,015,20015,13890,5751,274036997,271482714,13890,5751,274036997,271482714,65880,26058,3746489690,3703329246,100,100,100,100,21.08,22.07,7.31,7.33
-67012,20,015,20015,61,37,25171865,25072269,61,37,25171865,25072269,65880,26058,3746489690,3703329246,100,100,100,100,0.09,0.14,0.67,0.68
-67013,20,191,20191,3145,1325,205110259,203758976,3145,1325,205110259,203758976,24132,10865,3069018619,3061212453,100,100,100,100,13.03,12.2,6.68,6.66
-67016,20,173,20173,530,221,781857,781857,530,221,781857,781857,498365,211593,2613611145,2583543968,100,100,100,100,0.11,0.1,0.03,0.03
-67017,20,015,20015,2109,821,149469253,149469253,2294,886,168155823,168155823,65880,26058,3746489690,3703329246,91.94,92.66,88.89,88.89,3.2,3.15,3.99,4.04
-67017,20,173,20173,185,65,18686570,18686570,2294,886,168155823,168155823,498365,211593,2613611145,2583543968,8.06,7.34,11.11,11.11,0.04,0.03,0.71,0.72
-67018,20,077,20077,144,86,154018769,153833061,149,89,170093072,169907364,6034,3116,2079189849,2075276375,96.64,96.63,90.55,90.54,2.39,2.76,7.41,7.41
-67018,20,191,20191,5,3,16074303,16074303,149,89,170093072,169907364,24132,10865,3069018619,3061212453,3.36,3.37,9.45,9.46,0.02,0.03,0.52,0.53
-67019,20,035,20035,945,442,263264906,262719763,945,442,263264906,262719763,36311,16030,2932971018,2915679697,100,100,100,100,2.6,2.76,8.98,9.01
-67020,20,079,20079,1316,600,211283564,210077269,1689,751,331827581,329121983,34684,14527,1400464714,1397957172,77.92,79.89,63.67,63.83,3.79,4.13,15.09,15.03
-67020,20,155,20155,317,131,96194752,95353268,1689,751,331827581,329121983,64511,28274,3294749809,3251332369,18.77,17.44,28.99,28.97,0.49,0.46,2.92,2.93
-67020,20,173,20173,56,20,24349265,23691446,1689,751,331827581,329121983,498365,211593,2613611145,2583543968,3.32,2.66,7.34,7.2,0.01,0.01,0.93,0.92
-67021,20,151,20151,65,45,100524856,100524856,65,45,100524856,100524856,9656,4514,1905510791,1903757176,100,100,100,100,0.67,1,5.28,5.28
-67022,20,191,20191,1461,922,493571148,493526193,1461,922,493571148,493526193,24132,10865,3069018619,3061212453,100,100,100,100,6.05,8.49,16.08,16.12
-67023,20,035,20035,230,130,372637676,371904372,230,130,372637676,371904372,36311,16030,2932971018,2915679697,100,100,100,100,0.63,0.81,12.71,12.76
-67024,20,019,20019,791,468,371315370,368052331,849,501,572238102,567559648,3669,2150,1669937384,1654693205,93.17,93.41,64.89,64.85,21.56,21.77,22.24,22.24
-67024,20,035,20035,58,33,200922732,199507317,849,501,572238102,567559648,36311,16030,2932971018,2915679697,6.83,6.59,35.11,35.15,0.16,0.21,6.85,6.84
-67025,20,095,20095,629,257,113677593,110309003,3884,1507,302796556,296090379,7858,3818,2244635596,2236099115,16.19,17.05,37.54,37.26,8,6.73,5.06,4.93
-67025,20,155,20155,83,41,5103797,5103797,3884,1507,302796556,296090379,64511,28274,3294749809,3251332369,2.14,2.72,1.69,1.72,0.13,0.15,0.15,0.16
-67025,20,173,20173,3172,1209,184015166,180677579,3884,1507,302796556,296090379,498365,211593,2613611145,2583543968,81.67,80.23,60.77,61.02,0.64,0.57,7.04,6.99
-67026,20,173,20173,4675,1771,186358521,185780428,4845,1838,254819018,253901367,498365,211593,2613611145,2583543968,96.49,96.35,73.13,73.17,0.94,0.84,7.13,7.19
-67026,20,191,20191,170,67,68460497,68120939,4845,1838,254819018,253901367,24132,10865,3069018619,3061212453,3.51,3.65,26.87,26.83,0.7,0.62,2.23,2.23
-67028,20,007,20007,58,41,177843380,177449552,225,152,465333735,464883939,4861,2765,2942655591,2937235546,25.78,26.97,38.22,38.17,1.19,1.48,6.04,6.04
-67028,20,097,20097,24,19,126096599,126041964,225,152,465333735,464883939,2553,1220,1872223561,1871626797,10.67,12.5,27.1,27.11,0.94,1.56,6.74,6.73
-67028,20,151,20151,143,92,161393756,161392423,225,152,465333735,464883939,9656,4514,1905510791,1903757176,63.56,60.53,34.68,34.72,1.48,2.04,8.47,8.48
-67029,20,033,20033,1059,587,991614033,989744295,1063,591,1020526999,1018640605,1891,1044,2045285566,2041681413,99.62,99.32,97.17,97.16,56,56.23,48.48,48.48
-67029,20,097,20097,4,4,28912966,28896310,1063,591,1020526999,1018640605,2553,1220,1872223561,1871626797,0.38,0.68,2.83,2.84,0.16,0.33,1.54,1.54
-67030,20,173,20173,2659,886,105355691,105012448,2659,886,105355691,105012448,498365,211593,2613611145,2583543968,100,100,100,100,0.53,0.42,4.03,4.06
-67031,20,173,20173,13,6,7811159,7811159,2308,858,289563588,289541027,498365,211593,2613611145,2583543968,0.56,0.7,2.7,2.7,0,0,0.3,0.3
-67031,20,191,20191,2295,852,281752429,281729868,2308,858,289563588,289541027,24132,10865,3069018619,3061212453,99.44,99.3,97.3,97.3,9.51,7.84,9.18,9.2
-67035,20,095,20095,833,408,382133447,381659183,970,482,590401713,589812253,7858,3818,2244635596,2236099115,85.88,84.65,64.72,64.71,10.6,10.69,17.02,17.07
-67035,20,151,20151,99,51,151670164,151622171,970,482,590401713,589812253,9656,4514,1905510791,1903757176,10.21,10.58,25.69,25.71,1.03,1.13,7.96,7.96
-67035,20,155,20155,38,23,56598102,56530899,970,482,590401713,589812253,64511,28274,3294749809,3251332369,3.92,4.77,9.59,9.58,0.06,0.08,1.72,1.74
-67036,20,077,20077,151,81,100293541,100293541,151,81,100293541,100293541,6034,3116,2079189849,2075276375,100,100,100,100,2.5,2.6,4.82,4.83
-67037,20,173,20173,26577,10460,147048074,145627673,26577,10460,147048074,145627673,498365,211593,2613611145,2583543968,100,100,100,100,5.33,4.94,5.63,5.64
-67038,20,035,20035,602,276,465514292,464887045,602,276,465514292,464887045,36311,16030,2932971018,2915679697,100,100,100,100,1.66,1.72,15.87,15.94
-67039,20,015,20015,3339,1346,264872584,264419149,3395,1365,272258850,271800545,65880,26058,3746489690,3703329246,98.35,98.61,97.29,97.28,5.07,5.17,7.07,7.14
-67039,20,035,20035,56,19,7386266,7381396,3395,1365,272258850,271800545,36311,16030,2932971018,2915679697,1.65,1.39,2.71,2.72,0.15,0.12,0.25,0.25
-67041,20,015,20015,229,77,730724,730724,229,77,730724,730724,65880,26058,3746489690,3703329246,100,100,100,100,0.35,0.3,0.02,0.02
-67042,20,015,20015,17969,7283,695553660,663620500,17969,7283,695553660,663620500,65880,26058,3746489690,3703329246,100,100,100,100,27.28,27.95,18.57,17.92
-67045,20,073,20073,3644,2034,1151181883,1144516412,3644,2034,1151181883,1144516412,6689,4068,2985288498,2961132699,100,100,100,100,54.48,50,38.56,38.65
-67047,20,049,20049,86,53,136607317,135500189,731,715,426379327,414986334,2882,1760,1684699449,1668637984,11.76,7.41,32.04,32.65,2.98,3.01,8.11,8.12
-67047,20,073,20073,433,472,257667063,247704203,731,715,426379327,414986334,6689,4068,2985288498,2961132699,59.23,66.01,60.43,59.69,6.47,11.6,8.63,8.37
-67047,20,205,20205,212,190,32104947,31781942,731,715,426379327,414986334,9409,4682,1489434416,1477377048,29,26.57,7.53,7.66,2.25,4.06,2.16,2.15
-67049,20,077,20077,74,37,101131636,101131636,79,41,111937296,111937296,6034,3116,2079189849,2075276375,93.67,90.24,90.35,90.35,1.23,1.19,4.86,4.87
-67049,20,191,20191,5,4,10805660,10805660,79,41,111937296,111937296,24132,10865,3069018619,3061212453,6.33,9.76,9.65,9.65,0.02,0.04,0.35,0.35
-67050,20,173,20173,1844,683,117073086,116567242,1844,683,117073086,116567242,498365,211593,2613611145,2583543968,100,100,100,100,0.37,0.32,4.48,4.51
-67051,20,035,20035,43,22,17477690,17186654,456,224,188233091,187657267,36311,16030,2932971018,2915679697,9.43,9.82,9.29,9.16,0.12,0.14,0.6,0.59
-67051,20,191,20191,413,202,170755401,170470613,456,224,188233091,187657267,24132,10865,3069018619,3061212453,90.57,90.18,90.71,90.84,1.71,1.86,5.56,5.57
-67052,20,173,20173,8325,2924,135782860,134128403,8325,2924,135782860,134128403,498365,211593,2613611145,2583543968,100,100,100,100,1.67,1.38,5.2,5.19
-67053,20,115,20115,539,231,857166,857166,539,231,857166,857166,12660,5946,2470149956,2445700985,100,100,100,100,4.26,3.88,0.03,0.04
-67054,20,097,20097,1167,610,602979984,602749622,1167,610,602979984,602749622,2553,1220,1872223561,1871626797,100,100,100,100,45.71,50,32.21,32.2
-67055,20,173,20173,71,38,2252890,2249995,71,38,2252890,2249995,498365,211593,2613611145,2583543968,100,100,100,100,0.01,0.02,0.09,0.09
-67056,20,079,20079,2935,1268,209959459,209959459,2935,1268,209959459,209959459,34684,14527,1400464714,1397957172,100,100,100,100,8.46,8.73,14.99,15.02
-67057,20,007,20007,241,164,425110458,424293336,241,164,425110458,424293336,4861,2765,2942655591,2937235546,100,100,100,100,4.96,5.93,14.45,14.45
-67058,20,077,20077,2054,1019,497728620,497200841,2093,1052,561167017,560618920,6034,3116,2079189849,2075276375,98.14,96.86,88.7,88.69,34.04,32.7,23.94,23.96
-67058,20,095,20095,39,33,63438397,63418079,2093,1052,561167017,560618920,7858,3818,2244635596,2236099115,1.86,3.14,11.3,11.31,0.5,0.86,2.83,2.84
-67059,20,047,20047,86,45,100565921,100565921,1042,429,731144239,730962793,3037,1636,1610905654,1610697086,8.25,10.49,13.75,13.76,2.83,2.75,6.24,6.24
-67059,20,097,20097,925,369,517604627,517493571,1042,429,731144239,730962793,2553,1220,1872223561,1871626797,88.77,86.01,70.79,70.8,36.23,30.25,27.65,27.65
-67059,20,151,20151,31,15,112973691,112903301,1042,429,731144239,730962793,9656,4514,1905510791,1903757176,2.98,3.5,15.45,15.45,0.32,0.33,5.93,5.93
-67060,20,173,20173,13733,5217,69396039,69253830,13733,5217,69396039,69253830,498365,211593,2613611145,2583543968,100,100,100,100,2.76,2.47,2.66,2.68
-67061,20,007,20007,141,87,200149016,199298288,171,106,297062858,296090586,4861,2765,2942655591,2937235546,82.46,82.08,67.38,67.31,2.9,3.15,6.8,6.79
-67061,20,077,20077,30,19,96913842,96792298,171,106,297062858,296090586,6034,3116,2079189849,2075276375,17.54,17.92,32.62,32.69,0.5,0.61,4.66,4.66
-67062,20,079,20079,4135,1605,68379383,68379383,4156,1614,74556901,74556901,34684,14527,1400464714,1397957172,99.49,99.44,91.71,91.71,11.92,11.05,4.88,4.89
-67062,20,113,20113,21,9,6177518,6177518,4156,1614,74556901,74556901,29180,12721,2332550362,2326520077,0.51,0.56,8.29,8.29,0.07,0.07,0.26,0.27
-67063,20,115,20115,3942,1591,353459505,348545269,3942,1591,353459505,348545269,12660,5946,2470149956,2445700985,100,100,100,100,31.14,26.76,14.31,14.25
-67065,20,007,20007,153,78,101006184,100993234,228,109,198321730,198288795,4861,2765,2942655591,2937235546,67.11,71.56,50.93,50.93,3.15,2.82,3.43,3.44
-67065,20,151,20151,75,31,97315546,97295561,228,109,198321730,198288795,9656,4514,1905510791,1903757176,32.89,28.44,49.07,49.07,0.78,0.69,5.11,5.11
-67066,20,151,20151,302,140,139972235,139940872,302,140,139972235,139940872,9656,4514,1905510791,1903757176,100,100,100,100,3.13,3.1,7.35,7.35
-67067,20,173,20173,1541,599,11809965,11753847,1541,599,11809965,11753847,498365,211593,2613611145,2583543968,100,100,100,100,0.31,0.28,0.45,0.45
-67068,20,095,20095,4301,2072,680067998,677511317,4354,2099,744922942,742216474,7858,3818,2244635596,2236099115,98.78,98.71,91.29,91.28,54.73,54.27,30.3,30.3
-67068,20,155,20155,53,27,64854944,64705157,4354,2099,744922942,742216474,64511,28274,3294749809,3251332369,1.22,1.29,8.71,8.72,0.08,0.1,1.97,1.99
-67070,20,007,20007,1169,651,289644120,289180376,1169,651,289644120,289180376,4861,2765,2942655591,2937235546,100,100,100,100,24.05,23.54,9.84,9.85
-67071,20,007,20007,94,106,538072794,537527735,94,106,538072794,537527735,4861,2765,2942655591,2937235546,100,100,100,100,1.93,3.83,18.29,18.3
-67072,20,015,20015,228,140,279013622,277513585,244,152,310329753,308820545,65880,26058,3746489690,3703329246,93.44,92.11,89.91,89.86,0.35,0.54,7.45,7.49
-67072,20,035,20035,16,12,31316131,31306960,244,152,310329753,308820545,36311,16030,2932971018,2915679697,6.56,7.89,10.09,10.14,0.04,0.07,1.07,1.07
-67073,20,115,20115,309,136,77837177,77727055,309,136,77837177,77727055,12660,5946,2470149956,2445700985,100,100,100,100,2.44,2.29,3.15,3.18
-67074,20,015,20015,1741,735,464769553,463462838,1741,735,464769553,463462838,65880,26058,3746489690,3703329246,100,100,100,100,2.64,2.82,12.41,12.51
-67101,20,173,20173,3604,1361,39351055,38841478,3604,1361,39351055,38841478,498365,211593,2613611145,2583543968,100,100,100,100,0.72,0.64,1.51,1.5
-67103,20,191,20191,326,144,134167684,134167684,326,144,134167684,134167684,24132,10865,3069018619,3061212453,100,100,100,100,1.35,1.33,4.37,4.38
-67104,20,007,20007,2506,1373,770365172,768370603,2506,1373,770365172,768370603,4861,2765,2942655591,2937235546,100,100,100,100,51.55,49.66,26.18,26.16
-67105,20,191,20191,190,110,130663973,130663973,190,110,130663973,130663973,24132,10865,3069018619,3061212453,100,100,100,100,0.79,1.01,4.26,4.27
-67106,20,173,20173,60,25,57965533,57965533,388,167,129205649,129205649,498365,211593,2613611145,2583543968,15.46,14.97,44.86,44.86,0.01,0.01,2.22,2.24
-67106,20,191,20191,328,142,71240116,71240116,388,167,129205649,129205649,24132,10865,3069018619,3061212453,84.54,85.03,55.14,55.14,1.36,1.31,2.32,2.33
-67107,20,079,20079,300,121,88295150,88295150,2979,1322,297373917,297214382,34684,14527,1400464714,1397957172,10.07,9.15,29.69,29.71,0.86,0.83,6.3,6.32
-67107,20,113,20113,2679,1201,209078767,208919232,2979,1322,297373917,297214382,29180,12721,2332550362,2326520077,89.93,90.85,70.31,70.29,9.18,9.44,8.96,8.98
-67108,20,155,20155,470,163,67231003,60107539,1696,663,185935782,177228359,64511,28274,3294749809,3251332369,27.71,24.59,36.16,33.92,0.73,0.58,2.04,1.85
-67108,20,173,20173,1226,500,118704779,117120820,1696,663,185935782,177228359,498365,211593,2613611145,2583543968,72.29,75.41,63.84,66.08,0.25,0.24,4.54,4.53
-67109,20,097,20097,418,204,505538436,505490836,418,204,505538436,505490836,2553,1220,1872223561,1871626797,100,100,100,100,16.37,16.72,27,27.01
-67110,20,035,20035,46,20,4656972,4656972,8415,3303,138222220,136546279,36311,16030,2932971018,2915679697,0.55,0.61,3.37,3.41,0.13,0.12,0.16,0.16
-67110,20,173,20173,5988,2247,57860787,57311113,8415,3303,138222220,136546279,498365,211593,2613611145,2583543968,71.16,68.03,41.86,41.97,1.2,1.06,2.21,2.22
-67110,20,191,20191,2381,1036,75704461,74578194,8415,3303,138222220,136546279,24132,10865,3069018619,3061212453,28.29,31.37,54.77,54.62,9.87,9.54,2.47,2.44
-67111,20,095,20095,352,162,152336767,151253656,352,162,152336767,151253656,7858,3818,2244635596,2236099115,100,100,100,100,4.48,4.24,6.79,6.76
-67112,20,095,20095,227,143,159743059,159675384,227,143,159743059,159675384,7858,3818,2244635596,2236099115,100,100,100,100,2.89,3.75,7.12,7.14
-67114,20,015,20015,194,72,76949599,76792957,21852,9295,616667211,615281152,65880,26058,3746489690,3703329246,0.89,0.77,12.48,12.48,0.29,0.28,2.05,2.07
-67114,20,079,20079,21177,9030,442609985,441446698,21852,9295,616667211,615281152,34684,14527,1400464714,1397957172,96.91,97.15,71.77,71.75,61.06,62.16,31.6,31.58
-67114,20,113,20113,32,13,8130820,8130820,21852,9295,616667211,615281152,29180,12721,2332550362,2326520077,0.15,0.14,1.32,1.32,0.11,0.1,0.35,0.35
-67114,20,115,20115,449,180,88976807,88910677,21852,9295,616667211,615281152,12660,5946,2470149956,2445700985,2.05,1.94,14.43,14.45,3.55,3.03,3.6,3.64
-67117,20,079,20079,1769,746,2628082,2619955,1769,746,2628082,2619955,34684,14527,1400464714,1397957172,100,100,100,100,5.1,5.14,0.19,0.19
-67118,20,095,20095,773,339,189574776,188880773,810,351,206309576,205615573,7858,3818,2244635596,2236099115,95.43,96.58,91.89,91.86,9.84,8.88,8.45,8.45
-67118,20,173,20173,20,6,12587161,12587161,810,351,206309576,205615573,498365,211593,2613611145,2583543968,2.47,1.71,6.1,6.12,0,0,0.48,0.49
-67118,20,191,20191,17,6,4147639,4147639,810,351,206309576,205615573,24132,10865,3069018619,3061212453,2.1,1.71,2.01,2.02,0.07,0.06,0.14,0.14
-67119,20,035,20035,125,54,51668834,49885105,1457,656,210697402,207475927,36311,16030,2932971018,2915679697,8.58,8.23,24.52,24.04,0.34,0.34,1.76,1.71
-67119,20,191,20191,1332,602,159028568,157590822,1457,656,210697402,207475927,24132,10865,3069018619,3061212453,91.42,91.77,75.48,75.96,5.52,5.54,5.18,5.15
-67120,20,173,20173,547,216,40075535,40006077,1358,554,106057743,105207886,498365,211593,2613611145,2583543968,40.28,38.99,37.79,38.03,0.11,0.1,1.53,1.55
-67120,20,191,20191,811,338,65982208,65201809,1358,554,106057743,105207886,24132,10865,3069018619,3061212453,59.72,61.01,62.21,61.97,3.36,3.11,2.15,2.13
-67122,20,049,20049,62,47,123236661,121788399,221,153,319438609,317333845,2882,1760,1684699449,1668637984,28.05,30.72,38.58,38.38,2.15,2.67,7.32,7.3
-67122,20,073,20073,159,106,196201948,195545446,221,153,319438609,317333845,6689,4068,2985288498,2961132699,71.95,69.28,61.42,61.62,2.38,2.61,6.57,6.6
-67123,20,015,20015,741,317,134630583,134105144,741,317,134630583,134105144,65880,26058,3746489690,3703329246,100,100,100,100,1.12,1.22,3.59,3.62
-67124,20,151,20151,8203,3796,713051351,711717099,8203,3796,713051351,711717099,9656,4514,1905510791,1903757176,100,100,100,100,84.95,84.09,37.42,37.38
-67127,20,025,20025,20,10,63511444,63428589,701,369,512897150,511571298,2215,1135,2530891140,2524286181,2.85,2.71,12.38,12.4,0.9,0.88,2.51,2.51
-67127,20,033,20033,681,359,449385706,448142709,701,369,512897150,511571298,1891,1044,2045285566,2041681413,97.15,97.29,87.62,87.6,36.01,34.39,21.97,21.95
-67131,20,035,20035,258,108,92437206,92042010,258,108,92437206,92042010,36311,16030,2932971018,2915679697,100,100,100,100,0.71,0.67,3.15,3.16
-67132,20,015,20015,410,155,226239054,224881596,410,155,226239054,224881596,65880,26058,3746489690,3703329246,100,100,100,100,0.62,0.59,6.04,6.07
-67133,20,015,20015,6379,2309,109287724,109267385,6379,2309,109287724,109267385,65880,26058,3746489690,3703329246,100,100,100,100,9.68,8.86,2.92,2.95
-67134,20,007,20007,44,22,78838338,78760955,420,178,214928885,214798896,4861,2765,2942655591,2937235546,10.48,12.36,36.68,36.67,0.91,0.8,2.68,2.68
-67134,20,151,20151,376,156,136090547,136037941,420,178,214928885,214798896,9656,4514,1905510791,1903757176,89.52,87.64,63.32,63.33,3.89,3.46,7.14,7.15
-67135,20,079,20079,2100,787,147253620,147200307,3493,1350,267730143,267365264,34684,14527,1400464714,1397957172,60.12,58.3,55,55.06,6.05,5.42,10.51,10.53
-67135,20,173,20173,1393,563,120476523,120164957,3493,1350,267730143,267365264,498365,211593,2613611145,2583543968,39.88,41.7,45,44.94,0.28,0.27,4.61,4.65
-67137,20,049,20049,50,35,76225401,75606342,634,411,238149808,236862046,2882,1760,1684699449,1668637984,7.89,8.52,32.01,31.92,1.73,1.99,4.52,4.53
-67137,20,073,20073,584,376,161924407,161255704,634,411,238149808,236862046,6689,4068,2985288498,2961132699,92.11,91.48,67.99,68.08,8.73,9.24,5.42,5.45
-67138,20,007,20007,397,194,259823148,259639955,397,194,259823148,259639955,4861,2765,2942655591,2937235546,100,100,100,100,8.17,7.02,8.83,8.84
-67140,20,191,20191,802,382,349022285,349022285,802,382,349022285,349022285,24132,10865,3069018619,3061212453,100,100,100,100,3.32,3.52,11.37,11.4
-67142,20,095,20095,445,270,318463588,318239707,445,270,318463588,318239707,7858,3818,2244635596,2236099115,100,100,100,100,5.66,7.07,14.19,14.23
-67143,20,007,20007,58,49,101802981,101721512,58,49,101802981,101721512,4861,2765,2942655591,2937235546,100,100,100,100,1.19,1.77,3.46,3.46
-67144,20,015,20015,2716,1055,116786947,116746204,2716,1055,116786947,116746204,65880,26058,3746489690,3703329246,100,100,100,100,4.12,4.05,3.12,3.15
-67146,20,035,20035,1689,735,178153903,177668891,1830,794,206590215,205410557,36311,16030,2932971018,2915679697,92.3,92.57,86.24,86.49,4.65,4.59,6.07,6.09
-67146,20,191,20191,141,59,28436312,27741666,1830,794,206590215,205410557,24132,10865,3069018619,3061212453,7.7,7.43,13.76,13.51,0.58,0.54,0.93,0.91
-67147,20,079,20079,82,30,19030153,19030153,9908,3739,274330799,272705152,34684,14527,1400464714,1397957172,0.83,0.8,6.94,6.98,0.24,0.21,1.36,1.36
-67147,20,173,20173,9826,3709,255300646,253674999,9908,3739,274330799,272705152,498365,211593,2613611145,2583543968,99.17,99.2,93.06,93.02,1.97,1.75,9.77,9.82
-67149,20,173,20173,988,392,144930407,144144469,988,392,144930407,144144469,498365,211593,2613611145,2583543968,100,100,100,100,0.2,0.19,5.55,5.58
-67150,20,077,20077,12,17,10566198,10566198,12,17,10566198,10566198,6034,3116,2079189849,2075276375,100,100,100,100,0.2,0.55,0.51,0.51
-67151,20,079,20079,457,193,68500284,68470257,479,204,78736630,78689128,34684,14527,1400464714,1397957172,95.41,94.61,87,87.01,1.32,1.33,4.89,4.9
-67151,20,115,20115,22,11,10236346,10218871,479,204,78736630,78689128,12660,5946,2470149956,2445700985,4.59,5.39,13,12.99,0.17,0.18,0.41,0.42
-67152,20,191,20191,9541,4295,597758635,596060784,9541,4295,597758635,596060784,24132,10865,3069018619,3061212453,100,100,100,100,39.54,39.53,19.48,19.47
-67154,20,015,20015,1285,469,138523617,138436387,1510,546,204763683,204676453,65880,26058,3746489690,3703329246,85.1,85.9,67.65,67.64,1.95,1.8,3.7,3.74
-67154,20,079,20079,225,77,66240066,66240066,1510,546,204763683,204676453,34684,14527,1400464714,1397957172,14.9,14.1,32.35,32.36,0.65,0.53,4.73,4.74
-67155,20,033,20033,151,98,604285827,603794409,166,112,695376776,694748903,1891,1044,2045285566,2041681413,90.96,87.5,86.9,86.91,7.99,9.39,29.55,29.57
-67155,20,097,20097,15,14,91090949,90954494,166,112,695376776,694748903,2553,1220,1872223561,1871626797,9.04,12.5,13.1,13.09,0.59,1.15,4.87,4.86
-67156,20,035,20035,15269,6499,655382268,650808697,15269,6499,655382268,650808697,36311,16030,2932971018,2915679697,100,100,100,100,42.05,40.54,22.35,22.32
-67159,20,077,20077,29,17,70777094,70724576,169,106,211288760,211188284,6034,3116,2079189849,2075276375,17.16,16.04,33.5,33.49,0.48,0.55,3.4,3.41
-67159,20,095,20095,140,89,140511666,140463708,169,106,211288760,211188284,7858,3818,2244635596,2236099115,82.84,83.96,66.5,66.51,1.78,2.33,6.26,6.28
-67202,20,173,20173,1393,949,2697316,2562503,1393,949,2697316,2562503,498365,211593,2613611145,2583543968,100,100,100,100,0.28,0.45,0.1,0.1
-67203,20,173,20173,31287,14847,19352398,18373313,31287,14847,19352398,18373313,498365,211593,2613611145,2583543968,100,100,100,100,6.28,7.02,0.74,0.71
-67204,20,173,20173,21194,8599,43046887,41714086,21194,8599,43046887,41714086,498365,211593,2613611145,2583543968,100,100,100,100,4.25,4.06,1.65,1.61
-67205,20,173,20173,16811,5909,49998587,45708453,16811,5909,49998587,45708453,498365,211593,2613611145,2583543968,100,100,100,100,3.37,2.79,1.91,1.77
-67206,20,173,20173,15186,7237,26949372,26613915,15186,7237,26949372,26613915,498365,211593,2613611145,2583543968,100,100,100,100,3.05,3.42,1.03,1.03
-67207,20,173,20173,26978,12386,26159180,26025960,26978,12386,26159180,26025960,498365,211593,2613611145,2583543968,100,100,100,100,5.41,5.85,1,1.01
-67208,20,173,20173,18161,8239,12942317,12916600,18161,8239,12942317,12916600,498365,211593,2613611145,2583543968,100,100,100,100,3.64,3.89,0.5,0.5
-67209,20,173,20173,13654,5438,33383817,32269434,13654,5438,33383817,32269434,498365,211593,2613611145,2583543968,100,100,100,100,2.74,2.57,1.28,1.25
-67210,20,173,20173,10339,3797,35236908,35120524,10339,3797,35236908,35120524,498365,211593,2613611145,2583543968,100,100,100,100,2.07,1.79,1.35,1.36
-67211,20,173,20173,20644,9790,13305171,13305171,20644,9790,13305171,13305171,498365,211593,2613611145,2583543968,100,100,100,100,4.14,4.63,0.51,0.51
-67212,20,173,20173,44707,19428,34246722,32871644,44707,19428,34246722,32871644,498365,211593,2613611145,2583543968,100,100,100,100,8.97,9.18,1.31,1.27
-67213,20,173,20173,21368,9976,17079725,16789151,21368,9976,17079725,16789151,498365,211593,2613611145,2583543968,100,100,100,100,4.29,4.71,0.65,0.65
-67214,20,173,20173,16542,7980,14177214,14175159,16542,7980,14177214,14175159,498365,211593,2613611145,2583543968,100,100,100,100,3.32,3.77,0.54,0.55
-67215,20,173,20173,5708,2015,43697078,42969796,5708,2015,43697078,42969796,498365,211593,2613611145,2583543968,100,100,100,100,1.15,0.95,1.67,1.66
-67216,20,173,20173,24041,9936,33726210,31767750,24041,9936,33726210,31767750,498365,211593,2613611145,2583543968,100,100,100,100,4.82,4.7,1.29,1.23
-67217,20,173,20173,30186,12661,39055328,37946002,30186,12661,39055328,37946002,498365,211593,2613611145,2583543968,100,100,100,100,6.06,5.98,1.49,1.47
-67218,20,173,20173,22772,11451,12942649,12942649,22772,11451,12942649,12942649,498365,211593,2613611145,2583543968,100,100,100,100,4.57,5.41,0.5,0.5
-67219,20,173,20173,12121,4629,37992583,37562620,12121,4629,37992583,37562620,498365,211593,2613611145,2583543968,100,100,100,100,2.43,2.19,1.45,1.45
-67220,20,173,20173,14214,5990,19231823,19038910,14214,5990,19231823,19038910,498365,211593,2613611145,2583543968,100,100,100,100,2.85,2.83,0.74,0.74
-67223,20,173,20173,513,180,9646835,9596532,513,180,9646835,9596532,498365,211593,2613611145,2583543968,100,100,100,100,0.1,0.09,0.37,0.37
-67226,20,173,20173,17757,7960,70133866,69775961,17757,7960,70133866,69775961,498365,211593,2613611145,2583543968,100,100,100,100,3.56,3.76,2.68,2.7
-67227,20,173,20173,344,131,14218215,14218215,344,131,14218215,14218215,498365,211593,2613611145,2583543968,100,100,100,100,0.07,0.06,0.54,0.55
-67228,20,173,20173,2033,656,20598738,20569998,2033,656,20598738,20569998,498365,211593,2613611145,2583543968,100,100,100,100,0.41,0.31,0.79,0.8
-67230,20,173,20173,9959,3551,26110306,25560541,9959,3551,26110306,25560541,498365,211593,2613611145,2583543968,100,100,100,100,2,1.68,1,0.99
-67232,20,173,20173,298,156,9047175,8951839,298,156,9047175,8951839,498365,211593,2613611145,2583543968,100,100,100,100,0.06,0.07,0.35,0.35
-67235,20,173,20173,11446,4057,28735793,28517765,11446,4057,28735793,28517765,498365,211593,2613611145,2583543968,100,100,100,100,2.3,1.92,1.1,1.1
-67260,20,173,20173,0,0,537081,537081,0,0,537081,537081,498365,211593,2613611145,2583543968,0,0,100,100,0,0,0.02,0.02
-67301,20,125,20125,13556,6192,553663641,543039335,13556,6192,553663641,543039335,35471,16578,1687330028,1666728264,100,100,100,100,38.22,37.35,32.81,32.58
-67330,20,099,20099,1535,631,154730598,153513061,1535,631,154730598,153513061,21607,10092,1691566909,1671305414,100,100,100,100,7.1,6.25,9.15,9.19
-67332,20,099,20099,207,94,59298964,58578884,207,94,59298964,58578884,21607,10092,1691566909,1671305414,100,100,100,100,0.96,0.93,3.51,3.5
-67333,20,125,20125,3089,1396,133559518,132457831,3089,1396,133559518,132457831,35471,16578,1687330028,1666728264,100,100,100,100,8.71,8.42,7.92,7.95
-67334,20,019,20019,104,70,1057773,1057055,104,70,1057773,1057055,3669,2150,1669937384,1654693205,100,100,100,100,2.83,3.26,0.06,0.06
-67335,20,099,20099,437,185,132246270,128174942,3671,1641,338779655,334440055,21607,10092,1691566909,1671305414,11.9,11.27,39.04,38.33,2.02,1.83,7.82,7.67
-67335,20,125,20125,3234,1456,206533385,206265113,3671,1641,338779655,334440055,35471,16578,1687330028,1666728264,88.1,88.73,60.96,61.67,9.12,8.78,12.24,12.38
-67336,20,021,20021,190,85,136909188,135009796,1683,885,247916138,244974168,21603,9890,1530742434,1521793550,11.29,9.6,55.22,55.11,0.88,0.86,8.94,8.87
-67336,20,099,20099,1493,800,111006950,109964372,1683,885,247916138,244974168,21607,10092,1691566909,1671305414,88.71,90.4,44.78,44.89,6.91,7.93,6.56,6.58
-67337,20,099,20099,304,152,105596650,105435545,13493,6471,373548453,373031919,21607,10092,1691566909,1671305414,2.25,2.35,28.27,28.26,1.41,1.51,6.24,6.31
-67337,20,125,20125,13189,6319,267951803,267596374,13493,6471,373548453,373031919,35471,16578,1687330028,1666728264,97.75,97.65,71.73,71.74,37.18,38.12,15.88,16.06
-67340,20,125,20125,355,182,2060589,2060589,355,182,2060589,2060589,35471,16578,1687330028,1666728264,100,100,100,100,1,1.1,0.12,0.12
-67341,20,099,20099,373,143,58153693,57295857,373,143,58153693,57295857,21607,10092,1691566909,1671305414,100,100,100,100,1.73,1.42,3.44,3.43
-67342,20,099,20099,969,452,188746950,187592065,969,452,188746950,187592065,21607,10092,1691566909,1671305414,100,100,100,100,4.48,4.48,11.16,11.22
-67344,20,019,20019,122,77,142958167,142029854,877,460,455334866,447387395,3669,2150,1669937384,1654693205,13.91,16.74,31.4,31.75,3.33,3.58,8.56,8.58
-67344,20,049,20049,28,17,65209757,64778276,877,460,455334866,447387395,2882,1760,1684699449,1668637984,3.19,3.7,14.32,14.48,0.97,0.97,3.87,3.88
-67344,20,125,20125,727,366,247166942,240579265,877,460,455334866,447387395,35471,16578,1687330028,1666728264,82.9,79.57,54.28,53.77,2.05,2.21,14.65,14.43
-67345,20,049,20049,161,114,114269011,113076023,161,114,114269011,113076023,2882,1760,1684699449,1668637984,100,100,100,100,5.59,6.48,6.78,6.78
-67346,20,019,20019,57,33,128202074,127028006,372,228,301449569,298684085,3669,2150,1669937384,1654693205,15.32,14.47,42.53,42.53,1.55,1.53,7.68,7.68
-67346,20,049,20049,315,195,173247495,171656079,372,228,301449569,298684085,2882,1760,1684699449,1668637984,84.68,85.53,57.47,57.47,10.93,11.08,10.28,10.29
-67347,20,019,20019,74,38,62290670,61697975,431,242,151919169,150196511,3669,2150,1669937384,1654693205,17.17,15.7,41,41.08,2.02,1.77,3.73,3.73
-67347,20,125,20125,357,204,89628499,88498536,431,242,151919169,150196511,35471,16578,1687330028,1666728264,82.83,84.3,59,58.92,1.01,1.23,5.31,5.31
-67349,20,049,20049,1034,644,609369880,603495391,1034,644,609369880,603495391,2882,1760,1684699449,1668637984,100,100,100,100,35.88,36.59,36.17,36.17
-67351,20,099,20099,22,12,14922261,14922261,391,199,110758642,110573072,21607,10092,1691566909,1671305414,5.63,6.03,13.47,13.5,0.1,0.12,0.88,0.89
-67351,20,125,20125,369,187,95836381,95650811,391,199,110758642,110573072,35471,16578,1687330028,1666728264,94.37,93.97,86.53,86.5,1.04,1.13,5.68,5.74
-67352,20,019,20019,9,17,62256687,60969777,593,335,279035777,275892755,3669,2150,1669937384,1654693205,1.52,5.07,22.31,22.1,0.25,0.79,3.73,3.68
-67352,20,049,20049,584,318,216779090,214922978,593,335,279035777,275892755,2882,1760,1684699449,1668637984,98.48,94.93,77.69,77.9,20.26,18.07,12.87,12.88
-67353,20,019,20019,49,27,86704729,85582796,582,353,213377404,210705035,3669,2150,1669937384,1654693205,8.42,7.65,40.63,40.62,1.34,1.26,5.19,5.17
-67353,20,049,20049,533,326,126672675,125122239,582,353,213377404,210705035,2882,1760,1684699449,1668637984,91.58,92.35,59.37,59.38,18.49,18.52,7.52,7.5
-67354,20,099,20099,825,367,145849585,145692186,825,367,145849585,145692186,21607,10092,1691566909,1671305414,100,100,100,100,3.82,3.64,8.62,8.72
-67355,20,019,20019,213,111,62396801,61965060,213,111,62396801,61965060,3669,2150,1669937384,1654693205,100,100,100,100,5.81,5.16,3.74,3.74
-67356,20,021,20021,65,27,10562182,10432704,2834,1341,307082630,301405785,21603,9890,1530742434,1521793550,2.29,2.01,3.44,3.46,0.3,0.27,0.69,0.69
-67356,20,099,20099,2769,1314,296520448,290973081,2834,1341,307082630,301405785,21607,10092,1691566909,1671305414,97.71,97.99,96.56,96.54,12.82,13.02,17.53,17.41
-67357,20,099,20099,12527,5882,328387451,324074322,13006,6126,466940438,458615831,21607,10092,1691566909,1671305414,96.32,96.02,70.33,70.66,57.98,58.28,19.41,19.39
-67357,20,133,20133,479,244,138552987,134541509,13006,6126,466940438,458615831,16512,7513,1496480642,1480106485,3.68,3.98,29.67,29.34,2.9,3.25,9.26,9.09
-67360,20,019,20019,409,247,126408155,125467061,409,247,126408155,125467061,3669,2150,1669937384,1654693205,100,100,100,100,11.15,11.49,7.57,7.58
-67361,20,019,20019,1841,1062,626346958,620843290,1841,1062,626346958,620843290,3669,2150,1669937384,1654693205,100,100,100,100,50.18,49.4,37.51,37.52
-67363,20,125,20125,78,47,5656894,5639977,78,47,5656894,5639977,35471,16578,1687330028,1666728264,100,100,100,100,0.22,0.28,0.34,0.34
-67364,20,125,20125,311,141,12230655,12191650,311,141,12230655,12191650,35471,16578,1687330028,1666728264,100,100,100,100,0.88,0.85,0.72,0.73
-67401,20,143,20143,101,37,4620852,4616200,51499,22326,623014471,621620301,6091,2779,1868250811,1866689468,0.2,0.17,0.74,0.74,1.66,1.33,0.25,0.25
-67401,20,169,20169,51398,22289,618393619,617004101,51499,22326,623014471,621620301,55606,24101,1868183470,1865373525,99.8,99.83,99.26,99.26,92.43,92.48,33.1,33.08
-67410,20,027,20027,13,14,4467216,4413764,10141,4615,835793169,832253444,8535,4042,1697996133,1671322093,0.13,0.3,0.53,0.53,0.15,0.35,0.26,0.26
-67410,20,041,20041,10128,4601,831325953,827839680,10141,4615,835793169,832253444,19754,8972,2206541066,2193906542,99.87,99.7,99.47,99.47,51.27,51.28,37.68,37.73
-67416,20,169,20169,1146,476,160513694,160405490,1146,476,160513694,160405490,55606,24101,1868183470,1865373525,100,100,100,100,2.06,1.98,8.59,8.6
-67417,20,029,20029,179,93,177949506,177927640,179,93,177949506,177927640,9533,4659,1859586451,1852726587,100,100,100,100,1.88,2,9.57,9.6
-67418,20,105,20105,221,147,278781058,278289149,246,158,346757348,346228385,3241,1864,1865974970,1863226611,89.84,93.04,80.4,80.38,6.82,7.89,14.94,14.94
-67418,20,123,20123,25,11,67976290,67939236,246,158,346757348,346228385,6373,3296,1862612772,1817632788,10.16,6.96,19.6,19.62,0.39,0.33,3.65,3.74
-67420,20,029,20029,23,15,60305642,60305642,4721,2283,1086604069,1085595259,9533,4659,1859586451,1852726587,0.49,0.66,5.55,5.56,0.24,0.32,3.24,3.25
-67420,20,123,20123,4698,2268,1026298427,1025289617,4721,2283,1086604069,1085595259,6373,3296,1862612772,1817632788,99.51,99.34,94.45,94.44,73.72,68.81,55.1,56.41
-67422,20,143,20143,1366,549,170408635,170223908,1366,549,170408635,170223908,6091,2779,1868250811,1866689468,100,100,100,100,22.43,19.76,9.12,9.12
-67423,20,105,20105,316,165,136875538,136542259,316,165,136875538,136542259,3241,1864,1865974970,1863226611,100,100,100,100,9.75,8.85,7.34,7.33
-67425,20,053,20053,143,94,259710420,258905704,689,327,569549942,568210180,6497,3239,1873304777,1854034693,20.75,28.75,45.6,45.57,2.2,2.9,13.86,13.96
-67425,20,169,20169,546,233,309839522,309304476,689,327,569549942,568210180,55606,24101,1868183470,1865373525,79.25,71.25,54.4,54.43,0.98,0.97,16.59,16.58
-67427,20,053,20053,36,16,40108244,40059241,408,216,155076255,155027252,6497,3239,1873304777,1854034693,8.82,7.41,25.86,25.84,0.55,0.49,2.14,2.16
-67427,20,159,20159,372,200,114968011,114968011,408,216,155076255,155027252,10083,4548,1885414874,1880944775,91.18,92.59,74.14,74.16,3.69,4.4,6.1,6.11
-67428,20,113,20113,1414,621,253906810,253476218,1465,636,269515092,269077691,29180,12721,2332550362,2326520077,96.52,97.64,94.21,94.2,4.85,4.88,10.89,10.9
-67428,20,115,20115,51,15,15608282,15601473,1465,636,269515092,269077691,12660,5946,2470149956,2445700985,3.48,2.36,5.79,5.8,0.4,0.25,0.63,0.64
-67430,20,089,20089,50,31,140138456,140047472,611,401,368059489,343848603,3077,2032,2368181544,2356321996,8.18,7.73,38.07,40.73,1.62,1.53,5.92,5.94
-67430,20,123,20123,561,370,227921033,203801131,611,401,368059489,343848603,6373,3296,1862612772,1817632788,91.82,92.27,61.93,59.27,8.8,11.23,12.24,11.21
-67431,20,041,20041,2471,1020,314197566,312457899,2471,1020,314197566,312457899,19754,8972,2206541066,2193906542,100,100,100,100,12.51,11.37,14.24,14.24
-67432,20,027,20027,5953,2860,869770963,865988230,6019,2888,966440631,962657898,8535,4042,1697996133,1671322093,98.9,99.03,90,89.96,69.75,70.76,51.22,51.81
-67432,20,143,20143,58,25,94028707,94028707,6019,2888,966440631,962657898,6091,2779,1868250811,1866689468,0.96,0.87,9.73,9.77,0.95,0.9,5.03,5.04
-67432,20,161,20161,8,3,2640961,2640961,6019,2888,966440631,962657898,71115,28212,1610858558,1579300177,0.13,0.1,0.27,0.27,0.01,0.01,0.16,0.17
-67436,20,029,20029,74,34,70746876,70746876,636,360,318691511,318440820,9533,4659,1859586451,1852726587,11.64,9.44,22.2,22.22,0.78,0.73,3.8,3.82
-67436,20,143,20143,562,326,247944635,247693944,636,360,318691511,318440820,6091,2779,1868250811,1866689468,88.36,90.56,77.8,77.78,9.23,11.73,13.27,13.27
-67437,20,141,20141,1090,601,253172827,252295133,1161,639,356963674,355939821,3858,2206,2316380155,2311573881,93.88,94.05,70.92,70.88,28.25,27.24,10.93,10.91
-67437,20,183,20183,71,38,103790847,103644688,1161,639,356963674,355939821,3853,2232,2323127772,2319243495,6.12,5.95,29.08,29.12,1.84,1.7,4.47,4.47
-67438,20,115,20115,300,152,195724924,195148920,300,152,195724924,195148920,12660,5946,2470149956,2445700985,100,100,100,100,2.37,2.56,7.92,7.98
-67439,20,053,20053,3668,1421,549412532,548005323,3674,1424,553681565,552274356,6497,3239,1873304777,1854034693,99.84,99.79,99.23,99.23,56.46,43.87,29.33,29.56
-67439,20,105,20105,6,3,4269033,4269033,3674,1424,553681565,552274356,3241,1864,1865974970,1863226611,0.16,0.21,0.77,0.77,0.19,0.16,0.23,0.23
-67441,20,041,20041,1115,440,101554530,100532002,1115,440,101554530,100532002,19754,8972,2206541066,2193906542,100,100,100,100,5.64,4.9,4.6,4.58
-67442,20,169,20169,266,116,122125529,122068776,266,116,122125529,122068776,55606,24101,1868183470,1865373525,100,100,100,100,0.48,0.48,6.54,6.54
-67443,20,113,20113,1794,708,218974438,218791246,1794,708,218974438,218791246,29180,12721,2332550362,2326520077,100,100,100,100,6.15,5.57,9.39,9.4
-67444,20,053,20053,142,177,262627732,255392314,527,403,433043503,425546789,6497,3239,1873304777,1854034693,26.94,43.92,60.65,60.02,2.19,5.46,14.02,13.77
-67444,20,159,20159,385,226,170415771,170154475,527,403,433043503,425546789,10083,4548,1885414874,1880944775,73.06,56.08,39.35,39.98,3.82,4.97,9.04,9.05
-67445,20,029,20029,671,376,273226074,273181242,680,385,304633169,304588337,9533,4659,1859586451,1852726587,98.68,97.66,89.69,89.69,7.04,8.07,14.69,14.74
-67445,20,143,20143,9,9,31407095,31407095,680,385,304633169,304588337,6091,2779,1868250811,1866689468,1.32,2.34,10.31,10.31,0.15,0.32,1.68,1.68
-67446,20,089,20089,33,19,52789805,52789805,617,349,318515550,298813909,3077,2032,2368181544,2356321996,5.35,5.44,16.57,17.67,1.07,0.94,2.23,2.24
-67446,20,123,20123,584,330,265725745,246024104,617,349,318515550,298813909,6373,3296,1862612772,1817632788,94.65,94.56,83.43,82.33,9.16,10.01,14.27,13.54
-67447,20,027,20027,243,120,115501425,115172050,320,157,197323261,196934809,8535,4042,1697996133,1671322093,75.94,76.43,58.53,58.48,2.85,2.97,6.8,6.89
-67447,20,161,20161,77,37,81821836,81762759,320,157,197323261,196934809,71115,28212,1610858558,1579300177,24.06,23.57,41.47,41.52,0.11,0.13,5.08,5.18
-67448,20,041,20041,225,97,156428142,155986856,1374,612,579179840,578078081,19754,8972,2206541066,2193906542,16.38,15.85,27.01,26.98,1.14,1.08,7.09,7.11
-67448,20,113,20113,233,115,173669554,173279265,1374,612,579179840,578078081,29180,12721,2332550362,2326520077,16.96,18.79,29.99,29.98,0.8,0.9,7.45,7.45
-67448,20,169,20169,916,400,249082144,248811960,1374,612,579179840,578078081,55606,24101,1868183470,1865373525,66.67,65.36,43.01,43.04,1.65,1.66,13.33,13.34
-67449,20,041,20041,2968,1507,133499676,130826064,3351,1692,400406343,396969084,19754,8972,2206541066,2193906542,88.57,89.07,33.34,32.96,15.02,16.8,6.05,5.96
-67449,20,115,20115,7,3,6933750,6926596,3351,1692,400406343,396969084,12660,5946,2470149956,2445700985,0.21,0.18,1.73,1.74,0.06,0.05,0.28,0.28
-67449,20,127,20127,376,182,259972917,259216424,3351,1692,400406343,396969084,5923,3206,1820474700,1800763909,11.22,10.76,64.93,65.3,6.35,5.68,14.28,14.39
-67450,20,009,20009,9,6,23317628,23290736,555,317,131156789,131045239,27674,12696,2332632278,2319075093,1.62,1.89,17.78,17.77,0.03,0.05,1,1
-67450,20,053,20053,546,311,107839161,107754503,555,317,131156789,131045239,6497,3239,1873304777,1854034693,98.38,98.11,82.22,82.23,8.4,9.6,5.76,5.81
-67451,20,041,20041,948,486,379822149,378063128,948,486,379822149,378063128,19754,8972,2206541066,2193906542,100,100,100,100,4.8,5.42,17.21,17.23
-67452,20,105,20105,73,40,140376474,140276366,201,143,338383606,338173184,3241,1864,1865974970,1863226611,36.32,27.97,41.48,41.48,2.25,2.15,7.52,7.53
-67452,20,123,20123,128,103,198007132,197896818,201,143,338383606,338173184,6373,3296,1862612772,1817632788,63.68,72.03,58.52,58.52,2.01,3.13,10.63,10.89
-67454,20,053,20053,563,303,93697429,92195714,563,303,93697429,92195714,6497,3239,1873304777,1854034693,100,100,100,100,8.67,9.35,5,4.97
-67455,20,105,20105,1980,1085,760060705,759126608,1980,1085,760060705,759126608,3241,1864,1865974970,1863226611,100,100,100,100,61.09,58.21,40.73,40.74
-67456,20,113,20113,4097,1681,260220387,258951306,4736,1937,376442872,375155271,29180,12721,2332550362,2326520077,86.51,86.78,69.13,69.03,14.04,13.21,11.16,11.13
-67456,20,169,20169,639,256,116222485,116203965,4736,1937,376442872,375155271,55606,24101,1868183470,1865373525,13.49,13.22,30.87,30.97,1.15,1.06,6.22,6.23
-67457,20,159,20159,878,374,240266440,240160915,878,374,240266440,240160915,10083,4548,1885414874,1880944775,100,100,100,100,8.71,8.22,12.74,12.77
-67458,20,027,20027,237,116,120827103,120534214,261,127,162468801,162134164,8535,4042,1697996133,1671322093,90.8,91.34,74.37,74.34,2.78,2.87,7.12,7.21
-67458,20,143,20143,24,11,41641698,41599950,261,127,162468801,162134164,6091,2779,1868250811,1866689468,9.2,8.66,25.63,25.66,0.39,0.4,2.23,2.23
-67459,20,053,20053,251,117,183745316,183418119,251,117,183745316,183418119,6497,3239,1873304777,1854034693,100,100,100,100,3.86,3.61,9.81,9.89
-67460,20,113,20113,15168,6788,597516974,595619956,15168,6788,597516974,595619956,29180,12721,2332550362,2326520077,100,100,100,100,51.98,53.36,25.62,25.6
-67464,20,053,20053,165,280,129594222,121893483,1090,710,306305915,297679031,6497,3239,1873304777,1854034693,15.14,39.44,42.31,40.95,2.54,8.64,6.92,6.57
-67464,20,113,20113,925,430,176711693,175785548,1090,710,306305915,297679031,29180,12721,2332550362,2326520077,84.86,60.56,57.69,59.05,3.17,3.38,7.58,7.56
-67466,20,027,20027,26,12,35091788,34909838,774,397,385151009,384820949,8535,4042,1697996133,1671322093,3.36,3.02,9.11,9.07,0.3,0.3,2.07,2.09
-67466,20,029,20029,692,356,233585380,233437270,774,397,385151009,384820949,9533,4659,1859586451,1852726587,89.41,89.67,60.65,60.66,7.26,7.64,12.56,12.6
-67466,20,143,20143,56,29,116473841,116473841,774,397,385151009,384820949,6091,2779,1868250811,1866689468,7.24,7.3,30.24,30.27,0.92,1.04,6.23,6.24
-67467,20,143,20143,2904,1324,694771868,693890508,2904,1324,694771868,693890508,6091,2779,1868250811,1866689468,100,100,100,100,47.68,47.64,37.19,37.17
-67468,20,027,20027,307,138,108574849,107584084,307,138,108574849,107584084,8535,4042,1697996133,1671322093,100,100,100,100,3.6,3.41,6.39,6.44
-67470,20,143,20143,16,9,18492475,18492475,456,225,128369411,128351162,6091,2779,1868250811,1866689468,3.51,4,14.41,14.41,0.26,0.32,0.99,0.99
-67470,20,169,20169,440,216,109876936,109858687,456,225,128369411,128351162,55606,24101,1868183470,1865373525,96.49,96,85.59,85.59,0.79,0.9,5.88,5.89
-67473,20,141,20141,1728,942,687824974,686544649,1728,942,687824974,686544649,3858,2206,2316380155,2311573881,100,100,100,100,44.79,42.7,29.69,29.7
-67474,20,141,20141,173,120,128311429,128115290,224,152,237264841,237029654,3858,2206,2316380155,2311573881,77.23,78.95,54.08,54.05,4.48,5.44,5.54,5.54
-67474,20,183,20183,51,32,108953412,108914364,224,152,237264841,237029654,3853,2232,2323127772,2319243495,22.77,21.05,45.92,45.95,1.32,1.43,4.69,4.7
-67475,20,041,20041,22,14,19125785,19106802,283,133,70726617,70678080,19754,8972,2206541066,2193906542,7.77,10.53,27.04,27.03,0.11,0.16,0.87,0.87
-67475,20,115,20115,261,119,51600832,51571278,283,133,70726617,70678080,12660,5946,2470149956,2445700985,92.23,89.47,72.96,72.97,2.06,2,2.09,2.11
-67478,20,123,20123,89,62,2620249,2620249,89,62,2620249,2620249,6373,3296,1862612772,1817632788,100,100,100,100,1.4,1.88,0.14,0.14
-67480,20,041,20041,1430,604,132888902,132072546,1805,768,423831689,422762642,19754,8972,2206541066,2193906542,79.22,78.65,31.35,31.24,7.24,6.73,6.02,6.02
-67480,20,143,20143,233,101,204998638,204923583,1805,768,423831689,422762642,6091,2779,1868250811,1866689468,12.91,13.15,48.37,48.47,3.83,3.63,10.97,10.98
-67480,20,169,20169,142,63,85944149,85766513,1805,768,423831689,422762642,55606,24101,1868183470,1865373525,7.87,8.2,20.28,20.29,0.26,0.26,4.6,4.6
-67481,20,105,20105,582,389,479329724,478479327,590,421,484106893,482885486,3241,1864,1865974970,1863226611,98.64,92.4,99.01,99.09,17.96,20.87,25.69,25.68
-67481,20,167,20167,8,32,4777169,4406159,590,421,484106893,482885486,6970,3910,2329529476,2295402664,1.36,7.6,0.99,0.91,0.11,0.82,0.21,0.19
-67482,20,041,20041,99,43,254251,254251,99,43,254251,254251,19754,8972,2206541066,2193906542,100,100,100,100,0.5,0.48,0.01,0.01
-67483,20,115,20115,338,173,214808563,214336110,338,173,214808563,214336110,12660,5946,2470149956,2445700985,100,100,100,100,2.67,2.91,8.7,8.76
-67484,20,105,20105,16,11,22135379,22127381,891,422,361783138,361416195,3241,1864,1865974970,1863226611,1.8,2.61,6.12,6.12,0.49,0.59,1.19,1.19
-67484,20,143,20143,762,359,243462367,243339257,891,422,361783138,361416195,6091,2779,1868250811,1866689468,85.52,85.07,67.3,67.33,12.51,12.92,13.03,13.04
-67484,20,169,20169,113,52,96185392,95949557,891,422,361783138,361416195,55606,24101,1868183470,1865373525,12.68,12.32,26.59,26.55,0.2,0.22,5.15,5.14
-67485,20,123,20123,288,152,74063896,74061633,339,180,201909866,201546947,6373,3296,1862612772,1817632788,84.96,84.44,36.68,36.75,4.52,4.61,3.98,4.07
-67485,20,141,20141,51,28,127845970,127485314,339,180,201909866,201546947,3858,2206,2316380155,2311573881,15.04,15.56,63.32,63.25,1.32,1.27,5.52,5.52
-67487,20,027,20027,1356,585,211416418,210785905,1422,609,250976225,250263151,8535,4042,1697996133,1671322093,95.36,96.06,84.24,84.23,15.89,14.47,12.45,12.61
-67487,20,041,20041,44,20,32744013,32675232,1422,609,250976225,250263151,19754,8972,2206541066,2193906542,3.09,3.28,13.05,13.06,0.22,0.22,1.48,1.49
-67487,20,061,20061,22,4,6815794,6802014,1422,609,250976225,250263151,34362,14517,1047611719,996156662,1.55,0.66,2.72,2.72,0.06,0.03,0.65,0.68
-67490,20,053,20053,983,520,246569721,246410292,1055,572,387859157,387677638,6497,3239,1873304777,1854034693,93.18,90.91,63.57,63.56,15.13,16.05,13.16,13.29
-67490,20,105,20105,25,13,22226760,22226760,1055,572,387859157,387677638,3241,1864,1865974970,1863226611,2.37,2.27,5.73,5.73,0.77,0.7,1.19,1.19
-67490,20,167,20167,47,39,119062676,119040586,1055,572,387859157,387677638,6970,3910,2329529476,2295402664,4.45,6.82,30.7,30.71,0.67,1,5.11,5.19
-67491,20,113,20113,330,152,137616166,137551575,399,176,186400497,186313194,29180,12721,2332550362,2326520077,82.71,86.36,73.83,73.83,1.13,1.19,5.9,5.91
-67491,20,159,20159,69,24,48784331,48761619,399,176,186400497,186313194,10083,4548,1885414874,1880944775,17.29,13.64,26.17,26.17,0.68,0.53,2.59,2.59
-67492,20,041,20041,166,80,73914181,73502295,166,80,73914181,73502295,19754,8972,2206541066,2193906542,100,100,100,100,0.84,0.89,3.35,3.35
-67501,20,155,20155,27212,11658,479819165,476889426,27212,11658,479819165,476889426,64511,28274,3294749809,3251332369,100,100,100,100,42.18,41.23,14.56,14.67
-67502,20,155,20155,23719,10534,185493048,185213679,23739,10546,203621029,203341660,64511,28274,3294749809,3251332369,99.92,99.89,91.1,91.08,36.77,37.26,5.63,5.7
-67502,20,159,20159,20,12,18127981,18127981,23739,10546,203621029,203341660,10083,4548,1885414874,1880944775,0.08,0.11,8.9,8.92,0.2,0.26,0.96,0.96
-67505,20,155,20155,2457,1207,7460124,7245167,2457,1207,7460124,7245167,64511,28274,3294749809,3251332369,100,100,100,100,3.81,4.27,0.23,0.22
-67510,20,155,20155,281,131,140170270,140125832,281,131,140170270,140125832,64511,28274,3294749809,3251332369,100,100,100,100,0.44,0.46,4.25,4.31
-67511,20,009,20009,250,124,61100802,61100802,318,171,164683763,164683763,27674,12696,2332632278,2319075093,78.62,72.51,37.1,37.1,0.9,0.98,2.62,2.63
-67511,20,165,20165,68,47,103582961,103582961,318,171,164683763,164683763,3307,1869,1859542289,1858997569,21.38,27.49,62.9,62.9,2.06,2.51,5.57,5.57
-67512,20,159,20159,234,123,91672798,90839757,234,123,91672798,90839757,10083,4548,1885414874,1880944775,100,100,100,100,2.32,2.7,4.86,4.83
-67513,20,165,20165,93,58,147338523,147318661,93,58,147338523,147318661,3307,1869,1859542289,1858997569,100,100,100,100,2.81,3.1,7.92,7.92
-67514,20,155,20155,765,356,225181619,224963555,765,356,225181619,224963555,64511,28274,3294749809,3251332369,100,100,100,100,1.19,1.26,6.83,6.92
-67515,20,135,20135,63,43,88116586,88116586,63,43,88116586,88116586,3107,1740,2784257993,2783590502,100,100,100,100,2.03,2.47,3.16,3.17
-67516,20,135,20135,447,247,439060976,438823219,447,247,439060976,438823219,3107,1740,2784257993,2783590502,100,100,100,100,14.39,14.2,15.77,15.76
-67518,20,101,20101,3,3,14001711,14001711,69,39,376265052,376265052,1750,990,1858751468,1858200248,4.35,7.69,3.72,3.72,0.17,0.3,0.75,0.75
-67518,20,135,20135,66,36,362263341,362263341,69,39,376265052,376265052,3107,1740,2784257993,2783590502,95.65,92.31,96.28,96.28,2.12,2.07,13.01,13.01
-67519,20,047,20047,183,116,172854773,172854773,193,120,184397187,184397187,3037,1636,1610905654,1610697086,94.82,96.67,93.74,93.74,6.03,7.09,10.73,10.73
-67519,20,145,20145,10,4,11542414,11542414,193,120,184397187,184397187,6973,3152,1954523790,1953531750,5.18,3.33,6.26,6.26,0.14,0.13,0.59,0.59
-67520,20,165,20165,415,200,321836058,321820642,415,200,321836058,321820642,3307,1869,1859542289,1858997569,100,100,100,100,12.55,10.7,17.31,17.31
-67521,20,135,20135,145,106,341714868,341633741,155,133,429870496,429760599,3107,1740,2784257993,2783590502,93.55,79.7,79.49,79.49,4.67,6.09,12.27,12.27
-67521,20,195,20195,10,27,88155628,88126858,155,133,429870496,429760599,3001,1682,2330018529,2303736575,6.45,20.3,20.51,20.51,0.33,1.61,3.78,3.83
-67522,20,079,20079,88,31,37123894,37123894,2049,805,160576102,160160437,34684,14527,1400464714,1397957172,4.29,3.85,23.12,23.18,0.25,0.21,2.65,2.66
-67522,20,155,20155,1961,774,123452208,123036543,2049,805,160576102,160160437,64511,28274,3294749809,3251332369,95.71,96.15,76.88,76.82,3.04,2.74,3.75,3.78
-67523,20,083,20083,36,23,126007916,125868902,373,200,386320063,385981282,1916,973,2228195512,2227369168,9.65,11.5,32.62,32.61,1.88,2.36,5.66,5.65
-67523,20,145,20145,337,177,260312147,260112380,373,200,386320063,385981282,6973,3152,1954523790,1953531750,90.35,88.5,67.38,67.39,4.83,5.62,13.32,13.31
-67524,20,159,20159,630,296,138359008,138338290,630,296,138359008,138338290,10083,4548,1885414874,1880944775,100,100,100,100,6.25,6.51,7.34,7.35
-67525,20,009,20009,1103,546,348655366,347069506,1119,551,359132117,357546257,27674,12696,2332632278,2319075093,98.57,99.09,97.08,97.07,3.99,4.3,14.95,14.97
-67525,20,159,20159,16,5,10476751,10476751,1119,551,359132117,357546257,10083,4548,1885414874,1880944775,1.43,0.91,2.92,2.93,0.16,0.11,0.56,0.56
-67526,20,009,20009,2688,1290,313109435,312593897,2759,1325,437804809,436961929,27674,12696,2332632278,2319075093,97.43,97.36,71.52,71.54,9.71,10.16,13.42,13.48
-67526,20,159,20159,35,17,35214816,35184150,2759,1325,437804809,436961929,10083,4548,1885414874,1880944775,1.27,1.28,8.04,8.05,0.35,0.37,1.87,1.87
-67526,20,185,20185,36,18,89480558,89183882,2759,1325,437804809,436961929,4437,2319,2058825177,2051389748,1.3,1.36,20.44,20.41,0.81,0.78,4.35,4.35
-67529,20,145,20145,365,191,282585331,282559194,365,191,282585331,282559194,6973,3152,1954523790,1953531750,100,100,100,100,5.23,6.06,14.46,14.46
-67530,20,009,20009,19608,8660,579714938,577380171,19699,8706,638443275,636070610,27674,12696,2332632278,2319075093,99.54,99.47,90.8,90.77,70.85,68.21,24.85,24.9
-67530,20,185,20185,91,46,58728337,58690439,19699,8706,638443275,636070610,4437,2319,2058825177,2051389748,0.46,0.53,9.2,9.23,2.05,1.98,2.85,2.86
-67543,20,155,20155,2125,879,240211024,239063454,2125,879,240211024,239063454,64511,28274,3294749809,3251332369,100,100,100,100,3.29,3.11,7.29,7.35
-67544,20,009,20009,3216,1625,542468149,533670822,3216,1625,542468149,533670822,27674,12696,2332632278,2319075093,100,100,100,100,11.62,12.8,23.26,23.01
-67545,20,185,20185,215,120,180635110,178865901,215,120,180635110,178865901,4437,2319,2058825177,2051389748,100,100,100,100,4.85,5.17,8.77,8.72
-67546,20,113,20113,2487,1003,290547235,289837393,2597,1048,340841875,340101588,29180,12721,2332550362,2326520077,95.76,95.71,85.24,85.22,8.52,7.88,12.46,12.46
-67546,20,155,20155,9,3,2932998,2932998,2597,1048,340841875,340101588,64511,28274,3294749809,3251332369,0.35,0.29,0.86,0.86,0.01,0.01,0.09,0.09
-67546,20,159,20159,101,42,47361642,47331197,2597,1048,340841875,340101588,10083,4548,1885414874,1880944775,3.89,4.01,13.9,13.92,1,0.92,2.51,2.52
-67547,20,047,20047,1739,977,671912046,671716509,1769,1000,779711284,779496685,3037,1636,1610905654,1610697086,98.3,97.7,86.17,86.17,57.26,59.72,41.71,41.7
-67547,20,083,20083,30,23,107799238,107780176,1769,1000,779711284,779496685,1916,973,2228195512,2227369168,1.7,2.3,13.83,13.83,1.57,2.36,4.84,4.84
-67548,20,165,20165,1467,801,292097079,292031748,1467,801,292097079,292031748,3307,1869,1859542289,1858997569,100,100,100,100,44.36,42.86,15.71,15.71
-67550,20,145,20145,5864,2561,808423227,807997433,5905,2586,818676770,818250976,6973,3152,1954523790,1953531750,99.31,99.03,98.75,98.75,84.1,81.25,41.36,41.36
-67550,20,185,20185,41,25,10253543,10253543,5905,2586,818676770,818250976,4437,2319,2058825177,2051389748,0.69,0.97,1.25,1.25,0.92,1.08,0.5,0.5
-67552,20,047,20047,720,354,497445970,497445970,720,354,497445970,497445970,3037,1636,1610905654,1610697086,100,100,100,100,23.71,21.64,30.88,30.88
-67553,20,165,20165,114,65,23237001,23229570,114,65,23237001,23229570,3307,1869,1859542289,1858997569,100,100,100,100,3.45,3.48,1.25,1.25
-67554,20,159,20159,4334,1992,471490307,471219845,4334,1992,471490307,471219845,10083,4548,1885414874,1880944775,100,100,100,100,42.98,43.8,25.01,25.05
-67556,20,051,20051,17,11,54654593,54624823,320,211,460504188,460196131,28452,12872,2331959554,2330762469,5.31,5.21,11.87,11.87,0.06,0.09,2.34,2.34
-67556,20,135,20135,22,19,118785544,118785544,320,211,460504188,460196131,3107,1740,2784257993,2783590502,6.88,9,25.79,25.81,0.71,1.09,4.27,4.27
-67556,20,165,20165,281,181,287064051,286785764,320,211,460504188,460196131,3307,1869,1859542289,1858997569,87.81,85.78,62.34,62.32,8.5,9.68,15.44,15.43
-67557,20,047,20047,20,10,23787741,23774710,723,323,354483974,354408998,3037,1636,1610905654,1610697086,2.77,3.1,6.71,6.71,0.66,0.61,1.48,1.48
-67557,20,145,20145,34,18,77510117,77448172,723,323,354483974,354408998,6973,3152,1954523790,1953531750,4.7,5.57,21.87,21.85,0.49,0.57,3.97,3.96
-67557,20,151,20151,16,13,37219651,37219651,723,323,354483974,354408998,9656,4514,1905510791,1903757176,2.21,4.02,10.5,10.5,0.17,0.29,1.95,1.96
-67557,20,185,20185,653,282,215966465,215966465,723,323,354483974,354408998,4437,2319,2058825177,2051389748,90.32,87.31,60.92,60.94,14.72,12.16,10.49,10.53
-67559,20,145,20145,8,6,57357829,57326915,52,42,205050914,204984957,6973,3152,1954523790,1953531750,15.38,14.29,27.97,27.97,0.11,0.19,2.93,2.93
-67559,20,165,20165,44,36,147693085,147658042,52,42,205050914,204984957,3307,1869,1859542289,1858997569,84.62,85.71,72.03,72.03,1.33,1.93,7.94,7.94
-67560,20,135,20135,1740,898,860369511,860135708,1740,898,860369511,860135708,3107,1740,2784257993,2783590502,100,100,100,100,56,51.61,30.9,30.9
-67561,20,155,20155,1538,671,170058248,168422147,1538,671,170058248,168422147,64511,28274,3294749809,3251332369,100,100,100,100,2.38,2.37,5.16,5.18
-67563,20,047,20047,289,134,144339203,144339203,371,178,270115672,270115672,3037,1636,1610905654,1610697086,77.9,75.28,53.44,53.44,9.52,8.19,8.96,8.96
-67563,20,057,20057,67,38,105031889,105031889,371,178,270115672,270115672,33848,12005,2846605610,2844508251,18.06,21.35,38.88,38.88,0.2,0.32,3.69,3.69
-67563,20,083,20083,15,6,20744580,20744580,371,178,270115672,270115672,1916,973,2228195512,2227369168,4.04,3.37,7.68,7.68,0.78,0.62,0.93,0.93
-67564,20,009,20009,308,167,208651063,208525839,308,167,208651063,208525839,27674,12696,2332632278,2319075093,100,100,100,100,1.11,1.32,8.94,8.99
-67565,20,009,20009,81,55,103379595,103296668,429,256,241999575,241825753,27674,12696,2332632278,2319075093,18.88,21.48,42.72,42.72,0.29,0.43,4.43,4.45
-67565,20,165,20165,348,201,138619980,138529085,429,256,241999575,241825753,3307,1869,1859542289,1858997569,81.12,78.52,57.28,57.28,10.52,10.75,7.45,7.45
-67566,20,155,20155,650,245,153771360,153624437,650,245,153771360,153624437,64511,28274,3294749809,3251332369,100,100,100,100,1.01,0.87,4.67,4.72
-67567,20,009,20009,373,199,98973164,98927775,526,273,244523400,244451095,27674,12696,2332632278,2319075093,70.91,72.89,40.48,40.47,1.35,1.57,4.24,4.27
-67567,20,145,20145,89,45,104440529,104413613,526,273,244523400,244451095,6973,3152,1954523790,1953531750,16.92,16.48,42.71,42.71,1.28,1.43,5.34,5.34
-67567,20,165,20165,26,13,15510769,15510769,526,273,244523400,244451095,3307,1869,1859542289,1858997569,4.94,4.76,6.34,6.35,0.79,0.7,0.83,0.83
-67567,20,185,20185,38,16,25598938,25598938,526,273,244523400,244451095,4437,2319,2058825177,2051389748,7.22,5.86,10.47,10.47,0.86,0.69,1.24,1.25
-67568,20,155,20155,309,149,166391838,166297525,309,149,166391838,166297525,64511,28274,3294749809,3251332369,100,100,100,100,0.48,0.53,5.05,5.11
-67570,20,095,20095,119,45,44688305,44688305,1338,615,387231005,359935327,7858,3818,2244635596,2236099115,8.89,7.32,11.54,12.42,1.51,1.18,1.99,2
-67570,20,155,20155,1219,570,342542700,315247022,1338,615,387231005,359935327,64511,28274,3294749809,3251332369,91.11,92.68,88.46,87.58,1.89,2.02,10.4,9.7
-67572,20,135,20135,409,242,288078341,287986655,456,273,557275258,545565861,3107,1740,2784257993,2783590502,89.69,88.64,51.69,52.79,13.16,13.91,10.35,10.35
-67572,20,195,20195,47,31,269196917,257579206,456,273,557275258,545565861,3001,1682,2330018529,2303736575,10.31,11.36,48.31,47.21,1.57,1.84,11.55,11.18
-67573,20,159,20159,170,91,171684611,170414916,170,91,171684611,170414916,10083,4548,1885414874,1880944775,100,100,100,100,1.69,2,9.11,9.06
-67574,20,145,20145,252,144,315422197,315234594,252,144,315422197,315234594,6973,3152,1954523790,1953531750,100,100,100,100,3.61,4.57,16.14,16.14
-67575,20,145,20145,14,6,36929999,36897035,465,273,419492781,419427362,6973,3152,1954523790,1953531750,3.01,2.2,8.8,8.8,0.2,0.19,1.89,1.89
-67575,20,165,20165,451,267,382562782,382530327,465,273,419492781,419427362,3307,1869,1859542289,1858997569,96.99,97.8,91.2,91.2,13.64,14.29,20.57,20.58
-67576,20,185,20185,1915,975,828366347,828132151,1915,975,828366347,828132151,4437,2319,2058825177,2051389748,100,100,100,100,43.16,42.04,40.23,40.37
-67578,20,185,20185,1405,815,581460829,576420192,1405,815,581460829,576420192,4437,2319,2058825177,2051389748,100,100,100,100,31.67,35.14,28.24,28.1
-67579,20,155,20155,256,108,256051983,255951064,3095,1254,582644390,580917932,64511,28274,3294749809,3251332369,8.27,8.61,43.95,44.06,0.4,0.38,7.77,7.87
-67579,20,159,20159,2839,1146,326592407,324966868,3095,1254,582644390,580917932,10083,4548,1885414874,1880944775,91.73,91.39,56.05,55.94,28.16,25.2,17.32,17.28
-67581,20,155,20155,416,244,246950450,246544501,416,244,246950450,246544501,64511,28274,3294749809,3251332369,100,100,100,100,0.64,0.86,7.5,7.58
-67583,20,151,20151,346,175,255298994,255103301,1022,557,587914220,587355897,9656,4514,1905510791,1903757176,33.86,31.42,43.42,43.43,3.58,3.88,13.4,13.4
-67583,20,155,20155,633,360,264280176,263974359,1022,557,587914220,587355897,64511,28274,3294749809,3251332369,61.94,64.63,44.95,44.94,0.98,1.27,8.02,8.12
-67583,20,185,20185,43,22,68335050,68278237,1022,557,587914220,587355897,4437,2319,2058825177,2051389748,4.21,3.95,11.62,11.62,0.97,0.95,3.32,3.33
-67584,20,063,20063,14,11,145530110,145479567,269,185,647731110,647657449,2695,1373,2775844439,2775599078,5.2,5.95,22.47,22.46,0.52,0.8,5.24,5.24
-67584,20,101,20101,11,6,47930023,47930023,269,185,647731110,647657449,1750,990,1858751468,1858200248,4.09,3.24,7.4,7.4,0.63,0.61,2.58,2.58
-67584,20,135,20135,215,149,285868826,285845708,269,185,647731110,647657449,3107,1740,2784257993,2783590502,79.93,80.54,44.13,44.14,6.92,8.56,10.27,10.27
-67584,20,195,20195,29,19,168402151,168402151,269,185,647731110,647657449,3001,1682,2330018529,2303736575,10.78,10.27,26,26,0.97,1.13,7.23,7.31
-67601,20,051,20051,23797,10733,998783388,998433801,23797,10733,998783388,998433801,28452,12872,2331959554,2330762469,100,100,100,100,83.64,83.38,42.83,42.84
-67621,20,147,20147,393,229,158277145,157898108,393,229,158277145,157898108,5642,3049,2316903572,2294410181,100,100,100,100,6.97,7.51,6.83,6.88
-67622,20,137,20137,599,306,341132257,341116000,599,306,341132257,341116000,5671,2542,2282551960,2274357034,100,100,100,100,10.56,12.04,14.95,15
-67623,20,141,20141,270,166,392199840,391145345,270,166,392199840,391145345,3858,2206,2316380155,2311573881,100,100,100,100,7,7.52,16.93,16.92
-67625,20,065,20065,257,175,287372009,287316537,257,175,287372009,287316537,2597,1484,2327760286,2327160854,100,100,100,100,9.9,11.79,12.35,12.35
-67626,20,167,20167,145,108,240496523,239748602,145,108,240496523,239748602,6970,3910,2329529476,2295402664,100,100,100,100,2.08,2.76,10.32,10.44
-67628,20,183,20183,78,54,135113863,134720935,78,54,135113863,134720935,3853,2232,2323127772,2319243495,100,100,100,100,2.02,2.42,5.82,5.81
-67629,20,039,20039,38,26,112418636,112418636,143,88,231468571,231457959,2961,1818,2315830983,2314199313,26.57,29.55,48.57,48.57,1.28,1.43,4.85,4.86
-67629,20,137,20137,105,62,119049935,119039323,143,88,231468571,231457959,5671,2542,2282551960,2274357034,73.43,70.45,51.43,51.43,1.85,2.44,5.22,5.23
-67631,20,065,20065,16,10,57233973,57217402,249,151,429838133,429759781,2597,1484,2327760286,2327160854,6.43,6.62,13.32,13.31,0.62,0.67,2.46,2.46
-67631,20,195,20195,233,141,372604160,372542379,249,151,429838133,429759781,3001,1682,2330018529,2303736575,93.57,93.38,86.68,86.69,7.76,8.38,15.99,16.17
-67632,20,065,20065,34,15,43050458,43050458,227,132,133455364,133408678,2597,1484,2327760286,2327160854,14.98,11.36,32.26,32.27,1.31,1.01,1.85,1.85
-67632,20,163,20163,193,117,90404906,90358220,227,132,133455364,133408678,5181,2768,2318432405,2306470146,85.02,88.64,67.74,67.73,3.73,4.23,3.9,3.92
-67634,20,167,20167,301,204,324008032,306842539,301,204,324008032,306842539,6970,3910,2329529476,2295402664,100,100,100,100,4.32,5.22,13.91,13.37
-67635,20,039,20039,127,71,182268723,182263421,169,92,274718722,274713420,2961,1818,2315830983,2314199313,75.15,77.17,66.35,66.35,4.29,3.91,7.87,7.88
-67635,20,179,20179,42,21,92449999,92449999,169,92,274718722,274713420,2556,1265,2321165792,2320518450,24.85,22.83,33.65,33.65,1.64,1.66,3.98,3.98
-67637,20,051,20051,2454,1143,422591661,422443319,2651,1283,884513133,870152998,28452,12872,2331959554,2330762469,92.57,89.09,47.78,48.55,8.63,8.88,18.12,18.12
-67637,20,195,20195,197,140,461921472,447709679,2651,1283,884513133,870152998,3001,1682,2330018529,2303736575,7.43,10.91,52.22,51.45,6.56,8.32,19.82,19.43
-67638,20,183,20183,230,149,178596044,178502650,230,149,178596044,178502650,3853,2232,2323127772,2319243495,100,100,100,100,5.97,6.68,7.69,7.7
-67639,20,147,20147,193,113,160680860,160171980,193,113,160680860,160171980,5642,3049,2316903572,2294410181,100,100,100,100,3.42,3.71,6.94,6.98
-67640,20,051,20051,68,35,135216448,134912353,505,259,272082597,271754402,28452,12872,2331959554,2330762469,13.47,13.51,49.7,49.64,0.24,0.27,5.8,5.79
-67640,20,167,20167,437,224,136866149,136842049,505,259,272082597,271754402,6970,3910,2329529476,2295402664,86.53,86.49,50.3,50.36,6.27,5.73,5.88,5.96
-67642,20,065,20065,1729,928,597891919,597653462,1729,928,597891919,597653462,2597,1484,2327760286,2327160854,100,100,100,100,66.58,62.53,25.69,25.68
-67643,20,039,20039,195,169,344157609,343790129,195,169,344157609,343790129,2961,1818,2315830983,2314199313,100,100,100,100,6.59,9.3,14.86,14.86
-67644,20,147,20147,264,223,224889275,205031900,264,223,224889275,205031900,5642,3049,2316903572,2294410181,100,100,100,100,4.68,7.31,9.71,8.94
-67645,20,065,20065,54,30,257116127,257062324,546,353,829051305,828836815,2597,1484,2327760286,2327160854,9.89,8.5,31.01,31.01,2.08,2.02,11.05,11.05
-67645,20,137,20137,492,323,571935178,571774491,546,353,829051305,828836815,5671,2542,2282551960,2274357034,90.11,91.5,68.99,68.99,8.68,12.71,25.06,25.14
-67646,20,065,20065,13,10,45965068,45965068,718,394,444701341,444281439,2597,1484,2327760286,2327160854,1.81,2.54,10.34,10.35,0.5,0.67,1.97,1.98
-67646,20,137,20137,8,4,56941124,56821985,718,394,444701341,444281439,5671,2542,2282551960,2274357034,1.11,1.02,12.8,12.79,0.14,0.16,2.49,2.5
-67646,20,147,20147,686,371,276434394,276218881,718,394,444701341,444281439,5642,3049,2316903572,2294410181,95.54,94.16,62.16,62.17,12.16,12.17,11.93,12.04
-67646,20,163,20163,11,9,65360755,65275505,718,394,444701341,444281439,5181,2768,2318432405,2306470146,1.53,2.28,14.7,14.69,0.21,0.33,2.82,2.83
-67647,20,137,20137,6,3,2611261,2611261,256,142,217524025,217212742,5671,2542,2282551960,2274357034,2.34,2.11,1.2,1.2,0.11,0.12,0.11,0.11
-67647,20,147,20147,250,139,214912764,214601481,256,142,217524025,217212742,5642,3049,2316903572,2294410181,97.66,97.89,98.8,98.8,4.43,4.56,9.28,9.35
-67648,20,105,20105,22,11,21920299,21889728,549,341,450894291,435726339,3241,1864,1865974970,1863226611,4.01,3.23,4.86,5.02,0.68,0.59,1.17,1.17
-67648,20,141,20141,48,27,132721593,132625980,549,341,450894291,435726339,3858,2206,2316380155,2311573881,8.74,7.92,29.44,30.44,1.24,1.22,5.73,5.74
-67648,20,167,20167,479,303,296252399,281210631,549,341,450894291,435726339,6970,3910,2329529476,2295402664,87.25,88.86,65.7,64.54,6.87,7.75,12.72,12.25
-67649,20,141,20141,33,18,100316826,100206563,297,197,234160655,234010006,3858,2206,2316380155,2311573881,11.11,9.14,42.84,42.82,0.86,0.82,4.33,4.33
-67649,20,167,20167,264,179,133843829,133803443,297,197,234160655,234010006,6970,3910,2329529476,2295402664,88.89,90.86,57.16,57.18,3.79,4.58,5.75,5.83
-67650,20,065,20065,258,175,390971929,390896006,258,175,390971929,390896006,2597,1484,2327760286,2327160854,100,100,100,100,9.93,11.79,16.8,16.8
-67651,20,051,20051,18,11,90789034,90632967,507,323,594992661,593727778,28452,12872,2331959554,2330762469,3.55,3.41,15.26,15.27,0.06,0.09,3.89,3.89
-67651,20,141,20141,392,266,229823712,229403278,507,323,594992661,593727778,3858,2206,2316380155,2311573881,77.32,82.35,38.63,38.64,10.16,12.06,9.92,9.92
-67651,20,163,20163,87,42,250007138,249334334,507,323,594992661,593727778,5181,2768,2318432405,2306470146,17.16,13,42.02,41.99,1.68,1.52,10.78,10.81
-67651,20,167,20167,10,4,24372777,24357199,507,323,594992661,593727778,6970,3910,2329529476,2295402664,1.97,1.24,4.1,4.1,0.14,0.1,1.05,1.06
-67653,20,039,20039,218,153,335179216,334999699,298,196,539920138,539536694,2961,1818,2315830983,2314199313,73.15,78.06,62.08,62.09,7.36,8.42,14.47,14.48
-67653,20,137,20137,80,43,204740922,204536995,298,196,539920138,539536694,5671,2542,2282551960,2274357034,26.85,21.94,37.92,37.91,1.41,1.69,8.97,8.99
-67654,20,137,20137,4362,1792,905685444,898001140,4362,1792,905685444,898001140,5671,2542,2282551960,2274357034,100,100,100,100,76.92,70.5,39.68,39.48
-67656,20,065,20065,7,4,23060649,23060649,156,116,315788759,315579560,2597,1484,2327760286,2327160854,4.49,3.45,7.3,7.31,0.27,0.27,0.99,0.99
-67656,20,195,20195,149,112,292728110,292518911,156,116,315788759,315579560,3001,1682,2330018529,2303736575,95.51,96.55,92.7,92.69,4.97,6.66,12.56,12.7
-67657,20,065,20065,45,28,186936182,186900515,429,239,349397736,349253841,2597,1484,2327760286,2327160854,10.49,11.72,53.5,53.51,1.73,1.89,8.03,8.03
-67657,20,163,20163,377,207,159096975,158988747,429,239,349397736,349253841,5181,2768,2318432405,2306470146,87.88,86.61,45.53,45.52,7.28,7.48,6.86,6.89
-67657,20,195,20195,7,4,3364579,3364579,429,239,349397736,349253841,3001,1682,2330018529,2303736575,1.63,1.67,0.96,0.96,0.23,0.24,0.14,0.15
-67658,20,141,20141,16,9,55329064,55106958,120,69,207383951,207004709,3858,2206,2316380155,2311573881,13.33,13.04,26.68,26.62,0.41,0.41,2.39,2.38
-67658,20,167,20167,104,60,152054887,151897751,120,69,207383951,207004709,6970,3910,2329529476,2295402664,86.67,86.96,73.32,73.38,1.49,1.53,6.53,6.62
-67659,20,065,20065,154,90,295635448,295569712,154,90,295635448,295569712,2597,1484,2327760286,2327160854,100,100,100,100,5.93,6.06,12.7,12.7
-67660,20,051,20051,81,44,49184417,49184417,81,44,49184417,49184417,28452,12872,2331959554,2330762469,100,100,100,100,0.28,0.34,2.11,2.11
-67661,20,147,20147,3483,1795,1012227191,1011360751,3483,1795,1012227191,1011360751,5642,3049,2316903572,2294410181,100,100,100,100,61.73,58.87,43.69,44.08
-67663,20,051,20051,44,34,160330458,160305812,2615,1316,799794866,798331049,28452,12872,2331959554,2330762469,1.68,2.58,20.05,20.08,0.15,0.26,6.88,6.88
-67663,20,163,20163,2571,1282,639464408,638025237,2615,1316,799794866,798331049,5181,2768,2318432405,2306470146,98.32,97.42,79.95,79.92,49.62,46.32,27.58,27.66
-67664,20,137,20137,19,9,80455839,80455839,305,155,261959387,261858774,5671,2542,2282551960,2274357034,6.23,5.81,30.71,30.72,0.34,0.35,3.52,3.54
-67664,20,147,20147,286,146,181503548,181402935,305,155,261959387,261858774,5642,3049,2316903572,2294410181,93.77,94.19,69.29,69.28,5.07,4.79,7.83,7.91
-67665,20,009,20009,38,24,53262138,53218877,5162,2721,836642376,836170967,27674,12696,2332632278,2319075093,0.74,0.88,6.37,6.36,0.14,0.19,2.28,2.29
-67665,20,167,20167,5124,2697,783380238,782952090,5162,2721,836642376,836170967,6970,3910,2329529476,2295402664,99.26,99.12,93.63,93.64,73.52,68.98,33.63,34.11
-67667,20,051,20051,204,84,293235,293235,204,84,293235,293235,28452,12872,2331959554,2330762469,100,100,100,100,0.72,0.65,0.01,0.01
-67669,20,163,20163,1725,968,861799162,852827028,1725,968,861799162,852827028,5181,2768,2318432405,2306470146,100,100,100,100,33.29,34.97,37.17,36.98
-67671,20,051,20051,1714,742,334583749,334504104,1714,742,334583749,334504104,28452,12872,2331959554,2330762469,100,100,100,100,6.02,5.76,14.35,14.35
-67672,20,065,20065,30,19,142526524,142468721,2359,1227,816172036,815961533,2597,1484,2327760286,2327160854,1.27,1.55,17.46,17.46,1.16,1.28,6.12,6.12
-67672,20,195,20195,2329,1208,673645512,673492812,2359,1227,816172036,815961533,3001,1682,2330018529,2303736575,98.73,98.45,82.54,82.54,77.61,71.82,28.91,29.23
-67673,20,141,20141,57,29,208833920,208645371,108,89,323248717,322946986,3858,2206,2316380155,2311573881,52.78,32.58,64.6,64.61,1.48,1.31,9.02,9.03
-67673,20,167,20167,51,60,114414797,114301615,108,89,323248717,322946986,6970,3910,2329529476,2295402664,47.22,67.42,35.4,35.39,0.73,1.53,4.91,4.98
-67674,20,051,20051,55,33,12683374,12683374,55,33,12683374,12683374,28452,12872,2331959554,2330762469,100,100,100,100,0.19,0.26,0.54,0.54
-67675,20,163,20163,217,143,252299061,251661075,217,143,252299061,251661075,5181,2768,2318432405,2306470146,100,100,100,100,4.19,5.17,10.88,10.91
-67701,20,153,20153,49,30,173838590,173838590,6502,2893,1255440628,1255385446,2519,1458,2770191324,2769775797,0.75,1.04,13.85,13.85,1.95,2.06,6.28,6.28
-67701,20,193,20193,6453,2863,1081602038,1081546856,6502,2893,1255440628,1255385446,7900,3536,2783713565,2783425324,99.25,98.96,86.15,86.15,81.68,80.97,38.85,38.86
-67730,20,153,20153,1612,899,991757553,991498240,1612,899,991757553,991498240,2519,1458,2770191324,2769775797,100,100,100,100,63.99,61.66,35.8,35.8
-67731,20,023,20023,675,382,801579783,800828596,675,382,801579783,800828596,2726,1518,2644233971,2641495949,100,100,100,100,24.76,25.16,30.31,30.32
-67732,20,153,20153,21,14,74410513,74410513,543,273,799542578,799518412,2519,1458,2770191324,2769775797,3.87,5.13,9.31,9.31,0.83,0.96,2.69,2.69
-67732,20,181,20181,66,33,243189747,243189747,543,273,799542578,799518412,6010,3148,2735747501,2735199253,12.15,12.09,30.42,30.42,1.1,1.05,8.89,8.89
-67732,20,193,20193,456,226,481942318,481918152,543,273,799542578,799518412,7900,3536,2783713565,2783425324,83.98,82.78,60.28,60.28,5.77,6.39,17.31,17.31
-67733,20,181,20181,149,80,501386070,501386070,149,80,501386070,501386070,6010,3148,2735747501,2735199253,100,100,100,100,2.48,2.54,18.33,18.33
-67734,20,153,20153,27,15,72345745,72345745,182,86,240315118,240289519,2519,1458,2770191324,2769775797,14.84,17.44,30.1,30.11,1.07,1.03,2.61,2.61
-67734,20,193,20193,155,71,167969373,167943774,182,86,240315118,240289519,7900,3536,2783713565,2783425324,85.16,82.56,69.9,69.89,1.96,2.01,6.03,6.03
-67735,20,181,20181,5476,2851,1585103272,1584643531,5476,2851,1585103272,1584643531,6010,3148,2735747501,2735199253,100,100,100,100,91.11,90.57,57.94,57.94
-67736,20,063,20063,228,145,617934348,617917085,228,145,617934348,617917085,2695,1373,2775844439,2775599078,100,100,100,100,8.46,10.56,22.26,22.26
-67737,20,063,20063,373,206,187151585,187148153,444,236,367226625,367209374,2695,1373,2775844439,2775599078,84.01,87.29,50.96,50.96,13.84,15,6.74,6.74
-67737,20,179,20179,71,30,180075040,180061221,444,236,367226625,367209374,2556,1265,2321165792,2320518450,15.99,12.71,49.04,49.04,2.78,2.37,7.76,7.76
-67738,20,063,20063,392,223,600686100,600605234,520,283,769879221,769710048,2695,1373,2775844439,2775599078,75.38,78.8,78.02,78.03,14.55,16.24,21.64,21.64
-67738,20,179,20179,128,60,169193121,169104814,520,283,769879221,769710048,2556,1265,2321165792,2320518450,24.62,21.2,21.98,21.97,5.01,4.74,7.29,7.29
-67739,20,039,20039,1,3,10909744,10909744,258,183,352685321,352658033,2961,1818,2315830983,2314199313,0.39,1.64,3.09,3.09,0.03,0.17,0.47,0.47
-67739,20,153,20153,257,180,341775577,341748289,258,183,352685321,352658033,2519,1458,2770191324,2769775797,99.61,98.36,96.91,96.91,10.2,12.35,12.34,12.34
-67740,20,179,20179,1724,857,1131265075,1130937762,1724,857,1131265075,1130937762,2556,1265,2321165792,2320518450,100,100,100,100,67.45,67.75,48.74,48.74
-67741,20,023,20023,7,4,48455839,48455839,326,188,454524251,454435744,2726,1518,2644233971,2641495949,2.15,2.13,10.66,10.66,0.26,0.26,1.83,1.83
-67741,20,181,20181,319,184,406068412,405979905,326,188,454524251,454435744,6010,3148,2735747501,2735199253,97.85,97.87,89.34,89.34,5.31,5.84,14.84,14.84
-67743,20,153,20153,26,9,31653753,31653753,158,74,273142752,273142752,2519,1458,2770191324,2769775797,16.46,12.16,11.59,11.59,1.03,0.62,1.14,1.14
-67743,20,193,20193,132,65,241488999,241488999,158,74,273142752,273142752,7900,3536,2783713565,2783425324,83.54,87.84,88.41,88.41,1.67,1.84,8.68,8.68
-67744,20,153,20153,185,113,363377627,363359186,185,113,363377627,363359186,2519,1458,2770191324,2769775797,100,100,100,100,7.34,7.75,13.12,13.12
-67745,20,023,20023,28,14,116399494,116345439,322,185,683292291,683196889,2726,1518,2644233971,2641495949,8.7,7.57,17.04,17.03,1.03,0.92,4.4,4.4
-67745,20,153,20153,294,171,566892797,566851450,322,185,683292291,683196889,2519,1458,2770191324,2769775797,91.3,92.43,82.96,82.97,11.67,11.73,20.46,20.47
-67747,20,109,20109,158,78,323259555,323259555,158,78,323259555,323259555,2756,1441,2779317089,2779042457,100,100,100,100,5.73,5.41,11.63,11.63
-67748,20,063,20063,93,46,292994770,292915760,2544,1257,1202416384,1202168805,2695,1373,2775844439,2775599078,3.66,3.66,24.37,24.37,3.45,3.35,10.56,10.55
-67748,20,109,20109,2187,1101,536499078,536461915,2544,1257,1202416384,1202168805,2756,1441,2779317089,2779042457,85.97,87.59,44.62,44.62,79.35,76.41,19.3,19.3
-67748,20,193,20193,264,110,372922536,372791130,2544,1257,1202416384,1202168805,7900,3536,2783713565,2783425324,10.38,8.75,31.01,31.01,3.34,3.11,13.4,13.39
-67749,20,039,20039,2301,1337,1120153237,1119160282,2317,1348,1189823175,1188804863,2961,1818,2315830983,2314199313,99.31,99.18,94.14,94.14,77.71,73.54,48.37,48.36
-67749,20,153,20153,16,11,69669938,69644581,2317,1348,1189823175,1188804863,2519,1458,2770191324,2769775797,0.69,0.82,5.86,5.86,0.64,0.75,2.51,2.51
-67751,20,063,20063,207,112,124334068,124324277,259,142,231749044,231726551,2695,1373,2775844439,2775599078,79.92,78.87,53.65,53.65,7.68,8.16,4.48,4.48
-67751,20,179,20179,52,30,107414976,107402274,259,142,231749044,231726551,2556,1265,2321165792,2320518450,20.08,21.13,46.35,46.35,2.03,2.37,4.63,4.63
-67752,20,063,20063,1362,616,631832304,631827848,1399,635,746523794,746463193,2695,1373,2775844439,2775599078,97.36,97.01,84.64,84.64,50.54,44.87,22.76,22.76
-67752,20,179,20179,37,19,114691490,114635345,1399,635,746523794,746463193,2556,1265,2321165792,2320518450,2.64,2.99,15.36,15.36,1.45,1.5,4.94,4.94
-67753,20,153,20153,32,16,84469231,84425450,530,247,628675494,628536341,2519,1458,2770191324,2769775797,6.04,6.48,13.44,13.43,1.27,1.1,3.05,3.05
-67753,20,179,20179,101,48,204817834,204774350,530,247,628675494,628536341,2556,1265,2321165792,2320518450,19.06,19.43,32.58,32.58,3.95,3.79,8.82,8.82
-67753,20,193,20193,397,183,339388429,339336541,530,247,628675494,628536341,7900,3536,2783713565,2783425324,74.91,74.09,53.98,53.99,5.03,5.18,12.19,12.19
-67756,20,023,20023,2016,1118,1677798855,1675866075,2016,1118,1677798855,1675866075,2726,1518,2644233971,2641495949,100,100,100,100,73.95,73.65,63.45,63.44
-67757,20,039,20039,81,59,210743818,210657402,482,259,532002075,531810087,2961,1818,2315830983,2314199313,16.8,22.78,39.61,39.61,2.74,3.25,9.1,9.1
-67757,20,179,20179,401,200,321258257,321152685,482,259,532002075,531810087,2556,1265,2321165792,2320518450,83.2,77.22,60.39,60.39,15.69,15.81,13.84,13.84
-67758,20,199,20199,1016,556,1120505365,1120455853,1016,556,1120505365,1120455853,1485,781,2366489008,2366348080,100,100,100,100,68.42,71.19,47.35,47.35
-67761,20,109,20109,68,28,372951363,372877665,249,123,1051931173,1051815345,2756,1441,2779317089,2779042457,27.31,22.76,35.45,35.45,2.47,1.94,13.42,13.42
-67761,20,199,20199,181,95,678979810,678937680,249,123,1051931173,1051815345,1485,781,2366489008,2366348080,72.69,77.24,64.55,64.55,12.19,12.16,28.69,28.69
-67762,20,199,20199,288,130,567003833,566954547,288,130,567003833,566954547,1485,781,2366489008,2366348080,100,100,100,100,19.39,16.65,23.96,23.96
-67764,20,109,20109,302,210,1229473146,1229309375,345,228,1327873018,1327709247,2756,1441,2779317089,2779042457,87.54,92.11,92.59,92.59,10.96,14.57,44.24,44.23
-67764,20,193,20193,43,18,98399872,98399872,345,228,1327873018,1327709247,7900,3536,2783713565,2783425324,12.46,7.89,7.41,7.41,0.54,0.51,3.53,3.54
-67801,20,057,20057,30559,10529,982094844,980669235,30559,10529,982094844,980669235,33848,12005,2846605610,2844508251,100,100,100,100,90.28,87.71,34.5,34.48
-67831,20,025,20025,1117,599,1036392562,1034847024,1117,599,1036392562,1034847024,2215,1135,2530891140,2524286181,100,100,100,100,50.43,52.78,40.95,41
-67834,20,025,20025,33,17,138847799,138726087,964,425,508411162,508163015,2215,1135,2530891140,2524286181,3.42,4,27.31,27.3,1.49,1.5,5.49,5.5
-67834,20,057,20057,931,408,369563363,369436928,964,425,508411162,508163015,33848,12005,2846605610,2844508251,96.58,96,72.69,72.7,2.75,3.4,12.98,12.99
-67835,20,055,20055,144,65,525149493,524846977,2954,1148,1132155505,1131724513,36776,13276,3373905120,3372079580,4.87,5.66,46.38,46.38,0.39,0.49,15.57,15.56
-67835,20,069,20069,2810,1083,607006012,606877536,2954,1148,1132155505,1131724513,6006,2340,2251469520,2250356182,95.13,94.34,53.62,53.62,46.79,46.28,26.96,26.97
-67836,20,075,20075,147,77,161190679,160143519,147,77,161190679,160143519,2690,1236,2583847434,2580942885,100,100,100,100,5.46,6.23,6.24,6.2
-67837,20,069,20069,512,197,200105125,199952293,903,343,623392302,622960534,6006,2340,2251469520,2250356182,56.7,57.43,32.1,32.1,8.52,8.42,8.89,8.89
-67837,20,081,20081,346,130,358548530,358269594,903,343,623392302,622960534,4256,1666,1496683474,1495773065,38.32,37.9,57.52,57.51,8.13,7.8,23.96,23.95
-67837,20,119,20119,45,16,64738647,64738647,903,343,623392302,622960534,4575,1998,2536493193,2533234935,4.98,4.66,10.38,10.39,0.98,0.8,2.55,2.56
-67838,20,055,20055,9,6,42630294,42630294,982,368,292706667,292597069,36776,13276,3373905120,3372079580,0.92,1.63,14.56,14.57,0.02,0.05,1.26,1.26
-67838,20,093,20093,973,362,250076373,249966775,982,368,292706667,292597069,3977,1556,2255830709,2254697108,99.08,98.37,85.44,85.43,24.47,23.26,11.09,11.09
-67839,20,063,20063,23,11,62555099,62555099,1416,822,1467125264,1466574044,2695,1373,2775844439,2775599078,1.62,1.34,4.26,4.27,0.85,0.8,2.25,2.25
-67839,20,101,20101,1393,811,1404570165,1404018945,1416,822,1467125264,1466574044,1750,990,1858751468,1858200248,98.38,98.66,95.74,95.73,79.6,81.92,75.57,75.56
-67840,20,025,20025,103,81,89287819,89261130,103,81,89287819,89261130,2215,1135,2530891140,2524286181,100,100,100,100,4.65,7.14,3.53,3.54
-67841,20,057,20057,51,23,65590892,65546809,339,152,254107632,254004159,33848,12005,2846605610,2844508251,15.04,15.13,25.81,25.81,0.15,0.19,2.3,2.3
-67841,20,069,20069,288,129,188516740,188457350,339,152,254107632,254004159,6006,2340,2251469520,2250356182,84.96,84.87,74.19,74.19,4.8,5.51,8.37,8.37
-67842,20,025,20025,10,8,85206700,83855659,427,220,392741284,391311234,2215,1135,2530891140,2524286181,2.34,3.64,21.7,21.43,0.45,0.7,3.37,3.32
-67842,20,057,20057,417,212,307534584,307455575,427,220,392741284,391311234,33848,12005,2846605610,2844508251,97.66,96.36,78.3,78.57,1.23,1.77,10.8,10.81
-67843,20,057,20057,165,98,447309,447309,165,98,447309,447309,33848,12005,2846605610,2844508251,100,100,100,100,0.49,0.82,0.02,0.02
-67844,20,057,20057,55,23,85694331,85694331,894,420,636966088,636927434,33848,12005,2846605610,2844508251,6.15,5.48,13.45,13.45,0.16,0.19,3.01,3.01
-67844,20,069,20069,22,8,52933424,52911935,894,420,636966088,636927434,6006,2340,2251469520,2250356182,2.46,1.9,8.31,8.31,0.37,0.34,2.35,2.35
-67844,20,119,20119,817,389,498338333,498321168,894,420,636966088,636927434,4575,1998,2536493193,2533234935,91.39,92.62,78.24,78.24,17.86,19.47,19.65,19.67
-67846,20,055,20055,33668,12216,1946842953,1945783558,33696,12229,2062965837,2061906442,36776,13276,3373905120,3372079580,99.92,99.89,94.37,94.37,91.55,92.02,57.7,57.7
-67846,20,069,20069,20,8,46274961,46274961,33696,12229,2062965837,2061906442,6006,2340,2251469520,2250356182,0.06,0.07,2.24,2.24,0.33,0.34,2.06,2.06
-67846,20,101,20101,8,5,69847923,69847923,33696,12229,2062965837,2061906442,1750,990,1858751468,1858200248,0.02,0.04,3.39,3.39,0.46,0.51,3.76,3.76
-67849,20,083,20083,380,205,322470087,322386653,380,205,322470087,322386653,1916,973,2228195512,2227369168,100,100,100,100,19.83,21.07,14.47,14.47
-67850,20,101,20101,335,165,322401646,322401646,335,165,322401646,322401646,1750,990,1858751468,1858200248,100,100,100,100,19.14,16.67,17.35,17.35
-67851,20,055,20055,2691,883,553775907,553423253,2691,883,553775907,553423253,36776,13276,3373905120,3372079580,100,100,100,100,7.32,6.65,16.41,16.41
-67853,20,055,20055,40,16,126509825,126509825,860,346,786088818,785890707,36776,13276,3373905120,3372079580,4.65,4.62,16.09,16.1,0.11,0.12,3.75,3.75
-67853,20,069,20069,820,330,659578993,659380882,860,346,786088818,785890707,6006,2340,2251469520,2250356182,95.35,95.38,83.91,83.9,13.65,14.1,29.3,29.3
-67854,20,083,20083,1407,689,1452561693,1452020160,1407,689,1452561693,1452020160,1916,973,2228195512,2227369168,100,100,100,100,73.43,70.81,65.19,65.19
-67855,20,067,20067,14,7,10236782,10235240,1976,844,1162334374,1162137505,7829,2945,1489617249,1488724794,0.71,0.83,0.88,0.88,0.18,0.24,0.69,0.69
-67855,20,129,20129,16,7,33625993,33591732,1976,844,1162334374,1162137505,3233,1467,1890501094,1889993253,0.81,0.83,2.89,2.89,0.49,0.48,1.78,1.78
-67855,20,187,20187,1946,830,1118471599,1118310533,1976,844,1162334374,1162137505,2235,990,1762266344,1762086193,98.48,98.34,96.23,96.23,87.07,83.84,63.47,63.47
-67857,20,075,20075,111,56,517012845,516936498,174,91,828258210,828115040,2690,1236,2583847434,2580942885,63.79,61.54,62.42,62.42,4.13,4.53,20.01,20.03
-67857,20,093,20093,63,35,311245365,311178542,174,91,828258210,828115040,3977,1556,2255830709,2254697108,36.21,38.46,37.58,37.58,1.58,2.25,13.8,13.8
-67859,20,175,20175,735,277,459580387,458414812,735,277,459580387,458414812,22952,8061,1658853389,1656290756,100,100,100,100,3.2,3.44,27.7,27.68
-67860,20,093,20093,2878,1128,1523028457,1522091609,2878,1128,1523028457,1522091609,3977,1556,2255830709,2254697108,100,100,100,100,72.37,72.49,67.52,67.51
-67861,20,109,20109,12,7,116267487,116267487,1962,921,1530607031,1530545044,2756,1441,2779317089,2779042457,0.61,0.76,7.6,7.6,0.44,0.49,4.18,4.18
-67861,20,203,20203,1950,914,1414339544,1414277557,1962,921,1530607031,1530545044,2234,1054,1861144123,1861082136,99.39,99.24,92.4,92.4,87.29,86.72,75.99,75.99
-67862,20,129,20129,17,8,38830938,38830938,302,166,655931054,655911969,3233,1467,1890501094,1889993253,5.63,4.82,5.92,5.92,0.53,0.55,2.05,2.05
-67862,20,187,20187,285,158,617100116,617081031,302,166,655931054,655911969,2235,990,1762266344,1762086193,94.37,95.18,94.08,94.08,12.75,15.96,35.02,35.02
-67863,20,171,20171,38,16,21911764,21911764,305,149,440983361,440983361,4936,2193,1858736382,1858430303,12.46,10.74,4.97,4.97,0.77,0.73,1.18,1.18
-67863,20,203,20203,267,133,419071597,419071597,305,149,440983361,440983361,2234,1054,1861144123,1861082136,87.54,89.26,95.03,95.03,11.95,12.62,22.52,22.52
-67864,20,119,20119,2227,1011,1219811146,1218671746,2227,1011,1219811146,1218671746,4575,1998,2536493193,2533234935,100,100,100,100,48.68,50.6,48.09,48.11
-67865,20,025,20025,932,419,471120766,470928659,1081,484,711308486,711100204,2215,1135,2530891140,2524286181,86.22,86.57,66.23,66.23,42.08,36.92,18.61,18.66
-67865,20,057,20057,149,65,240187720,240171545,1081,484,711308486,711100204,33848,12005,2846605610,2844508251,13.78,13.43,33.77,33.77,0.44,0.54,8.44,8.44
-67867,20,069,20069,1534,585,497054265,496501225,1578,600,573822818,573258720,6006,2340,2251469520,2250356182,97.21,97.5,86.62,86.61,25.54,25,22.08,22.06
-67867,20,119,20119,44,15,76768553,76757495,1578,600,573822818,573258720,4575,1998,2536493193,2533234935,2.79,2.5,13.38,13.39,0.96,0.75,3.03,3.03
-67868,20,055,20055,198,77,150735016,150735016,198,77,150735016,150735016,36776,13276,3373905120,3372079580,100,100,100,100,0.54,0.58,4.47,4.47
-67869,20,119,20119,1442,567,676836514,674745879,1492,591,814121060,811671559,4575,1998,2536493193,2533234935,96.65,95.94,83.14,83.13,31.52,28.38,26.68,26.64
-67869,20,175,20175,50,24,137284546,136925680,1492,591,814121060,811671559,22952,8061,1658853389,1656290756,3.35,4.06,16.86,16.87,0.22,0.3,8.28,8.27
-67870,20,081,20081,1685,659,539839809,539715150,1765,694,661499395,661351090,4256,1666,1496683474,1495773065,95.47,94.96,81.61,81.61,39.59,39.56,36.07,36.08
-67870,20,175,20175,80,35,121659586,121635940,1765,694,661499395,661351090,22952,8061,1658853389,1656290756,4.53,5.04,18.39,18.39,0.35,0.43,7.33,7.34
-67871,20,055,20055,26,13,28261632,28150657,4973,2217,2206511747,2206094693,36776,13276,3373905120,3372079580,0.52,0.59,1.28,1.28,0.07,0.1,0.84,0.83
-67871,20,063,20063,3,3,112826055,112826055,4973,2217,2206511747,2206094693,2695,1373,2775844439,2775599078,0.06,0.14,5.11,5.11,0.11,0.22,4.06,4.06
-67871,20,109,20109,29,17,200866460,200866460,4973,2217,2206511747,2206094693,2756,1441,2779317089,2779042457,0.58,0.77,9.1,9.11,1.05,1.18,7.23,7.23
-67871,20,171,20171,4898,2177,1836824618,1836518539,4973,2217,2206511747,2206094693,4936,2193,1858736382,1858430303,98.49,98.2,83.25,83.25,99.23,99.27,98.82,98.82
-67871,20,203,20203,17,7,27732982,27732982,4973,2217,2206511747,2206094693,2234,1054,1861144123,1861082136,0.34,0.32,1.26,1.26,0.76,0.66,1.49,1.49
-67876,20,057,20057,1108,460,429744045,429643249,1156,487,628356043,628211946,33848,12005,2846605610,2844508251,95.85,94.46,68.39,68.39,3.27,3.83,15.1,15.1
-67876,20,083,20083,48,27,198611998,198568697,1156,487,628356043,628211946,1916,973,2228195512,2227369168,4.15,5.54,31.61,31.61,2.51,2.77,8.91,8.91
-67877,20,081,20081,2225,877,598295135,597788321,2255,893,649378442,648871628,4256,1666,1496683474,1495773065,98.67,98.21,92.13,92.13,52.28,52.64,39.97,39.97
-67877,20,175,20175,30,16,51083307,51083307,2255,893,649378442,648871628,22952,8061,1658853389,1656290756,1.33,1.79,7.87,7.87,0.13,0.2,3.08,3.08
-67878,20,075,20075,2432,1103,1905643910,1903862868,2436,1105,1932338539,1930557497,2690,1236,2583847434,2580942885,99.84,99.82,98.62,98.62,90.41,89.24,73.75,73.77
-67878,20,187,20187,4,2,26694629,26694629,2436,1105,1932338539,1930557497,2235,990,1762266344,1762086193,0.16,0.18,1.38,1.38,0.18,0.2,1.51,1.51
-67879,20,071,20071,1247,629,2016176814,2016176814,1247,629,2016176814,2016176814,1247,629,2016176814,2016176814,100,100,100,100,100,100,100,100
-67880,20,067,20067,7815,2938,1479380467,1478489554,7878,2969,1650860981,1649949736,7829,2945,1489617249,1488724794,99.2,98.96,89.61,89.61,99.82,99.76,99.31,99.31
-67880,20,093,20093,63,31,171480514,171460182,7878,2969,1650860981,1649949736,3977,1556,2255830709,2254697108,0.8,1.04,10.39,10.39,1.58,1.99,7.6,7.6
-67882,20,057,20057,346,149,260716633,260411381,346,149,260716633,260411381,33848,12005,2846605610,2844508251,100,100,100,100,1.02,1.24,9.16,9.15
-67901,20,175,20175,22009,7693,807052705,806038159,22073,7727,898860727,897846181,22952,8061,1658853389,1656290756,99.71,99.56,89.79,89.77,95.89,95.43,48.65,48.67
-67901,20,189,20189,64,34,91808022,91808022,22073,7727,898860727,897846181,5724,2306,1884144036,1883679100,0.29,0.44,10.21,10.23,1.12,1.47,4.87,4.87
-67950,20,129,20129,2412,1087,482973977,482973977,2558,1141,560719154,560491951,3233,1467,1890501094,1889993253,94.29,95.27,86.13,86.17,74.61,74.1,25.55,25.55
-67950,40,139,40139,146,54,77745177,77517974,2558,1141,560719154,560491951,20640,8208,5306058147,5286842403,5.71,4.73,13.87,13.83,0.71,0.66,1.47,1.47
-67951,20,189,20189,4981,1996,1322812796,1322811470,4981,1996,1322812796,1322811470,5724,2306,1884144036,1883679100,100,100,100,100,87.02,86.56,70.21,70.22
-67952,20,175,20175,48,16,82192858,82192858,710,281,465870139,465406529,22952,8061,1658853389,1656290756,6.76,5.69,17.64,17.66,0.21,0.2,4.95,4.96
-67952,20,189,20189,662,265,383677281,383213671,710,281,465870139,465406529,5724,2306,1884144036,1883679100,93.24,94.31,82.36,82.34,11.57,11.49,20.36,20.34
-67953,20,129,20129,144,83,670581330,670131220,144,83,670581330,670131220,3233,1467,1890501094,1889993253,100,100,100,100,4.45,5.66,35.47,35.46
-67954,20,129,20129,644,282,664488856,664465386,661,293,750334793,750311323,3233,1467,1890501094,1889993253,97.43,96.25,88.56,88.56,19.92,19.22,35.15,35.16
-67954,20,189,20189,17,11,85845937,85845937,661,293,750334793,750311323,5724,2306,1884144036,1883679100,2.57,3.75,11.44,11.44,0.3,0.48,4.56,4.56
-68001,31,023,31023,77,51,7409987,7405512,77,51,7409987,7405512,8395,4053,1530193890,1514900899,100,100,100,100,0.92,1.26,0.48,0.49
-68002,31,177,31177,2150,892,189082597,187517643,2150,892,189082597,187517643,20234,8301,1018373698,1009986004,100,100,100,100,10.63,10.75,18.57,18.57
-68003,31,025,31025,551,319,82596781,80970680,4284,2056,329737462,321232101,25241,11117,1465651744,1443778631,12.86,15.52,25.05,25.21,2.18,2.87,5.64,5.61
-68003,31,155,31155,3733,1737,247140681,240261421,4284,2056,329737462,321232101,20780,9221,1967924345,1943096642,87.14,84.48,74.95,74.79,17.96,18.84,12.56,12.36
-68004,31,039,31039,885,404,204432597,203825954,885,404,204432597,203825954,9139,4204,1488343135,1477895767,100,100,100,100,9.68,9.61,13.74,13.79
-68005,31,153,31153,22132,9880,49774506,46824703,22132,9880,49774506,46824703,158840,61938,641081822,618982000,100,100,100,100,13.93,15.95,7.76,7.56
-68007,31,055,31055,7388,2638,71399868,71100281,7612,2718,93340121,93035317,517110,219580,878904279,850693384,97.06,97.06,76.49,76.42,1.43,1.2,8.12,8.36
-68007,31,177,31177,224,80,21940253,21935036,7612,2718,93340121,93035317,20234,8301,1018373698,1009986004,2.94,2.94,23.51,23.58,1.11,0.96,2.15,2.17
-68008,31,177,31177,12285,4973,347451942,343478275,12285,4973,347451942,343478275,20234,8301,1018373698,1009986004,100,100,100,100,60.71,59.91,34.12,34.01
-68010,31,055,31055,745,15,3860963,3757601,745,15,3860963,3757601,517110,219580,878904279,850693384,100,100,100,100,0.14,0.01,0.44,0.44
-68014,31,023,31023,287,145,99599186,99417025,287,145,99599186,99417025,8395,4053,1530193890,1514900899,100,100,100,100,3.42,3.58,6.51,6.56
-68015,31,155,31155,1151,520,142678088,141224502,1151,520,142678088,141224502,20780,9221,1967924345,1943096642,100,100,100,100,5.54,5.64,7.25,7.27
-68016,31,025,31025,413,331,3653316,2005624,413,331,3653316,2005624,25241,11117,1465651744,1443778631,100,100,100,100,1.64,2.98,0.25,0.14
-68017,31,109,31109,265,102,57550258,57550258,1692,664,185415373,185194843,285407,120875,2192117375,2169240553,15.66,15.36,31.04,31.08,0.09,0.08,2.63,2.65
-68017,31,155,31155,1427,562,127865115,127644585,1692,664,185415373,185194843,20780,9221,1967924345,1943096642,84.34,84.64,68.96,68.92,6.87,6.09,6.5,6.57
-68018,31,155,31155,516,194,113923780,113268308,516,194,113923780,113268308,20780,9221,1967924345,1943096642,100,100,100,100,2.48,2.1,5.79,5.83
-68019,31,021,31021,550,265,191270850,191161350,550,265,191270850,191161350,6858,3467,1287387501,1273189665,100,100,100,100,8.02,7.64,14.86,15.01
-68020,31,021,31021,720,411,186307845,180331985,749,427,216423458,210430467,6858,3467,1287387501,1273189665,96.13,96.25,86.08,85.7,10.5,11.85,14.47,14.16
-68020,31,173,31173,29,16,30115613,30098482,749,427,216423458,210430467,6940,2408,1025835946,1019377309,3.87,3.75,13.92,14.3,0.42,0.66,2.94,2.95
-68022,31,055,31055,16422,6295,98916707,98065764,16422,6295,98916707,98065764,517110,219580,878904279,850693384,100,100,100,100,3.18,2.87,11.25,11.53
-68023,31,177,31177,2536,1079,92711928,91036549,2536,1079,92711928,91036549,20234,8301,1018373698,1009986004,100,100,100,100,12.53,13,9.1,9.01
-68025,31,053,31053,29114,12938,248739805,238118159,30376,13728,336273882,322063288,36691,16584,1406362112,1369341649,95.85,94.25,73.97,73.94,79.35,78.01,17.69,17.39
-68025,31,155,31155,1262,790,87534077,83945129,30376,13728,336273882,322063288,20780,9221,1967924345,1943096642,4.15,5.75,26.03,26.06,6.07,8.57,4.45,4.32
-68028,31,153,31153,10839,3797,171957931,166555690,10839,3797,171957931,166555690,158840,61938,641081822,618982000,100,100,100,100,6.82,6.13,26.82,26.91
-68029,31,021,31021,78,31,55550970,55520566,899,404,218649590,218495395,6858,3467,1287387501,1273189665,8.68,7.67,25.41,25.41,1.14,0.89,4.32,4.36
-68029,31,177,31177,821,373,163098620,162974829,899,404,218649590,218495395,20234,8301,1018373698,1009986004,91.32,92.33,74.59,74.59,4.06,4.49,16.02,16.14
-68030,31,043,31043,835,352,101526475,99615430,835,352,101526475,99615430,21006,7631,692615994,684416224,100,100,100,100,3.98,4.61,14.66,14.55
-68031,31,053,31053,1662,756,291151502,286124105,1745,792,320231531,315175911,36691,16584,1406362112,1369341649,95.24,95.45,90.92,90.78,4.53,4.56,20.7,20.9
-68031,31,177,31177,83,36,29080029,29051806,1745,792,320231531,315175911,20234,8301,1018373698,1009986004,4.76,4.55,9.08,9.22,0.41,0.43,2.86,2.88
-68033,31,155,31155,392,152,84355753,84082413,392,152,84355753,84082413,20780,9221,1967924345,1943096642,100,100,100,100,1.89,1.65,4.29,4.33
-68034,31,177,31177,886,352,86574704,86566507,886,352,86574704,86566507,20234,8301,1018373698,1009986004,100,100,100,100,4.38,4.24,8.5,8.57
-68036,31,023,31023,341,222,125172449,122020563,402,253,162021423,158765882,8395,4053,1530193890,1514900899,84.83,87.75,77.26,76.86,4.06,5.48,8.18,8.05
-68036,31,155,31155,61,31,36848974,36745319,402,253,162021423,158765882,20780,9221,1967924345,1943096642,15.17,12.25,22.74,23.14,0.29,0.34,1.87,1.89
-68037,31,025,31025,2286,977,155742406,150662684,2286,977,155742406,150662684,25241,11117,1465651744,1443778631,100,100,100,100,9.06,8.79,10.63,10.44
-68038,31,021,31021,1280,664,256608045,254930498,1280,664,256608045,254930498,6858,3467,1287387501,1273189665,100,100,100,100,18.66,19.15,19.93,20.02
-68039,31,173,31173,1421,357,115553003,112865051,1421,357,115553003,112865051,6940,2408,1025835946,1019377309,100,100,100,100,20.48,14.83,11.26,11.07
-68040,31,155,31155,369,156,92540575,92107608,369,156,92540575,92107608,20780,9221,1967924345,1943096642,100,100,100,100,1.78,1.69,4.7,4.74
-68041,31,155,31155,955,383,97762114,97603032,955,383,97762114,97603032,20780,9221,1967924345,1943096642,100,100,100,100,4.6,4.15,4.97,5.02
-68042,31,155,31155,122,83,1973117,1693305,122,83,1973117,1693305,20780,9221,1967924345,1943096642,100,100,100,100,0.59,0.9,0.1,0.09
-68044,31,053,31053,517,200,46792637,45018663,724,294,89348121,87354423,36691,16584,1406362112,1369341649,71.41,68.03,52.37,51.54,1.41,1.21,3.33,3.29
-68044,31,177,31177,207,94,42555484,42335760,724,294,89348121,87354423,20234,8301,1018373698,1009986004,28.59,31.97,47.63,48.46,1.02,1.13,4.18,4.19
-68045,31,021,31021,1686,819,196745104,195629494,1801,865,245617638,244481428,6858,3467,1287387501,1273189665,93.61,94.68,80.1,80.02,24.58,23.62,15.28,15.37
-68045,31,039,31039,115,46,48872534,48851934,1801,865,245617638,244481428,9139,4204,1488343135,1477895767,6.39,5.32,19.9,19.98,1.26,1.09,3.28,3.31
-68046,31,153,31153,25191,9295,72732971,70637905,25191,9295,72732971,70637905,158840,61938,641081822,618982000,100,100,100,100,15.86,15.01,11.35,11.41
-68047,31,039,31039,177,78,104654353,104632741,1614,755,327575121,326956234,9139,4204,1488343135,1477895767,10.97,10.33,31.95,32,1.94,1.86,7.03,7.08
-68047,31,173,31173,1377,648,183969582,183376776,1614,755,327575121,326956234,6940,2408,1025835946,1019377309,85.32,85.83,56.16,56.09,19.84,26.91,17.93,17.99
-68047,31,179,31179,60,29,38951186,38946717,1614,755,327575121,326956234,9595,3776,1148231618,1147143891,3.72,3.84,11.89,11.91,0.63,0.77,3.39,3.4
-68048,31,025,31025,12422,5363,258267277,249533840,12422,5363,258267277,249533840,25241,11117,1465651744,1443778631,100,100,100,100,49.21,48.24,17.62,17.28
-68050,31,155,31155,609,309,146718590,145739979,609,309,146718590,145739979,20780,9221,1967924345,1943096642,100,100,100,100,2.93,3.35,7.46,7.5
-68055,31,173,31173,341,162,136274620,135970365,341,162,136274620,135970365,6940,2408,1025835946,1019377309,100,100,100,100,4.91,6.73,13.28,13.34
-68057,31,053,31053,1544,763,319169083,316106619,1544,763,319169083,316106619,36691,16584,1406362112,1369341649,100,100,100,100,4.21,4.6,22.69,23.08
-68058,31,025,31025,252,214,3459176,1572698,252,214,3459176,1572698,25241,11117,1465651744,1443778631,100,100,100,100,1,1.92,0.24,0.11
-68059,31,153,31153,3158,1320,130362867,126590024,3158,1320,130362867,126590024,158840,61938,641081822,618982000,100,100,100,100,1.99,2.13,20.33,20.45
-68061,31,021,31021,2504,1197,396734601,391618123,2504,1197,396734601,391618123,6858,3467,1287387501,1273189665,100,100,100,100,36.51,34.53,30.82,30.76
-68062,31,173,31173,311,130,109430097,109211431,311,130,109430097,109211431,6940,2408,1025835946,1019377309,100,100,100,100,4.48,5.4,10.67,10.71
-68063,31,053,31053,234,135,4553237,4540549,234,135,4553237,4540549,36691,16584,1406362112,1369341649,100,100,100,100,0.64,0.81,0.32,0.33
-68064,31,055,31055,3240,1609,130048659,121281478,3376,1677,133410535,124623248,517110,219580,878904279,850693384,95.97,95.95,97.48,97.32,0.63,0.73,14.8,14.26
-68064,31,155,31155,131,65,2472954,2452848,3376,1677,133410535,124623248,20780,9221,1967924345,1943096642,3.88,3.88,1.85,1.97,0.63,0.7,0.13,0.13
-68064,31,177,31177,5,3,888922,888922,3376,1677,133410535,124623248,20234,8301,1018373698,1009986004,0.15,0.18,0.67,0.71,0.02,0.04,0.09,0.09
-68065,31,109,31109,329,118,67374380,67033018,1510,648,237031352,235680373,285407,120875,2192117375,2169240553,21.79,18.21,28.42,28.44,0.12,0.1,3.07,3.09
-68065,31,155,31155,1132,507,152438720,151715474,1510,648,237031352,235680373,20780,9221,1967924345,1943096642,74.97,78.24,64.31,64.37,5.45,5.5,7.75,7.81
-68065,31,159,31159,49,23,17218252,16931881,1510,648,237031352,235680373,16750,6875,1491538271,1479990428,3.25,3.55,7.26,7.18,0.29,0.33,1.15,1.14
-68066,31,155,31155,5640,2367,237489621,237092444,5640,2367,237489621,237092444,20780,9221,1967924345,1943096642,100,100,100,100,27.14,25.67,12.07,12.2
-68067,31,173,31173,1288,413,146652173,146489360,1288,413,146652173,146489360,6940,2408,1025835946,1019377309,100,100,100,100,18.56,17.15,14.3,14.37
-68068,31,177,31177,127,49,442649,442649,127,49,442649,442649,20234,8301,1018373698,1009986004,100,100,100,100,0.63,0.59,0.04,0.04
-68069,31,055,31055,2532,1346,80316520,72534618,2558,1386,88966757,78362680,517110,219580,878904279,850693384,98.98,97.11,90.28,92.56,0.49,0.61,9.14,8.53
-68069,31,153,31153,26,40,8650237,5828062,2558,1386,88966757,78362680,158840,61938,641081822,618982000,1.02,2.89,9.72,7.44,0.02,0.06,1.35,0.94
-68070,31,155,31155,836,351,169544899,169061031,836,351,169544899,169061031,20780,9221,1967924345,1943096642,100,100,100,100,4.02,3.81,8.62,8.7
-68071,31,173,31173,1934,564,196738893,194469862,1934,564,196738893,194469862,6940,2408,1025835946,1019377309,100,100,100,100,27.87,23.42,19.18,19.08
-68072,31,053,31053,66,28,99803,99803,66,28,99803,99803,36691,16584,1406362112,1369341649,100,100,100,100,0.18,0.17,0.01,0.01
-68073,31,155,31155,1960,769,118383801,111321627,1960,769,118383801,111321627,20780,9221,1967924345,1943096642,100,100,100,100,9.43,8.34,6.02,5.73
-68102,31,055,31055,6102,3495,5010644,4645662,6102,3495,5010644,4645662,517110,219580,878904279,850693384,100,100,100,100,1.18,1.59,0.57,0.55
-68104,31,055,31055,34664,15099,17103770,17058327,34664,15099,17103770,17058327,517110,219580,878904279,850693384,100,100,100,100,6.7,6.88,1.95,2.01
-68105,31,055,31055,23842,10707,9752585,9746876,23842,10707,9752585,9746876,517110,219580,878904279,850693384,100,100,100,100,4.61,4.88,1.11,1.15
-68106,31,055,31055,19936,9894,13105197,13054674,19936,9894,13105197,13054674,517110,219580,878904279,850693384,100,100,100,100,3.86,4.51,1.49,1.53
-68107,31,055,31055,29491,9996,17601144,17081950,29491,9996,17601144,17081950,517110,219580,878904279,850693384,100,100,100,100,5.7,4.55,2,2.01
-68108,31,055,31055,14664,5728,8601104,8351422,14664,5728,8601104,8351422,517110,219580,878904279,850693384,100,100,100,100,2.84,2.61,0.98,0.98
-68110,31,055,31055,9173,3352,24674659,22322242,9173,3352,24674659,22322242,517110,219580,878904279,850693384,100,100,100,100,1.77,1.53,2.81,2.62
-68111,31,055,31055,23393,9665,13589354,13569629,23393,9665,13589354,13569629,517110,219580,878904279,850693384,100,100,100,100,4.52,4.4,1.55,1.6
-68112,31,055,31055,11393,4604,27900946,26231833,11508,4668,41712844,39255444,517110,219580,878904279,850693384,99,98.63,66.89,66.82,2.2,2.1,3.17,3.08
-68112,31,177,31177,115,64,13811898,13023611,11508,4668,41712844,39255444,20234,8301,1018373698,1009986004,1,1.37,33.11,33.18,0.57,0.77,1.36,1.29
-68113,31,153,31153,994,242,8203567,8163479,994,242,8203567,8163479,158840,61938,641081822,618982000,100,100,100,100,0.63,0.39,1.28,1.32
-68114,31,055,31055,16928,8847,15178708,15042981,16928,8847,15178708,15042981,517110,219580,878904279,850693384,100,100,100,100,3.27,4.03,1.73,1.77
-68116,31,055,31055,25429,9876,23419340,23303297,25429,9876,23419340,23303297,517110,219580,878904279,850693384,100,100,100,100,4.92,4.5,2.66,2.74
-68117,31,055,31055,8032,3205,11874732,11798424,8032,3205,11874732,11798424,517110,219580,878904279,850693384,100,100,100,100,1.55,1.46,1.35,1.39
-68118,31,055,31055,9389,3441,10480433,10427004,9389,3441,10480433,10427004,517110,219580,878904279,850693384,100,100,100,100,1.82,1.57,1.19,1.23
-68122,31,055,31055,9520,3693,39547061,37380107,9794,3796,52230420,50063353,517110,219580,878904279,850693384,97.2,97.29,75.72,74.67,1.84,1.68,4.5,4.39
-68122,31,177,31177,274,103,12683359,12683246,9794,3796,52230420,50063353,20234,8301,1018373698,1009986004,2.8,2.71,24.28,25.33,1.35,1.24,1.25,1.26
-68123,31,153,31153,27926,11280,62869444,59381093,27926,11280,62869444,59381093,158840,61938,641081822,618982000,100,100,100,100,17.58,18.21,9.81,9.59
-68124,31,055,31055,15690,7074,14953710,14864659,15690,7074,14953710,14864659,517110,219580,878904279,850693384,100,100,100,100,3.03,3.22,1.7,1.75
-68127,31,055,31055,21117,10282,17287972,17229210,21117,10282,17287972,17229210,517110,219580,878904279,850693384,100,100,100,100,4.08,4.68,1.97,2.03
-68128,31,153,31153,17784,7333,16596094,16587189,17784,7333,16596094,16587189,158840,61938,641081822,618982000,100,100,100,100,11.2,11.84,2.59,2.68
-68130,31,055,31055,17972,6983,20326035,19764618,17972,6983,20326035,19764618,517110,219580,878904279,850693384,100,100,100,100,3.48,3.18,2.31,2.32
-68131,31,055,31055,12302,6535,5270224,5270224,12302,6535,5270224,5270224,517110,219580,878904279,850693384,100,100,100,100,2.38,2.98,0.6,0.62
-68132,31,055,31055,14101,6549,6820258,6813565,14101,6549,6820258,6813565,517110,219580,878904279,850693384,100,100,100,100,2.73,2.98,0.78,0.8
-68133,31,153,31153,9703,3275,46099874,45569788,9703,3275,46099874,45569788,158840,61938,641081822,618982000,100,100,100,100,6.11,5.29,7.19,7.36
-68134,31,055,31055,28257,13213,22215809,22155789,28257,13213,22215809,22155789,517110,219580,878904279,850693384,100,100,100,100,5.46,6.02,2.53,2.6
-68135,31,055,31055,25875,8450,21314801,20747084,25875,8450,21314801,20747084,517110,219580,878904279,850693384,100,100,100,100,5,3.85,2.43,2.44
-68136,31,153,31153,13829,4941,22302991,22030699,13829,4941,22302991,22030699,158840,61938,641081822,618982000,100,100,100,100,8.71,7.98,3.48,3.56
-68137,31,055,31055,24921,10541,21579584,21468364,24921,10541,21579584,21468364,517110,219580,878904279,850693384,100,100,100,100,4.82,4.8,2.46,2.52
-68138,31,153,31153,12013,4742,31974949,31294556,12013,4742,31974949,31294556,158840,61938,641081822,618982000,100,100,100,100,7.56,7.66,4.99,5.06
-68142,31,055,31055,2841,1177,37284331,37172329,3072,1262,48755900,48643756,517110,219580,878904279,850693384,92.48,93.26,76.47,76.42,0.55,0.54,4.24,4.37
-68142,31,177,31177,231,85,11471569,11471427,3072,1262,48755900,48643756,20234,8301,1018373698,1009986004,7.52,6.74,23.53,23.58,1.14,1.02,1.13,1.14
-68144,31,055,31055,24233,10374,19416484,19371385,24233,10374,19416484,19371385,517110,219580,878904279,850693384,100,100,100,100,4.69,4.72,2.21,2.28
-68147,31,055,31055,205,63,43226,43226,10351,3916,13084045,13079652,517110,219580,878904279,850693384,1.98,1.61,0.33,0.33,0.04,0.03,0,0.01
-68147,31,153,31153,10146,3853,13040819,13036426,10351,3916,13084045,13079652,158840,61938,641081822,618982000,98.02,98.39,99.67,99.67,6.39,6.22,2.03,2.11
-68152,31,055,31055,5547,2454,28894157,28714498,5837,2572,35473901,35294242,517110,219580,878904279,850693384,95.03,95.41,81.45,81.36,1.07,1.12,3.29,3.38
-68152,31,177,31177,290,118,6579744,6579744,5837,2572,35473901,35294242,20234,8301,1018373698,1009986004,4.97,4.59,18.55,18.64,1.43,1.42,0.65,0.65
-68154,31,055,31055,22692,10476,17176992,16977410,22692,10476,17176992,16977410,517110,219580,878904279,850693384,100,100,100,100,4.39,4.77,1.95,2
-68157,31,055,31055,114,39,21158,21158,5213,1979,6536730,6503544,517110,219580,878904279,850693384,2.19,1.97,0.32,0.33,0.02,0.02,0,0
-68157,31,153,31153,5099,1940,6515572,6482386,5213,1979,6536730,6503544,158840,61938,641081822,618982000,97.81,98.03,99.68,99.67,3.21,3.13,1.02,1.05
-68164,31,055,31055,27387,11865,23616671,23025222,27387,11865,23616671,23025222,517110,219580,878904279,850693384,100,100,100,100,5.3,5.4,2.69,2.71
-68178,31,055,31055,1573,0,300473,300473,1573,0,300473,300473,517110,219580,878904279,850693384,100,0,100,100,0.3,0,0.03,0.04
-68301,31,067,31067,1198,483,209418529,207864760,1466,587,263508656,261752004,22311,10446,2227280892,2205352156,81.72,82.28,79.47,79.41,5.37,4.62,9.4,9.43
-68301,31,109,31109,203,78,46114175,45911292,1466,587,263508656,261752004,285407,120875,2192117375,2169240553,13.85,13.29,17.5,17.54,0.07,0.06,2.1,2.12
-68301,31,131,31131,65,26,7975952,7975952,1466,587,263508656,261752004,15740,7025,1603251165,1594475793,4.43,4.43,3.03,3.05,0.41,0.37,0.5,0.5
-68303,31,169,31169,289,164,158918681,158649116,289,164,158918681,158649116,5228,2731,1489178679,1486153333,100,100,100,100,5.53,6.01,10.67,10.68
-68304,31,025,31025,330,143,57047213,57003039,330,143,57047213,57003039,25241,11117,1465651744,1443778631,100,100,100,100,1.31,1.29,3.89,3.95
-68305,31,127,31127,4389,2157,367564703,367377211,4389,2157,367564703,367377211,7248,3498,1060870466,1055115270,100,100,100,100,60.55,61.66,34.65,34.82
-68307,31,025,31025,413,185,60823248,60823248,515,234,104974777,104810725,25241,11117,1465651744,1443778631,80.19,79.06,57.94,58.03,1.64,1.66,4.15,4.21
-68307,31,131,31131,102,49,44151529,43987477,515,234,104974777,104810725,15740,7025,1603251165,1594475793,19.81,20.94,42.06,41.97,0.65,0.7,2.75,2.76
-68309,31,067,31067,121,58,4753108,4737174,121,58,4753108,4737174,22311,10446,2227280892,2205352156,100,100,100,100,0.54,0.56,0.21,0.21
-68310,31,067,31067,14546,6905,545560802,539607148,14546,6905,545560802,539607148,22311,10446,2227280892,2205352156,100,100,100,100,65.2,66.1,24.49,24.47
-68313,31,159,31159,900,393,195771704,194386851,900,393,195771704,194386851,16750,6875,1491538271,1479990428,100,100,100,100,5.37,5.72,13.13,13.13
-68314,31,159,31159,351,162,85280521,84556681,351,162,85280521,84556681,16750,6875,1491538271,1479990428,100,100,100,100,2.1,2.36,5.72,5.71
-68315,31,169,31169,129,72,100316063,100280703,129,72,100316063,100280703,5228,2731,1489178679,1486153333,100,100,100,100,2.47,2.64,6.74,6.75
-68316,31,143,31143,25,13,15632936,15612091,447,201,143466563,142965248,5406,2731,1141257282,1135308002,5.59,6.47,10.9,10.92,0.46,0.48,1.37,1.38
-68316,31,185,31185,422,188,127833627,127353157,447,201,143466563,142965248,13665,6231,1491389116,1482793088,94.41,93.53,89.1,89.08,3.09,3.02,8.57,8.59
-68317,31,109,31109,1478,615,108620030,108620030,1495,624,116097369,116097369,285407,120875,2192117375,2169240553,98.86,98.56,93.56,93.56,0.52,0.51,4.96,5.01
-68317,31,131,31131,17,9,7477339,7477339,1495,624,116097369,116097369,15740,7025,1603251165,1594475793,1.14,1.44,6.44,6.44,0.11,0.13,0.47,0.47
-68318,31,067,31067,526,260,124250800,122680767,526,260,124250800,122680767,22311,10446,2227280892,2205352156,100,100,100,100,2.36,2.49,5.58,5.56
-68319,31,185,31185,552,266,182401634,180933271,552,266,182401634,180933271,13665,6231,1491389116,1482793088,100,100,100,100,4.04,4.27,12.23,12.2
-68320,31,127,31127,369,196,153142936,153103523,369,196,153142936,153103523,7248,3498,1060870466,1055115270,100,100,100,100,5.09,5.6,14.44,14.51
-68321,31,127,31127,311,190,73744689,72669843,311,190,73744689,72669843,7248,3498,1060870466,1055115270,100,100,100,100,4.29,5.43,6.95,6.89
-68322,31,059,31059,38,16,47472667,47472667,440,225,144331289,144216408,5890,2913,1493192799,1490202759,8.64,7.11,32.89,32.92,0.65,0.55,3.18,3.19
-68322,31,169,31169,402,209,96858622,96743741,440,225,144331289,144216408,5228,2731,1489178679,1486153333,91.36,92.89,67.11,67.08,7.69,7.65,6.5,6.51
-68323,31,133,31133,315,221,283849204,280652659,315,221,283849204,280652659,2773,1588,1121330489,1116478095,100,100,100,100,11.36,13.92,25.31,25.14
-68324,31,131,31131,174,91,74658687,74658687,174,91,74658687,74658687,15740,7025,1603251165,1594475793,100,100,100,100,1.11,1.3,4.66,4.68
-68325,20,157,20157,34,19,52276203,52152957,232,143,130644603,130474715,4980,2877,1865948766,1857981647,14.66,13.29,40.01,39.97,0.68,0.66,2.8,2.81
-68325,31,169,31169,198,124,78368400,78321758,232,143,130644603,130474715,5228,2731,1489178679,1486153333,85.34,86.71,59.99,60.03,3.79,4.54,5.26,5.27
-68326,31,169,31169,241,109,117598317,117482644,241,109,117598317,117482644,5228,2731,1489178679,1486153333,100,100,100,100,4.61,3.99,7.9,7.91
-68327,31,169,31169,299,184,82259773,82056838,299,184,82259773,82056838,5228,2731,1489178679,1486153333,100,100,100,100,5.72,6.74,5.52,5.52
-68328,31,067,31067,429,215,87934142,87060623,429,215,87934142,87060623,22311,10446,2227280892,2205352156,100,100,100,100,1.92,2.06,3.95,3.95
-68329,31,097,31097,540,269,133885556,133448067,673,338,188607305,188141883,5217,2191,975734795,973968264,80.24,79.59,70.99,70.93,10.35,12.28,13.72,13.7
-68329,31,131,31131,133,69,54721749,54693816,673,338,188607305,188141883,15740,7025,1603251165,1594475793,19.76,20.41,29.01,29.07,0.84,0.98,3.41,3.43
-68331,31,067,31067,961,401,131193753,130268018,961,401,131193753,130268018,22311,10446,2227280892,2205352156,100,100,100,100,4.31,3.84,5.89,5.91
-68332,31,097,31097,146,83,115813150,115737633,146,83,115813150,115737633,5217,2191,975734795,973968264,100,100,100,100,2.8,3.79,11.87,11.88
-68333,31,109,31109,571,246,102642286,101624461,8327,2995,302846577,299846319,285407,120875,2192117375,2169240553,6.86,8.21,33.89,33.89,0.2,0.2,4.68,4.68
-68333,31,151,31151,7756,2749,200204291,198221858,8327,2995,302846577,299846319,14200,5762,1492633324,1486698620,93.14,91.79,66.11,66.11,54.62,47.71,13.41,13.33
-68335,31,129,31129,82,34,71616957,71533858,518,275,198937010,198781576,4500,2465,1491363697,1489645213,15.83,12.36,36,35.99,1.82,1.38,4.8,4.8
-68335,31,169,31169,436,241,127320053,127247718,518,275,198937010,198781576,5228,2731,1489178679,1486153333,84.17,87.64,64,64.01,8.34,8.82,8.55,8.56
-68336,31,109,31109,557,223,51061089,50681226,557,223,51061089,50681226,285407,120875,2192117375,2169240553,100,100,100,100,0.2,0.18,2.33,2.34
-68337,31,147,31147,383,216,179231563,179190921,383,216,179231563,179190921,8363,4393,1436336396,1429258779,100,100,100,100,4.58,4.92,12.48,12.54
-68338,31,095,31095,324,163,148649847,147839201,324,163,148649847,147839201,7547,3918,1490976260,1476771431,100,100,100,100,4.29,4.16,9.97,10.01
-68339,31,109,31109,1257,478,103037660,101755176,1311,498,113445771,112072289,285407,120875,2192117375,2169240553,95.88,95.98,90.83,90.79,0.44,0.4,4.7,4.69
-68339,31,159,31159,54,20,10408111,10317113,1311,498,113445771,112072289,16750,6875,1491538271,1479990428,4.12,4.02,9.17,9.21,0.32,0.29,0.7,0.7
-68340,31,169,31169,992,504,163488351,163227183,992,504,163488351,163227183,5228,2731,1489178679,1486153333,100,100,100,100,18.97,18.45,10.98,10.98
-68341,31,067,31067,268,123,132090891,130741389,1041,477,258619654,256607751,22311,10446,2227280892,2205352156,25.74,25.79,51.08,50.95,1.2,1.18,5.93,5.93
-68341,31,095,31095,43,16,15613620,15564389,1041,477,258619654,256607751,7547,3918,1490976260,1476771431,4.13,3.35,6.04,6.07,0.57,0.41,1.05,1.05
-68341,31,151,31151,730,338,110915143,110301973,1041,477,258619654,256607751,14200,5762,1492633324,1486698620,70.12,70.86,42.89,42.98,5.14,5.87,7.43,7.42
-68342,31,067,31067,53,29,48613121,47679590,530,259,187903493,185754310,22311,10446,2227280892,2205352156,10,11.2,25.87,25.67,0.24,0.28,2.18,2.16
-68342,31,095,31095,477,230,139290372,138074720,530,259,187903493,185754310,7547,3918,1490976260,1476771431,90,88.8,74.13,74.33,6.32,5.87,9.34,9.35
-68343,31,151,31151,1027,446,224566437,223633907,1050,457,238646437,237542721,14200,5762,1492633324,1486698620,97.81,97.59,94.1,94.14,7.23,7.74,15.04,15.04
-68343,31,159,31159,23,11,14080000,13908814,1050,457,238646437,237542721,16750,6875,1491538271,1479990428,2.19,2.41,5.9,5.86,0.14,0.16,0.94,0.94
-68344,31,131,31131,441,214,104315314,104063559,441,214,104315314,104063559,15740,7025,1603251165,1594475793,100,100,100,100,2.8,3.05,6.51,6.53
-68345,31,133,31133,246,137,88666421,88385216,269,157,126627833,126335267,2773,1588,1121330489,1116478095,91.45,87.26,70.02,69.96,8.87,8.63,7.91,7.92
-68345,31,147,31147,23,20,37961412,37950051,269,157,126627833,126335267,8363,4393,1436336396,1429258779,8.55,12.74,29.98,30.04,0.28,0.46,2.64,2.66
-68346,31,131,31131,493,209,141874420,140674597,493,209,141874420,140674597,15740,7025,1603251165,1594475793,100,100,100,100,3.13,2.98,8.85,8.82
-68347,31,025,31025,2035,752,58543953,58441684,2570,953,88946932,88818031,25241,11117,1465651744,1443778631,79.18,78.91,65.82,65.8,8.06,6.76,3.99,4.05
-68347,31,109,31109,85,24,2584479,2584479,2570,953,88946932,88818031,285407,120875,2192117375,2169240553,3.31,2.52,2.91,2.91,0.03,0.02,0.12,0.12
-68347,31,131,31131,450,177,27818500,27791868,2570,953,88946932,88818031,15740,7025,1603251165,1594475793,17.51,18.57,31.28,31.29,2.86,2.52,1.74,1.74
-68348,31,097,31097,256,137,101264484,101140513,256,137,101264484,101140513,5217,2191,975734795,973968264,100,100,100,100,4.91,6.25,10.38,10.38
-68349,31,025,31025,1098,454,130721206,130254633,1098,454,130721206,130254633,25241,11117,1465651744,1443778631,100,100,100,100,4.35,4.08,8.92,9.02
-68350,31,095,31095,216,112,66324389,64427951,216,112,66324389,64427951,7547,3918,1490976260,1476771431,100,100,100,100,2.86,2.86,4.45,4.36
-68351,31,059,31059,778,370,170518109,170392666,853,412,239090872,238629866,5890,2913,1493192799,1490202759,91.21,89.81,71.32,71.4,13.21,12.7,11.42,11.43
-68351,31,185,31185,75,42,68572763,68237200,853,412,239090872,238629866,13665,6231,1491389116,1482793088,8.79,10.19,28.68,28.6,0.55,0.67,4.6,4.6
-68352,31,095,31095,5222,2775,758923273,752474623,5222,2775,758923273,752474623,7547,3918,1490976260,1476771431,100,100,100,100,69.19,70.83,50.9,50.95
-68354,31,059,31059,806,421,236483098,235007472,839,437,262055083,260210422,5890,2913,1493192799,1490202759,96.07,96.34,90.24,90.31,13.68,14.45,15.84,15.77
-68354,31,185,31185,33,16,25571985,25202950,839,437,262055083,260210422,13665,6231,1491389116,1482793088,3.93,3.66,9.76,9.69,0.24,0.26,1.71,1.7
-68355,31,147,31147,5113,2570,394232493,391861651,5113,2570,394232493,391861651,8363,4393,1436336396,1429258779,100,100,100,100,61.14,58.5,27.45,27.42
-68357,31,067,31067,421,190,135349161,134031335,421,190,135349161,134031335,22311,10446,2227280892,2205352156,100,100,100,100,1.89,1.82,6.08,6.08
-68358,31,067,31067,388,121,43940865,43725632,1877,616,124962941,124442280,22311,10446,2227280892,2205352156,20.67,19.64,35.16,35.14,1.74,1.16,1.97,1.98
-68358,31,109,31109,1489,495,81022076,80716648,1877,616,124962941,124442280,285407,120875,2192117375,2169240553,79.33,80.36,64.84,64.86,0.52,0.41,3.7,3.72
-68359,31,151,31151,1355,671,273168703,272880733,1585,775,319926846,319442360,14200,5762,1492633324,1486698620,85.49,86.58,85.38,85.42,9.54,11.65,18.3,18.35
-68359,31,159,31159,230,104,46758143,46561627,1585,775,319926846,319442360,16750,6875,1491538271,1479990428,14.51,13.42,14.62,14.58,1.37,1.51,3.13,3.15
-68360,31,159,31159,501,207,57055526,56605306,501,207,57055526,56605306,16750,6875,1491538271,1479990428,100,100,100,100,2.99,3.01,3.83,3.82
-68361,31,059,31059,2573,1215,251051025,250980266,2573,1215,251051025,250980266,5890,2913,1493192799,1490202759,100,100,100,100,43.68,41.71,16.81,16.84
-68362,31,169,31169,46,27,12749252,12729491,46,27,12749252,12729491,5228,2731,1489178679,1486153333,100,100,100,100,0.88,0.99,0.86,0.86
-68364,31,159,31159,142,73,345832,345832,142,73,345832,345832,16750,6875,1491538271,1479990428,100,100,100,100,0.85,1.06,0.02,0.02
-68365,31,059,31059,245,122,141296354,141011868,245,122,141296354,141011868,5890,2913,1493192799,1490202759,100,100,100,100,4.16,4.19,9.46,9.46
-68366,31,025,31025,952,384,95925600,95450148,1047,425,134825851,134350399,25241,11117,1465651744,1443778631,90.93,90.35,71.15,71.05,3.77,3.45,6.54,6.61
-68366,31,109,31109,95,41,38900251,38900251,1047,425,134825851,134350399,285407,120875,2192117375,2169240553,9.07,9.65,28.85,28.95,0.03,0.03,1.77,1.79
-68367,31,143,31143,58,29,56216062,56084275,461,238,175597245,175112108,5406,2731,1141257282,1135308002,12.58,12.18,32.01,32.03,1.07,1.06,4.93,4.94
-68367,31,159,31159,80,33,57734064,57565843,461,238,175597245,175112108,16750,6875,1491538271,1479990428,17.35,13.87,32.88,32.87,0.48,0.48,3.87,3.89
-68367,31,185,31185,323,176,61647119,61461990,461,238,175597245,175112108,13665,6231,1491389116,1482793088,70.07,73.95,35.11,35.1,2.36,2.82,4.13,4.15
-68368,31,109,31109,485,193,92993588,92166781,485,193,92993588,92166781,285407,120875,2192117375,2169240553,100,100,100,100,0.17,0.16,4.24,4.25
-68370,31,169,31169,2075,1020,444564569,443584858,2075,1020,444564569,443584858,5228,2731,1489178679,1486153333,100,100,100,100,39.69,37.35,29.85,29.85
-68371,31,081,31081,119,43,51127380,50899190,1467,682,203765009,202924394,9124,3968,1416778181,1406047715,8.11,6.3,25.09,25.08,1.3,1.08,3.61,3.62
-68371,31,185,31185,1348,639,152637629,152025204,1467,682,203765009,202924394,13665,6231,1491389116,1482793088,91.89,93.7,74.91,74.92,9.86,10.26,10.23,10.25
-68372,31,109,31109,2827,1033,95503491,93111444,2827,1033,95503491,93111444,285407,120875,2192117375,2169240553,100,100,100,100,0.99,0.85,4.36,4.29
-68375,31,169,31169,121,77,106736598,105829283,121,77,106736598,105829283,5228,2731,1489178679,1486153333,100,100,100,100,2.31,2.82,7.17,7.12
-68376,31,127,31127,69,38,47968836,47968836,1445,767,382904641,382131836,7248,3498,1060870466,1055115270,4.78,4.95,12.53,12.55,0.95,1.09,4.52,4.55
-68376,31,133,31133,32,18,31238088,31238088,1445,767,382904641,382131836,2773,1588,1121330489,1116478095,2.21,2.35,8.16,8.17,1.15,1.13,2.79,2.8
-68376,31,147,31147,1344,711,303697717,302924912,1445,767,382904641,382131836,8363,4393,1436336396,1429258779,93.01,92.7,79.31,79.27,16.07,16.18,21.14,21.19
-68377,31,095,31095,425,202,139277346,137655822,425,202,139277346,137655822,7547,3918,1490976260,1476771431,100,100,100,100,5.63,5.16,9.34,9.32
-68378,31,097,31097,27,21,19420290,19276362,680,343,169112657,168916631,5217,2191,975734795,973968264,3.97,6.12,11.48,11.41,0.52,0.96,1.99,1.98
-68378,31,127,31127,653,322,149692367,149640269,680,343,169112657,168916631,7248,3498,1060870466,1055115270,96.03,93.88,88.52,88.59,9.01,9.21,14.11,14.18
-68379,31,127,31127,59,38,227491,227491,59,38,227491,227491,7248,3498,1060870466,1055115270,100,100,100,100,0.81,1.09,0.02,0.02
-68380,31,133,31133,81,43,10496724,10456081,81,43,10496724,10456081,2773,1588,1121330489,1116478095,100,100,100,100,2.92,2.71,0.94,0.94
-68381,31,067,31067,210,98,121237650,120346934,249,115,162227295,160753499,22311,10446,2227280892,2205352156,84.34,85.22,74.73,74.86,0.94,0.94,5.44,5.46
-68381,31,133,31133,39,17,40989645,40406565,249,115,162227295,160753499,2773,1588,1121330489,1116478095,15.66,14.78,25.27,25.14,1.41,1.07,3.66,3.62
-68382,31,131,31131,41,20,104075,104075,41,20,104075,104075,15740,7025,1603251165,1594475793,100,100,100,100,0.26,0.28,0.01,0.01
-68401,31,185,31185,717,322,116278819,115069964,717,322,116278819,115069964,13665,6231,1491389116,1482793088,100,100,100,100,5.25,5.17,7.8,7.76
-68402,31,109,31109,1210,478,85624418,85624418,1210,478,85624418,85624418,285407,120875,2192117375,2169240553,100,100,100,100,0.42,0.4,3.91,3.95
-68403,31,025,31025,206,80,1662788,1659658,206,80,1662788,1659658,25241,11117,1465651744,1443778631,100,100,100,100,0.82,0.72,0.11,0.11
-68404,31,109,31109,902,366,127952864,126601297,902,366,127952864,126601297,285407,120875,2192117375,2169240553,100,100,100,100,0.32,0.3,5.84,5.84
-68405,31,159,31159,3257,1276,206968346,204766573,3257,1276,206968346,204766573,16750,6875,1491538271,1479990428,100,100,100,100,19.44,18.56,13.88,13.84
-68406,31,059,31059,406,246,95135727,95113499,458,271,138743179,138720951,5890,2913,1493192799,1490202759,88.65,90.77,68.57,68.56,6.89,8.44,6.37,6.38
-68406,31,151,31151,52,25,43607452,43607452,458,271,138743179,138720951,14200,5762,1492633324,1486698620,11.35,9.23,31.43,31.44,0.37,0.43,2.92,2.93
-68407,31,025,31025,747,328,118589051,118381675,747,328,118589051,118381675,25241,11117,1465651744,1443778631,100,100,100,100,2.96,2.95,8.09,8.2
-68409,31,025,31025,807,343,80690368,80677608,807,343,80690368,80677608,25241,11117,1465651744,1443778631,100,100,100,100,3.2,3.09,5.51,5.59
-68410,31,131,31131,8716,3859,398681906,393061873,8716,3859,398681906,393061873,15740,7025,1603251165,1594475793,100,100,100,100,55.37,54.93,24.87,24.65
-68413,31,025,31025,501,226,115950519,115930621,533,240,131577358,131557460,25241,11117,1465651744,1443778631,94,94.17,88.12,88.12,1.98,2.03,7.91,8.03
-68413,31,131,31131,32,14,15626839,15626839,533,240,131577358,131557460,15740,7025,1603251165,1594475793,6,5.83,11.88,11.88,0.2,0.2,0.97,0.98
-68414,31,127,31127,256,156,129098857,126307191,256,156,129098857,126307191,7248,3498,1060870466,1055115270,100,100,100,100,3.53,4.46,12.17,11.97
-68415,31,067,31067,649,288,186186098,184313874,649,288,186186098,184313874,22311,10446,2227280892,2205352156,100,100,100,100,2.91,2.76,8.36,8.36
-68416,31,059,31059,226,128,117760681,117639439,226,128,117760681,117639439,5890,2913,1493192799,1490202759,100,100,100,100,3.84,4.39,7.89,7.89
-68417,31,131,31131,292,133,62424176,62053860,292,133,62424176,62053860,15740,7025,1603251165,1594475793,100,100,100,100,1.86,1.89,3.89,3.89
-68418,31,131,31131,1070,458,170318658,170268892,1070,458,170318658,170268892,15740,7025,1603251165,1594475793,100,100,100,100,6.8,6.52,10.62,10.68
-68419,31,109,31109,256,100,734783,734783,256,100,734783,734783,285407,120875,2192117375,2169240553,100,100,100,100,0.09,0.08,0.03,0.03
-68420,31,133,31133,1285,735,350790002,350332884,1285,735,350790002,350332884,2773,1588,1121330489,1116478095,100,100,100,100,46.34,46.28,31.28,31.38
-68421,31,127,31127,1107,385,119530174,117920493,1107,385,119530174,117920493,7248,3498,1060870466,1055115270,100,100,100,100,15.27,11.01,11.27,11.18
-68422,31,067,31067,513,230,122051353,121127403,513,230,122051353,121127403,22311,10446,2227280892,2205352156,100,100,100,100,2.3,2.2,5.48,5.49
-68423,31,159,31159,898,391,141828107,139993732,898,391,141828107,139993732,16750,6875,1491538271,1479990428,100,100,100,100,5.36,5.69,9.51,9.46
-68424,31,095,31095,730,338,169068811,167159572,730,338,169068811,167159572,7547,3918,1490976260,1476771431,100,100,100,100,9.67,8.63,11.34,11.32
-68428,31,109,31109,1291,513,135175380,127789270,1375,544,141320003,133882327,285407,120875,2192117375,2169240553,93.89,94.3,95.65,95.45,0.45,0.42,6.17,5.89
-68428,31,159,31159,84,31,6144623,6093057,1375,544,141320003,133882327,16750,6875,1491538271,1479990428,6.11,5.7,4.35,4.55,0.5,0.45,0.41,0.41
-68430,31,109,31109,1402,537,114114107,114114107,1402,537,114114107,114114107,285407,120875,2192117375,2169240553,100,100,100,100,0.49,0.44,5.21,5.26
-68431,31,147,31147,353,219,128662143,124979086,353,219,128662143,124979086,8363,4393,1436336396,1429258779,100,100,100,100,4.22,4.99,8.96,8.74
-68433,31,147,31147,265,153,133724513,133689016,265,153,133724513,133689016,8363,4393,1436336396,1429258779,100,100,100,100,3.17,3.48,9.31,9.35
-68434,31,159,31159,8576,3468,414080376,411277939,8576,3468,414080376,411277939,16750,6875,1491538271,1479990428,100,100,100,100,51.2,50.44,27.76,27.79
-68436,31,059,31059,581,282,239797696,239507288,581,282,239797696,239507288,5890,2913,1493192799,1490202759,100,100,100,100,9.86,9.68,16.06,16.07
-68437,31,147,31147,261,158,78059431,77989776,261,158,78059431,77989776,8363,4393,1436336396,1429258779,100,100,100,100,3.12,3.6,5.43,5.46
-68438,31,109,31109,142,63,251649,251649,142,63,251649,251649,285407,120875,2192117375,2169240553,100,100,100,100,0.05,0.05,0.01,0.01
-68439,31,159,31159,478,213,94938683,94293848,478,213,94938683,94293848,16750,6875,1491538271,1479990428,100,100,100,100,2.85,3.1,6.37,6.37
-68440,31,095,31095,110,82,53828602,53575153,110,82,53828602,53575153,7547,3918,1490976260,1476771431,100,100,100,100,1.46,2.09,3.61,3.63
-68441,31,133,31133,302,143,163082142,162851653,302,143,163082142,162851653,2773,1588,1121330489,1116478095,100,100,100,100,10.89,9.01,14.54,14.59
-68442,31,127,31127,35,16,19900413,19900413,313,170,98026625,98026625,7248,3498,1060870466,1055115270,11.18,9.41,20.3,20.3,0.48,0.46,1.88,1.89
-68442,31,147,31147,278,154,78126212,78126212,313,170,98026625,98026625,8363,4393,1436336396,1429258779,88.82,90.59,79.7,79.7,3.32,3.51,5.44,5.47
-68443,31,097,31097,1047,483,269704488,269149678,1047,483,269704488,269149678,5217,2191,975734795,973968264,100,100,100,100,20.07,22.04,27.64,27.63
-68444,31,059,31059,97,52,69322261,69322261,97,52,69322261,69322261,5890,2913,1493192799,1490202759,100,100,100,100,1.65,1.79,4.64,4.65
-68445,31,151,31151,152,91,57075187,57075187,152,91,57075187,57075187,14200,5762,1492633324,1486698620,100,100,100,100,1.07,1.58,3.82,3.84
-68446,31,131,31131,2690,1210,261547173,260578122,2690,1210,261547173,260578122,15740,7025,1603251165,1594475793,100,100,100,100,17.09,17.22,16.31,16.34
-68447,31,097,31097,19,10,11249036,11249036,464,274,133207323,133184628,5217,2191,975734795,973968264,4.09,3.65,8.44,8.45,0.36,0.46,1.15,1.15
-68447,31,133,31133,445,264,121958287,121935592,464,274,133207323,133184628,2773,1588,1121330489,1116478095,95.91,96.35,91.56,91.55,16.05,16.62,10.88,10.92
-68448,31,131,31131,399,191,88665839,88569828,399,191,88665839,88569828,15740,7025,1603251165,1594475793,100,100,100,100,2.53,2.72,5.53,5.55
-68450,31,097,31097,3182,1188,324397791,323966975,3182,1188,324397791,323966975,5217,2191,975734795,973968264,100,100,100,100,60.99,54.22,33.25,33.26
-68452,31,035,31035,86,52,39860066,39860066,86,52,39860066,39860066,6542,3001,1485457739,1482222817,100,100,100,100,1.31,1.73,2.68,2.69
-68453,31,059,31059,26,12,25090817,24987608,304,172,154767781,154530415,5890,2913,1493192799,1490202759,8.55,6.98,16.21,16.17,0.44,0.41,1.68,1.68
-68453,31,151,31151,278,160,129676964,129542807,304,172,154767781,154530415,14200,5762,1492633324,1486698620,91.45,93.02,83.79,83.83,1.96,2.78,8.69,8.71
-68454,31,131,31131,625,296,142889009,142889009,625,296,142889009,142889009,15740,7025,1603251165,1594475793,100,100,100,100,3.97,4.21,8.91,8.96
-68455,31,025,31025,681,345,91327488,89906784,681,345,91327488,89906784,25241,11117,1465651744,1443778631,100,100,100,100,2.7,3.1,6.23,6.23
-68456,31,159,31159,1127,470,142925983,142385331,1127,470,142925983,142385331,16750,6875,1491538271,1479990428,100,100,100,100,6.73,6.84,9.58,9.62
-68457,31,147,31147,343,192,102640912,102547154,343,192,102640912,102547154,8363,4393,1436336396,1429258779,100,100,100,100,4.1,4.37,7.15,7.17
-68458,31,067,31067,135,75,61999832,61369878,135,75,61999832,61369878,22311,10446,2227280892,2205352156,100,100,100,100,0.61,0.72,2.78,2.78
-68460,31,185,31185,788,368,251055462,248977560,788,368,251055462,248977560,13665,6231,1491389116,1482793088,100,100,100,100,5.77,5.91,16.83,16.79
-68461,31,109,31109,734,278,62336176,62334067,734,278,62336176,62334067,285407,120875,2192117375,2169240553,100,100,100,100,0.26,0.23,2.84,2.87
-68462,31,025,31025,30,9,3189155,3189155,3827,1367,143801506,143264112,25241,11117,1465651744,1443778631,0.78,0.66,2.22,2.23,0.12,0.08,0.22,0.22
-68462,31,109,31109,3797,1358,140612351,140074957,3827,1367,143801506,143264112,285407,120875,2192117375,2169240553,99.22,99.34,97.78,97.77,1.33,1.12,6.41,6.46
-68463,31,025,31025,1517,664,147462199,147314852,1517,664,147462199,147314852,25241,11117,1465651744,1443778631,100,100,100,100,6.01,5.97,10.06,10.2
-68464,31,151,31151,478,266,208438080,208269011,478,266,208438080,208269011,14200,5762,1492633324,1486698620,100,100,100,100,3.37,4.62,13.96,14.01
-68465,31,067,31067,32,15,15970551,15924293,2404,1031,260951618,259089985,22311,10446,2227280892,2205352156,1.33,1.45,6.12,6.15,0.14,0.14,0.72,0.72
-68465,31,151,31151,2372,1016,244981067,243165692,2404,1031,260951618,259089985,14200,5762,1492633324,1486698620,98.67,98.55,93.88,93.85,16.7,17.63,16.41,16.36
-68466,31,067,31067,1861,955,256730236,253873338,1861,955,256730236,253873338,22311,10446,2227280892,2205352156,100,100,100,100,8.34,9.14,11.53,11.51
-68467,31,185,31185,9338,4183,468438595,466708293,9338,4183,468438595,466708293,13665,6231,1491389116,1482793088,100,100,100,100,68.34,67.13,31.41,31.47
-68502,31,109,31109,26238,12001,15311130,15309818,26238,12001,15311130,15309818,285407,120875,2192117375,2169240553,100,100,100,100,9.19,9.93,0.7,0.71
-68503,31,109,31109,15264,6572,7656099,7656099,15264,6572,7656099,7656099,285407,120875,2192117375,2169240553,100,100,100,100,5.35,5.44,0.35,0.35
-68504,31,109,31109,16444,8205,17687308,17336291,16444,8205,17687308,17336291,285407,120875,2192117375,2169240553,100,100,100,100,5.76,6.79,0.81,0.8
-68505,31,109,31109,15137,6847,9708777,9708777,15137,6847,9708777,9708777,285407,120875,2192117375,2169240553,100,100,100,100,5.3,5.66,0.44,0.45
-68506,31,109,31109,27952,13228,19021432,18624692,27952,13228,19021432,18624692,285407,120875,2192117375,2169240553,100,100,100,100,9.79,10.94,0.87,0.86
-68507,31,109,31109,13429,6086,26650121,26650121,13429,6086,26650121,26650121,285407,120875,2192117375,2169240553,100,100,100,100,4.71,5.03,1.22,1.23
-68508,31,109,31109,14475,4814,7923212,7648228,14475,4814,7923212,7648228,285407,120875,2192117375,2169240553,100,100,100,100,5.07,3.98,0.36,0.35
-68510,31,109,31109,20514,9917,15150899,15074870,20514,9917,15150899,15074870,285407,120875,2192117375,2169240553,100,100,100,100,7.19,8.2,0.69,0.69
-68512,31,109,31109,11659,4740,23531211,23531211,11659,4740,23531211,23531211,285407,120875,2192117375,2169240553,100,100,100,100,4.09,3.92,1.07,1.08
-68514,31,109,31109,127,47,13397395,13373930,127,47,13397395,13373930,285407,120875,2192117375,2169240553,100,100,100,100,0.04,0.04,0.61,0.62
-68516,31,109,31109,38956,15813,49409778,49322145,38956,15813,49409778,49322145,285407,120875,2192117375,2169240553,100,100,100,100,13.65,13.08,2.25,2.27
-68517,31,109,31109,538,193,69809052,69413507,538,193,69809052,69413507,285407,120875,2192117375,2169240553,100,100,100,100,0.19,0.16,3.18,3.2
-68520,31,109,31109,1143,494,28732798,28705971,1143,494,28732798,28705971,285407,120875,2192117375,2169240553,100,100,100,100,0.4,0.41,1.31,1.32
-68521,31,109,31109,31733,12857,37687437,37458957,31733,12857,37687437,37458957,285407,120875,2192117375,2169240553,100,100,100,100,11.12,10.64,1.72,1.73
-68522,31,109,31109,12728,4274,28042619,27917278,12728,4274,28042619,27917278,285407,120875,2192117375,2169240553,100,100,100,100,4.46,3.54,1.28,1.29
-68523,31,109,31109,1390,506,41704355,41415516,1390,506,41704355,41415516,285407,120875,2192117375,2169240553,100,100,100,100,0.49,0.42,1.9,1.91
-68524,31,109,31109,5983,2020,82295845,79415055,5983,2020,82295845,79415055,285407,120875,2192117375,2169240553,100,100,100,100,2.1,1.67,3.75,3.66
-68526,31,109,31109,4800,1715,29201991,29190810,4800,1715,29201991,29190810,285407,120875,2192117375,2169240553,100,100,100,100,1.68,1.42,1.33,1.35
-68527,31,109,31109,696,275,70182861,70182861,696,275,70182861,70182861,285407,120875,2192117375,2169240553,100,100,100,100,0.24,0.23,3.2,3.24
-68528,31,109,31109,6285,2731,51479106,49796346,6285,2731,51479106,49796346,285407,120875,2192117375,2169240553,100,100,100,100,2.2,2.26,2.35,2.3
-68531,31,109,31109,48,19,10522148,10522148,48,19,10522148,10522148,285407,120875,2192117375,2169240553,100,100,100,100,0.02,0.02,0.48,0.49
-68532,31,109,31109,493,182,22806310,22806310,493,182,22806310,22806310,285407,120875,2192117375,2169240553,100,100,100,100,0.17,0.15,1.04,1.05
-68601,31,023,31023,289,207,10669028,9845558,28185,12031,774720578,747438819,8395,4053,1530193890,1514900899,1.03,1.72,1.38,1.32,3.44,5.11,0.7,0.65
-68601,31,037,31037,348,170,92924423,91310137,28185,12031,774720578,747438819,10515,4097,1078771809,1066193904,1.23,1.41,11.99,12.22,3.31,4.15,8.61,8.56
-68601,31,141,31141,27119,11227,591223278,566689116,28185,12031,774720578,747438819,32237,13378,1773078049,1745805649,96.22,93.32,76.31,75.82,84.12,83.92,33.34,32.46
-68601,31,143,31143,429,427,79903849,79594008,28185,12031,774720578,747438819,5406,2731,1141257282,1135308002,1.52,3.55,10.31,10.65,7.94,15.64,7,7.01
-68620,31,011,31011,2967,1406,793242808,792916822,2967,1406,793242808,792916822,5505,2649,1779884468,1778165884,100,100,100,100,53.9,53.08,44.57,44.59
-68621,31,053,31053,517,254,88700706,83598058,517,254,88700706,83598058,36691,16584,1406362112,1369341649,100,100,100,100,1.41,1.53,6.31,6.1
-68622,31,183,31183,275,140,453998003,453936813,275,140,453998003,453936813,818,576,1490774738,1489715284,100,100,100,100,33.62,24.31,30.45,30.47
-68623,31,125,31125,313,155,226671641,225432764,313,155,226671641,225432764,3735,1801,1160912381,1143824006,100,100,100,100,8.38,8.61,19.53,19.71
-68624,31,023,31023,1062,586,185301198,179374707,1062,586,185301198,179374707,8395,4053,1530193890,1514900899,100,100,100,100,12.65,14.46,12.11,11.84
-68626,31,023,31023,614,314,161841598,160738417,614,314,161841598,160738417,8395,4053,1530193890,1514900899,100,100,100,100,7.31,7.75,10.58,10.61
-68627,31,011,31011,622,328,331798576,331434552,622,328,331798576,331434552,5505,2649,1779884468,1778165884,100,100,100,100,11.3,12.38,18.64,18.64
-68628,31,081,31081,28,12,13422803,13402291,826,520,286059258,277333578,9124,3968,1416778181,1406047715,3.39,2.31,4.69,4.83,0.31,0.3,0.95,0.95
-68628,31,121,31121,709,463,218916581,212644701,826,520,286059258,277333578,7845,3698,1280742624,1255835783,85.84,89.04,76.53,76.67,9.04,12.52,17.09,16.93
-68628,31,143,31143,89,45,53719874,51286586,826,520,286059258,277333578,5406,2731,1141257282,1135308002,10.77,8.65,18.78,18.49,1.65,1.65,4.71,4.52
-68629,31,037,31037,1161,554,236911650,236652269,1344,644,374036731,373593661,10515,4097,1078771809,1066193904,86.38,86.02,63.34,63.34,11.04,13.52,21.96,22.2
-68629,31,167,31167,183,90,137125081,136941392,1344,644,374036731,373593661,6129,2633,1116290310,1108381561,13.62,13.98,36.66,36.66,2.99,3.42,12.28,12.36
-68631,31,141,31141,459,204,92694751,92567972,480,215,108208466,108077231,32237,13378,1773078049,1745805649,95.63,94.88,85.66,85.65,1.42,1.52,5.23,5.3
-68631,31,167,31167,21,11,15513715,15509259,480,215,108208466,108077231,6129,2633,1116290310,1108381561,4.38,5.12,14.34,14.35,0.34,0.42,1.39,1.4
-68632,31,023,31023,3989,1713,403696799,401306470,3989,1713,403696799,401306470,8395,4053,1530193890,1514900899,100,100,100,100,47.52,42.26,26.38,26.49
-68633,31,037,31037,106,48,54278046,54174661,1179,530,267620100,267399917,10515,4097,1078771809,1066193904,8.99,9.06,20.28,20.26,1.01,1.17,5.03,5.08
-68633,31,039,31039,171,79,86006886,85995186,1179,530,267620100,267399917,9139,4204,1488343135,1477895767,14.5,14.91,32.14,32.16,1.87,1.88,5.78,5.82
-68633,31,053,31053,902,403,127335168,127230070,1179,530,267620100,267399917,36691,16584,1406362112,1369341649,76.51,76.04,47.58,47.58,2.46,2.43,9.05,9.29
-68634,31,141,31141,345,140,1064067,1064067,345,140,1064067,1064067,32237,13378,1773078049,1745805649,100,100,100,100,1.07,1.05,0.06,0.06
-68635,31,023,31023,491,239,142596916,141824719,491,239,142596916,141824719,8395,4053,1530193890,1514900899,100,100,100,100,5.85,5.9,9.32,9.36
-68636,31,003,31003,1226,639,538951693,538798671,1254,651,583832272,583679250,6685,3284,2223742393,2220183930,97.77,98.16,92.31,92.31,18.34,19.46,24.24,24.27
-68636,31,183,31183,28,12,44880579,44880579,1254,651,583832272,583679250,818,576,1490774738,1489715284,2.23,1.84,7.69,7.69,3.42,2.08,3.01,3.01
-68637,31,183,31183,267,307,251705030,250824041,267,307,251705030,250824041,818,576,1490774738,1489715284,100,100,100,100,32.64,53.3,16.88,16.84
-68638,31,125,31125,1749,879,402980009,393728440,1749,879,402980009,393728440,3735,1801,1160912381,1143824006,100,100,100,100,46.83,48.81,34.71,34.42
-68640,31,125,31125,1471,662,248495537,246028961,1613,717,322526033,320019826,3735,1801,1160912381,1143824006,91.2,92.33,77.05,76.88,39.38,36.76,21.41,21.51
-68640,31,141,31141,142,55,74030496,73990865,1613,717,322526033,320019826,32237,13378,1773078049,1745805649,8.8,7.67,22.95,23.12,0.44,0.41,4.18,4.24
-68641,31,037,31037,808,401,125633488,125558647,1063,510,245587984,245479460,10515,4097,1078771809,1066193904,76.01,78.63,51.16,51.15,7.68,9.79,11.65,11.78
-68641,31,039,31039,104,43,54150305,54128309,1063,510,245587984,245479460,9139,4204,1488343135,1477895767,9.78,8.43,22.05,22.05,1.14,1.02,3.64,3.66
-68641,31,167,31167,151,66,65804191,65792504,1063,510,245587984,245479460,6129,2633,1116290310,1108381561,14.21,12.94,26.79,26.8,2.46,2.51,5.89,5.94
-68642,31,119,31119,92,34,61785160,61735137,1721,703,336130960,335647356,34876,15014,1490410203,1483396470,5.35,4.84,18.38,18.39,0.26,0.23,4.15,4.16
-68642,31,141,31141,1629,669,274345800,273912219,1721,703,336130960,335647356,32237,13378,1773078049,1745805649,94.65,95.16,81.62,81.61,5.05,5,15.47,15.69
-68643,31,037,31037,595,299,79886186,79628511,903,436,248404856,247837258,10515,4097,1078771809,1066193904,65.89,68.58,32.16,32.13,5.66,7.3,7.41,7.47
-68643,31,141,31141,193,80,80234725,80057370,903,436,248404856,247837258,32237,13378,1773078049,1745805649,21.37,18.35,32.3,32.3,0.6,0.6,4.53,4.59
-68643,31,167,31167,115,57,88283945,88151377,903,436,248404856,247837258,6129,2633,1116290310,1108381561,12.74,13.07,35.54,35.57,1.88,2.16,7.91,7.95
-68644,31,119,31119,85,33,68614412,68577248,721,313,235623668,235521463,34876,15014,1490410203,1483396470,11.79,10.54,29.12,29.12,0.24,0.22,4.6,4.62
-68644,31,141,31141,636,280,167009256,166944215,721,313,235623668,235521463,32237,13378,1773078049,1745805649,88.21,89.46,70.88,70.88,1.97,2.09,9.42,9.56
-68647,31,141,31141,646,279,177386332,175856121,646,279,177386332,175856121,32237,13378,1773078049,1745805649,100,100,100,100,2,2.09,10,10.07
-68648,31,155,31155,484,245,108253486,107137617,484,245,108253486,107137617,20780,9221,1967924345,1943096642,100,100,100,100,2.33,2.66,5.5,5.51
-68649,31,053,31053,1835,963,278786197,267471649,1835,963,278786197,267471649,36691,16584,1406362112,1369341649,100,100,100,100,5,5.81,19.82,19.53
-68651,31,143,31143,1470,666,322899068,322577301,1470,666,322899068,322577301,5406,2731,1141257282,1135308002,100,100,100,100,27.19,24.39,28.29,28.41
-68652,31,011,31011,715,347,325318942,325134986,715,347,325318942,325134986,5505,2649,1779884468,1778165884,100,100,100,100,12.99,13.1,18.28,18.28
-68653,31,141,31141,783,322,149896532,149561538,783,322,149896532,149561538,32237,13378,1773078049,1745805649,100,100,100,100,2.43,2.41,8.45,8.57
-68654,31,081,31081,34,15,15497218,15481712,541,289,139278181,139027254,9124,3968,1416778181,1406047715,6.28,5.19,11.13,11.14,0.37,0.38,1.09,1.1
-68654,31,143,31143,438,243,86829480,86722043,541,289,139278181,139027254,5406,2731,1141257282,1135308002,80.96,84.08,62.34,62.38,8.1,8.9,7.61,7.64
-68654,31,185,31185,69,31,36951483,36823499,541,289,139278181,139027254,13665,6231,1491389116,1482793088,12.75,10.73,26.53,26.49,0.5,0.5,2.48,2.48
-68655,31,011,31011,159,80,77674597,76965011,159,80,77674597,76965011,5505,2649,1779884468,1778165884,100,100,100,100,2.89,3.02,4.36,4.33
-68658,31,023,31023,683,305,195246197,195027248,683,305,195246197,195027248,8395,4053,1530193890,1514900899,100,100,100,100,8.14,7.53,12.76,12.87
-68659,31,037,31037,215,89,84019151,83996641,215,89,84019151,83996641,10515,4097,1078771809,1066193904,100,100,100,100,2.04,2.17,7.79,7.88
-68660,31,011,31011,959,451,197305626,197281681,1137,531,345728250,345701629,5505,2649,1779884468,1778165884,84.34,84.93,57.07,57.07,17.42,17.03,11.09,11.09
-68660,31,125,31125,33,15,49643857,49643857,1137,531,345728250,345701629,3735,1801,1160912381,1143824006,2.9,2.82,14.36,14.36,0.88,0.83,4.28,4.34
-68660,31,141,31141,145,65,98778767,98776091,1137,531,345728250,345701629,32237,13378,1773078049,1745805649,12.75,12.24,28.57,28.57,0.45,0.49,5.57,5.66
-68661,31,037,31037,7282,2536,405118865,394873038,7282,2536,405118865,394873038,10515,4097,1078771809,1066193904,100,100,100,100,69.25,61.9,37.55,37.04
-68662,31,023,31023,48,18,15378118,15378118,1231,539,242929873,242621689,8395,4053,1530193890,1514900899,3.9,3.34,6.33,6.34,0.57,0.44,1,1.02
-68662,31,143,31143,1183,521,227551755,227243571,1231,539,242929873,242621689,5406,2731,1141257282,1135308002,96.1,96.66,93.67,93.66,21.88,19.08,19.94,20.02
-68663,31,121,31121,586,297,116091282,110150684,761,388,240618733,232708405,7845,3698,1280742624,1255835783,77,76.55,48.25,47.33,7.47,8.03,9.06,8.77
-68663,31,125,31125,72,38,59307462,59303019,761,388,240618733,232708405,3735,1801,1160912381,1143824006,9.46,9.79,24.65,25.48,1.93,2.11,5.11,5.18
-68663,31,143,31143,103,53,65219989,63254702,761,388,240618733,232708405,5406,2731,1141257282,1135308002,13.53,13.66,27.11,27.18,1.91,1.94,5.71,5.57
-68664,31,053,31053,300,144,1033974,1033974,300,144,1033974,1033974,36691,16584,1406362112,1369341649,100,100,100,100,0.82,0.87,0.07,0.08
-68665,31,077,31077,819,397,318908884,318561801,940,460,726657601,726310518,2538,1300,1477992903,1475804031,87.13,86.3,43.89,43.86,32.27,30.54,21.58,21.59
-68665,31,183,31183,121,63,407748717,407748717,940,460,726657601,726310518,818,576,1490774738,1489715284,12.87,13.7,56.11,56.14,14.79,10.94,27.35,27.37
-68666,31,143,31143,1611,734,233284269,232933425,1611,734,233284269,232933425,5406,2731,1141257282,1135308002,100,100,100,100,29.8,26.88,20.44,20.52
-68667,31,023,31023,92,43,38041213,37934329,92,43,38041213,37934329,8395,4053,1530193890,1514900899,100,100,100,100,1.1,1.06,2.49,2.5
-68669,31,023,31023,422,210,145241201,144628233,422,210,145241201,144628233,8395,4053,1530193890,1514900899,100,100,100,100,5.03,5.18,9.49,9.55
-68701,31,119,31119,27611,12058,343517753,339801036,30670,13197,496344412,491227109,34876,15014,1490410203,1483396470,90.03,91.37,69.21,69.17,79.17,80.31,23.05,22.91
-68701,31,139,31139,621,248,62491353,62491353,30670,13197,496344412,491227109,7266,3222,1488189236,1484707293,2.02,1.88,12.59,12.72,8.55,7.7,4.2,4.21
-68701,31,167,31167,2438,891,90335306,88934720,30670,13197,496344412,491227109,6129,2633,1116290310,1108381561,7.95,6.75,18.2,18.1,39.78,33.84,8.09,8.02
-68710,31,051,31051,830,368,219856406,219558224,830,368,219856406,219558224,6000,2688,1250705803,1233434205,100,100,100,100,13.83,13.69,17.58,17.8
-68711,31,089,31089,141,94,615031738,612506183,141,94,615031738,612506183,10435,5215,6261285294,6248083787,100,100,100,100,1.35,1.8,9.82,9.8
-68713,31,089,31089,2212,1118,1482428261,1478455961,2212,1118,1482428261,1478455961,10435,5215,6261285294,6248083787,100,100,100,100,21.2,21.44,23.68,23.66
-68714,31,149,31149,1224,737,1885759782,1877659791,1224,737,1885759782,1877659791,1526,912,2620339973,2611532223,100,100,100,100,80.21,80.81,71.97,71.9
-68715,31,119,31119,1446,574,146384319,145385969,1446,574,146384319,145385969,34876,15014,1490410203,1483396470,100,100,100,100,4.15,3.82,9.82,9.8
-68716,31,039,31039,1011,469,156686520,155109628,1011,469,156686520,155109628,9139,4204,1488343135,1477895767,100,100,100,100,11.06,11.16,10.53,10.5
-68717,31,027,31027,198,107,58872545,58868955,198,107,58872545,58868955,8852,4148,1931733834,1917398625,100,100,100,100,2.24,2.58,3.05,3.07
-68718,31,107,31107,1765,913,591145950,580895658,1765,913,591145950,580895658,8701,4788,2951865238,2870614119,100,100,100,100,20.29,19.07,20.03,20.24
-68719,31,015,31015,126,95,105583795,105583795,146,110,159567423,157442783,2099,1390,1410327743,1398437421,86.3,86.36,66.17,67.06,6,6.83,7.49,7.55
-68719,46,053,46053,20,15,53983628,51858988,146,110,159567423,157442783,4271,2503,2728626493,2628726426,13.7,13.64,33.83,32.94,0.47,0.6,1.98,1.97
-68720,31,003,31003,340,171,172902826,172851192,340,171,172902826,172851192,6685,3284,2223742393,2220183930,100,100,100,100,5.09,5.21,7.78,7.79
-68722,31,015,31015,555,304,241437204,241149357,555,304,241437204,241149357,2099,1390,1410327743,1398437421,100,100,100,100,26.44,21.87,17.12,17.24
-68723,31,179,31179,566,260,179651966,179589772,566,260,179651966,179589772,9595,3776,1148231618,1147143891,100,100,100,100,5.9,6.89,15.65,15.66
-68724,31,107,31107,140,75,88344183,88344183,140,75,88344183,88344183,8701,4788,2951865238,2870614119,100,100,100,100,1.61,1.57,2.99,3.08
-68725,31,089,31089,501,284,435490648,435422965,501,284,435490648,435422965,10435,5215,6261285294,6248083787,100,100,100,100,4.8,5.45,6.96,6.97
-68726,31,003,31003,860,359,288495991,287834664,893,383,313044269,312290097,6685,3284,2223742393,2220183930,96.3,93.73,92.16,92.17,12.86,10.93,12.97,12.96
-68726,31,089,31089,33,24,24548278,24455433,893,383,313044269,312290097,10435,5215,6261285294,6248083787,3.7,6.27,7.84,7.83,0.32,0.46,0.39,0.39
-68727,31,027,31027,730,402,184123595,184070254,730,402,184123595,184070254,8852,4148,1931733834,1917398625,100,100,100,100,8.25,9.69,9.53,9.6
-68728,31,051,31051,254,113,62638488,62532475,254,113,62638488,62532475,6000,2688,1250705803,1233434205,100,100,100,100,4.23,4.2,5.01,5.07
-68729,31,003,31003,131,54,81853257,81793870,1745,866,410731150,410254137,6685,3284,2223742393,2220183930,7.51,6.24,19.93,19.94,1.96,1.64,3.68,3.68
-68729,31,107,31107,1614,812,328877893,328460267,1745,866,410731150,410254137,8701,4788,2951865238,2870614119,92.49,93.76,80.07,80.06,18.55,16.96,11.14,11.44
-68730,31,027,31027,446,199,99594500,98971557,1860,1121,386127236,355044948,8852,4148,1931733834,1917398625,23.98,17.75,25.79,27.88,5.04,4.8,5.16,5.16
-68730,31,107,31107,1414,922,286532736,256073391,1860,1121,386127236,355044948,8701,4788,2951865238,2870614119,76.02,82.25,74.21,72.12,16.25,19.26,9.71,8.92
-68731,31,043,31043,2637,938,95190256,94360772,2637,938,95190256,94360772,21006,7631,692615994,684416224,100,100,100,100,12.55,12.29,13.74,13.79
-68732,31,051,31051,260,114,121483556,121472506,260,114,121483556,121472506,6000,2688,1250705803,1233434205,100,100,100,100,4.33,4.24,9.71,9.85
-68733,31,043,31043,494,215,61774360,61742428,1286,579,257116995,256856604,21006,7631,692615994,684416224,38.41,37.13,24.03,24.04,2.35,2.82,8.92,9.02
-68733,31,051,31051,553,246,88240670,88218194,1286,579,257116995,256856604,6000,2688,1250705803,1233434205,43,42.49,34.32,34.35,9.22,9.15,7.06,7.15
-68733,31,173,31173,239,118,107101965,106895982,1286,579,257116995,256856604,6940,2408,1025835946,1019377309,18.58,20.38,41.65,41.62,3.44,4.9,10.44,10.49
-68734,31,089,31089,155,61,62576136,62561774,155,61,62576136,62561774,10435,5215,6261285294,6248083787,100,100,100,100,1.49,1.17,1,1
-68735,31,003,31003,75,36,42155490,42026742,922,440,965323026,963446742,6685,3284,2223742393,2220183930,8.13,8.18,4.37,4.36,1.12,1.1,1.9,1.89
-68735,31,089,31089,720,350,590725127,589094866,922,440,965323026,963446742,10435,5215,6261285294,6248083787,78.09,79.55,61.19,61.14,6.9,6.71,9.43,9.43
-68735,31,183,31183,127,54,332442409,332325134,922,440,965323026,963446742,818,576,1490774738,1489715284,13.77,12.27,34.44,34.49,15.53,9.38,22.3,22.31
-68736,31,027,31027,726,284,181566986,181566986,726,284,181566986,181566986,8852,4148,1931733834,1917398625,100,100,100,100,8.2,6.85,9.4,9.47
-68739,31,027,31027,3002,1274,577532730,577485924,3002,1274,577532730,577485924,8852,4148,1931733834,1917398625,100,100,100,100,33.91,30.71,29.9,30.12
-68740,31,167,31167,32,12,6872072,6869823,892,357,181546039,181379334,6129,2633,1116290310,1108381561,3.59,3.36,3.79,3.79,0.52,0.46,0.62,0.62
-68740,31,179,31179,860,345,174673967,174509511,892,357,181546039,181379334,9595,3776,1148231618,1147143891,96.41,96.64,96.21,96.21,8.96,9.14,15.21,15.21
-68741,31,043,31043,790,303,165954681,165828601,790,303,165954681,165828601,21006,7631,692615994,684416224,100,100,100,100,3.76,3.97,23.96,24.23
-68742,31,089,31089,243,128,100932433,100904117,243,128,100932433,100904117,10435,5215,6261285294,6248083787,100,100,100,100,2.33,2.45,1.61,1.61
-68743,31,043,31043,693,285,167708911,164983309,693,285,167708911,164983309,21006,7631,692615994,684416224,100,100,100,100,3.3,3.73,24.21,24.11
-68745,31,027,31027,1536,709,288034197,287988290,1572,721,308626703,308580796,8852,4148,1931733834,1917398625,97.71,98.34,93.33,93.33,17.35,17.09,14.91,15.02
-68745,31,179,31179,36,12,20592506,20592506,1572,721,308626703,308580796,9595,3776,1148231618,1147143891,2.29,1.66,6.67,6.67,0.38,0.32,1.79,1.8
-68746,31,015,31015,425,399,351683794,341793830,480,439,616354444,604416562,2099,1390,1410327743,1398437421,88.54,90.89,57.06,56.55,20.25,28.71,24.94,24.44
-68746,31,089,31089,55,40,264670650,262622732,480,439,616354444,604416562,10435,5215,6261285294,6248083787,11.46,9.11,42.94,43.45,0.53,0.77,4.23,4.2
-68747,31,139,31139,174,88,83009340,82997199,174,88,83009340,82997199,7266,3222,1488189236,1484707293,100,100,100,100,2.39,2.73,5.58,5.59
-68748,31,119,31119,3146,1110,351735964,351187438,3260,1160,438824591,437847542,34876,15014,1490410203,1483396470,96.5,95.69,80.15,80.21,9.02,7.39,23.6,23.67
-68748,31,167,31167,114,50,87088627,86660104,3260,1160,438824591,437847542,6129,2633,1116290310,1108381561,3.5,4.31,19.85,19.79,1.86,1.9,7.8,7.82
-68749,31,027,31027,65,42,5226605,5226605,65,42,5226605,5226605,8852,4148,1931733834,1917398625,100,100,100,100,0.73,1.01,0.27,0.27
-68751,31,051,31051,76,34,414370,414370,76,34,414370,414370,6000,2688,1250705803,1233434205,100,100,100,100,1.27,1.26,0.03,0.03
-68752,31,119,31119,741,351,267548783,266598439,789,375,378710009,377708600,34876,15014,1490410203,1483396470,93.92,93.6,70.65,70.58,2.12,2.34,17.95,17.97
-68752,31,139,31139,48,24,111161226,111110161,789,375,378710009,377708600,7266,3222,1488189236,1484707293,6.08,6.4,29.35,29.42,0.66,0.74,7.47,7.48
-68753,31,103,31103,111,77,381287163,380650759,111,77,381287163,380650759,824,549,2004439147,2002246688,100,100,100,100,13.47,14.03,19.02,19.01
-68755,31,015,31015,259,177,375447037,375321037,259,177,375447037,375321037,2099,1390,1410327743,1398437421,100,100,100,100,12.34,12.73,26.62,26.84
-68756,31,003,31003,2058,1017,339352463,338854764,2058,1017,339352463,338854764,6685,3284,2223742393,2220183930,100,100,100,100,30.79,30.97,15.26,15.26
-68757,31,027,31027,50,26,25365475,25365475,754,418,341021790,331404225,8852,4148,1931733834,1917398625,6.63,6.22,7.44,7.65,0.56,0.63,1.31,1.32
-68757,31,051,31051,704,392,315656315,306038750,754,418,341021790,331404225,6000,2688,1250705803,1233434205,93.37,93.78,92.56,92.35,11.73,14.58,25.24,24.81
-68758,31,011,31011,83,37,54543919,54432832,1164,575,291066698,290861095,5505,2649,1779884468,1778165884,7.13,6.43,18.74,18.71,1.51,1.4,3.06,3.06
-68758,31,119,31119,941,481,170108734,170042188,1164,575,291066698,290861095,34876,15014,1490410203,1483396470,80.84,83.65,58.44,58.46,2.7,3.2,11.41,11.46
-68758,31,141,31141,140,57,66414045,66386075,1164,575,291066698,290861095,32237,13378,1773078049,1745805649,12.03,9.91,22.82,22.82,0.43,0.43,3.75,3.8
-68759,31,103,31103,79,47,192785287,192652641,295,181,636581212,635802704,824,549,2004439147,2002246688,26.78,25.97,30.28,30.3,9.59,8.56,9.62,9.62
-68759,31,149,31149,216,134,443795925,443150063,295,181,636581212,635802704,1526,912,2620339973,2611532223,73.22,74.03,69.72,69.7,14.15,14.69,16.94,16.97
-68760,31,107,31107,1364,896,579605514,542671289,1364,896,579605514,542671289,8701,4788,2951865238,2870614119,100,100,100,100,15.68,18.71,19.64,18.9
-68761,31,003,31003,434,224,102202279,101134988,434,224,102202279,101134988,6685,3284,2223742393,2220183930,100,100,100,100,6.49,6.82,4.6,4.56
-68763,31,089,31089,4887,2346,1403935697,1403106852,4887,2346,1403935697,1403106852,10435,5215,6261285294,6248083787,100,100,100,100,46.83,44.99,22.42,22.46
-68764,31,003,31003,611,314,184024642,183926943,753,395,352768227,352454014,6685,3284,2223742393,2220183930,81.14,79.49,52.17,52.18,9.14,9.56,8.28,8.28
-68764,31,089,31089,27,16,33642669,33642669,753,395,352768227,352454014,10435,5215,6261285294,6248083787,3.59,4.05,9.54,9.55,0.26,0.31,0.54,0.54
-68764,31,107,31107,115,65,135100916,134884402,753,395,352768227,352454014,8701,4788,2951865238,2870614119,15.27,16.46,38.3,38.27,1.32,1.36,4.58,4.7
-68765,31,139,31139,1380,599,303079252,302975300,1380,599,303079252,302975300,7266,3222,1488189236,1484707293,100,100,100,100,18.99,18.59,20.37,20.41
-68766,31,089,31089,393,220,318615373,318500785,393,220,318615373,318500785,10435,5215,6261285294,6248083787,100,100,100,100,3.77,4.22,5.09,5.1
-68767,31,139,31139,3174,1331,549595464,546293436,3174,1331,549595464,546293436,7266,3222,1488189236,1484707293,100,100,100,100,43.68,41.31,36.93,36.79
-68768,31,167,31167,642,352,179892490,178332526,642,352,179892490,178332526,6129,2633,1116290310,1108381561,100,100,100,100,10.47,13.37,16.12,16.09
-68769,31,003,31003,184,87,115395296,115317313,1806,913,371943127,371865144,6685,3284,2223742393,2220183930,10.19,9.53,31.02,31.01,2.75,2.65,5.19,5.19
-68769,31,139,31139,1622,826,256547831,256547831,1806,913,371943127,371865144,7266,3222,1488189236,1484707293,89.81,90.47,68.98,68.99,22.32,25.64,17.24,17.28
-68770,31,043,31043,35,17,7673191,7673191,1552,689,243525043,237280917,21006,7631,692615994,684416224,2.26,2.47,3.15,3.23,0.17,0.22,1.11,1.12
-68770,31,051,31051,1517,672,235851852,229607726,1552,689,243525043,237280917,6000,2688,1250705803,1233434205,97.74,97.53,96.85,96.77,25.28,25,18.86,18.62
-68771,31,027,31027,1260,592,183975905,183917247,1637,752,380444450,380253478,8852,4148,1931733834,1917398625,76.97,78.72,48.36,48.37,14.23,14.27,9.52,9.59
-68771,31,139,31139,247,106,122304770,122292013,1637,752,380444450,380253478,7266,3222,1488189236,1484707293,15.09,14.1,32.15,32.16,3.4,3.29,8.22,8.24
-68771,31,179,31179,130,54,74163775,74044218,1637,752,380444450,380253478,9595,3776,1148231618,1147143891,7.94,7.18,19.49,19.47,1.35,1.43,6.46,6.45
-68773,31,003,31003,173,94,138136581,137869039,173,94,138136581,137869039,6685,3284,2223742393,2220183930,100,100,100,100,2.59,2.86,6.21,6.21
-68774,31,027,31027,348,169,108831717,102952367,348,169,108831717,102952367,8852,4148,1931733834,1917398625,100,100,100,100,3.93,4.07,5.63,5.37
-68776,31,043,31043,15447,5493,56303256,53727629,15447,5493,56303256,53727629,21006,7631,692615994,684416224,100,100,100,100,73.54,71.98,8.13,7.85
-68777,31,015,31015,734,415,336175913,334589402,774,453,462044039,459250352,2099,1390,1410327743,1398437421,94.83,91.61,72.76,72.86,34.97,29.86,23.84,23.93
-68777,31,089,31089,40,38,125868126,124660950,774,453,462044039,459250352,10435,5215,6261285294,6248083787,5.17,8.39,27.24,27.14,0.38,0.73,2.01,2
-68778,31,103,31103,572,374,1230311674,1228901442,572,374,1230311674,1228901442,824,549,2004439147,2002246688,100,100,100,100,69.42,68.12,61.38,61.38
-68779,31,167,31167,2433,1104,445374883,441189856,2433,1104,445374883,441189856,6129,2633,1116290310,1108381561,100,100,100,100,39.7,41.93,39.9,39.8
-68780,31,089,31089,1028,496,802820158,802148500,1028,496,802820158,802148500,10435,5215,6261285294,6248083787,100,100,100,100,9.85,9.51,12.82,12.84
-68781,31,003,31003,593,289,220271875,219775744,1407,662,300986953,299844759,6685,3284,2223742393,2220183930,42.15,43.66,73.18,73.3,8.87,8.8,9.91,9.9
-68781,31,119,31119,814,373,80715078,80069015,1407,662,300986953,299844759,34876,15014,1490410203,1483396470,57.85,56.34,26.82,26.7,2.33,2.48,5.42,5.4
-68783,31,107,31107,1086,543,575752702,572856201,1086,543,575752702,572856201,8701,4788,2951865238,2870614119,100,100,100,100,12.48,11.34,19.5,19.96
-68784,31,051,31051,1555,626,143333845,142361659,2104,862,272604738,271182324,6000,2688,1250705803,1233434205,73.91,72.62,52.58,52.5,25.92,23.29,11.46,11.54
-68784,31,179,31179,549,236,129270893,128820665,2104,862,272604738,271182324,9595,3776,1148231618,1147143891,26.09,27.38,47.42,47.5,5.72,6.25,11.26,11.23
-68785,31,043,31043,75,28,36484864,36484864,274,125,79397212,79397212,21006,7631,692615994,684416224,27.37,22.4,45.95,45.95,0.36,0.37,5.27,5.33
-68785,31,051,31051,199,97,42912348,42912348,274,125,79397212,79397212,6000,2688,1250705803,1233434205,72.63,77.6,54.05,54.05,3.32,3.61,3.43,3.48
-68786,31,027,31027,52,31,60672434,60661508,1079,485,313341675,313330749,8852,4148,1931733834,1917398625,4.82,6.39,19.36,19.36,0.59,0.75,3.14,3.16
-68786,31,107,31107,1027,454,252669241,252669241,1079,485,313341675,313330749,8701,4788,2951865238,2870614119,95.18,93.61,80.64,80.64,11.8,9.48,8.56,8.8
-68787,31,051,31051,52,26,20317953,20317953,6647,2498,364093660,363909392,6000,2688,1250705803,1233434205,0.78,1.04,5.58,5.58,0.87,0.97,1.62,1.65
-68787,31,179,31179,6595,2472,343775707,343591439,6647,2498,364093660,363909392,9595,3776,1148231618,1147143891,99.22,98.96,94.42,94.42,68.73,65.47,29.94,29.95
-68788,31,039,31039,4898,2237,503898700,498388955,4898,2237,503898700,498388955,9139,4204,1488343135,1477895767,100,100,100,100,53.59,53.21,33.86,33.72
-68789,31,107,31107,176,108,113836103,113759487,176,108,113836103,113759487,8701,4788,2951865238,2870614119,100,100,100,100,2.02,2.26,3.86,3.96
-68790,31,179,31179,777,357,169196288,169104197,777,357,169196288,169104197,9595,3776,1148231618,1147143891,100,100,100,100,8.1,9.45,14.74,14.74
-68791,31,039,31039,1778,848,329641240,326963060,1800,859,347596570,344907926,9139,4204,1488343135,1477895767,98.78,98.72,94.83,94.8,19.46,20.17,22.15,22.12
-68791,31,179,31179,22,11,17955330,17944866,1800,859,347596570,344907926,9595,3776,1148231618,1147143891,1.22,1.28,5.17,5.2,0.23,0.29,1.56,1.56
-68792,31,027,31027,407,300,151498243,144903620,407,300,151498243,144903620,8852,4148,1931733834,1917398625,100,100,100,100,4.6,7.23,7.84,7.56
-68801,31,079,31079,29231,11176,141494919,140804101,30005,11506,235946776,232261015,58607,23549,1430047284,1414881257,97.42,97.13,59.97,60.62,49.88,47.46,9.89,9.95
-68801,31,121,31121,774,330,94451857,91456914,30005,11506,235946776,232261015,7845,3698,1280742624,1255835783,2.58,2.87,40.03,39.38,9.87,8.92,7.37,7.28
-68803,31,079,31079,22560,9613,226546761,226373797,22560,9613,226546761,226373797,58607,23549,1430047284,1414881257,100,100,100,100,38.49,40.82,15.84,16
-68810,31,079,31079,1109,435,49315191,49271594,1109,435,49315191,49271594,58607,23549,1430047284,1414881257,100,100,100,100,1.89,1.85,3.45,3.48
-68812,31,019,31019,785,333,306319367,306251363,785,333,306319367,306251363,46102,19064,2526272288,2507398525,100,100,100,100,1.7,1.75,12.13,12.21
-68813,31,009,31009,51,30,333588940,332333540,534,282,1458595335,1457130553,478,326,1850600101,1841156202,9.55,10.64,22.87,22.81,10.67,9.2,18.03,18.05
-68813,31,041,31041,483,252,1125006395,1124797013,534,282,1458595335,1457130553,10939,5579,6671503254,6670570294,90.45,89.36,77.13,77.19,4.42,4.52,16.86,16.86
-68814,31,041,31041,911,494,499698085,499698085,911,494,499698085,499698085,10939,5579,6671503254,6670570294,100,100,100,100,8.33,8.85,7.49,7.49
-68815,31,041,31041,67,28,97425993,97425993,596,326,387482892,387442347,10939,5579,6671503254,6670570294,11.24,8.59,25.14,25.15,0.61,0.5,1.46,1.46
-68815,31,163,31163,63,32,79229022,79229022,596,326,387482892,387442347,3152,1941,1480550878,1465488702,10.57,9.82,20.45,20.45,2,1.65,5.35,5.41
-68815,31,175,31175,466,266,210827877,210787332,596,326,387482892,387442347,4260,2273,1477480029,1471237329,78.19,81.6,54.41,54.4,10.94,11.7,14.27,14.33
-68816,31,121,31121,180,72,96840065,96840065,180,72,96840065,96840065,7845,3698,1280742624,1255835783,100,100,100,100,2.29,1.95,7.56,7.71
-68817,31,093,31093,28,11,32799384,32785384,386,213,244171286,244025264,6274,2951,1490777850,1474576349,7.25,5.16,13.43,13.44,0.45,0.37,2.2,2.22
-68817,31,163,31163,358,202,211371902,211239880,386,213,244171286,244025264,3152,1941,1480550878,1465488702,92.75,94.84,86.57,86.56,11.36,10.41,14.28,14.41
-68818,31,035,31035,44,18,25782874,25739329,5475,2333,471481245,470190636,6542,3001,1485457739,1482222817,0.8,0.77,5.47,5.47,0.67,0.6,1.74,1.74
-68818,31,081,31081,5431,2315,445698371,444451307,5475,2333,471481245,470190636,9124,3968,1416778181,1406047715,99.2,99.23,94.53,94.53,59.52,58.34,31.46,31.61
-68820,31,093,31093,391,195,106255054,104846302,391,195,106255054,104846302,6274,2951,1490777850,1474576349,100,100,100,100,6.23,6.61,7.13,7.11
-68821,31,009,31009,134,103,520023230,517531849,134,103,520023230,517531849,478,326,1850600101,1841156202,100,100,100,100,28.03,31.6,28.1,28.11
-68822,31,041,31041,4834,2298,1029656976,1029360303,4834,2298,1029656976,1029360303,10939,5579,6671503254,6670570294,100,100,100,100,44.19,41.19,15.43,15.43
-68823,31,071,31071,2049,1178,1479875041,1475749482,2401,1443,2419612631,2407860417,2049,1178,1479875041,1475749482,85.34,81.64,61.16,61.29,100,100,100,100
-68823,31,115,31115,215,189,589749478,583199854,2401,1443,2419612631,2407860417,632,426,1479139459,1471864091,8.95,13.1,24.37,24.22,34.02,44.37,39.87,39.62
-68823,31,149,31149,23,15,213111198,213049301,2401,1443,2419612631,2407860417,1526,912,2620339973,2611532223,0.96,1.04,8.81,8.85,1.51,1.64,8.13,8.16
-68823,31,175,31175,114,61,136876914,135861780,2401,1443,2419612631,2407860417,4260,2273,1477480029,1471237329,4.75,4.23,5.66,5.64,2.68,2.68,9.26,9.23
-68824,31,079,31079,1361,556,251922803,251818244,1414,586,277096529,276230888,58607,23549,1430047284,1414881257,96.25,94.88,90.92,91.16,2.32,2.36,17.62,17.8
-68824,31,093,31093,53,30,25173726,24412644,1414,586,277096529,276230888,6274,2951,1490777850,1474576349,3.75,5.12,9.08,8.84,0.84,1.02,1.69,1.66
-68825,31,041,31041,1024,519,815492712,815454840,1024,519,815492712,815454840,10939,5579,6671503254,6670570294,100,100,100,100,9.36,9.3,12.22,12.22
-68826,31,121,31121,3955,1836,382669361,375462129,3955,1836,382669361,375462129,7845,3698,1280742624,1255835783,100,100,100,100,50.41,49.65,29.88,29.9
-68827,31,121,31121,693,300,160968009,158742910,693,300,160968009,158742910,7845,3698,1280742624,1255835783,100,100,100,100,8.83,8.11,12.57,12.64
-68828,31,041,31041,179,140,149792006,149766701,240,174,255060597,255035292,10939,5579,6671503254,6670570294,74.58,80.46,58.73,58.72,1.64,2.51,2.25,2.25
-68828,31,175,31175,61,34,105268591,105268591,240,174,255060597,255035292,4260,2273,1477480029,1471237329,25.42,19.54,41.27,41.28,1.43,1.5,7.12,7.16
-68831,31,093,31093,812,372,171294405,168729390,812,372,171294405,168729390,6274,2951,1490777850,1474576349,100,100,100,100,12.94,12.61,11.49,11.44
-68832,31,079,31079,1908,807,253767539,246808376,1974,830,287114545,280082054,58607,23549,1430047284,1414881257,96.66,97.23,88.39,88.12,3.26,3.43,17.75,17.44
-68832,31,081,31081,66,23,33347006,33273678,1974,830,287114545,280082054,9124,3968,1416778181,1406047715,3.34,2.77,11.61,11.88,0.72,0.58,2.35,2.37
-68833,31,009,31009,272,170,926639532,921440620,299,188,1196191394,1190992482,478,326,1850600101,1841156202,90.97,90.43,77.47,77.37,56.9,52.15,50.07,50.05
-68833,31,113,31113,27,18,269551862,269551862,299,188,1196191394,1190992482,763,395,1479206589,1478003028,9.03,9.57,22.53,22.63,3.54,4.56,18.22,18.24
-68834,31,041,31041,39,20,85355030,85355030,226,106,249466448,249466448,10939,5579,6671503254,6670570294,17.26,18.87,34.22,34.22,0.36,0.36,1.28,1.28
-68834,31,047,31047,187,86,164111418,164111418,226,106,249466448,249466448,24326,10123,2640319042,2623905741,82.74,81.13,65.78,65.78,0.77,0.85,6.22,6.25
-68835,31,093,31093,485,256,255832532,252787408,485,256,255832532,252787408,6274,2951,1490777850,1474576349,100,100,100,100,7.73,8.68,17.16,17.14
-68836,31,019,31019,1382,600,219446837,213915442,1688,720,389693827,383947964,46102,19064,2526272288,2507398525,81.87,83.33,56.31,55.71,3,3.15,8.69,8.53
-68836,31,047,31047,69,27,43625207,43547141,1688,720,389693827,383947964,24326,10123,2640319042,2623905741,4.09,3.75,11.19,11.34,0.28,0.27,1.65,1.66
-68836,31,137,31137,237,93,126621783,126485381,1688,720,389693827,383947964,9188,4175,1399695130,1398048596,14.04,12.92,32.49,32.94,2.58,2.23,9.05,9.05
-68837,31,175,31175,103,55,62762485,62762485,103,55,62762485,62762485,4260,2273,1477480029,1471237329,100,100,100,100,2.42,2.42,4.25,4.27
-68838,31,093,31093,301,146,132112825,132112578,301,146,132112825,132112578,6274,2951,1490777850,1474576349,100,100,100,100,4.8,4.95,8.86,8.96
-68840,31,019,31019,2843,1113,344752287,340800795,2945,1176,381798910,377847418,46102,19064,2526272288,2507398525,96.54,94.64,90.3,90.2,6.17,5.84,13.65,13.59
-68840,31,099,31099,102,63,37046623,37046623,2945,1176,381798910,377847418,6489,2886,1337338045,1337065724,3.46,5.36,9.7,9.8,1.57,2.18,2.77,2.77
-68841,31,081,31081,610,253,169293303,168919944,610,253,169293303,168919944,9124,3968,1416778181,1406047715,100,100,100,100,6.69,6.38,11.95,12.01
-68842,31,077,31077,668,360,413497458,413497458,668,360,413497458,413497458,2538,1300,1477992903,1475804031,100,100,100,100,26.32,27.69,27.98,28.02
-68843,31,081,31081,806,345,214488610,213984774,806,345,214488610,213984774,9124,3968,1416778181,1406047715,100,100,100,100,8.83,8.69,15.14,15.22
-68844,31,019,31019,63,27,37151021,37151021,228,118,115884823,115844865,46102,19064,2526272288,2507398525,27.63,22.88,32.06,32.07,0.14,0.14,1.47,1.48
-68844,31,163,31163,165,91,78733802,78693844,228,118,115884823,115844865,3152,1941,1480550878,1465488702,72.37,77.12,67.94,67.93,5.23,4.69,5.32,5.37
-68845,31,019,31019,19189,7581,250555090,249004949,19523,7718,290535509,288924709,46102,19064,2526272288,2507398525,98.29,98.22,86.24,86.18,41.62,39.77,9.92,9.93
-68845,31,099,31099,334,137,39980419,39919760,19523,7718,290535509,288924709,6489,2886,1337338045,1337065724,1.71,1.78,13.76,13.82,5.15,4.75,2.99,2.99
-68846,31,081,31081,296,136,74161052,74099987,296,136,74161052,74099987,9124,3968,1416778181,1406047715,100,100,100,100,3.24,3.43,5.23,5.27
-68847,31,019,31019,16316,7088,234798051,232518770,16504,7194,245503124,243223843,46102,19064,2526272288,2507398525,98.86,98.53,95.64,95.6,35.39,37.18,9.29,9.27
-68847,31,099,31099,188,106,10705073,10705073,16504,7194,245503124,243223843,6489,2886,1337338045,1337065724,1.14,1.47,4.36,4.4,2.9,3.67,0.8,0.8
-68849,31,019,31019,384,0,431572,431572,384,0,431572,431572,46102,19064,2526272288,2507398525,100,0,100,100,0.83,0,0.02,0.02
-68850,31,047,31047,12222,4215,643363754,640516843,12295,4253,679243570,675779678,24326,10123,2640319042,2623905741,99.41,99.11,94.72,94.78,50.24,41.64,24.37,24.41
-68850,31,073,31073,73,38,35879816,35262835,12295,4253,679243570,675779678,2044,1267,1198448086,1186616260,0.59,0.89,5.28,5.22,3.57,3,2.99,2.97
-68852,31,163,31163,565,277,283461832,283347299,565,277,283461832,283347299,3152,1941,1480550878,1465488702,100,100,100,100,17.93,14.27,19.15,19.33
-68853,31,163,31163,1559,1128,519070000,506791295,1559,1128,519070000,506791295,3152,1941,1480550878,1465488702,100,100,100,100,49.46,58.11,35.06,34.58
-68854,31,081,31081,731,385,181571913,178067757,731,385,181571913,178067757,9124,3968,1416778181,1406047715,100,100,100,100,8.01,9.7,12.82,12.66
-68855,31,041,31041,417,232,489119457,489077255,417,232,489119457,489077255,10939,5579,6671503254,6670570294,100,100,100,100,3.81,4.16,7.33,7.33
-68856,31,041,31041,611,286,284316315,284284025,611,286,284316315,284284025,10939,5579,6671503254,6670570294,100,100,100,100,5.59,5.13,4.26,4.26
-68858,31,019,31019,266,125,158915360,158709489,266,125,158915360,158709489,46102,19064,2526272288,2507398525,100,100,100,100,0.58,0.66,6.29,6.33
-68859,31,175,31175,509,296,226974780,224799404,509,296,226974780,224799404,4260,2273,1477480029,1471237329,100,100,100,100,11.95,13.02,15.36,15.28
-68860,31,041,31041,324,184,466427253,466421152,324,184,466427253,466421152,10939,5579,6671503254,6670570294,100,100,100,100,2.96,3.3,6.99,6.99
-68861,31,019,31019,118,52,952799,952799,118,52,952799,952799,46102,19064,2526272288,2507398525,100,100,100,100,0.26,0.27,0.04,0.04
-68862,31,175,31175,3007,1561,734769382,731757737,3007,1561,734769382,731757737,4260,2273,1477480029,1471237329,100,100,100,100,70.59,68.68,49.73,49.74
-68863,31,047,31047,1105,483,287868654,282862343,1151,507,321887277,316256105,24326,10123,2640319042,2623905741,96,95.27,89.43,89.44,4.54,4.77,10.9,10.78
-68863,31,137,31137,46,24,34018623,33393762,1151,507,321887277,316256105,9188,4175,1399695130,1398048596,4,4.73,10.57,10.56,0.5,0.57,2.43,2.39
-68864,31,093,31093,124,57,105966492,105119429,1027,449,446755140,441514078,6274,2951,1490777850,1474576349,12.07,12.69,23.72,23.81,1.98,1.93,7.11,7.13
-68864,31,121,31121,806,340,166974773,166707684,1027,449,446755140,441514078,7845,3698,1280742624,1255835783,78.48,75.72,37.38,37.76,10.27,9.19,13.04,13.27
-68864,31,125,31125,97,52,173813875,169686965,1027,449,446755140,441514078,3735,1801,1160912381,1143824006,9.44,11.58,38.91,38.43,2.6,2.89,14.97,14.84
-68865,31,081,31081,894,408,166069182,161512798,894,408,166069182,161512798,9124,3968,1416778181,1406047715,100,100,100,100,9.8,10.28,11.72,11.49
-68866,31,019,31019,832,362,278030748,277961066,850,372,306777624,306697181,46102,19064,2526272288,2507398525,97.88,97.31,90.63,90.63,1.8,1.9,11.01,11.09
-68866,31,041,31041,18,10,28746876,28736115,850,372,306777624,306697181,10939,5579,6671503254,6670570294,2.12,2.69,9.37,9.37,0.16,0.18,0.43,0.43
-68869,31,019,31019,2010,964,401851854,399907835,2202,1048,538790826,536738157,46102,19064,2526272288,2507398525,91.28,91.98,74.58,74.51,4.36,5.06,15.91,15.95
-68869,31,163,31163,192,84,136938972,136830322,2202,1048,538790826,536738157,3152,1941,1480550878,1465488702,8.72,8.02,25.42,25.49,6.09,4.33,9.25,9.34
-68870,31,019,31019,439,198,111331470,111299287,439,198,111331470,111299287,46102,19064,2526272288,2507398525,100,100,100,100,0.95,1.04,4.41,4.44
-68871,31,163,31163,250,127,171745348,169357040,250,127,171745348,169357040,3152,1941,1480550878,1465488702,100,100,100,100,7.93,6.54,11.6,11.56
-68872,31,093,31093,711,287,128621081,128621081,853,347,172451777,172451777,6274,2951,1490777850,1474576349,83.35,82.71,74.58,74.58,11.33,9.73,8.63,8.72
-68872,31,121,31121,142,60,43830696,43830696,853,347,172451777,172451777,7845,3698,1280742624,1255835783,16.65,17.29,25.42,25.42,1.81,1.62,3.42,3.49
-68873,31,093,31093,3289,1560,464806274,457246056,3289,1560,464806274,457246056,6274,2951,1490777850,1474576349,100,100,100,100,52.42,52.86,31.18,31.01
-68874,31,041,31041,956,536,693141113,693042833,956,536,693141113,693042833,10939,5579,6671503254,6670570294,100,100,100,100,8.74,9.61,10.39,10.39
-68875,31,077,31077,658,324,510349656,508551430,658,324,510349656,508551430,2538,1300,1477992903,1475804031,100,100,100,100,25.93,24.92,34.53,34.46
-68876,31,019,31019,1475,621,181735832,178494137,1545,657,237640792,234399097,46102,19064,2526272288,2507398525,95.47,94.52,76.48,76.15,3.2,3.26,7.19,7.12
-68876,31,079,31079,70,36,55904960,55904960,1545,657,237640792,234399097,58607,23549,1430047284,1414881257,4.53,5.48,23.52,23.85,0.12,0.15,3.91,3.95
-68878,31,041,31041,23,11,58288564,58238816,446,201,344929868,344838769,10939,5579,6671503254,6670570294,5.16,5.47,16.9,16.89,0.21,0.2,0.87,0.87
-68878,31,047,31047,423,190,286641304,286599953,446,201,344929868,344838769,24326,10123,2640319042,2623905741,94.84,94.53,83.1,83.11,1.74,1.88,10.86,10.92
-68879,31,115,31115,417,237,889389981,888664237,417,237,889389981,888664237,632,426,1479139459,1471864091,100,100,100,100,65.98,55.63,60.13,60.38
-68881,31,041,31041,73,30,64864705,64864705,73,30,64864705,64864705,10939,5579,6671503254,6670570294,100,100,100,100,0.67,0.54,0.97,0.97
-68882,31,077,31077,393,219,235236905,235193342,473,256,303152982,303109419,2538,1300,1477992903,1475804031,83.09,85.55,77.6,77.59,15.48,16.85,15.92,15.94
-68882,31,093,31093,80,37,67916077,67916077,473,256,303152982,303109419,6274,2951,1490777850,1474576349,16.91,14.45,22.4,22.41,1.28,1.25,4.56,4.61
-68883,31,001,31001,94,52,21930633,21926171,2411,954,446945980,441449248,31364,13350,1461350349,1458868867,3.9,5.45,4.91,4.97,0.3,0.39,1.5,1.5
-68883,31,079,31079,2317,902,425015347,419523077,2411,954,446945980,441449248,58607,23549,1430047284,1414881257,96.1,94.55,95.09,95.03,3.95,3.83,29.72,29.65
-68901,31,001,31001,26328,11331,323609822,322153111,26354,11340,356575450,355096372,31364,13350,1461350349,1458868867,99.9,99.92,90.75,90.72,83.94,84.88,22.14,22.08
-68901,31,035,31035,26,9,32965628,32943261,26354,11340,356575450,355096372,6542,3001,1485457739,1482222817,0.1,0.08,9.25,9.28,0.4,0.3,2.22,2.22
-68920,31,083,31083,1446,753,356837486,329668285,1446,753,356837486,329668285,3423,2375,1486810043,1433470225,100,100,100,100,42.24,31.71,24,23
-68922,31,065,31065,1239,613,242549055,242368124,1336,667,423661863,423480932,4959,2721,1866458394,1862542551,92.74,91.9,57.25,57.23,24.98,22.53,13,13.01
-68922,31,073,31073,97,54,181112808,181112808,1336,667,423661863,423480932,2044,1267,1198448086,1186616260,7.26,8.1,42.75,42.77,4.75,4.26,15.11,15.26
-68923,31,137,31137,131,60,4134903,4134903,131,60,4134903,4134903,9188,4175,1399695130,1398048596,100,100,100,100,1.43,1.44,0.3,0.3
-68924,31,099,31099,1163,468,242028001,242028001,1180,475,252824256,252824256,6489,2886,1337338045,1337065724,98.56,98.53,95.73,95.73,17.92,16.22,18.1,18.1
-68924,31,137,31137,17,7,10796255,10796255,1180,475,252824256,252824256,9188,4175,1399695130,1398048596,1.44,1.47,4.27,4.27,0.19,0.17,0.77,0.77
-68925,31,001,31001,474,186,157877572,157762324,474,186,157877572,157762324,31364,13350,1461350349,1458868867,100,100,100,100,1.51,1.39,10.8,10.81
-68926,31,065,31065,783,465,370705286,370408250,783,465,370705286,370408250,4959,2721,1866458394,1862542551,100,100,100,100,15.79,17.09,19.86,19.89
-68927,31,073,31073,82,39,141020160,141020160,1164,519,398708332,398134972,2044,1267,1198448086,1186616260,7.04,7.51,35.37,35.42,4.01,3.08,11.77,11.88
-68927,31,137,31137,1082,480,257688172,257114812,1164,519,398708332,398134972,9188,4175,1399695130,1398048596,92.96,92.49,64.63,64.58,11.78,11.5,18.41,18.39
-68928,31,001,31001,30,14,42826593,42796629,426,205,296487574,296457610,31364,13350,1461350349,1458868867,7.04,6.83,14.44,14.44,0.1,0.1,2.93,2.93
-68928,31,181,31181,396,191,253660981,253660981,426,205,296487574,296457610,3812,1912,1489355322,1489018081,92.96,93.17,85.56,85.56,10.39,9.99,17.03,17.04
-68929,31,061,31061,160,108,130604592,130539304,160,108,130604592,130539304,3225,1734,1491843975,1491356076,100,100,100,100,4.96,6.23,8.75,8.75
-68930,31,001,31001,120,51,77795193,77795193,1461,609,363791375,363719741,31364,13350,1461350349,1458868867,8.21,8.37,21.38,21.39,0.38,0.38,5.32,5.33
-68930,31,181,31181,1341,558,285996182,285924548,1461,609,363791375,363719741,3812,1912,1489355322,1489018081,91.79,91.63,78.62,78.61,35.18,29.18,19.2,19.2
-68932,31,001,31001,32,13,43581628,43581628,493,235,189839208,189754920,31364,13350,1461350349,1458868867,6.49,5.53,22.96,22.97,0.1,0.1,2.98,2.99
-68932,31,061,31061,403,199,89738937,89732206,493,235,189839208,189754920,3225,1734,1491843975,1491356076,81.74,84.68,47.27,47.29,12.5,11.48,6.02,6.02
-68932,31,181,31181,58,23,56518643,56441086,493,235,189839208,189754920,3812,1912,1489355322,1489018081,11.76,9.79,29.77,29.74,1.52,1.2,3.79,3.79
-68933,31,035,31035,932,440,155654541,155550663,932,440,155654541,155550663,6542,3001,1485457739,1482222817,100,100,100,100,14.25,14.66,10.48,10.49
-68934,31,035,31035,130,67,23821042,23821042,188,98,69892554,69750110,6542,3001,1485457739,1482222817,69.15,68.37,34.08,34.15,1.99,2.23,1.6,1.61
-68934,31,129,31129,58,31,46071512,45929068,188,98,69892554,69750110,4500,2465,1491363697,1489645213,30.85,31.63,65.92,65.85,1.29,1.26,3.09,3.08
-68935,31,035,31035,635,322,196346816,195830025,750,373,314284864,313720236,6542,3001,1485457739,1482222817,84.67,86.33,62.47,62.42,9.71,10.73,13.22,13.21
-68935,31,129,31129,115,51,117938048,117890211,750,373,314284864,313720236,4500,2465,1491363697,1489645213,15.33,13.67,37.53,37.58,2.56,2.07,7.91,7.91
-68936,31,065,31065,214,115,103749572,102907347,243,132,195919513,195077288,4959,2721,1866458394,1862542551,88.07,87.12,52.96,52.75,4.32,4.23,5.56,5.53
-68936,31,073,31073,29,17,92169941,92169941,243,132,195919513,195077288,2044,1267,1198448086,1186616260,11.93,12.88,47.04,47.25,1.42,1.34,7.69,7.77
-68937,31,047,31047,467,505,42945186,39482514,1836,1439,425369644,410862431,24326,10123,2640319042,2623905741,25.44,35.09,10.1,9.61,1.92,4.99,1.63,1.5
-68937,31,073,31073,1369,934,382424458,371379917,1836,1439,425369644,410862431,2044,1267,1198448086,1186616260,74.56,64.91,89.9,90.39,66.98,73.72,31.91,31.3
-68938,31,035,31035,582,292,151889396,151065754,582,292,151889396,151065754,6542,3001,1485457739,1482222817,100,100,100,100,8.9,9.73,10.23,10.19
-68939,31,061,31061,1318,674,318041866,318041866,1318,674,318041866,318041866,3225,1734,1491843975,1491356076,100,100,100,100,40.87,38.87,21.32,21.33
-68940,31,137,31137,496,220,243526457,243463784,496,220,243526457,243463784,9188,4175,1399695130,1398048596,100,100,100,100,5.4,5.27,17.4,17.41
-68941,31,001,31001,301,128,100259191,100259191,832,356,217606466,217606466,31364,13350,1461350349,1458868867,36.18,35.96,46.07,46.07,0.96,0.96,6.86,6.87
-68941,31,035,31035,531,228,117347275,117347275,832,356,217606466,217606466,6542,3001,1485457739,1482222817,63.82,64.04,53.93,53.93,8.12,7.6,7.9,7.92
-68942,31,129,31129,55,29,118621458,118556086,490,289,376548673,376304645,4500,2465,1491363697,1489645213,11.22,10.03,31.5,31.51,1.22,1.18,7.95,7.96
-68942,31,181,31181,435,260,257927215,257748559,490,289,376548673,376304645,3812,1912,1489355322,1489018081,88.78,89.97,68.5,68.49,11.41,13.6,17.32,17.31
-68943,31,129,31129,269,138,133861835,133682952,269,138,133861835,133682952,4500,2465,1491363697,1489645213,100,100,100,100,5.98,5.6,8.98,8.97
-68944,31,035,31035,1268,570,236057727,235519839,1323,588,272359364,271697371,6542,3001,1485457739,1482222817,95.84,96.94,86.67,86.68,19.38,18.99,15.89,15.89
-68944,31,081,31081,55,18,36301637,36177532,1323,588,272359364,271697371,9124,3968,1416778181,1406047715,4.16,3.06,13.33,13.32,0.6,0.45,2.56,2.57
-68945,31,099,31099,213,90,106205528,106205528,213,90,106205528,106205528,6489,2886,1337338045,1337065724,100,100,100,100,3.28,3.12,7.94,7.94
-68946,31,065,31065,53,36,68518933,68518933,53,36,68518933,68518933,4959,2721,1866458394,1862542551,100,100,100,100,1.07,1.32,3.67,3.68
-68947,31,061,31061,549,276,179220333,179220333,549,276,179220333,179220333,3225,1734,1491843975,1491356076,100,100,100,100,17.02,15.92,12.01,12.02
-68948,31,065,31065,321,187,136600152,136548784,363,211,234871399,234751349,4959,2721,1866458394,1862542551,88.43,88.63,58.16,58.17,6.47,6.87,7.32,7.33
-68948,31,073,31073,42,24,98271247,98202565,363,211,234871399,234751349,2044,1267,1198448086,1186616260,11.57,11.37,41.84,41.83,2.05,1.89,8.2,8.28
-68949,31,083,31083,116,43,82232468,82232468,6567,3026,553029063,552992646,3423,2375,1486810043,1433470225,1.77,1.42,14.87,14.87,3.39,1.81,5.53,5.74
-68949,31,137,31137,6451,2983,470796595,470760178,6567,3026,553029063,552992646,9188,4175,1399695130,1398048596,98.23,98.58,85.13,85.13,70.21,71.45,33.64,33.67
-68950,31,001,31001,331,156,123146733,123146733,331,156,123146733,123146733,31364,13350,1461350349,1458868867,100,100,100,100,1.06,1.17,8.43,8.44
-68952,31,181,31181,172,80,170001575,169999650,172,80,170001575,169999650,3812,1912,1489355322,1489018081,100,100,100,100,4.51,4.18,11.41,11.42
-68954,31,035,31035,94,43,30152510,30138497,94,43,30152510,30138497,6542,3001,1485457739,1482222817,100,100,100,100,1.44,1.43,2.03,2.03
-68955,31,001,31001,2025,766,246810112,246125364,2025,766,246810112,246125364,31364,13350,1461350349,1458868867,100,100,100,100,6.46,5.74,16.89,16.87
-68956,31,001,31001,1112,440,171680710,171680710,1215,493,255603974,253901318,31364,13350,1461350349,1458868867,91.52,89.25,67.17,67.62,3.55,3.3,11.75,11.77
-68956,31,079,31079,51,24,26079764,24377108,1215,493,255603974,253901318,58607,23549,1430047284,1414881257,4.2,4.87,10.2,9.6,0.09,0.1,1.82,1.72
-68956,31,099,31099,52,29,57843500,57843500,1215,493,255603974,253901318,6489,2886,1337338045,1337065724,4.28,5.88,22.63,22.78,0.8,1,4.33,4.33
-68957,31,129,31129,563,265,209287688,209148228,631,292,278469757,278330297,4500,2465,1491363697,1489645213,89.22,90.75,75.16,75.14,12.51,10.75,14.03,14.04
-68957,31,181,31181,68,27,69182069,69182069,631,292,278469757,278330297,3812,1912,1489355322,1489018081,10.78,9.25,24.84,24.86,1.78,1.41,4.65,4.65
-68958,31,137,31137,661,279,193169408,192956587,661,279,193169408,192956587,9188,4175,1399695130,1398048596,100,100,100,100,7.19,6.68,13.8,13.8
-68959,31,099,31099,4015,1812,791657260,791445598,4015,1812,791657260,791445598,6489,2886,1337338045,1337065724,100,100,100,100,61.87,62.79,59.2,59.19
-68960,31,061,31061,183,128,141292942,141116396,183,128,141292942,141116396,3225,1734,1491843975,1491356076,100,100,100,100,5.67,7.38,9.47,9.46
-68961,31,129,31129,732,447,328325168,327742448,732,447,328325168,327742448,4500,2465,1491363697,1489645213,100,100,100,100,16.27,18.13,22.02,22
-68964,31,129,31129,135,75,81815291,81663976,135,75,81815291,81663976,4500,2465,1491363697,1489645213,100,100,100,100,3,3.04,5.49,5.48
-68966,31,083,31083,674,385,319120263,318842715,674,385,319120263,318842715,3423,2375,1486810043,1433470225,100,100,100,100,19.69,16.21,21.46,22.24
-68967,31,065,31065,803,428,250167036,248870058,1142,613,499981819,498568710,4959,2721,1866458394,1862542551,70.32,69.82,50.04,49.92,16.19,15.73,13.4,13.36
-68967,31,083,31083,339,185,249814783,249698652,1142,613,499981819,498568710,3423,2375,1486810043,1433470225,29.68,30.18,49.96,50.08,9.9,7.79,16.8,17.42
-68969,31,083,31083,38,26,3990161,3990161,38,26,3990161,3990161,3423,2375,1486810043,1433470225,100,100,100,100,1.11,1.09,0.27,0.28
-68970,31,181,31181,1342,773,396068657,396061188,1342,773,396068657,396061188,3812,1912,1489355322,1489018081,100,100,100,100,35.2,40.43,26.59,26.6
-68971,31,083,31083,458,798,268470394,242693456,458,798,268470394,242693456,3423,2375,1486810043,1433470225,100,100,100,100,13.38,33.6,18.06,16.93
-68972,31,061,31061,209,149,334425077,334208497,209,149,334425077,334208497,3225,1734,1491843975,1491356076,100,100,100,100,6.48,8.59,22.42,22.41
-68973,31,001,31001,463,194,130455136,130364918,463,194,130455136,130364918,31364,13350,1461350349,1458868867,100,100,100,100,1.48,1.45,8.93,8.94
-68974,31,129,31129,184,111,81293538,81178830,184,111,81293538,81178830,4500,2465,1491363697,1489645213,100,100,100,100,4.09,4.5,5.45,5.45
-68975,31,035,31035,160,60,70800151,70484309,160,60,70800151,70484309,6542,3001,1485457739,1482222817,100,100,100,100,2.45,2,4.77,4.76
-68976,31,073,31073,316,147,238306415,238204793,316,147,238306415,238204793,2044,1267,1198448086,1186616260,100,100,100,100,15.46,11.6,19.88,20.07
-68977,31,065,31065,61,36,135464342,135464342,342,189,275080684,275080684,4959,2721,1866458394,1862542551,17.84,19.05,49.25,49.25,1.23,1.32,7.26,7.27
-68977,31,083,31083,281,153,139616342,139616342,342,189,275080684,275080684,3423,2375,1486810043,1433470225,82.16,80.95,50.75,50.75,8.21,6.44,9.39,9.74
-68978,20,089,20089,70,39,68154631,67802823,2377,1323,370686833,370122379,3077,2032,2368181544,2356321996,2.94,2.95,18.39,18.32,2.27,1.92,2.88,2.88
-68978,31,129,31129,2307,1284,302532202,302319556,2377,1323,370686833,370122379,4500,2465,1491363697,1489645213,97.06,97.05,81.61,81.68,51.27,52.09,20.29,20.29
-68979,31,035,31035,1774,786,230211485,229568097,1888,835,329475849,328335822,6542,3001,1485457739,1482222817,93.96,94.13,69.87,69.92,27.12,26.19,15.5,15.49
-68979,31,059,31059,114,49,99264364,98767725,1888,835,329475849,328335822,5890,2913,1493192799,1490202759,6.04,5.87,30.13,30.08,1.94,1.68,6.65,6.63
-68980,31,001,31001,54,19,21377026,21276895,388,148,77156815,76931806,31364,13350,1461350349,1458868867,13.92,12.84,27.71,27.66,0.17,0.14,1.46,1.46
-68980,31,035,31035,280,114,39980083,39878166,388,148,77156815,76931806,6542,3001,1485457739,1482222817,72.16,77.03,51.82,51.84,4.28,3.8,2.69,2.69
-68980,31,081,31081,54,15,15799706,15776745,388,148,77156815,76931806,9124,3968,1416778181,1406047715,13.92,10.14,20.48,20.51,0.59,0.38,1.12,1.12
-68981,31,061,31061,314,160,212353296,212330542,314,160,212353296,212330542,3225,1734,1491843975,1491356076,100,100,100,100,9.74,9.23,14.23,14.24
-68982,31,061,31061,89,40,86166932,86166932,649,282,263709653,263709653,3225,1734,1491843975,1491356076,13.71,14.18,32.67,32.67,2.76,2.31,5.78,5.78
-68982,31,083,31083,71,32,66728146,66728146,649,282,263709653,263709653,3423,2375,1486810043,1433470225,10.94,11.35,25.3,25.3,2.07,1.35,4.49,4.66
-68982,31,099,31099,422,181,51871641,51871641,649,282,263709653,263709653,6489,2886,1337338045,1337065724,65.02,64.18,19.67,19.67,6.5,6.27,3.88,3.88
-68982,31,137,31137,67,29,58942934,58942934,649,282,263709653,263709653,9188,4175,1399695130,1398048596,10.32,10.28,22.35,22.35,0.73,0.69,4.21,4.22
-69001,31,063,31063,162,153,359467459,353098127,9449,4519,1158436478,1151731395,2756,1574,2538393325,2524180489,1.71,3.39,31.03,30.66,5.88,9.72,14.16,13.99
-69001,31,145,31145,9287,4366,798969019,798633268,9449,4519,1158436478,1151731395,11055,5267,1859627202,1856983744,98.29,96.61,68.97,69.34,84.01,82.89,42.96,43.01
-69020,31,145,31145,397,209,244924001,244844860,397,209,244924001,244844860,11055,5267,1859627202,1856983744,100,100,100,100,3.59,3.97,13.17,13.19
-69021,31,057,31057,1348,751,785191349,783396345,1348,751,785191349,783396345,2008,1125,2385000400,2381954077,100,100,100,100,67.13,66.76,32.92,32.89
-69022,31,063,31063,163,195,517017883,509924170,1570,942,928372944,918699010,2756,1574,2538393325,2524180489,10.38,20.7,55.69,55.51,5.91,12.39,20.37,20.2
-69022,31,065,31065,1291,695,266942249,265694944,1570,942,928372944,918699010,4959,2721,1866458394,1862542551,82.23,73.78,28.75,28.92,26.03,25.54,14.3,14.27
-69022,31,145,31145,116,52,144412812,143079896,1570,942,928372944,918699010,11055,5267,1859627202,1856983744,7.39,5.52,15.56,15.57,1.05,0.99,7.77,7.7
-69023,31,029,31029,440,229,583159862,582074274,440,229,583159862,582074274,3966,1946,2324511748,2316533574,100,100,100,100,11.09,11.77,25.09,25.13
-69024,31,085,31085,61,24,142547024,142547024,1195,571,747729910,747718308,967,511,1847392294,1846821508,5.1,4.2,19.06,19.06,6.31,4.7,7.72,7.72
-69024,31,087,31087,1102,536,578630946,578619344,1195,571,747729910,747718308,2908,1763,1860846081,1838742700,92.22,93.87,77.39,77.38,37.9,30.4,31.1,31.47
-69024,31,145,31145,32,11,26551940,26551940,1195,571,747729910,747718308,11055,5267,1859627202,1856983744,2.68,1.93,3.55,3.55,0.29,0.21,1.43,1.43
-69025,31,063,31063,1181,552,459286895,459073688,1220,571,612607854,612394647,2756,1574,2538393325,2524180489,96.8,96.67,74.97,74.96,42.85,35.07,18.09,18.19
-69025,31,111,31111,39,19,153320959,153320959,1220,571,612607854,612394647,36288,16583,6669546431,6640905294,3.2,3.33,25.03,25.04,0.11,0.11,2.3,2.31
-69026,31,145,31145,220,117,130348893,130348893,220,117,130348893,130348893,11055,5267,1859627202,1856983744,100,100,100,100,1.99,2.22,7.01,7.02
-69027,31,029,31029,133,96,108182370,101811984,133,96,108182370,101811984,3966,1946,2324511748,2316533574,100,100,100,100,3.35,4.93,4.65,4.4
-69028,31,047,31047,93,56,100654158,99191629,731,376,461341815,459856715,24326,10123,2640319042,2623905741,12.72,14.89,21.82,21.57,0.38,0.55,3.81,3.78
-69028,31,063,31063,602,306,331424416,331401845,731,376,461341815,459856715,2756,1574,2538393325,2524180489,82.35,81.38,71.84,72.07,21.84,19.44,13.06,13.13
-69028,31,073,31073,36,14,29263241,29263241,731,376,461341815,459856715,2044,1267,1198448086,1186616260,4.92,3.72,6.34,6.36,1.76,1.1,2.44,2.47
-69029,31,047,31047,216,127,109708151,109708151,316,190,512107795,511965864,24326,10123,2640319042,2623905741,68.35,66.84,21.42,21.43,0.89,1.25,4.16,4.18
-69029,31,063,31063,83,46,223438500,223296569,316,190,512107795,511965864,2756,1574,2538393325,2524180489,26.27,24.21,43.63,43.62,3.01,2.92,8.8,8.85
-69029,31,111,31111,17,17,178961144,178961144,316,190,512107795,511965864,36288,16583,6669546431,6640905294,5.38,8.95,34.95,34.96,0.05,0.1,2.68,2.69
-69030,31,029,31029,17,9,90570274,90570274,324,184,857157118,856433617,3966,1946,2324511748,2316533574,5.25,4.89,10.57,10.58,0.43,0.46,3.9,3.91
-69030,31,057,31057,307,175,766586844,765863343,324,184,857157118,856433617,2008,1125,2385000400,2381954077,94.75,95.11,89.43,89.42,15.29,15.56,32.14,32.15
-69032,31,085,31085,498,258,867977433,867673182,498,258,867977433,867673182,967,511,1847392294,1846821508,100,100,100,100,51.5,50.49,46.98,46.98
-69033,31,029,31029,2577,1183,953035371,952653719,2577,1183,953035371,952653719,3966,1946,2324511748,2316533574,100,100,100,100,64.98,60.79,41,41.12
-69034,31,063,31063,31,18,109507002,109507002,908,454,494798221,493902571,2756,1574,2538393325,2524180489,3.41,3.96,22.13,22.17,1.12,1.14,4.31,4.34
-69034,31,145,31145,877,436,385291219,384395569,908,454,494798221,493902571,11055,5267,1859627202,1856983744,96.59,96.04,77.87,77.83,7.93,8.28,20.72,20.7
-69036,31,145,31145,126,76,129129318,129129318,126,76,129129318,129129318,11055,5267,1859627202,1856983744,100,100,100,100,1.14,1.44,6.94,6.95
-69037,31,057,31057,115,68,196865047,196814505,115,68,196865047,196814505,2008,1125,2385000400,2381954077,100,100,100,100,5.73,6.04,8.25,8.26
-69038,31,063,31063,391,210,288677937,288552176,449,244,452673903,452475776,2756,1574,2538393325,2524180489,87.08,86.07,63.77,63.77,14.19,13.34,11.37,11.43
-69038,31,085,31085,58,34,163995966,163923600,449,244,452673903,452475776,967,511,1847392294,1846821508,12.92,13.93,36.23,36.23,6,6.65,8.88,8.88
-69039,31,063,31063,107,66,140297271,140050950,139,82,266086342,265758443,2756,1574,2538393325,2524180489,76.98,80.49,52.73,52.7,3.88,4.19,5.53,5.55
-69039,31,111,31111,32,16,125789071,125707493,139,82,266086342,265758443,36288,16583,6669546431,6640905294,23.02,19.51,47.27,47.3,0.09,0.1,1.89,1.89
-69040,31,085,31085,202,114,233166407,233042608,634,362,512474757,512232161,967,511,1847392294,1846821508,31.86,31.49,45.5,45.5,20.89,22.31,12.62,12.62
-69040,31,087,31087,432,248,279308350,279189553,634,362,512474757,512232161,2908,1763,1860846081,1838742700,68.14,68.51,54.5,54.5,14.86,14.07,15.01,15.18
-69041,31,057,31057,161,87,419455682,419211116,161,87,419455682,419211116,2008,1125,2385000400,2381954077,100,100,100,100,8.02,7.73,17.59,17.6
-69042,31,063,31063,36,28,109275962,109275962,36,28,109275962,109275962,2756,1574,2538393325,2524180489,100,100,100,100,1.31,1.78,4.3,4.33
-69043,31,087,31087,549,344,503155355,494608718,549,344,503155355,494608718,2908,1763,1860846081,1838742700,100,100,100,100,18.88,19.51,27.04,26.9
-69044,31,087,31087,825,635,499751430,486325085,825,635,499751430,486325085,2908,1763,1860846081,1838742700,100,100,100,100,28.37,36.02,26.86,26.45
-69045,31,029,31029,781,412,479894514,479753966,975,516,969082432,968668191,3966,1946,2324511748,2316533574,80.1,79.84,49.52,49.53,19.69,21.17,20.64,20.71
-69045,31,057,31057,73,42,173002326,172769616,975,516,969082432,968668191,2008,1125,2385000400,2381954077,7.49,8.14,17.85,17.84,3.64,3.73,7.25,7.25
-69045,31,085,31085,121,62,316185592,316144609,975,516,969082432,968668191,967,511,1847392294,1846821508,12.41,12.02,32.63,32.64,12.51,12.13,17.12,17.12
-69046,31,065,31065,194,146,291761769,291761769,194,146,291761769,291761769,4959,2721,1866458394,1862542551,100,100,100,100,3.91,5.37,15.63,15.66
-69101,31,111,31111,29873,13701,1451655694,1439781055,29904,13715,1543843752,1531969113,36288,16583,6669546431,6640905294,99.9,99.9,94.03,93.98,82.32,82.62,21.77,21.68
-69101,31,117,31117,31,14,92188058,92188058,29904,13715,1543843752,1531969113,539,283,2227417703,2224737034,0.1,0.1,5.97,6.02,5.75,4.95,4.14,4.14
-69120,31,041,31041,816,470,489708763,489584417,931,530,867962531,867838185,10939,5579,6671503254,6670570294,87.65,88.68,56.42,56.41,7.46,8.42,7.34,7.34
-69120,31,111,31111,59,27,255023004,255023004,931,530,867962531,867838185,36288,16583,6669546431,6640905294,6.34,5.09,29.38,29.39,0.16,0.16,3.82,3.84
-69120,31,113,31113,56,33,123230764,123230764,931,530,867962531,867838185,763,395,1479206589,1478003028,6.02,6.23,14.2,14.2,7.34,8.35,8.33,8.34
-69121,31,005,31005,400,223,1635407424,1630258881,400,223,1635407424,1630258881,460,254,1860404520,1852759801,100,100,100,100,86.96,87.8,87.91,87.99
-69122,31,049,31049,573,324,343713650,341690681,619,348,493343095,491320126,1941,1044,1141439910,1139208954,92.57,93.1,69.67,69.55,29.52,31.03,30.11,29.99
-69122,31,101,31101,46,24,149629445,149629445,619,348,493343095,491320126,8368,5424,2874202838,2749531266,7.43,6.9,30.33,30.45,0.55,0.44,5.21,5.44
-69123,31,111,31111,935,485,526608948,523238507,935,485,526608948,523238507,36288,16583,6669546431,6640905294,100,100,100,100,2.58,2.92,7.9,7.88
-69125,31,123,31123,346,213,620912024,618467273,346,213,620912024,618467273,5042,2442,3703322477,3687723807,100,100,100,100,6.86,8.72,16.77,16.77
-69127,31,101,31101,739,640,458326563,446577947,739,640,458326563,446577947,8368,5424,2874202838,2749531266,100,100,100,100,8.83,11.8,15.95,16.24
-69128,31,007,31007,45,26,157748576,157748576,302,179,1116267015,1115425434,690,369,1932823996,1932426927,14.9,14.53,14.13,14.14,6.52,7.05,8.16,8.16
-69128,31,105,31105,257,153,958518439,957676858,302,179,1116267015,1115425434,3821,1963,2466717692,2465269246,85.1,85.47,85.87,85.86,6.73,7.79,38.86,38.85
-69129,31,049,31049,1368,720,797726260,797518273,1368,720,797726260,797518273,1941,1044,1141439910,1139208954,100,100,100,100,70.48,68.97,69.89,70.01
-69130,31,047,31047,5307,2489,589695021,586821722,5307,2489,589695021,586821722,24326,10123,2640319042,2623905741,100,100,100,100,21.82,24.59,22.33,22.36
-69131,31,033,31033,541,277,402447569,402447569,561,290,492817969,492817969,9998,4888,3098660870,3098368319,96.43,95.52,81.66,81.66,5.41,5.67,12.99,12.99
-69131,31,123,31123,20,13,90370400,90370400,561,290,492817969,492817969,5042,2442,3703322477,3687723807,3.57,4.48,18.34,18.34,0.4,0.53,2.44,2.45
-69132,31,111,31111,117,51,351445076,351445076,117,51,351445076,351445076,36288,16583,6669546431,6640905294,100,100,100,100,0.32,0.31,5.27,5.29
-69133,31,105,31105,386,199,592427378,592427378,386,199,592427378,592427378,3821,1963,2466717692,2465269246,100,100,100,100,10.1,10.14,24.02,24.03
-69134,31,085,31085,12,10,64792779,64763392,364,197,570627894,570108893,967,511,1847392294,1846821508,3.3,5.08,11.35,11.36,1.24,1.96,3.51,3.51
-69134,31,135,31135,352,187,505835115,505345501,364,197,570627894,570108893,2970,1450,2290668317,2287828141,96.7,94.92,88.65,88.64,11.85,12.9,22.08,22.09
-69135,31,031,31031,65,44,411698336,411459363,65,44,411698336,411459363,5713,3157,15564098769,15437421571,100,100,100,100,1.14,1.39,2.65,2.67
-69138,31,041,31041,164,69,294463011,294463011,4489,2053,873293228,872603886,10939,5579,6671503254,6670570294,3.65,3.36,33.72,33.75,1.5,1.24,4.41,4.41
-69138,31,047,31047,4211,1933,364418128,363775966,4489,2053,873293228,872603886,24326,10123,2640319042,2623905741,93.81,94.15,41.73,41.69,17.31,19.1,13.8,13.86
-69138,31,111,31111,114,51,214412089,214364909,4489,2053,873293228,872603886,36288,16583,6669546431,6640905294,2.54,2.48,24.55,24.57,0.31,0.31,3.21,3.23
-69140,31,135,31135,1775,855,919913567,918228773,1775,855,919913567,918228773,2970,1450,2290668317,2287828141,100,100,100,100,59.76,58.97,40.16,40.14
-69141,31,033,31033,385,197,299983623,299983623,385,197,299983623,299983623,9998,4888,3098660870,3098368319,100,100,100,100,3.85,4.03,9.68,9.68
-69142,31,171,31171,137,83,320794002,319634920,137,83,320794002,319634920,647,402,1849301099,1847272741,100,100,100,100,21.17,20.65,17.35,17.3
-69143,31,111,31111,1460,631,619487072,618244390,1460,631,619487072,618244390,36288,16583,6669546431,6640905294,100,100,100,100,4.02,3.81,9.29,9.31
-69144,31,101,31101,202,128,314846993,313218744,202,128,314846993,313218744,8368,5424,2874202838,2749531266,100,100,100,100,2.41,2.36,10.95,11.39
-69145,31,007,31007,36,22,159134139,159134139,3214,1633,1074906014,1074299149,690,369,1932823996,1932426927,1.12,1.35,14.8,14.81,5.22,5.96,8.23,8.23
-69145,31,105,31105,3178,1611,915771875,915165010,3214,1633,1074906014,1074299149,3821,1963,2466717692,2465269246,98.88,98.65,85.2,85.19,83.17,82.07,37.13,37.12
-69146,31,005,31005,24,13,106254047,106254047,334,594,490611078,403381839,460,254,1860404520,1852759801,7.19,2.19,21.66,26.34,5.22,5.12,5.71,5.73
-69146,31,101,31101,310,581,384357031,297127792,334,594,490611078,403381839,8368,5424,2874202838,2749531266,92.81,97.81,78.34,73.66,3.7,10.71,13.37,10.81
-69147,31,069,31069,469,369,1038460933,1035456182,737,967,1170392534,1167071972,2057,1314,4482946309,4414071674,63.64,38.16,88.73,88.72,22.8,28.08,23.16,23.46
-69147,31,101,31101,268,598,131931601,131615790,737,967,1170392534,1167071972,8368,5424,2874202838,2749531266,36.36,61.84,11.27,11.28,3.2,11.03,4.59,4.79
-69148,31,069,31069,166,121,718385910,710886595,217,149,964462710,955037930,2057,1314,4482946309,4414071674,76.5,81.21,74.49,74.44,8.07,9.21,16.02,16.11
-69148,31,123,31123,51,28,246076800,244151335,217,149,964462710,955037930,5042,2442,3703322477,3687723807,23.5,18.79,25.51,25.56,1.01,1.15,6.64,6.62
-69149,31,033,31033,665,364,667243883,667051833,699,383,781535776,781332118,9998,4888,3098660870,3098368319,95.14,95.04,85.38,85.37,6.65,7.45,21.53,21.53
-69149,31,069,31069,34,19,114291893,114280285,699,383,781535776,781332118,2057,1314,4482946309,4414071674,4.86,4.96,14.62,14.63,1.65,1.45,2.55,2.59
-69150,31,135,31135,522,239,437306310,436708569,522,239,437306310,436708569,2970,1450,2290668317,2287828141,100,100,100,100,17.58,16.48,19.09,19.09
-69151,31,111,31111,815,356,827297381,826514890,815,356,827297381,826514890,36288,16583,6669546431,6640905294,100,100,100,100,2.25,2.15,12.4,12.45
-69152,31,031,31031,150,89,2008049642,2002459061,886,520,3876628195,3870154620,5713,3157,15564098769,15437421571,16.93,17.12,51.8,51.74,2.63,2.82,12.9,12.97
-69152,31,091,31091,736,431,1868578553,1867695559,886,520,3876628195,3870154620,736,431,1868578553,1867695559,83.07,82.88,48.2,48.26,100,100,100,100
-69153,31,101,31101,5769,2973,521215704,498900622,5769,2973,521215704,498900622,8368,5424,2874202838,2749531266,100,100,100,100,68.94,54.81,18.13,18.14
-69154,31,069,31069,1291,726,1167487052,1157929857,1291,726,1167487052,1157929857,2057,1314,4482946309,4414071674,100,100,100,100,62.76,55.25,26.04,26.23
-69155,31,101,31101,1034,480,913895501,912460926,1034,480,913895501,912460926,8368,5424,2874202838,2749531266,100,100,100,100,12.36,8.85,31.8,33.19
-69156,31,007,31007,57,31,238473038,238473038,699,366,842102481,842102481,690,369,1932823996,1932426927,8.15,8.47,28.32,28.32,8.26,8.4,12.34,12.34
-69156,31,033,31033,642,335,603629443,603629443,699,366,842102481,842102481,9998,4888,3098660870,3098368319,91.85,91.53,71.68,71.68,6.42,6.85,19.48,19.48
-69157,31,009,31009,21,23,70348399,69850193,21,23,70348399,69850193,478,326,1850600101,1841156202,100,100,100,100,4.39,7.06,3.8,3.79
-69161,31,031,31031,19,11,265767987,264168338,81,73,349778699,348138371,5713,3157,15564098769,15437421571,23.46,15.07,75.98,75.88,0.33,0.35,1.71,1.71
-69161,31,171,31171,62,62,84010712,83970033,81,73,349778699,348138371,647,402,1849301099,1847272741,76.54,84.93,24.02,24.12,9.58,15.42,4.54,4.55
-69162,31,033,31033,7765,3715,1125356352,1125255851,7765,3715,1125356352,1125255851,9998,4888,3098660870,3098368319,100,100,100,100,77.67,76,36.32,36.32
-69163,31,111,31111,165,68,289271096,289271096,873,431,1680177080,1678973519,36288,16583,6669546431,6640905294,18.9,15.78,17.22,17.23,0.45,0.41,4.34,4.36
-69163,31,113,31113,680,344,1086423963,1085220402,873,431,1680177080,1678973519,763,395,1479206589,1478003028,77.89,79.81,64.66,64.64,89.12,87.09,73.45,73.42
-69163,31,171,31171,28,19,304482021,304482021,873,431,1680177080,1678973519,647,402,1849301099,1847272741,3.21,4.41,18.12,18.14,4.33,4.73,16.46,16.48
-69165,31,111,31111,1722,738,623666459,613695510,1789,776,1097973627,1086535716,36288,16583,6669546431,6640905294,96.25,95.1,56.8,56.48,4.75,4.45,9.35,9.24
-69165,31,117,31117,67,38,474307168,472840206,1789,776,1097973627,1086535716,539,283,2227417703,2224737034,3.75,4.9,43.2,43.52,12.43,13.43,21.29,21.25
-69166,31,031,31031,180,107,957232755,951472924,600,345,2097247119,2090658691,5713,3157,15564098769,15437421571,30,31.01,45.64,45.51,3.15,3.39,6.15,6.16
-69166,31,171,31171,420,238,1140014364,1139185767,600,345,2097247119,2090658691,647,402,1849301099,1847272741,70,68.99,54.36,54.49,64.91,59.2,61.65,61.67
-69167,31,117,31117,441,231,1660922477,1659708770,441,231,1660922477,1659708770,539,283,2227417703,2224737034,100,100,100,100,81.82,81.63,74.57,74.6
-69168,31,029,31029,18,17,109669357,109669357,271,155,420720793,420720793,3966,1946,2324511748,2316533574,6.64,10.97,26.07,26.07,0.45,0.87,4.72,4.73
-69168,31,135,31135,253,138,311051436,311051436,271,155,420720793,420720793,2970,1450,2290668317,2287828141,93.36,89.03,73.93,73.93,8.52,9.52,13.58,13.6
-69169,31,085,31085,15,9,58727093,58727093,651,291,657879461,657234110,967,511,1847392294,1846821508,2.3,3.09,8.93,8.94,1.55,1.76,3.18,3.18
-69169,31,111,31111,568,251,482590479,482013155,651,291,657879461,657234110,36288,16583,6669546431,6640905294,87.25,86.25,73.36,73.34,1.57,1.51,7.24,7.26
-69169,31,135,31135,68,31,116561889,116493862,651,291,657879461,657234110,2970,1450,2290668317,2287828141,10.45,10.65,17.72,17.72,2.29,2.14,5.09,5.09
-69170,31,111,31111,372,172,570017959,569324106,372,172,570017959,569324106,36288,16583,6669546431,6640905294,100,100,100,100,1.03,1.04,8.55,8.57
-69171,31,047,31047,26,12,7288061,7288061,26,12,7288061,7288061,24326,10123,2640319042,2623905741,100,100,100,100,0.11,0.12,0.28,0.28
-69201,31,031,31031,3711,1950,2800543702,2744378160,4005,2054,3253471092,3196740174,5713,3157,15564098769,15437421571,92.66,94.94,86.08,85.85,64.96,61.77,17.99,17.78
-69201,31,103,31103,27,17,128281654,128268477,4005,2054,3253471092,3196740174,824,549,2004439147,2002246688,0.67,0.83,3.94,4.01,3.28,3.1,6.4,6.41
-69201,46,121,46121,267,87,324645736,324093537,4005,2054,3253471092,3196740174,9612,3142,3602196884,3596342315,6.67,4.24,9.98,10.14,2.78,2.77,9.01,9.01
-69210,31,017,31017,2472,1390,2034505099,2027609052,2484,1402,2043956281,2037060234,3145,1865,3173052570,3163238171,99.52,99.14,99.54,99.54,78.6,74.53,64.12,64.1
-69210,31,103,31103,12,12,9451182,9451182,2484,1402,2043956281,2037060234,824,549,2004439147,2002246688,0.48,0.86,0.46,0.46,1.46,2.19,0.47,0.47
-69211,31,031,31031,311,182,1274368968,1267554634,311,182,1274368968,1267554634,5713,3157,15564098769,15437421571,100,100,100,100,5.44,5.76,8.19,8.21
-69212,31,031,31031,159,100,342344702,342111045,248,146,477279393,477035000,5713,3157,15564098769,15437421571,64.11,68.49,71.73,71.72,2.78,3.17,2.2,2.22
-69212,46,121,46121,89,46,134934691,134923955,248,146,477279393,477035000,9612,3142,3602196884,3596342315,35.89,31.51,28.27,28.28,0.93,1.46,3.75,3.75
-69214,31,017,31017,203,124,756781998,753879624,203,124,756781998,753879624,3145,1865,3173052570,3163238171,100,100,100,100,6.45,6.65,23.85,23.83
-69216,31,031,31031,164,93,273655814,273555665,232,125,618831467,618582235,5713,3157,15564098769,15437421571,70.69,74.4,44.22,44.22,2.87,2.95,1.76,1.77
-69216,46,121,46121,68,32,345175653,345026570,232,125,618831467,618582235,9612,3142,3602196884,3596342315,29.31,25.6,55.78,55.78,0.71,1.02,9.58,9.59
-69217,31,017,31017,470,351,381765473,381749495,533,377,459438541,459422563,3145,1865,3173052570,3163238171,88.18,93.1,83.09,83.09,14.94,18.82,12.03,12.07
-69217,31,149,31149,63,26,77673068,77673068,533,377,459438541,459422563,1526,912,2620339973,2611532223,11.82,6.9,16.91,16.91,4.13,2.85,2.96,2.97
-69218,31,031,31031,260,152,1343500988,1338870625,260,152,1343500988,1338870625,5713,3157,15564098769,15437421571,100,100,100,100,4.55,4.81,8.63,8.67
-69219,31,031,31031,80,49,756381004,754088427,80,49,756381004,754088427,5713,3157,15564098769,15437421571,100,100,100,100,1.4,1.55,4.86,4.88
-69220,31,031,31031,36,17,63447399,63447399,59,39,125769586,125769586,5713,3157,15564098769,15437421571,61.02,43.59,50.45,50.45,0.63,0.54,0.41,0.41
-69220,31,103,31103,23,22,62322187,62322187,59,39,125769586,125769586,824,549,2004439147,2002246688,38.98,56.41,49.55,49.55,2.79,4.01,3.11,3.11
-69221,31,031,31031,222,130,1189239513,1186681954,222,130,1189239513,1186681954,5713,3157,15564098769,15437421571,100,100,100,100,3.89,4.12,7.64,7.69
-69301,31,013,31013,9931,4754,1571163579,1564608723,10125,4864,2687417333,2659295604,11308,5478,2791583700,2784995043,98.08,97.74,58.46,58.84,87.82,86.78,56.28,56.18
-69301,31,123,31123,58,38,478650033,471055415,10125,4864,2687417333,2659295604,5042,2442,3703322477,3687723807,0.57,0.78,17.81,17.71,1.15,1.56,12.92,12.77
-69301,31,161,31161,136,72,637603721,623631466,10125,4864,2687417333,2659295604,5469,2936,6396745375,6321803579,1.34,1.48,23.73,23.45,2.49,2.45,9.97,9.86
-69331,31,123,31123,59,34,432264885,431054926,59,34,432264885,431054926,5042,2442,3703322477,3687723807,100,100,100,100,1.17,1.39,11.67,11.69
-69333,31,031,31031,89,49,677268801,665307412,239,154,1521320939,1500590100,5713,3157,15564098769,15437421571,37.24,31.82,44.52,44.34,1.56,1.55,4.35,4.31
-69333,31,069,31069,29,26,241431892,238373522,239,154,1521320939,1500590100,2057,1314,4482946309,4414071674,12.13,16.88,15.87,15.89,1.41,1.98,5.39,5.4
-69333,31,075,31075,121,79,602620246,596909166,239,154,1521320939,1500590100,614,391,2028540839,2010409972,50.63,51.3,39.61,39.78,19.71,20.2,29.71,29.69
-69334,31,007,31007,26,11,47928790,47928790,2351,1096,805868193,805019138,690,369,1932823996,1932426927,1.11,1,5.95,5.95,3.77,2.98,2.48,2.48
-69334,31,123,31123,2042,953,645812697,645146288,2351,1096,805868193,805019138,5042,2442,3703322477,3687723807,86.86,86.95,80.14,80.14,40.5,39.03,17.44,17.49
-69334,31,157,31157,283,132,112126706,111944060,2351,1096,805868193,805019138,36970,16408,1930476944,1915039277,12.04,12.04,13.91,13.91,0.77,0.8,5.81,5.85
-69335,31,161,31161,53,44,269685512,267065660,53,44,269685512,267065660,5469,2936,6396745375,6321803579,100,100,100,100,0.97,1.5,4.22,4.22
-69336,31,123,31123,2466,1163,1189235638,1187478170,2466,1163,1189235638,1187478170,5042,2442,3703322477,3687723807,100,100,100,100,48.91,47.62,32.11,32.2
-69337,31,045,31045,7340,3182,1667350842,1666304956,7365,3199,1798987979,1797676120,9182,4252,3628745894,3616823898,99.66,99.47,92.68,92.69,79.94,74.84,45.95,46.07
-69337,31,161,31161,25,17,131637137,131371164,7365,3199,1798987979,1797676120,5469,2936,6396745375,6321803579,0.34,0.53,7.32,7.31,0.46,0.58,2.06,2.08
-69339,31,045,31045,1395,808,713662731,713314836,1462,863,1003227948,1002880053,9182,4252,3628745894,3616823898,95.42,93.63,71.14,71.13,15.19,19,19.67,19.72
-69339,31,165,31165,67,55,289565217,289565217,1462,863,1003227948,1002880053,1311,815,5354705139,5352832471,4.58,6.37,28.86,28.87,5.11,6.75,5.41,5.41
-69340,31,161,31161,121,69,778382260,760457356,121,69,778382260,760457356,5469,2936,6396745375,6321803579,100,100,100,100,2.21,2.35,12.17,12.03
-69341,31,007,31007,52,21,149374878,149348595,11165,4731,570804055,570023173,690,369,1932823996,1932426927,0.47,0.44,26.17,26.2,7.54,5.69,7.73,7.73
-69341,31,157,31157,11113,4710,421429177,420674578,11165,4731,570804055,570023173,36970,16408,1930476944,1915039277,99.53,99.56,73.83,73.8,30.06,28.71,21.83,21.97
-69343,31,031,31031,160,106,1735966724,1726108537,2538,1327,3297504022,3279488466,5713,3157,15564098769,15437421571,6.3,7.99,52.64,52.63,2.8,3.36,11.15,11.18
-69343,31,161,31161,2378,1221,1561537298,1553379929,2538,1327,3297504022,3279488466,5469,2936,6396745375,6321803579,93.7,92.01,47.36,47.37,43.48,41.59,24.41,24.57
-69345,31,007,31007,455,244,1135626449,1135266793,455,244,1135626449,1135266793,690,369,1932823996,1932426927,100,100,100,100,65.94,66.12,58.75,58.75
-69346,31,165,31165,592,429,2980423016,2978655298,592,429,2980423016,2978655298,1311,815,5354705139,5352832471,100,100,100,100,45.16,52.64,55.66,55.65
-69347,31,045,31045,65,38,178587771,178511148,1249,690,1131124609,1130457479,9182,4252,3628745894,3616823898,5.2,5.51,15.79,15.79,0.71,0.89,4.92,4.94
-69347,31,161,31161,1184,652,952536838,951946331,1249,690,1131124609,1130457479,5469,2936,6396745375,6321803579,94.8,94.49,84.21,84.21,21.65,22.21,14.89,15.06
-69348,31,013,31013,1377,724,1220420121,1220386320,1503,823,2391443716,2391409915,11308,5478,2791583700,2784995043,91.62,87.97,51.03,51.03,12.18,13.22,43.72,43.82
-69348,31,045,31045,62,45,250928514,250928514,1503,823,2391443716,2391409915,9182,4252,3628745894,3616823898,4.13,5.47,10.49,10.49,0.68,1.06,6.92,6.94
-69348,31,165,31165,64,54,920095081,920095081,1503,823,2391443716,2391409915,1311,815,5354705139,5352832471,4.26,6.56,38.47,38.48,4.88,6.63,17.18,17.19
-69350,31,005,31005,5,8,47288686,46656125,383,262,1191398707,1177438501,460,254,1860404520,1852759801,1.31,3.05,3.97,3.96,1.09,3.15,2.54,2.52
-69350,31,031,31031,39,24,318882937,314429900,383,262,1191398707,1177438501,5713,3157,15564098769,15437421571,10.18,9.16,26.77,26.7,0.68,0.76,2.05,2.04
-69350,31,075,31075,339,230,825227084,816352476,383,262,1191398707,1177438501,614,391,2028540839,2010409972,88.51,87.79,69.27,69.33,55.21,58.82,40.68,40.61
-69351,31,069,31069,68,53,1202888629,1157145233,235,142,2131381160,2055595945,2057,1314,4482946309,4414071674,28.94,37.32,56.44,56.29,3.31,4.03,26.83,26.21
-69351,31,161,31161,167,89,928492531,898450712,235,142,2131381160,2055595945,5469,2936,6396745375,6321803579,71.06,62.68,43.56,43.71,3.05,3.03,14.52,14.21
-69352,31,157,31157,619,301,342450419,342123719,619,301,342450419,342123719,36970,16408,1930476944,1915039277,100,100,100,100,1.67,1.83,17.74,17.87
-69353,31,157,31157,37,12,76819,76819,37,12,76819,76819,36970,16408,1930476944,1915039277,100,100,100,100,0.1,0.07,0,0
-69354,31,045,31045,61,42,272353959,266210342,97,63,550590491,544446874,9182,4252,3628745894,3616823898,62.89,66.67,49.47,48.9,0.66,0.99,7.51,7.36
-69354,31,165,31165,36,21,278236532,278236532,97,63,550590491,544446874,1311,815,5354705139,5352832471,37.11,33.33,50.53,51.1,2.75,2.58,5.2,5.2
-69355,31,157,31157,115,61,1487589,1465936,115,61,1487589,1465936,36970,16408,1930476944,1915039277,100,100,100,100,0.31,0.37,0.08,0.08
-69356,31,157,31157,1882,946,338828955,329911715,1882,946,338828955,329911715,36970,16408,1930476944,1915039277,100,100,100,100,5.09,5.77,17.55,17.23
-69357,31,157,31157,3373,1533,287913668,287532519,3567,1622,813772868,813289243,36970,16408,1930476944,1915039277,94.56,94.51,35.38,35.35,9.12,9.34,14.91,15.01
-69357,31,165,31165,194,89,525859200,525756724,3567,1622,813772868,813289243,1311,815,5354705139,5352832471,5.44,5.49,64.62,64.65,14.8,10.92,9.82,9.82
-69358,31,157,31157,1582,748,149335087,148696730,1907,903,486316838,485676007,36970,16408,1930476944,1915039277,82.96,82.83,30.71,30.62,4.28,4.56,7.74,7.76
-69358,31,165,31165,325,155,336981751,336979277,1907,903,486316838,485676007,1311,815,5354705139,5352832471,17.04,17.17,69.29,69.38,24.79,19.02,6.29,6.3
-69360,31,161,31161,1361,752,1089458405,1088161948,1361,752,1089458405,1088161948,5469,2936,6396745375,6321803579,100,100,100,100,24.89,25.61,17.03,17.21
-69361,31,157,31157,17966,7965,276828524,272613201,17999,7977,300372866,296157543,36970,16408,1930476944,1915039277,99.82,99.85,92.16,92.05,48.6,48.54,14.34,14.24
-69361,31,165,31165,33,12,23544342,23544342,17999,7977,300372866,296157543,1311,815,5354705139,5352832471,0.18,0.15,7.84,7.95,2.52,1.47,0.44,0.44
-69365,31,161,31161,44,20,47411673,47339013,44,20,47411673,47339013,5469,2936,6396745375,6321803579,100,100,100,100,0.8,0.68,0.74,0.75
-69366,31,005,31005,31,10,71454363,69590748,253,146,1817897369,1798067205,460,254,1860404520,1852759801,12.25,6.85,3.93,3.87,6.74,3.94,3.84,3.76
-69366,31,031,31031,68,54,1145749497,1131328127,253,146,1817897369,1798067205,5713,3157,15564098769,15437421571,26.88,36.99,63.03,62.92,1.19,1.71,7.36,7.33
-69366,31,075,31075,154,82,600693509,597148330,253,146,1817897369,1798067205,614,391,2028540839,2010409972,60.87,56.16,33.04,33.21,25.08,20.97,29.61,29.7
-69367,31,045,31045,259,137,545862077,541554102,259,137,545862077,541554102,9182,4252,3628745894,3616823898,100,100,100,100,2.82,3.22,15.04,14.97
-70001,22,051,22051,37996,19261,15546989,15546989,37996,19261,15546989,15546989,432552,189135,1723437406,765682649,100,100,100,100,8.78,10.18,0.9,2.03
-70002,22,051,22051,18879,9411,8947470,8336101,18879,9411,8947470,8336101,432552,189135,1723437406,765682649,100,100,100,100,4.36,4.98,0.52,1.09
-70003,22,051,22051,40150,17005,18584591,18179721,40150,17005,18584591,18179721,432552,189135,1723437406,765682649,100,100,100,100,9.28,8.99,1.08,2.37
-70005,22,051,22051,24339,12663,11305720,10826238,24339,12663,11305720,10826238,432552,189135,1723437406,765682649,100,100,100,100,5.63,6.7,0.66,1.41
-70006,22,051,22051,15703,6784,7087987,6705503,15703,6784,7087987,6705503,432552,189135,1723437406,765682649,100,100,100,100,3.63,3.59,0.41,0.88
-70030,22,057,22057,459,227,14971609,9788871,4585,1784,95141075,81547151,96318,38582,3818437634,2766662214,10.01,12.72,15.74,12,0.48,0.59,0.39,0.35
-70030,22,089,22089,4126,1557,80169466,71758280,4585,1784,95141075,81547151,52780,19896,1063523585,722820579,89.99,87.28,84.26,88,7.82,7.83,7.54,9.93
-70031,22,089,22089,1316,547,9156650,9109388,1316,547,9156650,9109388,52780,19896,1063523585,722820579,100,100,100,100,2.49,2.75,0.86,1.26
-70032,22,087,22087,3635,1918,4534591,4527960,3635,1918,4534591,4527960,35897,16794,5589380661,977764266,100,100,100,100,10.13,11.42,0.08,0.46
-70036,22,051,22051,1227,625,13006377,11341143,1227,625,13006377,11341143,432552,189135,1723437406,765682649,100,100,100,100,0.28,0.33,0.75,1.48
-70037,22,075,22075,15590,5863,175307392,161924735,15590,5863,175307392,161924735,23042,9596,6649014083,2019961046,100,100,100,100,67.66,61.1,2.64,8.02
-70038,22,075,22075,426,247,3622978,3443006,426,247,3622978,3443006,23042,9596,6649014083,2019961046,100,100,100,100,1.85,2.57,0.05,0.17
-70039,22,089,22089,2460,976,31505818,31406641,2460,976,31505818,31406641,52780,19896,1063523585,722820579,100,100,100,100,4.66,4.91,2.96,4.35
-70040,22,075,22075,1604,718,186852935,163615577,1604,718,186852935,163615577,23042,9596,6649014083,2019961046,100,100,100,100,6.96,7.48,2.81,8.1
-70041,22,075,22075,2381,1145,28525062,27186107,2381,1145,28525062,27186107,23042,9596,6649014083,2019961046,100,100,100,100,10.33,11.93,0.43,1.35
-70043,22,087,22087,16760,7958,21548838,20138103,16760,7958,21548838,20138103,35897,16794,5589380661,977764266,100,100,100,100,46.69,47.39,0.39,2.06
-70047,22,089,22089,13006,4807,28089200,27858249,13006,4807,28089200,27858249,52780,19896,1063523585,722820579,100,100,100,100,24.64,24.16,2.64,3.85
-70049,22,095,22095,2481,999,47257614,46933276,2481,999,47257614,46933276,45924,17510,900376257,551851752,100,100,100,100,5.4,5.71,5.25,8.5
-70050,22,075,22075,74,41,1532405,1498195,74,41,1532405,1498195,23042,9596,6649014083,2019961046,100,100,100,100,0.32,0.43,0.02,0.07
-70051,22,095,22095,2518,1021,23200278,23039580,2518,1021,23200278,23039580,45924,17510,900376257,551851752,100,100,100,100,5.48,5.83,2.58,4.17
-70052,22,093,22093,3795,1442,7714088,7521957,3795,1442,7714088,7521957,22102,8455,668110112,625577772,100,100,100,100,17.17,17.05,1.15,1.2
-70053,22,051,22051,16499,7466,10060332,8883569,16499,7466,10060332,8883569,432552,189135,1723437406,765682649,100,100,100,100,3.81,3.95,0.58,1.16
-70056,22,051,22051,39082,15224,17683593,17530113,39082,15224,17683593,17530113,432552,189135,1723437406,765682649,100,100,100,100,9.04,8.05,1.03,2.29
-70057,22,089,22089,4719,1710,101029238,99682076,4719,1710,101029238,99682076,52780,19896,1063523585,722820579,100,100,100,100,8.94,8.59,9.5,13.79
-70058,22,051,22051,39887,15204,34218109,32712777,39887,15204,34218109,32712777,432552,189135,1723437406,765682649,100,100,100,100,9.22,8.04,1.99,4.27
-70062,22,051,22051,17095,6914,20102350,18324276,17095,6914,20102350,18324276,432552,189135,1723437406,765682649,100,100,100,100,3.95,3.66,1.17,2.39
-70065,22,051,22051,51116,21784,22016206,20801066,51116,21784,22016206,20801066,432552,189135,1723437406,765682649,100,100,100,100,11.82,11.52,1.28,2.72
-70067,22,051,22051,2757,1106,34066690,27140760,2757,1106,34066690,27140760,432552,189135,1723437406,765682649,100,100,100,100,0.64,0.58,1.98,3.54
-70068,22,089,22089,1937,675,17986610,17384133,34101,12592,145436538,139371249,52780,19896,1063523585,722820579,5.68,5.36,12.37,12.47,3.67,3.39,1.69,2.41
-70068,22,095,22095,32164,11917,127449928,121987116,34101,12592,145436538,139371249,45924,17510,900376257,551851752,94.32,94.64,87.63,87.53,70.04,68.06,14.16,22.11
-70070,22,089,22089,12471,4678,289532861,239464332,12471,4678,289532861,239464332,52780,19896,1063523585,722820579,100,100,100,100,23.63,23.51,27.22,33.13
-70071,22,093,22093,3653,1437,6784720,6681634,3653,1437,6784720,6681634,22102,8455,668110112,625577772,100,100,100,100,16.53,17,1.02,1.07
-70072,22,051,22051,56344,21355,56235880,53744076,56344,21355,56235880,53744076,432552,189135,1723437406,765682649,100,100,100,100,13.03,11.29,3.26,7.02
-70075,22,087,22087,4417,1828,8817094,8572174,4417,1828,8817094,8572174,35897,16794,5589380661,977764266,100,100,100,100,12.3,10.88,0.16,0.88
-70076,22,095,22095,292,125,7695092,7081555,292,125,7695092,7081555,45924,17510,900376257,551851752,100,100,100,100,0.64,0.71,0.85,1.28
-70079,22,089,22089,3067,1270,5909431,5800943,3067,1270,5909431,5800943,52780,19896,1063523585,722820579,100,100,100,100,5.81,6.38,0.56,0.8
-70080,22,089,22089,1556,618,28315354,27695902,1556,618,28315354,27695902,52780,19896,1063523585,722820579,100,100,100,100,2.95,3.11,2.66,3.83
-70082,22,075,22075,336,135,35784981,35449577,336,135,35784981,35449577,23042,9596,6649014083,2019961046,100,100,100,100,1.46,1.41,0.54,1.75
-70083,22,075,22075,2353,1219,613897478,324684862,2353,1219,613897478,324684862,23042,9596,6649014083,2019961046,100,100,100,100,10.21,12.7,9.23,16.07
-70084,22,095,22095,7552,3007,39582739,39146227,7552,3007,39582739,39146227,45924,17510,900376257,551851752,100,100,100,100,16.44,17.17,4.4,7.09
-70085,22,087,22087,4427,2364,120250516,99981176,4427,2364,120250516,99981176,35897,16794,5589380661,977764266,100,100,100,100,12.33,14.08,2.15,10.23
-70086,22,093,22093,1969,724,61246507,58601361,1969,724,61246507,58601361,22102,8455,668110112,625577772,100,100,100,100,8.91,8.56,9.17,9.37
-70087,22,089,22089,8122,3058,32861307,32650225,8122,3058,32861307,32650225,52780,19896,1063523585,722820579,100,100,100,100,15.39,15.37,3.09,4.52
-70090,22,093,22093,6754,2598,101566679,100483624,7671,3039,130164106,128861704,22102,8455,668110112,625577772,88.05,85.49,78.03,77.98,30.56,30.73,15.2,16.06
-70090,22,095,22095,917,441,28597427,28378080,7671,3039,130164106,128861704,45924,17510,900376257,551851752,11.95,14.51,21.97,22.02,2,2.52,3.18,5.14
-70091,22,075,22075,278,223,1565864786,573889731,278,223,1565864786,573889731,23042,9596,6649014083,2019961046,100,100,100,100,1.21,2.32,23.55,28.41
-70092,22,087,22087,6651,2724,12791545,12560381,6651,2724,12791545,12560381,35897,16794,5589380661,977764266,100,100,100,100,18.53,16.22,0.23,1.28
-70094,22,051,22051,31669,12879,105612888,91843778,31669,12879,105612888,91843778,432552,189135,1723437406,765682649,100,100,100,100,7.32,6.81,6.13,12
-70112,22,071,22071,3655,2563,2258740,2258740,3655,2563,2258740,2258740,343829,189896,907043811,438803381,100,100,100,100,1.06,1.35,0.25,0.51
-70113,22,071,22071,7025,4793,2634502,2634502,7025,4793,2634502,2634502,343829,189896,907043811,438803381,100,100,100,100,2.04,2.52,0.29,0.6
-70114,22,071,22071,22870,11714,14500925,12612223,22870,11714,14500925,12612223,343829,189896,907043811,438803381,100,100,100,100,6.65,6.17,1.6,2.87
-70115,22,071,22071,31695,19083,11372574,10042864,31695,19083,11372574,10042864,343829,189896,907043811,438803381,100,100,100,100,9.22,10.05,1.25,2.29
-70116,22,071,22071,11507,9825,3638042,3345483,11507,9825,3638042,3345483,343829,189896,907043811,438803381,100,100,100,100,3.35,5.17,0.4,0.76
-70117,22,071,22071,23389,15771,16205667,14192015,23389,15771,16205667,14192015,343829,189896,907043811,438803381,100,100,100,100,6.8,8.31,1.79,3.23
-70118,22,071,22071,33008,16410,13896563,12131648,33008,16410,13896563,12131648,343829,189896,907043811,438803381,100,100,100,100,9.6,8.64,1.53,2.76
-70119,22,071,22071,36228,20543,11671365,11582141,36228,20543,11671365,11582141,343829,189896,907043811,438803381,100,100,100,100,10.54,10.82,1.29,2.64
-70121,22,051,22051,12029,6341,11217063,9728625,12029,6341,11217063,9728625,432552,189135,1723437406,765682649,100,100,100,100,2.78,3.35,0.65,1.27
-70122,22,071,22071,28564,15539,20830551,18268300,28564,15539,20830551,18268300,343829,189896,907043811,438803381,100,100,100,100,8.31,8.18,2.3,4.16
-70123,22,051,22051,26475,13148,23305411,19432218,26475,13148,23305411,19432218,432552,189135,1723437406,765682649,100,100,100,100,6.12,6.95,1.35,2.54
-70124,22,071,22071,16824,9325,19977403,17245862,16824,9325,19977403,17245862,343829,189896,907043811,438803381,100,100,100,100,4.89,4.91,2.2,3.93
-70125,22,071,22071,14479,7935,6068459,6068459,14479,7935,6068459,6068459,343829,189896,907043811,438803381,100,100,100,100,4.21,4.18,0.67,1.38
-70126,22,071,22071,23958,11341,30867364,26167003,23958,11341,30867364,26167003,343829,189896,907043811,438803381,100,100,100,100,6.97,5.97,3.4,5.96
-70127,22,071,22071,20471,10118,19995598,18376415,20471,10118,19995598,18376415,343829,189896,907043811,438803381,100,100,100,100,5.95,5.33,2.2,4.19
-70128,22,071,22071,17113,7524,15613991,12623595,17113,7524,15613991,12623595,343829,189896,907043811,438803381,100,100,100,100,4.98,3.96,1.72,2.88
-70129,22,071,22071,9064,3417,347633315,234935032,9064,3417,347633315,234935032,343829,189896,907043811,438803381,100,100,100,100,2.64,1.8,38.33,53.54
-70130,22,071,22071,14064,10680,6702728,5454481,14064,10680,6702728,5454481,343829,189896,907043811,438803381,100,100,100,100,4.09,5.62,0.74,1.24
-70131,22,071,22071,29915,13315,38748858,30840332,29915,13315,38748858,30840332,343829,189896,907043811,438803381,100,100,100,100,8.7,7.01,4.27,7.03
-70139,22,071,22071,0,0,14214,14214,0,0,14214,14214,343829,189896,907043811,438803381,0,0,100,100,0,0,0,0
-70163,22,071,22071,0,0,10072,10072,0,0,10072,10072,343829,189896,907043811,438803381,0,0,100,100,0,0,0,0
-70301,22,007,22007,823,315,12678923,12678923,43037,17516,765331759,746045261,23421,10351,944129737,877120860,1.91,1.8,1.66,1.7,3.51,3.04,1.34,1.45
-70301,22,057,22057,39134,15979,746322929,727074122,43037,17516,765331759,746045261,96318,38582,3818437634,2766662214,90.93,91.23,97.52,97.46,40.63,41.42,19.55,26.28
-70301,22,109,22109,3080,1222,6329907,6292216,43037,17516,765331759,746045261,111860,43887,5392542799,3190385866,7.16,6.98,0.83,0.84,2.75,2.78,0.12,0.2
-70339,22,007,22007,5623,2956,183664730,120925363,6033,3396,212954916,145638447,23421,10351,944129737,877120860,93.2,87.04,86.25,83.03,24.01,28.56,19.45,13.79
-70339,22,099,22099,410,440,29290186,24713084,6033,3396,212954916,145638447,52160,21941,2114699164,1910498478,6.8,12.96,13.75,16.97,0.79,2.01,1.39,1.29
-70340,22,101,22101,109,32,185882,185882,109,32,185882,185882,54650,23028,2899291519,1438424557,100,100,100,100,0.2,0.14,0.01,0.01
-70341,22,007,22007,4449,1841,150489779,150126337,4449,1841,150489779,150126337,23421,10351,944129737,877120860,100,100,100,100,19,17.79,15.94,17.12
-70342,22,101,22101,4979,2032,22150216,19240667,4979,2032,22150216,19240667,54650,23028,2899291519,1438424557,100,100,100,100,9.11,8.82,0.76,1.34
-70343,22,057,22057,462,168,45303522,44452552,5504,1964,76205845,74929690,96318,38582,3818437634,2766662214,8.39,8.55,59.45,59.33,0.48,0.44,1.19,1.61
-70343,22,109,22109,5042,1796,30902323,30477138,5504,1964,76205845,74929690,111860,43887,5392542799,3190385866,91.61,91.45,40.55,40.67,4.51,4.09,0.57,0.96
-70344,22,109,22109,6143,2576,927842174,266390147,6143,2576,927842174,266390147,111860,43887,5392542799,3190385866,100,100,100,100,5.49,5.87,17.21,8.35
-70345,22,057,22057,9754,3787,278698020,240707848,9754,3787,278698020,240707848,96318,38582,3818437634,2766662214,100,100,100,100,10.13,9.82,7.3,8.7
-70346,22,005,22005,10925,4257,145831272,133272951,10925,4257,145831272,133272951,107215,40784,784211520,751046853,100,100,100,100,10.19,10.44,18.6,17.74
-70352,22,109,22109,205,92,10251810,9575245,205,92,10251810,9575245,111860,43887,5392542799,3190385866,100,100,100,100,0.18,0.21,0.19,0.3
-70353,22,109,22109,1402,623,67250717,55120021,1402,623,67250717,55120021,111860,43887,5392542799,3190385866,100,100,100,100,1.25,1.42,1.25,1.73
-70354,22,057,22057,4931,2050,366998708,302734799,4931,2050,366998708,302734799,96318,38582,3818437634,2766662214,100,100,100,100,5.12,5.31,9.61,10.94
-70355,22,057,22057,1041,391,279609010,268690977,1041,391,279609010,268690977,96318,38582,3818437634,2766662214,100,100,100,100,1.08,1.01,7.32,9.71
-70356,22,109,22109,2484,1047,185739692,169831416,2484,1047,185739692,169831416,111860,43887,5392542799,3190385866,100,100,100,100,2.22,2.39,3.44,5.32
-70357,22,057,22057,3043,1579,1192393952,547661857,3043,1579,1192393952,547661857,96318,38582,3818437634,2766662214,100,100,100,100,3.16,4.09,31.23,19.8
-70358,22,051,22051,1296,1945,30279123,16598908,1296,1945,30279123,16598908,432552,189135,1723437406,765682649,100,100,100,100,0.3,1.03,1.76,2.17
-70359,22,057,22057,2653,944,3833619,3833619,8408,3133,24673866,24673866,96318,38582,3818437634,2766662214,31.55,30.13,15.54,15.54,2.75,2.45,0.1,0.14
-70359,22,109,22109,5755,2189,20840247,20840247,8408,3133,24673866,24673866,111860,43887,5392542799,3190385866,68.45,69.87,84.46,84.46,5.14,4.99,0.39,0.65
-70360,22,109,22109,26429,10706,170144216,166601143,26429,10706,170144216,166601143,111860,43887,5392542799,3190385866,100,100,100,100,23.63,24.39,3.16,5.22
-70363,22,109,22109,26513,9602,206767073,194124487,26513,9602,206767073,194124487,111860,43887,5392542799,3190385866,100,100,100,100,23.7,21.88,3.83,6.08
-70364,22,057,22057,5614,2019,46230888,46058220,30503,12157,110818328,109759884,96318,38582,3818437634,2766662214,18.4,16.61,41.72,41.96,5.83,5.23,1.21,1.66
-70364,22,109,22109,24889,10138,64587440,63701664,30503,12157,110818328,109759884,111860,43887,5392542799,3190385866,81.6,83.39,58.28,58.04,22.25,23.1,1.2,2
-70372,22,007,22007,2518,1072,75943752,75943752,2518,1072,75943752,75943752,23421,10351,944129737,877120860,100,100,100,100,10.75,10.36,8.04,8.66
-70373,22,057,22057,7141,2788,250445849,186183258,7141,2788,250445849,186183258,96318,38582,3818437634,2766662214,100,100,100,100,7.41,7.23,6.56,6.73
-70374,22,057,22057,7125,2856,134421669,127925505,7125,2856,134421669,127925505,96318,38582,3818437634,2766662214,100,100,100,100,7.4,7.4,3.52,4.62
-70375,22,057,22057,125,44,5698753,5668030,125,44,5698753,5668030,96318,38582,3818437634,2766662214,100,100,100,100,0.13,0.11,0.15,0.2
-70377,22,057,22057,508,179,33679241,33069255,4403,1676,590337077,342474364,96318,38582,3818437634,2766662214,11.54,10.68,5.71,9.66,0.53,0.46,0.88,1.2
-70377,22,109,22109,3895,1497,556657836,309405109,4403,1676,590337077,342474364,111860,43887,5392542799,3190385866,88.46,89.32,94.29,90.34,3.48,3.41,10.32,9.7
-70380,22,007,22007,2063,857,82114550,79224270,22928,10107,202633296,167893242,23421,10351,944129737,877120860,9,8.48,40.52,47.19,8.81,8.28,8.7,9.03
-70380,22,099,22099,1030,635,77535851,49818185,22928,10107,202633296,167893242,52160,21941,2114699164,1910498478,4.49,6.28,38.26,29.67,1.97,2.89,3.67,2.61
-70380,22,101,22101,19835,8615,42982895,38850787,22928,10107,202633296,167893242,54650,23028,2899291519,1438424557,86.51,85.24,21.21,23.14,36.29,37.41,1.48,2.7
-70390,22,007,22007,6969,2923,418494301,417478513,6969,2923,418494301,417478513,23421,10351,944129737,877120860,100,100,100,100,29.76,28.24,44.33,47.6
-70391,22,007,22007,202,92,2004168,2004168,202,92,2004168,2004168,23421,10351,944129737,877120860,100,100,100,100,0.86,0.89,0.21,0.23
-70392,22,099,22099,3,12,21330106,21240862,8456,3446,82853673,79614951,52160,21941,2114699164,1910498478,0.04,0.35,25.74,26.68,0.01,0.05,1.01,1.11
-70392,22,101,22101,8453,3434,61523567,58374089,8456,3446,82853673,79614951,54650,23028,2899291519,1438424557,99.96,99.65,74.26,73.32,15.47,14.91,2.12,4.06
-70393,22,007,22007,774,295,18739534,18739534,774,295,18739534,18739534,23421,10351,944129737,877120860,100,100,100,100,3.3,2.85,1.98,2.14
-70394,22,057,22057,14328,5571,230737292,222813301,14328,5571,230737292,222813301,96318,38582,3818437634,2766662214,100,100,100,100,14.88,14.44,6.04,8.05
-70395,22,109,22109,4658,1736,127050392,126837788,4658,1736,127050392,126837788,111860,43887,5392542799,3190385866,100,100,100,100,4.16,3.96,2.36,3.98
-70397,22,109,22109,1365,663,119911849,114784014,1365,663,119911849,114784014,111860,43887,5392542799,3190385866,100,100,100,100,1.22,1.51,2.22,3.6
-70401,22,105,22105,20415,9092,91113602,90633544,20415,9092,91113602,90633544,121097,50073,2132254732,2049391733,100,100,100,100,16.86,18.16,4.27,4.42
-70402,22,105,22105,1514,0,222799,222799,1514,0,222799,222799,121097,50073,2132254732,2049391733,100,0,100,100,1.25,0,0.01,0.01
-70403,22,063,22063,1327,514,14264622,14205468,26011,10909,111826553,111266119,128026,50170,1820363178,1678749073,5.1,4.71,12.76,12.77,1.04,1.02,0.78,0.85
-70403,22,105,22105,24684,10395,97561931,97060651,26011,10909,111826553,111266119,121097,50073,2132254732,2049391733,94.9,95.29,87.24,87.23,20.38,20.76,4.58,4.74
-70420,22,103,22103,7345,3036,133604987,132147489,7345,3036,133604987,132147489,233740,95412,2911635124,2189966775,100,100,100,100,3.14,3.18,4.59,6.03
-70422,22,091,22091,2699,1213,157141231,156861736,13797,5662,441509276,438515684,11203,5150,1060568829,1057758275,19.56,21.42,35.59,35.77,24.09,23.55,14.82,14.83
-70422,22,105,22105,11098,4449,284368045,281653948,13797,5662,441509276,438515684,121097,50073,2132254732,2049391733,80.44,78.58,64.41,64.23,9.16,8.89,13.34,13.74
-70426,22,117,22117,6342,2415,317951266,314113225,6342,2415,317951266,314113225,47168,21039,1750532869,1734061145,100,100,100,100,13.45,11.48,18.16,18.11
-70427,22,103,22103,672,316,37655140,35514278,20033,9398,389166170,381385194,233740,95412,2911635124,2189966775,3.35,3.36,9.68,9.31,0.29,0.33,1.29,1.62
-70427,22,117,22117,19361,9082,351511030,345870916,20033,9398,389166170,381385194,47168,21039,1750532869,1734061145,96.65,96.64,90.32,90.69,41.05,43.17,20.08,19.95
-70431,22,103,22103,5325,2295,177887524,175334594,5366,2311,189414764,186367454,233740,95412,2911635124,2189966775,99.24,99.31,93.91,94.08,2.28,2.41,6.11,8.01
-70431,22,117,22117,41,16,11527240,11032860,5366,2311,189414764,186367454,47168,21039,1750532869,1734061145,0.76,0.69,6.09,5.92,0.09,0.08,0.66,0.64
-70433,22,103,22103,31072,13171,120298552,117299830,31133,13172,128876287,125877565,233740,95412,2911635124,2189966775,99.8,99.99,93.34,93.19,13.29,13.8,4.13,5.36
-70433,22,105,22105,61,1,8577735,8577735,31133,13172,128876287,125877565,121097,50073,2132254732,2049391733,0.2,0.01,6.66,6.81,0.05,0,0.4,0.42
-70435,22,103,22103,16558,6617,259935516,255142947,16603,6637,275607374,270814805,233740,95412,2911635124,2189966775,99.73,99.7,94.31,94.21,7.08,6.94,8.93,11.65
-70435,22,105,22105,45,20,15671858,15671858,16603,6637,275607374,270814805,121097,50073,2132254732,2049391733,0.27,0.3,5.69,5.79,0.04,0.04,0.73,0.76
-70436,22,105,22105,629,253,10216662,10197713,629,253,10216662,10197713,121097,50073,2132254732,2049391733,100,100,100,100,0.52,0.51,0.48,0.5
-70437,22,103,22103,6947,2946,190955988,189414788,7918,3364,239456357,237833087,233740,95412,2911635124,2189966775,87.74,87.57,79.75,79.64,2.97,3.09,6.56,8.65
-70437,22,105,22105,971,418,48500369,48418299,7918,3364,239456357,237833087,121097,50073,2132254732,2049391733,12.26,12.43,20.25,20.36,0.8,0.83,2.27,2.36
-70438,22,117,22117,18540,8149,876244585,870401360,18540,8149,876244585,870401360,47168,21039,1750532869,1734061145,100,100,100,100,39.31,38.73,50.06,50.19
-70441,22,091,22091,5112,2439,539937016,539139550,5112,2439,539937016,539139550,11203,5150,1060568829,1057758275,100,100,100,100,45.63,47.36,50.91,50.97
-70442,22,105,22105,277,111,17633792,17606761,277,111,17633792,17606761,121097,50073,2132254732,2049391733,100,100,100,100,0.23,0.22,0.83,0.86
-70443,22,063,22063,1801,705,58796166,58762817,10232,4113,201290670,199741440,128026,50170,1820363178,1678749073,17.6,17.14,29.21,29.42,1.41,1.41,3.23,3.5
-70443,22,091,22091,309,135,15756036,15756036,10232,4113,201290670,199741440,11203,5150,1060568829,1057758275,3.02,3.28,7.83,7.89,2.76,2.62,1.49,1.49
-70443,22,105,22105,8122,3273,126738468,125222587,10232,4113,201290670,199741440,121097,50073,2132254732,2049391733,79.38,79.58,62.96,62.69,6.71,6.54,5.94,6.11
-70444,22,091,22091,1218,619,186582821,186288057,10160,4518,653700913,651250736,11203,5150,1060568829,1057758275,11.99,13.7,28.54,28.6,10.87,12.02,17.59,17.61
-70444,22,105,22105,8942,3899,467118092,464962679,10160,4518,653700913,651250736,121097,50073,2132254732,2049391733,88.01,86.3,71.46,71.4,7.38,7.79,21.91,22.69
-70445,22,103,22103,10840,4623,309185202,299551705,10840,4623,309185202,299551705,233740,95412,2911635124,2189966775,100,100,100,100,4.64,4.85,10.62,13.68
-70446,22,105,22105,5877,2293,221291134,220163770,5877,2293,221291134,220163770,121097,50073,2132254732,2049391733,100,100,100,100,4.85,4.58,10.38,10.74
-70447,22,103,22103,10150,3828,88025603,81061723,10150,3828,88025603,81061723,233740,95412,2911635124,2189966775,100,100,100,100,4.34,4.01,3.02,3.7
-70448,22,103,22103,24851,9629,63968179,56848595,24851,9629,63968179,56848595,233740,95412,2911635124,2189966775,100,100,100,100,10.63,10.09,2.2,2.6
-70449,22,063,22063,3611,2105,181235631,176847085,3611,2105,181235631,176847085,128026,50170,1820363178,1678749073,100,100,100,100,2.82,4.2,9.96,10.53
-70450,22,117,22117,2884,1377,193298748,192642784,2884,1377,193298748,192642784,47168,21039,1750532869,1734061145,100,100,100,100,6.11,6.54,11.04,11.11
-70451,22,105,22105,182,75,465787,465787,182,75,465787,465787,121097,50073,2132254732,2049391733,100,100,100,100,0.15,0.15,0.02,0.02
-70452,22,103,22103,13163,5345,196355396,192792072,13163,5345,196355396,192792072,233740,95412,2911635124,2189966775,100,100,100,100,5.63,5.6,6.74,8.8
-70453,22,063,22063,180,57,4519835,4519835,1045,397,90520583,90503254,128026,50170,1820363178,1678749073,17.22,14.36,4.99,4.99,0.14,0.11,0.25,0.27
-70453,22,091,22091,865,340,86000748,85983419,1045,397,90520583,90503254,11203,5150,1060568829,1057758275,82.78,85.64,95.01,95.01,7.72,6.6,8.11,8.13
-70454,22,105,22105,24954,10299,423034149,419177482,24954,10299,423034149,419177482,121097,50073,2132254732,2049391733,100,100,100,100,20.61,20.57,19.84,20.45
-70455,22,105,22105,1474,596,42990552,42848670,1474,596,42990552,42848670,121097,50073,2132254732,2049391733,100,100,100,100,1.22,1.19,2.02,2.09
-70456,22,105,22105,2850,1193,84548465,82879049,2850,1193,84548465,82879049,121097,50073,2132254732,2049391733,100,100,100,100,2.35,2.38,3.97,4.04
-70458,22,103,22103,35077,15130,63898898,54683650,35077,15130,63898898,54683650,233740,95412,2911635124,2189966775,100,100,100,100,15.01,15.86,2.19,2.5
-70460,22,103,22103,22096,8741,102851107,94915111,22096,8741,102851107,94915111,233740,95412,2911635124,2189966775,100,100,100,100,9.45,9.16,3.53,4.33
-70461,22,103,22103,27818,10926,138000686,126032111,27818,10926,138000686,126032111,233740,95412,2911635124,2189966775,100,100,100,100,11.9,11.45,4.74,5.75
-70462,22,063,22063,5575,2776,210702773,206258939,5699,2839,212023644,207579810,128026,50170,1820363178,1678749073,97.82,97.78,99.38,99.36,4.35,5.53,11.57,12.29
-70462,22,105,22105,124,63,1320871,1320871,5699,2839,212023644,207579810,121097,50073,2132254732,2049391733,2.18,2.22,0.62,0.64,0.1,0.13,0.06,0.06
-70463,22,103,22103,126,63,1863608,1830807,126,63,1863608,1830807,233740,95412,2911635124,2189966775,100,100,100,100,0.05,0.07,0.06,0.08
-70464,22,103,22103,312,145,25793263,25698442,312,145,25793263,25698442,233740,95412,2911635124,2189966775,100,100,100,100,0.13,0.15,0.89,1.17
-70465,22,105,22105,776,313,12793647,12713449,776,313,12793647,12713449,121097,50073,2132254732,2049391733,100,100,100,100,0.64,0.63,0.6,0.62
-70466,22,063,22063,410,141,3957005,3957005,8512,3466,82320740,81718682,128026,50170,1820363178,1678749073,4.82,4.07,4.81,4.84,0.32,0.28,0.22,0.24
-70466,22,105,22105,8102,3325,78363735,77761677,8512,3466,82320740,81718682,121097,50073,2132254732,2049391733,95.18,95.93,95.19,95.16,6.69,6.64,3.68,3.79
-70471,22,103,22103,21383,8583,80515915,76096337,21383,8583,80515915,76096337,233740,95412,2911635124,2189966775,100,100,100,100,9.15,9,2.77,3.47
-70501,22,055,22055,31358,12884,40565371,40457576,31358,12884,40565371,40457576,221578,93656,697247252,695980407,100,100,100,100,14.15,13.76,5.82,5.81
-70503,22,055,22055,27816,11406,30993959,30707298,27816,11406,30993959,30707298,221578,93656,697247252,695980407,100,100,100,100,12.55,12.18,4.45,4.41
-70506,22,055,22055,41163,19011,53647064,53647064,41163,19011,53647064,53647064,221578,93656,697247252,695980407,100,100,100,100,18.58,20.3,7.69,7.71
-70507,22,055,22055,16558,6799,54931646,54896983,16558,6799,54931646,54896983,221578,93656,697247252,695980407,100,100,100,100,7.47,7.26,7.88,7.89
-70508,22,055,22055,34810,15831,64930419,64643959,34810,15831,64930419,64643959,221578,93656,697247252,695980407,100,100,100,100,15.71,16.9,9.31,9.29
-70510,22,113,22113,25313,10694,604692442,596312401,25313,10694,604692442,596312401,57999,25235,3993941933,3038572441,100,100,100,100,43.64,42.38,15.14,19.62
-70512,22,097,22097,5849,2488,154396650,152878804,9780,4102,247794955,245726188,83384,35692,2431951562,2392836670,59.81,60.65,62.31,62.22,7.01,6.97,6.35,6.39
-70512,22,099,22099,3931,1614,93398305,92847384,9780,4102,247794955,245726188,52160,21941,2114699164,1910498478,40.19,39.35,37.69,37.78,7.54,7.36,4.42,4.86
-70513,22,045,22045,124,81,5195367,4988131,124,81,5195367,4988131,73240,29698,2669055888,1486940445,100,100,100,100,0.17,0.27,0.19,0.34
-70514,22,101,22101,2545,1040,13657803,13345566,2545,1040,13657803,13345566,54650,23028,2899291519,1438424557,100,100,100,100,4.66,4.52,0.47,0.93
-70515,22,001,22001,977,416,103956958,103681285,3838,1456,192510880,191046967,61773,25387,1702799367,1696750566,25.46,28.57,54,54.27,1.58,1.64,6.11,6.11
-70515,22,039,22039,2861,1040,88553922,87365682,3838,1456,192510880,191046967,33984,14662,1760217962,1715550341,74.54,71.43,46,45.73,8.42,7.09,5.03,5.09
-70516,22,001,22001,1546,581,102135636,102048108,1546,581,102135636,102048108,61773,25387,1702799367,1696750566,100,100,100,100,2.5,2.29,6,6.01
-70517,22,055,22055,590,241,4036582,4036582,26500,10804,382464172,362689941,221578,93656,697247252,695980407,2.23,2.23,1.06,1.11,0.27,0.26,0.58,0.58
-70517,22,099,22099,25910,10563,378427590,358653359,26500,10804,382464172,362689941,52160,21941,2114699164,1910498478,97.77,97.77,98.94,98.89,49.67,48.14,17.9,18.77
-70518,22,045,22045,881,296,5158276,5158276,12297,4934,108579370,108478117,73240,29698,2669055888,1486940445,7.16,6,4.75,4.76,1.2,1,0.19,0.35
-70518,22,055,22055,9899,4024,54118602,54017349,12297,4934,108579370,108478117,221578,93656,697247252,695980407,80.5,81.56,49.84,49.8,4.47,4.3,7.76,7.76
-70518,22,099,22099,1517,614,49302492,49302492,12297,4934,108579370,108478117,52160,21941,2114699164,1910498478,12.34,12.44,45.41,45.45,2.91,2.8,2.33,2.58
-70519,22,099,22099,222,113,9102945,9102945,222,113,9102945,9102945,52160,21941,2114699164,1910498478,100,100,100,100,0.43,0.52,0.43,0.48
-70520,22,055,22055,18101,7088,100103758,99731694,18405,7202,102319707,101947643,221578,93656,697247252,695980407,98.35,98.42,97.83,97.83,8.17,7.57,14.36,14.33
-70520,22,097,22097,304,114,2215949,2215949,18405,7202,102319707,101947643,83384,35692,2431951562,2392836670,1.65,1.58,2.17,2.17,0.36,0.32,0.09,0.09
-70523,22,101,22101,906,412,13936223,11624289,906,412,13936223,11624289,54650,23028,2899291519,1438424557,100,100,100,100,1.66,1.79,0.48,0.81
-70524,22,039,22039,314,157,9845705,9845705,314,157,9845705,9845705,33984,14662,1760217962,1715550341,100,100,100,100,0.92,1.07,0.56,0.57
-70525,22,001,22001,10027,4030,171608534,171546761,13150,5272,282546380,282124798,61773,25387,1702799367,1696750566,76.25,76.44,60.74,60.81,16.23,15.87,10.08,10.11
-70525,22,097,22097,3123,1242,110937846,110578037,13150,5272,282546380,282124798,83384,35692,2431951562,2392836670,23.75,23.56,39.26,39.19,3.75,3.48,4.56,4.62
-70526,22,001,22001,19117,8062,320192572,319793111,19206,8101,324081431,323617985,61773,25387,1702799367,1696750566,99.54,99.52,98.8,98.82,30.95,31.76,18.8,18.85
-70526,22,113,22113,89,39,3888859,3824874,19206,8101,324081431,323617985,57999,25235,3993941933,3038572441,0.46,0.48,1.2,1.18,0.15,0.15,0.1,0.13
-70528,22,045,22045,501,229,6417155,6417155,2333,1001,11592738,11592738,73240,29698,2669055888,1486940445,21.47,22.88,55.35,55.35,0.68,0.77,0.24,0.43
-70528,22,113,22113,1832,772,5175583,5175583,2333,1001,11592738,11592738,57999,25235,3993941933,3038572441,78.53,77.12,44.65,44.65,3.16,3.06,0.13,0.17
-70529,22,001,22001,247,101,1460817,1437590,11752,4686,92098106,92052438,61773,25387,1702799367,1696750566,2.1,2.16,1.59,1.56,0.4,0.4,0.09,0.08
-70529,22,055,22055,11505,4585,90637289,90614848,11752,4686,92098106,92052438,221578,93656,697247252,695980407,97.9,97.84,98.41,98.44,5.19,4.9,13,13.02
-70531,22,001,22001,1261,499,72930079,71979647,1261,499,72930079,71979647,61773,25387,1702799367,1696750566,100,100,100,100,2.04,1.97,4.28,4.24
-70532,22,003,22003,798,353,84078559,83916508,2685,1237,253046406,252843785,25764,9733,1983811365,1973174715,29.72,28.54,33.23,33.19,3.1,3.63,4.24,4.25
-70532,22,053,22053,1887,884,168967847,168927277,2685,1237,253046406,252843785,31594,13306,1705650107,1686931782,70.28,71.46,66.77,66.81,5.97,6.64,9.91,10.01
-70533,22,045,22045,98,36,510865,510865,7385,3078,208062663,203439443,73240,29698,2669055888,1486940445,1.33,1.17,0.25,0.25,0.13,0.12,0.02,0.03
-70533,22,113,22113,7287,3042,207551798,202928578,7385,3078,208062663,203439443,57999,25235,3993941933,3038572441,98.67,98.83,99.75,99.75,12.56,12.05,5.2,6.68
-70534,22,001,22001,899,352,25204568,24867744,899,352,25204568,24867744,61773,25387,1702799367,1696750566,100,100,100,100,1.46,1.39,1.48,1.47
-70535,22,001,22001,4032,1632,210626371,210250772,18215,7752,392263444,390557692,61773,25387,1702799367,1696750566,22.14,21.05,53.7,53.83,6.53,6.43,12.37,12.39
-70535,22,039,22039,1145,489,73631166,73031214,18215,7752,392263444,390557692,33984,14662,1760217962,1715550341,6.29,6.31,18.77,18.7,3.37,3.34,4.18,4.26
-70535,22,097,22097,13038,5631,108005907,107275706,18215,7752,392263444,390557692,83384,35692,2431951562,2392836670,71.58,72.64,27.53,27.47,15.64,15.78,4.44,4.48
-70537,22,001,22001,541,235,15265360,15226401,541,235,15265360,15226401,61773,25387,1702799367,1696750566,100,100,100,100,0.88,0.93,0.9,0.9
-70538,22,101,22101,14844,6286,434824727,401113134,14844,6286,434824727,401113134,54650,23028,2899291519,1438424557,100,100,100,100,27.16,27.3,15,27.89
-70541,22,097,22097,432,195,5415075,5371669,432,195,5415075,5371669,83384,35692,2431951562,2392836670,100,100,100,100,0.52,0.55,0.22,0.22
-70542,22,023,22023,174,193,157384296,145439771,3435,1915,509954651,490019575,6839,3593,5015949881,3327842145,5.07,10.08,30.86,29.68,2.54,5.37,3.14,4.37
-70542,22,113,22113,3261,1722,352570355,344579804,3435,1915,509954651,490019575,57999,25235,3993941933,3038572441,94.93,89.92,69.14,70.32,5.62,6.82,8.83,11.34
-70543,22,001,22001,4077,1653,190512258,190471629,4077,1653,190512258,190471629,61773,25387,1702799367,1696750566,100,100,100,100,6.6,6.51,11.19,11.23
-70544,22,045,22045,8713,3542,147443800,145846899,11677,4706,279716620,269205506,73240,29698,2669055888,1486940445,74.62,75.27,52.71,54.18,11.9,11.93,5.52,9.81
-70544,22,101,22101,2964,1164,132272820,123358607,11677,4706,279716620,269205506,54650,23028,2899291519,1438424557,25.38,24.73,47.29,45.82,5.42,5.05,4.56,8.58
-70546,22,001,22001,1083,411,46527582,45889010,16425,6710,394838821,391938206,61773,25387,1702799367,1696750566,6.59,6.13,11.78,11.71,1.75,1.62,2.73,2.7
-70546,22,053,22053,15342,6299,348311239,346049196,16425,6710,394838821,391938206,31594,13306,1705650107,1686931782,93.41,93.87,88.22,88.29,48.56,47.34,20.42,20.51
-70548,22,113,22113,10353,5026,1394234911,1320998422,10353,5026,1394234911,1320998422,57999,25235,3993941933,3038572441,100,100,100,100,17.85,19.92,34.91,43.47
-70549,22,023,22023,68,72,58091514,49443179,3948,1885,323836257,304475605,6839,3593,5015949881,3327842145,1.72,3.82,17.94,16.24,0.99,2,1.16,1.49
-70549,22,053,22053,3880,1813,265744743,255032426,3948,1885,323836257,304475605,31594,13306,1705650107,1686931782,98.28,96.18,82.06,83.76,12.28,13.63,15.58,15.12
-70550,22,097,22097,174,83,952474,952474,174,83,952474,952474,83384,35692,2431951562,2392836670,100,100,100,100,0.21,0.23,0.04,0.04
-70552,22,045,22045,1819,750,47225057,47118425,1819,750,47225057,47118425,73240,29698,2669055888,1486940445,100,100,100,100,2.48,2.53,1.77,3.17
-70554,22,039,22039,5582,2531,299031173,298394772,5582,2531,299031173,298394772,33984,14662,1760217962,1715550341,100,100,100,100,16.43,17.26,16.99,17.39
-70555,22,055,22055,268,110,2054962,2054962,7372,2892,128354266,128268275,221578,93656,697247252,695980407,3.64,3.8,1.6,1.6,0.12,0.12,0.29,0.3
-70555,22,113,22113,7104,2782,126299304,126213313,7372,2892,128354266,128268275,57999,25235,3993941933,3038572441,96.36,96.2,98.4,98.4,12.25,11.02,3.16,4.15
-70556,22,001,22001,331,159,17340020,16525142,331,159,17340020,16525142,61773,25387,1702799367,1696750566,100,100,100,100,0.54,0.63,1.02,0.97
-70558,22,055,22055,134,66,307936,307936,134,66,307936,307936,221578,93656,697247252,695980407,100,100,100,100,0.06,0.07,0.04,0.04
-70559,22,001,22001,2943,1221,214766250,213036533,2943,1221,214766250,213036533,61773,25387,1702799367,1696750566,100,100,100,100,4.76,4.81,12.61,12.56
-70560,22,045,22045,41377,16782,547158161,517289437,42022,17019,552332551,522463827,73240,29698,2669055888,1486940445,98.47,98.61,99.06,99.01,56.5,56.51,20.5,34.79
-70560,22,113,22113,645,237,5174390,5174390,42022,17019,552332551,522463827,57999,25235,3993941933,3038572441,1.53,1.39,0.94,0.99,1.11,0.94,0.13,0.17
-70563,22,045,22045,18502,7495,164105763,161776745,18502,7495,164105763,161776745,73240,29698,2669055888,1486940445,100,100,100,100,25.26,25.24,6.15,10.88
-70570,22,097,22097,38987,16110,450096400,448510666,38987,16110,450096400,448510666,83384,35692,2431951562,2392836670,100,100,100,100,46.76,45.14,18.51,18.74
-70575,22,113,22113,55,30,84005,84005,55,30,84005,84005,57999,25235,3993941933,3038572441,100,100,100,100,0.09,0.12,0,0
-70576,22,039,22039,1526,350,2912659,2912659,1526,350,2912659,2912659,33984,14662,1760217962,1715550341,100,100,100,100,4.49,2.39,0.17,0.17
-70577,22,097,22097,4645,2046,158723574,155348777,4645,2046,158723574,155348777,83384,35692,2431951562,2392836670,100,100,100,100,5.57,5.73,6.53,6.49
-70578,22,001,22001,14039,5780,200069086,199793557,16122,6624,294490222,294115802,61773,25387,1702799367,1696750566,87.08,87.26,67.94,67.93,22.73,22.77,11.75,11.78
-70578,22,055,22055,1196,482,57165242,57129426,16122,6624,294490222,294115802,221578,93656,697247252,695980407,7.42,7.28,19.41,19.42,0.54,0.51,8.2,8.21
-70578,22,113,22113,887,362,37255894,37192819,16122,6624,294490222,294115802,57999,25235,3993941933,3038572441,5.5,5.46,12.65,12.65,1.53,1.43,0.93,1.22
-70580,22,039,22039,179,86,386291,386291,179,86,386291,386291,33984,14662,1760217962,1715550341,100,100,100,100,0.53,0.59,0.02,0.02
-70581,22,053,22053,929,351,62303748,62271948,929,351,62303748,62271948,31594,13306,1705650107,1686931782,100,100,100,100,2.94,2.64,3.65,3.69
-70582,22,045,22045,652,245,21689088,21566871,19781,8003,382353698,372208612,73240,29698,2669055888,1486940445,3.3,3.06,5.67,5.79,0.89,0.82,0.81,1.45
-70582,22,099,22099,19129,7758,360664610,350641741,19781,8003,382353698,372208612,52160,21941,2114699164,1910498478,96.7,96.94,94.33,94.21,36.67,35.36,17.06,18.35
-70583,22,001,22001,653,255,10203276,10203276,11693,4896,71819927,71800235,61773,25387,1702799367,1696750566,5.58,5.21,14.21,14.21,1.06,1,0.6,0.6
-70583,22,055,22055,11040,4641,61616651,61596959,11693,4896,71819927,71800235,221578,93656,697247252,695980407,94.42,94.79,85.79,85.79,4.98,4.96,8.84,8.85
-70584,22,097,22097,7358,3104,91984995,91867829,7358,3104,91984995,91867829,83384,35692,2431951562,2392836670,100,100,100,100,8.82,8.7,3.78,3.84
-70585,22,039,22039,235,108,1544266,1544266,235,108,1544266,1544266,33984,14662,1760217962,1715550341,100,100,100,100,0.69,0.74,0.09,0.09
-70586,22,039,22039,20181,8954,790472490,762274319,20313,9009,805159838,776961667,33984,14662,1760217962,1715550341,99.35,99.39,98.18,98.11,59.38,61.07,44.91,44.43
-70586,22,097,22097,132,55,14687348,14687348,20313,9009,805159838,776961667,83384,35692,2431951562,2392836670,0.65,0.61,1.82,1.89,0.16,0.15,0.6,0.61
-70589,22,097,22097,3283,1452,310456215,306740047,3283,1452,310456215,306740047,83384,35692,2431951562,2392836670,100,100,100,100,3.94,4.07,12.77,12.82
-70591,22,053,22053,5299,2219,443351279,441006578,5299,2219,443351279,441006578,31594,13306,1705650107,1686931782,100,100,100,100,16.77,16.68,25.99,26.14
-70592,22,045,22045,567,209,849968,849968,18878,7132,107786979,107786979,73240,29698,2669055888,1486940445,3,2.93,0.79,0.79,0.77,0.7,0.03,0.06
-70592,22,055,22055,17140,6488,82137771,82137771,18878,7132,107786979,107786979,221578,93656,697247252,695980407,90.79,90.97,76.2,76.2,7.74,6.93,11.78,11.8
-70592,22,113,22113,1171,435,24799240,24799240,18878,7132,107786979,107786979,57999,25235,3993941933,3038572441,6.2,6.1,23.01,23.01,2.02,1.72,0.62,0.82
-70601,22,019,22019,32384,15452,48715384,40115011,32384,15452,48715384,40115011,192768,82058,2834156681,2754864273,100,100,100,100,16.8,18.83,1.72,1.46
-70605,22,019,22019,32741,13923,126175150,112472661,32741,13923,126175150,112472661,192768,82058,2834156681,2754864273,100,100,100,100,16.98,16.97,4.45,4.08
-70607,22,019,22019,22418,9829,158358873,154554490,25560,11227,375464305,307132459,192768,82058,2834156681,2754864273,87.71,87.55,42.18,50.32,11.63,11.98,5.59,5.61
-70607,22,023,22023,3142,1398,217105432,152577969,25560,11227,375464305,307132459,6839,3593,5015949881,3327842145,12.29,12.45,57.82,49.68,45.94,38.91,4.33,4.58
-70611,22,019,22019,19256,7533,216165697,211794594,19256,7533,216165697,211794594,192768,82058,2834156681,2754864273,100,100,100,100,9.99,9.18,7.63,7.69
-70615,22,019,22019,14335,5251,132740696,127095539,14335,5251,132740696,127095539,192768,82058,2834156681,2754864273,100,100,100,100,7.44,6.4,4.68,4.61
-70630,22,019,22019,932,381,182777337,181363752,1440,588,497237580,479283642,192768,82058,2834156681,2754864273,64.72,64.8,36.76,37.84,0.48,0.46,6.45,6.58
-70630,22,023,22023,508,207,314460243,297919890,1440,588,497237580,479283642,6839,3593,5015949881,3327842145,35.28,35.2,63.24,62.16,7.43,5.76,6.27,8.95
-70631,22,023,22023,962,570,1651401039,1273651190,962,570,1651401039,1273651190,6839,3593,5015949881,3327842145,100,100,100,100,14.07,15.86,32.92,38.27
-70632,22,023,22023,371,217,277591000,252822226,371,217,277591000,252822226,6839,3593,5015949881,3327842145,100,100,100,100,5.42,6.04,5.53,7.6
-70633,22,011,22011,1029,396,161586051,161172136,7604,3257,407585893,405605147,35654,15040,3019501290,2997501973,13.53,12.16,39.64,39.74,2.89,2.63,5.35,5.38
-70633,22,019,22019,6575,2861,245999842,244433011,7604,3257,407585893,405605147,192768,82058,2834156681,2754864273,86.47,87.84,60.36,60.26,3.41,3.49,8.68,8.87
-70634,22,011,22011,22265,9764,979984010,969212170,25125,10937,1182622041,1170037324,35654,15040,3019501290,2997501973,88.62,89.27,82.87,82.84,62.45,64.92,32.46,32.33
-70634,22,115,22115,2860,1173,202638031,200825154,25125,10937,1182622041,1170037324,52334,21433,3474429937,3439271369,11.38,10.73,17.13,17.16,5.46,5.47,5.83,5.84
-70637,22,003,22003,473,186,63550717,63313458,654,268,104652394,104084919,25764,9733,1983811365,1973174715,72.32,69.4,60.73,60.83,1.84,1.91,3.2,3.21
-70637,22,011,22011,181,82,41101677,40771461,654,268,104652394,104084919,35654,15040,3019501290,2997501973,27.68,30.6,39.27,39.17,0.51,0.55,1.36,1.36
-70638,22,003,22003,937,389,74691739,74143813,937,389,74691739,74143813,25764,9733,1983811365,1973174715,100,100,100,100,3.64,4,3.77,3.76
-70639,22,115,22115,684,300,179143374,177328872,684,300,179143374,177328872,52334,21433,3474429937,3439271369,100,100,100,100,1.31,1.4,5.16,5.16
-70640,22,053,22053,301,133,3021133,3001497,301,133,3021133,3001497,31594,13306,1705650107,1686931782,100,100,100,100,0.95,1,0.18,0.18
-70643,22,023,22023,352,221,1199007908,876306170,352,221,1199007908,876306170,6839,3593,5015949881,3327842145,100,100,100,100,5.15,6.15,23.9,26.33
-70644,22,003,22003,308,117,35411129,35363280,308,117,35411129,35363280,25764,9733,1983811365,1973174715,100,100,100,100,1.2,1.2,1.79,1.79
-70645,22,023,22023,1262,715,419031468,279681750,1262,715,419031468,279681750,6839,3593,5015949881,3327842145,100,100,100,100,18.45,19.9,8.35,8.4
-70646,22,019,22019,750,316,18486490,18132583,750,316,18486490,18132583,192768,82058,2834156681,2754864273,100,100,100,100,0.39,0.39,0.65,0.66
-70647,22,019,22019,5788,2225,223370929,218853393,8703,3399,471942618,466331725,192768,82058,2834156681,2754864273,66.51,65.46,47.33,46.93,3,2.71,7.88,7.94
-70647,22,053,22053,2915,1174,248571689,247478332,8703,3399,471942618,466331725,31594,13306,1705650107,1686931782,33.49,34.54,52.67,53.07,9.23,8.82,14.57,14.67
-70648,22,003,22003,7503,2771,378211195,374837278,8026,3006,513904614,508849889,25764,9733,1983811365,1973174715,93.48,92.18,73.6,73.66,29.12,28.47,19.06,19
-70648,22,053,22053,523,235,135693419,134012611,8026,3006,513904614,508849889,31594,13306,1705650107,1686931782,6.52,7.82,26.4,26.34,1.66,1.77,7.96,7.94
-70650,22,053,22053,435,164,4659095,4659095,435,164,4659095,4659095,31594,13306,1705650107,1686931782,100,100,100,100,1.38,1.23,0.27,0.28
-70651,22,003,22003,500,207,70195000,68649189,500,207,70195000,68649189,25764,9733,1983811365,1973174715,100,100,100,100,1.94,2.13,3.54,3.48
-70652,22,011,22011,2203,926,260080610,259298576,2203,926,260080610,259298576,35654,15040,3019501290,2997501973,100,100,100,100,6.18,6.16,8.61,8.65
-70653,22,011,22011,3111,1451,714529330,707181759,3111,1451,714529330,707181759,35654,15040,3019501290,2997501973,100,100,100,100,8.73,9.65,23.66,23.59
-70654,22,003,22003,155,66,58813437,58498702,155,66,58813437,58498702,25764,9733,1983811365,1973174715,100,100,100,100,0.6,0.68,2.96,2.96
-70655,22,003,22003,3002,1338,455035898,453250692,3002,1338,455035898,453250692,25764,9733,1983811365,1973174715,100,100,100,100,11.65,13.75,22.94,22.97
-70656,22,003,22003,656,276,202689248,202424355,4023,1735,1177481952,1176236331,25764,9733,1983811365,1973174715,16.31,15.91,17.21,17.21,2.55,2.84,10.22,10.26
-70656,22,079,22079,571,242,94082698,94082296,4023,1735,1177481952,1176236331,131613,55684,3526675994,3413506392,14.19,13.95,7.99,8,0.43,0.43,2.67,2.76
-70656,22,115,22115,2796,1217,880710006,879729680,4023,1735,1177481952,1176236331,52334,21433,3474429937,3439271369,69.5,70.14,74.8,74.79,5.34,5.68,25.35,25.58
-70657,22,003,22003,558,227,43432415,43316624,4315,1688,376574332,375324357,25764,9733,1983811365,1973174715,12.93,13.45,11.53,11.54,2.17,2.33,2.19,2.2
-70657,22,011,22011,3502,1372,306884808,306283717,4315,1688,376574332,375324357,35654,15040,3019501290,2997501973,81.16,81.28,81.49,81.61,9.82,9.12,10.16,10.22
-70657,22,019,22019,172,55,1231194,1231194,4315,1688,376574332,375324357,192768,82058,2834156681,2754864273,3.99,3.26,0.33,0.33,0.09,0.07,0.04,0.04
-70657,22,053,22053,83,34,25025915,24492822,4315,1688,376574332,375324357,31594,13306,1705650107,1686931782,1.92,2.01,6.65,6.53,0.26,0.26,1.47,1.45
-70658,22,003,22003,955,436,229262667,228421133,955,436,229262667,228421133,25764,9733,1983811365,1973174715,100,100,100,100,3.71,4.48,11.56,11.58
-70659,22,115,22115,1482,613,5662396,5651308,1482,613,5662396,5651308,52334,21433,3474429937,3439271369,100,100,100,100,2.83,2.86,0.16,0.16
-70660,22,011,22011,2612,701,376972682,376460138,2612,701,376972682,376460138,35654,15040,3019501290,2997501973,100,100,100,100,7.33,4.66,12.48,12.56
-70661,22,011,22011,340,163,122650806,121574071,2309,1085,450181838,446823868,35654,15040,3019501290,2997501973,14.72,15.02,27.24,27.21,0.95,1.08,4.06,4.06
-70661,22,019,22019,1969,922,327531032,325249797,2309,1085,450181838,446823868,192768,82058,2834156681,2754864273,85.28,84.98,72.76,72.79,1.02,1.12,11.56,11.81
-70662,22,011,22011,411,185,55711316,55547945,411,185,55711316,55547945,35654,15040,3019501290,2997501973,100,100,100,100,1.15,1.23,1.85,1.85
-70663,22,019,22019,28150,12008,254167497,250649951,28150,12008,254167497,250649951,192768,82058,2834156681,2754864273,100,100,100,100,14.6,14.63,8.97,9.1
-70665,22,019,22019,10743,4167,431074194,416594542,10743,4167,431074194,416594542,192768,82058,2834156681,2754864273,100,100,100,100,5.57,5.08,15.21,15.12
-70668,22,019,22019,6424,2810,379092051,372865121,6424,2810,379092051,372865121,192768,82058,2834156681,2754864273,100,100,100,100,3.33,3.42,13.38,13.53
-70669,22,019,22019,10131,4325,88270315,79458634,10131,4325,88270315,79458634,192768,82058,2834156681,2754864273,100,100,100,100,5.26,5.27,3.11,2.88
-70706,22,063,22063,20072,7167,97752929,96786840,20752,7449,135582574,133272138,128026,50170,1820363178,1678749073,96.72,96.21,72.1,72.62,15.68,14.29,5.37,5.77
-70706,22,091,22091,680,282,37829645,36485298,20752,7449,135582574,133272138,11203,5150,1060568829,1057758275,3.28,3.79,27.9,27.38,6.07,5.48,3.57,3.45
-70710,22,121,22121,3593,1441,21402547,21328340,3593,1441,21402547,21328340,23788,9324,527900965,498298900,100,100,100,100,15.1,15.45,4.05,4.28
-70711,22,063,22063,5266,1961,50445689,50436180,5266,1961,50445689,50436180,128026,50170,1820363178,1678749073,100,100,100,100,4.11,3.91,2.77,3
-70712,22,125,22125,479,191,66094948,62076047,479,191,66094948,62076047,15625,5097,1103341915,1044318335,100,100,100,100,3.07,3.75,5.99,5.94
-70714,22,033,22033,19803,7631,89436915,89126910,19803,7631,89436915,89126910,440171,187353,1217903045,1179412087,100,100,100,100,4.5,4.07,7.34,7.56
-70715,22,077,22077,1433,802,516847941,478747962,1433,802,516847941,478747962,22802,11130,1529938096,1443519892,100,100,100,100,6.28,7.21,33.78,33.17
-70719,22,121,22121,4460,1665,43482600,42108410,4460,1665,43482600,42108410,23788,9324,527900965,498298900,100,100,100,100,18.75,17.86,8.24,8.45
-70721,22,047,22047,701,212,16464066,13156931,701,212,16464066,13156931,33387,12707,1690894799,1602236448,100,100,100,100,2.1,1.67,0.97,0.82
-70722,22,033,22033,150,71,17725664,16743556,5713,2565,435468391,432025691,440171,187353,1217903045,1179412087,2.63,2.77,4.07,3.88,0.03,0.04,1.46,1.42
-70722,22,037,22037,5563,2494,417742727,415282135,5713,2565,435468391,432025691,20267,8014,1180458844,1174325549,97.37,97.23,95.93,96.12,27.45,31.12,35.39,35.36
-70723,22,093,22093,1759,713,69730517,66541890,1759,713,69730517,66541890,22102,8455,668110112,625577772,100,100,100,100,7.96,8.43,10.44,10.64
-70725,22,005,22005,1826,676,26685628,22026442,1826,676,26685628,22026442,107215,40784,784211520,751046853,100,100,100,100,1.7,1.66,3.4,2.93
-70726,22,063,22063,50583,19703,242467754,240350962,50583,19703,242467754,240350962,128026,50170,1820363178,1678749073,100,100,100,100,39.51,39.27,13.32,14.32
-70729,22,077,22077,232,98,13076524,13076524,1032,405,56896466,52701826,22802,11130,1529938096,1443519892,22.48,24.2,22.98,24.81,1.02,0.88,0.85,0.91
-70729,22,121,22121,800,307,43819942,39625302,1032,405,56896466,52701826,23788,9324,527900965,498298900,77.52,75.8,77.02,75.19,3.36,3.29,8.3,7.95
-70730,22,037,22037,3499,1509,178712933,178117245,3499,1509,178712933,178117245,20267,8014,1180458844,1174325549,100,100,100,100,17.26,18.83,15.14,15.17
-70732,22,077,22077,1178,515,108825333,108591003,1178,515,108825333,108591003,22802,11130,1529938096,1443519892,100,100,100,100,5.17,4.63,7.11,7.52
-70733,22,063,22063,1621,747,27637638,26751136,1621,747,27637638,26751136,128026,50170,1820363178,1678749073,100,100,100,100,1.27,1.49,1.52,1.59
-70734,22,005,22005,7554,2578,80745696,72631288,7554,2578,80745696,72631288,107215,40784,784211520,751046853,100,100,100,100,7.05,6.32,10.3,9.67
-70736,22,077,22077,518,214,9832860,9832860,518,214,9832860,9832860,22802,11130,1529938096,1443519892,100,100,100,100,2.27,1.92,0.64,0.68
-70737,22,005,22005,38643,15318,140239294,139415712,38643,15318,140239294,139415712,107215,40784,784211520,751046853,100,100,100,100,36.04,37.56,17.88,18.56
-70739,22,033,22033,12100,4649,125860036,124440888,12486,4772,127572158,126153010,440171,187353,1217903045,1179412087,96.91,97.42,98.66,98.64,2.75,2.48,10.33,10.55
-70739,22,063,22063,386,123,1712122,1712122,12486,4772,127572158,126153010,128026,50170,1820363178,1678749073,3.09,2.58,1.34,1.36,0.3,0.25,0.09,0.1
-70740,22,047,22047,1305,638,227437332,225053015,1305,638,227437332,225053015,33387,12707,1690894799,1602236448,100,100,100,100,3.91,5.02,13.45,14.05
-70743,22,093,22093,350,133,6431583,6428330,350,133,6431583,6428330,22102,8455,668110112,625577772,100,100,100,100,1.58,1.57,0.96,1.03
-70744,22,063,22063,5861,2290,235208544,234944007,6181,2412,272529876,272188186,128026,50170,1820363178,1678749073,94.82,94.94,86.31,86.32,4.58,4.56,12.92,14
-70744,22,091,22091,320,122,37321332,37244179,6181,2412,272529876,272188186,11203,5150,1060568829,1057758275,5.18,5.06,13.69,13.68,2.86,2.37,3.52,3.52
-70747,22,077,22077,180,158,14467813,10868366,180,158,14467813,10868366,22802,11130,1529938096,1443519892,100,100,100,100,0.79,1.42,0.95,0.75
-70748,22,033,22033,215,85,2402689,2402689,6657,2033,207501029,205617409,440171,187353,1217903045,1179412087,3.23,4.18,1.16,1.17,0.05,0.05,0.2,0.2
-70748,22,037,22037,6442,1948,205098340,203214720,6657,2033,207501029,205617409,20267,8014,1180458844,1174325549,96.77,95.82,98.84,98.83,31.79,24.31,17.37,17.3
-70749,22,077,22077,1554,881,69043132,64118547,1554,881,69043132,64118547,22802,11130,1529938096,1443519892,100,100,100,100,6.82,7.92,4.51,4.44
-70750,22,077,22077,2,17,79856323,77779303,1951,1007,343885528,332291147,22802,11130,1529938096,1443519892,0.1,1.69,23.22,23.41,0.01,0.15,5.22,5.39
-70750,22,097,22097,1949,990,264029205,254511844,1951,1007,343885528,332291147,83384,35692,2431951562,2392836670,99.9,98.31,76.78,76.59,2.34,2.77,10.86,10.64
-70752,22,077,22077,806,352,24530390,24508895,806,352,24530390,24508895,22802,11130,1529938096,1443519892,100,100,100,100,3.53,3.16,1.6,1.7
-70753,22,077,22077,870,412,189866974,176871452,870,412,189866974,176871452,22802,11130,1529938096,1443519892,100,100,100,100,3.82,3.7,12.41,12.25
-70754,22,063,22063,10170,3761,314536562,313549482,10170,3761,314536562,313549482,128026,50170,1820363178,1678749073,100,100,100,100,7.94,7.5,17.28,18.68
-70755,22,077,22077,2186,874,62692668,62692668,2186,874,62692668,62692668,22802,11130,1529938096,1443519892,100,100,100,100,9.59,7.85,4.1,4.34
-70756,22,077,22077,393,176,36527891,36527891,393,176,36527891,36527891,22802,11130,1529938096,1443519892,100,100,100,100,1.72,1.58,2.39,2.53
-70757,22,047,22047,1913,773,52959981,52884647,3177,1395,127252485,127047689,33387,12707,1690894799,1602236448,60.21,55.41,41.62,41.63,5.73,6.08,3.13,3.3
-70757,22,077,22077,1256,496,66540307,66540307,3177,1395,127252485,127047689,22802,11130,1529938096,1443519892,39.53,35.56,52.29,52.37,5.51,4.46,4.35,4.61
-70757,22,099,22099,8,126,7752197,7622735,3177,1395,127252485,127047689,52160,21941,2114699164,1910498478,0.25,9.03,6.09,6,0.02,0.57,0.37,0.4
-70759,22,077,22077,1528,731,120877689,117827443,1528,731,120877689,117827443,22802,11130,1529938096,1443519892,100,100,100,100,6.7,6.57,7.9,8.16
-70760,22,077,22077,6993,3247,99854364,84620438,6993,3247,99854364,84620438,22802,11130,1529938096,1443519892,100,100,100,100,30.67,29.17,6.53,5.86
-70761,22,037,22037,897,445,161244371,160908278,897,445,161244371,160908278,20267,8014,1180458844,1174325549,100,100,100,100,4.43,5.55,13.66,13.7
-70762,22,077,22077,926,560,51229576,49954573,926,560,51229576,49954573,22802,11130,1529938096,1443519892,100,100,100,100,4.06,5.03,3.35,3.46
-70763,22,093,22093,3816,1393,31315254,30794567,3816,1393,31315254,30794567,22102,8455,668110112,625577772,100,100,100,100,17.27,16.48,4.69,4.92
-70764,22,047,22047,17563,7523,424211774,398290072,17584,7529,433813516,407891814,33387,12707,1690894799,1602236448,99.88,99.92,97.79,97.65,52.6,59.2,25.09,24.86
-70764,22,121,22121,21,6,9601742,9601742,17584,7529,433813516,407891814,23788,9324,527900965,498298900,0.12,0.08,2.21,2.35,0.09,0.06,1.82,1.93
-70767,22,121,22121,14914,5905,389746866,372932840,14914,5905,389746866,372932840,23788,9324,527900965,498298900,100,100,100,100,62.7,63.33,73.83,74.84
-70769,22,005,22005,36084,13074,127145569,125455805,36084,13074,127145569,125455805,107215,40784,784211520,751046853,100,100,100,100,33.66,32.06,16.21,16.7
-70770,22,033,22033,2923,1154,53448665,53448665,2923,1154,53448665,53448665,440171,187353,1217903045,1179412087,100,100,100,100,0.66,0.62,4.39,4.53
-70772,22,047,22047,784,350,36597648,36597648,784,350,36597648,36597648,33387,12707,1690894799,1602236448,100,100,100,100,2.35,2.75,2.16,2.28
-70773,22,077,22077,143,62,9449585,9285028,143,62,9449585,9285028,22802,11130,1529938096,1443519892,100,100,100,100,0.63,0.56,0.62,0.64
-70774,22,005,22005,9892,3939,200522880,195942616,10076,4050,201134735,196554471,107215,40784,784211520,751046853,98.17,97.26,99.7,99.69,9.23,9.66,25.57,26.09
-70774,22,063,22063,184,111,611855,611855,10076,4050,201134735,196554471,128026,50170,1820363178,1678749073,1.83,2.74,0.3,0.31,0.14,0.22,0.03,0.04
-70775,22,125,22125,14720,4601,841137901,811057758,14720,4601,841137901,811057758,15625,5097,1103341915,1044318335,100,100,100,100,94.21,90.27,76.24,77.66
-70776,22,047,22047,6043,1007,93416886,86410303,6043,1007,93416886,86410303,33387,12707,1690894799,1602236448,100,100,100,100,18.1,7.92,5.52,5.39
-70777,22,033,22033,1342,496,18000158,17984255,4269,1679,162897397,162497931,440171,187353,1217903045,1179412087,31.44,29.54,11.05,11.07,0.3,0.26,1.48,1.52
-70777,22,037,22037,2927,1183,144897239,144513676,4269,1679,162897397,162497931,20267,8014,1180458844,1174325549,68.56,70.46,88.95,88.93,14.44,14.76,12.27,12.31
-70778,22,005,22005,2291,942,63041181,62302039,2291,942,63041181,62302039,107215,40784,784211520,751046853,100,100,100,100,2.14,2.31,8.04,8.3
-70780,22,047,22047,1015,422,42743031,32946930,1015,422,42743031,32946930,33387,12707,1690894799,1602236448,100,100,100,100,3.04,3.32,2.53,2.06
-70782,22,125,22125,299,179,71561336,67202454,299,179,71561336,67202454,15625,5097,1103341915,1044318335,100,100,100,100,1.91,3.51,6.49,6.44
-70783,22,077,22077,2604,1535,56418726,51676632,2604,1535,56418726,51676632,22802,11130,1529938096,1443519892,100,100,100,100,11.42,13.79,3.69,3.58
-70785,22,063,22063,20979,8009,249181016,249055340,20979,8009,249181016,249055340,128026,50170,1820363178,1678749073,100,100,100,100,16.39,15.96,13.69,14.84
-70787,22,125,22125,127,87,12391557,12338241,127,87,12391557,12338241,15625,5097,1103341915,1044318335,100,100,100,100,0.81,1.71,1.12,1.18
-70788,22,047,22047,4051,1661,287558030,279028896,4051,1661,287558030,279028896,33387,12707,1690894799,1602236448,100,100,100,100,12.13,13.07,17.01,17.41
-70789,22,037,22037,750,360,60235328,60044124,750,360,60235328,60044124,20267,8014,1180458844,1174325549,100,100,100,100,3.7,4.49,5.1,5.11
-70791,22,033,22033,24729,9132,308301563,299879437,24918,9207,320829469,312124808,440171,187353,1217903045,1179412087,99.24,99.19,96.1,96.08,5.62,4.87,25.31,25.43
-70791,22,037,22037,189,75,12527906,12245371,24918,9207,320829469,312124808,20267,8014,1180458844,1174325549,0.76,0.81,3.9,3.92,0.93,0.94,1.06,1.04
-70801,22,033,22033,13,17,336411,336411,13,17,336411,336411,440171,187353,1217903045,1179412087,100,100,100,100,0,0.01,0.03,0.03
-70802,22,033,22033,27267,13056,22894194,19933632,27267,13056,22894194,19933632,440171,187353,1217903045,1179412087,100,100,100,100,6.19,6.97,1.88,1.69
-70803,22,033,22033,1335,185,624355,624355,1335,185,624355,624355,440171,187353,1217903045,1179412087,100,100,100,100,0.3,0.1,0.05,0.05
-70805,22,033,22033,29909,11724,31070940,29540969,29909,11724,31070940,29540969,440171,187353,1217903045,1179412087,100,100,100,100,6.79,6.26,2.55,2.5
-70806,22,033,22033,28706,14256,22988264,22988264,28706,14256,22988264,22988264,440171,187353,1217903045,1179412087,100,100,100,100,6.52,7.61,1.89,1.95
-70807,22,033,22033,20377,6748,77100641,66042672,20377,6748,77100641,66042672,440171,187353,1217903045,1179412087,100,100,100,100,4.63,3.6,6.33,5.6
-70808,22,033,22033,32504,15238,32286245,31272696,32504,15238,32286245,31272696,440171,187353,1217903045,1179412087,100,100,100,100,7.38,8.13,2.65,2.65
-70809,22,033,22033,25050,12811,38459270,38412858,25050,12811,38459270,38412858,440171,187353,1217903045,1179412087,100,100,100,100,5.69,6.84,3.16,3.26
-70810,22,033,22033,37980,16471,71800846,70114507,37980,16471,71800846,70114507,440171,187353,1217903045,1179412087,100,100,100,100,8.63,8.79,5.9,5.94
-70811,22,033,22033,13676,5313,30234314,30195197,13676,5313,30234314,30195197,440171,187353,1217903045,1179412087,100,100,100,100,3.11,2.84,2.48,2.56
-70812,22,033,22033,11206,4006,11270681,11270681,11206,4006,11270681,11270681,440171,187353,1217903045,1179412087,100,100,100,100,2.55,2.14,0.93,0.96
-70814,22,033,22033,14514,5533,20067395,20067395,14514,5533,20067395,20067395,440171,187353,1217903045,1179412087,100,100,100,100,3.3,2.95,1.65,1.7
-70815,22,033,22033,30075,12129,24815808,24815808,30075,12129,24815808,24815808,440171,187353,1217903045,1179412087,100,100,100,100,6.83,6.47,2.04,2.1
-70816,22,033,22033,43194,19976,41952504,41276173,43194,19976,41952504,41276173,440171,187353,1217903045,1179412087,100,100,100,100,9.81,10.66,3.44,3.5
-70817,22,033,22033,31192,12629,67547870,66696691,31192,12629,67547870,66696691,440171,187353,1217903045,1179412087,100,100,100,100,7.09,6.74,5.55,5.66
-70818,22,033,22033,9649,3860,37465391,37465391,9649,3860,37465391,37465391,440171,187353,1217903045,1179412087,100,100,100,100,2.19,2.06,3.08,3.18
-70819,22,033,22033,5040,1959,15153645,15038289,5040,1959,15153645,15038289,440171,187353,1217903045,1179412087,100,100,100,100,1.15,1.05,1.24,1.28
-70820,22,033,22033,17222,8224,56599588,49234705,17222,8224,56599588,49234705,440171,187353,1217903045,1179412087,100,100,100,100,3.91,4.39,4.65,4.17
-70836,22,033,22033,0,0,58993,58993,0,0,58993,58993,440171,187353,1217903045,1179412087,0,0,100,100,0,0,0,0.01
-71001,22,013,22013,3794,1652,136977604,136870448,4531,2029,320939025,320716741,14353,7718,2129152692,2101174885,83.73,81.42,42.68,42.68,26.43,21.4,6.43,6.51
-71001,22,027,22027,355,186,105642803,105642803,4531,2029,320939025,320716741,17195,7761,1987599136,1955125902,7.83,9.17,32.92,32.94,2.06,2.4,5.32,5.4
-71001,22,061,22061,382,191,78318618,78203490,4531,2029,320939025,320716741,46735,19479,1223703787,1221806070,8.43,9.41,24.4,24.38,0.82,0.98,6.4,6.4
-71003,22,027,22027,989,507,164245723,164156408,989,507,164245723,164156408,17195,7761,1987599136,1955125902,100,100,100,100,5.75,6.53,8.26,8.4
-71004,22,017,22017,644,306,107956795,103972349,644,306,107956795,103972349,254969,112028,2426361685,2275405029,100,100,100,100,0.25,0.27,4.45,4.57
-71006,22,015,22015,12158,5011,551989255,530629459,12158,5011,551989255,530629459,116979,49351,2246089362,2175737961,100,100,100,100,10.39,10.15,24.58,24.39
-71007,22,017,22017,1141,526,48310353,47832034,1141,526,48310353,47832034,254969,112028,2426361685,2275405029,100,100,100,100,0.45,0.47,1.99,2.1
-71008,22,013,22013,739,543,391804097,391338709,739,543,391804097,391338709,14353,7718,2129152692,2101174885,100,100,100,100,5.15,7.04,18.4,18.62
-71016,22,013,22013,2070,994,327871976,322779936,2070,994,327871976,322779936,14353,7718,2129152692,2101174885,100,100,100,100,14.42,12.88,15.4,15.36
-71018,22,015,22015,76,48,61964499,61806390,1622,866,219885653,218777908,116979,49351,2246089362,2175737961,4.69,5.54,28.18,28.25,0.06,0.1,2.76,2.84
-71018,22,119,22119,1546,818,157921154,156971518,1622,866,219885653,218777908,41207,19336,1592427534,1535939758,95.31,94.46,71.82,71.75,3.75,4.23,9.92,10.22
-71019,22,069,22069,538,234,87850276,87624991,8555,3827,872809776,847739072,39566,18587,3364375586,3243311940,6.29,6.11,10.07,10.34,1.36,1.26,2.61,2.7
-71019,22,081,22081,8017,3593,784959500,760114081,8555,3827,872809776,847739072,9091,4128,1042066240,1007738674,93.71,93.89,89.93,89.66,88.19,87.04,75.33,75.43
-71021,22,119,22119,772,468,1800295,1788535,772,468,1800295,1788535,41207,19336,1592427534,1535939758,100,100,100,100,1.87,2.42,0.11,0.12
-71023,22,015,22015,176,106,23658548,23615519,3632,2021,140726291,125570708,116979,49351,2246089362,2175737961,4.85,5.24,16.81,18.81,0.15,0.21,1.05,1.09
-71023,22,119,22119,3456,1915,117067743,101955189,3632,2021,140726291,125570708,41207,19336,1592427534,1535939758,95.15,94.76,83.19,81.19,8.39,9.9,7.35,6.64
-71024,22,013,22013,169,116,45264402,45264402,1420,696,157861473,157604330,14353,7718,2129152692,2101174885,11.9,16.67,28.67,28.72,1.18,1.5,2.13,2.15
-71024,22,119,22119,1251,580,112597071,112339928,1420,696,157861473,157604330,41207,19336,1592427534,1535939758,88.1,83.33,71.33,71.28,3.04,3,7.07,7.31
-71027,22,031,22031,1585,701,169533733,162856821,1585,701,169533733,162856821,26656,12290,2316973110,2267739158,100,100,100,100,5.95,5.7,7.32,7.18
-71028,22,013,22013,1666,980,334470920,334235959,1666,980,334470920,334235959,14353,7718,2129152692,2101174885,100,100,100,100,11.61,12.7,15.71,15.91
-71029,22,017,22017,219,112,73642338,71869678,219,112,73642338,71869678,254969,112028,2426361685,2275405029,100,100,100,100,0.09,0.1,3.04,3.16
-71030,22,031,22031,1537,639,94424116,93507111,1537,639,94424116,93507111,26656,12290,2316973110,2267739158,100,100,100,100,5.77,5.2,4.08,4.12
-71031,22,069,22069,657,355,224148890,198869307,1064,594,413047172,383436642,39566,18587,3364375586,3243311940,61.75,59.76,54.27,51.86,1.66,1.91,6.66,6.13
-71031,22,127,22127,407,239,188898282,184567335,1064,594,413047172,383436642,15313,7234,2478160113,2460712069,38.25,40.24,45.73,48.14,2.66,3.3,7.62,7.5
-71032,22,031,22031,2164,1004,317162474,312828697,2164,1004,317162474,312828697,26656,12290,2316973110,2267739158,100,100,100,100,8.12,8.17,13.69,13.79
-71033,22,017,22017,3510,1532,66464105,65672796,3510,1532,66464105,65672796,254969,112028,2426361685,2275405029,100,100,100,100,1.38,1.37,2.74,2.89
-71034,22,081,22081,313,144,8705915,8682506,313,144,8705915,8682506,9091,4128,1042066240,1007738674,100,100,100,100,3.44,3.49,0.84,0.86
-71037,22,015,22015,19325,7874,284428528,283685726,19325,7874,284428528,283685726,116979,49351,2246089362,2175737961,100,100,100,100,16.52,15.96,12.66,13.04
-71038,22,027,22027,4047,2143,558375720,557772878,4064,2154,561735838,561125632,17195,7761,1987599136,1955125902,99.58,99.49,99.4,99.4,23.54,27.61,28.09,28.53
-71038,22,119,22119,17,11,3360118,3352754,4064,2154,561735838,561125632,41207,19336,1592427534,1535939758,0.42,0.51,0.6,0.6,0.04,0.06,0.21,0.22
-71039,22,013,22013,378,189,40981769,40967758,1934,944,126392364,119510268,14353,7718,2129152692,2101174885,19.54,20.02,32.42,34.28,2.63,2.45,1.92,1.95
-71039,22,119,22119,1556,755,85410595,78542510,1934,944,126392364,119510268,41207,19336,1592427534,1535939758,80.46,79.98,67.58,65.72,3.78,3.9,5.36,5.11
-71040,22,027,22027,10268,4159,775370744,751092046,10268,4159,775370744,751092046,17195,7761,1987599136,1955125902,100,100,100,100,59.72,53.59,39.01,38.42
-71043,22,017,22017,546,284,39269996,36292969,546,284,39269996,36292969,254969,112028,2426361685,2275405029,100,100,100,100,0.21,0.25,1.62,1.6
-71044,22,017,22017,657,355,141878756,138342544,657,355,141878756,138342544,254969,112028,2426361685,2275405029,100,100,100,100,0.26,0.32,5.85,6.08
-71045,22,013,22013,663,407,124890132,122264276,663,407,124890132,122264276,14353,7718,2129152692,2101174885,100,100,100,100,4.62,5.27,5.87,5.82
-71046,22,017,22017,171,79,28264453,28252810,1351,648,232496960,231616404,254969,112028,2426361685,2275405029,12.66,12.19,12.16,12.2,0.07,0.07,1.16,1.24
-71046,22,031,22031,1180,569,204232507,203363594,1351,648,232496960,231616404,26656,12290,2316973110,2267739158,87.34,87.81,87.84,87.8,4.43,4.63,8.81,8.97
-71047,22,017,22017,12203,4883,279882843,278686651,12203,4883,279882843,278686651,254969,112028,2426361685,2275405029,100,100,100,100,4.79,4.36,11.54,12.25
-71048,22,027,22027,104,82,53179593,53179593,104,82,53179593,53179593,17195,7761,1987599136,1955125902,100,100,100,100,0.6,1.06,2.68,2.72
-71049,22,031,22031,3460,1706,234820390,224621067,3460,1706,234820390,224621067,26656,12290,2316973110,2267739158,100,100,100,100,12.98,13.88,10.13,9.91
-71051,22,015,22015,2401,1211,264569070,241232842,2409,1216,266331620,242654398,116979,49351,2246089362,2175737961,99.67,99.59,99.34,99.41,2.05,2.45,11.78,11.09
-71051,22,017,22017,8,5,1762550,1421556,2409,1216,266331620,242654398,254969,112028,2426361685,2275405029,0.33,0.41,0.66,0.59,0,0,0.07,0.06
-71052,22,031,22031,10146,4928,830129150,806481187,10259,4976,863882536,839182169,26656,12290,2316973110,2267739158,98.9,99.04,96.09,96.1,38.06,40.1,35.83,35.56
-71052,22,081,22081,113,48,33753386,32700982,10259,4976,863882536,839182169,9091,4128,1042066240,1007738674,1.1,0.96,3.91,3.9,1.24,1.16,3.24,3.24
-71055,22,013,22013,37,16,5811840,5780150,20268,8928,674680854,667712274,14353,7718,2129152692,2101174885,0.18,0.18,0.86,0.87,0.26,0.21,0.27,0.28
-71055,22,027,22027,434,212,69982226,69982226,20268,8928,674680854,667712274,17195,7761,1987599136,1955125902,2.14,2.37,10.37,10.48,2.52,2.73,3.52,3.58
-71055,22,119,22119,19797,8700,598886788,591949898,20268,8928,674680854,667712274,41207,19336,1592427534,1535939758,97.68,97.45,88.77,88.65,48.04,44.99,37.61,38.54
-71060,22,017,22017,3089,1392,195592807,174893347,3089,1392,195592807,174893347,254969,112028,2426361685,2275405029,100,100,100,100,1.21,1.24,8.06,7.69
-71061,22,017,22017,1712,861,49066451,47686092,1712,861,49066451,47686092,254969,112028,2426361685,2275405029,100,100,100,100,0.67,0.77,2.02,2.1
-71063,22,031,22031,748,379,267720386,266375624,748,379,267720386,266375624,26656,12290,2316973110,2267739158,100,100,100,100,2.81,3.08,11.55,11.75
-71064,22,015,22015,4096,1915,566653030,556246119,4096,1915,566653030,556246119,116979,49351,2246089362,2175737961,100,100,100,100,3.5,3.88,25.23,25.57
-71065,22,069,22069,19,10,14447642,14447642,1232,609,147949444,147894338,39566,18587,3364375586,3243311940,1.54,1.64,9.77,9.77,0.05,0.05,0.43,0.45
-71065,22,085,22085,1213,599,133501802,133446696,1232,609,147949444,147894338,24233,14130,2620082499,2244636736,98.46,98.36,90.23,90.23,5.01,4.24,5.1,5.95
-71067,22,015,22015,3290,1384,94470206,94454875,3297,1390,99551523,99530710,116979,49351,2246089362,2175737961,99.79,99.57,94.9,94.9,2.81,2.8,4.21,4.34
-71067,22,119,22119,7,6,5081317,5075835,3297,1390,99551523,99530710,41207,19336,1592427534,1535939758,0.21,0.43,5.1,5.1,0.02,0.03,0.32,0.33
-71068,22,013,22013,3231,1865,291372274,274023687,3627,2098,390287984,372596375,14353,7718,2129152692,2101174885,89.08,88.89,74.66,73.54,22.51,24.16,13.68,13.04
-71068,22,081,22081,396,233,98915710,98572688,3627,2098,390287984,372596375,9091,4128,1042066240,1007738674,10.92,11.11,25.34,26.46,4.36,5.64,9.49,9.78
-71069,22,017,22017,812,434,92630807,81407213,812,434,92630807,81407213,254969,112028,2426361685,2275405029,100,100,100,100,0.32,0.39,3.82,3.58
-71070,22,013,22013,883,482,161689009,159696599,1833,1081,543711854,529553773,14353,7718,2129152692,2101174885,48.17,44.59,29.74,30.16,6.15,6.25,7.59,7.6
-71070,22,069,22069,950,599,382022845,369857174,1833,1081,543711854,529553773,39566,18587,3364375586,3243311940,51.83,55.41,70.26,69.84,2.4,3.22,11.35,11.4
-71071,22,015,22015,21,13,28856302,28856302,2685,1209,126949379,124297722,116979,49351,2246089362,2175737961,0.78,1.08,22.73,23.22,0.02,0.03,1.28,1.33
-71071,22,119,22119,2664,1196,98093077,95441420,2685,1209,126949379,124297722,41207,19336,1592427534,1535939758,99.22,98.92,77.27,76.78,6.46,6.19,6.16,6.21
-71072,22,119,22119,1530,728,254838023,253365287,1530,728,254838023,253365287,41207,19336,1592427534,1535939758,100,100,100,100,3.71,3.76,16,16.5
-71073,22,119,22119,2319,1094,86595603,73928080,2319,1094,86595603,73928080,41207,19336,1592427534,1535939758,100,100,100,100,5.63,5.66,5.44,4.81
-71075,22,015,22015,124,73,34801842,34801842,6416,3138,105577592,96030646,116979,49351,2246089362,2175737961,1.93,2.33,32.96,36.24,0.11,0.15,1.55,1.6
-71075,22,119,22119,6292,3065,70775750,61228804,6416,3138,105577592,96030646,41207,19336,1592427534,1535939758,98.07,97.67,67.04,63.76,15.27,15.85,4.44,3.99
-71078,22,031,22031,5546,2211,121378037,120350087,5546,2211,121378037,120350087,26656,12290,2316973110,2267739158,100,100,100,100,20.81,17.99,5.24,5.31
-71079,22,027,22027,272,127,87318384,85394575,272,127,87318384,85394575,17195,7761,1987599136,1955125902,100,100,100,100,1.58,1.64,4.39,4.37
-71082,22,017,22017,5119,2361,235537482,195810318,5119,2361,235537482,195810318,254969,112028,2426361685,2275405029,100,100,100,100,2.01,2.11,9.71,8.61
-71101,22,017,22017,8197,4357,11684572,11197092,8197,4357,11684572,11197092,254969,112028,2426361685,2275405029,100,100,100,100,3.21,3.89,0.48,0.49
-71103,22,017,22017,7813,3605,9825515,9825515,7813,3605,9825515,9825515,254969,112028,2426361685,2275405029,100,100,100,100,3.06,3.22,0.4,0.43
-71104,22,015,22015,384,244,708292,708292,14802,7349,10284798,10255808,116979,49351,2246089362,2175737961,2.59,3.32,6.89,6.91,0.33,0.49,0.03,0.03
-71104,22,017,22017,14418,7105,9576506,9547516,14802,7349,10284798,10255808,254969,112028,2426361685,2275405029,97.41,96.68,93.11,93.09,5.65,6.34,0.39,0.42
-71105,22,015,22015,2218,1179,1321676,1282478,21907,11161,25830254,23817706,116979,49351,2246089362,2175737961,10.12,10.56,5.12,5.38,1.9,2.39,0.06,0.06
-71105,22,017,22017,19689,9982,24508578,22535228,21907,11161,25830254,23817706,254969,112028,2426361685,2275405029,89.88,89.44,94.88,94.62,7.72,8.91,1.01,0.99
-71106,22,017,22017,34814,14429,87879480,84016468,34814,14429,87879480,84016468,254969,112028,2426361685,2275405029,100,100,100,100,13.65,12.88,3.62,3.69
-71107,22,015,22015,103,46,2884339,2767249,33800,13099,397306965,370025766,116979,49351,2246089362,2175737961,0.3,0.35,0.73,0.75,0.09,0.09,0.13,0.13
-71107,22,017,22017,33697,13053,394422626,367258517,33800,13099,397306965,370025766,254969,112028,2426361685,2275405029,99.7,99.65,99.27,99.25,13.22,11.65,16.26,16.14
-71108,22,017,22017,20388,8014,22159004,22144890,20388,8014,22159004,22144890,254969,112028,2426361685,2275405029,100,100,100,100,8,7.15,0.91,0.97
-71109,22,017,22017,22154,9722,35802507,32539131,22154,9722,35802507,32539131,254969,112028,2426361685,2275405029,100,100,100,100,8.69,8.68,1.48,1.43
-71110,22,015,22015,2793,735,88822112,86531119,2793,735,88822112,86531119,116979,49351,2246089362,2175737961,100,100,100,100,2.39,1.49,3.95,3.98
-71111,22,015,22015,38456,16485,123310399,118313813,38456,16485,123310399,118313813,116979,49351,2246089362,2175737961,100,100,100,100,32.87,33.4,5.49,5.44
-71112,22,015,22015,31358,13027,117651264,110805936,31358,13027,117651264,110805936,116979,49351,2246089362,2175737961,100,100,100,100,26.81,26.4,5.24,5.09
-71115,22,017,22017,14254,6842,189447280,178130372,14506,6952,305179009,285798789,254969,112028,2426361685,2275405029,98.26,98.42,62.08,62.33,5.59,6.11,7.81,7.83
-71115,22,081,22081,252,110,115731729,107668417,14506,6952,305179009,285798789,9091,4128,1042066240,1007738674,1.74,1.58,37.92,37.67,2.77,2.66,11.11,10.68
-71118,22,017,22017,24761,10598,34468880,34209861,24761,10598,34468880,34209861,254969,112028,2426361685,2275405029,100,100,100,100,9.71,9.46,1.42,1.5
-71119,22,017,22017,11562,5005,128619409,114871428,11562,5005,128619409,114871428,254969,112028,2426361685,2275405029,100,100,100,100,4.53,4.47,5.3,5.05
-71129,22,017,22017,13391,6186,117707592,116988654,13391,6186,117707592,116988654,254969,112028,2426361685,2275405029,100,100,100,100,5.25,5.52,4.85,5.14
-71201,22,073,22073,20319,10052,35056313,33620804,20319,10052,35056313,33620804,153720,64481,1636226323,1580944616,100,100,100,100,13.22,15.59,2.14,2.13
-71202,22,073,22073,29044,10341,305892053,298790883,29044,10341,305892053,298790883,153720,64481,1636226323,1580944616,100,100,100,100,18.89,16.04,18.69,18.9
-71203,22,073,22073,37105,15266,324938156,307805782,37105,15266,324938156,307805782,153720,64481,1636226323,1580944616,100,100,100,100,24.14,23.68,19.86,19.47
-71209,22,073,22073,154,0,33053,24286,154,0,33053,24286,153720,64481,1636226323,1580944616,100,0,100,100,0.1,0,0,0
-71219,22,041,22041,1288,548,157607878,157430102,1288,548,157607878,157430102,20767,9034,1645775613,1617667724,100,100,100,100,6.2,6.07,9.58,9.73
-71220,22,067,22067,23266,10050,978210384,962419987,23266,10050,978210384,962419987,27979,12423,2087749092,2058870285,100,100,100,100,83.16,80.9,46.85,46.75
-71222,22,027,22027,370,171,93511493,93481945,3481,1673,379905255,379587919,17195,7761,1987599136,1955125902,10.63,10.22,24.61,24.63,2.15,2.2,4.7,4.78
-71222,22,111,22111,3111,1502,286393762,286105974,3481,1673,379905255,379587919,22721,11346,2344983874,2271389460,89.37,89.78,75.39,75.37,13.69,13.24,12.21,12.6
-71223,22,067,22067,523,263,145366956,144979603,523,263,145366956,144979603,27979,12423,2087749092,2058870285,100,100,100,100,1.87,2.12,6.96,7.04
-71225,22,073,22073,7068,2808,151417677,151220965,7068,2808,151417677,151220965,153720,64481,1636226323,1580944616,100,100,100,100,4.6,4.35,9.25,9.57
-71226,22,049,22049,1638,1148,408431372,389109356,1638,1148,408431372,389109356,16274,7680,1502910917,1474178126,100,100,100,100,10.07,14.95,27.18,26.4
-71227,22,049,22049,549,255,99926318,99567617,3635,1615,290695497,289910851,16274,7680,1502910917,1474178126,15.1,15.79,34.37,34.34,3.37,3.32,6.65,6.75
-71227,22,061,22061,2943,1298,180735064,180309119,3635,1615,290695497,289910851,46735,19479,1223703787,1221806070,80.96,80.37,62.17,62.19,6.3,6.66,14.77,14.76
-71227,22,073,22073,143,62,10034115,10034115,3635,1615,290695497,289910851,153720,64481,1636226323,1580944616,3.93,3.84,3.45,3.46,0.09,0.1,0.61,0.63
-71229,22,067,22067,1292,486,137626312,134856479,1662,642,155275826,151920459,27979,12423,2087749092,2058870285,77.74,75.7,88.63,88.77,4.62,3.91,6.59,6.55
-71229,22,073,22073,370,156,17649514,17063980,1662,642,155275826,151920459,153720,64481,1636226323,1580944616,22.26,24.3,11.37,11.23,0.24,0.24,1.08,1.08
-71232,22,041,22041,756,327,135276597,135253595,6581,2897,782170125,780755869,20767,9034,1645775613,1617667724,11.49,11.29,17.3,17.32,3.64,3.62,8.22,8.36
-71232,22,065,22065,718,369,429998105,429023420,6581,2897,782170125,780755869,12093,4804,1685822123,1617283455,10.91,12.74,54.98,54.95,5.94,7.68,25.51,26.53
-71232,22,083,22083,5107,2201,216895423,216478854,6581,2897,782170125,780755869,20725,8621,1462088791,1447914686,77.6,75.98,27.73,27.73,24.64,25.53,14.83,14.95
-71233,22,065,22065,305,152,1629716,1629716,305,152,1629716,1629716,12093,4804,1685822123,1617283455,100,100,100,100,2.52,3.16,0.1,0.1
-71234,22,061,22061,185,99,20236855,20236855,3992,1952,310239858,307240625,46735,19479,1223703787,1221806070,4.63,5.07,6.52,6.59,0.4,0.51,1.65,1.66
-71234,22,073,22073,709,320,22147641,22147641,3992,1952,310239858,307240625,153720,64481,1636226323,1580944616,17.76,16.39,7.14,7.21,0.46,0.5,1.35,1.4
-71234,22,111,22111,3098,1533,267855362,264856129,3992,1952,310239858,307240625,22721,11346,2344983874,2271389460,77.61,78.53,86.34,86.2,13.63,13.51,11.42,11.66
-71235,22,027,22027,36,32,18944840,18944840,4280,2033,419178328,418423914,17195,7761,1987599136,1955125902,0.84,1.57,4.52,4.53,0.21,0.41,0.95,0.97
-71235,22,061,22061,4244,2001,400233488,399479074,4280,2033,419178328,418423914,46735,19479,1223703787,1221806070,99.16,98.43,95.48,95.47,9.08,10.27,32.71,32.7
-71237,22,035,22035,96,50,42303409,42303409,1578,565,167978576,167805272,7759,2904,1145893015,1089619046,6.08,8.85,25.18,25.21,1.24,1.72,3.69,3.88
-71237,22,083,22083,107,53,28652282,28652282,1578,565,167978576,167805272,20725,8621,1462088791,1447914686,6.78,9.38,17.06,17.07,0.52,0.61,1.96,1.98
-71237,22,123,22123,1375,462,97022885,96849581,1578,565,167978576,167805272,11604,5046,933864840,931478647,87.14,81.77,57.76,57.72,11.85,9.16,10.39,10.4
-71238,22,049,22049,795,421,174840321,174782166,2807,1222,283574892,283437234,16274,7680,1502910917,1474178126,28.32,34.45,61.66,61.67,4.89,5.48,11.63,11.86
-71238,22,073,22073,2012,801,108734571,108655068,2807,1222,283574892,283437234,153720,64481,1636226323,1580944616,71.68,65.55,38.34,38.33,1.31,1.24,6.65,6.87
-71241,22,111,22111,9982,4812,565931592,504198061,9982,4812,565931592,504198061,22721,11346,2344983874,2271389460,100,100,100,100,43.93,42.41,24.13,22.2
-71243,22,041,22041,194,106,70821306,66006271,194,106,70821306,66006271,20767,9034,1645775613,1617667724,100,100,100,100,0.93,1.17,4.3,4.08
-71245,22,061,22061,4718,1310,18254185,18197312,4718,1310,18254185,18197312,46735,19479,1223703787,1221806070,100,100,100,100,10.1,6.73,1.49,1.49
-71247,22,049,22049,1175,630,7509415,6439521,1175,630,7509415,6439521,16274,7680,1502910917,1474178126,100,100,100,100,7.22,8.2,0.5,0.44
-71250,22,067,22067,220,179,250147003,247249385,220,179,250147003,247249385,27979,12423,2087749092,2058870285,100,100,100,100,0.79,1.44,11.98,12.01
-71251,22,013,22013,260,139,68378481,68326055,9051,3855,480677099,473910663,14353,7718,2129152692,2101174885,2.87,3.61,14.23,14.42,1.81,1.8,3.21,3.25
-71251,22,049,22049,8791,3716,412298618,405584608,9051,3855,480677099,473910663,16274,7680,1502910917,1474178126,97.13,96.39,85.77,85.58,54.02,48.39,27.43,27.51
-71253,22,123,22123,255,123,2624760,2624760,255,123,2624760,2624760,11604,5046,933864840,931478647,100,100,100,100,2.2,2.44,0.28,0.28
-71254,22,035,22035,6759,2422,709667247,680898417,6759,2422,709667247,680898417,7759,2904,1145893015,1089619046,100,100,100,100,87.11,83.4,61.93,62.49
-71256,22,027,22027,178,76,50400770,44851748,688,315,130252232,124668941,17195,7761,1987599136,1955125902,25.87,24.13,38.69,35.98,1.04,0.98,2.54,2.29
-71256,22,111,22111,510,239,79851462,79817193,688,315,130252232,124668941,22721,11346,2344983874,2271389460,74.13,75.87,61.31,64.02,2.24,2.11,3.41,3.51
-71259,22,083,22083,1697,743,245833146,244454466,1697,743,245833146,244454466,20725,8621,1462088791,1447914686,100,100,100,100,8.19,8.62,16.81,16.88
-71260,22,111,22111,3177,1792,738396989,732788410,3177,1792,738396989,732788410,22721,11346,2344983874,2271389460,100,100,100,100,13.98,15.79,31.49,32.26
-71261,22,067,22067,1684,901,330843165,327793187,1684,901,330843165,327793187,27979,12423,2087749092,2058870285,100,100,100,100,6.02,7.25,15.85,15.92
-71263,22,123,22123,8275,3681,538390117,537098326,8275,3681,538390117,537098326,11604,5046,933864840,931478647,100,100,100,100,71.31,72.95,57.65,57.66
-71264,22,067,22067,508,309,238219744,235947255,1045,529,298139742,295457449,27979,12423,2087749092,2058870285,48.61,58.41,79.9,79.86,1.82,2.49,11.41,11.46
-71264,22,083,22083,537,220,59919998,59510194,1045,529,298139742,295457449,20725,8621,1462088791,1447914686,51.39,41.59,20.1,20.14,2.59,2.55,4.1,4.11
-71266,22,123,22123,1699,780,295827078,294905980,1699,780,295827078,294905980,11604,5046,933864840,931478647,100,100,100,100,14.64,15.46,31.68,31.66
-71268,22,013,22013,331,253,135439180,135439180,2819,1353,329991290,329507208,14353,7718,2129152692,2101174885,11.74,18.7,41.04,41.1,2.31,3.28,6.36,6.45
-71268,22,049,22049,2488,1100,194552110,194068028,2819,1353,329991290,329507208,16274,7680,1502910917,1474178126,88.26,81.3,58.96,58.9,15.29,14.32,12.95,13.16
-71269,22,083,22083,12757,5039,846497629,836752076,12757,5039,846497629,836752076,20725,8621,1462088791,1447914686,100,100,100,100,61.55,58.45,57.9,57.79
-71270,22,049,22049,838,410,205352763,204626830,30887,13914,531085867,529833360,16274,7680,1502910917,1474178126,2.71,2.95,38.67,38.62,5.15,5.34,13.66,13.88
-71270,22,061,22061,30049,13504,325733104,325206530,30887,13914,531085867,529833360,46735,19479,1223703787,1221806070,97.29,97.05,61.33,61.38,64.3,69.33,26.62,26.62
-71272,22,061,22061,1893,0,423127,423127,1893,0,423127,423127,46735,19479,1223703787,1221806070,100,0,100,100,4.05,0,0.03,0.03
-71275,22,013,22013,132,82,64201008,64187726,2453,1158,263970354,263938289,14353,7718,2129152692,2101174885,5.38,7.08,24.32,24.32,0.92,1.06,3.02,3.05
-71275,22,061,22061,2321,1076,199769346,199750563,2453,1158,263970354,263938289,46735,19479,1223703787,1221806070,94.62,92.92,75.68,75.68,4.97,5.52,16.32,16.35
-71276,22,035,22035,289,125,135407724,125878645,289,125,135407724,125878645,7759,2904,1145893015,1089619046,100,100,100,100,3.72,4.3,11.82,11.55
-71277,22,111,22111,1758,906,283195911,282816887,1758,906,283195911,282816887,22721,11346,2344983874,2271389460,100,100,100,100,7.74,7.99,12.08,12.45
-71279,22,083,22083,45,25,135755,135755,45,25,135755,135755,20725,8621,1462088791,1447914686,100,100,100,100,0.22,0.29,0.01,0.01
-71280,22,067,22067,486,235,7335528,5624389,3647,1608,172647758,166322680,27979,12423,2087749092,2058870285,13.33,14.61,4.25,3.38,1.74,1.89,0.35,0.27
-71280,22,073,22073,2414,986,45925553,43863604,3647,1608,172647758,166322680,153720,64481,1636226323,1580944616,66.19,61.32,26.6,26.37,1.57,1.53,2.81,2.77
-71280,22,111,22111,747,387,119386677,116834687,3647,1608,172647758,166322680,22721,11346,2344983874,2271389460,20.48,24.07,69.15,70.25,3.29,3.41,5.09,5.14
-71282,22,065,22065,11070,4283,1254194302,1186630319,11070,4283,1254194302,1186630319,12093,4804,1685822123,1617283455,100,100,100,100,91.54,89.15,74.4,73.37
-71286,22,035,22035,615,307,258514635,240538575,615,307,258514635,240538575,7759,2904,1145893015,1089619046,100,100,100,100,7.93,10.57,22.56,22.08
-71291,22,073,22073,32644,14480,173195745,167734104,32644,14480,173195745,167734104,153720,64481,1636226323,1580944616,100,100,100,100,21.24,22.46,10.59,10.61
-71292,22,073,22073,21541,9104,411826028,390644499,21541,9104,411826028,390644499,153720,64481,1636226323,1580944616,100,100,100,100,14.01,14.12,25.17,24.71
-71295,22,041,22041,14343,5977,832770883,823871180,14343,5977,832770883,823871180,20767,9034,1645775613,1617667724,100,100,100,100,69.07,66.16,50.6,50.93
-71301,22,079,22079,22859,9766,32665456,32317153,22859,9766,32665456,32317153,131613,55684,3526675994,3413506392,100,100,100,100,17.37,17.54,0.93,0.95
-71302,22,079,22079,15049,6478,176487243,170509700,15049,6478,176487243,170509700,131613,55684,3526675994,3413506392,100,100,100,100,11.43,11.63,5,5
-71303,22,079,22079,21015,8947,171557229,171081274,21015,8947,171557229,171081274,131613,55684,3526675994,3413506392,100,100,100,100,15.97,16.07,4.86,5.01
-71316,22,029,22029,37,35,117468146,114221641,37,35,117468146,114221641,20822,9383,1935502213,1805014057,100,100,100,100,0.18,0.37,6.07,6.33
-71322,22,009,22009,6305,2755,261240360,259762347,6969,3075,464882486,461322510,42073,18042,2242267676,2155994488,90.47,89.59,56.19,56.31,14.99,15.27,11.65,12.05
-71322,22,097,22097,664,320,203642126,201560163,6969,3075,464882486,461322510,83384,35692,2431951562,2392836670,9.53,10.41,43.81,43.69,0.8,0.9,8.37,8.42
-71323,22,009,22009,989,387,71253748,70987172,989,387,71253748,70987172,42073,18042,2242267676,2155994488,100,100,100,100,2.35,2.14,3.18,3.29
-71325,22,039,22039,265,137,65481481,60642838,1321,643,225236428,220375231,33984,14662,1760217962,1715550341,20.06,21.31,29.07,27.52,0.78,0.93,3.72,3.53
-71325,22,079,22079,1056,506,159754947,159732393,1321,643,225236428,220375231,131613,55684,3526675994,3413506392,79.94,78.69,70.93,72.48,0.8,0.91,4.53,4.68
-71326,22,025,22025,345,178,170283323,166300943,1164,559,213124290,208226606,10407,4877,1915090508,1833789263,29.64,31.84,79.9,79.87,3.32,3.65,8.89,9.07
-71326,22,029,22029,819,381,42840967,41925663,1164,559,213124290,208226606,20822,9383,1935502213,1805014057,70.36,68.16,20.1,20.13,3.93,4.06,2.21,2.32
-71327,22,009,22009,5454,1607,108909696,108856707,5454,1607,108909696,108856707,42073,18042,2242267676,2155994488,100,100,100,100,12.96,8.91,4.86,5.05
-71328,22,009,22009,459,198,18642075,18642075,7414,3110,334553911,313927767,42073,18042,2242267676,2155994488,6.19,6.37,5.57,5.94,1.09,1.1,0.83,0.86
-71328,22,059,22059,0,71,55352672,47064154,7414,3110,334553911,313927767,14890,6560,1715590736,1617923154,0,2.28,16.55,14.99,0,1.08,3.23,2.91
-71328,22,079,22079,6955,2841,260559164,248221538,7414,3110,334553911,313927767,131613,55684,3526675994,3413506392,93.81,91.35,77.88,79.07,5.28,5.1,7.39,7.27
-71331,22,009,22009,1036,429,190745290,180551593,1036,429,190745290,180551593,42073,18042,2242267676,2155994488,100,100,100,100,2.46,2.38,8.51,8.37
-71333,22,009,22009,666,362,98357186,98150672,666,362,98357186,98150672,42073,18042,2242267676,2155994488,100,100,100,100,1.58,2.01,4.39,4.55
-71334,22,029,22029,9839,4208,473187437,441620358,9839,4208,473187437,441620358,20822,9383,1935502213,1805014057,100,100,100,100,47.25,44.85,24.45,24.47
-71336,22,041,22041,1650,865,314318071,306582010,1650,865,314318071,306582010,20767,9034,1645775613,1617667724,100,100,100,100,7.95,9.57,19.1,18.95
-71339,22,009,22009,130,56,22078031,22078031,130,56,22078031,22078031,42073,18042,2242267676,2155994488,100,100,100,100,0.31,0.31,0.98,1.02
-71340,22,025,22025,1710,526,313860822,298883106,1710,526,313860822,298883106,10407,4877,1915090508,1833789263,100,100,100,100,16.43,10.79,16.39,16.3
-71341,22,009,22009,3069,1362,67433539,66615951,3069,1362,67433539,66615951,42073,18042,2242267676,2155994488,100,100,100,100,7.29,7.55,3.01,3.09
-71342,22,059,22059,7533,3318,428123408,393427515,7533,3318,428123408,393427515,14890,6560,1715590736,1617923154,100,100,100,100,50.59,50.58,24.95,24.32
-71343,22,025,22025,6423,3049,965155520,907777780,7678,3739,1476131307,1358541637,10407,4877,1915090508,1833789263,83.65,81.55,65.38,66.82,61.72,62.52,50.4,49.5
-71343,22,029,22029,958,515,259086826,250840391,7678,3739,1476131307,1358541637,20822,9383,1935502213,1805014057,12.48,13.77,17.55,18.46,4.6,5.49,13.39,13.9
-71343,22,059,22059,297,175,251888961,199923466,7678,3739,1476131307,1358541637,14890,6560,1715590736,1617923154,3.87,4.68,17.06,14.72,1.99,2.67,14.68,12.36
-71345,22,097,22097,69,36,428267,427341,69,36,428267,427341,83384,35692,2431951562,2392836670,100,100,100,100,0.08,0.1,0.02,0.02
-71346,22,079,22079,3040,1346,217194170,213169689,3040,1346,217194170,213169689,131613,55684,3526675994,3413506392,100,100,100,100,2.31,2.42,6.16,6.24
-71350,22,009,22009,4124,1943,91004410,90061901,4124,1943,91004410,90061901,42073,18042,2242267676,2155994488,100,100,100,100,9.8,10.77,4.06,4.18
-71351,22,009,22009,11389,5175,555752187,524151315,11502,5222,560315695,528714823,42073,18042,2242267676,2155994488,99.02,99.1,99.19,99.14,27.07,28.68,24.79,24.31
-71351,22,079,22079,113,47,4563508,4563508,11502,5222,560315695,528714823,131613,55684,3526675994,3413506392,0.98,0.9,0.81,0.86,0.09,0.08,0.13,0.13
-71353,22,097,22097,1664,926,205152177,194833931,1664,926,205152177,194833931,83384,35692,2431951562,2392836670,100,100,100,100,2,2.59,8.44,8.14
-71354,22,029,22029,1699,927,258639099,245261351,1699,927,258639099,245261351,20822,9383,1935502213,1805014057,100,100,100,100,8.16,9.88,13.36,13.59
-71355,22,009,22009,2764,1424,401724118,368451922,2764,1424,401724118,368451922,42073,18042,2242267676,2155994488,100,100,100,100,6.57,7.89,17.92,17.09
-71356,22,009,22009,110,59,6503152,6478978,648,308,89847653,89553721,42073,18042,2242267676,2155994488,16.98,19.16,7.24,7.23,0.26,0.33,0.29,0.3
-71356,22,097,22097,538,249,83344501,83074743,648,308,89847653,89553721,83384,35692,2431951562,2392836670,83.02,80.84,92.76,92.77,0.65,0.7,3.43,3.47
-71357,22,107,22107,2149,1407,757644585,725283872,2149,1407,757644585,725283872,5252,3357,1660675636,1561204557,100,100,100,100,40.92,41.91,45.62,46.46
-71358,22,097,22097,1111,593,239024198,233808422,1111,593,239024198,233808422,83384,35692,2431951562,2392836670,100,100,100,100,1.33,1.66,9.83,9.77
-71360,22,009,22009,251,107,41594108,38588872,35361,14471,535081867,507450502,42073,18042,2242267676,2155994488,0.71,0.74,7.77,7.6,0.6,0.59,1.86,1.79
-71360,22,043,22043,633,250,6775474,6738582,35361,14471,535081867,507450502,22309,8886,1721443632,1665428895,1.79,1.73,1.27,1.33,2.84,2.81,0.39,0.4
-71360,22,079,22079,34477,14114,486712285,462123048,35361,14471,535081867,507450502,131613,55684,3526675994,3413506392,97.5,97.53,90.96,91.07,26.2,25.35,13.8,13.54
-71362,22,009,22009,2105,863,105303943,105302185,2169,921,133762598,133495105,42073,18042,2242267676,2155994488,97.05,93.7,78.72,78.88,5,4.78,4.7,4.88
-71362,22,097,22097,64,58,28458655,28192920,2169,921,133762598,133495105,83384,35692,2431951562,2392836670,2.95,6.3,21.28,21.12,0.08,0.16,1.17,1.18
-71366,22,107,22107,1974,1265,461081000,424070699,1974,1265,461081000,424070699,5252,3357,1660675636,1561204557,100,100,100,100,37.59,37.68,27.76,27.16
-71367,22,039,22039,1255,593,169788924,161492891,1278,601,181188407,172878493,33984,14662,1760217962,1715550341,98.2,98.67,93.71,93.41,3.69,4.04,9.65,9.41
-71367,22,079,22079,23,8,11399483,11385602,1278,601,181188407,172878493,131613,55684,3526675994,3413506392,1.8,1.33,6.29,6.59,0.02,0.01,0.32,0.33
-71368,22,025,22025,1459,851,219388701,215741784,1459,851,219388701,215741784,10407,4877,1915090508,1833789263,100,100,100,100,14.02,17.45,11.46,11.76
-71369,22,009,22009,3222,1315,201725833,197314767,3222,1315,201725833,197314767,42073,18042,2242267676,2155994488,100,100,100,100,7.66,7.29,9,9.15
-71371,22,059,22059,2151,991,389053716,387062503,2151,991,389053716,387062503,14890,6560,1715590736,1617923154,100,100,100,100,14.45,15.11,22.68,23.92
-71373,22,029,22029,7358,3267,783441274,710311966,7358,3267,783441274,710311966,20822,9383,1935502213,1805014057,100,100,100,100,35.34,34.82,40.48,39.35
-71375,22,107,22107,1129,685,351903468,344433110,1129,685,351903468,344433110,5252,3357,1660675636,1561204557,100,100,100,100,21.5,20.41,21.19,22.06
-71377,22,029,22029,112,50,838464,832687,112,50,838464,832687,20822,9383,1935502213,1805014057,100,100,100,100,0.54,0.53,0.04,0.05
-71378,22,041,22041,2536,1211,134980878,128524566,2536,1211,134980878,128524566,20767,9034,1645775613,1617667724,100,100,100,100,12.21,13.4,8.2,7.95
-71401,22,025,22025,117,60,73347899,73347899,117,60,73347899,73347899,10407,4877,1915090508,1833789263,100,100,100,100,1.12,1.23,3.83,4
-71403,22,085,22085,43,43,8081225,7877592,4584,2063,375729394,361902563,24233,14130,2620082499,2244636736,0.94,2.08,2.15,2.18,0.18,0.3,0.31,0.35
-71403,22,115,22115,4541,2020,367648169,354024971,4584,2063,375729394,361902563,52334,21433,3474429937,3439271369,99.06,97.92,97.85,97.82,8.68,9.42,10.58,10.29
-71404,22,043,22043,270,196,73889875,70838451,797,463,267547968,264494643,22309,8886,1721443632,1665428895,33.88,42.33,27.62,26.78,1.21,2.21,4.29,4.25
-71404,22,127,22127,527,267,193658093,193656192,797,463,267547968,264494643,15313,7234,2478160113,2460712069,66.12,57.67,72.38,73.22,3.44,3.69,7.81,7.87
-71405,22,079,22079,5592,2302,38010047,37962882,5592,2302,38010047,37962882,131613,55684,3526675994,3413506392,100,100,100,100,4.25,4.13,1.08,1.11
-71406,22,085,22085,216,97,20585319,20585319,216,97,20585319,20585319,24233,14130,2620082499,2244636736,100,100,100,100,0.89,0.69,0.79,0.92
-71407,22,043,22043,933,367,35730971,35568091,933,367,35730971,35568091,22309,8886,1721443632,1665428895,100,100,100,100,4.18,4.13,2.08,2.14
-71409,22,079,22079,6874,3031,365527786,347081699,6874,3031,365527786,347081699,131613,55684,3526675994,3413506392,100,100,100,100,5.22,5.44,10.36,10.17
-71410,22,127,22127,124,71,1787695,1787695,124,71,1787695,1787695,15313,7234,2478160113,2460712069,100,100,100,100,0.81,0.98,0.07,0.07
-71411,22,069,22069,2875,1583,198453930,174122745,2875,1583,198453930,174122745,39566,18587,3364375586,3243311940,100,100,100,100,7.27,8.52,5.9,5.37
-71414,22,069,22069,238,94,1601892,1581455,238,94,1601892,1581455,39566,18587,3364375586,3243311940,100,100,100,100,0.6,0.51,0.05,0.05
-71416,22,069,22069,842,463,179871714,174644127,842,463,179871714,174644127,39566,18587,3364375586,3243311940,100,100,100,100,2.13,2.49,5.35,5.38
-71417,22,043,22043,4932,2167,381702582,359627691,4932,2167,381702582,359627691,22309,8886,1721443632,1665428895,100,100,100,100,22.11,24.39,22.17,21.59
-71418,22,021,22021,5566,2989,806038981,777005621,6295,3459,918833778,887302777,10132,4994,1400481082,1371203807,88.42,86.41,87.72,87.57,54.93,59.85,57.55,56.67
-71418,22,025,22025,57,25,19264335,19027212,6295,3459,918833778,887302777,10407,4877,1915090508,1833789263,0.91,0.72,2.1,2.14,0.55,0.51,1.01,1.04
-71418,22,073,22073,197,105,29375904,29338885,6295,3459,918833778,887302777,153720,64481,1636226323,1580944616,3.13,3.04,3.2,3.31,0.13,0.16,1.8,1.86
-71418,22,083,22083,475,340,64154558,61931059,6295,3459,918833778,887302777,20725,8621,1462088791,1447914686,7.55,9.83,6.98,6.98,2.29,3.94,4.39,4.28
-71419,22,031,22031,290,153,77572317,77354970,2444,1368,365572903,365315244,26656,12290,2316973110,2267739158,11.87,11.18,21.22,21.17,1.09,1.24,3.35,3.41
-71419,22,085,22085,2154,1215,288000586,287960274,2444,1368,365572903,365315244,24233,14130,2620082499,2244636736,88.13,88.82,78.78,78.83,8.89,8.6,10.99,12.83
-71422,22,127,22127,1542,779,376917771,376091970,1542,779,376917771,376091970,15313,7234,2478160113,2460712069,100,100,100,100,10.07,10.77,15.21,15.28
-71423,22,043,22043,4283,1860,345005933,333074021,4538,1961,346775136,334843224,22309,8886,1721443632,1665428895,94.38,94.85,99.49,99.47,19.2,20.93,20.04,20
-71423,22,079,22079,255,101,1769203,1769203,4538,1961,346775136,334843224,131613,55684,3526675994,3413506392,5.62,5.15,0.51,0.53,0.19,0.18,0.05,0.05
-71424,22,079,22079,1225,494,150219624,149701816,1225,494,150219624,149701816,131613,55684,3526675994,3413506392,100,100,100,100,0.93,0.89,4.26,4.39
-71425,22,025,22025,214,125,98350249,97270880,214,125,98350249,97270880,10407,4877,1915090508,1833789263,100,100,100,100,2.06,2.56,5.14,5.3
-71426,22,085,22085,229,106,2990647,2990647,229,106,2990647,2990647,24233,14130,2620082499,2244636736,100,100,100,100,0.94,0.75,0.11,0.13
-71427,22,069,22069,104,54,19508736,19499464,413,198,40918211,40744802,39566,18587,3364375586,3243311940,25.18,27.27,47.68,47.86,0.26,0.29,0.58,0.6
-71427,22,079,22079,309,144,21409475,21245338,413,198,40918211,40744802,131613,55684,3526675994,3413506392,74.82,72.73,52.32,52.14,0.23,0.26,0.61,0.62
-71429,22,085,22085,3179,1945,629045196,628237617,3179,1945,629045196,628237617,24233,14130,2620082499,2244636736,100,100,100,100,13.12,13.77,24.01,27.99
-71430,22,079,22079,2576,1046,239519516,221591635,2576,1046,239519516,221591635,131613,55684,3526675994,3413506392,100,100,100,100,1.96,1.88,6.79,6.49
-71432,22,043,22043,1053,495,236162043,234857099,1053,495,236162043,234857099,22309,8886,1721443632,1665428895,100,100,100,100,4.72,5.57,13.72,14.1
-71433,22,079,22079,4367,1960,419840966,417837512,4367,1960,419840966,417837512,131613,55684,3526675994,3413506392,100,100,100,100,3.32,3.52,11.9,12.24
-71435,22,021,22021,3928,1715,470431956,470232300,3979,1766,523196051,522996395,10132,4994,1400481082,1371203807,98.72,97.11,89.92,89.91,38.77,34.34,33.59,34.29
-71435,22,025,22025,51,51,52764095,52764095,3979,1766,523196051,522996395,10407,4877,1915090508,1833789263,1.28,2.89,10.08,10.09,0.49,1.05,2.76,2.88
-71438,22,079,22079,1096,485,118481101,118480705,1626,715,224626927,224461566,131613,55684,3526675994,3413506392,67.4,67.83,52.75,52.78,0.83,0.87,3.36,3.47
-71438,22,115,22115,530,230,106145826,105980861,1626,715,224626927,224461566,52334,21433,3474429937,3439271369,32.6,32.17,47.25,47.22,1.01,1.07,3.06,3.08
-71439,22,085,22085,381,180,67322457,66455427,1897,862,140491016,139512878,24233,14130,2620082499,2244636736,20.08,20.88,47.92,47.63,1.57,1.27,2.57,2.96
-71439,22,115,22115,1516,682,73168559,73057451,1897,862,140491016,139512878,52334,21433,3474429937,3439271369,79.92,79.12,52.08,52.37,2.9,3.18,2.11,2.12
-71441,22,021,22021,542,258,89169609,89125350,618,295,141380960,141335510,10132,4994,1400481082,1371203807,87.7,87.46,63.07,63.06,5.35,5.17,6.37,6.5
-71441,22,059,22059,76,37,52211351,52210160,618,295,141380960,141335510,14890,6560,1715590736,1617923154,12.3,12.54,36.93,36.94,0.51,0.56,3.04,3.23
-71446,22,115,22115,22762,10364,1557378722,1540881608,22762,10364,1557378722,1540881608,52334,21433,3474429937,3439271369,100,100,100,100,43.49,48.36,44.82,44.8
-71447,22,069,22069,564,319,195191486,188948133,1469,734,417847106,390104560,39566,18587,3364375586,3243311940,38.39,43.46,46.71,48.44,1.43,1.72,5.8,5.83
-71447,22,079,22079,884,407,208818125,187318932,1469,734,417847106,390104560,131613,55684,3526675994,3413506392,60.18,55.45,49.97,48.02,0.67,0.73,5.92,5.49
-71447,22,115,22115,21,8,13837495,13837495,1469,734,417847106,390104560,52334,21433,3474429937,3439271369,1.43,1.09,3.31,3.55,0.04,0.04,0.4,0.4
-71449,22,085,22085,9696,5924,623654522,610746247,9696,5924,623654522,610746247,24233,14130,2620082499,2244636736,100,100,100,100,40.01,41.92,23.8,27.21
-71450,22,069,22069,773,404,127057610,126752115,1070,537,166311582,165690727,39566,18587,3364375586,3243311940,72.24,75.23,76.4,76.5,1.95,2.17,3.78,3.91
-71450,22,085,22085,297,133,39253972,38938612,1070,537,166311582,165690727,24233,14130,2620082499,2244636736,27.76,24.77,23.6,23.5,1.23,0.94,1.5,1.73
-71452,22,069,22069,57,59,29874138,29060349,57,59,29874138,29060349,39566,18587,3364375586,3243311940,100,100,100,100,0.14,0.32,0.89,0.9
-71454,22,043,22043,2227,1221,175530228,165756300,2527,1406,284955034,274146463,22309,8886,1721443632,1665428895,88.13,86.84,61.6,60.46,9.98,13.74,10.2,9.95
-71454,22,127,22127,300,185,109424806,108390163,2527,1406,284955034,274146463,15313,7234,2478160113,2460712069,11.87,13.16,38.4,39.54,1.96,2.56,4.42,4.4
-71455,22,069,22069,93,72,128578596,128544043,227,150,159137133,159102580,39566,18587,3364375586,3243311940,40.97,48,80.8,80.79,0.24,0.39,3.82,3.96
-71455,22,079,22079,134,78,30558537,30558537,227,150,159137133,159102580,131613,55684,3526675994,3413506392,59.03,52,19.2,19.21,0.1,0.14,0.87,0.9
-71456,22,069,22069,1223,739,99929713,96065126,1223,739,99929713,96065126,39566,18587,3364375586,3243311940,100,100,100,100,3.09,3.98,2.97,2.96
-71457,22,069,22069,27426,11988,687605181,648563834,27809,12191,724339350,684331261,39566,18587,3364375586,3243311940,98.62,98.33,94.93,94.77,69.32,64.5,20.44,20
-71457,22,127,22127,383,203,36734169,35767427,27809,12191,724339350,684331261,15313,7234,2478160113,2460712069,1.38,1.67,5.07,5.23,2.5,2.81,1.48,1.45
-71459,22,115,22115,11902,3436,24104127,24073471,11902,3436,24104127,24073471,52334,21433,3474429937,3439271369,100,100,100,100,22.74,16.03,0.69,0.7
-71461,22,115,22115,2577,1080,4834475,4832731,2577,1080,4834475,4832731,52334,21433,3474429937,3439271369,100,100,100,100,4.92,5.04,0.14,0.14
-71462,22,085,22085,1432,830,116159027,106479096,1432,830,116159027,106479096,24233,14130,2620082499,2244636736,100,100,100,100,5.91,5.87,4.43,4.74
-71463,22,003,22003,9919,3367,288439361,287039683,10801,3758,619080117,616768716,25764,9733,1983811365,1973174715,91.83,89.6,46.59,46.54,38.5,34.59,14.54,14.55
-71463,22,039,22039,441,217,258569885,257659704,10801,3758,619080117,616768716,33984,14662,1760217962,1715550341,4.08,5.77,41.77,41.78,1.3,1.48,14.69,15.02
-71463,22,079,22079,441,174,72070871,72069329,10801,3758,619080117,616768716,131613,55684,3526675994,3413506392,4.08,4.63,11.64,11.68,0.34,0.31,2.04,2.11
-71465,22,021,22021,96,32,34840536,34840536,3139,1471,588658834,588253373,10132,4994,1400481082,1371203807,3.06,2.18,5.92,5.92,0.95,0.64,2.49,2.54
-71465,22,025,22025,31,12,2675564,2675564,3139,1471,588658834,588253373,10407,4877,1915090508,1833789263,0.99,0.82,0.45,0.45,0.3,0.25,0.14,0.15
-71465,22,059,22059,2973,1377,450783647,450378186,3139,1471,588658834,588253373,14890,6560,1715590736,1617923154,94.71,93.61,76.58,76.56,19.97,20.99,26.28,27.84
-71465,22,127,22127,39,50,100359087,100359087,3139,1471,588658834,588253373,15313,7234,2478160113,2460712069,1.24,3.4,17.05,17.06,0.25,0.69,4.05,4.08
-71466,22,079,22079,591,236,22073920,22073920,591,236,22073920,22073920,131613,55684,3526675994,3413506392,100,100,100,100,0.45,0.42,0.63,0.65
-71467,22,043,22043,7978,2330,466646526,458968660,7998,2342,471555339,463756543,22309,8886,1721443632,1665428895,99.75,99.49,98.96,98.97,35.76,26.22,27.11,27.56
-71467,22,079,22079,20,12,4908813,4787883,7998,2342,471555339,463756543,131613,55684,3526675994,3413506392,0.25,0.51,1.04,1.03,0.02,0.02,0.14,0.14
-71468,22,069,22069,868,485,457437434,456343774,868,485,457437434,456343774,39566,18587,3364375586,3243311940,100,100,100,100,2.19,2.61,13.6,14.07
-71469,22,069,22069,2339,1129,530795503,528387661,2792,1332,608245204,605349165,39566,18587,3364375586,3243311940,83.78,84.76,87.27,87.29,5.91,6.07,15.78,16.29
-71469,22,085,22085,453,203,77449701,76961504,2792,1332,608245204,605349165,24233,14130,2620082499,2244636736,16.22,15.24,12.73,12.71,1.87,1.44,2.96,3.43
-71472,22,079,22079,287,137,51036387,51035660,287,137,51036387,51035660,131613,55684,3526675994,3413506392,100,100,100,100,0.22,0.25,1.45,1.5
-71473,22,127,22127,495,450,338181182,338112916,495,450,338181182,338112916,15313,7234,2478160113,2460712069,100,100,100,100,3.23,6.22,13.65,13.74
-71474,22,115,22115,663,310,59158757,59047767,663,310,59158757,59047767,52334,21433,3474429937,3439271369,100,100,100,100,1.27,1.45,1.7,1.72
-71479,22,059,22059,536,268,74921595,74656316,738,387,244970038,244688139,14890,6560,1715590736,1617923154,72.63,69.25,30.58,30.51,3.6,4.09,4.37,4.61
-71479,22,127,22127,202,119,170048443,170031823,738,387,244970038,244688139,15313,7234,2478160113,2460712069,27.37,30.75,69.42,69.49,1.32,1.65,6.86,6.91
-71480,22,059,22059,1324,323,13255386,13200854,1324,323,13255386,13200854,14890,6560,1715590736,1617923154,100,100,100,100,8.89,4.92,0.77,0.82
-71483,22,127,22127,11294,4871,962150585,951947461,11294,4871,962150585,951947461,15313,7234,2478160113,2460712069,100,100,100,100,73.75,67.33,38.83,38.69
-71485,22,079,22079,1804,782,167455440,162805140,1804,782,167455440,162805140,131613,55684,3526675994,3413506392,100,100,100,100,1.37,1.4,4.75,4.77
-71486,22,085,22085,4940,2855,267887244,262400307,4940,2855,267887244,262400307,24233,14130,2620082499,2244636736,100,100,100,100,20.39,20.21,10.22,11.69
-71601,05,069,05069,17327,7411,299958242,284800346,17327,7411,299958242,284800346,77435,33006,2366668316,2255220650,100,100,100,100,22.38,22.45,12.67,12.63
-71602,05,053,05053,245,106,64676846,64662111,17982,7630,316637649,300511240,17853,7758,1639281325,1636376859,1.36,1.39,20.43,21.52,1.37,1.37,3.95,3.95
-71602,05,069,05069,17737,7524,251960803,235849129,17982,7630,316637649,300511240,77435,33006,2366668316,2255220650,98.64,98.61,79.57,78.48,22.91,22.8,10.65,10.46
-71603,05,025,05025,90,42,24281492,24264714,34343,14760,460236398,459137476,8689,4064,1550752463,1548252069,0.26,0.28,5.28,5.28,1.04,1.03,1.57,1.57
-71603,05,053,05053,86,39,7734351,7734351,34343,14760,460236398,459137476,17853,7758,1639281325,1636376859,0.25,0.26,1.68,1.68,0.48,0.5,0.47,0.47
-71603,05,069,05069,33966,14594,398144701,397062557,34343,14760,460236398,459137476,77435,33006,2366668316,2255220650,98.9,98.88,86.51,86.48,43.86,44.22,16.82,17.61
-71603,05,079,05079,201,85,30075854,30075854,34343,14760,460236398,459137476,14134,4860,1481952165,1454321132,0.59,0.58,6.53,6.55,1.42,1.75,2.03,2.07
-71630,05,041,05041,405,247,104860116,89314615,405,247,104860116,89314615,13008,6261,2122562726,1989504302,100,100,100,100,3.11,3.95,4.94,4.49
-71631,05,011,05011,673,414,318841630,318841630,673,414,318841630,318841630,11508,5860,1691047343,1681500473,100,100,100,100,5.85,7.06,18.85,18.96
-71635,05,003,05003,12348,5803,586279080,560032086,12348,5803,586279080,560032086,21853,10137,2435952556,2396641905,100,100,100,100,56.5,57.25,24.07,23.37
-71638,05,017,05017,3146,1312,158617799,156235089,3794,1655,613316276,600925739,11800,5421,1789131790,1668740125,82.92,79.27,25.86,26,26.66,24.2,8.87,9.36
-71638,05,041,05041,91,47,44792012,44792012,3794,1655,613316276,600925739,13008,6261,2122562726,1989504302,2.4,2.84,7.3,7.45,0.7,0.75,2.11,2.25
-71638,05,043,05043,557,296,409906465,399898638,3794,1655,613316276,600925739,18509,8408,2164351989,2145431293,14.68,17.89,66.83,66.55,3.01,3.52,18.94,18.64
-71639,05,041,05041,5911,2697,287593097,276100126,6579,2992,483315199,470269974,13008,6261,2122562726,1989504302,89.85,90.14,59.5,58.71,45.44,43.08,13.55,13.88
-71639,05,079,05079,668,295,195722102,194169848,6579,2992,483315199,470269974,14134,4860,1481952165,1454321132,10.15,9.86,40.5,41.29,4.73,6.07,13.21,13.35
-71640,05,017,05017,3227,1494,534416298,507661790,3227,1494,534416298,507661790,11800,5421,1789131790,1668740125,100,100,100,100,27.35,27.56,29.87,30.42
-71642,05,003,05003,529,312,80033508,79831052,648,377,137952929,137750473,21853,10137,2435952556,2396641905,81.64,82.76,58.02,57.95,2.42,3.08,3.29,3.33
-71642,05,043,05043,119,65,57919421,57919421,648,377,137952929,137750473,18509,8408,2164351989,2145431293,18.36,17.24,41.98,42.05,0.64,0.77,2.68,2.7
-71643,05,079,05079,1109,599,296689764,281889192,1109,599,296689764,281889192,14134,4860,1481952165,1454321132,100,100,100,100,7.85,12.33,20.02,19.38
-71644,05,069,05069,153,89,55320293,53023755,4264,506,199287333,193581814,77435,33006,2366668316,2255220650,3.59,17.59,27.76,27.39,0.2,0.27,2.34,2.35
-71644,05,079,05079,4111,417,143967040,140558059,4264,506,199287333,193581814,14134,4860,1481952165,1454321132,96.41,82.41,72.24,72.61,29.09,8.58,9.71,9.66
-71646,05,003,05003,6657,2786,937549631,933779318,6756,2836,1015809924,1012039611,21853,10137,2435952556,2396641905,98.53,98.24,92.3,92.27,30.46,27.48,38.49,38.96
-71646,05,043,05043,99,50,78260293,78260293,6756,2836,1015809924,1012039611,18509,8408,2164351989,2145431293,1.47,1.76,7.7,7.73,0.53,0.59,3.62,3.65
-71647,05,011,05011,2111,1197,655278644,652475698,2111,1197,655278644,652475698,11508,5860,1691047343,1681500473,100,100,100,100,18.34,20.43,38.75,38.8
-71651,05,011,05011,150,163,222457572,217884798,150,163,222457572,217884798,11508,5860,1691047343,1681500473,100,100,100,100,1.3,2.78,13.16,12.96
-71652,05,025,05025,1159,628,433747699,433409340,1159,628,433747699,433409340,8689,4064,1550752463,1548252069,100,100,100,100,13.34,15.45,27.97,27.99
-71653,05,017,05017,5152,2502,907058900,816710428,5152,2502,907058900,816710428,11800,5421,1789131790,1668740125,100,100,100,100,43.66,46.15,50.7,48.94
-71654,05,041,05041,4671,2242,186208689,182932289,4671,2242,186208689,182932289,13008,6261,2122562726,1989504302,100,100,100,100,35.91,35.81,8.77,9.19
-71655,05,043,05043,15373,6838,932640217,930016728,15387,6845,939081891,936458402,18509,8408,2164351989,2145431293,99.91,99.9,99.31,99.31,83.06,81.33,43.09,43.35
-71655,05,079,05079,14,7,6441674,6441674,15387,6845,939081891,936458402,14134,4860,1481952165,1454321132,0.09,0.1,0.69,0.69,0.1,0.14,0.43,0.44
-71658,05,003,05003,728,334,296998526,291843640,728,334,296998526,291843640,21853,10137,2435952556,2396641905,100,100,100,100,3.33,3.29,12.19,12.18
-71659,05,069,05069,104,62,5775702,5775702,104,62,5775702,5775702,77435,33006,2366668316,2255220650,100,100,100,100,0.13,0.19,0.24,0.26
-71660,05,011,05011,5,3,1120250,1120250,963,521,312131982,311623481,11508,5860,1691047343,1681500473,0.52,0.58,0.36,0.36,0.04,0.05,0.07,0.07
-71660,05,025,05025,958,518,311011732,310503231,963,521,312131982,311623481,8689,4064,1550752463,1548252069,99.48,99.42,99.64,99.64,11.03,12.75,20.06,20.06
-71661,05,003,05003,432,222,226028037,225032049,450,230,247680250,246684262,21853,10137,2435952556,2396641905,96,96.52,91.26,91.22,1.98,2.19,9.28,9.39
-71661,05,017,05017,18,8,21652213,21652213,450,230,247680250,246684262,11800,5421,1789131790,1668740125,4,3.48,8.74,8.78,0.15,0.15,1.21,1.3
-71662,05,041,05041,82,49,28330047,26964536,82,49,28330047,26964536,13008,6261,2122562726,1989504302,100,100,100,100,0.63,0.78,1.33,1.36
-71663,05,003,05003,485,249,74987397,74705511,732,347,201014817,200017156,21853,10137,2435952556,2396641905,66.26,71.76,37.3,37.35,2.22,2.46,3.08,3.12
-71663,05,017,05017,247,98,126027420,125311645,732,347,201014817,200017156,11800,5421,1789131790,1668740125,33.74,28.24,62.7,62.65,2.09,1.81,7.04,7.51
-71665,05,025,05025,6054,2686,731022636,729409419,6054,2686,731022636,729409419,8689,4064,1550752463,1548252069,100,100,100,100,69.67,66.09,47.14,47.11
-71666,05,041,05041,79,41,6635245,6635245,79,41,6635245,6635245,13008,6261,2122562726,1989504302,100,100,100,100,0.61,0.65,0.31,0.33
-71667,05,025,05025,236,104,32144967,32144967,8267,3561,817826165,814975442,8689,4064,1550752463,1548252069,2.85,2.92,3.93,3.94,2.72,2.56,2.07,2.08
-71667,05,079,05079,8031,3457,785681198,782830475,8267,3561,817826165,814975442,14134,4860,1481952165,1454321132,97.15,97.08,96.07,96.06,56.82,71.13,53.02,53.83
-71670,05,041,05041,955,475,390240644,376579128,1403,698,547618774,528960269,13008,6261,2122562726,1989504302,68.07,68.05,71.26,71.19,7.34,7.59,18.39,18.93
-71670,05,043,05043,448,223,157378130,152381141,1403,698,547618774,528960269,18509,8408,2164351989,2145431293,31.93,31.95,28.74,28.81,2.42,2.65,7.27,7.1
-71671,05,011,05011,8463,4023,446835385,445345276,8665,4115,479462451,477907491,11508,5860,1691047343,1681500473,97.67,97.76,93.2,93.19,73.54,68.65,26.42,26.48
-71671,05,025,05025,192,86,18543937,18520398,8665,4115,479462451,477907491,8689,4064,1550752463,1548252069,2.22,2.09,3.87,3.88,2.21,2.12,1.2,1.2
-71671,05,043,05043,10,6,14083129,14041817,8665,4115,479462451,477907491,18509,8408,2164351989,2145431293,0.12,0.15,2.94,2.94,0.05,0.07,0.65,0.65
-71674,05,041,05041,738,392,675159634,630299262,738,392,675159634,630299262,13008,6261,2122562726,1989504302,100,100,100,100,5.67,6.26,31.81,31.68
-71675,05,011,05011,106,60,46513862,45832821,1824,896,440416835,438817474,11508,5860,1691047343,1681500473,5.81,6.7,10.56,10.44,0.92,1.02,2.75,2.73
-71675,05,043,05043,1718,836,393902973,392984653,1824,896,440416835,438817474,18509,8408,2164351989,2145431293,94.19,93.3,89.44,89.56,9.28,9.94,18.2,18.32
-71676,05,003,05003,674,431,234076377,231418249,684,438,275435537,272587209,21853,10137,2435952556,2396641905,98.54,98.4,84.98,84.9,3.08,4.25,9.61,9.66
-71676,05,017,05017,10,7,41359160,41168960,684,438,275435537,272587209,11800,5421,1789131790,1668740125,1.46,1.6,15.02,15.1,0.08,0.13,2.31,2.47
-71677,05,043,05043,185,92,20593081,20260322,185,92,20593081,20260322,18509,8408,2164351989,2145431293,100,100,100,100,1,1.09,0.95,0.94
-71701,05,013,05013,499,254,113811139,112549915,20286,9877,746891808,740326302,5368,2897,1637943293,1628017155,2.46,2.57,15.24,15.2,9.3,8.77,6.95,6.91
-71701,05,103,05103,19787,9623,633080669,627776387,20286,9877,746891808,740326302,26120,13121,1915950407,1897899921,97.54,97.43,84.76,84.8,75.75,73.34,33.04,33.08
-71711,05,013,05013,106,26,6024084,6024084,106,26,6024084,6024084,5368,2897,1637943293,1628017155,100,100,100,100,1.97,0.9,0.37,0.37
-71720,05,013,05013,75,34,22995685,22995685,2498,1302,387075057,386885278,5368,2897,1637943293,1628017155,3,2.61,5.94,5.94,1.4,1.17,1.4,1.41
-71720,05,039,05039,152,113,139372008,139358489,2498,1302,387075057,386885278,8116,4305,1730386990,1728522942,6.08,8.68,36.01,36.02,1.87,2.62,8.05,8.06
-71720,05,103,05103,2271,1155,224707364,224531104,2498,1302,387075057,386885278,26120,13121,1915950407,1897899921,90.91,88.71,58.05,58.04,8.69,8.8,11.73,11.83
-71722,05,099,05099,87,65,46690748,46465059,87,65,46690748,46465059,8997,4563,1607447399,1600189595,100,100,100,100,0.97,1.42,2.9,2.9
-71724,05,139,05139,431,261,5138968,3061393,431,261,5138968,3061393,41639,19653,2732954289,2691552718,100,100,100,100,1.04,1.33,0.19,0.11
-71725,05,039,05039,555,365,370016103,369977818,555,365,370016103,369977818,8116,4305,1730386990,1728522942,100,100,100,100,6.84,8.48,21.38,21.4
-71726,05,103,05103,1435,983,510309064,500159796,1435,983,510309064,500159796,26120,13121,1915950407,1897899921,100,100,100,100,5.49,7.49,26.63,26.35
-71730,05,139,05139,32213,14828,1188685058,1183678699,32213,14828,1188685058,1183678699,41639,19653,2732954289,2691552718,100,100,100,100,77.36,75.45,43.49,43.98
-71740,05,027,05027,1735,878,478093737,477858862,1735,878,478093737,477858862,24552,11596,1985880492,1984066985,100,100,100,100,7.07,7.57,24.07,24.08
-71742,05,013,05013,530,215,128901445,127731848,5980,2789,473818623,472520969,5368,2897,1637943293,1628017155,8.86,7.71,27.2,27.03,9.87,7.42,7.87,7.85
-71742,05,039,05039,5450,2574,344917178,344789121,5980,2789,473818623,472520969,8116,4305,1730386990,1728522942,91.14,92.29,72.8,72.97,67.15,59.79,19.93,19.95
-71743,05,019,05019,4090,2086,535123473,534525148,4090,2086,535123473,534525148,22995,10385,2286517929,2243121932,100,100,100,100,17.79,20.09,23.4,23.83
-71744,05,013,05013,3224,1849,1040419118,1033619295,3224,1849,1040419118,1033619295,5368,2897,1637943293,1628017155,100,100,100,100,60.06,63.82,63.52,63.49
-71745,05,013,05013,264,146,3872185,3872185,264,146,3872185,3872185,5368,2897,1637943293,1628017155,100,100,100,100,4.92,5.04,0.24,0.24
-71747,05,139,05139,1097,752,228383463,207500126,1097,752,228383463,207500126,41639,19653,2732954289,2691552718,100,100,100,100,2.63,3.83,8.36,7.71
-71749,05,139,05139,2115,964,413457385,413255011,2595,1205,428056344,427853970,41639,19653,2732954289,2691552718,81.5,80,96.59,96.59,5.08,4.91,15.13,15.35
-71749,22,027,22027,142,66,10626840,10626840,2595,1205,428056344,427853970,17195,7761,1987599136,1955125902,5.47,5.48,2.48,2.48,0.83,0.85,0.53,0.54
-71749,22,111,22111,338,175,3972119,3972119,2595,1205,428056344,427853970,22721,11346,2344983874,2271389460,13.03,14.52,0.93,0.93,1.49,1.54,0.17,0.17
-71751,05,103,05103,939,481,204964938,203218332,939,481,204964938,203218332,26120,13121,1915950407,1897899921,100,100,100,100,3.59,3.67,10.7,10.71
-71752,05,027,05027,1052,562,98754321,98476700,1052,562,98754321,98476700,24552,11596,1985880492,1984066985,100,100,100,100,4.28,4.85,4.97,4.96
-71753,05,027,05027,16662,7693,788664744,787800077,16848,7786,825698617,824833950,24552,11596,1985880492,1984066985,98.9,98.81,95.51,95.51,67.86,66.34,39.71,39.71
-71753,05,139,05139,186,93,37033873,37033873,16848,7786,825698617,824833950,41639,19653,2732954289,2691552718,1.1,1.19,4.49,4.49,0.45,0.47,1.36,1.38
-71758,05,139,05139,450,232,180091386,179904526,450,232,180091386,179904526,41639,19653,2732954289,2691552718,100,100,100,100,1.08,1.18,6.59,6.68
-71759,05,139,05139,600,250,16406587,16406587,600,250,16406587,16406587,41639,19653,2732954289,2691552718,100,100,100,100,1.44,1.27,0.6,0.61
-71762,05,103,05103,110,42,10849214,10849214,2501,1159,148224751,147979544,26120,13121,1915950407,1897899921,4.4,3.62,7.32,7.33,0.42,0.32,0.57,0.57
-71762,05,139,05139,2391,1117,137375537,137130330,2501,1159,148224751,147979544,41639,19653,2732954289,2691552718,95.6,96.38,92.68,92.67,5.74,5.68,5.03,5.09
-71763,05,039,05039,1628,978,554248136,552590541,1666,997,585784047,583728150,8116,4305,1730386990,1728522942,97.72,98.09,94.62,94.67,20.06,22.72,32.03,31.97
-71763,05,103,05103,38,19,31535911,31137609,1666,997,585784047,583728150,26120,13121,1915950407,1897899921,2.28,1.91,5.38,5.33,0.15,0.14,1.65,1.64
-71764,05,027,05027,307,174,105207658,105136232,1880,1018,474218840,473845523,24552,11596,1985880492,1984066985,16.33,17.09,22.19,22.19,1.25,1.5,5.3,5.3
-71764,05,099,05099,33,26,68507935,68481812,1880,1018,474218840,473845523,8997,4563,1607447399,1600189595,1.76,2.55,14.45,14.45,0.37,0.57,4.26,4.28
-71764,05,103,05103,1540,818,300503247,300227479,1880,1018,474218840,473845523,26120,13121,1915950407,1897899921,81.91,80.35,63.37,63.36,5.9,6.23,15.68,15.82
-71765,05,139,05139,2156,1156,526382032,513582173,2156,1156,526382032,513582173,41639,19653,2732954289,2691552718,100,100,100,100,5.18,5.88,19.26,19.08
-71766,05,013,05013,670,372,189289152,188964734,670,372,189289152,188964734,5368,2897,1637943293,1628017155,100,100,100,100,12.48,12.84,11.56,11.61
-71770,05,027,05027,3218,1599,280777688,280418714,3526,1779,383164153,382617502,24552,11596,1985880492,1984066985,91.26,89.88,73.28,73.29,13.11,13.79,14.14,14.13
-71770,05,099,05099,308,180,102386465,102198788,3526,1779,383164153,382617502,8997,4563,1607447399,1600189595,8.74,10.12,26.72,26.71,3.42,3.94,6.37,6.39
-71772,05,019,05019,34,19,324701,324701,34,19,324701,324701,22995,10385,2286517929,2243121932,100,100,100,100,0.15,0.18,0.01,0.01
-71801,05,057,05057,16745,7347,787872827,781719178,16745,7347,787872827,781719178,22609,10419,1919640200,1884267810,100,100,100,100,74.06,70.52,41.04,41.49
-71820,05,081,05081,103,64,50250392,49328299,103,64,50250392,49328299,13171,6460,1462737327,1378529805,100,100,100,100,0.78,0.99,3.44,3.58
-71822,05,081,05081,8925,4230,673925401,658085461,8925,4230,673925401,658085461,13171,6460,1462737327,1378529805,100,100,100,100,67.76,65.48,46.07,47.74
-71823,05,133,05133,83,41,25275235,23569620,83,41,25275235,23569620,17058,6887,1505501414,1463670417,100,100,100,100,0.49,0.6,1.68,1.61
-71825,05,057,05057,645,275,63626646,63388996,645,275,63626646,63388996,22609,10419,1919640200,1884267810,100,100,100,100,2.85,2.64,3.31,3.36
-71826,05,073,05073,1315,615,341637043,331004405,1315,615,341637043,331004405,7645,4353,1411747691,1368208312,100,100,100,100,17.2,14.13,24.2,24.19
-71827,05,073,05073,648,320,90185606,89923395,817,429,148944838,148496309,7645,4353,1411747691,1368208312,79.31,74.59,60.55,60.56,8.48,7.35,6.39,6.57
-71827,05,099,05099,169,109,58759232,58572914,817,429,148944838,148496309,8997,4563,1607447399,1600189595,20.69,25.41,39.45,39.44,1.88,2.39,3.66,3.66
-71832,05,133,05133,11253,4145,460725494,457377248,11253,4145,460725494,457377248,17058,6887,1505501414,1463670417,100,100,100,100,65.97,60.19,30.6,31.25
-71833,05,061,05061,2268,1050,345368915,344175168,2280,1058,413729415,412220499,13789,6238,1541856111,1524346632,99.47,99.24,83.48,83.49,16.45,16.83,22.4,22.58
-71833,05,133,05133,12,8,68360500,68045331,2280,1058,413729415,412220499,17058,6887,1505501414,1463670417,0.53,0.76,16.52,16.51,0.07,0.12,4.54,4.65
-71834,05,091,05091,1491,774,391097123,385045777,1491,774,391097123,385045777,43462,19281,1651503576,1620239736,100,100,100,100,3.43,4.01,23.68,23.76
-71835,05,057,05057,248,120,35614283,35477560,1334,650,213823122,212975550,22609,10419,1919640200,1884267810,18.59,18.46,16.66,16.66,1.1,1.15,1.86,1.88
-71835,05,099,05099,1086,530,178208839,177497990,1334,650,213823122,212975550,8997,4563,1607447399,1600189595,81.41,81.54,83.34,83.34,12.07,11.62,11.09,11.09
-71836,05,081,05081,2856,1411,447170312,438410593,2856,1411,447170312,438410593,13171,6460,1462737327,1378529805,100,100,100,100,21.68,21.84,30.57,31.8
-71837,05,091,05091,5227,2107,417919184,411959416,5227,2107,417919184,411959416,43462,19281,1651503576,1620239736,100,100,100,100,12.03,10.93,25.31,25.43
-71838,05,057,05057,1148,637,339531739,330959164,1148,637,339531739,330959164,22609,10419,1919640200,1884267810,100,100,100,100,5.08,6.11,17.69,17.56
-71839,05,091,05091,280,216,104997438,100476426,280,216,104997438,100476426,43462,19281,1651503576,1620239736,100,100,100,100,0.64,1.12,6.36,6.2
-71841,05,113,05113,93,47,19048526,18966110,913,434,179582005,178574545,20662,10002,2233765433,2221377955,10.19,10.83,10.61,10.62,0.45,0.47,0.85,0.85
-71841,05,133,05133,820,387,160533479,159608435,913,434,179582005,178574545,17058,6887,1505501414,1463670417,89.81,89.17,89.39,89.38,4.81,5.62,10.66,10.9
-71842,05,133,05133,2241,931,201920089,199633718,2241,931,201920089,199633718,17058,6887,1505501414,1463670417,100,100,100,100,13.14,13.52,13.41,13.64
-71845,05,073,05073,2387,1214,561561207,545715211,2387,1214,561561207,545715211,7645,4353,1411747691,1368208312,100,100,100,100,31.22,27.89,39.78,39.89
-71846,05,081,05081,3,4,4080420,4080420,2652,1379,592767037,559516485,13171,6460,1462737327,1378529805,0.11,0.29,0.69,0.73,0.02,0.06,0.28,0.3
-71846,05,133,05133,2649,1375,588686617,555436065,2652,1379,592767037,559516485,17058,6887,1505501414,1463670417,99.89,99.71,99.31,99.27,15.53,19.97,39.1,37.95
-71847,05,057,05057,673,329,148569590,148315042,673,329,148569590,148315042,22609,10419,1919640200,1884267810,100,100,100,100,2.98,3.16,7.74,7.87
-71851,05,061,05061,2241,1089,226185507,218288779,2241,1089,226185507,218288779,13789,6238,1541856111,1524346632,100,100,100,100,16.25,17.46,14.67,14.32
-71852,05,057,05057,1083,524,120483796,120228724,10102,4504,704422504,701724770,22609,10419,1919640200,1884267810,10.72,11.63,17.1,17.13,4.79,5.03,6.28,6.38
-71852,05,061,05061,8340,3638,437668236,436424604,10102,4504,704422504,701724770,13789,6238,1541856111,1524346632,82.56,80.77,62.13,62.19,60.48,58.32,28.39,28.63
-71852,05,109,05109,679,342,146270472,145071442,10102,4504,704422504,701724770,11291,5580,1590588325,1555592368,6.72,7.59,20.76,20.67,6.01,6.13,9.2,9.33
-71853,05,081,05081,365,189,89771646,81660907,365,189,89771646,81660907,13171,6460,1462737327,1378529805,100,100,100,100,2.77,2.93,6.14,5.92
-71854,05,091,05091,36438,16175,735921479,721189765,36438,16175,735921479,721189765,43462,19281,1651503576,1620239736,100,100,100,100,83.84,83.89,44.56,44.51
-71855,05,057,05057,708,387,142790406,142277764,708,387,142790406,142277764,22609,10419,1919640200,1884267810,100,100,100,100,3.13,3.71,7.44,7.55
-71857,05,057,05057,308,149,78092690,77672238,5894,2850,703452930,698296926,22609,10419,1919640200,1884267810,5.23,5.23,11.1,11.12,1.36,1.43,4.07,4.12
-71857,05,099,05099,5586,2701,625360240,620624688,5894,2850,703452930,698296926,8997,4563,1607447399,1600189595,94.77,94.77,88.9,88.88,62.09,59.19,38.9,38.78
-71858,05,099,05099,1710,942,519469086,518283490,1710,942,519469086,518283490,8997,4563,1607447399,1600189595,100,100,100,100,19.01,20.64,32.32,32.39
-71859,05,057,05057,280,231,35198135,16411231,477,335,79697150,55922918,22609,10419,1919640200,1884267810,58.7,68.96,44.16,29.35,1.24,2.22,1.83,0.87
-71859,05,061,05061,197,104,44499015,39511687,477,335,79697150,55922918,13789,6238,1541856111,1524346632,41.3,31.04,55.84,70.65,1.43,1.67,2.89,2.59
-71860,05,027,05027,190,93,64804549,64804549,2633,1422,282964613,281914578,24552,11596,1985880492,1984066985,7.22,6.54,22.9,22.99,0.77,0.8,3.26,3.27
-71860,05,073,05073,2425,1319,210095210,209045175,2633,1422,282964613,281914578,7645,4353,1411747691,1368208312,92.1,92.76,74.25,74.15,31.72,30.3,14.88,15.28
-71860,05,099,05099,18,10,8064854,8064854,2633,1422,282964613,281914578,8997,4563,1607447399,1600189595,0.68,0.7,2.85,2.86,0.2,0.22,0.5,0.5
-71861,05,027,05027,1388,597,169577795,169571851,2258,1482,377846420,362091977,24552,11596,1985880492,1984066985,61.47,40.28,44.88,46.83,5.65,5.15,8.54,8.55
-71861,05,073,05073,870,885,208268625,192520126,2258,1482,377846420,362091977,7645,4353,1411747691,1368208312,38.53,59.72,55.12,53.17,11.38,20.33,14.75,14.07
-71862,05,057,05057,771,420,167860088,167817913,771,420,167860088,167817913,22609,10419,1919640200,1884267810,100,100,100,100,3.41,4.03,8.74,8.91
-71865,05,081,05081,194,105,1577227,1577227,194,105,1577227,1577227,13171,6460,1462737327,1378529805,100,100,100,100,1.47,1.63,0.11,0.11
-71866,05,081,05081,725,457,116350923,114615715,725,457,116350923,114615715,13171,6460,1462737327,1378529805,100,100,100,100,5.5,7.07,7.95,8.31
-71901,05,051,05051,29432,14342,269826230,265948977,29491,14385,271362770,267404865,96024,50548,1902658826,1755444878,99.8,99.7,99.43,99.46,30.65,28.37,14.18,15.15
-71901,05,059,05059,59,43,1536540,1455888,29491,14385,271362770,267404865,32923,14332,1611419994,1593367055,0.2,0.3,0.57,0.54,0.18,0.3,0.1,0.09
-71909,05,051,05051,10095,5925,158971515,155432375,15508,9128,217515560,209958141,96024,50548,1902658826,1755444878,65.1,64.91,73.09,74.03,10.51,11.72,8.36,8.85
-71909,05,125,05125,5413,3203,58544045,54525766,15508,9128,217515560,209958141,107118,44811,1891960390,1874124567,34.9,35.09,26.91,25.97,5.05,7.15,3.09,2.91
-71913,05,051,05051,42714,23558,279705563,254347188,43436,23942,354662731,328138040,96024,50548,1902658826,1755444878,98.34,98.4,78.87,77.51,44.48,46.61,14.7,14.49
-71913,05,059,05059,722,384,74957168,73790852,43436,23942,354662731,328138040,32923,14332,1611419994,1593367055,1.66,1.6,21.13,22.49,2.19,2.68,4.65,4.63
-71921,05,019,05019,1997,987,400232451,379690545,3652,1690,536741625,512935854,22995,10385,2286517929,2243121932,54.68,58.4,74.57,74.02,8.68,9.5,17.5,16.93
-71921,05,059,05059,324,171,42754600,39835855,3652,1690,536741625,512935854,32923,14332,1611419994,1593367055,8.87,10.12,7.97,7.77,0.98,1.19,2.65,2.5
-71921,05,109,05109,1331,532,93754574,93409454,3652,1690,536741625,512935854,11291,5580,1590588325,1555592368,36.45,31.48,17.47,18.21,11.79,9.53,5.89,6
-71922,05,109,05109,129,78,5513909,5386764,129,78,5513909,5386764,11291,5580,1590588325,1555592368,100,100,100,100,1.14,1.4,0.35,0.35
-71923,05,019,05019,15055,6808,921557481,899515315,15637,7078,1046893578,1024218420,22995,10385,2286517929,2243121932,96.28,96.19,88.03,87.82,65.47,65.56,40.3,40.1
-71923,05,039,05039,80,53,58848381,58838897,15637,7078,1046893578,1024218420,8116,4305,1730386990,1728522942,0.51,0.75,5.62,5.74,0.99,1.23,3.4,3.4
-71923,05,059,05059,502,217,66487716,65864208,15637,7078,1046893578,1024218420,32923,14332,1611419994,1593367055,3.21,3.07,6.35,6.43,1.52,1.51,4.13,4.13
-71929,05,059,05059,4487,2121,254528941,247239923,4487,2121,254528941,247239923,32923,14332,1611419994,1593367055,100,100,100,100,13.63,14.8,15.8,15.52
-71933,05,051,05051,730,333,74148158,74148158,1616,754,246641879,246451419,96024,50548,1902658826,1755444878,45.17,44.16,30.06,30.09,0.76,0.66,3.9,4.22
-71933,05,059,05059,518,250,59302820,59302820,1616,754,246641879,246451419,32923,14332,1611419994,1593367055,32.05,33.16,24.04,24.06,1.57,1.74,3.68,3.72
-71933,05,097,05097,368,171,113190901,113000441,1616,754,246641879,246451419,9487,5763,2072739706,2019879948,22.77,22.68,45.89,45.85,3.88,2.97,5.46,5.59
-71935,05,097,05097,808,437,304579929,303317760,808,437,304579929,303317760,9487,5763,2072739706,2019879948,100,100,100,100,8.52,7.58,14.69,15.02
-71937,05,113,05113,2026,997,181931616,180762517,2026,997,181931616,180762517,20662,10002,2233765433,2221377955,100,100,100,100,9.81,9.97,8.14,8.14
-71940,05,109,05109,1652,849,281329862,279541043,1652,849,281329862,279541043,11291,5580,1590588325,1555592368,100,100,100,100,14.63,15.22,17.69,17.97
-71941,05,059,05059,2098,969,194781376,193987317,2098,969,194781376,193987317,32923,14332,1611419994,1593367055,100,100,100,100,6.37,6.76,12.09,12.17
-71943,05,059,05059,139,57,7485428,7485428,4821,2079,292038825,290590708,32923,14332,1611419994,1593367055,2.88,2.74,2.56,2.58,0.42,0.4,0.46,0.47
-71943,05,097,05097,1309,534,101850722,101222236,4821,2079,292038825,290590708,9487,5763,2072739706,2019879948,27.15,25.69,34.88,34.83,13.8,9.27,4.91,5.01
-71943,05,109,05109,3373,1488,182702675,181883044,4821,2079,292038825,290590708,11291,5580,1590588325,1555592368,69.96,71.57,62.56,62.59,29.87,26.67,11.49,11.69
-71944,05,113,05113,773,358,109560187,109016925,773,358,109560187,109016925,20662,10002,2233765433,2221377955,100,100,100,100,3.74,3.58,4.9,4.91
-71945,05,113,05113,1437,674,186731278,185579356,1437,674,186731278,185579356,20662,10002,2233765433,2221377955,100,100,100,100,6.95,6.74,8.36,8.35
-71949,05,051,05051,1989,1310,610340315,538549529,1989,1310,610340315,538549529,96024,50548,1902658826,1755444878,100,100,100,100,2.07,2.59,32.08,30.68
-71950,05,109,05109,875,584,98907083,95656694,875,584,98907083,95656694,11291,5580,1590588325,1555592368,100,100,100,100,7.75,10.47,6.22,6.15
-71952,05,109,05109,145,75,68606848,68113868,145,75,68606848,68113868,11291,5580,1590588325,1555592368,100,100,100,100,1.28,1.34,4.31,4.38
-71953,05,113,05113,14658,7210,1307803494,1300206060,14882,7339,1663887208,1655657531,20662,10002,2233765433,2221377955,98.49,98.24,78.6,78.53,70.94,72.09,58.55,58.53
-71953,05,127,05127,224,129,356083714,355451471,14882,7339,1663887208,1655657531,11233,5193,2325999487,2311098364,1.51,1.76,21.4,21.47,1.99,2.48,15.31,15.38
-71956,05,051,05051,1882,889,65554466,60054189,1882,889,65554466,60054189,96024,50548,1902658826,1755444878,100,100,100,100,1.96,1.76,3.45,3.42
-71957,05,097,05097,3133,2419,396239311,362438860,3133,2419,396239311,362438860,9487,5763,2072739706,2019879948,100,100,100,100,33.02,41.97,19.12,17.94
-71958,05,109,05109,2525,1299,288225957,278736292,2525,1299,288225957,278736292,11291,5580,1590588325,1555592368,100,100,100,100,22.36,23.28,18.12,17.92
-71959,05,061,05061,269,124,88677760,88658085,754,398,159150117,158572766,13789,6238,1541856111,1524346632,35.68,31.16,55.72,55.91,1.95,1.99,5.75,5.82
-71959,05,109,05109,485,274,70472357,69914681,754,398,159150117,158572766,11291,5580,1590588325,1555592368,64.32,68.84,44.28,44.09,4.3,4.91,4.43,4.49
-71960,05,097,05097,1383,750,393113106,392660054,1383,750,393113106,392660054,9487,5763,2072739706,2019879948,100,100,100,100,14.58,13.01,18.97,19.44
-71961,05,097,05097,1003,509,227933913,226104469,1003,509,227933913,226104469,9487,5763,2072739706,2019879948,100,100,100,100,10.57,8.83,11,11.19
-71962,05,019,05019,792,469,429026457,428812857,792,469,429026457,428812857,22995,10385,2286517929,2243121932,100,100,100,100,3.44,4.52,18.76,19.12
-71964,05,051,05051,3651,1509,74333692,74212165,3926,1621,89296971,89175444,96024,50548,1902658826,1755444878,93,93.09,83.24,83.22,3.8,2.99,3.91,4.23
-71964,05,059,05059,275,112,14963279,14963279,3926,1621,89296971,89175444,32923,14332,1611419994,1593367055,7,6.91,16.76,16.78,0.84,0.78,0.93,0.94
-71965,05,097,05097,315,168,56893491,56503052,315,168,56893491,56503052,9487,5763,2072739706,2019879948,100,100,100,100,3.32,2.92,2.74,2.8
-71968,05,051,05051,4717,2345,291564198,254537608,4717,2345,291564198,254537608,96024,50548,1902658826,1755444878,100,100,100,100,4.91,4.64,15.32,14.5
-71969,05,097,05097,376,210,86858618,85824440,376,210,86858618,85824440,9487,5763,2072739706,2019879948,100,100,100,100,3.96,3.64,4.19,4.25
-71970,05,097,05097,792,565,213081036,199880647,792,565,213081036,199880647,9487,5763,2072739706,2019879948,100,100,100,100,8.35,9.8,10.28,9.9
-71971,05,061,05061,416,203,147194796,147085263,513,249,171761360,171548123,13789,6238,1541856111,1524346632,81.09,81.53,85.7,85.74,3.02,3.25,9.55,9.65
-71971,05,109,05109,97,46,24566564,24462860,513,249,171761360,171548123,11291,5580,1590588325,1555592368,18.91,18.47,14.3,14.26,0.86,0.82,1.54,1.57
-71972,05,113,05113,309,150,76163766,75791388,309,150,76163766,75791388,20662,10002,2233765433,2221377955,100,100,100,100,1.5,1.5,3.41,3.41
-71973,05,061,05061,58,28,55390798,54583406,1424,590,205545046,204280327,13789,6238,1541856111,1524346632,4.07,4.75,26.95,26.72,0.42,0.45,3.59,3.58
-71973,05,113,05113,1366,562,150154248,149696921,1424,590,205545046,204280327,20662,10002,2233765433,2221377955,95.93,95.25,73.05,73.28,6.61,5.62,6.72,6.74
-71998,05,019,05019,321,16,93590,93590,321,16,93590,93590,22995,10385,2286517929,2243121932,100,100,100,100,1.4,0.15,0,0
-71999,05,019,05019,706,0,159776,159776,706,0,159776,159776,22995,10385,2286517929,2243121932,100,0,100,100,3.07,0,0.01,0.01
-72001,05,029,05029,124,58,26335178,26215107,566,250,65952963,65798778,21273,9720,1467662405,1430319825,21.91,23.2,39.93,39.84,0.58,0.6,1.79,1.83
-72001,05,105,05105,442,192,39617785,39583671,566,250,65952963,65798778,10445,4907,1451774522,1428125735,78.09,76.8,60.07,60.16,4.23,3.91,2.73,2.77
-72002,05,119,05119,816,361,7072310,7003677,14134,5717,150547000,148711648,382748,175555,2091839108,1967777404,5.77,6.31,4.7,4.71,0.21,0.21,0.34,0.36
-72002,05,125,05125,13318,5356,143474690,141707971,14134,5717,150547000,148711648,107118,44811,1891960390,1874124567,94.23,93.69,95.3,95.29,12.43,11.95,7.58,7.56
-72003,05,001,05001,746,378,265429421,258220595,746,378,265429421,258220595,19019,9436,2677398120,2560902522,100,100,100,100,3.92,4.01,9.91,10.08
-72004,05,069,05069,1311,629,435161013,405782228,1311,629,435161013,405782228,77435,33006,2366668316,2255220650,100,100,100,100,1.69,1.91,18.39,17.99
-72005,05,067,05067,248,116,53498291,52906865,248,116,53498291,52906865,17997,7601,1661480593,1641892684,100,100,100,100,1.38,1.53,3.22,3.22
-72006,05,147,05147,2603,1418,510595466,497172506,2603,1418,510595466,497172506,7260,3893,1538488738,1519780744,100,100,100,100,35.85,36.42,33.19,32.71
-72007,05,085,05085,6708,2601,113955680,113509311,6708,2601,113955680,113509311,68356,27239,2079347213,1996176993,100,100,100,100,9.81,9.55,5.48,5.69
-72010,05,145,05145,6577,2884,354648153,351812230,6577,2884,354648153,351812230,77076,32488,2699143661,2680832626,100,100,100,100,8.53,8.88,13.14,13.12
-72011,05,125,05125,4074,1551,148316613,145922716,4074,1551,148316613,145922716,107118,44811,1891960390,1874124567,100,100,100,100,3.8,3.46,7.84,7.79
-72012,05,145,05145,11986,4923,236992004,236409561,11986,4923,236992004,236409561,77076,32488,2699143661,2680832626,100,100,100,100,15.55,15.15,8.78,8.82
-72013,05,029,05029,113,55,21047351,21028849,2197,1098,257836425,253336103,21273,9720,1467662405,1430319825,5.14,5.01,8.16,8.3,0.53,0.57,1.43,1.47
-72013,05,141,05141,2084,1043,236789074,232307254,2197,1098,257836425,253336103,17295,10345,1875888077,1834082139,94.86,94.99,91.84,91.7,12.05,10.08,12.62,12.67
-72014,05,067,05067,60,37,1540375,1540375,60,37,1540375,1540375,17997,7601,1661480593,1641892684,100,100,100,100,0.33,0.49,0.09,0.09
-72015,05,053,05053,542,249,52889855,52694561,27307,11259,212781149,212052834,17853,7758,1639281325,1636376859,1.98,2.21,24.86,24.85,3.04,3.21,3.23,3.22
-72015,05,125,05125,26765,11010,159891294,159358273,27307,11259,212781149,212052834,107118,44811,1891960390,1874124567,98.02,97.79,75.14,75.15,24.99,24.57,8.45,8.5
-72016,05,105,05105,2855,1174,159718128,151836977,3268,1359,227244951,210416985,10445,4907,1451774522,1428125735,87.36,86.39,70.28,72.16,27.33,23.93,11,10.63
-72016,05,119,05119,413,185,67526823,58580008,3268,1359,227244951,210416985,382748,175555,2091839108,1967777404,12.64,13.61,29.72,27.84,0.11,0.11,3.23,2.98
-72017,05,117,05117,726,413,135284837,130734045,726,413,135284837,130734045,8715,4503,1749832531,1678203880,100,100,100,100,8.33,9.17,7.73,7.79
-72019,05,125,05125,23346,9391,427730375,426358828,23346,9391,427730375,426358828,107118,44811,1891960390,1874124567,100,100,100,100,21.79,20.96,22.61,22.75
-72020,05,063,05063,434,204,75925256,75860287,4295,1972,453585573,447642189,36647,16187,1998222877,1978628920,10.1,10.34,16.74,16.95,1.18,1.26,3.8,3.83
-72020,05,067,05067,1876,795,213416764,210985777,4295,1972,453585573,447642189,17997,7601,1661480593,1641892684,43.68,40.31,47.05,47.13,10.42,10.46,12.84,12.85
-72020,05,145,05145,1985,973,164243553,160796125,4295,1972,453585573,447642189,77076,32488,2699143661,2680832626,46.22,49.34,36.21,35.92,2.58,2.99,6.09,6
-72021,05,095,05095,4340,2162,456459760,448179946,4348,2170,476175803,467895989,8149,4455,1609154171,1572439014,99.82,99.63,95.86,95.79,53.26,48.53,28.37,28.5
-72021,05,147,05147,8,8,19716043,19716043,4348,2170,476175803,467895989,7260,3893,1538488738,1519780744,0.18,0.37,4.14,4.21,0.11,0.21,1.28,1.3
-72022,05,125,05125,14270,6104,39676651,39450241,14270,6104,39676651,39450241,107118,44811,1891960390,1874124567,100,100,100,100,13.32,13.62,2.1,2.1
-72023,05,045,05045,110,41,5001106,4976703,35026,13652,246012175,244016317,113237,46612,1719940016,1678012685,0.31,0.3,2.03,2.04,0.1,0.09,0.29,0.3
-72023,05,085,05085,31481,12092,174915645,172961852,35026,13652,246012175,244016317,68356,27239,2079347213,1996176993,89.88,88.57,71.1,70.88,46.05,44.39,8.41,8.66
-72023,05,119,05119,3435,1519,66095424,66077762,35026,13652,246012175,244016317,382748,175555,2091839108,1967777404,9.81,11.13,26.87,27.08,0.9,0.87,3.16,3.36
-72024,05,085,05085,3544,1605,458351061,447973242,3777,1720,535589469,522817573,68356,27239,2079347213,1996176993,93.83,93.31,85.58,85.68,5.18,5.89,22.04,22.44
-72024,05,117,05117,233,115,77238408,74844331,3777,1720,535589469,522817573,8715,4503,1749832531,1678203880,6.17,6.69,14.42,14.32,2.67,2.55,4.41,4.46
-72025,05,029,05029,144,66,36676728,36456681,847,399,152383051,151976583,21273,9720,1467662405,1430319825,17,16.54,24.07,23.99,0.68,0.68,2.5,2.55
-72025,05,105,05105,681,321,105028177,104938630,847,399,152383051,151976583,10445,4907,1451774522,1428125735,80.4,80.45,68.92,69.05,6.52,6.54,7.23,7.35
-72025,05,149,05149,22,12,10678146,10581272,847,399,152383051,151976583,22185,9752,2457527525,2408647209,2.6,3.01,7.01,6.96,0.1,0.12,0.43,0.44
-72026,05,001,05001,393,238,79755692,76705119,393,238,79755692,76705119,19019,9436,2677398120,2560902522,100,100,100,100,2.07,2.52,2.98,3
-72027,05,029,05029,1417,631,177279984,176090332,1417,631,177279984,176090332,21273,9720,1467662405,1430319825,100,100,100,100,6.66,6.49,12.08,12.31
-72029,05,095,05095,1912,1005,132917254,131042849,1912,1005,132917254,131042849,8149,4455,1609154171,1572439014,100,100,100,100,23.46,22.56,8.26,8.33
-72030,05,029,05029,473,233,107769644,106548268,705,348,137822878,135976828,21273,9720,1467662405,1430319825,67.09,66.95,78.19,78.36,2.22,2.4,7.34,7.45
-72030,05,141,05141,232,115,30053234,29428560,705,348,137822878,135976828,17295,10345,1875888077,1834082139,32.91,33.05,21.81,21.64,1.34,1.11,1.6,1.6
-72031,05,029,05029,122,52,28850292,28661092,7683,4017,782729575,769801356,21273,9720,1467662405,1430319825,1.59,1.29,3.69,3.72,0.57,0.53,1.97,2
-72031,05,137,05137,166,90,44339842,43753338,7683,4017,782729575,769801356,12394,6712,1578420300,1570581314,2.16,2.24,5.66,5.68,1.34,1.34,2.81,2.79
-72031,05,141,05141,7395,3875,709539441,697386926,7683,4017,782729575,769801356,17295,10345,1875888077,1834082139,96.25,96.47,90.65,90.59,42.76,37.46,37.82,38.02
-72032,05,045,05045,31436,13327,315310625,295576156,31436,13327,315310625,295576156,113237,46612,1719940016,1678012685,100,100,100,100,27.76,28.59,18.33,17.61
-72034,05,045,05045,44723,18778,147696087,145427592,44723,18778,147696087,145427592,113237,46612,1719940016,1678012685,100,100,100,100,39.5,40.29,8.59,8.67
-72035,05,045,05045,1083,0,320344,320344,1083,0,320344,320344,113237,46612,1719940016,1678012685,100,0,100,100,0.96,0,0.02,0.02
-72036,05,095,05095,49,30,63526593,63437196,817,577,305366611,303604111,8149,4455,1609154171,1572439014,6,5.2,20.8,20.89,0.6,0.67,3.95,4.03
-72036,05,147,05147,768,547,241840018,240166915,817,577,305366611,303604111,7260,3893,1538488738,1519780744,94,94.8,79.2,79.11,10.58,14.05,15.72,15.8
-72037,05,085,05085,28,17,394192,394192,28,17,394192,394192,68356,27239,2079347213,1996176993,100,100,100,100,0.04,0.06,0.02,0.02
-72038,05,001,05001,74,43,55167824,52788530,74,43,55167824,52788530,19019,9436,2677398120,2560902522,100,100,100,100,0.39,0.46,2.06,2.06
-72039,05,045,05045,1223,522,82657842,82616098,2131,976,151529433,151442891,113237,46612,1719940016,1678012685,57.39,53.48,54.55,54.55,1.08,1.12,4.81,4.92
-72039,05,141,05141,908,454,68871591,68826793,2131,976,151529433,151442891,17295,10345,1875888077,1834082139,42.61,46.52,45.45,45.45,5.25,4.39,3.67,3.75
-72040,05,117,05117,2867,1434,465550833,445659540,2867,1434,465550833,445659540,8715,4503,1749832531,1678203880,100,100,100,100,32.9,31.85,26.61,26.56
-72041,05,117,05117,1457,901,273336967,250649106,1457,901,273336967,250649106,8715,4503,1749832531,1678203880,100,100,100,100,16.72,20.01,15.62,14.94
-72042,05,001,05001,5161,2438,632742496,613535074,5161,2438,632742496,613535074,19019,9436,2677398120,2560902522,100,100,100,100,27.14,25.84,23.63,23.96
-72044,05,023,05023,712,646,132272739,120724871,881,730,171470483,159922615,25970,15826,1533071038,1434055831,80.82,88.49,77.14,75.49,2.74,4.08,8.63,8.42
-72044,05,137,05137,169,84,39197744,39197744,881,730,171470483,159922615,12394,6712,1578420300,1570581314,19.18,11.51,22.86,24.51,1.36,1.25,2.48,2.5
-72045,05,145,05145,1151,522,115586639,115570630,1151,522,115586639,115570630,77076,32488,2699143661,2680832626,100,100,100,100,1.49,1.61,4.28,4.31
-72046,05,069,05069,275,232,76736635,68098659,4470,2125,634637063,605693831,77435,33006,2366668316,2255220650,6.15,10.92,12.09,11.24,0.36,0.7,3.24,3.02
-72046,05,085,05085,3836,1734,415049016,403435947,4470,2125,634637063,605693831,68356,27239,2079347213,1996176993,85.82,81.6,65.4,66.61,5.61,6.37,19.96,20.21
-72046,05,119,05119,359,159,142851412,134159225,4470,2125,634637063,605693831,382748,175555,2091839108,1967777404,8.03,7.48,22.51,22.15,0.09,0.09,6.83,6.82
-72047,05,045,05045,969,403,81462933,81462933,969,403,81462933,81462933,113237,46612,1719940016,1678012685,100,100,100,100,0.86,0.86,4.74,4.85
-72048,05,001,05001,114,81,224443414,215734089,114,81,224443414,215734089,19019,9436,2677398120,2560902522,100,100,100,100,0.6,0.86,8.38,8.42
-72051,05,137,05137,622,321,108449107,108446895,622,321,108449107,108446895,12394,6712,1578420300,1570581314,100,100,100,100,5.02,4.78,6.87,6.9
-72055,05,001,05001,849,521,258717452,237875087,849,521,258717452,237875087,19019,9436,2677398120,2560902522,100,100,100,100,4.46,5.52,9.66,9.29
-72057,05,053,05053,1070,505,232029202,231976594,1070,505,232029202,231976594,17853,7758,1639281325,1636376859,100,100,100,100,5.99,6.51,14.15,14.18
-72058,05,045,05045,15911,6212,404707311,404340072,15911,6212,404707311,404340072,113237,46612,1719940016,1678012685,100,100,100,100,14.05,13.33,23.53,24.1
-72059,05,147,05147,37,43,35107957,35107957,37,43,35107957,35107957,7260,3893,1538488738,1519780744,100,100,100,100,0.51,1.1,2.28,2.31
-72060,05,117,05117,161,72,40351545,40312571,666,316,167208989,166227199,8715,4503,1749832531,1678203880,24.17,22.78,24.13,24.25,1.85,1.6,2.31,2.4
-72060,05,145,05145,505,244,126857444,125914628,666,316,167208989,166227199,77076,32488,2699143661,2680832626,75.83,77.22,75.87,75.75,0.66,0.75,4.7,4.7
-72061,05,045,05045,250,96,8884848,8884848,250,96,8884848,8884848,113237,46612,1719940016,1678012685,100,100,100,100,0.22,0.21,0.52,0.53
-72063,05,029,05029,1632,749,199206531,195301406,1683,771,210493056,206489730,21273,9720,1467662405,1430319825,96.97,97.15,94.64,94.58,7.67,7.71,13.57,13.65
-72063,05,115,05115,51,22,11286525,11188324,1683,771,210493056,206489730,61754,25551,2151697470,2104490517,3.03,2.85,5.36,5.42,0.08,0.09,0.52,0.53
-72064,05,117,05117,2451,1139,399679446,390964448,2451,1139,399679446,390964448,8715,4503,1749832531,1678203880,100,100,100,100,28.12,25.29,22.84,23.3
-72065,05,053,05053,300,122,18823361,18795988,5207,2159,152099960,148205518,17853,7758,1639281325,1636376859,5.76,5.65,12.38,12.68,1.68,1.57,1.15,1.15
-72065,05,119,05119,724,339,36111835,34431670,5207,2159,152099960,148205518,382748,175555,2091839108,1967777404,13.9,15.7,23.74,23.23,0.19,0.19,1.73,1.75
-72065,05,125,05125,4183,1698,97164764,94977860,5207,2159,152099960,148205518,107118,44811,1891960390,1874124567,80.33,78.65,63.88,64.09,3.91,3.79,5.14,5.07
-72067,05,023,05023,2457,2364,138770537,112244852,2726,2674,159636692,126029834,25970,15826,1533071038,1434055831,90.13,88.41,86.93,89.06,9.46,14.94,9.05,7.83
-72067,05,141,05141,269,310,20866155,13784982,2726,2674,159636692,126029834,17295,10345,1875888077,1834082139,9.87,11.59,13.07,10.94,1.56,3,1.11,0.75
-72068,05,145,05145,424,180,2479359,2479359,424,180,2479359,2479359,77076,32488,2699143661,2680832626,100,100,100,100,0.55,0.55,0.09,0.09
-72069,05,095,05095,1277,979,588248119,576293920,1369,1038,616856996,604902797,8149,4455,1609154171,1572439014,93.28,94.32,95.36,95.27,15.67,21.98,36.56,36.65
-72069,05,107,05107,92,59,28608877,28608877,1369,1038,616856996,604902797,21757,10126,1883814425,1801758335,6.72,5.68,4.64,4.73,0.42,0.58,1.52,1.59
-72070,05,105,05105,1813,919,178140786,174538069,1813,919,178140786,174538069,10445,4907,1451774522,1428125735,100,100,100,100,17.36,18.73,12.27,12.22
-72072,05,085,05085,544,246,103707725,94688009,544,246,103707725,94688009,68356,27239,2079347213,1996176993,100,100,100,100,0.8,0.9,4.99,4.74
-72073,05,001,05001,783,440,294961532,285020949,1139,621,370518592,353499482,19019,9436,2677398120,2560902522,68.74,70.85,79.61,80.63,4.12,4.66,11.02,11.13
-72073,05,069,05069,356,181,75557060,68478533,1139,621,370518592,353499482,77435,33006,2366668316,2255220650,31.26,29.15,20.39,19.37,0.46,0.55,3.19,3.04
-72074,05,147,05147,167,115,91513872,89578377,167,115,91513872,89578377,7260,3893,1538488738,1519780744,100,100,100,100,2.3,2.95,5.95,5.89
-72076,05,045,05045,200,89,6352182,6352182,37979,16922,192177826,191809667,113237,46612,1719940016,1678012685,0.53,0.53,3.31,3.31,0.18,0.19,0.37,0.38
-72076,05,085,05085,2148,872,19028204,19028204,37979,16922,192177826,191809667,68356,27239,2079347213,1996176993,5.66,5.15,9.9,9.92,3.14,3.2,0.92,0.95
-72076,05,119,05119,35631,15961,166797440,166429281,37979,16922,192177826,191809667,382748,175555,2091839108,1967777404,93.82,94.32,86.79,86.77,9.31,9.09,7.97,8.46
-72079,05,053,05053,45,23,14850091,14850091,786,334,61632377,60633148,17853,7758,1639281325,1636376859,5.73,6.89,24.09,24.49,0.25,0.3,0.91,0.91
-72079,05,069,05069,741,311,46782286,45783057,786,334,61632377,60633148,77435,33006,2366668316,2255220650,94.27,93.11,75.91,75.51,0.96,0.94,1.98,2.03
-72080,05,029,05029,472,244,74820521,74106573,662,417,246575141,245735897,21273,9720,1467662405,1430319825,71.3,58.51,30.34,30.16,2.22,2.51,5.1,5.18
-72080,05,115,05115,40,36,40124710,40110005,662,417,246575141,245735897,61754,25551,2151697470,2104490517,6.04,8.63,16.27,16.32,0.06,0.14,1.86,1.91
-72080,05,141,05141,150,137,131629910,131519319,662,417,246575141,245735897,17295,10345,1875888077,1834082139,22.66,32.85,53.38,53.52,0.87,1.32,7.02,7.17
-72081,05,145,05145,7798,3287,242155280,241423917,7798,3287,242155280,241423917,77076,32488,2699143661,2680832626,100,100,100,100,10.12,10.12,8.97,9.01
-72082,05,145,05145,1935,895,13920526,13788858,1935,895,13920526,13788858,77076,32488,2699143661,2680832626,100,100,100,100,2.51,2.75,0.52,0.51
-72083,05,085,05085,237,108,14853469,14767760,237,108,14853469,14767760,68356,27239,2079347213,1996176993,100,100,100,100,0.35,0.4,0.71,0.74
-72084,05,039,05039,251,222,262985184,262968076,1229,676,513563880,512459963,8116,4305,1730386990,1728522942,20.42,32.84,51.21,51.31,3.09,5.16,15.2,15.21
-72084,05,053,05053,764,360,196200588,195130158,1229,676,513563880,512459963,17853,7758,1639281325,1636376859,62.16,53.25,38.2,38.08,4.28,4.64,11.97,11.92
-72084,05,059,05059,214,94,54378108,54361729,1229,676,513563880,512459963,32923,14332,1611419994,1593367055,17.41,13.91,10.59,10.61,0.65,0.66,3.37,3.41
-72085,05,145,05145,220,111,894234,894234,220,111,894234,894234,77076,32488,2699143661,2680832626,100,100,100,100,0.29,0.34,0.03,0.03
-72086,05,085,05085,10727,4322,414304644,376074400,10727,4322,414304644,376074400,68356,27239,2079347213,1996176993,100,100,100,100,15.69,15.87,19.92,18.84
-72087,05,051,05051,814,337,78214689,78214689,2051,975,198614178,198596978,96024,50548,1902658826,1755444878,39.69,34.56,39.38,39.38,0.85,0.67,4.11,4.46
-72087,05,125,05125,1237,638,120399489,120382289,2051,975,198614178,198596978,107118,44811,1891960390,1874124567,60.31,65.44,60.62,60.62,1.15,1.42,6.36,6.42
-72088,05,023,05023,183,119,6818116,5353546,2391,2237,46151326,38201165,25970,15826,1533071038,1434055831,7.65,5.32,14.77,14.01,0.7,0.75,0.44,0.37
-72088,05,141,05141,2208,2118,39333210,32847619,2391,2237,46151326,38201165,17295,10345,1875888077,1834082139,92.35,94.68,85.23,85.99,12.77,20.47,2.1,1.79
-72099,05,119,05119,616,0,480780,480780,616,0,480780,480780,382748,175555,2091839108,1967777404,100,0,100,100,0.16,0,0.02,0.02
-72101,05,067,05067,207,90,82995999,82957518,3378,1599,673468026,671753109,17997,7601,1661480593,1641892684,6.13,5.63,12.32,12.35,1.15,1.18,5,5.05
-72101,05,147,05147,3171,1509,590472027,588795591,3378,1599,673468026,671753109,7260,3893,1538488738,1519780744,93.87,94.37,87.68,87.65,43.68,38.76,38.38,38.74
-72102,05,145,05145,2873,1203,131436979,131042912,2873,1203,131436979,131042912,77076,32488,2699143661,2680832626,100,100,100,100,3.73,3.7,4.87,4.89
-72103,05,119,05119,4039,1662,17667352,17511287,13078,5289,80099958,79658466,382748,175555,2091839108,1967777404,30.88,31.42,22.06,21.98,1.06,0.95,0.84,0.89
-72103,05,125,05125,9039,3627,62432606,62147179,13078,5289,80099958,79658466,107118,44811,1891960390,1874124567,69.12,68.58,77.94,78.02,8.44,8.09,3.3,3.32
-72104,05,059,05059,23139,9743,816575380,811411118,23354,9832,827950210,822785948,32923,14332,1611419994,1593367055,99.08,99.09,98.63,98.62,70.28,67.98,50.67,50.92
-72104,05,125,05125,215,89,11374830,11374830,23354,9832,827950210,822785948,107118,44811,1891960390,1874124567,0.92,0.91,1.37,1.38,0.2,0.2,0.6,0.61
-72106,05,045,05045,5376,2462,136314317,118852979,5376,2462,136314317,118852979,113237,46612,1719940016,1678012685,100,100,100,100,4.75,5.28,7.93,7.08
-72107,05,029,05029,339,154,31049318,30273732,339,154,31049318,30273732,21273,9720,1467662405,1430319825,100,100,100,100,1.59,1.58,2.12,2.12
-72108,05,095,05095,73,39,25469134,25345998,73,39,25469134,25345998,8149,4455,1609154171,1572439014,100,100,100,100,0.9,0.88,1.58,1.61
-72110,05,029,05029,11498,5208,342325699,321342886,11498,5208,342325699,321342886,21273,9720,1467662405,1430319825,100,100,100,100,54.05,53.58,23.32,22.47
-72111,05,045,05045,874,400,107702379,107702379,1362,596,151761599,151707579,113237,46612,1719940016,1678012685,64.17,67.11,70.97,70.99,0.77,0.86,6.26,6.42
-72111,05,145,05145,488,196,44059220,44005200,1362,596,151761599,151707579,77076,32488,2699143661,2680832626,35.83,32.89,29.03,29.01,0.63,0.6,1.63,1.64
-72112,05,063,05063,82,33,22542045,21486007,11467,4613,865239529,850468590,36647,16187,1998222877,1978628920,0.72,0.72,2.61,2.53,0.22,0.2,1.13,1.09
-72112,05,067,05067,11335,4560,810662056,796947155,11467,4613,865239529,850468590,17997,7601,1661480593,1641892684,98.85,98.85,93.69,93.71,62.98,59.99,48.79,48.54
-72112,05,147,05147,50,20,32035428,32035428,11467,4613,865239529,850468590,7260,3893,1538488738,1519780744,0.44,0.43,3.7,3.77,0.69,0.51,2.08,2.11
-72113,05,119,05119,21273,9372,72468761,67834553,21273,9372,72468761,67834553,382748,175555,2091839108,1967777404,100,100,100,100,5.56,5.34,3.46,3.45
-72114,05,119,05119,12658,6313,23628128,20682519,12658,6313,23628128,20682519,382748,175555,2091839108,1967777404,100,100,100,100,3.31,3.6,1.13,1.05
-72116,05,119,05119,21431,10493,17779772,17332478,21431,10493,17779772,17332478,382748,175555,2091839108,1967777404,100,100,100,100,5.6,5.98,0.85,0.88
-72117,05,119,05119,12684,5388,158229727,143475461,12684,5388,158229727,143475461,382748,175555,2091839108,1967777404,100,100,100,100,3.31,3.07,7.56,7.29
-72118,05,119,05119,22592,10066,78767179,74499417,22592,10066,78767179,74499417,382748,175555,2091839108,1967777404,100,100,100,100,5.9,5.73,3.77,3.79
-72119,05,119,05119,5,3,778530,778530,5,3,778530,778530,382748,175555,2091839108,1967777404,100,100,100,100,0,0,0.04,0.04
-72120,05,045,05045,765,319,41213459,41067316,31610,13557,131089305,130166218,113237,46612,1719940016,1678012685,2.42,2.35,31.44,31.55,0.68,0.68,2.4,2.45
-72120,05,119,05119,30845,13238,89875846,89098902,31610,13557,131089305,130166218,382748,175555,2091839108,1967777404,97.58,97.65,68.56,68.45,8.06,7.54,4.3,4.53
-72121,05,023,05023,561,362,37741437,37741437,2704,1422,185090178,185090178,25970,15826,1533071038,1434055831,20.75,25.46,20.39,20.39,2.16,2.29,2.46,2.63
-72121,05,145,05145,2143,1060,147348741,147348741,2704,1422,185090178,185090178,77076,32488,2699143661,2680832626,79.25,74.54,79.61,79.61,2.78,3.26,5.46,5.5
-72122,05,119,05119,172,70,5670859,5652553,927,405,274767669,269988676,382748,175555,2091839108,1967777404,18.55,17.28,2.06,2.09,0.04,0.04,0.27,0.29
-72122,05,125,05125,755,335,269096810,264336123,927,405,274767669,269988676,107118,44811,1891960390,1874124567,81.45,82.72,97.94,97.91,0.7,0.75,14.22,14.1
-72123,05,147,05147,450,229,2275373,2275373,450,229,2275373,2275373,7260,3893,1538488738,1519780744,100,100,100,100,6.2,5.88,0.15,0.15
-72125,05,029,05029,301,139,24706457,23048596,905,410,57941670,56197455,21273,9720,1467662405,1430319825,33.26,33.9,42.64,41.01,1.41,1.43,1.68,1.61
-72125,05,105,05105,604,271,33235213,33148859,905,410,57941670,56197455,10445,4907,1451774522,1428125735,66.74,66.1,57.36,58.99,5.78,5.52,2.29,2.32
-72126,05,105,05105,3609,1772,518473046,510082050,3674,1798,533978631,525425200,10445,4907,1451774522,1428125735,98.23,98.55,97.1,97.08,34.55,36.11,35.71,35.72
-72126,05,119,05119,65,26,15505585,15343150,3674,1798,533978631,525425200,382748,175555,2091839108,1967777404,1.77,1.45,2.9,2.92,0.02,0.01,0.74,0.78
-72127,05,029,05029,2149,983,141008994,137484454,2149,983,141008994,137484454,21273,9720,1467662405,1430319825,100,100,100,100,10.1,10.11,9.61,9.61
-72128,05,053,05053,814,331,58404582,58290836,814,331,58404582,58290836,17853,7758,1639281325,1636376859,100,100,100,100,4.56,4.27,3.56,3.56
-72129,05,053,05053,1409,608,124406008,124227392,1409,608,124406008,124227392,17853,7758,1639281325,1636376859,100,100,100,100,7.89,7.84,7.59,7.59
-72130,05,023,05023,560,247,85690050,84477606,560,247,85690050,84477606,25970,15826,1533071038,1434055831,100,100,100,100,2.16,1.56,5.59,5.89
-72131,05,023,05023,3247,1789,238316502,220995213,4631,2383,356261537,338940248,25970,15826,1533071038,1434055831,70.11,75.07,66.89,65.2,12.5,11.3,15.55,15.41
-72131,05,045,05045,1214,509,94232657,94232657,4631,2383,356261537,338940248,113237,46612,1719940016,1678012685,26.21,21.36,26.45,27.8,1.07,1.09,5.48,5.62
-72131,05,141,05141,170,85,23712378,23712378,4631,2383,356261537,338940248,17295,10345,1875888077,1834082139,3.67,3.57,6.66,7,0.98,0.82,1.26,1.29
-72132,05,053,05053,599,254,76430076,76372137,3242,1394,162367714,157658263,17853,7758,1639281325,1636376859,18.48,18.22,47.07,48.44,3.36,3.27,4.66,4.67
-72132,05,069,05069,2643,1140,85937638,81286126,3242,1394,162367714,157658263,77435,33006,2366668316,2255220650,81.52,81.78,52.93,51.56,3.41,3.45,3.63,3.6
-72134,05,095,05095,315,145,129490057,125610148,315,145,129490057,125610148,8149,4455,1609154171,1572439014,100,100,100,100,3.87,3.25,8.05,7.99
-72135,05,119,05119,2623,1142,219745260,183897233,2623,1142,219745260,183897233,382748,175555,2091839108,1967777404,100,100,100,100,0.69,0.65,10.5,9.35
-72136,05,145,05145,1772,752,133066561,132621596,1772,752,133066561,132621596,77076,32488,2699143661,2680832626,100,100,100,100,2.3,2.31,4.93,4.95
-72137,05,023,05023,730,315,40788265,40767569,2555,1091,176733376,176619227,25970,15826,1533071038,1434055831,28.57,28.87,23.08,23.08,2.81,1.99,2.66,2.84
-72137,05,145,05145,1825,776,135945111,135851658,2555,1091,176733376,176619227,77076,32488,2699143661,2680832626,71.43,71.13,76.92,76.92,2.37,2.39,5.04,5.07
-72139,05,145,05145,216,104,1072958,1072958,216,104,1072958,1072958,77076,32488,2699143661,2680832626,100,100,100,100,0.28,0.32,0.04,0.04
-72140,05,001,05001,305,207,50339868,49569648,305,207,50339868,49569648,19019,9436,2677398120,2560902522,100,100,100,100,1.6,2.19,1.88,1.94
-72141,05,141,05141,625,373,217636920,216713648,625,373,217636920,216713648,17295,10345,1875888077,1834082139,100,100,100,100,3.61,3.61,11.6,11.82
-72142,05,085,05085,1264,520,210818694,203469393,2499,1104,287905742,269458716,68356,27239,2079347213,1996176993,50.58,47.1,73.22,75.51,1.85,1.91,10.14,10.19
-72142,05,119,05119,1235,584,77087048,65989323,2499,1104,287905742,269458716,382748,175555,2091839108,1967777404,49.42,52.9,26.78,24.49,0.32,0.33,3.69,3.35
-72143,05,023,05023,28,19,19683730,19683730,35169,14381,794997281,788976682,25970,15826,1533071038,1434055831,0.08,0.13,2.48,2.49,0.11,0.12,1.28,1.37
-72143,05,145,05145,35141,14362,775313551,769292952,35169,14381,794997281,788976682,77076,32488,2699143661,2680832626,99.92,99.87,97.52,97.51,45.59,44.21,28.72,28.7
-72149,05,145,05145,0,0,29652,29652,0,0,29652,29652,77076,32488,2699143661,2680832626,0,0,100,100,0,0,0,0
-72150,05,053,05053,11887,5114,756119323,754974359,12006,5171,761204029,760025548,17853,7758,1639281325,1636376859,99.01,98.9,99.33,99.34,66.58,65.92,46.13,46.14
-72150,05,069,05069,119,57,5084706,5051189,12006,5171,761204029,760025548,77435,33006,2366668316,2255220650,0.99,1.1,0.67,0.66,0.15,0.17,0.21,0.22
-72152,05,069,05069,429,262,198790805,190219095,429,262,198790805,190219095,77435,33006,2366668316,2255220650,100,100,100,100,0.55,0.79,8.4,8.43
-72153,05,023,05023,100,118,10858044,10564876,2572,1465,228549938,218796410,25970,15826,1533071038,1434055831,3.89,8.05,4.75,4.83,0.39,0.75,0.71,0.74
-72153,05,137,05137,76,40,8036976,8036976,2572,1465,228549938,218796410,12394,6712,1578420300,1570581314,2.95,2.73,3.52,3.67,0.61,0.6,0.51,0.51
-72153,05,141,05141,2396,1307,209654918,200194558,2572,1465,228549938,218796410,17295,10345,1875888077,1834082139,93.16,89.22,91.73,91.5,13.85,12.63,11.18,10.92
-72156,05,029,05029,639,285,67247720,66419180,639,285,67247720,66419180,21273,9720,1467662405,1430319825,100,100,100,100,3,2.93,4.58,4.64
-72157,05,029,05029,1607,741,132376389,132346220,1607,741,132376389,132346220,21273,9720,1467662405,1430319825,100,100,100,100,7.55,7.62,9.02,9.25
-72160,05,001,05001,10334,4852,531713375,507545613,10736,5137,919160037,870327339,19019,9436,2677398120,2560902522,96.26,94.45,57.85,58.32,54.34,51.42,19.86,19.82
-72160,05,069,05069,86,98,140326609,130319115,10736,5137,919160037,870327339,77435,33006,2366668316,2255220650,0.8,1.91,15.27,14.97,0.11,0.3,5.93,5.78
-72160,05,085,05085,42,19,26486134,22886501,10736,5137,919160037,870327339,68356,27239,2079347213,1996176993,0.39,0.37,2.88,2.63,0.06,0.07,1.27,1.15
-72160,05,117,05117,274,168,220633919,209576110,10736,5137,919160037,870327339,8715,4503,1749832531,1678203880,2.55,3.27,24,24.08,3.14,3.73,12.61,12.49
-72165,05,063,05063,111,53,13095360,13095360,111,53,13095360,13095360,36647,16187,1998222877,1978628920,100,100,100,100,0.3,0.33,0.66,0.66
-72166,05,001,05001,260,238,284127046,263907818,260,238,284127046,263907818,19019,9436,2677398120,2560902522,100,100,100,100,1.37,2.52,10.61,10.31
-72167,05,053,05053,92,47,36717042,36668281,1719,702,116146586,116077619,17853,7758,1639281325,1636376859,5.35,6.7,31.61,31.59,0.52,0.61,2.24,2.24
-72167,05,059,05059,446,171,23668638,23668638,1719,702,116146586,116077619,32923,14332,1611419994,1593367055,25.95,24.36,20.38,20.39,1.35,1.19,1.47,1.49
-72167,05,125,05125,1181,484,55760906,55740700,1719,702,116146586,116077619,107118,44811,1891960390,1874124567,68.7,68.95,48.01,48.02,1.1,1.08,2.95,2.97
-72168,05,069,05069,1834,226,119364292,117047151,1834,226,119364292,117047151,77435,33006,2366668316,2255220650,100,100,100,100,2.37,0.68,5.04,5.19
-72169,05,067,05067,203,91,29698232,29698232,203,91,29698232,29698232,17997,7601,1661480593,1641892684,100,100,100,100,1.13,1.2,1.79,1.81
-72170,05,117,05117,202,104,24174530,24013705,202,104,24174530,24013705,8715,4503,1749832531,1678203880,100,100,100,100,2.32,2.31,1.38,1.43
-72173,05,045,05045,9041,3433,248525600,247932577,9078,3449,248831353,248238330,113237,46612,1719940016,1678012685,99.59,99.54,99.88,99.88,7.98,7.37,14.45,14.78
-72173,05,145,05145,37,16,305753,305753,9078,3449,248831353,248238330,77076,32488,2699143661,2680832626,0.41,0.46,0.12,0.12,0.05,0.05,0.01,0.01
-72175,05,069,05069,354,190,120711450,118165255,354,190,120711450,118165255,77435,33006,2366668316,2255220650,100,100,100,100,0.46,0.58,5.1,5.24
-72176,05,085,05085,7797,3103,127482749,126988182,8141,3260,206027342,205462785,68356,27239,2079347213,1996176993,95.77,95.18,61.88,61.81,11.41,11.39,6.13,6.36
-72176,05,117,05117,344,157,78544593,78474603,8141,3260,206027342,205462785,8715,4503,1749832531,1678203880,4.23,4.82,38.12,38.19,3.95,3.49,4.49,4.68
-72179,05,023,05023,450,237,60550785,60550785,450,237,60550785,60550785,25970,15826,1533071038,1434055831,100,100,100,100,1.73,1.5,3.95,4.22
-72181,05,045,05045,62,21,3260527,3260527,62,21,3260527,3260527,113237,46612,1719940016,1678012685,100,100,100,100,0.05,0.05,0.19,0.19
-72201,05,119,05119,1024,902,3452016,3134578,1024,902,3452016,3134578,382748,175555,2091839108,1967777404,100,100,100,100,0.27,0.51,0.17,0.16
-72202,05,119,05119,9978,6311,25988898,22473183,9978,6311,25988898,22473183,382748,175555,2091839108,1967777404,100,100,100,100,2.61,3.59,1.24,1.14
-72204,05,119,05119,32505,13800,40605682,40019363,32505,13800,40605682,40019363,382748,175555,2091839108,1967777404,100,100,100,100,8.49,7.86,1.94,2.03
-72205,05,119,05119,23000,12159,20343745,20243176,23000,12159,20343745,20243176,382748,175555,2091839108,1967777404,100,100,100,100,6.01,6.93,0.97,1.03
-72206,05,119,05119,23141,10408,296469309,281245425,25624,11394,310848426,295564648,382748,175555,2091839108,1967777404,90.31,91.35,95.37,95.16,6.05,5.93,14.17,14.29
-72206,05,125,05125,2483,986,14379117,14319223,25624,11394,310848426,295564648,107118,44811,1891960390,1874124567,9.69,8.65,4.63,4.84,2.32,2.2,0.76,0.76
-72207,05,119,05119,10344,5461,7914195,7911501,10344,5461,7914195,7911501,382748,175555,2091839108,1967777404,100,100,100,100,2.7,3.11,0.38,0.4
-72209,05,119,05119,32376,13437,43581182,42685836,32376,13437,43581182,42685836,382748,175555,2091839108,1967777404,100,100,100,100,8.46,7.65,2.08,2.17
-72210,05,119,05119,13419,6050,98035132,96609625,14258,6389,132562279,130941140,382748,175555,2091839108,1967777404,94.12,94.69,73.95,73.78,3.51,3.45,4.69,4.91
-72210,05,125,05125,839,339,34527147,34331515,14258,6389,132562279,130941140,107118,44811,1891960390,1874124567,5.88,5.31,26.05,26.22,0.78,0.76,1.82,1.83
-72211,05,119,05119,21288,10503,19661132,19491763,21288,10503,19661132,19491763,382748,175555,2091839108,1967777404,100,100,100,100,5.56,5.98,0.94,0.99
-72212,05,119,05119,12705,5329,17225220,17146435,12705,5329,17225220,17146435,382748,175555,2091839108,1967777404,100,100,100,100,3.32,3.04,0.82,0.87
-72223,05,119,05119,19890,8435,160165554,155142850,19890,8435,160165554,155142850,382748,175555,2091839108,1967777404,100,100,100,100,5.2,4.8,7.66,7.88
-72227,05,119,05119,11462,5879,10289123,9766442,11462,5879,10289123,9766442,382748,175555,2091839108,1967777404,100,100,100,100,2.99,3.35,0.49,0.5
-72301,05,035,05035,26069,10892,49126422,48920238,26069,10892,49126422,48920238,50902,21489,1648210536,1579271661,100,100,100,100,51.21,50.69,2.98,3.1
-72311,05,077,05077,135,71,2644956,2644956,135,71,2644956,2644956,10424,4356,1604502862,1560780566,100,100,100,100,1.3,1.63,0.16,0.17
-72315,05,093,05093,23966,10850,674940630,652362025,23966,10850,674940630,652362025,46480,20459,2382302353,2332475973,100,100,100,100,51.56,53.03,28.33,27.97
-72320,05,077,05077,1847,85,150575533,137673795,1847,85,150575533,137673795,10424,4356,1604502862,1560780566,100,100,100,100,17.72,1.95,9.38,8.82
-72321,05,093,05093,154,70,3576992,3576992,154,70,3576992,3576992,46480,20459,2382302353,2332475973,100,100,100,100,0.33,0.34,0.15,0.15
-72322,05,123,05123,195,80,5035060,5035060,195,80,5035060,5035060,28258,10903,1664098783,1644048592,100,100,100,100,0.69,0.73,0.3,0.31
-72324,05,037,05037,1954,874,322216572,321493896,1978,885,328123177,327400501,17870,7853,1611767028,1596418434,98.79,98.76,98.2,98.2,10.93,11.13,19.99,20.14
-72324,05,111,05111,24,11,5906605,5906605,1978,885,328123177,327400501,24583,10923,1977740491,1964217602,1.21,1.24,1.8,1.8,0.1,0.1,0.3,0.3
-72325,05,035,05035,43,21,14609987,14609987,43,21,14609987,14609987,50902,21489,1648210536,1579271661,100,100,100,100,0.08,0.1,0.89,0.93
-72326,05,037,05037,143,56,5421825,5421825,2267,1055,217066836,215540635,17870,7853,1611767028,1596418434,6.31,5.31,2.5,2.52,0.8,0.71,0.34,0.34
-72326,05,123,05123,2124,999,211645011,210118810,2267,1055,217066836,215540635,28258,10903,1664098783,1644048592,93.69,94.69,97.5,97.48,7.52,9.16,12.72,12.78
-72327,05,035,05035,1732,794,265661902,264221261,1732,794,265661902,264221261,50902,21489,1648210536,1579271661,100,100,100,100,3.4,3.69,16.12,16.73
-72328,05,041,05041,24,23,116351971,114030535,64,44,142368530,140047094,13008,6261,2122562726,1989504302,37.5,52.27,81.73,81.42,0.18,0.37,5.48,5.73
-72328,05,107,05107,40,21,26016559,26016559,64,44,142368530,140047094,21757,10126,1883814425,1801758335,62.5,47.73,18.27,18.58,0.18,0.21,1.38,1.44
-72329,05,093,05093,80,42,35517487,35517487,80,42,35517487,35517487,46480,20459,2382302353,2332475973,100,100,100,100,0.17,0.21,1.49,1.52
-72330,05,093,05093,756,294,106309907,106309907,756,294,106309907,106309907,46480,20459,2382302353,2332475973,100,100,100,100,1.63,1.44,4.46,4.56
-72331,05,035,05035,3079,1320,258498260,257961070,3184,1378,372626632,370441883,50902,21489,1648210536,1579271661,96.7,95.79,69.37,69.64,6.05,6.14,15.68,16.33
-72331,05,037,05037,105,58,114128372,112480813,3184,1378,372626632,370441883,17870,7853,1611767028,1596418434,3.3,4.21,30.63,30.36,0.59,0.74,7.08,7.05
-72332,05,035,05035,104,32,172173,172173,104,32,172173,172173,50902,21489,1648210536,1579271661,100,100,100,100,0.2,0.15,0.01,0.01
-72333,05,107,05107,667,317,171132928,160894544,667,317,171132928,160894544,21757,10126,1883814425,1801758335,100,100,100,100,3.07,3.13,9.08,8.93
-72335,05,077,05077,8,4,18076819,17482376,20121,7086,420041039,412801099,10424,4356,1604502862,1560780566,0.04,0.06,4.3,4.24,0.08,0.09,1.13,1.12
-72335,05,123,05123,20113,7082,401964220,395318723,20121,7086,420041039,412801099,28258,10903,1664098783,1644048592,99.96,99.94,95.7,95.76,71.18,64.95,24.16,24.05
-72338,05,093,05093,43,15,14192088,13600272,52,20,80366092,74361981,46480,20459,2382302353,2332475973,82.69,75,17.66,18.29,0.09,0.07,0.6,0.58
-72338,47,167,47167,9,5,66174004,60761709,52,20,80366092,74361981,61081,23199,1225876424,1187161824,17.31,25,82.34,81.71,0.01,0.02,5.4,5.12
-72339,05,035,05035,204,90,18490146,18490146,204,90,18490146,18490146,50902,21489,1648210536,1579271661,100,100,100,100,0.4,0.42,1.12,1.17
-72340,05,123,05123,90,35,21119208,21028277,90,35,21119208,21028277,28258,10903,1664098783,1644048592,100,100,100,100,0.32,0.32,1.27,1.28
-72341,05,077,05077,222,114,52546193,52468680,222,114,52546193,52468680,10424,4356,1604502862,1560780566,100,100,100,100,2.13,2.62,3.27,3.36
-72342,05,107,05107,5532,2708,241782621,231233559,5532,2708,241782621,231233559,21757,10126,1883814425,1801758335,100,100,100,100,25.43,26.74,12.83,12.83
-72346,05,037,05037,8,4,9306047,9241421,697,342,213789548,212577463,17870,7853,1611767028,1596418434,1.15,1.17,4.35,4.35,0.04,0.05,0.58,0.58
-72346,05,123,05123,689,338,204483501,203336042,697,342,213789548,212577463,28258,10903,1664098783,1644048592,98.85,98.83,95.65,95.65,2.44,3.1,12.29,12.37
-72347,05,037,05037,649,321,191814439,191791856,711,353,245181823,245101960,17870,7853,1611767028,1596418434,91.28,90.93,78.23,78.25,3.63,4.09,11.9,12.01
-72347,05,067,05067,62,32,53367384,53310104,711,353,245181823,245101960,17997,7601,1661480593,1641892684,8.72,9.07,21.77,21.75,0.34,0.42,3.21,3.25
-72348,05,035,05035,721,628,232564958,197559591,2594,1479,463261855,424963599,50902,21489,1648210536,1579271661,27.79,42.46,50.2,46.49,1.42,2.92,14.11,12.51
-72348,05,077,05077,46,29,28486189,28094591,2594,1479,463261855,424963599,10424,4356,1604502862,1560780566,1.77,1.96,6.15,6.61,0.44,0.67,1.78,1.8
-72348,05,123,05123,1827,822,202210708,199309417,2594,1479,463261855,424963599,28258,10903,1664098783,1644048592,70.43,55.58,43.65,46.9,6.47,7.54,12.15,12.12
-72350,05,093,05093,1226,559,203590786,200637813,1226,559,203590786,200637813,46480,20459,2382302353,2332475973,100,100,100,100,2.64,2.73,8.55,8.6
-72351,05,093,05093,835,348,16994992,16994992,835,348,16994992,16994992,46480,20459,2382302353,2332475973,100,100,100,100,1.8,1.7,0.71,0.73
-72353,05,107,05107,114,53,86564775,84112121,114,53,86564775,84112121,21757,10126,1883814425,1801758335,100,100,100,100,0.52,0.52,4.6,4.67
-72354,05,093,05093,82,35,32976510,32976510,2470,1107,130575144,130524961,46480,20459,2382302353,2332475973,3.32,3.16,25.25,25.26,0.18,0.17,1.38,1.41
-72354,05,111,05111,2388,1072,97598634,97548451,2470,1107,130575144,130524961,24583,10923,1977740491,1964217602,96.68,96.84,74.75,74.74,9.71,9.81,4.93,4.97
-72355,05,077,05077,332,185,21751069,21751069,2768,1259,270469807,270399037,10424,4356,1604502862,1560780566,11.99,14.69,8.04,8.04,3.18,4.25,1.36,1.39
-72355,05,107,05107,2436,1074,248718738,248647968,2768,1259,270469807,270399037,21757,10126,1883814425,1801758335,88.01,85.31,91.96,91.96,11.2,10.61,13.2,13.8
-72358,05,093,05093,1690,616,158205011,152983391,1690,616,158205011,152983391,46480,20459,2382302353,2332475973,100,100,100,100,3.64,3.01,6.64,6.56
-72359,05,123,05123,430,201,5628272,5465422,430,201,5628272,5465422,28258,10903,1664098783,1644048592,100,100,100,100,1.52,1.84,0.34,0.33
-72360,05,077,05077,6466,3165,858211402,840247204,6466,3165,858211402,840247204,10424,4356,1604502862,1560780566,100,100,100,100,62.03,72.66,53.49,53.84
-72364,05,035,05035,15831,6323,194204296,187833290,15831,6323,194204296,187833290,50902,21489,1648210536,1579271661,100,100,100,100,31.1,29.42,11.78,11.89
-72365,05,111,05111,3146,1432,134108941,132644829,3146,1432,134108941,132644829,24583,10923,1977740491,1964217602,100,100,100,100,12.8,13.11,6.78,6.75
-72366,05,095,05095,16,10,31501314,31293501,2543,1244,379209150,378890210,8149,4455,1609154171,1572439014,0.63,0.8,8.31,8.26,0.2,0.22,1.96,1.99
-72366,05,107,05107,2527,1234,347707836,347596709,2543,1244,379209150,378890210,21757,10126,1883814425,1801758335,99.37,99.2,91.69,91.74,11.61,12.19,18.46,19.29
-72367,05,107,05107,108,79,200763231,180229180,108,79,200763231,180229180,21757,10126,1883814425,1801758335,100,100,100,100,0.5,0.78,10.66,10
-72368,05,077,05077,1135,594,318803496,318221099,1228,644,368127294,366551481,10424,4356,1604502862,1560780566,92.43,92.24,86.6,86.81,10.89,13.64,19.87,20.39
-72368,05,095,05095,93,50,49323798,48330382,1228,644,368127294,366551481,8149,4455,1609154171,1572439014,7.57,7.76,13.4,13.19,1.14,1.12,3.07,3.07
-72370,05,093,05093,8606,3717,293437699,293055508,8606,3717,293437699,293055508,46480,20459,2382302353,2332475973,100,100,100,100,18.52,18.17,12.32,12.56
-72372,05,077,05077,233,109,67368666,67368666,1945,904,327034269,326667072,10424,4356,1604502862,1560780566,11.98,12.06,20.6,20.62,2.24,2.5,4.2,4.32
-72372,05,123,05123,1712,795,259665603,259298406,1945,904,327034269,326667072,28258,10903,1664098783,1644048592,88.02,87.94,79.4,79.38,6.06,7.29,15.6,15.77
-72373,05,037,05037,1329,680,298107192,291878974,1329,680,298107192,291878974,17870,7853,1611767028,1596418434,100,100,100,100,7.44,8.66,18.5,18.28
-72374,05,107,05107,876,383,108845114,108676632,876,383,108845114,108676632,21757,10126,1883814425,1801758335,100,100,100,100,4.03,3.78,5.78,6.03
-72376,05,035,05035,1977,849,230550818,221894087,1977,849,230550818,221894087,50902,21489,1648210536,1579271661,100,100,100,100,3.88,3.95,13.99,14.05
-72377,05,111,05111,36,25,2037580,1999634,36,25,2037580,1999634,24583,10923,1977740491,1964217602,100,100,100,100,0.15,0.23,0.1,0.1
-72379,05,041,05041,50,47,264419320,225695478,50,47,264419320,225695478,13008,6261,2122562726,1989504302,100,100,100,100,0.38,0.75,12.46,11.34
-72383,05,107,05107,53,31,13305134,13305134,53,31,13305134,13305134,21757,10126,1883814425,1801758335,100,100,100,100,0.24,0.31,0.71,0.74
-72384,05,035,05035,953,447,248068429,239469399,953,447,248068429,239469399,50902,21489,1648210536,1579271661,100,100,100,100,1.87,2.08,15.05,15.16
-72386,05,035,05035,189,93,107704514,106047732,1777,820,305312426,303149388,50902,21489,1648210536,1579271661,10.64,11.34,35.28,34.98,0.37,0.43,6.53,6.71
-72386,05,093,05093,269,137,64302478,64266795,1777,820,305312426,303149388,46480,20459,2382302353,2332475973,15.14,16.71,21.06,21.2,0.58,0.67,2.7,2.76
-72386,05,111,05111,1319,590,133305434,132834861,1777,820,305312426,303149388,24583,10923,1977740491,1964217602,74.23,71.95,43.66,43.82,5.37,5.4,6.74,6.76
-72389,05,107,05107,204,114,147635408,147356617,204,114,147635408,147356617,21757,10126,1883814425,1801758335,100,100,100,100,0.94,1.13,7.84,8.18
-72390,05,107,05107,9107,4052,96192497,95089185,9107,4052,96192497,95089185,21757,10126,1883814425,1801758335,100,100,100,100,41.86,40.02,5.11,5.28
-72392,05,095,05095,74,35,4291612,4291612,481,249,123088392,121762154,8149,4455,1609154171,1572439014,15.38,14.06,3.49,3.52,0.91,0.79,0.27,0.27
-72392,05,123,05123,401,210,103864226,102537988,481,249,123088392,121762154,28258,10903,1664098783,1644048592,83.37,84.34,84.38,84.21,1.42,1.93,6.24,6.24
-72392,05,147,05147,6,4,14932554,14932554,481,249,123088392,121762154,7260,3893,1538488738,1519780744,1.25,1.61,12.13,12.26,0.08,0.1,0.97,0.98
-72394,05,123,05123,625,311,218001894,213335005,625,311,218001894,213335005,28258,10903,1664098783,1644048592,100,100,100,100,2.21,2.85,13.1,12.98
-72395,05,093,05093,1017,451,62750153,62734078,1017,451,62750153,62734078,46480,20459,2382302353,2332475973,100,100,100,100,2.19,2.2,2.63,2.69
-72396,05,037,05037,13682,5860,670772581,664109649,13734,5890,701253661,693375091,17870,7853,1611767028,1596418434,99.62,99.49,95.65,95.78,76.56,74.62,41.62,41.6
-72396,05,123,05123,52,30,30481080,29265442,13734,5890,701253661,693375091,28258,10903,1664098783,1644048592,0.38,0.51,4.35,4.22,0.18,0.28,1.83,1.78
-72401,05,031,05031,53234,22541,287579463,285791533,53767,22765,306810917,303596345,96443,40515,1845818454,1831656075,99.01,99.02,93.73,94.14,55.2,55.64,15.58,15.6
-72401,05,055,05055,533,224,19231454,17804812,53767,22765,306810917,303596345,42090,17892,1501060001,1496233476,0.99,0.98,6.27,5.86,1.27,1.25,1.28,1.19
-72404,05,031,05031,23482,9636,327896637,326410535,23482,9636,327896637,326410535,96443,40515,1845818454,1831656075,100,100,100,100,24.35,23.78,17.76,17.82
-72410,05,075,05075,498,238,181886089,179868884,498,238,181886089,179868884,17415,8000,1534157983,1521913098,100,100,100,100,2.86,2.98,11.86,11.82
-72411,05,031,05031,2294,973,99575991,99425749,2294,973,99575991,99425749,96443,40515,1845818454,1831656075,100,100,100,100,2.38,2.4,5.39,5.43
-72412,05,055,05055,633,290,162478895,162478895,633,290,162478895,162478895,42090,17892,1501060001,1496233476,100,100,100,100,1.5,1.62,10.82,10.86
-72413,05,121,05121,598,309,99184644,97063768,598,309,99184644,97063768,17969,8513,1699134452,1689166005,100,100,100,100,3.33,3.63,5.84,5.75
-72414,05,031,05031,443,194,45661650,44735499,443,194,45661650,44735499,96443,40515,1845818454,1831656075,100,100,100,100,0.46,0.48,2.47,2.44
-72415,05,075,05075,1346,603,99797498,98389784,1346,603,99797498,98389784,17415,8000,1534157983,1521913098,100,100,100,100,7.73,7.54,6.51,6.46
-72416,05,031,05031,5299,2153,129066271,128393505,5783,2372,241376182,240703416,96443,40515,1845818454,1831656075,91.63,90.77,53.47,53.34,5.49,5.31,6.99,7.01
-72416,05,055,05055,484,219,112309911,112309911,5783,2372,241376182,240703416,42090,17892,1501060001,1496233476,8.37,9.23,46.53,46.66,1.15,1.22,7.48,7.51
-72417,05,031,05031,3568,1491,118788625,118456479,3568,1491,118788625,118456479,96443,40515,1845818454,1831656075,100,100,100,100,3.7,3.68,6.44,6.47
-72419,05,031,05031,1748,809,132886228,131759250,1748,809,132886228,131759250,96443,40515,1845818454,1831656075,100,100,100,100,1.81,2,7.2,7.19
-72421,05,031,05031,554,265,198145803,196736679,554,265,198145803,196736679,96443,40515,1845818454,1831656075,100,100,100,100,0.57,0.65,10.73,10.74
-72422,05,021,05021,4979,2427,455530045,454081360,4979,2427,455530045,454081360,16083,8031,1661312409,1656206452,100,100,100,100,30.96,30.22,27.42,27.42
-72424,05,021,05021,94,45,3542638,3542638,94,45,3542638,3542638,16083,8031,1661312409,1656206452,100,100,100,100,0.58,0.56,0.21,0.21
-72425,05,055,05055,437,207,170164127,169862350,446,210,180907300,180605523,42090,17892,1501060001,1496233476,97.98,98.57,94.06,94.05,1.04,1.16,11.34,11.35
-72425,05,121,05121,9,3,10743173,10743173,446,210,180907300,180605523,17969,8513,1699134452,1689166005,2.02,1.43,5.94,5.95,0.05,0.04,0.63,0.64
-72426,05,093,05093,196,94,2321920,2308898,196,94,2321920,2308898,46480,20459,2382302353,2332475973,100,100,100,100,0.42,0.46,0.1,0.1
-72427,05,031,05031,174,95,40266830,40266830,174,95,40266830,40266830,96443,40515,1845818454,1831656075,100,100,100,100,0.18,0.23,2.18,2.2
-72428,05,093,05093,95,48,16359228,16359228,95,48,16359228,16359228,46480,20459,2382302353,2332475973,100,100,100,100,0.2,0.23,0.69,0.7
-72429,05,111,05111,427,223,199391879,199388884,427,223,199391879,199388884,24583,10923,1977740491,1964217602,100,100,100,100,1.74,2.04,10.08,10.15
-72430,05,021,05021,411,211,68340672,68340672,411,211,68340672,68340672,16083,8031,1661312409,1656206452,100,100,100,100,2.56,2.63,4.11,4.13
-72431,05,067,05067,401,204,15916447,15754405,401,204,15916447,15754405,17997,7601,1661480593,1641892684,100,100,100,100,2.23,2.68,0.96,0.96
-72432,05,111,05111,6462,2780,413524022,410977371,6462,2780,413524022,410977371,24583,10923,1977740491,1964217602,100,100,100,100,26.29,25.45,20.91,20.92
-72433,05,075,05075,3067,1371,146455283,145034331,3067,1371,146455283,145034331,17415,8000,1534157983,1521913098,100,100,100,100,17.61,17.14,9.55,9.53
-72434,05,075,05075,1253,611,69854300,69732207,2108,1028,221182953,220743298,17415,8000,1534157983,1521913098,59.44,59.44,31.58,31.59,7.19,7.64,4.55,4.58
-72434,05,121,05121,855,417,151328653,151011091,2108,1028,221182953,220743298,17969,8513,1699134452,1689166005,40.56,40.56,68.42,68.41,4.76,4.9,8.91,8.94
-72435,05,021,05021,505,252,190185374,189064039,505,252,190185374,189064039,16083,8031,1661312409,1656206452,100,100,100,100,3.14,3.14,11.45,11.42
-72436,05,021,05021,93,51,19661831,19661831,942,402,75482046,75353611,16083,8031,1661312409,1656206452,9.87,12.69,26.05,26.09,0.58,0.64,1.18,1.19
-72436,05,055,05055,849,351,55820215,55691780,942,402,75482046,75353611,42090,17892,1501060001,1496233476,90.13,87.31,73.95,73.91,2.02,1.96,3.72,3.72
-72437,05,031,05031,3272,1419,281363006,275846655,3272,1419,281363006,275846655,96443,40515,1845818454,1831656075,100,100,100,100,3.39,3.5,15.24,15.06
-72438,05,093,05093,2574,1115,144543014,144542351,2574,1115,144543014,144542351,46480,20459,2382302353,2332475973,100,100,100,100,5.54,5.45,6.07,6.2
-72440,05,075,05075,255,135,15430836,15430836,255,135,15430836,15430836,17415,8000,1534157983,1521913098,100,100,100,100,1.46,1.69,1.01,1.01
-72441,05,021,05021,94,54,672243,672243,94,54,672243,672243,16083,8031,1661312409,1656206452,100,100,100,100,0.58,0.67,0.04,0.04
-72442,05,093,05093,4886,2065,291413716,291284477,4886,2065,291413716,291284477,46480,20459,2382302353,2332475973,100,100,100,100,10.51,10.09,12.23,12.49
-72443,05,055,05055,2986,1273,151707205,151626856,2986,1273,151707205,151626856,42090,17892,1501060001,1496233476,100,100,100,100,7.09,7.11,10.11,10.13
-72444,05,121,05121,1821,892,250625301,249319153,1821,892,250625301,249319153,17969,8513,1699134452,1689166005,100,100,100,100,10.13,10.48,14.75,14.76
-72445,05,075,05075,91,47,1165462,1165462,91,47,1165462,1165462,17415,8000,1534157983,1521913098,100,100,100,100,0.52,0.59,0.08,0.08
-72447,05,031,05031,1964,888,145441600,144688668,1964,888,145441600,144688668,96443,40515,1845818454,1831656075,100,100,100,100,2.04,2.19,7.88,7.9
-72449,05,121,05121,213,102,7428036,7428036,213,102,7428036,7428036,17969,8513,1699134452,1689166005,100,100,100,100,1.19,1.2,0.44,0.44
-72450,05,031,05031,74,33,9050711,9049593,36033,15267,746234854,743344414,96443,40515,1845818454,1831656075,0.21,0.22,1.21,1.22,0.08,0.08,0.49,0.49
-72450,05,055,05055,35959,15234,737184143,734294821,36033,15267,746234854,743344414,42090,17892,1501060001,1496233476,99.79,99.78,98.79,98.78,85.43,85.14,49.11,49.08
-72453,05,021,05021,198,190,72280285,72280285,198,190,72280285,72280285,16083,8031,1661312409,1656206452,100,100,100,100,1.23,2.37,4.35,4.36
-72454,05,021,05021,5127,2559,264283018,263551165,5127,2559,264283018,263551165,16083,8031,1661312409,1656206452,100,100,100,100,31.88,31.86,15.91,15.91
-72455,05,121,05121,12518,5804,739159889,734046490,12518,5804,739159889,734046490,17969,8513,1699134452,1689166005,100,100,100,100,69.66,68.18,43.5,43.46
-72456,05,021,05021,585,289,120242536,119960556,585,289,120242536,119960556,16083,8031,1661312409,1656206452,100,100,100,100,3.64,3.6,7.24,7.24
-72457,05,075,05075,132,71,509281,509281,132,71,509281,509281,17415,8000,1534157983,1521913098,100,100,100,100,0.76,0.89,0.03,0.03
-72458,05,075,05075,755,396,70829822,67619065,755,396,70829822,67619065,17415,8000,1534157983,1521913098,100,100,100,100,4.34,4.95,4.62,4.44
-72459,05,075,05075,868,493,99891252,99290243,1329,784,258212078,257543703,17415,8000,1534157983,1521913098,65.31,62.88,38.69,38.55,4.98,6.16,6.51,6.52
-72459,05,121,05121,228,140,101567942,101567942,1329,784,258212078,257543703,17969,8513,1699134452,1689166005,17.16,17.86,39.34,39.44,1.27,1.64,5.98,6.01
-72459,05,135,05135,233,151,56752884,56685518,1329,784,258212078,257543703,17264,9822,1570661966,1565489388,17.53,19.26,21.98,22.01,1.35,1.54,3.61,3.62
-72460,05,121,05121,832,423,154877329,154789487,832,423,154877329,154789487,17969,8513,1699134452,1689166005,100,100,100,100,4.63,4.97,9.12,9.16
-72461,05,021,05021,3580,1745,378055403,377469507,3789,1839,470219454,469633558,16083,8031,1661312409,1656206452,94.48,94.89,80.4,80.38,22.26,21.73,22.76,22.79
-72461,05,055,05055,209,94,92164051,92164051,3789,1839,470219454,469633558,42090,17892,1501060001,1496233476,5.52,5.11,19.6,19.62,0.5,0.53,6.14,6.16
-72462,05,121,05121,408,204,16510079,15626271,408,204,16510079,15626271,17969,8513,1699134452,1689166005,100,100,100,100,2.27,2.4,0.97,0.93
-72464,05,021,05021,98,51,334543,334543,98,51,334543,334543,16083,8031,1661312409,1656206452,100,100,100,100,0.61,0.64,0.02,0.02
-72466,05,075,05075,900,448,184777108,184223663,1481,758,320443081,319751089,17415,8000,1534157983,1521913098,60.77,59.1,57.66,57.61,5.17,5.6,12.04,12.1
-72466,05,135,05135,581,310,135665973,135527426,1481,758,320443081,319751089,17264,9822,1570661966,1565489388,39.23,40.9,42.34,42.39,3.37,3.16,8.64,8.66
-72467,05,031,05031,303,0,86365,86365,303,0,86365,86365,96443,40515,1845818454,1831656075,100,0,100,100,0.31,0,0,0
-72469,05,075,05075,993,473,152517379,150477224,1124,547,201612059,199094019,17415,8000,1534157983,1521913098,88.35,86.47,75.65,75.58,5.7,5.91,9.94,9.89
-72469,05,135,05135,131,74,49094680,48616795,1124,547,201612059,199094019,17264,9822,1570661966,1565489388,11.65,13.53,24.35,24.42,0.76,0.75,3.13,3.11
-72470,05,021,05021,319,157,88183821,87247613,319,157,88183821,87247613,16083,8031,1661312409,1656206452,100,100,100,100,1.98,1.95,5.31,5.27
-72471,05,067,05067,1108,526,219482263,217646547,1108,526,219482263,217646547,17997,7601,1661480593,1641892684,100,100,100,100,6.16,6.92,13.21,13.26
-72472,05,111,05111,9447,4130,459524870,456108119,9447,4130,459524870,456108119,24583,10923,1977740491,1964217602,100,100,100,100,38.43,37.81,23.23,23.22
-72473,05,067,05067,2376,1085,149974222,149620235,2376,1085,149974222,149620235,17997,7601,1661480593,1641892684,100,100,100,100,13.2,14.27,9.03,9.11
-72476,05,075,05075,7058,3030,482642749,481771194,7155,3074,518011234,517139679,17415,8000,1534157983,1521913098,98.64,98.57,93.17,93.16,40.53,37.88,31.46,31.66
-72476,05,121,05121,97,44,35368485,35368485,7155,3074,518011234,517139679,17969,8513,1699134452,1689166005,1.36,1.43,6.83,6.84,0.54,0.52,2.08,2.09
-72478,05,121,05121,390,175,132340921,132202109,390,175,132340921,132202109,17969,8513,1699134452,1689166005,100,100,100,100,2.17,2.06,7.79,7.83
-72479,05,031,05031,34,18,30009274,30008735,1489,743,513759130,508078193,96443,40515,1845818454,1831656075,2.28,2.42,5.84,5.91,0.04,0.04,1.63,1.64
-72479,05,067,05067,121,65,30928560,30525471,1489,743,513759130,508078193,17997,7601,1661480593,1641892684,8.13,8.75,6.02,6.01,0.67,0.86,1.86,1.86
-72479,05,111,05111,1334,660,452821296,447543987,1489,743,513759130,508078193,24583,10923,1977740491,1964217602,89.59,88.83,88.14,88.09,5.43,6.04,22.9,22.78
-72482,05,135,05135,1241,954,179006784,177967347,1241,954,179006784,177967347,17264,9822,1570661966,1565489388,100,100,100,100,7.19,9.71,11.4,11.37
-72501,05,063,05063,25099,11042,795240771,786131316,25099,11042,795240771,786131316,36647,16187,1998222877,1978628920,100,100,100,100,68.49,68.22,39.8,39.73
-72512,05,049,05049,17,6,334833,324060,2234,1410,59956673,56621144,12245,6778,1606641589,1601114128,0.76,0.43,0.56,0.57,0.14,0.09,0.02,0.02
-72512,05,065,05065,2217,1404,59621840,56297084,2234,1410,59956673,56621144,13696,7232,1512599232,1503686209,99.24,99.57,99.44,99.43,16.19,19.41,3.94,3.74
-72513,05,049,05049,972,429,83453089,83415455,2856,1300,244339833,244302199,12245,6778,1606641589,1601114128,34.03,33,34.15,34.14,7.94,6.33,5.19,5.21
-72513,05,065,05065,137,79,38974397,38974397,2856,1300,244339833,244302199,13696,7232,1512599232,1503686209,4.8,6.08,15.95,15.95,1,1.09,2.58,2.59
-72513,05,135,05135,1747,792,121912347,121912347,2856,1300,244339833,244302199,17264,9822,1570661966,1565489388,61.17,60.92,49.89,49.9,10.12,8.06,7.76,7.79
-72515,05,049,05049,63,36,25279059,25279059,63,36,25279059,25279059,12245,6778,1606641589,1601114128,100,100,100,100,0.51,0.53,1.57,1.58
-72517,05,065,05065,487,248,88768896,88768896,487,248,88768896,88768896,13696,7232,1512599232,1503686209,100,100,100,100,3.56,3.43,5.87,5.9
-72519,05,005,05005,664,400,190809254,184311302,3150,1478,395316218,385392790,41513,22580,1519584763,1435587546,21.08,27.06,48.27,47.82,1.6,1.77,12.56,12.84
-72519,05,065,05065,2304,969,117579111,116003674,3150,1478,395316218,385392790,13696,7232,1512599232,1503686209,73.14,65.56,29.74,30.1,16.82,13.4,7.77,7.71
-72519,05,137,05137,182,109,86927853,85077814,3150,1478,395316218,385392790,12394,6712,1578420300,1570581314,5.78,7.37,21.99,22.08,1.47,1.62,5.51,5.42
-72520,05,049,05049,309,149,66048377,66048377,309,149,66048377,66048377,12245,6778,1606641589,1601114128,100,100,100,100,2.52,2.2,4.11,4.13
-72521,05,063,05063,1274,559,100968462,100729781,4814,2140,325542110,325250421,36647,16187,1998222877,1978628920,26.46,26.12,31.02,30.97,3.48,3.45,5.05,5.09
-72521,05,135,05135,3540,1581,224573648,224520640,4814,2140,325542110,325250421,17264,9822,1570661966,1565489388,73.54,73.88,68.98,69.03,20.51,16.1,14.3,14.34
-72522,05,063,05063,405,150,15217352,15217352,405,150,15217352,15217352,36647,16187,1998222877,1978628920,100,100,100,100,1.11,0.93,0.76,0.77
-72523,05,023,05023,1002,480,85003563,84950590,1091,521,103379349,103326376,25970,15826,1533071038,1434055831,91.84,92.13,82.22,82.22,3.86,3.03,5.54,5.92
-72523,05,063,05063,89,41,18375786,18375786,1091,521,103379349,103326376,36647,16187,1998222877,1978628920,8.16,7.87,17.78,17.78,0.24,0.25,0.92,0.93
-72524,05,063,05063,376,184,147439391,145284119,376,184,147439391,145284119,36647,16187,1998222877,1978628920,100,100,100,100,1.03,1.14,7.38,7.34
-72526,05,063,05063,154,90,14372604,14372604,154,90,14372604,14372604,36647,16187,1998222877,1978628920,100,100,100,100,0.42,0.56,0.72,0.73
-72527,05,063,05063,583,252,10264810,10264810,583,252,10264810,10264810,36647,16187,1998222877,1978628920,100,100,100,100,1.59,1.56,0.51,0.52
-72528,05,065,05065,65,38,10355500,10355500,65,38,10355500,10355500,13696,7232,1512599232,1503686209,100,100,100,100,0.47,0.53,0.68,0.69
-72529,05,049,05049,830,485,22728205,21886234,4726,2985,53060439,50788994,12245,6778,1606641589,1601114128,17.56,16.25,42.83,43.09,6.78,7.16,1.41,1.37
-72529,05,135,05135,3896,2500,30332234,28902760,4726,2985,53060439,50788994,17264,9822,1570661966,1565489388,82.44,83.75,57.17,56.91,22.57,25.45,1.93,1.85
-72530,05,023,05023,1836,1235,282180310,265172523,1987,1303,306399089,289338141,25970,15826,1533071038,1434055831,92.4,94.78,92.1,91.65,7.07,7.8,18.41,18.49
-72530,05,137,05137,151,68,24218779,24165618,1987,1303,306399089,289338141,12394,6712,1578420300,1570581314,7.6,5.22,7.9,8.35,1.22,1.01,1.53,1.54
-72531,05,005,05005,388,484,69315985,53196431,800,825,167000563,148299691,41513,22580,1519584763,1435587546,48.5,58.67,41.51,35.87,0.93,2.14,4.56,3.71
-72531,05,049,05049,412,341,97684578,95103260,800,825,167000563,148299691,12245,6778,1606641589,1601114128,51.5,41.33,58.49,64.13,3.36,5.03,6.08,5.94
-72532,05,065,05065,186,82,41212110,41184833,1712,919,268857107,268684014,13696,7232,1512599232,1503686209,10.86,8.92,15.33,15.33,1.36,1.13,2.72,2.74
-72532,05,135,05135,1526,837,227644997,227499181,1712,919,268857107,268684014,17264,9822,1570661966,1565489388,89.14,91.08,84.67,84.67,8.84,8.52,14.49,14.53
-72533,05,137,05137,416,236,111354182,111335849,416,236,111354182,111335849,12394,6712,1578420300,1570581314,100,100,100,100,3.36,3.52,7.05,7.09
-72534,05,023,05023,103,47,18724497,18724497,1320,578,160191195,160150917,25970,15826,1533071038,1434055831,7.8,8.13,11.69,11.69,0.4,0.3,1.22,1.31
-72534,05,063,05063,1217,531,141466698,141426420,1320,578,160191195,160150917,36647,16187,1998222877,1978628920,92.2,91.87,88.31,88.31,3.32,3.28,7.08,7.15
-72536,05,065,05065,429,239,65788690,65783792,429,239,65788690,65783792,13696,7232,1512599232,1503686209,100,100,100,100,3.13,3.3,4.35,4.37
-72537,05,005,05005,805,583,85480956,74224625,805,583,85480956,74224625,41513,22580,1519584763,1435587546,100,100,100,100,1.94,2.58,5.63,5.17
-72538,05,005,05005,13,5,365982,365982,432,224,120573491,120572343,41513,22580,1519584763,1435587546,3.01,2.23,0.3,0.3,0.03,0.02,0.02,0.03
-72538,05,049,05049,419,219,120207509,120206361,432,224,120573491,120572343,12245,6778,1606641589,1601114128,96.99,97.77,99.7,99.7,3.42,3.23,7.48,7.51
-72539,05,049,05049,253,133,42761019,42761019,253,133,42761019,42761019,12245,6778,1606641589,1601114128,100,100,100,100,2.07,1.96,2.66,2.67
-72540,05,065,05065,149,109,48799506,48003208,149,109,48799506,48003208,13696,7232,1512599232,1503686209,100,100,100,100,1.09,1.51,3.23,3.19
-72542,05,049,05049,543,426,84215112,83798554,3826,2470,413036114,410808420,12245,6778,1606641589,1601114128,14.19,17.25,20.39,20.4,4.43,6.29,5.24,5.23
-72542,05,135,05135,3283,2044,328821002,327009866,3826,2470,413036114,410808420,17264,9822,1570661966,1565489388,85.81,82.75,79.61,79.6,19.02,20.81,20.94,20.89
-72543,05,023,05023,12535,6956,313418634,293494095,12535,6956,313418634,293494095,25970,15826,1533071038,1434055831,100,100,100,100,48.27,43.95,20.44,20.47
-72544,05,005,05005,636,792,80215927,71504758,636,792,80215927,71504758,41513,22580,1519584763,1435587546,100,100,100,100,1.53,3.51,5.28,4.98
-72546,05,023,05023,181,102,10055449,10055449,181,102,10055449,10055449,25970,15826,1533071038,1434055831,100,100,100,100,0.7,0.64,0.66,0.7
-72550,05,023,05023,255,111,19975382,19973903,985,449,120856634,119227815,25970,15826,1533071038,1434055831,25.89,24.72,16.53,16.75,0.98,0.7,1.3,1.39
-72550,05,063,05063,682,308,85624771,83999222,985,449,120856634,119227815,36647,16187,1998222877,1978628920,69.24,68.6,70.85,70.45,1.86,1.9,4.29,4.25
-72550,05,137,05137,48,30,15256481,15254690,985,449,120856634,119227815,12394,6712,1578420300,1570581314,4.87,6.68,12.62,12.79,0.39,0.45,0.97,0.97
-72553,05,063,05063,69,34,905267,905267,69,34,905267,905267,36647,16187,1998222877,1978628920,100,100,100,100,0.19,0.21,0.05,0.05
-72554,05,049,05049,2668,1693,337262801,336344390,2923,1835,400175534,399257123,12245,6778,1606641589,1601114128,91.28,92.26,84.28,84.24,21.79,24.98,20.99,21.01
-72554,05,135,05135,255,142,62912733,62912733,2923,1835,400175534,399257123,17264,9822,1570661966,1565489388,8.72,7.74,15.72,15.76,1.48,1.45,4.01,4.02
-72555,05,137,05137,182,108,35729956,34625811,182,108,35729956,34625811,12394,6712,1578420300,1570581314,100,100,100,100,1.47,1.61,2.26,2.2
-72556,05,065,05065,3375,1808,399378142,398116640,3375,1808,399378142,398116640,13696,7232,1512599232,1503686209,100,100,100,100,24.64,25,26.4,26.48
-72560,05,065,05065,151,173,7040802,5499152,8754,4886,850077169,844438834,13696,7232,1512599232,1503686209,1.72,3.54,0.83,0.65,1.1,2.39,0.47,0.37
-72560,05,137,05137,8603,4713,843036367,838939682,8754,4886,850077169,844438834,12394,6712,1578420300,1570581314,98.28,96.46,99.17,99.35,69.41,70.22,53.41,53.42
-72561,05,065,05065,981,484,132636516,132353027,981,484,132636516,132353027,13696,7232,1512599232,1503686209,100,100,100,100,7.16,6.69,8.77,8.8
-72562,05,063,05063,2238,1041,217859487,213712470,2238,1041,217859487,213712470,36647,16187,1998222877,1978628920,100,100,100,100,6.11,6.43,10.9,10.8
-72564,05,063,05063,546,241,77029667,76347616,546,241,77029667,76347616,36647,16187,1998222877,1978628920,100,100,100,100,1.49,1.49,3.85,3.86
-72565,05,065,05065,999,482,99139409,99111186,999,482,99139409,99111186,13696,7232,1512599232,1503686209,100,100,100,100,7.29,6.66,6.55,6.59
-72566,05,065,05065,624,318,121761984,121761984,624,318,121761984,121761984,13696,7232,1512599232,1503686209,100,100,100,100,4.56,4.4,8.05,8.1
-72567,05,137,05137,262,143,29960641,29960641,262,143,29960641,29960641,12394,6712,1578420300,1570581314,100,100,100,100,2.11,2.13,1.9,1.91
-72568,05,063,05063,1662,735,120583004,120583004,1662,735,120583004,120583004,36647,16187,1998222877,1978628920,100,100,100,100,4.54,4.54,6.03,6.09
-72569,05,135,05135,468,256,107511041,107511041,468,256,107511041,107511041,17264,9822,1570661966,1565489388,100,100,100,100,2.71,2.61,6.84,6.87
-72571,05,063,05063,369,150,48236416,47808748,369,150,48236416,47808748,36647,16187,1998222877,1978628920,100,100,100,100,1.01,0.93,2.41,2.42
-72572,05,063,05063,29,17,8403764,8403764,228,101,36804688,36804688,36647,16187,1998222877,1978628920,12.72,16.83,22.83,22.83,0.08,0.11,0.42,0.42
-72572,05,075,05075,199,84,28400924,28400924,228,101,36804688,36804688,17415,8000,1534157983,1521913098,87.28,83.17,77.17,77.17,1.14,1.05,1.85,1.87
-72573,05,065,05065,278,138,38257351,38187858,278,138,38257351,38187858,13696,7232,1512599232,1503686209,100,100,100,100,2.03,1.91,2.53,2.54
-72576,05,049,05049,3868,1943,414270838,413972056,3868,1943,414270838,413972056,12245,6778,1606641589,1601114128,100,100,100,100,31.59,28.67,25.78,25.86
-72577,05,065,05065,396,190,75733600,75733600,700,341,109113194,109113194,13696,7232,1512599232,1503686209,56.57,55.72,69.41,69.41,2.89,2.63,5.01,5.04
-72577,05,135,05135,304,151,33379594,33379594,700,341,109113194,109113194,17264,9822,1570661966,1565489388,43.43,44.28,30.59,30.59,1.76,1.54,2.13,2.13
-72578,05,049,05049,212,102,55444499,55444499,212,102,55444499,55444499,12245,6778,1606641589,1601114128,100,100,100,100,1.73,1.5,3.45,3.46
-72579,05,063,05063,1228,522,84671966,84624987,1287,552,97726015,97669127,36647,16187,1998222877,1978628920,95.42,94.57,86.64,86.64,3.35,3.22,4.24,4.28
-72579,05,135,05135,59,30,13054049,13044140,1287,552,97726015,97669127,17264,9822,1570661966,1565489388,4.58,5.43,13.36,13.36,0.34,0.31,0.83,0.83
-72581,05,023,05023,1030,679,32222998,28580289,1030,679,32222998,28580289,25970,15826,1533071038,1434055831,100,100,100,100,3.97,4.29,2.1,1.99
-72583,05,049,05049,1679,816,256951670,256530804,1679,816,256951670,256530804,12245,6778,1606641589,1601114128,100,100,100,100,13.71,12.04,15.99,16.02
-72584,05,065,05065,568,281,82317889,82317889,568,281,82317889,82317889,13696,7232,1512599232,1503686209,100,100,100,100,4.15,3.89,5.44,5.47
-72585,05,065,05065,216,113,58228845,58228845,216,113,58228845,58228845,13696,7232,1512599232,1503686209,100,100,100,100,1.58,1.56,3.85,3.87
-72587,05,065,05065,134,77,27004644,27004644,134,77,27004644,27004644,13696,7232,1512599232,1503686209,100,100,100,100,0.98,1.06,1.79,1.8
-72601,05,009,05009,29658,13227,880071222,878606122,30163,13468,957724029,956139085,36903,16827,1558736618,1528692190,98.33,98.21,91.89,91.89,80.37,78.61,56.46,57.47
-72601,05,089,05089,175,82,30731153,30643332,30163,13468,957724029,956139085,16653,9354,1658419833,1546245256,0.58,0.61,3.21,3.2,1.05,0.88,1.85,1.98
-72601,05,101,05101,330,159,46921654,46889631,30163,13468,957724029,956139085,8330,4664,2132041875,2126110054,1.09,1.18,4.9,4.9,3.96,3.41,2.2,2.21
-72611,05,009,05009,752,325,53290002,52809123,1696,739,198298147,197771004,36903,16827,1558736618,1528692190,44.34,43.98,26.87,26.7,2.04,1.93,3.42,3.45
-72611,05,015,05015,944,414,145008145,144961881,1696,739,198298147,197771004,27446,13559,1654483657,1631917381,55.66,56.02,73.13,73.3,3.44,3.05,8.76,8.88
-72616,05,015,05015,10441,4466,543709665,543227514,10441,4466,543709665,543227514,27446,13559,1654483657,1631917381,100,100,100,100,38.04,32.94,32.86,33.29
-72617,05,005,05005,198,123,97690239,97635859,198,123,97690239,97635859,41513,22580,1519584763,1435587546,100,100,100,100,0.48,0.54,6.43,6.8
-72619,05,089,05089,1936,1203,17618538,12029479,1936,1203,17618538,12029479,16653,9354,1658419833,1546245256,100,100,100,100,11.63,12.86,1.06,0.78
-72623,05,005,05005,648,323,72611780,65096936,648,323,72611780,65096936,41513,22580,1519584763,1435587546,100,100,100,100,1.56,1.43,4.78,4.53
-72624,05,015,05015,58,37,20767508,20739870,594,337,176507972,176292713,27446,13559,1654483657,1631917381,9.76,10.98,11.77,11.76,0.21,0.27,1.26,1.27
-72624,05,101,05101,536,300,155740464,155552843,594,337,176507972,176292713,8330,4664,2132041875,2126110054,90.24,89.02,88.23,88.24,6.43,6.43,7.3,7.32
-72626,05,005,05005,1243,770,15811039,14608264,1243,770,15811039,14608264,41513,22580,1519584763,1435587546,100,100,100,100,2.99,3.41,1.04,1.02
-72628,05,101,05101,803,471,292701534,292391910,803,471,292701534,292391910,8330,4664,2132041875,2126110054,100,100,100,100,9.64,10.1,13.73,13.75
-72629,05,141,05141,629,371,113474797,113163901,629,371,113474797,113163901,17295,10345,1875888077,1834082139,100,100,100,100,3.64,3.59,6.05,6.17
-72630,05,009,05009,197,161,6859428,2200155,197,161,6859428,2200155,36903,16827,1558736618,1528692190,100,100,100,100,0.53,0.96,0.44,0.14
-72631,05,015,05015,3709,2558,133804928,123619397,3709,2558,133804928,123619397,27446,13559,1654483657,1631917381,100,100,100,100,13.51,18.87,8.09,7.58
-72632,05,015,05015,4417,2719,260609689,251438339,4449,2734,266308490,257086038,27446,13559,1654483657,1631917381,99.28,99.45,97.86,97.8,16.09,20.05,15.75,15.41
-72632,05,087,05087,32,15,5698801,5647699,4449,2734,266308490,257086038,15717,7481,2168027626,2160711386,0.72,0.55,2.14,2.2,0.2,0.2,0.26,0.26
-72633,05,009,05009,1100,468,74544967,74524576,1833,850,244874047,244819496,36903,16827,1558736618,1528692190,60.01,55.06,30.44,30.44,2.98,2.78,4.78,4.88
-72633,05,089,05089,568,297,130994749,130968496,1833,850,244874047,244819496,16653,9354,1658419833,1546245256,30.99,34.94,53.49,53.5,3.41,3.18,7.9,8.47
-72633,05,129,05129,165,85,39334331,39326424,1833,850,244874047,244819496,8195,4900,1731433874,1725176918,9,10,16.06,16.06,2.01,1.73,2.27,2.28
-72634,05,089,05089,4670,2384,339699698,332289522,4670,2384,339699698,332289522,16653,9354,1658419833,1546245256,100,100,100,100,28.04,25.49,20.48,21.49
-72635,05,005,05005,3624,1580,76108752,75542201,3624,1580,76108752,75542201,41513,22580,1519584763,1435587546,100,100,100,100,8.73,7,5.01,5.26
-72636,05,129,05129,24,32,813462,767929,24,32,813462,767929,8195,4900,1731433874,1725176918,100,100,100,100,0.29,0.65,0.05,0.04
-72638,05,015,05015,7128,3019,453538903,452890037,7186,3056,486785908,485997788,27446,13559,1654483657,1631917381,99.19,98.79,93.17,93.19,25.97,22.27,27.41,27.75
-72638,05,101,05101,58,37,33247005,33107751,7186,3056,486785908,485997788,8330,4664,2132041875,2126110054,0.81,1.21,6.83,6.81,0.7,0.79,1.56,1.56
-72639,05,129,05129,683,434,165653959,165318081,683,434,165653959,165318081,8195,4900,1731433874,1725176918,100,100,100,100,8.33,8.86,9.57,9.58
-72640,05,101,05101,385,200,57962268,57584735,385,200,57962268,57584735,8330,4664,2132041875,2126110054,100,100,100,100,4.62,4.29,2.72,2.71
-72641,05,101,05101,2585,1463,358631973,356687214,2585,1463,358631973,356687214,8330,4664,2132041875,2126110054,100,100,100,100,31.03,31.37,16.82,16.78
-72642,05,005,05005,1979,1222,26429488,22202898,1979,1222,26429488,22202898,41513,22580,1519584763,1435587546,100,100,100,100,4.77,5.41,1.74,1.55
-72644,05,009,05009,2141,1189,222724194,208249498,2268,1254,237975458,221984841,36903,16827,1558736618,1528692190,94.4,94.82,93.59,93.81,5.8,7.07,14.29,13.62
-72644,05,089,05089,112,55,10768972,10709463,2268,1254,237975458,221984841,16653,9354,1658419833,1546245256,4.94,4.39,4.53,4.82,0.67,0.59,0.65,0.69
-72644,29,213,29213,15,10,4482292,3025880,2268,1254,237975458,221984841,51675,29255,1687739607,1638002904,0.66,0.8,1.88,1.36,0.03,0.03,0.27,0.18
-72645,05,129,05129,1474,941,315582437,314801041,1867,1192,447425807,446409003,8195,4900,1731433874,1725176918,78.95,78.94,70.53,70.52,17.99,19.2,18.23,18.25
-72645,05,137,05137,164,94,57516921,57411761,1867,1192,447425807,446409003,12394,6712,1578420300,1570581314,8.78,7.89,12.86,12.86,1.32,1.4,3.64,3.66
-72645,05,141,05141,229,157,74326449,74196201,1867,1192,447425807,446409003,17295,10345,1875888077,1834082139,12.27,13.17,16.61,16.62,1.32,1.52,3.96,4.05
-72648,05,101,05101,716,419,116308642,115712684,716,419,116308642,115712684,8330,4664,2132041875,2126110054,100,100,100,100,8.6,8.98,5.46,5.44
-72650,05,129,05129,4177,2343,677304876,675692130,4362,2437,696462594,694849848,8195,4900,1731433874,1725176918,95.76,96.14,97.25,97.24,50.97,47.82,39.12,39.17
-72650,05,137,05137,185,94,19157718,19157718,4362,2437,696462594,694849848,12394,6712,1578420300,1570581314,4.24,3.86,2.75,2.76,1.49,1.4,1.21,1.22
-72651,05,005,05005,1206,663,19156740,19129622,1206,663,19156740,19129622,41513,22580,1519584763,1435587546,100,100,100,100,2.91,2.94,1.26,1.33
-72653,05,005,05005,28424,14660,588988823,564646037,28560,14766,602344510,574500032,41513,22580,1519584763,1435587546,99.52,99.28,97.78,98.28,68.47,64.92,38.76,39.33
-72653,05,089,05089,136,106,13355687,9853995,28560,14766,602344510,574500032,16653,9354,1658419833,1546245256,0.48,0.72,2.22,1.72,0.82,1.13,0.81,0.64
-72655,05,101,05101,457,279,246091357,245415498,457,279,246091357,245415498,8330,4664,2132041875,2126110054,100,100,100,100,5.49,5.98,11.54,11.54
-72658,05,005,05005,1685,975,196599798,193122631,1685,975,196599798,193122631,41513,22580,1519584763,1435587546,100,100,100,100,4.06,4.32,12.94,13.45
-72660,05,015,05015,524,245,46450535,44446235,524,245,46450535,44446235,27446,13559,1654483657,1631917381,100,100,100,100,1.91,1.81,2.81,2.72
-72661,05,089,05089,580,418,85438995,66630442,580,418,85438995,66630442,16653,9354,1658419833,1546245256,100,100,100,100,3.48,4.47,5.15,4.31
-72662,05,009,05009,2986,1424,306709798,304032019,2986,1424,306709798,304032019,36903,16827,1558736618,1528692190,100,100,100,100,8.09,8.46,19.68,19.89
-72663,05,137,05137,361,155,58751583,58751583,361,155,58751583,58751583,12394,6712,1578420300,1570581314,100,100,100,100,2.91,2.31,3.72,3.74
-72666,05,101,05101,275,177,46579212,46372569,275,177,46579212,46372569,8330,4664,2132041875,2126110054,100,100,100,100,3.3,3.8,2.18,2.18
-72668,05,089,05089,521,411,84513019,72472305,521,411,84513019,72472305,16653,9354,1658419833,1546245256,100,100,100,100,3.13,4.39,5.1,4.69
-72669,05,129,05129,107,59,4433957,4433957,107,59,4433957,4433957,8195,4900,1731433874,1725176918,100,100,100,100,1.31,1.2,0.26,0.26
-72670,05,101,05101,99,58,43914899,43636990,99,58,43914899,43636990,8330,4664,2132041875,2126110054,100,100,100,100,1.19,1.24,2.06,2.05
-72672,05,089,05089,279,146,18272202,18198854,279,146,18272202,18198854,16653,9354,1658419833,1546245256,100,100,100,100,1.68,1.56,1.1,1.18
-72675,05,089,05089,159,107,44657004,44628424,1399,893,450673904,447373382,16653,9354,1658419833,1546245256,11.37,11.98,9.91,9.98,0.95,1.14,2.69,2.89
-72675,05,129,05129,1240,786,406016900,402744958,1399,893,450673904,447373382,8195,4900,1731433874,1725176918,88.63,88.02,90.09,90.02,15.13,16.04,23.45,23.35
-72677,05,089,05089,525,246,2191279,2190184,525,246,2191279,2190184,16653,9354,1658419833,1546245256,100,100,100,100,3.15,2.63,0.13,0.14
-72679,05,115,05115,33,17,1565296,1565296,48,34,18249265,18213810,61754,25551,2151697470,2104490517,68.75,50,8.58,8.59,0.05,0.07,0.07,0.07
-72679,05,129,05129,15,17,16683969,16648514,48,34,18249265,18213810,8195,4900,1731433874,1725176918,31.25,50,91.42,91.41,0.18,0.35,0.96,0.97
-72680,05,137,05137,807,427,96486150,96465194,807,427,96486150,96465194,12394,6712,1578420300,1570581314,100,100,100,100,6.51,6.36,6.11,6.14
-72682,05,089,05089,194,110,37206745,37200780,194,110,37206745,37200780,16653,9354,1658419833,1546245256,100,100,100,100,1.16,1.18,2.24,2.41
-72683,05,101,05101,211,102,26849197,26664462,211,102,26849197,26664462,8330,4664,2132041875,2126110054,100,100,100,100,2.53,2.19,1.26,1.25
-72685,05,009,05009,60,24,859338,859338,1365,632,132800787,132548557,36903,16827,1558736618,1528692190,4.4,3.8,0.65,0.65,0.16,0.14,0.06,0.06
-72685,05,101,05101,1177,533,100667066,100445630,1365,632,132800787,132548557,8330,4664,2132041875,2126110054,86.23,84.34,75.8,75.78,14.13,11.43,4.72,4.72
-72685,05,129,05129,128,75,31274383,31243589,1365,632,132800787,132548557,8195,4900,1731433874,1725176918,9.38,11.87,23.55,23.57,1.56,1.53,1.81,1.81
-72686,05,129,05129,182,128,74335600,74200295,182,128,74335600,74200295,8195,4900,1731433874,1725176918,100,100,100,100,2.22,2.61,4.29,4.3
-72687,05,009,05009,4,4,5193488,2526099,6461,3357,755782006,724155023,36903,16827,1558736618,1528692190,0.06,0.12,0.69,0.35,0.01,0.02,0.33,0.17
-72687,05,089,05089,6457,3353,750588518,721628924,6461,3357,755782006,724155023,16653,9354,1658419833,1546245256,99.94,99.88,99.31,99.65,38.77,35.85,45.26,46.67
-72701,05,143,05143,39782,17819,332534056,327777051,39782,17819,332534056,327777051,203065,87808,2466728851,2439681852,100,100,100,100,19.59,20.29,13.48,13.44
-72703,05,087,05087,56,24,4203394,4196447,28261,14905,118702360,115718514,15717,7481,2168027626,2160711386,0.2,0.16,3.54,3.63,0.36,0.32,0.19,0.19
-72703,05,143,05143,28205,14881,114498966,111522067,28261,14905,118702360,115718514,203065,87808,2466728851,2439681852,99.8,99.84,96.46,96.37,13.89,16.95,4.64,4.57
-72704,05,143,05143,21336,10221,198482825,196922886,21336,10221,198482825,196922886,203065,87808,2466728851,2439681852,100,100,100,100,10.51,11.64,8.05,8.07
-72712,05,007,05007,40933,16890,260531492,258978500,40933,16890,260531492,258978500,221339,93084,2289306969,2194644508,100,100,100,100,18.49,18.14,11.38,11.8
-72714,05,007,05007,11880,5539,49953397,49084288,11880,5539,49953397,49084288,221339,93084,2289306969,2194644508,100,100,100,100,5.37,5.95,2.18,2.24
-72715,05,007,05007,15051,8003,77272883,73908703,15051,8003,77272883,73908703,221339,93084,2289306969,2194644508,100,100,100,100,6.8,8.6,3.38,3.37
-72717,05,143,05143,1071,489,116054529,115602902,1071,489,116054529,115602902,203065,87808,2466728851,2439681852,100,100,100,100,0.53,0.56,4.7,4.74
-72718,05,007,05007,1465,579,16885251,16765269,1465,579,16885251,16765269,221339,93084,2289306969,2194644508,100,100,100,100,0.66,0.62,0.74,0.76
-72719,05,007,05007,8975,3519,22083301,22030067,8975,3519,22083301,22030067,221339,93084,2289306969,2194644508,100,100,100,100,4.05,3.78,0.96,1
-72721,05,087,05087,391,206,115065233,114932438,391,206,115065233,114932438,15717,7481,2168027626,2160711386,100,100,100,100,2.49,2.75,5.31,5.32
-72722,05,007,05007,3138,1291,109975883,109731152,3138,1291,109975883,109731152,221339,93084,2289306969,2194644508,100,100,100,100,1.42,1.39,4.8,5
-72727,05,087,05087,1390,742,269996445,269156829,5658,2523,404361509,402551353,15717,7481,2168027626,2160711386,24.57,29.41,66.77,66.86,8.84,9.92,12.45,12.46
-72727,05,143,05143,4268,1781,134365064,133394524,5658,2523,404361509,402551353,203065,87808,2466728851,2439681852,75.43,70.59,33.23,33.14,2.1,2.03,5.45,5.47
-72729,05,143,05143,280,123,31789273,31686556,280,123,31789273,31686556,203065,87808,2466728851,2439681852,100,100,100,100,0.14,0.14,1.29,1.3
-72730,05,143,05143,7585,3115,53887946,53617136,7585,3115,53887946,53617136,203065,87808,2466728851,2439681852,100,100,100,100,3.74,3.55,2.18,2.2
-72732,05,007,05007,4716,2576,253370226,220483520,4716,2576,253370226,220483520,221339,93084,2289306969,2194644508,100,100,100,100,2.13,2.77,11.07,10.05
-72734,05,007,05007,7322,2974,214127128,211273066,7322,2974,214127128,211273066,221339,93084,2289306969,2194644508,100,100,100,100,3.31,3.19,9.35,9.63
-72736,05,007,05007,6208,2624,229600761,229570833,6208,2624,229600761,229570833,221339,93084,2289306969,2194644508,100,100,100,100,2.8,2.82,10.03,10.46
-72738,05,007,05007,125,73,15979109,15624482,2419,1106,222237390,221033159,221339,93084,2289306969,2194644508,5.17,6.6,7.19,7.07,0.06,0.08,0.7,0.71
-72738,05,087,05087,1781,802,172410554,171675166,2419,1106,222237390,221033159,15717,7481,2168027626,2160711386,73.63,72.51,77.58,77.67,11.33,10.72,7.95,7.95
-72738,05,143,05143,513,231,33847727,33733511,2419,1106,222237390,221033159,203065,87808,2466728851,2439681852,21.21,20.89,15.23,15.26,0.25,0.26,1.37,1.38
-72739,05,007,05007,473,207,13322914,13321965,473,207,13322914,13321965,221339,93084,2289306969,2194644508,100,100,100,100,0.21,0.22,0.58,0.61
-72740,05,015,05015,225,101,50594284,50594108,9543,4302,959819632,955642292,27446,13559,1654483657,1631917381,2.36,2.35,5.27,5.29,0.82,0.74,3.06,3.1
-72740,05,087,05087,9316,4196,906335598,902160719,9543,4302,959819632,955642292,15717,7481,2168027626,2160711386,97.62,97.54,94.43,94.4,59.27,56.09,41.8,41.75
-72740,05,101,05101,2,5,2889750,2887465,9543,4302,959819632,955642292,8330,4664,2132041875,2126110054,0.02,0.12,0.3,0.3,0.02,0.11,0.14,0.14
-72742,05,087,05087,484,268,155547301,155158021,545,310,194938764,194491918,15717,7481,2168027626,2160711386,88.81,86.45,79.79,79.78,3.08,3.58,7.17,7.18
-72742,05,101,05101,61,42,39391463,39333897,545,310,194938764,194491918,8330,4664,2132041875,2126110054,11.19,13.55,20.21,20.22,0.73,0.9,1.85,1.85
-72744,05,143,05143,5343,2347,206270404,204647973,5343,2347,206270404,204647973,203065,87808,2466728851,2439681852,100,100,100,100,2.63,2.67,8.36,8.39
-72745,05,007,05007,11376,4641,91123153,85423282,11376,4641,91123153,85423282,221339,93084,2289306969,2194644508,100,100,100,100,5.14,4.99,3.98,3.89
-72747,05,007,05007,152,60,14459760,14459760,152,60,14459760,14459760,221339,93084,2289306969,2194644508,100,100,100,100,0.07,0.06,0.63,0.66
-72749,05,143,05143,84,30,3428750,3410844,84,30,3428750,3410844,203065,87808,2466728851,2439681852,100,100,100,100,0.04,0.03,0.14,0.14
-72751,05,007,05007,6434,2543,64345569,64331721,6434,2543,64345569,64331721,221339,93084,2289306969,2194644508,100,100,100,100,2.91,2.73,2.81,2.93
-72752,05,071,05071,49,50,86884341,86772695,293,233,309296373,308838545,25540,11311,1768298701,1708883157,16.72,21.46,28.09,28.1,0.19,0.44,4.91,5.08
-72752,05,087,05087,221,162,154343505,154180861,293,233,309296373,308838545,15717,7481,2168027626,2160711386,75.43,69.53,49.9,49.92,1.41,2.17,7.12,7.14
-72752,05,101,05101,23,21,68068527,67884989,293,233,309296373,308838545,8330,4664,2132041875,2126110054,7.85,9.01,22.01,21.98,0.28,0.45,3.19,3.19
-72753,05,143,05143,7936,3408,234103775,231928531,7936,3408,234103775,231928531,203065,87808,2466728851,2439681852,100,100,100,100,3.91,3.88,9.49,9.51
-72756,05,007,05007,38199,16646,344588938,304378315,38455,16779,401116368,360865747,221339,93084,2289306969,2194644508,99.33,99.21,85.91,84.35,17.26,17.88,15.05,13.87
-72756,05,087,05087,256,133,56527430,56487432,38455,16779,401116368,360865747,15717,7481,2168027626,2160711386,0.67,0.79,14.09,15.65,1.63,1.78,2.61,2.61
-72758,05,007,05007,33487,13088,82033673,78766078,33487,13088,82033673,78766078,221339,93084,2289306969,2194644508,100,100,100,100,15.13,14.06,3.58,3.59
-72760,05,087,05087,342,206,90817424,90686232,342,206,90817424,90686232,15717,7481,2168027626,2160711386,100,100,100,100,2.18,2.75,4.19,4.2
-72761,05,007,05007,21040,8113,284923730,282185476,21211,8192,298179808,295372332,221339,93084,2289306969,2194644508,99.19,99.04,95.55,95.54,9.51,8.72,12.45,12.86
-72761,05,143,05143,171,79,13256078,13186856,21211,8192,298179808,295372332,203065,87808,2466728851,2439681852,0.81,0.96,4.45,4.46,0.08,0.09,0.54,0.54
-72762,05,007,05007,3661,1289,33380012,33079691,35342,13463,156850645,155106018,221339,93084,2289306969,2194644508,10.36,9.57,21.28,21.33,1.65,1.38,1.46,1.51
-72762,05,143,05143,31681,12174,123470633,122026327,35342,13463,156850645,155106018,203065,87808,2466728851,2439681852,89.64,90.43,78.72,78.67,15.6,13.86,5.01,5
-72764,05,007,05007,5398,1756,13704653,13632554,50230,18490,168662476,161282228,221339,93084,2289306969,2194644508,10.75,9.5,8.13,8.45,2.44,1.89,0.6,0.62
-72764,05,143,05143,44832,16734,154957823,147649674,50230,18490,168662476,161282228,203065,87808,2466728851,2439681852,89.25,90.5,91.87,91.55,22.08,19.06,6.28,6.05
-72768,05,007,05007,1306,673,97645136,97615786,1306,673,97645136,97615786,221339,93084,2289306969,2194644508,100,100,100,100,0.59,0.72,4.27,4.45
-72769,05,143,05143,1162,478,106042025,105396651,1162,478,106042025,105396651,203065,87808,2466728851,2439681852,100,100,100,100,0.57,0.54,4.3,4.32
-72773,05,087,05087,874,389,77606603,77306443,953,422,80540426,80233037,15717,7481,2168027626,2160711386,91.71,92.18,96.36,96.35,5.56,5.2,3.58,3.58
-72773,05,143,05143,79,33,2933823,2926594,953,422,80540426,80233037,203065,87808,2466728851,2439681852,8.29,7.82,3.64,3.65,0.04,0.04,0.12,0.12
-72774,05,143,05143,6121,2583,304182132,302573115,6121,2583,304182132,302573115,203065,87808,2466728851,2439681852,100,100,100,100,3.01,2.94,12.33,12.4
-72776,05,087,05087,574,338,159475338,159123099,574,338,159475338,159123099,15717,7481,2168027626,2160711386,100,100,100,100,3.65,4.52,7.36,7.36
-72801,05,115,05115,18685,7479,21061744,21061744,18685,7479,21061744,21061744,61754,25551,2151697470,2104490517,100,100,100,100,30.26,29.27,0.98,1
-72802,05,115,05115,20973,8479,367444506,348511144,20973,8479,367444506,348511144,61754,25551,2151697470,2104490517,100,100,100,100,33.96,33.18,17.08,16.56
-72821,05,047,05047,1687,745,69190647,66944102,2048,889,97528243,95074508,18125,8021,1604866303,1576932379,82.37,83.8,70.94,70.41,9.31,9.29,4.31,4.25
-72821,05,071,05071,361,144,28337596,28130406,2048,889,97528243,95074508,25540,11311,1768298701,1708883157,17.63,16.2,29.06,29.59,1.41,1.27,1.6,1.65
-72823,05,029,05029,243,122,56961599,54996449,6765,2902,316032428,304815253,21273,9720,1467662405,1430319825,3.59,4.2,18.02,18.04,1.14,1.26,3.88,3.85
-72823,05,115,05115,6522,2780,259070829,249818804,6765,2902,316032428,304815253,61754,25551,2151697470,2104490517,96.41,95.8,81.98,81.96,10.56,10.88,12.04,11.87
-72824,05,149,05149,1876,770,210706020,209062439,1876,770,210706020,209062439,22185,9752,2457527525,2408647209,100,100,100,100,8.46,7.9,8.57,8.68
-72826,05,083,05083,47,16,782180,780530,47,16,782180,780530,22353,10108,1894730579,1834034439,100,100,100,100,0.21,0.16,0.04,0.04
-72827,05,149,05149,187,125,101517198,101044730,187,125,101517198,101044730,22185,9752,2457527525,2408647209,100,100,100,100,0.84,1.28,4.13,4.2
-72828,05,149,05149,114,71,54174263,53654393,114,71,54174263,53654393,22185,9752,2457527525,2408647209,100,100,100,100,0.51,0.73,2.2,2.23
-72830,05,071,05071,14896,6217,354971377,339949593,14896,6217,354971377,339949593,25540,11311,1768298701,1708883157,100,100,100,100,58.32,54.96,20.07,19.89
-72832,05,071,05071,923,431,24768580,21361258,923,431,24768580,21361258,25540,11311,1768298701,1708883157,100,100,100,100,3.61,3.81,1.4,1.25
-72833,05,127,05127,120,67,50559299,50422649,4384,1708,471590556,467699949,11233,5193,2325999487,2311098364,2.74,3.92,10.72,10.78,1.07,1.29,2.17,2.18
-72833,05,149,05149,4264,1641,421031257,417277300,4384,1708,471590556,467699949,22185,9752,2457527525,2408647209,97.26,96.08,89.28,89.22,19.22,16.83,17.13,17.32
-72834,05,083,05083,63,26,11880153,11375284,10565,4430,426612174,403926194,22353,10108,1894730579,1834034439,0.6,0.59,2.78,2.82,0.28,0.26,0.63,0.62
-72834,05,149,05149,10502,4404,414732021,392550910,10565,4430,426612174,403926194,22185,9752,2457527525,2408647209,99.4,99.41,97.22,97.18,47.34,45.16,16.88,16.3
-72835,05,083,05083,923,461,140439977,133000416,923,461,140439977,133000416,22353,10108,1894730579,1834034439,100,100,100,100,4.13,4.56,7.41,7.25
-72837,05,115,05115,7845,3465,605060248,603840184,7845,3465,605060248,603840184,61754,25551,2151697470,2104490517,100,100,100,100,12.7,13.56,28.12,28.69
-72838,05,149,05149,115,69,48291407,47912540,115,69,48291407,47912540,22185,9752,2457527525,2408647209,100,100,100,100,0.52,0.71,1.97,1.99
-72839,05,071,05071,227,186,339257976,338020094,242,202,387961623,386576750,25540,11311,1768298701,1708883157,93.8,92.08,87.45,87.44,0.89,1.64,19.19,19.78
-72839,05,101,05101,10,4,15755336,15608345,242,202,387961623,386576750,8330,4664,2132041875,2126110054,4.13,1.98,4.06,4.04,0.12,0.09,0.74,0.73
-72839,05,115,05115,5,12,32948311,32948311,242,202,387961623,386576750,61754,25551,2151697470,2104490517,2.07,5.94,8.49,8.52,0.01,0.05,1.53,1.57
-72840,05,071,05071,2149,958,142234849,135511962,2149,958,142234849,135511962,25540,11311,1768298701,1708883157,100,100,100,100,8.41,8.47,8.04,7.93
-72841,05,127,05127,227,118,134295920,133419558,227,118,134295920,133419558,11233,5193,2325999487,2311098364,100,100,100,100,2.02,2.27,5.77,5.77
-72842,05,149,05149,1478,740,249843864,243842827,1478,740,249843864,243842827,22185,9752,2457527525,2408647209,100,100,100,100,6.66,7.59,10.17,10.12
-72843,05,115,05115,2274,1089,548755538,548380042,2274,1089,548755538,548380042,61754,25551,2151697470,2104490517,100,100,100,100,3.68,4.26,25.5,26.06
-72845,05,071,05071,1216,563,51298224,29918465,1216,563,51298224,29918465,25540,11311,1768298701,1708883157,100,100,100,100,4.76,4.98,2.9,1.75
-72846,05,071,05071,3869,1713,237139711,228844520,3913,1732,257631558,249329330,25540,11311,1768298701,1708883157,98.88,98.9,92.05,91.78,15.15,15.14,13.41,13.39
-72846,05,115,05115,44,19,20491847,20484810,3913,1732,257631558,249329330,61754,25551,2151697470,2104490517,1.12,1.1,7.95,8.22,0.07,0.07,0.95,0.97
-72847,05,071,05071,780,357,30282041,27962844,2850,1252,128629402,112297264,25540,11311,1768298701,1708883157,27.37,28.51,23.54,24.9,3.05,3.16,1.71,1.64
-72847,05,115,05115,2070,895,98347361,84334420,2850,1252,128629402,112297264,61754,25551,2151697470,2104490517,72.63,71.49,76.46,75.1,3.35,3.5,4.57,4.01
-72851,05,083,05083,572,311,123477251,120580120,572,311,123477251,120580120,22353,10108,1894730579,1834034439,100,100,100,100,2.56,3.08,6.52,6.57
-72852,05,071,05071,287,173,185706603,185464826,315,199,219715734,219468288,25540,11311,1768298701,1708883157,91.11,86.93,84.52,84.51,1.12,1.53,10.5,10.85
-72852,05,101,05101,28,26,34009131,34003462,315,199,219715734,219468288,8330,4664,2132041875,2126110054,8.89,13.07,15.48,15.49,0.34,0.56,1.6,1.6
-72853,05,105,05105,132,64,25651090,25651090,2217,994,157845003,156822908,10445,4907,1451774522,1428125735,5.95,6.44,16.25,16.36,1.26,1.3,1.77,1.8
-72853,05,149,05149,2085,930,132193913,131171818,2217,994,157845003,156822908,22185,9752,2457527525,2408647209,94.05,93.56,83.75,83.64,9.4,9.54,5.38,5.45
-72854,05,071,05071,559,390,208597684,208357026,703,496,374140949,373728699,25540,11311,1768298701,1708883157,79.52,78.63,55.75,55.75,2.19,3.45,11.8,12.19
-72854,05,101,05101,144,106,165543265,165371673,703,496,374140949,373728699,8330,4664,2132041875,2126110054,20.48,21.37,44.25,44.25,1.73,2.27,7.76,7.78
-72855,05,047,05047,35,16,5630919,5630919,6314,2964,471567791,468232197,18125,8021,1604866303,1576932379,0.55,0.54,1.19,1.2,0.19,0.2,0.35,0.36
-72855,05,083,05083,6279,2948,465936872,462601278,6314,2964,471567791,468232197,22353,10108,1894730579,1834034439,99.45,99.46,98.81,98.8,28.09,29.17,24.59,25.22
-72856,05,101,05101,430,262,280769132,280558306,464,306,336121777,335906339,8330,4664,2132041875,2126110054,92.67,85.62,83.53,83.52,5.16,5.62,13.17,13.2
-72856,05,115,05115,34,44,55352645,55348033,464,306,336121777,335906339,61754,25551,2151697470,2104490517,7.33,14.38,16.47,16.48,0.06,0.17,2.57,2.63
-72857,05,105,05105,309,194,391910297,388346389,1430,933,855544036,843277994,10445,4907,1451774522,1428125735,21.61,20.79,45.81,46.05,2.96,3.95,27,27.19
-72857,05,149,05149,1121,739,463633739,454931605,1430,933,855544036,843277994,22185,9752,2457527525,2408647209,78.39,79.21,54.19,53.95,5.05,7.58,18.87,18.89
-72858,05,115,05115,3178,1214,67476255,65063409,3178,1214,67476255,65063409,61754,25551,2151697470,2104490517,100,100,100,100,5.15,4.75,3.14,3.09
-72860,05,149,05149,375,212,92123890,91628834,375,212,92123890,91628834,22185,9752,2457527525,2408647209,100,100,100,100,1.69,2.17,3.75,3.8
-72863,05,083,05083,1582,774,162330683,134250974,1582,774,162330683,134250974,22353,10108,1894730579,1834034439,100,100,100,100,7.08,7.66,8.57,7.32
-72865,05,083,05083,1366,497,72949042,72543168,1366,497,72949042,72543168,22353,10108,1894730579,1834034439,100,100,100,100,6.11,4.92,3.85,3.96
-72901,05,131,05131,21591,10306,24049843,22734322,21591,10306,24049843,22734322,125744,54651,1414549470,1377643728,100,100,100,100,17.17,18.86,1.7,1.65
-72903,05,131,05131,26148,12091,46901524,43404896,26148,12091,46901524,43404896,125744,54651,1414549470,1377643728,100,100,100,100,20.79,22.12,3.32,3.15
-72904,05,131,05131,21893,8447,38578611,33982447,21893,8447,38578611,33982447,125744,54651,1414549470,1377643728,100,100,100,100,17.41,15.46,2.73,2.47
-72908,05,131,05131,13378,5779,21129310,21013520,13378,5779,21129310,21013520,125744,54651,1414549470,1377643728,100,100,100,100,10.64,10.57,1.49,1.53
-72916,05,131,05131,7131,2971,90360993,89645642,7131,2971,90360993,89645642,125744,54651,1414549470,1377643728,100,100,100,100,5.67,5.44,6.39,6.51
-72921,05,033,05033,13787,5521,228425866,222392534,13787,5521,228425866,222392534,61948,26115,1564980665,1536106675,100,100,100,100,22.26,21.14,14.6,14.48
-72923,05,131,05131,4735,2094,19870119,19440143,4735,2094,19870119,19440143,125744,54651,1414549470,1377643728,100,100,100,100,3.77,3.83,1.4,1.41
-72926,05,127,05127,545,280,215978327,214769166,545,280,215978327,214769166,11233,5193,2325999487,2311098364,100,100,100,100,4.85,5.39,9.29,9.29
-72927,05,083,05083,8101,3565,575558344,567945356,8701,3842,812988933,803868587,22353,10108,1894730579,1834034439,93.1,92.79,70.8,70.65,36.24,35.27,30.38,30.97
-72927,05,127,05127,415,197,226793700,226212141,8701,3842,812988933,803868587,11233,5193,2325999487,2311098364,4.77,5.13,27.9,28.14,3.69,3.79,9.75,9.79
-72927,05,131,05131,185,80,10636889,9711090,8701,3842,812988933,803868587,125744,54651,1414549470,1377643728,2.13,2.08,1.31,1.21,0.15,0.15,0.75,0.7
-72928,05,047,05047,755,328,60672042,60511932,755,328,60672042,60511932,18125,8021,1604866303,1576932379,100,100,100,100,4.17,4.09,3.78,3.84
-72930,05,047,05047,320,167,78474296,74350370,320,167,78474296,74350370,18125,8021,1604866303,1576932379,100,100,100,100,1.77,2.08,4.89,4.71
-72932,05,033,05033,1597,656,48639358,48639358,1597,656,48639358,48639358,61948,26115,1564980665,1536106675,100,100,100,100,2.58,2.51,3.11,3.17
-72933,05,047,05047,3865,1677,235205043,234276731,4999,2162,296993018,295420584,18125,8021,1604866303,1576932379,77.32,77.57,79.2,79.3,21.32,20.91,14.66,14.86
-72933,05,083,05083,50,28,13246801,13093020,4999,2162,296993018,295420584,22353,10108,1894730579,1834034439,1,1.3,4.46,4.43,0.22,0.28,0.7,0.71
-72933,05,131,05131,1084,457,48541174,48050833,4999,2162,296993018,295420584,125744,54651,1414549470,1377643728,21.68,21.14,16.34,16.27,0.86,0.84,3.43,3.49
-72934,05,033,05033,1047,569,178370749,178350809,1047,569,178370749,178350809,61948,26115,1564980665,1536106675,100,100,100,100,1.69,2.18,11.4,11.61
-72935,05,033,05033,577,234,8480615,8480615,577,234,8480615,8480615,61948,26115,1564980665,1536106675,100,100,100,100,0.93,0.9,0.54,0.55
-72936,05,131,05131,14527,5865,229977150,227293459,14527,5865,229977150,227293459,125744,54651,1414549470,1377643728,100,100,100,100,11.55,10.73,16.26,16.5
-72937,05,131,05131,3858,1688,170424659,167583484,3858,1688,170424659,167583484,125744,54651,1414549470,1377643728,100,100,100,100,3.07,3.09,12.05,12.16
-72938,05,131,05131,1391,643,130590163,129814415,1391,643,130590163,129814415,125744,54651,1414549470,1377643728,100,100,100,100,1.11,1.18,9.23,9.42
-72940,05,131,05131,2515,1149,115489188,114231266,2515,1149,115489188,114231266,125744,54651,1414549470,1377643728,100,100,100,100,2,2.1,8.16,8.29
-72941,05,131,05131,5251,2164,150467629,139304939,5251,2164,150467629,139304939,125744,54651,1414549470,1377643728,100,100,100,100,4.18,3.96,10.64,10.11
-72943,05,083,05083,2600,1139,250398843,247072408,2646,1178,262464713,255681175,22353,10108,1894730579,1834034439,98.26,96.69,95.4,96.63,11.63,11.27,13.22,13.47
-72943,05,149,05149,46,39,12065870,8608767,2646,1178,262464713,255681175,22185,9752,2457527525,2408647209,1.74,3.31,4.6,3.37,0.21,0.4,0.49,0.36
-72944,05,127,05127,1176,510,80947132,80596457,2919,1288,206601482,204850306,11233,5193,2325999487,2311098364,40.29,39.6,39.18,39.34,10.47,9.82,3.48,3.49
-72944,05,131,05131,1743,778,125654350,124253849,2919,1288,206601482,204850306,125744,54651,1414549470,1377643728,59.71,60.4,60.82,60.66,1.39,1.42,8.88,9.02
-72945,05,131,05131,314,139,1838772,1764176,314,139,1838772,1764176,125744,54651,1414549470,1377643728,100,100,100,100,0.25,0.25,0.13,0.13
-72946,05,033,05033,3654,1812,251898026,248853153,3654,1812,251898026,248853153,61948,26115,1564980665,1536106675,100,100,100,100,5.9,6.94,16.1,16.2
-72947,05,033,05033,3156,1465,112424303,111352083,4433,2065,335014458,328187016,61948,26115,1564980665,1536106675,71.19,70.94,33.56,33.93,5.09,5.61,7.18,7.25
-72947,05,047,05047,1277,600,222590155,216834933,4433,2065,335014458,328187016,18125,8021,1604866303,1576932379,28.81,29.06,66.44,66.07,7.05,7.48,13.87,13.75
-72948,05,033,05033,518,284,159763983,159642965,518,284,159763983,159642965,61948,26115,1564980665,1536106675,100,100,100,100,0.84,1.09,10.21,10.39
-72949,05,047,05047,9813,4325,808195464,794139480,10177,4514,899905604,884205792,18125,8021,1604866303,1576932379,96.42,95.81,89.81,89.81,54.14,53.92,50.36,50.36
-72949,05,071,05071,224,129,78819719,78589468,10177,4514,899905604,884205792,25540,11311,1768298701,1708883157,2.2,2.86,8.76,8.89,0.88,1.14,4.46,4.6
-72949,05,083,05083,140,60,12890421,11476844,10177,4514,899905604,884205792,22353,10108,1894730579,1834034439,1.38,1.33,1.43,1.3,0.63,0.59,0.68,0.63
-72950,05,127,05127,409,221,350588541,349425135,409,221,350588541,349425135,11233,5193,2325999487,2311098364,100,100,100,100,3.64,4.26,15.07,15.12
-72951,05,047,05047,358,139,22719011,22636806,988,422,43608549,43283112,18125,8021,1604866303,1576932379,36.23,32.94,52.1,52.3,1.98,1.73,1.42,1.44
-72951,05,083,05083,630,283,20889538,20646306,988,422,43608549,43283112,22353,10108,1894730579,1834034439,63.77,67.06,47.9,47.7,2.82,2.8,1.1,1.13
-72952,05,033,05033,2945,1283,132300664,132300664,2945,1283,132300664,132300664,61948,26115,1564980665,1536106675,100,100,100,100,4.75,4.91,8.45,8.61
-72955,05,033,05033,438,184,32205473,32204963,438,184,32205473,32204963,61948,26115,1564980665,1536106675,100,100,100,100,0.71,0.7,2.06,2.1
-72956,05,033,05033,34074,14013,284852643,272993155,34074,14013,284852643,272993155,61948,26115,1564980665,1536106675,100,100,100,100,55,53.66,18.2,17.77
-72958,05,127,05127,8117,3671,910752854,900801787,8117,3671,910752854,900801787,11233,5193,2325999487,2311098364,100,100,100,100,72.26,70.69,39.16,38.98
-72959,05,033,05033,155,94,98200571,98200571,2786,1400,464023169,463072338,61948,26115,1564980665,1536106675,5.56,6.71,21.16,21.21,0.25,0.36,6.27,6.39
-72959,05,047,05047,15,24,63199576,63193113,2786,1400,464023169,463072338,18125,8021,1604866303,1576932379,0.54,1.71,13.62,13.65,0.08,0.3,3.94,4.01
-72959,05,143,05143,2616,1282,302623022,301678654,2786,1400,464023169,463072338,203065,87808,2466728851,2439681852,93.9,91.57,65.22,65.15,1.29,1.46,12.27,12.37
-73002,40,051,40051,1062,513,121821379,121133443,1062,513,121821379,121133443,52431,22219,2861676878,2850273013,100,100,100,100,2.03,2.31,4.26,4.25
-73003,40,109,40109,20617,8467,19577457,19553507,20617,8467,19577457,19553507,718633,319828,1860577017,1835832315,100,100,100,100,2.87,2.65,1.05,1.07
-73004,40,051,40051,857,358,128107242,128075354,857,358,128107242,128075354,52431,22219,2861676878,2850273013,100,100,100,100,1.63,1.61,4.48,4.49
-73005,40,015,40015,9541,3980,401367051,399764803,9541,3980,401367051,399764803,29600,13141,3341573883,3310753325,100,100,100,100,32.23,30.29,12.01,12.07
-73006,40,015,40015,2918,1279,379029135,376882568,3718,1678,456500149,453945068,29600,13141,3341573883,3310753325,78.48,76.22,83.03,83.02,9.86,9.73,11.34,11.38
-73006,40,031,40031,800,399,77471014,77062500,3718,1678,456500149,453945068,124098,50739,2806778660,2769439538,21.52,23.78,16.97,16.98,0.64,0.79,2.76,2.78
-73007,40,083,40083,515,224,16079782,16047828,2178,982,106217305,105640113,41848,17195,1939447775,1926521787,23.65,22.81,15.14,15.19,1.23,1.3,0.83,0.83
-73007,40,109,40109,1663,758,90137523,89592285,2178,982,106217305,105640113,718633,319828,1860577017,1835832315,76.35,77.19,84.86,84.81,0.23,0.24,4.84,4.88
-73008,40,109,40109,19800,9009,21677929,20189808,19800,9009,21677929,20189808,718633,319828,1860577017,1835832315,100,100,100,100,2.76,2.82,1.17,1.1
-73009,40,015,40015,1264,619,207784226,206537752,1264,619,207784226,206537752,29600,13141,3341573883,3310753325,100,100,100,100,4.27,4.71,6.22,6.24
-73010,40,051,40051,8429,3163,263186345,261898712,17563,6826,471487868,468558714,52431,22219,2861676878,2850273013,47.99,46.34,55.82,55.89,16.08,14.24,9.2,9.19
-73010,40,087,40087,9134,3663,208301523,206660002,17563,6826,471487868,468558714,34506,13996,1502849014,1478109734,52.01,53.66,44.18,44.11,26.47,26.17,13.86,13.98
-73011,40,051,40051,416,229,135507733,134561464,416,229,135507733,134561464,52431,22219,2861676878,2850273013,100,100,100,100,0.79,1.03,4.74,4.72
-73012,40,109,40109,25851,9578,92764620,92492075,25851,9578,92764620,92492075,718633,319828,1860577017,1835832315,100,100,100,100,3.6,2.99,4.99,5.04
-73013,40,109,40109,43933,18074,76854846,75840293,43933,18074,76854846,75840293,718633,319828,1860577017,1835832315,100,100,100,100,6.11,5.65,4.13,4.13
-73014,40,017,40017,1431,660,384406671,382490035,1431,660,384406671,382490035,115541,45810,2345494502,2322250237,100,100,100,100,1.24,1.44,16.39,16.47
-73015,40,015,40015,2663,1395,399899826,397461612,2877,1503,570496974,567550008,29600,13141,3341573883,3310753325,92.56,92.81,70.1,70.03,9,10.62,11.97,12.01
-73015,40,075,40075,107,53,98218020,97849400,2877,1503,570496974,567550008,9446,5216,2669506552,2629422850,3.72,3.53,17.22,17.24,1.13,1.02,3.68,3.72
-73015,40,149,40149,107,55,72379128,72238996,2877,1503,570496974,567550008,11629,5479,2612768834,2598189856,3.72,3.66,12.69,12.73,0.92,1,2.77,2.78
-73016,40,073,40073,1193,503,104371253,102855785,1850,740,166517065,164634419,15034,6409,2346574496,2326225317,64.49,67.97,62.68,62.48,7.94,7.85,4.45,4.42
-73016,40,083,40083,657,237,62145812,61778634,1850,740,166517065,164634419,41848,17195,1939447775,1926521787,35.51,32.03,37.32,37.52,1.57,1.38,3.2,3.21
-73017,40,015,40015,1060,495,93475959,93438388,1780,804,198306342,197330175,29600,13141,3341573883,3310753325,59.55,61.57,47.14,47.35,3.58,3.77,2.8,2.82
-73017,40,031,40031,16,9,7565367,7521330,1780,804,198306342,197330175,124098,50739,2806778660,2769439538,0.9,1.12,3.81,3.81,0.01,0.02,0.27,0.27
-73017,40,051,40051,704,300,97265016,96370457,1780,804,198306342,197330175,52431,22219,2861676878,2850273013,39.55,37.31,49.05,48.84,1.34,1.35,3.4,3.38
-73018,40,051,40051,19936,8995,408411995,407987108,19936,8995,408411995,407987108,52431,22219,2861676878,2850273013,100,100,100,100,38.02,40.48,14.27,14.31
-73019,40,027,40027,0,0,505504,505504,0,0,505504,505504,255755,104821,1445437044,1395398450,0,0,100,100,0,0,0.03,0.04
-73020,40,027,40027,349,143,6018205,5969827,20810,8201,156809230,156632122,255755,104821,1445437044,1395398450,1.68,1.74,3.84,3.81,0.14,0.14,0.42,0.43
-73020,40,109,40109,20461,8058,150791025,150662295,20810,8201,156809230,156632122,718633,319828,1860577017,1835832315,98.32,98.26,96.16,96.19,2.85,2.52,8.1,8.21
-73021,40,015,40015,44,22,34728823,34566479,352,184,167123413,166517938,29600,13141,3341573883,3310753325,12.5,11.96,20.78,20.76,0.15,0.17,1.04,1.04
-73021,40,149,40149,308,162,132394590,131951459,352,184,167123413,166517938,11629,5479,2612768834,2598189856,87.5,88.04,79.22,79.24,2.65,2.96,5.07,5.08
-73024,40,149,40149,637,272,116303794,116136366,637,272,116303794,116136366,11629,5479,2612768834,2598189856,100,100,100,100,5.48,4.96,4.45,4.47
-73025,40,083,40083,5140,1744,79596376,79596376,11579,3959,136527741,136325070,41848,17195,1939447775,1926521787,44.39,44.05,58.3,58.39,12.28,10.14,4.1,4.13
-73025,40,109,40109,6439,2215,56931365,56728694,11579,3959,136527741,136325070,718633,319828,1860577017,1835832315,55.61,55.95,41.7,41.61,0.9,0.69,3.06,3.09
-73026,40,027,40027,10437,4200,301355542,277322995,10437,4200,301355542,277322995,255755,104821,1445437044,1395398450,100,100,100,100,4.08,4.01,20.85,19.87
-73027,40,083,40083,943,502,102549184,99899982,1493,739,212410860,208820922,41848,17195,1939447775,1926521787,63.16,67.93,48.28,47.84,2.25,2.92,5.29,5.19
-73027,40,119,40119,550,237,109861676,108920940,1493,739,212410860,208820922,77350,33991,1805150789,1773371786,36.84,32.07,51.72,52.16,0.71,0.7,6.09,6.14
-73028,40,073,40073,144,71,86410248,85462943,3454,1699,378041770,375751231,15034,6409,2346574496,2326225317,4.17,4.18,22.86,22.74,0.96,1.11,3.68,3.67
-73028,40,083,40083,3310,1628,291631522,290288288,3454,1699,378041770,375751231,41848,17195,1939447775,1926521787,95.83,95.82,77.14,77.26,7.91,9.47,15.04,15.07
-73029,40,015,40015,1818,845,128438993,128152345,1818,845,128438993,128152345,29600,13141,3341573883,3310753325,100,100,100,100,6.14,6.43,3.84,3.87
-73030,40,049,40049,214,108,60186486,59304669,4464,2109,499414565,494033493,27576,12827,2107444502,2077482576,4.79,5.12,12.05,12,0.78,0.84,2.86,2.85
-73030,40,099,40099,4250,2001,439228079,434728824,4464,2109,499414565,494033493,13488,6746,1100989479,1078621351,95.21,94.88,87.95,88,31.51,29.66,39.89,40.3
-73032,40,099,40099,222,121,5351457,5270524,222,121,5351457,5270524,13488,6746,1100989479,1078621351,100,100,100,100,1.65,1.79,0.49,0.49
-73033,40,015,40015,387,166,16955915,16955915,387,166,16955915,16955915,29600,13141,3341573883,3310753325,100,100,100,100,1.31,1.26,0.51,0.51
-73034,40,083,40083,7695,3024,48519969,48479304,39872,16090,146795538,140302920,41848,17195,1939447775,1926521787,19.3,18.79,33.05,34.55,18.39,17.59,2.5,2.52
-73034,40,109,40109,32177,13066,98275569,91823616,39872,16090,146795538,140302920,718633,319828,1860577017,1835832315,80.7,81.21,66.95,65.45,4.48,4.09,5.28,5
-73036,40,017,40017,18595,7371,477879776,474828890,18595,7371,477879776,474828890,115541,45810,2345494502,2322250237,100,100,100,100,16.09,16.09,20.37,20.45
-73038,40,015,40015,2032,1261,403184408,387204133,2032,1261,403184408,387204133,29600,13141,3341573883,3310753325,100,100,100,100,6.86,9.6,12.07,11.7
-73040,40,011,40011,1445,678,411117983,410689643,1976,927,607852407,606446588,11943,5193,2431459537,2404607766,73.13,73.14,67.63,67.72,12.1,13.06,16.91,17.08
-73040,40,017,40017,531,249,196734424,195756945,1976,927,607852407,606446588,115541,45810,2345494502,2322250237,26.87,26.86,32.37,32.28,0.46,0.54,8.39,8.43
-73041,40,075,40075,316,221,217614142,216619132,366,249,272871268,271478445,9446,5216,2669506552,2629422850,86.34,88.76,79.75,79.79,3.35,4.24,8.15,8.24
-73041,40,149,40149,50,28,55257126,54859313,366,249,272871268,271478445,11629,5479,2612768834,2598189856,13.66,11.24,20.25,20.21,0.43,0.51,2.11,2.11
-73042,40,015,40015,1073,528,276368343,275681463,1073,528,276368343,275681463,29600,13141,3341573883,3310753325,100,100,100,100,3.63,4.02,8.27,8.33
-73043,40,011,40011,125,80,49669854,49669102,125,80,49669854,49669102,11943,5193,2431459537,2404607766,100,100,100,100,1.05,1.54,2.04,2.07
-73044,40,083,40083,20226,8813,688035837,681543245,20226,8813,688035837,681543245,41848,17195,1939447775,1926521787,100,100,100,100,48.33,51.25,35.48,35.38
-73045,40,081,40081,1627,657,66974544,66340096,10378,4228,173367006,171436547,34273,15208,2501095807,2466481063,15.68,15.54,38.63,38.7,4.75,4.32,2.68,2.69
-73045,40,109,40109,8574,3490,104408500,103112489,10378,4228,173367006,171436547,718633,319828,1860577017,1835832315,82.62,82.54,60.22,60.15,1.19,1.09,5.61,5.62
-73045,40,125,40125,177,81,1983962,1983962,10378,4228,173367006,171436547,69442,29139,2054902765,2040060341,1.71,1.92,1.14,1.16,0.25,0.28,0.1,0.1
-73047,40,015,40015,3944,1069,219196280,218502189,4774,1782,393187710,391348174,29600,13141,3341573883,3310753325,82.61,59.99,55.75,55.83,13.32,8.13,6.56,6.6
-73047,40,017,40017,830,713,173991430,172845985,4774,1782,393187710,391348174,115541,45810,2345494502,2322250237,17.39,40.01,44.25,44.17,0.72,1.56,7.42,7.44
-73048,40,011,40011,473,205,110970819,110970819,2020,1055,485360571,484572935,11943,5193,2431459537,2404607766,23.42,19.43,22.86,22.9,3.96,3.95,4.56,4.61
-73048,40,015,40015,1387,749,343221460,342433824,2020,1055,485360571,484572935,29600,13141,3341573883,3310753325,68.66,71,70.71,70.67,4.69,5.7,10.27,10.34
-73048,40,039,40039,160,101,31168292,31168292,2020,1055,485360571,484572935,27469,12204,2595346419,2561024716,7.92,9.57,6.42,6.43,0.58,0.83,1.2,1.22
-73049,40,109,40109,5910,2407,160359115,158884210,5910,2407,160359115,158884210,718633,319828,1860577017,1835832315,100,100,100,100,0.82,0.75,8.62,8.65
-73050,40,083,40083,1370,49,4159373,4159373,1370,49,4159373,4159373,41848,17195,1939447775,1926521787,100,100,100,100,3.27,0.28,0.21,0.22
-73051,40,027,40027,10264,3032,336775881,332178553,10264,3032,336775881,332178553,255755,104821,1445437044,1395398450,100,100,100,100,4.01,2.89,23.3,23.81
-73052,40,049,40049,4688,2212,280291694,277450162,6315,2895,539243679,533413291,27576,12827,2107444502,2077482576,74.24,76.41,51.98,52.01,17,17.24,13.3,13.36
-73052,40,051,40051,104,53,48795186,48625304,6315,2895,539243679,533413291,52431,22219,2861676878,2850273013,1.65,1.83,9.05,9.12,0.2,0.24,1.71,1.71
-73052,40,087,40087,1523,630,210156799,207337825,6315,2895,539243679,533413291,34506,13996,1502849014,1478109734,24.12,21.76,38.97,38.87,4.41,4.5,13.98,14.03
-73053,40,015,40015,745,356,195910169,194715811,745,356,195910169,194715811,29600,13141,3341573883,3310753325,100,100,100,100,2.52,2.71,5.86,5.88
-73054,40,081,40081,685,292,27894906,27787861,4189,1700,237151809,236721750,34273,15208,2501095807,2466481063,16.35,17.18,11.76,11.74,2,1.92,1.12,1.13
-73054,40,083,40083,270,107,45346757,45051891,4189,1700,237151809,236721750,41848,17195,1939447775,1926521787,6.45,6.29,19.12,19.03,0.65,0.62,2.34,2.34
-73054,40,109,40109,3234,1301,163910146,163881998,4189,1700,237151809,236721750,718633,319828,1860577017,1835832315,77.2,76.53,69.12,69.23,0.45,0.41,8.81,8.93
-73055,40,031,40031,8,4,5173307,5173307,9942,4435,672003401,655507116,124098,50739,2806778660,2769439538,0.08,0.09,0.77,0.79,0.01,0.01,0.18,0.19
-73055,40,051,40051,617,275,176630257,175962920,9942,4435,672003401,655507116,52431,22219,2861676878,2850273013,6.21,6.2,26.28,26.84,1.18,1.24,6.17,6.17
-73055,40,137,40137,9317,4156,490199837,474370889,9942,4435,672003401,655507116,45048,20658,2308621716,2253922744,93.71,93.71,72.95,72.37,20.68,20.12,21.23,21.05
-73056,40,047,40047,75,42,158145701,157864999,441,213,294028949,293314978,60580,26831,2745554732,2741414396,17.01,19.72,53.79,53.82,0.12,0.16,5.76,5.76
-73056,40,073,40073,16,9,30915970,30684903,441,213,294028949,293314978,15034,6409,2346574496,2326225317,3.63,4.23,10.51,10.46,0.11,0.14,1.32,1.32
-73056,40,083,40083,350,162,104967278,104765076,441,213,294028949,293314978,41848,17195,1939447775,1926521787,79.37,76.06,35.7,35.72,0.84,0.94,5.41,5.44
-73057,40,049,40049,2013,925,153050840,150750842,2384,1087,231799946,227331081,27576,12827,2107444502,2077482576,84.44,85.1,66.03,66.31,7.3,7.21,7.26,7.26
-73057,40,087,40087,371,162,78749106,76580239,2384,1087,231799946,227331081,34506,13996,1502849014,1478109734,15.56,14.9,33.97,33.69,1.08,1.16,5.24,5.18
-73058,40,083,40083,332,201,107372749,106614409,332,201,107372749,106614409,41848,17195,1939447775,1926521787,100,100,100,100,0.79,1.17,5.54,5.53
-73059,40,015,40015,503,246,122078926,121944296,2924,1287,436025509,434687382,29600,13141,3341573883,3310753325,17.2,19.11,28,28.05,1.7,1.87,3.65,3.68
-73059,40,017,40017,80,32,44099391,43643625,2924,1287,436025509,434687382,115541,45810,2345494502,2322250237,2.74,2.49,10.11,10.04,0.07,0.07,1.88,1.88
-73059,40,051,40051,2341,1009,269847192,269099461,2924,1287,436025509,434687382,52431,22219,2861676878,2850273013,80.06,78.4,61.89,61.91,4.46,4.54,9.43,9.44
-73061,40,103,40103,1468,599,164125646,163777330,1596,665,303799328,291102381,11561,5341,1923160372,1895599459,91.98,90.08,54.02,56.26,12.7,11.22,8.53,8.64
-73061,40,117,40117,128,66,139673682,127325051,1596,665,303799328,291102381,16577,7745,1540432659,1470996347,8.02,9.92,45.98,43.74,0.77,0.85,9.07,8.66
-73062,40,075,40075,1224,704,442229999,440351881,1396,795,654082399,650867729,9446,5216,2669506552,2629422850,87.68,88.55,67.61,67.66,12.96,13.5,16.57,16.75
-73062,40,149,40149,172,91,211852400,210515848,1396,795,654082399,650867729,11629,5479,2612768834,2598189856,12.32,11.45,32.39,32.34,1.48,1.66,8.11,8.1
-73063,40,083,40083,598,280,221419298,221123330,691,330,278633687,277981594,41848,17195,1939447775,1926521787,86.54,84.85,79.47,79.55,1.43,1.63,11.42,11.48
-73063,40,119,40119,93,50,57214389,56858264,691,330,278633687,277981594,77350,33991,1805150789,1773371786,13.46,15.15,20.53,20.45,0.12,0.15,3.17,3.21
-73064,40,017,40017,20611,8032,133742530,130911015,20611,8032,133742530,130911015,115541,45810,2345494502,2322250237,100,100,100,100,17.84,17.53,5.7,5.64
-73065,40,087,40087,6546,2544,135397860,132773341,6546,2544,135397860,132773341,34506,13996,1502849014,1478109734,100,100,100,100,18.97,18.18,9.01,8.98
-73066,40,109,40109,417,200,2153064,2153064,417,200,2153064,2153064,718633,319828,1860577017,1835832315,100,100,100,100,0.06,0.06,0.12,0.12
-73067,40,051,40051,2161,935,325416010,323642035,2161,935,325416010,323642035,52431,22219,2861676878,2850273013,100,100,100,100,4.12,4.21,11.37,11.35
-73068,40,027,40027,11707,4777,165090293,163180687,11707,4777,165090293,163180687,255755,104821,1445437044,1395398450,100,100,100,100,4.58,4.56,11.42,11.69
-73069,40,027,40027,23912,11118,41593840,41022526,23912,11118,41593840,41022526,255755,104821,1445437044,1395398450,100,100,100,100,9.35,10.61,2.88,2.94
-73071,40,027,40027,36711,16480,64490016,63119893,36711,16480,64490016,63119893,255755,104821,1445437044,1395398450,100,100,100,100,14.35,15.72,4.46,4.52
-73072,40,027,40027,40714,16499,91892680,89889681,42797,17300,139104184,136412875,255755,104821,1445437044,1395398450,95.13,95.37,66.06,65.9,15.92,15.74,6.36,6.44
-73072,40,087,40087,2083,801,47211504,46523194,42797,17300,139104184,136412875,34506,13996,1502849014,1478109734,4.87,4.63,33.94,34.1,6.04,5.72,3.14,3.15
-73073,40,047,40047,21,11,44493369,44417629,541,259,300372339,299896144,60580,26831,2745554732,2741414396,3.88,4.25,14.81,14.81,0.03,0.04,1.62,1.62
-73073,40,083,40083,293,146,100783911,100690101,541,259,300372339,299896144,41848,17195,1939447775,1926521787,54.16,56.37,33.55,33.57,0.7,0.85,5.2,5.23
-73073,40,103,40103,154,62,83894301,83790882,541,259,300372339,299896144,11561,5341,1923160372,1895599459,28.47,23.94,27.93,27.94,1.33,1.16,4.36,4.42
-73073,40,119,40119,73,40,71200758,70997532,541,259,300372339,299896144,77350,33991,1805150789,1773371786,13.49,15.44,23.7,23.67,0.09,0.12,3.94,4
-73074,40,049,40049,1146,489,86458701,85098483,1190,514,104821874,103067189,27576,12827,2107444502,2077482576,96.3,95.14,82.48,82.57,4.16,3.81,4.1,4.1
-73074,40,087,40087,44,25,18363173,17968706,1190,514,104821874,103067189,34506,13996,1502849014,1478109734,3.7,4.86,17.52,17.43,0.13,0.18,1.22,1.22
-73075,40,049,40049,9519,4458,363810588,355938166,9519,4458,363810588,355938166,27576,12827,2107444502,2077482576,100,100,100,100,34.52,34.75,17.26,17.13
-73077,40,103,40103,7135,3487,703054999,698104413,7135,3487,703054999,698104413,11561,5341,1923160372,1895599459,100,100,100,100,61.72,65.29,36.56,36.83
-73078,40,017,40017,7760,2720,171907725,169761156,7786,2726,172360882,170214313,115541,45810,2345494502,2322250237,99.67,99.78,99.74,99.73,6.72,5.94,7.33,7.31
-73078,40,109,40109,26,6,453157,453157,7786,2726,172360882,170214313,718633,319828,1860577017,1835832315,0.33,0.22,0.26,0.27,0,0,0.02,0.02
-73079,40,015,40015,48,31,40249400,40249400,643,271,194573740,194280614,29600,13141,3341573883,3310753325,7.47,11.44,20.69,20.72,0.16,0.24,1.2,1.22
-73079,40,051,40051,595,240,154324340,154031214,643,271,194573740,194280614,52431,22219,2861676878,2850273013,92.53,88.56,79.31,79.28,1.13,1.08,5.39,5.4
-73080,40,087,40087,9276,3832,286112830,280559457,9276,3832,286112830,280559457,34506,13996,1502849014,1478109734,100,100,100,100,26.88,27.38,19.04,18.98
-73082,40,031,40031,28,10,7739549,7739549,2980,1442,397374992,394204377,124098,50739,2806778660,2769439538,0.94,0.69,1.95,1.96,0.02,0.02,0.28,0.28
-73082,40,051,40051,2952,1432,389635443,386464828,2980,1442,397374992,394204377,52431,22219,2861676878,2850273013,99.06,99.31,98.05,98.04,5.63,6.44,13.62,13.56
-73084,40,109,40109,6518,3008,43748081,43748081,6518,3008,43748081,43748081,718633,319828,1860577017,1835832315,100,100,100,100,0.91,0.94,2.35,2.38
-73086,40,099,40099,8345,4304,475747350,459977814,8345,4304,475747350,459977814,13488,6746,1100989479,1078621351,100,100,100,100,61.87,63.8,43.21,42.64
-73089,40,051,40051,11522,4388,272887166,272610312,11522,4388,272887166,272610312,52431,22219,2861676878,2850273013,100,100,100,100,21.98,19.75,9.54,9.56
-73090,40,017,40017,1198,390,157693852,156286282,1198,390,157693852,156286282,115541,45810,2345494502,2322250237,100,100,100,100,1.04,0.85,6.72,6.73
-73092,40,015,40015,173,100,79684969,76262347,908,429,149526543,146072748,29600,13141,3341573883,3310753325,19.05,23.31,53.29,52.21,0.58,0.76,2.38,2.3
-73092,40,051,40051,735,329,69841574,69810401,908,429,149526543,146072748,52431,22219,2861676878,2850273013,80.95,76.69,46.71,47.79,1.4,1.48,2.44,2.45
-73093,40,087,40087,2612,1034,137824570,136561506,2612,1034,137824570,136561506,34506,13996,1502849014,1478109734,100,100,100,100,7.57,7.39,9.17,9.24
-73095,40,087,40087,1895,849,184286287,180807911,1895,849,184286287,180807911,34506,13996,1502849014,1478109734,100,100,100,100,5.49,6.07,12.26,12.23
-73096,40,039,40039,12855,5650,367921042,367750676,13037,5727,517574651,516376785,27469,12204,2595346419,2561024716,98.6,98.66,71.09,71.22,46.8,46.3,14.18,14.36
-73096,40,149,40149,182,77,149653609,148626109,13037,5727,517574651,516376785,11629,5479,2612768834,2598189856,1.4,1.34,28.91,28.78,1.57,1.41,5.73,5.72
-73097,40,109,40109,187,84,2008810,2008810,187,84,2008810,2008810,718633,319828,1860577017,1835832315,100,100,100,100,0.03,0.03,0.11,0.11
-73098,40,049,40049,3817,1825,290705055,286801173,4227,2030,358417564,353070846,27576,12827,2107444502,2077482576,90.3,89.9,81.11,81.23,13.84,14.23,13.79,13.81
-73098,40,099,40099,410,205,67712509,66269673,4227,2030,358417564,353070846,13488,6746,1100989479,1078621351,9.7,10.1,18.89,18.77,3.04,3.04,6.15,6.14
-73099,40,017,40017,57492,23063,320602738,314135941,57492,23063,320602738,314135941,115541,45810,2345494502,2322250237,100,100,100,100,49.76,50.34,13.67,13.53
-73102,40,109,40109,3858,1299,2052859,2052859,3858,1299,2052859,2052859,718633,319828,1860577017,1835832315,100,100,100,100,0.54,0.41,0.11,0.11
-73103,40,109,40109,4315,2875,3029514,3029514,4315,2875,3029514,3029514,718633,319828,1860577017,1835832315,100,100,100,100,0.6,0.9,0.16,0.17
-73104,40,109,40109,1664,1040,3926639,3926639,1664,1040,3926639,3926639,718633,319828,1860577017,1835832315,100,100,100,100,0.23,0.33,0.21,0.21
-73105,40,109,40109,5210,3020,11537235,11522183,5210,3020,11537235,11522183,718633,319828,1860577017,1835832315,100,100,100,100,0.72,0.94,0.62,0.63
-73106,40,109,40109,13581,5999,8120282,8120282,13581,5999,8120282,8120282,718633,319828,1860577017,1835832315,100,100,100,100,1.89,1.88,0.44,0.44
-73107,40,109,40109,26561,12521,20276430,20276430,26561,12521,20276430,20276430,718633,319828,1860577017,1835832315,100,100,100,100,3.7,3.91,1.09,1.1
-73108,40,109,40109,15350,5780,19462146,19462146,15350,5780,19462146,19462146,718633,319828,1860577017,1835832315,100,100,100,100,2.14,1.81,1.05,1.06
-73109,40,109,40109,20594,8331,14059075,14059075,20594,8331,14059075,14059075,718633,319828,1860577017,1835832315,100,100,100,100,2.87,2.6,0.76,0.77
-73110,40,109,40109,32666,15497,27652692,27652692,32666,15497,27652692,27652692,718633,319828,1860577017,1835832315,100,100,100,100,4.55,4.85,1.49,1.51
-73111,40,109,40109,11781,6064,22481792,22317068,11781,6064,22481792,22317068,718633,319828,1860577017,1835832315,100,100,100,100,1.64,1.9,1.21,1.22
-73112,40,109,40109,30943,16359,20065693,19959330,30943,16359,20065693,19959330,718633,319828,1860577017,1835832315,100,100,100,100,4.31,5.11,1.08,1.09
-73114,40,109,40109,17422,8045,24412942,24332615,17422,8045,24412942,24332615,718633,319828,1860577017,1835832315,100,100,100,100,2.42,2.52,1.31,1.33
-73115,40,109,40109,20541,9190,15343238,15343238,20541,9190,15343238,15343238,718633,319828,1860577017,1835832315,100,100,100,100,2.86,2.87,0.82,0.84
-73116,40,109,40109,9241,4831,16354048,14079788,9241,4831,16354048,14079788,718633,319828,1860577017,1835832315,100,100,100,100,1.29,1.51,0.88,0.77
-73117,40,109,40109,5191,2887,16790113,16784745,5191,2887,16790113,16784745,718633,319828,1860577017,1835832315,100,100,100,100,0.72,0.9,0.9,0.91
-73118,40,109,40109,13571,7251,12879705,12872439,13571,7251,12879705,12872439,718633,319828,1860577017,1835832315,100,100,100,100,1.89,2.27,0.69,0.7
-73119,40,109,40109,31347,11746,15729115,15729115,31347,11746,15729115,15729115,718633,319828,1860577017,1835832315,100,100,100,100,4.36,3.67,0.85,0.86
-73120,40,109,40109,34824,19076,35217295,28678275,34824,19076,35217295,28678275,718633,319828,1860577017,1835832315,100,100,100,100,4.85,5.96,1.89,1.56
-73121,40,109,40109,3053,1457,26051113,25996170,3053,1457,26051113,25996170,718633,319828,1860577017,1835832315,100,100,100,100,0.42,0.46,1.4,1.42
-73122,40,109,40109,13164,5988,8671274,8581570,13164,5988,8671274,8581570,718633,319828,1860577017,1835832315,100,100,100,100,1.83,1.87,0.47,0.47
-73127,40,017,40017,2560,985,10742247,10722336,24077,11123,31889394,31437210,115541,45810,2345494502,2322250237,10.63,8.86,33.69,34.11,2.22,2.15,0.46,0.46
-73127,40,109,40109,21517,10138,21147147,20714874,24077,11123,31889394,31437210,718633,319828,1860577017,1835832315,89.37,91.14,66.31,65.89,2.99,3.17,1.14,1.13
-73128,40,017,40017,2611,921,4503052,4474027,4200,1643,17134578,17105168,115541,45810,2345494502,2322250237,62.17,56.06,26.28,26.16,2.26,2.01,0.19,0.19
-73128,40,109,40109,1589,722,12631526,12631141,4200,1643,17134578,17105168,718633,319828,1860577017,1835832315,37.83,43.94,73.72,73.84,0.22,0.23,0.68,0.69
-73129,40,109,40109,20126,7749,32587191,32587191,20126,7749,32587191,32587191,718633,319828,1860577017,1835832315,100,100,100,100,2.8,2.42,1.75,1.78
-73130,40,109,40109,19439,8212,25775212,25775212,19439,8212,25775212,25775212,718633,319828,1860577017,1835832315,100,100,100,100,2.7,2.57,1.39,1.4
-73131,40,109,40109,3145,1343,31193406,31138126,3145,1343,31193406,31138126,718633,319828,1860577017,1835832315,100,100,100,100,0.44,0.42,1.68,1.7
-73132,40,109,40109,26432,12382,20002222,19356944,26432,12382,20002222,19356944,718633,319828,1860577017,1835832315,100,100,100,100,3.68,3.87,1.08,1.05
-73134,40,109,40109,4312,2671,10697487,10697487,4312,2671,10697487,10697487,718633,319828,1860577017,1835832315,100,100,100,100,0.6,0.84,0.57,0.58
-73135,40,027,40027,1061,396,2558548,2518363,20529,8324,30104094,30014625,255755,104821,1445437044,1395398450,5.17,4.76,8.5,8.39,0.41,0.38,0.18,0.18
-73135,40,109,40109,19468,7928,27545546,27496262,20529,8324,30104094,30014625,718633,319828,1860577017,1835832315,94.83,95.24,91.5,91.61,2.71,2.48,1.48,1.5
-73139,40,027,40027,7292,3467,3705586,3701400,17253,7953,11349134,11344948,255755,104821,1445437044,1395398450,42.27,43.59,32.65,32.63,2.85,3.31,0.26,0.27
-73139,40,109,40109,9961,4486,7643548,7643548,17253,7953,11349134,11344948,718633,319828,1860577017,1835832315,57.73,56.41,67.35,67.37,1.39,1.4,0.41,0.42
-73141,40,109,40109,2727,1307,27872105,27835446,2727,1307,27872105,27835446,718633,319828,1860577017,1835832315,100,100,100,100,0.38,0.41,1.5,1.52
-73142,40,109,40109,10707,5198,25750312,25326520,10707,5198,25750312,25326520,718633,319828,1860577017,1835832315,100,100,100,100,1.49,1.63,1.38,1.38
-73145,40,109,40109,2859,640,15088852,15088852,2859,640,15088852,15088852,718633,319828,1860577017,1835832315,100,100,100,100,0.4,0.2,0.81,0.82
-73149,40,027,40027,0,0,686725,686725,4643,2068,13597033,13597033,255755,104821,1445437044,1395398450,0,0,5.05,5.05,0,0,0.05,0.05
-73149,40,109,40109,4643,2068,12910308,12910308,4643,2068,13597033,13597033,718633,319828,1860577017,1835832315,100,100,94.95,94.95,0.65,0.65,0.69,0.7
-73150,40,027,40027,0,3,762260,760496,4609,1910,49304227,49050096,255755,104821,1445437044,1395398450,0,0.16,1.55,1.55,0,0,0.05,0.05
-73150,40,109,40109,4609,1907,48541967,48289600,4609,1910,49304227,49050096,718633,319828,1860577017,1835832315,100,99.84,98.45,98.45,0.64,0.6,2.61,2.63
-73151,40,109,40109,1446,501,7510826,7476710,1446,501,7510826,7476710,718633,319828,1860577017,1835832315,100,100,100,100,0.2,0.16,0.4,0.41
-73159,40,027,40027,9009,3665,5486557,5351397,30350,12747,31908934,31684617,255755,104821,1445437044,1395398450,29.68,28.75,17.19,16.89,3.52,3.5,0.38,0.38
-73159,40,109,40109,21341,9082,26422377,26333220,30350,12747,31908934,31684617,718633,319828,1860577017,1835832315,70.32,71.25,82.81,83.11,2.97,2.84,1.42,1.43
-73160,40,027,40027,53666,21285,59041536,58155467,53666,21285,59041536,58155467,255755,104821,1445437044,1395398450,100,100,100,100,20.98,20.31,4.08,4.17
-73162,40,109,40109,27758,12137,18429750,18023553,27758,12137,18429750,18023553,718633,319828,1860577017,1835832315,100,100,100,100,3.86,3.79,0.99,0.98
-73165,40,027,40027,5809,2238,114546226,103530315,5809,2238,114546226,103530315,255755,104821,1445437044,1395398450,100,100,100,100,2.27,2.14,7.92,7.42
-73169,40,027,40027,402,145,6420142,6367083,1782,672,17264646,17211587,255755,104821,1445437044,1395398450,22.56,21.58,37.19,36.99,0.16,0.14,0.44,0.46
-73169,40,109,40109,1380,527,10844504,10844504,1782,672,17264646,17211587,718633,319828,1860577017,1835832315,77.44,78.42,62.81,63.01,0.19,0.16,0.58,0.59
-73170,40,027,40027,35343,13876,55573457,54272525,35343,13876,55573457,54272525,255755,104821,1445437044,1395398450,100,100,100,100,13.82,13.24,3.84,3.89
-73173,40,027,40027,1299,500,42744038,42054455,1299,500,42744038,42054455,255755,104821,1445437044,1395398450,100,100,100,100,0.51,0.48,2.96,3.01
-73179,40,017,40017,966,301,2592505,2582456,3082,1153,31897375,31831264,115541,45810,2345494502,2322250237,31.34,26.11,8.13,8.11,0.84,0.66,0.11,0.11
-73179,40,109,40109,2116,852,29304870,29248808,3082,1153,31897375,31831264,718633,319828,1860577017,1835832315,68.66,73.89,91.87,91.89,0.29,0.27,1.58,1.59
-73401,40,019,40019,34773,15457,858345279,836437547,34927,15531,885144056,851751394,47557,21148,2159440924,2129424630,99.56,99.52,96.97,98.2,73.12,73.09,39.75,39.28
-73401,40,069,40069,26,11,193510,193510,34927,15531,885144056,851751394,10957,5126,1704845933,1665207064,0.07,0.07,0.02,0.02,0.24,0.21,0.01,0.01
-73401,40,085,40085,128,63,26605267,15120337,34927,15531,885144056,851751394,9423,4539,1378893165,1331241072,0.37,0.41,3.01,1.78,1.36,1.39,1.93,1.14
-73425,40,019,40019,43,23,3214679,3209352,84,46,3583874,3578547,47557,21148,2159440924,2129424630,51.19,50,89.7,89.68,0.09,0.11,0.15,0.15
-73425,40,137,40137,41,23,369195,369195,84,46,3583874,3578547,45048,20658,2308621716,2253922744,48.81,50,10.3,10.32,0.09,0.11,0.02,0.02
-73430,40,085,40085,1176,716,242922989,235866015,1176,716,242922989,235866015,9423,4539,1378893165,1331241072,100,100,100,100,12.48,15.77,17.62,17.72
-73432,40,005,40005,121,67,54198927,53421168,974,474,154401600,153113223,14182,6312,2563861336,2526578130,12.42,14.14,35.1,34.89,0.85,1.06,2.11,2.11
-73432,40,069,40069,853,407,100202673,99692055,974,474,154401600,153113223,10957,5126,1704845933,1665207064,87.58,85.86,64.9,65.11,7.78,7.94,5.88,5.99
-73433,40,049,40049,2761,1274,428482392,426177332,2761,1274,428482392,426177332,27576,12827,2107444502,2077482576,100,100,100,100,10.01,9.93,20.33,20.51
-73434,40,049,40049,294,120,119704233,118780393,699,305,261458811,256748215,27576,12827,2107444502,2077482576,42.06,39.34,45.78,46.26,1.07,0.94,5.68,5.72
-73434,40,137,40137,405,185,141754578,137967822,699,305,261458811,256748215,45048,20658,2308621716,2253922744,57.94,60.66,54.22,53.74,0.9,0.9,6.14,6.12
-73437,40,019,40019,107,50,33773906,33500120,107,50,33773906,33500120,47557,21148,2159440924,2129424630,100,100,100,100,0.22,0.24,1.56,1.57
-73438,40,019,40019,3680,1725,220363773,219462078,3708,1738,225521970,224620275,47557,21148,2159440924,2129424630,99.24,99.25,97.71,97.7,7.74,8.16,10.2,10.31
-73438,40,137,40137,28,13,5158197,5158197,3708,1738,225521970,224620275,45048,20658,2308621716,2253922744,0.76,0.75,2.29,2.3,0.06,0.06,0.22,0.23
-73439,40,095,40095,7400,6194,361589003,331623667,7400,6194,361589003,331623667,15840,10006,1105756274,961092926,100,100,100,100,46.72,61.9,32.7,34.5
-73440,40,095,40095,398,221,38698683,30219684,398,221,38698683,30219684,15840,10006,1105756274,961092926,100,100,100,100,2.51,2.21,3.5,3.14
-73441,40,085,40085,165,91,9553245,9553245,165,91,9553245,9553245,9423,4539,1378893165,1331241072,100,100,100,100,1.75,2,0.69,0.72
-73442,40,067,40067,48,27,26909779,26885389,428,211,209410742,208637446,6472,3378,2004862729,1965365227,11.21,12.8,12.85,12.89,0.74,0.8,1.34,1.37
-73442,40,137,40137,380,184,182500963,181752057,428,211,209410742,208637446,45048,20658,2308621716,2253922744,88.79,87.2,87.15,87.11,0.84,0.89,7.91,8.06
-73443,40,019,40019,3585,1488,136675893,136439374,3585,1488,136675893,136439374,47557,21148,2159440924,2129424630,100,100,100,100,7.54,7.04,6.33,6.41
-73444,40,019,40019,76,36,54968702,54706702,156,71,105592592,105211210,47557,21148,2159440924,2129424630,48.72,50.7,52.06,52,0.16,0.17,2.55,2.57
-73444,40,099,40099,80,35,50623890,50504508,156,71,105592592,105211210,13488,6746,1100989479,1078621351,51.28,49.3,47.94,48,0.59,0.52,4.6,4.68
-73446,40,095,40095,8042,3591,626783190,597731499,8042,3591,626783190,597731499,15840,10006,1105756274,961092926,100,100,100,100,50.77,35.89,56.68,62.19
-73447,40,069,40069,1205,559,239871427,235232116,1205,559,239871427,235232116,10957,5126,1704845933,1665207064,100,100,100,100,11,10.91,14.07,14.13
-73448,40,085,40085,5784,2624,575144207,555129881,5784,2624,575144207,555129881,9423,4539,1378893165,1331241072,100,100,100,100,61.38,57.81,41.71,41.7
-73449,40,013,40013,2987,1750,118784749,97382170,2987,1750,118784749,97382170,42416,19586,2444796679,2342567959,100,100,100,100,7.04,8.93,4.86,4.16
-73450,40,069,40069,1248,594,245035405,243299909,1248,594,245035405,243299909,10957,5126,1704845933,1665207064,100,100,100,100,11.39,11.59,14.37,14.61
-73453,40,085,40085,661,323,183876242,182953423,661,323,183876242,182953423,9423,4539,1378893165,1331241072,100,100,100,100,7.01,7.12,13.34,13.74
-73455,40,069,40069,673,297,24204338,23511505,673,297,24204338,23511505,10957,5126,1704845933,1665207064,100,100,100,100,6.14,5.79,1.42,1.41
-73456,40,019,40019,74,28,48270851,48194036,2082,1065,664848134,661130456,47557,21148,2159440924,2129424630,3.55,2.63,7.26,7.29,0.16,0.13,2.24,2.26
-73456,40,067,40067,1874,956,548242643,545420545,2082,1065,664848134,661130456,6472,3378,2004862729,1965365227,90.01,89.77,82.46,82.5,28.96,28.3,27.35,27.75
-73456,40,085,40085,134,81,68334640,67515875,2082,1065,664848134,661130456,9423,4539,1378893165,1331241072,6.44,7.61,10.28,10.21,1.42,1.78,4.96,5.07
-73458,40,019,40019,952,419,276827618,272126730,952,419,276827618,272126730,47557,21148,2159440924,2129424630,100,100,100,100,2,1.98,12.82,12.78
-73459,40,085,40085,1132,497,96710126,89960205,1132,497,96710126,89960205,9423,4539,1378893165,1331241072,100,100,100,100,12.01,10.95,7.01,6.76
-73460,40,069,40069,4747,2167,444137356,415619854,4747,2167,444137356,415619854,10957,5126,1704845933,1665207064,100,100,100,100,43.32,42.27,26.05,24.96
-73461,40,005,40005,71,43,37280017,36880187,795,399,158607709,157316463,14182,6312,2563861336,2526578130,8.93,10.78,23.5,23.44,0.5,0.68,1.45,1.46
-73461,40,069,40069,724,356,121327692,120436276,795,399,158607709,157316463,10957,5126,1704845933,1665207064,91.07,89.22,76.5,76.56,6.61,6.94,7.12,7.23
-73463,40,019,40019,3258,1424,353162822,352475238,3501,1568,528909271,527617329,47557,21148,2159440924,2129424630,93.06,90.82,66.77,66.81,6.85,6.73,16.35,16.55
-73463,40,085,40085,243,144,175746449,175142091,3501,1568,528909271,527617329,9423,4539,1378893165,1331241072,6.94,9.18,33.23,33.19,2.58,3.17,12.75,13.16
-73481,40,019,40019,777,370,143814247,143114602,978,468,197192937,196226455,47557,21148,2159440924,2129424630,79.45,79.06,72.93,72.93,1.63,1.75,6.66,6.72
-73481,40,049,40049,57,31,17902415,17797807,978,468,197192937,196226455,27576,12827,2107444502,2077482576,5.83,6.62,9.08,9.07,0.21,0.24,0.85,0.86
-73481,40,137,40137,144,67,35476275,35314046,978,468,197192937,196226455,45048,20658,2308621716,2253922744,14.72,14.32,17.99,18,0.32,0.32,1.54,1.57
-73487,40,019,40019,232,128,30023154,29758851,232,128,30023154,29758851,47557,21148,2159440924,2129424630,100,100,100,100,0.49,0.61,1.39,1.4
-73491,40,137,40137,721,360,45354541,44846444,721,360,45354541,44846444,45048,20658,2308621716,2253922744,100,100,100,100,1.6,1.74,1.96,1.99
-73501,40,031,40031,20935,8868,305028415,303899573,20935,8868,305028415,303899573,124098,50739,2806778660,2769439538,100,100,100,100,16.87,17.48,10.87,10.97
-73503,40,031,40031,10996,1502,219348840,218334116,10996,1502,219348840,218334116,124098,50739,2806778660,2769439538,100,100,100,100,8.86,2.96,7.81,7.88
-73505,40,031,40031,49809,21600,143363086,143116807,49809,21600,143363086,143116807,124098,50739,2806778660,2769439538,100,100,100,100,40.14,42.57,5.11,5.17
-73507,40,031,40031,22847,10558,530159806,528630360,22847,10558,530159806,528630360,124098,50739,2806778660,2769439538,100,100,100,100,18.41,20.81,18.89,19.09
-73520,40,067,40067,149,76,27584323,27450251,149,76,27584323,27450251,6472,3378,2004862729,1965365227,100,100,100,100,2.3,2.25,1.38,1.4
-73521,40,065,40065,21636,9705,476623363,476000078,21636,9705,476623363,476000078,26446,12077,2082970480,2078856062,100,100,100,100,81.81,80.36,22.88,22.9
-73526,40,055,40055,32,23,31739412,31739412,2133,1002,212682368,212567705,6239,2738,1667000136,1655842714,1.5,2.3,14.92,14.93,0.51,0.84,1.9,1.92
-73526,40,065,40065,2101,979,180942956,180828293,2133,1002,212682368,212567705,26446,12077,2082970480,2078856062,98.5,97.7,85.08,85.07,7.94,8.11,8.69,8.7
-73527,40,031,40031,5184,1983,212093888,211730257,5184,1983,212093888,211730257,124098,50739,2806778660,2769439538,100,100,100,100,4.18,3.91,7.56,7.65
-73528,40,031,40031,507,224,34861715,34833160,680,304,225545427,223724046,124098,50739,2806778660,2769439538,74.56,73.68,15.46,15.57,0.41,0.44,1.24,1.26
-73528,40,033,40033,42,20,104090078,102833687,680,304,225545427,223724046,6193,3016,1662662117,1638566638,6.18,6.58,46.15,45.96,0.68,0.66,6.26,6.28
-73528,40,141,40141,131,60,86593634,86057199,680,304,225545427,223724046,7992,4077,2277121160,2256226803,19.26,19.74,38.39,38.47,1.64,1.47,3.8,3.81
-73529,40,067,40067,22,11,45353741,45043071,5344,2416,573078644,562310492,6472,3378,2004862729,1965365227,0.41,0.46,7.91,8.01,0.34,0.33,2.26,2.29
-73529,40,137,40137,5322,2405,527724903,517267421,5344,2416,573078644,562310492,45048,20658,2308621716,2253922744,99.59,99.54,92.09,91.99,11.81,11.64,22.86,22.95
-73530,40,141,40141,442,252,353252135,346425644,442,252,353252135,346425644,7992,4077,2277121160,2256226803,100,100,100,100,5.53,6.18,15.51,15.35
-73531,40,033,40033,401,187,207957536,205748321,401,187,207957536,205748321,6193,3016,1662662117,1638566638,100,100,100,100,6.48,6.2,12.51,12.56
-73532,40,057,40057,8,10,41551341,41268948,600,296,365386853,364618560,2922,1544,1395127124,1391326707,1.33,3.38,11.37,11.32,0.27,0.65,2.98,2.97
-73532,40,065,40065,592,286,323835512,323349612,600,296,365386853,364618560,26446,12077,2082970480,2078856062,98.67,96.62,88.63,88.68,2.24,2.37,15.55,15.55
-73533,40,033,40033,30,11,11303227,11303227,28434,13111,871976319,859620316,6193,3016,1662662117,1638566638,0.11,0.08,1.3,1.31,0.48,0.36,0.68,0.69
-73533,40,137,40137,28404,13100,860673092,848317089,28434,13111,871976319,859620316,45048,20658,2308621716,2253922744,99.89,99.92,98.7,98.69,63.05,63.41,37.28,37.64
-73537,40,057,40057,35,19,89173121,89160028,643,373,459715641,459303773,2922,1544,1395127124,1391326707,5.44,5.09,19.4,19.41,1.2,1.23,6.39,6.41
-73537,40,065,40065,608,354,370542520,370143745,643,373,459715641,459303773,26446,12077,2082970480,2078856062,94.56,94.91,80.6,80.59,2.3,2.93,17.79,17.81
-73538,40,031,40031,4675,1979,208459179,207189753,4675,1979,208459179,207189753,124098,50739,2806778660,2769439538,100,100,100,100,3.77,3.9,7.43,7.48
-73539,40,065,40065,218,126,188204395,186285328,218,126,188204395,186285328,26446,12077,2082970480,2078856062,100,100,100,100,0.82,1.04,9.04,8.96
-73540,40,031,40031,434,200,137762935,137436560,439,204,144012625,143614612,124098,50739,2806778660,2769439538,98.86,98.04,95.66,95.7,0.35,0.39,4.91,4.96
-73540,40,033,40033,5,4,6249690,6178052,439,204,144012625,143614612,6193,3016,1662662117,1638566638,1.14,1.96,4.34,4.3,0.08,0.13,0.38,0.38
-73541,40,031,40031,3106,1302,216666500,216238727,3106,1302,216666500,216238727,124098,50739,2806778660,2769439538,100,100,100,100,2.5,2.57,7.72,7.81
-73542,40,141,40141,4659,2300,868289551,860070304,4659,2300,868289551,860070304,7992,4077,2277121160,2256226803,100,100,100,100,58.3,56.41,38.13,38.12
-73543,40,031,40031,1809,744,135298261,135100451,1859,765,180678152,179963417,124098,50739,2806778660,2769439538,97.31,97.25,74.88,75.07,1.46,1.47,4.82,4.88
-73543,40,033,40033,50,21,45379891,44862966,1859,765,180678152,179963417,6193,3016,1662662117,1638566638,2.69,2.75,25.12,24.93,0.81,0.7,2.73,2.74
-73544,40,057,40057,268,177,334384042,333896815,268,177,334384042,333896815,2922,1544,1395127124,1391326707,100,100,100,100,9.17,11.46,23.97,24
-73546,40,141,40141,1232,647,352273003,349071995,1232,647,352273003,349071995,7992,4077,2277121160,2256226803,100,100,100,100,15.42,15.87,15.47,15.47
-73547,40,055,40055,2319,703,326218220,316400975,2319,703,326218220,316400975,6239,2738,1667000136,1655842714,100,100,100,100,37.17,25.68,19.57,19.11
-73548,40,033,40033,34,32,61221367,58791362,519,337,145278979,131503043,6193,3016,1662662117,1638566638,6.55,9.5,42.14,44.71,0.55,1.06,3.68,3.59
-73548,40,067,40067,199,140,64647477,64152097,519,337,145278979,131503043,6472,3378,2004862729,1965365227,38.34,41.54,44.5,48.78,3.07,4.14,3.22,3.26
-73548,40,137,40137,286,165,19410135,8559584,519,337,145278979,131503043,45048,20658,2308621716,2253922744,55.11,48.96,13.36,6.51,0.63,0.8,0.84,0.38
-73549,40,065,40065,296,158,191936961,191769649,296,158,191936961,191769649,26446,12077,2082970480,2078856062,100,100,100,100,1.12,1.31,9.21,9.22
-73550,40,057,40057,2512,1253,559339193,556507093,2512,1253,559339193,556507093,2922,1544,1395127124,1391326707,100,100,100,100,85.97,81.15,40.09,40
-73551,40,141,40141,65,30,28437893,28406973,65,30,28437893,28406973,7992,4077,2277121160,2256226803,100,100,100,100,0.81,0.74,1.25,1.26
-73552,40,031,40031,1612,640,296377625,295332527,1612,640,296377625,295332527,124098,50739,2806778660,2769439538,100,100,100,100,1.3,1.26,10.56,10.66
-73553,40,141,40141,46,27,112222201,111807026,46,27,112222201,111807026,7992,4077,2277121160,2256226803,100,100,100,100,0.58,0.66,4.93,4.96
-73554,40,055,40055,3602,1849,1006428828,1005191308,3614,1861,1052654736,1051417216,6239,2738,1667000136,1655842714,99.67,99.36,95.61,95.6,57.73,67.53,60.37,60.71
-73554,40,057,40057,12,12,46225908,46225908,3614,1861,1052654736,1051417216,2922,1544,1395127124,1391326707,0.33,0.64,4.39,4.4,0.41,0.78,3.31,3.32
-73555,40,141,40141,214,104,51532219,51360474,214,104,51532219,51360474,7992,4077,2277121160,2256226803,100,100,100,100,2.68,2.55,2.26,2.28
-73556,40,065,40065,166,90,3733975,3733975,166,90,3733975,3733975,26446,12077,2082970480,2078856062,100,100,100,100,0.63,0.75,0.18,0.18
-73557,40,031,40031,427,327,6212499,6029518,427,327,6212499,6029518,124098,50739,2806778660,2769439538,100,100,100,100,0.34,0.64,0.22,0.22
-73559,40,031,40031,7,4,8959300,8959300,540,306,280376413,271308838,124098,50739,2806778660,2769439538,1.3,1.31,3.2,3.3,0.01,0.01,0.32,0.32
-73559,40,075,40075,533,302,271417113,262349538,540,306,280376413,271308838,9446,5216,2669506552,2629422850,98.7,98.69,96.8,96.7,5.64,5.79,10.17,9.98
-73560,40,065,40065,829,379,347150798,346745382,829,379,347150798,346745382,26446,12077,2082970480,2078856062,100,100,100,100,3.13,3.14,16.67,16.68
-73562,40,033,40033,772,364,271702600,264262646,772,364,271702600,264262646,6193,3016,1662662117,1638566638,100,100,100,100,12.47,12.07,16.34,16.13
-73564,40,031,40031,16,8,16933433,16933433,551,351,508754649,493583623,124098,50739,2806778660,2769439538,2.9,2.28,3.33,3.43,0.01,0.02,0.6,0.61
-73564,40,075,40075,535,343,491821216,476650190,551,351,508754649,493583623,9446,5216,2669506552,2629422850,97.1,97.72,96.67,96.57,5.66,6.58,18.42,18.13
-73565,40,067,40067,1092,589,514954320,510483706,1092,589,514954320,510483706,6472,3378,2004862729,1965365227,100,100,100,100,16.87,17.44,25.69,25.97
-73566,40,075,40075,1599,793,185577385,185370359,1674,836,288213505,287560341,9446,5216,2669506552,2629422850,95.52,94.86,64.39,64.46,16.93,15.2,6.95,7.05
-73566,40,141,40141,75,43,102636120,102189982,1674,836,288213505,287560341,7992,4077,2277121160,2256226803,4.48,5.14,35.61,35.54,0.94,1.05,4.51,4.53
-73567,40,031,40031,860,371,11979740,11942909,860,371,11979740,11942909,124098,50739,2806778660,2769439538,100,100,100,100,0.69,0.73,0.43,0.43
-73568,40,033,40033,1182,648,241688676,236979150,1182,648,241688676,236979150,6193,3016,1662662117,1638566638,100,100,100,100,19.09,21.49,14.54,14.46
-73569,40,067,40067,537,324,198085692,191978196,537,324,198085692,191978196,6472,3378,2004862729,1965365227,100,100,100,100,8.3,9.59,9.88,9.77
-73570,40,141,40141,1128,614,321884404,320837206,1128,614,321884404,320837206,7992,4077,2277121160,2256226803,100,100,100,100,14.11,15.06,14.14,14.22
-73571,40,057,40057,87,73,324453519,324267915,87,73,324453519,324267915,2922,1544,1395127124,1391326707,100,100,100,100,2.98,4.73,23.26,23.31
-73572,40,031,40031,22,7,8401798,8401798,3699,1736,721470850,716009025,124098,50739,2806778660,2769439538,0.59,0.4,1.16,1.17,0.02,0.01,0.3,0.3
-73572,40,033,40033,3677,1729,713069052,707607227,3699,1736,721470850,716009025,6193,3016,1662662117,1638566638,99.41,99.6,98.84,98.83,59.37,57.33,42.89,43.18
-73573,40,067,40067,2551,1255,579084754,553951972,2551,1255,579084754,553951972,6472,3378,2004862729,1965365227,100,100,100,100,39.42,37.15,28.88,28.19
-73601,40,039,40039,9895,4187,247672330,247379368,10299,4371,347618634,346656075,27469,12204,2595346419,2561024716,96.08,95.79,71.25,71.36,36.02,34.31,9.54,9.66
-73601,40,149,40149,404,184,99946304,99276707,10299,4371,347618634,346656075,11629,5479,2612768834,2598189856,3.92,4.21,28.75,28.64,3.47,3.36,3.83,3.82
-73620,40,039,40039,1194,464,321093200,320394149,1194,464,321093200,320394149,27469,12204,2595346419,2561024716,100,100,100,100,4.35,3.8,12.37,12.51
-73622,40,149,40149,266,143,140482651,139779332,266,143,140482651,139779332,11629,5479,2612768834,2598189856,100,100,100,100,2.29,2.61,5.38,5.38
-73624,40,149,40149,2142,937,26251306,26189472,2142,937,26251306,26189472,11629,5479,2612768834,2598189856,100,100,100,100,18.42,17.1,1,1.01
-73625,40,039,40039,554,376,366319163,346353342,554,376,366319163,346353342,27469,12204,2595346419,2561024716,100,100,100,100,2.02,3.08,14.11,13.52
-73626,40,039,40039,154,132,116046967,108887964,1136,608,308440609,299249926,27469,12204,2595346419,2561024716,13.56,21.71,37.62,36.39,0.56,1.08,4.47,4.25
-73626,40,149,40149,982,476,192393642,190361962,1136,608,308440609,299249926,11629,5479,2612768834,2598189856,86.44,78.29,62.38,63.61,8.44,8.69,7.36,7.33
-73627,40,009,40009,628,303,263766199,262460058,628,303,263766199,262460058,22119,9647,2341192211,2335665049,100,100,100,100,2.84,3.14,11.27,11.24
-73628,40,129,40129,1583,835,968851632,961883012,1583,835,968851632,961883012,3647,1905,2969223334,2955528117,100,100,100,100,43.41,43.83,32.63,32.55
-73632,40,149,40149,3433,1655,527236287,524359658,3433,1655,527236287,524359658,11629,5479,2612768834,2598189856,100,100,100,100,29.52,30.21,20.18,20.18
-73638,40,129,40129,142,92,352716336,352198157,142,92,352716336,352198157,3647,1905,2969223334,2955528117,100,100,100,100,3.89,4.83,11.88,11.92
-73639,40,039,40039,602,333,383957893,382961162,602,333,383957893,382961162,27469,12204,2595346419,2561024716,100,100,100,100,2.19,2.73,14.79,14.95
-73641,40,149,40149,762,365,110433051,110352250,762,365,110433051,110352250,11629,5479,2612768834,2598189856,100,100,100,100,6.55,6.66,4.23,4.25
-73642,40,129,40129,187,110,253427999,251985916,187,110,253427999,251985916,3647,1905,2969223334,2955528117,100,100,100,100,5.13,5.77,8.54,8.53
-73644,40,009,40009,13908,6315,382393149,380509041,14147,6433,496112022,493967458,22119,9647,2341192211,2335665049,98.31,98.17,77.08,77.03,62.88,65.46,16.33,16.29
-73644,40,039,40039,25,9,12688954,12646107,14147,6433,496112022,493967458,27469,12204,2595346419,2561024716,0.18,0.14,2.56,2.56,0.09,0.07,0.49,0.49
-73644,40,129,40129,44,25,41229416,41109949,14147,6433,496112022,493967458,3647,1905,2969223334,2955528117,0.31,0.39,8.31,8.32,1.21,1.31,1.39,1.39
-73644,40,149,40149,170,84,59800503,59702361,14147,6433,496112022,493967458,11629,5479,2612768834,2598189856,1.2,1.31,12.05,12.09,1.46,1.53,2.29,2.3
-73645,40,009,40009,1538,853,742881215,742462094,1538,853,742881215,742462094,22119,9647,2341192211,2335665049,100,100,100,100,6.95,8.84,31.73,31.79
-73646,40,011,40011,234,136,195097276,195097276,384,234,298040827,297506316,11943,5193,2431459537,2404607766,60.94,58.12,65.46,65.58,1.96,2.62,8.02,8.11
-73646,40,039,40039,12,10,16030113,15604537,384,234,298040827,297506316,27469,12204,2595346419,2561024716,3.13,4.27,5.38,5.25,0.04,0.08,0.62,0.61
-73646,40,043,40043,138,88,86913438,86804503,384,234,298040827,297506316,4810,2445,2611320187,2588632047,35.94,37.61,29.16,29.18,2.87,3.6,3.33,3.35
-73647,40,039,40039,109,56,79520726,78301650,519,264,281534018,279283481,27469,12204,2595346419,2561024716,21,21.21,28.25,28.04,0.4,0.46,3.06,3.06
-73647,40,149,40149,410,208,202013292,200981831,519,264,281534018,279283481,11629,5479,2612768834,2598189856,79,78.79,71.75,71.96,3.53,3.8,7.73,7.74
-73650,40,039,40039,174,66,161865511,159458128,1020,437,502544553,498366429,27469,12204,2595346419,2561024716,17.06,15.1,32.21,32,0.63,0.54,6.24,6.23
-73650,40,129,40129,846,371,340679042,338908301,1020,437,502544553,498366429,3647,1905,2969223334,2955528117,82.94,84.9,67.79,68,23.2,19.48,11.47,11.47
-73651,40,075,40075,4268,2152,543827975,541452125,4268,2152,543827975,541452125,9446,5216,2669506552,2629422850,100,100,100,100,45.18,41.26,20.37,20.59
-73654,40,039,40039,83,49,155168852,154377456,866,489,890215543,882146554,27469,12204,2595346419,2561024716,9.58,10.02,17.43,17.5,0.3,0.4,5.98,6.03
-73654,40,043,40043,629,340,325137985,319193514,866,489,890215543,882146554,4810,2445,2611320187,2588632047,72.63,69.53,36.52,36.18,13.08,13.91,12.45,12.33
-73654,40,129,40129,154,100,409908706,408575584,866,489,890215543,882146554,3647,1905,2969223334,2955528117,17.78,20.45,46.05,46.32,4.22,5.25,13.81,13.82
-73655,40,075,40075,864,648,418800702,408780225,864,648,418800702,408780225,9446,5216,2669506552,2629422850,100,100,100,100,9.15,12.42,15.69,15.55
-73658,40,043,40043,260,140,211954785,211909068,260,140,211954785,211909068,4810,2445,2611320187,2588632047,100,100,100,100,5.41,5.73,8.12,8.19
-73659,40,043,40043,160,106,380860086,376344217,160,106,380860086,376344217,4810,2445,2611320187,2588632047,100,100,100,100,3.33,4.34,14.58,14.54
-73660,40,129,40129,430,235,327486854,326356406,430,235,327486854,326356406,3647,1905,2969223334,2955528117,100,100,100,100,11.79,12.34,11.03,11.04
-73661,40,149,40149,420,200,176937317,174608046,420,200,176937317,174608046,11629,5479,2612768834,2598189856,100,100,100,100,3.61,3.65,6.77,6.72
-73662,40,009,40009,6009,2147,907077795,905675568,6093,2193,1008363695,1006755639,22119,9647,2341192211,2335665049,98.62,97.9,89.96,89.96,27.17,22.26,38.74,38.78
-73662,40,055,40055,3,3,22296316,22296316,6093,2193,1008363695,1006755639,6239,2738,1667000136,1655842714,0.05,0.14,2.21,2.21,0.05,0.11,1.34,1.35
-73662,40,129,40129,81,43,78989584,78783755,6093,2193,1008363695,1006755639,3647,1905,2969223334,2955528117,1.33,1.96,7.83,7.83,2.22,2.26,2.66,2.67
-73663,40,043,40043,1318,617,340295105,339455363,1332,625,351926303,350970003,4810,2445,2611320187,2588632047,98.95,98.72,96.69,96.72,27.4,25.24,13.03,13.11
-73663,40,093,40093,14,8,11631198,11514640,1332,625,351926303,350970003,7527,3671,2481059265,2473407969,1.05,1.28,3.31,3.28,0.19,0.22,0.47,0.47
-73664,40,149,40149,1184,542,339433834,338250146,1184,542,339433834,338250146,11629,5479,2612768834,2598189856,100,100,100,100,10.18,9.89,12.99,13.02
-73666,40,129,40129,180,94,195933765,195727037,180,94,195933765,195727037,3647,1905,2969223334,2955528117,100,100,100,100,4.94,4.93,6.6,6.62
-73667,40,043,40043,517,294,396756513,394826873,517,294,396756513,394826873,4810,2445,2611320187,2588632047,100,100,100,100,10.75,12.02,15.19,15.25
-73669,40,011,40011,23,9,21024951,20834370,1675,780,356918327,356576255,11943,5193,2431459537,2404607766,1.37,1.15,5.89,5.84,0.19,0.17,0.86,0.87
-73669,40,039,40039,1652,771,335893376,335741885,1675,780,356918327,356576255,27469,12204,2595346419,2561024716,98.63,98.85,94.11,94.16,6.01,6.32,12.94,13.11
-73673,40,009,40009,36,29,45073853,44558288,319,189,325391213,324772991,22119,9647,2341192211,2335665049,11.29,15.34,13.85,13.72,0.16,0.3,1.93,1.91
-73673,40,055,40055,283,160,280317360,280214703,319,189,325391213,324772991,6239,2738,1667000136,1655842714,88.71,84.66,86.15,86.28,4.54,5.84,16.82,16.92
-73701,40,047,40047,24808,10453,376407578,375959183,24808,10453,376407578,375959183,60580,26831,2745554732,2741414396,100,100,100,100,40.95,38.96,13.71,13.71
-73703,40,047,40047,27951,12927,294031601,293788877,27951,12927,294031601,293788877,60580,26831,2745554732,2741414396,100,100,100,100,46.14,48.18,10.71,10.72
-73705,40,047,40047,267,0,1146031,1146031,267,0,1146031,1146031,60580,26831,2745554732,2741414396,100,0,100,100,0.44,0,0.04,0.04
-73716,40,003,40003,396,229,152826210,152604749,510,302,327376289,327045817,5642,2763,2282653671,2244106958,77.65,75.83,46.68,46.66,7.02,8.29,6.7,6.8
-73716,40,093,40093,40,19,28396251,28319292,510,302,327376289,327045817,7527,3671,2481059265,2473407969,7.84,6.29,8.67,8.66,0.53,0.52,1.14,1.14
-73716,40,151,40151,74,54,146153828,146121776,510,302,327376289,327045817,8878,4478,3340992253,3331900551,14.51,17.88,44.64,44.68,0.83,1.21,4.37,4.39
-73717,40,003,40003,30,17,97804116,97756542,6846,3235,1704731534,1702124781,5642,2763,2282653671,2244106958,0.44,0.53,5.74,5.74,0.53,0.62,4.28,4.36
-73717,40,151,40151,6816,3218,1606927418,1604368239,6846,3235,1704731534,1702124781,8878,4478,3340992253,3331900551,99.56,99.47,94.26,94.26,76.77,71.86,48.1,48.15
-73718,40,047,40047,32,19,16915736,16915736,501,254,185465166,184931028,60580,26831,2745554732,2741414396,6.39,7.48,9.12,9.15,0.05,0.07,0.62,0.62
-73718,40,093,40093,469,235,168549430,168015292,501,254,185465166,184931028,7527,3671,2481059265,2473407969,93.61,92.52,90.88,90.85,6.23,6.4,6.79,6.79
-73719,40,003,40003,83,50,113725563,113725563,83,50,113725563,113725563,5642,2763,2282653671,2244106958,100,100,100,100,1.47,1.81,4.98,5.07
-73720,40,047,40047,265,126,149321261,149279126,265,126,149321261,149279126,60580,26831,2745554732,2741414396,100,100,100,100,0.44,0.47,5.44,5.45
-73722,40,003,40003,427,218,439359716,438799957,427,218,439359716,438799957,5642,2763,2282653671,2244106958,100,100,100,100,7.57,7.89,19.25,19.55
-73724,40,011,40011,992,725,186368867,160921538,1190,825,429907053,396161947,11943,5193,2431459537,2404607766,83.36,87.88,43.35,40.62,8.31,13.96,7.66,6.69
-73724,40,043,40043,198,100,243538186,235240409,1190,825,429907053,396161947,4810,2445,2611320187,2588632047,16.64,12.12,56.65,59.38,4.12,4.09,9.33,9.09
-73726,40,003,40003,416,264,177229886,177141339,472,300,275555805,275332411,5642,2763,2282653671,2244106958,88.14,88,64.32,64.34,7.37,9.55,7.76,7.89
-73726,40,151,40151,56,36,98325919,98191072,472,300,275555805,275332411,8878,4478,3340992253,3331900551,11.86,12,35.68,35.66,0.63,0.8,2.94,2.95
-73727,40,047,40047,267,112,98233708,98092036,267,112,98233708,98092036,60580,26831,2745554732,2741414396,100,100,100,100,0.44,0.42,3.58,3.58
-73728,40,003,40003,1861,1043,591602329,590981662,1861,1043,591602329,590981662,5642,2763,2282653671,2244106958,100,100,100,100,32.98,37.75,25.92,26.33
-73729,40,093,40093,559,271,118382131,118011767,578,288,148487778,148117414,7527,3671,2481059265,2473407969,96.71,94.1,79.73,79.67,7.43,7.38,4.77,4.77
-73729,40,151,40151,19,17,30105647,30105647,578,288,148487778,148117414,8878,4478,3340992253,3331900551,3.29,5.9,20.27,20.33,0.21,0.38,0.9,0.9
-73730,40,047,40047,734,357,148672569,148491149,734,357,148672569,148491149,60580,26831,2745554732,2741414396,100,100,100,100,1.21,1.33,5.42,5.42
-73731,40,151,40151,171,110,98091677,98059477,171,110,98091677,98059477,8878,4478,3340992253,3331900551,100,100,100,100,1.93,2.46,2.94,2.94
-73733,40,047,40047,221,99,133472669,133458641,221,99,133472669,133458641,60580,26831,2745554732,2741414396,100,100,100,100,0.36,0.37,4.86,4.87
-73734,40,073,40073,1067,457,272337878,268678513,1067,457,272337878,268678513,15034,6409,2346574496,2326225317,100,100,100,100,7.1,7.13,11.61,11.55
-73735,40,047,40047,684,285,91671364,91534597,684,285,91671364,91534597,60580,26831,2745554732,2741414396,100,100,100,100,1.13,1.06,3.34,3.34
-73736,40,047,40047,356,167,144039816,143509425,356,167,144039816,143509425,60580,26831,2745554732,2741414396,100,100,100,100,0.59,0.62,5.25,5.23
-73737,40,093,40093,3367,1709,841626093,839021357,3367,1709,841626093,839021357,7527,3671,2481059265,2473407969,100,100,100,100,44.73,46.55,33.92,33.92
-73738,40,047,40047,1134,554,267323333,266255492,1134,554,267323333,266255492,60580,26831,2745554732,2741414396,100,100,100,100,1.87,2.06,9.74,9.71
-73739,40,003,40003,348,183,108318970,108022765,369,194,126241314,125945109,5642,2763,2282653671,2244106958,94.31,94.33,85.8,85.77,6.17,6.62,4.75,4.81
-73739,40,047,40047,21,11,17922344,17922344,369,194,126241314,125945109,60580,26831,2745554732,2741414396,5.69,5.67,14.2,14.23,0.03,0.04,0.65,0.65
-73741,40,003,40003,1614,328,275182467,274664259,1614,328,275182467,274664259,5642,2763,2282653671,2244106958,100,100,100,100,28.61,11.87,12.06,12.24
-73742,40,073,40073,3824,1595,607472536,603556460,3824,1595,607472536,603556460,15034,6409,2346574496,2326225317,100,100,100,100,25.44,24.89,25.89,25.95
-73743,40,047,40047,122,50,14409206,14390364,122,50,14409206,14390364,60580,26831,2745554732,2741414396,100,100,100,100,0.2,0.19,0.52,0.52
-73744,40,011,40011,267,133,235693440,235623850,267,133,235693440,235623850,11943,5193,2431459537,2404607766,100,100,100,100,2.24,2.56,9.69,9.8
-73746,40,151,40151,37,19,1322106,1322106,37,19,1322106,1322106,8878,4478,3340992253,3331900551,100,100,100,100,0.42,0.42,0.04,0.04
-73747,40,093,40093,285,137,108907676,108410442,285,137,108907676,108410442,7527,3671,2481059265,2473407969,100,100,100,100,3.79,3.73,4.39,4.38
-73749,40,003,40003,448,406,207499974,204953423,448,406,207499974,204953423,5642,2763,2282653671,2244106958,100,100,100,100,7.94,14.69,9.09,9.13
-73750,40,073,40073,7025,2993,693571602,688242363,7025,2993,693571602,688242363,15034,6409,2346574496,2326225317,100,100,100,100,46.73,46.7,29.56,29.59
-73753,40,047,40047,468,197,168597934,168517823,468,197,168597934,168517823,60580,26831,2745554732,2741414396,100,100,100,100,0.77,0.73,6.14,6.15
-73754,40,047,40047,1033,450,68843079,68843079,1078,476,94698395,94581915,60580,26831,2745554732,2741414396,95.83,94.54,72.7,72.79,1.71,1.68,2.51,2.51
-73754,40,093,40093,45,26,25855316,25738836,1078,476,94698395,94581915,7527,3671,2481059265,2473407969,4.17,5.46,27.3,27.21,0.6,0.71,1.04,1.04
-73755,40,011,40011,689,495,110259060,110259013,905,603,191169024,191038023,11943,5193,2431459537,2404607766,76.13,82.09,57.68,57.72,5.77,9.53,4.53,4.59
-73755,40,043,40043,50,17,7369802,7285494,905,603,191169024,191038023,4810,2445,2611320187,2588632047,5.52,2.82,3.86,3.81,1.04,0.7,0.28,0.28
-73755,40,093,40093,166,91,73540162,73493516,905,603,191169024,191038023,7527,3671,2481059265,2473407969,18.34,15.09,38.47,38.47,2.21,2.48,2.96,2.97
-73756,40,073,40073,352,168,214423799,213195744,352,168,214423799,213195744,15034,6409,2346574496,2326225317,100,100,100,100,2.34,2.62,9.14,9.16
-73757,40,047,40047,24,12,33478591,33337312,178,95,90110599,89741304,60580,26831,2745554732,2741414396,13.48,12.63,37.15,37.15,0.04,0.04,1.22,1.22
-73757,40,103,40103,154,83,56632008,56403992,178,95,90110599,89741304,11561,5341,1923160372,1895599459,86.52,87.37,62.85,62.85,1.33,1.55,2.94,2.98
-73758,40,003,40003,19,25,76971409,76860227,197,135,244015431,243634449,5642,2763,2282653671,2244106958,9.64,18.52,31.54,31.55,0.34,0.9,3.37,3.42
-73758,40,053,40053,178,110,167044022,166774222,197,135,244015431,243634449,4527,2486,2599266891,2592244963,90.36,81.48,68.46,68.45,3.93,4.42,6.43,6.43
-73759,40,053,40053,1468,814,985412639,984261805,1468,814,985412639,984261805,4527,2486,2599266891,2592244963,100,100,100,100,32.43,32.74,37.91,37.97
-73760,40,093,40093,470,199,154992717,154137352,470,199,154992717,154137352,7527,3671,2481059265,2473407969,100,100,100,100,6.24,5.42,6.25,6.23
-73761,40,047,40047,17,9,22320109,22241948,395,231,263034450,262265497,60580,26831,2745554732,2741414396,4.3,3.9,8.49,8.48,0.03,0.03,0.81,0.81
-73761,40,053,40053,378,222,240714341,240023549,395,231,263034450,262265497,4527,2486,2599266891,2592244963,95.7,96.1,91.51,91.52,8.35,8.93,9.26,9.26
-73762,40,017,40017,876,373,266598161,263811544,2156,915,492117315,486824029,115541,45810,2345494502,2322250237,40.63,40.77,54.17,54.19,0.76,0.81,11.37,11.36
-73762,40,073,40073,1280,542,225519154,223012485,2156,915,492117315,486824029,15034,6409,2346574496,2326225317,59.37,59.23,45.83,45.81,8.51,8.46,9.61,9.59
-73763,40,011,40011,1539,737,411630291,411565856,1623,780,517002223,516206477,11943,5193,2431459537,2404607766,94.82,94.49,79.62,79.73,12.89,14.19,16.93,17.12
-73763,40,073,40073,26,16,48486654,47817638,1623,780,517002223,516206477,15034,6409,2346574496,2326225317,1.6,2.05,9.38,9.26,0.17,0.25,2.07,2.06
-73763,40,093,40093,58,27,56885278,56822983,1623,780,517002223,516206477,7527,3671,2481059265,2473407969,3.57,3.46,11,11.01,0.77,0.74,2.29,2.3
-73764,40,011,40011,37,23,66129035,66106211,144,78,129194437,128824694,11943,5193,2431459537,2404607766,25.69,29.49,51.19,51.31,0.31,0.44,2.72,2.75
-73764,40,073,40073,107,55,63065402,62718483,144,78,129194437,128824694,15034,6409,2346574496,2326225317,74.31,70.51,48.81,48.69,0.71,0.86,2.69,2.7
-73766,40,053,40053,1096,560,398771261,395621949,1096,560,398771261,395621949,4527,2486,2599266891,2592244963,100,100,100,100,24.21,22.53,15.34,15.26
-73768,40,093,40093,1568,658,341190977,339471998,1568,658,341190977,339471998,7527,3671,2481059265,2473407969,100,100,100,100,20.83,17.92,13.75,13.72
-73771,40,053,40053,495,314,349949829,349756510,495,314,349949829,349756510,4527,2486,2599266891,2592244963,100,100,100,100,10.93,12.63,13.46,13.49
-73772,40,011,40011,6119,1972,633497961,632870088,6119,1972,633497961,632870088,11943,5193,2431459537,2404607766,100,100,100,100,51.24,37.97,26.05,26.32
-73773,40,047,40047,1744,790,275415799,275346570,1744,790,275415799,275346570,60580,26831,2745554732,2741414396,100,100,100,100,2.88,2.94,10.03,10.04
-73801,40,059,40059,51,34,294964906,294882115,15228,7024,1249359383,1242086526,3685,1908,2696300239,2691040791,0.33,0.48,23.61,23.74,1.38,1.78,10.94,10.96
-73801,40,153,40153,15177,6990,954394477,947204411,15228,7024,1249359383,1242086526,20081,8838,3227491735,3217798327,99.67,99.52,76.39,76.26,75.58,79.09,29.57,29.44
-73832,40,045,40045,929,552,1186633350,1186452337,929,552,1186633350,1186452337,4151,2285,3190561931,3189609693,100,100,100,100,22.38,24.16,37.19,37.2
-73834,40,059,40059,1643,856,1058875668,1056635094,1643,856,1058875668,1056635094,3685,1908,2696300239,2691040791,100,100,100,100,44.59,44.86,39.27,39.26
-73835,40,043,40043,309,177,360269921,359544763,309,177,360269921,359544763,4810,2445,2611320187,2588632047,100,100,100,100,6.42,7.24,13.8,13.89
-73838,40,093,40093,411,225,287617884,287309832,462,248,373019009,372709438,7527,3671,2481059265,2473407969,88.96,90.73,77.11,77.09,5.46,6.13,11.59,11.62
-73838,40,153,40153,51,23,85401125,85399606,462,248,373019009,372709438,20081,8838,3227491735,3217798327,11.04,9.27,22.89,22.91,0.25,0.26,2.65,2.65
-73840,40,045,40045,568,273,262481064,262426414,691,340,448824485,448741487,4151,2285,3190561931,3189609693,82.2,80.29,58.48,58.48,13.68,11.95,8.23,8.23
-73840,40,153,40153,123,67,186343421,186315073,691,340,448824485,448741487,20081,8838,3227491735,3217798327,17.8,19.71,41.52,41.52,0.61,0.76,5.77,5.79
-73841,40,045,40045,44,22,63248167,63248167,1482,234,97758229,97758229,4151,2285,3190561931,3189609693,2.97,9.4,64.7,64.7,1.06,0.96,1.98,1.98
-73841,40,153,40153,1438,212,34510062,34510062,1482,234,97758229,97758229,20081,8838,3227491735,3217798327,97.03,90.6,35.3,35.3,7.16,2.4,1.07,1.07
-73842,40,059,40059,2,4,88439852,88353082,494,295,1136453770,1129809060,3685,1908,2696300239,2691040791,0.4,1.36,7.78,7.82,0.05,0.21,3.28,3.28
-73842,40,151,40151,443,256,746202167,741792724,494,295,1136453770,1129809060,8878,4478,3340992253,3331900551,89.68,86.78,65.66,65.66,4.99,5.72,22.33,22.26
-73842,40,153,40153,49,35,301811751,299663254,494,295,1136453770,1129809060,20081,8838,3227491735,3217798327,9.92,11.86,26.56,26.52,0.24,0.4,9.35,9.31
-73843,40,045,40045,883,473,830150888,830089681,883,473,830150888,830089681,4151,2285,3190561931,3189609693,100,100,100,100,21.27,20.7,26.02,26.02
-73844,40,007,40007,229,139,746698030,740895050,269,158,886085160,880282180,5636,2670,4707325546,4699978363,85.13,87.97,84.27,84.17,4.06,5.21,15.86,15.76
-73844,40,059,40059,40,19,139387130,139387130,269,158,886085160,880282180,3685,1908,2696300239,2691040791,14.87,12.03,15.73,15.83,1.09,1,5.17,5.18
-73848,40,007,40007,370,222,861182503,860820844,2156,1099,1577005659,1576395226,5636,2670,4707325546,4699978363,17.16,20.2,54.61,54.61,6.56,8.31,18.29,18.32
-73848,40,045,40045,5,4,12172986,12172986,2156,1099,1577005659,1576395226,4151,2285,3190561931,3189609693,0.23,0.36,0.77,0.77,0.12,0.18,0.38,0.38
-73848,40,059,40059,1781,873,703650170,703401396,2156,1099,1577005659,1576395226,3685,1908,2696300239,2691040791,82.61,79.44,44.62,44.62,48.33,45.75,26.1,26.14
-73851,40,045,40045,18,9,68959213,68959213,80,63,127302602,127302602,4151,2285,3190561931,3189609693,22.5,14.29,54.17,54.17,0.43,0.39,2.16,2.16
-73851,40,059,40059,62,54,58343389,58343389,80,63,127302602,127302602,3685,1908,2696300239,2691040791,77.5,85.71,45.83,45.83,1.68,2.83,2.16,2.17
-73852,40,153,40153,2051,973,1052943546,1052636172,2051,973,1052943546,1052636172,20081,8838,3227491735,3217798327,100,100,100,100,10.21,11.01,32.62,32.71
-73853,40,153,40153,379,184,340859831,340858260,379,184,340859831,340858260,20081,8838,3227491735,3217798327,100,100,100,100,1.89,2.08,10.56,10.59
-73855,40,059,40059,106,68,352639124,350038585,106,68,352639124,350038585,3685,1908,2696300239,2691040791,100,100,100,100,2.88,3.56,13.08,13.01
-73857,40,153,40153,623,270,163575267,163559234,623,270,163575267,163559234,20081,8838,3227491735,3217798327,100,100,100,100,3.1,3.05,5.07,5.08
-73858,40,045,40045,1666,920,643967206,643340397,1666,920,643967206,643340397,4151,2285,3190561931,3189609693,100,100,100,100,40.13,40.26,20.18,20.17
-73859,40,043,40043,1231,566,258224366,258027843,1459,682,488825678,488600596,4810,2445,2611320187,2588632047,84.37,82.99,52.83,52.81,25.59,23.15,9.89,9.97
-73859,40,045,40045,38,32,122949057,122920498,1459,682,488825678,488600596,4151,2285,3190561931,3189609693,2.6,4.69,25.15,25.16,0.92,1.4,3.85,3.85
-73859,40,153,40153,190,84,107652255,107652255,1459,682,488825678,488600596,20081,8838,3227491735,3217798327,13.02,12.32,22.02,22.03,0.95,0.95,3.34,3.35
-73860,40,093,40093,75,66,263484152,263140662,1337,834,877347643,875080172,7527,3671,2481059265,2473407969,5.61,7.91,30.03,30.07,1,1.8,10.62,10.64
-73860,40,151,40151,1262,768,613863491,611939510,1337,834,877347643,875080172,8878,4478,3340992253,3331900551,94.39,92.09,69.97,69.93,14.21,17.15,18.37,18.37
-73901,40,139,40139,156,73,32385550,32291862,156,73,32385550,32291862,20640,8208,5306058147,5286842403,100,100,100,100,0.76,0.89,0.61,0.61
-73931,40,007,40007,510,243,665551132,665198587,510,243,665551132,665198587,5636,2670,4707325546,4699978363,100,100,100,100,9.05,9.1,14.14,14.15
-73932,40,007,40007,2092,1030,1440243924,1439634031,2092,1030,1440243924,1439634031,5636,2670,4707325546,4699978363,100,100,100,100,37.12,38.58,30.6,30.63
-73933,40,025,40025,1697,1028,2699930959,2694463162,1697,1028,2699930959,2694463162,2475,1587,4767872735,4751948736,100,100,100,100,68.57,64.78,56.63,56.7
-73937,40,025,40025,173,108,455837583,453782309,173,108,455837583,453782309,2475,1587,4767872735,4751948736,100,100,100,100,6.99,6.81,9.56,9.55
-73938,40,007,40007,781,351,513359956,513218116,781,351,513359956,513218116,5636,2670,4707325546,4699978363,100,100,100,100,13.86,13.15,10.91,10.92
-73939,40,139,40139,1695,634,865415951,861393811,1695,634,865415951,861393811,20640,8208,5306058147,5286842403,100,100,100,100,8.21,7.72,16.31,16.29
-73942,40,139,40139,12953,4965,1621152360,1614595836,12953,4965,1621152360,1614595836,20640,8208,5306058147,5286842403,100,100,100,100,62.76,60.49,30.55,30.54
-73944,40,139,40139,388,236,579068778,578728013,388,236,579068778,578728013,20640,8208,5306058147,5286842403,100,100,100,100,1.88,2.88,10.91,10.95
-73945,40,139,40139,2889,1175,1002484746,999530341,2889,1175,1002484746,999530341,20640,8208,5306058147,5286842403,100,100,100,100,14,14.32,18.89,18.91
-73946,40,025,40025,45,57,471552090,465534169,45,57,471552090,465534169,2475,1587,4767872735,4751948736,100,100,100,100,1.82,3.59,9.89,9.8
-73947,40,025,40025,472,347,855857551,855308093,472,347,855857551,855308093,2475,1587,4767872735,4751948736,100,100,100,100,19.07,21.87,17.95,18
-73949,40,025,40025,88,47,284694552,282861003,1688,764,1366353259,1360361346,2475,1587,4767872735,4751948736,5.21,6.15,20.84,20.79,3.56,2.96,5.97,5.95
-73949,40,139,40139,1190,527,793852721,789694357,1688,764,1366353259,1360361346,20640,8208,5306058147,5286842403,70.5,68.98,58.1,58.05,5.77,6.42,14.96,14.94
-73949,48,421,48421,410,190,287805986,287805986,1688,764,1366353259,1360361346,3034,1252,2391079318,2390650564,24.29,24.87,21.06,21.16,13.51,15.18,12.04,12.04
-73950,40,007,40007,1654,685,480290001,480211735,1736,732,565217811,565079815,5636,2670,4707325546,4699978363,95.28,93.58,84.97,84.98,29.35,25.66,10.2,10.22
-73950,40,139,40139,82,47,84927810,84868080,1736,732,565217811,565079815,20640,8208,5306058147,5286842403,4.72,6.42,15.03,15.02,0.4,0.57,1.6,1.61
-73951,40,139,40139,1141,497,249025054,248222129,1141,497,249025054,248222129,20640,8208,5306058147,5286842403,100,100,100,100,5.53,6.06,4.69,4.7
-74001,40,113,40113,367,198,15664240,15542156,367,198,15664240,15542156,47472,21143,5967265966,5818040494,100,100,100,100,0.77,0.94,0.26,0.27
-74002,40,113,40113,2333,1061,376836240,374195498,2333,1061,376836240,374195498,47472,21143,5967265966,5818040494,100,100,100,100,4.91,5.02,6.32,6.43
-74003,40,113,40113,1729,807,271618094,269412073,14249,6951,318185486,315929479,47472,21143,5967265966,5818040494,12.13,11.61,85.36,85.28,3.64,3.82,4.55,4.63
-74003,40,147,40147,12520,6144,46567392,46517406,14249,6951,318185486,315929479,50976,23451,1098850195,1076020808,87.87,88.39,14.64,14.72,24.56,26.2,4.24,4.32
-74006,40,147,40147,25750,11719,231433103,230030857,25750,11719,231433103,230030857,50976,23451,1098850195,1076020808,100,100,100,100,50.51,49.97,21.06,21.38
-74008,40,143,40143,22271,8776,195703617,187338331,22461,8845,213530427,205165141,603403,268426,1520369807,1476931275,99.15,99.22,91.65,91.31,3.69,3.27,12.87,12.68
-74008,40,145,40145,190,69,17826810,17826810,22461,8845,213530427,205165141,73085,29694,1529844054,1454421645,0.85,0.78,8.35,8.69,0.26,0.23,1.17,1.23
-74010,40,037,40037,10478,4743,856881412,846024047,10501,4755,862167215,851239299,69967,29761,2511835882,2460853552,99.78,99.75,99.39,99.39,14.98,15.94,34.11,34.38
-74010,40,107,40107,23,12,5285803,5215252,10501,4755,862167215,851239299,12191,5282,1628766756,1602081668,0.22,0.25,0.61,0.61,0.19,0.23,0.32,0.33
-74011,40,143,40143,25448,9996,66401743,61284078,25448,9996,66401743,61284078,603403,268426,1520369807,1476931275,100,100,100,100,4.22,3.72,4.37,4.15
-74012,40,143,40143,57526,22205,64229797,64132269,57526,22205,64229797,64132269,603403,268426,1520369807,1476931275,100,100,100,100,9.53,8.27,4.22,4.34
-74014,40,143,40143,1208,503,2582179,2572386,34579,12954,276455369,272576661,603403,268426,1520369807,1476931275,3.49,3.88,0.93,0.94,0.2,0.19,0.17,0.17
-74014,40,145,40145,33371,12451,273873190,270004275,34579,12954,276455369,272576661,73085,29694,1529844054,1454421645,96.51,96.12,99.07,99.06,45.66,41.93,17.9,18.56
-74015,40,131,40131,5924,2735,108930285,107120478,8064,3766,149373139,147528229,86905,35160,1842768864,1749880020,73.46,72.62,72.92,72.61,6.82,7.78,5.91,6.12
-74015,40,143,40143,12,5,366604,366604,8064,3766,149373139,147528229,603403,268426,1520369807,1476931275,0.15,0.13,0.25,0.25,0,0,0.02,0.02
-74015,40,145,40145,2128,1026,40076250,40041147,8064,3766,149373139,147528229,73085,29694,1529844054,1454421645,26.39,27.24,26.83,27.14,2.91,3.46,2.62,2.75
-74016,40,035,40035,134,61,49909707,49834113,6005,2667,388797398,387901842,15029,6749,1975595079,1971897258,2.23,2.29,12.84,12.85,0.89,0.9,2.53,2.53
-74016,40,097,40097,455,203,57722873,57695087,6005,2667,388797398,387901842,41259,19239,1770287485,1697440860,7.58,7.61,14.85,14.87,1.1,1.06,3.26,3.4
-74016,40,105,40105,254,120,47089859,47005693,6005,2667,388797398,387901842,10536,4828,1504224462,1465355090,4.23,4.5,12.11,12.12,2.41,2.49,3.13,3.21
-74016,40,131,40131,5162,2283,234074959,233366949,6005,2667,388797398,387901842,86905,35160,1842768864,1749880020,85.96,85.6,60.2,60.16,5.94,6.49,12.7,13.34
-74017,40,131,40131,28057,11669,378375975,373875263,28057,11669,378375975,373875263,86905,35160,1842768864,1749880020,100,100,100,100,32.28,33.19,20.53,21.37
-74019,40,131,40131,17648,6957,287727216,285373230,17648,6957,287727216,285373230,86905,35160,1842768864,1749880020,100,100,100,100,20.31,19.79,15.61,16.31
-74020,40,117,40117,7294,3385,208924447,176620588,7294,3385,208924447,176620588,16577,7745,1540432659,1470996347,100,100,100,100,44,43.71,13.56,12.01
-74021,40,131,40131,4011,1416,32965048,32766462,17359,6708,179185083,178403384,86905,35160,1842768864,1749880020,23.11,21.11,18.4,18.37,4.62,4.03,1.79,1.87
-74021,40,143,40143,12846,5096,114569789,114136513,17359,6708,179185083,178403384,603403,268426,1520369807,1476931275,74,75.97,63.94,63.98,2.13,1.9,7.54,7.73
-74021,40,147,40147,502,196,31650246,31500409,17359,6708,179185083,178403384,50976,23451,1098850195,1076020808,2.89,2.92,17.66,17.66,0.98,0.84,2.88,2.93
-74022,40,113,40113,48,24,138060038,133179220,1760,832,329616027,306430325,47472,21143,5967265966,5818040494,2.73,2.88,41.89,43.46,0.1,0.11,2.31,2.29
-74022,40,147,40147,1712,808,191555989,173251105,1760,832,329616027,306430325,50976,23451,1098850195,1076020808,97.27,97.12,58.11,56.54,3.36,3.45,17.43,16.1
-74023,40,081,40081,999,439,186591454,185746979,11741,5317,460217737,455832049,34273,15208,2501095807,2466481063,8.51,8.26,40.54,40.75,2.91,2.89,7.46,7.53
-74023,40,119,40119,10742,4878,273626283,270085070,11741,5317,460217737,455832049,77350,33991,1805150789,1773371786,91.49,91.74,59.46,59.25,13.89,14.35,15.16,15.23
-74026,40,081,40081,896,413,6403914,6331070,896,413,6403914,6331070,34273,15208,2501095807,2466481063,100,100,100,100,2.61,2.72,0.26,0.26
-74027,40,105,40105,1015,463,239122428,238693605,1015,463,239122428,238693605,10536,4828,1504224462,1465355090,100,100,100,100,9.63,9.59,15.9,16.29
-74028,40,037,40037,1881,802,267470102,263363388,1881,802,267470102,263363388,69967,29761,2511835882,2460853552,100,100,100,100,2.69,2.69,10.65,10.7
-74029,40,147,40147,5128,2303,134393770,134116685,5128,2303,134393770,134116685,50976,23451,1098850195,1076020808,100,100,100,100,10.06,9.82,12.23,12.46
-74030,40,037,40037,3614,1717,169083719,168191028,3864,1842,179479762,178587071,69967,29761,2511835882,2460853552,93.53,93.21,94.21,94.18,5.17,5.77,6.73,6.83
-74030,40,119,40119,250,125,10396043,10396043,3864,1842,179479762,178587071,77350,33991,1805150789,1773371786,6.47,6.79,5.79,5.82,0.32,0.37,0.58,0.59
-74032,40,103,40103,71,30,18940926,18940926,2219,1034,270191961,267261323,11561,5341,1923160372,1895599459,3.2,2.9,7.01,7.09,0.61,0.56,0.98,1
-74032,40,117,40117,139,63,44138446,44138446,2219,1034,270191961,267261323,16577,7745,1540432659,1470996347,6.26,6.09,16.34,16.52,0.84,0.81,2.87,3
-74032,40,119,40119,2009,941,207112589,204181951,2219,1034,270191961,267261323,77350,33991,1805150789,1773371786,90.54,91.01,76.65,76.4,2.6,2.77,11.47,11.51
-74033,40,143,40143,10163,3712,30830375,30830375,10163,3712,30830375,30830375,603403,268426,1520369807,1476931275,100,100,100,100,1.68,1.38,2.03,2.09
-74034,40,117,40117,150,75,8347288,8347288,150,75,8347288,8347288,16577,7745,1540432659,1470996347,100,100,100,100,0.9,0.97,0.54,0.57
-74035,40,113,40113,4565,1702,643941079,624227900,4565,1702,643941079,624227900,47472,21143,5967265966,5818040494,100,100,100,100,9.62,8.05,10.79,10.73
-74036,40,097,40097,227,85,25457272,25295365,6734,2663,321745791,318498163,41259,19239,1770287485,1697440860,3.37,3.19,7.91,7.94,0.55,0.44,1.44,1.49
-74036,40,131,40131,6408,2540,272989006,270558072,6734,2663,321745791,318498163,86905,35160,1842768864,1749880020,95.16,95.38,84.85,84.95,7.37,7.22,14.81,15.46
-74036,40,145,40145,99,38,23299513,22644726,6734,2663,321745791,318498163,73085,29694,1529844054,1454421645,1.47,1.43,7.24,7.11,0.14,0.13,1.52,1.56
-74037,40,143,40143,15159,5699,40838766,37204863,15159,5699,40838766,37204863,603403,268426,1520369807,1476931275,100,100,100,100,2.51,2.12,2.69,2.52
-74038,40,037,40037,898,369,122974051,121584455,2254,993,252345279,250875859,69967,29761,2511835882,2460853552,39.84,37.16,48.73,48.46,1.28,1.24,4.9,4.94
-74038,40,117,40117,1356,624,129371228,129291404,2254,993,252345279,250875859,16577,7745,1540432659,1470996347,60.16,62.84,51.27,51.54,8.18,8.06,8.4,8.79
-74039,40,037,40037,3770,1511,171896725,169273283,3770,1511,171896725,169273283,69967,29761,2511835882,2460853552,100,100,100,100,5.39,5.08,6.84,6.88
-74041,40,037,40037,2057,841,19553434,19300748,2057,841,19553434,19300748,69967,29761,2511835882,2460853552,100,100,100,100,2.94,2.83,0.78,0.78
-74042,40,105,40105,540,238,149304287,147804417,540,238,149304287,147804417,10536,4828,1504224462,1465355090,100,100,100,100,5.13,4.93,9.93,10.09
-74044,40,037,40037,6665,2833,211958624,193164208,7406,3170,238386413,209066196,69967,29761,2511835882,2460853552,89.99,89.37,88.91,92.39,9.53,9.52,8.44,7.85
-74044,40,117,40117,741,337,26427789,15901988,7406,3170,238386413,209066196,16577,7745,1540432659,1470996347,10.01,10.63,11.09,7.61,4.47,4.35,1.72,1.08
-74045,40,117,40117,267,158,115804160,115762831,311,170,116118659,116077330,16577,7745,1540432659,1470996347,85.85,92.94,99.73,99.73,1.61,2.04,7.52,7.87
-74045,40,119,40119,44,12,314499,314499,311,170,116118659,116077330,77350,33991,1805150789,1773371786,14.15,7.06,0.27,0.27,0.06,0.04,0.02,0.02
-74046,40,037,40037,115,57,2251061,2234284,115,57,2251061,2234284,69967,29761,2511835882,2460853552,100,100,100,100,0.16,0.19,0.09,0.09
-74047,40,037,40037,2444,1010,54972210,53982529,7163,2880,258589678,257531408,69967,29761,2511835882,2460853552,34.12,35.07,21.26,20.96,3.49,3.39,2.19,2.19
-74047,40,111,40111,3277,1321,142003817,141935228,7163,2880,258589678,257531408,40069,17891,1819039066,1806124291,45.75,45.87,54.91,55.11,8.18,7.38,7.81,7.86
-74047,40,143,40143,1442,549,61613651,61613651,7163,2880,258589678,257531408,603403,268426,1520369807,1476931275,20.13,19.06,23.83,23.92,0.24,0.2,4.05,4.17
-74048,40,105,40105,6092,2809,544440052,540726196,6092,2809,544440052,540726196,10536,4828,1504224462,1465355090,100,100,100,100,57.82,58.18,36.19,36.9
-74050,40,037,40037,265,137,590109,590109,323,159,634404,634404,69967,29761,2511835882,2460853552,82.04,86.16,93.02,93.02,0.38,0.46,0.02,0.02
-74050,40,143,40143,58,22,44295,44295,323,159,634404,634404,603403,268426,1520369807,1476931275,17.96,13.84,6.98,6.98,0.01,0.01,0,0
-74051,40,113,40113,18,8,5360745,5301711,1904,822,88276123,87158139,47472,21143,5967265966,5818040494,0.95,0.97,6.07,6.08,0.04,0.04,0.09,0.09
-74051,40,147,40147,1886,814,82915378,81856428,1904,822,88276123,87158139,50976,23451,1098850195,1076020808,99.05,99.03,93.93,93.92,3.7,3.47,7.55,7.61
-74052,40,037,40037,1180,585,38392229,37681173,1180,585,38392229,37681173,69967,29761,2511835882,2460853552,100,100,100,100,1.69,1.97,1.53,1.53
-74053,40,131,40131,4315,1712,102962484,102336866,4315,1712,102962484,102336866,86905,35160,1842768864,1749880020,100,100,100,100,4.97,4.87,5.59,5.85
-74054,40,113,40113,844,409,88984961,73708965,844,409,88984961,73708965,47472,21143,5967265966,5818040494,100,100,100,100,1.78,1.93,1.49,1.27
-74055,40,131,40131,11146,4157,61023559,60881462,38680,14912,132597066,132310744,86905,35160,1842768864,1749880020,28.82,27.88,46.02,46.01,12.83,11.82,3.31,3.48
-74055,40,143,40143,27534,10755,71573507,71429282,38680,14912,132597066,132310744,603403,268426,1520369807,1476931275,71.18,72.12,53.98,53.99,4.56,4.01,4.71,4.84
-74056,40,113,40113,5720,2990,1710375612,1692269628,5720,2990,1710375612,1692269628,47472,21143,5967265966,5818040494,100,100,100,100,12.05,14.14,28.66,29.09
-74058,40,117,40117,4259,2033,675704768,667142175,4259,2033,675704768,667142175,16577,7745,1540432659,1470996347,100,100,100,100,25.69,26.25,43.86,45.35
-74059,40,081,40081,303,144,85237756,85210959,5476,2365,302112376,299085712,34273,15208,2501095807,2466481063,5.53,6.09,28.21,28.49,0.88,0.95,3.41,3.45
-74059,40,083,40083,28,11,19151123,18918249,5476,2365,302112376,299085712,41848,17195,1939447775,1926521787,0.51,0.47,6.34,6.33,0.07,0.06,0.99,0.98
-74059,40,119,40119,5145,2210,197723497,194956504,5476,2365,302112376,299085712,77350,33991,1805150789,1773371786,93.96,93.45,65.45,65.18,6.65,6.5,10.95,10.99
-74060,40,113,40113,586,276,41245805,37495435,586,276,41245805,37495435,47472,21143,5967265966,5818040494,100,100,100,100,1.23,1.31,0.69,0.64
-74061,40,147,40147,2095,906,239132814,237700336,2095,906,239132814,237700336,50976,23451,1098850195,1076020808,100,100,100,100,4.11,3.86,21.76,22.09
-74062,40,119,40119,1123,483,84296049,81608114,1123,483,84296049,81608114,77350,33991,1805150789,1773371786,100,100,100,100,1.45,1.42,4.67,4.6
-74063,40,037,40037,648,251,43363041,43152054,29808,12632,371746325,351787392,69967,29761,2511835882,2460853552,2.17,1.99,11.66,12.27,0.93,0.84,1.73,1.75
-74063,40,113,40113,5131,2204,153131193,144333440,29808,12632,371746325,351787392,47472,21143,5967265966,5818040494,17.21,17.45,41.19,41.03,10.81,10.42,2.57,2.48
-74063,40,143,40143,24029,10177,175252091,164301898,29808,12632,371746325,351787392,603403,268426,1520369807,1476931275,80.61,80.57,47.14,46.7,3.98,3.79,11.53,11.12
-74066,40,037,40037,29910,12449,327627919,323520892,31060,13011,332425745,328318086,69967,29761,2511835882,2460853552,96.3,95.68,98.56,98.54,42.75,41.83,13.04,13.15
-74066,40,143,40143,1150,562,4797826,4797194,31060,13011,332425745,328318086,603403,268426,1520369807,1476931275,3.7,4.32,1.44,1.46,0.19,0.21,0.32,0.32
-74068,40,037,40037,111,60,1983670,1973980,111,60,1983670,1973980,69967,29761,2511835882,2460853552,100,100,100,100,0.16,0.2,0.08,0.08
-74070,40,113,40113,9615,3885,395496169,369934000,13928,5688,514284602,488232547,47472,21143,5967265966,5818040494,69.03,68.3,76.9,75.77,20.25,18.37,6.63,6.36
-74070,40,143,40143,3546,1508,85585243,85095357,13928,5688,514284602,488232547,603403,268426,1520369807,1476931275,25.46,26.51,16.64,17.43,0.59,0.56,5.63,5.76
-74070,40,147,40147,767,295,33203190,33203190,13928,5688,514284602,488232547,50976,23451,1098850195,1076020808,5.51,5.19,6.46,6.8,1.5,1.26,3.02,3.09
-74071,40,037,40037,180,88,19719434,19416058,180,88,19719434,19416058,69967,29761,2511835882,2460853552,100,100,100,100,0.26,0.3,0.79,0.79
-74072,40,035,40035,10,12,28011742,28007490,1816,832,293533664,293144119,15029,6749,1975595079,1971897258,0.55,1.44,9.54,9.55,0.07,0.18,1.42,1.42
-74072,40,105,40105,1806,820,265521922,265136629,1816,832,293533664,293144119,10536,4828,1504224462,1465355090,99.45,98.56,90.46,90.45,17.14,16.98,17.65,18.09
-74073,40,113,40113,2139,827,76811103,67883998,5118,2089,130398655,121309325,47472,21143,5967265966,5818040494,41.79,39.59,58.9,55.96,4.51,3.91,1.29,1.17
-74073,40,143,40143,2979,1262,53587552,53425327,5118,2089,130398655,121309325,603403,268426,1520369807,1476931275,58.21,60.41,41.1,44.04,0.49,0.47,3.52,3.62
-74074,40,119,40119,29184,12607,347595702,341272611,29184,12607,347595702,341272611,77350,33991,1805150789,1773371786,100,100,100,100,37.73,37.09,19.26,19.24
-74075,40,103,40103,577,240,30313284,26221236,23866,11430,254751226,239766105,11561,5341,1923160372,1895599459,2.42,2.1,11.9,10.94,4.99,4.49,1.58,1.38
-74075,40,119,40119,23289,11190,224437942,213544869,23866,11430,254751226,239766105,77350,33991,1805150789,1773371786,97.58,97.9,88.1,89.06,30.11,32.92,12.43,12.04
-74078,40,119,40119,2295,0,626995,626995,2295,0,626995,626995,77350,33991,1805150789,1773371786,100,0,100,100,2.97,0,0.03,0.04
-74079,40,037,40037,340,151,131152885,129715397,4504,2141,462498557,454510598,69967,29761,2511835882,2460853552,7.55,7.05,28.36,28.54,0.49,0.51,5.22,5.27
-74079,40,081,40081,4164,1990,331345672,324795201,4504,2141,462498557,454510598,34273,15208,2501095807,2466481063,92.45,92.95,71.64,71.46,12.15,13.09,13.25,13.17
-74080,40,131,40131,2591,1056,228410515,227662753,2829,1151,260120418,259327676,86905,35160,1842768864,1749880020,91.59,91.75,87.81,87.79,2.98,3,12.39,13.01
-74080,40,147,40147,238,95,31709903,31664923,2829,1151,260120418,259327676,50976,23451,1098850195,1076020808,8.41,8.25,12.19,12.21,0.47,0.41,2.89,2.94
-74081,40,037,40037,160,81,30941062,27146388,1837,798,93768218,88223598,69967,29761,2511835882,2460853552,8.71,10.15,33,30.77,0.23,0.27,1.23,1.1
-74081,40,117,40117,1677,717,62827156,61077210,1837,798,93768218,88223598,16577,7745,1540432659,1470996347,91.29,89.85,67,69.23,10.12,9.26,4.08,4.15
-74082,40,147,40147,107,40,197541,197541,107,40,197541,197541,50976,23451,1098850195,1076020808,100,100,100,100,0.21,0.17,0.02,0.02
-74083,40,105,40105,760,346,195412317,195001135,1031,477,271503186,270983063,10536,4828,1504224462,1465355090,73.71,72.54,71.97,71.96,7.21,7.17,12.99,13.31
-74083,40,147,40147,271,131,76090869,75981928,1031,477,271503186,270983063,50976,23451,1098850195,1076020808,26.29,27.46,28.03,28.04,0.53,0.56,6.92,7.06
-74084,40,113,40113,628,345,157558836,157442714,628,345,157558836,157442714,47472,21143,5967265966,5818040494,100,100,100,100,1.32,1.63,2.64,2.71
-74085,40,037,40037,5,6,7544281,7333065,2588,1238,242420789,241068385,69967,29761,2511835882,2460853552,0.19,0.48,3.11,3.04,0.01,0.02,0.3,0.3
-74085,40,117,40117,93,39,21913845,21908630,2588,1238,242420789,241068385,16577,7745,1540432659,1470996347,3.59,3.15,9.04,9.09,0.56,0.5,1.42,1.49
-74085,40,119,40119,2490,1193,212962663,211826690,2588,1238,242420789,241068385,77350,33991,1805150789,1773371786,96.21,96.37,87.85,87.87,3.22,3.51,11.8,11.94
-74103,40,143,40143,2692,160,1477507,1477507,2692,160,1477507,1477507,603403,268426,1520369807,1476931275,100,100,100,100,0.45,0.06,0.1,0.1
-74104,40,143,40143,12724,6606,7052674,7052674,12724,6606,7052674,7052674,603403,268426,1520369807,1476931275,100,100,100,100,2.11,2.46,0.46,0.48
-74105,40,143,40143,26547,14622,19714801,18922019,26547,14622,19714801,18922019,603403,268426,1520369807,1476931275,100,100,100,100,4.4,5.45,1.3,1.28
-74106,40,113,40113,721,303,182722,182722,17648,8379,19623229,19616643,47472,21143,5967265966,5818040494,4.09,3.62,0.93,0.93,1.52,1.43,0,0
-74106,40,143,40143,16927,8076,19440507,19433921,17648,8379,19623229,19616643,603403,268426,1520369807,1476931275,95.91,96.38,99.07,99.07,2.81,3.01,1.28,1.32
-74107,40,143,40143,19458,8947,69787317,66446160,19458,8947,69787317,66446160,603403,268426,1520369807,1476931275,100,100,100,100,3.22,3.33,4.59,4.5
-74108,40,143,40143,5971,2366,19392233,19372613,7490,2936,21126229,21106609,603403,268426,1520369807,1476931275,79.72,80.59,91.79,91.78,0.99,0.88,1.28,1.31
-74108,40,145,40145,1519,570,1733996,1733996,7490,2936,21126229,21106609,73085,29694,1529844054,1454421645,20.28,19.41,8.21,8.22,2.08,1.92,0.11,0.12
-74110,40,143,40143,14862,6378,15332800,15326364,14862,6378,15332800,15326364,603403,268426,1520369807,1476931275,100,100,100,100,2.46,2.38,1.01,1.04
-74112,40,143,40143,20684,10275,17590045,17560641,20684,10275,17590045,17560641,603403,268426,1520369807,1476931275,100,100,100,100,3.43,3.83,1.16,1.19
-74114,40,143,40143,15778,8020,12831104,12622115,15778,8020,12831104,12622115,603403,268426,1520369807,1476931275,100,100,100,100,2.61,2.99,0.84,0.85
-74115,40,143,40143,22941,9886,42534997,40554601,22941,9886,42534997,40554601,603403,268426,1520369807,1476931275,100,100,100,100,3.8,3.68,2.8,2.75
-74116,40,131,40131,1271,480,8941635,8941635,3890,1777,46730213,46559752,86905,35160,1842768864,1749880020,32.67,27.01,19.13,19.2,1.46,1.37,0.49,0.51
-74116,40,143,40143,2619,1297,37788578,37618117,3890,1777,46730213,46559752,603403,268426,1520369807,1476931275,67.33,72.99,80.87,80.8,0.43,0.48,2.49,2.55
-74117,40,143,40143,87,44,31843140,31595960,87,44,31843140,31595960,603403,268426,1520369807,1476931275,100,100,100,100,0.01,0.02,2.09,2.14
-74119,40,143,40143,3561,3036,2037045,2037045,3561,3036,2037045,2037045,603403,268426,1520369807,1476931275,100,100,100,100,0.59,1.13,0.13,0.14
-74120,40,143,40143,4940,3028,5527984,5523242,4940,3028,5527984,5523242,603403,268426,1520369807,1476931275,100,100,100,100,0.82,1.13,0.36,0.37
-74126,40,113,40113,1003,412,46043759,45819747,10598,4795,62281709,62054905,47472,21143,5967265966,5818040494,9.46,8.59,73.93,73.84,2.11,1.95,0.77,0.79
-74126,40,143,40143,9595,4383,16237950,16235158,10598,4795,62281709,62054905,603403,268426,1520369807,1476931275,90.54,91.41,26.07,26.16,1.59,1.63,1.07,1.1
-74127,40,113,40113,5782,2516,48179175,47954971,17151,7906,66063347,63160827,47472,21143,5967265966,5818040494,33.71,31.82,72.93,75.93,12.18,11.9,0.81,0.82
-74127,40,143,40143,11369,5390,17884172,15205856,17151,7906,66063347,63160827,603403,268426,1520369807,1476931275,66.29,68.18,27.07,24.07,1.88,2.01,1.18,1.03
-74128,40,143,40143,12676,5193,9572817,9572817,12676,5193,9572817,9572817,603403,268426,1520369807,1476931275,100,100,100,100,2.1,1.93,0.63,0.65
-74129,40,143,40143,18976,7935,10834322,10792940,18976,7935,10834322,10792940,603403,268426,1520369807,1476931275,100,100,100,100,3.14,2.96,0.71,0.73
-74130,40,143,40143,2065,977,10556322,10518882,2065,977,10556322,10518882,603403,268426,1520369807,1476931275,100,100,100,100,0.34,0.36,0.69,0.71
-74131,40,037,40037,2750,1159,25870055,25670117,2775,1173,25966639,25766701,69967,29761,2511835882,2460853552,99.1,98.81,99.63,99.63,3.93,3.89,1.03,1.04
-74131,40,143,40143,25,14,96584,96584,2775,1173,25966639,25766701,603403,268426,1520369807,1476931275,0.9,1.19,0.37,0.37,0,0.01,0.01,0.01
-74132,40,037,40037,2496,911,7609859,7536349,7543,3113,32693596,31542565,69967,29761,2511835882,2460853552,33.09,29.26,23.28,23.89,3.57,3.06,0.3,0.31
-74132,40,143,40143,5047,2202,25083737,24006216,7543,3113,32693596,31542565,603403,268426,1520369807,1476931275,66.91,70.74,76.72,76.11,0.84,0.82,1.65,1.63
-74133,40,143,40143,43414,19962,35687919,35635722,43414,19962,35687919,35635722,603403,268426,1520369807,1476931275,100,100,100,100,7.19,7.44,2.35,2.41
-74134,40,143,40143,15083,6211,29613442,28571775,15083,6211,29613442,28571775,603403,268426,1520369807,1476931275,100,100,100,100,2.5,2.31,1.95,1.93
-74135,40,143,40143,20651,10984,15636775,15622888,20651,10984,15636775,15622888,603403,268426,1520369807,1476931275,100,100,100,100,3.42,4.09,1.03,1.06
-74136,40,143,40143,30703,15610,21995477,20929510,30703,15610,21995477,20929510,603403,268426,1520369807,1476931275,100,100,100,100,5.09,5.82,1.45,1.42
-74137,40,143,40143,25737,11276,27891215,26743390,25737,11276,27891215,26743390,603403,268426,1520369807,1476931275,100,100,100,100,4.27,4.2,1.83,1.81
-74145,40,143,40143,17402,8507,15759473,15726203,17402,8507,15759473,15726203,603403,268426,1520369807,1476931275,100,100,100,100,2.88,3.17,1.04,1.06
-74146,40,143,40143,15498,6214,13191835,13157932,15498,6214,13191835,13157932,603403,268426,1520369807,1476931275,100,100,100,100,2.57,2.31,0.87,0.89
-74301,40,035,40035,10395,4504,959771071,958077554,11840,5399,1035582210,1026339514,15029,6749,1975595079,1971897258,87.8,83.42,92.68,93.35,69.17,66.74,48.58,48.59
-74301,40,097,40097,1376,863,48260242,40711063,11840,5399,1035582210,1026339514,41259,19239,1770287485,1697440860,11.62,15.98,4.66,3.97,3.34,4.49,2.73,2.4
-74301,40,105,40105,69,32,27550897,27550897,11840,5399,1035582210,1026339514,10536,4828,1504224462,1465355090,0.58,0.59,2.66,2.68,0.65,0.66,1.83,1.88
-74330,40,097,40097,2884,1306,254325777,251280513,2884,1306,254325777,251280513,41259,19239,1770287485,1697440860,100,100,100,100,6.99,6.79,14.37,14.8
-74331,40,035,40035,274,193,38362173,38182578,7258,6258,346897970,291000258,15029,6749,1975595079,1971897258,3.78,3.08,11.06,13.12,1.82,2.86,1.94,1.94
-74331,40,041,40041,5449,5380,216818015,161487815,7258,6258,346897970,291000258,41487,24818,2052073762,1911868565,75.08,85.97,62.5,55.49,13.13,21.68,10.57,8.45
-74331,40,115,40115,1535,685,91717782,91329865,7258,6258,346897970,291000258,31848,14060,1255130307,1219421293,21.15,10.95,26.44,31.38,4.82,4.87,7.31,7.49
-74332,40,035,40035,873,378,91776632,91449979,1972,894,179736510,177347841,15029,6749,1975595079,1971897258,44.27,42.28,51.06,51.57,5.81,5.6,4.65,4.64
-74332,40,097,40097,727,361,56014441,54074925,1972,894,179736510,177347841,41259,19239,1770287485,1697440860,36.87,40.38,31.16,30.49,1.76,1.88,3.16,3.19
-74332,40,131,40131,372,155,31945437,31822937,1972,894,179736510,177347841,86905,35160,1842768864,1749880020,18.86,17.34,17.77,17.94,0.43,0.44,1.73,1.82
-74333,40,035,40035,1147,509,198914224,198766175,1221,540,232521793,232201963,15029,6749,1975595079,1971897258,93.94,94.26,85.55,85.6,7.63,7.54,10.07,10.08
-74333,40,115,40115,74,31,33607569,33435788,1221,540,232521793,232201963,31848,14060,1255130307,1219421293,6.06,5.74,14.45,14.4,0.23,0.22,2.68,2.74
-74337,40,097,40097,4590,2056,213717182,209230080,5060,2341,247942825,238179855,41259,19239,1770287485,1697440860,90.71,87.83,86.2,87.85,11.12,10.69,12.07,12.33
-74337,40,145,40145,470,285,34225643,28949775,5060,2341,247942825,238179855,73085,29694,1529844054,1454421645,9.29,12.17,13.8,12.15,0.64,0.96,2.24,1.99
-74338,40,001,40001,38,12,1164742,1162933,5480,2243,430915444,429489972,22683,9142,1494559829,1485298113,0.69,0.53,0.27,0.27,0.17,0.13,0.08,0.08
-74338,40,041,40041,5442,2231,429750702,428327039,5480,2243,430915444,429489972,41487,24818,2052073762,1911868565,99.31,99.47,99.73,99.73,13.12,8.99,20.94,22.4
-74339,40,115,40115,2606,1108,8902463,8902463,2606,1108,8902463,8902463,31848,14060,1255130307,1219421293,100,100,100,100,8.18,7.88,0.71,0.73
-74340,40,097,40097,311,259,8803318,4666571,311,259,8803318,4666571,41259,19239,1770287485,1697440860,100,100,100,100,0.75,1.35,0.5,0.27
-74342,40,041,40041,2927,2501,207511238,193502360,2927,2501,207511238,193502360,41487,24818,2052073762,1911868565,100,100,100,100,7.06,10.08,10.11,10.12
-74343,40,115,40115,3100,1466,179807161,166743523,3100,1466,179807161,166743523,31848,14060,1255130307,1219421293,100,100,100,100,9.73,10.43,14.33,13.67
-74344,40,041,40041,14361,8322,271139036,225534468,14412,8385,277592943,231970248,41487,24818,2052073762,1911868565,99.65,99.25,97.68,97.23,34.62,33.53,13.21,11.8
-74344,40,115,40115,51,63,6453907,6435780,14412,8385,277592943,231970248,31848,14060,1255130307,1219421293,0.35,0.75,2.32,2.77,0.16,0.45,0.51,0.53
-74346,40,041,40041,7864,3849,594905650,574329526,7864,3849,594905650,574329526,41487,24818,2052073762,1911868565,100,100,100,100,18.96,15.51,28.99,30.04
-74347,40,001,40001,302,140,16899912,16783677,2593,1354,91418907,91197678,22683,9142,1494559829,1485298113,11.65,10.34,18.49,18.4,1.33,1.53,1.13,1.13
-74347,40,021,40021,87,39,18066638,17961644,2593,1354,91418907,91197678,46987,21455,2010582452,1940956597,3.36,2.88,19.76,19.7,0.19,0.18,0.9,0.93
-74347,40,041,40041,2204,1175,56452357,56452357,2593,1354,91418907,91197678,41487,24818,2052073762,1911868565,85,86.78,61.75,61.9,5.31,4.73,2.75,2.95
-74349,40,035,40035,292,187,3556268,3382628,318,237,3766320,3592680,15029,6749,1975595079,1971897258,91.82,78.9,94.42,94.15,1.94,2.77,0.18,0.17
-74349,40,097,40097,26,50,210052,210052,318,237,3766320,3592680,41259,19239,1770287485,1697440860,8.18,21.1,5.58,5.85,0.06,0.26,0.01,0.01
-74350,40,097,40097,862,490,16019750,15338116,862,490,16019750,15338116,41259,19239,1770287485,1697440860,100,100,100,100,2.09,2.55,0.9,0.9
-74352,40,021,40021,215,91,20549680,20549680,6803,3074,352836867,338807556,46987,21455,2010582452,1940956597,3.16,2.96,5.82,6.07,0.46,0.42,1.02,1.06
-74352,40,097,40097,6414,2892,281369041,276375145,6803,3074,352836867,338807556,41259,19239,1770287485,1697440860,94.28,94.08,79.74,81.57,15.55,15.03,15.89,16.28
-74352,40,145,40145,174,91,50918146,41882731,6803,3074,352836867,338807556,73085,29694,1529844054,1454421645,2.56,2.96,14.43,12.36,0.24,0.31,3.33,2.88
-74354,40,035,40035,101,39,11701080,11632853,18126,7806,475371654,468231633,15029,6749,1975595079,1971897258,0.56,0.5,2.46,2.48,0.67,0.58,0.59,0.59
-74354,40,115,40115,18025,7767,463670574,456598780,18126,7806,475371654,468231633,31848,14060,1255130307,1219421293,99.44,99.5,97.54,97.52,56.6,55.24,36.94,37.44
-74358,40,115,40115,270,124,321134,321134,270,124,321134,321134,31848,14060,1255130307,1219421293,100,100,100,100,0.85,0.88,0.03,0.03
-74359,40,041,40041,656,258,24304795,24304443,656,258,24304795,24304443,41487,24818,2052073762,1911868565,100,100,100,100,1.58,1.04,1.18,1.27
-74360,40,115,40115,31,39,16695760,16649433,31,39,16695760,16649433,31848,14060,1255130307,1219421293,100,100,100,100,0.1,0.28,1.33,1.37
-74361,40,097,40097,16293,7077,460561014,443019610,16293,7077,460561014,443019610,41259,19239,1770287485,1697440860,100,100,100,100,39.49,36.78,26.02,26.1
-74363,40,115,40115,2892,1207,177311086,176206393,2892,1207,177311086,176206393,31848,14060,1255130307,1219421293,100,100,100,100,9.08,8.58,14.13,14.45
-74364,40,021,40021,311,131,46303457,46303457,1750,751,246555152,246553475,46987,21455,2010582452,1940956597,17.77,17.44,18.78,18.78,0.66,0.61,2.3,2.39
-74364,40,041,40041,1147,474,173952464,173950787,1750,751,246555152,246553475,41487,24818,2052073762,1911868565,65.54,63.12,70.55,70.55,2.76,1.91,8.48,9.1
-74364,40,097,40097,292,146,26299231,26299231,1750,751,246555152,246553475,41259,19239,1770287485,1697440860,16.69,19.44,10.67,10.67,0.71,0.76,1.49,1.55
-74365,40,041,40041,512,165,34042092,34042092,5110,2391,201975202,185581041,41487,24818,2052073762,1911868565,10.02,6.9,16.85,18.34,1.23,0.66,1.66,1.78
-74365,40,097,40097,4598,2226,167933110,151538949,5110,2391,201975202,185581041,41259,19239,1770287485,1697440860,89.98,93.1,83.15,81.66,11.14,11.57,9.49,8.93
-74366,40,041,40041,69,31,6490160,6196045,1474,843,102701042,95387548,41487,24818,2052073762,1911868565,4.68,3.68,6.32,6.5,0.17,0.12,0.32,0.32
-74366,40,097,40097,1405,812,96210882,89191503,1474,843,102701042,95387548,41259,19239,1770287485,1697440860,95.32,96.32,93.68,93.5,3.41,4.22,5.43,5.25
-74367,40,097,40097,587,319,52358854,47490204,587,319,52358854,47490204,41259,19239,1770287485,1697440860,100,100,100,100,1.42,1.66,2.96,2.8
-74368,40,041,40041,117,36,2904808,2904808,117,36,2904808,2904808,41487,24818,2052073762,1911868565,100,100,100,100,0.28,0.15,0.14,0.15
-74369,40,035,40035,1803,866,593592182,592563888,1803,866,593592182,592563888,15029,6749,1975595079,1971897258,100,100,100,100,12,12.83,30.05,30.05
-74370,40,041,40041,273,177,21811270,18845650,3537,1747,298454141,281643784,41487,24818,2052073762,1911868565,7.72,10.13,7.31,6.69,0.66,0.71,1.06,0.99
-74370,40,115,40115,3264,1570,276642871,262798134,3537,1747,298454141,281643784,31848,14060,1255130307,1219421293,92.28,89.87,92.69,93.31,10.25,11.17,22.04,21.55
-74401,40,101,40101,17476,8050,323358229,313459418,17476,8050,323358229,313459418,70990,30908,2175019907,2099056912,100,100,100,100,24.62,26.05,14.87,14.93
-74403,40,101,40101,30505,13679,297801768,279913894,30709,13759,314375936,294719963,70990,30908,2175019907,2099056912,99.34,99.42,94.73,94.98,42.97,44.26,13.69,13.34
-74403,40,145,40145,204,80,16574168,14806069,30709,13759,314375936,294719963,73085,29694,1529844054,1454421645,0.66,0.58,5.27,5.02,0.28,0.27,1.08,1.02
-74421,40,111,40111,4607,1979,343098431,342678664,4607,1979,343098431,342678664,40069,17891,1819039066,1806124291,100,100,100,100,11.5,11.06,18.86,18.97
-74422,40,101,40101,558,308,81739113,80133247,824,421,171184818,169171887,70990,30908,2175019907,2099056912,67.72,73.16,47.75,47.37,0.79,1,3.76,3.82
-74422,40,111,40111,266,113,89445705,89038640,824,421,171184818,169171887,40069,17891,1819039066,1806124291,32.28,26.84,52.25,52.63,0.66,0.63,4.92,4.93
-74423,40,101,40101,872,403,153731364,141272515,872,403,153731364,141272515,70990,30908,2175019907,2099056912,100,100,100,100,1.23,1.3,7.07,6.73
-74425,40,121,40121,1240,813,48789800,42376242,1240,813,48789800,42376242,45837,22634,3568552021,3381130261,100,100,100,100,2.71,3.59,1.37,1.25
-74426,40,091,40091,9891,6242,651026281,573334710,9891,6242,651026281,573334710,20252,13350,1844811940,1601896473,100,100,100,100,48.84,46.76,35.29,35.79
-74427,40,021,40021,1383,1307,114947021,102541735,1383,1307,114947021,102541735,46987,21455,2010582452,1940956597,100,100,100,100,2.94,6.09,5.72,5.28
-74428,40,091,40091,448,253,64338909,62383933,882,447,160360884,157261527,20252,13350,1844811940,1601896473,50.79,56.6,40.12,39.67,2.21,1.9,3.49,3.89
-74428,40,101,40101,434,194,96021975,94877594,882,447,160360884,157261527,70990,30908,2175019907,2099056912,49.21,43.4,59.88,60.33,0.61,0.63,4.41,4.52
-74429,40,145,40145,14445,5697,228701178,224014160,14445,5697,228701178,224014160,73085,29694,1529844054,1454421645,100,100,100,100,19.76,19.19,14.95,15.4
-74430,40,121,40121,588,306,18845939,16610489,588,306,18845939,16610489,45837,22634,3568552021,3381130261,100,100,100,100,1.28,1.35,0.53,0.49
-74431,40,111,40111,918,383,9536096,9483743,918,383,9536096,9483743,40069,17891,1819039066,1806124291,100,100,100,100,2.29,2.14,0.52,0.53
-74432,40,091,40091,7477,4936,518247469,449714538,9730,6925,656727356,557079717,20252,13350,1844811940,1601896473,76.84,71.28,78.91,80.73,36.92,36.97,28.09,28.07
-74432,40,121,40121,2253,1989,138479887,107365179,9730,6925,656727356,557079717,45837,22634,3568552021,3381130261,23.16,28.72,21.09,19.27,4.92,8.79,3.88,3.18
-74434,40,021,40021,2278,892,83446528,82231134,9067,3657,245824624,233780912,46987,21455,2010582452,1940956597,25.12,24.39,33.95,35.17,4.85,4.16,4.15,4.24
-74434,40,101,40101,5979,2422,121415779,115801631,9067,3657,245824624,233780912,70990,30908,2175019907,2099056912,65.94,66.23,49.39,49.53,8.42,7.84,5.58,5.52
-74434,40,145,40145,810,343,40962317,35748147,9067,3657,245824624,233780912,73085,29694,1529844054,1454421645,8.93,9.38,16.66,15.29,1.11,1.16,2.68,2.46
-74435,40,101,40101,356,156,49731706,42875055,3185,1749,190450611,168325188,70990,30908,2175019907,2099056912,11.18,8.92,26.11,25.47,0.5,0.5,2.29,2.04
-74435,40,135,40135,2829,1593,140718905,125450133,3185,1749,190450611,168325188,42391,18656,1849645647,1743764515,88.82,91.08,73.89,74.53,6.67,8.54,7.61,7.19
-74436,40,101,40101,3954,1721,248667279,242822692,5078,2171,365499441,355969595,70990,30908,2175019907,2099056912,77.87,79.27,68.03,68.21,5.57,5.57,11.43,11.57
-74436,40,111,40111,333,128,46406855,46406855,5078,2171,365499441,355969595,40069,17891,1819039066,1806124291,6.56,5.9,12.7,13.04,0.83,0.72,2.55,2.57
-74436,40,145,40145,791,322,70425307,66740048,5078,2171,365499441,355969595,73085,29694,1529844054,1454421645,15.58,14.83,19.27,18.75,1.08,1.08,4.6,4.59
-74437,40,091,40091,898,397,186003071,162278668,10448,4850,568465602,540375364,20252,13350,1844811940,1601896473,8.59,8.19,32.72,30.03,4.43,2.97,10.08,10.13
-74437,40,107,40107,36,24,30622969,30245973,10448,4850,568465602,540375364,12191,5282,1628766756,1602081668,0.34,0.49,5.39,5.6,0.3,0.45,1.88,1.89
-74437,40,111,40111,9514,4429,351839562,347850723,10448,4850,568465602,540375364,40069,17891,1819039066,1806124291,91.06,91.32,61.89,64.37,23.74,24.76,19.34,19.26
-74438,40,091,40091,163,87,20316865,20280304,163,87,20316865,20280304,20252,13350,1844811940,1601896473,100,100,100,100,0.8,0.65,1.1,1.27
-74441,40,021,40021,5362,2392,382280919,359889684,5362,2392,382280919,359889684,46987,21455,2010582452,1940956597,100,100,100,100,11.41,11.15,19.01,18.54
-74442,40,121,40121,920,455,165499119,155376393,920,455,165499119,155376393,45837,22634,3568552021,3381130261,100,100,100,100,2.01,2.01,4.64,4.6
-74445,40,091,40091,10,3,4889832,4889832,3226,1268,212838354,212264458,20252,13350,1844811940,1601896473,0.31,0.24,2.3,2.3,0.05,0.02,0.27,0.31
-74445,40,111,40111,3216,1265,207948522,207374626,3226,1268,212838354,212264458,40069,17891,1819039066,1806124291,99.69,99.76,97.7,97.7,8.03,7.07,11.43,11.48
-74446,40,145,40145,558,240,2991699,2634034,558,240,2991699,2634034,73085,29694,1529844054,1454421645,100,100,100,100,0.76,0.81,0.2,0.18
-74447,40,111,40111,17275,7977,602704951,595326459,17275,7977,602704951,595326459,40069,17891,1819039066,1806124291,100,100,100,100,43.11,44.59,33.13,32.96
-74450,40,101,40101,1948,781,185831166,185652309,1948,781,185831166,185652309,70990,30908,2175019907,2099056912,100,100,100,100,2.74,2.53,8.54,8.84
-74451,40,021,40021,4283,2557,214259199,191162576,4283,2557,214259199,191162576,46987,21455,2010582452,1940956597,100,100,100,100,9.12,11.92,10.66,9.85
-74452,40,021,40021,261,113,62391463,62391463,473,207,67415909,67415909,46987,21455,2010582452,1940956597,55.18,54.59,92.55,92.55,0.56,0.53,3.1,3.21
-74452,40,097,40097,212,94,5024446,5024446,473,207,67415909,67415909,41259,19239,1770287485,1697440860,44.82,45.41,7.45,7.45,0.51,0.49,0.28,0.3
-74454,40,145,40145,3179,1365,289812589,282235464,3179,1365,289812589,282235464,73085,29694,1529844054,1454421645,100,100,100,100,4.35,4.6,18.94,19.41
-74455,40,091,40091,699,1082,32513204,29799796,3158,2216,305591579,296341125,20252,13350,1844811940,1601896473,22.13,48.83,10.64,10.06,3.45,8.1,1.76,1.86
-74455,40,101,40101,2459,1134,273078375,266541329,3158,2216,305591579,296341125,70990,30908,2175019907,2099056912,77.87,51.17,89.36,89.94,3.46,3.67,12.56,12.7
-74456,40,111,40111,247,111,3178397,3178397,247,111,3178397,3178397,40069,17891,1819039066,1806124291,100,100,100,100,0.62,0.62,0.17,0.18
-74457,40,001,40001,322,159,72132137,72009900,608,281,184436771,183306526,22683,9142,1494559829,1485298113,52.96,56.58,39.11,39.28,1.42,1.74,4.83,4.85
-74457,40,021,40021,286,122,112304634,111296626,608,281,184436771,183306526,46987,21455,2010582452,1940956597,47.04,43.42,60.89,60.72,0.61,0.57,5.59,5.73
-74458,40,145,40145,147,68,3526501,3526501,147,68,3526501,3526501,73085,29694,1529844054,1454421645,100,100,100,100,0.2,0.23,0.23,0.24
-74459,40,091,40091,86,52,4091050,4091050,86,52,4091050,4091050,20252,13350,1844811940,1601896473,100,100,100,100,0.42,0.39,0.22,0.26
-74460,40,111,40111,283,126,2316973,2316973,283,126,2316973,2316973,40069,17891,1819039066,1806124291,100,100,100,100,0.71,0.7,0.13,0.13
-74462,40,061,40061,7237,3556,653970733,619499406,7875,4736,676834454,642332834,12769,6028,1619448746,1493181861,91.9,75.08,96.62,96.45,56.68,58.99,40.38,41.49
-74462,40,121,40121,638,1180,22863721,22833428,7875,4736,676834454,642332834,45837,22634,3568552021,3381130261,8.1,24.92,3.38,3.55,1.39,5.21,0.64,0.68
-74463,40,101,40101,2033,146,5744100,5726204,2033,146,5744100,5726204,70990,30908,2175019907,2099056912,100,100,100,100,2.86,0.47,0.26,0.27
-74464,40,021,40021,30111,12693,738272482,734403866,30111,12693,738272482,734403866,46987,21455,2010582452,1940956597,100,100,100,100,64.08,59.16,36.72,37.84
-74467,40,145,40145,14995,6978,434801846,401538861,14995,6978,434801846,401538861,73085,29694,1529844054,1454421645,100,100,100,100,20.52,23.5,28.42,27.61
-74468,40,101,40101,263,120,7798179,7798179,263,120,7798179,7798179,70990,30908,2175019907,2099056912,100,100,100,100,0.37,0.39,0.36,0.37
-74469,40,091,40091,71,31,3720138,3679850,2531,1011,113276361,112941937,20252,13350,1844811940,1601896473,2.81,3.07,3.28,3.26,0.35,0.23,0.2,0.23
-74469,40,101,40101,2460,980,109556223,109262087,2531,1011,113276361,112941937,70990,30908,2175019907,2099056912,97.19,96.93,96.72,96.74,3.47,3.17,5.04,5.21
-74470,40,101,40101,1693,814,220544651,212920758,1693,814,220544651,212920758,70990,30908,2175019907,2099056912,100,100,100,100,2.38,2.63,10.14,10.14
-74471,40,021,40021,1800,750,128700487,125072025,1800,750,128700487,125072025,46987,21455,2010582452,1940956597,100,100,100,100,3.83,3.5,6.4,6.44
-74472,40,061,40061,554,241,35360655,34804328,554,241,35360655,34804328,12769,6028,1619448746,1493181861,100,100,100,100,4.34,4,2.18,2.33
-74477,40,145,40145,5,71,94901,94901,5,71,94901,94901,73085,29694,1529844054,1454421645,100,100,100,100,0.01,0.24,0.01,0.01
-74501,40,121,40121,29073,12593,1527293140,1432792721,29073,12593,1527293140,1432792721,45837,22634,3568552021,3381130261,100,100,100,100,63.43,55.64,42.8,42.38
-74521,40,127,40127,217,120,25024120,24761749,217,120,25024120,24761749,11572,6110,3685186988,3615199153,100,100,100,100,1.88,1.96,0.68,0.68
-74522,40,121,40121,344,141,2118515,2118515,344,141,2118515,2118515,45837,22634,3568552021,3381130261,100,100,100,100,0.75,0.62,0.06,0.06
-74523,40,023,40023,235,96,38392901,38228279,6048,2884,572943970,566588185,15205,7521,2070882120,1995214679,3.89,3.33,6.7,6.75,1.55,1.28,1.85,1.92
-74523,40,127,40127,5813,2788,534551069,528359906,6048,2884,572943970,566588185,11572,6110,3685186988,3615199153,96.11,96.67,93.3,93.25,50.23,45.63,14.51,14.61
-74525,40,005,40005,10112,4323,1108885244,1081205690,10112,4323,1108885244,1081205690,14182,6312,2563861336,2526578130,100,100,100,100,71.3,68.49,43.25,42.79
-74528,40,121,40121,174,105,88021275,87310749,174,105,88021275,87310749,45837,22634,3568552021,3381130261,100,100,100,100,0.38,0.46,2.47,2.58
-74530,40,029,40029,34,16,20957034,20761432,214,102,50408227,49847496,5925,2810,1350280391,1338199454,15.89,15.69,41.57,41.65,0.57,0.57,1.55,1.55
-74530,40,069,40069,180,86,29451193,29086064,214,102,50408227,49847496,10957,5126,1704845933,1665207064,84.11,84.31,58.43,58.35,1.64,1.68,1.73,1.75
-74531,40,063,40063,1062,535,335900327,333069852,1062,535,335900327,333069852,14003,6183,2110530582,2084025091,100,100,100,100,7.58,8.65,15.92,15.98
-74533,40,005,40005,849,390,107713472,107145009,849,390,107713472,107145009,14182,6312,2563861336,2526578130,100,100,100,100,5.99,6.18,4.2,4.24
-74534,40,029,40029,250,130,75464413,74934610,250,130,75464413,74934610,5925,2810,1350280391,1338199454,100,100,100,100,4.22,4.63,5.59,5.6
-74535,40,029,40029,126,56,16314512,16303195,126,56,16314512,16303195,5925,2810,1350280391,1338199454,100,100,100,100,2.13,1.99,1.21,1.22
-74536,40,077,40077,8,13,27939234,27039367,1760,939,794440703,741927783,11154,4979,1888394018,1870178643,0.45,1.38,3.52,3.64,0.07,0.26,1.48,1.45
-74536,40,121,40121,39,21,16660697,16646538,1760,939,794440703,741927783,45837,22634,3568552021,3381130261,2.22,2.24,2.1,2.24,0.09,0.09,0.47,0.49
-74536,40,127,40127,1713,905,749840772,698241878,1760,939,794440703,741927783,11572,6110,3685186988,3615199153,97.33,96.38,94.39,94.11,14.8,14.81,20.35,19.31
-74538,40,029,40029,4200,2001,941323606,932227048,4200,2001,941323606,932227048,5925,2810,1350280391,1338199454,100,100,100,100,70.89,71.21,69.71,69.66
-74540,40,005,40005,162,88,82635112,82265696,172,103,103532763,103130371,14182,6312,2563861336,2526578130,94.19,85.44,79.82,79.77,1.14,1.39,3.22,3.26
-74540,40,127,40127,10,15,20897651,20864675,172,103,103532763,103130371,11572,6110,3685186988,3615199153,5.81,14.56,20.18,20.23,0.09,0.25,0.57,0.58
-74543,40,127,40127,370,216,350347538,348953335,370,216,350347538,348953335,11572,6110,3685186988,3615199153,100,100,100,100,3.2,3.54,9.51,9.65
-74546,40,121,40121,824,405,4245546,4110824,824,405,4245546,4110824,45837,22634,3568552021,3381130261,100,100,100,100,1.8,1.79,0.12,0.12
-74547,40,077,40077,150,64,11792938,11671392,3463,1597,274924992,269843519,11154,4979,1888394018,1870178643,4.33,4.01,4.29,4.33,1.34,1.29,0.62,0.62
-74547,40,121,40121,3313,1533,263132054,258172127,3463,1597,274924992,269843519,45837,22634,3568552021,3381130261,95.67,95.99,95.71,95.67,7.23,6.77,7.37,7.64
-74549,40,079,40079,26,27,47647783,47588857,76,75,100184591,99678568,50384,21448,4166064491,4116045949,34.21,36,47.56,47.74,0.05,0.13,1.14,1.16
-74549,40,127,40127,50,48,52536808,52089711,76,75,100184591,99678568,11572,6110,3685186988,3615199153,65.79,64,52.44,52.26,0.43,0.79,1.43,1.44
-74552,40,061,40061,1058,507,257904101,255969418,1058,507,257904101,255969418,12769,6028,1619448746,1493181861,100,100,100,100,8.29,8.41,15.93,17.14
-74553,40,005,40005,113,49,47321862,46521633,1384,674,189921801,188382265,14182,6312,2563861336,2526578130,8.16,7.27,24.92,24.7,0.8,0.78,1.85,1.84
-74553,40,121,40121,1271,625,142599939,141860632,1384,674,189921801,188382265,45837,22634,3568552021,3381130261,91.84,92.73,75.08,75.3,2.77,2.76,4,4.2
-74554,40,121,40121,1744,828,12366003,12307584,1744,828,12366003,12307584,45837,22634,3568552021,3381130261,100,100,100,100,3.8,3.66,0.35,0.36
-74555,40,005,40005,861,405,170844054,169947766,861,405,170844054,169947766,14182,6312,2563861336,2526578130,100,100,100,100,6.07,6.42,6.66,6.73
-74556,40,029,40029,422,179,41415081,40624452,422,179,41415081,40624452,5925,2810,1350280391,1338199454,100,100,100,100,7.12,6.37,3.07,3.04
-74557,40,127,40127,464,494,336600671,334678125,464,494,336600671,334678125,11572,6110,3685186988,3615199153,100,100,100,100,4.01,8.09,9.13,9.26
-74558,40,127,40127,455,239,220844362,218930382,455,239,220844362,218930382,11572,6110,3685186988,3615199153,100,100,100,100,3.93,3.91,5.99,6.06
-74560,40,005,40005,67,34,121124522,120048296,635,340,563347871,560960710,14182,6312,2563861336,2526578130,10.55,10,21.5,21.4,0.47,0.54,4.72,4.75
-74560,40,121,40121,568,306,442223349,440912414,635,340,563347871,560960710,45837,22634,3568552021,3381130261,89.45,90,78.5,78.6,1.24,1.35,12.39,13.04
-74561,40,061,40061,542,230,87755735,87721398,2175,964,348867180,348371066,12769,6028,1619448746,1493181861,24.92,23.86,25.15,25.18,4.24,3.82,5.42,5.87
-74561,40,121,40121,1633,734,261111445,260649668,2175,964,348867180,348371066,45837,22634,3568552021,3381130261,75.08,76.14,74.85,74.82,3.56,3.24,7.32,7.71
-74562,40,127,40127,937,479,420630885,418253386,937,479,420630885,418253386,11572,6110,3685186988,3615199153,100,100,100,100,8.1,7.84,11.41,11.57
-74563,40,077,40077,2012,978,461906142,459387711,2042,989,491560835,489010513,11154,4979,1888394018,1870178643,98.53,98.89,93.97,93.94,18.04,19.64,24.46,24.56
-74563,40,079,40079,30,11,29654693,29622802,2042,989,491560835,489010513,50384,21448,4166064491,4116045949,1.47,1.11,6.03,6.06,0.06,0.05,0.71,0.72
-74565,40,121,40121,707,358,30343322,30300093,707,358,30343322,30300093,45837,22634,3568552021,3381130261,100,100,100,100,1.54,1.58,0.85,0.9
-74567,40,127,40127,242,120,143102661,142510278,242,120,143102661,142510278,11572,6110,3685186988,3615199153,100,100,100,100,2.09,1.96,3.88,3.94
-74569,40,005,40005,633,350,520696161,518613539,633,350,520696161,518613539,14182,6312,2563861336,2526578130,100,100,100,100,4.46,5.54,20.31,20.53
-74570,40,063,40063,610,318,245050660,243850610,1089,543,399365620,397628946,14003,6183,2110530582,2084025091,56.01,58.56,61.36,61.33,4.36,5.14,11.61,11.7
-74570,40,121,40121,479,225,154314960,153778336,1089,543,399365620,397628946,45837,22634,3568552021,3381130261,43.99,41.44,38.64,38.67,1.05,0.99,4.32,4.55
-74571,40,077,40077,1387,568,251539030,249808307,3765,1737,864626843,860672370,11154,4979,1888394018,1870178643,36.84,32.7,29.09,29.02,12.44,11.41,13.32,13.36
-74571,40,079,40079,2243,1095,509081387,507490259,3765,1737,864626843,860672370,50384,21448,4166064491,4116045949,59.58,63.04,58.88,58.96,4.45,5.11,12.22,12.33
-74571,40,127,40127,135,74,104006426,103373804,3765,1737,864626843,860672370,11572,6110,3685186988,3615199153,3.59,4.26,12.03,12.01,1.17,1.21,2.82,2.86
-74572,40,029,40029,656,317,96763054,96164847,712,340,112041606,111146910,5925,2810,1350280391,1338199454,92.13,93.24,86.36,86.52,11.07,11.28,7.17,7.19
-74572,40,123,40123,56,23,15278552,14982063,712,340,112041606,111146910,37492,16595,1878323829,1865918266,7.87,6.76,13.64,13.48,0.15,0.14,0.81,0.8
-74574,40,077,40077,527,267,207966548,201657897,1080,577,385057300,377720946,11154,4979,1888394018,1870178643,48.8,46.27,54.01,53.39,4.72,5.36,11.01,10.78
-74574,40,127,40127,553,310,177090752,176063049,1080,577,385057300,377720946,11572,6110,3685186988,3615199153,51.2,53.73,45.99,46.61,4.78,5.07,4.81,4.87
-74576,40,005,40005,181,91,84161387,83549913,210,108,123179340,122422947,14182,6312,2563861336,2526578130,86.19,84.26,68.32,68.25,1.28,1.44,3.28,3.31
-74576,40,121,40121,29,17,39017953,38873034,210,108,123179340,122422947,45837,22634,3568552021,3381130261,13.81,15.74,31.68,31.75,0.06,0.08,1.09,1.15
-74577,40,079,40079,271,117,19831120,19633564,271,117,19831120,19633564,50384,21448,4166064491,4116045949,100,100,100,100,0.54,0.55,0.48,0.48
-74578,40,077,40077,6822,2977,866268806,859967489,6822,2977,866268806,859967489,11154,4979,1888394018,1870178643,100,100,100,100,61.16,59.79,45.87,45.98
-74601,40,071,40071,20154,9319,409192140,405574814,20257,9364,450316553,445919316,46562,21708,2447451195,2382087117,99.49,99.52,90.87,90.95,43.28,42.93,16.72,17.03
-74601,40,103,40103,103,45,41124413,40344502,20257,9364,450316553,445919316,11561,5341,1923160372,1895599459,0.51,0.48,9.13,9.05,0.89,0.84,2.14,2.13
-74604,40,071,40071,9533,4433,187356248,177126677,12301,5654,363202620,348257996,46562,21708,2447451195,2382087117,77.5,78.4,51.58,50.86,20.47,20.42,7.66,7.44
-74604,40,113,40113,2768,1221,175846372,171131319,12301,5654,363202620,348257996,47472,21143,5967265966,5818040494,22.5,21.6,48.42,49.14,5.83,5.77,2.95,2.94
-74630,40,047,40047,24,11,63882919,63816316,702,312,276271300,275890271,60580,26831,2745554732,2741414396,3.42,3.53,23.12,23.13,0.04,0.04,2.33,2.33
-74630,40,103,40103,678,301,212388381,212073955,702,312,276271300,275890271,11561,5341,1923160372,1895599459,96.58,96.47,76.88,76.87,5.86,5.64,11.04,11.19
-74631,40,071,40071,7709,3706,246453174,246317613,7709,3706,246453174,246317613,46562,21708,2447451195,2382087117,100,100,100,100,16.56,17.07,10.07,10.34
-74632,40,071,40071,578,385,285775286,284680167,578,385,285775286,284680167,46562,21708,2447451195,2382087117,100,100,100,100,1.24,1.77,11.68,11.95
-74633,40,113,40113,471,225,261472849,243935491,471,225,261472849,243935491,47472,21143,5967265966,5818040494,100,100,100,100,0.99,1.06,4.38,4.19
-74636,40,053,40053,268,138,135550942,135550942,268,138,135550942,135550942,4527,2486,2599266891,2592244963,100,100,100,100,5.92,5.55,5.21,5.23
-74637,40,113,40113,1899,1076,490403384,485437952,1899,1076,490403384,485437952,47472,21143,5967265966,5818040494,100,100,100,100,4,5.09,8.22,8.34
-74640,40,047,40047,312,149,156810015,156285719,312,149,156810015,156285719,60580,26831,2745554732,2741414396,100,100,100,100,0.52,0.56,5.71,5.7
-74641,40,071,40071,715,462,71097736,44872403,715,462,71097736,44872403,46562,21708,2447451195,2382087117,100,100,100,100,1.54,2.13,2.9,1.88
-74643,40,053,40053,615,312,284254862,282686991,615,312,284254862,282686991,4527,2486,2599266891,2592244963,100,100,100,100,13.59,12.55,10.94,10.91
-74644,40,103,40103,478,216,203694360,199668809,478,216,203694360,199668809,11561,5341,1923160372,1895599459,100,100,100,100,4.13,4.04,10.59,10.53
-74646,40,053,40053,29,16,37568995,37568995,233,121,148980653,148928259,4527,2486,2599266891,2592244963,12.45,13.22,25.22,25.23,0.64,0.64,1.45,1.45
-74646,40,071,40071,204,105,111411658,111359264,233,121,148980653,148928259,46562,21708,2447451195,2382087117,87.55,86.78,74.78,74.77,0.44,0.48,4.55,4.67
-74647,40,071,40071,3765,1659,804418208,791665670,3765,1659,804418208,791665670,46562,21708,2447451195,2382087117,100,100,100,100,8.09,7.64,32.87,33.23
-74650,40,113,40113,229,118,283523247,273982740,693,357,379743086,366617383,47472,21143,5967265966,5818040494,33.04,33.05,74.66,74.73,0.48,0.56,4.75,4.71
-74650,40,117,40117,464,239,96219839,92634643,693,357,379743086,366617383,16577,7745,1540432659,1470996347,66.96,66.95,25.34,25.27,2.8,3.09,6.25,6.3
-74651,40,103,40103,734,274,386907458,374188818,743,283,397987469,385034911,11561,5341,1923160372,1895599459,98.79,96.82,97.22,97.18,6.35,5.13,20.12,19.74
-74651,40,117,40117,9,9,11080011,10846093,743,283,397987469,385034911,16577,7745,1540432659,1470996347,1.21,3.18,2.78,2.82,0.05,0.12,0.72,0.74
-74652,40,071,40071,21,8,45274112,37022665,897,544,631804455,621691479,46562,21708,2447451195,2382087117,2.34,1.47,7.17,5.96,0.05,0.04,1.85,1.55
-74652,40,113,40113,876,536,586530343,584668814,897,544,631804455,621691479,47472,21143,5967265966,5818040494,97.66,98.53,92.83,94.04,1.85,2.54,9.83,10.05
-74653,40,071,40071,3883,1631,286472633,283467844,3892,1635,308557229,305552440,46562,21708,2447451195,2382087117,99.77,99.76,92.84,92.77,8.34,7.51,11.7,11.9
-74653,40,103,40103,9,4,22084596,22084596,3892,1635,308557229,305552440,11561,5341,1923160372,1895599459,0.23,0.24,7.16,7.23,0.08,0.07,1.15,1.17
-74701,40,013,40013,22365,9928,465792750,456478525,22365,9928,465792750,456478525,42416,19586,2444796679,2342567959,100,100,100,100,52.73,50.69,19.05,19.49
-74720,40,013,40013,608,267,33785939,33541619,608,267,33785939,33541619,42416,19586,2444796679,2342567959,100,100,100,100,1.43,1.36,1.38,1.43
-74722,40,089,40089,286,132,40342839,40127257,286,132,40342839,40127257,33151,15533,4927128635,4791491660,100,100,100,100,0.86,0.85,0.82,0.84
-74723,40,013,40013,1729,857,526266508,518525952,1729,857,526266508,518525952,42416,19586,2444796679,2342567959,100,100,100,100,4.08,4.38,21.53,22.13
-74724,40,089,40089,377,176,83046853,82916075,377,176,83046853,82916075,33151,15533,4927128635,4791491660,100,100,100,100,1.14,1.13,1.69,1.73
-74726,40,013,40013,2398,1158,395837369,392368077,2398,1158,395837369,392368077,42416,19586,2444796679,2342567959,100,100,100,100,5.65,5.91,16.19,16.75
-74727,40,005,40005,133,58,45192582,44663453,2038,1013,519688734,513769646,14182,6312,2563861336,2526578130,6.53,5.73,8.7,8.69,0.94,0.92,1.76,1.77
-74727,40,013,40013,32,16,38379611,34263272,2038,1013,519688734,513769646,42416,19586,2444796679,2342567959,1.57,1.58,7.39,6.67,0.08,0.08,1.57,1.46
-74727,40,023,40023,1873,939,436116541,434842921,2038,1013,519688734,513769646,15205,7521,2070882120,1995214679,91.9,92.69,83.92,84.64,12.32,12.49,21.06,21.79
-74728,40,089,40089,11288,5319,1005453773,972821732,11343,5344,1059109509,1026460729,33151,15533,4927128635,4791491660,99.52,99.53,94.93,94.77,34.05,34.24,20.41,20.3
-74728,40,127,40127,55,25,53655736,53638997,11343,5344,1059109509,1026460729,11572,6110,3685186988,3615199153,0.48,0.47,5.07,5.23,0.48,0.41,1.46,1.48
-74729,40,005,40005,701,330,143228975,141924216,2741,1248,404140497,401523101,14182,6312,2563861336,2526578130,25.57,26.44,35.44,35.35,4.94,5.23,5.59,5.62
-74729,40,013,40013,2040,918,260911522,259598885,2741,1248,404140497,401523101,42416,19586,2444796679,2342567959,74.43,73.56,64.56,64.65,4.81,4.69,10.67,11.08
-74730,40,013,40013,4259,1775,167466749,164273548,4259,1775,167466749,164273548,42416,19586,2444796679,2342567959,100,100,100,100,10.04,9.06,6.85,7.01
-74731,40,013,40013,1747,950,34128274,33677532,1747,950,34128274,33677532,42416,19586,2444796679,2342567959,100,100,100,100,4.12,4.85,1.4,1.44
-74733,40,013,40013,2853,1297,128689749,123428451,2853,1297,128689749,123428451,42416,19586,2444796679,2342567959,100,100,100,100,6.73,6.62,5.26,5.27
-74734,40,089,40089,1087,567,422585329,410544896,1087,567,422585329,410544896,33151,15533,4927128635,4791491660,100,100,100,100,3.28,3.65,8.58,8.57
-74735,40,023,40023,1257,674,322953276,319024900,1549,805,415886982,411804747,15205,7521,2070882120,1995214679,81.15,83.73,77.65,77.47,8.27,8.96,15.59,15.99
-74735,40,127,40127,292,131,92933706,92779847,1549,805,415886982,411804747,11572,6110,3685186988,3615199153,18.85,16.27,22.35,22.53,2.52,2.14,2.52,2.57
-74736,40,089,40089,1178,500,176884287,170421820,1178,500,176884287,170421820,33151,15533,4927128635,4791491660,100,100,100,100,3.55,3.22,3.59,3.56
-74738,40,023,40023,560,280,89318182,82959365,560,280,89318182,82959365,15205,7521,2070882120,1995214679,100,100,100,100,3.68,3.72,4.31,4.16
-74740,40,089,40089,2288,1100,685162601,667160724,2288,1100,685162601,667160724,33151,15533,4927128635,4791491660,100,100,100,100,6.9,7.08,13.91,13.92
-74741,40,013,40013,972,480,217608448,206718492,972,480,217608448,206718492,42416,19586,2444796679,2342567959,100,100,100,100,2.29,2.45,8.9,8.82
-74743,40,023,40023,8537,4163,605667110,568062289,8537,4163,605667110,568062289,15205,7521,2070882120,1995214679,100,100,100,100,56.15,55.35,29.25,28.47
-74745,40,089,40089,9912,4526,450843739,440001940,9912,4526,450843739,440001940,33151,15533,4927128635,4791491660,100,100,100,100,29.9,29.14,9.15,9.18
-74747,40,013,40013,153,81,1116640,1107285,153,81,1116640,1107285,42416,19586,2444796679,2342567959,100,100,100,100,0.36,0.41,0.05,0.05
-74748,40,005,40005,178,84,40579021,40391564,642,325,101538987,100680624,14182,6312,2563861336,2526578130,27.73,25.85,39.96,40.12,1.26,1.33,1.58,1.6
-74748,40,013,40013,221,85,20892065,20813413,642,325,101538987,100680624,42416,19586,2444796679,2342567959,34.42,26.15,20.58,20.67,0.52,0.43,0.85,0.89
-74748,40,069,40069,243,156,40067901,39475647,642,325,101538987,100680624,10957,5126,1704845933,1665207064,37.85,48,39.46,39.21,2.22,3.04,2.35,2.37
-74750,40,089,40089,364,188,13407669,13344822,364,188,13407669,13344822,33151,15533,4927128635,4791491660,100,100,100,100,1.1,1.21,0.27,0.28
-74753,40,013,40013,52,24,182262,182262,52,24,182262,182262,42416,19586,2444796679,2342567959,100,100,100,100,0.12,0.12,0.01,0.01
-74754,40,089,40089,242,153,89819823,82728866,385,239,144402635,137275349,33151,15533,4927128635,4791491660,62.86,64.02,62.2,60.26,0.73,0.98,1.82,1.73
-74754,40,127,40127,143,86,54582812,54546483,385,239,144402635,137275349,11572,6110,3685186988,3615199153,37.14,35.98,37.8,39.74,1.24,1.41,1.48,1.51
-74755,40,089,40089,83,59,21065536,18861226,83,59,21065536,18861226,33151,15533,4927128635,4791491660,100,100,100,100,0.25,0.38,0.43,0.39
-74756,40,023,40023,870,446,145678529,124049525,870,446,145678529,124049525,15205,7521,2070882120,1995214679,100,100,100,100,5.72,5.93,7.03,6.22
-74759,40,023,40023,1358,665,361126063,357979386,1358,665,361126063,357979386,15205,7521,2070882120,1995214679,100,100,100,100,8.93,8.84,17.44,17.94
-74760,40,023,40023,174,69,24921900,23507453,295,123,52719982,51114823,15205,7521,2070882120,1995214679,58.98,56.1,47.27,45.99,1.14,0.92,1.2,1.18
-74760,40,127,40127,121,54,27798082,27607370,295,123,52719982,51114823,11572,6110,3685186988,3615199153,41.02,43.9,52.73,54.01,1.05,0.88,0.75,0.76
-74761,40,023,40023,70,48,3883956,3859302,70,48,3883956,3859302,15205,7521,2070882120,1995214679,100,100,100,100,0.46,0.64,0.19,0.19
-74764,40,023,40023,271,141,42823662,42701259,3473,1612,353951317,342190912,15205,7521,2070882120,1995214679,7.8,8.75,12.1,12.48,1.78,1.87,2.07,2.14
-74764,40,089,40089,3202,1471,311127655,299489653,3473,1612,353951317,342190912,33151,15533,4927128635,4791491660,92.2,91.25,87.9,87.52,9.66,9.47,6.31,6.25
-74766,40,089,40089,1595,685,281846997,278843532,1595,685,281846997,278843532,33151,15533,4927128635,4791491660,100,100,100,100,4.81,4.41,5.72,5.82
-74801,40,125,40125,21657,9861,201401354,197064324,21657,9861,201401354,197064324,69442,29139,2054902765,2040060341,100,100,100,100,31.19,33.84,9.8,9.66
-74804,40,125,40125,19631,7958,242742161,242250632,19631,7958,242742161,242250632,69442,29139,2054902765,2040060341,100,100,100,100,28.27,27.31,11.81,11.87
-74820,40,069,40069,154,79,36435810,36402285,30802,13597,802704957,796075847,10957,5126,1704845933,1665207064,0.5,0.58,4.54,4.57,1.41,1.54,2.14,2.19
-74820,40,123,40123,30648,13518,766269147,759673562,30802,13597,802704957,796075847,37492,16595,1878323829,1865918266,99.5,99.42,95.46,95.43,81.75,81.46,40.8,40.71
-74824,40,081,40081,1190,519,88445687,87768613,1253,544,96227391,95550317,34273,15208,2501095807,2466481063,94.97,95.4,91.91,91.86,3.47,3.41,3.54,3.56
-74824,40,119,40119,63,25,7781704,7781704,1253,544,96227391,95550317,77350,33991,1805150789,1773371786,5.03,4.6,8.09,8.14,0.08,0.07,0.43,0.44
-74825,40,029,40029,43,19,76345455,76131319,2170,984,365253980,363416487,5925,2810,1350280391,1338199454,1.98,1.93,20.9,20.95,0.73,0.68,5.65,5.69
-74825,40,063,40063,511,220,93292470,93152438,2170,984,365253980,363416487,14003,6183,2110530582,2084025091,23.55,22.36,25.54,25.63,3.65,3.56,4.42,4.47
-74825,40,123,40123,1616,745,195616055,194132730,2170,984,365253980,363416487,37492,16595,1878323829,1865918266,74.47,75.71,53.56,53.42,4.31,4.49,10.41,10.4
-74826,40,125,40125,1252,605,210168655,208380879,1252,605,210168655,208380879,69442,29139,2054902765,2040060341,100,100,100,100,1.8,2.08,10.23,10.21
-74827,40,063,40063,387,210,97118085,96135409,387,210,97118085,96135409,14003,6183,2110530582,2084025091,100,100,100,100,2.76,3.4,4.6,4.61
-74829,40,107,40107,1521,296,124171623,122754498,1521,296,124171623,122754498,12191,5282,1628766756,1602081668,100,100,100,100,12.48,5.6,7.62,7.66
-74830,40,133,40133,229,105,4213089,4213089,229,105,4213089,4213089,25482,11642,1658819944,1639041127,100,100,100,100,0.9,0.9,0.25,0.26
-74831,40,049,40049,15,10,10517731,10370275,923,423,208812410,204196953,27576,12827,2107444502,2077482576,1.63,2.36,5.04,5.08,0.05,0.08,0.5,0.5
-74831,40,087,40087,839,390,183275634,179228481,923,423,208812410,204196953,34506,13996,1502849014,1478109734,90.9,92.2,87.77,87.77,2.43,2.79,12.2,12.13
-74831,40,123,40123,69,23,15019045,14598197,923,423,208812410,204196953,37492,16595,1878323829,1865918266,7.48,5.44,7.19,7.15,0.18,0.14,0.8,0.78
-74832,40,081,40081,936,418,72826570,72448642,936,418,72826570,72448642,34273,15208,2501095807,2466481063,100,100,100,100,2.73,2.75,2.91,2.94
-74833,40,107,40107,703,333,130475347,129182245,703,333,130475347,129182245,12191,5282,1628766756,1602081668,100,100,100,100,5.77,6.3,8.01,8.06
-74834,40,081,40081,7590,3295,505042004,495670355,7590,3295,505042004,495670355,34273,15208,2501095807,2466481063,100,100,100,100,22.15,21.67,20.19,20.1
-74836,40,069,40069,171,89,90233946,90068337,171,89,90233946,90068337,10957,5126,1704845933,1665207064,100,100,100,100,1.56,1.74,5.29,5.41
-74837,40,133,40133,310,135,6784319,6746345,310,135,6784319,6746345,25482,11642,1658819944,1639041127,100,100,100,100,1.22,1.16,0.41,0.41
-74839,40,063,40063,675,305,134277858,133370600,770,364,198345579,195982966,14003,6183,2110530582,2084025091,87.66,83.79,67.7,68.05,4.82,4.93,6.36,6.4
-74839,40,091,40091,15,12,27741118,27587087,770,364,198345579,195982966,20252,13350,1844811940,1601896473,1.95,3.3,13.99,14.08,0.07,0.09,1.5,1.72
-74839,40,107,40107,80,47,36326603,35025279,770,364,198345579,195982966,12191,5282,1628766756,1602081668,10.39,12.91,18.31,17.87,0.66,0.89,2.23,2.19
-74840,40,125,40125,1298,534,71339202,71213631,1924,792,154518402,154307311,69442,29139,2054902765,2040060341,67.46,67.42,46.17,46.15,1.87,1.83,3.47,3.49
-74840,40,133,40133,626,258,83179200,83093680,1924,792,154518402,154307311,25482,11642,1658819944,1639041127,32.54,32.58,53.83,53.85,2.46,2.22,5.01,5.07
-74842,40,123,40123,135,60,18530949,18487702,135,60,18530949,18487702,37492,16595,1878323829,1865918266,100,100,100,100,0.36,0.36,0.99,0.99
-74843,40,123,40123,340,144,75296124,75273663,340,144,75296124,75273663,37492,16595,1878323829,1865918266,100,100,100,100,0.91,0.87,4.01,4.03
-74844,40,123,40123,371,165,6667428,6664951,371,165,6667428,6664951,37492,16595,1878323829,1865918266,100,100,100,100,0.99,0.99,0.35,0.36
-74845,40,091,40091,494,255,267915842,262679308,494,255,267915842,262679308,20252,13350,1844811940,1601896473,100,100,100,100,2.44,1.91,14.52,16.4
-74848,40,063,40063,8096,3275,636353342,625036916,8326,3358,668658436,656860958,14003,6183,2110530582,2084025091,97.24,97.53,95.17,95.16,57.82,52.97,30.15,29.99
-74848,40,133,40133,230,83,32305094,31824042,8326,3358,668658436,656860958,25482,11642,1658819944,1639041127,2.76,2.47,4.83,4.84,0.9,0.71,1.95,1.94
-74849,40,125,40125,403,179,93308832,91734432,3132,1405,327828427,318049888,69442,29139,2054902765,2040060341,12.87,12.74,28.46,28.84,0.58,0.61,4.54,4.5
-74849,40,133,40133,2729,1226,234519595,226315456,3132,1405,327828427,318049888,25482,11642,1658819944,1639041127,87.13,87.26,71.54,71.16,10.71,10.53,14.14,13.81
-74850,40,063,40063,283,153,151023260,149371719,283,153,151023260,149371719,14003,6183,2110530582,2084025091,100,100,100,100,2.02,2.47,7.16,7.17
-74851,40,027,40027,672,262,12660030,12609320,9805,3521,223733129,220783852,255755,104821,1445437044,1395398450,6.85,7.44,5.66,5.71,0.26,0.25,0.88,0.9
-74851,40,081,40081,1347,554,68938764,68125189,9805,3521,223733129,220783852,34273,15208,2501095807,2466481063,13.74,15.73,30.81,30.86,3.93,3.64,2.76,2.76
-74851,40,125,40125,7786,2705,142134335,140049343,9805,3521,223733129,220783852,69442,29139,2054902765,2040060341,79.41,76.82,63.53,63.43,11.21,9.28,6.92,6.86
-74852,40,027,40027,65,22,1748653,1737209,1347,593,188498300,188224738,255755,104821,1445437044,1395398450,4.83,3.71,0.93,0.92,0.03,0.02,0.12,0.12
-74852,40,125,40125,1282,571,186749647,186487529,1347,593,188498300,188224738,69442,29139,2054902765,2040060341,95.17,96.29,99.07,99.08,1.85,1.96,9.09,9.14
-74854,40,125,40125,1059,483,86408122,85964667,1897,870,200456230,198797304,69442,29139,2054902765,2040060341,55.82,55.52,43.11,43.24,1.53,1.66,4.2,4.21
-74854,40,133,40133,838,387,114048108,112832637,1897,870,200456230,198797304,25482,11642,1658819944,1639041127,44.18,44.48,56.89,56.76,3.29,3.32,6.88,6.88
-74855,40,081,40081,4080,1779,252833950,248035651,4639,1999,282295426,277497127,34273,15208,2501095807,2466481063,87.95,88.99,89.56,89.38,11.9,11.7,10.11,10.06
-74855,40,125,40125,559,220,29461476,29461476,4639,1999,282295426,277497127,69442,29139,2054902765,2040060341,12.05,11.01,10.44,10.62,0.8,0.76,1.43,1.44
-74856,40,069,40069,690,303,281195895,279766077,782,341,324943549,323192365,10957,5126,1704845933,1665207064,88.24,88.86,86.54,86.56,6.3,5.91,16.49,16.8
-74856,40,099,40099,92,38,43747654,43426288,782,341,324943549,323192365,13488,6746,1100989479,1078621351,11.76,11.14,13.46,13.44,0.68,0.56,3.97,4.03
-74857,40,027,40027,6900,2644,112995719,111871887,9288,3653,157300741,156176909,255755,104821,1445437044,1395398450,74.29,72.38,71.83,71.63,2.7,2.52,7.82,8.02
-74857,40,109,40109,2374,1001,40513454,40513454,9288,3653,157300741,156176909,718633,319828,1860577017,1835832315,25.56,27.4,25.76,25.94,0.33,0.31,2.18,2.21
-74857,40,125,40125,14,8,3791568,3791568,9288,3653,157300741,156176909,69442,29139,2054902765,2040060341,0.15,0.22,2.41,2.43,0.02,0.03,0.18,0.19
-74859,40,107,40107,5882,2747,708133628,694459140,6221,2910,790579947,776793512,12191,5282,1628766756,1602081668,94.55,94.4,89.57,89.4,48.25,52.01,43.48,43.35
-74859,40,133,40133,339,163,82446319,82334372,6221,2910,790579947,776793512,25482,11642,1658819944,1639041127,5.45,5.6,10.43,10.6,1.33,1.4,4.97,5.02
-74860,40,107,40107,1653,757,253085868,250397878,1653,757,253085868,250397878,12191,5282,1628766756,1602081668,100,100,100,100,13.56,14.33,15.54,15.63
-74864,40,081,40081,4193,1904,185448363,182338789,5274,2335,295748394,292427409,34273,15208,2501095807,2466481063,79.5,81.54,62.7,62.35,12.23,12.52,7.41,7.39
-74864,40,125,40125,1081,431,110300031,110088620,5274,2335,295748394,292427409,69442,29139,2054902765,2040060341,20.5,18.46,37.3,37.65,1.56,1.48,5.37,5.4
-74865,40,049,40049,74,32,9710660,9625365,1711,747,422589269,421672631,27576,12827,2107444502,2077482576,4.32,4.28,2.3,2.28,0.27,0.25,0.46,0.46
-74865,40,099,40099,89,42,18578540,18443720,1711,747,422589269,421672631,13488,6746,1100989479,1078621351,5.2,5.62,4.4,4.37,0.66,0.62,1.69,1.71
-74865,40,123,40123,1548,673,394300069,393603546,1711,747,422589269,421672631,37492,16595,1878323829,1865918266,90.47,90.09,93.31,93.34,4.13,4.06,20.99,21.09
-74867,40,063,40063,24,11,16265104,16175630,1045,487,220753418,217748848,14003,6183,2110530582,2084025091,2.3,2.26,7.37,7.43,0.17,0.18,0.77,0.78
-74867,40,133,40133,1021,476,204488314,201573218,1045,487,220753418,217748848,25482,11642,1658819944,1639041127,97.7,97.74,92.63,92.57,4.01,4.09,12.33,12.3
-74868,40,133,40133,13152,5868,553191501,551028991,13152,5868,553191501,551028991,25482,11642,1658819944,1639041127,100,100,100,100,51.61,50.4,33.35,33.62
-74869,40,081,40081,710,334,142095525,137496604,710,334,142095525,137496604,34273,15208,2501095807,2466481063,100,100,100,100,2.07,2.2,5.68,5.57
-74871,40,029,40029,194,92,81697236,81052551,2415,1124,443431951,440115226,5925,2810,1350280391,1338199454,8.03,8.19,18.42,18.42,3.27,3.27,6.05,6.06
-74871,40,069,40069,43,22,52488787,52423429,2415,1124,443431951,440115226,10957,5126,1704845933,1665207064,1.78,1.96,11.84,11.91,0.39,0.43,3.08,3.15
-74871,40,123,40123,2178,1010,309245928,306639246,2415,1124,443431951,440115226,37492,16595,1878323829,1865918266,90.19,89.86,69.74,69.67,5.81,6.09,16.46,16.43
-74872,40,049,40049,2978,1343,286623707,279387909,3692,1643,381893967,374359587,27576,12827,2107444502,2077482576,80.66,81.74,75.05,74.63,10.8,10.47,13.6,13.45
-74872,40,087,40087,183,66,13169728,13109072,3692,1643,381893967,374359587,34506,13996,1502849014,1478109734,4.96,4.02,3.45,3.5,0.53,0.47,0.88,0.89
-74872,40,123,40123,531,234,82100532,81862606,3692,1643,381893967,374359587,37492,16595,1878323829,1865918266,14.38,14.24,21.5,21.87,1.42,1.41,4.37,4.39
-74873,40,125,40125,11821,4827,384815429,383882460,11821,4827,384815429,383882460,69442,29139,2054902765,2040060341,100,100,100,100,17.02,16.57,18.73,18.82
-74875,40,081,40081,1165,513,126423494,126071743,1165,513,126423494,126071743,34273,15208,2501095807,2466481063,100,100,100,100,3.4,3.37,5.05,5.11
-74878,40,027,40027,143,69,18785606,18592142,1565,745,309083597,306298960,255755,104821,1445437044,1395398450,9.14,9.26,6.08,6.07,0.06,0.07,1.3,1.33
-74878,40,125,40125,1422,676,290297991,287706818,1565,745,309083597,306298960,69442,29139,2054902765,2040060341,90.86,90.74,93.92,93.93,2.05,2.32,14.13,14.1
-74880,40,107,40107,2106,967,268821047,264801333,2239,1026,289380804,285335316,12191,5282,1628766756,1602081668,94.06,94.25,92.9,92.8,17.28,18.31,16.5,16.53
-74880,40,111,40111,133,59,20559757,20533983,2239,1026,289380804,285335316,40069,17891,1819039066,1806124291,5.94,5.75,7.1,7.2,0.33,0.33,1.13,1.14
-74881,40,081,40081,4388,1957,354593204,352313311,4509,2024,402282008,399879012,34273,15208,2501095807,2466481063,97.32,96.69,88.15,88.1,12.8,12.87,14.18,14.28
-74881,40,083,40083,121,67,47688804,47565701,4509,2024,402282008,399879012,41848,17195,1939447775,1926521787,2.68,3.31,11.85,11.9,0.29,0.39,2.46,2.47
-74883,40,063,40063,2339,1149,394494899,387340635,2526,1248,466338767,457340705,14003,6183,2110530582,2084025091,92.6,92.07,84.59,84.69,16.7,18.58,18.69,18.59
-74883,40,107,40107,187,99,71843868,70000070,2526,1248,466338767,457340705,12191,5282,1628766756,1602081668,7.4,7.93,15.41,15.31,1.53,1.87,4.41,4.37
-74884,40,063,40063,16,7,6754577,6521282,6024,2948,350398982,345600579,14003,6183,2110530582,2084025091,0.27,0.24,1.93,1.89,0.11,0.11,0.32,0.31
-74884,40,133,40133,6008,2941,343644405,339079297,6024,2948,350398982,345600579,25482,11642,1658819944,1639041127,99.73,99.76,98.07,98.11,23.58,25.26,20.72,20.69
-74901,40,079,40079,1992,904,31453218,30518762,1992,904,31453218,30518762,50384,21448,4166064491,4116045949,100,100,100,100,3.95,4.21,0.75,0.74
-74902,40,079,40079,4095,1739,79412268,78662568,4095,1739,79412268,78662568,50384,21448,4166064491,4116045949,100,100,100,100,8.13,8.11,1.91,1.91
-74930,40,079,40079,2155,923,190004651,189264179,2155,923,190004651,189264179,50384,21448,4166064491,4116045949,100,100,100,100,4.28,4.3,4.56,4.6
-74931,40,001,40001,1080,434,158305237,157637069,1411,574,212506879,211793680,22683,9142,1494559829,1485298113,76.54,75.61,74.49,74.43,4.76,4.75,10.59,10.61
-74931,40,021,40021,262,113,48314714,48290858,1411,574,212506879,211793680,46987,21455,2010582452,1940956597,18.57,19.69,22.74,22.8,0.56,0.53,2.4,2.49
-74931,40,135,40135,69,27,5886928,5865753,1411,574,212506879,211793680,42391,18656,1849645647,1743764515,4.89,4.7,2.77,2.77,0.16,0.14,0.32,0.34
-74932,40,079,40079,2286,971,205185595,203269495,2286,971,205185595,203269495,50384,21448,4166064491,4116045949,100,100,100,100,4.54,4.53,4.93,4.94
-74935,40,079,40079,174,99,29666001,29618731,174,99,29666001,29618731,50384,21448,4166064491,4116045949,100,100,100,100,0.35,0.46,0.71,0.72
-74936,40,135,40135,1153,477,66915995,63473107,1153,477,66915995,63473107,42391,18656,1849645647,1743764515,100,100,100,100,2.72,2.56,3.62,3.64
-74937,40,079,40079,5959,2322,541031869,536200436,5959,2322,541031869,536200436,50384,21448,4166064491,4116045949,100,100,100,100,11.83,10.83,12.99,13.03
-74939,40,079,40079,1455,448,389024787,386790269,1455,448,389024787,386790269,50384,21448,4166064491,4116045949,100,100,100,100,2.89,2.09,9.34,9.4
-74940,40,079,40079,2697,1066,165652799,159300545,2697,1066,165652799,159300545,50384,21448,4166064491,4116045949,100,100,100,100,5.35,4.97,3.98,3.87
-74941,40,061,40061,2163,934,283891507,218842667,2713,1182,360592268,291398597,12769,6028,1619448746,1493181861,79.73,79.02,78.73,75.1,16.94,15.49,17.53,14.66
-74941,40,079,40079,550,248,76700761,72555930,2713,1182,360592268,291398597,50384,21448,4166064491,4116045949,20.27,20.98,21.27,24.9,1.09,1.16,1.84,1.76
-74942,40,079,40079,193,88,4295802,4234318,193,88,4295802,4234318,50384,21448,4166064491,4116045949,100,100,100,100,0.38,0.41,0.1,0.1
-74943,40,061,40061,112,56,34745940,34728118,112,56,34745940,34728118,12769,6028,1619448746,1493181861,100,100,100,100,0.88,0.93,2.15,2.33
-74944,40,061,40061,1103,504,243707926,241616526,1272,583,308003467,305833412,12769,6028,1619448746,1493181861,86.71,86.45,79.13,79,8.64,8.36,15.05,16.18
-74944,40,079,40079,169,79,64295541,64216886,1272,583,308003467,305833412,50384,21448,4166064491,4116045949,13.29,13.55,20.87,21,0.34,0.37,1.54,1.56
-74945,40,135,40135,497,207,63964133,63451105,497,207,63964133,63451105,42391,18656,1849645647,1743764515,100,100,100,100,1.17,1.11,3.46,3.64
-74946,40,135,40135,137,73,10104483,8420918,137,73,10104483,8420918,42391,18656,1849645647,1743764515,100,100,100,100,0.32,0.39,0.55,0.48
-74948,40,001,40001,43,15,10933205,10929718,12788,5213,576054946,564912386,22683,9142,1494559829,1485298113,0.34,0.29,1.9,1.93,0.19,0.16,0.73,0.74
-74948,40,135,40135,12745,5198,565121741,553982668,12788,5213,576054946,564912386,42391,18656,1849645647,1743764515,99.66,99.71,98.1,98.07,30.07,27.86,30.55,31.77
-74949,40,079,40079,308,165,74235513,73436293,308,165,74235513,73436293,50384,21448,4166064491,4116045949,100,100,100,100,0.61,0.77,1.78,1.78
-74951,40,079,40079,1504,699,16869146,16251498,1504,699,16869146,16251498,50384,21448,4166064491,4116045949,100,100,100,100,2.99,3.26,0.4,0.39
-74953,40,079,40079,11632,4813,358353124,356195801,11632,4813,358353124,356195801,50384,21448,4166064491,4116045949,100,100,100,100,23.09,22.44,8.6,8.65
-74954,40,135,40135,4590,1913,47386476,46960070,4590,1913,47386476,46960070,42391,18656,1849645647,1743764515,100,100,100,100,10.83,10.25,2.56,2.69
-74955,40,135,40135,15344,6616,558729634,514107142,15344,6616,558729634,514107142,42391,18656,1849645647,1743764515,100,100,100,100,36.2,35.46,30.21,29.48
-74956,40,079,40079,1905,780,107315787,106854962,1905,780,107315787,106854962,50384,21448,4166064491,4116045949,100,100,100,100,3.78,3.64,2.58,2.6
-74957,40,079,40079,533,320,419510251,419019128,1170,658,608027730,605164954,50384,21448,4166064491,4116045949,45.56,48.63,69,69.24,1.06,1.49,10.07,10.18
-74957,40,089,40089,637,338,188517479,186145826,1170,658,608027730,605164954,33151,15533,4927128635,4791491660,54.44,51.37,31,30.76,1.92,2.18,3.83,3.88
-74959,40,079,40079,6736,2982,261831053,251327852,6736,2982,261831053,251327852,50384,21448,4166064491,4116045949,100,100,100,100,13.37,13.9,6.28,6.11
-74960,40,001,40001,13360,5252,756713996,752865671,13643,5371,786592245,782590911,22683,9142,1494559829,1485298113,97.93,97.78,96.2,96.2,58.9,57.45,50.63,50.69
-74960,40,021,40021,283,119,29878249,29725240,13643,5371,786592245,782590911,46987,21455,2010582452,1940956597,2.07,2.22,3.8,3.8,0.6,0.55,1.49,1.53
-74962,40,021,40021,65,136,10866981,9136609,5092,2688,401684333,371190228,46987,21455,2010582452,1940956597,1.28,5.06,2.71,2.46,0.14,0.63,0.54,0.47
-74962,40,135,40135,5027,2552,390817352,362053619,5092,2688,401684333,371190228,42391,18656,1849645647,1743764515,98.72,94.94,97.29,97.54,11.86,13.68,21.13,20.76
-74963,40,089,40089,608,309,198253146,195484107,608,309,198253146,195484107,33151,15533,4927128635,4791491660,100,100,100,100,1.83,1.99,4.02,4.08
-74964,40,001,40001,2368,969,185902416,183634666,2834,1188,197893591,195625841,22683,9142,1494559829,1485298113,83.56,81.57,93.94,93.87,10.44,10.6,12.44,12.36
-74964,40,041,40041,466,219,11991175,11991175,2834,1188,197893591,195625841,41487,24818,2052073762,1911868565,16.44,18.43,6.06,6.13,1.12,0.88,0.58,0.63
-74965,40,001,40001,5170,2161,292508184,290274479,5170,2161,292508184,290274479,22683,9142,1494559829,1485298113,100,100,100,100,22.79,23.64,19.57,19.54
-74966,40,077,40077,248,112,60981320,60646480,3719,1664,605992662,594639294,11154,4979,1888394018,1870178643,6.67,6.73,10.06,10.2,2.22,2.25,3.23,3.24
-74966,40,079,40079,3471,1552,545011342,533992814,3719,1664,605992662,594639294,50384,21448,4166064491,4116045949,93.33,93.27,89.94,89.8,6.89,7.24,13.08,12.97
-75001,48,113,48113,12414,8102,9940470,9931768,12414,8102,9940470,9931768,2368139,943257,2353299057,2256602704,100,100,100,100,0.52,0.86,0.42,0.44
-75002,48,085,48085,63140,21373,101586335,96246535,63140,21373,101586335,96246535,782341,300960,2294997419,2178761906,100,100,100,100,8.07,7.1,4.43,4.42
-75006,48,113,48113,46364,17747,44393422,43735887,46364,17747,44393422,43735887,2368139,943257,2353299057,2256602704,100,100,100,100,1.96,1.88,1.89,1.94
-75007,48,113,48113,2991,1151,2899389,2899389,51624,19296,30720792,30163744,2368139,943257,2353299057,2256602704,5.79,5.96,9.44,9.61,0.13,0.12,0.12,0.13
-75007,48,121,48121,48633,18145,27821403,27264355,51624,19296,30720792,30163744,662614,256139,2468199932,2275129231,94.21,94.04,90.56,90.39,7.34,7.08,1.13,1.2
-75009,48,085,48085,8328,2926,233327403,229387494,8785,3074,251204560,247128692,782341,300960,2294997419,2178761906,94.8,95.19,92.88,92.82,1.06,0.97,10.17,10.53
-75009,48,121,48121,457,148,17877157,17741198,8785,3074,251204560,247128692,662614,256139,2468199932,2275129231,5.2,4.81,7.12,7.18,0.07,0.06,0.72,0.78
-75010,48,121,48121,21607,8830,21154343,20894417,21607,8830,21154343,20894417,662614,256139,2468199932,2275129231,100,100,100,100,3.26,3.45,0.86,0.92
-75013,48,085,48085,30347,10517,38968919,38794452,30347,10517,38968919,38794452,782341,300960,2294997419,2178761906,100,100,100,100,3.88,3.49,1.7,1.78
-75019,48,113,48113,37912,14074,46217816,41559427,38666,14346,47321055,42662666,2368139,943257,2353299057,2256602704,98.05,98.1,97.67,97.41,1.6,1.49,1.96,1.84
-75019,48,121,48121,754,272,1103239,1103239,38666,14346,47321055,42662666,662614,256139,2468199932,2275129231,1.95,1.9,2.33,2.59,0.11,0.11,0.04,0.05
-75020,48,181,48181,21872,10085,174474229,162043271,21872,10085,174474229,162043271,120877,53727,2536056197,2415950507,100,100,100,100,18.09,18.77,6.88,6.71
-75021,48,181,48181,8036,3489,156243802,156065645,8036,3489,156243802,156065645,120877,53727,2536056197,2415950507,100,100,100,100,6.65,6.49,6.16,6.46
-75022,48,121,48121,22339,7034,53875539,48537143,22545,7149,55135100,49756501,662614,256139,2468199932,2275129231,99.09,98.39,97.72,97.55,3.37,2.75,2.18,2.13
-75022,48,439,48439,206,115,1259561,1219358,22545,7149,55135100,49756501,1809034,714803,2336958950,2236735560,0.91,1.61,2.28,2.45,0.01,0.02,0.05,0.05
-75023,48,085,48085,45452,18498,24429856,24400691,45452,18498,24429856,24400691,782341,300960,2294997419,2178761906,100,100,100,100,5.81,6.15,1.06,1.12
-75024,48,085,48085,33948,15530,29635553,29364691,36039,16253,33042002,32729786,782341,300960,2294997419,2178761906,94.2,95.55,89.69,89.72,4.34,5.16,1.29,1.35
-75024,48,121,48121,2091,723,3406449,3365095,36039,16253,33042002,32729786,662614,256139,2468199932,2275129231,5.8,4.45,10.31,10.28,0.32,0.28,0.14,0.15
-75025,48,085,48085,50926,18697,24272614,24152966,50926,18697,24272614,24152966,782341,300960,2294997419,2178761906,100,100,100,100,6.51,6.21,1.06,1.11
-75028,48,121,48121,42220,14473,38373189,38189307,42226,14476,39413750,39228785,662614,256139,2468199932,2275129231,99.99,99.98,97.36,97.35,6.37,5.65,1.55,1.68
-75028,48,439,48439,6,3,1040561,1039478,42226,14476,39413750,39228785,1809034,714803,2336958950,2236735560,0.01,0.02,2.64,2.65,0,0,0.04,0.05
-75032,48,397,48397,27986,9850,154574167,132895395,27986,9850,154574167,132895395,78337,27939,385175031,329020647,100,100,100,100,35.73,35.26,40.13,40.39
-75034,48,085,48085,24757,10554,51934691,51467971,72723,26706,139784749,129520409,782341,300960,2294997419,2178761906,34.04,39.52,37.15,39.74,3.16,3.51,2.26,2.36
-75034,48,121,48121,47966,16152,87850058,78052438,72723,26706,139784749,129520409,662614,256139,2468199932,2275129231,65.96,60.48,62.85,60.26,7.24,6.31,3.56,3.43
-75035,48,085,48085,47553,16739,61495864,61234999,47553,16739,61495864,61234999,782341,300960,2294997419,2178761906,100,100,100,100,6.08,5.56,2.68,2.81
-75038,48,113,48113,27802,13907,34735566,34630078,27802,13907,34735566,34630078,2368139,943257,2353299057,2256602704,100,100,100,100,1.17,1.47,1.48,1.53
-75039,48,113,48113,11032,7793,14489252,13588928,11032,7793,14489252,13588928,2368139,943257,2353299057,2256602704,100,100,100,100,0.47,0.83,0.62,0.6
-75040,48,113,48113,59406,19195,40559790,40542776,59406,19195,40559790,40542776,2368139,943257,2353299057,2256602704,100,100,100,100,2.51,2.03,1.72,1.8
-75041,48,113,48113,30700,10380,20729360,20723410,30700,10380,20729360,20723410,2368139,943257,2353299057,2256602704,100,100,100,100,1.3,1.1,0.88,0.92
-75042,48,113,48113,37881,12321,19378919,19376562,37881,12321,19378919,19376562,2368139,943257,2353299057,2256602704,100,100,100,100,1.6,1.31,0.82,0.86
-75043,48,113,48113,58094,22920,51140254,37626923,58094,22920,51140254,37626923,2368139,943257,2353299057,2256602704,100,100,100,100,2.45,2.43,2.17,1.67
-75044,48,085,48085,261,77,149591,149591,40811,16026,27991911,27816000,782341,300960,2294997419,2178761906,0.64,0.48,0.53,0.54,0.03,0.03,0.01,0.01
-75044,48,113,48113,40550,15949,27842320,27666409,40811,16026,27991911,27816000,2368139,943257,2353299057,2256602704,99.36,99.52,99.47,99.46,1.71,1.69,1.18,1.23
-75048,48,085,48085,6320,2258,6705392,6603422,20328,6972,27485074,27153807,782341,300960,2294997419,2178761906,31.09,32.39,24.4,24.32,0.81,0.75,0.29,0.3
-75048,48,113,48113,14008,4714,20779682,20550385,20328,6972,27485074,27153807,2368139,943257,2353299057,2256602704,68.91,67.61,75.6,75.68,0.59,0.5,0.88,0.91
-75050,48,113,48113,31232,11275,50263167,49735815,41041,16470,64730043,64060502,2368139,943257,2353299057,2256602704,76.1,68.46,77.65,77.64,1.32,1.2,2.14,2.2
-75050,48,439,48439,9809,5195,14466876,14324687,41041,16470,64730043,64060502,1809034,714803,2336958950,2236735560,23.9,31.54,22.35,22.36,0.54,0.73,0.62,0.64
-75051,48,113,48113,35645,12129,33559710,27251712,39285,13862,37710966,31402968,2368139,943257,2353299057,2256602704,90.73,87.5,88.99,86.78,1.51,1.29,1.43,1.21
-75051,48,439,48439,3640,1733,4151256,4151256,39285,13862,37710966,31402968,1809034,714803,2336958950,2236735560,9.27,12.5,11.01,13.22,0.2,0.24,0.18,0.19
-75052,48,113,48113,55922,18407,42713399,41849552,88996,29926,72689549,67746521,2368139,943257,2353299057,2256602704,62.84,61.51,58.76,61.77,2.36,1.95,1.82,1.85
-75052,48,439,48439,33074,11519,29976150,25896969,88996,29926,72689549,67746521,1809034,714803,2336958950,2236735560,37.16,38.49,41.24,38.23,1.83,1.61,1.28,1.16
-75054,48,113,48113,120,84,5239772,5239772,5053,1690,16578980,14074282,2368139,943257,2353299057,2256602704,2.37,4.97,31.6,37.23,0.01,0.01,0.22,0.23
-75054,48,439,48439,4933,1606,11339208,8834510,5053,1690,16578980,14074282,1809034,714803,2336958950,2236735560,97.63,95.03,68.4,62.77,0.27,0.22,0.49,0.39
-75056,48,121,48121,47852,18126,81440166,65384741,47852,18126,81440166,65384741,662614,256139,2468199932,2275129231,100,100,100,100,7.22,7.08,3.3,2.87
-75057,48,121,48121,12900,5249,32285915,26342071,12900,5249,32285915,26342071,662614,256139,2468199932,2275129231,100,100,100,100,1.95,2.05,1.31,1.16
-75058,48,181,48181,2982,1021,150747568,149285655,2982,1021,150747568,149285655,120877,53727,2536056197,2415950507,100,100,100,100,2.47,1.9,5.94,6.18
-75060,48,113,48113,45980,15384,35132715,34345887,45980,15384,35132715,34345887,2368139,943257,2353299057,2256602704,100,100,100,100,1.94,1.63,1.49,1.52
-75061,48,113,48113,53442,20001,30030777,29948116,53442,20001,30030777,29948116,2368139,943257,2353299057,2256602704,100,100,100,100,2.26,2.12,1.28,1.33
-75062,48,113,48113,44537,17955,28696651,28466086,44537,17955,28696651,28466086,2368139,943257,2353299057,2256602704,100,100,100,100,1.88,1.9,1.22,1.26
-75063,48,113,48113,35090,16678,39657567,39313581,35090,16678,39657567,39313581,2368139,943257,2353299057,2256602704,100,100,100,100,1.48,1.77,1.69,1.74
-75065,48,121,48121,10748,4127,40549952,20578069,10748,4127,40549952,20578069,662614,256139,2468199932,2275129231,100,100,100,100,1.62,1.61,1.64,0.9
-75067,48,113,48113,841,367,569920,568029,60982,25790,34689047,34427071,2368139,943257,2353299057,2256602704,1.38,1.42,1.64,1.65,0.04,0.04,0.02,0.03
-75067,48,121,48121,60141,25423,34119127,33859042,60982,25790,34689047,34427071,662614,256139,2468199932,2275129231,98.62,98.58,98.36,98.35,9.08,9.93,1.38,1.49
-75068,48,121,48121,34934,11990,90798516,71094991,34934,11990,90798516,71094991,662614,256139,2468199932,2275129231,100,100,100,100,5.27,4.68,3.68,3.12
-75069,48,085,48085,34108,13423,84750642,83015420,34108,13423,84750642,83015420,782341,300960,2294997419,2178761906,100,100,100,100,4.36,4.46,3.69,3.81
-75070,48,085,48085,74734,27329,62597235,61975282,74734,27329,62597235,61975282,782341,300960,2294997419,2178761906,100,100,100,100,9.55,9.08,2.73,2.84
-75071,48,085,48085,36090,12872,206352267,204087237,36090,12872,206352267,204087237,782341,300960,2294997419,2178761906,100,100,100,100,4.61,4.28,8.99,9.37
-75074,48,085,48085,44622,16019,42889017,42773971,44622,16019,42889017,42773971,782341,300960,2294997419,2178761906,100,100,100,100,5.7,5.32,1.87,1.96
-75075,48,085,48085,33262,13764,25539026,25522472,33262,13764,25539026,25522472,782341,300960,2294997419,2178761906,100,100,100,100,4.25,4.57,1.11,1.17
-75076,48,181,48181,7378,4448,151973497,128850031,7378,4448,151973497,128850031,120877,53727,2536056197,2415950507,100,100,100,100,6.1,8.28,5.99,5.33
-75077,48,121,48121,35330,13213,39692003,36139170,35330,13213,39692003,36139170,662614,256139,2468199932,2275129231,100,100,100,100,5.33,5.16,1.61,1.59
-75078,48,085,48085,9822,3530,62150170,61501819,10592,3849,85478668,84774626,782341,300960,2294997419,2178761906,92.73,91.71,72.71,72.55,1.26,1.17,2.71,2.82
-75078,48,121,48121,770,319,23328498,23272807,10592,3849,85478668,84774626,662614,256139,2468199932,2275129231,7.27,8.29,27.29,27.45,0.12,0.12,0.95,1.02
-75080,48,085,48085,9893,4434,8511607,8506073,44009,18849,29648178,29602654,782341,300960,2294997419,2178761906,22.48,23.52,28.71,28.73,1.26,1.47,0.37,0.39
-75080,48,113,48113,34116,14415,21136571,21096581,44009,18849,29648178,29602654,2368139,943257,2353299057,2256602704,77.52,76.48,71.29,71.27,1.44,1.53,0.9,0.93
-75081,48,113,48113,34156,13893,23910048,23899228,34156,13893,23910048,23899228,2368139,943257,2353299057,2256602704,100,100,100,100,1.44,1.47,1.02,1.06
-75082,48,085,48085,18800,6843,16901925,16728081,21182,7921,20468780,20285639,782341,300960,2294997419,2178761906,88.75,86.39,82.57,82.46,2.4,2.27,0.74,0.77
-75082,48,113,48113,2382,1078,3566855,3557558,21182,7921,20468780,20285639,2368139,943257,2353299057,2256602704,11.25,13.61,17.43,17.54,0.1,0.11,0.15,0.16
-75087,48,085,48085,164,66,3030534,2944252,28145,10513,92379396,67809828,782341,300960,2294997419,2178761906,0.58,0.63,3.28,4.34,0.02,0.02,0.13,0.14
-75087,48,397,48397,27981,10447,89348862,64865576,28145,10513,92379396,67809828,78337,27939,385175031,329020647,99.42,99.37,96.72,95.66,35.72,37.39,23.2,19.71
-75088,48,113,48113,20320,7300,28300289,20095488,24712,8744,31060872,22856071,2368139,943257,2353299057,2256602704,82.23,83.49,91.11,87.92,0.86,0.77,1.2,0.89
-75088,48,397,48397,4392,1444,2760583,2760583,24712,8744,31060872,22856071,78337,27939,385175031,329020647,17.77,16.51,8.89,12.08,5.61,5.17,0.72,0.84
-75089,48,113,48113,28752,9321,28964416,27713595,30251,9821,29954170,28703349,2368139,943257,2353299057,2256602704,95.04,94.91,96.7,96.55,1.21,0.99,1.23,1.23
-75089,48,397,48397,1499,500,989754,989754,30251,9821,29954170,28703349,78337,27939,385175031,329020647,4.96,5.09,3.3,3.45,1.91,1.79,0.26,0.3
-75090,48,181,48181,23724,9123,199697983,199566790,23724,9123,199697983,199566790,120877,53727,2536056197,2415950507,100,100,100,100,19.63,16.98,7.87,8.26
-75092,48,181,48181,22839,10580,294601037,293528883,22839,10580,294601037,293528883,120877,53727,2536056197,2415950507,100,100,100,100,18.89,19.69,11.62,12.15
-75093,48,085,48085,43952,18184,33411206,33119155,47187,19851,36901332,36574285,782341,300960,2294997419,2178761906,93.14,91.6,90.54,90.55,5.62,6.04,1.46,1.52
-75093,48,121,48121,3235,1667,3490126,3455130,47187,19851,36901332,36574285,662614,256139,2468199932,2275129231,6.86,8.4,9.46,9.45,0.49,0.65,0.14,0.15
-75094,48,085,48085,20579,5956,18096847,18059413,20579,5956,18096847,18059413,782341,300960,2294997419,2178761906,100,100,100,100,2.63,1.98,0.79,0.83
-75098,48,085,48085,45018,15111,84011674,72505037,48197,16288,105692746,85323200,782341,300960,2294997419,2178761906,93.4,92.77,79.49,84.98,5.75,5.02,3.66,3.33
-75098,48,113,48113,1811,713,10431168,10396047,48197,16288,105692746,85323200,2368139,943257,2353299057,2256602704,3.76,4.38,9.87,12.18,0.08,0.08,0.44,0.46
-75098,48,397,48397,1368,464,11249904,2422116,48197,16288,105692746,85323200,78337,27939,385175031,329020647,2.84,2.85,10.64,2.84,1.75,1.66,2.92,0.74
-75101,48,139,48139,646,206,2130982,2130982,646,206,2130982,2130982,149610,54365,2465015110,2422900216,100,100,100,100,0.43,0.38,0.09,0.09
-75102,48,349,48349,1322,555,158759330,157211700,1322,555,158759330,157211700,47735,20234,2812561876,2614922711,100,100,100,100,2.77,2.74,5.64,6.01
-75103,48,467,48467,12851,5572,524988302,516576903,12851,5572,524988302,516576903,52579,22817,2226378452,2182211358,100,100,100,100,24.44,24.42,23.58,23.67
-75104,48,113,48113,44964,16344,91091957,90736142,45373,16480,101894834,101237619,2368139,943257,2353299057,2256602704,99.1,99.17,89.4,89.63,1.9,1.73,3.87,4.02
-75104,48,139,48139,409,136,10802877,10501477,45373,16480,101894834,101237619,149610,54365,2465015110,2422900216,0.9,0.83,10.6,10.37,0.27,0.25,0.44,0.43
-75105,48,349,48349,301,146,134964511,133025919,301,146,134964511,133025919,47735,20234,2812561876,2614922711,100,100,100,100,0.63,0.72,4.8,5.09
-75109,48,349,48349,3658,1669,372111582,301189029,3658,1669,372111582,301189029,47735,20234,2812561876,2614922711,100,100,100,100,7.66,8.25,13.23,11.52
-75110,48,349,48349,28132,11265,391842324,388361633,28132,11265,391842324,388361633,47735,20234,2812561876,2614922711,100,100,100,100,58.93,55.67,13.93,14.85
-75114,48,257,48257,4660,1685,113140804,112013963,4660,1685,113140804,112013963,103350,38322,2091830656,2022000741,100,100,100,100,4.51,4.4,5.41,5.54
-75115,48,113,48113,48877,19326,56909992,56814302,48877,19326,56909992,56814302,2368139,943257,2353299057,2256602704,100,100,100,100,2.06,2.05,2.42,2.52
-75116,48,113,48113,19669,6932,13286688,13271661,19669,6932,13286688,13271661,2368139,943257,2353299057,2256602704,100,100,100,100,0.83,0.73,0.56,0.59
-75117,48,467,48467,3722,1634,122328693,121466312,3722,1634,122328693,121466312,52579,22817,2226378452,2182211358,100,100,100,100,7.08,7.16,5.49,5.57
-75119,48,139,48139,26416,9694,689072682,665170484,26601,9758,709751854,685705854,149610,54365,2465015110,2422900216,99.3,99.34,97.09,97.01,17.66,17.83,27.95,27.45
-75119,48,349,48349,185,64,20679172,20535370,26601,9758,709751854,685705854,47735,20234,2812561876,2614922711,0.7,0.66,2.91,2.99,0.39,0.32,0.74,0.79
-75124,48,213,48213,3521,1661,174205095,169653863,4446,2097,246258946,241080193,78532,39595,2456167228,2262997188,79.19,79.21,70.74,70.37,4.48,4.19,7.09,7.5
-75124,48,467,48467,925,436,72053851,71426330,4446,2097,246258946,241080193,52579,22817,2226378452,2182211358,20.81,20.79,29.26,29.63,1.76,1.91,3.24,3.27
-75125,48,113,48113,326,133,57140798,56421772,6691,2260,182505454,180443324,2368139,943257,2353299057,2256602704,4.87,5.88,31.31,31.27,0.01,0.01,2.43,2.5
-75125,48,139,48139,6365,2127,125364656,124021552,6691,2260,182505454,180443324,149610,54365,2465015110,2422900216,95.13,94.12,68.69,68.73,4.25,3.91,5.09,5.12
-75126,48,257,48257,33396,11080,202726529,200319901,33396,11080,202726529,200319901,103350,38322,2091830656,2022000741,100,100,100,100,32.31,28.91,9.69,9.91
-75127,48,467,48467,1593,653,69976331,68840646,1593,653,69976331,68840646,52579,22817,2226378452,2182211358,100,100,100,100,3.03,2.86,3.14,3.15
-75132,48,397,48397,294,153,3840599,3839208,294,153,3840599,3839208,78337,27939,385175031,329020647,100,100,100,100,0.38,0.55,1,1.17
-75134,48,113,48113,20276,7380,26502241,26469299,20276,7380,26502241,26469299,2368139,943257,2353299057,2256602704,100,100,100,100,0.86,0.78,1.13,1.17
-75135,48,231,48231,5910,2175,161239177,161008437,5910,2175,161239177,161008437,86129,36704,2284429176,2176414426,100,100,100,100,6.86,5.93,7.06,7.4
-75137,48,113,48113,18861,7082,15797564,15781643,18861,7082,15797564,15781643,2368139,943257,2353299057,2256602704,100,100,100,100,0.8,0.75,0.67,0.7
-75140,48,467,48467,6958,2916,296704339,290749871,6958,2916,296704339,290749871,52579,22817,2226378452,2182211358,100,100,100,100,13.23,12.78,13.33,13.32
-75141,48,113,48113,5374,1164,31526896,29537659,5374,1164,31526896,29537659,2368139,943257,2353299057,2256602704,100,100,100,100,0.23,0.12,1.34,1.31
-75142,48,257,48257,18982,7019,454896116,449172332,18982,7019,454896116,449172332,103350,38322,2091830656,2022000741,100,100,100,100,18.37,18.32,21.75,22.21
-75143,48,213,48213,7822,4358,243602217,216532567,14619,7381,524407805,460603249,78532,39595,2456167228,2262997188,53.51,59.04,46.45,47.01,9.96,11.01,9.92,9.57
-75143,48,257,48257,6797,3023,280805588,244070682,14619,7381,524407805,460603249,103350,38322,2091830656,2022000741,46.49,40.96,53.55,52.99,6.58,7.89,13.42,12.07
-75144,48,349,48349,3291,1598,488529454,444885559,3291,1598,488529454,444885559,47735,20234,2812561876,2614922711,100,100,100,100,6.89,7.9,17.37,17.01
-75146,48,113,48113,17871,6899,86141146,85603853,17993,6929,86495202,85957909,2368139,943257,2353299057,2256602704,99.32,99.57,99.59,99.59,0.75,0.73,3.66,3.79
-75146,48,139,48139,122,30,354056,354056,17993,6929,86495202,85957909,149610,54365,2465015110,2422900216,0.68,0.43,0.41,0.41,0.08,0.06,0.01,0.01
-75147,48,213,48213,644,264,9992090,9686804,6602,2765,249381595,242815942,78532,39595,2456167228,2262997188,9.75,9.55,4.01,3.99,0.82,0.67,0.41,0.43
-75147,48,257,48257,3705,1542,120457484,115604571,6602,2765,249381595,242815942,103350,38322,2091830656,2022000741,56.12,55.77,48.3,47.61,3.58,4.02,5.76,5.72
-75147,48,467,48467,2253,959,118932021,117524567,6602,2765,249381595,242815942,52579,22817,2226378452,2182211358,34.13,34.68,47.69,48.4,4.28,4.2,5.34,5.39
-75148,48,213,48213,5842,3250,242465006,226646735,5842,3250,242465006,226646735,78532,39595,2456167228,2262997188,100,100,100,100,7.44,8.21,9.87,10.02
-75149,48,113,48113,56065,20056,41305874,41135821,56065,20056,41305874,41135821,2368139,943257,2353299057,2256602704,100,100,100,100,2.37,2.13,1.76,1.82
-75150,48,113,48113,58730,23905,33037798,33006607,58730,23905,33037798,33006607,2368139,943257,2353299057,2256602704,100,100,100,100,2.48,2.53,1.4,1.46
-75152,48,139,48139,4606,1638,106392181,105522562,4606,1638,106392181,105522562,149610,54365,2465015110,2422900216,100,100,100,100,3.08,3.01,4.32,4.36
-75153,48,349,48349,605,235,64164035,60901171,605,235,64164035,60901171,47735,20234,2812561876,2614922711,100,100,100,100,1.27,1.16,2.28,2.33
-75154,48,113,48113,8851,3055,14579378,14567448,36041,12766,121829444,121759855,2368139,943257,2353299057,2256602704,24.56,23.93,11.97,11.96,0.37,0.32,0.62,0.65
-75154,48,139,48139,27190,9711,107250066,107192407,36041,12766,121829444,121759855,149610,54365,2465015110,2422900216,75.44,76.07,88.03,88.04,18.17,17.86,4.35,4.42
-75155,48,349,48349,2579,975,100159801,98553488,2579,975,100159801,98553488,47735,20234,2812561876,2614922711,100,100,100,100,5.4,4.82,3.56,3.77
-75156,48,213,48213,14580,8847,123078325,80995804,14580,8847,123078325,80995804,78532,39595,2456167228,2262997188,100,100,100,100,18.57,22.34,5.01,3.58
-75157,48,257,48257,310,139,4430288,4352078,310,139,4430288,4352078,103350,38322,2091830656,2022000741,100,100,100,100,0.3,0.36,0.21,0.22
-75158,48,257,48257,4139,1602,230614119,227734419,4139,1602,230614119,227734419,103350,38322,2091830656,2022000741,100,100,100,100,4,4.18,11.02,11.26
-75159,48,113,48113,16176,5047,108126607,97880517,18339,5838,168225098,154899645,2368139,943257,2353299057,2256602704,88.21,86.45,64.27,63.19,0.68,0.54,4.59,4.34
-75159,48,257,48257,2163,791,60098491,57019128,18339,5838,168225098,154899645,103350,38322,2091830656,2022000741,11.79,13.55,35.73,36.81,2.09,2.06,2.87,2.82
-75160,48,231,48231,1392,562,51434253,51220355,23627,9109,312835387,310745346,86129,36704,2284429176,2176414426,5.89,6.17,16.44,16.48,1.62,1.53,2.25,2.35
-75160,48,257,48257,22200,8531,261200285,259324142,23627,9109,312835387,310745346,103350,38322,2091830656,2022000741,93.96,93.65,83.49,83.45,21.48,22.26,12.49,12.83
-75160,48,397,48397,35,16,200849,200849,23627,9109,312835387,310745346,78337,27939,385175031,329020647,0.15,0.18,0.06,0.06,0.04,0.06,0.05,0.06
-75161,48,257,48257,6165,2555,301967006,295125898,6165,2555,301967006,295125898,103350,38322,2091830656,2022000741,100,100,100,100,5.97,6.67,14.44,14.6
-75163,48,213,48213,2285,1548,103153939,87493184,2285,1548,103153939,87493184,78532,39595,2456167228,2262997188,100,100,100,100,2.91,3.91,4.2,3.87
-75164,48,085,48085,671,260,6362073,5905053,671,260,6362073,5905053,782341,300960,2294997419,2178761906,100,100,100,100,0.09,0.09,0.28,0.27
-75165,48,139,48139,37966,14560,296233318,291845300,37966,14560,296233318,291845300,149610,54365,2465015110,2422900216,100,100,100,100,25.38,26.78,12.02,12.05
-75166,48,085,48085,3070,1089,42764961,34224383,3070,1089,42764961,34224383,782341,300960,2294997419,2178761906,100,100,100,100,0.39,0.36,1.86,1.57
-75167,48,139,48139,8436,2808,254212759,252730069,8436,2808,254212759,252730069,149610,54365,2465015110,2422900216,100,100,100,100,5.64,5.17,10.31,10.43
-75169,48,231,48231,1795,1000,30781827,12481074,14644,6540,590797324,554516084,86129,36704,2284429176,2176414426,12.26,15.29,5.21,2.25,2.08,2.72,1.35,0.57
-75169,48,257,48257,629,259,49012911,48383093,14644,6540,590797324,554516084,103350,38322,2091830656,2022000741,4.3,3.96,8.3,8.73,0.61,0.68,2.34,2.39
-75169,48,467,48467,12220,5281,511002586,493651917,14644,6540,590797324,554516084,52579,22817,2226378452,2182211358,83.45,80.75,86.49,89.02,23.24,23.15,22.95,22.62
-75172,48,113,48113,3956,1398,30579050,30195425,3956,1398,30579050,30195425,2368139,943257,2353299057,2256602704,100,100,100,100,0.17,0.15,1.3,1.34
-75173,48,085,48085,4353,1627,91558253,78887263,4353,1627,91558253,78887263,782341,300960,2294997419,2178761906,100,100,100,100,0.56,0.54,3.99,3.62
-75180,48,113,48113,23031,7772,19880703,19836095,23031,7772,19880703,19836095,2368139,943257,2353299057,2256602704,100,100,100,100,0.97,0.82,0.84,0.88
-75181,48,113,48113,25908,8180,45761105,45570309,25908,8180,45761105,45570309,2368139,943257,2353299057,2256602704,100,100,100,100,1.09,0.87,1.94,2.02
-75182,48,113,48113,5118,1705,51577268,45600198,5118,1705,51577268,45600198,2368139,943257,2353299057,2256602704,100,100,100,100,0.22,0.18,2.19,2.02
-75189,48,085,48085,2270,767,57050758,56267449,22406,7702,290086718,287468772,782341,300960,2294997419,2178761906,10.13,9.96,19.67,19.57,0.29,0.25,2.49,2.58
-75189,48,231,48231,5354,1870,110825647,110154157,22406,7702,290086718,287468772,86129,36704,2284429176,2176414426,23.9,24.28,38.2,38.32,6.22,5.09,4.85,5.06
-75189,48,397,48397,14782,5065,122210313,121047166,22406,7702,290086718,287468772,78337,27939,385175031,329020647,65.97,65.76,42.13,42.11,18.87,18.13,31.73,36.79
-75201,48,113,48113,9409,6926,3741301,3741301,9409,6926,3741301,3741301,2368139,943257,2353299057,2256602704,100,100,100,100,0.4,0.73,0.16,0.17
-75202,48,113,48113,1666,1468,1830231,1830231,1666,1468,1830231,1830231,2368139,943257,2353299057,2256602704,100,100,100,100,0.07,0.16,0.08,0.08
-75203,48,113,48113,15721,6456,12314613,12250768,15721,6456,12314613,12250768,2368139,943257,2353299057,2256602704,100,100,100,100,0.66,0.68,0.52,0.54
-75204,48,113,48113,26279,16495,6622718,6622718,26279,16495,6622718,6622718,2368139,943257,2353299057,2256602704,100,100,100,100,1.11,1.75,0.28,0.29
-75205,48,113,48113,23061,9985,11271682,11265090,23061,9985,11271682,11265090,2368139,943257,2353299057,2256602704,100,100,100,100,0.97,1.06,0.48,0.5
-75206,48,113,48113,36248,22937,11066964,11023986,36248,22937,11066964,11023986,2368139,943257,2353299057,2256602704,100,100,100,100,1.53,2.43,0.47,0.49
-75207,48,113,48113,9648,770,10080164,9973729,9648,770,10080164,9973729,2368139,943257,2353299057,2256602704,100,100,100,100,0.41,0.08,0.43,0.44
-75208,48,113,48113,30171,10853,15396918,15383328,30171,10853,15396918,15383328,2368139,943257,2353299057,2256602704,100,100,100,100,1.27,1.15,0.65,0.68
-75209,48,113,48113,13653,7076,9177775,9155181,13653,7076,9177775,9155181,2368139,943257,2353299057,2256602704,100,100,100,100,0.58,0.75,0.39,0.41
-75210,48,113,48113,7482,3344,6238934,5844199,7482,3344,6238934,5844199,2368139,943257,2353299057,2256602704,100,100,100,100,0.32,0.35,0.27,0.26
-75211,48,113,48113,73146,21528,48168593,45642456,73146,21528,48168593,45642456,2368139,943257,2353299057,2256602704,100,100,100,100,3.09,2.28,2.05,2.02
-75212,48,113,48113,24884,7530,26905269,26650784,24884,7530,26905269,26650784,2368139,943257,2353299057,2256602704,100,100,100,100,1.05,0.8,1.14,1.18
-75214,48,113,48113,32950,17269,19384612,18742812,32950,17269,19384612,18742812,2368139,943257,2353299057,2256602704,100,100,100,100,1.39,1.83,0.82,0.83
-75215,48,113,48113,14648,7539,22303580,21793234,14648,7539,22303580,21793234,2368139,943257,2353299057,2256602704,100,100,100,100,0.62,0.8,0.95,0.97
-75216,48,113,48113,49416,19261,38315208,37875089,49416,19261,38315208,37875089,2368139,943257,2353299057,2256602704,100,100,100,100,2.09,2.04,1.63,1.68
-75217,48,113,48113,80324,23805,73272428,70767649,80324,23805,73272428,70767649,2368139,943257,2353299057,2256602704,100,100,100,100,3.39,2.52,3.11,3.14
-75218,48,113,48113,21665,10842,18145748,18100090,21665,10842,18145748,18100090,2368139,943257,2353299057,2256602704,100,100,100,100,0.91,1.15,0.77,0.8
-75219,48,113,48113,22124,15075,5668971,5668971,22124,15075,5668971,5668971,2368139,943257,2353299057,2256602704,100,100,100,100,0.93,1.6,0.24,0.25
-75220,48,113,48113,41891,15382,30301008,29314538,41891,15382,30301008,29314538,2368139,943257,2353299057,2256602704,100,100,100,100,1.77,1.63,1.29,1.3
-75223,48,113,48113,13947,4728,8941224,8941224,13947,4728,8941224,8941224,2368139,943257,2353299057,2256602704,100,100,100,100,0.59,0.5,0.38,0.4
-75224,48,113,48113,34034,11084,15160354,15131592,34034,11084,15160354,15131592,2368139,943257,2353299057,2256602704,100,100,100,100,1.44,1.18,0.64,0.67
-75225,48,113,48113,20892,9500,12251205,12217853,20892,9500,12251205,12217853,2368139,943257,2353299057,2256602704,100,100,100,100,0.88,1.01,0.52,0.54
-75226,48,113,48113,3506,2013,2901206,2901206,3506,2013,2901206,2901206,2368139,943257,2353299057,2256602704,100,100,100,100,0.15,0.21,0.12,0.13
-75227,48,113,48113,55029,17838,29551962,29517405,55029,17838,29551962,29517405,2368139,943257,2353299057,2256602704,100,100,100,100,2.32,1.89,1.26,1.31
-75228,48,113,48113,66551,26701,29572902,29529376,66551,26701,29572902,29529376,2368139,943257,2353299057,2256602704,100,100,100,100,2.81,2.83,1.26,1.31
-75229,48,113,48113,31571,11688,32532782,32456782,31571,11688,32532782,32456782,2368139,943257,2353299057,2256602704,100,100,100,100,1.33,1.24,1.38,1.44
-75230,48,113,48113,26934,13735,18870577,18765844,26934,13735,18870577,18765844,2368139,943257,2353299057,2256602704,100,100,100,100,1.14,1.46,0.8,0.83
-75231,48,113,48113,37052,17796,14667545,14598387,37052,17796,14667545,14598387,2368139,943257,2353299057,2256602704,100,100,100,100,1.56,1.89,0.62,0.65
-75232,48,113,48113,28682,10570,21420691,21411352,28682,10570,21420691,21411352,2368139,943257,2353299057,2256602704,100,100,100,100,1.21,1.12,0.91,0.95
-75233,48,113,48113,14043,4966,8973329,8965836,14043,4966,8973329,8965836,2368139,943257,2353299057,2256602704,100,100,100,100,0.59,0.53,0.38,0.4
-75234,48,113,48113,28794,11033,27488120,26772766,28794,11033,27488120,26772766,2368139,943257,2353299057,2256602704,100,100,100,100,1.22,1.17,1.17,1.19
-75235,48,113,48113,17177,7089,17919709,17404396,17177,7089,17919709,17404396,2368139,943257,2353299057,2256602704,100,100,100,100,0.73,0.75,0.76,0.77
-75236,48,113,48113,15949,6179,33467425,32341363,15949,6179,33467425,32341363,2368139,943257,2353299057,2256602704,100,100,100,100,0.67,0.66,1.42,1.43
-75237,48,113,48113,17101,8204,17223678,17223678,17101,8204,17223678,17223678,2368139,943257,2353299057,2256602704,100,100,100,100,0.72,0.87,0.73,0.76
-75238,48,113,48113,30483,13098,17033725,17033725,30483,13098,17033725,17033725,2368139,943257,2353299057,2256602704,100,100,100,100,1.29,1.39,0.72,0.75
-75240,48,113,48113,24296,10793,9781081,9759368,24296,10793,9781081,9759368,2368139,943257,2353299057,2256602704,100,100,100,100,1.03,1.14,0.42,0.43
-75241,48,113,48113,27066,10137,69977895,69557122,27066,10137,69977895,69557122,2368139,943257,2353299057,2256602704,100,100,100,100,1.14,1.07,2.97,3.08
-75243,48,113,48113,55406,28843,22567954,22540592,55406,28843,22567954,22540592,2368139,943257,2353299057,2256602704,100,100,100,100,2.34,3.06,0.96,1
-75244,48,113,48113,13266,6103,11948331,11941841,13266,6103,11948331,11941841,2368139,943257,2353299057,2256602704,100,100,100,100,0.56,0.65,0.51,0.53
-75246,48,113,48113,2770,1415,1171987,1169833,2770,1415,1171987,1169833,2368139,943257,2353299057,2256602704,100,100,100,100,0.12,0.15,0.05,0.05
-75247,48,113,48113,468,255,17028706,16933910,468,255,17028706,16933910,2368139,943257,2353299057,2256602704,100,100,100,100,0.02,0.03,0.72,0.75
-75248,48,085,48085,236,105,108111,108111,33395,16409,19268196,19187212,782341,300960,2294997419,2178761906,0.71,0.64,0.56,0.56,0.03,0.03,0,0
-75248,48,113,48113,33159,16304,19160085,19079101,33395,16409,19268196,19187212,2368139,943257,2353299057,2256602704,99.29,99.36,99.44,99.44,1.4,1.73,0.81,0.85
-75249,48,113,48113,13373,4420,11949279,11905773,13373,4420,11949279,11905773,2368139,943257,2353299057,2256602704,100,100,100,100,0.56,0.47,0.51,0.53
-75251,48,113,48113,2331,1816,1152252,1140995,2331,1816,1152252,1140995,2368139,943257,2353299057,2256602704,100,100,100,100,0.1,0.19,0.05,0.05
-75252,48,085,48085,23495,12724,12318202,12290681,24112,13082,13097093,13069572,782341,300960,2294997419,2178761906,97.44,97.26,94.05,94.04,3,4.23,0.54,0.56
-75252,48,113,48113,617,358,778891,778891,24112,13082,13097093,13069572,2368139,943257,2353299057,2256602704,2.56,2.74,5.95,5.96,0.03,0.04,0.03,0.03
-75253,48,113,48113,18450,5959,37260271,35001924,18450,5959,37260271,35001924,2368139,943257,2353299057,2256602704,100,100,100,100,0.78,0.63,1.58,1.55
-75254,48,113,48113,23253,12460,8596922,8596236,23253,12460,8596922,8596236,2368139,943257,2353299057,2256602704,100,100,100,100,0.98,1.32,0.37,0.38
-75270,48,113,48113,0,0,14850,14850,0,0,14850,14850,2368139,943257,2353299057,2256602704,0,0,100,100,0,0,0,0
-75287,48,085,48085,23152,13698,8349753,8302813,49004,28942,14545692,14498752,782341,300960,2294997419,2178761906,47.25,47.33,57.4,57.27,2.96,4.55,0.36,0.38
-75287,48,113,48113,0,0,4319,4319,49004,28942,14545692,14498752,2368139,943257,2353299057,2256602704,0,0,0.03,0.03,0,0,0,0
-75287,48,121,48121,25852,15244,6191620,6191620,49004,28942,14545692,14498752,662614,256139,2468199932,2275129231,52.75,52.67,42.57,42.7,3.9,5.95,0.25,0.27
-75390,48,113,48113,0,0,13392,13392,0,0,13392,13392,2368139,943257,2353299057,2256602704,0,0,100,100,0,0,0,0
-75401,48,231,48231,18552,7506,271848184,269268549,18552,7506,271848184,269268549,86129,36704,2284429176,2176414426,100,100,100,100,21.54,20.45,11.9,12.37
-75402,48,231,48231,15920,7123,237078058,233879785,15920,7123,237078058,233879785,86129,36704,2284429176,2176414426,100,100,100,100,18.48,19.41,10.38,10.75
-75407,48,085,48085,14120,5282,169270466,128285310,14120,5282,169270466,128285310,782341,300960,2294997419,2178761906,100,100,100,100,1.8,1.76,7.38,5.89
-75409,48,085,48085,11831,4207,210390063,207767762,11831,4207,210390063,207767762,782341,300960,2294997419,2178761906,100,100,100,100,1.51,1.4,9.17,9.54
-75410,48,379,48379,773,331,100505056,98760767,4334,2083,243676701,213029863,10914,5269,670360495,594278071,17.84,15.89,41.25,46.36,7.08,6.28,14.99,16.62
-75410,48,499,48499,3561,1752,143171645,114269096,4334,2083,243676701,213029863,41964,20861,1801903072,1671149162,82.16,84.11,58.75,53.64,8.49,8.4,7.95,6.84
-75411,48,277,48277,1118,575,218765590,203309399,1118,575,218765590,203309399,49793,22481,2416725397,2349611989,100,100,100,100,2.25,2.56,9.05,8.65
-75412,48,387,48387,778,442,397273507,393461518,778,442,397273507,393461518,12860,6826,2736932304,2684724244,100,100,100,100,6.05,6.48,14.52,14.66
-75413,48,147,48147,305,131,3637331,3637331,305,131,3637331,3637331,33915,14191,2328097998,2307256396,100,100,100,100,0.9,0.92,0.16,0.16
-75414,48,181,48181,3136,1312,127003849,126137306,3136,1312,127003849,126137306,120877,53727,2536056197,2415950507,100,100,100,100,2.59,2.44,5.01,5.22
-75415,48,119,48119,144,80,27488820,27221610,144,80,27488820,27221610,5231,2458,719840305,665173912,100,100,100,100,2.75,3.25,3.82,4.09
-75416,48,277,48277,2893,1209,193631122,191692209,2893,1209,193631122,191692209,49793,22481,2416725397,2349611989,100,100,100,100,5.81,5.38,8.01,8.16
-75417,48,387,48387,2456,1273,434138116,417937886,2456,1273,434138116,417937886,12860,6826,2736932304,2684724244,100,100,100,100,19.1,18.65,15.86,15.57
-75418,48,147,48147,14411,5423,367204277,362001056,14411,5423,367204277,362001056,33915,14191,2328097998,2307256396,100,100,100,100,42.49,38.21,15.77,15.69
-75420,48,223,48223,1076,504,96028251,94792931,1076,504,96028251,94792931,35161,15029,2053269416,1986971988,100,100,100,100,3.06,3.35,4.68,4.77
-75421,48,277,48277,1003,420,142536008,141567946,1003,420,142536008,141567946,49793,22481,2416725397,2349611989,100,100,100,100,2.01,1.87,5.9,6.03
-75422,48,231,48231,2883,1184,190273195,189183446,2883,1184,190273195,189183446,86129,36704,2284429176,2176414426,100,100,100,100,3.35,3.23,8.33,8.69
-75423,48,147,48147,33,14,4099257,4099257,2982,1204,211156428,210214831,33915,14191,2328097998,2307256396,1.11,1.16,1.94,1.95,0.1,0.1,0.18,0.18
-75423,48,231,48231,2949,1190,207057171,206115574,2982,1204,211156428,210214831,86129,36704,2284429176,2176414426,98.89,98.84,98.06,98.05,3.42,3.24,9.06,9.47
-75424,48,085,48085,3096,1273,159275028,158045377,3297,1353,174354980,173125329,782341,300960,2294997419,2178761906,93.9,94.09,91.35,91.29,0.4,0.42,6.94,7.25
-75424,48,147,48147,201,80,15079952,15079952,3297,1353,174354980,173125329,33915,14191,2328097998,2307256396,6.1,5.91,8.65,8.71,0.59,0.56,0.65,0.65
-75426,48,387,48387,5301,2846,859040364,846699349,5301,2846,859040364,846699349,12860,6826,2736932304,2684724244,100,100,100,100,41.22,41.69,31.39,31.54
-75428,48,119,48119,275,120,41452959,38200802,10089,4502,226712602,222723122,5231,2458,719840305,665173912,2.73,2.67,18.28,17.15,5.26,4.88,5.76,5.74
-75428,48,231,48231,9814,4382,185259643,184522320,10089,4502,226712602,222723122,86129,36704,2284429176,2176414426,97.27,97.33,81.72,82.85,11.39,11.94,8.11,8.48
-75431,48,223,48223,1815,742,124503850,123722624,2052,862,153699402,152443874,35161,15029,2053269416,1986971988,88.45,86.08,81,81.16,5.16,4.94,6.06,6.23
-75431,48,499,48499,237,120,29195552,28721250,2052,862,153699402,152443874,41964,20861,1801903072,1671149162,11.55,13.92,19,18.84,0.56,0.58,1.62,1.72
-75432,48,119,48119,3323,1517,293638793,274173283,3323,1517,293638793,274173283,5231,2458,719840305,665173912,100,100,100,100,63.53,61.72,40.79,41.22
-75433,48,223,48223,2773,1238,272521245,269592087,2773,1238,272521245,269592087,35161,15029,2053269416,1986971988,100,100,100,100,7.89,8.24,13.27,13.57
-75435,48,277,48277,1007,506,126069967,125754093,1185,591,174176015,173860141,49793,22481,2416725397,2349611989,84.98,85.62,72.38,72.33,2.02,2.25,5.22,5.35
-75435,48,387,48387,178,85,48106048,48106048,1185,591,174176015,173860141,12860,6826,2736932304,2684724244,15.02,14.38,27.62,27.67,1.38,1.25,1.76,1.79
-75436,48,277,48277,84,34,11327932,11088546,1876,917,430855628,428198204,49793,22481,2416725397,2349611989,4.48,3.71,2.63,2.59,0.17,0.15,0.47,0.47
-75436,48,387,48387,1792,883,419527696,417109658,1876,917,430855628,428198204,12860,6826,2736932304,2684724244,95.52,96.29,97.37,97.41,13.93,12.94,15.33,15.54
-75437,48,223,48223,1078,494,159224566,156003489,1078,494,159224566,156003489,35161,15029,2053269416,1986971988,100,100,100,100,3.07,3.29,7.75,7.85
-75438,48,147,48147,972,440,118940930,118582964,972,440,118940930,118582964,33915,14191,2328097998,2307256396,100,100,100,100,2.87,3.1,5.11,5.14
-75439,48,147,48147,868,395,36171495,36043840,868,395,36171495,36043840,33915,14191,2328097998,2307256396,100,100,100,100,2.56,2.78,1.55,1.56
-75440,48,379,48379,6166,3040,322118097,295720525,6350,3155,326162426,297757615,10914,5269,670360495,594278071,97.1,96.35,98.76,99.32,56.5,57.7,48.05,49.76
-75440,48,499,48499,184,115,4044329,2037090,6350,3155,326162426,297757615,41964,20861,1801903072,1671149162,2.9,3.65,1.24,0.68,0.44,0.55,0.22,0.12
-75441,48,119,48119,142,65,18314879,18240189,142,65,18314879,18240189,5231,2458,719840305,665173912,100,100,100,100,2.71,2.64,2.54,2.74
-75442,48,085,48085,7886,3067,253423613,233410897,8858,3459,293178021,273111803,782341,300960,2294997419,2178761906,89.03,88.67,86.44,85.46,1.01,1.02,11.04,10.71
-75442,48,231,48231,972,392,39754408,39700906,8858,3459,293178021,273111803,86129,36704,2284429176,2176414426,10.97,11.33,13.56,14.54,1.13,1.07,1.74,1.82
-75446,48,147,48147,2788,1344,358743656,356720871,3180,1530,459944815,456600342,33915,14191,2328097998,2307256396,87.67,87.84,78,78.13,8.22,9.47,15.41,15.46
-75446,48,277,48277,392,186,101201159,99879471,3180,1530,459944815,456600342,49793,22481,2416725397,2349611989,12.33,12.16,22,21.87,0.79,0.83,4.19,4.25
-75447,48,147,48147,1080,492,141364435,138652142,1080,492,141364435,138652142,33915,14191,2328097998,2307256396,100,100,100,100,3.18,3.47,6.07,6.01
-75448,48,119,48119,655,300,89409050,73418127,655,300,89409050,73418127,5231,2458,719840305,665173912,100,100,100,100,12.52,12.21,12.42,11.04
-75449,48,147,48147,989,539,141538519,141037988,1186,648,211403162,210753669,33915,14191,2328097998,2307256396,83.39,83.18,66.95,66.92,2.92,3.8,6.08,6.11
-75449,48,231,48231,197,109,69864643,69715681,1186,648,211403162,210753669,86129,36704,2284429176,2176414426,16.61,16.82,33.05,33.08,0.23,0.3,3.06,3.2
-75450,48,119,48119,331,175,158554221,154245504,331,175,158554221,154245504,5231,2458,719840305,665173912,100,100,100,100,6.33,7.12,22.03,23.19
-75451,48,063,48063,1156,600,85935986,81574161,1211,630,95052776,90208791,12401,5656,526371739,507188128,95.46,95.24,90.41,90.43,9.32,10.61,16.33,16.08
-75451,48,499,48499,55,30,9116790,8634630,1211,630,95052776,90208791,41964,20861,1801903072,1671149162,4.54,4.76,9.59,9.57,0.13,0.14,0.51,0.52
-75452,48,085,48085,81,34,5063063,4902084,4090,1710,198931426,197159583,782341,300960,2294997419,2178761906,1.98,1.99,2.55,2.49,0.01,0.01,0.22,0.22
-75452,48,147,48147,3836,1614,163817870,162857238,4090,1710,198931426,197159583,33915,14191,2328097998,2307256396,93.79,94.39,82.35,82.6,11.31,11.37,7.04,7.06
-75452,48,231,48231,173,62,30050493,29400261,4090,1710,198931426,197159583,86129,36704,2284429176,2176414426,4.23,3.63,15.11,14.91,0.2,0.17,1.32,1.35
-75453,48,223,48223,113,56,10303658,9911890,3255,1481,212073627,193830836,35161,15029,2053269416,1986971988,3.47,3.78,4.86,5.11,0.32,0.37,0.5,0.5
-75453,48,231,48231,2699,1226,164566557,147722110,3255,1481,212073627,193830836,86129,36704,2284429176,2176414426,82.92,82.78,77.6,76.21,3.13,3.34,7.2,6.79
-75453,48,379,48379,443,199,37203412,36196836,3255,1481,212073627,193830836,10914,5269,670360495,594278071,13.61,13.44,17.54,18.67,4.06,3.78,5.55,6.09
-75454,48,085,48085,5699,2012,50109396,49669107,5699,2012,50109396,49669107,782341,300960,2294997419,2178761906,100,100,100,100,0.73,0.67,2.18,2.28
-75455,48,159,48159,70,38,23177380,22501687,28293,10305,794670254,764660841,10605,5770,763445063,736568975,0.25,0.37,2.92,2.94,0.66,0.66,3.04,3.05
-75455,48,449,48449,28223,10267,771492874,742159154,28293,10305,794670254,764660841,32334,12054,1102411397,1051675541,99.75,99.63,97.08,97.06,87.29,85.18,69.98,70.57
-75457,48,159,48159,6522,3176,359949537,348771619,6522,3176,359949537,348771619,10605,5770,763445063,736568975,100,100,100,100,61.5,55.04,47.15,47.35
-75459,48,181,48181,4326,1726,206355242,205369298,4326,1726,206355242,205369298,120877,53727,2536056197,2415950507,100,100,100,100,3.58,3.21,8.14,8.5
-75460,48,277,48277,23592,11186,248308965,234593160,23592,11186,248308965,234593160,49793,22481,2416725397,2349611989,100,100,100,100,47.38,49.76,10.27,9.98
-75462,48,277,48277,11350,4725,525413192,517790313,11350,4725,525413192,517790313,49793,22481,2416725397,2349611989,100,100,100,100,22.79,21.02,21.74,22.04
-75468,48,277,48277,888,393,132550868,130991045,888,393,132550868,130991045,49793,22481,2416725397,2349611989,100,100,100,100,1.78,1.75,5.48,5.58
-75469,48,119,48119,361,201,80268369,79671704,371,207,80356697,79760032,5231,2458,719840305,665173912,97.3,97.1,99.89,99.89,6.9,8.18,11.15,11.98
-75469,48,147,48147,10,6,88328,88328,371,207,80356697,79760032,33915,14191,2328097998,2307256396,2.7,2.9,0.11,0.11,0.03,0.04,0,0
-75470,48,277,48277,288,123,50054757,49771350,288,123,50054757,49771350,49793,22481,2416725397,2349611989,100,100,100,100,0.58,0.55,2.07,2.12
-75471,48,223,48223,1374,556,118706934,117958148,1424,578,125770340,124814819,35161,15029,2053269416,1986971988,96.49,96.19,94.38,94.51,3.91,3.7,5.78,5.94
-75471,48,499,48499,50,22,7063406,6856671,1424,578,125770340,124814819,41964,20861,1801903072,1671149162,3.51,3.81,5.62,5.49,0.12,0.11,0.39,0.41
-75472,48,223,48223,16,8,1279043,1263605,3548,1707,211812973,164863548,35161,15029,2053269416,1986971988,0.45,0.47,0.6,0.77,0.05,0.05,0.06,0.06
-75472,48,379,48379,3532,1699,210533930,163599943,3548,1707,211812973,164863548,10914,5269,670360495,594278071,99.55,99.53,99.4,99.23,32.36,32.25,31.41,27.53
-75473,48,277,48277,3855,1671,230279026,215647836,3855,1671,230279026,215647836,49793,22481,2416725397,2349611989,100,100,100,100,7.74,7.43,9.53,9.18
-75474,48,231,48231,14678,6625,330771382,269045852,14882,6721,339845409,277880681,86129,36704,2284429176,2176414426,98.63,98.57,97.33,96.82,17.04,18.05,14.48,12.36
-75474,48,257,48257,204,96,9074027,8834829,14882,6721,339845409,277880681,103350,38322,2091830656,2022000741,1.37,1.43,2.67,3.18,0.2,0.25,0.43,0.44
-75475,48,147,48147,129,72,5331282,5331282,129,72,5331282,5331282,33915,14191,2328097998,2307256396,100,100,100,100,0.38,0.51,0.23,0.23
-75476,48,147,48147,1304,578,134593568,133973068,1304,578,134593568,133973068,33915,14191,2328097998,2307256396,100,100,100,100,3.84,4.07,5.78,5.81
-75477,48,277,48277,977,486,158970150,157011824,977,486,158970150,157011824,49793,22481,2416725397,2349611989,100,100,100,100,1.96,2.16,6.58,6.68
-75478,48,159,48159,14,7,2235403,2173303,932,409,140589882,138076659,10605,5770,763445063,736568975,1.5,1.71,1.59,1.57,0.13,0.12,0.29,0.3
-75478,48,223,48223,918,402,138354479,135903356,932,409,140589882,138076659,35161,15029,2053269416,1986971988,98.5,98.29,98.41,98.43,2.61,2.67,6.74,6.84
-75479,48,147,48147,1849,779,135361843,131537921,1849,779,135361843,131537921,33915,14191,2328097998,2307256396,100,100,100,100,5.45,5.49,5.81,5.7
-75480,48,159,48159,1646,1285,94469270,83866541,1646,1285,94469270,83866541,10605,5770,763445063,736568975,100,100,100,100,15.52,22.27,12.37,11.39
-75481,48,159,48159,76,30,12739325,12723771,395,193,183364995,179816065,10605,5770,763445063,736568975,19.24,15.54,6.95,7.08,0.72,0.52,1.67,1.73
-75481,48,223,48223,319,163,170625670,167092294,395,193,183364995,179816065,35161,15029,2053269416,1986971988,80.76,84.46,93.05,92.92,0.91,1.08,8.31,8.41
-75482,48,223,48223,24385,10317,858467178,808903706,24385,10317,858467178,808903706,35161,15029,2053269416,1986971988,100,100,100,100,69.35,68.65,41.81,40.71
-75486,48,277,48277,2346,967,277616661,270514797,2346,967,277616661,270514797,49793,22481,2416725397,2349611989,100,100,100,100,4.71,4.3,11.49,11.51
-75487,48,159,48159,631,295,172380421,169875722,1541,732,266920164,263403509,10605,5770,763445063,736568975,40.95,40.3,64.58,64.49,5.95,5.11,22.58,23.06
-75487,48,449,48449,910,437,94539743,93527787,1541,732,266920164,263403509,32334,12054,1102411397,1051675541,59.05,59.7,35.42,35.51,2.81,3.63,8.58,8.89
-75488,48,147,48147,1161,553,307129784,303057768,1161,553,307129784,303057768,33915,14191,2328097998,2307256396,100,100,100,100,3.42,3.9,13.19,13.13
-75489,48,181,48181,993,400,3138151,3138151,993,400,3138151,3138151,120877,53727,2536056197,2415950507,100,100,100,100,0.82,0.74,0.12,0.13
-75490,48,147,48147,2178,903,75074953,74940153,2211,913,76182225,75982780,33915,14191,2328097998,2307256396,98.51,98.9,98.55,98.63,6.42,6.36,3.22,3.25
-75490,48,181,48181,33,10,1107272,1042627,2211,913,76182225,75982780,120877,53727,2536056197,2415950507,1.49,1.1,1.45,1.37,0.03,0.02,0.04,0.04
-75491,48,085,48085,14,4,12198,12198,4801,2073,248673973,247955597,782341,300960,2294997419,2178761906,0.29,0.19,0,0,0,0,0,0
-75491,48,147,48147,775,341,91706002,91532343,4801,2073,248673973,247955597,33915,14191,2328097998,2307256396,16.14,16.45,36.88,36.91,2.29,2.4,3.94,3.97
-75491,48,181,48181,4012,1728,156955773,156411056,4801,2073,248673973,247955597,120877,53727,2536056197,2415950507,83.57,83.36,63.12,63.08,3.32,3.22,6.19,6.47
-75492,48,147,48147,516,275,110959204,110828841,516,275,110959204,110828841,33915,14191,2328097998,2307256396,100,100,100,100,1.52,1.94,4.77,4.8
-75493,48,449,48449,611,192,15680535,13979405,611,192,15680535,13979405,32334,12054,1102411397,1051675541,100,100,100,100,1.89,1.59,1.42,1.33
-75494,48,159,48159,1646,939,98493727,96656332,10862,5256,600212726,588388963,10605,5770,763445063,736568975,15.15,17.87,16.41,16.43,15.52,16.27,12.9,13.12
-75494,48,223,48223,920,375,64182817,63658721,10862,5256,600212726,588388963,35161,15029,2053269416,1986971988,8.47,7.13,10.69,10.82,2.62,2.5,3.13,3.2
-75494,48,459,48459,120,68,17887775,17705858,10862,5256,600212726,588388963,39309,16613,1534823873,1509825676,1.1,1.29,2.98,3.01,0.31,0.41,1.17,1.17
-75494,48,499,48499,8176,3874,419648407,410368052,10862,5256,600212726,588388963,41964,20861,1801903072,1671149162,75.27,73.71,69.92,69.74,19.48,18.57,23.29,24.56
-75495,48,085,48085,291,111,8193113,8142394,7095,2789,175112958,174353356,782341,300960,2294997419,2178761906,4.1,3.98,4.68,4.67,0.04,0.04,0.36,0.37
-75495,48,181,48181,6804,2678,166919845,166210962,7095,2789,175112958,174353356,120877,53727,2536056197,2415950507,95.9,96.02,95.32,95.33,5.63,4.98,6.58,6.88
-75496,48,147,48147,510,212,117255312,117254053,3351,1510,320879850,320249972,33915,14191,2328097998,2307256396,15.22,14.04,36.54,36.61,1.5,1.49,5.04,5.08
-75496,48,231,48231,2841,1298,203624538,202995919,3351,1510,320879850,320249972,86129,36704,2284429176,2176414426,84.78,85.96,63.46,63.39,3.3,3.54,8.91,9.33
-75497,48,223,48223,374,174,39071725,38169137,3350,1882,215149618,167473119,35161,15029,2053269416,1986971988,11.16,9.25,18.16,22.79,1.06,1.16,1.9,1.92
-75497,48,499,48499,2976,1708,176077893,129303982,3350,1882,215149618,167473119,41964,20861,1801903072,1671149162,88.84,90.75,81.84,77.21,7.09,8.19,9.77,7.74
-75501,48,037,48037,36298,14933,265584141,246569347,36298,14933,265584141,246569347,92565,38493,2390473774,2292153748,100,100,100,100,39.21,38.79,11.11,10.76
-75503,48,037,48037,24379,10491,210880031,204585003,24379,10491,210880031,204585003,92565,38493,2390473774,2292153748,100,100,100,100,26.34,27.25,8.82,8.93
-75550,48,387,48387,808,481,227511828,213402222,808,481,227511828,213402222,12860,6826,2736932304,2684724244,100,100,100,100,6.28,7.05,8.31,7.95
-75551,48,067,48067,11007,5016,445447226,427468850,11007,5016,445447226,427468850,30464,14379,2487223290,2426723555,100,100,100,100,36.13,34.88,17.91,17.62
-75554,48,037,48037,259,125,77209160,76607557,1806,941,428543905,424615120,92565,38493,2390473774,2292153748,14.34,13.28,18.02,18.04,0.28,0.32,3.23,3.34
-75554,48,387,48387,1547,816,351334745,348007563,1806,941,428543905,424615120,12860,6826,2736932304,2684724244,85.66,86.72,81.98,81.96,12.03,11.95,12.84,12.96
-75555,48,067,48067,1421,669,262812430,262527149,1611,769,290240596,289741939,30464,14379,2487223290,2426723555,88.21,87,90.55,90.61,4.66,4.65,10.57,10.82
-75555,48,315,48315,190,100,27428166,27214790,1611,769,290240596,289741939,10546,6218,1088630360,986475529,11.79,13,9.45,9.39,1.8,1.61,2.52,2.76
-75556,05,091,05091,26,9,1568352,1568352,1133,488,62331156,62218663,43462,19281,1651503576,1620239736,2.29,1.84,2.52,2.52,0.06,0.05,0.09,0.1
-75556,48,067,48067,1107,479,60762804,60650311,1133,488,62331156,62218663,30464,14379,2487223290,2426723555,97.71,98.16,97.48,97.48,3.63,3.33,2.44,2.5
-75558,48,449,48449,1636,671,132002372,130173989,1636,671,132002372,130173989,32334,12054,1102411397,1051675541,100,100,100,100,5.06,5.57,11.97,12.38
-75559,48,037,48037,5568,2658,690542218,679826638,5568,2658,690542218,679826638,92565,38493,2390473774,2292153748,100,100,100,100,6.02,6.91,28.89,29.66
-75560,48,067,48067,1088,540,227476096,205926011,1088,540,227476096,205926011,30464,14379,2487223290,2426723555,100,100,100,100,3.57,3.76,9.15,8.49
-75561,48,037,48037,5395,2412,132633388,128789611,5395,2412,132633388,128789611,92565,38493,2390473774,2292153748,100,100,100,100,5.83,6.27,5.55,5.62
-75562,48,067,48067,176,103,42887320,42887320,176,103,42887320,42887320,30464,14379,2487223290,2426723555,100,100,100,100,0.58,0.72,1.72,1.77
-75563,48,067,48067,4282,2136,420603953,418556779,4282,2136,420603953,418556779,30464,14379,2487223290,2426723555,100,100,100,100,14.06,14.85,16.91,17.25
-75565,48,067,48067,361,145,18342297,18089311,361,145,18342297,18089311,30464,14379,2487223290,2426723555,100,100,100,100,1.19,1.01,0.74,0.75
-75566,48,067,48067,782,418,124054379,124054379,782,418,124054379,124054379,30464,14379,2487223290,2426723555,100,100,100,100,2.57,2.91,4.99,5.11
-75567,48,037,48037,4225,1758,219643629,175584552,4225,1758,219643629,175584552,92565,38493,2390473774,2292153748,100,100,100,100,4.56,4.57,9.19,7.66
-75568,48,067,48067,898,473,250192763,247552950,2876,1454,350385436,347323993,30464,14379,2487223290,2426723555,31.22,32.53,71.41,71.27,2.95,3.29,10.06,10.2
-75568,48,343,48343,1978,981,100192673,99771043,2876,1454,350385436,347323993,12934,6024,670031220,652637107,68.78,67.47,28.59,28.73,15.29,16.28,14.95,15.29
-75569,48,037,48037,2874,1245,7809075,7779199,2874,1245,7809075,7779199,92565,38493,2390473774,2292153748,100,100,100,100,3.1,3.23,0.33,0.34
-75570,48,037,48037,11518,3963,353674575,350241397,11518,3963,353674575,350241397,92565,38493,2390473774,2292153748,100,100,100,100,12.44,10.3,14.8,15.28
-75571,48,343,48343,2772,1288,264804185,261469615,2846,1319,271886422,268381509,12934,6024,670031220,652637107,97.4,97.65,97.4,97.42,21.43,21.38,39.52,40.06
-75571,48,449,48449,74,31,7082237,6911894,2846,1319,271886422,268381509,32334,12054,1102411397,1051675541,2.6,2.35,2.6,2.58,0.23,0.26,0.64,0.66
-75572,48,067,48067,3491,1739,199615945,186741194,3491,1739,199615945,186741194,30464,14379,2487223290,2426723555,100,100,100,100,11.46,12.09,8.03,7.7
-75573,48,037,48037,181,82,31450232,25774098,181,82,31450232,25774098,92565,38493,2390473774,2292153748,100,100,100,100,0.2,0.21,1.32,1.12
-75574,48,037,48037,1868,826,278056007,275171949,1868,826,278056007,275171949,92565,38493,2390473774,2292153748,100,100,100,100,2.02,2.15,11.63,12
-75601,48,183,48183,14118,5748,18731472,18724484,15849,6473,24205173,24198185,121730,49514,714223559,707850624,89.08,88.8,77.39,77.38,11.6,11.61,2.62,2.65
-75601,48,203,48203,1731,725,5473701,5473701,15849,6473,24205173,24198185,65631,27704,2371790620,2330861809,10.92,11.2,22.61,22.62,2.64,2.62,0.23,0.23
-75602,48,183,48183,18063,6314,24758351,24758351,23286,8383,131501169,126889389,121730,49514,714223559,707850624,77.57,75.32,18.83,19.51,14.84,12.75,3.47,3.5
-75602,48,203,48203,5223,2069,106742818,102131038,23286,8383,131501169,126889389,65631,27704,2371790620,2330861809,22.43,24.68,81.17,80.49,7.96,7.47,4.5,4.38
-75603,48,183,48183,4075,1948,111389746,106920377,5456,2580,127306784,119697757,121730,49514,714223559,707850624,74.69,75.5,87.5,89.33,3.35,3.93,15.6,15.1
-75603,48,401,48401,1381,632,15917038,12777380,5456,2580,127306784,119697757,53330,21191,2430461860,2393217679,25.31,24.5,12.5,10.67,2.59,2.98,0.65,0.53
-75604,48,183,48183,29741,11885,120070995,119107041,29934,11973,122717134,121730425,121730,49514,714223559,707850624,99.36,99.27,97.84,97.84,24.43,24,16.81,16.83
-75604,48,459,48459,193,88,2646139,2623384,29934,11973,122717134,121730425,39309,16613,1534823873,1509825676,0.64,0.73,2.16,2.16,0.49,0.53,0.17,0.17
-75605,48,183,48183,23733,10890,125649373,125430691,27823,12405,205623011,205093224,121730,49514,714223559,707850624,85.3,87.79,61.11,61.16,19.5,21.99,17.59,17.72
-75605,48,203,48203,4018,1488,75593892,75307243,27823,12405,205623011,205093224,65631,27704,2371790620,2330861809,14.44,12,36.76,36.72,6.12,5.37,3.19,3.23
-75605,48,459,48459,72,27,4379746,4355290,27823,12405,205623011,205093224,39309,16613,1534823873,1509825676,0.26,0.22,2.13,2.12,0.18,0.16,0.29,0.29
-75630,48,067,48067,1069,563,124412766,122952545,2588,1590,261707861,234476594,30464,14379,2487223290,2426723555,41.31,35.41,47.54,52.44,3.51,3.92,5,5.07
-75630,48,315,48315,1519,1027,137295095,111524049,2588,1590,261707861,234476594,10546,6218,1088630360,986475529,58.69,64.59,52.46,47.56,14.4,16.52,12.61,11.31
-75631,48,365,48365,2787,1244,306258740,302956225,2787,1244,306258740,302956225,23796,10920,2127166217,2076521423,100,100,100,100,11.71,11.39,14.4,14.59
-75633,48,365,48365,13977,6296,847677588,825669439,13977,6296,847677588,825669439,23796,10920,2127166217,2076521423,100,100,100,100,58.74,57.66,39.85,39.76
-75638,48,067,48067,49,22,9977413,9894542,6036,2762,236564863,229381403,30464,14379,2487223290,2426723555,0.81,0.8,4.22,4.31,0.16,0.15,0.4,0.41
-75638,48,343,48343,5987,2740,226587450,219486861,6036,2762,236564863,229381403,12934,6024,670031220,652637107,99.19,99.2,95.78,95.69,46.29,45.48,33.82,33.63
-75639,48,365,48365,3460,1560,443227883,441684409,3460,1560,443227883,441684409,23796,10920,2127166217,2076521423,100,100,100,100,14.54,14.29,20.84,21.27
-75640,48,203,48203,1107,493,126542724,126419384,4652,1915,224149818,219206767,65631,27704,2371790620,2330861809,23.8,25.74,56.45,57.67,1.69,1.78,5.34,5.42
-75640,48,315,48315,76,52,16015327,12101219,4652,1915,224149818,219206767,10546,6218,1088630360,986475529,1.63,2.72,7.14,5.52,0.72,0.84,1.47,1.23
-75640,48,459,48459,3469,1370,81591767,80686164,4652,1915,224149818,219206767,39309,16613,1534823873,1509825676,74.57,71.54,36.4,36.81,8.82,8.25,5.32,5.34
-75641,48,183,48183,152,69,1829952,1829952,223,105,8615481,8615481,121730,49514,714223559,707850624,68.16,65.71,21.24,21.24,0.12,0.14,0.26,0.26
-75641,48,401,48401,71,36,6785529,6785529,223,105,8615481,8615481,53330,21191,2430461860,2393217679,31.84,34.29,78.76,78.76,0.13,0.17,0.28,0.28
-75642,48,203,48203,229,100,5817292,5817292,229,100,5817292,5817292,65631,27704,2371790620,2330861809,100,100,100,100,0.35,0.36,0.25,0.25
-75643,48,365,48365,2013,1026,175995858,169625988,2074,1055,182818731,176444900,23796,10920,2127166217,2076521423,97.06,97.25,96.27,96.14,8.46,9.4,8.27,8.17
-75643,48,419,48419,61,29,6822873,6818912,2074,1055,182818731,176444900,25448,11873,2161647837,2060551461,2.94,2.75,3.73,3.86,0.24,0.24,0.32,0.33
-75644,48,459,48459,11444,5020,489908545,485476524,11444,5020,489908545,485476524,39309,16613,1534823873,1509825676,100,100,100,100,29.11,30.22,31.92,32.15
-75645,48,183,48183,76,32,3568478,3568478,9778,4092,380421601,375676658,121730,49514,714223559,707850624,0.78,0.78,0.94,0.95,0.06,0.06,0.5,0.5
-75645,48,459,48459,9702,4060,376853123,372108180,9778,4092,380421601,375676658,39309,16613,1534823873,1509825676,99.22,99.22,99.06,99.05,24.68,24.44,24.55,24.65
-75647,48,183,48183,7209,3119,96015306,95756312,13196,5498,199652141,196735858,121730,49514,714223559,707850624,54.63,56.73,48.09,48.67,5.92,6.3,13.44,13.53
-75647,48,423,48423,1232,469,43810533,43549937,13196,5498,199652141,196735858,209714,87309,2459767527,2386555662,9.34,8.53,21.94,22.14,0.59,0.54,1.78,1.82
-75647,48,459,48459,4755,1910,59826302,57429609,13196,5498,199652141,196735858,39309,16613,1534823873,1509825676,36.03,34.74,29.97,29.19,12.1,11.5,3.9,3.8
-75650,48,203,48203,8611,3335,328575874,321619158,8611,3335,328575874,321619158,65631,27704,2371790620,2330861809,100,100,100,100,13.12,12.04,13.85,13.8
-75651,48,203,48203,2129,899,142504994,141938653,2189,924,152559365,151993024,65631,27704,2371790620,2330861809,97.26,97.29,93.41,93.38,3.24,3.25,6.01,6.09
-75651,48,315,48315,60,25,10054371,10054371,2189,924,152559365,151993024,10546,6218,1088630360,986475529,2.74,2.71,6.59,6.62,0.57,0.4,0.92,1.02
-75652,48,401,48401,16638,5584,466285724,455086060,16638,5584,466285724,455086060,53330,21191,2430461860,2393217679,100,100,100,100,31.2,26.35,19.19,19.02
-75654,48,073,48073,15,11,341970,341970,12417,5217,528845596,526086320,50845,20859,2751062966,2727030862,0.12,0.21,0.06,0.07,0.03,0.05,0.01,0.01
-75654,48,401,48401,12402,5206,528503626,525744350,12417,5217,528845596,526086320,53330,21191,2430461860,2393217679,99.88,99.79,99.94,99.93,23.26,24.57,21.74,21.97
-75656,48,067,48067,4388,1898,256010103,254935973,4804,2066,278689735,277469692,30464,14379,2487223290,2426723555,91.34,91.87,91.86,91.88,14.4,13.2,10.29,10.51
-75656,48,343,48343,416,168,22679632,22533719,4804,2066,278689735,277469692,12934,6024,670031220,652637107,8.66,8.13,8.14,8.12,3.22,2.79,3.38,3.45
-75657,48,067,48067,345,178,44627795,44486241,8246,4705,926416193,868216976,30464,14379,2487223290,2426723555,4.18,3.78,4.82,5.12,1.13,1.24,1.79,1.83
-75657,48,203,48203,291,142,33099818,33010703,8246,4705,926416193,868216976,65631,27704,2371790620,2330861809,3.53,3.02,3.57,3.8,0.44,0.51,1.4,1.42
-75657,48,315,48315,7610,4385,848688580,790720032,8246,4705,926416193,868216976,10546,6218,1088630360,986475529,92.29,93.2,91.61,91.07,72.16,70.52,77.96,80.16
-75661,48,203,48203,2807,1835,354228118,329864950,2807,1835,354228118,329864950,65631,27704,2371790620,2330861809,100,100,100,100,4.28,6.62,14.94,14.15
-75662,48,183,48183,17694,6976,183651465,183320724,24536,9717,330962266,330418631,121730,49514,714223559,707850624,72.11,71.79,55.49,55.48,14.54,14.09,25.71,25.9
-75662,48,401,48401,6402,2563,123563879,123445625,24536,9717,330962266,330418631,53330,21191,2430461860,2393217679,26.09,26.38,37.33,37.36,12,12.09,5.08,5.16
-75662,48,423,48423,440,178,23746922,23652282,24536,9717,330962266,330418631,209714,87309,2459767527,2386555662,1.79,1.83,7.18,7.16,0.21,0.2,0.97,0.99
-75667,48,401,48401,1021,532,219487179,218788490,1021,532,219487179,218788490,53330,21191,2430461860,2393217679,100,100,100,100,1.91,2.51,9.03,9.14
-75668,48,315,48315,278,180,18439240,14492243,1993,991,69317557,59017363,10546,6218,1088630360,986475529,13.95,18.16,26.6,24.56,2.64,2.89,1.69,1.47
-75668,48,343,48343,1715,811,50878317,44525120,1993,991,69317557,59017363,12934,6024,670031220,652637107,86.05,81.84,73.4,75.44,13.26,13.46,7.59,6.82
-75669,48,365,48365,479,297,124000928,120124494,606,371,167214987,163332806,23796,10920,2127166217,2076521423,79.04,80.05,74.16,73.55,2.01,2.72,5.83,5.78
-75669,48,401,48401,127,74,43214059,43208312,606,371,167214987,163332806,53330,21191,2430461860,2393217679,20.96,19.95,25.84,26.45,0.24,0.35,1.78,1.81
-75670,48,203,48203,17290,6923,319650665,318488304,17290,6923,319650665,318488304,65631,27704,2371790620,2330861809,100,100,100,100,26.34,24.99,13.48,13.66
-75672,48,203,48203,17097,7557,616536429,614662902,17097,7557,616536429,614662902,65631,27704,2371790620,2330861809,100,100,100,100,26.05,27.28,25.99,26.37
-75681,48,401,48401,2562,1277,333069037,332577251,2562,1277,333069037,332577251,53330,21191,2430461860,2393217679,100,100,100,100,4.8,6.03,13.7,13.9
-75682,48,401,48401,473,197,7965607,7965607,473,197,7965607,7965607,53330,21191,2430461860,2393217679,100,100,100,100,0.89,0.93,0.33,0.33
-75683,48,315,48315,813,449,30709581,20368825,3914,1792,163653027,145957495,10546,6218,1088630360,986475529,20.77,25.06,18.77,13.96,7.71,7.22,2.82,2.06
-75683,48,459,48459,3101,1343,132943446,125588670,3914,1792,163653027,145957495,39309,16613,1534823873,1509825676,79.23,74.94,81.23,86.04,7.89,8.08,8.66,8.32
-75684,48,401,48401,6734,2597,203915323,203602335,7548,2928,262458260,261608170,53330,21191,2430461860,2393217679,89.22,88.7,77.69,77.83,12.63,12.26,8.39,8.51
-75684,48,423,48423,814,331,58542937,58005835,7548,2928,262458260,261608170,209714,87309,2459767527,2386555662,10.78,11.3,22.31,22.17,0.39,0.38,2.38,2.43
-75686,48,063,48063,11245,5056,440435753,425613967,12985,5900,633100658,600629187,12401,5656,526371739,507188128,86.6,85.69,69.57,70.86,90.68,89.39,83.67,83.92
-75686,48,343,48343,66,36,4888963,4850749,12985,5900,633100658,600629187,12934,6024,670031220,652637107,0.51,0.61,0.77,0.81,0.51,0.6,0.73,0.74
-75686,48,449,48449,880,456,81613636,64923312,12985,5900,633100658,600629187,32334,12054,1102411397,1051675541,6.78,7.73,12.89,10.81,2.72,3.78,7.4,6.17
-75686,48,459,48459,794,352,106162306,105241159,12985,5900,633100658,600629187,39309,16613,1534823873,1509825676,6.11,5.97,16.77,17.52,2.02,2.12,6.92,6.97
-75691,48,365,48365,285,129,60366621,59484605,4219,1755,259521441,240866550,23796,10920,2127166217,2076521423,6.76,7.35,23.26,24.7,1.2,1.18,2.84,2.86
-75691,48,401,48401,3934,1626,199154820,181381945,4219,1755,259521441,240866550,53330,21191,2430461860,2393217679,93.24,92.65,76.74,75.3,7.38,7.67,8.19,7.58
-75692,48,203,48203,5098,2138,233395778,232499964,5098,2138,233395778,232499964,65631,27704,2371790620,2330861809,100,100,100,100,7.77,7.72,9.84,9.97
-75693,48,183,48183,6869,2533,28558421,28434214,6869,2533,28558421,28434214,121730,49514,714223559,707850624,100,100,100,100,5.64,5.12,4,4.02
-75701,48,423,48423,34373,14582,40774980,40707790,34373,14582,40774980,40707790,209714,87309,2459767527,2386555662,100,100,100,100,16.39,16.7,1.66,1.71
-75702,48,423,48423,27069,9448,35522595,35336430,27069,9448,35522595,35336430,209714,87309,2459767527,2386555662,100,100,100,100,12.91,10.82,1.44,1.48
-75703,48,423,48423,37166,17763,141796415,140461344,37166,17763,141796415,140461344,209714,87309,2459767527,2386555662,100,100,100,100,17.72,20.34,5.76,5.89
-75704,48,423,48423,8684,3499,175462248,173729709,8684,3499,175462248,173729709,209714,87309,2459767527,2386555662,100,100,100,100,4.14,4.01,7.13,7.28
-75705,48,423,48423,2168,861,72361484,71718340,2168,861,72361484,71718340,209714,87309,2459767527,2386555662,100,100,100,100,1.03,0.99,2.94,3.01
-75706,48,423,48423,8771,3199,197160672,194269005,8771,3199,197160672,194269005,209714,87309,2459767527,2386555662,100,100,100,100,4.18,3.66,8.02,8.14
-75707,48,423,48423,13711,5795,143970573,133865761,13711,5795,143970573,133865761,209714,87309,2459767527,2386555662,100,100,100,100,6.54,6.64,5.85,5.61
-75708,48,423,48423,7156,2640,143128658,141849528,7156,2640,143128658,141849528,209714,87309,2459767527,2386555662,100,100,100,100,3.41,3.02,5.82,5.94
-75709,48,423,48423,5062,2557,55443244,53673053,5062,2557,55443244,53673053,209714,87309,2459767527,2386555662,100,100,100,100,2.41,2.93,2.25,2.25
-75750,48,423,48423,3937,1635,125374454,121266162,3937,1635,125374454,121266162,209714,87309,2459767527,2386555662,100,100,100,100,1.88,1.87,5.1,5.08
-75751,48,001,48001,264,153,96171027,93004628,17253,7209,427315376,417075196,58458,20116,2792010377,2752126295,1.53,2.12,22.51,22.3,0.45,0.76,3.44,3.38
-75751,48,213,48213,16989,7056,331144349,324070568,17253,7209,427315376,417075196,78532,39595,2456167228,2262997188,98.47,97.88,77.49,77.7,21.63,17.82,13.48,14.32
-75752,48,213,48213,6672,3170,358926269,348779856,6986,3338,393929985,383276144,78532,39595,2456167228,2262997188,95.51,94.97,91.11,91,8.5,8.01,14.61,15.41
-75752,48,467,48467,314,168,35003716,34496288,6986,3338,393929985,383276144,52579,22817,2226378452,2182211358,4.49,5.03,8.89,9,0.6,0.74,1.57,1.58
-75754,48,467,48467,5783,2470,326896681,321683055,5783,2470,326896681,321683055,52579,22817,2226378452,2182211358,100,100,100,100,11,10.83,14.68,14.74
-75755,48,459,48459,5639,2365,261876934,257869154,5719,2405,274432352,270372390,39309,16613,1534823873,1509825676,98.6,98.34,95.42,95.38,14.35,14.24,17.06,17.08
-75755,48,499,48499,80,40,12555418,12503236,5719,2405,274432352,270372390,41964,20861,1801903072,1671149162,1.4,1.66,4.58,4.62,0.19,0.19,0.7,0.75
-75756,48,213,48213,3889,1633,166804257,166430682,4002,1682,178397493,177553976,78532,39595,2456167228,2262997188,97.18,97.09,93.5,93.74,4.95,4.12,6.79,7.35
-75756,48,467,48467,113,49,11593236,11123294,4002,1682,178397493,177553976,52579,22817,2226378452,2182211358,2.82,2.91,6.5,6.26,0.21,0.21,0.52,0.51
-75757,48,073,48073,4111,1889,164128607,156200996,10022,4438,238634552,226065485,50845,20859,2751062966,2727030862,41.02,42.56,68.78,69.1,8.09,9.06,5.97,5.73
-75757,48,423,48423,5911,2549,74505945,69864489,10022,4438,238634552,226065485,209714,87309,2459767527,2386555662,58.98,57.44,31.22,30.9,2.82,2.92,3.03,2.93
-75758,48,213,48213,8443,4086,148776329,102660872,9072,4365,174259752,127876503,78532,39595,2456167228,2262997188,93.07,93.61,85.38,80.28,10.75,10.32,6.06,4.54
-75758,48,467,48467,629,279,25483423,25215631,9072,4365,174259752,127876503,52579,22817,2226378452,2182211358,6.93,6.39,14.62,19.72,1.2,1.22,1.14,1.16
-75759,48,073,48073,141,79,5818740,5818740,141,79,5818740,5818740,50845,20859,2751062966,2727030862,100,100,100,100,0.28,0.38,0.21,0.21
-75760,48,347,48347,2252,1158,238972912,238705516,2614,1392,337460678,337106643,64524,27406,2541266136,2451520148,86.15,83.19,70.82,70.81,3.49,4.23,9.4,9.74
-75760,48,401,48401,362,234,98487766,98401127,2614,1392,337460678,337106643,53330,21191,2430461860,2393217679,13.85,16.81,29.18,29.19,0.68,1.1,4.05,4.11
-75762,48,423,48423,12466,5229,131992322,112777825,12466,5229,131992322,112777825,209714,87309,2459767527,2386555662,100,100,100,100,5.94,5.99,5.37,4.73
-75763,48,001,48001,3101,1469,194824012,189870672,6005,2916,298134836,279176713,58458,20116,2792010377,2752126295,51.64,50.38,65.35,68.01,5.3,7.3,6.98,6.9
-75763,48,213,48213,2904,1447,103310824,89306041,6005,2916,298134836,279176713,78532,39595,2456167228,2262997188,48.36,49.62,34.65,31.99,3.7,3.65,4.21,3.95
-75764,48,073,48073,233,95,3272996,3272996,233,95,3272996,3272996,50845,20859,2751062966,2727030862,100,100,100,100,0.46,0.46,0.12,0.12
-75765,48,459,48459,20,10,747790,741684,7607,4119,273325869,264531281,39309,16613,1534823873,1509825676,0.26,0.24,0.27,0.28,0.05,0.06,0.05,0.05
-75765,48,499,48499,7587,4109,272578079,263789597,7607,4119,273325869,264531281,41964,20861,1801903072,1671149162,99.74,99.76,99.73,99.72,18.08,19.7,15.13,15.78
-75766,48,073,48073,26388,10762,804093541,790806004,26388,10762,804093541,790806004,50845,20859,2751062966,2727030862,100,100,100,100,51.9,51.59,29.23,29
-75770,48,213,48213,2776,1284,321268316,312774806,2776,1284,321268316,312774806,78532,39595,2456167228,2262997188,100,100,100,100,3.53,3.24,13.08,13.82
-75771,48,423,48423,18361,7564,380260449,372937963,18361,7564,380260449,372937963,209714,87309,2459767527,2386555662,100,100,100,100,8.76,8.66,15.46,15.63
-75773,48,423,48423,952,471,84826111,82810075,12791,5848,475120796,462001029,209714,87309,2459767527,2386555662,7.44,8.05,17.85,17.92,0.45,0.54,3.45,3.47
-75773,48,499,48499,11839,5377,390294685,379190954,12791,5848,475120796,462001029,41964,20861,1801903072,1671149162,92.56,91.95,82.15,82.08,28.21,25.78,21.66,22.69
-75778,48,213,48213,2165,991,129440212,127965406,3254,1730,148617948,145804201,78532,39595,2456167228,2262997188,66.53,57.28,87.1,87.77,2.76,2.5,5.27,5.65
-75778,48,467,48467,1089,739,19177736,17838795,3254,1730,148617948,145804201,52579,22817,2226378452,2182211358,33.47,42.72,12.9,12.23,2.07,3.24,0.86,0.82
-75779,48,001,48001,122,57,2238432,2228456,122,57,2238432,2228456,58458,20116,2792010377,2752126295,100,100,100,100,0.21,0.28,0.08,0.08
-75780,48,073,48073,312,90,3255397,3255397,312,90,3255397,3255397,50845,20859,2751062966,2727030862,100,100,100,100,0.61,0.43,0.12,0.12
-75783,48,499,48499,7219,3714,338156868,315474604,7219,3714,338156868,315474604,41964,20861,1801903072,1671149162,100,100,100,100,17.2,17.8,18.77,18.88
-75784,48,073,48073,342,176,50942200,50942200,658,332,100037526,99967500,50845,20859,2751062966,2727030862,51.98,53.01,50.92,50.96,0.67,0.84,1.85,1.87
-75784,48,401,48401,316,156,49095326,49025300,658,332,100037526,99967500,53330,21191,2430461860,2393217679,48.02,46.99,49.08,49.04,0.59,0.74,2.02,2.05
-75785,48,073,48073,11263,4190,693388309,692794769,11263,4190,693388309,692794769,50845,20859,2751062966,2727030862,100,100,100,100,22.15,20.09,25.2,25.4
-75788,48,347,48347,126,89,8815886,8815886,126,89,8815886,8815886,64524,27406,2541266136,2451520148,100,100,100,100,0.2,0.32,0.35,0.36
-75789,48,073,48073,2818,1198,318590063,318326031,7593,3230,493652111,489306649,50845,20859,2751062966,2727030862,37.11,37.09,64.54,65.06,5.54,5.74,11.58,11.67
-75789,48,401,48401,51,19,2472580,2472379,7593,3230,493652111,489306649,53330,21191,2430461860,2393217679,0.67,0.59,0.5,0.51,0.1,0.09,0.1,0.1
-75789,48,423,48423,4724,2013,172589468,168508239,7593,3230,493652111,489306649,209714,87309,2459767527,2386555662,62.22,62.32,34.96,34.44,2.25,2.31,7.02,7.06
-75790,48,423,48423,74,36,4034527,3578872,4203,1697,96272064,95196621,209714,87309,2459767527,2386555662,1.76,2.12,4.19,3.76,0.04,0.04,0.16,0.15
-75790,48,467,48467,4129,1661,92237537,91617749,4203,1697,96272064,95196621,52579,22817,2226378452,2182211358,98.24,97.88,95.81,96.24,7.85,7.28,4.14,4.2
-75791,48,423,48423,13125,4952,106652286,99816806,13125,4952,106652286,99816806,209714,87309,2459767527,2386555662,100,100,100,100,6.26,5.67,4.34,4.18
-75792,48,423,48423,3518,1538,247810704,244176217,3518,1538,247810704,244176217,209714,87309,2459767527,2386555662,100,100,100,100,1.68,1.76,10.07,10.23
-75801,48,001,48001,16799,7556,562291679,555807428,16799,7556,562291679,555807428,58458,20116,2792010377,2752126295,100,100,100,100,28.74,37.56,20.14,20.2
-75803,48,001,48001,22397,6930,872484612,861013281,22397,6930,872484612,861013281,58458,20116,2792010377,2752126295,100,100,100,100,38.31,34.45,31.25,31.29
-75831,48,161,48161,888,444,192368598,191574916,5386,2706,664317945,660836163,19816,9265,2310248910,2273333089,16.49,16.41,28.96,28.99,4.48,4.79,8.33,8.43
-75831,48,289,48289,4498,2262,471949347,469261247,5386,2706,664317945,660836163,16801,9509,2798790335,2779447286,83.51,83.59,71.04,71.01,26.77,23.79,16.86,16.88
-75832,48,001,48001,66,31,44348209,43135114,66,31,44348209,43135114,58458,20116,2792010377,2752126295,100,100,100,100,0.11,0.15,1.59,1.57
-75833,48,289,48289,3324,2070,636177799,635015862,3324,2070,636177799,635015862,16801,9509,2798790335,2779447286,100,100,100,100,19.78,21.77,22.73,22.85
-75835,48,225,48225,12012,6007,1169833204,1165487021,12012,6007,1169833204,1165487021,23732,11532,3202714082,3188040155,100,100,100,100,50.62,52.09,36.53,36.56
-75838,48,161,48161,470,239,144471868,144344358,666,364,181835678,181152773,19816,9265,2310248910,2273333089,70.57,65.66,79.45,79.68,2.37,2.58,6.25,6.35
-75838,48,293,48293,196,125,37363810,36808415,666,364,181835678,181152773,23384,10536,2416883301,2344684360,29.43,34.34,20.55,20.32,0.84,1.19,1.55,1.57
-75839,48,001,48001,5034,2244,373539359,369610838,5069,2272,385792112,381863557,58458,20116,2792010377,2752126295,99.31,98.77,96.82,96.79,8.61,11.16,13.38,13.43
-75839,48,225,48225,35,28,12252753,12252719,5069,2272,385792112,381863557,23732,11532,3202714082,3188040155,0.69,1.23,3.18,3.21,0.15,0.24,0.38,0.38
-75840,48,161,48161,7076,3160,719369354,707875153,7076,3160,719369354,707875153,19816,9265,2310248910,2273333089,100,100,100,100,35.71,34.11,31.14,31.14
-75844,48,001,48001,695,354,148837436,147610563,5718,3463,939643426,931352433,58458,20116,2792010377,2752126295,12.15,10.22,15.84,15.85,1.19,1.76,5.33,5.36
-75844,48,225,48225,5023,3109,790805990,783741870,5718,3463,939643426,931352433,23732,11532,3202714082,3188040155,87.85,89.78,84.16,84.15,21.17,26.96,24.69,24.58
-75845,48,455,48455,3259,1736,821195102,820386536,3259,1736,821195102,820386536,14585,8713,1849168716,1796435449,100,100,100,100,22.34,19.92,44.41,45.67
-75846,48,289,48289,2281,1192,348625251,339555406,2718,1559,393661967,377433456,16801,9509,2798790335,2779447286,83.92,76.46,88.56,89.96,13.58,12.54,12.46,12.22
-75846,48,293,48293,437,367,45036716,37878050,2718,1559,393661967,377433456,23384,10536,2416883301,2344684360,16.08,23.54,11.44,10.04,1.87,3.48,1.86,1.62
-75847,48,225,48225,1596,934,585850171,585295072,1859,1071,628196482,627616755,23732,11532,3202714082,3188040155,85.85,87.21,93.26,93.26,6.73,8.1,18.29,18.36
-75847,48,455,48455,263,137,42346311,42321683,1859,1071,628196482,627616755,14585,8713,1849168716,1796435449,14.15,12.79,6.74,6.74,1.8,1.57,2.29,2.36
-75848,48,161,48161,92,48,513052,513052,92,48,513052,513052,19816,9265,2310248910,2273333089,100,100,100,100,0.46,0.52,0.02,0.02
-75849,48,225,48225,75,37,4936108,4936108,75,37,4936108,4936108,23732,11532,3202714082,3188040155,100,100,100,100,0.32,0.32,0.15,0.15
-75850,48,289,48289,671,419,185214064,184844413,671,419,185214064,184844413,16801,9509,2798790335,2779447286,100,100,100,100,3.99,4.41,6.62,6.65
-75851,48,225,48225,4867,1319,594228302,591519811,5050,1432,674528341,671818059,23732,11532,3202714082,3188040155,96.38,92.11,88.1,88.05,20.51,11.44,18.55,18.55
-75851,48,455,48455,183,113,80300039,80298248,5050,1432,674528341,671818059,14585,8713,1849168716,1796435449,3.62,7.89,11.9,11.95,1.25,1.3,4.34,4.47
-75852,48,313,48313,3635,696,303987273,297860336,3762,768,455859738,446089377,13664,5096,1223596624,1207102873,96.62,90.63,66.68,66.77,26.6,13.66,24.84,24.68
-75852,48,471,48471,127,72,151872465,148229041,3762,768,455859738,446089377,67861,24058,2075885612,2030987606,3.38,9.38,33.32,33.23,0.19,0.3,7.32,7.3
-75853,48,001,48001,963,487,195458602,193209705,963,487,195458602,193209705,58458,20116,2792010377,2752126295,100,100,100,100,1.65,2.42,7,7.02
-75855,48,161,48161,1080,722,306201521,303119321,2369,1538,710292551,704585609,19816,9265,2310248910,2273333089,45.59,46.94,43.11,43.02,5.45,7.79,13.25,13.33
-75855,48,289,48289,1289,816,404091030,401466288,2369,1538,710292551,704585609,16801,9509,2798790335,2779447286,54.41,53.06,56.89,56.98,7.67,8.58,14.44,14.44
-75856,48,225,48225,81,71,43617149,43617149,196,139,66055072,66055072,23732,11532,3202714082,3188040155,41.33,51.08,66.03,66.03,0.34,0.62,1.36,1.37
-75856,48,455,48455,115,68,22437923,22437923,196,139,66055072,66055072,14585,8713,1849168716,1796435449,58.67,48.92,33.97,33.97,0.79,0.78,1.21,1.25
-75858,48,225,48225,43,27,1190405,1190405,43,27,1190405,1190405,23732,11532,3202714082,3188040155,100,100,100,100,0.18,0.23,0.04,0.04
-75859,48,161,48161,1596,1206,269641717,250001512,1923,1457,354267261,305734458,19816,9265,2310248910,2273333089,83,82.77,76.11,81.77,8.05,13.02,11.67,11
-75859,48,349,48349,327,251,84625544,55732946,1923,1457,354267261,305734458,47735,20234,2812561876,2614922711,17,17.23,23.89,18.23,0.69,1.24,3.01,2.13
-75860,48,161,48161,6644,2508,440751188,439372223,6644,2508,440751188,439372223,19816,9265,2310248910,2273333089,100,100,100,100,33.53,27.07,19.08,19.33
-75861,48,001,48001,9017,835,301817009,296635610,9017,835,301817009,296635610,58458,20116,2792010377,2752126295,100,100,100,100,15.42,4.15,10.81,10.78
-75862,48,455,48455,9679,6032,557866984,506642914,10091,6313,693576125,639238984,14585,8713,1849168716,1796435449,95.92,95.55,80.43,79.26,66.36,69.23,30.17,28.2
-75862,48,471,48471,412,281,135709141,132596070,10091,6313,693576125,639238984,67861,24058,2075885612,2030987606,4.08,4.45,19.57,20.74,0.61,1.17,6.54,6.53
-75901,48,005,48005,29036,11430,427648100,418207583,29036,11430,427648100,418207583,86771,35589,2239578800,2066235308,100,100,100,100,33.46,32.12,19.1,20.24
-75904,48,005,48005,33988,13914,352601138,348566397,34004,13921,372315931,368246251,86771,35589,2239578800,2066235308,99.95,99.95,94.7,94.66,39.17,39.1,15.74,16.87
-75904,48,455,48455,16,7,19714793,19679854,34004,13921,372315931,368246251,14585,8713,1849168716,1796435449,0.05,0.05,5.3,5.34,0.11,0.08,1.07,1.1
-75925,48,073,48073,4179,1908,614580242,612743654,4179,1908,614580242,612743654,50845,20859,2751062966,2727030862,100,100,100,100,8.22,9.15,22.34,22.47
-75926,48,455,48455,1070,620,305307564,304668291,1070,620,305307564,304668291,14585,8713,1849168716,1796435449,100,100,100,100,7.34,7.12,16.51,16.96
-75928,48,351,48351,1411,679,235700835,233969231,1411,679,235700835,233969231,14445,7142,2433884522,2418212417,100,100,100,100,9.77,9.51,9.68,9.68
-75929,48,405,48405,1599,1471,459788117,343422565,1599,1471,459788117,343422565,8865,5342,1534042707,1374395555,100,100,100,100,18.04,27.54,29.97,24.99
-75930,48,403,48403,1222,634,172956753,172956753,2023,1241,387576985,349067325,10834,7988,1493516031,1272694571,60.41,51.09,44.63,49.55,11.28,7.94,11.58,13.59
-75930,48,405,48405,801,607,214620232,176110572,2023,1241,387576985,349067325,8865,5342,1534042707,1374395555,39.59,48.91,55.37,50.45,9.04,11.36,13.99,12.81
-75931,48,241,48241,2233,1611,150837618,117085155,2631,1962,197792573,145092323,35710,16798,2511505284,2431597700,84.87,82.11,76.26,80.7,6.25,9.59,6.01,4.82
-75931,48,403,48403,398,351,46954955,28007168,2631,1962,197792573,145092323,10834,7988,1493516031,1272694571,15.13,17.89,23.74,19.3,3.67,4.39,3.14,2.2
-75932,48,351,48351,1437,1234,334365293,324780341,1437,1234,334365293,324780341,14445,7142,2433884522,2418212417,100,100,100,100,9.95,17.28,13.74,13.43
-75933,48,241,48241,467,192,18471868,18397674,1599,784,193278178,192592794,35710,16798,2511505284,2431597700,29.21,24.49,9.56,9.55,1.31,1.14,0.74,0.76
-75933,48,351,48351,1132,592,174806310,174195120,1599,784,193278178,192592794,14445,7142,2433884522,2418212417,70.79,75.51,90.44,90.45,7.84,8.29,7.18,7.2
-75934,48,373,48373,99,100,19415471,19139315,99,100,19415471,19139315,45413,22683,2874005555,2737858277,100,100,100,100,0.22,0.44,0.68,0.7
-75935,48,405,48405,167,107,84375185,84223932,13685,5914,925632121,917623359,8865,5342,1534042707,1374395555,1.22,1.81,9.12,9.18,1.88,2,5.5,6.13
-75935,48,419,48419,13518,5807,841256936,833399427,13685,5914,925632121,917623359,25448,11873,2161647837,2060551461,98.78,98.19,90.88,90.82,53.12,48.91,38.92,40.45
-75936,48,373,48373,127,108,50087679,50087679,889,515,325242518,325242518,45413,22683,2874005555,2737858277,14.29,20.97,15.4,15.4,0.28,0.48,1.74,1.83
-75936,48,457,48457,762,407,275154839,275154839,889,515,325242518,325242518,21766,10579,2423252162,2394445956,85.71,79.03,84.6,84.6,3.5,3.85,11.35,11.49
-75937,48,347,48347,994,482,177490455,174073246,994,482,177490455,174073246,64524,27406,2541266136,2451520148,100,100,100,100,1.54,1.76,6.98,7.1
-75938,48,457,48457,2608,1607,495335745,481694771,2608,1607,495335745,481694771,21766,10579,2423252162,2394445956,100,100,100,100,11.98,15.19,20.44,20.12
-75939,48,373,48373,3992,1838,626123359,625456789,3992,1838,626123359,625456789,45413,22683,2874005555,2737858277,100,100,100,100,8.79,8.1,21.79,22.84
-75941,48,005,48005,9105,2990,223302695,219675569,9105,2990,223302695,219675569,86771,35589,2239578800,2066235308,100,100,100,100,10.49,8.4,9.97,10.63
-75942,48,457,48457,115,60,1092993,1069171,115,60,1092993,1069171,21766,10579,2423252162,2394445956,100,100,100,100,0.53,0.57,0.05,0.04
-75943,48,347,48347,1262,580,169109951,166177295,1262,580,169109951,166177295,64524,27406,2541266136,2451520148,100,100,100,100,1.96,2.12,6.65,6.78
-75944,48,347,48347,1301,783,157179565,103102899,1301,783,157179565,103102899,64524,27406,2541266136,2451520148,100,100,100,100,2.02,2.86,6.19,4.21
-75946,48,347,48347,2818,1303,252437990,248840186,3578,1709,363816883,359715746,64524,27406,2541266136,2451520148,78.76,76.24,69.39,69.18,4.37,4.75,9.93,10.15
-75946,48,401,48401,760,406,111378893,110875560,3578,1709,363816883,359715746,53330,21191,2430461860,2393217679,21.24,23.76,30.61,30.82,1.43,1.92,4.58,4.63
-75948,48,351,48351,22,14,11966720,11966720,6281,5241,812583165,634309908,14445,7142,2433884522,2418212417,0.35,0.27,1.47,1.89,0.15,0.2,0.49,0.49
-75948,48,403,48403,6259,5227,800616445,622343188,6281,5241,812583165,634309908,10834,7988,1493516031,1272694571,99.65,99.73,98.53,98.11,57.77,65.44,53.61,48.9
-75949,48,005,48005,7976,3599,567118376,511805215,7976,3599,567118376,511805215,86771,35589,2239578800,2066235308,100,100,100,100,9.19,10.11,25.32,24.77
-75951,48,241,48241,16131,7533,1054266958,1016228221,16134,7536,1056099733,1018060996,35710,16798,2511505284,2431597700,99.98,99.96,99.83,99.82,45.17,44.84,41.98,41.79
-75951,48,351,48351,3,3,1832775,1832775,16134,7536,1056099733,1018060996,14445,7142,2433884522,2418212417,0.02,0.04,0.17,0.18,0.02,0.04,0.08,0.08
-75954,48,365,48365,194,82,41120991,33355188,3280,1574,310127181,270658212,23796,10920,2127166217,2076521423,5.91,5.21,13.26,12.32,0.82,0.75,1.93,1.61
-75954,48,419,48419,3086,1492,269006190,237303024,3280,1574,310127181,270658212,25448,11873,2161647837,2060551461,94.09,94.79,86.74,87.68,12.13,12.57,12.44,11.52
-75956,48,241,48241,7005,3174,587735018,584488718,7623,3463,632623884,629377584,35710,16798,2511505284,2431597700,91.89,91.65,92.9,92.87,19.62,18.9,23.4,24.04
-75956,48,351,48351,618,289,44888866,44888866,7623,3463,632623884,629377584,14445,7142,2433884522,2418212417,8.11,8.35,7.1,7.13,4.28,4.05,1.84,1.86
-75959,48,403,48403,923,752,140352663,120515406,923,752,140352663,120515406,10834,7988,1493516031,1272694571,100,100,100,100,8.52,9.41,9.4,9.47
-75960,48,373,48373,913,408,111320758,111272339,913,408,111320758,111272339,45413,22683,2874005555,2737858277,100,100,100,100,2.01,1.8,3.87,4.06
-75961,48,347,48347,14910,6970,734960991,717820123,14910,6970,734960991,717820123,64524,27406,2541266136,2451520148,100,100,100,100,23.11,25.43,28.92,29.28
-75962,48,347,48347,3029,0,687981,687981,3029,0,687981,687981,64524,27406,2541266136,2451520148,100,0,100,100,4.69,0,0.03,0.03
-75964,48,347,48347,20097,7840,607648384,600437693,20097,7840,607648384,600437693,64524,27406,2541266136,2451520148,100,100,100,100,31.15,28.61,23.91,24.49
-75965,48,347,48347,17591,8152,192540306,191437608,17591,8152,192540306,191437608,64524,27406,2541266136,2451520148,100,100,100,100,27.26,29.75,7.58,7.81
-75966,48,351,48351,5371,2325,703642211,701508679,5371,2325,703642211,701508679,14445,7142,2433884522,2418212417,100,100,100,100,37.18,32.55,28.91,29.01
-75968,48,403,48403,1765,845,193851743,190088832,1766,847,193886407,190123496,10834,7988,1493516031,1272694571,99.94,99.76,99.98,99.98,16.29,10.58,12.98,14.94
-75968,48,405,48405,1,2,34664,34664,1766,847,193886407,190123496,8865,5342,1534042707,1374395555,0.06,0.24,0.02,0.02,0.01,0.04,0,0
-75969,48,005,48005,3900,1540,190926615,188766527,4116,1632,224695877,222461472,86771,35589,2239578800,2066235308,94.75,94.36,84.97,84.85,4.49,4.33,8.53,9.14
-75969,48,073,48073,216,92,33769262,33694945,4116,1632,224695877,222461472,50845,20859,2751062966,2727030862,5.25,5.64,15.03,15.15,0.42,0.44,1.23,1.24
-75972,48,403,48403,267,179,138783472,138783224,6620,3379,939435120,934814185,10834,7988,1493516031,1272694571,4.03,5.3,14.77,14.85,2.46,2.24,9.29,10.9
-75972,48,405,48405,6297,3155,775224509,770603822,6620,3379,939435120,934814185,8865,5342,1534042707,1374395555,95.12,93.37,82.52,82.43,71.03,59.06,50.53,56.07
-75972,48,419,48419,56,45,25427139,25427139,6620,3379,939435120,934814185,25448,11873,2161647837,2060551461,0.85,1.33,2.71,2.72,0.22,0.38,1.18,1.23
-75973,48,419,48419,2599,1642,522903343,463982552,2599,1642,522903343,463982552,25448,11873,2161647837,2060551461,100,100,100,100,10.21,13.83,24.19,22.52
-75974,48,365,48365,541,242,98921225,94054825,3126,1331,271997774,266746917,23796,10920,2127166217,2076521423,17.31,18.18,36.37,35.26,2.27,2.22,4.65,4.53
-75974,48,419,48419,2585,1089,173076549,172692092,3126,1331,271997774,266746917,25448,11873,2161647837,2060551461,82.69,81.82,63.63,64.74,10.16,9.17,8.01,8.38
-75975,48,365,48365,60,44,29596383,29566250,3699,1865,373916664,371574994,23796,10920,2127166217,2076521423,1.62,2.36,7.92,7.96,0.25,0.4,1.39,1.42
-75975,48,401,48401,96,52,21165474,21080429,3699,1865,373916664,371574994,53330,21191,2430461860,2393217679,2.6,2.79,5.66,5.67,0.18,0.25,0.87,0.88
-75975,48,419,48419,3543,1769,323154807,320928315,3699,1865,373916664,371574994,25448,11873,2161647837,2060551461,95.78,94.85,86.42,86.37,13.92,14.9,14.95,15.57
-75976,48,073,48073,827,369,58881639,58833160,827,369,58881639,58833160,50845,20859,2751062966,2727030862,100,100,100,100,1.63,1.77,2.14,2.16
-75977,48,351,48351,750,389,474213801,473893091,750,389,474213801,473893091,14445,7142,2433884522,2418212417,100,100,100,100,5.19,5.45,19.48,19.6
-75978,48,347,48347,144,49,1421715,1421715,144,49,1421715,1421715,64524,27406,2541266136,2451520148,100,100,100,100,0.22,0.18,0.06,0.06
-75979,48,457,48457,11423,5242,766030294,754234839,11423,5242,766030294,754234839,21766,10579,2423252162,2394445956,100,100,100,100,52.48,49.55,31.61,31.5
-75980,48,005,48005,2766,2116,477981876,379214017,2836,2182,517593115,418625552,86771,35589,2239578800,2066235308,97.53,96.98,92.35,90.59,3.19,5.95,21.34,18.35
-75980,48,241,48241,70,66,39611239,39411535,2836,2182,517593115,418625552,35710,16798,2511505284,2431597700,2.47,3.02,7.65,9.41,0.2,0.39,1.58,1.62
-76001,48,439,48439,30460,10290,26758937,26749398,30460,10290,26758937,26749398,1809034,714803,2336958950,2236735560,100,100,100,100,1.68,1.44,1.15,1.2
-76002,48,439,48439,30269,9252,18760948,18625959,30269,9252,18760948,18625959,1809034,714803,2336958950,2236735560,100,100,100,100,1.67,1.29,0.8,0.83
-76006,48,439,48439,22639,13132,19710404,19586597,22639,13132,19710404,19586597,1809034,714803,2336958950,2236735560,100,100,100,100,1.25,1.84,0.84,0.88
-76008,48,367,48367,11718,4074,182587334,181527854,13602,4905,193080425,191977557,116927,46628,2357133772,2339997883,86.15,83.06,94.57,94.56,10.02,8.74,7.75,7.76
-76008,48,439,48439,1884,831,10493091,10449703,13602,4905,193080425,191977557,1809034,714803,2336958950,2236735560,13.85,16.94,5.43,5.44,0.1,0.12,0.45,0.47
-76009,48,251,48251,19759,7397,258867860,254342829,19759,7397,258867860,254342829,150934,56719,1902252046,1876943426,100,100,100,100,13.09,13.04,13.61,13.55
-76010,48,439,48439,55706,19819,23145577,23145577,55706,19819,23145577,23145577,1809034,714803,2336958950,2236735560,100,100,100,100,3.08,2.77,0.99,1.03
-76011,48,439,48439,21594,11417,20868274,20752280,21594,11417,20868274,20752280,1809034,714803,2336958950,2236735560,100,100,100,100,1.19,1.6,0.89,0.93
-76012,48,439,48439,25689,11038,21383931,21175685,25689,11038,21383931,21175685,1809034,714803,2336958950,2236735560,100,100,100,100,1.42,1.54,0.92,0.95
-76013,48,439,48439,30680,14378,24519760,23214593,30680,14378,24519760,23214593,1809034,714803,2336958950,2236735560,100,100,100,100,1.7,2.01,1.05,1.04
-76014,48,439,48439,34072,11790,14955914,14933003,34072,11790,14955914,14933003,1809034,714803,2336958950,2236735560,100,100,100,100,1.88,1.65,0.64,0.67
-76015,48,439,48439,16658,7190,11100070,11095687,16658,7190,11100070,11095687,1809034,714803,2336958950,2236735560,100,100,100,100,0.92,1.01,0.47,0.5
-76016,48,439,48439,30852,11926,25521148,22948330,30852,11926,25521148,22948330,1809034,714803,2336958950,2236735560,100,100,100,100,1.71,1.67,1.09,1.03
-76017,48,439,48439,44724,17688,26982401,26920311,44724,17688,26982401,26920311,1809034,714803,2336958950,2236735560,100,100,100,100,2.47,2.47,1.15,1.2
-76018,48,439,48439,26938,8994,19838446,19820006,26938,8994,19838446,19820006,1809034,714803,2336958950,2236735560,100,100,100,100,1.49,1.26,0.85,0.89
-76020,48,367,48367,11113,4517,116128278,116093952,27270,11451,184303520,170951261,116927,46628,2357133772,2339997883,40.75,39.45,63.01,67.91,9.5,9.69,4.93,4.96
-76020,48,439,48439,15479,6660,61855015,49608083,27270,11451,184303520,170951261,1809034,714803,2336958950,2236735560,56.76,58.16,33.56,29.02,0.86,0.93,2.65,2.22
-76020,48,497,48497,678,274,6320227,5249226,27270,11451,184303520,170951261,59127,23781,2389481454,2342442771,2.49,2.39,3.43,3.07,1.15,1.15,0.26,0.22
-76021,48,439,48439,33673,16186,18782406,18755360,33673,16186,18782406,18755360,1809034,714803,2336958950,2236735560,100,100,100,100,1.86,2.26,0.8,0.84
-76022,48,439,48439,13212,6070,6917629,6917629,13212,6070,6917629,6917629,1809034,714803,2336958950,2236735560,100,100,100,100,0.73,0.85,0.3,0.31
-76023,48,367,48367,198,76,3838283,3838283,5832,2421,145626673,145601651,116927,46628,2357133772,2339997883,3.4,3.14,2.64,2.64,0.17,0.16,0.16,0.16
-76023,48,497,48497,5634,2345,141788390,141763368,5832,2421,145626673,145601651,59127,23781,2389481454,2342442771,96.6,96.86,97.36,97.36,9.53,9.86,5.93,6.05
-76028,48,251,48251,42379,15961,154053552,153851115,59744,22307,200147224,199789133,150934,56719,1902252046,1876943426,70.93,71.55,76.97,77.01,28.08,28.14,8.1,8.2
-76028,48,439,48439,17365,6346,46093672,45938018,59744,22307,200147224,199789133,1809034,714803,2336958950,2236735560,29.07,28.45,23.03,22.99,0.96,0.89,1.97,2.05
-76031,48,251,48251,17759,6427,190139815,187711724,17759,6427,190139815,187711724,150934,56719,1902252046,1876943426,100,100,100,100,11.77,11.33,10,10
-76033,48,221,48221,15,9,32286020,31077914,24819,10177,436582432,424765167,51182,24951,1131380653,1089456081,0.06,0.09,7.4,7.32,0.03,0.04,2.85,2.85
-76033,48,251,48251,24804,10168,404296412,393687253,24819,10177,436582432,424765167,150934,56719,1902252046,1876943426,99.94,99.91,92.6,92.68,16.43,17.93,21.25,20.97
-76034,48,439,48439,22748,8148,34086720,33818712,22748,8148,34086720,33818712,1809034,714803,2336958950,2236735560,100,100,100,100,1.26,1.14,1.46,1.51
-76035,48,221,48221,396,178,44076253,43887784,1622,720,174655763,174457559,51182,24951,1131380653,1089456081,24.41,24.72,25.24,25.16,0.77,0.71,3.9,4.03
-76035,48,251,48251,131,70,39392726,39382991,1622,720,174655763,174457559,150934,56719,1902252046,1876943426,8.08,9.72,22.55,22.57,0.09,0.12,2.07,2.1
-76035,48,367,48367,1095,472,91186784,91186784,1622,720,174655763,174457559,116927,46628,2357133772,2339997883,67.51,65.56,52.21,52.27,0.94,1.01,3.87,3.9
-76036,48,251,48251,2672,1021,26465412,26465412,22352,8283,119228985,119049171,150934,56719,1902252046,1876943426,11.95,12.33,22.2,22.23,1.77,1.8,1.39,1.41
-76036,48,439,48439,19680,7262,92763573,92583759,22352,8283,119228985,119049171,1809034,714803,2336958950,2236735560,88.05,87.67,77.8,77.77,1.09,1.02,3.97,4.14
-76039,48,439,48439,32925,15514,16921517,16887348,32925,15514,16921517,16887348,1809034,714803,2336958950,2236735560,100,100,100,100,1.82,2.17,0.72,0.75
-76040,48,439,48439,27524,12627,30553890,29459547,27524,12627,30553890,29459547,1809034,714803,2336958950,2236735560,100,100,100,100,1.52,1.77,1.31,1.32
-76041,48,139,48139,434,167,30893486,30608718,434,167,30893486,30608718,149610,54365,2465015110,2422900216,100,100,100,100,0.29,0.31,1.25,1.26
-76043,48,035,48035,9,7,10891977,10862690,7071,3038,366095521,355714360,18212,9623,2596574413,2545902347,0.13,0.23,2.98,3.05,0.05,0.07,0.42,0.43
-76043,48,425,48425,7062,3031,355203544,344851670,7071,3038,366095521,355714360,8490,3674,497159855,482937084,99.87,99.77,97.02,96.95,83.18,82.5,71.45,71.41
-76044,48,251,48251,3866,1491,263475722,261518713,3866,1491,263475722,261518713,150934,56719,1902252046,1876943426,100,100,100,100,2.56,2.63,13.85,13.93
-76048,48,221,48221,21923,11342,289943509,275021465,21989,11384,296208938,280982506,51182,24951,1131380653,1089456081,99.7,99.63,97.88,97.88,42.83,45.46,25.63,25.24
-76048,48,425,48425,66,42,6265429,5961041,21989,11384,296208938,280982506,8490,3674,497159855,482937084,0.3,0.37,2.12,2.12,0.78,1.14,1.26,1.23
-76049,48,221,48221,24399,11305,274958974,257097793,25130,11619,279584964,261518560,51182,24951,1131380653,1089456081,97.09,97.3,98.35,98.31,47.67,45.31,24.3,23.6
-76049,48,251,48251,245,107,1306523,1101300,25130,11619,279584964,261518560,150934,56719,1902252046,1876943426,0.97,0.92,0.47,0.42,0.16,0.19,0.07,0.06
-76049,48,367,48367,486,207,3319467,3319467,25130,11619,279584964,261518560,116927,46628,2357133772,2339997883,1.93,1.78,1.19,1.27,0.42,0.44,0.14,0.14
-76050,48,139,48139,220,105,46990000,46536109,5875,2300,320662503,316167616,149610,54365,2465015110,2422900216,3.74,4.57,14.65,14.72,0.15,0.19,1.91,1.92
-76050,48,217,48217,317,123,49840758,49304428,5875,2300,320662503,316167616,35089,16118,2553002527,2483445279,5.4,5.35,15.54,15.59,0.9,0.76,1.95,1.99
-76050,48,251,48251,5338,2072,223831745,220327079,5875,2300,320662503,316167616,150934,56719,1902252046,1876943426,90.86,90.09,69.8,69.69,3.54,3.65,11.77,11.74
-76051,48,113,48113,0,0,881392,881392,46320,19674,106860526,95386641,2368139,943257,2353299057,2256602704,0,0,0.82,0.92,0,0,0.04,0.04
-76051,48,439,48439,46320,19674,105979134,94505249,46320,19674,106860526,95386641,1809034,714803,2336958950,2236735560,100,100,99.18,99.08,2.56,2.75,4.53,4.23
-76052,48,121,48121,597,215,36832161,36774365,15995,5318,117648022,117351765,662614,256139,2468199932,2275129231,3.73,4.04,31.31,31.34,0.09,0.08,1.49,1.62
-76052,48,439,48439,14816,4894,59658370,59419909,15995,5318,117648022,117351765,1809034,714803,2336958950,2236735560,92.63,92.03,50.71,50.63,0.82,0.68,2.55,2.66
-76052,48,497,48497,582,209,21157491,21157491,15995,5318,117648022,117351765,59127,23781,2389481454,2342442771,3.64,3.93,17.98,18.03,0.98,0.88,0.89,0.9
-76053,48,439,48439,28421,11951,20977821,20815396,28421,11951,20977821,20815396,1809034,714803,2336958950,2236735560,100,100,100,100,1.57,1.67,0.9,0.93
-76054,48,439,48439,11764,4734,9855826,9846790,11764,4734,9855826,9846790,1809034,714803,2336958950,2236735560,100,100,100,100,0.65,0.66,0.42,0.44
-76055,48,217,48217,3084,1168,232290351,230664781,3084,1168,232290351,230664781,35089,16118,2553002527,2483445279,100,100,100,100,8.79,7.25,9.1,9.29
-76058,48,251,48251,17123,6276,141997847,140903501,17123,6276,141997847,140903501,150934,56719,1902252046,1876943426,100,100,100,100,11.34,11.07,7.46,7.51
-76059,48,251,48251,4881,1757,7144344,7106415,4881,1757,7144344,7106415,150934,56719,1902252046,1876943426,100,100,100,100,3.23,3.1,0.38,0.38
-76060,48,439,48439,6764,2573,19245517,19165416,6764,2573,19245517,19165416,1809034,714803,2336958950,2236735560,100,100,100,100,0.37,0.36,0.82,0.86
-76061,48,251,48251,152,77,3916006,3916006,152,77,3916006,3916006,150934,56719,1902252046,1876943426,100,100,100,100,0.1,0.14,0.21,0.21
-76063,48,251,48251,2922,1005,34290368,34290368,61361,20899,134806786,134276857,150934,56719,1902252046,1876943426,4.76,4.81,25.44,25.54,1.94,1.77,1.8,1.83
-76063,48,439,48439,58439,19894,100516418,99986489,61361,20899,134806786,134276857,1809034,714803,2336958950,2236735560,95.24,95.19,74.56,74.46,3.23,2.78,4.3,4.47
-76064,48,139,48139,1883,634,78423018,77355908,1883,634,78423018,77355908,149610,54365,2465015110,2422900216,100,100,100,100,1.26,1.17,3.18,3.19
-76065,48,139,48139,28986,10192,258210564,254784166,28986,10192,258210564,254784166,149610,54365,2465015110,2422900216,100,100,100,100,19.37,18.75,10.48,10.52
-76066,48,363,48363,152,105,2354161,2194534,3142,1463,226577375,222939181,28111,15214,2552454857,2465126895,4.84,7.18,1.04,0.98,0.54,0.69,0.09,0.09
-76066,48,367,48367,2990,1358,224223214,220744647,3142,1463,226577375,222939181,116927,46628,2357133772,2339997883,95.16,92.82,98.96,99.02,2.56,2.91,9.51,9.43
-76067,48,363,48363,19819,8564,408796345,402752928,22117,8702,457794379,451706204,28111,15214,2552454857,2465126895,89.61,98.41,89.3,89.16,70.5,56.29,16.02,16.34
-76067,48,367,48367,2298,138,48998034,48953276,22117,8702,457794379,451706204,116927,46628,2357133772,2339997883,10.39,1.59,10.7,10.84,1.97,0.3,2.08,2.09
-76070,48,251,48251,24,14,5467800,5432766,752,352,95611836,92846985,150934,56719,1902252046,1876943426,3.19,3.98,5.72,5.85,0.02,0.02,0.29,0.29
-76070,48,425,48425,728,338,90144036,87414219,752,352,95611836,92846985,8490,3674,497159855,482937084,96.81,96.02,94.28,94.15,8.57,9.2,18.13,18.1
-76071,48,439,48439,365,108,851991,851991,3320,1307,20642162,19543814,1809034,714803,2336958950,2236735560,10.99,8.26,4.13,4.36,0.02,0.02,0.04,0.04
-76071,48,497,48497,2955,1199,19790171,18691823,3320,1307,20642162,19543814,59127,23781,2389481454,2342442771,89.01,91.74,95.87,95.64,5,5.04,0.83,0.8
-76073,48,497,48497,5327,2088,218490954,218077574,5327,2088,218490954,218077574,59127,23781,2389481454,2342442771,100,100,100,100,9.01,8.78,9.14,9.31
-76077,48,425,48425,590,239,19665736,18931154,590,239,19665736,18931154,8490,3674,497159855,482937084,100,100,100,100,6.95,6.51,3.96,3.92
-76078,48,121,48121,743,229,1541559,1540514,8572,3200,174560888,174015988,662614,256139,2468199932,2275129231,8.67,7.16,0.88,0.89,0.11,0.09,0.06,0.07
-76078,48,497,48497,7829,2971,173019329,172475474,8572,3200,174560888,174015988,59127,23781,2389481454,2342442771,91.33,92.84,99.12,99.11,13.24,12.49,7.24,7.36
-76082,48,367,48367,15495,6189,196204713,196009231,17748,7072,260659298,260252245,116927,46628,2357133772,2339997883,87.31,87.51,75.27,75.32,13.25,13.27,8.32,8.38
-76082,48,497,48497,2253,883,64454585,64243014,17748,7072,260659298,260252245,59127,23781,2389481454,2342442771,12.69,12.49,24.73,24.68,3.81,3.71,2.7,2.74
-76084,48,139,48139,1405,507,60756700,60148324,8327,2569,132399248,131641090,149610,54365,2465015110,2422900216,16.87,19.74,45.89,45.69,0.94,0.93,2.46,2.48
-76084,48,251,48251,6922,2062,71642548,71492766,8327,2569,132399248,131641090,150934,56719,1902252046,1876943426,83.13,80.26,54.11,54.31,4.59,3.64,3.77,3.81
-76085,48,367,48367,8787,3452,165897436,165364427,8787,3452,165897436,165364427,116927,46628,2357133772,2339997883,100,100,100,100,7.51,7.4,7.04,7.07
-76086,48,367,48367,20196,8654,38062921,38014827,20196,8654,38062921,38014827,116927,46628,2357133772,2339997883,100,100,100,100,17.27,18.56,1.61,1.62
-76087,48,221,48221,329,225,9896855,7562054,24746,10354,492886940,482861972,51182,24951,1131380653,1089456081,1.33,2.17,2.01,1.57,0.64,0.9,0.87,0.69
-76087,48,367,48367,24417,10129,482990085,475299918,24746,10354,492886940,482861972,116927,46628,2357133772,2339997883,98.67,97.83,97.99,98.43,20.88,21.72,20.49,20.31
-76088,48,367,48367,11499,4732,413433831,410845781,11499,4732,413433831,410845781,116927,46628,2357133772,2339997883,100,100,100,100,9.83,10.15,17.54,17.56
-76092,48,121,48121,777,269,13382484,6325248,26669,8529,66329701,58418722,662614,256139,2468199932,2275129231,2.91,3.15,20.18,10.83,0.12,0.11,0.54,0.28
-76092,48,439,48439,25892,8260,52947217,52093474,26669,8529,66329701,58418722,1809034,714803,2336958950,2236735560,97.09,96.85,79.82,89.17,1.43,1.16,2.27,2.33
-76093,48,217,48217,138,50,20718000,20503807,2095,864,96681366,95916995,35089,16118,2553002527,2483445279,6.59,5.79,21.43,21.38,0.39,0.31,0.81,0.83
-76093,48,251,48251,1957,814,75963366,75413188,2095,864,96681366,95916995,150934,56719,1902252046,1876943426,93.41,94.21,78.57,78.62,1.3,1.44,3.99,4.02
-76102,48,439,48439,8111,3792,11680458,11174528,8111,3792,11680458,11174528,1809034,714803,2336958950,2236735560,100,100,100,100,0.45,0.53,0.5,0.5
-76103,48,439,48439,14572,5754,14211442,14124915,14572,5754,14211442,14124915,1809034,714803,2336958950,2236735560,100,100,100,100,0.81,0.8,0.61,0.63
-76104,48,439,48439,17446,7377,15176131,15176131,17446,7377,15176131,15176131,1809034,714803,2336958950,2236735560,100,100,100,100,0.96,1.03,0.65,0.68
-76105,48,439,48439,22194,7431,14428853,14428853,22194,7431,14428853,14428853,1809034,714803,2336958950,2236735560,100,100,100,100,1.23,1.04,0.62,0.65
-76106,48,439,48439,35389,10386,37803082,37680075,35389,10386,37803082,37680075,1809034,714803,2336958950,2236735560,100,100,100,100,1.96,1.45,1.62,1.68
-76107,48,439,48439,25917,14399,28246175,27908878,25917,14399,28246175,27908878,1809034,714803,2336958950,2236735560,100,100,100,100,1.43,2.01,1.21,1.25
-76108,48,367,48367,2845,1028,34003361,34003361,38227,15144,121533364,120923330,116927,46628,2357133772,2339997883,7.44,6.79,27.98,28.12,2.43,2.2,1.44,1.45
-76108,48,439,48439,35382,14116,87530003,86919969,38227,15144,121533364,120923330,1809034,714803,2336958950,2236735560,92.56,93.21,72.02,71.88,1.96,1.97,3.75,3.89
-76109,48,439,48439,21710,11045,21098851,21072148,21710,11045,21098851,21072148,1809034,714803,2336958950,2236735560,100,100,100,100,1.2,1.55,0.9,0.94
-76110,48,439,48439,30434,11027,14974623,14854838,30434,11027,14974623,14854838,1809034,714803,2336958950,2236735560,100,100,100,100,1.68,1.54,0.64,0.66
-76111,48,439,48439,21685,7362,21705432,21379160,21685,7362,21705432,21379160,1809034,714803,2336958950,2236735560,100,100,100,100,1.2,1.03,0.93,0.96
-76112,48,439,48439,38993,18539,30149825,29338361,38993,18539,30149825,29338361,1809034,714803,2336958950,2236735560,100,100,100,100,2.16,2.59,1.29,1.31
-76114,48,439,48439,24741,9789,23779011,23629790,24741,9789,23779011,23629790,1809034,714803,2336958950,2236735560,100,100,100,100,1.37,1.37,1.02,1.06
-76115,48,439,48439,20696,6240,12115493,12072075,20696,6240,12115493,12072075,1809034,714803,2336958950,2236735560,100,100,100,100,1.14,0.87,0.52,0.54
-76116,48,439,48439,46746,23777,31569838,31508794,46746,23777,31569838,31508794,1809034,714803,2336958950,2236735560,100,100,100,100,2.58,3.33,1.35,1.41
-76117,48,439,48439,30645,11943,28213765,27935149,30645,11943,28213765,27935149,1809034,714803,2336958950,2236735560,100,100,100,100,1.69,1.67,1.21,1.25
-76118,48,439,48439,13866,5498,20057891,19607185,13866,5498,20057891,19607185,1809034,714803,2336958950,2236735560,100,100,100,100,0.77,0.77,0.86,0.88
-76119,48,439,48439,42761,15097,45595273,41951817,42761,15097,45595273,41951817,1809034,714803,2336958950,2236735560,100,100,100,100,2.36,2.11,1.95,1.88
-76120,48,439,48439,15283,7369,26423259,25257560,15283,7369,26423259,25257560,1809034,714803,2336958950,2236735560,100,100,100,100,0.84,1.03,1.13,1.13
-76123,48,439,48439,29722,9626,21064858,20983155,29722,9626,21064858,20983155,1809034,714803,2336958950,2236735560,100,100,100,100,1.64,1.35,0.9,0.94
-76126,48,367,48367,761,274,32872400,32872400,19395,8414,179738921,164631008,116927,46628,2357133772,2339997883,3.92,3.26,18.29,19.97,0.65,0.59,1.39,1.4
-76126,48,439,48439,18634,8140,146866521,131758608,19395,8414,179738921,164631008,1809034,714803,2336958950,2236735560,96.08,96.74,81.71,80.03,1.03,1.14,6.28,5.89
-76127,48,439,48439,2003,59,5675842,5634309,2003,59,5675842,5634309,1809034,714803,2336958950,2236735560,100,100,100,100,0.11,0.01,0.24,0.25
-76129,48,439,48439,2833,2,284932,284932,2833,2,284932,284932,1809034,714803,2336958950,2236735560,100,100,100,100,0.16,0,0.01,0.01
-76131,48,439,48439,28374,9413,39308744,39116020,28374,9413,39308744,39116020,1809034,714803,2336958950,2236735560,100,100,100,100,1.57,1.32,1.68,1.75
-76132,48,439,48439,24709,13297,19035747,18973583,24709,13297,19035747,18973583,1809034,714803,2336958950,2236735560,100,100,100,100,1.37,1.86,0.81,0.85
-76133,48,439,48439,48394,19989,23942146,23925438,48394,19989,23942146,23925438,1809034,714803,2336958950,2236735560,100,100,100,100,2.68,2.8,1.02,1.07
-76134,48,439,48439,23704,8700,20639549,20638198,23704,8700,20639549,20638198,1809034,714803,2336958950,2236735560,100,100,100,100,1.31,1.22,0.88,0.92
-76135,48,439,48439,20684,8511,85938239,67254735,20684,8511,85938239,67254735,1809034,714803,2336958950,2236735560,100,100,100,100,1.14,1.19,3.68,3.01
-76137,48,439,48439,54911,20980,35276200,35056042,54911,20980,35276200,35056042,1809034,714803,2336958950,2236735560,100,100,100,100,3.04,2.94,1.51,1.57
-76140,48,439,48439,26340,9125,72531227,72173017,26340,9125,72531227,72173017,1809034,714803,2336958950,2236735560,100,100,100,100,1.46,1.28,3.1,3.23
-76148,48,439,48439,23331,8346,12083902,12081159,23331,8346,12083902,12081159,1809034,714803,2336958950,2236735560,100,100,100,100,1.29,1.17,0.52,0.54
-76155,48,439,48439,3115,2327,8971300,8971300,3115,2327,8971300,8971300,1809034,714803,2336958950,2236735560,100,100,100,100,0.17,0.33,0.38,0.4
-76164,48,439,48439,16748,5162,10236396,10186546,16748,5162,10236396,10186546,1809034,714803,2336958950,2236735560,100,100,100,100,0.93,0.72,0.44,0.46
-76177,48,121,48121,741,362,16492114,16405050,4891,2187,37660336,37415730,662614,256139,2468199932,2275129231,15.15,16.55,43.79,43.85,0.11,0.14,0.67,0.72
-76177,48,439,48439,4150,1825,21168222,21010680,4891,2187,37660336,37415730,1809034,714803,2336958950,2236735560,84.85,83.45,56.21,56.15,0.23,0.26,0.91,0.94
-76179,48,439,48439,48058,17374,156956710,139911947,48058,17374,156956710,139911947,1809034,714803,2336958950,2236735560,100,100,100,100,2.66,2.43,6.72,6.26
-76180,48,439,48439,33444,15098,24489895,24388871,33444,15098,24489895,24388871,1809034,714803,2336958950,2236735560,100,100,100,100,1.85,2.11,1.05,1.09
-76182,48,439,48439,28209,10681,22751139,22749837,28209,10681,22751139,22749837,1809034,714803,2336958950,2236735560,100,100,100,100,1.56,1.49,0.97,1.02
-76201,48,121,48121,27107,11562,14536484,14454499,27107,11562,14536484,14454499,662614,256139,2468199932,2275129231,100,100,100,100,4.09,4.51,0.59,0.64
-76205,48,121,48121,18510,7793,22060622,21911088,18510,7793,22060622,21911088,662614,256139,2468199932,2275129231,100,100,100,100,2.79,3.04,0.89,0.96
-76207,48,121,48121,10579,4717,96027226,95302298,10579,4717,96027226,95302298,662614,256139,2468199932,2275129231,100,100,100,100,1.6,1.84,3.89,4.19
-76208,48,121,48121,19782,7594,87739868,70184954,19782,7594,87739868,70184954,662614,256139,2468199932,2275129231,100,100,100,100,2.99,2.96,3.55,3.08
-76209,48,121,48121,24018,9999,16948105,16948105,24018,9999,16948105,16948105,662614,256139,2468199932,2275129231,100,100,100,100,3.62,3.9,0.69,0.74
-76210,48,121,48121,39556,14079,42804594,41602434,39556,14079,42804594,41602434,662614,256139,2468199932,2275129231,100,100,100,100,5.97,5.5,1.73,1.83
-76225,48,497,48497,3156,1330,258546985,258158136,3156,1330,258546985,258158136,59127,23781,2389481454,2342442771,100,100,100,100,5.34,5.59,10.82,11.02
-76226,48,121,48121,18419,6352,125493824,123484414,18419,6352,125493824,123484414,662614,256139,2468199932,2275129231,100,100,100,100,2.78,2.48,5.08,5.43
-76227,48,121,48121,22141,8009,217255761,205794391,22141,8009,217255761,205794391,662614,256139,2468199932,2275129231,100,100,100,100,3.34,3.13,8.8,9.05
-76228,48,077,48077,974,470,442435211,439292127,1119,581,482894106,478955790,10752,5150,2892378735,2819774443,87.04,80.9,91.62,91.72,9.06,9.13,15.3,15.58
-76228,48,337,48337,145,111,40458895,39663663,1119,581,482894106,478955790,19719,10131,2430122064,2411034772,12.96,19.1,8.38,8.28,0.74,1.1,1.66,1.65
-76230,48,077,48077,142,90,92547838,91688626,9711,4894,992979251,980935495,10752,5150,2892378735,2819774443,1.46,1.84,9.32,9.35,1.32,1.75,3.2,3.25
-76230,48,237,48237,254,217,315369339,312237062,9711,4894,992979251,980935495,9044,4095,2383115961,2358603193,2.62,4.43,31.76,31.83,2.81,5.3,13.23,13.24
-76230,48,337,48337,9315,4587,585062074,577009807,9711,4894,992979251,980935495,19719,10131,2430122064,2411034772,95.92,93.73,58.92,58.82,47.24,45.28,24.08,23.93
-76233,48,097,48097,513,232,53208117,51288818,3235,1367,168764060,163065944,38437,16606,2326949673,2265615780,15.86,16.97,31.53,31.45,1.33,1.4,2.29,2.26
-76233,48,181,48181,2722,1135,115555943,111777126,3235,1367,168764060,163065944,120877,53727,2536056197,2415950507,84.14,83.03,68.47,68.55,2.25,2.11,4.56,4.63
-76234,48,097,48097,41,26,27542501,27443958,15587,6162,807121430,804831021,38437,16606,2326949673,2265615780,0.26,0.42,3.41,3.41,0.11,0.16,1.18,1.21
-76234,48,121,48121,304,113,17737246,17561696,15587,6162,807121430,804831021,662614,256139,2468199932,2275129231,1.95,1.83,2.2,2.18,0.05,0.04,0.72,0.77
-76234,48,497,48497,15242,6023,761841683,759825367,15587,6162,807121430,804831021,59127,23781,2389481454,2342442771,97.79,97.74,94.39,94.41,25.78,25.33,31.88,32.44
-76238,48,097,48097,431,164,68660809,68595896,431,164,68660809,68595896,38437,16606,2326949673,2265615780,100,100,100,100,1.12,0.99,2.95,3.03
-76239,48,097,48097,208,115,49444515,49196583,1087,601,297713702,296423885,38437,16606,2326949673,2265615780,19.14,19.13,16.61,16.6,0.54,0.69,2.12,2.17
-76239,48,337,48337,879,486,248269187,247227302,1087,601,297713702,296423885,19719,10131,2430122064,2411034772,80.86,80.87,83.39,83.4,4.46,4.8,10.22,10.25
-76240,48,097,48097,26120,11378,964988905,956845953,26120,11378,964988905,956845953,38437,16606,2326949673,2265615780,100,100,100,100,67.96,68.52,41.47,42.23
-76244,48,439,48439,60388,20228,44708419,44503766,60388,20228,44708419,44503766,1809034,714803,2336958950,2236735560,100,100,100,100,3.34,2.83,1.91,1.99
-76245,48,181,48181,1780,1398,71917831,58597333,1780,1398,71917831,58597333,120877,53727,2536056197,2415950507,100,100,100,100,1.47,2.6,2.84,2.43
-76247,48,121,48121,13098,4498,186874309,186088036,13098,4498,186874309,186088036,662614,256139,2468199932,2275129231,100,100,100,100,1.98,1.76,7.57,8.18
-76248,48,439,48439,34647,12251,37478631,37376460,34647,12251,37478631,37376460,1809034,714803,2336958950,2236735560,100,100,100,100,1.92,1.71,1.6,1.67
-76249,48,121,48121,7160,2748,167221727,164085426,7194,2762,177092760,173956459,662614,256139,2468199932,2275129231,99.53,99.49,94.43,94.33,1.08,1.07,6.78,7.21
-76249,48,497,48497,34,14,9871033,9871033,7194,2762,177092760,173956459,59127,23781,2389481454,2342442771,0.47,0.51,5.57,5.67,0.06,0.06,0.41,0.42
-76250,48,097,48097,937,354,22833165,22833165,937,354,22833165,22833165,38437,16606,2326949673,2265615780,100,100,100,100,2.44,2.13,0.98,1.01
-76251,48,337,48337,731,352,137949162,137318887,731,352,137949162,137318887,19719,10131,2430122064,2411034772,100,100,100,100,3.71,3.47,5.68,5.7
-76252,48,097,48097,2863,1200,480415613,479214749,2863,1200,480415613,479214749,38437,16606,2326949673,2265615780,100,100,100,100,7.45,7.23,20.65,21.15
-76253,48,097,48097,230,103,4006038,4006038,230,103,4006038,4006038,38437,16606,2326949673,2265615780,100,100,100,100,0.6,0.62,0.17,0.18
-76255,48,337,48337,5411,2980,685113183,679021465,5411,2980,685113183,679021465,19719,10131,2430122064,2411034772,100,100,100,100,27.44,29.41,28.19,28.16
-76258,48,121,48121,6328,2465,196976387,195299755,6659,2588,234206610,231270349,662614,256139,2468199932,2275129231,95.03,95.25,84.1,84.45,0.96,0.96,7.98,8.58
-76258,48,181,48181,331,123,37230223,35970594,6659,2588,234206610,231270349,120877,53727,2536056197,2415950507,4.97,4.75,15.9,15.55,0.27,0.23,1.47,1.49
-76259,48,121,48121,4583,1670,145249815,143601906,4618,1682,148372647,146724738,662614,256139,2468199932,2275129231,99.24,99.29,97.9,97.87,0.69,0.65,5.88,6.31
-76259,48,497,48497,35,12,3122832,3122832,4618,1682,148372647,146724738,59127,23781,2389481454,2342442771,0.76,0.71,2.1,2.13,0.06,0.05,0.13,0.13
-76261,48,077,48077,22,14,63307070,63038380,233,115,175178914,174910224,10752,5150,2892378735,2819774443,9.44,12.17,36.14,36.04,0.2,0.27,2.19,2.24
-76261,48,337,48337,211,101,111871844,111871844,233,115,175178914,174910224,19719,10131,2430122064,2411034772,90.56,87.83,63.86,63.96,1.07,1,4.6,4.64
-76262,48,121,48121,16803,6983,81570178,79166617,27648,10894,120081875,117366791,662614,256139,2468199932,2275129231,60.77,64.1,67.93,67.45,2.54,2.73,3.3,3.48
-76262,48,439,48439,10845,3911,38511697,38200174,27648,10894,120081875,117366791,1809034,714803,2336958950,2236735560,39.23,35.9,32.07,32.55,0.6,0.55,1.65,1.71
-76263,48,097,48097,44,29,22404218,22250808,44,29,22404218,22250808,38437,16606,2326949673,2265615780,100,100,100,100,0.11,0.17,0.96,0.98
-76264,48,181,48181,1412,670,98600090,92335758,1412,670,98600090,92335758,120877,53727,2536056197,2415950507,100,100,100,100,1.17,1.25,3.89,3.82
-76265,48,097,48097,109,81,71451210,71451210,1893,986,507232878,505490945,38437,16606,2326949673,2265615780,5.76,8.22,14.09,14.14,0.28,0.49,3.07,3.15
-76265,48,337,48337,1784,905,435781668,434039735,1893,986,507232878,505490945,19719,10131,2430122064,2411034772,94.24,91.78,85.91,85.86,9.05,8.93,17.93,18
-76266,48,097,48097,9,6,4737734,4607112,13495,5321,339140695,311093966,38437,16606,2326949673,2265615780,0.07,0.11,1.4,1.48,0.02,0.04,0.2,0.2
-76266,48,121,48121,13486,5315,334402961,306486854,13495,5321,339140695,311093966,662614,256139,2468199932,2275129231,99.93,99.89,98.6,98.52,2.04,2.08,13.55,13.47
-76268,48,181,48181,250,109,1495139,1495139,250,109,1495139,1495139,120877,53727,2536056197,2415950507,100,100,100,100,0.21,0.2,0.06,0.06
-76270,48,337,48337,1243,609,185616051,184882069,1853,908,262616637,261836197,19719,10131,2430122064,2411034772,67.08,67.07,70.68,70.61,6.3,6.01,7.64,7.67
-76270,48,497,48497,610,299,77000586,76954128,1853,908,262616637,261836197,59127,23781,2389481454,2342442771,32.92,32.93,29.32,29.39,1.03,1.26,3.22,3.29
-76271,48,097,48097,120,60,48857371,22090517,1352,659,136077880,102373150,38437,16606,2326949673,2265615780,8.88,9.1,35.9,21.58,0.31,0.36,2.1,0.98
-76271,48,181,48181,1232,599,87220509,80282633,1352,659,136077880,102373150,120877,53727,2536056197,2415950507,91.12,90.9,64.1,78.42,1.02,1.11,3.44,3.32
-76272,48,097,48097,4692,1978,262540223,245565163,4745,2010,306235430,256211911,38437,16606,2326949673,2265615780,98.88,98.41,85.73,95.84,12.21,11.91,11.28,10.84
-76272,48,121,48121,53,32,43695207,10646748,4745,2010,306235430,256211911,662614,256139,2468199932,2275129231,1.12,1.59,14.27,4.16,0.01,0.01,1.77,0.47
-76273,48,097,48097,2120,880,245859254,240225810,9135,3973,549666333,528068059,38437,16606,2326949673,2265615780,23.21,22.15,44.73,45.49,5.52,5.3,10.57,10.6
-76273,48,181,48181,7015,3093,303807079,287842249,9135,3973,549666333,528068059,120877,53727,2536056197,2415950507,76.79,77.85,55.27,54.51,5.8,5.76,11.98,11.91
-76301,48,485,48485,16540,8297,30390158,30390158,16540,8297,30390158,30390158,131500,55566,1639763566,1625932680,100,100,100,100,12.58,14.93,1.85,1.87
-76302,48,485,48485,13206,5630,21390512,21390512,13206,5630,21390512,21390512,131500,55566,1639763566,1625932680,100,100,100,100,10.04,10.13,1.3,1.32
-76305,48,077,48077,1972,879,387648034,385584931,4746,2093,569470569,567356958,10752,5150,2892378735,2819774443,41.55,42,68.07,67.96,18.34,17.07,13.4,13.67
-76305,48,485,48485,2774,1214,181822535,181772027,4746,2093,569470569,567356958,131500,55566,1639763566,1625932680,58.45,58,31.93,32.04,2.11,2.18,11.09,11.18
-76306,48,485,48485,15991,7067,33900049,33838563,15991,7067,33900049,33838563,131500,55566,1639763566,1625932680,100,100,100,100,12.16,12.72,2.07,2.08
-76308,48,009,48009,1120,446,6602411,5817580,19677,9348,26893434,23185390,9054,4107,2396821202,2339043608,5.69,4.77,24.55,25.09,12.37,10.86,0.28,0.25
-76308,48,485,48485,18557,8902,20291023,17367810,19677,9348,26893434,23185390,131500,55566,1639763566,1625932680,94.31,95.23,75.45,74.91,14.11,16.02,1.24,1.07
-76309,48,485,48485,13862,6460,14399963,14399963,13862,6460,14399963,14399963,131500,55566,1639763566,1625932680,100,100,100,100,10.54,11.63,0.88,0.89
-76310,48,009,48009,1538,613,245190325,240535859,17989,7747,490526318,465637930,9054,4107,2396821202,2339043608,8.55,7.91,49.99,51.66,16.99,14.93,10.23,10.28
-76310,48,077,48077,1060,448,123859617,105197925,17989,7747,490526318,465637930,10752,5150,2892378735,2819774443,5.89,5.78,25.25,22.59,9.86,8.7,4.28,3.73
-76310,48,485,48485,15391,6686,121476376,119904146,17989,7747,490526318,465637930,131500,55566,1639763566,1625932680,85.56,86.3,24.76,25.75,11.7,12.03,7.41,7.37
-76311,48,485,48485,7535,634,4313491,4313491,7535,634,4313491,4313491,131500,55566,1639763566,1625932680,100,100,100,100,5.73,1.14,0.26,0.27
-76351,48,009,48009,2035,992,501035946,496649951,2035,992,501035946,496649951,9054,4107,2396821202,2339043608,100,100,100,100,22.48,24.15,20.9,21.23
-76354,48,485,48485,11270,4866,203502955,203252519,11270,4866,203502955,203252519,131500,55566,1639763566,1625932680,100,100,100,100,8.57,8.76,12.41,12.5
-76357,48,077,48077,712,328,172860134,171874157,712,328,172860134,171874157,10752,5150,2892378735,2819774443,100,100,100,100,6.62,6.37,5.98,6.1
-76360,48,009,48009,57,88,49189519,44585630,3502,1826,742509763,736327802,9054,4107,2396821202,2339043608,1.63,4.82,6.62,6.06,0.63,2.14,2.05,1.91
-76360,48,485,48485,3329,1688,472142533,471407084,3502,1826,742509763,736327802,131500,55566,1639763566,1625932680,95.06,92.44,63.59,64.02,2.53,3.04,28.79,28.99
-76360,48,487,48487,116,50,221177711,220335088,3502,1826,742509763,736327802,13535,6318,2532732382,2514474467,3.31,2.74,29.79,29.92,0.86,0.79,8.73,8.76
-76363,48,275,48275,256,165,158831110,158795584,256,165,158831110,158795584,3719,2044,2215674639,2203097010,100,100,100,100,6.88,8.07,7.17,7.21
-76364,48,487,48487,193,104,177423348,177003889,193,104,177423348,177003889,13535,6318,2532732382,2514474467,100,100,100,100,1.43,1.65,7.01,7.04
-76365,48,077,48077,4803,2427,1372693051,1332900389,4831,2450,1418917198,1378732114,10752,5150,2892378735,2819774443,99.42,99.06,96.74,96.68,44.67,47.13,47.46,47.27
-76365,48,237,48237,28,23,46224147,45831725,4831,2450,1418917198,1378732114,9044,4095,2383115961,2358603193,0.58,0.94,3.26,3.32,0.31,0.56,1.94,1.94
-76366,48,009,48009,2317,1101,628845941,611581570,2317,1101,628845941,611581570,9054,4107,2396821202,2339043608,100,100,100,100,25.59,26.81,26.24,26.15
-76367,48,485,48485,13045,4122,522079945,513842381,13045,4122,522079945,513842381,131500,55566,1639763566,1625932680,100,100,100,100,9.92,7.42,31.84,31.6
-76370,48,009,48009,299,190,288327208,277233358,299,190,288327208,277233358,9054,4107,2396821202,2339043608,100,100,100,100,3.3,4.63,12.03,11.85
-76371,48,275,48275,1606,863,271019101,270917197,1606,863,271019101,270917197,3719,2044,2215674639,2203097010,100,100,100,100,43.18,42.22,12.23,12.3
-76372,48,447,48447,112,91,320727943,319402947,974,540,706215655,700814973,1641,1079,2371085487,2363499284,11.5,16.85,45.42,45.58,6.83,8.43,13.53,13.51
-76372,48,503,48503,862,449,385487712,381412026,974,540,706215655,700814973,18550,8622,2410911764,2368460066,88.5,83.15,54.58,54.42,4.65,5.21,15.99,16.1
-76373,48,487,48487,162,72,75382749,75322554,162,72,75382749,75322554,13535,6318,2532732382,2514474467,100,100,100,100,1.2,1.14,2.98,3
-76374,48,009,48009,96,75,209758724,206182404,4162,2026,738725366,730939629,9054,4107,2396821202,2339043608,2.31,3.7,28.39,28.21,1.06,1.83,8.75,8.81
-76374,48,503,48503,4066,1951,528966642,524757225,4162,2026,738725366,730939629,18550,8622,2410911764,2368460066,97.69,96.3,71.61,71.79,21.92,22.63,21.94,22.16
-76377,48,077,48077,802,393,79362676,78722272,802,393,79362676,78722272,10752,5150,2892378735,2819774443,100,100,100,100,7.46,7.63,2.74,2.79
-76379,48,009,48009,591,221,119990553,112421777,591,221,119990553,112421777,9054,4107,2396821202,2339043608,100,100,100,100,6.53,5.38,5.01,4.81
-76380,48,023,48023,3726,2665,2333750374,2246766775,3820,2737,2551483750,2464432706,3726,2665,2333750374,2246766775,97.54,97.37,91.47,91.17,100,100,100,100
-76380,48,275,48275,94,72,217733376,217665931,3820,2737,2551483750,2464432706,3719,2044,2215674639,2203097010,2.46,2.63,8.53,8.83,2.53,3.52,9.83,9.88
-76384,48,155,48155,19,13,7934554,7934554,12991,6050,1238797238,1233536026,1336,789,1832893339,1824378528,0.15,0.21,0.64,0.64,1.42,1.65,0.43,0.43
-76384,48,487,48487,12972,6037,1230862684,1225601472,12991,6050,1238797238,1233536026,13535,6318,2532732382,2514474467,99.85,99.79,99.36,99.36,95.84,95.55,48.6,48.74
-76388,48,207,48207,203,124,264302139,264137116,203,124,264302139,264137116,5899,3443,2357570427,2339099141,100,100,100,100,3.44,3.6,11.21,11.29
-76389,48,009,48009,1001,381,347880575,344035479,1329,520,525423649,515265783,9054,4107,2396821202,2339043608,75.32,73.27,66.21,66.77,11.06,9.28,14.51,14.71
-76389,48,077,48077,265,101,157665104,151475636,1329,520,525423649,515265783,10752,5150,2892378735,2819774443,19.94,19.42,30.01,29.4,2.46,1.96,5.45,5.37
-76389,48,237,48237,63,38,19877970,19754668,1329,520,525423649,515265783,9044,4095,2383115961,2358603193,4.74,7.31,3.78,3.83,0.7,0.93,0.83,0.84
-76401,48,143,48143,25702,11754,1075284687,1067962387,25702,11754,1075284687,1067962387,37890,16987,2822586551,2805141510,100,100,100,100,67.83,69.19,38.1,38.07
-76402,48,143,48143,847,0,230390,230390,847,0,230390,230390,37890,16987,2822586551,2805141510,100,0,100,100,2.24,0,0.01,0.01
-76424,48,429,48429,8979,4385,1330386607,1269992461,8992,4402,1394739553,1333963994,9630,4938,2386626568,2322492721,99.86,99.61,95.39,95.2,93.24,88.8,55.74,54.68
-76424,48,503,48503,13,17,64352946,63971533,8992,4402,1394739553,1333963994,18550,8622,2410911764,2368460066,0.14,0.39,4.61,4.8,0.07,0.2,2.67,2.7
-76426,48,237,48237,346,160,50914998,50512669,11302,4456,379626227,340733604,9044,4095,2383115961,2358603193,3.06,3.59,13.41,14.82,3.83,3.91,2.14,2.14
-76426,48,497,48497,10956,4296,328711229,290220935,11302,4456,379626227,340733604,59127,23781,2389481454,2342442771,96.94,96.41,86.59,85.18,18.53,18.06,13.76,12.39
-76427,48,237,48237,804,398,148056390,146451155,804,398,148056390,146451155,9044,4095,2383115961,2358603193,100,100,100,100,8.89,9.72,6.21,6.21
-76429,48,363,48363,47,86,25016095,17758695,258,233,283635225,275958819,28111,15214,2552454857,2465126895,18.22,36.91,8.82,6.44,0.17,0.57,0.98,0.72
-76429,48,429,48429,211,147,258619130,258200124,258,233,283635225,275958819,9630,4938,2386626568,2322492721,81.78,63.09,91.18,93.56,2.19,2.98,10.84,11.12
-76430,48,417,48417,2528,1286,894156966,891619120,2532,1298,934067205,931476774,3378,1754,2371258174,2367989977,99.84,99.08,95.73,95.72,74.84,73.32,37.71,37.65
-76430,48,447,48447,4,12,39910239,39857654,2532,1298,934067205,931476774,1641,1079,2371085487,2363499284,0.16,0.92,4.27,4.28,0.24,1.11,1.68,1.69
-76431,48,237,48237,56,48,68024201,67388059,3384,1657,310848269,307478538,9044,4095,2383115961,2358603193,1.65,2.9,21.88,21.92,0.62,1.17,2.85,2.86
-76431,48,497,48497,3328,1609,242824068,240090479,3384,1657,310848269,307478538,59127,23781,2389481454,2342442771,98.35,97.1,78.12,78.08,5.63,6.77,10.16,10.25
-76432,48,049,48049,1259,595,152104520,151687853,1370,665,248008173,247490480,38106,18287,2478499734,2446070964,91.9,89.47,61.33,61.29,3.3,3.25,6.14,6.2
-76432,48,093,48093,111,70,95903653,95802627,1370,665,248008173,247490480,13974,7223,2454488765,2428770746,8.1,10.53,38.67,38.71,0.79,0.97,3.91,3.94
-76433,48,143,48143,1245,621,245320999,244500116,1416,718,312123989,311076433,37890,16987,2822586551,2805141510,87.92,86.49,78.6,78.6,3.29,3.66,8.69,8.72
-76433,48,221,48221,127,73,40921880,40797317,1416,718,312123989,311076433,51182,24951,1131380653,1089456081,8.97,10.17,13.11,13.11,0.25,0.29,3.62,3.74
-76433,48,425,48425,44,24,25881110,25779000,1416,718,312123989,311076433,8490,3674,497159855,482937084,3.11,3.34,8.29,8.29,0.52,0.65,5.21,5.34
-76435,48,133,48133,612,382,188741793,188278741,612,382,188741793,188278741,18583,10258,2413647118,2399599329,100,100,100,100,3.29,3.72,7.82,7.85
-76436,48,093,48093,73,75,100622091,100590307,212,145,117355913,117324129,13974,7223,2454488765,2428770746,34.43,51.72,85.74,85.74,0.52,1.04,4.1,4.14
-76436,48,193,48193,139,70,16733822,16733822,212,145,117355913,117324129,8517,4566,2166246480,2165007849,65.57,48.28,14.26,14.26,1.63,1.53,0.77,0.77
-76437,48,059,48059,130,81,174405837,174405837,5721,3093,1051731692,1048821531,13544,6549,2334262036,2329363248,2.27,2.62,16.58,16.63,0.96,1.24,7.47,7.49
-76437,48,133,48133,5454,2922,685265910,682595742,5721,3093,1051731692,1048821531,18583,10258,2413647118,2399599329,95.33,94.47,65.16,65.08,29.35,28.49,28.39,28.45
-76437,48,429,48429,137,90,192059945,191819952,5721,3093,1051731692,1048821531,9630,4938,2386626568,2322492721,2.39,2.91,18.26,18.29,1.42,1.82,8.05,8.26
-76442,48,093,48093,7449,3707,1076049871,1060570559,7545,3779,1172585648,1157090573,13974,7223,2454488765,2428770746,98.73,98.09,91.77,91.66,53.31,51.32,43.84,43.67
-76442,48,333,48333,96,72,96535777,96520014,7545,3779,1172585648,1157090573,4936,2846,1941890061,1937987484,1.27,1.91,8.23,8.34,1.94,2.53,4.97,4.98
-76443,48,049,48049,93,68,64759257,64356861,1897,1057,367422955,366381384,38106,18287,2478499734,2446070964,4.9,6.43,17.63,17.57,0.24,0.37,2.61,2.63
-76443,48,059,48059,1765,967,292315002,291694637,1897,1057,367422955,366381384,13544,6549,2334262036,2329363248,93.04,91.49,79.56,79.62,13.03,14.77,12.52,12.52
-76443,48,083,48083,39,22,10348696,10329886,1897,1057,367422955,366381384,8895,5543,3318896702,3268424436,2.06,2.08,2.82,2.82,0.44,0.4,0.31,0.32
-76444,48,093,48093,3635,1846,379870772,376310056,3635,1846,379870772,376310056,13974,7223,2454488765,2428770746,100,100,100,100,26.01,25.56,15.48,15.49
-76445,48,093,48093,84,46,20877807,20853932,407,235,176069455,175664970,13974,7223,2454488765,2428770746,20.64,19.57,11.86,11.87,0.6,0.64,0.85,0.86
-76445,48,133,48133,315,184,147314031,146946320,407,235,176069455,175664970,18583,10258,2413647118,2399599329,77.4,78.3,83.67,83.65,1.7,1.79,6.1,6.12
-76445,48,143,48143,8,5,7877617,7864718,407,235,176069455,175664970,37890,16987,2822586551,2805141510,1.97,2.13,4.47,4.48,0.02,0.03,0.28,0.28
-76446,48,093,48093,1047,606,308872244,303204337,9000,4121,1096718861,1086420183,13974,7223,2454488765,2428770746,11.63,14.71,28.16,27.91,7.49,8.39,12.58,12.48
-76446,48,143,48143,7953,3515,787846617,783215846,9000,4121,1096718861,1086420183,37890,16987,2822586551,2805141510,88.37,85.29,71.84,72.09,20.99,20.69,27.91,27.92
-76448,48,133,48133,5628,3001,335120872,326833331,5628,3001,335120872,326833331,18583,10258,2413647118,2399599329,100,100,100,100,30.29,29.26,13.88,13.62
-76449,48,363,48363,2434,2839,578978222,536396085,2434,2839,578978222,536396085,28111,15214,2552454857,2465126895,100,100,100,100,8.66,18.66,22.68,21.76
-76450,48,363,48363,203,418,69014952,62447167,13258,6348,1233698778,1194279534,28111,15214,2552454857,2465126895,1.53,6.58,5.59,5.23,0.72,2.75,2.7,2.53
-76450,48,429,48429,75,110,137261696,134400807,13258,6348,1233698778,1194279534,9630,4938,2386626568,2322492721,0.57,1.73,11.13,11.25,0.78,2.23,5.75,5.79
-76450,48,503,48503,12980,5820,1027422130,997431560,13258,6348,1233698778,1194279534,18550,8622,2410911764,2368460066,97.9,91.68,83.28,83.52,69.97,67.5,42.62,42.11
-76452,48,093,48093,75,29,23158737,23124261,75,29,23158737,23124261,13974,7223,2454488765,2428770746,100,100,100,100,0.54,0.4,0.94,0.95
-76453,48,143,48143,109,60,51728794,51516370,1125,797,346822545,336425093,37890,16987,2822586551,2805141510,9.69,7.53,14.92,15.31,0.29,0.35,1.83,1.84
-76453,48,363,48363,1016,737,295093751,284908723,1125,797,346822545,336425093,28111,15214,2552454857,2465126895,90.31,92.47,85.08,84.69,3.61,4.84,11.56,11.56
-76454,48,093,48093,145,81,76813054,76680872,1688,992,355727719,355173849,13974,7223,2454488765,2428770746,8.59,8.17,21.59,21.59,1.04,1.12,3.13,3.16
-76454,48,133,48133,1543,911,278914665,278492977,1688,992,355727719,355173849,18583,10258,2413647118,2399599329,91.41,91.83,78.41,78.41,8.3,8.88,11.56,11.61
-76455,48,093,48093,1014,543,234007572,233986283,1014,543,234007572,233986283,13974,7223,2454488765,2428770746,100,100,100,100,7.26,7.52,9.53,9.63
-76457,48,035,48035,198,138,58353192,57826093,3960,2030,822797742,819762990,18212,9623,2596574413,2545902347,5,6.8,7.09,7.05,1.09,1.43,2.25,2.27
-76457,48,143,48143,1345,656,291091477,288937851,3960,2030,822797742,819762990,37890,16987,2822586551,2805141510,33.96,32.32,35.38,35.25,3.55,3.86,10.31,10.3
-76457,48,193,48193,2417,1236,473353073,472999046,3960,2030,822797742,819762990,8517,4566,2166246480,2165007849,61.04,60.89,57.53,57.7,28.38,27.07,21.85,21.85
-76458,48,237,48237,6261,2604,1476607678,1461119393,6261,2604,1476607678,1461119393,9044,4095,2383115961,2358603193,100,100,100,100,69.23,63.59,61.96,61.95
-76459,48,237,48237,146,86,58486004,58206224,146,86,58486004,58206224,9044,4095,2383115961,2358603193,100,100,100,100,1.61,2.1,2.45,2.47
-76460,48,503,48503,421,224,244150081,242813412,421,224,244150081,242813412,18550,8622,2410911764,2368460066,100,100,100,100,2.27,2.6,10.13,10.25
-76462,48,143,48143,404,193,109275854,108927854,2982,1387,437083616,434795733,37890,16987,2822586551,2805141510,13.55,13.91,25,25.05,1.07,1.14,3.87,3.88
-76462,48,221,48221,1356,680,168984379,167971305,2982,1387,437083616,434795733,51182,24951,1131380653,1089456081,45.47,49.03,38.66,38.63,2.65,2.73,14.94,15.42
-76462,48,363,48363,437,187,40501892,40391589,2982,1387,437083616,434795733,28111,15214,2552454857,2465126895,14.65,13.48,9.27,9.29,1.55,1.23,1.59,1.64
-76462,48,367,48367,785,327,118321491,117504985,2982,1387,437083616,434795733,116927,46628,2357133772,2339997883,26.32,23.58,27.07,27.03,0.67,0.7,5.02,5.02
-76463,48,143,48143,210,138,176684324,175409990,481,293,198067829,196299847,37890,16987,2822586551,2805141510,43.66,47.1,89.2,89.36,0.55,0.81,6.26,6.25
-76463,48,363,48363,271,155,21383505,20889857,481,293,198067829,196299847,28111,15214,2552454857,2465126895,56.34,52.9,10.8,10.64,0.96,1.02,0.84,0.85
-76464,48,059,48059,32,22,124778526,124778526,506,319,481768642,481321107,13544,6549,2334262036,2329363248,6.32,6.9,25.9,25.92,0.24,0.34,5.35,5.36
-76464,48,417,48417,442,271,264121434,263696564,506,319,481768642,481321107,3378,1754,2371258174,2367989977,87.35,84.95,54.82,54.79,13.08,15.45,11.14,11.14
-76464,48,429,48429,32,26,92868682,92846017,506,319,481768642,481321107,9630,4938,2386626568,2322492721,6.32,8.15,19.28,19.29,0.33,0.53,3.89,4
-76466,48,133,48133,332,168,15694195,15694195,332,168,15694195,15694195,18583,10258,2413647118,2399599329,100,100,100,100,1.79,1.64,0.65,0.65
-76469,48,059,48059,96,46,37481092,37017747,96,46,37481092,37017747,13544,6549,2334262036,2329363248,100,100,100,100,0.71,0.7,1.61,1.59
-76470,48,133,48133,3046,1647,395526711,394121077,3238,1818,741626503,740057390,18583,10258,2413647118,2399599329,94.07,90.59,53.33,53.26,16.39,16.06,16.39,16.42
-76470,48,429,48429,192,171,346099792,345936313,3238,1818,741626503,740057390,9630,4938,2386626568,2322492721,5.93,9.41,46.67,46.74,1.99,3.46,14.5,14.9
-76471,48,049,48049,226,123,116572886,116399392,1906,1173,454594944,453753090,38106,18287,2478499734,2446070964,11.86,10.49,25.64,25.65,0.59,0.67,4.7,4.76
-76471,48,093,48093,49,30,33086745,32728785,1906,1173,454594944,453753090,13974,7223,2454488765,2428770746,2.57,2.56,7.28,7.21,0.35,0.42,1.35,1.35
-76471,48,133,48133,1631,1020,304935313,304624913,1906,1173,454594944,453753090,18583,10258,2413647118,2399599329,85.57,86.96,67.08,67.13,8.78,9.94,12.63,12.69
-76472,48,363,48363,1499,695,263997669,261323403,1499,695,263997669,261323403,28111,15214,2552454857,2465126895,100,100,100,100,5.33,4.57,10.34,10.6
-76474,48,049,48049,5,4,2861421,2861421,281,179,93245711,93043662,38106,18287,2478499734,2446070964,1.78,2.23,3.07,3.08,0.01,0.02,0.12,0.12
-76474,48,093,48093,276,175,90384290,90182241,281,179,93245711,93043662,13974,7223,2454488765,2428770746,98.22,97.77,96.93,96.92,1.98,2.42,3.68,3.71
-76475,48,133,48133,22,23,62133628,62012033,977,785,620062138,612928650,18583,10258,2413647118,2399599329,2.25,2.93,10.02,10.12,0.12,0.22,2.57,2.58
-76475,48,363,48363,951,754,530724528,523712635,977,785,620062138,612928650,28111,15214,2552454857,2465126895,97.34,96.05,85.59,85.44,3.38,4.96,20.79,21.24
-76475,48,429,48429,4,8,27203982,27203982,977,785,620062138,612928650,9630,4938,2386626568,2322492721,0.41,1.02,4.39,4.44,0.04,0.16,1.14,1.17
-76476,48,221,48221,2637,1139,270312783,266040449,2637,1139,270312783,266040449,51182,24951,1131380653,1089456081,100,100,100,100,5.15,4.56,23.89,24.42
-76481,48,429,48429,0,1,2126734,2093065,208,162,162658987,160167375,9630,4938,2386626568,2322492721,0,0.62,1.31,1.31,0,0.02,0.09,0.09
-76481,48,503,48503,208,161,160532253,158074310,208,162,162658987,160167375,18550,8622,2410911764,2368460066,100,99.38,98.69,98.69,1.12,1.87,6.66,6.67
-76483,48,447,48447,1063,690,1652071269,1646654086,1063,690,1652071269,1646654086,1641,1079,2371085487,2363499284,100,100,100,100,64.78,63.95,69.68,69.67
-76484,48,363,48363,1147,611,279435818,275454136,1147,611,279435818,275454136,28111,15214,2552454857,2465126895,100,100,100,100,4.08,4.02,10.95,11.17
-76486,48,237,48237,950,443,180766373,178412675,1375,659,270059831,267400618,9044,4095,2383115961,2358603193,69.09,67.22,66.94,66.72,10.5,10.82,7.59,7.56
-76486,48,363,48363,135,63,37157919,36897143,1375,659,270059831,267400618,28111,15214,2552454857,2465126895,9.82,9.56,13.76,13.8,0.48,0.41,1.46,1.5
-76486,48,367,48367,290,153,52135539,52090800,1375,659,270059831,267400618,116927,46628,2357133772,2339997883,21.09,23.22,19.31,19.48,0.25,0.33,2.21,2.23
-76487,48,237,48237,136,78,18788861,18689563,2507,1117,232336488,231634479,9044,4095,2383115961,2358603193,5.42,6.98,8.09,8.07,1.5,1.9,0.79,0.79
-76487,48,367,48367,1863,810,151005736,150403025,2507,1117,232336488,231634479,116927,46628,2357133772,2339997883,74.31,72.52,64.99,64.93,1.59,1.74,6.41,6.43
-76487,48,497,48497,508,229,62541891,62541891,2507,1117,232336488,231634479,59127,23781,2389481454,2342442771,20.26,20.5,26.92,27,0.86,0.96,2.62,2.67
-76490,48,367,48367,91,38,1924865,1924865,91,38,1924865,1924865,116927,46628,2357133772,2339997883,100,100,100,100,0.08,0.08,0.08,0.08
-76491,48,447,48447,459,276,328585551,327794112,459,276,328585551,327794112,1641,1079,2371085487,2363499284,100,100,100,100,27.97,25.58,13.86,13.87
-76501,48,027,48027,16897,7082,304624069,302603143,16897,7082,304624069,302603143,310235,125470,2817483274,2722118322,100,100,100,100,5.45,5.64,10.81,11.12
-76502,48,027,48027,31545,13475,167656777,161250624,31545,13475,167656777,161250624,310235,125470,2817483274,2722118322,100,100,100,100,10.17,10.74,5.95,5.92
-76504,48,027,48027,24268,10636,70494400,70118704,24268,10636,70494400,70118704,310235,125470,2817483274,2722118322,100,100,100,100,7.82,8.48,2.5,2.58
-76508,48,027,48027,0,0,149411,149411,0,0,149411,149411,310235,125470,2817483274,2722118322,0,0,100,100,0,0,0.01,0.01
-76511,48,027,48027,996,419,123892479,122954150,3317,945,204201809,203078991,310235,125470,2817483274,2722118322,30.03,44.34,60.67,60.54,0.32,0.33,4.4,4.52
-76511,48,331,48331,161,73,11056025,11054122,3317,945,204201809,203078991,24757,11305,2646376342,2633837445,4.85,7.72,5.41,5.44,0.65,0.65,0.42,0.42
-76511,48,491,48491,2160,453,69253305,69070719,3317,945,204201809,203078991,422679,162773,2938184351,2896391221,65.12,47.94,33.91,34.01,0.51,0.28,2.36,2.38
-76513,48,027,48027,34172,13052,305980460,273185805,34172,13052,305980460,273185805,310235,125470,2817483274,2722118322,100,100,100,100,11.01,10.4,10.86,10.04
-76518,48,331,48331,1581,714,302734199,301767769,1581,714,302734199,301767769,24757,11305,2646376342,2633837445,100,100,100,100,6.39,6.32,11.44,11.46
-76519,48,027,48027,316,131,54421466,54036502,626,287,132978143,132420522,310235,125470,2817483274,2722118322,50.48,45.64,40.93,40.81,0.1,0.1,1.93,1.99
-76519,48,145,48145,55,32,26090879,26011319,626,287,132978143,132420522,17866,7724,2004238867,1982590781,8.79,11.15,19.62,19.64,0.31,0.41,1.3,1.31
-76519,48,331,48331,255,124,52465798,52372701,626,287,132978143,132420522,24757,11305,2646376342,2633837445,40.73,43.21,39.45,39.55,1.03,1.1,1.98,1.99
-76520,48,331,48331,8413,3796,782937739,780282251,8413,3796,782937739,780282251,24757,11305,2646376342,2633837445,100,100,100,100,33.98,33.58,29.59,29.63
-76522,48,099,48099,33646,13753,231763664,231632556,35534,14536,297527450,297396342,75388,25178,2736984842,2724838887,94.69,94.61,77.9,77.89,44.63,54.62,8.47,8.5
-76522,48,281,48281,1888,783,65763786,65763786,35534,14536,297527450,297396342,19677,8718,1849080493,1846247052,5.31,5.39,22.1,22.11,9.59,8.98,3.56,3.56
-76523,48,331,48331,18,6,1599758,1570856,18,6,1599758,1570856,24757,11305,2646376342,2633837445,100,100,100,100,0.07,0.05,0.06,0.06
-76524,48,145,48145,544,245,145970174,145111897,2867,1115,175179159,174111092,17866,7724,2004238867,1982590781,18.97,21.97,83.33,83.34,3.04,3.17,7.28,7.32
-76524,48,309,48309,2323,870,29208985,28999195,2867,1115,175179159,174111092,234906,95124,2745985743,2686079968,81.03,78.03,16.67,16.66,0.99,0.91,1.06,1.08
-76525,48,099,48099,543,310,151154226,151154226,1062,692,496688114,496517896,75388,25178,2736984842,2724838887,51.13,44.8,30.43,30.44,0.72,1.23,5.52,5.55
-76525,48,193,48193,451,315,267501628,267331410,1062,692,496688114,496517896,8517,4566,2166246480,2165007849,42.47,45.52,53.86,53.84,5.3,6.9,12.35,12.35
-76525,48,281,48281,68,67,78032260,78032260,1062,692,496688114,496517896,19677,8718,1849080493,1846247052,6.4,9.68,15.71,15.72,0.35,0.77,4.22,4.23
-76527,48,027,48027,200,89,18166932,18086689,4058,1628,333562572,332463553,310235,125470,2817483274,2722118322,4.93,5.47,5.45,5.44,0.06,0.07,0.64,0.66
-76527,48,053,48053,274,117,50301175,50282379,4058,1628,333562572,332463553,42750,20870,2645057147,2575116582,6.75,7.19,15.08,15.12,0.64,0.56,1.9,1.95
-76527,48,491,48491,3584,1422,265094465,264094485,4058,1628,333562572,332463553,422679,162773,2938184351,2896391221,88.32,87.35,79.47,79.44,0.85,0.87,9.02,9.12
-76528,48,027,48027,282,141,107155210,89688718,16974,6894,1324467831,1306135232,310235,125470,2817483274,2722118322,1.66,2.05,8.09,6.87,0.09,0.11,3.8,3.29
-76528,48,099,48099,16692,6753,1217312621,1216446514,16974,6894,1324467831,1306135232,75388,25178,2736984842,2724838887,98.34,97.95,91.91,93.13,22.14,26.82,44.48,44.64
-76530,48,491,48491,2540,1100,255202904,241929847,2540,1100,255202904,241929847,422679,162773,2938184351,2896391221,100,100,100,100,0.6,0.68,8.69,8.35
-76531,48,193,48193,4975,2587,976575691,976051242,4978,2591,990161095,989523030,8517,4566,2166246480,2165007849,99.94,99.85,98.63,98.64,58.41,56.66,45.08,45.08
-76531,48,333,48333,3,4,13585404,13471788,4978,2591,990161095,989523030,4936,2846,1941890061,1937987484,0.06,0.15,1.37,1.36,0.06,0.14,0.7,0.7
-76534,48,027,48027,2526,1046,218135070,216128797,2615,1077,231013406,228975931,310235,125470,2817483274,2722118322,96.6,97.12,94.43,94.39,0.81,0.83,7.74,7.94
-76534,48,331,48331,89,31,12878336,12847134,2615,1077,231013406,228975931,24757,11305,2646376342,2633837445,3.4,2.88,5.57,5.61,0.36,0.27,0.49,0.49
-76537,48,491,48491,3870,1481,139783961,139245932,3870,1481,139783961,139245932,422679,162773,2938184351,2896391221,100,100,100,100,0.92,0.91,4.76,4.81
-76538,48,099,48099,392,199,127685870,127637366,761,414,388714029,388532281,75388,25178,2736984842,2724838887,51.51,48.07,32.85,32.85,0.52,0.79,4.67,4.68
-76538,48,193,48193,369,215,261028159,260894915,761,414,388714029,388532281,8517,4566,2166246480,2165007849,48.49,51.93,67.15,67.15,4.33,4.71,12.05,12.05
-76539,48,027,48027,1368,515,11193666,11179908,7841,3212,356508075,355826507,310235,125470,2817483274,2722118322,17.45,16.03,3.14,3.14,0.44,0.41,0.4,0.41
-76539,48,053,48053,293,165,111242886,110615557,7841,3212,356508075,355826507,42750,20870,2645057147,2575116582,3.74,5.14,31.2,31.09,0.69,0.79,4.21,4.3
-76539,48,099,48099,744,309,6539456,6539456,7841,3212,356508075,355826507,75388,25178,2736984842,2724838887,9.49,9.62,1.83,1.84,0.99,1.23,0.24,0.24
-76539,48,281,48281,5436,2223,227532067,227491586,7841,3212,356508075,355826507,19677,8718,1849080493,1846247052,69.33,69.21,63.82,63.93,27.63,25.5,12.31,12.32
-76541,48,027,48027,19206,10246,12332314,12305792,19206,10246,12332314,12305792,310235,125470,2817483274,2722118322,100,100,100,100,6.19,8.17,0.44,0.45
-76542,48,027,48027,40025,15578,211459707,208671526,40025,15578,211459707,208671526,310235,125470,2817483274,2722118322,100,100,100,100,12.9,12.42,7.51,7.67
-76543,48,027,48027,30430,13389,126738968,125849014,30430,13389,126738968,125849014,310235,125470,2817483274,2722118322,100,100,100,100,9.81,10.67,4.5,4.62
-76544,48,027,48027,15289,3787,38409557,38249506,29943,6722,79411359,79244900,310235,125470,2817483274,2722118322,51.06,56.34,48.37,48.27,4.93,3.02,1.36,1.41
-76544,48,099,48099,14654,2935,41001802,40995394,29943,6722,79411359,79244900,75388,25178,2736984842,2724838887,48.94,43.66,51.63,51.73,19.44,11.66,1.5,1.5
-76548,48,027,48027,26344,10214,44341754,40178145,26344,10214,44341754,40178145,310235,125470,2817483274,2722118322,100,100,100,100,8.49,8.14,1.57,1.48
-76549,48,027,48027,44134,16834,174649376,173614893,44490,16945,199700731,198483923,310235,125470,2817483274,2722118322,99.2,99.34,87.46,87.47,14.23,13.42,6.2,6.38
-76549,48,053,48053,180,75,24609277,24426952,44490,16945,199700731,198483923,42750,20870,2645057147,2575116582,0.4,0.44,12.32,12.31,0.42,0.36,0.93,0.95
-76549,48,099,48099,176,36,442078,442078,44490,16945,199700731,198483923,75388,25178,2736984842,2724838887,0.4,0.21,0.22,0.22,0.23,0.14,0.02,0.02
-76550,48,053,48053,917,485,524926072,521530506,11586,5287,1381554329,1376745602,42750,20870,2645057147,2575116582,7.91,9.17,38,37.88,2.15,2.32,19.85,20.25
-76550,48,281,48281,10669,4802,856628257,855215096,11586,5287,1381554329,1376745602,19677,8718,1849080493,1846247052,92.09,90.83,62,62.12,54.22,55.08,46.33,46.32
-76554,48,027,48027,2104,806,22764514,22530598,2104,806,22764514,22530598,310235,125470,2817483274,2722118322,100,100,100,100,0.68,0.64,0.81,0.83
-76556,48,331,48331,1461,701,256173191,255406307,1461,701,256173191,255406307,24757,11305,2646376342,2633837445,100,100,100,100,5.9,6.2,9.68,9.7
-76557,48,027,48027,1727,689,155504684,147453103,5178,2173,368895543,351406660,310235,125470,2817483274,2722118322,33.35,31.71,42.15,41.96,0.56,0.55,5.52,5.42
-76557,48,099,48099,334,135,42058110,33794816,5178,2173,368895543,351406660,75388,25178,2736984842,2724838887,6.45,6.21,11.4,9.62,0.44,0.54,1.54,1.24
-76557,48,309,48309,3117,1349,171332749,170158741,5178,2173,368895543,351406660,234906,95124,2745985743,2686079968,60.2,62.08,46.44,48.42,1.33,1.42,6.24,6.33
-76559,48,027,48027,5051,1889,17643061,17391911,5051,1889,17643061,17391911,310235,125470,2817483274,2722118322,100,100,100,100,1.63,1.51,0.63,0.64
-76561,48,099,48099,962,421,119266091,116833690,962,421,119266091,116833690,75388,25178,2736984842,2724838887,100,100,100,100,1.28,1.67,4.36,4.29
-76565,48,193,48193,74,58,71601330,71601330,74,58,71601330,71601330,8517,4566,2166246480,2165007849,100,100,100,100,0.87,1.27,3.31,3.31
-76566,48,099,48099,230,140,109388936,109342899,258,163,141207564,141155263,75388,25178,2736984842,2724838887,89.15,85.89,77.47,77.46,0.31,0.56,4,4.01
-76566,48,193,48193,28,23,31818628,31812364,258,163,141207564,141155263,8517,4566,2166246480,2165007849,10.85,14.11,22.53,22.54,0.33,0.5,1.47,1.47
-76567,48,051,48051,202,103,36664077,36459722,8984,4098,503797341,501363818,17187,8832,1752935298,1706870641,2.25,2.51,7.28,7.27,1.18,1.17,2.09,2.14
-76567,48,331,48331,8782,3995,467133264,464904096,8984,4098,503797341,501363818,24757,11305,2646376342,2633837445,97.75,97.49,92.72,92.73,35.47,35.34,17.65,17.65
-76569,48,027,48027,2408,953,177940237,175502022,2498,994,213408286,210970071,310235,125470,2817483274,2722118322,96.4,95.88,83.38,83.19,0.78,0.76,6.32,6.45
-76569,48,331,48331,90,41,35468049,35468049,2498,994,213408286,210970071,24757,11305,2646376342,2633837445,3.6,4.12,16.62,16.81,0.36,0.36,1.34,1.35
-76570,48,145,48145,2475,1211,310677248,307967696,2572,1276,469506035,465742936,17866,7724,2004238867,1982590781,96.23,94.91,66.17,66.12,13.85,15.68,15.5,15.53
-76570,48,331,48331,97,65,158828787,157775240,2572,1276,469506035,465742936,24757,11305,2646376342,2633837445,3.77,5.09,33.83,33.88,0.39,0.57,6,5.99
-76571,48,027,48027,6790,2874,317886969,306092196,6790,2874,317886969,306092196,310235,125470,2817483274,2722118322,100,100,100,100,2.19,2.29,11.28,11.24
-76573,48,491,48491,26,17,2314873,2314873,26,17,2314873,2314873,422679,162773,2938184351,2896391221,100,100,100,100,0.01,0.01,0.08,0.08
-76574,48,491,48491,17661,7089,377183480,368798460,17661,7089,377183480,368798460,422679,162773,2938184351,2896391221,100,100,100,100,4.18,4.36,12.84,12.73
-76577,48,331,48331,2997,1358,382208253,378978714,3046,1382,394855252,391451894,24757,11305,2646376342,2633837445,98.39,98.26,96.8,96.81,12.11,12.01,14.44,14.39
-76577,48,491,48491,49,24,12646999,12473180,3046,1382,394855252,391451894,422679,162773,2938184351,2896391221,1.61,1.74,3.2,3.19,0.01,0.01,0.43,0.43
-76578,48,491,48491,1766,717,196900147,194389725,1766,717,196900147,194389725,422679,162773,2938184351,2896391221,100,100,100,100,0.42,0.44,6.7,6.71
-76579,48,027,48027,4157,1625,135942193,134897165,4258,1662,149558789,148239623,310235,125470,2817483274,2722118322,97.63,97.77,90.9,91,1.34,1.3,4.82,4.96
-76579,48,145,48145,101,37,13616596,13342458,4258,1662,149558789,148239623,17866,7724,2004238867,1982590781,2.37,2.23,9.1,9,0.57,0.48,0.68,0.67
-76596,48,099,48099,1274,0,792706,781894,1274,0,792706,781894,75388,25178,2736984842,2724838887,100,0,100,100,1.69,0,0.03,0.03
-76597,48,099,48099,2882,0,1255390,1255390,2882,0,1255390,1255390,75388,25178,2736984842,2724838887,100,0,100,100,3.82,0,0.05,0.05
-76598,48,099,48099,523,0,99874,99874,523,0,99874,99874,75388,25178,2736984842,2724838887,100,0,100,100,0.69,0,0,0
-76599,48,099,48099,1956,0,1296064,1296064,1956,0,1296064,1296064,75388,25178,2736984842,2724838887,100,0,100,100,2.59,0,0.05,0.05
-76621,48,217,48217,1037,456,189366063,188307659,1037,456,189366063,188307659,35089,16118,2553002527,2483445279,100,100,100,100,2.96,2.83,7.42,7.58
-76622,48,217,48217,1015,461,138145161,136535039,1015,461,138145161,136535039,35089,16118,2553002527,2483445279,100,100,100,100,2.89,2.86,5.41,5.5
-76623,48,139,48139,242,84,13202327,13132338,242,84,13202327,13132338,149610,54365,2465015110,2422900216,100,100,100,100,0.16,0.15,0.54,0.54
-76624,48,309,48309,2231,946,168330975,166399046,2231,946,168330975,166399046,234906,95124,2745985743,2686079968,100,100,100,100,0.95,0.99,6.13,6.19
-76626,48,349,48349,1563,663,106997585,105937656,1563,663,106997585,105937656,47735,20234,2812561876,2614922711,100,100,100,100,3.27,3.28,3.8,4.05
-76627,48,217,48217,1601,674,234186239,229345847,1601,674,234186239,229345847,35089,16118,2553002527,2483445279,100,100,100,100,4.56,4.18,9.17,9.23
-76628,48,217,48217,111,48,24121295,24011569,111,48,24121295,24011569,35089,16118,2553002527,2483445279,100,100,100,100,0.32,0.3,0.94,0.97
-76629,48,145,48145,189,126,68418019,67727559,1989,1117,371598481,366563301,17866,7724,2004238867,1982590781,9.5,11.28,18.41,18.48,1.06,1.63,3.41,3.42
-76629,48,395,48395,1800,991,303180462,298835742,1989,1117,371598481,366563301,16622,8484,2241255224,2216209138,90.5,88.72,81.59,81.52,10.83,11.68,13.53,13.48
-76630,48,145,48145,11,6,3670954,3650040,1840,691,37601648,37327759,17866,7724,2004238867,1982590781,0.6,0.87,9.76,9.78,0.06,0.08,0.18,0.18
-76630,48,309,48309,1829,685,33930694,33677719,1840,691,37601648,37327759,234906,95124,2745985743,2686079968,99.4,99.13,90.24,90.22,0.78,0.72,1.24,1.25
-76631,48,217,48217,522,204,106649316,105911975,522,204,106649316,105911975,35089,16118,2553002527,2483445279,100,100,100,100,1.49,1.27,4.18,4.26
-76632,48,145,48145,1778,715,157367077,155557246,1778,715,157367077,155557246,17866,7724,2004238867,1982590781,100,100,100,100,9.95,9.26,7.85,7.85
-76633,48,035,48035,485,170,16345784,16233387,4973,1878,126718379,125027604,18212,9623,2596574413,2545902347,9.75,9.05,12.9,12.98,2.66,1.77,0.63,0.64
-76633,48,309,48309,4488,1708,110372595,108794217,4973,1878,126718379,125027604,234906,95124,2745985743,2686079968,90.25,90.95,87.1,87.02,1.91,1.8,4.02,4.05
-76634,48,035,48035,7049,3801,723329507,710457690,7093,3827,745457396,732585464,18212,9623,2596574413,2545902347,99.38,99.32,97.03,96.98,38.71,39.5,27.86,27.91
-76634,48,099,48099,44,26,22127889,22127774,7093,3827,745457396,732585464,75388,25178,2736984842,2724838887,0.62,0.68,2.97,3.02,0.06,0.1,0.81,0.81
-76635,48,293,48293,1341,566,277811978,273254982,1341,566,277811978,273254982,23384,10536,2416883301,2344684360,100,100,100,100,5.73,5.37,11.49,11.65
-76636,48,217,48217,1497,676,113264390,112330433,1497,676,113264390,112330433,35089,16118,2553002527,2483445279,100,100,100,100,4.27,4.19,4.44,4.52
-76637,48,035,48035,488,264,63743051,63397306,536,300,103138979,102742805,18212,9623,2596574413,2545902347,91.04,88,61.8,61.7,2.68,2.74,2.45,2.49
-76637,48,193,48193,48,36,39395928,39345499,536,300,103138979,102742805,8517,4566,2166246480,2165007849,8.96,12,38.2,38.3,0.56,0.79,1.82,1.82
-76638,48,309,48309,2837,1137,214543940,214098130,2837,1137,214543940,214098130,234906,95124,2745985743,2686079968,100,100,100,100,1.21,1.2,7.81,7.97
-76639,48,349,48349,1584,811,244586732,237923742,1584,811,244586732,237923742,47735,20234,2812561876,2614922711,100,100,100,100,3.32,4.01,8.7,9.1
-76640,48,309,48309,3005,1299,74446292,73554705,3005,1299,74446292,73554705,234906,95124,2745985743,2686079968,100,100,100,100,1.28,1.37,2.71,2.74
-76641,48,349,48349,1674,762,203056528,194432346,1674,762,203056528,194432346,47735,20234,2812561876,2614922711,100,100,100,100,3.51,3.77,7.22,7.44
-76642,48,293,48293,7057,2967,697847530,661691156,7057,2967,697847530,661691156,23384,10536,2416883301,2344684360,100,100,100,100,30.18,28.16,28.87,28.22
-76643,48,309,48309,13554,5160,20736070,20687245,13554,5160,20736070,20687245,234906,95124,2745985743,2686079968,100,100,100,100,5.77,5.42,0.76,0.77
-76645,48,217,48217,11039,4590,443813343,433735972,11039,4590,443813343,433735972,35089,16118,2553002527,2483445279,100,100,100,100,31.46,28.48,17.38,17.47
-76648,48,217,48217,2040,1013,194215227,191588399,2302,1184,275073017,267066799,35089,16118,2553002527,2483445279,88.62,85.56,70.6,71.74,5.81,6.28,7.61,7.71
-76648,48,293,48293,53,41,46477121,45935328,2302,1184,275073017,267066799,23384,10536,2416883301,2344684360,2.3,3.46,16.9,17.2,0.23,0.39,1.92,1.96
-76648,48,349,48349,209,130,34380669,29543072,2302,1184,275073017,267066799,47735,20234,2812561876,2614922711,9.08,10.98,12.5,11.06,0.44,0.64,1.22,1.13
-76649,48,035,48035,723,442,284757860,281713500,790,487,362003652,358289488,18212,9623,2596574413,2545902347,91.52,90.76,78.66,78.63,3.97,4.59,10.97,11.07
-76649,48,143,48143,67,45,77245792,76575988,790,487,362003652,358289488,37890,16987,2822586551,2805141510,8.48,9.24,21.34,21.37,0.18,0.26,2.74,2.73
-76650,48,217,48217,104,52,27165194,27013528,104,52,27165194,27013528,35089,16118,2553002527,2483445279,100,100,100,100,0.3,0.32,1.06,1.09
-76651,48,139,48139,3300,1347,269930631,267174501,3300,1347,269930631,267174501,149610,54365,2465015110,2422900216,100,100,100,100,2.21,2.48,10.95,11.03
-76652,48,035,48035,1087,639,231568355,225632530,1087,639,231568355,225632530,18212,9623,2596574413,2545902347,100,100,100,100,5.97,6.64,8.92,8.86
-76653,48,145,48145,201,133,135231213,134084869,1082,607,390801902,385003385,17866,7724,2004238867,1982590781,18.58,21.91,34.6,34.83,1.13,1.72,6.75,6.76
-76653,48,293,48293,863,464,220548150,218616859,1082,607,390801902,385003385,23384,10536,2416883301,2344684360,79.76,76.44,56.43,56.78,3.69,4.4,9.13,9.32
-76653,48,395,48395,18,10,35022539,32301657,1082,607,390801902,385003385,16622,8484,2241255224,2216209138,1.66,1.65,8.96,8.39,0.11,0.12,1.56,1.46
-76654,48,309,48309,151,60,1676518,1662778,151,60,1676518,1662778,234906,95124,2745985743,2686079968,100,100,100,100,0.06,0.06,0.06,0.06
-76655,48,145,48145,587,250,22559475,22336080,7831,2946,198890266,197753043,17866,7724,2004238867,1982590781,7.5,8.49,11.34,11.29,3.29,3.24,1.13,1.13
-76655,48,309,48309,7244,2696,176330791,175416963,7831,2946,198890266,197753043,234906,95124,2745985743,2686079968,92.5,91.51,88.66,88.71,3.08,2.83,6.42,6.53
-76656,48,145,48145,2276,1046,302432471,299768080,2276,1046,302432471,299768080,17866,7724,2004238867,1982590781,100,100,100,100,12.74,13.54,15.09,15.12
-76657,48,099,48099,153,59,26857988,26846990,9307,3631,275564896,275330211,75388,25178,2736984842,2724838887,1.64,1.62,9.75,9.75,0.2,0.23,0.98,0.99
-76657,48,309,48309,9154,3572,248706908,248483221,9307,3631,275564896,275330211,234906,95124,2745985743,2686079968,98.36,98.38,90.25,90.25,3.9,3.76,9.06,9.25
-76660,48,217,48217,506,245,92821260,92002146,506,245,92821260,92002146,35089,16118,2553002527,2483445279,100,100,100,100,1.44,1.52,3.64,3.7
-76661,48,145,48145,8708,3390,422442625,415781904,8708,3390,422442625,415781904,17866,7724,2004238867,1982590781,100,100,100,100,48.74,43.89,21.08,20.97
-76664,48,145,48145,49,25,23877111,23752759,3514,1502,352855792,349764966,17866,7724,2004238867,1982590781,1.39,1.66,6.77,6.79,0.27,0.32,1.19,1.2
-76664,48,293,48293,365,178,225484144,224120278,3514,1502,352855792,349764966,23384,10536,2416883301,2344684360,10.39,11.85,63.9,64.08,1.56,1.69,9.33,9.56
-76664,48,309,48309,3100,1299,103494537,101891929,3514,1502,352855792,349764966,234906,95124,2745985743,2686079968,88.22,86.48,29.33,29.13,1.32,1.37,3.77,3.79
-76665,48,035,48035,2526,1242,415980861,411999839,2526,1242,415980861,411999839,18212,9623,2596574413,2545902347,100,100,100,100,13.87,12.91,16.02,16.18
-76666,48,217,48217,244,123,42890935,42418266,244,123,42890935,42418266,35089,16118,2553002527,2483445279,100,100,100,100,0.7,0.76,1.68,1.71
-76667,48,161,48161,347,152,53704649,53703275,11313,4740,380986585,372970090,19816,9265,2310248910,2273333089,3.07,3.21,14.1,14.4,1.75,1.64,2.32,2.36
-76667,48,293,48293,10966,4588,327281936,319266815,11313,4740,380986585,372970090,23384,10536,2416883301,2344684360,96.93,96.79,85.9,85.6,46.9,43.55,13.54,13.62
-76670,48,139,48139,984,419,114794807,113691263,1377,571,183290655,181446552,149610,54365,2465015110,2422900216,71.46,73.38,62.63,62.66,0.66,0.77,4.66,4.69
-76670,48,217,48217,393,152,68495848,67755289,1377,571,183290655,181446552,35089,16118,2553002527,2483445279,28.54,26.62,37.37,37.34,1.12,0.94,2.68,2.73
-76671,48,035,48035,1777,1186,225227198,206181616,1777,1186,225227198,206181616,18212,9623,2596574413,2545902347,100,100,100,100,9.76,12.32,8.67,8.1
-76673,48,217,48217,835,382,141774835,139797152,1187,542,242142505,238841731,35089,16118,2553002527,2483445279,70.35,70.48,58.55,58.53,2.38,2.37,5.55,5.63
-76673,48,293,48293,346,157,99787482,98464391,1187,542,242142505,238841731,23384,10536,2416883301,2344684360,29.15,28.97,41.21,41.23,1.48,1.49,4.13,4.2
-76673,48,309,48309,6,3,580188,580188,1187,542,242142505,238841731,234906,95124,2745985743,2686079968,0.51,0.55,0.24,0.24,0,0,0.02,0.02
-76676,48,217,48217,413,188,55881072,55577835,413,188,55881072,55577835,35089,16118,2553002527,2483445279,100,100,100,100,1.18,1.17,2.19,2.24
-76678,48,293,48293,263,131,98267070,97519497,263,131,98267070,97519497,23384,10536,2416883301,2344684360,100,100,100,100,1.12,1.24,4.07,4.16
-76679,48,349,48349,1432,662,202504610,197536430,1432,662,202504610,197536430,47735,20234,2812561876,2614922711,100,100,100,100,3,3.27,7.2,7.55
-76680,48,145,48145,190,135,145838947,144200367,190,135,145838947,144200367,17866,7724,2004238867,1982590781,100,100,100,100,1.06,1.75,7.28,7.27
-76681,48,349,48349,873,448,205199999,189152650,873,448,205199999,189152650,47735,20234,2812561876,2614922711,100,100,100,100,1.83,2.21,7.3,7.23
-76682,48,145,48145,570,302,178405005,177160052,2660,1198,299039916,293757281,17866,7724,2004238867,1982590781,21.43,25.21,59.66,60.31,3.19,3.91,8.9,8.94
-76682,48,309,48309,2090,896,120634911,116597229,2660,1198,299039916,293757281,234906,95124,2745985743,2686079968,78.57,74.79,40.34,39.69,0.89,0.94,4.39,4.34
-76685,48,145,48145,108,60,36059909,34854022,108,60,36059909,34854022,17866,7724,2004238867,1982590781,100,100,100,100,0.6,0.78,1.8,1.76
-76686,48,293,48293,285,155,29704399,29295360,285,155,29704399,29295360,23384,10536,2416883301,2344684360,100,100,100,100,1.22,1.47,1.23,1.25
-76687,48,145,48145,13,5,3266341,3254060,1466,1025,358096606,343542764,17866,7724,2004238867,1982590781,0.89,0.49,0.91,0.95,0.07,0.06,0.16,0.16
-76687,48,293,48293,1184,782,293762481,284470697,1466,1025,358096606,343542764,23384,10536,2416883301,2344684360,80.76,76.29,82.03,82.81,5.06,7.42,12.15,12.13
-76687,48,395,48395,269,238,61067784,55818007,1466,1025,358096606,343542764,16622,8484,2241255224,2216209138,18.35,23.22,17.05,16.25,1.62,2.81,2.72,2.52
-76689,48,035,48035,2673,1154,353587447,351272841,3996,1748,597870756,595381312,18212,9623,2596574413,2545902347,66.89,66.02,59.14,59,14.68,11.99,13.62,13.8
-76689,48,099,48099,183,102,80311833,80239582,3996,1748,597870756,595381312,75388,25178,2736984842,2724838887,4.58,5.84,13.43,13.48,0.24,0.41,2.93,2.94
-76689,48,309,48309,1140,492,163971476,163868889,3996,1748,597870756,595381312,234906,95124,2745985743,2686079968,28.53,28.15,27.43,27.52,0.49,0.52,5.97,6.1
-76690,48,035,48035,1197,580,212789181,210324855,1197,580,212789181,210324855,18212,9623,2596574413,2545902347,100,100,100,100,6.57,6.03,8.19,8.26
-76691,48,217,48217,78,35,19231719,19086970,6454,2706,259573798,258343074,35089,16118,2553002527,2483445279,1.21,1.29,7.41,7.39,0.22,0.22,0.75,0.77
-76691,48,309,48309,6376,2671,240342079,239256104,6454,2706,259573798,258343074,234906,95124,2745985743,2686079968,98.79,98.71,92.59,92.61,2.71,2.81,8.75,8.91
-76692,48,217,48217,10115,5478,358131521,317554184,10115,5478,358131521,317554184,35089,16118,2553002527,2483445279,100,100,100,100,28.83,33.99,14.03,12.79
-76693,48,161,48161,1623,786,183226963,182829279,1651,801,200737447,200191811,19816,9265,2310248910,2273333089,98.3,98.13,91.28,91.33,8.19,8.48,7.93,8.04
-76693,48,293,48293,28,15,17510484,17362532,1651,801,200737447,200191811,23384,10536,2416883301,2344684360,1.7,1.87,8.72,8.67,0.12,0.14,0.72,0.74
-76701,48,309,48309,1826,826,2991649,2945553,1826,826,2991649,2945553,234906,95124,2745985743,2686079968,100,100,100,100,0.78,0.87,0.11,0.11
-76704,48,309,48309,8007,3704,13838771,13397540,8007,3704,13838771,13397540,234906,95124,2745985743,2686079968,100,100,100,100,3.41,3.89,0.5,0.5
-76705,48,309,48309,29155,11391,306897587,296046972,29155,11391,306897587,296046972,234906,95124,2745985743,2686079968,100,100,100,100,12.41,11.97,11.18,11.02
-76706,48,145,48145,11,6,8314823,8030373,35015,13833,187469746,183714917,17866,7724,2004238867,1982590781,0.03,0.04,4.44,4.37,0.06,0.08,0.41,0.41
-76706,48,309,48309,35004,13827,179154923,175684544,35015,13833,187469746,183714917,234906,95124,2745985743,2686079968,99.97,99.96,95.56,95.63,14.9,14.54,6.52,6.54
-76707,48,309,48309,16697,6072,8526320,8455021,16697,6072,8526320,8455021,234906,95124,2745985743,2686079968,100,100,100,100,7.11,6.38,0.31,0.31
-76708,48,309,48309,24476,9736,130969743,120532124,24476,9736,130969743,120532124,234906,95124,2745985743,2686079968,100,100,100,100,10.42,10.24,4.77,4.49
-76710,48,309,48309,22686,11467,29773911,24632273,22686,11467,29773911,24632273,234906,95124,2745985743,2686079968,100,100,100,100,9.66,12.05,1.08,0.92
-76711,48,309,48309,9042,3402,10277560,10251070,9042,3402,10277560,10251070,234906,95124,2745985743,2686079968,100,100,100,100,3.85,3.58,0.37,0.38
-76712,48,309,48309,23506,9856,145248798,130341799,23506,9856,145248798,130341799,234906,95124,2745985743,2686079968,100,100,100,100,10.01,10.36,5.29,4.85
-76798,48,309,48309,1862,0,90399,90399,1862,0,90399,90399,234906,95124,2745985743,2686079968,100,0,100,100,0.79,0,0,0
-76801,48,049,48049,25488,11931,958889224,934170706,25552,11978,1013865218,989081612,38106,18287,2478499734,2446070964,99.75,99.61,94.58,94.45,66.89,65.24,38.69,38.19
-76801,48,083,48083,4,6,17999495,17956888,25552,11978,1013865218,989081612,8895,5543,3318896702,3268424436,0.02,0.05,1.78,1.82,0.04,0.11,0.54,0.55
-76801,48,333,48333,60,41,36976499,36954018,25552,11978,1013865218,989081612,4936,2846,1941890061,1937987484,0.23,0.34,3.65,3.74,1.22,1.44,1.9,1.91
-76802,48,049,48049,5075,2117,187589227,187311207,5075,2117,187589227,187311207,38106,18287,2478499734,2446070964,100,100,100,100,13.32,11.58,7.57,7.66
-76820,48,319,48319,125,163,194996232,194302604,125,163,194996232,194302604,4012,2733,2414423353,2405588947,100,100,100,100,3.12,5.96,8.08,8.08
-76821,48,399,48399,4869,2369,801188505,789947342,4869,2369,801188505,789947342,10501,5298,2737864015,2721933935,100,100,100,100,46.37,44.71,29.26,29.02
-76823,48,049,48049,2908,1408,257926529,257145604,2945,1434,291846905,290952823,38106,18287,2478499734,2446070964,98.74,98.19,88.38,88.38,7.63,7.7,10.41,10.51
-76823,48,083,48083,37,26,33920376,33807219,2945,1434,291846905,290952823,8895,5543,3318896702,3268424436,1.26,1.81,11.62,11.62,0.42,0.47,1.02,1.03
-76824,48,411,48411,35,20,74468681,72150321,35,20,74468681,72150321,6131,3177,2948476794,2940404691,100,100,100,100,0.57,0.63,2.53,2.45
-76825,48,307,48307,7060,3436,1329603005,1318146988,7091,3457,1360696193,1349149724,8283,4302,2780171938,2759886938,99.56,99.39,97.71,97.7,85.23,79.87,47.82,47.76
-76825,48,319,48319,31,21,31093188,31002736,7091,3457,1360696193,1349149724,4012,2733,2414423353,2405588947,0.44,0.61,2.29,2.3,0.77,0.77,1.29,1.29
-76827,48,049,48049,433,219,188378831,188034919,433,219,188378831,188034919,38106,18287,2478499734,2446070964,100,100,100,100,1.14,1.2,7.6,7.69
-76828,48,083,48083,199,166,252195663,251555089,199,166,252195663,251555089,8895,5543,3318896702,3268424436,100,100,100,100,2.24,2.99,7.6,7.7
-76831,48,299,48299,63,69,112291803,112268420,63,69,112291803,112268420,19301,14280,2501557024,2419137915,100,100,100,100,0.33,0.48,4.49,4.64
-76832,48,411,48411,559,343,525118262,524944836,559,343,525118262,524944836,6131,3177,2948476794,2940404691,100,100,100,100,9.12,10.8,17.81,17.85
-76834,48,083,48083,5908,3368,1073629803,1063710887,5908,3368,1073629803,1063710887,8895,5543,3318896702,3268424436,100,100,100,100,66.42,60.76,32.35,32.55
-76836,48,307,48307,41,33,99692121,99099036,41,33,99692121,99099036,8283,4302,2780171938,2759886938,100,100,100,100,0.49,0.77,3.59,3.59
-76837,48,095,48095,3188,866,1135130221,1132587904,3188,866,1135130221,1132587904,4087,1637,2573652507,2548028356,100,100,100,100,78,52.9,44.11,44.45
-76841,48,327,48327,55,77,193509199,193481349,61,84,259045369,259017519,2242,1702,2336859501,2336245942,90.16,91.67,74.7,74.7,2.45,4.52,8.28,8.28
-76841,48,413,48413,6,7,65536170,65536170,61,84,259045369,259017519,3461,1489,3394604469,3394517068,9.84,8.33,25.3,25.3,0.17,0.47,1.93,1.93
-76842,48,307,48307,18,9,35248984,35231315,191,159,243344241,243115915,8283,4302,2780171938,2759886938,9.42,5.66,14.49,14.49,0.22,0.21,1.27,1.28
-76842,48,319,48319,112,89,75056867,74846547,191,159,243344241,243115915,4012,2733,2414423353,2405588947,58.64,55.97,30.84,30.79,2.79,3.26,3.11,3.11
-76842,48,411,48411,61,61,133038390,133038053,191,159,243344241,243115915,6131,3177,2948476794,2940404691,31.94,38.36,54.67,54.72,0.99,1.92,4.51,4.52
-76844,48,193,48193,16,26,28238221,28238221,3550,2037,1063010959,1061339943,8517,4566,2166246480,2165007849,0.45,1.28,2.66,2.66,0.19,0.57,1.3,1.3
-76844,48,281,48281,15,8,5686799,5686799,3550,2037,1063010959,1061339943,19677,8718,1849080493,1846247052,0.42,0.39,0.53,0.54,0.08,0.09,0.31,0.31
-76844,48,333,48333,3519,2003,1029085939,1027414923,3550,2037,1063010959,1061339943,4936,2846,1941890061,1937987484,99.13,98.33,96.81,96.8,71.29,70.38,52.99,53.01
-76845,48,083,48083,178,168,290685349,289996550,178,168,290685349,289996550,8895,5543,3318896702,3268424436,100,100,100,100,2,3.03,8.76,8.87
-76848,48,327,48327,78,76,157322091,157322091,78,76,157322091,157322091,2242,1702,2336859501,2336245942,100,100,100,100,3.48,4.47,6.73,6.73
-76849,48,267,48267,3944,2725,2448081799,2447652369,3944,2725,2448081799,2447652369,4607,3371,3240534520,3240040898,100,100,100,100,85.61,80.84,75.55,75.54
-76852,48,307,48307,212,195,389963374,388013254,212,195,389963374,388013254,8283,4302,2780171938,2759886938,100,100,100,100,2.56,4.53,14.03,14.06
-76853,48,281,48281,1601,835,615437324,614057525,1622,857,666615843,665126067,19677,8718,1849080493,1846247052,98.71,97.43,92.32,92.32,8.14,9.58,33.28,33.26
-76853,48,333,48333,21,22,51178519,51068542,1622,857,666615843,665126067,4936,2846,1941890061,1937987484,1.29,2.57,7.68,7.68,0.43,0.77,2.64,2.64
-76854,48,267,48267,274,288,227895222,227883918,401,375,353101523,353090219,4607,3371,3240534520,3240040898,68.33,76.8,64.54,64.54,5.95,8.54,7.03,7.03
-76854,48,327,48327,127,87,125206301,125206301,401,375,353101523,353090219,2242,1702,2336859501,2336245942,31.67,23.2,35.46,35.46,5.66,5.11,5.36,5.36
-76856,48,319,48319,3582,2272,1849371730,1841956545,3582,2272,1849371730,1841956545,4012,2733,2414423353,2405588947,100,100,100,100,89.28,83.13,76.6,76.57
-76857,48,049,48049,1781,1403,341980712,337231575,1791,1412,352400147,347651010,38106,18287,2478499734,2446070964,99.44,99.36,97.04,97,4.67,7.67,13.8,13.79
-76857,48,093,48093,10,9,10419435,10419435,1791,1412,352400147,347651010,13974,7223,2454488765,2428770746,0.56,0.64,2.96,3,0.07,0.12,0.42,0.43
-76858,48,095,48095,34,31,224000141,223716568,254,181,309881793,308731002,4087,1637,2573652507,2548028356,13.39,17.13,72.29,72.46,0.83,1.89,8.7,8.78
-76858,48,307,48307,220,150,85881652,85014434,254,181,309881793,308731002,8283,4302,2780171938,2759886938,86.61,82.87,27.71,27.54,2.66,3.49,3.09,3.08
-76859,48,327,48327,1982,1462,1860821910,1860236201,1982,1462,1860821910,1860236201,2242,1702,2336859501,2336245942,100,100,100,100,88.4,85.9,79.63,79.63
-76861,48,399,48399,1147,499,177002555,177002555,1995,863,444305856,444148320,10501,5298,2737864015,2721933935,57.49,57.82,39.84,39.85,10.92,9.42,6.46,6.5
-76861,48,451,48451,848,364,267303301,267145765,1995,863,444305856,444148320,110224,46571,3989994390,3941889598,42.51,42.18,60.16,60.15,0.77,0.78,6.7,6.78
-76862,48,095,48095,198,265,344579812,330847337,198,265,344579812,330847337,4087,1637,2573652507,2548028356,100,100,100,100,4.84,16.19,13.39,12.98
-76864,48,333,48333,890,518,611625512,609808649,890,518,611625512,609808649,4936,2846,1941890061,1937987484,100,100,100,100,18.03,18.2,31.5,31.47
-76865,48,399,48399,160,103,82962682,82918547,160,103,82962682,82918547,10501,5298,2737864015,2721933935,100,100,100,100,1.52,1.94,3.03,3.05
-76866,48,095,48095,623,449,730237025,721200528,623,449,730237025,721200528,4087,1637,2573652507,2548028356,100,100,100,100,15.24,27.43,28.37,28.3
-76869,48,319,48319,103,117,120751229,120499175,125,133,191411772,191159718,4012,2733,2414423353,2405588947,82.4,87.97,63.08,63.04,2.57,4.28,5,5.01
-76869,48,411,48411,22,16,70660543,70660543,125,133,191411772,191159718,6131,3177,2948476794,2940404691,17.6,12.03,36.92,36.96,0.36,0.5,2.4,2.4
-76870,48,333,48333,251,139,71369699,71339264,251,139,71369699,71339264,4936,2846,1941890061,1937987484,100,100,100,100,5.09,4.88,3.68,3.68
-76871,48,307,48307,5,4,22928204,22772140,784,530,605891896,604104514,8283,4302,2780171938,2759886938,0.64,0.75,3.78,3.77,0.06,0.09,0.82,0.83
-76871,48,411,48411,779,526,582963692,581332374,784,530,605891896,604104514,6131,3177,2948476794,2940404691,99.36,99.25,96.22,96.23,12.71,16.56,19.77,19.77
-76872,48,307,48307,601,378,664363900,660644946,717,477,778620959,774592669,8283,4302,2780171938,2759886938,83.82,79.25,85.33,85.29,7.26,8.79,23.9,23.94
-76872,48,411,48411,116,99,114257059,113947723,717,477,778620959,774592669,6131,3177,2948476794,2940404691,16.18,20.75,14.67,14.71,1.89,3.12,3.88,3.88
-76873,48,083,48083,55,84,116698132,116377507,55,84,116698132,116377507,8895,5543,3318896702,3268424436,100,100,100,100,0.62,1.52,3.52,3.56
-76874,48,267,48267,68,113,180573004,180573004,68,113,180573004,180573004,4607,3371,3240534520,3240040898,100,100,100,100,1.48,3.35,5.57,5.57
-76875,48,095,48095,44,26,87567119,87537830,668,319,281187323,281131011,4087,1637,2573652507,2548028356,6.59,8.15,31.14,31.14,1.08,1.59,3.4,3.44
-76875,48,399,48399,624,293,193620204,193593181,668,319,281187323,281131011,10501,5298,2737864015,2721933935,93.41,91.85,68.86,68.86,5.94,5.53,7.07,7.11
-76877,48,411,48411,4558,2108,1442975318,1439335992,4558,2108,1442975318,1439335992,6131,3177,2948476794,2940404691,100,100,100,100,74.34,66.35,48.94,48.95
-76878,48,083,48083,1685,978,688790479,685091583,1685,978,688790479,685091583,8895,5543,3318896702,3268424436,100,100,100,100,18.94,17.64,20.75,20.96
-76882,48,083,48083,198,146,198750705,198399974,252,200,362427764,361984774,8895,5543,3318896702,3268424436,78.57,73,54.84,54.81,2.23,2.63,5.99,6.07
-76882,48,399,48399,54,54,163677059,163584800,252,200,362427764,361984774,10501,5298,2737864015,2721933935,21.43,27,45.16,45.19,0.51,1.02,5.98,6.01
-76884,48,083,48083,172,100,89884936,89563523,172,100,89884936,89563523,8895,5543,3318896702,3268424436,100,100,100,100,1.93,1.8,2.71,2.74
-76885,48,299,48299,154,135,203745148,203719462,154,135,203745148,203719462,19301,14280,2501557024,2419137915,100,100,100,100,0.8,0.95,8.14,8.42
-76887,48,307,48307,126,97,152490698,150964825,126,97,152490698,150964825,8283,4302,2780171938,2759886938,100,100,100,100,1.52,2.25,5.48,5.47
-76888,48,083,48083,110,181,306685958,276806413,110,181,306685958,276806413,8895,5543,3318896702,3268424436,100,100,100,100,1.24,3.27,9.24,8.47
-76890,48,049,48049,838,419,207437127,206871426,940,472,243392333,242598763,38106,18287,2478499734,2446070964,89.15,88.77,85.23,85.27,2.2,2.29,8.37,8.46
-76890,48,093,48093,6,6,4422494,4317051,940,472,243392333,242598763,13974,7223,2454488765,2428770746,0.64,1.27,1.82,1.78,0.04,0.08,0.18,0.18
-76890,48,333,48333,96,47,31532712,31410286,940,472,243392333,242598763,4936,2846,1941890061,1937987484,10.21,9.96,12.96,12.95,1.94,1.65,1.62,1.62
-76901,48,235,48235,29,23,218682791,218682791,27969,11906,732098301,715015195,1599,856,2723710991,2723534675,0.1,0.19,29.87,30.58,1.81,2.69,8.03,8.03
-76901,48,451,48451,27940,11883,513415510,496332404,27969,11906,732098301,715015195,110224,46571,3989994390,3941889598,99.9,99.81,70.13,69.42,25.35,25.52,12.87,12.59
-76903,48,451,48451,31905,13750,68994294,68981203,31905,13750,68994294,68981203,110224,46571,3989994390,3941889598,100,100,100,100,28.95,29.52,1.73,1.75
-76904,48,235,48235,66,33,21736230,21634990,32718,14668,1073768791,1046108191,1599,856,2723710991,2723534675,0.2,0.22,2.02,2.07,4.13,3.86,0.8,0.79
-76904,48,451,48451,32652,14635,1052032561,1024473201,32718,14668,1073768791,1046108191,110224,46571,3989994390,3941889598,99.8,99.78,97.98,97.93,29.62,31.43,26.37,25.99
-76905,48,451,48451,11335,4386,538387007,538387007,11335,4386,538387007,538387007,110224,46571,3989994390,3941889598,100,100,100,100,10.28,9.42,13.49,13.66
-76908,48,451,48451,1951,13,3611818,3611818,1951,13,3611818,3611818,110224,46571,3989994390,3941889598,100,100,100,100,1.77,0.03,0.09,0.09
-76930,48,235,48235,156,92,467027294,467027294,156,92,467027294,467027294,1599,856,2723710991,2723534675,100,100,100,100,9.76,10.75,17.15,17.15
-76932,48,105,48105,38,22,594675840,594675840,3390,1369,2511289289,2511279153,3719,1866,7270997490,7270944161,1.12,1.61,23.68,23.68,1.02,1.18,8.18,8.18
-76932,48,383,48383,3352,1347,1916613449,1916603313,3390,1369,2511289289,2511279153,3367,1372,3045808675,3044015959,98.88,98.39,76.32,76.32,99.55,98.18,62.93,62.96
-76933,48,081,48081,1260,649,497025907,494714930,1365,727,674402070,671965099,3320,2667,2403485200,2360695668,92.31,89.27,73.7,73.62,37.95,24.33,20.68,20.96
-76933,48,399,48399,105,78,177376163,177250169,1365,727,674402070,671965099,10501,5298,2737864015,2721933935,7.69,10.73,26.3,26.38,1,1.47,6.48,6.51
-76934,48,451,48451,1296,479,40334469,40334469,1296,479,40334469,40334469,110224,46571,3989994390,3941889598,100,100,100,100,1.18,1.03,1.01,1.02
-76935,48,413,48413,75,52,409303514,409303514,1606,767,757344327,756360713,3461,1489,3394604469,3394517068,4.67,6.78,54.04,54.11,2.17,3.49,12.06,12.06
-76935,48,451,48451,1531,715,348040813,347057199,1606,767,757344327,756360713,110224,46571,3989994390,3941889598,95.33,93.22,45.96,45.89,1.39,1.54,8.72,8.8
-76936,48,413,48413,3377,1426,2782017096,2781929695,3377,1426,2782017096,2781929695,3461,1489,3394604469,3394517068,100,100,100,100,97.57,95.77,81.95,81.95
-76937,48,451,48451,37,16,27217373,27217373,37,16,27217373,27217373,110224,46571,3989994390,3941889598,100,100,100,100,0.03,0.03,0.68,0.69
-76939,48,451,48451,51,26,85186741,83021384,51,26,85186741,83021384,110224,46571,3989994390,3941889598,100,100,100,100,0.05,0.06,2.14,2.11
-76940,48,451,48451,176,85,38335927,38335927,176,85,38335927,38335927,110224,46571,3989994390,3941889598,100,100,100,100,0.16,0.18,0.96,0.97
-76941,48,235,48235,1348,706,1472431547,1472356471,1348,706,1472431547,1472356471,1599,856,2723710991,2723534675,100,100,100,100,84.3,82.48,54.06,54.06
-76943,48,105,48105,3639,1751,4939883156,4939872847,3693,1872,6506743718,6499728989,3719,1866,7270997490,7270944161,98.54,93.54,75.92,76,97.85,93.84,67.94,67.94
-76943,48,465,48465,54,121,1566860562,1559856142,3693,1872,6506743718,6499728989,48879,18651,8372575337,8144863995,1.46,6.46,24.08,24,0.11,0.65,18.71,19.15
-76945,48,081,48081,1665,1398,1555840276,1525263756,1665,1399,1575665209,1545088689,3320,2667,2403485200,2360695668,100,99.93,98.74,98.72,50.15,52.42,64.73,64.61
-76945,48,431,48431,0,1,19824933,19824933,1665,1399,1575665209,1545088689,1143,615,2391895277,2391727824,0,0.07,1.26,1.28,0,0.16,0.83,0.83
-76949,48,081,48081,7,16,23884814,23778100,7,16,23884814,23778100,3320,2667,2403485200,2360695668,100,100,100,100,0.21,0.6,0.99,1.01
-76950,48,137,48137,44,93,627677876,627426441,4180,2145,4767899571,4765450757,2002,1606,5490425663,5485225839,1.05,4.34,13.16,13.17,2.2,5.79,11.43,11.44
-76950,48,435,48435,4128,2031,3766928404,3765651337,4180,2145,4767899571,4765450757,4128,2031,3766928404,3765651337,98.76,94.69,79.01,79.02,100,100,100,100
-76950,48,465,48465,8,21,373293291,372372979,4180,2145,4767899571,4765450757,48879,18651,8372575337,8144863995,0.19,0.98,7.83,7.81,0.02,0.11,4.46,4.57
-76951,48,431,48431,1143,612,2078573691,2078497397,1143,612,2078573691,2078497397,1143,615,2391895277,2391727824,100,100,100,100,100,99.51,86.9,86.9
-76953,48,081,48081,74,63,118645020,118298132,74,63,118645020,118298132,3320,2667,2403485200,2360695668,100,100,100,100,2.23,2.36,4.94,5.01
-76955,48,451,48451,133,49,125691607,125691607,133,49,125691607,125691607,110224,46571,3989994390,3941889598,100,100,100,100,0.12,0.11,3.15,3.19
-76957,48,451,48451,59,19,723906,723906,59,19,723906,723906,110224,46571,3989994390,3941889598,100,100,100,100,0.05,0.04,0.02,0.02
-76958,48,451,48451,310,147,255002157,255002157,310,147,255002157,255002157,110224,46571,3989994390,3941889598,100,100,100,100,0.28,0.32,6.39,6.47
-77002,48,201,48201,16793,3757,5355947,5227914,16793,3757,5355947,5227914,4092459,1598698,4603658575,4411986582,100,100,100,100,0.41,0.24,0.12,0.12
-77003,48,201,48201,10508,4713,6635308,6567398,10508,4713,6635308,6567398,4092459,1598698,4603658575,4411986582,100,100,100,100,0.26,0.29,0.14,0.15
-77004,48,201,48201,32692,16618,15028970,14960198,32692,16618,15028970,14960198,4092459,1598698,4603658575,4411986582,100,100,100,100,0.8,1.04,0.33,0.34
-77005,48,201,48201,25528,10299,9959184,9958464,25528,10299,9959184,9958464,4092459,1598698,4603658575,4411986582,100,100,100,100,0.62,0.64,0.22,0.23
-77006,48,201,48201,19664,13602,5840517,5840517,19664,13602,5840517,5840517,4092459,1598698,4603658575,4411986582,100,100,100,100,0.48,0.85,0.13,0.13
-77007,48,201,48201,30853,17708,20456204,20222292,30853,17708,20456204,20222292,4092459,1598698,4603658575,4411986582,100,100,100,100,0.75,1.11,0.44,0.46
-77008,48,201,48201,30482,16526,16957280,16886733,30482,16526,16957280,16886733,4092459,1598698,4603658575,4411986582,100,100,100,100,0.74,1.03,0.37,0.38
-77009,48,201,48201,38094,15705,16026472,16006249,38094,15705,16026472,16006249,4092459,1598698,4603658575,4411986582,100,100,100,100,0.93,0.98,0.35,0.36
-77010,48,201,48201,366,471,319762,319762,366,471,319762,319762,4092459,1598698,4603658575,4411986582,100,100,100,100,0.01,0.03,0.01,0.01
-77011,48,201,48201,19547,6932,9671670,9243204,19547,6932,9671670,9243204,4092459,1598698,4603658575,4411986582,100,100,100,100,0.48,0.43,0.21,0.21
-77012,48,201,48201,20719,6952,11018248,10172603,20719,6952,11018248,10172603,4092459,1598698,4603658575,4411986582,100,100,100,100,0.51,0.43,0.24,0.23
-77013,48,201,48201,17602,6155,22863622,22650287,17602,6155,22863622,22650287,4092459,1598698,4603658575,4411986582,100,100,100,100,0.43,0.39,0.5,0.51
-77014,48,201,48201,28684,11671,18638957,18533863,28684,11671,18638957,18533863,4092459,1598698,4603658575,4411986582,100,100,100,100,0.7,0.73,0.4,0.42
-77015,48,201,48201,53621,18461,60034991,54698749,53621,18461,60034991,54698749,4092459,1598698,4603658575,4411986582,100,100,100,100,1.31,1.15,1.3,1.24
-77016,48,201,48201,26989,10593,25202871,25044017,26989,10593,25202871,25044017,4092459,1598698,4603658575,4411986582,100,100,100,100,0.66,0.66,0.55,0.57
-77017,48,201,48201,32561,10770,23114618,22520254,32561,10770,23114618,22520254,4092459,1598698,4603658575,4411986582,100,100,100,100,0.8,0.67,0.5,0.51
-77018,48,201,48201,25563,11837,17218367,17147259,25563,11837,17218367,17147259,4092459,1598698,4603658575,4411986582,100,100,100,100,0.62,0.74,0.37,0.39
-77019,48,201,48201,18944,10980,9220489,9115666,18944,10980,9220489,9115666,4092459,1598698,4603658575,4411986582,100,100,100,100,0.46,0.69,0.2,0.21
-77020,48,201,48201,25464,9384,18200723,17881915,25464,9384,18200723,17881915,4092459,1598698,4603658575,4411986582,100,100,100,100,0.62,0.59,0.4,0.41
-77021,48,201,48201,26042,11810,15807580,15742462,26042,11810,15807580,15742462,4092459,1598698,4603658575,4411986582,100,100,100,100,0.64,0.74,0.34,0.36
-77022,48,201,48201,29557,10692,15126692,15125545,29557,10692,15126692,15125545,4092459,1598698,4603658575,4411986582,100,100,100,100,0.72,0.67,0.33,0.34
-77023,48,201,48201,28998,10646,14347422,14112378,28998,10646,14347422,14112378,4092459,1598698,4603658575,4411986582,100,100,100,100,0.71,0.67,0.31,0.32
-77024,48,201,48201,34775,15927,33010177,32905019,34775,15927,33010177,32905019,4092459,1598698,4603658575,4411986582,100,100,100,100,0.85,1,0.72,0.75
-77025,48,201,48201,26137,13662,11228725,11137251,26137,13662,11228725,11137251,4092459,1598698,4603658575,4411986582,100,100,100,100,0.64,0.85,0.24,0.25
-77026,48,201,48201,23940,10111,16790960,16782149,23940,10111,16790960,16782149,4092459,1598698,4603658575,4411986582,100,100,100,100,0.58,0.63,0.36,0.38
-77027,48,201,48201,14331,10203,7451662,7412837,14331,10203,7451662,7412837,4092459,1598698,4603658575,4411986582,100,100,100,100,0.35,0.64,0.16,0.17
-77028,48,201,48201,16808,6457,23773347,23752521,16808,6457,23773347,23752521,4092459,1598698,4603658575,4411986582,100,100,100,100,0.41,0.4,0.52,0.54
-77029,48,201,48201,17814,6340,34668839,33648461,17814,6340,34668839,33648461,4092459,1598698,4603658575,4411986582,100,100,100,100,0.44,0.4,0.75,0.76
-77030,48,201,48201,10258,5759,6648082,6530028,10258,5759,6648082,6530028,4092459,1598698,4603658575,4411986582,100,100,100,100,0.25,0.36,0.14,0.15
-77031,48,201,48201,15762,6305,8268918,8250354,15762,6305,8268918,8250354,4092459,1598698,4603658575,4411986582,100,100,100,100,0.39,0.39,0.18,0.19
-77032,48,201,48201,12757,4343,57505845,57300665,12757,4343,57505845,57300665,4092459,1598698,4603658575,4411986582,100,100,100,100,0.31,0.27,1.25,1.3
-77033,48,201,48201,27965,10082,15524719,15476400,27965,10082,15524719,15476400,4092459,1598698,4603658575,4411986582,100,100,100,100,0.68,0.63,0.34,0.35
-77034,48,201,48201,33678,12778,36197460,35559329,33678,12778,36197460,35559329,4092459,1598698,4603658575,4411986582,100,100,100,100,0.82,0.8,0.79,0.81
-77035,48,201,48201,35896,15355,14777974,14769443,35896,15355,14777974,14769443,4092459,1598698,4603658575,4411986582,100,100,100,100,0.88,0.96,0.32,0.33
-77036,48,201,48201,71969,30117,18538685,18432161,71969,30117,18538685,18432161,4092459,1598698,4603658575,4411986582,100,100,100,100,1.76,1.88,0.4,0.42
-77037,48,201,48201,19819,5521,16172462,16146946,19819,5521,16172462,16146946,4092459,1598698,4603658575,4411986582,100,100,100,100,0.48,0.35,0.35,0.37
-77038,48,201,48201,26713,7922,24575032,24381853,26713,7922,24575032,24381853,4092459,1598698,4603658575,4411986582,100,100,100,100,0.65,0.5,0.53,0.55
-77039,48,201,48201,27562,8089,26264361,26147028,27562,8089,26264361,26147028,4092459,1598698,4603658575,4411986582,100,100,100,100,0.67,0.51,0.57,0.59
-77040,48,201,48201,45081,17649,36625108,36397226,45081,17649,36625108,36397226,4092459,1598698,4603658575,4411986582,100,100,100,100,1.1,1.1,0.8,0.82
-77041,48,201,48201,37146,11997,48407330,47929493,37146,11997,48407330,47929493,4092459,1598698,4603658575,4411986582,100,100,100,100,0.91,0.75,1.05,1.09
-77042,48,201,48201,36385,20521,16290214,16189862,36385,20521,16290214,16189862,4092459,1598698,4603658575,4411986582,100,100,100,100,0.89,1.28,0.35,0.37
-77043,48,201,48201,23358,9392,38628013,38607360,23358,9392,38628013,38607360,4092459,1598698,4603658575,4411986582,100,100,100,100,0.57,0.59,0.84,0.88
-77044,48,201,48201,30949,10158,120350847,101220908,30949,10158,120350847,101220908,4092459,1598698,4603658575,4411986582,100,100,100,100,0.76,0.64,2.61,2.29
-77045,48,201,48201,31255,9730,30285266,29892027,31255,9730,30285266,29892027,4092459,1598698,4603658575,4411986582,100,100,100,100,0.76,0.61,0.66,0.68
-77046,48,201,48201,1196,964,302539,302539,1196,964,302539,302539,4092459,1598698,4603658575,4411986582,100,100,100,100,0.03,0.06,0.01,0.01
-77047,48,201,48201,21077,8097,36397596,35794645,21077,8097,36397596,35794645,4092459,1598698,4603658575,4411986582,100,100,100,100,0.52,0.51,0.79,0.81
-77048,48,201,48201,15294,6501,28925629,28702161,15294,6501,28925629,28702161,4092459,1598698,4603658575,4411986582,100,100,100,100,0.37,0.41,0.63,0.65
-77049,48,201,48201,28521,9402,66196632,63665401,28521,9402,66196632,63665401,4092459,1598698,4603658575,4411986582,100,100,100,100,0.7,0.59,1.44,1.44
-77050,48,201,48201,4611,1451,17933971,17282498,4611,1451,17933971,17282498,4092459,1598698,4603658575,4411986582,100,100,100,100,0.11,0.09,0.39,0.39
-77051,48,201,48201,15085,6584,19065541,18972731,15085,6584,19065541,18972731,4092459,1598698,4603658575,4411986582,100,100,100,100,0.37,0.41,0.41,0.43
-77053,48,157,48157,17261,5210,23586254,23265912,28954,8651,32225170,31877352,585375,197030,2293021865,2231225129,59.62,60.22,73.19,72.99,2.95,2.64,1.03,1.04
-77053,48,201,48201,11693,3441,8638916,8611440,28954,8651,32225170,31877352,4092459,1598698,4603658575,4411986582,40.38,39.78,26.81,27.01,0.29,0.22,0.19,0.2
-77054,48,201,48201,22290,14173,14536712,14473863,22290,14173,14536712,14473863,4092459,1598698,4603658575,4411986582,100,100,100,100,0.54,0.89,0.32,0.33
-77055,48,201,48201,41989,16005,21653870,21648620,41989,16005,21653870,21648620,4092459,1598698,4603658575,4411986582,100,100,100,100,1.03,1,0.47,0.49
-77056,48,201,48201,18673,12270,8995079,8960556,18673,12270,8995079,8960556,4092459,1598698,4603658575,4411986582,100,100,100,100,0.46,0.77,0.2,0.2
-77057,48,201,48201,39208,22694,11049196,11040817,39208,22694,11049196,11040817,4092459,1598698,4603658575,4411986582,100,100,100,100,0.96,1.42,0.24,0.25
-77058,48,201,48201,16406,9667,23786629,21368323,16406,9667,23786629,21368323,4092459,1598698,4603658575,4411986582,100,100,100,100,0.4,0.6,0.52,0.48
-77059,48,201,48201,16949,5724,25752530,25487509,16949,5724,25752530,25487509,4092459,1598698,4603658575,4411986582,100,100,100,100,0.41,0.36,0.56,0.58
-77060,48,201,48201,40830,15562,21323471,21298928,40830,15562,21323471,21298928,4092459,1598698,4603658575,4411986582,100,100,100,100,1,0.97,0.46,0.48
-77061,48,201,48201,24457,9555,20629082,20508214,24457,9555,20629082,20508214,4092459,1598698,4603658575,4411986582,100,100,100,100,0.6,0.6,0.45,0.46
-77062,48,201,48201,25152,9910,14093102,14047202,25152,9910,14093102,14047202,4092459,1598698,4603658575,4411986582,100,100,100,100,0.61,0.62,0.31,0.32
-77063,48,201,48201,34299,19359,11924552,11913976,34299,19359,11924552,11913976,4092459,1598698,4603658575,4411986582,100,100,100,100,0.84,1.21,0.26,0.27
-77064,48,201,48201,45847,16362,38412332,38133902,45847,16362,38412332,38133902,4092459,1598698,4603658575,4411986582,100,100,100,100,1.12,1.02,0.83,0.86
-77065,48,201,48201,35326,14957,21317028,21270772,35326,14957,21317028,21270772,4092459,1598698,4603658575,4411986582,100,100,100,100,0.86,0.94,0.46,0.48
-77066,48,201,48201,31366,10179,22343201,22266615,31366,10179,22343201,22266615,4092459,1598698,4603658575,4411986582,100,100,100,100,0.77,0.64,0.49,0.5
-77067,48,201,48201,30559,10595,15549489,15518005,30559,10595,15549489,15518005,4092459,1598698,4603658575,4411986582,100,100,100,100,0.75,0.66,0.34,0.35
-77068,48,201,48201,10064,4180,9984743,9851150,10064,4180,9984743,9851150,4092459,1598698,4603658575,4411986582,100,100,100,100,0.25,0.26,0.22,0.22
-77069,48,201,48201,16541,8643,12526664,12416846,16541,8643,12526664,12416846,4092459,1598698,4603658575,4411986582,100,100,100,100,0.4,0.54,0.27,0.28
-77070,48,201,48201,46017,20131,34058755,33700571,46017,20131,34058755,33700571,4092459,1598698,4603658575,4411986582,100,100,100,100,1.12,1.26,0.74,0.76
-77071,48,201,48201,25671,10423,11657805,11571164,25671,10423,11657805,11571164,4092459,1598698,4603658575,4411986582,100,100,100,100,0.63,0.65,0.25,0.26
-77072,48,201,48201,56526,18964,18966653,18952884,56526,18964,18966653,18952884,4092459,1598698,4603658575,4411986582,100,100,100,100,1.38,1.19,0.41,0.43
-77073,48,201,48201,34790,12060,36033819,35838025,34790,12060,36033819,35838025,4092459,1598698,4603658575,4411986582,100,100,100,100,0.85,0.75,0.78,0.81
-77074,48,201,48201,37267,14331,14147187,14087207,37267,14331,14147187,14087207,4092459,1598698,4603658575,4411986582,100,100,100,100,0.91,0.9,0.31,0.32
-77075,48,201,48201,37388,12024,28986701,28504209,37388,12024,28986701,28504209,4092459,1598698,4603658575,4411986582,100,100,100,100,0.91,0.75,0.63,0.65
-77076,48,201,48201,33803,10193,12363574,12362319,33803,10193,12363574,12362319,4092459,1598698,4603658575,4411986582,100,100,100,100,0.83,0.64,0.27,0.28
-77077,48,201,48201,52151,27105,22776239,22570700,52151,27105,22776239,22570700,4092459,1598698,4603658575,4411986582,100,100,100,100,1.27,1.7,0.49,0.51
-77078,48,201,48201,14777,4898,27962563,27739005,14777,4898,27962563,27739005,4092459,1598698,4603658575,4411986582,100,100,100,100,0.36,0.31,0.61,0.63
-77079,48,201,48201,31280,13335,19056041,18911214,31280,13335,19056041,18911214,4092459,1598698,4603658575,4411986582,100,100,100,100,0.76,0.83,0.41,0.43
-77080,48,201,48201,45275,16376,16620993,16532128,45275,16376,16620993,16532128,4092459,1598698,4603658575,4411986582,100,100,100,100,1.11,1.02,0.36,0.37
-77081,48,201,48201,47860,19352,8023198,8019956,47860,19352,8023198,8019956,4092459,1598698,4603658575,4411986582,100,100,100,100,1.17,1.21,0.17,0.18
-77082,48,201,48201,49900,23058,32936637,32515705,49900,23058,32936637,32515705,4092459,1598698,4603658575,4411986582,100,100,100,100,1.22,1.44,0.72,0.74
-77083,48,157,48157,31168,9089,10845850,10791453,70837,21719,26781323,26713360,585375,197030,2293021865,2231225129,44,41.85,40.5,40.4,5.32,4.61,0.47,0.48
-77083,48,201,48201,39669,12630,15935473,15921907,70837,21719,26781323,26713360,4092459,1598698,4603658575,4411986582,56,58.15,59.5,59.6,0.97,0.79,0.35,0.36
-77084,48,201,48201,95137,33731,79956017,79630562,95137,33731,79956017,79630562,4092459,1598698,4603658575,4411986582,100,100,100,100,2.32,2.11,1.74,1.8
-77085,48,157,48157,433,128,374625,374260,16074,4857,13725014,13711520,585375,197030,2293021865,2231225129,2.69,2.64,2.73,2.73,0.07,0.06,0.02,0.02
-77085,48,201,48201,15641,4729,13350389,13337260,16074,4857,13725014,13711520,4092459,1598698,4603658575,4411986582,97.31,97.36,97.27,97.27,0.38,0.3,0.29,0.3
-77086,48,201,48201,28009,8375,17586611,17568012,28009,8375,17586611,17568012,4092459,1598698,4603658575,4411986582,100,100,100,100,0.68,0.52,0.38,0.4
-77087,48,201,48201,36399,11494,17346695,17258938,36399,11494,17346695,17258938,4092459,1598698,4603658575,4411986582,100,100,100,100,0.89,0.72,0.38,0.39
-77088,48,201,48201,49660,17680,29137325,28967373,49660,17680,29137325,28967373,4092459,1598698,4603658575,4411986582,100,100,100,100,1.21,1.11,0.63,0.66
-77089,48,201,48201,48685,16805,34393296,32931806,48685,16805,34393296,32931806,4092459,1598698,4603658575,4411986582,100,100,100,100,1.19,1.05,0.75,0.75
-77090,48,201,48201,32930,16429,21422411,21289363,32930,16429,21422411,21289363,4092459,1598698,4603658575,4411986582,100,100,100,100,0.8,1.03,0.47,0.48
-77091,48,201,48201,23472,10992,18679320,18598945,23472,10992,18679320,18598945,4092459,1598698,4603658575,4411986582,100,100,100,100,0.57,0.69,0.41,0.42
-77092,48,201,48201,33745,14870,19766496,19724204,33745,14870,19766496,19724204,4092459,1598698,4603658575,4411986582,100,100,100,100,0.82,0.93,0.43,0.45
-77093,48,201,48201,46929,13858,31167816,31147290,46929,13858,31167816,31147290,4092459,1598698,4603658575,4411986582,100,100,100,100,1.15,0.87,0.68,0.71
-77094,48,201,48201,8498,3189,30006795,29196393,8498,3189,30006795,29196393,4092459,1598698,4603658575,4411986582,100,100,100,100,0.21,0.2,0.65,0.66
-77095,48,201,48201,66502,23943,40237262,39850707,66502,23943,40237262,39850707,4092459,1598698,4603658575,4411986582,100,100,100,100,1.62,1.5,0.87,0.9
-77096,48,201,48201,32628,15431,15651343,15503253,32628,15431,15651343,15503253,4092459,1598698,4603658575,4411986582,100,100,100,100,0.8,0.97,0.34,0.35
-77098,48,201,48201,13076,9064,4598264,4598100,13076,9064,4598264,4598100,4092459,1598698,4603658575,4411986582,100,100,100,100,0.32,0.57,0.1,0.1
-77099,48,157,48157,2076,843,1008521,1002308,47091,17439,16124212,16112274,585375,197030,2293021865,2231225129,4.41,4.83,6.25,6.22,0.35,0.43,0.04,0.04
-77099,48,201,48201,45015,16596,15115691,15109966,47091,17439,16124212,16112274,4092459,1598698,4603658575,4411986582,95.59,95.17,93.75,93.78,1.1,1.04,0.33,0.34
-77201,48,201,48201,0,0,117997,117997,0,0,117997,117997,4092459,1598698,4603658575,4411986582,0,0,100,100,0,0,0,0
-77301,48,339,48339,30769,10173,49056630,48945459,30769,10173,49056630,48945459,455746,177647,2789103210,2698080682,100,100,100,100,6.75,5.73,1.76,1.81
-77302,48,339,48339,18118,6545,150611765,149391338,18118,6545,150611765,149391338,455746,177647,2789103210,2698080682,100,100,100,100,3.98,3.68,5.4,5.54
-77303,48,339,48339,16710,6225,160648273,160149089,16710,6225,160648273,160149089,455746,177647,2789103210,2698080682,100,100,100,100,3.67,3.5,5.76,5.94
-77304,48,339,48339,21314,10203,102949357,98022294,21314,10203,102949357,98022294,455746,177647,2789103210,2698080682,100,100,100,100,4.68,5.74,3.69,3.63
-77306,48,339,48339,11931,4061,106612384,106523013,11931,4061,106612384,106523013,455746,177647,2789103210,2698080682,100,100,100,100,2.62,2.29,3.82,3.95
-77316,48,339,48339,16036,6185,328775755,326851688,16036,6185,328775755,326851688,455746,177647,2789103210,2698080682,100,100,100,100,3.52,3.48,11.79,12.11
-77318,48,339,48339,14281,6780,130539588,99325132,14281,6780,130539588,99325132,455746,177647,2789103210,2698080682,100,100,100,100,3.13,3.82,4.68,3.68
-77320,48,407,48407,991,762,74551854,50245832,33678,10605,868268002,823507805,26384,13187,1626280519,1474331589,2.94,7.19,8.59,6.1,3.76,5.78,4.58,3.41
-77320,48,471,48471,32687,9843,793716148,773261973,33678,10605,868268002,823507805,67861,24058,2075885612,2030987606,97.06,92.81,91.41,93.9,48.17,40.91,38.24,38.07
-77326,48,373,48373,69,42,6169203,6169203,69,42,6169203,6169203,45413,22683,2874005555,2737858277,100,100,100,100,0.15,0.19,0.21,0.23
-77327,48,291,48291,20160,8267,839435523,822812910,20160,8267,839435523,822812910,75643,28759,3046696707,3000284900,100,100,100,100,26.65,28.75,27.55,27.42
-77328,48,291,48291,2223,772,20886712,20770288,13993,5321,422257782,420460789,75643,28759,3046696707,3000284900,15.89,14.51,4.95,4.94,2.94,2.68,0.69,0.69
-77328,48,339,48339,5880,2207,124284835,124133008,13993,5321,422257782,420460789,455746,177647,2789103210,2698080682,42.02,41.48,29.43,29.52,1.29,1.24,4.46,4.6
-77328,48,407,48407,5890,2342,277086235,275557493,13993,5321,422257782,420460789,26384,13187,1626280519,1474331589,42.09,44.01,65.62,65.54,22.32,17.76,17.04,18.69
-77331,48,407,48407,6824,4165,461409592,396554524,6824,4165,461409592,396554524,26384,13187,1626280519,1474331589,100,100,100,100,25.86,31.58,28.37,26.9
-77334,48,471,48471,141,93,37376959,37109060,141,93,37376959,37109060,67861,24058,2075885612,2030987606,100,100,100,100,0.21,0.39,1.8,1.83
-77335,48,373,48373,2350,1246,97666500,94694916,2350,1246,97666500,94694916,45413,22683,2874005555,2737858277,100,100,100,100,5.17,5.49,3.4,3.46
-77336,48,201,48201,12471,4643,111256235,101137904,12471,4643,111256235,101137904,4092459,1598698,4603658575,4411986582,100,100,100,100,0.3,0.29,2.42,2.29
-77338,48,201,48201,33971,13017,70855018,68564213,33971,13017,70855018,68564213,4092459,1598698,4603658575,4411986582,100,100,100,100,0.83,0.81,1.54,1.55
-77339,48,201,48201,30033,12122,33998243,31573809,37512,16137,46184454,43689679,4092459,1598698,4603658575,4411986582,80.06,75.12,73.61,72.27,0.73,0.76,0.74,0.72
-77339,48,339,48339,7479,4015,12186211,12115870,37512,16137,46184454,43689679,455746,177647,2789103210,2698080682,19.94,24.88,26.39,27.73,1.64,2.26,0.44,0.45
-77340,48,471,48471,29809,11634,570767841,563639312,29809,11634,570767841,563639312,67861,24058,2075885612,2030987606,100,100,100,100,43.93,48.36,27.5,27.75
-77342,48,471,48471,23,11,354411,352349,23,11,354411,352349,67861,24058,2075885612,2030987606,100,100,100,100,0.03,0.05,0.02,0.02
-77345,48,201,48201,26122,9822,27542169,21906902,26122,9822,27542169,21906902,4092459,1598698,4603658575,4411986582,100,100,100,100,0.64,0.61,0.6,0.5
-77346,48,201,48201,53578,18490,52300352,44965356,53578,18490,52300352,44965356,4092459,1598698,4603658575,4411986582,100,100,100,100,1.31,1.16,1.14,1.02
-77350,48,373,48373,66,37,6831379,6831379,66,37,6831379,6831379,45413,22683,2874005555,2737858277,100,100,100,100,0.15,0.16,0.24,0.25
-77351,48,373,48373,32517,15525,1834640458,1738898844,32517,15525,1834640458,1738898844,45413,22683,2874005555,2737858277,100,100,100,100,71.6,68.44,63.84,63.51
-77354,48,339,48339,30215,10580,197741712,196583205,30215,10580,197741712,196583205,455746,177647,2789103210,2698080682,100,100,100,100,6.63,5.96,7.09,7.29
-77355,48,339,48339,23011,8069,134141815,133609600,24010,8449,148273748,147741533,455746,177647,2789103210,2698080682,95.84,95.5,90.47,90.43,5.05,4.54,4.81,4.95
-77355,48,473,48473,999,380,14131933,14131933,24010,8449,148273748,147741533,43205,15839,1341143512,1329777937,4.16,4.5,9.53,9.57,2.31,2.4,1.05,1.06
-77356,48,185,48185,113,46,6807414,6695240,24498,12274,378195871,336925884,26604,10917,2076143189,2039510046,0.46,0.37,1.8,1.99,0.42,0.42,0.33,0.33
-77356,48,339,48339,24385,12228,371388457,330230644,24498,12274,378195871,336925884,455746,177647,2789103210,2698080682,99.54,99.63,98.2,98.01,5.35,6.88,13.32,12.24
-77357,48,201,48201,484,186,18488689,18249308,19987,7318,163050817,162611616,4092459,1598698,4603658575,4411986582,2.42,2.54,11.34,11.22,0.01,0.01,0.4,0.41
-77357,48,339,48339,19503,7132,144562128,144362308,19987,7318,163050817,162611616,455746,177647,2789103210,2698080682,97.58,97.46,88.66,88.78,4.28,4.01,5.18,5.35
-77358,48,339,48339,365,160,12379049,12379049,4993,2189,329356967,320687913,455746,177647,2789103210,2698080682,7.31,7.31,3.76,3.86,0.08,0.09,0.44,0.46
-77358,48,407,48407,772,384,98638896,98266414,4993,2189,329356967,320687913,26384,13187,1626280519,1474331589,15.46,17.54,29.95,30.64,2.93,2.91,6.07,6.67
-77358,48,471,48471,3856,1645,218339022,210042450,4993,2189,329356967,320687913,67861,24058,2075885612,2030987606,77.23,75.15,66.29,65.5,5.68,6.84,10.52,10.34
-77359,48,407,48407,721,382,136436187,135960120,721,382,136436187,135960120,26384,13187,1626280519,1474331589,100,100,100,100,2.73,2.9,8.39,9.22
-77360,48,373,48373,5280,3379,121750748,85307813,5280,3379,121750748,85307813,45413,22683,2874005555,2737858277,100,100,100,100,11.63,14.9,4.24,3.12
-77362,48,339,48339,4600,1703,21124250,21091585,4600,1703,21124250,21091585,455746,177647,2789103210,2698080682,100,100,100,100,1.01,0.96,0.76,0.78
-77363,48,185,48185,3063,1459,177082139,175609079,3269,1541,180878879,179405819,26604,10917,2076143189,2039510046,93.7,94.68,97.9,97.88,11.51,13.36,8.53,8.61
-77363,48,473,48473,206,82,3796740,3796740,3269,1541,180878879,179405819,43205,15839,1341143512,1329777937,6.3,5.32,2.1,2.12,0.48,0.52,0.28,0.29
-77364,48,407,48407,2223,1467,93091452,78596680,2223,1467,93091452,78596680,26384,13187,1626280519,1474331589,100,100,100,100,8.43,11.12,5.72,5.33
-77365,48,201,48201,143,72,4062100,3844218,25769,9289,93354790,91897689,4092459,1598698,4603658575,4411986582,0.55,0.78,4.35,4.18,0,0,0.09,0.09
-77365,48,339,48339,25626,9217,89292690,88053471,25769,9289,93354790,91897689,455746,177647,2789103210,2698080682,99.45,99.22,95.65,95.82,5.62,5.19,3.2,3.26
-77367,48,471,48471,143,124,2415087,2086101,143,124,2415087,2086101,67861,24058,2075885612,2030987606,100,100,100,100,0.21,0.52,0.12,0.1
-77368,48,291,48291,152,104,20505863,19572169,152,104,20505863,19572169,75643,28759,3046696707,3000284900,100,100,100,100,0.2,0.36,0.67,0.65
-77369,48,199,48199,56,21,1698621,1694415,1018,575,95359717,94858185,54635,22597,2324650383,2306558884,5.5,3.65,1.78,1.79,0.1,0.09,0.07,0.07
-77369,48,291,48291,962,554,93661096,93163770,1018,575,95359717,94858185,75643,28759,3046696707,3000284900,94.5,96.35,98.22,98.21,1.27,1.93,3.07,3.11
-77371,48,291,48291,13,7,255387,255387,7665,3159,335409192,329447586,75643,28759,3046696707,3000284900,0.17,0.22,0.08,0.08,0.02,0.02,0.01,0.01
-77371,48,407,48407,7652,3152,335153805,329192199,7665,3159,335409192,329447586,26384,13187,1626280519,1474331589,99.83,99.78,99.92,99.92,29,23.9,20.61,22.33
-77372,48,291,48291,2820,1064,37355073,37355073,12164,4544,134905048,134425311,75643,28759,3046696707,3000284900,23.18,23.42,27.69,27.79,3.73,3.7,1.23,1.25
-77372,48,339,48339,9344,3480,97549975,97070238,12164,4544,134905048,134425311,455746,177647,2789103210,2698080682,76.82,76.58,72.31,72.21,2.05,1.96,3.5,3.6
-77373,48,201,48201,54609,19307,62363719,61441336,54609,19307,62363719,61441336,4092459,1598698,4603658575,4411986582,100,100,100,100,1.33,1.21,1.35,1.39
-77374,48,199,48199,510,213,134679190,134321050,510,213,134679190,134321050,54635,22597,2324650383,2306558884,100,100,100,100,0.93,0.94,5.79,5.82
-77375,48,201,48201,39351,14626,89529846,88185870,39351,14626,89529846,88185870,4092459,1598698,4603658575,4411986582,100,100,100,100,0.96,0.91,1.94,2
-77376,48,199,48199,617,250,80148770,80081161,617,250,80148770,80081161,54635,22597,2324650383,2306558884,100,100,100,100,1.13,1.11,3.45,3.47
-77377,48,201,48201,28708,10136,101945303,100733936,28708,10136,101945303,100733936,4092459,1598698,4603658575,4411986582,100,100,100,100,0.7,0.63,2.21,2.28
-77378,48,339,48339,13374,4754,143437255,142412048,14685,5287,253203356,251855683,455746,177647,2789103210,2698080682,91.07,89.92,56.65,56.55,2.93,2.68,5.14,5.28
-77378,48,407,48407,1311,533,109766101,109443635,14685,5287,253203356,251855683,26384,13187,1626280519,1474331589,8.93,10.08,43.35,43.45,4.97,4.04,6.75,7.42
-77379,48,201,48201,70544,25531,66628223,65082885,70544,25531,66628223,65082885,4092459,1598698,4603658575,4411986582,100,100,100,100,1.72,1.6,1.45,1.48
-77380,48,339,48339,23136,11248,32730426,32192102,23136,11248,32730426,32192102,455746,177647,2789103210,2698080682,100,100,100,100,5.08,6.33,1.17,1.19
-77381,48,339,48339,34961,13948,34331794,33951991,34961,13948,34331794,33951991,455746,177647,2789103210,2698080682,100,100,100,100,7.67,7.85,1.23,1.26
-77382,48,339,48339,35369,12736,29390714,29199377,35369,12736,29390714,29199377,455746,177647,2789103210,2698080682,100,100,100,100,7.76,7.17,1.05,1.08
-77384,48,339,48339,11857,5593,45666955,45288522,11857,5593,45666955,45288522,455746,177647,2789103210,2698080682,100,100,100,100,2.6,3.15,1.64,1.68
-77385,48,339,48339,19534,6887,57593480,56480919,19534,6887,57593480,56480919,455746,177647,2789103210,2698080682,100,100,100,100,4.29,3.88,2.06,2.09
-77386,48,339,48339,36407,12870,106217425,104261025,36407,12870,106217425,104261025,455746,177647,2789103210,2698080682,100,100,100,100,7.99,7.24,3.81,3.86
-77388,48,201,48201,40384,14196,36226531,36034805,40384,14196,36226531,36034805,4092459,1598698,4603658575,4411986582,100,100,100,100,0.99,0.89,0.79,0.82
-77389,48,201,48201,21255,7569,54723845,54033376,21255,7569,54723845,54033376,4092459,1598698,4603658575,4411986582,100,100,100,100,0.52,0.47,1.19,1.22
-77396,48,201,48201,43317,14394,69846068,69437393,43317,14394,69846068,69437393,4092459,1598698,4603658575,4411986582,100,100,100,100,1.06,0.9,1.52,1.57
-77401,48,201,48201,17491,6844,9717907,9715941,17491,6844,9717907,9715941,4092459,1598698,4603658575,4411986582,100,100,100,100,0.43,0.43,0.21,0.22
-77406,48,157,48157,33682,11373,173121585,168078895,33682,11373,173121585,168078895,585375,197030,2293021865,2231225129,100,100,100,100,5.75,5.77,7.55,7.53
-77407,48,157,48157,28595,9478,50627974,48783490,28595,9478,50627974,48783490,585375,197030,2293021865,2231225129,100,100,100,100,4.88,4.81,2.21,2.19
-77412,48,089,48089,106,66,23682052,22514064,106,66,23682052,22514064,20874,10527,2521834352,2487097169,100,100,100,100,0.51,0.63,0.94,0.91
-77414,48,321,48321,23047,11902,1384619577,1342527212,23047,11902,1384619577,1342527212,36702,18801,4176380439,2849700666,100,100,100,100,62.79,63.31,33.15,47.11
-77415,48,321,48321,46,20,4546798,4500166,46,20,4546798,4500166,36702,18801,4176380439,2849700666,100,100,100,100,0.13,0.11,0.11,0.16
-77417,48,157,48157,2457,984,156276289,155854105,2457,984,156276289,155854105,585375,197030,2293021865,2231225129,100,100,100,100,0.42,0.5,6.82,6.99
-77418,48,015,48015,9585,4432,500413493,492267571,9585,4432,500413493,492267571,28417,12926,1700026094,1674448899,100,100,100,100,33.73,34.29,29.44,29.4
-77419,48,321,48321,1512,611,165660199,163555252,1512,611,165660199,163555252,36702,18801,4176380439,2849700666,100,100,100,100,4.12,3.25,3.97,5.74
-77420,48,481,48481,2205,953,141510211,137936789,2205,953,141510211,137936789,41280,17127,2834404406,2813115336,100,100,100,100,5.34,5.56,4.99,4.9
-77422,48,039,48039,13933,5732,473559038,442380182,13933,5732,473559038,442380182,313166,118336,4166222386,3516429692,100,100,100,100,4.45,4.84,11.37,12.58
-77423,48,157,48157,276,116,16448501,15818018,9483,3471,378288138,373722902,585375,197030,2293021865,2231225129,2.91,3.34,4.35,4.23,0.05,0.06,0.72,0.71
-77423,48,473,48473,9207,3355,361839637,357904884,9483,3471,378288138,373722902,43205,15839,1341143512,1329777937,97.09,96.66,95.65,95.77,21.31,21.18,26.98,26.91
-77426,48,015,48015,140,75,45149692,44603701,2100,1101,234858469,229808335,28417,12926,1700026094,1674448899,6.67,6.81,19.22,19.41,0.49,0.58,2.66,2.66
-77426,48,477,48477,1960,1026,189708777,185204634,2100,1101,234858469,229808335,33718,15514,1610326677,1564232347,93.33,93.19,80.78,80.59,5.81,6.61,11.78,11.84
-77428,48,321,48321,61,64,553656676,214412907,61,64,553656676,214412907,36702,18801,4176380439,2849700666,100,100,100,100,0.17,0.34,13.26,7.52
-77429,48,201,48201,72264,25165,100696640,99413806,72264,25165,100696640,99413806,4092459,1598698,4603658575,4411986582,100,100,100,100,1.77,1.57,2.19,2.25
-77430,48,039,48039,1483,710,247344564,226893167,2283,1029,310616689,289124677,313166,118336,4166222386,3516429692,64.96,69,79.63,78.48,0.47,0.6,5.94,6.45
-77430,48,157,48157,800,319,63272125,62231510,2283,1029,310616689,289124677,585375,197030,2293021865,2231225129,35.04,31,20.37,21.52,0.14,0.16,2.76,2.79
-77432,48,481,48481,173,70,65643821,65545906,173,70,65643821,65545906,41280,17127,2834404406,2813115336,100,100,100,100,0.42,0.41,2.32,2.33
-77433,48,201,48201,50539,16596,153522506,151067254,50539,16596,153522506,151067254,4092459,1598698,4603658575,4411986582,100,100,100,100,1.23,1.04,3.33,3.42
-77434,48,089,48089,4318,1852,316545937,306241524,4816,2111,508211384,494568459,20874,10527,2521834352,2487097169,89.66,87.73,62.29,61.92,20.69,17.59,12.55,12.31
-77434,48,481,48481,498,259,191665447,188326935,4816,2111,508211384,494568459,41280,17127,2834404406,2813115336,10.34,12.27,37.71,38.08,1.21,1.51,6.76,6.69
-77435,48,089,48089,21,10,13960148,13956709,4539,1819,365052729,363821495,20874,10527,2521834352,2487097169,0.46,0.55,3.82,3.84,0.1,0.09,0.55,0.56
-77435,48,157,48157,410,147,24239575,24159757,4539,1819,365052729,363821495,585375,197030,2293021865,2231225129,9.03,8.08,6.64,6.64,0.07,0.07,1.06,1.08
-77435,48,481,48481,4108,1662,326853006,325705029,4539,1819,365052729,363821495,41280,17127,2834404406,2813115336,90.5,91.37,89.54,89.52,9.95,9.7,11.53,11.58
-77436,48,481,48481,73,48,16720378,16702822,73,48,16720378,16702822,41280,17127,2834404406,2813115336,100,100,100,100,0.18,0.28,0.59,0.59
-77437,48,481,48481,17054,6633,838543700,833683206,17054,6633,838543700,833683206,41280,17127,2834404406,2813115336,100,100,100,100,41.31,38.73,29.58,29.64
-77440,48,321,48321,37,17,13205092,13196770,37,17,13205092,13196770,36702,18801,4176380439,2849700666,100,100,100,100,0.1,0.09,0.32,0.46
-77441,48,157,48157,4809,1897,116780558,113215797,4809,1897,116780558,113215797,585375,197030,2293021865,2231225129,100,100,100,100,0.82,0.96,5.09,5.07
-77442,48,089,48089,1137,633,505647217,499670872,1137,633,505647217,499670872,20874,10527,2521834352,2487097169,100,100,100,100,5.45,6.01,20.05,20.09
-77443,48,481,48481,84,60,790106,788374,84,60,790106,788374,41280,17127,2834404406,2813115336,100,100,100,100,0.2,0.35,0.03,0.03
-77444,48,039,48039,251,138,57486037,56933943,784,348,97901354,97078610,313166,118336,4166222386,3516429692,32.02,39.66,58.72,58.65,0.08,0.12,1.38,1.62
-77444,48,157,48157,533,210,40415317,40144667,784,348,97901354,97078610,585375,197030,2293021865,2231225129,67.98,60.34,41.28,41.35,0.09,0.11,1.76,1.8
-77445,48,473,48473,11977,4989,465550478,458546893,11977,4989,465550478,458546893,43205,15839,1341143512,1329777937,100,100,100,100,27.72,31.5,34.71,34.48
-77446,48,473,48473,5217,967,16985916,16985916,5217,967,16985916,16985916,43205,15839,1341143512,1329777937,100,100,100,100,12.07,6.11,1.27,1.28
-77447,48,201,48201,6909,2278,174444669,169196107,11872,4252,264000848,258674539,4092459,1598698,4603658575,4411986582,58.2,53.57,66.08,65.41,0.17,0.14,3.79,3.83
-77447,48,339,48339,1190,465,13282677,13256416,11872,4252,264000848,258674539,455746,177647,2789103210,2698080682,10.02,10.94,5.03,5.12,0.26,0.26,0.48,0.49
-77447,48,473,48473,3773,1509,76273502,76222016,11872,4252,264000848,258674539,43205,15839,1341143512,1329777937,31.78,35.49,28.89,29.47,8.73,9.53,5.69,5.73
-77448,48,481,48481,341,149,16449826,16411763,341,149,16449826,16411763,41280,17127,2834404406,2813115336,100,100,100,100,0.83,0.87,0.58,0.58
-77449,48,201,48201,94382,29238,77813243,77407272,94382,29238,77813243,77407272,4092459,1598698,4603658575,4411986582,100,100,100,100,2.31,1.83,1.69,1.75
-77450,48,157,48157,23986,7815,20372273,19466615,71889,25207,53746671,52706421,585375,197030,2293021865,2231225129,33.37,31,37.9,36.93,4.1,3.97,0.89,0.87
-77450,48,201,48201,47903,17392,33374398,33239806,71889,25207,53746671,52706421,4092459,1598698,4603658575,4411986582,66.63,69,62.1,63.07,1.17,1.09,0.72,0.75
-77451,48,157,48157,77,45,3017386,2993328,77,45,3017386,2993328,585375,197030,2293021865,2231225129,100,100,100,100,0.01,0.02,0.13,0.13
-77453,48,481,48481,301,107,30285166,30106577,301,107,30285166,30106577,41280,17127,2834404406,2813115336,100,100,100,100,0.73,0.62,1.07,1.07
-77454,48,481,48481,217,90,50912301,50770142,217,90,50912301,50770142,41280,17127,2834404406,2813115336,100,100,100,100,0.53,0.53,1.8,1.8
-77455,48,239,48239,30,16,29635437,29631001,2045,857,547998185,546174529,14075,6590,2219286544,2148225451,1.47,1.87,5.41,5.43,0.21,0.24,1.34,1.38
-77455,48,481,48481,2015,841,518362748,516543528,2045,857,547998185,546174529,41280,17127,2834404406,2813115336,98.53,98.13,94.59,94.57,4.88,4.91,18.29,18.36
-77456,48,321,48321,1303,577,136655114,135855313,1303,577,136655114,135855313,36702,18801,4176380439,2849700666,100,100,100,100,3.55,3.07,3.27,4.77
-77457,48,321,48321,651,1085,30038250,26169582,651,1085,30038250,26169582,36702,18801,4176380439,2849700666,100,100,100,100,1.77,5.77,0.72,0.92
-77458,48,321,48321,468,182,94580220,93936365,468,182,94580220,93936365,36702,18801,4176380439,2849700666,100,100,100,100,1.28,0.97,2.26,3.3
-77459,48,157,48157,56274,19287,89061732,84895370,56274,19287,89061732,84895370,585375,197030,2293021865,2231225129,100,100,100,100,9.61,9.79,3.88,3.8
-77460,48,089,48089,73,33,1797919,1797919,73,33,1797919,1797919,20874,10527,2521834352,2487097169,100,100,100,100,0.35,0.31,0.07,0.07
-77461,48,157,48157,10679,4017,389669035,382902274,10679,4017,389669035,382902274,585375,197030,2293021865,2231225129,100,100,100,100,1.82,2.04,16.99,17.16
-77464,48,157,48157,221,92,4792939,4779053,221,92,4792939,4779053,585375,197030,2293021865,2231225129,100,100,100,100,0.04,0.05,0.21,0.21
-77465,48,057,48057,96,218,18646468,16286205,7161,3712,540803920,504455986,21381,11410,2674618446,1312710613,1.34,5.87,3.45,3.23,0.45,1.91,0.7,1.24
-77465,48,239,48239,586,568,135411329,121506778,7161,3712,540803920,504455986,14075,6590,2219286544,2148225451,8.18,15.3,25.04,24.09,4.16,8.62,6.1,5.66
-77465,48,321,48321,6479,2926,386746123,366663003,7161,3712,540803920,504455986,36702,18801,4176380439,2849700666,90.48,78.83,71.51,72.68,17.65,15.56,9.26,12.87
-77466,48,473,48473,690,264,30135952,29942960,690,264,30135952,29942960,43205,15839,1341143512,1329777937,100,100,100,100,1.6,1.67,2.25,2.25
-77467,48,481,48481,57,33,63827064,63793093,57,33,63827064,63793093,41280,17127,2834404406,2813115336,100,100,100,100,0.14,0.19,2.25,2.27
-77468,48,321,48321,131,73,49887457,49740368,131,73,49887457,49740368,36702,18801,4176380439,2849700666,100,100,100,100,0.36,0.39,1.19,1.75
-77469,48,157,48157,35321,11767,354921369,338646079,35321,11767,354921369,338646079,585375,197030,2293021865,2231225129,100,100,100,100,6.03,5.97,15.48,15.18
-77470,48,089,48089,338,197,75004047,73978387,338,197,75004047,73978387,20874,10527,2521834352,2487097169,100,100,100,100,1.62,1.87,2.97,2.97
-77471,48,157,48157,35241,12687,227989187,223498118,35241,12687,227989187,223498118,585375,197030,2293021865,2231225129,100,100,100,100,6.02,6.44,9.94,10.02
-77473,48,015,48015,97,43,303620,303620,97,43,303620,303620,28417,12926,1700026094,1674448899,100,100,100,100,0.34,0.33,0.02,0.02
-77474,48,015,48015,12782,5233,548842471,538810613,12782,5233,548842471,538810613,28417,12926,1700026094,1674448899,100,100,100,100,44.98,40.48,32.28,32.18
-77475,48,089,48089,773,488,62756160,61521039,773,488,62756160,61521039,20874,10527,2521834352,2487097169,100,100,100,100,3.7,4.64,2.49,2.47
-77476,48,157,48157,313,144,13888738,13324210,313,144,13888738,13324210,585375,197030,2293021865,2231225129,100,100,100,100,0.05,0.07,0.61,0.6
-77477,48,157,48157,32106,12218,25887525,25656560,35897,13682,27308927,27077487,585375,197030,2293021865,2231225129,89.44,89.3,94.8,94.75,5.48,6.2,1.13,1.15
-77477,48,201,48201,3791,1464,1421402,1420927,35897,13682,27308927,27077487,4092459,1598698,4603658575,4411986582,10.56,10.7,5.2,5.25,0.09,0.09,0.03,0.03
-77478,48,157,48157,24739,9371,26798559,25191938,24739,9371,26798559,25191938,585375,197030,2293021865,2231225129,100,100,100,100,4.23,4.76,1.17,1.13
-77479,48,157,48157,74514,24980,89647310,85627045,74514,24980,89647310,85627045,585375,197030,2293021865,2231225129,100,100,100,100,12.73,12.68,3.91,3.84
-77480,48,039,48039,7748,3187,324517874,317513757,8097,3357,376186488,368645101,313166,118336,4166222386,3516429692,95.69,94.94,86.27,86.13,2.47,2.69,7.79,9.03
-77480,48,321,48321,349,170,51668614,51131344,8097,3357,376186488,368645101,36702,18801,4176380439,2849700666,4.31,5.06,13.73,13.87,0.95,0.9,1.24,1.79
-77481,48,157,48157,35,13,21352904,20715931,35,13,21352904,20715931,585375,197030,2293021865,2231225129,100,100,100,100,0.01,0.01,0.93,0.93
-77482,48,321,48321,2307,937,154187421,153232094,2307,937,154187421,153232094,36702,18801,4176380439,2849700666,100,100,100,100,6.29,4.98,3.69,5.38
-77483,48,321,48321,311,233,110910583,93669401,311,233,110910583,93669401,36702,18801,4176380439,2849700666,100,100,100,100,0.85,1.24,2.66,3.29
-77484,48,185,48185,220,85,2011712,2008397,11068,4357,402505730,401022940,26604,10917,2076143189,2039510046,1.99,1.95,0.5,0.5,0.83,0.78,0.1,0.1
-77484,48,201,48201,2184,845,82706009,81409293,11068,4357,402505730,401022940,4092459,1598698,4603658575,4411986582,19.73,19.39,20.55,20.3,0.05,0.05,1.8,1.85
-77484,48,473,48473,8664,3427,317788009,317605250,11068,4357,402505730,401022940,43205,15839,1341143512,1329777937,78.28,78.66,78.95,79.2,20.05,21.64,23.7,23.88
-77485,48,015,48015,2220,998,107714885,106304821,4054,1769,221258870,215833937,28417,12926,1700026094,1674448899,54.76,56.42,48.68,49.25,7.81,7.72,6.34,6.35
-77485,48,157,48157,1828,769,108659580,104709408,4054,1769,221258870,215833937,585375,197030,2293021865,2231225129,45.09,43.47,49.11,48.51,0.31,0.39,4.74,4.69
-77485,48,481,48481,6,2,4884405,4819708,4054,1769,221258870,215833937,41280,17127,2834404406,2813115336,0.15,0.11,2.21,2.23,0.01,0.01,0.17,0.17
-77486,48,039,48039,6851,2992,126357163,122999380,6851,2992,126357163,122999380,313166,118336,4166222386,3516429692,100,100,100,100,2.19,2.53,3.03,3.5
-77488,48,481,48481,14148,6220,567956227,561981464,14148,6220,567956227,561981464,41280,17127,2834404406,2813115336,100,100,100,100,34.27,36.32,20.04,19.98
-77489,48,157,48157,34381,11698,28544637,27997856,35554,12085,29650350,29100217,585375,197030,2293021865,2231225129,96.7,96.8,96.27,96.21,5.87,5.94,1.24,1.25
-77489,48,201,48201,1173,387,1105713,1102361,35554,12085,29650350,29100217,4092459,1598698,4603658575,4411986582,3.3,3.2,3.73,3.79,0.03,0.02,0.02,0.02
-77493,48,157,48157,169,56,135549,135549,23104,7643,150868269,149434098,585375,197030,2293021865,2231225129,0.73,0.73,0.09,0.09,0.03,0.03,0.01,0.01
-77493,48,201,48201,20605,6797,104322308,102888137,23104,7643,150868269,149434098,4092459,1598698,4603658575,4411986582,89.18,88.93,69.15,68.85,0.5,0.43,2.27,2.33
-77493,48,473,48473,2330,790,46410412,46410412,23104,7643,150868269,149434098,43205,15839,1341143512,1329777937,10.08,10.34,30.76,31.06,5.39,4.99,3.46,3.49
-77494,48,157,48157,56481,18282,94590611,93866507,61600,20283,106403688,105612110,585375,197030,2293021865,2231225129,91.69,90.13,88.9,88.88,9.65,9.28,4.13,4.21
-77494,48,201,48201,5008,1937,6984145,6916671,61600,20283,106403688,105612110,4092459,1598698,4603658575,4411986582,8.13,9.55,6.56,6.55,0.12,0.12,0.15,0.16
-77494,48,473,48473,111,64,4828932,4828932,61600,20283,106403688,105612110,43205,15839,1341143512,1329777937,0.18,0.32,4.54,4.57,0.26,0.4,0.36,0.36
-77498,48,157,48157,49906,15554,41759769,40104373,49906,15554,41759769,40104373,585375,197030,2293021865,2231225129,100,100,100,100,8.53,7.89,1.82,1.8
-77502,48,201,48201,37995,12079,14541491,14541491,37995,12079,14541491,14541491,4092459,1598698,4603658575,4411986582,100,100,100,100,0.93,0.76,0.32,0.33
-77503,48,201,48201,24251,8883,23199238,22174586,24251,8883,23199238,22174586,4092459,1598698,4603658575,4411986582,100,100,100,100,0.59,0.56,0.5,0.5
-77504,48,201,48201,24529,9883,14387064,14299172,24529,9883,14387064,14299172,4092459,1598698,4603658575,4411986582,100,100,100,100,0.6,0.62,0.31,0.32
-77505,48,201,48201,23223,8881,23883576,23708778,23223,8881,23883576,23708778,4092459,1598698,4603658575,4411986582,100,100,100,100,0.57,0.56,0.52,0.54
-77506,48,201,48201,35977,12156,27514911,23704366,35977,12156,27514911,23704366,4092459,1598698,4603658575,4411986582,100,100,100,100,0.88,0.76,0.6,0.54
-77507,48,201,48201,0,0,37395425,36113651,0,0,37395425,36113651,4092459,1598698,4603658575,4411986582,0,0,100,100,0,0,0.81,0.82
-77510,48,167,48167,13731,5478,76588677,76091764,13731,5478,76588677,76091764,291309,132492,2263154028,979943275,100,100,100,100,4.71,4.13,3.38,7.76
-77511,48,039,48039,43772,16589,363760405,360491724,46627,17688,414148224,410573426,313166,118336,4166222386,3516429692,93.88,93.79,87.83,87.8,13.98,14.02,8.73,10.25
-77511,48,167,48167,2855,1099,50387819,50081702,46627,17688,414148224,410573426,291309,132492,2263154028,979943275,6.12,6.21,12.17,12.2,0.98,0.83,2.23,5.11
-77514,48,071,48071,4942,2179,593749080,564766886,4942,2179,593749080,564766886,35096,13291,2256353557,1546578832,100,100,100,100,14.08,16.39,26.31,36.52
-77515,48,039,48039,30309,11330,555433881,530525634,30309,11330,555433881,530525634,313166,118336,4166222386,3516429692,100,100,100,100,9.68,9.57,13.33,15.09
-77517,48,167,48167,5315,2024,52594625,52206320,5315,2024,52594625,52206320,291309,132492,2263154028,979943275,100,100,100,100,1.82,1.53,2.32,5.33
-77518,48,167,48167,8673,3427,7557292,7114003,8673,3427,7557292,7114003,291309,132492,2263154028,979943275,100,100,100,100,2.98,2.59,0.33,0.73
-77519,48,199,48199,1191,513,107861940,107258205,1191,513,107861940,107258205,54635,22597,2324650383,2306558884,100,100,100,100,2.18,2.27,4.64,4.65
-77520,48,201,48201,36489,14316,97490257,62010184,36489,14316,97490257,62010184,4092459,1598698,4603658575,4411986582,100,100,100,100,0.89,0.9,2.12,1.41
-77521,48,071,48071,2927,1082,8310961,8308427,49507,19637,108566548,107414166,35096,13291,2256353557,1546578832,5.91,5.51,7.66,7.73,8.34,8.14,0.37,0.54
-77521,48,201,48201,46580,18555,100255587,99105739,49507,19637,108566548,107414166,4092459,1598698,4603658575,4411986582,94.09,94.49,92.34,92.27,1.14,1.16,2.18,2.25
-77523,48,071,48071,17031,6064,260422338,233116090,17031,6064,260422338,233116090,35096,13291,2256353557,1546578832,100,100,100,100,48.53,45.62,11.54,15.07
-77530,48,201,48201,31086,9822,43867380,34079270,31086,9822,43867380,34079270,4092459,1598698,4603658575,4411986582,100,100,100,100,0.76,0.61,0.95,0.77
-77531,48,039,48039,15639,6394,53482904,50930385,15639,6394,53482904,50930385,313166,118336,4166222386,3516429692,100,100,100,100,4.99,5.4,1.28,1.45
-77532,48,201,48201,26236,9887,215350823,203088292,26236,9887,215350823,203088292,4092459,1598698,4603658575,4411986582,100,100,100,100,0.64,0.62,4.68,4.6
-77533,48,291,48291,1022,451,66670028,66606384,1022,451,66670028,66606384,75643,28759,3046696707,3000284900,100,100,100,100,1.35,1.57,2.19,2.22
-77534,48,039,48039,2863,1055,97149336,93213680,2863,1055,97149336,93213680,313166,118336,4166222386,3516429692,100,100,100,100,0.91,0.89,2.33,2.65
-77535,48,071,48071,1769,652,21117688,20658726,31295,10512,821953640,813235437,35096,13291,2256353557,1546578832,5.65,6.2,2.57,2.54,5.04,4.91,0.94,1.34
-77535,48,291,48291,29526,9860,800835952,792576711,31295,10512,821953640,813235437,75643,28759,3046696707,3000284900,94.35,93.8,97.43,97.46,39.03,34.28,26.29,26.42
-77536,48,201,48201,30690,11157,33796651,32410620,30690,11157,33796651,32410620,4092459,1598698,4603658575,4411986582,100,100,100,100,0.75,0.7,0.73,0.73
-77538,48,291,48291,934,370,379383653,377201376,934,370,379383653,377201376,75643,28759,3046696707,3000284900,100,100,100,100,1.23,1.29,12.45,12.57
-77539,48,167,48167,38806,15386,138411541,130507428,38806,15386,138411541,130507428,291309,132492,2263154028,979943275,100,100,100,100,13.32,11.61,6.12,13.32
-77541,48,039,48039,17412,8443,382208392,305789906,17412,8443,382208392,305789906,313166,118336,4166222386,3516429692,100,100,100,100,5.56,7.13,9.17,8.7
-77545,48,157,48157,19431,6125,31987586,31547553,19431,6125,31987586,31547553,585375,197030,2293021865,2231225129,100,100,100,100,3.32,3.11,1.39,1.41
-77546,48,167,48167,25514,9147,45476260,45263969,47636,17268,68697688,68305675,291309,132492,2263154028,979943275,53.56,52.97,66.2,66.27,8.76,6.9,2.01,4.62
-77546,48,201,48201,22122,8121,23221428,23041706,47636,17268,68697688,68305675,4092459,1598698,4603658575,4411986582,46.44,47.03,33.8,33.73,0.54,0.51,0.5,0.52
-77547,48,201,48201,9735,2945,7383714,6904819,9735,2945,7383714,6904819,4092459,1598698,4603658575,4411986582,100,100,100,100,0.24,0.18,0.16,0.16
-77550,48,167,48167,23043,14615,22347205,19443309,23043,14615,22347205,19443309,291309,132492,2263154028,979943275,100,100,100,100,7.91,11.03,0.99,1.98
-77551,48,167,48167,17753,10330,12242535,9878527,17753,10330,12242535,9878527,291309,132492,2263154028,979943275,100,100,100,100,6.09,7.8,0.54,1.01
-77554,48,167,48167,8863,9546,165936306,91697857,8863,9546,165936306,91697857,291309,132492,2263154028,979943275,100,100,100,100,3.04,7.2,7.33,9.36
-77560,48,071,48071,993,403,62033305,61713422,1005,406,81611592,81165723,35096,13291,2256353557,1546578832,98.81,99.26,76.01,76.03,2.83,3.03,2.75,3.99
-77560,48,291,48291,12,3,19578287,19452301,1005,406,81611592,81165723,75643,28759,3046696707,3000284900,1.19,0.74,23.99,23.97,0.02,0.01,0.64,0.65
-77561,48,291,48291,53,30,1406299,1406299,53,30,1406299,1406299,75643,28759,3046696707,3000284900,100,100,100,100,0.07,0.1,0.05,0.05
-77562,48,201,48201,10459,4095,47159675,38443929,10459,4095,47159675,38443929,4092459,1598698,4603658575,4411986582,100,100,100,100,0.26,0.26,1.02,0.87
-77563,48,167,48167,9103,4421,155688725,135980828,9103,4421,155688725,135980828,291309,132492,2263154028,979943275,100,100,100,100,3.12,3.34,6.88,13.88
-77564,48,199,48199,130,55,5073865,5042686,1988,875,136501594,136086336,54635,22597,2324650383,2306558884,6.54,6.29,3.72,3.71,0.24,0.24,0.22,0.22
-77564,48,291,48291,1858,820,131427729,131043650,1988,875,136501594,136086336,75643,28759,3046696707,3000284900,93.46,93.71,96.28,96.29,2.46,2.85,4.31,4.37
-77565,48,167,48167,5790,2913,11666736,9841180,5790,2913,11666736,9841180,291309,132492,2263154028,979943275,100,100,100,100,1.99,2.2,0.52,1
-77566,48,039,48039,28739,11891,72335781,61204176,28739,11891,72335781,61204176,313166,118336,4166222386,3516429692,100,100,100,100,9.18,10.05,1.74,1.74
-77568,48,167,48167,14308,6153,34266778,32551450,14308,6153,34266778,32551450,291309,132492,2263154028,979943275,100,100,100,100,4.91,4.64,1.51,3.32
-77571,48,201,48201,35666,13658,106808960,90520025,35666,13658,106808960,90520025,4092459,1598698,4603658575,4411986582,100,100,100,100,0.87,0.85,2.32,2.05
-77573,48,167,48167,71580,26951,81536413,78141725,71580,26951,81536413,78141725,291309,132492,2263154028,979943275,100,100,100,100,24.57,20.34,3.6,7.97
-77575,48,071,48071,41,15,2179798,2179798,15949,6472,637474903,620248380,35096,13291,2256353557,1546578832,0.26,0.23,0.34,0.35,0.12,0.11,0.1,0.14
-77575,48,291,48291,15908,6457,635295105,618068582,15949,6472,637474903,620248380,75643,28759,3046696707,3000284900,99.74,99.77,99.66,99.65,21.03,22.45,20.85,20.6
-77577,48,039,48039,1368,625,52289729,51780672,1368,625,52289729,51780672,313166,118336,4166222386,3516429692,100,100,100,100,0.44,0.53,1.26,1.47
-77578,48,039,48039,12672,4613,96734627,96568416,12672,4613,96734627,96568416,313166,118336,4166222386,3516429692,100,100,100,100,4.05,3.9,2.32,2.75
-77580,48,071,48071,312,113,8063203,8015644,312,113,8063203,8015644,35096,13291,2256353557,1546578832,100,100,100,100,0.89,0.85,0.36,0.52
-77581,48,039,48039,38540,14403,63001166,62921896,42383,15969,66800024,66686482,313166,118336,4166222386,3516429692,90.93,90.19,94.31,94.35,12.31,12.17,1.51,1.79
-77581,48,201,48201,3843,1566,3798858,3764586,42383,15969,66800024,66686482,4092459,1598698,4603658575,4411986582,9.07,9.81,5.69,5.65,0.09,0.1,0.08,0.09
-77583,48,039,48039,22079,5344,401448439,394585208,28531,7366,440439264,432086749,313166,118336,4166222386,3516429692,77.39,72.55,91.15,91.32,7.05,4.52,9.64,11.22
-77583,48,157,48157,6452,2022,38990825,37501541,28531,7366,440439264,432086749,585375,197030,2293021865,2231225129,22.61,27.45,8.85,8.68,1.1,1.03,1.7,1.68
-77584,48,039,48039,69507,24890,79363700,79173649,70228,25184,83320877,83119298,313166,118336,4166222386,3516429692,98.97,98.83,95.25,95.25,22.19,21.03,1.9,2.25
-77584,48,157,48157,721,294,3957177,3945649,70228,25184,83320877,83119298,585375,197030,2293021865,2231225129,1.03,1.17,4.75,4.75,0.12,0.15,0.17,0.18
-77585,48,199,48199,1014,482,272493150,271756321,1014,482,272493150,271756321,54635,22597,2324650383,2306558884,100,100,100,100,1.86,2.13,11.72,11.78
-77586,48,201,48201,20970,9487,39751831,33634002,20970,9487,39751831,33634002,4092459,1598698,4603658575,4411986582,100,100,100,100,0.51,0.59,0.86,0.76
-77587,48,201,48201,16568,5156,7690445,7689262,16568,5156,7690445,7689262,4092459,1598698,4603658575,4411986582,100,100,100,100,0.4,0.32,0.17,0.17
-77590,48,167,48167,30374,12489,48860798,45679336,30374,12489,48860798,45679336,291309,132492,2263154028,979943275,100,100,100,100,10.43,9.43,2.16,4.66
-77591,48,167,48167,13131,5806,28656494,27963673,13131,5806,28656494,27963673,291309,132492,2263154028,979943275,100,100,100,100,4.51,4.38,1.27,2.85
-77597,48,071,48071,777,357,83203630,56379262,777,357,83203630,56379262,35096,13291,2256353557,1546578832,100,100,100,100,2.21,2.69,3.69,3.65
-77598,48,201,48201,23059,11956,31858190,31342292,23059,11956,31858190,31342292,4092459,1598698,4603658575,4411986582,100,100,100,100,0.56,0.75,0.69,0.71
-77611,48,361,48361,8219,3785,80335978,62436857,8219,3785,80335978,62436857,81837,35313,982977426,864197805,100,100,100,100,10.04,10.72,8.17,7.22
-77612,48,241,48241,8172,3528,565102484,562996457,8901,3860,903337618,900306291,35710,16798,2511505284,2431597700,91.81,91.4,62.56,62.53,22.88,21,22.5,23.15
-77612,48,351,48351,729,332,338235134,337309834,8901,3860,903337618,900306291,14445,7142,2433884522,2418212417,8.19,8.6,37.44,37.47,5.05,4.65,13.9,13.95
-77613,48,245,48245,1218,547,99342607,98498414,1218,547,99342607,98498414,252273,104424,2881748053,2269593704,100,100,100,100,0.48,0.52,3.45,4.34
-77614,48,351,48351,603,277,26793904,26550011,603,277,26793904,26550011,14445,7142,2433884522,2418212417,100,100,100,100,4.17,3.88,1.1,1.1
-77615,48,241,48241,1012,424,41635882,39769576,1012,424,41635882,39769576,35710,16798,2511505284,2431597700,100,100,100,100,2.83,2.52,1.66,1.64
-77616,48,457,48457,1136,561,136306285,135359861,1136,561,136306285,135359861,21766,10579,2423252162,2394445956,100,100,100,100,5.22,5.3,5.62,5.65
-77617,48,167,48167,73,112,18534149,14961475,73,112,18534149,14961475,291309,132492,2263154028,979943275,100,100,100,100,0.03,0.08,0.82,1.53
-77619,48,245,48245,16147,7041,15740567,15465148,16147,7041,15740567,15465148,252273,104424,2881748053,2269593704,100,100,100,100,6.4,6.74,0.55,0.68
-77622,48,245,48245,1390,567,58978468,58132021,1390,567,58978468,58132021,252273,104424,2881748053,2269593704,100,100,100,100,0.55,0.54,2.05,2.56
-77623,48,167,48167,448,232,44075817,40636963,448,232,44075817,40636963,291309,132492,2263154028,979943275,100,100,100,100,0.15,0.18,1.95,4.15
-77624,48,457,48457,856,414,157159140,156969853,856,414,157159140,156969853,21766,10579,2423252162,2394445956,100,100,100,100,3.93,3.91,6.49,6.56
-77625,48,199,48199,8489,3594,804473598,801246599,8489,3594,804473598,801246599,54635,22597,2324650383,2306558884,100,100,100,100,15.54,15.9,34.61,34.74
-77627,48,245,48245,21454,9460,32971721,27407190,21454,9460,32971721,27407190,252273,104424,2881748053,2269593704,100,100,100,100,8.5,9.06,1.14,1.21
-77629,48,245,48245,877,364,165837435,165070876,877,364,165837435,165070876,252273,104424,2881748053,2269593704,100,100,100,100,0.35,0.35,5.75,7.27
-77630,48,361,48361,26796,12422,268160344,234666106,26796,12422,268160344,234666106,81837,35313,982977426,864197805,100,100,100,100,32.74,35.18,27.28,27.15
-77632,48,351,48351,2369,1008,87438673,87317749,22776,9346,351850310,342250452,14445,7142,2433884522,2418212417,10.4,10.79,24.85,25.51,16.4,14.11,3.59,3.61
-77632,48,361,48361,20407,8338,264411637,254932703,22776,9346,351850310,342250452,81837,35313,982977426,864197805,89.6,89.21,75.15,74.49,24.94,23.61,26.9,29.5
-77640,48,245,48245,16875,8395,187618591,99822657,16875,8395,187618591,99822657,252273,104424,2881748053,2269593704,100,100,100,100,6.69,8.04,6.51,4.4
-77642,48,245,48245,37111,15240,55716328,50975851,37111,15240,55716328,50975851,252273,104424,2881748053,2269593704,100,100,100,100,14.71,14.59,1.93,2.25
-77650,48,167,48167,1896,2362,61299097,54502790,1896,2362,61299097,54502790,291309,132492,2263154028,979943275,100,100,100,100,0.65,1.78,2.71,5.56
-77651,48,245,48245,13043,5569,36650633,32066341,13043,5569,36650633,32066341,252273,104424,2881748053,2269593704,100,100,100,100,5.17,5.33,1.27,1.41
-77655,48,245,48245,356,178,151386320,121830730,356,178,151386320,121830730,252273,104424,2881748053,2269593704,100,100,100,100,0.14,0.17,5.25,5.37
-77656,48,199,48199,16886,7168,396643353,390730397,17110,7256,413275353,407362397,54635,22597,2324650383,2306558884,98.69,98.79,95.98,95.92,30.91,31.72,17.06,16.94
-77656,48,457,48457,224,88,16632000,16632000,17110,7256,413275353,407362397,21766,10579,2423252162,2394445956,1.31,1.21,4.02,4.08,1.03,0.83,0.69,0.69
-77657,48,199,48199,20003,7864,169580976,165949773,20003,7864,169580976,165949773,54635,22597,2324650383,2306558884,100,100,100,100,36.61,34.8,7.29,7.19
-77659,48,199,48199,4910,2016,304483220,301756771,4910,2016,304483220,301756771,54635,22597,2324650383,2306558884,100,100,100,100,8.99,8.92,13.1,13.08
-77660,48,457,48457,1437,684,145544694,143979816,1437,684,145544694,143979816,21766,10579,2423252162,2394445956,100,100,100,100,6.6,6.47,6.01,6.01
-77661,48,071,48071,962,367,105494489,104957086,962,367,105494489,104957086,35096,13291,2256353557,1546578832,100,100,100,100,2.74,2.76,4.68,6.79
-77662,48,241,48241,620,270,53844217,53220364,27035,11038,375243188,360278904,35710,16798,2511505284,2431597700,2.29,2.45,14.35,14.77,1.74,1.61,2.14,2.19
-77662,48,361,48361,26415,10768,321398971,307058540,27035,11038,375243188,360278904,81837,35313,982977426,864197805,97.71,97.55,85.65,85.23,32.28,30.49,32.7,35.53
-77663,48,199,48199,829,421,47513700,46721506,1353,676,57125857,56102831,54635,22597,2324650383,2306558884,61.27,62.28,83.17,83.28,1.52,1.86,2.04,2.03
-77663,48,457,48457,524,255,9612157,9381325,1353,676,57125857,56102831,21766,10579,2423252162,2394445956,38.73,37.72,16.83,16.72,2.41,2.41,0.4,0.39
-77664,48,457,48457,2681,1261,420384015,419969481,2681,1261,420384015,419969481,21766,10579,2423252162,2394445956,100,100,100,100,12.32,11.92,17.35,17.54
-77665,48,071,48071,5336,2058,246940562,245223680,6446,2487,351627711,348794493,35096,13291,2256353557,1546578832,82.78,82.75,70.23,70.31,15.2,15.48,10.94,15.86
-77665,48,245,48245,1110,429,104687149,103570813,6446,2487,351627711,348794493,252273,104424,2881748053,2269593704,17.22,17.25,29.77,29.69,0.44,0.41,3.63,4.56
-77701,48,245,48245,14674,6207,18548323,17883272,14674,6207,18548323,17883272,252273,104424,2881748053,2269593704,100,100,100,100,5.82,5.94,0.64,0.79
-77702,48,245,48245,2893,1404,3207699,3207699,2893,1404,3207699,3207699,252273,104424,2881748053,2269593704,100,100,100,100,1.15,1.34,0.11,0.14
-77703,48,245,48245,15006,6369,36222462,34270346,15006,6369,36222462,34270346,252273,104424,2881748053,2269593704,100,100,100,100,5.95,6.1,1.26,1.51
-77705,48,245,48245,40475,11439,656311346,614483802,40475,11439,656311346,614483802,252273,104424,2881748053,2269593704,100,100,100,100,16.04,10.95,22.77,27.07
-77706,48,245,48245,28258,13626,29282133,29215797,28258,13626,29282133,29215797,252273,104424,2881748053,2269593704,100,100,100,100,11.2,13.05,1.02,1.29
-77707,48,245,48245,17080,6865,38627588,38280414,17080,6865,38627588,38280414,252273,104424,2881748053,2269593704,100,100,100,100,6.77,6.57,1.34,1.69
-77708,48,245,48245,11518,4963,18544580,18330830,11518,4963,18544580,18330830,252273,104424,2881748053,2269593704,100,100,100,100,4.57,4.75,0.64,0.81
-77713,48,245,48245,12788,5761,261642764,258118434,12788,5761,261642764,258118434,252273,104424,2881748053,2269593704,100,100,100,100,5.07,5.52,9.08,11.37
-77801,48,041,48041,15449,7158,8497550,8321605,15449,7158,8497550,8321605,194851,77700,1531299098,1516296157,100,100,100,100,7.93,9.21,0.55,0.55
-77802,48,041,48041,23288,10995,30417659,30417659,23288,10995,30417659,30417659,194851,77700,1531299098,1516296157,100,100,100,100,11.95,14.15,1.99,2.01
-77803,48,041,48041,30252,9802,33298432,33294879,30252,9802,33298432,33294879,194851,77700,1531299098,1516296157,100,100,100,100,15.53,12.62,2.17,2.2
-77807,48,041,48041,9069,3318,217507119,213409923,9699,3611,253547342,249381782,194851,77700,1531299098,1516296157,93.5,91.89,85.79,85.58,4.65,4.27,14.2,14.07
-77807,48,395,48395,630,293,36040223,35971859,9699,3611,253547342,249381782,16622,8484,2241255224,2216209138,6.5,8.11,14.21,14.42,3.79,3.45,1.61,1.62
-77808,48,041,48041,10047,3983,550991563,546705155,10634,4245,652043773,647488798,194851,77700,1531299098,1516296157,94.48,93.83,84.5,84.43,5.16,5.13,35.98,36.06
-77808,48,395,48395,587,262,101052210,100783643,10634,4245,652043773,647488798,16622,8484,2241255224,2216209138,5.52,6.17,15.5,15.57,3.53,3.09,4.51,4.55
-77830,48,185,48185,2534,1321,501183524,488401254,2534,1321,501183524,488401254,26604,10917,2076143189,2039510046,100,100,100,100,9.52,12.1,24.14,23.95
-77831,48,185,48185,3002,1462,439926453,435413225,3426,1726,572331182,566409038,26604,10917,2076143189,2039510046,87.62,84.7,76.87,76.87,11.28,13.39,21.19,21.35
-77831,48,471,48471,424,264,132404729,130995813,3426,1726,572331182,566409038,67861,24058,2075885612,2030987606,12.38,15.3,23.13,23.13,0.62,1.1,6.38,6.45
-77833,48,015,48015,343,191,65334744,64658319,27492,11915,829393123,812523178,28417,12926,1700026094,1674448899,1.25,1.6,7.88,7.96,1.21,1.48,3.84,3.86
-77833,48,477,48477,27149,11724,764058379,747864859,27492,11915,829393123,812523178,33718,15514,1610326677,1564232347,98.75,98.4,92.12,92.04,80.52,75.57,47.45,47.81
-77835,48,015,48015,74,35,4236407,4196028,2351,1501,309799806,290820315,28417,12926,1700026094,1674448899,3.15,2.33,1.37,1.44,0.26,0.27,0.25,0.25
-77835,48,477,48477,2277,1466,305563399,286624287,2351,1501,309799806,290820315,33718,15514,1610326677,1564232347,96.85,97.67,98.63,98.56,6.75,9.45,18.98,18.32
-77836,48,051,48051,11840,5567,1134951963,1119935182,11896,5595,1158251054,1142925401,17187,8832,1752935298,1706870641,99.53,99.5,97.99,97.99,68.89,63.03,64.75,65.61
-77836,48,331,48331,56,28,23299091,22990219,11896,5595,1158251054,1142925401,24757,11305,2646376342,2633837445,0.47,0.5,2.01,2.01,0.23,0.25,0.88,0.87
-77837,48,395,48395,1587,915,273169789,270330449,1587,915,273169789,270330449,16622,8484,2241255224,2216209138,100,100,100,100,9.55,10.79,12.19,12.2
-77840,48,041,48041,56171,22548,29009670,29009670,56171,22548,29009670,29009670,194851,77700,1531299098,1516296157,100,100,100,100,28.83,29.02,1.89,1.91
-77845,48,041,48041,48938,19141,386040120,382123009,48938,19141,386040120,382123009,194851,77700,1531299098,1516296157,100,100,100,100,25.12,24.63,25.21,25.2
-77853,48,287,48287,953,539,131206164,130938927,953,539,131206164,130938927,16612,7499,1642311471,1629142826,100,100,100,100,5.74,7.19,7.99,8.04
-77855,48,289,48289,238,166,67055665,66849600,238,166,67055665,66849600,16801,9509,2798790335,2779447286,100,100,100,100,1.42,1.75,2.4,2.41
-77856,48,395,48395,5096,2835,1024571686,1018716104,5096,2835,1024571686,1018716104,16622,8484,2241255224,2216209138,100,100,100,100,30.66,33.42,45.71,45.97
-77857,48,331,48331,757,373,159593852,158419987,757,373,159593852,158419987,24757,11305,2646376342,2633837445,100,100,100,100,3.06,3.3,6.03,6.01
-77859,48,041,48041,451,219,68904638,68679755,6981,3117,443304638,439496796,194851,77700,1531299098,1516296157,6.46,7.03,15.54,15.63,0.23,0.28,4.5,4.53
-77859,48,395,48395,6530,2898,374400000,370817041,6981,3117,443304638,439496796,16622,8484,2241255224,2216209138,93.54,92.97,84.46,84.37,39.29,34.16,16.7,16.73
-77861,48,185,48185,2506,1186,339657835,329776176,2506,1186,339657835,329776176,26604,10917,2076143189,2039510046,100,100,100,100,9.42,10.86,16.36,16.17
-77864,48,313,48313,7647,3183,525558727,519706347,7647,3183,525558727,519706347,13664,5096,1223596624,1207102873,100,100,100,100,55.96,62.46,42.95,43.05
-77865,48,289,48289,1798,1034,366108654,364866242,1798,1034,366108654,364866242,16801,9509,2798790335,2779447286,100,100,100,100,10.7,10.87,13.08,13.13
-77867,48,395,48395,105,42,32750531,32634636,105,42,32750531,32634636,16622,8484,2241255224,2216209138,100,100,100,100,0.63,0.5,1.46,1.47
-77868,48,041,48041,1186,536,206632347,204334502,15511,5432,712194644,702837645,194851,77700,1531299098,1516296157,7.65,9.87,29.01,29.07,0.61,0.69,13.49,13.48
-77868,48,185,48185,14267,4869,497269411,490319368,15511,5432,712194644,702837645,26604,10917,2076143189,2039510046,91.98,89.64,69.82,69.76,53.63,44.6,23.95,24.04
-77868,48,473,48473,31,12,3402001,3402001,15511,5432,712194644,702837645,43205,15839,1341143512,1329777937,0.2,0.22,0.48,0.48,0.07,0.08,0.25,0.26
-77868,48,477,48477,27,15,4890885,4781774,15511,5432,712194644,702837645,33718,15514,1610326677,1564232347,0.17,0.28,0.69,0.68,0.08,0.1,0.3,0.31
-77871,48,289,48289,2702,1550,319568525,317588228,3368,1930,516151743,511897000,16801,9509,2798790335,2779447286,80.23,80.31,61.91,62.04,16.08,16.3,11.42,11.43
-77871,48,313,48313,666,380,196583218,194308772,3368,1930,516151743,511897000,13664,5096,1223596624,1207102873,19.77,19.69,38.09,37.96,4.87,7.46,16.07,16.1
-77872,48,313,48313,1716,837,197467406,195227418,1716,837,197467406,195227418,13664,5096,1223596624,1207102873,100,100,100,100,12.56,16.42,16.14,16.17
-77873,48,185,48185,702,382,85008736,84372117,1292,656,210546155,209248845,26604,10917,2076143189,2039510046,54.33,58.23,40.38,40.32,2.64,3.5,4.09,4.14
-77873,48,339,48339,351,183,92607610,92201291,1292,656,210546155,209248845,455746,177647,2789103210,2698080682,27.17,27.9,43.98,44.06,0.08,0.1,3.32,3.42
-77873,48,471,48471,239,91,32929809,32675437,1292,656,210546155,209248845,67861,24058,2075885612,2030987606,18.5,13.87,15.64,15.62,0.35,0.38,1.59,1.61
-77876,48,185,48185,197,107,27195965,26915190,197,107,27195965,26915190,26604,10917,2076143189,2039510046,100,100,100,100,0.74,0.98,1.31,1.32
-77878,48,051,48051,475,250,65386022,64884806,475,250,65386022,64884806,17187,8832,1752935298,1706870641,100,100,100,100,2.76,2.83,3.73,3.8
-77879,48,051,48051,4670,2912,515933236,485590931,4670,2912,515933236,485590931,17187,8832,1752935298,1706870641,100,100,100,100,27.17,32.97,29.43,28.45
-77880,48,477,48477,1879,1007,251822829,246879524,1879,1007,251822829,246879524,33718,15514,1610326677,1564232347,100,100,100,100,5.57,6.49,15.64,15.78
-77901,48,469,48469,41548,16779,51231891,51231891,41548,16779,51231891,51231891,86793,35417,2302073320,2284739169,100,100,100,100,47.87,47.38,2.23,2.24
-77904,48,469,48469,25002,10427,312754915,312480086,25002,10427,312754915,312480086,86793,35417,2302073320,2284739169,100,100,100,100,28.81,29.44,13.59,13.68
-77905,48,175,48175,947,435,81517337,71798668,13981,5712,1108575939,1087253825,7210,3710,2225756209,2206706631,6.77,7.62,7.35,6.6,13.13,11.73,3.66,3.25
-77905,48,469,48469,13034,5277,1027058602,1015455157,13981,5712,1108575939,1087253825,86793,35417,2302073320,2284739169,93.23,92.38,92.65,93.4,15.02,14.9,44.61,44.45
-77950,48,007,48007,7,13,129869168,123526144,197,179,228681381,221725146,23158,15355,1367489944,652868851,3.55,7.26,56.79,55.71,0.03,0.08,9.5,18.92
-77950,48,391,48391,190,166,98812213,98199002,197,179,228681381,221725146,7383,3726,2119239623,1995440836,96.45,92.74,43.21,44.29,2.57,4.46,4.66,4.92
-77951,48,469,48469,2616,1035,62086961,61215598,2616,1035,62086961,61215598,86793,35417,2302073320,2284739169,100,100,100,100,3.01,2.92,2.7,2.68
-77954,48,123,48123,11490,4704,932979256,931240782,11506,4724,960198260,958386497,20097,9176,2358155287,2354235330,99.86,99.58,97.17,97.17,57.17,51.26,39.56,39.56
-77954,48,177,48177,16,20,27219004,27145715,11506,4724,960198260,958386497,19807,8794,2770909268,2762708316,0.14,0.42,2.83,2.83,0.08,0.23,0.98,0.98
-77957,48,239,48239,8187,3753,992162428,979064980,8187,3753,992162428,979064980,14075,6590,2219286544,2148225451,100,100,100,100,58.17,56.95,44.71,45.58
-77960,48,175,48175,121,51,44011004,43910330,121,51,44011004,43910330,7210,3710,2225756209,2206706631,100,100,100,100,1.68,1.37,1.98,1.99
-77961,48,239,48239,183,99,105317496,105190991,183,99,105317496,105190991,14075,6590,2219286544,2148225451,100,100,100,100,1.3,1.5,4.75,4.9
-77962,48,239,48239,3286,1360,455847342,426472014,3286,1360,455847342,426472014,14075,6590,2219286544,2148225451,100,100,100,100,23.35,20.64,20.54,19.85
-77963,48,175,48175,5459,2792,1685845587,1676801129,5459,2792,1685845587,1676801129,7210,3710,2225756209,2206706631,100,100,100,100,75.71,75.26,75.74,75.99
-77964,48,089,48089,52,27,1801862,1780717,7569,4337,1501976807,1500422297,20874,10527,2521834352,2487097169,0.69,0.62,0.12,0.12,0.25,0.26,0.07,0.07
-77964,48,285,48285,7517,4310,1500174945,1498641580,7569,4337,1501976807,1500422297,19263,10344,2513417590,2511532178,99.31,99.38,99.88,99.88,39.02,41.67,59.69,59.67
-77968,48,469,48469,2774,1110,463715982,463511411,2774,1110,463715982,463511411,86793,35417,2302073320,2284739169,100,100,100,100,3.2,3.13,20.14,20.29
-77969,48,239,48239,154,100,76549537,74695385,154,100,76549537,74695385,14075,6590,2219286544,2148225451,100,100,100,100,1.09,1.52,3.45,3.48
-77970,48,239,48239,295,147,116957525,116429977,295,147,116957525,116429977,14075,6590,2219286544,2148225451,100,100,100,100,2.1,2.23,5.27,5.42
-77971,48,239,48239,911,361,161014075,157227689,911,361,161014075,157227689,14075,6590,2219286544,2148225451,100,100,100,100,6.47,5.48,7.26,7.32
-77973,48,469,48469,50,27,113710412,112384889,50,27,113710412,112384889,86793,35417,2302073320,2284739169,100,100,100,100,0.06,0.08,4.94,4.92
-77974,48,123,48123,195,103,39683143,39683143,455,220,66567111,66529527,20097,9176,2358155287,2354235330,42.86,46.82,59.61,59.65,0.97,1.12,1.68,1.69
-77974,48,469,48469,260,117,26883968,26846384,455,220,66567111,66529527,86793,35417,2302073320,2284739169,57.14,53.18,40.39,40.35,0.3,0.33,1.17,1.18
-77975,48,285,48285,1860,1089,205856562,205703237,1860,1089,205856562,205703237,19263,10344,2513417590,2511532178,100,100,100,100,9.66,10.53,8.19,8.19
-77976,48,469,48469,126,60,56186345,56160777,126,60,56186345,56160777,86793,35417,2302073320,2284739169,100,100,100,100,0.15,0.17,2.44,2.46
-77977,48,469,48469,718,280,22332006,22332006,718,280,22332006,22332006,86793,35417,2302073320,2284739169,100,100,100,100,0.83,0.79,0.97,0.98
-77978,48,057,48057,743,382,108905249,26992579,743,382,108905249,26992579,21381,11410,2674618446,1312710613,100,100,100,100,3.48,3.35,4.07,2.06
-77979,48,057,48057,16995,7571,1030810445,696828302,17144,7643,1224957642,883115038,21381,11410,2674618446,1312710613,99.13,99.06,84.15,78.91,79.49,66.35,38.54,53.08
-77979,48,239,48239,86,44,87173307,82051036,17144,7643,1224957642,883115038,14075,6590,2219286544,2148225451,0.5,0.58,7.12,9.29,0.61,0.67,3.93,3.82
-77979,48,469,48469,63,28,106973890,104235700,17144,7643,1224957642,883115038,86793,35417,2302073320,2284739169,0.37,0.37,8.73,11.8,0.07,0.08,4.65,4.56
-77982,48,057,48057,1253,1723,40298750,33189469,1253,1723,40298750,33189469,21381,11410,2674618446,1312710613,100,100,100,100,5.86,15.1,1.51,2.53
-77983,48,057,48057,2209,1370,355918449,292292297,2209,1370,355918449,292292297,21381,11410,2674618446,1312710613,100,100,100,100,10.33,12.01,13.31,22.27
-77984,48,177,48177,422,221,141043574,140643923,4295,2269,404307098,403871993,19807,8794,2770909268,2762708316,9.83,9.74,34.89,34.82,2.13,2.51,5.09,5.09
-77984,48,285,48285,3873,2048,263263524,263228070,4295,2269,404307098,403871993,19263,10344,2513417590,2511532178,90.17,90.26,65.11,65.18,20.11,19.8,10.47,10.48
-77987,48,285,48285,161,102,12207475,12207475,161,102,12207475,12207475,19263,10344,2513417590,2511532178,100,100,100,100,0.84,0.99,0.49,0.49
-77988,48,469,48469,326,169,3708662,3708662,326,169,3708662,3708662,86793,35417,2302073320,2284739169,100,100,100,100,0.38,0.48,0.16,0.16
-77990,48,057,48057,85,144,108643884,58834357,699,480,370445781,283299954,21381,11410,2674618446,1312710613,12.16,30,29.33,20.77,0.4,1.26,4.06,4.48
-77990,48,391,48391,614,336,261801897,224465597,699,480,370445781,283299954,7383,3726,2119239623,1995440836,87.84,70,70.67,79.23,8.32,9.02,12.35,11.25
-77991,48,239,48239,357,142,59218068,55955600,357,142,59218068,55955600,14075,6590,2219286544,2148225451,100,100,100,100,2.54,2.15,2.67,2.6
-77993,48,175,48175,148,91,38607984,38607984,148,91,38607984,38607984,7210,3710,2225756209,2206706631,100,100,100,100,2.05,2.45,1.73,1.75
-77994,48,123,48123,321,236,135520196,135272778,321,236,135520196,135272778,20097,9176,2358155287,2354235330,100,100,100,100,1.6,2.57,5.75,5.75
-77995,48,123,48123,3851,1762,440277038,439311592,9567,4379,925608795,924227003,20097,9176,2358155287,2354235330,40.25,40.24,47.57,47.53,19.16,19.2,18.67,18.66
-77995,48,285,48285,5440,2509,429902071,429738803,9567,4379,925608795,924227003,19263,10344,2513417590,2511532178,56.86,57.3,46.45,46.5,28.24,24.26,17.1,17.11
-77995,48,469,48469,276,108,55429686,55176608,9567,4379,925608795,924227003,86793,35417,2302073320,2284739169,2.88,2.47,5.99,5.97,0.32,0.3,2.41,2.42
-78001,48,283,48283,33,32,94283673,93658144,33,32,94283673,93658144,6886,2746,3870049971,3850510690,100,100,100,100,0.48,1.17,2.44,2.43
-78002,48,029,48029,8255,2813,108811974,107547413,8255,2813,108811974,107547413,1714773,662872,3253247492,3211119983,100,100,100,100,0.48,0.42,3.34,3.35
-78003,48,019,48019,8475,4511,489787024,486969826,8689,4653,590412348,584665360,20485,11561,2065867266,2048578865,97.54,96.95,82.96,83.29,41.37,39.02,23.71,23.77
-78003,48,325,48325,214,142,100625324,97695534,8689,4653,590412348,584665360,46006,17991,3456425671,3432656186,2.46,3.05,17.04,16.71,0.47,0.79,2.91,2.85
-78004,48,259,48259,1183,481,68059822,68040558,1183,481,68059822,68040558,33410,14055,1717242441,1715745632,100,100,100,100,3.54,3.42,3.96,3.97
-78005,48,013,48013,241,113,82121402,82121402,817,433,461824404,461452727,44911,17631,3163600651,3158604888,29.5,26.1,17.78,17.8,0.54,0.64,2.6,2.6
-78005,48,163,48163,576,320,379703002,379331325,817,433,461824404,461452727,17217,5846,2937944355,2935750557,70.5,73.9,82.22,82.2,3.35,5.47,12.92,12.92
-78006,48,029,48029,3086,1147,75934644,75745892,27558,11424,809098097,807617612,1714773,662872,3253247492,3211119983,11.2,10.04,9.39,9.38,0.18,0.17,2.33,2.36
-78006,48,091,48091,549,222,8214462,8202982,27558,11424,809098097,807617612,108472,47108,1488927273,1449037063,1.99,1.94,1.02,1.02,0.51,0.47,0.55,0.57
-78006,48,259,48259,23923,10055,724948991,723668738,27558,11424,809098097,807617612,33410,14055,1717242441,1715745632,86.81,88.02,89.6,89.61,71.6,71.54,42.22,42.18
-78007,48,311,48311,151,111,93911992,65803291,151,111,93911992,65803291,707,485,2996060203,2951100162,100,100,100,100,21.36,22.89,3.13,2.23
-78008,48,013,48013,323,256,430958641,429764944,345,287,490252897,488913285,44911,17631,3163600651,3158604888,93.62,89.2,87.91,87.9,0.72,1.45,13.62,13.61
-78008,48,297,48297,22,31,59294256,59148341,345,287,490252897,488913285,11531,6065,2794284748,2692800935,6.38,10.8,12.09,12.1,0.19,0.51,2.12,2.2
-78009,48,325,48325,7255,2860,186108917,185171103,7255,2860,186108917,185171103,46006,17991,3456425671,3432656186,100,100,100,100,15.77,15.9,5.38,5.39
-78010,48,265,48265,3386,1562,190857036,189781316,3386,1562,190857036,189781316,49625,23831,2867830868,2857580696,100,100,100,100,6.82,6.55,6.66,6.64
-78011,48,013,48013,2082,899,494290020,493710052,2082,899,494290020,493710052,44911,17631,3163600651,3158604888,100,100,100,100,4.64,5.1,15.62,15.63
-78012,48,013,48013,436,202,86470604,86248092,436,202,86470604,86248092,44911,17631,3163600651,3158604888,100,100,100,100,0.97,1.15,2.73,2.73
-78013,48,259,48259,4298,1866,313736575,313667386,5930,2592,597177701,596362278,33410,14055,1717242441,1715745632,72.48,71.99,52.54,52.6,12.86,13.28,18.27,18.28
-78013,48,265,48265,1632,726,283441126,282694892,5930,2592,597177701,596362278,49625,23831,2867830868,2857580696,27.52,28.01,47.46,47.4,3.29,3.05,9.88,9.89
-78014,48,127,48127,21,12,311372378,308972864,4987,2243,2730884306,2715068465,9996,4350,3456371128,3441794213,0.42,0.53,11.4,11.38,0.21,0.28,9.01,8.98
-78014,48,283,48283,4966,2231,2419511928,2406095601,4987,2243,2730884306,2715068465,6886,2746,3870049971,3850510690,99.58,99.47,88.6,88.62,72.12,81.25,62.52,62.49
-78015,48,029,48029,6603,2582,24013896,23954159,9602,3622,54232609,54172872,1714773,662872,3253247492,3211119983,68.77,71.29,44.28,44.22,0.39,0.39,0.74,0.75
-78015,48,259,48259,2999,1040,30218713,30218713,9602,3622,54232609,54172872,33410,14055,1717242441,1715745632,31.23,28.71,55.72,55.78,8.98,7.4,1.76,1.76
-78016,48,325,48325,9630,3816,413027466,411200034,9630,3816,413027466,411200034,46006,17991,3456425671,3432656186,100,100,100,100,20.93,21.21,11.95,11.98
-78017,48,163,48163,4744,1534,837811352,837491765,4787,1569,965395646,964676600,17217,5846,2937944355,2935750557,99.1,97.77,86.78,86.82,27.55,26.24,28.52,28.53
-78017,48,283,48283,43,35,127584294,127184835,4787,1569,965395646,964676600,6886,2746,3870049971,3850510690,0.9,2.23,13.22,13.18,0.62,1.27,3.3,3.3
-78019,48,283,48283,1731,348,294301363,293363164,1855,466,2509395659,2504549286,6886,2746,3870049971,3850510690,93.32,74.68,11.73,11.71,25.14,12.67,7.6,7.62
-78019,48,479,48479,124,118,2215094296,2211186122,1855,466,2509395659,2504549286,250304,73496,8742736756,8706199011,6.68,25.32,88.27,88.29,0.05,0.16,25.34,25.4
-78021,48,283,48283,107,93,485152798,483075219,126,122,743364068,740452971,6886,2746,3870049971,3850510690,84.92,76.23,65.26,65.24,1.55,3.39,12.54,12.55
-78021,48,311,48311,19,29,258211270,257377752,126,122,743364068,740452971,707,485,2996060203,2951100162,15.08,23.77,34.74,34.76,2.69,5.98,8.62,8.72
-78022,48,297,48297,4627,2254,1142232523,1137484789,4627,2254,1142232523,1137484789,11531,6065,2794284748,2692800935,100,100,100,100,40.13,37.16,40.88,42.24
-78023,48,019,48019,83,37,320398,320398,24334,8359,193482828,192996897,20485,11561,2065867266,2048578865,0.34,0.44,0.17,0.17,0.41,0.32,0.02,0.02
-78023,48,029,48029,23624,8073,166328513,165930395,24334,8359,193482828,192996897,1714773,662872,3253247492,3211119983,97.08,96.58,85.97,85.98,1.38,1.22,5.11,5.17
-78023,48,325,48325,627,249,26833917,26746104,24334,8359,193482828,192996897,46006,17991,3456425671,3432656186,2.58,2.98,13.87,13.86,1.36,1.38,0.78,0.78
-78024,48,265,48265,1431,966,647218381,645523328,1436,970,677405379,675705243,49625,23831,2867830868,2857580696,99.65,99.59,95.54,95.53,2.88,4.05,22.57,22.59
-78024,48,385,48385,5,4,30186998,30181915,1436,970,677405379,675705243,3309,2599,1813252494,1810906179,0.35,0.41,4.46,4.47,0.15,0.15,1.66,1.67
-78025,48,265,48265,4956,2417,114871555,113754775,4956,2417,114871555,113754775,49625,23831,2867830868,2857580696,100,100,100,100,9.99,10.14,4.01,3.98
-78026,48,013,48013,5861,2435,562877898,561727793,5861,2435,562877898,561727793,44911,17631,3163600651,3158604888,100,100,100,100,13.05,13.81,17.79,17.78
-78027,48,259,48259,459,245,204773363,204760959,459,245,204773363,204760959,33410,14055,1717242441,1715745632,100,100,100,100,1.37,1.74,11.92,11.93
-78028,48,171,48171,737,393,67156333,67012595,37620,17738,653464482,649244230,24837,12778,2749739326,2740760701,1.96,2.22,10.28,10.32,2.97,3.08,2.44,2.45
-78028,48,265,48265,36883,17345,586308149,582231635,37620,17738,653464482,649244230,49625,23831,2867830868,2857580696,98.04,97.78,89.72,89.68,74.32,72.78,20.44,20.37
-78029,48,265,48265,0,0,23694,23694,0,0,23694,23694,49625,23831,2867830868,2857580696,0,0,100,100,0,0,0,0
-78039,48,029,48029,126,55,10007306,9929901,1657,670,47782070,47562028,1714773,662872,3253247492,3211119983,7.6,8.21,20.94,20.88,0.01,0.01,0.31,0.31
-78039,48,325,48325,1531,615,37774764,37632127,1657,670,47782070,47562028,46006,17991,3456425671,3432656186,92.4,91.79,79.06,79.12,3.33,3.42,1.09,1.1
-78040,48,479,48479,42083,13508,16642476,16316962,42083,13508,16642476,16316962,250304,73496,8742736756,8706199011,100,100,100,100,16.81,18.38,0.19,0.19
-78041,48,479,48479,44153,14232,50496787,47449018,44153,14232,50496787,47449018,250304,73496,8742736756,8706199011,100,100,100,100,17.64,19.36,0.58,0.55
-78043,48,479,48479,42713,12684,457889107,452562522,42713,12684,457889107,452562522,250304,73496,8742736756,8706199011,100,100,100,100,17.06,17.26,5.24,5.2
-78044,48,479,48479,648,308,545664646,543958635,648,308,545664646,543958635,250304,73496,8742736756,8706199011,100,100,100,100,0.26,0.42,6.24,6.25
-78045,48,479,48479,54713,16209,1883662797,1873929758,54713,16209,1883662797,1873929758,250304,73496,8742736756,8706199011,100,100,100,100,21.86,22.05,21.55,21.52
-78046,48,479,48479,64548,15724,642021693,636984183,64548,15724,642021693,636984183,250304,73496,8742736756,8706199011,100,100,100,100,25.79,21.39,7.34,7.32
-78050,48,013,48013,767,284,13862351,13862351,767,284,13862351,13862351,44911,17631,3163600651,3158604888,100,100,100,100,1.71,1.61,0.44,0.44
-78052,48,013,48013,4545,1643,76131263,76025242,6388,2281,98479154,98193838,44911,17631,3163600651,3158604888,71.15,72.03,77.31,77.42,10.12,9.32,2.41,2.41
-78052,48,029,48029,178,66,2965790,2947422,6388,2281,98479154,98193838,1714773,662872,3253247492,3211119983,2.79,2.89,3.01,3,0.01,0.01,0.09,0.09
-78052,48,325,48325,1665,572,19382101,19221174,6388,2281,98479154,98193838,46006,17991,3456425671,3432656186,26.06,25.08,19.68,19.57,3.62,3.18,0.56,0.56
-78055,48,019,48019,1727,1050,589737793,587917565,1774,1069,615886945,613937747,20485,11561,2065867266,2048578865,97.35,98.22,95.75,95.76,8.43,9.08,28.55,28.7
-78055,48,265,48265,47,19,26149152,26020182,1774,1069,615886945,613937747,49625,23831,2867830868,2857580696,2.65,1.78,4.25,4.24,0.09,0.08,0.91,0.91
-78056,48,325,48325,1917,1032,269853822,261096285,1917,1032,269853822,261096285,46006,17991,3456425671,3432656186,100,100,100,100,4.17,5.74,7.81,7.61
-78057,48,163,48163,847,448,240506333,240381863,871,459,255230542,255078993,17217,5846,2937944355,2935750557,97.24,97.6,94.23,94.24,4.92,7.66,8.19,8.19
-78057,48,325,48325,24,11,14724209,14697130,871,459,255230542,255078993,46006,17991,3456425671,3432656186,2.76,2.4,5.77,5.76,0.05,0.06,0.43,0.43
-78058,48,171,48171,120,59,38241450,38204292,1256,838,1441000524,1439410855,24837,12778,2749739326,2740760701,9.55,7.04,2.65,2.65,0.48,0.46,1.39,1.39
-78058,48,265,48265,1038,668,945745453,944379729,1256,838,1441000524,1439410855,49625,23831,2867830868,2857580696,82.64,79.71,65.63,65.61,2.09,2.8,32.98,33.05
-78058,48,385,48385,98,111,457013621,456826834,1256,838,1441000524,1439410855,3309,2599,1813252494,1810906179,7.8,13.25,31.72,31.74,2.96,4.27,25.2,25.23
-78059,48,325,48325,5387,2017,106363693,105952823,5387,2017,106363693,105952823,46006,17991,3456425671,3432656186,100,100,100,100,11.71,11.21,3.08,3.09
-78060,48,297,48297,37,19,1018944,1018944,37,19,1018944,1018944,11531,6065,2794284748,2692800935,100,100,100,100,0.32,0.31,0.04,0.04
-78061,48,163,48163,11031,3535,1434060091,1432708846,11031,3535,1434060091,1432708846,17217,5846,2937944355,2935750557,100,100,100,100,64.07,60.47,48.81,48.8
-78063,48,019,48019,9227,5132,326392458,314848255,9227,5132,326392458,314848255,20485,11561,2065867266,2048578865,100,100,100,100,45.04,44.39,15.8,15.37
-78064,48,013,48013,14024,5619,597314547,596452622,14102,5649,608346343,607436770,44911,17631,3163600651,3158604888,99.45,99.47,98.19,98.19,31.23,31.87,18.88,18.88
-78064,48,493,48493,78,30,11031796,10984148,14102,5649,608346343,607436770,42918,16766,2093774238,2081658340,0.55,0.53,1.81,1.81,0.18,0.18,0.53,0.53
-78065,48,013,48013,10831,4046,432241827,431986175,10831,4046,432241827,431986175,44911,17631,3163600651,3158604888,100,100,100,100,24.12,22.95,13.66,13.68
-78066,48,325,48325,591,254,66498815,66162110,591,254,66498815,66162110,46006,17991,3456425671,3432656186,100,100,100,100,1.28,1.41,1.92,1.93
-78067,48,505,48505,916,533,380610804,374029222,916,533,380610804,374029222,14018,6203,2740247059,2585876105,100,100,100,100,6.53,8.59,13.89,14.46
-78069,48,013,48013,3050,1034,62599830,62599830,5137,1780,84396542,84333597,44911,17631,3163600651,3158604888,59.37,58.09,74.17,74.23,6.79,5.86,1.98,1.98
-78069,48,029,48029,2087,746,21796712,21733767,5137,1780,84396542,84333597,1714773,662872,3253247492,3211119983,40.63,41.91,25.83,25.77,0.12,0.11,0.67,0.68
-78070,48,031,48031,599,307,37649265,37542661,14618,5884,360333590,356650248,10497,5532,1847766354,1836951743,4.1,5.22,10.45,10.53,5.71,5.55,2.04,2.04
-78070,48,091,48091,13992,5553,288154277,284633846,14618,5884,360333590,356650248,108472,47108,1488927273,1449037063,95.72,94.37,79.97,79.81,12.9,11.79,19.35,19.64
-78070,48,259,48259,27,24,34530048,34473741,14618,5884,360333590,356650248,33410,14055,1717242441,1715745632,0.18,0.41,9.58,9.67,0.08,0.17,2.01,2.01
-78071,48,297,48297,4240,1617,770312460,722086447,4248,1622,977975497,929558958,11531,6065,2794284748,2692800935,99.81,99.69,78.77,77.68,36.77,26.66,27.57,26.82
-78071,48,311,48311,8,5,207663037,207472511,4248,1622,977975497,929558958,707,485,2996060203,2951100162,0.19,0.31,21.23,22.32,1.13,1.03,6.93,7.03
-78072,48,311,48311,505,324,2243236325,2228582231,505,324,2243236325,2228582231,707,485,2996060203,2951100162,100,100,100,100,71.43,66.8,74.87,75.52
-78073,48,013,48013,1126,413,10232572,10232572,8171,2877,135768090,134531259,44911,17631,3163600651,3158604888,13.78,14.36,7.54,7.61,2.51,2.34,0.32,0.32
-78073,48,029,48029,7045,2464,125535518,124298687,8171,2877,135768090,134531259,1714773,662872,3253247492,3211119983,86.22,85.64,92.46,92.39,0.41,0.37,3.86,3.87
-78075,48,297,48297,99,76,153162747,152892370,123,92,346200326,344756747,11531,6065,2794284748,2692800935,80.49,82.61,44.24,44.35,0.86,1.25,5.48,5.68
-78075,48,311,48311,24,16,193037579,191864377,123,92,346200326,344756747,707,485,2996060203,2951100162,19.51,17.39,55.76,55.65,3.39,3.3,6.44,6.5
-78076,48,505,48505,12612,5257,1344828087,1237259208,12612,5257,1344828087,1237259208,14018,6203,2740247059,2585876105,100,100,100,100,89.97,84.75,49.08,47.85
-78101,48,029,48029,4100,1597,75041653,74255739,7898,2971,133794320,132787370,1714773,662872,3253247492,3211119983,51.91,53.75,56.09,55.92,0.24,0.24,2.31,2.31
-78101,48,493,48493,3798,1374,58752667,58531631,7898,2971,133794320,132787370,42918,16766,2093774238,2081658340,48.09,46.25,43.91,44.08,8.85,8.2,2.81,2.81
-78102,48,025,48025,27552,8644,1176635760,1176599165,27593,8675,1214748670,1214712075,31861,10649,2280055900,2279809490,99.85,99.64,96.86,96.86,86.48,81.17,51.61,51.61
-78102,48,297,48297,41,31,38112910,38112910,27593,8675,1214748670,1214712075,11531,6065,2794284748,2692800935,0.15,0.36,3.14,3.14,0.36,0.51,1.36,1.42
-78104,48,025,48025,175,92,60044577,60011041,175,92,60044577,60011041,31861,10649,2280055900,2279809490,100,100,100,100,0.55,0.86,2.63,2.63
-78107,48,175,48175,360,232,299920300,299831250,360,232,299920300,299831250,7210,3710,2225756209,2206706631,100,100,100,100,4.99,6.25,13.47,13.59
-78108,48,029,48029,525,228,7999389,7943644,27770,9748,80130876,79945206,1714773,662872,3253247492,3211119983,1.89,2.34,9.98,9.94,0.03,0.03,0.25,0.25
-78108,48,091,48091,632,236,1408039,1372106,27770,9748,80130876,79945206,108472,47108,1488927273,1449037063,2.28,2.42,1.76,1.72,0.58,0.5,0.09,0.09
-78108,48,187,48187,26613,9284,70723448,70629456,27770,9748,80130876,79945206,131533,50015,1851361994,1842257555,95.83,95.24,88.26,88.35,20.23,18.56,3.82,3.83
-78109,48,029,48029,34603,12054,54837160,54143166,34603,12054,54837160,54143166,1714773,662872,3253247492,3211119983,100,100,100,100,2.02,1.82,1.69,1.69
-78112,48,029,48029,7822,2691,135221087,129259416,7941,2743,136836443,130832924,1714773,662872,3253247492,3211119983,98.5,98.1,98.82,98.8,0.46,0.41,4.16,4.03
-78112,48,493,48493,119,52,1615356,1573508,7941,2743,136836443,130832924,42918,16766,2093774238,2081658340,1.5,1.9,1.18,1.2,0.28,0.31,0.08,0.08
-78113,48,013,48013,263,167,222922803,222321227,2435,1222,734326126,728107839,44911,17631,3163600651,3158604888,10.8,13.67,30.36,30.53,0.59,0.95,7.05,7.04
-78113,48,255,48255,1195,565,223037981,219858897,2435,1222,734326126,728107839,14824,5650,1951679922,1936160430,49.08,46.24,30.37,30.2,8.06,10,11.43,11.36
-78113,48,493,48493,977,490,288365342,285927715,2435,1222,734326126,728107839,42918,16766,2093774238,2081658340,40.12,40.1,39.27,39.27,2.28,2.92,13.77,13.74
-78114,48,013,48013,139,70,70735815,70711508,20103,7759,955123580,950244404,44911,17631,3163600651,3158604888,0.69,0.9,7.41,7.44,0.31,0.4,2.24,2.24
-78114,48,493,48493,19964,7689,884387765,879532896,20103,7759,955123580,950244404,42918,16766,2093774238,2081658340,99.31,99.1,92.59,92.56,46.52,45.86,42.24,42.25
-78116,48,255,48255,390,266,319197736,316501881,390,266,319197736,316501881,14824,5650,1951679922,1936160430,100,100,100,100,2.63,4.71,16.36,16.35
-78117,48,255,48255,545,287,139919424,138156758,545,287,139919424,138156758,14824,5650,1951679922,1936160430,100,100,100,100,3.68,5.08,7.17,7.14
-78118,48,255,48255,3967,1629,434084433,430702459,3976,1640,472868692,469402178,14824,5650,1951679922,1936160430,99.77,99.33,91.8,91.76,26.76,28.83,22.24,22.25
-78118,48,297,48297,9,11,38784259,38699719,3976,1640,472868692,469402178,11531,6065,2794284748,2692800935,0.23,0.67,8.2,8.24,0.08,0.18,1.39,1.44
-78119,48,025,48025,317,213,263967853,263875325,7680,2387,849564209,846122548,31861,10649,2280055900,2279809490,4.13,8.92,31.07,31.19,0.99,2,11.58,11.57
-78119,48,255,48255,7330,2151,536159284,532851811,7680,2387,849564209,846122548,14824,5650,1951679922,1936160430,95.44,90.11,63.11,62.98,49.45,38.07,27.47,27.52
-78119,48,297,48297,33,23,49437072,49395412,7680,2387,849564209,846122548,11531,6065,2794284748,2692800935,0.43,0.96,5.82,5.84,0.29,0.38,1.77,1.83
-78121,48,187,48187,1042,416,65545890,65529197,11381,4236,266963846,266136343,131533,50015,1851361994,1842257555,9.16,9.82,24.55,24.62,0.79,0.83,3.54,3.56
-78121,48,493,48493,10339,3820,201417956,200607146,11381,4236,266963846,266136343,42918,16766,2093774238,2081658340,90.84,90.18,75.45,75.38,24.09,22.78,9.62,9.64
-78122,48,177,48177,418,247,131099492,130783210,418,247,131099492,130783210,19807,8794,2770909268,2762708316,100,100,100,100,2.11,2.81,4.73,4.73
-78123,48,187,48187,2397,1262,11067345,10137779,2397,1262,11067345,10137779,131533,50015,1851361994,1842257555,100,100,100,100,1.82,2.52,0.6,0.55
-78124,48,029,48029,435,167,20099183,20048561,5609,2196,147551686,147494204,1714773,662872,3253247492,3211119983,7.76,7.6,13.62,13.59,0.03,0.03,0.62,0.62
-78124,48,187,48187,5174,2029,127452503,127445643,5609,2196,147551686,147494204,131533,50015,1851361994,1842257555,92.24,92.4,86.38,86.41,3.93,4.06,6.88,6.92
-78125,48,025,48025,96,73,76218583,76198398,96,73,76218583,76198398,31861,10649,2280055900,2279809490,100,100,100,100,0.3,0.69,3.34,3.34
-78130,48,091,48091,42524,18062,112601046,111024137,59546,24291,242339749,239149447,108472,47108,1488927273,1449037063,71.41,74.36,46.46,46.42,39.2,38.34,7.56,7.66
-78130,48,187,48187,17022,6229,129738703,128125310,59546,24291,242339749,239149447,131533,50015,1851361994,1842257555,28.59,25.64,53.54,53.58,12.94,12.45,7.01,6.95
-78132,48,091,48091,19139,7581,482439581,480634995,19139,7581,482439581,480634995,108472,47108,1488927273,1449037063,100,100,100,100,17.64,16.09,32.4,33.17
-78133,48,091,48091,16269,9397,248467146,216619879,16269,9397,248467146,216619879,108472,47108,1488927273,1449037063,100,100,100,100,15,19.95,16.69,14.95
-78140,48,177,48177,3048,1284,237712024,237522796,3380,1486,377133839,375624484,19807,8794,2770909268,2762708316,90.18,86.41,63.03,63.23,15.39,14.6,8.58,8.6
-78140,48,187,48187,94,50,14828210,14809296,3380,1486,377133839,375624484,131533,50015,1851361994,1842257555,2.78,3.36,3.93,3.94,0.07,0.1,0.8,0.8
-78140,48,493,48493,238,152,124593605,123292392,3380,1486,377133839,375624484,42918,16766,2093774238,2081658340,7.04,10.23,33.04,32.82,0.55,0.91,5.95,5.92
-78141,48,123,48123,591,355,132592579,132361376,596,366,154253023,153956444,20097,9176,2358155287,2354235330,99.16,96.99,85.96,85.97,2.94,3.87,5.62,5.62
-78141,48,255,48255,5,11,21660444,21595068,596,366,154253023,153956444,14824,5650,1951679922,1936160430,0.84,3.01,14.04,14.03,0.03,0.19,1.11,1.12
-78142,48,025,48025,119,68,14539013,14539013,119,68,14539013,14539013,31861,10649,2280055900,2279809490,100,100,100,100,0.37,0.64,0.64,0.64
-78143,48,493,48493,85,40,4538748,4528838,85,40,4538748,4528838,42918,16766,2093774238,2081658340,100,100,100,100,0.2,0.24,0.22,0.22
-78144,48,255,48255,45,18,5870822,5820247,45,18,5870822,5820247,14824,5650,1951679922,1936160430,100,100,100,100,0.3,0.32,0.3,0.3
-78145,48,025,48025,103,49,9489980,9489980,103,49,9489980,9489980,31861,10649,2280055900,2279809490,100,100,100,100,0.32,0.46,0.42,0.42
-78146,48,025,48025,771,305,100309889,100309889,771,305,100309889,100309889,31861,10649,2280055900,2279809490,100,100,100,100,2.42,2.86,4.4,4.4
-78147,48,493,48493,1919,729,9046532,8970503,1919,729,9046532,8970503,42918,16766,2093774238,2081658340,100,100,100,100,4.47,4.35,0.43,0.43
-78148,48,029,48029,20139,8591,24559788,24407795,20139,8591,24559788,24407795,1714773,662872,3253247492,3211119983,100,100,100,100,1.17,1.3,0.75,0.76
-78150,48,029,48029,11,0,411175,410362,11,0,411175,410362,1714773,662872,3253247492,3211119983,100,0,100,100,0,0,0.01,0.01
-78151,48,255,48255,1347,723,271749798,270673309,1347,723,271749798,270673309,14824,5650,1951679922,1936160430,100,100,100,100,9.09,12.8,13.92,13.98
-78152,48,029,48029,2294,931,95717826,94905800,2294,931,95717826,94905800,1714773,662872,3253247492,3211119983,100,100,100,100,0.13,0.14,2.94,2.96
-78154,48,029,48029,5688,2144,49491115,48930380,30347,11683,85751365,85118681,1714773,662872,3253247492,3211119983,18.74,18.35,57.71,57.48,0.33,0.32,1.52,1.52
-78154,48,091,48091,112,51,9427229,9410076,30347,11683,85751365,85118681,108472,47108,1488927273,1449037063,0.37,0.44,10.99,11.06,0.1,0.11,0.63,0.65
-78154,48,187,48187,24547,9488,26833021,26778225,30347,11683,85751365,85118681,131533,50015,1851361994,1842257555,80.89,81.21,31.29,31.46,18.66,18.97,1.45,1.45
-78155,48,187,48187,45341,18039,922284757,918321745,45341,18039,922284757,918321745,131533,50015,1851361994,1842257555,100,100,100,100,34.47,36.07,49.82,49.85
-78159,48,177,48177,1023,505,402489940,402017180,1023,505,402489940,402017180,19807,8794,2770909268,2762708316,100,100,100,100,5.16,5.74,14.53,14.55
-78160,48,493,48493,4273,1911,473906501,471766239,4273,1911,473906501,471766239,42918,16766,2093774238,2081658340,100,100,100,100,9.96,11.4,22.63,22.66
-78161,48,493,48493,864,361,33339190,33169615,864,361,33339190,33169615,42918,16766,2093774238,2081658340,100,100,100,100,2.01,2.15,1.59,1.59
-78162,48,025,48025,375,181,80738501,80738501,375,181,80738501,80738501,31861,10649,2280055900,2279809490,100,100,100,100,1.18,1.7,3.54,3.54
-78163,48,091,48091,9838,3745,200098271,199812178,9838,3745,200098271,199812178,108472,47108,1488927273,1449037063,100,100,100,100,9.07,7.95,13.44,13.79
-78164,48,123,48123,3621,1993,656686891,656109892,3796,2102,732540888,731867162,20097,9176,2358155287,2354235330,95.39,94.81,89.65,89.65,18.02,21.72,27.85,27.87
-78164,48,175,48175,175,109,75853997,75757270,3796,2102,732540888,731867162,7210,3710,2225756209,2206706631,4.61,5.19,10.35,10.35,2.43,2.94,3.41,3.43
-78201,48,029,48029,45307,18396,18651681,18314379,45307,18396,18651681,18314379,1714773,662872,3253247492,3211119983,100,100,100,100,2.64,2.78,0.57,0.57
-78202,48,029,48029,11691,4714,6020566,6020566,11691,4714,6020566,6020566,1714773,662872,3253247492,3211119983,100,100,100,100,0.68,0.71,0.19,0.19
-78203,48,029,48029,6099,2333,3330076,3330076,6099,2333,3330076,3330076,1714773,662872,3253247492,3211119983,100,100,100,100,0.36,0.35,0.1,0.1
-78204,48,029,48029,11125,4333,7000455,6822073,11125,4333,7000455,6822073,1714773,662872,3253247492,3211119983,100,100,100,100,0.65,0.65,0.22,0.21
-78205,48,029,48029,1453,1090,3098189,3086345,1453,1090,3098189,3086345,1714773,662872,3253247492,3211119983,100,100,100,100,0.08,0.16,0.1,0.1
-78207,48,029,48029,55514,17587,19501701,18809822,55514,17587,19501701,18809822,1714773,662872,3253247492,3211119983,100,100,100,100,3.24,2.65,0.6,0.59
-78208,48,029,48029,3736,1581,2552550,2548039,3736,1581,2552550,2548039,1714773,662872,3253247492,3211119983,100,100,100,100,0.22,0.24,0.08,0.08
-78209,48,029,48029,39197,20015,26451972,26380171,39197,20015,26451972,26380171,1714773,662872,3253247492,3211119983,100,100,100,100,2.29,3.02,0.81,0.82
-78210,48,029,48029,36865,14267,19380365,19261959,36865,14267,19380365,19261959,1714773,662872,3253247492,3211119983,100,100,100,100,2.15,2.15,0.6,0.6
-78211,48,029,48029,31944,10286,26679167,26621935,31944,10286,26679167,26621935,1714773,662872,3253247492,3211119983,100,100,100,100,1.86,1.55,0.82,0.83
-78212,48,029,48029,28415,13137,17514309,17504379,28415,13137,17514309,17504379,1714773,662872,3253247492,3211119983,100,100,100,100,1.66,1.98,0.54,0.55
-78213,48,029,48029,40396,17777,20741043,20730102,40396,17777,20741043,20730102,1714773,662872,3253247492,3211119983,100,100,100,100,2.36,2.68,0.64,0.65
-78214,48,029,48029,23341,8395,35178003,34734732,23341,8395,35178003,34734732,1714773,662872,3253247492,3211119983,100,100,100,100,1.36,1.27,1.08,1.08
-78215,48,029,48029,1150,718,2904727,2904727,1150,718,2904727,2904727,1714773,662872,3253247492,3211119983,100,100,100,100,0.07,0.11,0.09,0.09
-78216,48,029,48029,40267,20120,37159852,37019478,40267,20120,37159852,37019478,1714773,662872,3253247492,3211119983,100,100,100,100,2.35,3.04,1.14,1.15
-78217,48,029,48029,32165,15550,27527833,27179155,32165,15550,27527833,27179155,1714773,662872,3253247492,3211119983,100,100,100,100,1.88,2.35,0.85,0.85
-78218,48,029,48029,31917,13900,30676168,30625578,31917,13900,30676168,30625578,1714773,662872,3253247492,3211119983,100,100,100,100,1.86,2.1,0.94,0.95
-78219,48,029,48029,15225,5890,35824017,35522960,15225,5890,35824017,35522960,1714773,662872,3253247492,3211119983,100,100,100,100,0.89,0.89,1.1,1.11
-78220,48,029,48029,15965,6446,24093998,24039165,15965,6446,24093998,24039165,1714773,662872,3253247492,3211119983,100,100,100,100,0.93,0.97,0.74,0.75
-78221,48,029,48029,35990,12326,83293471,78777065,35990,12326,83293471,78777065,1714773,662872,3253247492,3211119983,100,100,100,100,2.1,1.86,2.56,2.45
-78222,48,029,48029,19408,7351,57933111,56693846,19408,7351,57933111,56693846,1714773,662872,3253247492,3211119983,100,100,100,100,1.13,1.11,1.78,1.77
-78223,48,029,48029,50373,19087,108479836,104479547,50637,19205,111258616,107253256,1714773,662872,3253247492,3211119983,99.48,99.39,97.5,97.41,2.94,2.88,3.33,3.25
-78223,48,493,48493,264,118,2778780,2773709,50637,19205,111258616,107253256,42918,16766,2093774238,2081658340,0.52,0.61,2.5,2.59,0.62,0.7,0.13,0.13
-78224,48,029,48029,17601,5539,57633062,57289801,17601,5539,57633062,57289801,1714773,662872,3253247492,3211119983,100,100,100,100,1.03,0.84,1.77,1.78
-78225,48,029,48029,13025,4736,5082315,5082315,13025,4736,5082315,5082315,1714773,662872,3253247492,3211119983,100,100,100,100,0.76,0.71,0.16,0.16
-78226,48,029,48029,6648,3087,18527389,18488195,6648,3087,18527389,18488195,1714773,662872,3253247492,3211119983,100,100,100,100,0.39,0.47,0.57,0.58
-78227,48,029,48029,46077,15919,35911992,35752347,46077,15919,35911992,35752347,1714773,662872,3253247492,3211119983,100,100,100,100,2.69,2.4,1.1,1.11
-78228,48,029,48029,58811,20497,28529828,28315693,58811,20497,28529828,28315693,1714773,662872,3253247492,3211119983,100,100,100,100,3.43,3.09,0.88,0.88
-78229,48,029,48029,28804,16311,14901974,14879257,28804,16311,14901974,14879257,1714773,662872,3253247492,3211119983,100,100,100,100,1.68,2.46,0.46,0.46
-78230,48,029,48029,39089,19136,27028176,26846023,39089,19136,27028176,26846023,1714773,662872,3253247492,3211119983,100,100,100,100,2.28,2.89,0.83,0.84
-78231,48,029,48029,7906,3380,10015333,10014566,7906,3380,10015333,10014566,1714773,662872,3253247492,3211119983,100,100,100,100,0.46,0.51,0.31,0.31
-78232,48,029,48029,35120,16364,31243054,31136563,35120,16364,31243054,31136563,1714773,662872,3253247492,3211119983,100,100,100,100,2.05,2.47,0.96,0.97
-78233,48,029,48029,43710,17406,34271349,34013576,43710,17406,34271349,34013576,1714773,662872,3253247492,3211119983,100,100,100,100,2.55,2.63,1.05,1.06
-78234,48,029,48029,7126,924,11784580,11775739,7126,924,11784580,11775739,1714773,662872,3253247492,3211119983,100,100,100,100,0.42,0.14,0.36,0.37
-78235,48,029,48029,357,159,2721864,2713808,357,159,2721864,2713808,1714773,662872,3253247492,3211119983,100,100,100,100,0.02,0.02,0.08,0.08
-78236,48,029,48029,10392,232,24491191,24485783,10392,232,24491191,24485783,1714773,662872,3253247492,3211119983,100,100,100,100,0.61,0.03,0.75,0.76
-78237,48,029,48029,36929,11904,19158984,19089886,36929,11904,19158984,19089886,1714773,662872,3253247492,3211119983,100,100,100,100,2.15,1.8,0.59,0.59
-78238,48,029,48029,23514,9914,24899321,24885678,23514,9914,24899321,24885678,1714773,662872,3253247492,3211119983,100,100,100,100,1.37,1.5,0.77,0.77
-78239,48,029,48029,28736,10912,17231634,17190359,28736,10912,17231634,17190359,1714773,662872,3253247492,3211119983,100,100,100,100,1.68,1.65,0.53,0.54
-78240,48,029,48029,51111,25099,29340761,29307867,51111,25099,29340761,29307867,1714773,662872,3253247492,3211119983,100,100,100,100,2.98,3.79,0.9,0.91
-78242,48,029,48029,31395,9734,20451818,20232556,31395,9734,20451818,20232556,1714773,662872,3253247492,3211119983,100,100,100,100,1.83,1.47,0.63,0.63
-78243,48,029,48029,235,1,1273015,1269229,235,1,1273015,1269229,1714773,662872,3253247492,3211119983,100,100,100,100,0.01,0,0.04,0.04
-78244,48,029,48029,30757,10457,24522143,24167498,30757,10457,24522143,24167498,1714773,662872,3253247492,3211119983,100,100,100,100,1.79,1.58,0.75,0.75
-78245,48,029,48029,56511,18749,86316592,86038837,56511,18749,86316592,86038837,1714773,662872,3253247492,3211119983,100,100,100,100,3.3,2.83,2.65,2.68
-78247,48,029,48029,49176,18451,42651052,42513131,49176,18451,42651052,42513131,1714773,662872,3253247492,3211119983,100,100,100,100,2.87,2.78,1.31,1.32
-78248,48,029,48029,13638,5716,10159001,10152227,13638,5716,10159001,10152227,1714773,662872,3253247492,3211119983,100,100,100,100,0.8,0.86,0.31,0.32
-78249,48,029,48029,49951,19368,38637580,38478092,49951,19368,38637580,38478092,1714773,662872,3253247492,3211119983,100,100,100,100,2.91,2.92,1.19,1.2
-78250,48,029,48029,54903,19350,24910665,24896848,54903,19350,24910665,24896848,1714773,662872,3253247492,3211119983,100,100,100,100,3.2,2.92,0.77,0.78
-78251,48,029,48029,49435,18782,39392050,39312363,49435,18782,39392050,39312363,1714773,662872,3253247492,3211119983,100,100,100,100,2.88,2.83,1.21,1.22
-78252,48,029,48029,7372,1738,91550213,89550274,7372,1738,91550213,89550274,1714773,662872,3253247492,3211119983,100,100,100,100,0.43,0.26,2.81,2.79
-78253,48,029,48029,27334,9212,85548507,85482109,29007,9817,140852614,140672829,1714773,662872,3253247492,3211119983,94.23,93.84,60.74,60.77,1.59,1.39,2.63,2.66
-78253,48,325,48325,1673,605,55304107,55190720,29007,9817,140852614,140672829,46006,17991,3456425671,3432656186,5.77,6.16,39.26,39.23,3.64,3.36,1.6,1.61
-78254,48,029,48029,44817,15250,70219318,70073843,44817,15250,70219318,70073843,1714773,662872,3253247492,3211119983,100,100,100,100,2.61,2.3,2.16,2.18
-78255,48,029,48029,10826,4098,47469214,47411732,10826,4098,47469214,47411732,1714773,662872,3253247492,3211119983,100,100,100,100,0.63,0.62,1.46,1.48
-78256,48,029,48029,6855,3147,22538995,22503004,6855,3147,22538995,22503004,1714773,662872,3253247492,3211119983,100,100,100,100,0.4,0.47,0.69,0.7
-78257,48,029,48029,3950,1931,101261747,100811687,3950,1931,101261747,100811687,1714773,662872,3253247492,3211119983,100,100,100,100,0.23,0.29,3.11,3.14
-78258,48,029,48029,40586,15921,41130437,41112464,40586,15921,41130437,41112464,1714773,662872,3253247492,3211119983,100,100,100,100,2.37,2.4,1.26,1.28
-78259,48,029,48029,22660,8360,35757095,35667290,22660,8360,35757095,35667290,1714773,662872,3253247492,3211119983,100,100,100,100,1.32,1.26,1.1,1.11
-78260,48,029,48029,24844,8665,57534108,57400269,24844,8665,57534108,57400269,1714773,662872,3253247492,3211119983,100,100,100,100,1.45,1.31,1.77,1.79
-78261,48,029,48029,13513,4870,77442506,77351033,13513,4870,77442506,77351033,1714773,662872,3253247492,3211119983,100,100,100,100,0.79,0.73,2.38,2.41
-78263,48,029,48029,4673,1799,105641344,94885435,4673,1799,105641344,94885435,1714773,662872,3253247492,3211119983,100,100,100,100,0.27,0.27,3.25,2.95
-78264,48,013,48013,1223,450,20841078,20841078,12339,4206,171214126,170883284,44911,17631,3163600651,3158604888,9.91,10.7,12.17,12.2,2.72,2.55,0.66,0.66
-78264,48,029,48029,11116,3756,150373048,150042206,12339,4206,171214126,170883284,1714773,662872,3253247492,3211119983,90.09,89.3,87.83,87.8,0.65,0.57,4.62,4.67
-78266,48,029,48029,1106,350,20414759,20222322,5591,2120,98203887,97347173,1714773,662872,3253247492,3211119983,19.78,16.51,20.79,20.77,0.06,0.05,0.63,0.63
-78266,48,091,48091,4485,1770,77789128,77124851,5591,2120,98203887,97347173,108472,47108,1488927273,1449037063,80.22,83.49,79.21,79.23,4.13,3.76,5.22,5.32
-78330,48,355,48355,878,316,45283198,45283198,878,316,45283198,45283198,340223,141033,3018884805,2171658351,100,100,100,100,0.26,0.22,1.5,2.09
-78332,48,131,48131,205,124,218111733,218103792,28710,11023,1297033370,1294416472,11782,5523,4650572584,4645094317,0.71,1.12,16.82,16.85,1.74,2.25,4.69,4.7
-78332,48,249,48249,28505,10899,1078921637,1076312680,28710,11023,1297033370,1294416472,40838,16147,2248990851,2240251330,99.29,98.88,83.18,83.15,69.8,67.5,47.97,48.04
-78335,48,355,48355,4,4,633209,633209,4,4,633209,633209,340223,141033,3018884805,2171658351,100,100,100,100,0,0,0.02,0.03
-78336,48,007,48007,3025,1648,41767504,37787025,11949,6067,158547717,126923194,23158,15355,1367489944,652868851,25.32,27.16,26.34,29.77,13.06,10.73,3.05,5.79
-78336,48,355,48355,10,7,28327948,2308850,11949,6067,158547717,126923194,340223,141033,3018884805,2171658351,0.08,0.12,17.87,1.82,0,0,0.94,0.11
-78336,48,409,48409,8914,4412,88452265,86827319,11949,6067,158547717,126923194,64804,26521,1833568404,1796028941,74.6,72.72,55.79,68.41,13.76,16.64,4.82,4.83
-78338,48,261,48261,37,32,60824775,60788672,37,32,60824775,60788672,416,233,5039591490,3777053964,100,100,100,100,8.89,13.73,1.21,1.61
-78339,48,355,48355,632,234,2575425,2575425,632,234,2575425,2575425,340223,141033,3018884805,2171658351,100,100,100,100,0.19,0.17,0.09,0.12
-78340,48,391,48391,379,298,94282523,56128247,379,298,94282523,56128247,7383,3726,2119239623,1995440836,100,100,100,100,5.13,8,4.45,2.81
-78341,48,131,48131,1760,995,634877204,634857352,1760,995,634877204,634857352,11782,5523,4650572584,4645094317,100,100,100,100,14.94,18.02,13.65,13.67
-78342,48,249,48249,386,152,4633707,4633707,386,152,4633707,4633707,40838,16147,2248990851,2240251330,100,100,100,100,0.95,0.94,0.21,0.21
-78343,48,355,48355,4525,1851,428950970,427801657,4525,1851,428950970,427801657,340223,141033,3018884805,2171658351,100,100,100,100,1.33,1.31,14.21,19.7
-78344,48,479,48479,474,217,311919370,311919370,474,217,311919370,311919370,250304,73496,8742736756,8706199011,100,100,100,100,0.19,0.3,3.57,3.58
-78349,48,131,48131,505,361,327284398,327049102,505,361,327284398,327049102,11782,5523,4650572584,4645094317,100,100,100,100,4.29,6.54,7.04,7.04
-78351,48,355,48355,621,218,5555498,5555498,621,218,5555498,5555498,340223,141033,3018884805,2171658351,100,100,100,100,0.18,0.15,0.18,0.26
-78352,48,409,48409,179,88,4071784,4071784,179,88,4071784,4071784,64804,26521,1833568404,1796028941,100,100,100,100,0.28,0.33,0.22,0.23
-78353,48,047,48047,433,288,525869439,525786095,433,288,525869439,525786095,7223,3239,2444043564,2443301936,100,100,100,100,5.99,8.89,21.52,21.52
-78355,48,047,48047,6779,2940,730810407,730361123,7081,3081,887465211,886896986,7223,3239,2444043564,2443301936,95.74,95.42,82.35,82.35,93.85,90.77,29.9,29.89
-78355,48,249,48249,295,139,121271135,121152194,7081,3081,887465211,886896986,40838,16147,2248990851,2240251330,4.17,4.51,13.66,13.66,0.72,0.86,5.39,5.41
-78355,48,273,48273,7,2,35383669,35383669,7081,3081,887465211,886896986,32061,12787,2823618909,2282577985,0.1,0.06,3.99,3.99,0.02,0.02,1.25,1.55
-78357,48,131,48131,3161,1478,790920797,790528157,3161,1478,790920797,790528157,11782,5523,4650572584,4645094317,100,100,100,100,26.83,26.76,17.01,17.02
-78358,48,007,48007,709,481,1372364,1363582,709,481,1372364,1363582,23158,15355,1367489944,652868851,100,100,100,100,3.06,3.13,0.1,0.21
-78359,48,409,48409,1944,711,6727677,6727677,1944,711,6727677,6727677,64804,26521,1833568404,1796028941,100,100,100,100,3,2.68,0.37,0.37
-78361,48,131,48131,28,28,309988921,309952866,5350,2526,3007066661,3006040597,11782,5523,4650572584,4645094317,0.52,1.11,10.31,10.31,0.24,0.51,6.67,6.67
-78361,48,247,48247,5300,2427,2275643957,2275551393,5350,2526,3007066661,3006040597,5300,2441,2942676723,2942584159,99.07,96.08,75.68,75.7,100,99.43,77.33,77.33
-78361,48,505,48505,22,71,421433783,420536338,5350,2526,3007066661,3006040597,14018,6203,2740247059,2585876105,0.41,2.81,14.01,13.99,0.16,1.14,15.38,16.26
-78362,48,409,48409,9447,3891,50753472,49110914,9447,3891,50753472,49110914,64804,26521,1833568404,1796028941,100,100,100,100,14.58,14.67,2.77,2.73
-78363,48,273,48273,30463,11921,402113118,395936685,30463,11921,402113118,395936685,32061,12787,2823618909,2282577985,100,100,100,100,95.02,93.23,14.24,17.35
-78368,48,297,48297,1054,844,200468065,164631825,9227,4317,617032901,560320287,11531,6065,2794284748,2692800935,11.42,19.55,32.49,29.38,9.14,13.92,7.17,6.11
-78368,48,409,48409,8173,3473,416564836,395688462,9227,4317,617032901,560320287,64804,26521,1833568404,1796028941,88.58,80.45,67.51,70.62,12.61,13.1,22.72,22.03
-78369,48,479,48479,444,234,269401447,269344940,444,234,269401447,269344940,250304,73496,8742736756,8706199011,100,100,100,100,0.18,0.32,3.08,3.09
-78370,48,409,48409,4877,1794,249481615,240394227,4877,1794,249481615,240394227,64804,26521,1833568404,1796028941,100,100,100,100,7.53,6.76,13.61,13.38
-78371,48,479,48479,404,254,559155699,557324768,404,254,559155699,557324768,250304,73496,8742736756,8706199011,100,100,100,100,0.16,0.35,6.4,6.4
-78372,48,249,48249,5410,2313,499794625,499741653,5452,2350,554975182,554922210,40838,16147,2248990851,2240251330,99.23,98.43,90.06,90.06,13.25,14.32,22.22,22.31
-78372,48,297,48297,42,37,55180557,55180557,5452,2350,554975182,554922210,11531,6065,2794284748,2692800935,0.77,1.57,9.94,9.94,0.36,0.61,1.97,2.05
-78373,48,355,48355,3585,4350,96267580,43104051,3585,4350,96267580,43104051,340223,141033,3018884805,2171658351,100,100,100,100,1.05,3.08,3.19,1.98
-78374,48,409,48409,16620,6482,124522976,123412013,16620,6482,124522976,123412013,64804,26521,1833568404,1796028941,100,100,100,100,25.65,24.44,6.79,6.87
-78375,48,249,48249,3352,1425,266732480,266665316,3352,1425,266732480,266665316,40838,16147,2248990851,2240251330,100,100,100,100,8.21,8.83,11.86,11.9
-78376,48,131,48131,554,323,631358718,631041465,554,323,631358718,631041465,11782,5523,4650572584,4645094317,100,100,100,100,4.7,5.85,13.58,13.59
-78377,48,391,48391,3821,1814,1234950260,1188321337,3821,1814,1234950260,1188321337,7383,3726,2119239623,1995440836,100,100,100,100,51.75,48.68,58.27,59.55
-78379,48,273,48273,1585,861,235327011,210716561,1585,861,235327011,210716561,32061,12787,2823618909,2282577985,100,100,100,100,4.94,6.73,8.33,9.23
-78380,48,249,48249,67,27,2405764,2405764,23141,8465,875044219,870042064,40838,16147,2248990851,2240251330,0.29,0.32,0.27,0.28,0.16,0.17,0.11,0.11
-78380,48,355,48355,23074,8438,872638455,867636300,23141,8465,875044219,870042064,340223,141033,3018884805,2171658351,99.71,99.68,99.73,99.72,6.78,5.98,28.91,39.95
-78382,48,007,48007,19364,13152,437737362,260915906,19364,13152,437737362,260915906,23158,15355,1367489944,652868851,100,100,100,100,83.62,85.65,32.01,39.96
-78383,48,249,48249,1751,809,110778851,104954876,3539,2106,414103203,395952441,40838,16147,2248990851,2240251330,49.48,38.41,26.75,26.51,4.29,5.01,4.93,4.68
-78383,48,297,48297,1327,1122,286280955,274149621,3539,2106,414103203,395952441,11531,6065,2794284748,2692800935,37.5,53.28,69.13,69.24,11.51,18.5,10.25,10.18
-78383,48,355,48355,461,175,17043397,16847944,3539,2106,414103203,395952441,340223,141033,3018884805,2171658351,13.03,8.31,4.12,4.26,0.14,0.12,0.56,0.78
-78384,48,131,48131,5568,2208,1179447406,1175511639,6640,2591,1184838989,1180903222,11782,5523,4650572584,4645094317,83.86,85.22,99.54,99.54,47.26,39.98,25.36,25.31
-78384,48,249,48249,1072,383,5391583,5391583,6640,2591,1184838989,1180903222,40838,16147,2248990851,2240251330,16.14,14.78,0.46,0.46,2.63,2.37,0.24,0.24
-78385,48,261,48261,277,113,535386630,530008919,277,113,535386630,530008919,416,233,5039591490,3777053964,100,100,100,100,66.59,48.5,10.62,14.03
-78387,48,025,48025,487,213,123116164,123059833,9574,3706,556507726,555410015,31861,10649,2280055900,2279809490,5.09,5.75,22.12,22.16,1.53,2,5.4,5.4
-78387,48,409,48409,9087,3493,433391562,432350182,9574,3706,556507726,555410015,64804,26521,1833568404,1796028941,94.91,94.25,77.88,77.84,14.02,13.17,23.64,24.07
-78389,48,025,48025,1541,679,330016002,330015317,1541,679,330016002,330015317,31861,10649,2280055900,2279809490,100,100,100,100,4.84,6.38,14.47,14.48
-78390,48,007,48007,53,58,62521512,49856498,5616,2235,456991317,442170449,23158,15355,1367489944,652868851,0.94,2.6,13.68,11.28,0.23,0.38,4.57,7.64
-78390,48,409,48409,5563,2177,394469805,392313951,5616,2235,456991317,442170449,64804,26521,1833568404,1796028941,99.06,97.4,86.32,88.72,8.58,8.21,21.51,21.84
-78391,48,025,48025,325,132,44979578,44973028,325,132,44979578,44973028,31861,10649,2280055900,2279809490,100,100,100,100,1.02,1.24,1.97,1.97
-78393,48,391,48391,2379,1112,429392730,428326653,2379,1112,429392730,428326653,7383,3726,2119239623,1995440836,100,100,100,100,32.22,29.84,20.26,21.47
-78401,48,355,48355,5391,2379,6500672,5580455,5391,2379,6500672,5580455,340223,141033,3018884805,2171658351,100,100,100,100,1.58,1.69,0.22,0.26
-78402,48,355,48355,536,496,2838614,2838614,536,496,2838614,2838614,340223,141033,3018884805,2171658351,100,100,100,100,0.16,0.35,0.09,0.13
-78404,48,355,48355,17236,7842,8046151,8046151,17236,7842,8046151,8046151,340223,141033,3018884805,2171658351,100,100,100,100,5.07,5.56,0.27,0.37
-78405,48,355,48355,16867,6289,13154232,13154232,16867,6289,13154232,13154232,340223,141033,3018884805,2171658351,100,100,100,100,4.96,4.46,0.44,0.61
-78406,48,355,48355,1413,357,33349400,33349400,1413,357,33349400,33349400,340223,141033,3018884805,2171658351,100,100,100,100,0.42,0.25,1.1,1.54
-78407,48,355,48355,2955,1314,12181547,10475667,2955,1314,12181547,10475667,340223,141033,3018884805,2171658351,100,100,100,100,0.87,0.93,0.4,0.48
-78408,48,355,48355,12061,4689,11495250,11495250,12061,4689,11495250,11495250,340223,141033,3018884805,2171658351,100,100,100,100,3.55,3.32,0.38,0.53
-78409,48,355,48355,2939,1154,30721846,30721846,2939,1154,30721846,30721846,340223,141033,3018884805,2171658351,100,100,100,100,0.86,0.82,1.02,1.41
-78410,48,355,48355,26387,9842,59967102,59058217,26387,9842,59967102,59058217,340223,141033,3018884805,2171658351,100,100,100,100,7.76,6.98,1.99,2.72
-78411,48,355,48355,28024,11653,15541628,15526662,28024,11653,15541628,15526662,340223,141033,3018884805,2171658351,100,100,100,100,8.24,8.26,0.51,0.71
-78412,48,355,48355,36003,15470,28560344,22786171,36003,15470,28560344,22786171,340223,141033,3018884805,2171658351,100,100,100,100,10.58,10.97,0.95,1.05
-78413,48,355,48355,36953,15862,20922042,20785270,36953,15862,20922042,20785270,340223,141033,3018884805,2171658351,100,100,100,100,10.86,11.25,0.69,0.96
-78414,48,355,48355,30165,11985,39087502,37156986,30165,11985,39087502,37156986,340223,141033,3018884805,2171658351,100,100,100,100,8.87,8.5,1.29,1.71
-78415,48,355,48355,39271,14265,268706360,268447635,39271,14265,268706360,268447635,340223,141033,3018884805,2171658351,100,100,100,100,11.54,10.11,8.9,12.36
-78416,48,355,48355,15508,5540,7604013,7604013,15508,5540,7604013,7604013,340223,141033,3018884805,2171658351,100,100,100,100,4.56,3.93,0.25,0.35
-78417,48,355,48355,4176,1373,23586912,23586912,4176,1373,23586912,23586912,340223,141033,3018884805,2171658351,100,100,100,100,1.23,0.97,0.78,1.09
-78418,48,273,48273,6,3,28740295,28137564,29854,14739,208689688,112503190,32061,12787,2823618909,2282577985,0.02,0.02,13.77,25.01,0.02,0.02,1.02,1.23
-78418,48,355,48355,29848,14736,179949393,84365626,29854,14739,208689688,112503190,340223,141033,3018884805,2171658351,99.98,99.98,86.23,74.99,8.77,10.45,5.96,3.88
-78419,48,355,48355,694,193,3332282,3332282,694,193,3332282,3332282,340223,141033,3018884805,2171658351,100,100,100,100,0.2,0.14,0.11,0.15
-78501,48,215,48215,61219,22489,39741437,39730145,61219,22489,39741437,39730145,774769,248287,4099712855,4068521768,100,100,100,100,7.9,9.06,0.97,0.98
-78503,48,215,48215,21706,7188,44553388,44123957,21706,7188,44553388,44123957,774769,248287,4099712855,4068521768,100,100,100,100,2.8,2.9,1.09,1.08
-78504,48,215,48215,48703,16823,45796472,45796472,48703,16823,45796472,45796472,774769,248287,4099712855,4068521768,100,100,100,100,6.29,6.78,1.12,1.13
-78516,48,215,48215,33722,11498,99099520,98519203,33722,11498,99099520,98519203,774769,248287,4099712855,4068521768,100,100,100,100,4.35,4.63,2.42,2.42
-78520,48,061,48061,59408,19417,100945679,94546258,59408,19417,100945679,94546258,406220,141924,3306009649,2307478146,100,100,100,100,14.62,13.68,3.05,4.1
-78521,48,061,48061,93818,27808,313510162,241226803,93818,27808,313510162,241226803,406220,141924,3306009649,2307478146,100,100,100,100,23.1,19.59,9.48,10.45
-78526,48,061,48061,42460,12240,118486572,114031194,42460,12240,118486572,114031194,406220,141924,3306009649,2307478146,100,100,100,100,10.45,8.62,3.58,4.94
-78535,48,061,48061,581,196,3172411,3161926,581,196,3172411,3161926,406220,141924,3306009649,2307478146,100,100,100,100,0.14,0.14,0.1,0.14
-78536,48,427,48427,451,209,154438803,154438803,451,209,154438803,154438803,60968,19526,3183320859,3168018574,100,100,100,100,0.74,1.07,4.85,4.87
-78537,48,215,48215,39454,13395,164265946,161806304,39454,13395,164265946,161806304,774769,248287,4099712855,4068521768,100,100,100,100,5.09,5.39,4.01,3.98
-78538,48,215,48215,10657,3127,193648831,183915090,10657,3127,193648831,183915090,774769,248287,4099712855,4068521768,100,100,100,100,1.38,1.26,4.72,4.52
-78539,48,215,48215,30783,11206,34207330,34051125,30783,11206,34207330,34051125,774769,248287,4099712855,4068521768,100,100,100,100,3.97,4.51,0.83,0.84
-78541,48,215,48215,42431,13161,750202151,748608782,42431,13161,750202151,748608782,774769,248287,4099712855,4068521768,100,100,100,100,5.48,5.3,18.3,18.4
-78542,48,215,48215,63293,16056,440205830,439930290,63293,16056,440205830,439930290,774769,248287,4099712855,4068521768,100,100,100,100,8.17,6.47,10.74,10.81
-78543,48,215,48215,8447,2635,15411506,15411506,8447,2635,15411506,15411506,774769,248287,4099712855,4068521768,100,100,100,100,1.09,1.06,0.38,0.38
-78545,48,427,48427,357,160,36003113,29609194,555,270,40722433,34328514,60968,19526,3183320859,3168018574,64.32,59.26,88.41,86.25,0.59,0.82,1.13,0.93
-78545,48,505,48505,198,110,4719320,4719320,555,270,40722433,34328514,14018,6203,2740247059,2585876105,35.68,40.74,11.59,13.75,1.41,1.77,0.17,0.18
-78548,48,427,48427,675,233,10127733,10127733,675,233,10127733,10127733,60968,19526,3183320859,3168018574,100,100,100,100,1.11,1.19,0.32,0.32
-78549,48,215,48215,990,325,71977840,71708987,990,325,71977840,71708987,774769,248287,4099712855,4068521768,100,100,100,100,0.13,0.13,1.76,1.76
-78550,48,061,48061,53152,19973,250167195,247625030,53152,19973,250167195,247625030,406220,141924,3306009649,2307478146,100,100,100,100,13.08,14.07,7.57,10.73
-78552,48,061,48061,34111,13636,128352408,127319534,34111,13636,128352408,127319534,406220,141924,3306009649,2307478146,100,100,100,100,8.4,9.61,3.88,5.52
-78557,48,215,48215,12547,3316,31020323,30180750,12547,3316,31020323,30180750,774769,248287,4099712855,4068521768,100,100,100,100,1.62,1.34,0.76,0.74
-78558,48,215,48215,882,242,3512984,3512984,882,242,3512984,3512984,774769,248287,4099712855,4068521768,100,100,100,100,0.11,0.1,0.09,0.09
-78559,48,061,48061,12751,4726,93538192,91249977,12751,4726,93538192,91249977,406220,141924,3306009649,2307478146,100,100,100,100,3.14,3.33,2.83,3.95
-78560,48,215,48215,4368,1376,37655958,34984336,4368,1376,37655958,34984336,774769,248287,4099712855,4068521768,100,100,100,100,0.56,0.55,0.92,0.86
-78561,48,489,48489,779,214,4830047,4726336,779,214,4830047,4726336,22134,7040,2031244451,1529528675,100,100,100,100,3.52,3.04,0.24,0.31
-78562,48,215,48215,2868,588,68356814,65556130,2868,588,68356814,65556130,774769,248287,4099712855,4068521768,100,100,100,100,0.37,0.24,1.67,1.61
-78563,48,215,48215,376,159,673186086,672985244,376,159,673186086,672985244,774769,248287,4099712855,4068521768,100,100,100,100,0.05,0.06,16.42,16.54
-78564,48,505,48505,270,220,197836269,160856780,270,220,197836269,160856780,14018,6203,2740247059,2585876105,100,100,100,100,1.93,3.55,7.22,6.22
-78565,48,215,48215,402,176,14967564,13769183,402,176,14967564,13769183,774769,248287,4099712855,4068521768,100,100,100,100,0.05,0.07,0.37,0.34
-78566,48,061,48061,16230,4770,431191581,297743004,16230,4770,431191581,297743004,406220,141924,3306009649,2307478146,100,100,100,100,4,3.36,13.04,12.9
-78567,48,061,48061,533,203,4795613,4773427,533,203,4795613,4773427,406220,141924,3306009649,2307478146,100,100,100,100,0.13,0.14,0.15,0.21
-78569,48,061,48061,58,23,11000532,10969540,4039,1337,346392898,343906142,406220,141924,3306009649,2307478146,1.44,1.72,3.18,3.19,0.01,0.02,0.33,0.48
-78569,48,215,48215,86,34,50147826,50006518,4039,1337,346392898,343906142,774769,248287,4099712855,4068521768,2.13,2.54,14.48,14.54,0.01,0.01,1.22,1.23
-78569,48,489,48489,3895,1280,285244540,282930084,4039,1337,346392898,343906142,22134,7040,2031244451,1529528675,96.43,95.74,82.35,82.27,17.6,18.18,14.04,18.5
-78570,48,215,48215,32525,10191,195434821,193173663,32525,10191,195434821,193173663,774769,248287,4099712855,4068521768,100,100,100,100,4.2,4.1,4.77,4.75
-78572,48,215,48215,75221,28658,203703395,200792648,75221,28658,203703395,200792648,774769,248287,4099712855,4068521768,100,100,100,100,9.71,11.54,4.97,4.94
-78573,48,215,48215,34890,9749,88505880,88374788,34890,9749,88505880,88374788,774769,248287,4099712855,4068521768,100,100,100,100,4.5,3.93,2.16,2.17
-78574,48,215,48215,57071,15155,152332320,152332320,57071,15155,152332320,152332320,774769,248287,4099712855,4068521768,100,100,100,100,7.37,6.1,3.72,3.74
-78575,48,061,48061,8056,2951,33289093,31914915,8056,2951,33289093,31914915,406220,141924,3306009649,2307478146,100,100,100,100,1.98,2.08,1.01,1.38
-78576,48,215,48215,8775,2236,99569424,99561190,8775,2236,99569424,99561190,774769,248287,4099712855,4068521768,100,100,100,100,1.13,0.9,2.43,2.45
-78577,48,215,48215,70840,22936,82508859,82233396,70840,22936,82508859,82233396,774769,248287,4099712855,4068521768,100,100,100,100,9.14,9.24,2.01,2.02
-78578,48,061,48061,12516,6314,221533558,155097378,12516,6314,221533558,155097378,406220,141924,3306009649,2307478146,100,100,100,100,3.08,4.45,6.7,6.72
-78579,48,215,48215,4580,1177,21992461,21710228,4580,1177,21992461,21710228,774769,248287,4099712855,4068521768,100,100,100,100,0.59,0.47,0.54,0.53
-78580,48,261,48261,48,21,27393563,27392829,14963,4304,643899816,625935169,416,233,5039591490,3777053964,0.32,0.49,4.25,4.38,11.54,9.01,0.54,0.73
-78580,48,489,48489,14915,4283,616506253,598542340,14963,4304,643899816,625935169,22134,7040,2031244451,1529528675,99.68,99.51,95.75,95.62,67.39,60.84,30.35,39.13
-78582,48,427,48427,40455,12346,1690931936,1686210740,40455,12346,1690931936,1686210740,60968,19526,3183320859,3168018574,100,100,100,100,66.35,63.23,53.12,53.23
-78583,48,061,48061,6623,3225,241888058,228804999,6623,3225,241888058,228804999,406220,141924,3306009649,2307478146,100,100,100,100,1.63,2.27,7.32,9.92
-78584,48,427,48427,18128,6140,618293393,616662273,18128,6140,618293393,616662273,60968,19526,3183320859,3168018574,100,100,100,100,29.73,31.45,19.42,19.47
-78585,48,427,48427,396,176,26991449,26168668,396,176,26991449,26168668,60968,19526,3183320859,3168018574,100,100,100,100,0.65,0.9,0.85,0.83
-78586,48,061,48061,55878,17456,477221175,456648972,55878,17456,477221175,456648972,406220,141924,3306009649,2307478146,100,100,100,100,13.76,12.3,14.43,19.79
-78588,48,427,48427,238,127,100822553,100822553,238,127,100822553,100822553,60968,19526,3183320859,3168018574,100,100,100,100,0.39,0.65,3.17,3.18
-78589,48,215,48215,38004,10747,53855323,53855323,38004,10747,53855323,53855323,774769,248287,4099712855,4068521768,100,100,100,100,4.91,4.33,1.31,1.32
-78590,48,489,48489,289,97,7220963,7137233,289,97,7220963,7137233,22134,7040,2031244451,1529528675,100,100,100,100,1.31,1.38,0.36,0.47
-78591,48,427,48427,265,132,323327111,323202084,265,132,323327111,323202084,60968,19526,3183320859,3168018574,100,100,100,100,0.43,0.68,10.16,10.2
-78592,48,061,48061,836,265,9415723,9044594,836,265,9415723,9044594,406220,141924,3306009649,2307478146,100,100,100,100,0.21,0.19,0.28,0.39
-78593,48,061,48061,6324,1954,101449075,100867401,6324,1954,101449075,100867401,406220,141924,3306009649,2307478146,100,100,100,100,1.56,1.38,3.07,4.37
-78594,48,489,48489,1990,707,4836518,4797388,1990,707,4836518,4797388,22134,7040,2031244451,1529528675,100,100,100,100,8.99,10.04,0.24,0.31
-78595,48,215,48215,6082,1692,38800301,38800301,6082,1692,38800301,38800301,774769,248287,4099712855,4068521768,100,100,100,100,0.79,0.68,0.95,0.95
-78596,48,215,48215,63844,21949,155679937,153734958,63844,21949,155679937,153734958,774769,248287,4099712855,4068521768,100,100,100,100,8.24,8.84,3.8,3.78
-78597,48,061,48061,2885,6767,339056063,23321128,2885,6767,339056063,23321128,406220,141924,3306009649,2307478146,100,100,100,100,0.71,4.77,10.26,1.01
-78598,48,489,48489,226,437,18420776,14624694,226,437,18420776,14624694,22134,7040,2031244451,1529528675,100,100,100,100,1.02,6.21,0.91,0.96
-78602,48,021,48021,25160,9845,511071789,501409011,25160,9845,511071789,501409011,74171,29316,2319453791,2300298811,100,100,100,100,33.92,33.58,22.03,21.8
-78605,48,053,48053,4952,2013,424598914,423571895,4952,2013,424598914,423571895,42750,20870,2645057147,2575116582,100,100,100,100,11.58,9.65,16.05,16.45
-78606,48,031,48031,4987,2512,454682187,453242905,5205,2660,635003837,633504095,10497,5532,1847766354,1836951743,95.81,94.44,71.6,71.55,47.51,45.41,24.61,24.67
-78606,48,091,48091,141,78,8370755,8331730,5205,2660,635003837,633504095,108472,47108,1488927273,1449037063,2.71,2.93,1.32,1.32,0.13,0.17,0.56,0.57
-78606,48,259,48259,77,70,171950895,171929460,5205,2660,635003837,633504095,33410,14055,1717242441,1715745632,1.48,2.63,27.08,27.14,0.23,0.5,10.01,10.02
-78607,48,299,48299,166,208,44335281,31611226,166,208,44335281,31611226,19301,14280,2501557024,2419137915,100,100,100,100,0.86,1.46,1.77,1.31
-78608,48,053,48053,434,237,100141751,99776750,434,237,100141751,99776750,42750,20870,2645057147,2575116582,100,100,100,100,1.02,1.14,3.79,3.87
-78609,48,299,48299,2012,1558,93314044,60788621,2012,1558,93314044,60788621,19301,14280,2501557024,2419137915,100,100,100,100,10.42,10.91,3.73,2.51
-78610,48,055,48055,136,44,3193525,3193525,23502,8184,240195543,239275955,38066,13759,1417141902,1412208030,0.58,0.54,1.33,1.33,0.36,0.32,0.23,0.23
-78610,48,209,48209,21295,7456,169585706,168666779,23502,8184,240195543,239275955,157107,59417,1760992733,1755954943,90.61,91.1,70.6,70.49,13.55,12.55,9.63,9.61
-78610,48,453,48453,2071,684,67416312,67415651,23502,8184,240195543,239275955,1024266,441240,2649579607,2564612388,8.81,8.36,28.07,28.17,0.2,0.16,2.54,2.63
-78611,48,053,48053,12977,6280,757426666,719339113,12977,6280,757426666,719339113,42750,20870,2645057147,2575116582,100,100,100,100,30.36,30.09,28.64,27.93
-78612,48,021,48021,10861,4077,239304067,238077769,11457,4274,244502254,243038259,74171,29316,2319453791,2300298811,94.8,95.39,97.87,97.96,14.64,13.91,10.32,10.35
-78612,48,453,48453,596,197,5198187,4960490,11457,4274,244502254,243038259,1024266,441240,2649579607,2564612388,5.2,4.61,2.13,2.04,0.06,0.04,0.2,0.19
-78613,48,453,48453,8396,2658,13795402,13793672,65099,24120,73112706,72746761,1024266,441240,2649579607,2564612388,12.9,11.02,18.87,18.96,0.82,0.6,0.52,0.54
-78613,48,491,48491,56703,21462,59317304,58953089,65099,24120,73112706,72746761,422679,162773,2938184351,2896391221,87.1,88.98,81.13,81.04,13.42,13.19,2.02,2.04
-78614,48,177,48177,456,236,130514011,130506566,456,236,130514011,130506566,19807,8794,2770909268,2762708316,100,100,100,100,2.3,2.68,4.71,4.72
-78615,48,453,48453,513,211,38481475,38458243,1290,559,137095821,135896425,1024266,441240,2649579607,2564612388,39.77,37.75,28.07,28.3,0.05,0.05,1.45,1.5
-78615,48,491,48491,777,348,98614346,97438182,1290,559,137095821,135896425,422679,162773,2938184351,2896391221,60.23,62.25,71.93,71.7,0.18,0.21,3.36,3.36
-78616,48,021,48021,2524,818,58719202,58541790,7092,2573,285375347,284689372,74171,29316,2319453791,2300298811,35.59,31.79,20.58,20.56,3.4,2.79,2.53,2.54
-78616,48,055,48055,4568,1755,226656145,226147582,7092,2573,285375347,284689372,38066,13759,1417141902,1412208030,64.41,68.21,79.42,79.44,12,12.76,15.99,16.01
-78617,48,021,48021,4519,1316,49202017,49143171,22210,6027,180906001,179717734,74171,29316,2319453791,2300298811,20.35,21.84,27.2,27.34,6.09,4.49,2.12,2.14
-78617,48,453,48453,17691,4711,131703984,130574563,22210,6027,180906001,179717734,1024266,441240,2649579607,2564612388,79.65,78.16,72.8,72.66,1.73,1.07,4.97,5.09
-78618,48,171,48171,265,220,285105610,284887907,324,291,428259717,427869247,24837,12778,2749739326,2740760701,81.79,75.6,66.57,66.58,1.07,1.72,10.37,10.39
-78618,48,319,48319,59,71,143154107,142981340,324,291,428259717,427869247,4012,2733,2414423353,2405588947,18.21,24.4,33.43,33.42,1.47,2.6,5.93,5.94
-78619,48,209,48209,3026,1259,99103227,99103227,3026,1259,99103227,99103227,157107,59417,1760992733,1755954943,100,100,100,100,1.93,2.12,5.63,5.64
-78620,48,031,48031,59,36,9326568,9178421,14367,5633,444041938,442905661,10497,5532,1847766354,1836951743,0.41,0.64,2.1,2.07,0.56,0.65,0.5,0.5
-78620,48,209,48209,13096,5093,396217057,395804827,14367,5633,444041938,442905661,157107,59417,1760992733,1755954943,91.15,90.41,89.23,89.37,8.34,8.57,22.5,22.54
-78620,48,453,48453,1212,504,38498313,37922413,14367,5633,444041938,442905661,1024266,441240,2649579607,2564612388,8.44,8.95,8.67,8.56,0.12,0.11,1.45,1.48
-78621,48,021,48021,15475,5836,291316590,289650747,21659,7955,486813071,484332278,74171,29316,2319453791,2300298811,71.45,73.36,59.84,59.8,20.86,19.91,12.56,12.59
-78621,48,287,48287,574,248,52600044,52462417,21659,7955,486813071,484332278,16612,7499,1642311471,1629142826,2.65,3.12,10.8,10.83,3.46,3.31,3.2,3.22
-78621,48,453,48453,5131,1680,81571460,81437350,21659,7955,486813071,484332278,1024266,441240,2649579607,2564612388,23.69,21.12,16.76,16.81,0.5,0.38,3.08,3.18
-78621,48,491,48491,479,191,61324977,60781764,21659,7955,486813071,484332278,422679,162773,2938184351,2896391221,2.21,2.4,12.6,12.55,0.11,0.12,2.09,2.1
-78622,48,055,48055,296,126,2169979,2139161,296,126,2169979,2139161,38066,13759,1417141902,1412208030,100,100,100,100,0.78,0.92,0.15,0.15
-78623,48,091,48091,779,404,50707507,50622734,813,428,53241581,53156808,108472,47108,1488927273,1449037063,95.82,94.39,95.24,95.23,0.72,0.86,3.41,3.49
-78623,48,209,48209,34,24,2534074,2534074,813,428,53241581,53156808,157107,59417,1760992733,1755954943,4.18,5.61,4.76,4.77,0.02,0.04,0.14,0.14
-78624,48,171,48171,21069,10652,1671495852,1664831853,21513,10926,1840519886,1833817930,24837,12778,2749739326,2740760701,97.94,97.49,90.82,90.79,84.83,83.36,60.79,60.74
-78624,48,259,48259,444,274,169024034,168986077,21513,10926,1840519886,1833817930,33410,14055,1717242441,1715745632,2.06,2.51,9.18,9.21,1.33,1.95,9.84,9.85
-78626,48,491,48491,25996,9146,242990169,240988906,25996,9146,242990169,240988906,422679,162773,2938184351,2896391221,100,100,100,100,6.15,5.62,8.27,8.32
-78628,48,491,48491,23727,9532,193371923,190058119,23727,9532,193371923,190058119,422679,162773,2938184351,2896391221,100,100,100,100,5.61,5.86,6.58,6.56
-78629,48,123,48123,28,23,20416184,20255767,11887,4989,1107356175,1101753047,20097,9176,2358155287,2354235330,0.24,0.46,1.84,1.84,0.14,0.25,0.87,0.86
-78629,48,177,48177,11859,4966,1086939991,1081497280,11887,4989,1107356175,1101753047,19807,8794,2770909268,2762708316,99.76,99.54,98.16,98.16,59.87,56.47,39.23,39.15
-78631,48,171,48171,1822,978,385224887,384834275,2395,1351,842425704,841937027,24837,12778,2749739326,2740760701,76.08,72.39,45.73,45.71,7.34,7.65,14.01,14.04
-78631,48,265,48265,252,128,73216322,73171145,2395,1351,842425704,841937027,49625,23831,2867830868,2857580696,10.52,9.47,8.69,8.69,0.51,0.54,2.55,2.56
-78631,48,267,48267,321,245,383984495,383931607,2395,1351,842425704,841937027,4607,3371,3240534520,3240040898,13.4,18.13,45.58,45.6,6.97,7.27,11.85,11.85
-78632,48,055,48055,343,192,109860076,109740310,910,508,249863802,249358182,38066,13759,1417141902,1412208030,37.69,37.8,43.97,44.01,0.9,1.4,7.75,7.77
-78632,48,177,48177,567,316,140003726,139617872,910,508,249863802,249358182,19807,8794,2770909268,2762708316,62.31,62.2,56.03,55.99,2.86,3.59,5.05,5.05
-78633,48,491,48491,19349,9428,216373163,213074925,19349,9428,216373163,213074925,422679,162773,2938184351,2896391221,100,100,100,100,4.58,5.79,7.36,7.36
-78634,48,453,48453,382,120,563961,563961,22791,7884,165920037,164868324,1024266,441240,2649579607,2564612388,1.68,1.52,0.34,0.34,0.04,0.03,0.02,0.02
-78634,48,491,48491,22409,7764,165356076,164304363,22791,7884,165920037,164868324,422679,162773,2938184351,2896391221,98.32,98.48,99.66,99.66,5.3,4.77,5.63,5.67
-78635,48,031,48031,149,82,41392465,41284692,149,82,41392465,41284692,10497,5532,1847766354,1836951743,100,100,100,100,1.42,1.48,2.24,2.25
-78636,48,031,48031,3749,2019,912865035,905690423,3749,2019,912865035,905690423,10497,5532,1847766354,1836951743,100,100,100,100,35.71,36.5,49.4,49.3
-78638,48,187,48187,2005,923,297649889,296713119,2005,923,297649889,296713119,131533,50015,1851361994,1842257555,100,100,100,100,1.52,1.85,16.08,16.11
-78639,48,053,48053,928,693,31866001,29866603,7334,4666,120813740,113699046,42750,20870,2645057147,2575116582,12.65,14.85,26.38,26.27,2.17,3.32,1.2,1.16
-78639,48,299,48299,6406,3973,88947739,83832443,7334,4666,120813740,113699046,19301,14280,2501557024,2419137915,87.35,85.15,73.62,73.73,33.19,27.82,3.56,3.47
-78640,48,055,48055,1152,385,40175290,39642489,42954,13673,239590054,237402513,38066,13759,1417141902,1412208030,2.68,2.82,16.77,16.7,3.03,2.8,2.83,2.81
-78640,48,209,48209,41802,13288,199414764,197760024,42954,13673,239590054,237402513,157107,59417,1760992733,1755954943,97.32,97.18,83.23,83.3,26.61,22.36,11.32,11.26
-78641,48,453,48453,7179,3124,201525340,197325829,44295,15749,332791142,327562016,1024266,441240,2649579607,2564612388,16.21,19.84,60.56,60.24,0.7,0.71,7.61,7.69
-78641,48,491,48491,37116,12625,131265802,130236187,44295,15749,332791142,327562016,422679,162773,2938184351,2896391221,83.79,80.16,39.44,39.76,8.78,7.76,4.47,4.5
-78642,48,053,48053,219,114,23088719,23079032,9467,3484,260409904,259250810,42750,20870,2645057147,2575116582,2.31,3.27,8.87,8.9,0.51,0.55,0.87,0.9
-78642,48,491,48491,9248,3370,237321185,236171778,9467,3484,260409904,259250810,422679,162773,2938184351,2896391221,97.69,96.73,91.13,91.1,2.19,2.07,8.08,8.15
-78643,48,031,48031,17,17,527835,521802,6139,4003,1838417190,1823714940,10497,5532,1847766354,1836951743,0.28,0.42,0.03,0.03,0.16,0.31,0.03,0.03
-78643,48,299,48299,6122,3986,1837889355,1823193138,6139,4003,1838417190,1823714940,19301,14280,2501557024,2419137915,99.72,99.58,99.97,99.97,31.72,27.91,73.47,75.37
-78644,48,055,48055,17081,6178,485176810,483329667,17081,6178,485176810,483329667,38066,13759,1417141902,1412208030,100,100,100,100,44.87,44.9,34.24,34.23
-78645,48,453,48453,9773,5698,98441306,81769244,9773,5698,98441306,81769244,1024266,441240,2649579607,2564612388,100,100,100,100,0.95,1.29,3.72,3.19
-78648,48,055,48055,7190,2870,273817393,272980663,7683,3112,378692798,376887160,38066,13759,1417141902,1412208030,93.58,92.22,72.31,72.43,18.89,20.86,19.32,19.33
-78648,48,177,48177,158,84,51065871,50607413,7683,3112,378692798,376887160,19807,8794,2770909268,2762708316,2.06,2.7,13.48,13.43,0.8,0.96,1.84,1.83
-78648,48,187,48187,335,158,53809534,53299084,7683,3112,378692798,376887160,131533,50015,1851361994,1842257555,4.36,5.08,14.21,14.14,0.25,0.32,2.91,2.89
-78650,48,021,48021,1440,708,134837392,134464835,1599,776,173031707,172543341,74171,29316,2319453791,2300298811,90.06,91.24,77.93,77.93,1.94,2.42,5.81,5.85
-78650,48,287,48287,159,68,38194315,38078506,1599,776,173031707,172543341,16612,7499,1642311471,1629142826,9.94,8.76,22.07,22.07,0.96,0.91,2.33,2.34
-78652,48,209,48209,996,379,25175097,25175097,4466,1823,44786005,44786005,157107,59417,1760992733,1755954943,22.3,20.79,56.21,56.21,0.63,0.64,1.43,1.43
-78652,48,453,48453,3470,1444,19610908,19610908,4466,1823,44786005,44786005,1024266,441240,2649579607,2564612388,77.7,79.21,43.79,43.79,0.34,0.33,0.74,0.76
-78653,48,453,48453,16375,5532,273177116,271878667,16375,5532,273177116,271878667,1024266,441240,2649579607,2564612388,100,100,100,100,1.6,1.25,10.31,10.6
-78654,48,053,48053,16979,8245,434939016,416517699,17553,8662,544454480,518487146,42750,20870,2645057147,2575116582,96.73,95.19,79.89,80.33,39.72,39.51,16.44,16.17
-78654,48,453,48453,574,417,109515464,101969447,17553,8662,544454480,518487146,1024266,441240,2649579607,2564612388,3.27,4.81,20.11,19.67,0.06,0.09,4.13,3.98
-78655,48,055,48055,2057,805,46672325,46348033,2739,1100,92985020,92420333,38066,13759,1417141902,1412208030,75.1,73.18,50.19,50.15,5.4,5.85,3.29,3.28
-78655,48,187,48187,682,295,46312695,46072300,2739,1100,92985020,92420333,131533,50015,1851361994,1842257555,24.9,26.82,49.81,49.85,0.52,0.59,2.5,2.5
-78656,48,055,48055,2232,821,54579855,54275397,2271,833,55865239,55560781,38066,13759,1417141902,1412208030,98.28,98.56,97.7,97.69,5.86,5.97,3.85,3.84
-78656,48,209,48209,39,12,1285384,1285384,2271,833,55865239,55560781,157107,59417,1760992733,1755954943,1.72,1.44,2.3,2.31,0.02,0.02,0.07,0.07
-78657,48,053,48053,2062,966,33729293,32763846,5509,4381,110609833,102195236,42750,20870,2645057147,2575116582,37.43,22.05,30.49,32.06,4.82,4.63,1.28,1.27
-78657,48,299,48299,3447,3415,76880540,69431390,5509,4381,110609833,102195236,19301,14280,2501557024,2419137915,62.57,77.95,69.51,67.94,17.86,23.91,3.07,2.87
-78659,48,021,48021,2589,1194,228161818,227299541,2903,1363,295286182,294267606,74171,29316,2319453791,2300298811,89.18,87.6,77.27,77.24,3.49,4.07,9.84,9.88
-78659,48,287,48287,314,169,67124364,66968065,2903,1363,295286182,294267606,16612,7499,1642311471,1629142826,10.82,12.4,22.73,22.76,1.89,2.25,4.09,4.11
-78660,48,453,48453,68789,23950,117381245,117317488,68789,23950,117381245,117317488,1024266,441240,2649579607,2564612388,100,100,100,100,6.72,5.43,4.43,4.57
-78661,48,055,48055,335,128,6761742,6583869,335,128,6761742,6583869,38066,13759,1417141902,1412208030,100,100,100,100,0.88,0.93,0.48,0.47
-78662,48,021,48021,1936,868,163357719,163302528,2268,1012,206844416,206747913,74171,29316,2319453791,2300298811,85.36,85.77,78.98,78.99,2.61,2.96,7.04,7.1
-78662,48,055,48055,332,144,43486697,43445385,2268,1012,206844416,206747913,38066,13759,1417141902,1412208030,14.64,14.23,21.02,21.01,0.87,1.05,3.07,3.08
-78663,48,031,48031,683,406,304291843,302624714,746,442,320583307,318789418,10497,5532,1847766354,1836951743,91.55,91.86,94.92,94.93,6.51,7.34,16.47,16.47
-78663,48,209,48209,27,18,5673687,5549787,746,442,320583307,318789418,157107,59417,1760992733,1755954943,3.62,4.07,1.77,1.74,0.02,0.03,0.32,0.32
-78663,48,453,48453,36,18,10617777,10614917,746,442,320583307,318789418,1024266,441240,2649579607,2564612388,4.83,4.07,3.31,3.33,0,0,0.4,0.41
-78664,48,453,48453,6085,2118,5843956,5832055,52932,19894,43139816,42896074,1024266,441240,2649579607,2564612388,11.5,10.65,13.55,13.6,0.59,0.48,0.22,0.23
-78664,48,491,48491,46847,17776,37295860,37064019,52932,19894,43139816,42896074,422679,162773,2938184351,2896391221,88.5,89.35,86.45,86.4,11.08,10.92,1.27,1.28
-78665,48,491,48491,35985,12870,49348206,48574015,35985,12870,49348206,48574015,422679,162773,2938184351,2896391221,100,100,100,100,8.51,7.91,1.68,1.68
-78666,48,055,48055,2066,164,15830776,15768618,63836,24433,459702469,457268418,38066,13759,1417141902,1412208030,3.24,0.67,3.44,3.45,5.43,1.19,1.12,1.12
-78666,48,091,48091,12,9,1249832,1247549,63836,24433,459702469,457268418,108472,47108,1488927273,1449037063,0.02,0.04,0.27,0.27,0.01,0.02,0.08,0.09
-78666,48,187,48187,6113,1767,77662805,77037277,63836,24433,459702469,457268418,131533,50015,1851361994,1842257555,9.58,7.23,16.89,16.85,4.65,3.53,4.19,4.18
-78666,48,209,48209,55645,22493,364959056,363214974,63836,24433,459702469,457268418,157107,59417,1760992733,1755954943,87.17,92.06,79.39,79.43,35.42,37.86,20.72,20.68
-78669,48,031,48031,206,105,60279542,60202980,8731,4752,385562789,361644669,10497,5532,1847766354,1836951743,2.36,2.21,15.63,16.65,1.96,1.9,3.26,3.28
-78669,48,053,48053,2535,1480,128187377,123346250,8731,4752,385562789,361644669,42750,20870,2645057147,2575116582,29.03,31.14,33.25,34.11,5.93,7.09,4.85,4.79
-78669,48,453,48453,5990,3167,197095870,178095439,8731,4752,385562789,361644669,1024266,441240,2649579607,2564612388,68.61,66.65,51.12,49.25,0.58,0.72,7.44,6.94
-78670,48,187,48187,168,75,7453194,7359124,168,75,7453194,7359124,131533,50015,1851361994,1842257555,100,100,100,100,0.13,0.15,0.4,0.4
-78671,48,031,48031,18,20,14416051,14380000,654,354,121713623,120470917,10497,5532,1847766354,1836951743,2.75,5.65,11.84,11.94,0.17,0.36,0.78,0.78
-78671,48,171,48171,636,334,107297572,106090917,654,354,121713623,120470917,24837,12778,2749739326,2740760701,97.25,94.35,88.16,88.06,2.56,2.61,3.9,3.87
-78672,48,299,48299,931,936,44153114,34293215,931,936,44153114,34293215,19301,14280,2501557024,2419137915,100,100,100,100,4.82,6.55,1.77,1.42
-78675,48,171,48171,188,142,195217622,194898862,188,142,195217622,194898862,24837,12778,2749739326,2740760701,100,100,100,100,0.76,1.11,7.1,7.11
-78676,48,031,48031,30,28,12335563,12283145,12602,6393,437875278,437638949,10497,5532,1847766354,1836951743,0.24,0.44,2.82,2.81,0.29,0.51,0.67,0.67
-78676,48,209,48209,12572,6365,425539715,425355804,12602,6393,437875278,437638949,157107,59417,1760992733,1755954943,99.76,99.56,97.18,97.19,8,10.71,24.16,24.22
-78677,48,177,48177,92,42,66474013,66474013,92,42,66474013,66474013,19807,8794,2770909268,2762708316,100,100,100,100,0.46,0.48,2.4,2.41
-78681,48,491,48491,50606,17971,56670414,56272290,50606,17971,56670414,56272290,422679,162773,2938184351,2896391221,100,100,100,100,11.97,11.04,1.93,1.94
-78701,48,453,48453,6841,5036,4488691,4225636,6841,5036,4488691,4225636,1024266,441240,2649579607,2564612388,100,100,100,100,0.67,1.14,0.17,0.16
-78702,48,453,48453,21334,9032,13437535,12945838,21334,9032,13437535,12945838,1024266,441240,2649579607,2564612388,100,100,100,100,2.08,2.05,0.51,0.5
-78703,48,453,48453,19690,10425,15173565,14451214,19690,10425,15173565,14451214,1024266,441240,2649579607,2564612388,100,100,100,100,1.92,2.36,0.57,0.56
-78704,48,453,48453,42117,23575,22831865,22545278,42117,23575,22831865,22545278,1024266,441240,2649579607,2564612388,100,100,100,100,4.11,5.34,0.86,0.88
-78705,48,453,48453,31340,11265,5687340,5687340,31340,11265,5687340,5687340,1024266,441240,2649579607,2564612388,100,100,100,100,3.06,2.55,0.21,0.22
-78712,48,453,48453,860,0,824715,824715,860,0,824715,824715,1024266,441240,2649579607,2564612388,100,0,100,100,0.08,0,0.03,0.03
-78717,48,491,48491,22538,9055,33548582,33330352,22538,9055,33548582,33330352,422679,162773,2938184351,2896391221,100,100,100,100,5.33,5.56,1.14,1.15
-78719,48,453,48453,1764,586,48313393,48311283,1764,586,48313393,48311283,1024266,441240,2649579607,2564612388,100,100,100,100,0.17,0.13,1.82,1.88
-78721,48,453,48453,11425,4153,9662932,9616066,11425,4153,9662932,9616066,1024266,441240,2649579607,2564612388,100,100,100,100,1.12,0.94,0.36,0.37
-78722,48,453,48453,5901,3034,3922403,3922403,5901,3034,3922403,3922403,1024266,441240,2649579607,2564612388,100,100,100,100,0.58,0.69,0.15,0.15
-78723,48,453,48453,28330,12398,17971826,17971826,28330,12398,17971826,17971826,1024266,441240,2649579607,2564612388,100,100,100,100,2.77,2.81,0.68,0.7
-78724,48,453,48453,21696,6138,68301569,63183777,21696,6138,68301569,63183777,1024266,441240,2649579607,2564612388,100,100,100,100,2.12,1.39,2.58,2.46
-78725,48,453,48453,6083,1978,47343948,45515870,6083,1978,47343948,45515870,1024266,441240,2649579607,2564612388,100,100,100,100,0.59,0.45,1.79,1.77
-78726,48,453,48453,13122,5910,28181964,28147549,13122,5910,28186669,28152254,1024266,441240,2649579607,2564612388,100,100,99.98,99.98,1.28,1.34,1.06,1.1
-78726,48,491,48491,0,0,4705,4705,13122,5910,28186669,28152254,422679,162773,2938184351,2896391221,0,0,0.02,0.02,0,0,0,0
-78727,48,453,48453,26669,12977,21591395,21591395,26689,12984,22213414,22212535,1024266,441240,2649579607,2564612388,99.93,99.95,97.2,97.2,2.6,2.94,0.81,0.84
-78727,48,491,48491,20,7,622019,621140,26689,12984,22213414,22212535,422679,162773,2938184351,2896391221,0.07,0.05,2.8,2.8,0,0,0.02,0.02
-78728,48,453,48453,18549,9232,15626438,15619185,20299,10240,21049721,21002465,1024266,441240,2649579607,2564612388,91.38,90.16,74.24,74.37,1.81,2.09,0.59,0.61
-78728,48,491,48491,1750,1008,5423283,5383280,20299,10240,21049721,21002465,422679,162773,2938184351,2896391221,8.62,9.84,25.76,25.63,0.41,0.62,0.18,0.19
-78729,48,453,48453,2271,1171,1841733,1841733,27108,13284,24031439,23892699,1024266,441240,2649579607,2564612388,8.38,8.82,7.66,7.71,0.22,0.27,0.07,0.07
-78729,48,491,48491,24837,12113,22189706,22050966,27108,13284,24031439,23892699,422679,162773,2938184351,2896391221,91.62,91.18,92.34,92.29,5.88,7.44,0.76,0.76
-78730,48,453,48453,7955,3647,38466449,37269755,7955,3647,38466449,37269755,1024266,441240,2649579607,2564612388,100,100,100,100,0.78,0.83,1.45,1.45
-78731,48,453,48453,24614,12984,22804475,22253088,24614,12984,22804475,22253088,1024266,441240,2649579607,2564612388,100,100,100,100,2.4,2.94,0.86,0.87
-78732,48,453,48453,14060,5033,42226984,34322161,14060,5033,42226984,34322161,1024266,441240,2649579607,2564612388,100,100,100,100,1.37,1.14,1.59,1.34
-78733,48,453,48453,8762,3122,30381380,29670128,8762,3122,30381380,29670128,1024266,441240,2649579607,2564612388,100,100,100,100,0.86,0.71,1.15,1.16
-78734,48,453,48453,17655,8345,63031066,51899338,17655,8345,63031066,51899338,1024266,441240,2649579607,2564612388,100,100,100,100,1.72,1.89,2.38,2.02
-78735,48,453,48453,16131,7572,53222610,53222108,16131,7572,53222610,53222108,1024266,441240,2649579607,2564612388,100,100,100,100,1.57,1.72,2.01,2.08
-78736,48,453,48453,6946,2806,75077422,75077422,6946,2806,75077422,75077422,1024266,441240,2649579607,2564612388,100,100,100,100,0.68,0.64,2.83,2.93
-78737,48,209,48209,8575,3030,71504966,71504966,12081,4395,98928523,98923962,157107,59417,1760992733,1755954943,70.98,68.94,72.28,72.28,5.46,5.1,4.06,4.07
-78737,48,453,48453,3506,1365,27423557,27418996,12081,4395,98928523,98923962,1024266,441240,2649579607,2564612388,29.02,31.06,27.72,27.72,0.34,0.31,1.04,1.07
-78738,48,453,48453,12134,4799,44253722,43968609,12134,4799,44253722,43968609,1024266,441240,2649579607,2564612388,100,100,100,100,1.18,1.09,1.67,1.71
-78739,48,453,48453,16792,5537,29613883,29613883,16792,5537,29613883,29613883,1024266,441240,2649579607,2564612388,100,100,100,100,1.64,1.25,1.12,1.15
-78741,48,453,48453,44935,20500,20232818,19675268,44935,20500,20232818,19675268,1024266,441240,2649579607,2564612388,100,100,100,100,4.39,4.65,0.76,0.77
-78742,48,453,48453,820,322,15378585,14853922,820,322,15378585,14853922,1024266,441240,2649579607,2564612388,100,100,100,100,0.08,0.07,0.58,0.58
-78744,48,453,48453,42820,13720,55432224,55420088,42820,13720,55432224,55420088,1024266,441240,2649579607,2564612388,100,100,100,100,4.18,3.11,2.09,2.16
-78745,48,453,48453,55614,25749,34577796,34577796,55614,25749,34577796,34577796,1024266,441240,2649579607,2564612388,100,100,100,100,5.43,5.84,1.31,1.35
-78746,48,453,48453,26928,11520,60621153,58258653,26928,11520,60621153,58258653,1024266,441240,2649579607,2564612388,100,100,100,100,2.63,2.61,2.29,2.27
-78747,48,453,48453,14808,5491,61594269,61578835,14808,5491,61594269,61578835,1024266,441240,2649579607,2564612388,100,100,100,100,1.45,1.24,2.32,2.4
-78748,48,453,48453,40651,16857,32829280,32825971,40651,16857,32829280,32825971,1024266,441240,2649579607,2564612388,100,100,100,100,3.97,3.82,1.24,1.28
-78749,48,453,48453,34449,14857,26078906,26078450,34449,14857,26078906,26078450,1024266,441240,2649579607,2564612388,100,100,100,100,3.36,3.37,0.98,1.02
-78750,48,453,48453,14483,6043,26137506,26137506,26814,11723,34704935,34704358,1024266,441240,2649579607,2564612388,54.01,51.55,75.31,75.31,1.41,1.37,0.99,1.02
-78750,48,491,48491,12331,5680,8567429,8566852,26814,11723,34704935,34704358,422679,162773,2938184351,2896391221,45.99,48.45,24.69,24.69,2.92,3.49,0.29,0.3
-78751,48,453,48453,14385,8375,6208225,6208225,14385,8375,6208225,6208225,1024266,441240,2649579607,2564612388,100,100,100,100,1.4,1.9,0.23,0.24
-78752,48,453,48453,18064,7944,8658632,8658632,18064,7944,8658632,8658632,1024266,441240,2649579607,2564612388,100,100,100,100,1.76,1.8,0.33,0.34
-78753,48,453,48453,49301,19630,28404279,28404279,49301,19630,28404279,28404279,1024266,441240,2649579607,2564612388,100,100,100,100,4.81,4.45,1.07,1.11
-78754,48,453,48453,15036,6492,34332312,34325144,15036,6492,34332312,34325144,1024266,441240,2649579607,2564612388,100,100,100,100,1.47,1.47,1.3,1.34
-78756,48,453,48453,7194,4396,4329936,4329936,7194,4396,4329936,4329936,1024266,441240,2649579607,2564612388,100,100,100,100,0.7,1,0.16,0.17
-78757,48,453,48453,21310,10898,12731650,12731650,21310,10898,12731650,12731650,1024266,441240,2649579607,2564612388,100,100,100,100,2.08,2.47,0.48,0.5
-78758,48,453,48453,44072,19577,24044717,24044717,44072,19577,24044717,24044717,1024266,441240,2649579607,2564612388,100,100,100,100,4.3,4.44,0.91,0.94
-78759,48,453,48453,38586,20516,35846383,35846383,38891,20640,36045451,36045451,1024266,441240,2649579607,2564612388,99.22,99.4,99.45,99.45,3.77,4.65,1.35,1.4
-78759,48,491,48491,305,124,199068,199068,38891,20640,36045451,36045451,422679,162773,2938184351,2896391221,0.78,0.6,0.55,0.55,0.07,0.08,0.01,0.01
-78801,48,463,48463,21780,8463,2118243563,2110801453,21780,8463,2118243563,2110801453,26405,10811,4036842719,4019520455,100,100,100,100,82.48,78.28,52.47,52.51
-78802,48,463,48463,242,92,31482545,31396828,242,92,31482545,31396828,26405,10811,4036842719,4019520455,100,100,100,100,0.92,0.85,0.78,0.78
-78827,48,127,48127,1219,592,265920023,264023556,1219,592,265920023,264023556,9996,4350,3456371128,3441794213,100,100,100,100,12.19,13.61,7.69,7.67
-78828,48,137,48137,192,179,243030655,242447367,258,279,463403869,462348154,2002,1606,5490425663,5485225839,74.42,64.16,52.44,52.44,9.59,11.15,4.43,4.42
-78828,48,385,48385,66,100,220373214,219900787,258,279,463403869,462348154,3309,2599,1813252494,1810906179,25.58,35.84,47.56,47.56,1.99,3.85,12.15,12.14
-78829,48,507,48507,1207,523,1352416842,1349778814,1207,523,1352416842,1349778814,11677,4283,3371476736,3360266896,100,100,100,100,10.34,12.21,40.11,40.17
-78830,48,127,48127,786,413,533931137,532345994,786,413,533931137,532345994,9996,4350,3456371128,3441794213,100,100,100,100,7.86,9.49,15.45,15.47
-78832,48,271,48271,3598,1932,2818176060,2809546767,3598,1932,2818176060,2809546767,3598,1940,3535651029,3522525947,100,100,100,100,100,99.59,79.71,79.76
-78833,48,137,48137,119,84,337365526,337038272,1299,824,630565899,629688099,2002,1606,5490425663,5485225839,9.16,10.19,53.5,53.52,5.94,5.23,6.14,6.14
-78833,48,385,48385,1099,687,269644567,269280039,1299,824,630565899,629688099,3309,2599,1813252494,1810906179,84.6,83.37,42.76,42.76,33.21,26.43,14.87,14.87
-78833,48,463,48463,81,53,23555806,23369788,1299,824,630565899,629688099,26405,10811,4036842719,4019520455,6.24,6.43,3.74,3.71,0.31,0.49,0.58,0.58
-78834,48,127,48127,7829,3244,1447650006,1441878509,7829,3244,1447650006,1441878509,9996,4350,3456371128,3441794213,100,100,100,100,78.32,74.57,41.88,41.89
-78836,48,127,48127,128,84,552087248,550044196,128,84,552087248,550044196,9996,4350,3456371128,3441794213,100,100,100,100,1.28,1.93,15.97,15.98
-78837,48,465,48465,281,263,2185107341,2148777851,281,263,2185107341,2148777851,48879,18651,8372575337,8144863995,100,100,100,100,0.57,1.41,26.1,26.38
-78838,48,463,48463,275,181,117344482,116570799,275,181,117344482,116570799,26405,10811,4036842719,4019520455,100,100,100,100,1.04,1.67,2.91,2.9
-78839,48,127,48127,13,5,96232851,95731664,8578,3011,935674023,930688777,9996,4350,3456371128,3441794213,0.15,0.17,10.28,10.29,0.13,0.11,2.78,2.78
-78839,48,507,48507,8565,3006,839441172,834957113,8578,3011,935674023,930688777,11677,4283,3371476736,3360266896,99.85,99.83,89.72,89.71,73.35,70.18,24.9,24.85
-78840,48,465,48465,48149,18118,2574716892,2464280053,48149,18118,2574716892,2464280053,48879,18651,8372575337,8144863995,100,100,100,100,98.51,97.14,30.75,30.26
-78843,48,465,48465,336,14,12552677,12444363,336,14,12552677,12444363,48879,18651,8372575337,8144863995,100,100,100,100,0.69,0.08,0.15,0.15
-78850,48,325,48325,1145,590,700773146,697075858,1145,590,700773146,697075858,46006,17991,3456425671,3432656186,100,100,100,100,2.49,3.28,20.27,20.31
-78851,48,443,48443,23,31,1154446146,1154405279,23,31,1154446146,1154405279,984,700,6107364229,6107258291,100,100,100,100,2.34,4.43,18.9,18.9
-78852,48,323,48323,53040,16910,1498748853,1482697476,53040,16910,1498748853,1482697476,54258,17462,3345690025,3313264152,100,100,100,100,97.76,96.84,44.8,44.75
-78860,48,323,48323,229,105,131727555,130817033,229,105,131727555,130817033,54258,17462,3345690025,3313264152,100,100,100,100,0.42,0.6,3.94,3.95
-78861,48,325,48325,13701,4887,1195487472,1192326766,13701,4887,1195487472,1192326766,46006,17991,3456425671,3432656186,100,100,100,100,29.78,27.16,34.59,34.73
-78870,48,463,48463,984,455,307377702,305538598,984,455,307377702,305538598,26405,10811,4036842719,4019520455,100,100,100,100,3.73,4.21,7.61,7.6
-78871,48,465,48465,45,95,1126404628,1120874047,45,95,1126404628,1120874047,48879,18651,8372575337,8144863995,100,100,100,100,0.09,0.51,13.45,13.76
-78872,48,507,48507,1905,751,480539605,478732028,1905,751,480539605,478732028,11677,4283,3371476736,3360266896,100,100,100,100,16.31,17.53,14.25,14.25
-78873,48,385,48385,1788,1444,589862993,588834320,1788,1444,589862993,588834320,3309,2599,1813252494,1810906179,100,100,100,100,54.03,55.56,32.53,32.52
-78877,48,323,48323,989,441,157673852,154584784,989,441,157673852,154584784,54258,17462,3345690025,3313264152,100,100,100,100,1.82,2.53,4.71,4.67
-78879,48,385,48385,209,183,92219064,92084651,264,223,117452242,117186942,3309,2599,1813252494,1810906179,79.17,82.06,78.52,78.58,6.32,7.04,5.09,5.09
-78879,48,463,48463,55,40,25233178,25102291,264,223,117452242,117186942,26405,10811,4036842719,4019520455,20.83,17.94,21.48,21.42,0.21,0.37,0.63,0.62
-78880,48,137,48137,1647,1250,4282351606,4278313759,1682,1304,4428187879,4424019509,2002,1606,5490425663,5485225839,97.92,95.86,96.71,96.71,82.27,77.83,78,78
-78880,48,385,48385,35,54,145836273,145705750,1682,1304,4428187879,4424019509,3309,2599,1813252494,1810906179,2.08,4.14,3.29,3.29,1.06,2.08,8.04,8.05
-78881,48,463,48463,2335,1099,637476682,634475765,2335,1099,637476682,634475765,26405,10811,4036842719,4019520455,100,100,100,100,8.84,10.17,15.79,15.78
-78883,48,019,48019,353,304,197279461,196781535,353,304,197279461,196781535,20485,11561,2065867266,2048578865,100,100,100,100,1.72,2.63,9.55,9.61
-78884,48,019,48019,509,392,269362457,268921320,1158,818,630486949,629411039,20485,11561,2065867266,2048578865,43.96,47.92,42.72,42.73,2.48,3.39,13.04,13.13
-78884,48,325,48325,18,19,52955570,52850386,1158,818,630486949,629411039,46006,17991,3456425671,3432656186,1.55,2.32,8.4,8.4,0.04,0.11,1.53,1.54
-78884,48,463,48463,631,407,308168922,307639333,1158,818,630486949,629411039,26405,10811,4036842719,4019520455,54.49,49.76,48.88,48.88,2.39,3.76,7.63,7.65
-78885,48,019,48019,111,135,192987675,192819966,120,151,201103439,200911849,20485,11561,2065867266,2048578865,92.5,89.4,95.96,95.97,0.54,1.17,9.34,9.41
-78885,48,385,48385,9,16,8115764,8091883,120,151,201103439,200911849,3309,2599,1813252494,1810906179,7.5,10.6,4.04,4.03,0.27,0.62,0.45,0.45
-78886,48,163,48163,19,9,45863577,45836758,647,331,256575925,255474790,17217,5846,2937944355,2935750557,2.94,2.72,17.88,17.94,0.11,0.15,1.56,1.56
-78886,48,325,48325,628,322,210712348,209638032,647,331,256575925,255474790,46006,17991,3456425671,3432656186,97.06,97.28,82.12,82.06,1.37,1.79,6.1,6.11
-78931,48,015,48015,323,183,44719002,44324364,323,183,44719002,44324364,28417,12926,1700026094,1674448899,100,100,100,100,1.14,1.42,2.63,2.65
-78932,48,149,48149,513,335,59882840,59403173,757,527,142827242,141119943,24554,13868,2485891522,2460509670,67.77,63.57,41.93,42.09,2.09,2.42,2.41,2.41
-78932,48,477,48477,244,192,82944402,81716770,757,527,142827242,141119943,33718,15514,1610326677,1564232347,32.23,36.43,58.07,57.91,0.72,1.24,5.15,5.22
-78933,48,015,48015,707,402,96658275,95272659,1433,785,282307551,279804384,28417,12926,1700026094,1674448899,49.34,51.21,34.24,34.05,2.49,3.11,5.69,5.69
-78933,48,089,48089,726,383,185649276,184531725,1433,785,282307551,279804384,20874,10527,2521834352,2487097169,50.66,48.79,65.76,65.95,3.48,3.64,7.36,7.42
-78934,48,089,48089,6712,3281,504499091,496957007,6712,3281,504499091,496957007,20874,10527,2521834352,2487097169,100,100,100,100,32.15,31.17,20.01,19.98
-78935,48,089,48089,978,452,179617939,176349084,978,452,179617939,176349084,20874,10527,2521834352,2487097169,100,100,100,100,4.69,4.29,7.12,7.09
-78938,48,089,48089,91,62,32662584,31791497,471,293,57989258,57057098,20874,10527,2521834352,2487097169,19.32,21.16,56.33,55.72,0.44,0.59,1.3,1.28
-78938,48,149,48149,380,231,25326674,25265601,471,293,57989258,57057098,24554,13868,2485891522,2460509670,80.68,78.84,43.67,44.28,1.55,1.67,1.02,1.03
-78940,48,015,48015,176,127,25689713,25386739,2098,1439,360691328,348587960,28417,12926,1700026094,1674448899,8.39,8.83,7.12,7.28,0.62,0.98,1.51,1.52
-78940,48,089,48089,266,164,69882992,69657483,2098,1439,360691328,348587960,20874,10527,2521834352,2487097169,12.68,11.4,19.37,19.98,1.27,1.56,2.77,2.8
-78940,48,149,48149,1656,1148,265118623,253543738,2098,1439,360691328,348587960,24554,13868,2485891522,2460509670,78.93,79.78,73.5,72.73,6.74,8.28,10.66,10.3
-78941,48,021,48021,86,49,20085674,20060589,2962,1666,405186223,404766115,74171,29316,2319453791,2300298811,2.9,2.94,4.96,4.96,0.12,0.17,0.87,0.87
-78941,48,149,48149,2792,1558,342545960,342150937,2962,1666,405186223,404766115,24554,13868,2485891522,2460509670,94.26,93.52,84.54,84.53,11.37,11.23,13.78,13.91
-78941,48,177,48177,84,59,42554589,42554589,2962,1666,405186223,404766115,19807,8794,2770909268,2762708316,2.84,3.54,10.5,10.51,0.42,0.67,1.54,1.54
-78942,48,021,48021,33,28,17259188,17205100,8989,3712,534926390,532605456,74171,29316,2319453791,2300298811,0.37,0.75,3.23,3.23,0.04,0.1,0.74,0.75
-78942,48,149,48149,148,114,38830647,38789934,8989,3712,534926390,532605456,24554,13868,2485891522,2460509670,1.65,3.07,7.26,7.28,0.6,0.82,1.56,1.58
-78942,48,287,48287,8808,3570,478836555,476610422,8989,3712,534926390,532605456,16612,7499,1642311471,1629142826,97.99,96.17,89.51,89.49,53.02,47.61,29.16,29.26
-78943,48,089,48089,352,145,15327364,15051645,352,145,15327364,15051645,20874,10527,2521834352,2487097169,100,100,100,100,1.69,1.38,0.61,0.61
-78944,48,015,48015,562,316,41688407,41336778,562,316,41688407,41336778,28417,12926,1700026094,1674448899,100,100,100,100,1.98,2.44,2.45,2.47
-78945,48,021,48021,25,14,6928562,6920829,10494,5374,660808878,652993485,74171,29316,2319453791,2300298811,0.24,0.26,1.05,1.06,0.03,0.05,0.3,0.3
-78945,48,149,48149,10469,5360,653880316,646072656,10494,5374,660808878,652993485,24554,13868,2485891522,2460509670,99.76,99.74,98.95,98.94,42.64,38.65,26.3,26.26
-78946,48,149,48149,299,236,95338334,94401626,960,638,256929681,249415367,24554,13868,2485891522,2460509670,31.15,36.99,37.11,37.85,1.22,1.7,3.84,3.84
-78946,48,287,48287,479,318,150253341,143853242,960,638,256929681,249415367,16612,7499,1642311471,1629142826,49.9,49.84,58.48,57.68,2.88,4.24,9.15,8.83
-78946,48,477,48477,182,84,11338006,11160499,960,638,256929681,249415367,33718,15514,1610326677,1564232347,18.96,13.17,4.41,4.47,0.54,0.54,0.7,0.71
-78947,48,287,48287,4475,2149,556830213,553611493,4475,2149,556830213,553611493,16612,7499,1642311471,1629142826,100,100,100,100,26.94,28.66,33.91,33.98
-78948,48,287,48287,850,438,167266475,166619754,850,438,167266475,166619754,16612,7499,1642311471,1629142826,100,100,100,100,5.12,5.84,10.18,10.23
-78949,48,149,48149,517,382,206726398,206439048,517,382,206726398,206439048,24554,13868,2485891522,2460509670,100,100,100,100,2.11,2.75,8.32,8.39
-78950,48,015,48015,1365,847,202055097,199886812,2038,1278,287940772,285553464,28417,12926,1700026094,1674448899,66.98,66.28,70.17,70,4.8,6.55,11.89,11.94
-78950,48,089,48089,673,431,85885675,85666652,2038,1278,287940772,285553464,20874,10527,2521834352,2487097169,33.02,33.72,29.83,30,3.22,4.09,3.41,3.44
-78951,48,089,48089,26,23,5570393,5570393,26,23,5570393,5570393,20874,10527,2521834352,2487097169,100,100,100,100,0.12,0.22,0.22,0.22
-78953,48,021,48021,701,382,160662761,160273854,934,503,237604978,237068113,74171,29316,2319453791,2300298811,75.05,75.94,67.62,67.61,0.95,1.3,6.93,6.97
-78953,48,055,48055,233,121,76942217,76794259,934,503,237604978,237068113,38066,13759,1417141902,1412208030,24.95,24.06,32.38,32.39,0.61,0.88,5.43,5.44
-78954,48,015,48015,43,44,17220288,17096874,1071,908,196392045,194696144,28417,12926,1700026094,1674448899,4.01,4.85,8.77,8.78,0.15,0.34,1.01,1.02
-78954,48,149,48149,1028,864,179171757,177599270,1071,908,196392045,194696144,24554,13868,2485891522,2460509670,95.99,95.15,91.23,91.22,4.19,6.23,7.21,7.22
-78956,48,149,48149,4969,2590,335341826,335228354,5381,2876,437354839,437241367,24554,13868,2485891522,2460509670,92.34,90.06,76.68,76.67,20.24,18.68,13.49,13.62
-78956,48,285,48285,412,286,102013013,102013013,5381,2876,437354839,437241367,19263,10344,2513417590,2511532178,7.66,9.94,23.32,23.33,2.14,2.76,4.06,4.06
-78957,48,021,48021,8822,4181,438547012,433949047,9067,4354,490185233,484811743,74171,29316,2319453791,2300298811,97.3,96.03,89.47,89.51,11.89,14.26,18.91,18.86
-78957,48,149,48149,245,173,51638221,50862696,9067,4354,490185233,484811743,24554,13868,2485891522,2460509670,2.7,3.97,10.53,10.49,1,1.25,2.08,2.07
-78959,48,055,48055,45,26,31819072,31819072,1837,969,405196495,404638833,38066,13759,1417141902,1412208030,2.45,2.68,7.85,7.86,0.12,0.19,2.25,2.25
-78959,48,149,48149,128,129,59584390,59482002,1837,969,405196495,404638833,24554,13868,2485891522,2460509670,6.97,13.31,14.71,14.7,0.52,0.93,2.4,2.42
-78959,48,177,48177,1664,814,313793033,313337759,1837,969,405196495,404638833,19807,8794,2770909268,2762708316,90.58,84,77.44,77.44,8.4,9.26,11.32,11.34
-78962,48,089,48089,4232,2280,441543696,440060452,4733,2560,505171142,503599772,20874,10527,2521834352,2487097169,89.41,89.06,87.4,87.38,20.27,21.66,17.51,17.69
-78962,48,149,48149,501,280,63627446,63539320,4733,2560,505171142,503599772,24554,13868,2485891522,2460509670,10.59,10.94,12.6,12.62,2.04,2.02,2.56,2.58
-78963,48,149,48149,909,468,108878090,107731315,909,468,108878090,107731315,24554,13868,2485891522,2460509670,100,100,100,100,3.7,3.37,4.38,4.38
-79001,48,117,48117,26,16,174961642,174785600,249,160,1067230487,1066833512,19372,7077,3880796253,3876869424,10.44,10,16.39,16.38,0.13,0.23,4.51,4.51
-79001,48,359,48359,223,144,892268845,892047912,249,160,1067230487,1066833512,2052,841,3888701328,3886363298,89.56,90,83.61,83.62,10.87,17.12,22.95,22.95
-79003,48,483,48483,162,83,102624918,102560399,162,83,102624918,102560399,5410,2730,2371084817,2368603566,100,100,100,100,2.99,3.04,4.33,4.33
-79005,48,295,48295,1658,605,390754437,390704165,1735,639,514377133,514326861,3302,1512,2414631557,2414332816,95.56,94.68,75.97,75.96,50.21,40.01,16.18,16.18
-79005,48,357,48357,77,34,123622696,123622696,1735,639,514377133,514326861,10223,4062,2377974193,2376642415,4.44,5.32,24.03,24.04,0.75,0.84,5.2,5.2
-79007,48,233,48233,14542,6873,115461719,115292839,14542,6873,115461719,115292839,22150,10629,2317915665,2298404081,100,100,100,100,65.65,64.66,4.98,5.02
-79009,48,369,48369,2166,756,301461895,300087170,2166,756,301461895,300087170,10269,3799,2292548533,2281204393,100,100,100,100,21.09,19.9,13.15,13.15
-79010,48,359,48359,511,87,137140916,137021487,802,235,452098073,451609391,2052,841,3888701328,3886363298,63.72,37.02,30.33,30.34,24.9,10.34,3.53,3.53
-79010,48,375,48375,291,148,314957157,314587904,802,235,452098073,451609391,121073,47271,2387942018,2352666798,36.28,62.98,69.67,69.66,0.24,0.31,13.19,13.37
-79011,48,211,48211,86,50,176874177,174947056,236,132,311642929,309655874,3807,1629,2362475890,2347270276,36.44,37.88,56.76,56.5,2.26,3.07,7.49,7.45
-79011,48,483,48483,150,82,134768752,134708818,236,132,311642929,309655874,5410,2730,2371084817,2368603566,63.56,62.12,43.24,43.5,2.77,3,5.68,5.69
-79012,48,375,48375,902,288,172000400,171801076,976,316,172808670,172609346,121073,47271,2387942018,2352666798,92.42,91.14,99.53,99.53,0.75,0.61,7.2,7.3
-79012,48,381,48381,74,28,808270,808270,976,316,172808670,172609346,120725,51587,2389078985,2360887059,7.58,8.86,0.47,0.47,0.06,0.05,0.03,0.03
-79013,48,341,48341,3423,987,12383884,12184300,3423,987,12383884,12184300,21904,7881,2355906949,2330188778,100,100,100,100,15.63,12.52,0.53,0.52
-79014,48,211,48211,3721,1578,1996135179,1984712054,3771,1617,2454702458,2443244028,3807,1629,2362475890,2347270276,98.67,97.59,81.32,81.23,97.74,96.87,84.49,84.55
-79014,48,295,48295,50,39,458567279,458531974,3771,1617,2454702458,2443244028,3302,1512,2414631557,2414332816,1.33,2.41,18.68,18.77,1.51,2.58,18.99,18.99
-79015,48,381,48381,19277,8048,998354981,993720993,19277,8048,998354981,993720993,120725,51587,2389078985,2360887059,100,100,100,100,15.97,15.6,41.79,42.09
-79016,48,381,48381,94,0,30408,30408,94,0,30408,30408,120725,51587,2389078985,2360887059,100,0,100,100,0.08,0,0,0
-79018,48,205,48205,478,213,597928659,597629680,548,248,954010129,953560146,6062,1946,3789672079,3786647934,87.23,85.89,62.68,62.67,7.89,10.95,15.78,15.78
-79018,48,341,48341,45,24,179693227,179643147,548,248,954010129,953560146,21904,7881,2355906949,2330188778,8.21,9.68,18.84,18.84,0.21,0.3,7.63,7.71
-79018,48,359,48359,25,11,176388243,176287319,548,248,954010129,953560146,2052,841,3888701328,3886363298,4.56,4.44,18.49,18.49,1.22,1.31,4.54,4.54
-79019,48,011,48011,1707,786,1395468082,1387975786,1707,786,1395468082,1387975786,1901,904,2366801637,2354581881,100,100,100,100,89.79,86.95,58.96,58.95
-79021,48,189,48189,138,58,44267825,44267825,138,58,44267825,44267825,36273,13541,2602362403,2602115719,100,100,100,100,0.38,0.43,1.7,1.7
-79022,48,111,48111,5923,2487,2931727496,2929696958,10741,3951,4966008414,4961546574,6703,2827,3898606549,3893423598,55.14,62.95,59.04,59.05,88.36,87.97,75.2,75.25
-79022,48,205,48205,4818,1464,2034280918,2031849616,10741,3951,4966008414,4961546574,6062,1946,3789672079,3786647934,44.86,37.05,40.96,40.95,79.48,75.23,53.68,53.66
-79024,48,295,48295,405,205,150757234,150723652,405,205,150757234,150723652,3302,1512,2414631557,2414332816,100,100,100,100,12.27,13.56,6.24,6.24
-79025,48,117,48117,69,34,33458417,33458417,69,34,33458417,33458417,19372,7077,3880796253,3876869424,100,100,100,100,0.36,0.48,0.86,0.86
-79027,48,069,48069,5223,2021,785983380,780765234,5223,2021,785983380,780765234,8062,3166,2329157814,2316572704,100,100,100,100,64.79,63.83,33.75,33.7
-79029,48,341,48341,16177,5926,781005195,779226045,16177,5926,781005195,779226045,21904,7881,2355906949,2330188778,100,100,100,100,73.85,75.19,33.15,33.44
-79031,48,069,48069,46,22,65585247,65338819,1425,606,301516252,301161530,8062,3166,2329157814,2316572704,3.23,3.63,21.75,21.7,0.57,0.69,2.82,2.82
-79031,48,279,48279,1379,584,235931005,235822711,1425,606,301516252,301161530,13977,6128,2635871352,2631897591,96.77,96.37,78.25,78.3,9.87,9.53,8.95,8.96
-79032,48,189,48189,157,70,50095163,50095163,157,70,50095163,50095163,36273,13541,2602362403,2602115719,100,100,100,100,0.43,0.52,1.92,1.93
-79033,48,357,48357,109,52,30483967,30483967,109,52,30483967,30483967,10223,4062,2377974193,2376642415,100,100,100,100,1.07,1.28,1.28,1.28
-79034,48,295,48295,637,331,761842611,761796337,637,331,761842611,761796337,3302,1512,2414631557,2414332816,100,100,100,100,19.29,21.89,31.55,31.55
-79035,48,117,48117,67,39,532223555,532167553,5309,1935,1740011327,1734031300,19372,7077,3880796253,3876869424,1.26,2.02,30.59,30.69,0.35,0.55,13.71,13.73
-79035,48,369,48369,5242,1896,1207787772,1201863747,5309,1935,1740011327,1734031300,10269,3799,2292548533,2281204393,98.74,97.98,69.41,69.31,51.05,49.91,52.68,52.69
-79036,48,065,48065,585,259,95463222,95463222,5128,2555,175810256,165988112,6182,2784,2393423808,2383359553,11.41,10.14,54.3,57.51,9.46,9.3,3.99,4.01
-79036,48,233,48233,4400,2226,63547194,53725050,5128,2555,175810256,165988112,22150,10629,2317915665,2298404081,85.8,87.12,36.15,32.37,19.86,20.94,2.74,2.34
-79036,48,341,48341,138,67,6953758,6953758,5128,2555,175810256,165988112,21904,7881,2355906949,2330188778,2.69,2.62,3.96,4.19,0.63,0.85,0.3,0.3
-79036,48,375,48375,5,3,9846082,9846082,5128,2555,175810256,165988112,121073,47271,2387942018,2352666798,0.1,0.12,5.6,5.93,0,0.01,0.41,0.42
-79039,48,065,48065,689,351,282918073,282159008,779,409,581526081,579903001,6182,2784,2393423808,2383359553,88.45,85.82,48.65,48.66,11.15,12.61,11.82,11.84
-79039,48,129,48129,5,3,27195493,27126522,779,409,581526081,579903001,3677,2142,2416577429,2400623352,0.64,0.73,4.68,4.68,0.14,0.14,1.13,1.13
-79039,48,179,48179,85,55,271412515,270617471,779,409,581526081,579903001,22535,10158,2406962395,2398261524,10.91,13.45,46.67,46.67,0.38,0.54,11.28,11.28
-79040,48,195,48195,1647,696,972114066,971648906,1839,771,1402705897,1402240737,5613,2338,2383845051,2382296710,89.56,90.27,69.3,69.29,29.34,29.77,40.78,40.79
-79040,48,421,48421,192,75,430591831,430591831,1839,771,1402705897,1402240737,3034,1252,2391079318,2390650564,10.44,9.73,30.7,30.71,6.33,5.99,18.01,18.01
-79041,48,189,48189,3175,1308,654296623,654259443,3194,1324,687587632,687550452,36273,13541,2602362403,2602115719,99.41,98.79,95.16,95.16,8.75,9.66,25.14,25.14
-79041,48,279,48279,19,16,33291009,33291009,3194,1324,687587632,687550452,13977,6128,2635871352,2631897591,0.59,1.21,4.84,4.84,0.14,0.26,1.26,1.26
-79042,48,011,48011,27,27,80316185,79570094,1169,558,1117587982,1110988976,1901,904,2366801637,2354581881,2.31,4.84,7.19,7.16,1.42,2.99,3.39,3.38
-79042,48,069,48069,44,29,280900099,279937214,1169,558,1117587982,1110988976,8062,3166,2329157814,2316572704,3.76,5.2,25.13,25.2,0.55,0.92,12.06,12.08
-79042,48,381,48381,362,168,511581595,509865197,1169,558,1117587982,1110988976,120725,51587,2389078985,2360887059,30.97,30.11,45.78,45.89,0.3,0.33,21.41,21.6
-79042,48,437,48437,736,334,244790103,241616471,1169,558,1117587982,1110988976,7854,3221,2332780611,2305501907,62.96,59.86,21.9,21.75,9.37,10.37,10.49,10.48
-79043,48,069,48069,1464,550,328957278,326823788,1487,563,376700977,374567487,8062,3166,2329157814,2316572704,98.45,97.69,87.33,87.25,18.16,17.37,14.12,14.11
-79043,48,279,48279,23,13,47743699,47743699,1487,563,376700977,374567487,13977,6128,2635871352,2631897591,1.55,2.31,12.67,12.75,0.16,0.21,1.81,1.81
-79044,48,205,48205,766,269,507053272,506908896,766,269,507053272,506908896,6062,1946,3789672079,3786647934,100,100,100,100,12.64,13.82,13.38,13.39
-79045,48,069,48069,485,215,466709576,465009823,19473,7102,3166964959,3161925595,8062,3166,2329157814,2316572704,2.49,3.03,14.74,14.71,6.02,6.79,20.04,20.07
-79045,48,117,48117,18988,6887,2700255383,2696915772,19473,7102,3166964959,3161925595,19372,7077,3880796253,3876869424,97.51,96.97,85.26,85.29,98.02,97.32,69.58,69.56
-79046,48,295,48295,489,276,414987599,414866431,489,276,414987599,414866431,3302,1512,2414631557,2414332816,100,100,100,100,14.81,18.25,17.19,17.18
-79051,48,111,48111,29,22,91509210,91458344,29,22,91509210,91458344,6703,2827,3898606549,3893423598,100,100,100,100,0.43,0.78,2.35,2.35
-79052,48,069,48069,5,2,14295458,14241609,1259,553,471903417,467549351,8062,3166,2329157814,2316572704,0.4,0.36,3.03,3.05,0.06,0.06,0.61,0.61
-79052,48,189,48189,31,12,39426919,39426919,1259,553,471903417,467549351,36273,13541,2602362403,2602115719,2.46,2.17,8.35,8.43,0.09,0.09,1.52,1.52
-79052,48,437,48437,1223,539,418181040,413880823,1259,553,471903417,467549351,7854,3221,2332780611,2305501907,97.14,97.47,88.62,88.52,15.57,16.73,17.93,17.95
-79053,48,369,48369,137,63,50907913,50092726,137,63,50907913,50092726,10269,3799,2292548533,2281204393,100,100,100,100,1.33,1.66,2.22,2.2
-79054,48,179,48179,594,327,104657569,104254803,594,327,104657569,104254803,22535,10158,2406962395,2398261524,100,100,100,100,2.64,3.22,4.35,4.35
-79056,48,295,48295,63,56,106040689,106028549,63,56,106040689,106028549,3302,1512,2414631557,2414332816,100,100,100,100,1.91,3.7,4.39,4.39
-79057,48,129,48129,44,33,277923803,276860845,1206,654,999254696,996784006,3677,2142,2416577429,2400623352,3.65,5.05,27.81,27.78,1.2,1.54,11.5,11.53
-79057,48,179,48179,1107,579,571259098,570045621,1206,654,999254696,996784006,22535,10158,2406962395,2398261524,91.79,88.53,57.17,57.19,4.91,5.7,23.73,23.77
-79057,48,483,48483,55,42,150071795,149877540,1206,654,999254696,996784006,5410,2730,2371084817,2368603566,4.56,6.42,15.02,15.04,1.02,1.54,6.33,6.33
-79058,48,341,48341,0,2,49227830,49227830,10,8,105712922,105712922,21904,7881,2355906949,2330188778,0,25,46.57,46.57,0,0.03,2.09,2.11
-79058,48,375,48375,10,6,56485092,56485092,10,8,105712922,105712922,121073,47271,2387942018,2352666798,100,75,53.43,53.43,0.01,0.01,2.37,2.4
-79059,48,179,48179,28,22,131068506,131034185,837,399,1254903891,1254750300,22535,10158,2406962395,2398261524,3.35,5.51,10.44,10.44,0.12,0.22,5.45,5.46
-79059,48,393,48393,809,377,1123835385,1123716115,837,399,1254903891,1254750300,929,439,2393645352,2393298505,96.65,94.49,89.56,89.56,87.08,85.88,46.95,46.95
-79061,48,483,48483,316,196,421188515,420227431,316,196,421188515,420227431,5410,2730,2371084817,2368603566,100,100,100,100,5.84,7.18,17.76,17.74
-79062,48,195,48195,152,74,73396240,73295364,218,107,231792440,231510509,5613,2338,2383845051,2382296710,69.72,69.16,31.66,31.66,2.71,3.17,3.08,3.08
-79062,48,233,48233,66,33,158396200,158215145,218,107,231792440,231510509,22150,10629,2317915665,2298404081,30.28,30.84,68.34,68.34,0.3,0.31,6.83,6.88
-79063,48,069,48069,686,266,248142627,246718230,686,266,248142627,246718230,8062,3166,2329157814,2316572704,100,100,100,100,8.51,8.4,10.65,10.65
-79064,48,189,48189,93,42,113617469,113575488,2739,1097,378274896,378232915,36273,13541,2602362403,2602115719,3.4,3.83,30.04,30.03,0.26,0.31,4.37,4.36
-79064,48,279,48279,2646,1055,264657427,264657427,2739,1097,378274896,378232915,13977,6128,2635871352,2631897591,96.6,96.17,69.96,69.97,18.93,17.22,10.04,10.06
-79065,48,179,48179,20721,9174,971274135,967821781,20840,9230,1272241145,1268614641,22535,10158,2406962395,2398261524,99.43,99.39,76.34,76.29,91.95,90.31,40.35,40.36
-79065,48,393,48393,119,56,300967010,300792860,20840,9230,1272241145,1268614641,929,439,2393645352,2393298505,0.57,0.61,23.66,23.71,12.81,12.76,12.57,12.57
-79068,48,065,48065,3197,1346,1025515208,1020031532,3197,1346,1025515208,1020031532,6182,2784,2393423808,2383359553,100,100,100,100,51.71,48.35,42.85,42.8
-79070,48,357,48357,9919,3912,1978752230,1977463650,9919,3912,1978752230,1977463650,10223,4062,2377974193,2376642415,100,100,100,100,97.03,96.31,83.21,83.2
-79072,48,189,48189,28845,10405,989259422,989224406,28849,10407,991338720,991064392,36273,13541,2602362403,2602115719,99.99,99.98,99.79,99.81,79.52,76.84,38.01,38.02
-79072,48,437,48437,4,2,2079298,1839986,28849,10407,991338720,991064392,7854,3221,2332780611,2305501907,0.01,0.02,0.21,0.19,0.05,0.06,0.09,0.08
-79078,48,233,48233,377,225,66985704,58869181,377,225,66985704,58869181,22150,10629,2317915665,2298404081,100,100,100,100,1.7,2.12,2.89,2.56
-79079,48,087,48087,148,117,546814336,546814336,2646,1469,1387766600,1387329084,3057,1616,2381029857,2378750619,5.59,7.96,39.4,39.41,4.84,7.24,22.97,22.99
-79079,48,483,48483,2498,1352,840952264,840514748,2646,1469,1387766600,1387329084,5410,2730,2371084817,2368603566,94.41,92.04,60.6,60.59,46.17,49.52,35.47,35.49
-79080,48,065,48065,480,270,21673255,21673255,605,336,445204015,445038070,6182,2784,2393423808,2383359553,79.34,80.36,4.87,4.87,7.76,9.7,0.91,0.91
-79080,48,233,48233,125,66,423530760,423364815,605,336,445204015,445038070,22150,10629,2317915665,2298404081,20.66,19.64,95.13,95.13,0.56,0.62,18.27,18.42
-79081,48,195,48195,3814,1568,1338334745,1337352440,3912,1627,1667619804,1666582939,5613,2338,2383845051,2382296710,97.49,96.37,80.25,80.25,67.95,67.07,56.14,56.14
-79081,48,233,48233,49,35,163674339,163662977,3912,1627,1667619804,1666582939,22150,10629,2317915665,2298404081,1.25,2.15,9.81,9.82,0.22,0.33,7.06,7.12
-79081,48,357,48357,49,24,165610720,165567522,3912,1627,1667619804,1666582939,10223,4062,2377974193,2376642415,1.25,1.48,9.93,9.93,0.48,0.59,6.96,6.97
-79082,48,279,48279,315,162,218344700,218344700,315,162,218344700,218344700,13977,6128,2635871352,2631897591,100,100,100,100,2.25,2.64,8.28,8.3
-79083,48,233,48233,2591,1167,562458858,562186575,2661,1203,822375856,821781027,22150,10629,2317915665,2298404081,97.37,97.01,68.39,68.41,11.7,10.98,24.27,24.46
-79083,48,341,48341,70,36,259916998,259594452,2661,1203,822375856,821781027,21904,7881,2355906949,2330188778,2.63,2.99,31.61,31.59,0.32,0.46,11.03,11.14
-79084,48,421,48421,2366,956,1386221756,1385903387,2366,956,1386221756,1385903387,3034,1252,2391079318,2390650564,100,100,100,100,77.98,76.36,57.97,57.97
-79085,48,069,48069,53,35,3016821,3016821,53,35,3016821,3016821,8062,3166,2329157814,2316572704,100,100,100,100,0.66,1.11,0.13,0.13
-79086,48,341,48341,2039,834,301824638,301544788,2105,865,528824451,528544601,21904,7881,2355906949,2330188778,96.86,96.42,57.07,57.05,9.31,10.58,12.81,12.94
-79086,48,421,48421,66,31,226999813,226999813,2105,865,528824451,528544601,3034,1252,2391079318,2390650564,3.14,3.58,42.93,42.95,2.18,2.48,9.49,9.5
-79087,48,111,48111,751,318,629183548,626082808,751,318,629183548,626082808,6703,2827,3898606549,3893423598,100,100,100,100,11.2,11.25,16.14,16.08
-79088,48,045,48045,36,19,177767723,177660724,5945,2368,1507501108,1491715069,1637,953,2335059661,2330990994,0.61,0.8,11.79,11.91,2.2,1.99,7.61,7.62
-79088,48,069,48069,18,9,34091601,34037062,5945,2368,1507501108,1491715069,8062,3166,2329157814,2316572704,0.3,0.38,2.26,2.28,0.22,0.28,1.46,1.47
-79088,48,437,48437,5891,2340,1295641784,1280017283,5945,2368,1507501108,1491715069,7854,3221,2332780611,2305501907,99.09,98.82,85.95,85.81,75.01,72.65,55.54,55.52
-79091,48,381,48381,147,62,56641684,50092674,147,62,56641684,50092674,120725,51587,2389078985,2360887059,100,100,100,100,0.12,0.12,2.37,2.12
-79092,48,117,48117,64,32,137650408,137503703,1106,518,747458653,746592093,19372,7077,3880796253,3876869424,5.79,6.18,18.42,18.42,0.33,0.45,3.55,3.55
-79092,48,359,48359,1042,486,609808245,609088390,1106,518,747458653,746592093,2052,841,3888701328,3886363298,94.21,93.82,81.58,81.58,50.78,57.79,15.68,15.67
-79093,48,357,48357,69,40,79504580,79504580,69,40,79504580,79504580,10223,4062,2377974193,2376642415,100,100,100,100,0.67,0.98,3.34,3.35
-79094,48,011,48011,75,40,259351130,258088422,75,40,259351130,258088422,1901,904,2366801637,2354581881,100,100,100,100,3.95,4.42,10.96,10.96
-79095,48,087,48087,2686,1308,964566305,963356559,2686,1308,964566305,963356559,3057,1616,2381029857,2378750619,100,100,100,100,87.86,80.94,40.51,40.5
-79096,48,483,48483,2229,975,628666395,628198694,2229,975,628666395,628198694,5410,2730,2371084817,2368603566,100,100,100,100,41.2,35.71,26.51,26.52
-79097,48,065,48065,1150,528,311914469,308433504,1150,528,311914469,308433504,6182,2784,2393423808,2383359553,100,100,100,100,18.6,18.97,13.03,12.94
-79098,48,117,48117,158,69,264828373,264619904,517,211,549808208,549277467,19372,7077,3880796253,3876869424,30.56,32.7,48.17,48.18,0.82,0.97,6.82,6.83
-79098,48,359,48359,236,106,194917515,194782063,517,211,549808208,549277467,2052,841,3888701328,3886363298,45.65,50.24,35.45,35.46,11.5,12.6,5.01,5.01
-79098,48,375,48375,65,17,10189131,10165340,517,211,549808208,549277467,121073,47271,2387942018,2352666798,12.57,8.06,1.85,1.85,0.05,0.04,0.43,0.43
-79098,48,381,48381,58,19,79873189,79710160,517,211,549808208,549277467,120725,51587,2389078985,2360887059,11.22,9,14.53,14.51,0.05,0.04,3.34,3.38
-79101,48,375,48375,2817,1559,4145842,4145842,2817,1559,4145842,4145842,121073,47271,2387942018,2352666798,100,100,100,100,2.33,3.3,0.17,0.18
-79102,48,375,48375,9963,4462,6893784,6893784,9963,4462,6893784,6893784,121073,47271,2387942018,2352666798,100,100,100,100,8.23,9.44,0.29,0.29
-79103,48,375,48375,6418,2332,5715343,5715343,10594,3823,13359333,13319095,121073,47271,2387942018,2352666798,60.58,61,42.78,42.91,5.3,4.93,0.24,0.24
-79103,48,381,48381,4176,1491,7643990,7603752,10594,3823,13359333,13319095,120725,51587,2389078985,2360887059,39.42,39,57.22,57.09,3.46,2.89,0.32,0.32
-79104,48,375,48375,7869,2773,10039417,9927913,7869,2773,10039417,9927913,121073,47271,2387942018,2352666798,100,100,100,100,6.5,5.87,0.42,0.42
-79105,48,341,48341,6,3,44504480,44381357,6,3,44504480,44381357,21904,7881,2355906949,2330188778,100,100,100,100,0.03,0.04,1.89,1.9
-79106,48,375,48375,24570,11428,22186697,22166861,27967,12871,24266028,24246192,121073,47271,2387942018,2352666798,87.85,88.79,91.43,91.42,20.29,24.18,0.93,0.94
-79106,48,381,48381,3397,1443,2079331,2079331,27967,12871,24266028,24246192,120725,51587,2389078985,2360887059,12.15,11.21,8.57,8.58,2.81,2.8,0.09,0.09
-79107,48,375,48375,33844,11871,44649866,43437215,33844,11871,44649866,43437215,121073,47271,2387942018,2352666798,100,100,100,100,27.95,25.11,1.87,1.85
-79108,48,065,48065,76,26,6110809,6104536,17726,5064,434067906,428469417,6182,2784,2393423808,2383359553,0.43,0.51,1.41,1.42,1.23,0.93,0.26,0.26
-79108,48,375,48375,17650,5038,427957097,422364881,17726,5064,434067906,428469417,121073,47271,2387942018,2352666798,99.57,99.49,98.59,98.58,14.58,10.66,17.92,17.95
-79109,48,375,48375,6838,3509,5604984,5506468,43516,20968,27206826,27055809,121073,47271,2387942018,2352666798,15.71,16.74,20.6,20.35,5.65,7.42,0.23,0.23
-79109,48,381,48381,36678,17459,21601842,21549341,43516,20968,27206826,27055809,120725,51587,2389078985,2360887059,84.29,83.26,79.4,79.65,30.38,33.84,0.9,0.91
-79110,48,381,48381,18811,7453,14651764,14486450,18811,7453,14651764,14486450,120725,51587,2389078985,2360887059,100,100,100,100,15.58,14.45,0.61,0.61
-79111,48,375,48375,1808,503,29071643,28328728,1808,503,29071643,28328728,121073,47271,2387942018,2352666798,100,100,100,100,1.49,1.06,1.22,1.2
-79118,48,375,48375,103,56,28285921,27142766,19726,7615,450710305,440073898,121073,47271,2387942018,2352666798,0.52,0.74,6.28,6.17,0.09,0.12,1.18,1.15
-79118,48,381,48381,19623,7559,422424384,412931132,19726,7615,450710305,440073898,120725,51587,2389078985,2360887059,99.48,99.26,93.72,93.83,16.25,14.65,17.68,17.49
-79119,48,381,48381,11539,4830,268149219,262771671,11539,4830,268149219,262771671,120725,51587,2389078985,2360887059,100,100,100,100,9.56,9.36,11.22,11.13
-79121,48,375,48375,175,75,739494,739494,6575,3073,4793539,4793539,121073,47271,2387942018,2352666798,2.66,2.44,15.43,15.43,0.14,0.16,0.03,0.03
-79121,48,381,48381,6400,2998,4054045,4054045,6575,3073,4793539,4793539,120725,51587,2389078985,2360887059,97.34,97.56,84.57,84.57,5.3,5.81,0.17,0.17
-79124,48,375,48375,7730,3196,232388188,232290979,7819,3225,233572471,233474614,121073,47271,2387942018,2352666798,98.86,99.1,99.49,99.49,6.38,6.76,9.73,9.87
-79124,48,381,48381,89,29,1184283,1183635,7819,3225,233572471,233474614,120725,51587,2389078985,2360887059,1.14,0.9,0.51,0.51,0.07,0.06,0.05,0.05
-79201,48,075,48075,6982,2849,1607640216,1563589562,7040,2909,2272774813,2228484119,7041,2883,1848515358,1803680222,99.18,97.94,70.73,70.16,99.16,98.82,86.97,86.69
-79201,48,101,48101,25,30,373904988,373707015,7040,2909,2272774813,2228484119,1505,968,2335172384,2332448314,0.36,1.03,16.45,16.77,1.66,3.1,16.01,16.02
-79201,48,345,48345,33,30,291229609,291187542,7040,2909,2272774813,2228484119,1210,779,2563597631,2562954830,0.47,1.03,12.81,13.07,2.73,3.85,11.36,11.36
-79220,48,125,48125,197,151,499978287,498146608,197,151,499978287,498146608,2444,1282,2344512623,2335454793,100,100,100,100,8.06,11.78,21.33,21.33
-79225,48,197,48197,948,501,321742217,321367794,976,516,383300723,382877518,4139,2417,1804886299,1800337037,97.13,97.09,83.94,83.93,22.9,20.73,17.83,17.85
-79225,48,487,48487,28,15,61558506,61509724,976,516,383300723,382877518,13535,6318,2532732382,2514474467,2.87,2.91,16.06,16.07,0.21,0.24,2.43,2.45
-79226,48,011,48011,92,51,631666240,628947579,3153,1848,2224439429,2210331869,1901,904,2366801637,2354581881,2.92,2.76,28.4,28.45,4.84,5.64,26.69,26.71
-79226,48,045,48045,16,23,381639374,381347209,3153,1848,2224439429,2210331869,1637,953,2335059661,2330990994,0.51,1.24,17.16,17.25,0.98,2.41,16.34,16.36
-79226,48,129,48129,3033,1753,1174023422,1164472318,3153,1848,2224439429,2210331869,3677,2142,2416577429,2400623352,96.19,94.86,52.78,52.68,82.49,81.84,48.58,48.51
-79226,48,191,48191,12,21,37110393,35564763,3153,1848,2224439429,2210331869,3353,1943,2341599958,2288233552,0.38,1.14,1.67,1.61,0.36,1.08,1.58,1.55
-79227,48,155,48155,1317,776,1521122521,1514130940,1406,853,2237241718,2220502622,1336,789,1832893339,1824378528,93.67,90.97,67.99,68.19,98.58,98.35,82.99,82.99
-79227,48,275,48275,89,77,716119197,706371682,1406,853,2237241718,2220502622,3719,2044,2215674639,2203097010,6.33,9.03,32.01,31.81,2.39,3.77,32.32,32.06
-79229,48,125,48125,424,264,561294505,560541978,424,264,561294505,560541978,2444,1282,2344512623,2335454793,100,100,100,100,17.35,20.59,23.94,24
-79230,48,075,48075,27,12,85323661,85089445,158,82,165773635,165498407,7041,2883,1848515358,1803680222,17.09,14.63,51.47,51.41,0.38,0.42,4.62,4.72
-79230,48,087,48087,131,70,80449974,80408962,158,82,165773635,165498407,3057,1616,2381029857,2378750619,82.91,85.37,48.53,48.59,4.29,4.33,3.38,3.38
-79231,48,153,48153,45,26,34409275,34409275,45,26,34409275,34409275,6446,3004,2570621061,2569637321,100,100,100,100,0.7,0.87,1.34,1.34
-79233,48,191,48191,180,118,208971073,200515478,180,118,208971073,200515478,3353,1943,2341599958,2288233552,100,100,100,100,5.37,6.07,8.92,8.76
-79234,48,345,48345,110,78,306169482,306153015,110,78,306169482,306153015,1210,779,2563597631,2562954830,100,100,100,100,9.09,10.01,11.94,11.95
-79235,48,107,48107,47,26,148341177,148341177,3833,1811,1492404927,1492052163,6059,2902,2335374952,2331501397,1.23,1.44,9.94,9.94,0.78,0.9,6.35,6.36
-79235,48,153,48153,3778,1777,1307108309,1306755545,3833,1811,1492404927,1492052163,6446,3004,2570621061,2569637321,98.57,98.12,87.58,87.58,58.61,59.15,50.85,50.85
-79235,48,345,48345,8,8,36955441,36955441,3833,1811,1492404927,1492052163,1210,779,2563597631,2562954830,0.21,0.44,2.48,2.48,0.66,1.03,1.44,1.44
-79236,48,269,48269,262,167,996876233,993201239,262,167,996876233,993201239,286,186,2365544900,2359146771,100,100,100,100,91.61,89.78,42.14,42.1
-79237,48,129,48129,513,299,501289315,499905589,513,299,501289315,499905589,3677,2142,2416577429,2400623352,100,100,100,100,13.95,13.96,20.74,20.82
-79239,48,191,48191,211,172,536936651,515215764,211,172,536936651,515215764,3353,1943,2341599958,2288233552,100,100,100,100,6.29,8.85,22.93,22.52
-79240,48,129,48129,60,41,19161472,18829108,60,41,19161472,18829108,3677,2142,2416577429,2400623352,100,100,100,100,1.63,1.91,0.79,0.78
-79241,48,153,48153,2480,1104,884398101,883796814,2480,1104,884398101,883796814,6446,3004,2570621061,2569637321,100,100,100,100,38.47,36.75,34.4,34.39
-79243,48,125,48125,90,62,137304705,137155726,90,62,137304705,137155726,2444,1282,2344512623,2335454793,100,100,100,100,3.68,4.84,5.86,5.87
-79244,48,345,48345,720,449,519970702,519628546,720,449,519970702,519628546,1210,779,2563597631,2562954830,100,100,100,100,59.5,57.64,20.28,20.27
-79245,48,087,48087,47,83,333254918,332402811,2476,1335,679319208,674020690,3057,1616,2381029857,2378750619,1.9,6.22,49.06,49.32,1.54,5.14,14,13.97
-79245,48,129,48129,22,10,61041449,60922618,2476,1335,679319208,674020690,3677,2142,2416577429,2400623352,0.89,0.75,8.99,9.04,0.6,0.47,2.53,2.54
-79245,48,191,48191,2407,1242,285022841,280695261,2476,1335,679319208,674020690,3353,1943,2341599958,2288233552,97.21,93.03,41.96,41.64,71.79,63.92,12.17,12.27
-79247,48,487,48487,64,39,19693204,19693204,64,39,19693204,19693204,13535,6318,2532732382,2514474467,100,100,100,100,0.47,0.62,0.78,0.78
-79248,48,101,48101,1469,926,1499502464,1497084268,1493,941,1549071595,1546589603,1505,968,2335172384,2332448314,98.39,98.41,96.8,96.8,97.61,95.66,64.21,64.19
-79248,48,269,48269,24,15,49569131,49505335,1493,941,1549071595,1546589603,286,186,2365544900,2359146771,1.61,1.59,3.2,3.2,8.39,8.06,2.1,2.1
-79250,48,107,48107,39,28,73226895,73226895,1508,686,464630783,464376695,6059,2902,2335374952,2331501397,2.59,4.08,15.76,15.77,0.64,0.96,3.14,3.14
-79250,48,153,48153,43,27,92895192,92895192,1508,686,464630783,464376695,6446,3004,2570621061,2569637321,2.85,3.94,19.99,20,0.67,0.9,3.61,3.62
-79250,48,189,48189,1378,613,260425101,260425101,1508,686,464630783,464376695,36273,13541,2602362403,2602115719,91.38,89.36,56.05,56.08,3.8,4.53,10.01,10.01
-79250,48,303,48303,48,18,38083595,37829507,1508,686,464630783,464376695,278831,115064,2332802752,2319591231,3.18,2.62,8.2,8.15,0.02,0.02,1.63,1.63
-79251,48,087,48087,45,34,157775065,157695626,45,34,157775065,157695626,3057,1616,2381029857,2378750619,100,100,100,100,1.47,2.1,6.63,6.63
-79252,48,101,48101,11,12,87310944,87300803,3202,1928,1410249109,1408428690,1505,968,2335172384,2332448314,0.34,0.62,6.19,6.2,0.73,1.24,3.74,3.74
-79252,48,197,48197,3191,1916,1322938165,1321127887,3202,1928,1410249109,1408428690,4139,2417,1804886299,1800337037,99.66,99.38,93.81,93.8,77.1,79.27,73.3,73.38
-79255,48,045,48045,518,318,336324831,335433035,571,357,520563039,519650129,1637,953,2335059661,2330990994,90.72,89.08,64.61,64.55,31.64,33.37,14.4,14.39
-79255,48,153,48153,33,31,168269356,168248242,571,357,520563039,519650129,6446,3004,2570621061,2569637321,5.78,8.68,32.32,32.38,0.51,1.03,6.55,6.55
-79255,48,345,48345,20,8,15968852,15968852,571,357,520563039,519650129,1210,779,2563597631,2562954830,3.5,2.24,3.07,3.07,1.65,1.03,0.62,0.62
-79256,48,345,48345,319,202,451589242,451541282,319,202,451589242,451541282,1210,779,2563597631,2562954830,100,100,100,100,26.36,25.93,17.62,17.62
-79257,48,045,48045,1067,593,1052208776,1050982869,1067,593,1052208776,1050982869,1637,953,2335059661,2330990994,100,100,100,100,65.18,62.22,45.06,45.09
-79258,48,153,48153,67,39,83540828,83532253,67,39,83540828,83532253,6446,3004,2570621061,2569637321,100,100,100,100,1.04,1.3,3.25,3.25
-79259,48,075,48075,32,22,35757748,35697747,48,43,231760381,231139120,7041,2883,1848515358,1803680222,66.67,51.16,15.43,15.44,0.45,0.76,1.93,1.98
-79259,48,191,48191,16,21,196002633,195441373,48,43,231760381,231139120,3353,1943,2341599958,2288233552,33.33,48.84,84.57,84.56,0.48,1.08,8.37,8.54
-79261,48,191,48191,527,360,593120634,586469264,527,360,593120634,586469264,3353,1943,2341599958,2288233552,100,100,100,100,15.72,18.53,25.33,25.63
-79311,48,189,48189,2452,1029,327301400,327168893,3445,1421,449809635,449247065,36273,13541,2602362403,2602115719,71.18,72.41,72.76,72.83,6.76,7.6,12.58,12.57
-79311,48,303,48303,993,392,122508235,122078172,3445,1421,449809635,449247065,278831,115064,2332802752,2319591231,28.82,27.59,27.24,27.17,0.36,0.34,5.25,5.26
-79312,48,279,48279,971,442,227705189,227640214,971,442,227705189,227640214,13977,6128,2635871352,2631897591,100,100,100,100,6.95,7.21,8.64,8.65
-79313,48,219,48219,1487,633,216820215,216820215,1571,697,340308322,340308322,22935,9293,2353169996,2352723875,94.65,90.82,63.71,63.71,6.48,6.81,9.21,9.22
-79313,48,279,48279,84,64,123488107,123488107,1571,697,340308322,340308322,13977,6128,2635871352,2631897591,5.35,9.18,36.29,36.29,0.6,1.04,4.68,4.69
-79314,48,079,48079,56,38,41457216,41457216,56,38,41457216,41457216,3127,1360,2007858882,2007629814,100,100,100,100,1.79,2.79,2.06,2.06
-79316,48,445,48445,11451,4319,1212344997,1210217788,11451,4319,1212344997,1210217788,12651,4828,2307527162,2302083249,100,100,100,100,90.51,89.46,52.54,52.57
-79322,48,107,48107,2049,919,783602628,783577162,2049,919,783602628,783577162,6059,2902,2335374952,2331501397,100,100,100,100,33.82,31.67,33.55,33.61
-79323,48,165,48165,788,307,317367083,317367083,6559,2409,596684339,596650010,17526,6301,3892396184,3891133239,12.01,12.74,53.19,53.19,4.5,4.87,8.15,8.16
-79323,48,501,48501,5771,2102,279317256,279282927,6559,2409,596684339,596650010,7879,2978,2071268989,2071234660,87.99,87.26,46.81,46.81,73.25,70.58,13.49,13.48
-79324,48,017,48017,61,28,183668442,183668442,61,28,183668442,183668442,7165,2784,2143166601,2141394831,100,100,100,100,0.85,1.01,8.57,8.58
-79325,48,017,48017,23,10,16432618,16432618,2319,928,463812534,461726788,7165,2784,2143166601,2141394831,0.99,1.08,3.54,3.56,0.32,0.36,0.77,0.77
-79325,48,369,48369,2296,918,447379916,445294170,2319,928,463812534,461726788,10269,3799,2292548533,2281204393,99.01,98.92,96.46,96.44,22.36,24.16,19.51,19.52
-79326,48,279,48279,40,26,99606447,99606447,40,26,99606447,99606447,13977,6128,2635871352,2631897591,100,100,100,100,0.29,0.42,3.78,3.78
-79329,48,303,48303,3300,1297,243613841,242579619,3300,1297,243613841,242579619,278831,115064,2332802752,2319591231,100,100,100,100,1.18,1.13,10.44,10.46
-79330,48,169,48169,114,286,473892165,470330310,114,286,473892165,470330310,6461,2237,2321145943,2313926862,100,100,100,100,1.76,12.78,20.42,20.33
-79331,48,115,48115,13122,4904,1481139937,1478188959,13258,4966,1939119600,1936167883,13833,5220,2336502280,2331781493,98.97,98.75,76.38,76.35,94.86,93.95,63.39,63.39
-79331,48,165,48165,58,33,263931749,263931749,13258,4966,1939119600,1936167883,17526,6301,3892396184,3891133239,0.44,0.66,13.61,13.63,0.33,0.52,6.78,6.78
-79331,48,317,48317,78,29,194047914,194047175,13258,4966,1939119600,1936167883,4799,1852,2371625958,2369694111,0.59,0.58,10.01,10.02,1.63,1.57,8.18,8.19
-79336,48,219,48219,16972,6830,1119171908,1119157119,16972,6830,1119171908,1119157119,22935,9293,2353169996,2352723875,100,100,100,100,74,73.5,47.56,47.57
-79339,48,219,48219,129,50,188711306,188711306,7230,3175,718204178,718104649,22935,9293,2353169996,2352723875,1.78,1.57,26.28,26.28,0.56,0.54,8.02,8.02
-79339,48,279,48279,7101,3125,529492872,529393343,7230,3175,718204178,718104649,13977,6128,2635871352,2631897591,98.22,98.43,73.72,73.72,50.8,51,20.09,20.11
-79342,48,165,48165,352,154,247766678,247766678,352,154,247766678,247766678,17526,6301,3892396184,3891133239,100,100,100,100,2.01,2.44,6.37,6.37
-79343,48,107,48107,1433,629,254625182,254625182,1571,692,354102775,353510790,6059,2902,2335374952,2331501397,91.22,90.9,71.91,72.03,23.65,21.67,10.9,10.92
-79343,48,303,48303,138,63,99477593,98885608,1571,692,354102775,353510790,278831,115064,2332802752,2319591231,8.78,9.1,28.09,27.97,0.05,0.05,4.26,4.26
-79344,48,017,48017,56,28,39016783,39016783,56,28,39016783,39016783,7165,2784,2143166601,2141394831,100,100,100,100,0.78,1.01,1.82,1.82
-79345,48,305,48305,30,15,24187164,24187164,920,378,491695518,491473963,5915,2676,2314094635,2309924936,3.26,3.97,4.92,4.92,0.51,0.56,1.05,1.05
-79345,48,445,48445,890,363,467508354,467286799,920,378,491695518,491473963,12651,4828,2307527162,2302083249,96.74,96.03,95.08,95.08,7.04,7.52,20.26,20.3
-79346,48,017,48017,22,12,38150601,38150601,2427,1065,1000270555,1000270555,7165,2784,2143166601,2141394831,0.91,1.13,3.81,3.81,0.31,0.43,1.78,1.78
-79346,48,079,48079,2405,1053,962119954,962119954,2427,1065,1000270555,1000270555,3127,1360,2007858882,2007629814,99.09,98.87,96.19,96.19,76.91,77.43,47.92,47.92
-79347,48,017,48017,6911,2662,1467546215,1465888122,7462,2885,1832854899,1830011667,7165,2784,2143166601,2141394831,92.62,92.27,80.07,80.1,96.45,95.62,68.48,68.45
-79347,48,069,48069,38,17,32981521,32876857,7462,2885,1832854899,1830011667,8062,3166,2329157814,2316572704,0.51,0.59,1.8,1.8,0.47,0.54,1.42,1.42
-79347,48,279,48279,85,40,70162512,70162512,7462,2885,1832854899,1830011667,13977,6128,2635871352,2631897591,1.14,1.39,3.83,3.83,0.61,0.65,2.66,2.67
-79347,48,369,48369,428,166,262164651,261084176,7462,2885,1832854899,1830011667,10269,3799,2292548533,2281204393,5.74,5.75,14.3,14.27,4.17,4.37,11.44,11.45
-79350,48,303,48303,392,164,3786632,3735295,392,164,3786632,3735295,278831,115064,2332802752,2319591231,100,100,100,100,0.14,0.14,0.16,0.16
-79351,48,033,48033,107,65,313061145,312672029,1326,632,842533375,841039394,641,385,2346663082,2324365341,8.07,10.28,37.16,37.18,16.69,16.88,13.34,13.45
-79351,48,115,48115,201,90,268958623,267906577,1326,632,842533375,841039394,13833,5220,2336502280,2331781493,15.16,14.24,31.92,31.85,1.45,1.72,11.51,11.49
-79351,48,305,48305,1018,477,260513607,260460788,1326,632,842533375,841039394,5915,2676,2314094635,2309924936,76.77,75.47,30.92,30.97,17.21,17.83,11.26,11.28
-79353,48,219,48219,10,8,32328153,31950965,10,8,32328153,31950965,22935,9293,2353169996,2352723875,100,100,100,100,0.04,0.09,1.37,1.36
-79355,48,501,48501,1942,801,1121657947,1121657947,1942,801,1121657947,1121657947,7879,2978,2071268989,2071234660,100,100,100,100,24.65,26.9,54.15,54.15
-79356,48,107,48107,32,19,228201538,228200048,6363,1945,1928248157,1924900113,6059,2902,2335374952,2331501397,0.5,0.98,11.83,11.86,0.53,0.65,9.77,9.79
-79356,48,169,48169,6244,1878,1581016987,1577712604,6363,1945,1928248157,1924900113,6461,2237,2321145943,2313926862,98.13,96.56,81.99,81.96,96.64,83.95,68.11,68.18
-79356,48,305,48305,87,48,119029632,118987461,6363,1945,1928248157,1924900113,5915,2676,2314094635,2309924936,1.37,2.47,6.17,6.18,1.47,1.79,5.14,5.15
-79357,48,107,48107,2303,1004,565171659,565165007,2303,1004,565171659,565165007,6059,2902,2335374952,2331501397,100,100,100,100,38.01,34.6,24.2,24.24
-79358,48,219,48219,1061,443,260460543,260460543,1116,472,281164804,281139669,22935,9293,2353169996,2352723875,95.07,93.86,92.64,92.64,4.63,4.77,11.07,11.07
-79358,48,303,48303,55,29,20704261,20679126,1116,472,281164804,281139669,278831,115064,2332802752,2319591231,4.93,6.14,7.36,7.36,0.02,0.03,0.89,0.89
-79359,48,165,48165,2754,1084,275868144,275868144,2899,1150,547864744,547820460,17526,6301,3892396184,3891133239,95,94.26,50.35,50.36,15.71,17.2,7.09,7.09
-79359,48,445,48445,74,35,117721611,117677327,2899,1150,547864744,547820460,12651,4828,2307527162,2302083249,2.55,3.04,21.49,21.48,0.58,0.72,5.1,5.11
-79359,48,501,48501,71,31,154274989,154274989,2899,1150,547864744,547820460,7879,2978,2071268989,2071234660,2.45,2.7,28.16,28.16,0.9,1.04,7.45,7.45
-79360,48,165,48165,13574,4721,2200491701,2200427254,13574,4721,2200491701,2200427254,17526,6301,3892396184,3891133239,100,100,100,100,77.45,74.92,56.53,56.55
-79363,48,219,48219,48,24,52756334,52721013,5369,2066,301020255,299760996,22935,9293,2353169996,2352723875,0.89,1.16,17.53,17.59,0.21,0.26,2.24,2.24
-79363,48,303,48303,5321,2042,248263921,247039983,5369,2066,301020255,299760996,278831,115064,2332802752,2319591231,99.11,98.84,82.47,82.41,1.91,1.77,10.64,10.65
-79364,48,169,48169,103,73,43372360,43321021,8172,3485,511498140,510706901,6461,2237,2321145943,2313926862,1.26,2.09,8.48,8.48,1.59,3.26,1.87,1.87
-79364,48,303,48303,7958,3359,384143763,383439854,8172,3485,511498140,510706901,278831,115064,2332802752,2319591231,97.38,96.38,75.1,75.08,2.85,2.92,16.47,16.53
-79364,48,305,48305,111,53,83982017,83946026,8172,3485,511498140,510706901,5915,2676,2314094635,2309924936,1.36,1.52,16.42,16.44,1.88,1.98,3.63,3.63
-79366,48,303,48303,1096,477,2506805,2106199,1096,477,2506805,2106199,278831,115064,2332802752,2319591231,100,100,100,100,0.39,0.41,0.11,0.09
-79367,48,219,48219,645,269,82025737,82025737,645,269,82025737,82025737,22935,9293,2353169996,2352723875,100,100,100,100,2.81,2.89,3.49,3.49
-79369,48,279,48279,88,52,33669014,33669014,88,52,33669014,33669014,13977,6128,2635871352,2631897591,100,100,100,100,0.63,0.85,1.28,1.28
-79370,48,107,48107,156,277,198048696,194260377,1889,1082,1068797981,1058878172,6059,2902,2335374952,2331501397,8.26,25.6,18.53,18.35,2.57,9.55,8.48,8.33
-79370,48,125,48125,1733,805,870749285,864617795,1889,1082,1068797981,1058878172,2444,1282,2344512623,2335454793,91.74,74.4,81.47,81.65,70.91,62.79,37.14,37.02
-79371,48,017,48017,92,44,398351942,398238265,1317,592,728229097,728089826,7165,2784,2143166601,2141394831,6.99,7.43,54.7,54.7,1.28,1.58,18.59,18.6
-79371,48,279,48279,1225,548,329877155,329851561,1317,592,728229097,728089826,13977,6128,2635871352,2631897591,93.01,92.57,45.3,45.3,8.76,8.94,12.51,12.53
-79372,48,219,48219,1434,569,34204578,34204578,1434,569,34204578,34204578,22935,9293,2353169996,2352723875,100,100,100,100,6.25,6.12,1.45,1.45
-79373,48,305,48305,3307,1502,1126365047,1123403938,3307,1502,1126365047,1123403938,5915,2676,2314094635,2309924936,100,100,100,100,55.91,56.13,48.67,48.63
-79376,48,501,48501,95,43,291303905,291303905,95,43,291303905,291303905,7879,2978,2071268989,2071234660,100,100,100,100,1.21,1.44,14.06,14.06
-79377,48,115,48115,277,131,69438825,69429585,277,131,69438825,69429585,13833,5220,2336502280,2331781493,100,100,100,100,2,2.51,2.97,2.98
-79378,48,445,48445,236,109,53733548,53621492,236,109,53733548,53621492,12651,4828,2307527162,2302083249,100,100,100,100,1.87,2.26,2.33,2.33
-79379,48,079,48079,666,262,186325390,186325390,666,262,186325390,186325390,3127,1360,2007858882,2007629814,100,100,100,100,21.3,19.26,9.28,9.28
-79380,48,219,48219,197,86,26370126,26370126,197,86,26370126,26370126,22935,9293,2353169996,2352723875,100,100,100,100,0.86,0.93,1.12,1.12
-79381,48,305,48305,1263,532,337198872,336337119,1263,532,337198872,336337119,5915,2676,2314094635,2309924936,100,100,100,100,21.35,19.88,14.57,14.56
-79382,48,303,48303,6291,2397,124072290,123534224,6291,2397,124072290,123534224,278831,115064,2332802752,2319591231,100,100,100,100,2.26,2.08,5.32,5.33
-79401,48,303,48303,8408,3974,7154825,7128885,8408,3974,7154825,7128885,278831,115064,2332802752,2319591231,100,100,100,100,3.02,3.45,0.31,0.31
-79403,48,303,48303,16869,6483,343782917,341928427,16869,6483,343782917,341928427,278831,115064,2332802752,2319591231,100,100,100,100,6.05,5.63,14.74,14.74
-79404,48,303,48303,11289,4018,76540636,74594256,11289,4018,76540636,74594256,278831,115064,2332802752,2319591231,100,100,100,100,4.05,3.49,3.28,3.22
-79406,48,303,48303,6025,3,2537038,2532314,6025,3,2537038,2532314,278831,115064,2332802752,2319591231,100,100,100,100,2.16,0,0.11,0.11
-79407,48,219,48219,944,378,105194957,105194957,19068,8480,183752729,183291905,22935,9293,2353169996,2352723875,4.95,4.46,57.25,57.39,4.12,4.07,4.47,4.47
-79407,48,303,48303,18124,8102,78557772,78096948,19068,8480,183752729,183291905,278831,115064,2332802752,2319591231,95.05,95.54,42.75,42.61,6.5,7.04,3.37,3.37
-79410,48,303,48303,9429,4390,6346547,6244597,9429,4390,6346547,6244597,278831,115064,2332802752,2319591231,100,100,100,100,3.38,3.82,0.27,0.27
-79411,48,303,48303,7951,3575,3853057,3853057,7951,3575,3853057,3853057,278831,115064,2332802752,2319591231,100,100,100,100,2.85,3.11,0.17,0.17
-79412,48,303,48303,15650,6019,8131794,8073862,15650,6019,8131794,8073862,278831,115064,2332802752,2319591231,100,100,100,100,5.61,5.23,0.35,0.35
-79413,48,303,48303,21187,9211,12585777,12376682,21187,9211,12585777,12376682,278831,115064,2332802752,2319591231,100,100,100,100,7.6,8.01,0.54,0.53
-79414,48,303,48303,17121,8054,8294998,8199174,17121,8054,8294998,8199174,278831,115064,2332802752,2319591231,100,100,100,100,6.14,7,0.36,0.35
-79415,48,303,48303,17689,7143,172326230,171522690,17689,7143,172326230,171522690,278831,115064,2332802752,2319591231,100,100,100,100,6.34,6.21,7.39,7.39
-79416,48,303,48303,32296,13937,84008332,83257147,32296,13937,84008332,83257147,278831,115064,2332802752,2319591231,100,100,100,100,11.58,12.11,3.6,3.59
-79423,48,303,48303,32178,13434,132611810,131777802,32277,13477,157522939,156688931,278831,115064,2332802752,2319591231,99.69,99.68,84.19,84.1,11.54,11.68,5.68,5.68
-79423,48,305,48305,99,43,24911129,24911129,32277,13477,157522939,156688931,5915,2676,2314094635,2309924936,0.31,0.32,15.81,15.9,1.67,1.61,1.08,1.08
-79424,48,303,48303,39023,16483,108910083,108097803,39023,16483,108910083,108097803,278831,115064,2332802752,2319591231,100,100,100,100,14,14.33,4.67,4.66
-79501,48,253,48253,3528,1647,518414827,515684107,3528,1647,518414827,515684107,20202,7422,2427173805,2404944484,100,100,100,100,17.46,22.19,21.36,21.44
-79502,48,433,48433,1350,814,1699022205,1690405434,1350,814,1699022205,1690405434,1490,928,2383418245,2373240591,100,100,100,100,90.6,87.72,71.29,71.23
-79503,48,253,48253,175,131,206379588,205722925,175,131,206379588,205722925,20202,7422,2427173805,2404944484,100,100,100,100,0.87,1.77,8.5,8.55
-79504,48,059,48059,2775,1475,909572706,907971441,2787,1480,973041945,971440680,13544,6549,2334262036,2329363248,99.57,99.66,93.48,93.47,20.49,22.52,38.97,38.98
-79504,48,417,48417,12,5,63469239,63469239,2787,1480,973041945,971440680,3378,1754,2371258174,2367989977,0.43,0.34,6.52,6.53,0.36,0.29,2.68,2.68
-79505,48,275,48275,296,155,482240765,480999688,296,155,482240765,480999688,3719,2044,2215674639,2203097010,100,100,100,100,7.96,7.58,21.76,21.83
-79506,48,081,48081,314,518,119686231,110483964,730,774,483412209,473826890,3320,2667,2403485200,2360695668,43.01,66.93,24.76,23.32,9.46,19.42,4.98,4.68
-79506,48,353,48353,416,256,363725978,363342926,730,774,483412209,473826890,15216,7152,2367114230,2362061553,56.99,33.07,75.24,76.68,2.73,3.58,15.37,15.38
-79508,48,441,48441,1242,564,30830387,30830387,1242,564,30830387,30830387,131506,55750,2380988735,2371267567,100,100,100,100,0.94,1.01,1.29,1.3
-79510,48,059,48059,7946,3585,650763367,648620426,7982,3683,716173392,710410439,13544,6549,2334262036,2329363248,99.55,97.34,90.87,91.3,58.67,54.74,27.88,27.85
-79510,48,083,48083,36,98,65410025,61790013,7982,3683,716173392,710410439,8895,5543,3318896702,3268424436,0.45,2.66,9.13,8.7,0.4,1.77,1.97,1.89
-79511,48,033,48033,81,79,111630972,111387624,1338,654,467974454,466810194,641,385,2346663082,2324365341,6.05,12.08,23.85,23.86,12.64,20.52,4.76,4.79
-79511,48,227,48227,1257,575,356343482,355422570,1338,654,467974454,466810194,35012,13124,2341880292,2333038341,93.95,87.92,76.15,76.14,3.59,4.38,15.22,15.23
-79512,48,335,48335,8190,3443,1451705745,1439512644,8197,3449,1500794508,1488229172,9403,4064,2372201549,2359711652,99.91,99.83,96.73,96.73,87.1,84.72,61.2,61
-79512,48,415,48415,7,6,49088763,48716528,8197,3449,1500794508,1488229172,16921,6963,2350528408,2345088415,0.09,0.17,3.27,3.27,0.04,0.09,2.09,2.08
-79517,48,033,48033,69,33,414792391,413556923,200,113,574906838,573381218,641,385,2346663082,2324365341,34.5,29.2,72.15,72.13,10.76,8.57,17.68,17.79
-79517,48,415,48415,131,80,160114447,159824295,200,113,574906838,573381218,16921,6963,2350528408,2345088415,65.5,70.8,27.85,27.87,0.77,1.15,6.81,6.82
-79518,48,263,48263,124,108,351579113,351510639,124,108,351579113,351510639,808,552,2338547101,2337481857,100,100,100,100,15.35,19.57,15.03,15.04
-79519,48,083,48083,46,36,52510407,52197839,74,52,78847053,78436790,8895,5543,3318896702,3268424436,62.16,69.23,66.6,66.55,0.52,0.65,1.58,1.6
-79519,48,399,48399,28,16,26336646,26238951,74,52,78847053,78436790,10501,5298,2737864015,2721933935,37.84,30.77,33.4,33.45,0.27,0.3,0.96,0.96
-79520,48,151,48151,78,53,211301290,209735854,2449,1231,507977568,504394246,3974,2212,2335529849,2328245716,3.18,4.31,41.6,41.58,1.96,2.4,9.05,9.01
-79520,48,253,48253,2371,1178,296676278,294658392,2449,1231,507977568,504394246,20202,7422,2427173805,2404944484,96.82,95.69,58.4,58.42,11.74,15.87,12.22,12.25
-79521,48,207,48207,3980,2209,825811952,807756227,3980,2209,825811952,807756227,5899,3443,2357570427,2339099141,100,100,100,100,67.47,64.16,35.03,34.53
-79525,48,253,48253,2842,1205,243261140,242794207,2842,1205,243261140,242794207,20202,7422,2427173805,2404944484,100,100,100,100,14.07,16.24,10.02,10.1
-79526,48,151,48151,18,22,142783732,142387248,979,509,568630353,567879153,3974,2212,2335529849,2328245716,1.84,4.32,25.11,25.07,0.45,0.99,6.11,6.12
-79526,48,415,48415,961,487,425846621,425491905,979,509,568630353,567879153,16921,6963,2350528408,2345088415,98.16,95.68,74.89,74.93,5.68,6.99,18.12,18.14
-79527,48,033,48033,46,42,121074241,120241138,251,178,246837440,244524716,641,385,2346663082,2324365341,18.33,23.6,49.05,49.17,7.18,10.91,5.16,5.17
-79527,48,415,48415,205,136,125763199,124283578,251,178,246837440,244524716,16921,6963,2350528408,2345088415,81.67,76.4,50.95,50.83,1.21,1.95,5.35,5.3
-79528,48,263,48263,609,335,799183554,798881035,619,348,912554337,912118654,808,552,2338547101,2337481857,98.38,96.26,87.58,87.59,75.37,60.69,34.17,34.18
-79528,48,433,48433,10,13,113370783,113237619,619,348,912554337,912118654,1490,928,2383418245,2373240591,1.62,3.74,12.42,12.41,0.67,1.4,4.76,4.77
-79529,48,207,48207,5,2,10160558,10160558,1383,714,232204381,230966903,5899,3443,2357570427,2339099141,0.36,0.28,4.38,4.4,0.08,0.06,0.43,0.43
-79529,48,275,48275,1378,712,222043823,220806345,1383,714,232204381,230966903,3719,2044,2215674639,2203097010,99.64,99.72,95.62,95.6,37.05,34.83,10.02,10.02
-79530,48,441,48441,480,257,90241287,89359041,480,257,90241287,89359041,131506,55750,2380988735,2371267567,100,100,100,100,0.37,0.46,3.79,3.77
-79532,48,335,48335,918,465,291292292,291236618,940,480,320017576,319955048,9403,4064,2372201549,2359711652,97.66,96.88,91.02,91.02,9.76,11.44,12.28,12.34
-79532,48,353,48353,11,8,13410897,13410897,940,480,320017576,319955048,15216,7152,2367114230,2362061553,1.17,1.67,4.19,4.19,0.07,0.11,0.57,0.57
-79532,48,415,48415,11,7,15314387,15307533,940,480,320017576,319955048,16921,6963,2350528408,2345088415,1.17,1.46,4.79,4.78,0.07,0.1,0.65,0.65
-79533,48,207,48207,6,9,35802377,35802121,472,298,373876201,373020673,5899,3443,2357570427,2339099141,1.27,3.02,9.58,9.6,0.1,0.26,1.52,1.53
-79533,48,253,48253,415,238,68115431,67345330,472,298,373876201,373020673,20202,7422,2427173805,2404944484,87.92,79.87,18.22,18.05,2.05,3.21,2.81,2.8
-79533,48,417,48417,48,41,240167908,240082737,472,298,373876201,373020673,3378,1754,2371258174,2367989977,10.17,13.76,64.24,64.36,1.42,2.34,10.13,10.14
-79533,48,447,48447,3,10,29790485,29790485,472,298,373876201,373020673,1641,1079,2371085487,2363499284,0.64,3.36,7.97,7.99,0.18,0.93,1.26,1.26
-79534,48,151,48151,181,121,156247066,155960642,181,121,156247066,155960642,3974,2212,2335529849,2328245716,100,100,100,100,4.55,5.47,6.69,6.7
-79535,48,353,48353,183,121,365012461,364948060,183,121,365012461,364948060,15216,7152,2367114230,2362061553,100,100,100,100,1.2,1.69,15.42,15.45
-79536,48,253,48253,780,327,318811303,318195484,4988,2264,820908593,820114358,20202,7422,2427173805,2404944484,15.64,14.44,38.84,38.8,3.86,4.41,13.14,13.23
-79536,48,353,48353,16,15,14938353,14938353,4988,2264,820908593,820114358,15216,7152,2367114230,2362061553,0.32,0.66,1.82,1.82,0.11,0.21,0.63,0.63
-79536,48,441,48441,4192,1922,487158937,486980521,4988,2264,820908593,820114358,131506,55750,2380988735,2371267567,84.04,84.89,59.34,59.38,3.19,3.45,20.46,20.54
-79537,48,353,48353,111,67,201808276,201808276,111,67,201808276,201808276,15216,7152,2367114230,2362061553,100,100,100,100,0.73,0.94,8.53,8.54
-79538,48,083,48083,228,164,121386678,120841065,271,200,178036871,177486965,8895,5543,3318896702,3268424436,84.13,82,68.18,68.08,2.56,2.96,3.66,3.7
-79538,48,399,48399,43,36,56650193,56645900,271,200,178036871,177486965,10501,5298,2737864015,2721933935,15.87,18,31.82,31.92,0.41,0.68,2.07,2.08
-79539,48,207,48207,178,125,97015740,97015740,178,125,97015740,97015740,5899,3443,2357570427,2339099141,100,100,100,100,3.02,3.63,4.12,4.15
-79540,48,433,48433,89,67,141749348,141316478,89,67,141749348,141316478,1490,928,2383418245,2373240591,100,100,100,100,5.97,7.22,5.95,5.95
-79541,48,059,48059,31,15,26875906,26867196,791,384,409331176,408521466,13544,6549,2334262036,2329363248,3.92,3.91,6.57,6.58,0.23,0.23,1.15,1.15
-79541,48,441,48441,760,369,382455270,381654270,791,384,409331176,408521466,131506,55750,2380988735,2371267567,96.08,96.09,93.43,93.42,0.58,0.66,16.06,16.09
-79543,48,151,48151,1186,584,426575056,425346681,1186,584,426575056,425346681,3974,2212,2335529849,2328245716,100,100,100,100,29.84,26.4,18.26,18.27
-79544,48,207,48207,512,318,213819816,213819816,512,318,213819816,213819816,5899,3443,2357570427,2339099141,100,100,100,100,8.68,9.24,9.07,9.14
-79545,48,151,48151,21,17,69622050,69479284,1788,816,590291941,589990336,3974,2212,2335529849,2328245716,1.17,2.08,11.79,11.78,0.53,0.77,2.98,2.98
-79545,48,353,48353,1742,787,497022458,496863619,1788,816,590291941,589990336,15216,7152,2367114230,2362061553,97.43,96.45,84.2,84.22,11.45,11,21,21.04
-79545,48,415,48415,25,12,23647433,23647433,1788,816,590291941,589990336,16921,6963,2350528408,2345088415,1.4,1.47,4.01,4.01,0.15,0.17,1.01,1.01
-79546,48,151,48151,1961,1087,748782844,747230185,2006,1123,933023158,931079715,3974,2212,2335529849,2328245716,97.76,96.79,80.25,80.25,49.35,49.14,32.06,32.09
-79546,48,415,48415,4,2,8416996,8400104,2006,1123,933023158,931079715,16921,6963,2350528408,2345088415,0.2,0.18,0.9,0.9,0.02,0.03,0.36,0.36
-79546,48,433,48433,41,34,175823318,175449426,2006,1123,933023158,931079715,1490,928,2383418245,2373240591,2.04,3.03,18.84,18.84,2.75,3.66,7.38,7.39
-79547,48,207,48207,758,485,202686119,202658789,758,485,202686119,202658789,5899,3443,2357570427,2339099141,100,100,100,100,12.85,14.09,8.6,8.66
-79548,48,207,48207,174,112,236759999,236742842,174,112,236759999,236742842,5899,3443,2357570427,2339099141,100,100,100,100,2.95,3.25,10.04,10.12
-79549,48,263,48263,75,109,1125433530,1124740227,15652,6342,2479892610,2476890651,808,552,2338547101,2337481857,0.48,1.72,45.38,45.41,9.28,19.75,48.13,48.12
-79549,48,415,48415,15577,6233,1354459080,1352150424,15652,6342,2479892610,2476890651,16921,6963,2350528408,2345088415,99.52,98.28,54.62,54.59,92.06,89.52,57.62,57.66
-79553,48,207,48207,83,50,145818828,145791537,3469,1794,431686097,430567938,5899,3443,2357570427,2339099141,2.39,2.79,33.78,33.86,1.41,1.45,6.19,6.23
-79553,48,253,48253,3386,1744,285867269,284776401,3469,1794,431686097,430567938,20202,7422,2427173805,2404944484,97.61,97.21,66.22,66.14,16.76,23.5,11.78,11.84
-79556,48,151,48151,359,203,251314119,250525837,12995,6038,792798228,787992323,3974,2212,2335529849,2328245716,2.76,3.36,31.7,31.79,9.03,9.18,10.76,10.76
-79556,48,353,48353,12636,5835,541484109,537466486,12995,6038,792798228,787992323,15216,7152,2367114230,2362061553,97.24,96.64,68.3,68.21,83.04,81.59,22.88,22.75
-79560,48,151,48151,120,91,147139669,146564606,137,106,196040457,195426740,3974,2212,2335529849,2328245716,87.59,85.85,75.06,75,3.02,4.11,6.3,6.3
-79560,48,253,48253,17,15,48900788,48862134,137,106,196040457,195426740,20202,7422,2427173805,2404944484,12.41,14.15,24.94,25,0.08,0.2,2.01,2.03
-79561,48,151,48151,50,33,147234186,146565419,662,336,325506847,324572567,3974,2212,2335529849,2328245716,7.55,9.82,45.23,45.16,1.26,1.49,6.3,6.3
-79561,48,353,48353,101,63,130302749,130212146,662,336,325506847,324572567,15216,7152,2367114230,2362061553,15.26,18.75,40.03,40.12,0.66,0.88,5.5,5.51
-79561,48,441,48441,511,240,47969912,47795002,662,336,325506847,324572567,131506,55750,2380988735,2371267567,77.19,71.43,14.74,14.73,0.39,0.43,2.01,2.02
-79562,48,441,48441,3669,1510,302984655,300713883,3669,1510,302984655,300713883,131506,55750,2380988735,2371267567,100,100,100,100,2.79,2.71,12.73,12.68
-79563,48,441,48441,1161,505,42425518,42391950,1161,505,42425518,42391950,131506,55750,2380988735,2371267567,100,100,100,100,0.88,0.91,1.78,1.79
-79565,48,335,48335,295,148,234029612,233982935,295,148,234029612,233982935,9403,4064,2372201549,2359711652,100,100,100,100,3.14,3.64,9.87,9.92
-79566,48,399,48399,163,100,185290346,185002216,333,220,410464682,409437689,10501,5298,2737864015,2721933935,48.95,45.45,45.14,45.18,1.55,1.89,6.77,6.8
-79566,48,441,48441,170,120,225174336,224435473,333,220,410464682,409437689,131506,55750,2380988735,2371267567,51.05,54.55,54.86,54.82,0.13,0.22,9.46,9.46
-79567,48,399,48399,3308,1750,765845559,762048918,3373,1781,821201053,817361251,10501,5298,2737864015,2721933935,98.07,98.26,93.26,93.23,31.5,33.03,27.97,28
-79567,48,441,48441,65,31,55355494,55312333,3373,1781,821201053,817361251,131506,55750,2380988735,2371267567,1.93,1.74,6.74,6.77,0.05,0.06,2.32,2.33
-79601,48,059,48059,353,168,51679635,51679635,25085,9122,659390259,644897723,13544,6549,2334262036,2329363248,1.41,1.84,7.84,8.01,2.61,2.57,2.21,2.22
-79601,48,253,48253,6688,934,358652007,344969079,25085,9122,659390259,644897723,20202,7422,2427173805,2404944484,26.66,10.24,54.39,53.49,33.11,12.58,14.78,14.34
-79601,48,417,48417,348,150,131185849,131185527,25085,9122,659390259,644897723,3378,1754,2371258174,2367989977,1.39,1.64,19.9,20.34,10.3,8.55,5.53,5.54
-79601,48,441,48441,17696,7870,117872768,117063482,25085,9122,659390259,644897723,131506,55750,2380988735,2371267567,70.54,86.27,17.88,18.15,13.46,14.12,4.95,4.94
-79602,48,059,48059,416,190,66389965,66327803,21519,8917,300323483,297316691,13544,6549,2334262036,2329363248,1.93,2.13,22.11,22.31,3.07,2.9,2.84,2.85
-79602,48,441,48441,21103,8727,233933518,230988888,21519,8917,300323483,297316691,131506,55750,2380988735,2371267567,98.07,97.87,77.89,77.69,16.05,15.65,9.83,9.74
-79603,48,441,48441,24288,9590,151356461,151258153,24288,9590,151356461,151258153,131506,55750,2380988735,2371267567,100,100,100,100,18.47,17.2,6.36,6.38
-79605,48,441,48441,30098,13083,28484666,28411178,30098,13083,28484666,28411178,131506,55750,2380988735,2371267567,100,100,100,100,22.89,23.47,1.2,1.2
-79606,48,441,48441,22885,10241,162248081,161798900,22885,10241,162248081,161798900,131506,55750,2380988735,2371267567,100,100,100,100,17.4,18.37,6.81,6.82
-79607,48,441,48441,2865,673,9898571,9820617,2865,673,9898571,9820617,131506,55750,2380988735,2371267567,100,100,100,100,2.18,1.21,0.42,0.41
-79699,48,441,48441,321,48,246691,246691,321,48,246691,246691,131506,55750,2380988735,2371267567,100,100,100,100,0.24,0.09,0.01,0.01
-79701,48,329,48329,27728,10310,30795660,30795660,27728,10310,30795660,30795660,136872,54351,2336298745,2331764835,100,100,100,100,20.26,18.97,1.32,1.32
-79703,48,329,48329,20592,7671,17336262,17336262,20592,7671,17336262,17336262,136872,54351,2336298745,2331764835,100,100,100,100,15.04,14.11,0.74,0.74
-79705,48,329,48329,33536,13678,92112978,92112978,33536,13678,92112978,92112978,136872,54351,2336298745,2331764835,100,100,100,100,24.5,25.17,3.94,3.95
-79706,48,329,48329,19571,7135,1930364105,1926761867,19571,7135,1930364105,1926761867,136872,54351,2336298745,2331764835,100,100,100,100,14.3,13.13,82.62,82.63
-79707,48,329,48329,32854,14370,183872333,183305531,32854,14370,183872333,183305531,136872,54351,2336298745,2331764835,100,100,100,100,24,26.44,7.87,7.86
-79713,48,033,48033,15,11,42642398,42641489,592,242,425310833,425261991,641,385,2346663082,2324365341,2.53,4.55,10.03,10.03,2.34,2.86,1.82,1.83
-79713,48,115,48115,233,93,84952662,84936992,592,242,425310833,425261991,13833,5220,2336502280,2331781493,39.36,38.43,19.97,19.97,1.68,1.78,3.64,3.64
-79713,48,227,48227,47,23,64467033,64434770,592,242,425310833,425261991,35012,13124,2341880292,2333038341,7.94,9.5,15.16,15.15,0.13,0.18,2.75,2.76
-79713,48,317,48317,297,115,233248740,233248740,592,242,425310833,425261991,4799,1852,2371625958,2369694111,50.17,47.52,54.84,54.85,6.19,6.21,9.83,9.84
-79714,48,003,48003,14786,5813,1990208111,1990106443,14786,5813,1990208111,1990106443,14786,5814,3887786750,3886829704,100,100,100,100,100,99.98,51.19,51.2
-79718,48,389,48389,721,428,794585335,792187310,721,428,794585335,792187310,13783,4640,6842985178,6825588429,100,100,100,100,5.23,9.22,11.61,11.61
-79719,48,475,48475,397,204,49586337,49535538,397,204,49586337,49535538,10658,4694,2164824368,2164200161,100,100,100,100,3.72,4.35,2.29,2.29
-79720,48,033,48033,46,18,263821250,263229474,33640,12529,2367485357,2359428075,641,385,2346663082,2324365341,0.14,0.14,11.14,11.16,7.18,4.68,11.24,11.32
-79720,48,173,48173,241,125,615797646,615369782,33640,12529,2367485357,2359428075,1226,580,2333798447,2331553028,0.72,1,26.01,26.08,19.66,21.55,26.39,26.39
-79720,48,227,48227,33353,12386,1487866461,1480828819,33640,12529,2367485357,2359428075,35012,13124,2341880292,2333038341,99.15,98.86,62.85,62.76,95.26,94.38,63.53,63.47
-79730,48,371,48371,250,113,333658802,333658802,250,113,333658802,333658802,15507,5585,12340838733,12338306457,100,100,100,100,1.61,2.02,2.7,2.7
-79731,48,103,48103,4191,1560,753193311,752974475,4193,1563,853307877,853089041,4375,1632,2035014886,2033318846,99.95,99.81,88.27,88.26,95.79,95.59,37.01,37.03
-79731,48,461,48461,2,3,100114566,100114566,4193,1563,853307877,853089041,3355,1548,3215477635,3215013323,0.05,0.19,11.73,11.74,0.06,0.19,3.11,3.11
-79733,48,227,48227,210,86,4740766,4740766,210,86,4740766,4740766,35012,13124,2341880292,2333038341,100,100,100,100,0.6,0.66,0.2,0.2
-79734,48,243,48243,2137,1480,3351021628,3350902060,2137,1480,3351021628,3350902060,2342,1613,5865377373,5865171164,100,100,100,100,91.25,91.75,57.13,57.13
-79735,48,043,48043,2,5,20760228,20752178,13315,4574,4488062231,4487970069,9232,5383,16037859089,16015795085,0.02,0.11,0.46,0.46,0.02,0.09,0.13,0.13
-79735,48,371,48371,13313,4569,4467302003,4467217891,13315,4574,4488062231,4487970069,15507,5585,12340838733,12338306457,99.98,99.89,99.54,99.54,85.85,81.81,36.2,36.21
-79738,48,033,48033,275,135,835510185,833166598,275,135,835510185,833166598,641,385,2346663082,2324365341,100,100,100,100,42.9,35.06,35.6,35.84
-79739,48,173,48173,948,430,1266609457,1265511179,963,443,1372156736,1371056837,1226,580,2333798447,2331553028,98.44,97.07,92.31,92.3,77.32,74.14,54.27,54.28
-79739,48,383,48383,15,13,105547279,105545658,963,443,1372156736,1371056837,3367,1372,3045808675,3044015959,1.56,2.93,7.69,7.7,0.45,0.95,3.47,3.47
-79741,48,135,48135,288,137,546374735,543160371,288,137,546374735,543160371,137130,53027,2335596668,2324999033,100,100,100,100,0.21,0.26,23.39,23.36
-79742,48,475,48475,490,232,151446038,151446038,490,232,151446038,151446038,10658,4694,2164824368,2164200161,100,100,100,100,4.6,4.94,7,7
-79743,48,371,48371,339,175,642262491,639951833,339,175,642262491,639951833,15507,5585,12340838733,12338306457,100,100,100,100,2.19,3.13,5.2,5.19
-79744,48,105,48105,32,21,718231543,718231543,1362,607,1387148197,1387148197,3719,1866,7270997490,7270944161,2.35,3.46,51.78,51.78,0.86,1.13,9.88,9.88
-79744,48,371,48371,1330,586,668916654,668916654,1362,607,1387148197,1387148197,15507,5585,12340838733,12338306457,97.65,96.54,48.22,48.22,8.58,10.49,5.42,5.42
-79745,48,495,48495,6125,2601,1014665436,1014532044,6125,2601,1014665436,1014532044,7110,3027,2178870451,2178456075,100,100,100,100,86.15,85.93,46.57,46.57
-79748,48,227,48227,145,53,107781703,107564295,173,69,143384478,143167070,35012,13124,2341880292,2333038341,83.82,76.81,75.17,75.13,0.41,0.4,4.6,4.61
-79748,48,317,48317,28,16,35602775,35602775,173,69,143384478,143167070,4799,1852,2371625958,2369694111,16.18,23.19,24.83,24.87,0.58,0.86,1.5,1.5
-79749,48,317,48317,255,94,169422495,169422495,255,94,169422495,169422495,4799,1852,2371625958,2369694111,100,100,100,100,5.31,5.08,7.14,7.15
-79752,48,461,48461,2245,1030,568198924,568198859,2245,1030,568198924,568198859,3355,1548,3215477635,3215013323,100,100,100,100,66.92,66.54,17.67,17.67
-79754,48,301,48301,80,48,413290376,413049528,80,48,413290376,413049528,82,50,1752659701,1732507837,100,100,100,100,97.56,96,23.58,23.84
-79755,48,461,48461,230,110,813567731,813150614,230,110,813567731,813150614,3355,1548,3215477635,3215013323,100,100,100,100,6.86,7.11,25.3,25.29
-79756,48,103,48103,7,2,43590024,43572670,9066,3898,448828438,448779617,4375,1632,2035014886,2033318846,0.08,0.05,9.71,9.71,0.16,0.12,2.14,2.14
-79756,48,475,48475,9059,3895,404637155,404605688,9066,3898,448828438,448779617,10658,4694,2164824368,2164200161,99.92,99.92,90.15,90.16,85,82.98,18.69,18.7
-79756,48,495,48495,0,1,601259,601259,9066,3898,448828438,448779617,7110,3027,2178870451,2178456075,0,0.03,0.13,0.13,0,0.03,0.03,0.03
-79758,48,135,48135,2197,912,137299008,136818032,2197,912,137299008,136818032,137130,53027,2335596668,2324999033,100,100,100,100,1.6,1.72,5.88,5.88
-79759,48,135,48135,23,15,506290188,505432836,23,15,506290188,505432836,137130,53027,2335596668,2324999033,100,100,100,100,0.02,0.03,21.68,21.74
-79761,48,135,48135,30488,12357,26398956,26391291,30488,12357,26398956,26391291,137130,53027,2335596668,2324999033,100,100,100,100,22.23,23.3,1.13,1.14
-79762,48,135,48135,39056,16265,82623418,82021614,39056,16265,82623418,82021614,137130,53027,2335596668,2324999033,100,100,100,100,28.48,30.67,3.54,3.53
-79763,48,135,48135,34079,12309,141167999,140626947,34079,12309,141167999,140626947,137130,53027,2335596668,2324999033,100,100,100,100,24.85,23.21,6.04,6.05
-79764,48,135,48135,20725,7724,151242646,150867031,20725,7724,151242646,150867031,137130,53027,2335596668,2324999033,100,100,100,100,15.11,14.57,6.48,6.49
-79765,48,135,48135,4384,1598,17692793,17583608,6927,2764,53937410,53463355,137130,53027,2335596668,2324999033,63.29,57.81,32.8,32.89,3.2,3.01,0.76,0.76
-79765,48,329,48329,2543,1166,36244617,35879747,6927,2764,53937410,53463355,136872,54351,2336298745,2331764835,36.71,42.19,67.2,67.11,1.86,2.15,1.55,1.54
-79766,48,103,48103,177,70,85023280,84943345,6115,1801,620046007,616254967,4375,1632,2035014886,2033318846,2.89,3.89,13.71,13.78,4.05,4.29,4.18,4.18
-79766,48,135,48135,5890,1710,489449937,485738832,6115,1801,620046007,616254967,137130,53027,2335596668,2324999033,96.32,94.95,78.94,78.82,4.3,3.22,20.96,20.89
-79766,48,329,48329,48,21,45572790,45572790,6115,1801,620046007,616254967,136872,54351,2336298745,2331764835,0.78,1.17,7.35,7.4,0.04,0.04,1.95,1.95
-79770,48,389,48389,33,90,259537603,246551893,33,90,259537603,246551893,13783,4640,6842985178,6825588429,100,100,100,100,0.24,1.94,3.79,3.61
-79772,48,109,48109,0,2,166816090,166794131,12747,3964,2996887922,2994903620,2398,1137,9875656241,9875100057,0,0.05,5.57,5.57,0,0.18,1.69,1.69
-79772,48,389,48389,12711,3943,2793379332,2791416989,12747,3964,2996887922,2994903620,13783,4640,6842985178,6825588429,99.72,99.47,93.21,93.21,92.22,84.98,40.82,40.9
-79772,48,475,48475,36,19,36692500,36692500,12747,3964,2996887922,2994903620,10658,4694,2164824368,2164200161,0.28,0.48,1.22,1.23,0.34,0.4,1.69,1.7
-79777,48,475,48475,170,114,263729811,263469246,170,114,263729811,263469246,10658,4694,2164824368,2164200161,100,100,100,100,1.6,2.43,12.18,12.17
-79778,48,461,48461,878,397,270346624,270346624,878,397,270346624,270346624,3355,1548,3215477635,3215013323,100,100,100,100,26.17,25.65,8.41,8.41
-79780,48,389,48389,224,120,306004626,306004626,224,120,306004626,306004626,13783,4640,6842985178,6825588429,100,100,100,100,1.63,2.59,4.47,4.48
-79781,48,105,48105,8,54,566825340,566825340,303,212,1735115374,1735051105,3719,1866,7270997490,7270944161,2.64,25.47,32.67,32.67,0.22,2.89,7.8,7.8
-79781,48,371,48371,259,122,258918183,258918183,303,212,1735115374,1735051105,15507,5585,12340838733,12338306457,85.48,57.55,14.92,14.92,1.67,2.18,2.1,2.1
-79781,48,443,48443,36,36,909371851,909307582,303,212,1735115374,1735051105,984,700,6107364229,6107258291,11.88,16.98,52.41,52.41,3.66,5.14,14.89,14.89
-79782,48,173,48173,37,25,318652462,317998774,3976,1540,1195783768,1194870453,1226,580,2333798447,2331553028,0.93,1.62,26.65,26.61,3.02,4.31,13.65,13.64
-79782,48,317,48317,3939,1515,877131306,876871679,3976,1540,1195783768,1194870453,4799,1852,2371625958,2369694111,99.07,98.38,73.35,73.39,82.08,81.8,36.98,37
-79783,48,317,48317,201,81,434984979,434984979,201,81,434984979,434984979,4799,1852,2371625958,2369694111,100,100,100,100,4.19,4.37,18.34,18.36
-79785,48,389,48389,91,57,410198268,410198268,91,57,410198268,410198268,13783,4640,6842985178,6825588429,100,100,100,100,0.66,1.23,5.99,6.01
-79788,48,475,48475,506,230,11993181,11978926,506,230,11993181,11978926,10658,4694,2164824368,2164200161,100,100,100,100,4.75,4.9,0.55,0.55
-79789,48,495,48495,974,419,103200261,103089861,974,419,103200261,103089861,7110,3027,2178870451,2178456075,100,100,100,100,13.7,13.84,4.74,4.73
-79821,48,141,48141,7142,1630,29903263,29535301,7142,1630,29903263,29535301,800647,270307,2628734114,2622862905,100,100,100,100,0.89,0.6,1.14,1.13
-79830,48,043,48043,7682,4117,5214801830,5205246396,7682,4117,5214801830,5205246396,9232,5383,16037859089,16015795085,100,100,100,100,83.21,76.48,32.52,32.5
-79831,48,043,48043,29,29,902381300,901806036,29,29,902381300,901806036,9232,5383,16037859089,16015795085,100,100,100,100,0.31,0.54,5.63,5.63
-79834,48,043,48043,200,125,2123023499,2120403193,200,125,2123023499,2120403193,9232,5383,16037859089,16015795085,100,100,100,100,2.17,2.32,13.24,13.24
-79835,48,141,48141,12690,4022,30866471,30636781,12690,4022,30866471,30636781,800647,270307,2628734114,2622862905,100,100,100,100,1.58,1.49,1.17,1.17
-79836,48,141,48141,5772,1733,49825466,49696811,5772,1733,49825466,49696811,800647,270307,2628734114,2622862905,100,100,100,100,0.72,0.64,1.9,1.89
-79837,35,035,35035,60,55,4003124761,3986834368,579,348,4291200169,4274852705,63797,30992,17165151239,17128132348,10.36,15.8,93.29,93.26,0.09,0.18,23.32,23.28
-79837,48,229,48229,519,293,288075408,288018337,579,348,4291200169,4274852705,3476,1527,11840983007,11838791961,89.64,84.2,6.71,6.74,14.93,19.19,2.43,2.43
-79838,48,141,48141,8699,2625,76493576,76173040,8699,2625,76493576,76173040,800647,270307,2628734114,2622862905,100,100,100,100,1.09,0.97,2.91,2.9
-79839,48,229,48229,1938,715,1253125064,1252352828,1938,715,1253125064,1252352828,3476,1527,11840983007,11838791961,100,100,100,100,55.75,46.82,10.58,10.58
-79842,48,043,48043,498,392,1608198244,1606588496,498,392,1608198244,1606588496,9232,5383,16037859089,16015795085,100,100,100,100,5.39,7.28,10.03,10.03
-79843,48,377,48377,2503,1536,3818225103,3816660283,2503,1536,3818225103,3816660283,7818,3825,9986789798,9985016638,100,100,100,100,32.02,40.16,38.23,38.22
-79845,48,377,48377,5138,2124,1213338956,1213338956,5138,2124,1213338956,1213338956,7818,3825,9986789798,9985016638,100,100,100,100,65.72,55.53,12.15,12.15
-79846,48,377,48377,104,89,1138900067,1138830017,104,89,1138900067,1138830017,7818,3825,9986789798,9985016638,100,100,100,100,1.33,2.33,11.4,11.41
-79847,48,109,48109,63,40,1055763536,1055761852,167,122,2156956912,2156955228,2398,1137,9875656241,9875100057,37.72,32.79,48.95,48.95,2.63,3.52,10.69,10.69
-79847,48,229,48229,104,82,1101193376,1101193376,167,122,2156956912,2156955228,3476,1527,11840983007,11838791961,62.28,67.21,51.05,51.05,2.99,5.37,9.3,9.3
-79848,48,371,48371,2,7,194792777,194792715,927,620,2091324090,2091324028,15507,5585,12340838733,12338306457,0.22,1.13,9.31,9.31,0.01,0.13,1.58,1.58
-79848,48,443,48443,925,613,1896531313,1896531313,927,620,2091324090,2091324028,984,700,6107364229,6107258291,99.78,98.87,90.69,90.69,94,87.57,31.05,31.05
-79849,48,141,48141,13208,3574,36503716,36306295,13208,3574,36503716,36306295,800647,270307,2628734114,2622862905,100,100,100,100,1.65,1.32,1.39,1.38
-79851,48,229,48229,641,270,1744061617,1743881300,641,270,1744061617,1743881300,3476,1527,11840983007,11838791961,100,100,100,100,18.44,17.68,14.73,14.73
-79852,48,043,48043,799,690,1379481619,1377686854,799,690,1379481619,1377686854,9232,5383,16037859089,16015795085,100,100,100,100,8.65,12.82,8.6,8.6
-79853,48,141,48141,3729,996,80983754,80665254,3729,996,80983754,80665254,800647,270307,2628734114,2622862905,100,100,100,100,0.47,0.37,3.08,3.08
-79854,48,243,48243,194,116,1048749068,1048729713,213,142,1835414014,1835385224,2342,1613,5865377373,5865171164,91.08,81.69,57.14,57.14,8.28,7.19,17.88,17.88
-79854,48,377,48377,19,26,786664946,786655511,213,142,1835414014,1835385224,7818,3825,9986789798,9985016638,8.92,18.31,42.86,42.86,0.24,0.68,7.88,7.88
-79855,48,109,48109,2324,1079,3505975165,3505689767,2336,1098,4718973433,4718657873,2398,1137,9875656241,9875100057,99.49,98.27,74.3,74.29,96.91,94.9,35.5,35.5
-79855,48,229,48229,6,10,777613100,777607173,2336,1098,4718973433,4718657873,3476,1527,11840983007,11838791961,0.26,0.91,16.48,16.48,0.17,0.65,6.57,6.57
-79855,48,243,48243,6,9,435385168,435360933,2336,1098,4718973433,4718657873,2342,1613,5865377373,5865171164,0.26,0.82,9.23,9.23,0.26,0.56,7.42,7.42
-79901,48,141,48141,11328,4471,5717574,5696318,11328,4471,5717574,5696318,800647,270307,2628734114,2622862905,100,100,100,100,1.41,1.65,0.22,0.22
-79902,48,141,48141,21236,9315,17020377,16985318,21236,9315,17020377,16985318,800647,270307,2628734114,2622862905,100,100,100,100,2.65,3.45,0.65,0.65
-79903,48,141,48141,18451,7176,7880270,7880270,18451,7176,7880270,7880270,800647,270307,2628734114,2622862905,100,100,100,100,2.3,2.65,0.3,0.3
-79904,48,141,48141,35060,12313,22814163,22802148,35060,12313,22814163,22802148,800647,270307,2628734114,2622862905,100,100,100,100,4.38,4.56,0.87,0.87
-79905,48,141,48141,26036,8909,17173021,16787888,26036,8909,17173021,16787888,800647,270307,2628734114,2622862905,100,100,100,100,3.25,3.3,0.65,0.64
-79906,48,141,48141,4374,1212,10895901,10895901,4374,1212,10895901,10895901,800647,270307,2628734114,2622862905,100,100,100,100,0.55,0.45,0.41,0.42
-79907,48,141,48141,55132,17537,35346892,35241262,55132,17537,35346892,35241262,800647,270307,2628734114,2622862905,100,100,100,100,6.89,6.49,1.34,1.34
-79908,48,141,48141,3673,546,50516512,50516512,3673,546,50516512,50516512,800647,270307,2628734114,2622862905,100,100,100,100,0.46,0.2,1.92,1.93
-79911,48,141,48141,1565,582,16170031,16170031,1565,582,16170031,16170031,800647,270307,2628734114,2622862905,100,100,100,100,0.2,0.22,0.62,0.62
-79912,48,141,48141,77161,30690,61476252,61003568,77161,30690,61476252,61003568,800647,270307,2628734114,2622862905,100,100,100,100,9.64,11.35,2.34,2.33
-79915,48,141,48141,40057,13629,23361739,23082374,40057,13629,23361739,23082374,800647,270307,2628734114,2622862905,100,100,100,100,5,5.04,0.89,0.88
-79916,48,141,48141,2995,0,4204076,4204076,2995,0,4204076,4204076,800647,270307,2628734114,2622862905,100,0,100,100,0.37,0,0.16,0.16
-79920,48,141,48141,153,0,12765,12765,153,0,12765,12765,800647,270307,2628734114,2622862905,100,0,100,100,0.02,0,0,0
-79922,48,141,48141,8935,3132,17095923,16924455,8935,3132,17095923,16924455,800647,270307,2628734114,2622862905,100,100,100,100,1.12,1.16,0.65,0.65
-79924,48,141,48141,59058,21122,31705879,31705879,59058,21122,31705879,31705879,800647,270307,2628734114,2622862905,100,100,100,100,7.38,7.81,1.21,1.21
-79925,48,141,48141,40641,16253,43866456,43821043,40641,16253,43866456,43821043,800647,270307,2628734114,2622862905,100,100,100,100,5.08,6.01,1.67,1.67
-79927,48,141,48141,39016,11240,74028390,73324454,39016,11240,74028390,73324454,800647,270307,2628734114,2622862905,100,100,100,100,4.87,4.16,2.82,2.8
-79928,48,141,48141,49544,14089,269635790,269622583,49544,14089,269635790,269622583,800647,270307,2628734114,2622862905,100,100,100,100,6.19,5.21,10.26,10.28
-79930,48,141,48141,28410,11006,28452561,28410299,28410,11006,28452561,28410299,800647,270307,2628734114,2622862905,100,100,100,100,3.55,4.07,1.08,1.08
-79932,48,141,48141,24986,8357,37489045,36974505,24986,8357,37489045,36974505,800647,270307,2628734114,2622862905,100,100,100,100,3.12,3.09,1.43,1.41
-79934,48,141,48141,19174,6728,153427318,153248746,19174,6728,153427318,153248746,800647,270307,2628734114,2622862905,100,100,100,100,2.39,2.49,5.84,5.84
-79935,48,141,48141,18042,6899,9081004,9049749,18042,6899,9081004,9049749,800647,270307,2628734114,2622862905,100,100,100,100,2.25,2.55,0.35,0.35
-79936,48,141,48141,111086,35523,69308753,69254573,111086,35523,69308753,69254573,800647,270307,2628734114,2622862905,100,100,100,100,13.87,13.14,2.64,2.64
-79938,48,141,48141,53260,14987,418587927,418416698,53520,15137,943828827,943657598,800647,270307,2628734114,2622862905,99.51,99.01,44.35,44.34,6.65,5.54,15.92,15.95
-79938,48,229,48229,260,150,525240900,525240900,53520,15137,943828827,943657598,3476,1527,11840983007,11838791961,0.49,0.99,55.65,55.66,7.48,9.82,4.44,4.44
-79942,48,105,48105,2,15,92995580,92955753,2,15,92995580,92955753,3719,1866,7270997490,7270944161,100,100,100,100,0.05,0.8,1.28,1.28
-80002,08,001,08001,1081,358,893842,739096,18020,8365,16244002,15936766,441603,163136,3066277939,3024207713,6,4.28,5.5,4.64,0.24,0.22,0.03,0.02
-80002,08,059,08059,16939,8007,15350160,15197670,18020,8365,16244002,15936766,534543,229967,2004736219,1979289991,94,95.72,94.5,95.36,3.17,3.48,0.77,0.77
-80003,08,001,08001,5739,2187,3347786,2885941,35384,14248,18324455,17648602,441603,163136,3066277939,3024207713,16.22,15.35,18.27,16.35,1.3,1.34,0.11,0.1
-80003,08,059,08059,29645,12061,14976669,14762661,35384,14248,18324455,17648602,534543,229967,2004736219,1979289991,83.78,84.65,81.73,83.65,5.55,5.24,0.75,0.75
-80004,08,059,08059,35892,15158,19487457,19090026,35892,15158,19487457,19090026,534543,229967,2004736219,1979289991,100,100,100,100,6.71,6.59,0.97,0.96
-80005,08,059,08059,25553,10342,29858236,29436851,25553,10342,29858236,29436851,534543,229967,2004736219,1979289991,100,100,100,100,4.78,4.5,1.49,1.49
-80007,08,059,08059,7262,2640,68102195,66468299,7262,2640,68102195,66468299,534543,229967,2004736219,1979289991,100,100,100,100,1.36,1.15,3.4,3.36
-80010,08,001,08001,19600,6906,6740402,6708868,39728,14334,14314752,14283218,441603,163136,3066277939,3024207713,49.34,48.18,47.09,46.97,4.44,4.23,0.22,0.22
-80010,08,005,08005,20128,7428,7574350,7574350,39728,14334,14314752,14283218,572003,238301,2086073783,2067070049,50.66,51.82,52.91,53.03,3.52,3.12,0.36,0.37
-80011,08,001,08001,18316,6320,32445671,32267051,47461,17531,64026012,63847392,441603,163136,3066277939,3024207713,38.59,36.05,50.68,50.54,4.15,3.87,1.06,1.07
-80011,08,005,08005,29145,11211,31580341,31580341,47461,17531,64026012,63847392,572003,238301,2086073783,2067070049,61.41,63.95,49.32,49.46,5.1,4.7,1.51,1.53
-80012,08,005,08005,46206,19401,20018592,20018592,46665,19634,20111206,20111206,572003,238301,2086073783,2067070049,99.02,98.81,99.54,99.54,8.08,8.14,0.96,0.97
-80012,08,031,08031,459,233,92614,92614,46665,19634,20111206,20111206,600158,285797,400493947,396268588,0.98,1.19,0.46,0.46,0.08,0.08,0.02,0.02
-80013,08,005,08005,69588,26047,36229567,36229567,69588,26047,36229567,36229567,572003,238301,2086073783,2067070049,100,100,100,100,12.17,10.93,1.74,1.75
-80014,08,005,08005,32246,16369,16457829,16457829,36710,18960,18282409,18282409,572003,238301,2086073783,2067070049,87.84,86.33,90.02,90.02,5.64,6.87,0.79,0.8
-80014,08,031,08031,4464,2591,1824580,1824580,36710,18960,18282409,18282409,600158,285797,400493947,396268588,12.16,13.67,9.98,9.98,0.74,0.91,0.46,0.46
-80015,08,005,08005,62432,21996,37637520,37030524,62432,21996,37637520,37030524,572003,238301,2086073783,2067070049,100,100,100,100,10.91,9.23,1.8,1.79
-80016,08,005,08005,41105,15555,123651212,120513118,41219,15602,124869542,121731448,572003,238301,2086073783,2067070049,99.72,99.7,99.02,99,7.19,6.53,5.93,5.83
-80016,08,035,08035,114,47,1218330,1218330,41219,15602,124869542,121731448,285465,106859,2183021738,2176232357,0.28,0.3,0.98,1,0.04,0.04,0.06,0.06
-80017,08,005,08005,34270,13688,15210059,15187780,34270,13688,15210059,15187780,572003,238301,2086073783,2067070049,100,100,100,100,5.99,5.74,0.73,0.73
-80018,08,005,08005,9206,3263,68734997,68730059,9206,3263,68734997,68730059,572003,238301,2086073783,2067070049,100,100,100,100,1.61,1.37,3.29,3.32
-80019,08,001,08001,1690,719,63675653,63627082,1690,719,63675653,63627082,441603,163136,3066277939,3024207713,100,100,100,100,0.38,0.44,2.08,2.1
-80020,08,001,08001,0,1,651989,631905,46871,18011,51865101,51170492,441603,163136,3066277939,3024207713,0,0.01,1.26,1.23,0,0,0.02,0.02
-80020,08,013,08013,147,70,13114980,12973681,46871,18011,51865101,51170492,294567,127071,1917549467,1881080439,0.31,0.39,25.29,25.35,0.05,0.06,0.68,0.69
-80020,08,014,08014,38555,15101,31460790,30952957,46871,18011,51865101,51170492,55889,22646,87023713,85557538,82.26,83.84,60.66,60.49,68.98,66.68,36.15,36.18
-80020,08,059,08059,8169,2839,6637342,6611949,46871,18011,51865101,51170492,534543,229967,2004736219,1979289991,17.43,15.76,12.8,12.92,1.53,1.23,0.33,0.33
-80021,08,014,08014,2606,1778,14901929,14253642,30051,13183,48772107,42709608,55889,22646,87023713,85557538,8.67,13.49,30.55,33.37,4.66,7.85,17.12,16.66
-80021,08,059,08059,27445,11405,33870178,28455966,30051,13183,48772107,42709608,534543,229967,2004736219,1979289991,91.33,86.51,69.45,66.63,5.13,4.96,1.69,1.44
-80022,08,001,08001,42699,14343,119969050,119260445,42699,14343,119969050,119260445,441603,163136,3066277939,3024207713,100,100,100,100,9.67,8.79,3.91,3.94
-80023,08,001,08001,2079,740,18298234,17931337,15415,6024,46223334,45657286,441603,163136,3066277939,3024207713,13.49,12.28,39.59,39.27,0.47,0.45,0.6,0.59
-80023,08,014,08014,13336,5284,27925100,27725949,15415,6024,46223334,45657286,55889,22646,87023713,85557538,86.51,87.72,60.41,60.73,23.86,23.33,32.09,32.41
-80024,08,001,08001,228,85,105884,105884,228,85,105884,105884,441603,163136,3066277939,3024207713,100,100,100,100,0.05,0.05,0,0
-80025,08,013,08013,253,152,30283993,30273320,253,152,30283993,30273320,294567,127071,1917549467,1881080439,100,100,100,100,0.09,0.12,1.58,1.61
-80026,08,013,08013,26378,10796,58920062,57722349,26378,10796,58920062,57722349,294567,127071,1917549467,1881080439,100,100,100,100,8.95,8.5,3.07,3.07
-80027,08,013,08013,31034,12648,50702716,50193011,31034,12648,50821442,50311737,294567,127071,1917549467,1881080439,100,100,99.77,99.76,10.54,9.95,2.64,2.67
-80027,08,014,08014,0,0,118726,118726,31034,12648,50821442,50311737,55889,22646,87023713,85557538,0,0,0.23,0.24,0,0,0.14,0.14
-80030,08,001,08001,15329,6381,7025908,6829156,15329,6381,7025908,6829156,441603,163136,3066277939,3024207713,100,100,100,100,3.47,3.91,0.23,0.23
-80031,08,001,08001,32030,12839,19674988,19540242,33932,13594,21967981,21830198,441603,163136,3066277939,3024207713,94.39,94.45,89.56,89.51,7.25,7.87,0.64,0.65
-80031,08,059,08059,1902,755,2292993,2289956,33932,13594,21967981,21830198,534543,229967,2004736219,1979289991,5.61,5.55,10.44,10.49,0.36,0.33,0.11,0.12
-80033,08,059,08059,23969,11817,22132657,21452446,23969,11817,22132657,21452446,534543,229967,2004736219,1979289991,100,100,100,100,4.48,5.14,1.1,1.08
-80045,08,001,08001,277,173,1738361,1735675,277,173,1738361,1735675,441603,163136,3066277939,3024207713,100,100,100,100,0.06,0.11,0.06,0.06
-80101,08,039,08039,392,193,608234178,608222744,392,193,608234178,608222744,23086,8939,4794113342,4793671177,100,100,100,100,1.7,2.16,12.69,12.69
-80102,08,001,08001,3359,1298,381958344,378857081,5514,2084,773421307,769180437,441603,163136,3066277939,3024207713,60.92,62.28,49.39,49.25,0.76,0.8,12.46,12.53
-80102,08,005,08005,2050,744,305970203,304837632,5514,2084,773421307,769180437,572003,238301,2086073783,2067070049,37.18,35.7,39.56,39.63,0.36,0.31,14.67,14.75
-80102,08,039,08039,105,42,85492760,85485724,5514,2084,773421307,769180437,23086,8939,4794113342,4793671177,1.9,2.02,11.05,11.11,0.45,0.47,1.78,1.78
-80103,08,001,08001,475,205,451609111,440079122,2458,1002,744605113,727992115,441603,163136,3066277939,3024207713,19.32,20.46,60.65,60.45,0.11,0.13,14.73,14.55
-80103,08,005,08005,1983,797,292996002,287912993,2458,1002,744605113,727992115,572003,238301,2086073783,2067070049,80.68,79.54,39.35,39.55,0.35,0.33,14.05,13.93
-80104,08,035,08035,27588,10470,201020115,200935904,27588,10470,201020115,200935904,285465,106859,2183021738,2176232357,100,100,100,100,9.66,9.8,9.21,9.23
-80105,08,001,08001,35,15,365786868,365124000,1171,563,1296743791,1291545420,441603,163136,3066277939,3024207713,2.99,2.66,28.21,28.27,0.01,0.01,11.93,12.07
-80105,08,005,08005,753,366,642790714,638364758,1171,563,1296743791,1291545420,572003,238301,2086073783,2067070049,64.3,65.01,49.57,49.43,0.13,0.15,30.81,30.88
-80105,08,039,08039,383,182,288166209,288056662,1171,563,1296743791,1291545420,23086,8939,4794113342,4793671177,32.71,32.33,22.22,22.3,1.66,2.04,6.01,6.01
-80106,08,035,08035,80,34,17146581,17068955,4232,1635,455494157,455241296,285465,106859,2183021738,2176232357,1.89,2.08,3.76,3.75,0.03,0.03,0.79,0.78
-80106,08,039,08039,1367,554,359344076,359344076,4232,1635,455494157,455241296,23086,8939,4794113342,4793671177,32.3,33.88,78.89,78.93,5.92,6.2,7.5,7.5
-80106,08,041,08041,2785,1047,79003500,78828265,4232,1635,455494157,455241296,622263,252852,5515501390,5508389808,65.81,64.04,17.34,17.32,0.45,0.41,1.43,1.43
-80107,08,039,08039,12042,4474,403731202,403731202,12042,4474,403731202,403731202,23086,8939,4794113342,4793671177,100,100,100,100,52.16,50.05,8.42,8.42
-80108,08,035,08035,22612,8497,92149892,92149892,22612,8497,92149892,92149892,285465,106859,2183021738,2176232357,100,100,100,100,7.92,7.95,4.22,4.23
-80109,08,035,08035,17219,5778,68309904,68309904,17219,5778,68309904,68309904,285465,106859,2183021738,2176232357,100,100,100,100,6.03,5.41,3.13,3.14
-80110,08,005,08005,19812,9113,16375343,15951463,20867,9483,16813399,16389519,572003,238301,2086073783,2067070049,94.94,96.1,97.39,97.33,3.46,3.82,0.78,0.77
-80110,08,031,08031,1055,370,438056,438056,20867,9483,16813399,16389519,600158,285797,400493947,396268588,5.06,3.9,2.61,2.67,0.18,0.13,0.11,0.11
-80111,08,005,08005,28948,12511,27821887,27811978,28948,12511,27906153,27896244,572003,238301,2086073783,2067070049,100,100,99.7,99.7,5.06,5.25,1.33,1.35
-80111,08,031,08031,0,0,84266,84266,28948,12511,27906153,27896244,600158,285797,400493947,396268588,0,0,0.3,0.3,0,0,0.02,0.02
-80112,08,005,08005,27167,11491,34477061,34143755,29217,12734,48307369,47972642,572003,238301,2086073783,2067070049,92.98,90.24,71.37,71.17,4.75,4.82,1.65,1.65
-80112,08,035,08035,2050,1243,13830308,13828887,29217,12734,48307369,47972642,285465,106859,2183021738,2176232357,7.02,9.76,28.63,28.83,0.72,1.16,0.63,0.64
-80113,08,005,08005,20562,10295,19740948,19584824,20562,10295,19740948,19584824,572003,238301,2086073783,2067070049,100,100,100,100,3.59,4.32,0.95,0.95
-80116,08,035,08035,3942,1614,224117799,223874664,3942,1614,224117799,223874664,285465,106859,2183021738,2176232357,100,100,100,100,1.38,1.51,10.27,10.29
-80117,08,039,08039,2587,1074,631132644,631057965,2587,1074,631132644,631057965,23086,8939,4794113342,4793671177,100,100,100,100,11.21,12.01,13.16,13.16
-80118,08,035,08035,5308,2241,353889715,353594319,5308,2241,353889715,353594319,285465,106859,2183021738,2176232357,100,100,100,100,1.86,2.1,16.21,16.25
-80120,08,005,08005,28416,13489,22372662,21432395,28435,13503,22447354,21504485,572003,238301,2086073783,2067070049,99.93,99.9,99.67,99.66,4.97,5.66,1.07,1.04
-80120,08,035,08035,19,14,74692,72090,28435,13503,22447354,21504485,285465,106859,2183021738,2176232357,0.07,0.1,0.33,0.34,0.01,0.01,0,0
-80121,08,005,08005,17853,7307,19450497,19397155,17853,7307,19450497,19397155,572003,238301,2086073783,2067070049,100,100,100,100,3.12,3.07,0.93,0.94
-80122,08,005,08005,29783,12412,18326966,18278675,29783,12412,18326966,18278675,572003,238301,2086073783,2067070049,100,100,100,100,5.21,5.21,0.88,0.88
-80123,08,005,08005,10914,5161,10409735,9790387,44795,19351,34967328,30758067,572003,238301,2086073783,2067070049,24.36,26.67,29.77,31.83,1.91,2.17,0.5,0.47
-80123,08,031,08031,11968,5785,8494902,5864339,44795,19351,34967328,30758067,600158,285797,400493947,396268588,26.72,29.9,24.29,19.07,1.99,2.02,2.12,1.48
-80123,08,059,08059,21913,8405,16062691,15103341,44795,19351,34967328,30758067,534543,229967,2004736219,1979289991,48.92,43.43,45.94,49.1,4.1,3.65,0.8,0.76
-80124,08,035,08035,18020,7260,24568666,24562911,18020,7260,24568666,24562911,285465,106859,2183021738,2176232357,100,100,100,100,6.31,6.79,1.13,1.13
-80125,08,035,08035,10190,3768,112921834,109119224,10190,3768,112921834,109119224,285465,106859,2183021738,2176232357,100,100,100,100,3.57,3.53,5.17,5.01
-80126,08,035,08035,39698,14237,27790552,27775578,39698,14237,27790552,27775578,285465,106859,2183021738,2176232357,100,100,100,100,13.91,13.32,1.27,1.28
-80127,08,059,08059,42597,16325,135136695,134087282,42597,16325,135136695,134087282,534543,229967,2004736219,1979289991,100,100,100,100,7.97,7.1,6.74,6.77
-80128,08,005,08005,1824,796,4757667,3778388,34988,14135,35937953,31967604,572003,238301,2086073783,2067070049,5.21,5.63,13.24,11.82,0.32,0.33,0.23,0.18
-80128,08,059,08059,33164,13339,31180286,28189216,34988,14135,35937953,31967604,534543,229967,2004736219,1979289991,94.79,94.37,86.76,88.18,6.2,5.8,1.56,1.42
-80129,08,005,08005,0,0,93791,93791,27007,10031,19411718,19310720,572003,238301,2086073783,2067070049,0,0,0.48,0.49,0,0,0,0
-80129,08,035,08035,27007,10031,19317927,19216929,27007,10031,19411718,19310720,285465,106859,2183021738,2176232357,100,100,99.52,99.51,9.46,9.39,0.88,0.88
-80130,08,035,08035,27054,9959,16573094,16556712,27054,9959,16573094,16556712,285465,106859,2183021738,2176232357,100,100,100,100,9.48,9.32,0.76,0.76
-80131,08,035,08035,243,107,1954443,1954443,243,107,1954443,1954443,285465,106859,2183021738,2176232357,100,100,100,100,0.09,0.1,0.09,0.09
-80132,08,041,08041,19637,7115,79562542,79192247,19637,7115,79562542,79192247,622263,252852,5515501390,5508389808,100,100,100,100,3.16,2.81,1.44,1.44
-80133,08,035,08035,18,8,4297675,4297675,2042,916,79805001,79764494,285465,106859,2183021738,2176232357,0.88,0.87,5.39,5.39,0.01,0.01,0.2,0.2
-80133,08,041,08041,2024,908,75507326,75466819,2042,916,79805001,79764494,622263,252852,5515501390,5508389808,99.12,99.13,94.61,94.61,0.33,0.36,1.37,1.37
-80134,08,035,08035,55075,20452,146162844,145948097,55075,20452,146162844,145948097,285465,106859,2183021738,2176232357,100,100,100,100,19.29,19.14,6.7,6.71
-80135,08,035,08035,3775,1871,766099592,764339185,3833,1908,856998734,852794394,285465,106859,2183021738,2176232357,98.49,98.06,89.39,89.63,1.32,1.75,35.09,35.12
-80135,08,059,08059,58,37,90899142,88455209,3833,1908,856998734,852794394,534543,229967,2004736219,1979289991,1.51,1.94,10.61,10.37,0.01,0.02,4.53,4.47
-80136,08,001,08001,3274,1232,335924782,335526000,4834,1840,525327191,523934870,441603,163136,3066277939,3024207713,67.73,66.96,63.95,64.04,0.74,0.76,10.96,11.09
-80136,08,005,08005,1560,608,189402409,188408870,4834,1840,525327191,523934870,572003,238301,2086073783,2067070049,32.27,33.04,36.05,35.96,0.27,0.26,9.08,9.11
-80137,08,001,08001,441,208,160211275,158733423,1323,437,272293601,270790666,441603,163136,3066277939,3024207713,33.33,47.6,58.84,58.62,0.1,0.13,5.22,5.25
-80137,08,005,08005,882,229,112082326,112057243,1323,437,272293601,270790666,572003,238301,2086073783,2067070049,66.67,52.4,41.16,41.38,0.15,0.1,5.37,5.42
-80138,08,035,08035,25453,9228,91577775,91408658,29786,10781,163917306,163742237,285465,106859,2183021738,2176232357,85.45,85.6,55.87,55.82,8.92,8.64,4.2,4.2
-80138,08,039,08039,4333,1553,72339531,72333579,29786,10781,163917306,163742237,23086,8939,4794113342,4793671177,14.55,14.4,44.13,44.18,18.77,17.37,1.51,1.51
-80202,08,031,08031,10148,8399,2900297,2900297,10148,8399,2900297,2900297,600158,285797,400493947,396268588,100,100,100,100,1.69,2.94,0.72,0.73
-80203,08,031,08031,18839,14896,2779201,2779201,18839,14896,2779201,2779201,600158,285797,400493947,396268588,100,100,100,100,3.14,5.21,0.69,0.7
-80204,08,031,08031,31493,13116,14407225,14407225,31493,13116,14407225,14407225,600158,285797,400493947,396268588,100,100,100,100,5.25,4.59,3.6,3.64
-80205,08,031,08031,29221,13656,11994921,11874937,29221,13656,11994921,11874937,600158,285797,400493947,396268588,100,100,100,100,4.87,4.78,3,3
-80206,08,031,08031,21521,13536,6361669,6361669,21521,13536,6361669,6361669,600158,285797,400493947,396268588,100,100,100,100,3.59,4.74,1.59,1.61
-80207,08,031,08031,21216,8907,11824012,11824012,21216,8907,11824012,11824012,600158,285797,400493947,396268588,100,100,100,100,3.54,3.12,2.95,2.98
-80209,08,031,08031,21526,13530,9074059,9019641,21526,13530,9074059,9019641,600158,285797,400493947,396268588,100,100,100,100,3.59,4.73,2.27,2.28
-80210,08,031,08031,33946,16398,15758361,15707215,33946,16398,15758361,15707215,600158,285797,400493947,396268588,100,100,100,100,5.66,5.74,3.93,3.96
-80211,08,031,08031,31583,15615,11741553,11644553,31583,15615,11741553,11644553,600158,285797,400493947,396268588,100,100,100,100,5.26,5.46,2.93,2.94
-80212,08,001,08001,1109,421,701874,629218,18051,9441,10342093,9249003,441603,163136,3066277939,3024207713,6.14,4.46,6.79,6.8,0.25,0.26,0.02,0.02
-80212,08,031,08031,14250,7621,7733384,6870235,18051,9441,10342093,9249003,600158,285797,400493947,396268588,78.94,80.72,74.78,74.28,2.37,2.67,1.93,1.73
-80212,08,059,08059,2692,1399,1906835,1749550,18051,9441,10342093,9249003,534543,229967,2004736219,1979289991,14.91,14.82,18.44,18.92,0.5,0.61,0.1,0.09
-80214,08,031,08031,123,77,55337,55337,24821,11831,11961697,11920975,600158,285797,400493947,396268588,0.5,0.65,0.46,0.46,0.02,0.03,0.01,0.01
-80214,08,059,08059,24698,11754,11906360,11865638,24821,11831,11961697,11920975,534543,229967,2004736219,1979289991,99.5,99.35,99.54,99.54,4.62,5.11,0.59,0.6
-80215,08,059,08059,17843,8568,14670005,14412678,17843,8568,14670005,14412678,534543,229967,2004736219,1979289991,100,100,100,100,3.34,3.73,0.73,0.73
-80216,08,001,08001,280,107,8990351,8785218,10924,3385,27405779,27187751,441603,163136,3066277939,3024207713,2.56,3.16,32.8,32.31,0.06,0.07,0.29,0.29
-80216,08,031,08031,10644,3278,18415428,18402533,10924,3385,27405779,27187751,600158,285797,400493947,396268588,97.44,96.84,67.2,67.69,1.77,1.15,4.6,4.64
-80218,08,031,08031,17928,12227,4145058,4145058,17928,12227,4145058,4145058,600158,285797,400493947,396268588,100,100,100,100,2.99,4.28,1.03,1.05
-80219,08,031,08031,61296,20448,19635578,19441922,61296,20448,19635578,19441922,600158,285797,400493947,396268588,100,100,100,100,10.21,7.15,4.9,4.91
-80220,08,005,08005,242,102,24830,24830,33529,16421,13575575,13575575,572003,238301,2086073783,2067070049,0.72,0.62,0.18,0.18,0.04,0.04,0,0
-80220,08,031,08031,33287,16319,13550745,13550745,33529,16421,13575575,13575575,600158,285797,400493947,396268588,99.28,99.38,99.82,99.82,5.55,5.71,3.38,3.42
-80221,08,001,08001,32048,11408,21131200,20465170,37779,13536,24127787,23461757,441603,163136,3066277939,3024207713,84.83,84.28,87.58,87.23,7.26,6.99,0.69,0.68
-80221,08,031,08031,5731,2128,2996587,2996587,37779,13536,24127787,23461757,600158,285797,400493947,396268588,15.17,15.72,12.42,12.77,0.95,0.74,0.75,0.76
-80222,08,005,08005,2521,1048,1486156,1486156,20073,10256,10282638,10282638,572003,238301,2086073783,2067070049,12.56,10.22,14.45,14.45,0.44,0.44,0.07,0.07
-80222,08,031,08031,17552,9208,8796482,8796482,20073,10256,10282638,10282638,600158,285797,400493947,396268588,87.44,89.78,85.55,85.55,2.92,3.22,2.2,2.22
-80223,08,031,08031,17987,7139,13653651,13544714,17987,7139,13653651,13544714,600158,285797,400493947,396268588,100,100,100,100,3,2.5,3.41,3.42
-80224,08,005,08005,117,52,168268,168268,17256,8570,8146834,8146834,572003,238301,2086073783,2067070049,0.68,0.61,2.07,2.07,0.02,0.02,0.01,0.01
-80224,08,031,08031,17139,8518,7978566,7978566,17256,8570,8146834,8146834,600158,285797,400493947,396268588,99.32,99.39,97.93,97.93,2.86,2.98,1.99,2.01
-80226,08,031,08031,242,61,48026,48026,30930,13656,21031940,20865700,600158,285797,400493947,396268588,0.78,0.45,0.23,0.23,0.04,0.02,0.01,0.01
-80226,08,059,08059,30688,13595,20983914,20817674,30930,13656,21031940,20865700,534543,229967,2004736219,1979289991,99.22,99.55,99.77,99.77,5.74,5.91,1.05,1.05
-80227,08,031,08031,9788,3967,4067489,4067489,33667,15217,19487048,19163868,600158,285797,400493947,396268588,29.07,26.07,20.87,21.22,1.63,1.39,1.02,1.03
-80227,08,059,08059,23879,11250,15419559,15096379,33667,15217,19487048,19163868,534543,229967,2004736219,1979289991,70.93,73.93,79.13,78.78,4.47,4.89,0.77,0.76
-80228,08,059,08059,30138,13797,28633449,28540433,30138,13797,28633449,28540433,534543,229967,2004736219,1979289991,100,100,100,100,5.64,6,1.43,1.44
-80229,08,001,08001,49598,18023,35057539,34087313,49598,18023,35057539,34087313,441603,163136,3066277939,3024207713,100,100,100,100,11.23,11.05,1.14,1.13
-80230,08,031,08031,7559,3825,6446419,6446419,7559,3825,6446419,6446419,600158,285797,400493947,396268588,100,100,100,100,1.26,1.34,1.61,1.63
-80231,08,005,08005,13544,6644,5215562,5215562,32127,17134,12212325,12212325,572003,238301,2086073783,2067070049,42.16,38.78,42.71,42.71,2.37,2.79,0.25,0.25
-80231,08,031,08031,18583,10490,6996763,6996763,32127,17134,12212325,12212325,600158,285797,400493947,396268588,57.84,61.22,57.29,57.29,3.1,3.67,1.75,1.77
-80232,08,031,08031,55,31,55596,55596,21411,9168,11331087,10697719,600158,285797,400493947,396268588,0.26,0.34,0.49,0.52,0.01,0.01,0.01,0.01
-80232,08,059,08059,21356,9137,11275491,10642123,21411,9168,11331087,10697719,534543,229967,2004736219,1979289991,99.74,99.66,99.51,99.48,4,3.97,0.56,0.54
-80233,08,001,08001,45386,17642,23897181,23577904,45386,17642,23897181,23577904,441603,163136,3066277939,3024207713,100,100,100,100,10.28,10.81,0.78,0.78
-80234,08,001,08001,24611,10649,18237193,17972240,25937,11104,18624697,18359744,441603,163136,3066277939,3024207713,94.89,95.9,97.92,97.89,5.57,6.53,0.59,0.59
-80234,08,014,08014,1326,455,387504,387504,25937,11104,18624697,18359744,55889,22646,87023713,85557538,5.11,4.1,2.08,2.11,2.37,2.01,0.45,0.45
-80235,08,031,08031,3311,1695,2311480,2301069,7571,3610,9621451,9428336,600158,285797,400493947,396268588,43.73,46.95,24.02,24.41,0.55,0.59,0.58,0.58
-80235,08,059,08059,4260,1915,7309971,7127267,7571,3610,9621451,9428336,534543,229967,2004736219,1979289991,56.27,53.05,75.98,75.59,0.8,0.83,0.36,0.36
-80236,08,005,08005,1296,558,313107,313107,16123,6142,8321007,8321007,572003,238301,2086073783,2067070049,8.04,9.08,3.76,3.76,0.23,0.23,0.02,0.02
-80236,08,031,08031,14827,5584,8007900,8007900,16123,6142,8321007,8321007,600158,285797,400493947,396268588,91.96,90.92,96.24,96.24,2.47,1.95,2,2.02
-80237,08,005,08005,0,0,26102,26102,17569,10074,9277853,9260004,572003,238301,2086073783,2067070049,0,0,0.28,0.28,0,0,0,0
-80237,08,031,08031,17569,10074,9251751,9233902,17569,10074,9277853,9260004,600158,285797,400493947,396268588,100,100,99.72,99.72,2.93,3.52,2.31,2.33
-80238,08,031,08031,10058,3898,12566304,12566304,10058,3898,12566304,12566304,600158,285797,400493947,396268588,100,100,100,100,1.68,1.36,3.14,3.17
-80239,08,001,08001,0,0,1020469,1020469,40512,11206,25887143,25855308,441603,163136,3066277939,3024207713,0,0,3.94,3.95,0,0,0.03,0.03
-80239,08,031,08031,40512,11206,24866674,24834839,40512,11206,25887143,25855308,600158,285797,400493947,396268588,100,100,96.06,96.05,6.75,3.92,6.21,6.27
-80241,08,001,08001,31746,11638,17749847,17101607,31746,11638,17749847,17101607,441603,163136,3066277939,3024207713,100,100,100,100,7.19,7.13,0.58,0.57
-80246,08,005,08005,4184,2649,1433971,1426448,12875,7840,4478647,4469838,572003,238301,2086073783,2067070049,32.5,33.79,32.02,31.91,0.73,1.11,0.07,0.07
-80246,08,031,08031,8691,5191,3044676,3043390,12875,7840,4478647,4469838,600158,285797,400493947,396268588,67.5,66.21,67.98,68.09,1.45,1.82,0.76,0.77
-80247,08,005,08005,13266,6971,3243109,3243109,25449,14986,7618455,7617388,572003,238301,2086073783,2067070049,52.13,46.52,42.57,42.58,2.32,2.93,0.16,0.16
-80247,08,031,08031,12183,8015,4375346,4374279,25449,14986,7618455,7617388,600158,285797,400493947,396268588,47.87,53.48,57.43,57.42,2.03,2.8,1.09,1.1
-80249,08,031,08031,23404,7765,123649244,123618081,23404,7765,123649244,123618081,600158,285797,400493947,396268588,100,100,100,100,3.9,2.72,30.87,31.2
-80260,08,001,08001,31412,12518,12712899,12417747,31412,12518,12712899,12417747,441603,163136,3066277939,3024207713,100,100,100,100,7.11,7.67,0.41,0.41
-80264,08,031,08031,0,0,19282,19282,0,0,19282,19282,600158,285797,400493947,396268588,0,0,100,100,0,0,0,0
-80290,08,031,08031,0,0,19489,19489,0,0,19489,19489,600158,285797,400493947,396268588,0,0,100,100,0,0,0,0
-80293,08,031,08031,0,0,15517,15517,0,0,15517,15517,600158,285797,400493947,396268588,0,0,100,100,0,0,0,0
-80294,08,031,08031,0,0,15459,15459,0,0,15459,15459,600158,285797,400493947,396268588,0,0,100,100,0,0,0,0
-80301,08,013,08013,22555,10634,82685063,75104967,22555,10634,82685063,75104967,294567,127071,1917549467,1881080439,100,100,100,100,7.66,8.37,4.31,3.99
-80302,08,013,08013,26941,12663,214727523,213860580,26941,12663,214727523,213860580,294567,127071,1917549467,1881080439,100,100,100,100,9.15,9.97,11.2,11.37
-80303,08,013,08013,22361,11222,59535960,57102035,22361,11222,59535960,57102035,294567,127071,1917549467,1881080439,100,100,100,100,7.59,8.83,3.1,3.04
-80304,08,013,08013,25623,11586,23803251,23685343,25623,11586,23803251,23685343,294567,127071,1917549467,1881080439,100,100,100,100,8.7,9.12,1.24,1.26
-80305,08,013,08013,16874,7314,18852806,18723747,16874,7314,18852806,18723747,294567,127071,1917549467,1881080439,100,100,100,100,5.73,5.76,0.98,1
-80310,08,013,08013,6578,953,1130317,1124499,6578,953,1130317,1124499,294567,127071,1917549467,1881080439,100,100,100,100,2.23,0.75,0.06,0.06
-80401,08,059,08059,39378,16895,136703082,135136812,39378,16895,136703082,135136812,534543,229967,2004736219,1979289991,100,100,100,100,7.37,7.35,6.82,6.83
-80403,08,013,08013,868,500,20626851,20086395,18211,7948,348512663,346183929,294567,127071,1917549467,1881080439,4.77,6.29,5.92,5.8,0.29,0.39,1.08,1.07
-80403,08,047,08047,401,253,25942635,25937872,18211,7948,348512663,346183929,5441,3560,389171027,388229109,2.2,3.18,7.44,7.49,7.37,7.11,6.67,6.68
-80403,08,059,08059,16942,7195,301943177,300159662,18211,7948,348512663,346183929,534543,229967,2004736219,1979289991,93.03,90.53,86.64,86.71,3.17,3.13,15.06,15.17
-80419,08,059,08059,0,0,256676,256676,0,0,256676,256676,534543,229967,2004736219,1979289991,0,0,100,100,0,0,0.01,0.01
-80420,08,093,08093,933,884,103316048,102595137,933,884,103316048,102595137,16206,13947,5725565015,5682034441,100,100,100,100,5.76,6.34,1.8,1.81
-80421,08,059,08059,15,22,22473799,22455271,8042,4375,357604101,357023560,534543,229967,2004736219,1979289991,0.19,0.5,6.28,6.29,0,0.01,1.12,1.13
-80421,08,093,08093,8027,4353,335130302,334568289,8042,4375,357604101,357023560,16206,13947,5725565015,5682034441,99.81,99.5,93.72,93.71,49.53,31.21,5.85,5.89
-80422,08,013,08013,108,61,10116121,10100925,4326,2738,335443480,334491129,294567,127071,1917549467,1881080439,2.5,2.23,3.02,3.02,0.04,0.05,0.53,0.54
-80422,08,047,08047,4218,2677,325327359,324390204,4326,2738,335443480,334491129,5441,3560,389171027,388229109,97.5,97.77,96.98,96.98,77.52,75.2,83.59,83.56
-80423,08,037,08037,144,153,314628707,313000765,169,177,412521177,410884300,52197,31312,4381718402,4362911978,85.21,86.44,76.27,76.18,0.28,0.49,7.18,7.17
-80423,08,049,08049,25,24,97892470,97883535,169,177,412521177,410884300,14843,16061,4842221760,4781971576,14.79,13.56,23.73,23.82,0.17,0.15,2.02,2.05
-80424,08,117,08117,9627,11169,327152895,326131671,9627,11169,327152895,326131671,27994,29842,1603922348,1575639358,100,100,100,100,34.39,37.43,20.4,20.7
-80425,08,059,08059,184,189,118454588,118140121,184,189,118454588,118140121,534543,229967,2004736219,1979289991,100,100,100,100,0.03,0.08,5.91,5.97
-80426,08,037,08037,104,75,229611880,228917907,104,81,346016587,344815749,52197,31312,4381718402,4362911978,100,92.59,66.36,66.39,0.2,0.24,5.24,5.25
-80426,08,107,08107,0,6,116404707,115897842,104,81,346016587,344815749,23509,16303,6133444841,6117619255,0,7.41,33.64,33.61,0,0.04,1.9,1.89
-80427,08,047,08047,822,630,37901033,37901033,822,630,37901033,37901033,5441,3560,389171027,388229109,100,100,100,100,15.11,17.7,9.74,9.76
-80428,08,107,08107,706,611,803521980,798466506,706,611,803521980,798466506,23509,16303,6133444841,6117619255,100,100,100,100,3,3.75,13.1,13.05
-80432,08,093,08093,439,860,283502763,282656348,439,860,283502763,282656348,16206,13947,5725565015,5682034441,100,100,100,100,2.71,6.17,4.95,4.97
-80433,08,059,08059,8354,3767,212600382,212158921,8354,3767,212600382,212158921,534543,229967,2004736219,1979289991,100,100,100,100,1.56,1.64,10.6,10.72
-80434,08,057,08057,43,38,74721037,74237158,43,38,74721037,74237158,1394,1286,4198273176,4179523206,100,100,100,100,3.08,2.95,1.78,1.78
-80435,08,117,08117,7278,7610,275407436,268632374,7278,7610,275407436,268632374,27994,29842,1603922348,1575639358,100,100,100,100,26,25.5,17.17,17.05
-80436,08,019,08019,565,290,31779048,31702715,565,290,31779048,31702715,9088,5685,1026912756,1023632674,100,100,100,100,6.22,5.1,3.09,3.1
-80438,08,019,08019,486,387,144677241,144190865,486,387,144677241,144190865,9088,5685,1026912756,1023632674,100,100,100,100,5.35,6.81,14.09,14.09
-80439,08,019,08019,3666,1877,280134635,279858859,23778,10766,458534764,457823389,9088,5685,1026912756,1023632674,15.42,17.43,61.09,61.13,40.34,33.02,27.28,27.34
-80439,08,059,08059,20112,8889,178400129,177964530,23778,10766,458534764,457823389,534543,229967,2004736219,1979289991,84.58,82.57,38.91,38.87,3.76,3.87,8.9,8.99
-80440,08,093,08093,2422,2274,688313980,686865818,2422,2274,688313980,686865818,16206,13947,5725565015,5682034441,100,100,100,100,14.95,16.3,12.02,12.09
-80442,08,049,08049,2309,2634,182439874,182382663,2309,2634,182439874,182382663,14843,16061,4842221760,4781971576,100,100,100,100,15.56,16.4,3.77,3.81
-80443,08,117,08117,3676,5208,279472743,269448980,3676,5208,279472743,269448980,27994,29842,1603922348,1575639358,100,100,100,100,13.13,17.45,17.42,17.1
-80444,08,019,08019,1080,812,83975577,82886961,1080,812,83975577,82886961,9088,5685,1026912756,1023632674,100,100,100,100,11.88,14.28,8.18,8.1
-80446,08,049,08049,3715,3146,791384261,774428527,3715,3146,791384261,774428527,14843,16061,4842221760,4781971576,100,100,100,100,25.03,19.59,16.34,16.19
-80447,08,049,08049,1964,3613,630839765,608271194,1964,3613,630839765,608271194,14843,16061,4842221760,4781971576,100,100,100,100,13.23,22.5,13.03,12.72
-80448,08,093,08093,193,228,580988072,580698843,193,228,580988072,580698843,16206,13947,5725565015,5682034441,100,100,100,100,1.19,1.63,10.15,10.22
-80449,08,015,08015,4,5,213622,213622,909,1505,1559096486,1536723392,17809,10020,2628715724,2624702242,0.44,0.33,0.01,0.01,0.02,0.05,0.01,0.01
-80449,08,093,08093,905,1500,1558882864,1536509770,909,1505,1559096486,1536723392,16206,13947,5725565015,5682034441,99.56,99.67,99.99,99.99,5.58,10.76,27.23,27.04
-80451,08,049,08049,753,387,177739781,177739781,753,387,177739781,177739781,14843,16061,4842221760,4781971576,100,100,100,100,5.07,2.41,3.67,3.72
-80452,08,019,08019,3097,2112,337608519,336292160,3097,2112,337608519,336292160,9088,5685,1026912756,1023632674,100,100,100,100,34.08,37.15,32.88,32.85
-80453,08,059,08059,197,120,1048445,1048445,197,120,1048445,1048445,534543,229967,2004736219,1979289991,100,100,100,100,0.04,0.05,0.05,0.05
-80454,08,059,08059,1224,620,11113465,11104624,1224,620,11113465,11104624,534543,229967,2004736219,1979289991,100,100,100,100,0.23,0.27,0.55,0.56
-80455,08,013,08013,497,325,90078299,90048206,497,325,90078299,90048206,294567,127071,1917549467,1881080439,100,100,100,100,0.17,0.26,4.7,4.79
-80456,08,093,08093,620,1343,600708705,599169362,620,1343,600708705,599169362,16206,13947,5725565015,5682034441,100,100,100,100,3.83,9.63,10.49,10.54
-80457,08,059,08059,612,292,4024245,4024245,612,292,4024245,4024245,534543,229967,2004736219,1979289991,100,100,100,100,0.11,0.13,0.2,0.2
-80459,08,049,08049,2450,1483,1516337591,1502830495,2450,1483,1516337591,1502830495,14843,16061,4842221760,4781971576,100,100,100,100,16.51,9.23,31.31,31.43
-80461,08,065,08065,7090,3970,757835074,749102545,7090,3970,757835074,749102545,7310,4271,994318625,976194289,100,100,100,100,96.99,92.95,76.22,76.74
-80463,08,037,08037,65,38,61653413,60909306,136,111,314110608,313270310,52197,31312,4381718402,4362911978,47.79,34.23,19.63,19.44,0.12,0.12,1.41,1.4
-80463,08,107,08107,71,73,252457195,252361004,136,111,314110608,313270310,23509,16303,6133444841,6117619255,52.21,65.77,80.37,80.56,0.3,0.45,4.12,4.13
-80465,08,059,08059,15147,6045,118384124,116876159,15147,6045,118384124,116876159,534543,229967,2004736219,1979289991,100,100,100,100,2.83,2.63,5.91,5.9
-80466,08,013,08013,3338,1929,236238711,233241697,3338,1929,236238711,233241697,294567,127071,1917549467,1881080439,100,100,100,100,1.13,1.52,12.32,12.4
-80467,08,107,08107,2224,1285,598653485,595416164,2224,1285,598653485,595416164,23509,16303,6133444841,6117619255,100,100,100,100,9.46,7.88,9.76,9.73
-80468,08,049,08049,391,315,1000904261,994246996,391,315,1000904261,994246996,14843,16061,4842221760,4781971576,100,100,100,100,2.63,1.96,20.67,20.79
-80469,08,107,08107,337,184,132516875,132487812,337,184,132516875,132487812,23509,16303,6133444841,6117619255,100,100,100,100,1.43,1.13,2.16,2.17
-80470,08,059,08059,2316,1388,301241822,300111911,3287,1862,346436364,345265510,534543,229967,2004736219,1979289991,70.46,74.54,86.95,86.92,0.43,0.6,15.03,15.16
-80470,08,093,08093,971,474,45194542,45153599,3287,1862,346436364,345265510,16206,13947,5725565015,5682034441,29.54,25.46,13.05,13.08,5.99,3.4,0.79,0.79
-80471,08,013,08013,23,68,2025971,2025971,23,68,2025971,2025971,294567,127071,1917549467,1881080439,100,100,100,100,0.01,0.05,0.11,0.11
-80473,08,057,08057,51,93,165971560,165859494,51,93,165971560,165859494,1394,1286,4198273176,4179523206,100,100,100,100,3.66,7.23,3.95,3.97
-80475,08,093,08093,57,49,28166008,28069390,57,49,28166008,28069390,16206,13947,5725565015,5682034441,100,100,100,100,0.35,0.35,0.49,0.49
-80476,08,019,08019,194,207,148737736,148701114,194,207,148737736,148701114,9088,5685,1026912756,1023632674,100,100,100,100,2.13,3.64,14.48,14.53
-80477,08,107,08107,155,85,69521,69521,155,85,69521,69521,23509,16303,6133444841,6117619255,100,100,100,100,0.66,0.52,0,0
-80478,08,049,08049,1606,1143,108482411,108060688,1606,1143,108482411,108060688,14843,16061,4842221760,4781971576,100,100,100,100,10.82,7.12,2.24,2.26
-80479,08,107,08107,48,53,292455998,292109895,48,53,292455998,292109895,23509,16303,6133444841,6117619255,100,100,100,100,0.2,0.33,4.77,4.77
-80480,08,057,08057,1300,1155,3957580579,3939426554,1300,1155,3957580579,3939426554,1394,1286,4198273176,4179523206,100,100,100,100,93.26,89.81,94.27,94.26
-80481,08,013,08013,572,517,188767503,185356642,572,517,188767503,185356642,294567,127071,1917549467,1881080439,100,100,100,100,0.19,0.41,9.84,9.85
-80482,08,049,08049,1630,3316,336201346,336127697,1630,3316,336201346,336127697,14843,16061,4842221760,4781971576,100,100,100,100,10.98,20.65,6.94,7.03
-80483,08,107,08107,585,305,225420163,225244397,585,305,225420163,225244397,23509,16303,6133444841,6117619255,100,100,100,100,2.49,1.87,3.68,3.68
-80487,08,107,08107,16745,12300,1897881588,1893483793,16745,12300,1897881588,1893483793,23509,16303,6133444841,6117619255,100,100,100,100,71.23,75.45,30.94,30.95
-80488,08,107,08107,157,104,28800,28800,157,104,28800,28800,23509,16303,6133444841,6117619255,100,100,100,100,0.67,0.64,0,0
-80497,08,117,08117,411,505,34246088,34246088,411,505,34246088,34246088,27994,29842,1603922348,1575639358,100,100,100,100,1.47,1.69,2.14,2.17
-80498,08,117,08117,7002,5350,687643186,677180245,7002,5350,687643186,677180245,27994,29842,1603922348,1575639358,100,100,100,100,25.01,17.93,42.87,42.98
-80501,08,013,08013,39521,16580,32631546,32047275,39521,16580,32631546,32047275,294567,127071,1917549467,1881080439,100,100,100,100,13.42,13.05,1.7,1.7
-80503,08,013,08013,31044,13288,240980252,233027775,31064,13294,243825519,235873042,294567,127071,1917549467,1881080439,99.94,99.95,98.83,98.79,10.54,10.46,12.57,12.39
-80503,08,069,08069,20,6,2845267,2845267,31064,13294,243825519,235873042,299630,132722,6821908736,6723613486,0.06,0.05,1.17,1.21,0.01,0,0.04,0.04
-80504,08,013,08013,27977,10288,107240847,101947989,46876,16985,266637502,256553379,294567,127071,1917549467,1881080439,59.68,60.57,40.22,39.74,9.5,8.1,5.59,5.42
-80504,08,069,08069,174,65,1324159,1322111,46876,16985,266637502,256553379,299630,132722,6821908736,6723613486,0.37,0.38,0.5,0.52,0.06,0.05,0.02,0.02
-80504,08,123,08123,18725,6632,158072496,153283279,46876,16985,266637502,256553379,252825,96281,10403452916,10326898753,39.95,39.05,59.28,59.75,7.41,6.89,1.52,1.48
-80510,08,013,08013,420,804,172434910,171285283,420,804,172434910,171285283,294567,127071,1917549467,1881080439,100,100,100,100,0.14,0.63,8.99,9.11
-80511,08,069,08069,76,7,268987,268987,76,7,268987,268987,299630,132722,6821908736,6723613486,100,100,100,100,0.03,0.01,0,0
-80512,08,069,08069,2185,1762,1281537555,1271380356,2185,1762,1281537555,1271380356,299630,132722,6821908736,6723613486,100,100,100,100,0.73,1.33,18.79,18.91
-80513,08,069,08069,9554,3837,120589440,112967395,10296,4133,179454456,170272654,299630,132722,6821908736,6723613486,92.79,92.84,67.2,66.35,3.19,2.89,1.77,1.68
-80513,08,123,08123,742,296,58865016,57305259,10296,4133,179454456,170272654,252825,96281,10403452916,10326898753,7.21,7.16,32.8,33.65,0.29,0.31,0.57,0.55
-80514,08,123,08123,4106,1546,17460199,17423578,4106,1546,17460199,17423578,252825,96281,10403452916,10326898753,100,100,100,100,1.62,1.61,0.17,0.17
-80515,08,069,08069,1010,960,157369395,156984650,1010,960,157369395,156984650,299630,132722,6821908736,6723613486,100,100,100,100,0.34,0.72,2.31,2.33
-80516,08,013,08013,8414,2905,14467022,14030086,20254,7440,104002355,103396032,294567,127071,1917549467,1881080439,41.54,39.05,13.91,13.57,2.86,2.29,0.75,0.75
-80516,08,014,08014,66,28,12229664,12118760,20254,7440,104002355,103396032,55889,22646,87023713,85557538,0.33,0.38,11.76,11.72,0.12,0.12,14.05,14.16
-80516,08,123,08123,11774,4507,77305669,77247186,20254,7440,104002355,103396032,252825,96281,10403452916,10326898753,58.13,60.58,74.33,74.71,4.66,4.68,0.74,0.75
-80517,08,069,08069,9313,7294,770140360,766475995,9313,7294,770140360,766475995,299630,132722,6821908736,6723613486,100,100,100,100,3.11,5.5,11.29,11.4
-80520,08,123,08123,1498,559,1043740,1043740,1498,559,1043740,1043740,252825,96281,10403452916,10326898753,100,100,100,100,0.59,0.58,0.01,0.01
-80521,08,069,08069,33409,13059,37906179,36755388,33409,13059,37906179,36755388,299630,132722,6821908736,6723613486,100,100,100,100,11.15,9.84,0.56,0.55
-80524,08,069,08069,31079,13434,274527364,252117973,31668,13680,353945327,327632487,299630,132722,6821908736,6723613486,98.14,98.2,77.56,76.95,10.37,10.12,4.02,3.75
-80524,08,123,08123,589,246,79417963,75514514,31668,13680,353945327,327632487,252825,96281,10403452916,10326898753,1.86,1.8,22.44,23.05,0.23,0.26,0.76,0.73
-80525,08,069,08069,48419,21347,66918073,62772554,48419,21347,66918073,62772554,299630,132722,6821908736,6723613486,100,100,100,100,16.16,16.08,0.98,0.93
-80526,08,069,08069,44183,18673,104144878,98867985,44183,18673,104144878,98867985,299630,132722,6821908736,6723613486,100,100,100,100,14.75,14.07,1.53,1.47
-80528,08,069,08069,17946,6600,53047274,49282926,17946,6600,53047274,49282926,299630,132722,6821908736,6723613486,100,100,100,100,5.99,4.97,0.78,0.73
-80530,08,123,08123,3790,1420,4924057,4924057,3790,1420,4924057,4924057,252825,96281,10403452916,10326898753,100,100,100,100,1.5,1.47,0.05,0.05
-80532,08,069,08069,165,215,66970023,66967049,165,215,66970023,66967049,299630,132722,6821908736,6723613486,100,100,100,100,0.06,0.16,0.98,1
-80534,08,069,08069,804,398,24387742,24290831,11301,4175,126750833,125497199,299630,132722,6821908736,6723613486,7.11,9.53,19.24,19.36,0.27,0.3,0.36,0.36
-80534,08,123,08123,10497,3777,102363091,101206368,11301,4175,126750833,125497199,252825,96281,10403452916,10326898753,92.89,90.47,80.76,80.64,4.15,3.92,0.98,0.98
-80535,08,069,08069,2636,1193,115031177,114690819,2636,1193,115031177,114690819,299630,132722,6821908736,6723613486,100,100,100,100,0.88,0.9,1.69,1.71
-80536,08,069,08069,1759,1250,953863780,952074925,1759,1250,953863780,952074925,299630,132722,6821908736,6723613486,100,100,100,100,0.59,0.94,13.98,14.16
-80537,08,069,08069,38688,16678,277410707,267229321,38821,16732,284726796,274494247,299630,132722,6821908736,6723613486,99.66,99.68,97.43,97.35,12.91,12.57,4.07,3.97
-80537,08,123,08123,133,54,7316089,7264926,38821,16732,284726796,274494247,252825,96281,10403452916,10326898753,0.34,0.32,2.57,2.65,0.05,0.06,0.07,0.07
-80538,08,069,08069,43930,18394,292469520,279714979,43930,18394,292469520,279714979,299630,132722,6821908736,6723613486,100,100,100,100,14.66,13.86,4.29,4.16
-80540,08,013,08013,2930,1710,248055946,246989846,4461,2531,411061080,409888530,294567,127071,1917549467,1881080439,65.68,67.56,60.35,60.26,0.99,1.35,12.94,13.13
-80540,08,069,08069,1531,821,163005134,162898684,4461,2531,411061080,409888530,299630,132722,6821908736,6723613486,34.32,32.44,39.65,39.74,0.51,0.62,2.39,2.42
-80542,08,123,08123,3631,1284,23979009,23196630,3631,1284,23979009,23196630,252825,96281,10403452916,10326898753,100,100,100,100,1.44,1.33,0.23,0.22
-80543,08,123,08123,5887,2095,82460181,81654543,5887,2095,82460181,81654543,252825,96281,10403452916,10326898753,100,100,100,100,2.33,2.18,0.79,0.79
-80544,08,013,08013,111,58,128817,128817,111,58,128817,128817,294567,127071,1917549467,1881080439,100,100,100,100,0.04,0.05,0.01,0.01
-80545,08,069,08069,851,2198,735273126,732647654,851,2198,735273126,732647654,299630,132722,6821908736,6723613486,100,100,100,100,0.28,1.66,10.78,10.9
-80546,08,123,08123,149,63,198280,198280,149,63,198280,198280,252825,96281,10403452916,10326898753,100,100,100,100,0.06,0.07,0,0
-80547,08,069,08069,624,241,7772467,7720928,624,241,7772467,7720928,299630,132722,6821908736,6723613486,100,100,100,100,0.21,0.18,0.11,0.11
-80549,08,069,08069,8412,3114,510501734,500928771,8642,3201,538419854,528846891,299630,132722,6821908736,6723613486,97.34,97.28,94.81,94.72,2.81,2.35,7.48,7.45
-80549,08,123,08123,230,87,27918120,27918120,8642,3201,538419854,528846891,252825,96281,10403452916,10326898753,2.66,2.72,5.19,5.28,0.09,0.09,0.27,0.27
-80550,08,069,08069,2722,1043,13433844,13392196,20675,8021,143347790,141095051,299630,132722,6821908736,6723613486,13.17,13,9.37,9.49,0.91,0.79,0.2,0.2
-80550,08,123,08123,17953,6978,129913946,127702855,20675,8021,143347790,141095051,252825,96281,10403452916,10326898753,86.83,87,90.63,90.51,7.1,7.25,1.25,1.24
-80601,08,001,08001,33833,11612,71184348,69404913,33833,11612,71184348,69404913,441603,163136,3066277939,3024207713,100,100,100,100,7.66,7.12,2.32,2.29
-80602,08,001,08001,27665,9248,79342385,77907661,27665,9248,79342385,77907661,441603,163136,3066277939,3024207713,100,100,100,100,6.26,5.67,2.59,2.58
-80603,08,001,08001,4847,1799,125429619,116802841,11973,4401,217010894,208117213,441603,163136,3066277939,3024207713,40.48,40.88,57.8,56.12,1.1,1.1,4.09,3.86
-80603,08,123,08123,7126,2602,91581275,91314372,11973,4401,217010894,208117213,252825,96281,10403452916,10326898753,59.52,59.12,42.2,43.88,2.82,2.7,0.88,0.88
-80610,08,123,08123,2791,1141,441072613,438959998,2791,1141,441072613,438959998,252825,96281,10403452916,10326898753,100,100,100,100,1.1,1.19,4.24,4.25
-80611,08,123,08123,659,294,996669492,996144776,659,294,996669492,996144776,252825,96281,10403452916,10326898753,100,100,100,100,0.26,0.31,9.58,9.65
-80612,08,069,08069,111,61,55181566,55114174,430,213,421464260,421224907,299630,132722,6821908736,6723613486,25.81,28.64,13.09,13.08,0.04,0.05,0.81,0.82
-80612,08,123,08123,319,152,366282694,366110733,430,213,421464260,421224907,252825,96281,10403452916,10326898753,74.19,71.36,86.91,86.92,0.13,0.16,3.52,3.55
-80615,08,123,08123,7482,2930,275315655,272657136,7482,2930,275315655,272657136,252825,96281,10403452916,10326898753,100,100,100,100,2.96,3.04,2.65,2.64
-80620,08,123,08123,17775,6477,17308455,17091729,17775,6477,17308455,17091729,252825,96281,10403452916,10326898753,100,100,100,100,7.03,6.73,0.17,0.17
-80621,08,123,08123,12079,4359,332045898,329925989,12079,4359,332045898,329925989,252825,96281,10403452916,10326898753,100,100,100,100,4.78,4.53,3.19,3.19
-80622,08,123,08123,268,100,34277615,34125516,268,100,34277615,34125516,252825,96281,10403452916,10326898753,100,100,100,100,0.11,0.1,0.33,0.33
-80623,08,123,08123,1028,344,1724340,1724340,1028,344,1724340,1724340,252825,96281,10403452916,10326898753,100,100,100,100,0.41,0.36,0.02,0.02
-80624,08,123,08123,946,372,81959269,81231909,946,372,81959269,81231909,252825,96281,10403452916,10326898753,100,100,100,100,0.37,0.39,0.79,0.79
-80631,08,123,08123,48603,17984,268858102,266377786,48603,17984,268858102,266377786,252825,96281,10403452916,10326898753,100,100,100,100,19.22,18.68,2.58,2.58
-80634,08,123,08123,52861,21776,96789964,96551391,52861,21776,96789964,96551391,252825,96281,10403452916,10326898753,100,100,100,100,20.91,22.62,0.93,0.93
-80640,08,001,08001,11054,3567,36740939,34205162,11054,3567,36740939,34205162,441603,163136,3066277939,3024207713,100,100,100,100,2.5,2.19,1.2,1.13
-80642,08,001,08001,903,314,76362510,74535938,4309,1274,249782049,246084918,441603,163136,3066277939,3024207713,20.96,24.65,30.57,30.29,0.2,0.19,2.49,2.46
-80642,08,123,08123,3406,960,173419539,171548980,4309,1274,249782049,246084918,252825,96281,10403452916,10326898753,79.04,75.35,69.43,69.71,1.35,1,1.67,1.66
-80643,08,001,08001,376,135,63562859,63459927,3011,1194,544996074,541702938,441603,163136,3066277939,3024207713,12.49,11.31,11.66,11.71,0.09,0.08,2.07,2.1
-80643,08,123,08123,2635,1059,481433215,478243011,3011,1194,544996074,541702938,252825,96281,10403452916,10326898753,87.51,88.69,88.34,88.29,1.04,1.1,4.63,4.63
-80644,08,123,08123,2989,1147,417004875,412887154,2989,1147,417004875,412887154,252825,96281,10403452916,10326898753,100,100,100,100,1.18,1.19,4.01,4
-80645,08,123,08123,3905,1521,359490112,348441803,3905,1521,359490112,348441803,252825,96281,10403452916,10326898753,100,100,100,100,1.54,1.58,3.46,3.37
-80648,08,123,08123,1001,424,398503408,398420975,1001,424,398503408,398420975,252825,96281,10403452916,10326898753,100,100,100,100,0.4,0.44,3.83,3.86
-80649,08,087,08087,176,85,169248438,168668381,299,154,499009482,472813692,28159,11490,3350778950,3316304952,58.86,55.19,33.92,35.67,0.63,0.74,5.05,5.09
-80649,08,123,08123,123,69,329761044,304145311,299,154,499009482,472813692,252825,96281,10403452916,10326898753,41.14,44.81,66.08,64.33,0.05,0.07,3.17,2.95
-80650,08,123,08123,1432,571,131708714,131370468,1432,571,131708714,131370468,252825,96281,10403452916,10326898753,100,100,100,100,0.57,0.59,1.27,1.27
-80651,08,123,08123,4176,1650,248728997,246565414,4176,1650,248728997,246565414,252825,96281,10403452916,10326898753,100,100,100,100,1.65,1.71,2.39,2.39
-80652,08,123,08123,574,247,485405355,485108131,574,247,485405355,485108131,252825,96281,10403452916,10326898753,100,100,100,100,0.23,0.26,4.67,4.7
-80653,08,087,08087,791,543,337760382,323666243,791,543,337760382,323666243,28159,11490,3350778950,3316304952,100,100,100,100,2.81,4.73,10.08,9.76
-80654,08,001,08001,30,19,53566332,52710072,2359,964,601388656,588686469,441603,163136,3066277939,3024207713,1.27,1.97,8.91,8.95,0.01,0.01,1.75,1.74
-80654,08,087,08087,2315,938,516937349,505134256,2359,964,601388656,588686469,28159,11490,3350778950,3316304952,98.13,97.3,85.96,85.81,8.22,8.16,15.43,15.23
-80654,08,123,08123,14,7,30884975,30842141,2359,964,601388656,588686469,252825,96281,10403452916,10326898753,0.59,0.73,5.14,5.24,0.01,0.01,0.3,0.3
-80701,08,001,08001,53,26,385435293,384560021,16042,6180,1579748902,1573752898,441603,163136,3066277939,3024207713,0.33,0.42,24.4,24.44,0.01,0.02,12.57,12.72
-80701,08,087,08087,15989,6154,1194313609,1189192877,16042,6180,1579748902,1573752898,28159,11490,3350778950,3316304952,99.67,99.58,75.6,75.56,56.78,53.56,35.64,35.86
-80705,08,087,08087,884,348,807564,807564,884,348,807564,807564,28159,11490,3350778950,3316304952,100,100,100,100,3.14,3.03,0.02,0.02
-80720,08,121,08121,2558,1277,2412204496,2411761385,2558,1277,2412204496,2411761385,4814,2434,6536877708,6521670287,100,100,100,100,53.14,52.47,36.9,36.98
-80721,08,095,08095,154,76,223730401,223730401,154,76,223730401,223730401,4442,2087,1782026795,1781724987,100,100,100,100,3.47,3.64,12.55,12.56
-80722,08,075,08075,349,168,89455492,89409090,349,168,89455492,89409090,22709,8981,4778177055,4761813494,100,100,100,100,1.54,1.87,1.87,1.88
-80723,08,087,08087,7168,3041,676964615,676554774,7179,3047,752334062,751888883,28159,11490,3350778950,3316304952,99.85,99.8,89.98,89.98,25.46,26.47,20.2,20.4
-80723,08,121,08121,11,6,75369447,75334109,7179,3047,752334062,751888883,4814,2434,6536877708,6521670287,0.15,0.2,10.02,10.02,0.23,0.25,1.15,1.16
-80726,08,075,08075,381,223,412121544,409178673,381,223,412121544,409178673,22709,8981,4778177055,4761813494,100,100,100,100,1.68,2.48,8.63,8.59
-80727,08,125,08125,425,213,531774248,531673138,425,213,531774248,531673138,10043,4466,6134914606,6123779829,100,100,100,100,4.23,4.77,8.67,8.68
-80728,08,075,08075,878,417,939237282,939237282,878,417,939237282,939237282,22709,8981,4778177055,4761813494,100,100,100,100,3.87,4.64,19.66,19.72
-80729,08,123,08123,540,307,1870304925,1869674251,540,307,1870304925,1869674251,252825,96281,10403452916,10326898753,100,100,100,100,0.21,0.32,17.98,18.1
-80731,08,075,08075,140,76,295316816,295316298,1494,768,974676065,974540139,22709,8981,4778177055,4761813494,9.37,9.9,30.3,30.3,0.62,0.85,6.18,6.2
-80731,08,095,08095,1320,676,605176602,605176602,1494,768,974676065,974540139,4442,2087,1782026795,1781724987,88.35,88.02,62.09,62.1,29.72,32.39,33.96,33.97
-80731,08,115,08115,13,7,23908284,23908284,1494,768,974676065,974540139,2379,1415,1422949915,1419419181,0.87,0.91,2.45,2.45,0.55,0.49,1.68,1.68
-80731,08,125,08125,21,9,50274363,50138955,1494,768,974676065,974540139,10043,4466,6134914606,6123779829,1.41,1.17,5.16,5.14,0.21,0.2,0.82,0.82
-80733,08,087,08087,400,184,38903033,38892503,529,235,88873775,81847808,28159,11490,3350778950,3316304952,75.61,78.3,43.77,47.52,1.42,1.6,1.16,1.17
-80733,08,121,08121,129,51,49970742,42955305,529,235,88873775,81847808,4814,2434,6536877708,6521670287,24.39,21.7,56.23,52.48,2.68,2.1,0.76,0.66
-80734,08,095,08095,2939,1316,952432959,952131151,3045,1355,1262687692,1262374294,4442,2087,1782026795,1781724987,96.52,97.12,75.43,75.42,66.16,63.06,53.45,53.44
-80734,08,125,08125,106,39,310254733,310243143,3045,1355,1262687692,1262374294,10043,4466,6134914606,6123779829,3.48,2.88,24.57,24.58,1.06,0.87,5.06,5.07
-80735,08,125,08125,405,196,766224243,758543186,405,196,766224243,758543186,10043,4466,6134914606,6123779829,100,100,100,100,4.03,4.39,12.49,12.39
-80736,08,075,08075,648,320,294864874,294694804,648,320,294864874,294694804,22709,8981,4778177055,4761813494,100,100,100,100,2.85,3.56,6.17,6.19
-80737,08,115,08115,1537,917,628394222,628357959,1537,917,628394222,628357959,2379,1415,1422949915,1419419181,100,100,100,100,64.61,64.81,44.16,44.27
-80740,08,121,08121,108,71,428331838,427409425,108,71,428331838,427409425,4814,2434,6536877708,6521670287,100,100,100,100,2.24,2.92,6.55,6.55
-80741,08,075,08075,838,365,494347234,492137066,935,417,592574223,589502612,22709,8981,4778177055,4761813494,89.63,87.53,83.42,83.48,3.69,4.06,10.35,10.34
-80741,08,087,08087,24,17,73165029,73149456,935,417,592574223,589502612,28159,11490,3350778950,3316304952,2.57,4.08,12.35,12.41,0.09,0.15,2.18,2.21
-80741,08,121,08121,73,35,25061960,24216090,935,417,592574223,589502612,4814,2434,6536877708,6521670287,7.81,8.39,4.23,4.11,1.52,1.44,0.38,0.37
-80742,08,123,08123,225,155,1155159348,1155134118,225,155,1155159348,1155134118,252825,96281,10403452916,10326898753,100,100,100,100,0.09,0.16,11.1,11.19
-80743,08,121,08121,1074,537,1202672968,1202617711,1074,537,1202672968,1202617711,4814,2434,6536877708,6521670287,100,100,100,100,22.31,22.06,18.4,18.44
-80744,08,115,08115,488,276,336354575,336222752,488,276,336354575,336222752,2379,1415,1422949915,1419419181,100,100,100,100,20.51,19.51,23.64,23.69
-80745,08,075,08075,156,90,569581832,569546818,156,90,569581832,569546818,22709,8981,4778177055,4761813494,100,100,100,100,0.69,1,11.92,11.96
-80746,08,095,08095,29,19,686833,686833,29,19,686833,686833,4442,2087,1782026795,1781724987,100,100,100,100,0.65,0.91,0.04,0.04
-80747,08,075,08075,462,209,455688169,455638302,462,209,455688169,455638302,22709,8981,4778177055,4761813494,100,100,100,100,2.03,2.33,9.54,9.57
-80749,08,115,08115,341,215,434292834,430930186,341,215,434292834,430930186,2379,1415,1422949915,1419419181,100,100,100,100,14.33,15.19,30.52,30.36
-80750,08,087,08087,412,180,342678931,340238898,412,180,342678931,340238898,28159,11490,3350778950,3316304952,100,100,100,100,1.46,1.57,10.23,10.26
-80751,08,075,08075,18857,7113,1227563812,1216655161,18857,7113,1227563812,1216655161,22709,8981,4778177055,4761813494,100,100,100,100,83.04,79.2,25.69,25.55
-80754,08,123,08123,164,89,546525181,546417986,164,89,546525181,546417986,252825,96281,10403452916,10326898753,100,100,100,100,0.06,0.09,5.25,5.29
-80755,08,125,08125,163,75,286920865,286619179,163,75,286920865,286619179,10043,4466,6134914606,6123779829,100,100,100,100,1.62,1.68,4.68,4.68
-80757,08,121,08121,255,141,983020218,981433813,255,141,983020218,981433813,4814,2434,6536877708,6521670287,100,100,100,100,5.3,5.79,15.04,15.05
-80758,08,125,08125,3791,1664,1755729113,1754194363,3795,1666,1799628265,1798093515,10043,4466,6134914606,6123779829,99.89,99.88,97.56,97.56,37.75,37.26,28.62,28.65
-80758,31,057,31057,4,2,43899152,43899152,3795,1666,1799628265,1798093515,2008,1125,2385000400,2381954077,0.11,0.12,2.44,2.44,0.2,0.18,1.84,1.84
-80759,08,121,08121,70,30,191465779,191465779,4698,2014,1672182958,1671465169,4814,2434,6536877708,6521670287,1.49,1.49,11.45,11.45,1.45,1.23,2.93,2.94
-80759,08,125,08125,4628,1984,1480717179,1479999390,4698,2014,1672182958,1671465169,10043,4466,6134914606,6123779829,98.51,98.51,88.55,88.55,46.08,44.42,24.14,24.17
-80801,08,121,08121,154,94,401791812,401656612,154,94,401791812,401656612,4814,2434,6536877708,6521670287,100,100,100,100,3.2,3.86,6.15,6.16
-80802,08,017,08017,238,122,1037494601,1037427747,238,122,1037494601,1037427747,1836,975,4613879272,4605713068,100,100,100,100,12.96,12.51,22.49,22.52
-80804,08,073,08073,327,204,871276942,867607915,327,204,871276942,867607915,5467,2420,6698801993,6676021407,100,100,100,100,5.98,8.43,13.01,13
-80805,08,063,08063,453,193,434313189,434261386,453,193,434313189,434261386,8270,3527,5598754059,5596502129,100,100,100,100,5.48,5.47,7.76,7.76
-80807,08,063,08063,5267,1951,1763193224,1762355368,5304,1968,1888079122,1887116835,8270,3527,5598754059,5596502129,99.3,99.14,93.39,93.39,63.69,55.32,31.49,31.49
-80807,08,125,08125,37,17,124885898,124761467,5304,1968,1888079122,1887116835,10043,4466,6134914606,6123779829,0.7,0.86,6.61,6.61,0.37,0.38,2.04,2.04
-80808,08,039,08039,213,96,133899209,133880883,6351,2620,918268794,917777500,23086,8939,4794113342,4793671177,3.35,3.66,14.58,14.59,0.92,1.07,2.79,2.79
-80808,08,041,08041,6138,2524,784369585,783896617,6351,2620,918268794,917777500,622263,252852,5515501390,5508389808,96.65,96.34,85.42,85.41,0.99,1,14.22,14.23
-80809,08,041,08041,1519,877,131684955,130760637,1519,877,131684955,130760637,622263,252852,5515501390,5508389808,100,100,100,100,0.24,0.35,2.39,2.37
-80810,08,017,08017,1127,554,1381991404,1381707911,1127,554,1381991404,1381707911,1836,975,4613879272,4605713068,100,100,100,100,61.38,56.82,29.95,30
-80812,08,121,08121,275,126,358806357,357199661,275,126,358806357,357199661,4814,2434,6536877708,6521670287,100,100,100,100,5.71,5.18,5.49,5.48
-80813,08,119,08119,2055,1397,286730011,285358443,2055,1397,286730011,285358443,23350,12643,1447711629,1442767059,100,100,100,100,8.8,11.05,19.81,19.78
-80814,08,119,08119,4023,2100,255863128,255700232,4023,2100,255863128,255700232,23350,12643,1447711629,1442767059,100,100,100,100,17.23,16.61,17.67,17.72
-80815,08,063,08063,820,480,1024198113,1023124718,911,538,1364513909,1361287267,8270,3527,5598754059,5596502129,90.01,89.22,75.06,75.16,9.92,13.61,18.29,18.28
-80815,08,121,08121,91,58,340315796,338162549,911,538,1364513909,1361287267,4814,2434,6536877708,6521670287,9.99,10.78,24.94,24.84,1.89,2.38,5.21,5.19
-80816,08,093,08093,454,473,173940128,171755637,5180,3371,482422309,479752408,16206,13947,5725565015,5682034441,8.76,14.03,36.06,35.8,2.8,3.39,3.04,3.02
-80816,08,119,08119,4726,2898,308482181,307996771,5180,3371,482422309,479752408,23350,12643,1447711629,1442767059,91.24,85.97,63.94,64.2,20.24,22.92,21.31,21.35
-80817,08,041,08041,27311,9963,164082802,163753246,27311,9963,164082802,163753246,622263,252852,5515501390,5508389808,100,100,100,100,4.39,3.94,2.97,2.97
-80818,08,073,08073,327,176,684193229,681354164,343,184,752059524,748812012,5467,2420,6698801993,6676021407,95.34,95.65,90.98,90.99,5.98,7.27,10.21,10.21
-80818,08,121,08121,16,8,67866295,67457848,343,184,752059524,748812012,4814,2434,6536877708,6521670287,4.66,4.35,9.02,9.01,0.33,0.33,1.04,1.03
-80819,08,041,08041,893,687,20528192,20519897,921,720,21444911,21436616,622263,252852,5515501390,5508389808,96.96,95.42,95.73,95.72,0.14,0.27,0.37,0.37
-80819,08,119,08119,28,33,916719,916719,921,720,21444911,21436616,23350,12643,1447711629,1442767059,3.04,4.58,4.27,4.28,0.12,0.26,0.06,0.06
-80820,08,093,08093,806,822,766362685,765475676,806,822,766362685,765475676,16206,13947,5725565015,5682034441,100,100,100,100,4.97,5.89,13.38,13.47
-80821,08,017,08017,18,13,123411897,123038764,1093,614,2203828246,2195742939,1836,975,4613879272,4605713068,1.65,2.12,5.6,5.6,0.98,1.33,2.67,2.67
-80821,08,073,08073,1075,601,2080416349,2072704175,1093,614,2203828246,2195742939,5467,2420,6698801993,6676021407,98.35,97.88,94.4,94.4,19.66,24.83,31.06,31.05
-80822,08,125,08125,260,149,548410021,548121285,260,149,548410021,548121285,10043,4466,6134914606,6123779829,100,100,100,100,2.59,3.34,8.94,8.95
-80823,08,073,08073,203,126,1059418556,1055640441,203,126,1059418556,1055640441,5467,2420,6698801993,6676021407,100,100,100,100,3.71,5.21,15.82,15.81
-80824,08,125,08125,207,120,279723943,279485723,207,120,279723943,279485723,10043,4466,6134914606,6123779829,100,100,100,100,2.06,2.69,4.56,4.56
-80825,08,017,08017,422,262,1713739000,1707532579,422,262,1713739000,1707532579,1836,975,4613879272,4605713068,100,100,100,100,22.98,26.87,37.14,37.07
-80827,08,093,08093,379,687,561058918,548516572,549,801,638490146,625907653,16206,13947,5725565015,5682034441,69.03,85.77,87.87,87.64,2.34,4.93,9.8,9.65
-80827,08,119,08119,170,114,77431228,77391081,549,801,638490146,625907653,23350,12643,1447711629,1442767059,30.97,14.23,12.13,12.36,0.73,0.9,5.35,5.36
-80828,08,039,08039,185,84,754438227,754276064,3341,1210,1403154060,1400751875,23086,8939,4794113342,4793671177,5.54,6.94,53.77,53.85,0.8,0.94,15.74,15.73
-80828,08,073,08073,3156,1126,648715833,646475811,3341,1210,1403154060,1400751875,5467,2420,6698801993,6676021407,94.46,93.06,46.23,46.15,57.73,46.53,9.68,9.68
-80829,08,041,08041,5476,3038,55897538,55850545,5476,3038,55897538,55850545,622263,252852,5515501390,5508389808,100,100,100,100,0.88,1.2,1.01,1.01
-80830,08,039,08039,254,136,578348609,578336049,254,136,578348609,578336049,23086,8939,4794113342,4793671177,100,100,100,100,1.1,1.52,12.06,12.06
-80831,08,039,08039,104,41,25112502,25112502,21993,7623,492057511,492025488,23086,8939,4794113342,4793671177,0.47,0.54,5.1,5.1,0.45,0.46,0.52,0.52
-80831,08,041,08041,21889,7582,466945009,466912986,21993,7623,492057511,492025488,622263,252852,5515501390,5508389808,99.53,99.46,94.9,94.9,3.52,3,8.47,8.48
-80832,08,039,08039,185,108,451450485,451421979,666,328,619604121,619506351,23086,8939,4794113342,4793671177,27.78,32.93,72.86,72.87,0.8,1.21,9.42,9.42
-80832,08,041,08041,475,215,154931757,154899921,666,328,619604121,619506351,622263,252852,5515501390,5508389808,71.32,65.55,25,25,0.08,0.09,2.81,2.81
-80832,08,073,08073,6,5,13221879,13184451,666,328,619604121,619506351,5467,2420,6698801993,6676021407,0.9,1.52,2.13,2.13,0.11,0.21,0.2,0.2
-80833,08,039,08039,25,13,31495658,31495658,754,366,1228257888,1226432622,23086,8939,4794113342,4793671177,3.32,3.55,2.56,2.57,0.11,0.15,0.66,0.66
-80833,08,041,08041,401,196,234858010,234853977,754,366,1228257888,1226432622,622263,252852,5515501390,5508389808,53.18,53.55,19.12,19.15,0.06,0.08,4.26,4.26
-80833,08,073,08073,328,157,961904220,960082987,754,366,1228257888,1226432622,5467,2420,6698801993,6676021407,43.5,42.9,78.31,78.28,6,6.49,14.36,14.38
-80834,08,063,08063,318,213,743856350,743832685,318,213,743856350,743832685,8270,3527,5598754059,5596502129,100,100,100,100,3.85,6.04,13.29,13.29
-80835,08,039,08039,911,389,370928052,370916090,911,389,370928052,370916090,23086,8939,4794113342,4793671177,100,100,100,100,3.95,4.35,7.74,7.74
-80836,08,063,08063,1157,551,983324125,983097804,1157,551,983324125,983097804,8270,3527,5598754059,5596502129,100,100,100,100,13.99,15.62,17.56,17.57
-80840,08,041,08041,6682,721,74864021,74829013,6682,721,74864021,74829013,622263,252852,5515501390,5508389808,100,100,100,100,1.07,0.29,1.36,1.36
-80860,08,119,08119,594,565,195883026,194733317,594,565,195883026,194733317,23350,12643,1447711629,1442767059,100,100,100,100,2.54,4.47,13.53,13.5
-80861,08,063,08063,255,139,649869058,649830168,255,139,649869058,649830168,8270,3527,5598754059,5596502129,100,100,100,100,3.08,3.94,11.61,11.61
-80862,08,017,08017,31,24,357242370,356006067,31,24,357242370,356006067,1836,975,4613879272,4605713068,100,100,100,100,1.69,2.46,7.74,7.73
-80863,08,119,08119,11754,5536,322405336,320670496,11754,5536,322405336,320670496,23350,12643,1447711629,1442767059,100,100,100,100,50.34,43.79,22.27,22.23
-80864,08,041,08041,1325,614,644177990,644177990,1325,614,644177990,644177990,622263,252852,5515501390,5508389808,100,100,100,100,0.21,0.24,11.68,11.69
-80902,08,041,08041,12289,2932,37220405,37189434,12289,2932,37220405,37189434,622263,252852,5515501390,5508389808,100,100,100,100,1.97,1.16,0.67,0.68
-80903,08,041,08041,15057,7479,12531721,12526816,15057,7479,12531721,12526816,622263,252852,5515501390,5508389808,100,100,100,100,2.42,2.96,0.23,0.23
-80904,08,041,08041,19867,11028,24856516,24689363,19867,11028,24856516,24689363,622263,252852,5515501390,5508389808,100,100,100,100,3.19,4.36,0.45,0.45
-80905,08,041,08041,16254,8378,12852474,12847421,16254,8378,12852474,12847421,622263,252852,5515501390,5508389808,100,100,100,100,2.61,3.31,0.23,0.23
-80906,08,041,08041,37719,16297,121166534,120767344,37719,16297,121166534,120767344,622263,252852,5515501390,5508389808,100,100,100,100,6.06,6.45,2.2,2.19
-80907,08,041,08041,26758,13535,25652674,25602450,26758,13535,25652674,25602450,622263,252852,5515501390,5508389808,100,100,100,100,4.3,5.35,0.47,0.46
-80908,08,041,08041,13827,5129,247172862,247020111,13827,5129,247172862,247020111,622263,252852,5515501390,5508389808,100,100,100,100,2.22,2.03,4.48,4.48
-80909,08,041,08041,35739,16973,21705866,21700823,35739,16973,21705866,21700823,622263,252852,5515501390,5508389808,100,100,100,100,5.74,6.71,0.39,0.39
-80910,08,041,08041,28794,12690,15246250,15024086,28794,12690,15246250,15024086,622263,252852,5515501390,5508389808,100,100,100,100,4.63,5.02,0.28,0.27
-80911,08,041,08041,30596,11126,32432788,31216535,30596,11126,32432788,31216535,622263,252852,5515501390,5508389808,100,100,100,100,4.92,4.4,0.59,0.57
-80913,08,041,08041,2988,0,68289647,68177199,2988,0,68289647,68177199,622263,252852,5515501390,5508389808,100,0,100,100,0.48,0,1.24,1.24
-80914,08,041,08041,386,0,1835189,1831139,386,0,1835189,1831139,622263,252852,5515501390,5508389808,100,0,100,100,0.06,0,0.03,0.03
-80915,08,041,08041,19519,8066,20164136,20155304,19519,8066,20164136,20155304,622263,252852,5515501390,5508389808,100,100,100,100,3.14,3.19,0.37,0.37
-80916,08,041,08041,34640,13537,44501383,44484175,34640,13537,44501383,44484175,622263,252852,5515501390,5508389808,100,100,100,100,5.57,5.35,0.81,0.81
-80917,08,041,08041,29273,12989,16902644,16896613,29273,12989,16902644,16896613,622263,252852,5515501390,5508389808,100,100,100,100,4.7,5.14,0.31,0.31
-80918,08,041,08041,45467,18944,31032840,31026523,45467,18944,31032840,31026523,622263,252852,5515501390,5508389808,100,100,100,100,7.31,7.49,0.56,0.56
-80919,08,041,08041,27398,11461,37048336,37043007,27398,11461,37048336,37043007,622263,252852,5515501390,5508389808,100,100,100,100,4.4,4.53,0.67,0.67
-80920,08,041,08041,38569,13996,32741006,32741006,38569,13996,32741006,32741006,622263,252852,5515501390,5508389808,100,100,100,100,6.2,5.54,0.59,0.59
-80921,08,041,08041,18999,6960,227334587,225402881,18999,6960,227334587,225402881,622263,252852,5515501390,5508389808,100,100,100,100,3.05,2.75,4.12,4.09
-80922,08,041,08041,26549,9427,15460506,15460506,26549,9427,15460506,15460506,622263,252852,5515501390,5508389808,100,100,100,100,4.27,3.73,0.28,0.28
-80923,08,041,08041,26105,9573,17676162,17676162,26105,9573,17676162,17676162,622263,252852,5515501390,5508389808,100,100,100,100,4.2,3.79,0.32,0.32
-80924,08,041,08041,4534,1605,14102678,14087629,4534,1605,14102678,14087629,622263,252852,5515501390,5508389808,100,100,100,100,0.73,0.63,0.26,0.26
-80925,08,041,08041,5906,1970,60961925,60921127,5906,1970,60961925,60921127,622263,252852,5515501390,5508389808,100,100,100,100,0.95,0.78,1.11,1.11
-80926,08,041,08041,1329,587,111560201,111553592,1403,619,167547676,167541067,622263,252852,5515501390,5508389808,94.73,94.83,66.58,66.58,0.21,0.23,2.02,2.03
-80926,08,043,08043,74,32,55987475,55987475,1403,619,167547676,167541067,46824,19242,3972862738,3970627343,5.27,5.17,33.42,33.42,0.16,0.17,1.41,1.41
-80927,08,041,08041,604,241,11219940,11219940,604,241,11219940,11219940,622263,252852,5515501390,5508389808,100,100,100,100,0.1,0.1,0.2,0.2
-80928,08,041,08041,1202,489,851678483,851544467,1202,489,851678483,851544467,622263,252852,5515501390,5508389808,100,100,100,100,0.19,0.19,15.44,15.46
-80929,08,041,08041,231,112,56183888,56183888,231,112,56183888,56183888,622263,252852,5515501390,5508389808,100,100,100,100,0.04,0.04,1.02,1.02
-80930,08,041,08041,821,337,94214870,94214870,821,337,94214870,94214870,622263,252852,5515501390,5508389808,100,100,100,100,0.13,0.13,1.71,1.71
-80938,08,041,08041,17,9,8627904,8627904,17,9,8627904,8627904,622263,252852,5515501390,5508389808,100,100,100,100,0,0,0.16,0.16
-80939,08,041,08041,0,0,1304282,1304282,0,0,1304282,1304282,622263,252852,5515501390,5508389808,0,0,100,100,0,0,0.02,0.02
-80951,08,041,08041,4202,1454,12226857,12167196,4202,1454,12226857,12167196,622263,252852,5515501390,5508389808,100,100,100,100,0.68,0.58,0.22,0.22
-81001,08,101,08101,30498,13150,90838480,90353477,30498,13150,90838480,90353477,159063,69526,6210260715,6179980907,100,100,100,100,19.17,18.91,1.46,1.46
-81003,08,101,08101,14939,6401,21490762,20788936,14939,6401,21490762,20788936,159063,69526,6210260715,6179980907,100,100,100,100,9.39,9.21,0.35,0.34
-81004,08,101,08101,25540,12266,425696139,421926955,25540,12266,425696139,421926955,159063,69526,6210260715,6179980907,100,100,100,100,16.06,17.64,6.85,6.83
-81005,08,101,08101,29975,13138,603186368,596341566,29975,13138,603186368,596341566,159063,69526,6210260715,6179980907,100,100,100,100,18.84,18.9,9.71,9.65
-81006,08,101,08101,11513,4789,149121964,146693161,11513,4789,149121964,146693161,159063,69526,6210260715,6179980907,100,100,100,100,7.24,6.89,2.4,2.37
-81007,08,101,08101,29709,11381,388331998,383269607,29709,11381,388331998,383269607,159063,69526,6210260715,6179980907,100,100,100,100,18.68,16.37,6.25,6.2
-81008,08,041,08041,69,41,33003010,32964356,9641,4529,347958255,347401499,622263,252852,5515501390,5508389808,0.72,0.91,9.48,9.49,0.01,0.02,0.6,0.6
-81008,08,101,08101,9572,4488,314955245,314437143,9641,4529,347958255,347401499,159063,69526,6210260715,6179980907,99.28,99.09,90.52,90.51,6.02,6.46,5.07,5.09
-81019,08,101,08101,1690,731,25981524,25710772,1690,731,25981524,25710772,159063,69526,6210260715,6179980907,100,100,100,100,1.06,1.05,0.42,0.42
-81020,08,071,08071,954,727,1502170969,1502014003,954,727,1502170969,1502014003,15507,8217,12368092089,12361162110,100,100,100,100,6.15,8.85,12.15,12.15
-81021,08,061,08061,14,16,575849526,565815061,14,16,575849526,565815061,1398,805,4625528512,4578495505,100,100,100,100,1,1.99,12.45,12.36
-81022,08,101,08101,1560,659,1106764815,1103580254,1560,659,1106764815,1103580254,159063,69526,6210260715,6179980907,100,100,100,100,0.98,0.95,17.82,17.86
-81023,08,101,08101,1236,829,326692717,326417799,1236,829,326692717,326417799,159063,69526,6210260715,6179980907,100,100,100,100,0.78,1.19,5.26,5.28
-81024,08,071,08071,134,98,108676155,108676155,134,98,108676155,108676155,15507,8217,12368092089,12361162110,100,100,100,100,0.86,1.19,0.88,0.88
-81025,08,101,08101,1071,577,1424510323,1420589018,1071,577,1424510323,1420589018,159063,69526,6210260715,6179980907,100,100,100,100,0.67,0.83,22.94,22.99
-81027,08,071,08071,125,90,1603772188,1603772188,125,90,1603772188,1603772188,15507,8217,12368092089,12361162110,100,100,100,100,0.81,1.1,12.97,12.97
-81029,08,009,08009,326,224,1421129942,1420920618,326,224,1421129942,1420920618,3788,2248,6623475735,6617333541,100,100,100,100,8.61,9.96,21.46,21.47
-81030,08,089,08089,193,88,1151335,943780,193,88,1151335,943780,18831,8969,3288517557,3268465106,100,100,100,100,1.02,0.98,0.04,0.03
-81033,08,025,08025,155,79,837885,837885,155,79,837885,837885,5823,1559,2072841731,2039411297,100,100,100,100,2.66,5.07,0.04,0.04
-81036,08,061,08061,962,551,1978127407,1947551214,962,551,1978127407,1947551214,1398,805,4625528512,4578495505,100,100,100,100,68.81,68.45,42.77,42.54
-81038,08,011,08011,486,0,299771,299771,486,0,299771,299771,6499,2242,3991386148,3918292377,100,0,100,100,7.48,0,0.01,0.01
-81039,08,025,08025,47,27,9119098,8854572,1856,936,1531429761,1528433390,5823,1559,2072841731,2039411297,2.53,2.88,0.6,0.58,0.81,1.73,0.44,0.43
-81039,08,089,08089,1621,812,659608687,658702599,1856,936,1531429761,1528433390,18831,8969,3288517557,3268465106,87.34,86.75,43.07,43.1,8.61,9.05,20.06,20.15
-81039,08,101,08101,188,97,862701976,860876219,1856,936,1531429761,1528433390,159063,69526,6210260715,6179980907,10.13,10.36,56.33,56.32,0.12,0.14,13.89,13.93
-81040,08,055,08055,536,524,1343241347,1342814744,536,524,1343241347,1342814744,6711,5075,4126465013,4120672901,100,100,100,100,7.99,10.33,32.55,32.59
-81041,08,099,08099,760,393,1190576301,1187727529,760,393,1190576301,1187727529,12551,5942,4258774756,4243422095,100,100,100,100,6.06,6.61,27.96,27.99
-81043,08,099,08099,61,35,3678185,3678185,61,35,3678185,3678185,12551,5942,4258774756,4243422095,100,100,100,100,0.49,0.59,0.09,0.09
-81044,08,011,08011,224,134,859889048,844747403,224,134,859889048,844747403,6499,2242,3991386148,3918292377,100,100,100,100,3.45,5.98,21.54,21.56
-81045,08,061,08061,88,56,594205316,591324165,88,56,594205316,591324165,1398,805,4625528512,4578495505,100,100,100,100,6.29,6.96,12.85,12.92
-81047,08,099,08099,1559,773,1553243127,1547145131,1559,773,1553243127,1547145131,12551,5942,4258774756,4243422095,100,100,100,100,12.42,13.01,36.47,36.46
-81049,08,071,08071,289,194,3329885300,3329882248,289,194,3329885300,3329882248,15507,8217,12368092089,12361162110,100,100,100,100,1.86,2.36,26.92,26.94
-81050,08,011,08011,16,5,124954019,120871424,9894,4680,1405629063,1391277232,6499,2242,3991386148,3918292377,0.16,0.11,8.89,8.69,0.25,0.22,3.13,3.08
-81050,08,089,08089,9878,4675,1280675044,1270405808,9894,4680,1405629063,1391277232,18831,8969,3288517557,3268465106,99.84,99.89,91.11,91.31,52.46,52.12,38.94,38.87
-81052,08,011,08011,62,26,415847173,414227960,9534,4448,1727044646,1719030457,6499,2242,3991386148,3918292377,0.65,0.58,24.08,24.1,0.95,1.16,10.42,10.57
-81052,08,099,08099,9472,4422,1311197473,1304802497,9534,4448,1727044646,1719030457,12551,5942,4258774756,4243422095,99.35,99.42,75.92,75.9,75.47,74.42,30.79,30.75
-81054,08,009,08009,17,8,183662925,183530218,5134,1809,2521669932,2471852745,3788,2248,6623475735,6617333541,0.33,0.44,7.28,7.42,0.45,0.36,2.77,2.77
-81054,08,011,08011,5117,1801,2338007007,2288322527,5134,1809,2521669932,2471852745,6499,2242,3991386148,3918292377,99.67,99.56,92.72,92.58,78.74,80.33,58.58,58.4
-81055,08,055,08055,1339,1679,666772885,666199765,1339,1679,666772885,666199765,6711,5075,4126465013,4120672901,100,100,100,100,19.95,33.08,16.16,16.17
-81057,08,011,08011,418,193,137946055,135618862,418,193,137946055,135618862,6499,2242,3991386148,3918292377,100,100,100,100,6.43,8.61,3.46,3.46
-81058,08,025,08025,83,35,32712563,31230218,990,475,137242219,134907240,5823,1559,2072841731,2039411297,8.38,7.37,23.84,23.15,1.43,2.25,1.58,1.53
-81058,08,089,08089,907,440,104529656,103677022,990,475,137242219,134907240,18831,8969,3288517557,3268465106,91.62,92.63,76.16,76.85,4.82,4.91,3.18,3.17
-81059,08,071,08071,621,92,2371473542,2371395312,651,112,2848753769,2848329378,15507,8217,12368092089,12361162110,95.39,82.14,83.25,83.26,4,1.12,19.17,19.18
-81059,08,089,08089,30,20,477280227,476934066,651,112,2848753769,2848329378,18831,8969,3288517557,3268465106,4.61,17.86,16.75,16.74,0.16,0.22,14.51,14.59
-81062,08,025,08025,2439,374,619416764,618609851,2439,374,619416764,618609851,5823,1559,2072841731,2039411297,100,100,100,100,41.89,23.99,29.88,30.33
-81063,08,025,08025,2681,798,700395202,687832570,2726,823,1080050187,1066804033,5823,1559,2072841731,2039411297,98.35,96.96,64.85,64.48,46.04,51.19,33.79,33.73
-81063,08,073,08073,45,25,379654985,378971463,2726,823,1080050187,1066804033,5467,2420,6698801993,6676021407,1.65,3.04,35.15,35.52,0.82,1.03,5.67,5.68
-81064,08,009,08009,260,166,1071228302,1071192234,282,178,1251367277,1251331209,3788,2248,6623475735,6617333541,92.2,93.26,85.6,85.6,6.86,7.38,16.17,16.19
-81064,08,071,08071,22,12,180138975,180138975,282,178,1251367277,1251331209,15507,8217,12368092089,12361162110,7.8,6.74,14.4,14.4,0.14,0.15,1.46,1.46
-81067,08,089,08089,5670,2675,764079683,756622138,5670,2675,764079683,756622138,18831,8969,3288517557,3268465106,100,100,100,100,30.11,29.82,23.23,23.15
-81069,08,027,08027,82,287,112371487,112228809,1888,1452,708677517,708101062,4255,3956,1916395816,1913031045,4.34,19.77,15.86,15.85,1.93,7.25,5.86,5.87
-81069,08,055,08055,234,145,319587122,319464830,1888,1452,708677517,708101062,6711,5075,4126465013,4120672901,12.39,9.99,45.1,45.12,3.49,2.86,7.74,7.75
-81069,08,101,08101,1572,1020,276718908,276407423,1888,1452,708677517,708101062,159063,69526,6210260715,6179980907,83.26,70.25,39.05,39.04,0.99,1.47,4.46,4.47
-81071,08,061,08061,334,182,1477346263,1473805065,334,182,1477346263,1473805065,1398,805,4625528512,4578495505,100,100,100,100,23.89,22.61,31.94,32.19
-81073,08,009,08009,1932,1085,1658006247,1657761689,1932,1085,1658006247,1657761689,3788,2248,6623475735,6617333541,100,100,100,100,51,48.27,25.03,25.05
-81076,08,025,08025,418,246,710360219,692046201,418,246,710360219,692046201,5823,1559,2072841731,2039411297,100,100,100,100,7.18,15.78,34.27,33.93
-81077,08,089,08089,532,259,1192925,1179693,532,259,1192925,1179693,18831,8969,3288517557,3268465106,100,100,100,100,2.83,2.89,0.04,0.04
-81081,08,071,08071,70,46,598716003,598538039,70,46,598716003,598538039,15507,8217,12368092089,12361162110,100,100,100,100,0.45,0.56,4.84,4.84
-81082,08,071,08071,12480,6259,1553494930,1547734954,12480,6259,1553494930,1547734954,15507,8217,12368092089,12361162110,100,100,100,100,80.48,76.17,12.56,12.52
-81084,08,009,08009,127,89,533400736,528379331,137,98,628897089,623875684,3788,2248,6623475735,6617333541,92.7,90.82,84.82,84.69,3.35,3.96,8.05,7.98
-81084,08,099,08099,10,9,95496353,95496353,137,98,628897089,623875684,12551,5942,4258774756,4243422095,7.3,9.18,15.18,15.31,0.08,0.15,2.24,2.25
-81087,08,009,08009,145,80,104013431,104013431,145,80,104013431,104013431,3788,2248,6623475735,6617333541,100,100,100,100,3.83,3.56,1.57,1.57
-81089,08,055,08055,4602,2727,1796863659,1792193562,4602,2727,1796863659,1792193562,6711,5075,4126465013,4120672901,100,100,100,100,68.57,53.73,43.54,43.49
-81090,08,009,08009,981,596,1652034152,1651536020,981,596,1652034152,1651536020,3788,2248,6623475735,6617333541,100,100,100,100,25.9,26.51,24.94,24.96
-81091,08,071,08071,812,699,1119764027,1119010236,812,699,1119764027,1119010236,15507,8217,12368092089,12361162110,100,100,100,100,5.24,8.51,9.05,9.05
-81092,08,011,08011,176,83,114443075,114204430,865,393,219026392,218776830,6499,2242,3991386148,3918292377,20.35,21.12,52.25,52.2,2.71,3.7,2.87,2.91
-81092,08,099,08099,689,310,104583317,104572400,865,393,219026392,218776830,12551,5942,4258774756,4243422095,79.65,78.88,47.75,47.8,5.49,5.22,2.46,2.46
-81101,08,003,08003,14565,6091,1019527360,1017953414,14675,6133,1061871854,1060256705,15445,6554,1873444624,1871636898,99.25,99.32,96.01,96.01,94.3,92.94,54.42,54.39
-81101,08,021,08021,110,42,42344494,42303291,14675,6133,1061871854,1060256705,8256,4286,3343561394,3334326097,0.75,0.68,3.99,3.99,1.33,0.98,1.27,1.27
-81120,08,021,08021,2267,1735,2267173202,2258691910,2267,1735,2267173202,2258691910,8256,4286,3343561394,3334326097,100,100,100,100,27.46,40.48,67.81,67.74
-81121,08,007,08007,270,214,121234065,121234065,270,214,121234065,121234065,12084,8762,3510765428,3496937899,100,100,100,100,2.23,2.44,3.45,3.47
-81122,08,007,08007,140,91,573299604,573299604,8228,4430,1325337935,1313962859,12084,8762,3510765428,3496937899,1.7,2.05,43.26,43.63,1.16,1.04,16.33,16.39
-81122,08,067,08067,8088,4339,752038331,740663255,8228,4430,1325337935,1313962859,51334,25860,4402222802,4382462547,98.3,97.95,56.74,56.37,15.76,16.78,17.08,16.9
-81123,08,023,08023,805,453,682331975,679319285,805,453,682331975,679319285,3524,2613,3186618883,3177789979,100,100,100,100,22.84,17.34,21.41,21.38
-81124,08,021,08021,303,128,40567544,40567544,303,128,40567544,40567544,8256,4286,3343561394,3334326097,100,100,100,100,3.67,2.99,1.21,1.22
-81125,08,003,08003,46,18,15750099,15750099,3447,1480,699443177,697618476,15445,6554,1873444624,1871636898,1.33,1.22,2.25,2.26,0.3,0.27,0.84,0.84
-81125,08,105,08105,624,273,112249055,112249055,3447,1480,699443177,697618476,11982,6630,2362943876,2361959921,18.1,18.45,16.05,16.09,5.21,4.12,4.75,4.75
-81125,08,109,08109,2777,1189,571444023,569619322,3447,1480,699443177,697618476,6108,3843,8210895330,8206440775,80.56,80.34,81.7,81.65,45.46,30.94,6.96,6.94
-81126,08,023,08023,276,176,50441749,50441749,276,176,50441749,50441749,3524,2613,3186618883,3177789979,100,100,100,100,7.83,6.74,1.58,1.59
-81128,08,007,08007,115,156,473626680,473327356,115,156,473626680,473327356,12084,8762,3510765428,3496937899,100,100,100,100,0.95,1.78,13.49,13.54
-81129,08,021,08021,156,87,10953267,10953267,156,87,10953267,10953267,8256,4286,3343561394,3334326097,100,100,100,100,1.89,2.03,0.33,0.33
-81130,08,053,08053,11,283,467944270,458736330,671,1350,2464551465,2450315076,843,1388,2908992395,2893667726,1.64,20.96,18.99,18.72,1.3,20.39,16.09,15.85
-81130,08,079,08079,660,1067,1996607195,1991578746,671,1350,2464551465,2450315076,712,1201,2273187759,2267965576,98.36,79.04,81.01,81.28,92.7,88.84,87.83,87.81
-81131,08,109,08109,1189,979,813070855,812454734,1189,979,813070855,812454734,6108,3843,8210895330,8206440775,100,100,100,100,19.47,25.47,9.9,9.9
-81132,08,105,08105,2997,1648,1004649540,1004527365,3231,1830,1751971994,1751761927,11982,6630,2362943876,2361959921,92.76,90.05,57.34,57.34,25.01,24.86,42.52,42.53
-81132,08,109,08109,234,182,747322454,747234562,3231,1830,1751971994,1751761927,6108,3843,8210895330,8206440775,7.24,9.95,42.66,42.66,3.83,4.74,9.1,9.11
-81133,08,023,08023,840,789,966593508,965839956,840,789,966593508,965839956,3524,2613,3186618883,3177789979,100,100,100,100,23.84,30.2,30.33,30.39
-81136,08,003,08003,222,109,202589120,202428635,261,126,241983752,241823267,15445,6554,1873444624,1871636898,85.06,86.51,83.72,83.71,1.44,1.66,10.81,10.82
-81136,08,109,08109,39,17,39394632,39394632,261,126,241983752,241823267,6108,3843,8210895330,8206440775,14.94,13.49,16.28,16.29,0.64,0.44,0.48,0.48
-81137,08,007,08007,145,82,19043616,18735880,5225,2272,675259239,658449106,12084,8762,3510765428,3496937899,2.78,3.61,2.82,2.85,1.2,0.94,0.54,0.54
-81137,08,067,08067,4924,2118,524951131,524785762,5225,2272,675259239,658449106,51334,25860,4402222802,4382462547,94.24,93.22,77.74,79.7,9.59,8.19,11.92,11.97
-81137,35,045,35045,156,72,131264492,114927464,5225,2272,675259239,658449106,130044,49341,14344450215,14278776370,2.99,3.17,19.44,17.45,0.12,0.15,0.92,0.8
-81138,08,023,08023,56,47,59657687,59045662,56,47,59657687,59045662,3524,2613,3186618883,3177789979,100,100,100,100,1.59,1.8,1.87,1.86
-81140,08,021,08021,2341,1010,570902577,570821695,2341,1010,570902577,570821695,8256,4286,3343561394,3334326097,100,100,100,100,28.36,23.57,17.07,17.12
-81141,08,021,08021,1318,572,111589020,111557056,1318,572,111589020,111557056,8256,4286,3343561394,3334326097,100,100,100,100,15.96,13.35,3.34,3.35
-81143,08,109,08109,672,433,853737012,853385812,672,433,853737012,853385812,6108,3843,8210895330,8206440775,100,100,100,100,11,11.27,10.4,10.4
-81144,08,003,08003,81,41,50323063,50323063,7344,3170,733148287,732600541,15445,6554,1873444624,1871636898,1.1,1.29,6.86,6.87,0.52,0.63,2.69,2.69
-81144,08,105,08105,7263,3129,682825224,682277478,7344,3170,733148287,732600541,11982,6630,2362943876,2361959921,98.9,98.71,93.14,93.13,60.62,47.19,28.9,28.89
-81146,08,003,08003,531,295,585254982,585181687,531,295,585254982,585181687,15445,6554,1873444624,1871636898,100,100,100,100,3.44,4.5,31.24,31.27
-81147,08,007,08007,11414,8219,2323561463,2310340994,11446,8323,3512152016,3494964986,12084,8762,3510765428,3496937899,99.72,98.75,66.16,66.1,94.46,93.8,66.18,66.07
-81147,08,053,08053,30,97,1040704976,1036907431,11446,8323,3512152016,3494964986,843,1388,2908992395,2893667726,0.26,1.17,29.63,29.67,3.56,6.99,35.78,35.83
-81147,08,079,08079,2,7,147885577,147716561,11446,8323,3512152016,3494964986,712,1201,2273187759,2267965576,0.02,0.08,4.21,4.23,0.28,0.58,6.51,6.51
-81148,08,021,08021,404,156,604115,604115,404,156,604115,604115,8256,4286,3343561394,3334326097,100,100,100,100,4.89,3.64,0.02,0.02
-81149,08,109,08109,838,619,2162985088,2162489048,838,619,2162985088,2162489048,6108,3843,8210895330,8206440775,100,100,100,100,13.72,16.11,26.34,26.35
-81151,08,021,08021,1357,556,299427175,298827219,1470,656,581186468,580586512,8256,4286,3343561394,3334326097,92.31,84.76,51.52,51.47,16.44,12.97,8.96,8.96
-81151,08,023,08023,113,100,281759293,281759293,1470,656,581186468,580586512,3524,2613,3186618883,3177789979,7.69,15.24,48.48,48.53,3.21,3.83,8.84,8.87
-81152,08,023,08023,1434,1048,1145834671,1141384034,1434,1048,1145834671,1141384034,3524,2613,3186618883,3177789979,100,100,100,100,40.69,40.11,35.96,35.92
-81154,08,079,08079,50,127,128694987,128670269,1148,1707,691915044,691576292,712,1201,2273187759,2267965576,4.36,7.44,18.6,18.61,7.02,10.57,5.66,5.67
-81154,08,105,08105,1098,1580,563220057,562906023,1148,1707,691915044,691576292,11982,6630,2362943876,2361959921,95.64,92.56,81.4,81.39,9.16,23.83,23.84,23.83
-81155,08,109,08109,225,251,820423766,820395519,225,251,820423766,820395519,6108,3843,8210895330,8206440775,100,100,100,100,3.68,6.53,9.99,10
-81201,08,015,08015,8549,4680,924075153,923520685,8645,4742,1155110462,1154555994,17809,10020,2628715724,2624702242,98.89,98.69,80,79.99,48,46.71,35.15,35.19
-81201,08,043,08043,96,62,231035309,231035309,8645,4742,1155110462,1154555994,46824,19242,3972862738,3970627343,1.11,1.31,20,20.01,0.21,0.32,5.82,5.82
-81210,08,051,08051,275,672,1343777321,1334454049,275,672,1343777321,1334454049,15324,11412,8442400986,8389228965,100,100,100,100,1.79,5.89,15.92,15.91
-81211,08,015,08015,7623,3788,1197464689,1194832475,7623,3788,1197464689,1194832475,17809,10020,2628715724,2624702242,100,100,100,100,42.8,37.8,45.55,45.52
-81212,08,043,08043,29742,11914,1599488919,1599157642,29742,11914,1599488919,1599157642,46824,19242,3972862738,3970627343,100,100,100,100,63.52,61.92,40.26,40.27
-81220,08,051,08051,97,423,468348185,466802263,141,461,623781316,621397209,15324,11412,8442400986,8389228965,68.79,91.76,75.08,75.12,0.63,3.71,5.55,5.56
-81220,08,085,08085,44,38,155433131,154594946,141,461,623781316,621397209,41276,18250,5808296498,5803373218,31.21,8.24,24.92,24.88,0.11,0.21,2.68,2.66
-81221,08,043,08043,310,145,3881480,3881480,310,145,3881480,3881480,46824,19242,3972862738,3970627343,100,100,100,100,0.66,0.75,0.1,0.1
-81222,08,043,08043,263,184,79983956,79972395,263,184,79983956,79972395,46824,19242,3972862738,3970627343,100,100,100,100,0.56,0.96,2.01,2.01
-81223,08,043,08043,1639,1477,1033024201,1032998402,1639,1477,1033024201,1032998402,46824,19242,3972862738,3970627343,100,100,100,100,3.5,7.68,26,26.02
-81224,08,051,08051,3446,2376,404396458,403883203,3446,2376,404396458,403883203,15324,11412,8442400986,8389228965,100,100,100,100,22.49,20.82,4.79,4.81
-81225,08,051,08051,952,1690,212785941,212524467,952,1690,212785941,212524467,15324,11412,8442400986,8389228965,100,100,100,100,6.21,14.81,2.52,2.53
-81226,08,043,08043,9066,2693,213750293,212669908,9066,2693,213750293,212669908,46824,19242,3972862738,3970627343,100,100,100,100,19.36,14,5.38,5.36
-81227,08,015,08015,10,53,925408,925408,10,53,925408,925408,17809,10020,2628715724,2624702242,100,100,100,100,0.06,0.53,0.04,0.04
-81230,08,051,08051,8987,4924,2760429596,2721879280,9075,5030,4664308113,4624728595,15324,11412,8442400986,8389228965,99.03,97.89,59.18,58.85,58.65,43.15,32.7,32.44
-81230,08,109,08109,88,106,1903878517,1902849315,9075,5030,4664308113,4624728595,6108,3843,8210895330,8206440775,0.97,2.11,40.82,41.15,1.44,2.76,23.19,23.19
-81231,08,051,08051,715,5,162539,162539,715,5,162539,162539,15324,11412,8442400986,8389228965,100,100,100,100,4.67,0.04,0,0
-81232,08,043,08043,23,17,4950753,4950753,23,17,4950753,4950753,46824,19242,3972862738,3970627343,100,100,100,100,0.05,0.09,0.12,0.12
-81233,08,043,08043,823,591,228221523,228115988,823,591,228221523,228115988,46824,19242,3972862738,3970627343,100,100,100,100,1.76,3.07,5.74,5.75
-81235,08,053,08053,802,1008,1400343149,1398023965,802,1008,1400343149,1398023965,843,1388,2908992395,2893667726,100,100,100,100,95.14,72.62,48.14,48.31
-81236,08,015,08015,1017,1208,500296760,499469960,1017,1208,500296760,499469960,17809,10020,2628715724,2624702242,100,100,100,100,5.71,12.06,19.03,19.03
-81237,08,051,08051,82,110,90228242,90228242,82,110,90228242,90228242,15324,11412,8442400986,8389228965,100,100,100,100,0.54,0.96,1.07,1.08
-81239,08,051,08051,79,64,132545970,132545970,79,64,132545970,132545970,15324,11412,8442400986,8389228965,100,100,100,100,0.52,0.56,1.57,1.58
-81240,08,043,08043,4323,1905,385671115,385174348,4323,1905,385671115,385174348,46824,19242,3972862738,3970627343,100,100,100,100,9.23,9.9,9.71,9.7
-81241,08,051,08051,78,367,52678686,52675608,78,367,52678686,52675608,15324,11412,8442400986,8389228965,100,100,100,100,0.51,3.22,0.62,0.63
-81242,08,015,08015,606,286,5740092,5740092,606,286,5740092,5740092,17809,10020,2628715724,2624702242,100,100,100,100,3.4,2.85,0.22,0.22
-81243,08,051,08051,93,196,866582388,866028863,93,196,866582388,866028863,15324,11412,8442400986,8389228965,100,100,100,100,0.61,1.72,10.26,10.32
-81244,08,043,08043,398,183,9549354,9549354,398,183,9549354,9549354,46824,19242,3972862738,3970627343,100,100,100,100,0.85,0.95,0.24,0.24
-81248,08,051,08051,2,90,368348229,368338603,48,157,666987212,666956434,15324,11412,8442400986,8389228965,4.17,57.32,55.23,55.23,0.01,0.79,4.36,4.39
-81248,08,109,08109,46,67,298638983,298617831,48,157,666987212,666956434,6108,3843,8210895330,8206440775,95.83,42.68,44.77,44.77,0.75,1.74,3.64,3.64
-81251,08,065,08065,220,301,236483551,227091744,220,301,236483551,227091744,7310,4271,994318625,976194289,100,100,100,100,3.01,7.05,23.78,23.26
-81252,08,027,08027,3830,3438,1597907024,1594798009,3830,3438,1597907024,1594798009,4255,3956,1916395816,1913031045,100,100,100,100,90.01,86.91,83.38,83.36
-81253,08,027,08027,343,231,206117305,206004227,410,270,333435665,333138516,4255,3956,1916395816,1913031045,83.66,85.56,61.82,61.84,8.06,5.84,10.76,10.77
-81253,08,043,08043,67,39,127318360,127134289,410,270,333435665,333138516,46824,19242,3972862738,3970627343,16.34,14.44,38.18,38.16,0.14,0.2,3.2,3.2
-81301,08,067,08067,28268,14901,1732731869,1725427303,28308,15079,1943195760,1935788731,51334,25860,4402222802,4382462547,99.86,98.82,89.17,89.13,55.07,57.62,39.36,39.37
-81301,08,111,08111,40,178,210463891,210361428,28308,15079,1943195760,1935788731,699,756,1005624090,1003588157,0.14,1.18,10.83,10.87,5.72,23.54,20.93,20.96
-81303,08,067,08067,7743,3372,559468599,558768774,7743,3372,559468599,558768774,51334,25860,4402222802,4382462547,100,100,100,100,15.08,13.04,12.71,12.75
-81320,08,033,08033,388,228,486311725,486262470,388,228,486311725,486262470,2064,1468,2766366287,2763650142,100,100,100,100,18.8,15.53,17.58,17.59
-81321,08,083,08083,14459,6486,1092117944,1090965459,14459,6486,1092117944,1090965459,25535,12094,5283967730,5256450876,100,100,100,100,56.62,53.63,20.67,20.75
-81323,08,033,08033,49,272,888375588,885913996,4409,2581,1875543868,1853037007,2064,1468,2766366287,2763650142,1.11,10.54,47.37,47.81,2.37,18.53,32.11,32.06
-81323,08,083,08083,4360,2309,987168280,967123011,4409,2581,1875543868,1853037007,25535,12094,5283967730,5256450876,98.89,89.46,52.63,52.19,17.07,19.09,18.68,18.4
-81324,08,033,08033,1340,688,571095850,571085082,1387,718,1057536199,1057525431,2064,1468,2766366287,2763650142,96.61,95.82,54,54,64.92,46.87,20.64,20.66
-81324,49,037,49037,47,30,486440349,486440349,1387,718,1057536199,1057525431,14746,5734,20546771694,20253675635,3.39,4.18,46,46,0.32,0.52,2.37,2.4
-81325,08,033,08033,5,61,663856228,663719512,121,139,1476175352,1476038636,2064,1468,2766366287,2763650142,4.13,43.88,44.97,44.97,0.24,4.16,24,24.02
-81325,08,113,08113,116,78,812319124,812319124,121,139,1476175352,1476038636,7359,6638,3337522150,3332308274,95.87,56.12,55.03,55.03,1.58,1.18,24.34,24.38
-81326,08,067,08067,2193,1048,647944717,647729298,2193,1048,647944717,647729298,51334,25860,4402222802,4382462547,100,100,100,100,4.27,4.05,14.72,14.78
-81327,08,083,08083,639,296,91213342,89322982,639,296,91213342,89322982,25535,12094,5283967730,5256450876,100,100,100,100,2.5,2.45,1.73,1.7
-81328,08,067,08067,118,82,185088155,185088155,4069,2206,949755885,945915737,51334,25860,4402222802,4382462547,2.9,3.72,19.49,19.57,0.23,0.32,4.2,4.22
-81328,08,083,08083,3951,2124,764667730,760827582,4069,2206,949755885,945915737,25535,12094,5283967730,5256450876,97.1,96.28,80.51,80.43,15.47,17.56,14.47,14.47
-81330,08,083,08083,26,58,169150364,169150364,26,58,169150364,169150364,25535,12094,5283967730,5256450876,100,100,100,100,0.1,0.48,3.2,3.22
-81331,08,083,08083,476,224,631766553,631755235,476,224,631766553,631755235,25535,12094,5283967730,5256450876,100,100,100,100,1.86,1.85,11.96,12.02
-81332,08,033,08033,282,219,156726896,156669082,282,219,156726896,156669082,2064,1468,2766366287,2763650142,100,100,100,100,13.66,14.92,5.67,5.67
-81334,08,083,08083,1493,533,920594334,920578766,1493,533,920594334,920578766,25535,12094,5283967730,5256450876,100,100,100,100,5.85,4.41,17.42,17.51
-81335,08,083,08083,131,64,70234634,70234634,131,64,70234634,70234634,25535,12094,5283967730,5256450876,100,100,100,100,0.51,0.53,1.33,1.34
-81401,08,085,08085,22437,10038,605321619,604880984,22437,10038,605321619,604880984,41276,18250,5808296498,5803373218,100,100,100,100,54.36,55,10.42,10.42
-81403,08,085,08085,9898,4267,995759844,995576626,10534,4671,1431075378,1430892160,41276,18250,5808296498,5803373218,93.96,91.35,69.58,69.58,23.98,23.38,17.14,17.16
-81403,08,091,08091,636,404,435315534,435315534,10534,4671,1431075378,1430892160,4436,3083,1404318452,1402718909,6.04,8.65,30.42,30.42,14.34,13.1,31,31.03
-81410,08,029,08029,1655,771,60116124,59192154,1655,771,60116124,59192154,30952,14572,2974857654,2957896781,100,100,100,100,5.35,5.29,2.02,2
-81411,08,085,08085,55,39,257180650,257180650,55,39,257180650,257180650,41276,18250,5808296498,5803373218,100,100,100,100,0.13,0.21,4.43,4.43
-81413,08,029,08029,5243,3008,551723443,545095357,5243,3008,551723443,545095357,30952,14572,2974857654,2957896781,100,100,100,100,16.94,20.64,18.55,18.43
-81415,08,029,08029,1389,712,287924139,286419658,1612,876,726098719,722142283,30952,14572,2974857654,2957896781,86.17,81.28,39.65,39.66,4.49,4.89,9.68,9.68
-81415,08,085,08085,223,164,438174580,435722625,1612,876,726098719,722142283,41276,18250,5808296498,5803373218,13.83,18.72,60.35,60.34,0.54,0.9,7.54,7.51
-81416,08,029,08029,13367,5467,843170840,838079425,13874,5666,877308251,872216836,30952,14572,2974857654,2957896781,96.35,96.49,96.11,96.09,43.19,37.52,28.34,28.33
-81416,08,085,08085,507,199,34137411,34137411,13874,5666,877308251,872216836,41276,18250,5808296498,5803373218,3.65,3.51,3.89,3.91,1.23,1.09,0.59,0.59
-81418,08,029,08029,1714,772,53420729,53420239,1714,772,53420729,53420239,30952,14572,2974857654,2957896781,100,100,100,100,5.54,5.3,1.8,1.81
-81419,08,029,08029,3883,1903,527050215,525401267,3883,1903,527050215,525401267,30952,14572,2974857654,2957896781,100,100,100,100,12.55,13.06,17.72,17.76
-81422,08,085,08085,692,403,694402399,694402399,692,403,694402399,694402399,41276,18250,5808296498,5803373218,100,100,100,100,1.68,2.21,11.96,11.97
-81423,08,085,08085,135,75,157491640,157477905,1480,803,1280955840,1277114520,41276,18250,5808296498,5803373218,9.12,9.34,12.29,12.33,0.33,0.41,2.71,2.71
-81423,08,113,08113,1345,728,1123464200,1119636615,1480,803,1280955840,1277114520,7359,6638,3337522150,3332308274,90.88,90.66,87.71,87.67,18.28,10.97,33.66,33.6
-81424,08,085,08085,1239,656,795514758,795436848,1239,656,795514758,795436848,41276,18250,5808296498,5803373218,100,100,100,100,3,3.59,13.7,13.71
-81425,08,085,08085,5424,2035,993479021,993028776,5424,2035,993479021,993028776,41276,18250,5808296498,5803373218,100,100,100,100,13.14,11.15,17.1,17.11
-81426,08,113,08113,181,83,43825179,43825179,181,83,43825179,43825179,7359,6638,3337522150,3332308274,100,100,100,100,2.46,1.25,1.31,1.32
-81427,08,091,08091,1124,923,265781160,265645111,1124,923,265781160,265645111,4436,3083,1404318452,1402718909,100,100,100,100,25.34,29.94,18.93,18.94
-81428,08,029,08029,3701,1907,569263619,568100136,3701,1907,569263619,568100136,30952,14572,2974857654,2957896781,100,100,100,100,11.96,13.09,19.14,19.21
-81429,08,085,08085,181,99,593395022,592953528,181,99,593395022,592953528,41276,18250,5808296498,5803373218,100,100,100,100,0.44,0.54,10.22,10.22
-81430,08,113,08113,727,647,659210768,658937192,727,647,659210768,658937192,7359,6638,3337522150,3332308274,100,100,100,100,9.88,9.75,19.75,19.77
-81431,08,085,08085,441,237,88006423,87980520,460,249,433567813,433541910,41276,18250,5808296498,5803373218,95.87,95.18,20.3,20.29,1.07,1.3,1.52,1.52
-81431,08,113,08113,19,12,345561390,345561390,460,249,433567813,433541910,7359,6638,3337522150,3332308274,4.13,4.82,79.7,79.71,0.26,0.18,10.35,10.37
-81432,08,091,08091,2676,1756,703221758,701758264,2682,1761,708603112,707139618,4436,3083,1404318452,1402718909,99.78,99.72,99.24,99.24,60.32,56.96,50.08,50.03
-81432,08,113,08113,6,5,5381354,5381354,2682,1761,708603112,707139618,7359,6638,3337522150,3332308274,0.22,0.28,0.76,0.76,0.08,0.08,0.16,0.16
-81433,08,111,08111,659,578,795160199,793226729,659,578,795160199,793226729,699,756,1005624090,1003588157,100,100,100,100,94.28,76.46,79.07,79.04
-81434,08,029,08029,0,32,82188545,82188545,158,197,1552182641,1550103496,30952,14572,2974857654,2957896781,0,16.24,5.3,5.3,0,0.22,2.76,2.78
-81434,08,051,08051,158,165,1469994096,1467914951,158,197,1552182641,1550103496,15324,11412,8442400986,8389228965,100,83.76,94.7,94.7,1.03,1.45,17.41,17.5
-81435,08,113,08113,4965,5085,347760135,346647420,4965,5085,347760135,346647420,7359,6638,3337522150,3332308274,100,100,100,100,67.47,76.6,10.42,10.4
-81501,08,077,08077,23465,10368,21117913,20575487,23465,10368,21117913,20575487,146723,62644,8653469560,8622002815,100,100,100,100,15.99,16.55,0.24,0.24
-81503,08,077,08077,15250,6254,91962647,90872083,15250,6254,91962647,90872083,146723,62644,8653469560,8622002815,100,100,100,100,10.39,9.98,1.06,1.05
-81504,08,077,08077,28481,11374,29491234,29294793,28481,11374,29491234,29294793,146723,62644,8653469560,8622002815,100,100,100,100,19.41,18.16,0.34,0.34
-81505,08,077,08077,9779,4325,261864070,260803901,9779,4325,261864070,260803901,146723,62644,8653469560,8622002815,100,100,100,100,6.66,6.9,3.03,3.02
-81506,08,077,08077,10961,5442,33320918,33308403,10961,5442,33320918,33308403,146723,62644,8653469560,8622002815,100,100,100,100,7.47,8.69,0.39,0.39
-81507,08,077,08077,15081,6453,287445010,285153824,15081,6453,287445010,285153824,146723,62644,8653469560,8622002815,100,100,100,100,10.28,10.3,3.32,3.31
-81520,08,077,08077,13447,5359,53771598,53505117,13447,5359,53771598,53505117,146723,62644,8653469560,8622002815,100,100,100,100,9.16,8.55,0.62,0.62
-81521,08,077,08077,15397,6140,387599332,382511395,15397,6140,387599332,382511395,146723,62644,8653469560,8622002815,100,100,100,100,10.49,9.8,4.48,4.44
-81522,08,077,08077,139,104,777025931,776991928,139,104,777025931,776991928,146723,62644,8653469560,8622002815,100,100,100,100,0.09,0.17,8.98,9.01
-81523,08,077,08077,763,448,855753431,855181473,763,448,855753431,855181473,146723,62644,8653469560,8622002815,100,100,100,100,0.52,0.72,9.89,9.92
-81524,08,077,08077,2300,872,437528193,434099187,2300,872,437528193,434099187,146723,62644,8653469560,8622002815,100,100,100,100,1.57,1.39,5.06,5.03
-81525,08,077,08077,871,378,308799961,308744128,871,378,308799961,308744128,146723,62644,8653469560,8622002815,100,100,100,100,0.59,0.6,3.57,3.58
-81526,08,077,08077,5321,2432,136097381,134200858,5321,2432,136097381,134200858,146723,62644,8653469560,8622002815,100,100,100,100,3.63,3.88,1.57,1.56
-81527,08,077,08077,2073,863,2017583989,2013822984,2073,863,2017583989,2013822984,146723,62644,8653469560,8622002815,100,100,100,100,1.41,1.38,23.32,23.36
-81601,08,045,08045,15442,6408,897975405,894341605,15442,6408,897975405,894341605,56389,23309,7655584324,7634153703,100,100,100,100,27.38,27.49,11.73,11.72
-81610,08,081,08081,446,264,804746740,804523774,446,264,804746740,804523774,13795,6196,12304806697,12285064917,100,100,100,100,3.23,4.26,6.54,6.55
-81611,08,097,08097,9921,8103,1110601702,1109567723,9921,8103,1110601702,1109567723,17148,12953,2520563623,2514094239,100,100,100,100,57.86,62.56,44.06,44.13
-81612,08,097,08097,20,24,6976106,6976106,20,24,6976106,6976106,17148,12953,2520563623,2514094239,100,100,100,100,0.12,0.19,0.28,0.28
-81615,08,097,08097,2839,2382,66595793,66349433,2839,2382,66595793,66349433,17148,12953,2520563623,2514094239,100,100,100,100,16.56,18.39,2.64,2.64
-81620,08,037,08037,10450,8251,97546825,97162308,10450,8251,97546825,97162308,52197,31312,4381718402,4362911978,100,100,100,100,20.02,26.35,2.23,2.23
-81621,08,037,08037,4161,1975,446265532,443292515,5914,2870,578994890,575938811,52197,31312,4381718402,4362911978,70.36,68.82,77.08,76.97,7.97,6.31,10.18,10.16
-81621,08,097,08097,1753,895,132729358,132646296,5914,2870,578994890,575938811,17148,12953,2520563623,2514094239,29.64,31.18,22.92,23.03,10.22,6.91,5.27,5.28
-81623,08,037,08037,4081,1417,90312859,89864747,15235,6417,1154076920,1152525171,52197,31312,4381718402,4362911978,26.79,22.08,7.83,7.8,7.82,4.53,2.06,2.06
-81623,08,045,08045,9873,4155,184575094,183971689,15235,6417,1154076920,1152525171,56389,23309,7655584324,7634153703,64.8,64.75,15.99,15.96,17.51,17.83,2.41,2.41
-81623,08,051,08051,360,330,272123335,271790927,15235,6417,1154076920,1152525171,15324,11412,8442400986,8389228965,2.36,5.14,23.58,23.58,2.35,2.89,3.22,3.24
-81623,08,097,08097,921,515,607065632,606897808,15235,6417,1154076920,1152525171,17148,12953,2520563623,2514094239,6.05,8.03,52.6,52.66,5.37,3.98,24.08,24.14
-81624,08,077,08077,1537,788,1449355413,1445005128,1537,788,1449355413,1445005128,146723,62644,8653469560,8622002815,100,100,100,100,1.05,1.26,16.75,16.76
-81625,08,081,08081,12917,5600,3828515003,3820891368,12921,5609,3990775634,3982987432,13795,6196,12304806697,12285064917,99.97,99.84,95.93,95.93,93.64,90.38,31.11,31.1
-81625,08,107,08107,4,9,162260631,162096064,12921,5609,3990775634,3982987432,23509,16303,6133444841,6117619255,0.03,0.16,4.07,4.07,0.02,0.06,2.65,2.65
-81630,08,045,08045,98,73,2550808611,2550687129,979,461,3303243336,3299943600,56389,23309,7655584324,7634153703,10.01,15.84,77.22,77.29,0.17,0.31,33.32,33.41
-81630,08,077,08077,881,388,752434725,749256471,979,461,3303243336,3299943600,146723,62644,8653469560,8622002815,89.99,84.16,22.78,22.71,0.6,0.62,8.7,8.69
-81631,08,037,08037,8215,3234,635831222,634314996,8215,3234,635831222,634314996,52197,31312,4381718402,4362911978,100,100,100,100,15.74,10.33,14.51,14.54
-81632,08,037,08037,10276,5057,317715681,316298015,10276,5057,317715681,316298015,52197,31312,4381718402,4362911978,100,100,100,100,19.69,16.15,7.25,7.25
-81633,08,081,08081,19,14,344051941,344051941,19,14,344051941,344051941,13795,6196,12304806697,12285064917,100,100,100,100,0.14,0.23,2.8,2.8
-81635,08,045,08045,5957,3068,756837636,753553999,5957,3068,756837636,753553999,56389,23309,7655584324,7634153703,100,100,100,100,10.56,13.16,9.89,9.87
-81637,08,037,08037,7657,2711,889466905,885238216,7721,2764,1977915846,1966880822,52197,31312,4381718402,4362911978,99.17,98.08,44.97,45.01,14.67,8.66,20.3,20.29
-81637,08,045,08045,64,53,1088448941,1081642606,7721,2764,1977915846,1966880822,56389,23309,7655584324,7634153703,0.83,1.92,55.03,54.99,0.11,0.23,14.22,14.17
-81638,08,081,08081,112,89,435074914,435017326,112,89,435074914,435017326,13795,6196,12304806697,12285064917,100,100,100,100,0.81,1.44,3.54,3.54
-81639,08,107,08107,2463,1263,1556063996,1554247555,2463,1263,1556063996,1554247555,23509,16303,6133444841,6117619255,100,100,100,100,10.48,7.75,25.37,25.41
-81640,08,081,08081,249,158,6172335857,6160742584,249,158,6172335857,6160742584,13795,6196,12304806697,12285064917,100,100,100,100,1.81,2.55,50.16,50.15
-81641,08,081,08081,35,42,659880884,659724422,3834,2088,4405337324,4400376959,13795,6196,12304806697,12285064917,0.91,2.01,14.98,14.99,0.25,0.68,5.36,5.37
-81641,08,103,08103,3799,2046,3745456440,3740652537,3834,2088,4405337324,4400376959,6666,3309,8347047486,8342179365,99.09,97.99,85.02,85.01,56.99,61.83,44.87,44.84
-81642,08,097,08097,61,114,364444850,360399244,61,114,364444850,360399244,17148,12953,2520563623,2514094239,100,100,100,100,0.36,0.88,14.46,14.34
-81643,08,077,08077,793,560,560930519,559828758,793,560,560930519,559828758,146723,62644,8653469560,8622002815,100,100,100,100,0.54,0.89,6.48,6.49
-81645,08,037,08037,1121,603,442217524,438638269,1121,603,442217524,438638269,52197,31312,4381718402,4362911978,100,100,100,100,2.15,1.93,10.09,10.05
-81646,08,077,08077,184,96,191387295,188846897,184,96,191387295,188846897,146723,62644,8653469560,8622002815,100,100,100,100,0.13,0.15,2.21,2.19
-81647,08,045,08045,7104,2733,949267855,947705989,7104,2733,949267855,947705989,56389,23309,7655584324,7634153703,100,100,100,100,12.6,11.73,12.4,12.41
-81648,08,103,08103,2808,1212,3186034949,3186000688,2808,1212,3186034949,3186000688,6666,3309,8347047486,8342179365,100,100,100,100,42.12,36.63,38.17,38.19
-81649,08,037,08037,277,150,205211783,205019356,277,150,205211783,205019356,52197,31312,4381718402,4362911978,100,100,100,100,0.53,0.48,4.68,4.7
-81650,08,045,08045,12947,4929,995572049,991737065,13006,4980,2411128146,2407263205,56389,23309,7655584324,7634153703,99.55,98.98,41.29,41.2,22.96,21.15,13,12.99
-81650,08,103,08103,59,51,1415556097,1415526140,13006,4980,2411128146,2407263205,6666,3309,8347047486,8342179365,0.45,1.02,58.71,58.8,0.89,1.54,16.96,16.97
-81652,08,045,08045,4904,1890,232098733,230513621,4904,1890,232098733,230513621,56389,23309,7655584324,7634153703,100,100,100,100,8.7,8.11,3.03,3.02
-81653,08,081,08081,17,29,60201358,60113502,31,54,155911260,155823404,13795,6196,12304806697,12285064917,54.84,53.7,38.61,38.58,0.12,0.47,0.49,0.49
-81653,08,107,08107,14,25,95709902,95709902,31,54,155911260,155823404,23509,16303,6133444841,6117619255,45.16,46.3,61.39,61.42,0.06,0.15,1.56,1.56
-81654,08,097,08097,1391,754,229433043,228540490,1391,754,229433043,228540490,17148,12953,2520563623,2514094239,100,100,100,100,8.11,5.82,9.1,9.09
-81655,08,037,08037,65,37,362654280,362236168,65,37,362654280,362236168,52197,31312,4381718402,4362911978,100,100,100,100,0.12,0.12,8.28,8.3
-81656,08,097,08097,242,166,2717139,2717139,242,166,2717139,2717139,17148,12953,2520563623,2514094239,100,100,100,100,1.41,1.28,0.11,0.11
-81657,08,037,08037,5581,7611,288601791,288019410,5581,7611,288601791,288019410,52197,31312,4381718402,4362911978,100,100,100,100,10.69,24.31,6.59,6.6
-82001,56,021,56021,35484,16584,152945649,152691897,35484,16584,152945649,152691897,91738,40462,6960749322,6956479515,100,100,100,100,38.68,40.99,2.2,2.19
-82005,56,021,56021,417,25,7616781,7616781,417,25,7616781,7616781,91738,40462,6960749322,6956479515,100,100,100,100,0.45,0.06,0.11,0.11
-82007,56,021,56021,19096,8194,509613989,508188614,19096,8194,509613989,508188614,91738,40462,6960749322,6956479515,100,100,100,100,20.82,20.25,7.32,7.31
-82009,56,021,56021,31703,13368,3213336762,3211504741,31703,13368,3213336762,3211504741,91738,40462,6960749322,6956479515,100,100,100,100,34.56,33.04,46.16,46.17
-82050,56,021,56021,401,177,423990756,423956235,401,177,423990756,423956235,91738,40462,6960749322,6956479515,100,100,100,100,0.44,0.44,6.09,6.09
-82051,56,001,56001,60,41,900752988,894918707,60,41,900752988,894918707,36299,17939,11159708961,11069193896,100,100,100,100,0.17,0.23,8.07,8.08
-82052,56,001,56001,23,13,35269485,35269485,23,13,35269485,35269485,36299,17939,11159708961,11069193896,100,100,100,100,0.06,0.07,0.32,0.32
-82053,56,021,56021,1524,665,586835726,586710248,1524,665,586835726,586710248,91738,40462,6960749322,6956479515,100,100,100,100,1.66,1.64,8.43,8.43
-82054,56,021,56021,920,376,466206319,466144489,920,376,466206319,466144489,91738,40462,6960749322,6956479515,100,100,100,100,1,0.93,6.7,6.7
-82055,56,001,56001,285,395,304135528,302189133,285,395,304135528,302189133,36299,17939,11159708961,11069193896,100,100,100,100,0.79,2.2,2.73,2.73
-82058,56,001,56001,52,55,829529617,802228973,52,55,829529617,802228973,36299,17939,11159708961,11069193896,100,100,100,100,0.14,0.31,7.43,7.25
-82059,56,021,56021,135,105,218134342,217744206,135,105,218134342,217744206,91738,40462,6960749322,6956479515,100,100,100,100,0.15,0.26,3.13,3.13
-82060,56,021,56021,372,138,75720965,75720965,372,138,75720965,75720965,91738,40462,6960749322,6956479515,100,100,100,100,0.41,0.34,1.09,1.09
-82061,56,021,56021,39,25,544695131,544597645,39,25,544695131,544597645,91738,40462,6960749322,6956479515,100,100,100,100,0.04,0.06,7.83,7.83
-82063,08,069,08069,29,72,735988985,733901568,100,170,998927317,996722251,299630,132722,6821908736,6723613486,29,42.35,73.68,73.63,0.01,0.05,10.79,10.92
-82063,56,001,56001,71,98,262938332,262820683,100,170,998927317,996722251,36299,17939,11159708961,11069193896,71,57.65,26.32,26.37,0.2,0.55,2.36,2.37
-82070,56,001,56001,19766,9169,2860599055,2828114389,19766,9169,2860599055,2828114389,36299,17939,11159708961,11069193896,100,100,100,100,54.45,51.11,25.63,25.55
-82072,56,001,56001,15533,7665,559846414,558676582,15533,7665,559846414,558676582,36299,17939,11159708961,11069193896,100,100,100,100,42.79,42.73,5.02,5.05
-82073,56,001,56001,72,0,5094,5094,72,0,5094,5094,36299,17939,11159708961,11069193896,100,0,100,100,0.2,0,0,0
-82081,56,021,56021,60,43,232706118,232706118,60,43,232706118,232706118,91738,40462,6960749322,6956479515,100,100,100,100,0.07,0.11,3.34,3.35
-82082,31,007,31007,19,14,44538126,44526996,1606,776,573484910,573424572,690,369,1932823996,1932426927,1.18,1.8,7.77,7.77,2.75,3.79,2.3,2.3
-82082,56,021,56021,1587,762,528946784,528897576,1606,776,573484910,573424572,91738,40462,6960749322,6956479515,98.82,98.2,92.23,92.23,1.73,1.88,7.6,7.6
-82083,56,001,56001,295,153,553423484,552347137,373,291,1283524185,1278572746,36299,17939,11159708961,11069193896,79.09,52.58,43.12,43.2,0.81,0.85,4.96,4.99
-82083,56,007,56007,78,138,730100701,726225609,373,291,1283524185,1278572746,15885,8576,20626629267,20454631972,20.91,47.42,56.88,56.8,0.49,1.61,3.54,3.55
-82084,56,001,56001,16,56,190457629,190457629,16,56,190457629,190457629,36299,17939,11159708961,11069193896,100,100,100,100,0.04,0.31,1.71,1.72
-82190,56,029,56029,288,222,4516841552,4505825437,369,332,8114926735,7698493836,28205,13562,18045521416,17979897617,78.05,66.87,55.66,58.53,1.02,1.64,25.03,25.06
-82190,56,039,56039,81,110,3598085183,3192668399,369,332,8114926735,7698493836,21294,12813,10920249520,10347983791,21.95,33.13,44.34,41.47,0.38,0.86,32.95,30.85
-82201,56,001,56001,100,251,1586694502,1586521236,6467,3465,4467625467,4459170374,36299,17939,11159708961,11069193896,1.55,7.24,35.52,35.58,0.28,1.4,14.22,14.33
-82201,56,031,56031,6367,3214,2880930965,2872649138,6467,3465,4467625467,4459170374,8667,4667,5467110124,5398073678,98.45,92.76,64.48,64.42,73.46,68.87,52.7,53.22
-82210,56,015,56015,46,24,206297733,206297733,399,194,1006517260,1006339295,13249,5972,5781317084,5763735931,11.53,12.37,20.5,20.5,0.35,0.4,3.57,3.58
-82210,56,031,56031,353,170,800219527,800041562,399,194,1006517260,1006339295,8667,4667,5467110124,5398073678,88.47,87.63,79.5,79.5,4.07,3.64,14.64,14.82
-82212,56,015,56015,474,295,875064203,872565018,474,295,875064203,872565018,13249,5972,5781317084,5763735931,100,100,100,100,3.58,4.94,15.14,15.14
-82213,56,031,56031,513,509,1294516848,1245906941,513,509,1294516848,1245906941,8667,4667,5467110124,5398073678,100,100,100,100,5.92,10.91,23.68,23.08
-82214,56,031,56031,1302,683,274911055,271000403,1302,683,274911055,271000403,8667,4667,5467110124,5398073678,100,100,100,100,15.02,14.63,5.03,5.02
-82215,56,031,56031,132,91,216531729,208475634,132,91,216531729,208475634,8667,4667,5467110124,5398073678,100,100,100,100,1.52,1.95,3.96,3.86
-82217,56,015,56015,107,74,233687653,233513380,107,74,233687653,233513380,13249,5972,5781317084,5763735931,100,100,100,100,0.81,1.24,4.04,4.05
-82219,56,015,56015,48,36,291772081,291772081,48,36,291772081,291772081,13249,5972,5781317084,5763735931,100,100,100,100,0.36,0.6,5.05,5.06
-82221,56,015,56015,635,244,810085150,806427374,635,244,810085150,806427374,13249,5972,5781317084,5763735931,100,100,100,100,4.79,4.09,14.01,13.99
-82222,56,027,56027,107,77,1055845517,1055009005,107,77,1055845517,1055009005,2484,1338,6806373807,6801404307,100,100,100,100,4.31,5.75,15.51,15.51
-82223,56,015,56015,996,459,389791391,388731817,996,459,389791391,388731817,13249,5972,5781317084,5763735931,100,100,100,100,7.52,7.69,6.74,6.74
-82224,56,027,56027,23,14,348152181,348135112,23,14,348152181,348135112,2484,1338,6806373807,6801404307,100,100,100,100,0.93,1.05,5.12,5.12
-82225,56,015,56015,43,34,250035531,250035531,2067,1088,3557448960,3554463786,13249,5972,5781317084,5763735931,2.08,3.13,7.03,7.03,0.32,0.57,4.32,4.34
-82225,56,027,56027,2024,1054,3307413429,3304428255,2067,1088,3557448960,3554463786,2484,1338,6806373807,6801404307,97.92,96.88,92.97,92.97,81.48,78.77,48.59,48.58
-82227,56,027,56027,241,132,976672156,976305890,241,132,976672156,976305890,2484,1338,6806373807,6801404307,100,100,100,100,9.7,9.87,14.35,14.35
-82229,56,009,56009,74,44,625315667,625186720,74,44,625315667,625186720,13833,6403,11046483593,11020096419,100,100,100,100,0.53,0.69,5.66,5.67
-82240,56,015,56015,10235,4450,1719963600,1715616771,10235,4450,1719963600,1715616771,13249,5972,5781317084,5763735931,100,100,100,100,77.25,74.51,29.75,29.77
-82242,56,027,56027,39,24,180646237,180646237,39,24,180646237,180646237,2484,1338,6806373807,6801404307,100,100,100,100,1.57,1.79,2.65,2.66
-82243,56,015,56015,187,83,140606977,140582309,187,83,140606977,140582309,13249,5972,5781317084,5763735931,100,100,100,100,1.41,1.39,2.43,2.44
-82244,56,015,56015,478,273,864012765,858193917,478,273,864012765,858193917,13249,5972,5781317084,5763735931,100,100,100,100,3.61,4.57,14.94,14.89
-82301,56,007,56007,9559,4157,1862725198,1860564786,9584,4181,3188534208,3182307330,15885,8576,20626629267,20454631972,99.74,99.43,58.42,58.47,60.18,48.47,9.03,9.1
-82301,56,013,56013,8,12,345966428,344593531,9584,4181,3188534208,3182307330,40123,17796,23998098768,23785968227,0.08,0.29,10.85,10.83,0.02,0.07,1.44,1.45
-82301,56,037,56037,17,12,979842582,977149013,9584,4181,3188534208,3182307330,43806,18735,27171784280,27004896786,0.18,0.29,30.73,30.71,0.04,0.06,3.61,3.62
-82321,56,007,56007,717,358,682008184,681712076,717,358,682008184,681712076,15885,8576,20626629267,20454631972,100,100,100,100,4.51,4.17,3.31,3.33
-82322,56,037,56037,106,68,3901879,3901879,106,68,3901879,3901879,43806,18735,27171784280,27004896786,100,100,100,100,0.24,0.36,0.01,0.01
-82323,56,007,56007,186,112,73309896,73251114,186,112,73309896,73251114,15885,8576,20626629267,20454631972,100,100,100,100,1.17,1.31,0.36,0.36
-82324,56,007,56007,268,209,630637808,629811850,268,209,630637808,629811850,15885,8576,20626629267,20454631972,100,100,100,100,1.69,2.44,3.06,3.08
-82325,56,007,56007,878,753,1733080287,1730855934,878,753,1733080287,1730855934,15885,8576,20626629267,20454631972,100,100,100,100,5.53,8.78,8.4,8.46
-82327,56,007,56007,929,673,1264738186,1223636429,929,673,1264738186,1223636429,15885,8576,20626629267,20454631972,100,100,100,100,5.85,7.85,6.13,5.98
-82329,56,001,56001,26,29,879059849,878071192,359,236,1894046166,1891743819,36299,17939,11159708961,11069193896,7.24,12.29,46.41,46.42,0.07,0.16,7.88,7.93
-82329,56,007,56007,333,207,1014986317,1013672627,359,236,1894046166,1891743819,15885,8576,20626629267,20454631972,92.76,87.71,53.59,53.58,2.1,2.41,4.92,4.96
-82331,56,007,56007,2286,1476,1494813858,1487403915,2286,1476,1494813858,1487403915,15885,8576,20626629267,20454631972,100,100,100,100,14.39,17.21,7.25,7.27
-82332,56,007,56007,97,57,366728055,366611414,97,57,366728055,366611414,15885,8576,20626629267,20454631972,100,100,100,100,0.61,0.66,1.78,1.79
-82334,56,007,56007,501,338,660439367,627684932,501,338,660439367,627684932,15885,8576,20626629267,20454631972,100,100,100,100,3.15,3.94,3.2,3.07
-82335,56,007,56007,21,14,302905431,294038009,21,14,302905431,294038009,15885,8576,20626629267,20454631972,100,100,100,100,0.13,0.16,1.47,1.44
-82336,56,037,56037,498,310,1705050325,1690859753,498,310,1705050325,1690859753,43806,18735,27171784280,27004896786,100,100,100,100,1.14,1.65,6.28,6.26
-82401,56,003,56003,50,25,28809158,28562493,7866,3428,1537729750,1531125665,11668,5379,8181475393,8125043730,0.64,0.73,1.87,1.87,0.43,0.46,0.35,0.35
-82401,56,017,56017,15,9,228149227,228149227,7866,3428,1537729750,1531125665,4812,2582,5196581061,5190573003,0.19,0.26,14.84,14.9,0.31,0.35,4.39,4.4
-82401,56,043,56043,7801,3394,1280771365,1274413945,7866,3428,1537729750,1531125665,8533,3833,5808576972,5797814617,99.17,99.01,83.29,83.23,91.42,88.55,22.05,21.98
-82410,56,003,56003,1760,794,454657099,452090994,1760,794,454657099,452090994,11668,5379,8181475393,8125043730,100,100,100,100,15.08,14.76,5.56,5.56
-82411,56,003,56003,664,234,238143467,238143467,664,234,238143467,238143467,11668,5379,8181475393,8125043730,100,100,100,100,5.69,4.35,2.91,2.93
-82412,56,003,56003,626,257,54836036,52787195,626,257,54836036,52787195,11668,5379,8181475393,8125043730,100,100,100,100,5.37,4.78,0.67,0.65
-82414,56,029,56029,15011,7656,7342889708,7300738993,15011,7656,7342889708,7300738993,28205,13562,18045521416,17979897617,100,100,100,100,53.22,56.45,40.69,40.61
-82420,56,003,56003,783,307,143609078,143562731,783,307,143609078,143562731,11668,5379,8181475393,8125043730,100,100,100,100,6.71,5.71,1.76,1.77
-82421,56,003,56003,351,166,72783131,72783131,448,210,120347717,120040817,11668,5379,8181475393,8125043730,78.35,79.05,60.48,60.63,3.01,3.09,0.89,0.9
-82421,56,029,56029,97,44,47564586,47257686,448,210,120347717,120040817,28205,13562,18045521416,17979897617,21.65,20.95,39.52,39.37,0.34,0.32,0.26,0.26
-82422,56,003,56003,105,43,31054124,31054124,105,43,31054124,31054124,11668,5379,8181475393,8125043730,100,100,100,100,0.9,0.8,0.38,0.38
-82423,56,003,56003,210,103,44752455,44747116,233,117,48327790,48322451,11668,5379,8181475393,8125043730,90.13,88.03,92.6,92.6,1.8,1.91,0.55,0.55
-82423,56,029,56029,23,14,3575335,3575335,233,117,48327790,48322451,28205,13562,18045521416,17979897617,9.87,11.97,7.4,7.4,0.08,0.1,0.02,0.02
-82426,56,003,56003,2644,1343,1454455053,1451538591,2644,1343,1454455053,1451538591,11668,5379,8181475393,8125043730,100,100,100,100,22.66,24.97,17.78,17.86
-82428,56,003,56003,139,115,550620185,549871176,139,115,550620185,549871176,11668,5379,8181475393,8125043730,100,100,100,100,1.19,2.14,6.73,6.77
-82430,56,017,56017,100,41,6671690,6297169,100,41,6671690,6297169,4812,2582,5196581061,5190573003,100,100,100,100,2.08,1.59,0.13,0.12
-82431,56,003,56003,3552,1544,1473805272,1436597170,3552,1544,1473805272,1436597170,11668,5379,8181475393,8125043730,100,100,100,100,30.44,28.7,18.01,17.68
-82432,56,003,56003,315,150,308113448,304538172,315,150,308113448,304538172,11668,5379,8181475393,8125043730,100,100,100,100,2.7,2.79,3.77,3.75
-82433,56,029,56029,789,473,2210718075,2202542648,789,473,2210718075,2202542648,28205,13562,18045521416,17979897617,100,100,100,100,2.8,3.49,12.25,12.25
-82434,56,003,56003,156,61,90888066,90249947,156,61,90888066,90249947,11668,5379,8181475393,8125043730,100,100,100,100,1.34,1.13,1.11,1.11
-82435,56,003,56003,63,24,94454916,94454916,11738,4985,2196637186,2193722640,11668,5379,8181475393,8125043730,0.54,0.48,4.3,4.31,0.54,0.45,1.15,1.16
-82435,56,029,56029,11675,4961,2102182270,2099267724,11738,4985,2196637186,2193722640,28205,13562,18045521416,17979897617,99.46,99.52,95.7,95.69,41.39,36.58,11.65,11.68
-82440,56,029,56029,145,67,881524,881524,145,67,881524,881524,28205,13562,18045521416,17979897617,100,100,100,100,0.51,0.49,0,0
-82441,56,003,56003,250,151,305485279,305457627,250,151,305485279,305457627,11668,5379,8181475393,8125043730,100,100,100,100,2.14,2.81,3.73,3.76
-82442,56,043,56043,732,431,1713196187,1711829931,732,431,1713196187,1711829931,8533,3833,5808576972,5797814617,100,100,100,100,8.58,11.24,29.49,29.53
-82443,56,017,56017,4697,2524,3123974098,3118425525,4697,2524,3123974098,3118425525,4812,2582,5196581061,5190573003,100,100,100,100,97.61,97.75,60.12,60.08
-82450,56,029,56029,177,124,83628221,83628221,177,124,83628221,83628221,28205,13562,18045521416,17979897617,100,100,100,100,0.63,0.91,0.46,0.47
-82501,56,013,56013,19408,7991,2514140874,2436700899,19408,7991,2514140874,2436700899,40123,17796,23998098768,23785968227,100,100,100,100,48.37,44.9,10.48,10.24
-82510,56,013,56013,423,134,57291617,57291617,423,134,57291617,57291617,40123,17796,23998098768,23785968227,100,100,100,100,1.05,0.75,0.24,0.24
-82512,56,013,56013,210,141,1074029569,1069761586,210,141,1074029569,1069761586,40123,17796,23998098768,23785968227,100,100,100,100,0.52,0.79,4.48,4.5
-82513,56,013,56013,1879,1550,4009763473,3982020904,1879,1550,4009763473,3982020904,40123,17796,23998098768,23785968227,100,100,100,100,4.68,8.71,16.71,16.74
-82514,56,013,56013,1645,528,566301888,566073024,1645,528,566301888,566073024,40123,17796,23998098768,23785968227,100,100,100,100,4.1,2.97,2.36,2.38
-82515,56,013,56013,446,216,21496534,21496534,446,216,21496534,21496534,40123,17796,23998098768,23785968227,100,100,100,100,1.11,1.21,0.09,0.09
-82516,56,013,56013,496,209,625806003,617165381,496,209,625806003,617165381,40123,17796,23998098768,23785968227,100,100,100,100,1.24,1.17,2.61,2.59
-82520,56,013,56013,13535,5959,5753422632,5708643474,13535,5959,5753422632,5708643474,40123,17796,23998098768,23785968227,100,100,100,100,33.73,33.49,23.97,24
-82523,56,013,56013,868,407,1987048223,1965795631,868,407,1987048223,1965795631,40123,17796,23998098768,23785968227,100,100,100,100,2.16,2.29,8.28,8.26
-82601,56,025,56025,27400,12593,1482178561,1476622711,27400,12593,1482178561,1476622711,75450,33807,13922907586,13831446772,100,100,100,100,36.32,37.25,10.65,10.68
-82604,56,007,56007,16,8,221313989,221211039,25882,10874,4800460633,4782161820,15885,8576,20626629267,20454631972,0.06,0.07,4.61,4.63,0.1,0.09,1.07,1.08
-82604,56,025,56025,25866,10866,4579146644,4560950781,25882,10874,4800460633,4782161820,75450,33807,13922907586,13831446772,99.94,99.93,95.39,95.37,34.28,32.14,32.89,32.98
-82609,56,025,56025,15730,7072,151799442,151594143,15730,7072,151799442,151594143,75450,33807,13922907586,13831446772,100,100,100,100,20.85,20.92,1.09,1.1
-82620,56,007,56007,16,59,770815906,769820650,210,481,1942824089,1902123293,15885,8576,20626629267,20454631972,7.62,12.27,39.68,40.47,0.1,0.69,3.74,3.76
-82620,56,025,56025,194,422,1172008183,1132302643,210,481,1942824089,1902123293,75450,33807,13922907586,13831446772,92.38,87.73,60.32,59.53,0.26,1.25,8.42,8.19
-82630,56,025,56025,10,4,163153082,162809261,10,4,163153082,162809261,75450,33807,13922907586,13831446772,100,100,100,100,0.01,0.01,1.17,1.18
-82633,56,009,56009,9586,4477,8028513106,8008122731,9592,4484,8185447249,8164820625,13833,6403,11046483593,11020096419,99.94,99.84,98.08,98.08,69.3,69.92,72.68,72.67
-82633,56,027,56027,6,7,156934143,156697894,9592,4484,8185447249,8164820625,2484,1338,6806373807,6801404307,0.06,0.16,1.92,1.92,0.24,0.52,2.31,2.3
-82635,56,025,56025,207,118,41304462,41304462,207,118,41304462,41304462,75450,33807,13922907586,13831446772,100,100,100,100,0.27,0.35,0.3,0.3
-82636,56,009,56009,37,16,3377065,3306038,3981,1680,240748752,238731099,13833,6403,11046483593,11020096419,0.93,0.95,1.4,1.38,0.27,0.25,0.03,0.03
-82636,56,025,56025,3944,1664,237371687,235425061,3981,1680,240748752,238731099,75450,33807,13922907586,13831446772,99.07,99.05,98.6,98.62,5.23,4.92,1.7,1.7
-82637,56,001,56001,0,9,106170871,106170871,4136,1875,2495448626,2489651801,36299,17939,11159708961,11069193896,0,0.48,4.25,4.26,0,0.05,0.95,0.96
-82637,56,009,56009,4136,1866,2389277755,2383480930,4136,1875,2495448626,2489651801,13833,6403,11046483593,11020096419,100,99.52,95.75,95.74,29.9,29.14,21.63,21.63
-82638,56,025,56025,17,10,30859432,30656021,17,10,30859432,30656021,75450,33807,13922907586,13831446772,100,100,100,100,0.02,0.03,0.22,0.22
-82639,56,019,56019,759,423,4024726251,4013670633,805,449,4371369031,4360012127,8569,4553,10812153966,10759206119,94.29,94.21,92.07,92.06,8.86,9.29,37.22,37.3
-82639,56,025,56025,46,26,346642780,346341494,805,449,4371369031,4360012127,75450,33807,13922907586,13831446772,5.71,5.79,7.93,7.94,0.06,0.08,2.49,2.5
-82640,56,019,56019,29,26,423366073,423221115,29,26,423366073,423221115,8569,4553,10812153966,10759206119,100,100,100,100,0.34,0.57,3.92,3.93
-82642,56,013,56013,85,69,1122029414,1121278701,94,74,1313539506,1312709219,40123,17796,23998098768,23785968227,90.43,93.24,85.42,85.42,0.21,0.39,4.68,4.71
-82642,56,025,56025,9,5,191510092,191430518,94,74,1313539506,1312709219,75450,33807,13922907586,13831446772,9.57,6.76,14.58,14.58,0.01,0.01,1.38,1.38
-82643,56,025,56025,469,228,77399336,77180649,469,228,77399336,77180649,75450,33807,13922907586,13831446772,100,100,100,100,0.62,0.67,0.56,0.56
-82644,56,025,56025,1480,726,2183752,2180862,1480,726,2183752,2180862,75450,33807,13922907586,13831446772,100,100,100,100,1.96,2.15,0.02,0.02
-82646,56,025,56025,20,14,106016186,103928485,20,14,106016186,103928485,75450,33807,13922907586,13831446772,100,100,100,100,0.03,0.04,0.76,0.75
-82648,56,025,56025,56,52,1417109447,1415407681,56,52,1417109447,1415407681,75450,33807,13922907586,13831446772,100,100,100,100,0.07,0.15,10.18,10.23
-82649,56,013,56013,1120,577,1583311312,1565974625,1120,577,1583311312,1565974625,40123,17796,23998098768,23785968227,100,100,100,100,2.79,3.24,6.6,6.58
-82701,46,033,46033,30,19,183842095,183842095,5455,2675,5118911411,5114991837,8216,4628,4038098081,4032615511,0.55,0.71,3.59,3.59,0.37,0.41,4.55,4.56
-82701,46,103,46103,0,19,204067485,204067485,5455,2675,5118911411,5114991837,100948,44949,7211206523,7191239757,0,0.71,3.99,3.99,0,0.04,2.83,2.84
-82701,56,027,56027,44,30,780710144,780181914,5455,2675,5118911411,5114991837,2484,1338,6806373807,6801404307,0.81,1.12,15.25,15.25,1.77,2.24,11.47,11.47
-82701,56,045,56045,5381,2607,3950291687,3946900343,5455,2675,5118911411,5114991837,7208,3533,6216022500,6211020805,98.64,97.46,77.17,77.16,74.65,73.79,63.55,63.55
-82710,56,011,56011,243,149,711288770,711041860,243,149,711288770,711041860,7083,3595,7421082168,7392881785,100,100,100,100,3.43,4.14,9.58,9.62
-82711,56,011,56011,110,58,302402711,302402711,110,58,302402711,302402711,7083,3595,7421082168,7392881785,100,100,100,100,1.55,1.61,4.07,4.09
-82712,56,011,56011,264,156,324382023,324382023,264,156,324382023,324382023,7083,3595,7421082168,7392881785,100,100,100,100,3.73,4.34,4.37,4.39
-82714,56,011,56011,95,67,138868095,138868095,95,67,138868095,138868095,7083,3595,7421082168,7392881785,100,100,100,100,1.34,1.86,1.87,1.88
-82715,56,045,56045,0,2,717618,717618,0,2,717618,717618,7208,3533,6216022500,6211020805,0,100,100,100,0,0.06,0.01,0.01
-82716,56,005,56005,18747,8069,2813351607,2811150898,18747,8069,2813351607,2811150898,46133,18955,12449316922,12438959289,100,100,100,100,40.64,42.57,22.6,22.6
-82718,56,005,56005,23003,9018,4879323410,4876811192,23003,9018,4879323410,4876811192,46133,18955,12449316922,12438959289,100,100,100,100,49.86,47.58,39.19,39.21
-82720,56,011,56011,955,520,1697389959,1695898312,955,520,1697389959,1695898312,7083,3595,7421082168,7392881785,100,100,100,100,13.48,14.46,22.87,22.94
-82721,56,011,56011,3078,1444,2058780705,2034358065,3078,1444,2058780705,2034358065,7083,3595,7421082168,7392881785,100,100,100,100,43.46,40.17,27.74,27.52
-82723,56,045,56045,278,158,252460846,252287082,278,158,252460846,252287082,7208,3533,6216022500,6211020805,100,100,100,100,3.86,4.47,4.06,4.06
-82725,56,005,56005,207,116,736782840,735888641,207,116,736782840,735888641,46133,18955,12449316922,12438959289,100,100,100,100,0.45,0.61,5.92,5.92
-82727,56,005,56005,1838,719,1234833858,1233282054,1838,719,1234833858,1233282054,46133,18955,12449316922,12438959289,100,100,100,100,3.98,3.79,9.92,9.91
-82729,56,011,56011,2225,1135,1532507032,1532176646,2251,1156,1607843980,1607513594,7083,3595,7421082168,7392881785,98.84,98.18,95.31,95.31,31.41,31.57,20.65,20.73
-82729,56,045,56045,26,21,75336948,75336948,2251,1156,1607843980,1607513594,7208,3533,6216022500,6211020805,1.16,1.82,4.69,4.69,0.36,0.59,1.21,1.21
-82730,56,011,56011,43,30,138577549,138179817,1566,775,1633212342,1631505472,7083,3595,7421082168,7392881785,2.75,3.87,8.48,8.47,0.61,0.83,1.87,1.87
-82730,56,045,56045,1523,745,1494634793,1493325655,1566,775,1633212342,1631505472,7208,3533,6216022500,6211020805,97.25,96.13,91.52,91.53,21.13,21.09,24.04,24.04
-82731,56,005,56005,135,78,1373016834,1370911666,135,78,1373016834,1370911666,46133,18955,12449316922,12438959289,100,100,100,100,0.29,0.41,11.03,11.02
-82732,56,005,56005,2154,928,277525928,277510931,2154,928,277525928,277510931,46133,18955,12449316922,12438959289,100,100,100,100,4.67,4.9,2.23,2.23
-82801,30,003,30003,12,4,61142221,61142221,24558,11285,1694464851,1693205016,12865,4695,12987780679,12938187715,0.05,0.04,3.61,3.61,0.09,0.09,0.47,0.47
-82801,56,033,56033,24546,11281,1633322630,1632062795,24558,11285,1694464851,1693205016,29116,13939,6545099068,6537112725,99.95,99.96,96.39,96.39,84.3,80.93,24.95,24.97
-82831,56,005,56005,49,27,460032022,459243848,216,124,1641552503,1632317909,46133,18955,12449316922,12438959289,22.69,21.77,28.02,28.13,0.11,0.14,3.7,3.69
-82831,56,019,56019,61,28,637910731,629740189,216,124,1641552503,1632317909,8569,4553,10812153966,10759206119,28.24,22.58,38.86,38.58,0.71,0.61,5.9,5.85
-82831,56,033,56033,106,69,543609750,543333872,216,124,1641552503,1632317909,29116,13939,6545099068,6537112725,49.07,55.65,33.12,33.29,0.36,0.5,8.31,8.31
-82832,56,019,56019,135,62,80955183,80653107,618,329,428653081,428169282,8569,4553,10812153966,10759206119,21.84,18.84,18.89,18.84,1.58,1.36,0.75,0.75
-82832,56,033,56033,483,267,347697898,347516175,618,329,428653081,428169282,29116,13939,6545099068,6537112725,78.16,81.16,81.11,81.16,1.66,1.92,5.31,5.32
-82833,56,033,56033,225,209,255728231,254056944,225,209,255728231,254056944,29116,13939,6545099068,6537112725,100,100,100,100,0.77,1.5,3.91,3.89
-82834,56,019,56019,7585,4014,5645195728,5611921075,7585,4014,5645195728,5611921075,8569,4553,10812153966,10759206119,100,100,100,100,88.52,88.16,52.21,52.16
-82835,56,033,56033,318,179,1312900696,1311406984,318,179,1312900696,1311406984,29116,13939,6545099068,6537112725,100,100,100,100,1.09,1.28,20.06,20.06
-82836,56,033,56033,1073,590,1320933387,1319200208,1073,590,1320933387,1319200208,29116,13939,6545099068,6537112725,100,100,100,100,3.69,4.23,20.18,20.18
-82837,56,033,56033,29,18,121166177,121072110,29,18,121166177,121072110,29116,13939,6545099068,6537112725,100,100,100,100,0.1,0.13,1.85,1.85
-82838,56,033,56033,268,166,466930331,466483958,268,166,466930331,466483958,29116,13939,6545099068,6537112725,100,100,100,100,0.92,1.19,7.13,7.14
-82839,56,033,56033,1153,468,303257894,302621984,1153,468,303257894,302621984,29116,13939,6545099068,6537112725,100,100,100,100,3.96,3.36,4.63,4.63
-82842,56,033,56033,843,654,38045958,38039151,843,654,38045958,38039151,29116,13939,6545099068,6537112725,100,100,100,100,2.9,4.69,0.58,0.58
-82844,56,033,56033,35,15,47218490,47159724,35,15,47218490,47159724,29116,13939,6545099068,6537112725,100,100,100,100,0.12,0.11,0.72,0.72
-82845,56,033,56033,37,23,154287626,154158820,37,23,154287626,154158820,29116,13939,6545099068,6537112725,100,100,100,100,0.13,0.17,2.36,2.36
-82901,56,037,56037,27971,11943,3596467044,3596245359,27971,11943,3596467044,3596245359,43806,18735,27171784280,27004896786,100,100,100,100,63.85,63.75,13.24,13.32
-82922,56,035,56035,257,356,847832695,847696068,257,356,847832695,847696068,10247,5770,12783429631,12656072085,100,100,100,100,2.51,6.17,6.63,6.7
-82923,56,035,56035,558,497,2875952550,2835209188,558,497,2875952550,2835209188,10247,5770,12783429631,12656072085,100,100,100,100,5.45,8.61,22.5,22.4
-82925,56,035,56035,290,330,1750198417,1716464655,304,336,1845498837,1811183581,10247,5770,12783429631,12656072085,95.39,98.21,94.84,94.77,2.83,5.72,13.69,13.56
-82925,56,039,56039,14,6,95300420,94718926,304,336,1845498837,1811183581,21294,12813,10920249520,10347983791,4.61,1.79,5.16,5.23,0.07,0.05,0.87,0.92
-82929,56,037,56037,70,53,29594341,29578224,70,53,29594341,29578224,43806,18735,27171784280,27004896786,100,100,100,100,0.16,0.28,0.11,0.11
-82930,49,043,49043,35,844,1738612697,1729939076,14614,6888,2979411735,2959974091,36324,26545,4874281491,4847710464,0.24,12.25,58.35,58.44,0.1,3.18,35.67,35.69
-82930,56,041,56041,14579,6044,1240799038,1230035015,14614,6888,2979411735,2959974091,21118,8713,5406791225,5390449560,99.76,87.75,41.65,41.56,69.04,69.37,22.95,22.82
-82932,56,035,56035,0,12,573412811,573409932,836,391,1342471199,1336504791,10247,5770,12783429631,12656072085,0,3.07,42.71,42.9,0,0.21,4.49,4.53
-82932,56,037,56037,836,379,769058388,763094859,836,391,1342471199,1336504791,43806,18735,27171784280,27004896786,100,96.93,57.29,57.1,1.91,2.02,2.83,2.83
-82933,56,041,56041,759,349,183081965,182411930,759,349,183081965,182411930,21118,8713,5406791225,5390449560,100,100,100,100,3.59,4.01,3.39,3.38
-82934,56,037,56037,185,90,58501595,58501595,185,90,58501595,58501595,43806,18735,27171784280,27004896786,100,100,100,100,0.42,0.48,0.22,0.22
-82935,56,037,56037,13121,5258,429227434,422333324,13121,5258,429227434,422333324,43806,18735,27171784280,27004896786,100,100,100,100,29.95,28.07,1.58,1.56
-82936,56,041,56041,49,27,336006408,335956959,49,27,336006408,335956959,21118,8713,5406791225,5390449560,100,100,100,100,0.23,0.31,6.21,6.23
-82937,56,041,56041,3654,1390,314143557,312446946,3654,1390,314143557,312446946,21118,8713,5406791225,5390449560,100,100,100,100,17.3,15.95,5.81,5.8
-82938,56,037,56037,227,159,534542283,456741905,227,159,534542283,456741905,43806,18735,27171784280,27004896786,100,100,100,100,0.52,0.85,1.97,1.69
-82939,56,041,56041,1861,727,204908645,204751851,1861,727,204908645,204751851,21118,8713,5406791225,5390449560,100,100,100,100,8.81,8.34,3.79,3.8
-82941,56,035,56035,5028,2603,1163628333,1123566431,5028,2603,1163628333,1123566431,10247,5770,12783429631,12656072085,100,100,100,100,49.07,45.11,9.1,8.88
-82942,56,037,56037,123,109,108046036,107736736,123,109,108046036,107736736,43806,18735,27171784280,27004896786,100,100,100,100,0.28,0.58,0.4,0.4
-82943,56,037,56037,301,158,188861584,188861584,301,158,188861584,188861584,43806,18735,27171784280,27004896786,100,100,100,100,0.69,0.84,0.7,0.7
-82944,56,041,56041,216,174,511592073,509034565,216,174,511592073,509034565,21118,8713,5406791225,5390449560,100,100,100,100,1.02,2,9.46,9.44
-82945,56,037,56037,351,193,332349234,332146986,351,193,332349234,332146986,43806,18735,27171784280,27004896786,100,100,100,100,0.8,1.03,1.22,1.23
-83001,56,035,56035,6,5,1203218,1203218,15851,8410,2102661090,2092228669,10247,5770,12783429631,12656072085,0.04,0.06,0.06,0.06,0.06,0.09,0.01,0.01
-83001,56,039,56039,15845,8405,2101457872,2091025451,15851,8410,2102661090,2092228669,21294,12813,10920249520,10347983791,99.96,99.94,99.94,99.94,74.41,65.6,19.24,20.21
-83011,56,039,56039,240,184,747446632,743334407,240,184,747446632,743334407,21294,12813,10920249520,10347983791,100,100,100,100,1.13,1.44,6.84,7.18
-83012,56,039,56039,180,201,435210298,420341300,180,201,435210298,420341300,21294,12813,10920249520,10347983791,100,100,100,100,0.85,1.57,3.99,4.06
-83013,56,039,56039,395,457,2458721948,2329441571,395,457,2458721948,2329441571,21294,12813,10920249520,10347983791,100,100,100,100,1.85,3.57,22.52,22.51
-83014,56,039,56039,3595,2544,556646887,554210577,3595,2544,556646887,554210577,21294,12813,10920249520,10347983791,100,100,100,100,16.88,19.85,5.1,5.36
-83025,56,039,56039,400,603,35244047,34758376,400,603,35244047,34758376,21294,12813,10920249520,10347983791,100,100,100,100,1.88,4.71,0.32,0.34
-83101,56,023,56023,3104,1677,1957098590,1948912324,3104,1677,1957098590,1948912324,18106,8946,10607051739,10557126438,100,100,100,100,17.14,18.75,18.45,18.46
-83110,56,023,56023,4307,1753,382377889,382238995,4307,1753,382377889,382238995,18106,8946,10607051739,10557126438,100,100,100,100,23.79,19.6,3.6,3.62
-83111,16,029,16029,54,26,256816857,256636722,519,228,297657873,297477738,6963,3226,4658286901,4569116224,10.4,11.4,86.28,86.27,0.78,0.81,5.51,5.62
-83111,56,023,56023,465,202,40841016,40841016,519,228,297657873,297477738,18106,8946,10607051739,10557126438,89.6,88.6,13.72,13.73,2.57,2.26,0.39,0.39
-83112,56,023,56023,666,313,357663285,357517259,666,313,357663285,357517259,18106,8946,10607051739,10557126438,100,100,100,100,3.68,3.5,3.37,3.39
-83113,56,035,56035,3278,1316,2697580472,2688500283,3278,1316,2697580472,2688500283,10247,5770,12783429631,12656072085,100,100,100,100,31.99,22.81,21.1,21.24
-83114,56,023,56023,828,344,993480356,992953290,828,344,993480356,992953290,18106,8946,10607051739,10557126438,100,100,100,100,4.57,3.85,9.37,9.41
-83115,56,035,56035,830,651,1528295789,1526090560,830,651,1528295789,1526090560,10247,5770,12783429631,12656072085,100,100,100,100,8.1,11.28,11.96,12.06
-83116,56,023,56023,728,357,4029156,4021055,728,357,4029156,4021055,18106,8946,10607051739,10557126438,100,100,100,100,4.02,3.99,0.04,0.04
-83118,56,023,56023,1139,500,51239079,51166178,1139,500,51239079,51166178,18106,8946,10607051739,10557126438,100,100,100,100,6.29,5.59,0.48,0.48
-83119,56,023,56023,172,74,34419254,34419254,172,74,34419254,34419254,18106,8946,10607051739,10557126438,100,100,100,100,0.95,0.83,0.32,0.33
-83120,16,029,16029,112,65,362108879,362058597,471,226,389258499,389135695,6963,3226,4658286901,4569116224,23.78,28.76,93.03,93.04,1.61,2.01,7.77,7.92
-83120,56,023,56023,359,161,27149620,27077098,471,226,389258499,389135695,18106,8946,10607051739,10557126438,76.22,71.24,6.97,6.96,1.98,1.8,0.26,0.26
-83121,56,023,56023,14,8,1091604,1091604,14,8,1091604,1091604,18106,8946,10607051739,10557126438,100,100,100,100,0.08,0.09,0.01,0.01
-83122,56,023,56023,494,195,33469896,33469896,494,195,33469896,33469896,18106,8946,10607051739,10557126438,100,100,100,100,2.73,2.18,0.32,0.32
-83123,56,023,56023,711,358,231366495,229686422,711,358,231366495,229686422,18106,8946,10607051739,10557126438,100,100,100,100,3.93,4,2.18,2.18
-83124,56,023,56023,137,71,251555087,251540950,137,71,251555087,251540950,18106,8946,10607051739,10557126438,100,100,100,100,0.76,0.79,2.37,2.38
-83126,56,023,56023,334,180,160107035,159982754,334,180,160107035,159982754,18106,8946,10607051739,10557126438,100,100,100,100,1.84,2.01,1.51,1.52
-83127,56,023,56023,3041,1748,195082399,195056850,3041,1748,195082399,195056850,18106,8946,10607051739,10557126438,100,100,100,100,16.8,19.54,1.84,1.85
-83128,56,023,56023,1601,985,1177094517,1171601177,1601,985,1177094517,1171601177,18106,8946,10607051739,10557126438,100,100,100,100,8.84,11.01,11.1,11.1
-83201,16,005,16005,37199,15174,91714408,91680813,37199,15174,91714408,91680813,82839,33191,2971835925,2880035137,100,100,100,100,44.91,45.72,3.09,3.18
-83202,16,005,16005,20369,7382,319448546,319131656,21608,7824,366092302,365775336,82839,33191,2971835925,2880035137,94.27,94.35,87.26,87.25,24.59,22.24,10.75,11.08
-83202,16,011,16011,1239,442,46643756,46643680,21608,7824,366092302,365775336,45607,16141,5491826013,5423378296,5.73,5.65,12.74,12.75,2.72,2.74,0.85,0.86
-83203,16,011,16011,309,111,35460854,35460854,309,111,35460854,35460854,45607,16141,5491826013,5423378296,100,100,100,100,0.68,0.69,0.65,0.65
-83204,16,005,16005,17156,7323,227068188,226483610,18026,7684,597009935,595731589,82839,33191,2971835925,2880035137,95.17,95.3,38.03,38.02,20.71,22.06,7.64,7.86
-83204,16,077,16077,870,361,369941747,369247979,18026,7684,597009935,595731589,7817,2944,3736486872,3636974257,4.83,4.7,61.97,61.98,11.13,12.26,9.9,10.15
-83209,16,005,16005,1175,238,1717136,1717136,1175,238,1717136,1717136,82839,33191,2971835925,2880035137,100,100,100,100,1.42,0.72,0.06,0.06
-83210,16,011,16011,3449,1195,750025926,697248354,3449,1195,750025926,697248354,45607,16141,5491826013,5423378296,100,100,100,100,7.56,7.4,13.66,12.86
-83211,16,031,16031,89,33,255659274,248812916,6374,2326,1566294062,1510262293,22952,8372,6682899768,6643528786,1.4,1.42,16.32,16.47,0.39,0.39,3.83,3.75
-83211,16,077,16077,6285,2293,1310634788,1261449377,6374,2326,1566294062,1510262293,7817,2944,3736486872,3636974257,98.6,98.58,83.68,83.53,80.4,77.89,35.08,34.68
-83212,16,071,16071,6,6,23069790,23069790,137,77,537576482,537467323,4286,1906,3112138728,3108143349,4.38,7.79,4.29,4.29,0.14,0.31,0.74,0.74
-83212,16,077,16077,131,71,514506692,514397533,137,77,537576482,537467323,7817,2944,3736486872,3636974257,95.62,92.21,95.71,95.71,1.68,2.41,13.77,14.14
-83213,16,023,16023,1644,803,1630738702,1629475297,1644,803,1630738702,1629475297,2891,1354,5785248140,5779990424,100,100,100,100,56.87,59.31,28.19,28.19
-83214,16,005,16005,671,234,290830796,290549949,671,234,290830796,290549949,82839,33191,2971835925,2880035137,100,100,100,100,0.81,0.71,9.79,10.09
-83215,16,011,16011,26,47,202315,202315,26,47,202315,202315,45607,16141,5491826013,5423378296,100,100,100,100,0.06,0.29,0,0
-83217,16,029,16029,843,383,763856640,762786699,843,383,763856640,762786699,6963,3226,4658286901,4569116224,100,100,100,100,12.11,11.87,16.4,16.69
-83218,16,011,16011,338,122,1039366,1039366,338,122,1039366,1039366,45607,16141,5491826013,5423378296,100,100,100,100,0.74,0.76,0.02,0.02
-83220,16,007,16007,137,56,66535244,65915289,137,56,66535244,65915289,5986,3914,2717954619,2524680722,100,100,100,100,2.29,1.43,2.45,2.61
-83221,16,011,16011,27021,9627,2090095043,2083066302,27021,9627,2090095043,2083066302,45607,16141,5491826013,5423378296,100,100,100,100,59.25,59.64,38.06,38.41
-83223,16,007,16007,139,78,4782860,4775290,139,78,4782860,4775290,5986,3914,2717954619,2524680722,100,100,100,100,2.32,1.99,0.18,0.19
-83226,16,037,16037,2497,1356,2872777719,2867437985,2504,1434,5791672654,5782990454,4368,3103,12787562728,12745176171,99.72,94.56,49.6,49.58,57.17,43.7,22.47,22.5
-83226,16,059,16059,7,78,2918894935,2915552469,2504,1434,5791672654,5782990454,7936,4729,11833012972,11819118494,0.28,5.44,50.4,50.42,0.09,1.65,24.67,24.67
-83227,16,037,16037,142,168,1019162482,1015081563,142,168,1019162482,1015081563,4368,3103,12787562728,12745176171,100,100,100,100,3.25,5.41,7.97,7.96
-83228,16,041,16041,522,185,173417026,173003630,522,185,173417026,173003630,12786,4528,1731000757,1718831658,100,100,100,100,4.08,4.09,10.02,10.07
-83232,16,041,16041,467,140,25502272,25452142,467,140,25502272,25452142,12786,4528,1731000757,1718831658,100,100,100,100,3.65,3.09,1.47,1.48
-83233,16,007,16007,109,45,74522460,74249842,109,45,74522460,74249842,5986,3914,2717954619,2524680722,100,100,100,100,1.82,1.15,2.74,2.94
-83234,16,005,16005,1213,533,713099448,712824601,1213,533,713099448,712824601,82839,33191,2971835925,2880035137,100,100,100,100,1.46,1.61,24,24.75
-83235,16,037,16037,55,18,91900066,91531371,99,53,672114106,671686928,4368,3103,12787562728,12745176171,55.56,33.96,13.67,13.63,1.26,0.58,0.72,0.72
-83235,16,059,16059,44,35,580214040,580155557,99,53,672114106,671686928,7936,4729,11833012972,11819118494,44.44,66.04,86.33,86.37,0.55,0.74,4.9,4.91
-83236,16,011,16011,2253,824,480681741,479002983,2275,840,611739952,610005994,45607,16141,5491826013,5423378296,99.03,98.1,78.58,78.52,4.94,5.11,8.75,8.83
-83236,16,019,16019,22,16,131058211,131003011,2275,840,611739952,610005994,104234,39731,4922623618,4833116989,0.97,1.9,21.42,21.48,0.02,0.04,2.66,2.71
-83237,16,041,16041,1146,385,58117972,57935180,1146,385,58117972,57935180,12786,4528,1731000757,1718831658,100,100,100,100,8.96,8.5,3.36,3.37
-83238,16,007,16007,109,63,193715952,193135813,109,63,193715952,193135813,5986,3914,2717954619,2524680722,100,100,100,100,1.82,1.61,7.13,7.65
-83239,16,007,16007,572,235,85174733,84793142,572,235,85174733,84793142,5986,3914,2717954619,2524680722,100,100,100,100,9.56,6,3.13,3.36
-83241,16,029,16029,1975,798,544246779,542357209,1980,802,544796920,542907350,6963,3226,4658286901,4569116224,99.75,99.5,99.9,99.9,28.36,24.74,11.68,11.87
-83241,16,041,16041,5,4,550141,550141,1980,802,544796920,542907350,12786,4528,1731000757,1718831658,0.25,0.5,0.1,0.1,0.04,0.09,0.03,0.03
-83243,16,071,16071,80,41,193687679,193185685,80,41,193687679,193185685,4286,1906,3112138728,3108143349,100,100,100,100,1.87,2.15,6.22,6.22
-83244,16,023,16023,358,153,2176185652,2173756958,358,153,2176185652,2173756958,2891,1354,5785248140,5779990424,100,100,100,100,12.38,11.3,37.62,37.61
-83245,16,005,16005,2257,825,272684911,272236653,2257,825,272684911,272236653,82839,33191,2971835925,2880035137,100,100,100,100,2.72,2.49,9.18,9.45
-83246,16,005,16005,1069,767,336401692,335762343,1069,767,336401692,335762343,82839,33191,2971835925,2880035137,100,100,100,100,1.29,2.31,11.32,11.66
-83250,16,005,16005,1637,670,198781337,198183852,1637,670,198781337,198183852,82839,33191,2971835925,2880035137,100,100,100,100,1.98,2.02,6.69,6.88
-83251,16,037,16037,1097,782,2495743761,2488353852,1097,782,2495743761,2488353852,4368,3103,12787562728,12745176171,100,100,100,100,25.11,25.2,19.52,19.52
-83252,16,071,16071,4154,1838,2400547629,2397057245,4154,1838,2400547629,2397057245,4286,1906,3112138728,3108143349,100,100,100,100,96.92,96.43,77.13,77.12
-83253,16,037,16037,67,52,2012972358,2011867592,165,107,2177089049,2175823627,4368,3103,12787562728,12745176171,40.61,48.6,92.46,92.46,1.53,1.68,15.74,15.79
-83253,16,059,16059,98,55,164116691,163956035,165,107,2177089049,2175823627,7936,4729,11833012972,11819118494,59.39,51.4,7.54,7.54,1.23,1.16,1.39,1.39
-83254,16,007,16007,3617,1785,1187994421,1180469928,3617,1793,1250689529,1243139525,5986,3914,2717954619,2524680722,100,99.55,94.99,94.96,60.42,45.61,43.71,46.76
-83254,16,029,16029,0,8,62695108,62669597,3617,1793,1250689529,1243139525,6963,3226,4658286901,4569116224,0,0.45,5.01,5.04,0,0.25,1.35,1.37
-83255,16,023,16023,889,397,686842275,685997643,1213,590,1161875992,1160590518,2891,1354,5785248140,5779990424,73.29,67.29,59.11,59.11,30.75,29.32,11.87,11.87
-83255,16,037,16037,324,193,475033717,474592875,1213,590,1161875992,1160590518,4368,3103,12787562728,12745176171,26.71,32.71,40.89,40.89,7.42,6.22,3.71,3.72
-83261,16,007,16007,536,331,54671646,54123496,536,331,54671646,54123496,5986,3914,2717954619,2524680722,100,100,100,100,8.95,8.46,2.01,2.14
-83262,16,011,16011,1386,491,539499855,537501625,1386,491,539499855,537501625,45607,16141,5491826013,5423378296,100,100,100,100,3.04,3.04,9.82,9.91
-83263,16,041,16041,9258,3363,1047828065,1039289256,9258,3363,1047828065,1039289256,12786,4528,1731000757,1718831658,100,100,100,100,72.41,74.27,60.53,60.46
-83271,16,077,16077,531,219,671840844,671771620,531,219,671840844,671771620,7817,2944,3736486872,3636974257,100,100,100,100,6.79,7.44,17.98,18.47
-83272,16,007,16007,313,440,438599369,343789277,313,440,438599369,343789277,5986,3914,2717954619,2524680722,100,100,100,100,5.23,11.24,16.14,13.62
-83274,16,011,16011,9238,3146,237540164,235955261,9246,3149,237584998,236000095,45607,16141,5491826013,5423378296,99.91,99.9,99.98,99.98,20.26,19.49,4.33,4.35
-83274,16,019,16019,8,3,44834,44834,9246,3149,237584998,236000095,104234,39731,4922623618,4833116989,0.09,0.1,0.02,0.02,0.01,0.01,0,0
-83276,16,007,16007,155,80,30904834,30731932,4097,1987,1162533465,1094084363,5986,3914,2717954619,2524680722,3.78,4.03,2.66,2.81,2.59,2.04,1.14,1.22
-83276,16,029,16029,3942,1907,1131628631,1063352431,4097,1987,1162533465,1094084363,6963,3226,4658286901,4569116224,96.22,95.97,97.34,97.19,56.61,59.11,24.29,23.27
-83277,16,011,16011,111,56,26879107,26593959,111,56,26879107,26593959,45607,16141,5491826013,5423378296,100,100,100,100,0.24,0.35,0.49,0.49
-83278,16,037,16037,186,534,3819972625,3796310933,186,534,3819972625,3796310933,4368,3103,12787562728,12745176171,100,100,100,100,4.26,17.21,29.87,29.79
-83281,16,005,16005,93,43,106477037,105991275,93,43,106477037,105991275,82839,33191,2971835925,2880035137,100,100,100,100,0.11,0.13,3.58,3.68
-83283,16,041,16041,147,58,150707451,148628567,147,58,150707451,148628567,12786,4528,1731000757,1718831658,100,100,100,100,1.15,1.28,8.71,8.65
-83285,16,019,16019,94,66,778524015,734632196,131,98,867906378,821404669,104234,39731,4922623618,4833116989,71.76,67.35,89.7,89.44,0.09,0.17,15.82,15.2
-83285,16,029,16029,37,32,89382363,86772473,131,98,867906378,821404669,6963,3226,4658286901,4569116224,28.24,32.65,10.3,10.56,0.53,0.99,1.92,1.9
-83286,16,041,16041,1241,393,188898418,188010425,1241,393,188898418,188010425,12786,4528,1731000757,1718831658,100,100,100,100,9.71,8.68,10.91,10.94
-83287,16,007,16007,299,801,162443868,74536783,299,801,162443868,74536783,5986,3914,2717954619,2524680722,100,100,100,100,4.99,20.46,5.98,2.95
-83301,16,053,16053,32,18,1436220,1197649,52010,21053,733506415,729567435,22374,8101,1559565030,1546700901,0.06,0.09,0.2,0.16,0.14,0.22,0.09,0.08
-83301,16,083,16083,51978,21035,732070195,728369786,52010,21053,733506415,729567435,77230,31072,4994335190,4975917336,99.94,99.91,99.8,99.84,67.3,67.7,14.66,14.64
-83302,16,073,16073,52,86,793564020,793279459,196,162,1724244412,1723490599,11526,4781,19935091492,19853582270,26.53,53.09,46.02,46.03,0.45,1.8,3.98,4
-83302,16,083,16083,144,76,930680392,930211140,196,162,1724244412,1723490599,77230,31072,4994335190,4975917336,73.47,46.91,53.98,53.97,0.19,0.24,18.63,18.69
-83311,16,031,16031,562,254,271236084,270800193,562,254,271236084,270800193,22952,8372,6682899768,6643528786,100,100,100,100,2.45,3.03,4.06,4.08
-83312,16,031,16031,143,65,153553782,153513332,168,86,333832796,333792346,22952,8372,6682899768,6643528786,85.12,75.58,46,45.99,0.62,0.78,2.3,2.31
-83312,49,003,49003,25,21,180279014,180279014,168,86,333832796,333792346,49975,17326,17428849266,14880907163,14.88,24.42,54,54.01,0.05,0.12,1.03,1.21
-83313,16,013,16013,3625,1669,609094899,597497339,3625,1669,609094899,597497339,21376,15050,6891196959,6846856430,100,100,100,100,16.96,11.09,8.84,8.73
-83314,16,047,16047,888,394,290397619,287983320,898,406,292555725,289934435,15464,6093,1900321223,1888031360,98.89,97.04,99.26,99.33,5.74,6.47,15.28,15.25
-83314,16,083,16083,10,12,2158106,1951115,898,406,292555725,289934435,77230,31072,4994335190,4975917336,1.11,2.96,0.74,0.67,0.01,0.04,0.04,0.04
-83316,16,047,16047,47,29,4009382,3402833,9626,4069,678080641,674044549,15464,6093,1900321223,1888031360,0.49,0.71,0.59,0.5,0.3,0.48,0.21,0.18
-83316,16,073,16073,3,3,51836549,51675120,9626,4069,678080641,674044549,11526,4781,19935091492,19853582270,0.03,0.07,7.64,7.67,0.03,0.06,0.26,0.26
-83316,16,083,16083,9576,4037,622234710,618966596,9626,4069,678080641,674044549,77230,31072,4994335190,4975917336,99.48,99.21,91.76,91.83,12.4,12.99,12.46,12.44
-83318,16,031,16031,16888,6072,670567132,663492856,17226,6203,671415132,664100952,22952,8372,6682899768,6643528786,98.04,97.89,99.87,99.91,73.58,72.53,10.03,9.99
-83318,16,067,16067,338,131,848000,608096,17226,6203,671415132,664100952,20069,7665,1975973419,1962152486,1.96,2.11,0.13,0.09,1.68,1.71,0.04,0.03
-83320,16,013,16013,1006,447,1502084151,1497186894,1006,447,1502084151,1497186894,21376,15050,6891196959,6846856430,100,100,100,100,4.71,2.97,21.8,21.87
-83321,16,083,16083,550,245,226451483,225994182,550,245,226451483,225994182,77230,31072,4994335190,4975917336,100,100,100,100,0.71,0.79,4.53,4.54
-83322,16,025,16025,42,25,51425230,51371060,42,25,51425230,51371060,1117,831,2794460512,2782925142,100,100,100,100,3.76,3.01,1.84,1.85
-83323,16,031,16031,1951,685,710356869,707853830,1951,685,710356869,707853830,22952,8372,6682899768,6643528786,100,100,100,100,8.5,8.18,10.63,10.65
-83324,16,063,16063,788,236,228252586,227743693,788,236,228252586,227743693,5208,1976,3123233659,3111625420,100,100,100,100,15.13,11.94,7.31,7.32
-83325,16,053,16053,918,389,98367125,97612318,918,389,98367125,97612318,22374,8101,1559565030,1546700901,100,100,100,100,4.1,4.8,6.31,6.31
-83327,16,025,16025,970,709,2463130415,2452577392,970,709,2463130415,2452577392,1117,831,2794460512,2782925142,100,100,100,100,86.84,85.32,88.14,88.13
-83328,16,083,16083,5347,2106,175096944,173179018,5347,2106,175096944,173179018,77230,31072,4994335190,4975917336,100,100,100,100,6.92,6.78,3.51,3.48
-83330,16,047,16047,6599,2634,306206161,304214395,6599,2634,306206161,304214395,15464,6093,1900321223,1888031360,100,100,100,100,42.67,43.23,16.11,16.11
-83332,16,047,16047,2191,1061,98457889,95089275,2361,1186,217370448,210898348,15464,6093,1900321223,1888031360,92.8,89.46,45.29,45.09,14.17,17.41,5.18,5.04
-83332,16,083,16083,170,125,118912559,115809073,2361,1186,217370448,210898348,77230,31072,4994335190,4975917336,7.2,10.54,54.71,54.91,0.22,0.4,2.38,2.33
-83333,16,013,16013,10472,5025,890467971,888406844,10472,5025,890467971,888406844,21376,15050,6891196959,6846856430,100,100,100,100,48.99,33.39,12.92,12.98
-83334,16,083,16083,2060,760,206323512,205098905,2060,760,206323512,205098905,77230,31072,4994335190,4975917336,100,100,100,100,2.67,2.45,4.13,4.12
-83335,16,053,16053,1840,686,268836458,263371529,1840,686,268836458,263371529,22374,8101,1559565030,1546700901,100,100,100,100,8.22,8.47,17.24,17.03
-83336,16,067,16067,4951,1877,101571629,96583532,4951,1877,101571629,96583532,20069,7665,1975973419,1962152486,100,100,100,100,24.67,24.49,5.14,4.92
-83337,16,025,16025,28,22,170811038,170712703,33,34,607884118,607599613,1117,831,2794460512,2782925142,84.85,64.71,28.1,28.1,2.51,2.65,6.11,6.13
-83337,16,039,16039,5,12,437073080,436886910,33,34,607884118,607599613,27038,12162,8030918009,7963533304,15.15,35.29,71.9,71.9,0.02,0.1,5.44,5.49
-83338,16,047,16047,334,107,27823329,27700090,19782,7067,718120966,713261871,15464,6093,1900321223,1888031360,1.69,1.51,3.87,3.88,2.16,1.76,1.46,1.47
-83338,16,053,16053,19427,6953,681662387,676927202,19782,7067,718120966,713261871,22374,8101,1559565030,1546700901,98.21,98.39,94.92,94.91,86.83,85.83,43.71,43.77
-83338,16,063,16063,21,7,8635250,8634579,19782,7067,718120966,713261871,5208,1976,3123233659,3111625420,0.11,0.1,1.2,1.21,0.4,0.35,0.28,0.28
-83340,16,013,16013,4682,5187,1447252602,1439497179,4682,5187,1447252602,1439497179,21376,15050,6891196959,6846856430,100,100,100,100,21.9,34.47,21,21.02
-83341,16,083,16083,6491,2327,261700479,260488194,6491,2327,261700479,260488194,77230,31072,4994335190,4975917336,100,100,100,100,8.4,7.49,5.24,5.23
-83342,16,031,16031,1252,475,2373857402,2372524392,1371,543,3200554939,3199208991,22952,8372,6682899768,6643528786,91.32,87.48,74.17,74.16,5.45,5.67,35.52,35.71
-83342,16,071,16071,46,21,494833630,494830629,1371,543,3200554939,3199208991,4286,1906,3112138728,3108143349,3.36,3.87,15.46,15.47,1.07,1.1,15.9,15.92
-83342,49,003,49003,73,47,331863907,331853970,1371,543,3200554939,3199208991,49975,17326,17428849266,14880907163,5.32,8.66,10.37,10.37,0.15,0.27,1.9,2.23
-83344,16,031,16031,226,82,154929685,154855400,1128,412,299281828,297784043,22952,8372,6682899768,6643528786,20.04,19.9,51.77,52,0.98,0.98,2.32,2.33
-83344,16,083,16083,902,330,144352143,142928643,1128,412,299281828,297784043,77230,31072,4994335190,4975917336,79.96,80.1,48.23,48,1.17,1.06,2.89,2.87
-83346,16,031,16031,1442,546,809502986,806830844,1442,546,809502986,806830844,22952,8372,6682899768,6643528786,100,100,100,100,6.28,6.52,12.11,12.14
-83347,16,053,16053,157,55,103445272,103270580,3258,1234,548623726,543948696,22374,8101,1559565030,1546700901,4.82,4.46,18.86,18.99,0.7,0.68,6.63,6.68
-83347,16,063,16063,144,49,197542730,194391864,3258,1234,548623726,543948696,5208,1976,3123233659,3111625420,4.42,3.97,36.01,35.74,2.76,2.48,6.32,6.25
-83347,16,067,16067,2957,1130,247635724,246286252,3258,1234,548623726,543948696,20069,7665,1975973419,1962152486,90.76,91.57,45.14,45.28,14.73,14.74,12.53,12.55
-83348,16,013,16013,132,74,172147666,171948032,132,74,172147666,171948032,21376,15050,6891196959,6846856430,100,100,100,100,0.62,0.49,2.5,2.51
-83349,16,063,16063,1062,414,189832496,188453338,1062,414,189832496,188453338,5208,1976,3123233659,3111625420,100,100,100,100,20.39,20.95,6.08,6.06
-83350,16,013,16013,46,17,59532057,59474027,12268,4697,796896445,774121819,21376,15050,6891196959,6846856430,0.37,0.36,7.47,7.68,0.22,0.11,0.86,0.87
-83350,16,031,16031,399,153,172575963,154841017,12268,4697,796896445,774121819,22952,8372,6682899768,6643528786,3.25,3.26,21.66,20,1.74,1.83,2.58,2.33
-83350,16,067,16067,11823,4527,564788425,559806775,12268,4697,796896445,774121819,20069,7665,1975973419,1962152486,96.37,96.38,70.87,72.32,58.91,59.06,28.58,28.53
-83352,16,013,16013,60,141,15473682,15311131,3330,1485,569854780,566408114,21376,15050,6891196959,6846856430,1.8,9.49,2.72,2.7,0.28,0.94,0.22,0.22
-83352,16,025,16025,77,75,109093829,108263987,3330,1485,569854780,566408114,1117,831,2794460512,2782925142,2.31,5.05,19.14,19.11,6.89,9.03,3.9,3.89
-83352,16,063,16063,3193,1269,445287269,442832996,3330,1485,569854780,566408114,5208,1976,3123233659,3111625420,95.89,85.45,78.14,78.18,61.31,64.22,14.26,14.23
-83353,16,013,16013,1335,2469,23242432,23211253,1335,2469,23242432,23211253,21376,15050,6891196959,6846856430,100,100,100,100,6.25,16.41,0.34,0.34
-83354,16,013,16013,18,21,49743,49743,18,21,49743,49743,21376,15050,6891196959,6846856430,100,100,100,100,0.08,0.14,0,0
-83355,16,047,16047,5405,1867,300035567,297487877,5405,1867,300035567,297487877,15464,6093,1900321223,1888031360,100,100,100,100,34.95,30.64,15.79,15.76
-83401,16,019,16019,37953,13659,408199309,404026972,37966,13664,408952780,404765983,104234,39731,4922623618,4833116989,99.97,99.96,99.82,99.82,36.41,34.38,8.29,8.36
-83401,16,051,16051,13,5,753471,739011,37966,13664,408952780,404765983,26140,8722,2863422472,2832154816,0.03,0.04,0.18,0.18,0.05,0.06,0.03,0.03
-83402,16,011,16011,237,60,2794879,2794879,26069,10427,397083013,392831364,45607,16141,5491826013,5423378296,0.91,0.58,0.7,0.71,0.52,0.37,0.05,0.05
-83402,16,019,16019,25560,10276,382892676,378978736,26069,10427,397083013,392831364,104234,39731,4922623618,4833116989,98.05,98.55,96.43,96.47,24.52,25.86,7.78,7.84
-83402,16,051,16051,272,91,11395458,11057749,26069,10427,397083013,392831364,26140,8722,2863422472,2832154816,1.04,0.87,2.87,2.81,1.04,1.04,0.4,0.39
-83404,16,019,16019,21606,8725,69280721,69186526,21606,8725,69280721,69186526,104234,39731,4922623618,4833116989,100,100,100,100,20.73,21.96,1.41,1.43
-83406,16,019,16019,15902,5494,262300733,260207293,15902,5494,262300733,260207293,104234,39731,4922623618,4833116989,100,100,100,100,15.26,13.83,5.33,5.38
-83414,56,039,56039,544,303,892136233,887484784,544,303,892136233,887484784,21294,12813,10920249520,10347983791,100,100,100,100,2.55,2.36,8.17,8.58
-83420,16,043,16043,2539,1221,1188591847,1177347790,2539,1221,1188591847,1177347790,13242,8531,4909800149,4826508353,100,100,100,100,19.17,14.31,24.21,24.39
-83421,16,043,16043,319,135,37935423,37270777,319,135,37935423,37270777,13242,8531,4909800149,4826508353,100,100,100,100,2.41,1.58,0.77,0.77
-83422,16,081,16081,3392,1960,348850497,348274242,3392,1960,348850497,348274242,10170,5478,1166943708,1164084404,100,100,100,100,33.35,35.78,29.89,29.92
-83423,16,033,16033,860,408,985634376,985359534,860,408,985634376,985359534,982,531,4571695543,4569218695,100,100,100,100,87.58,76.84,21.56,21.57
-83424,16,081,16081,290,138,151720893,151413079,290,138,151720893,151413079,10170,5478,1166943708,1164084404,100,100,100,100,2.85,2.52,13,13.01
-83425,16,051,16051,581,199,267493694,255159950,581,199,267493694,255159950,26140,8722,2863422472,2832154816,100,100,100,100,2.22,2.28,9.34,9.01
-83427,16,019,16019,1372,447,1935761,1935761,1372,447,1935761,1935761,104234,39731,4922623618,4833116989,100,100,100,100,1.32,1.13,0.04,0.04
-83428,16,019,16019,416,449,575009414,556789027,416,449,575009414,556789027,104234,39731,4922623618,4833116989,100,100,100,100,0.4,1.13,11.68,11.52
-83429,16,043,16043,1048,3815,1517159816,1455106558,1048,3815,1517159816,1455106558,13242,8531,4909800149,4826508353,100,100,100,100,7.91,44.72,30.9,30.15
-83431,16,051,16051,876,324,33228046,32670361,876,324,33228046,32670361,26140,8722,2863422472,2832154816,100,100,100,100,3.35,3.71,1.16,1.15
-83433,16,043,16043,44,191,2732388,2732388,44,191,2732388,2732388,13242,8531,4909800149,4826508353,100,100,100,100,0.33,2.24,0.06,0.06
-83434,16,051,16051,1504,548,83634777,79271246,1741,627,113915531,107949177,26140,8722,2863422472,2832154816,86.39,87.4,73.42,73.43,5.75,6.28,2.92,2.8
-83434,16,065,16065,237,79,30280754,28677931,1741,627,113915531,107949177,37536,11280,1225649803,1215237613,13.61,12.6,26.58,26.57,0.63,0.7,2.47,2.36
-83435,16,033,16033,68,18,45356349,45352667,653,230,359082383,358976388,982,531,4571695543,4569218695,10.41,7.83,12.63,12.63,6.92,3.39,0.99,0.99
-83435,16,051,16051,585,212,313726034,313623721,653,230,359082383,358976388,26140,8722,2863422472,2832154816,89.59,92.17,87.37,87.37,2.24,2.43,10.96,11.07
-83436,16,043,16043,348,121,14446335,14173293,491,180,242975623,242318571,13242,8531,4909800149,4826508353,70.88,67.22,5.95,5.85,2.63,1.42,0.29,0.29
-83436,16,065,16065,109,48,207005630,206623250,491,180,242975623,242318571,37536,11280,1225649803,1215237613,22.2,26.67,85.2,85.27,0.29,0.43,16.89,17
-83436,16,081,16081,34,11,21523658,21522028,491,180,242975623,242318571,10170,5478,1166943708,1164084404,6.92,6.11,8.86,8.88,0.33,0.2,1.84,1.85
-83440,16,043,16043,754,215,21384122,20808102,34610,10622,450132209,441634579,13242,8531,4909800149,4826508353,2.18,2.02,4.75,4.71,5.69,2.52,0.44,0.43
-83440,16,065,16065,33856,10407,428748087,420826477,34610,10622,450132209,441634579,37536,11280,1225649803,1215237613,97.82,97.98,95.25,95.29,90.2,92.26,34.98,34.63
-83442,16,051,16051,19250,6274,244168105,239443064,19250,6274,244168105,239443064,26140,8722,2863422472,2832154816,100,100,100,100,73.64,71.93,8.53,8.45
-83443,16,019,16019,521,212,821627968,814642068,1107,459,846171095,838784857,104234,39731,4922623618,4833116989,47.06,46.19,97.1,97.12,0.5,0.53,16.69,16.86
-83443,16,051,16051,570,238,18859177,18458839,1107,459,846171095,838784857,26140,8722,2863422472,2832154816,51.49,51.85,2.23,2.2,2.18,2.73,0.66,0.65
-83443,16,065,16065,16,9,5683950,5683950,1107,459,846171095,838784857,37536,11280,1225649803,1215237613,1.45,1.96,0.67,0.68,0.04,0.08,0.46,0.47
-83444,16,051,16051,1381,471,400657109,397457454,1381,471,400657109,397457454,26140,8722,2863422472,2832154816,100,100,100,100,5.28,5.4,13.99,14.03
-83445,16,043,16043,7373,2529,491806120,486341329,7406,2544,495415165,489841870,13242,8531,4909800149,4826508353,99.55,99.41,99.27,99.29,55.68,29.64,10.02,10.08
-83445,16,065,16065,33,15,3609045,3500541,7406,2544,495415165,489841870,37536,11280,1225649803,1215237613,0.45,0.59,0.73,0.71,0.09,0.13,0.29,0.29
-83446,16,033,16033,48,73,180444437,180400602,48,73,180444437,180400602,982,531,4571695543,4569218695,100,100,100,100,4.89,13.75,3.95,3.95
-83448,16,043,16043,106,28,2164297,2088688,2451,707,77151122,76806287,13242,8531,4909800149,4826508353,4.32,3.96,2.81,2.72,0.8,0.33,0.04,0.04
-83448,16,065,16065,2345,679,74986825,74717599,2451,707,77151122,76806287,37536,11280,1225649803,1215237613,95.68,96.04,97.19,97.28,6.25,6.02,6.12,6.15
-83449,16,019,16019,249,215,968778887,958703215,249,215,968778887,958703215,104234,39731,4922623618,4833116989,100,100,100,100,0.24,0.54,19.68,19.84
-83450,16,051,16051,1104,357,250480244,247046358,1104,357,250480244,247046358,26140,8722,2863422472,2832154816,100,100,100,100,4.22,4.09,8.75,8.72
-83451,16,043,16043,711,273,11225958,11091649,791,313,35912949,35769603,13242,8531,4909800149,4826508353,89.89,87.22,31.26,31.01,5.37,3.2,0.23,0.23
-83451,16,065,16065,80,40,24686991,24677954,791,313,35912949,35769603,37536,11280,1225649803,1215237613,10.11,12.78,68.74,68.99,0.21,0.35,2.01,2.03
-83452,16,081,16081,1484,818,344364883,343136186,1484,818,344364883,343136186,10170,5478,1166943708,1164084404,100,100,100,100,14.59,14.93,29.51,29.48
-83454,16,019,16019,531,168,919923,919923,531,168,919923,919923,104234,39731,4922623618,4833116989,100,100,100,100,0.51,0.42,0.02,0.02
-83455,16,081,16081,4970,2551,300483777,299738869,4970,2551,300483777,299738869,10170,5478,1166943708,1164084404,100,100,100,100,48.87,46.57,25.75,25.75
-83460,16,065,16065,860,0,625021,625021,860,0,625021,625021,37536,11280,1225649803,1215237613,100,0,100,100,2.29,0,0.05,0.05
-83462,16,059,16059,464,256,279457538,278539305,464,256,279457538,278539305,7936,4729,11833012972,11819118494,100,100,100,100,5.85,5.41,2.36,2.36
-83463,16,059,16059,130,129,413782115,413763861,130,129,413782115,413763861,7936,4729,11833012972,11819118494,100,100,100,100,1.64,2.73,3.5,3.5
-83464,16,033,16033,6,14,95668439,95663945,345,273,2742978885,2742444933,982,531,4571695543,4569218695,1.74,5.13,3.49,3.49,0.61,2.64,2.09,2.09
-83464,16,059,16059,339,259,2647310446,2646780988,345,273,2742978885,2742444933,7936,4729,11833012972,11819118494,98.26,94.87,96.51,96.51,4.27,5.48,22.37,22.39
-83465,16,059,16059,109,78,480964982,480504467,109,78,480964982,480504467,7936,4729,11833012972,11819118494,100,100,100,100,1.37,1.65,4.06,4.07
-83466,16,059,16059,273,243,754988858,752640941,273,243,754988858,752640941,7936,4729,11833012972,11819118494,100,100,100,100,3.44,5.14,6.38,6.37
-83467,16,059,16059,6270,3398,1967473102,1961914237,6270,3398,1967473102,1961914237,7936,4729,11833012972,11819118494,100,100,100,100,79.01,71.85,16.63,16.6
-83468,16,059,16059,170,110,420412075,420394725,170,110,420412075,420394725,7936,4729,11833012972,11819118494,100,100,100,100,2.14,2.33,3.55,3.56
-83469,16,059,16059,32,88,1205398190,1204915909,32,88,1205398190,1204915909,7936,4729,11833012972,11819118494,100,100,100,100,0.4,1.86,10.19,10.19
-83501,16,069,16069,34230,15092,713794235,699576163,34230,15092,713794235,699576163,39265,17438,2217760463,2196547487,100,100,100,100,87.18,86.55,32.19,31.85
-83520,16,035,16035,194,105,34892601,29967550,194,105,34892601,29967550,8761,4453,6443854170,6364309391,100,100,100,100,2.21,2.36,0.54,0.47
-83522,16,049,16049,2215,850,1099225684,1094578278,2215,850,1099225684,1094578278,16267,8744,22023575681,21956239945,100,100,100,100,13.62,9.72,4.99,4.99
-83523,16,061,16061,759,388,491038040,490872216,759,388,491038040,490872216,3821,1880,1242518163,1240073685,100,100,100,100,19.86,20.64,39.52,39.58
-83524,16,061,16061,37,17,40467047,40459934,989,468,328277851,328268922,3821,1880,1242518163,1240073685,3.74,3.63,12.33,12.33,0.97,0.9,3.26,3.26
-83524,16,069,16069,952,451,287810804,287808988,989,468,328277851,328268922,39265,17438,2217760463,2196547487,96.26,96.37,87.67,87.67,2.42,2.59,12.98,13.1
-83525,16,049,16049,376,591,2600875990,2598069213,376,591,2600875990,2598069213,16267,8744,22023575681,21956239945,100,100,100,100,2.31,6.76,11.81,11.83
-83526,16,049,16049,278,113,94804022,94796885,278,113,94804022,94796885,16267,8744,22023575681,21956239945,100,100,100,100,1.71,1.29,0.43,0.43
-83530,16,049,16049,5404,2545,933582283,931830048,5404,2545,933582283,931830048,16267,8744,22023575681,21956239945,100,100,100,100,33.22,29.11,4.24,4.24
-83533,16,049,16049,178,72,65976161,65950338,178,72,65976161,65950338,16267,8744,22023575681,21956239945,100,100,100,100,1.09,0.82,0.3,0.3
-83535,16,057,16057,678,340,39572839,39516337,1089,546,141030033,138413175,37244,15988,2789188621,2786815890,62.26,62.27,28.06,28.55,1.82,2.13,1.42,1.42
-83535,16,069,16069,411,206,101457194,98896838,1089,546,141030033,138413175,39265,17438,2217760463,2196547487,37.74,37.73,71.94,71.45,1.05,1.18,4.57,4.5
-83536,16,049,16049,2537,1231,526734991,524213731,4230,2059,571715488,568384076,16267,8744,22023575681,21956239945,59.98,59.79,92.13,92.23,15.6,14.08,2.39,2.39
-83536,16,061,16061,1693,828,44980497,44170345,4230,2059,571715488,568384076,3821,1880,1242518163,1240073685,40.02,40.21,7.87,7.77,44.31,44.04,3.62,3.56
-83537,16,035,16035,81,53,51424347,51404804,1044,584,428883674,428605525,8761,4453,6443854170,6364309391,7.76,9.08,11.99,11.99,0.92,1.19,0.8,0.81
-83537,16,057,16057,728,403,247556586,247297980,1044,584,428883674,428605525,37244,15988,2789188621,2786815890,69.73,69.01,57.72,57.7,1.95,2.52,8.88,8.87
-83537,16,069,16069,235,128,129902741,129902741,1044,584,428883674,428605525,39265,17438,2217760463,2196547487,22.51,21.92,30.29,30.31,0.6,0.73,5.86,5.91
-83539,16,049,16049,2001,1090,7305740341,7279351671,2001,1090,7305740341,7279351671,16267,8744,22023575681,21956239945,100,100,100,100,12.3,12.47,33.17,33.15
-83540,16,069,16069,2190,824,238328524,237363177,2190,824,238328524,237363177,39265,17438,2217760463,2196547487,100,100,100,100,5.58,4.73,10.75,10.81
-83541,16,035,16035,570,345,105025257,97059216,1076,635,267032063,256416391,8761,4453,6443854170,6364309391,52.97,54.33,39.33,37.85,6.51,7.75,1.63,1.53
-83541,16,069,16069,506,290,162006806,159357175,1076,635,267032063,256416391,39265,17438,2217760463,2196547487,47.03,45.67,60.67,62.15,1.29,1.66,7.3,7.25
-83542,16,049,16049,129,104,199846755,198400781,129,104,199846755,198400781,16267,8744,22023575681,21956239945,100,100,100,100,0.79,1.19,0.91,0.9
-83543,16,061,16061,717,325,354199973,354068144,717,325,354199973,354068144,3821,1880,1242518163,1240073685,100,100,100,100,18.76,17.29,28.51,28.55
-83544,16,035,16035,6086,2777,625741473,601499375,6092,2784,634807849,610021198,8761,4453,6443854170,6364309391,99.9,99.75,98.57,98.6,69.47,62.36,9.71,9.45
-83544,16,061,16061,6,7,9066376,8521823,6092,2784,634807849,610021198,3821,1880,1242518163,1240073685,0.1,0.25,1.43,1.4,0.16,0.37,0.73,0.69
-83545,16,069,16069,484,234,116818548,116463130,484,234,116818548,116463130,39265,17438,2217760463,2196547487,100,100,100,100,1.23,1.34,5.27,5.3
-83546,16,035,16035,587,367,109152673,109102494,587,367,109152673,109102494,8761,4453,6443854170,6364309391,100,100,100,100,6.7,8.24,1.69,1.71
-83547,16,049,16049,219,169,252541970,250879236,219,169,252541970,250879236,16267,8744,22023575681,21956239945,100,100,100,100,1.35,1.93,1.15,1.14
-83548,16,061,16061,80,35,3099602,3095779,117,55,71168983,71165160,3821,1880,1242518163,1240073685,68.38,63.64,4.36,4.35,2.09,1.86,0.25,0.25
-83548,16,069,16069,37,20,68069381,68069381,117,55,71168983,71165160,39265,17438,2217760463,2196547487,31.62,36.36,95.64,95.65,0.09,0.11,3.07,3.1
-83549,16,049,16049,908,613,1624774444,1616657686,908,613,1624774444,1616657686,16267,8744,22023575681,21956239945,100,100,100,100,5.58,7.01,7.38,7.36
-83552,16,049,16049,1225,622,224309597,223603883,1225,622,224309597,223603883,16267,8744,22023575681,21956239945,100,100,100,100,7.53,7.11,1.02,1.02
-83553,16,035,16035,1100,590,276867023,276619263,1100,590,276867023,276619263,8761,4453,6443854170,6364309391,100,100,100,100,12.56,13.25,4.3,4.35
-83554,16,049,16049,638,435,590187519,586215136,638,435,590187519,586215136,16267,8744,22023575681,21956239945,100,100,100,100,3.92,4.97,2.68,2.67
-83555,16,061,16061,529,280,299666628,298885444,564,398,534053764,532814216,3821,1880,1242518163,1240073685,93.79,70.35,56.11,56.1,13.84,14.89,24.12,24.1
-83555,16,069,16069,35,118,234387136,233928772,564,398,534053764,532814216,39265,17438,2217760463,2196547487,6.21,29.65,43.89,43.9,0.09,0.68,10.57,10.65
-83601,16,039,16039,41,116,1000505880,996851453,41,116,1000505880,996851453,27038,12162,8030918009,7963533304,100,100,100,100,0.15,0.95,12.46,12.52
-83602,16,015,16015,24,43,47655216,47395190,24,43,47655216,47395190,7028,5292,4938293563,4919000288,100,100,100,100,0.34,0.81,0.97,0.96
-83604,16,073,16073,762,342,2743953432,2715709628,762,342,2743953432,2715709628,11526,4781,19935091492,19853582270,100,100,100,100,6.61,7.15,13.76,13.68
-83605,16,027,16027,39649,14190,72822618,72161275,39649,14190,72822618,72161275,188923,69409,1563181812,1521281478,100,100,100,100,20.99,20.44,4.66,4.74
-83607,16,027,16027,20874,7557,427850817,406143339,21732,7877,598050693,576082467,188923,69409,1563181812,1521281478,96.05,95.94,71.54,70.5,11.05,10.89,27.37,26.7
-83607,16,045,16045,328,126,39118811,38887418,21732,7877,598050693,576082467,16719,7099,1465170123,1452724628,1.51,1.6,6.54,6.75,1.96,1.77,2.67,2.68
-83607,16,075,16075,530,194,131081065,131051710,21732,7877,598050693,576082467,22623,8945,1062607801,1053780320,2.44,2.46,21.92,22.75,2.34,2.17,12.34,12.44
-83610,16,087,16087,946,549,1040996362,1030083049,946,549,1040996362,1030083049,10198,4529,3816417867,3763204795,100,100,100,100,9.28,12.12,27.28,27.37
-83611,16,085,16085,2453,3308,5990189025,5879385696,2453,3308,5990189025,5879385696,9862,11789,9668323510,9491050481,100,100,100,100,24.87,28.06,61.96,61.95
-83612,16,003,16003,1925,1225,1790403391,1781161518,1925,1225,1790403391,1781161518,3976,2636,3547691086,3530298662,100,100,100,100,48.42,46.47,50.47,50.45
-83615,16,085,16085,1571,2083,224499646,201893044,1571,2083,224499646,201893044,9862,11789,9668323510,9491050481,100,100,100,100,15.93,17.67,2.32,2.13
-83616,16,001,16001,22753,8629,180059539,178145400,22780,8644,277563027,275638926,392365,159471,2746582723,2726158067,99.88,99.83,64.87,64.63,5.8,5.41,6.56,6.53
-83616,16,045,16045,27,15,97503488,97493526,22780,8644,277563027,275638926,16719,7099,1465170123,1452724628,0.12,0.17,35.13,35.37,0.16,0.21,6.65,6.71
-83617,16,045,16045,15422,6557,616062391,607238262,15422,6557,616062391,607238262,16719,7099,1465170123,1452724628,100,100,100,100,92.24,92.37,42.05,41.8
-83619,16,075,16075,7201,2768,86402784,84079258,7201,2768,86402784,84079258,22623,8945,1062607801,1053780320,100,100,100,100,31.83,30.94,8.13,7.98
-83622,16,015,16015,1737,1744,691411850,689173698,1737,1744,691411850,689173698,7028,5292,4938293563,4919000288,100,100,100,100,24.72,32.96,14,14.01
-83623,16,039,16039,1517,781,550603928,548089397,1517,781,550603928,548089397,27038,12162,8030918009,7963533304,100,100,100,100,5.61,6.42,6.86,6.88
-83624,16,039,16039,247,105,144580851,141396861,1195,530,678241945,670628244,27038,12162,8030918009,7963533304,20.67,19.81,21.32,21.08,0.91,0.86,1.8,1.78
-83624,16,073,16073,948,425,533661094,529231383,1195,530,678241945,670628244,11526,4781,19935091492,19853582270,79.33,80.19,78.68,78.92,8.22,8.89,2.68,2.67
-83626,16,027,16027,1192,456,16779482,16662744,1192,456,16779482,16662744,188923,69409,1563181812,1521281478,100,100,100,100,0.63,0.66,1.07,1.1
-83627,16,039,16039,505,218,80281212,77839787,620,278,260206899,253039365,27038,12162,8030918009,7963533304,81.45,78.42,30.85,30.76,1.87,1.79,1,0.98
-83627,16,073,16073,115,60,179925687,175199578,620,278,260206899,253039365,11526,4781,19935091492,19853582270,18.55,21.58,69.15,69.24,1,1.25,0.9,0.88
-83628,16,073,16073,4329,1624,208964780,207557656,4329,1624,208964780,207557656,11526,4781,19935091492,19853582270,100,100,100,100,37.56,33.97,1.05,1.05
-83629,16,015,16015,1628,711,470597082,468915087,1721,749,481906804,479677350,7028,5292,4938293563,4919000288,94.6,94.93,97.65,97.76,23.16,13.44,9.53,9.53
-83629,16,045,16045,93,38,11309722,10762263,1721,749,481906804,479677350,16719,7099,1465170123,1452724628,5.4,5.07,2.35,2.24,0.56,0.54,0.77,0.74
-83631,16,015,16015,1333,974,419816361,419778023,1333,974,419816361,419778023,7028,5292,4938293563,4919000288,100,100,100,100,18.97,18.41,8.5,8.53
-83632,16,003,16003,214,144,324760775,322988797,214,144,324760775,322988797,3976,2636,3547691086,3530298662,100,100,100,100,5.38,5.46,9.15,9.15
-83633,16,039,16039,540,260,438592725,433190329,540,260,438592725,433190329,27038,12162,8030918009,7963533304,100,100,100,100,2,2.14,5.46,5.44
-83634,16,001,16001,23925,6410,370780220,369262856,24494,6623,389540070,387964176,392365,159471,2746582723,2726158067,97.68,96.78,95.18,95.18,6.1,4.02,13.5,13.55
-83634,16,027,16027,569,213,18759850,18701320,24494,6623,389540070,387964176,188923,69409,1563181812,1521281478,2.32,3.22,4.82,4.82,0.3,0.31,1.2,1.23
-83636,16,045,16045,153,57,7182049,6681555,153,57,7182049,6681555,16719,7099,1465170123,1452724628,100,100,100,100,0.92,0.8,0.49,0.46
-83637,16,015,16015,206,464,1145160463,1139836089,206,464,1145160463,1139836089,7028,5292,4938293563,4919000288,100,100,100,100,2.93,8.77,23.19,23.17
-83638,16,003,16003,100,63,5027615,5026708,5903,6341,1078875260,1045395510,3976,2636,3547691086,3530298662,1.69,0.99,0.47,0.48,2.52,2.39,0.14,0.14
-83638,16,049,16049,10,42,431880735,430712748,5903,6341,1078875260,1045395510,16267,8744,22023575681,21956239945,0.17,0.66,40.03,41.2,0.06,0.48,1.96,1.96
-83638,16,085,16085,5793,6236,641966910,609656054,5903,6341,1078875260,1045395510,9862,11789,9668323510,9491050481,98.14,98.34,59.5,58.32,58.74,52.9,6.64,6.42
-83639,16,073,16073,3300,1254,616427673,613227140,3300,1254,616427673,613227140,11526,4781,19935091492,19853582270,100,100,100,100,28.63,26.23,3.09,3.09
-83641,16,001,16001,219,77,98621353,96686664,3438,1294,428768882,420963281,392365,159471,2746582723,2726158067,6.37,5.95,23,22.97,0.06,0.05,3.59,3.55
-83641,16,027,16027,2178,783,145958549,143515748,3438,1294,428768882,420963281,188923,69409,1563181812,1521281478,63.35,60.51,34.04,34.09,1.15,1.13,9.34,9.43
-83641,16,073,16073,1041,434,184188980,180760869,3438,1294,428768882,420963281,11526,4781,19935091492,19853582270,30.28,33.54,42.96,42.94,9.03,9.08,0.92,0.91
-83642,16,001,16001,37008,13692,106596134,106348819,37008,13692,106596134,106348819,392365,159471,2746582723,2726158067,100,100,100,100,9.43,8.59,3.88,3.9
-83643,16,003,16003,129,80,58123776,57907041,129,80,58123776,57907041,3976,2636,3547691086,3530298662,100,100,100,100,3.24,3.03,1.64,1.64
-83644,16,027,16027,9976,3636,131416023,131164774,9976,3636,131416023,131164774,188923,69409,1563181812,1521281478,100,100,100,100,5.28,5.24,8.41,8.62
-83645,16,087,16087,636,333,1174840462,1159495855,636,333,1174840462,1159495855,10198,4529,3816417867,3763204795,100,100,100,100,6.24,7.35,30.78,30.81
-83646,16,001,16001,47098,16254,71812591,71369309,47098,16254,71812591,71369309,392365,159471,2746582723,2726158067,100,100,100,100,12,10.19,2.61,2.62
-83647,16,039,16039,20789,9476,3796841989,3760222742,20789,9476,3796841989,3760222742,27038,12162,8030918009,7963533304,100,100,100,100,76.89,77.91,47.28,47.22
-83648,16,039,16039,3238,1125,25980569,25667492,3238,1125,25980569,25667492,27038,12162,8030918009,7963533304,100,100,100,100,11.98,9.25,0.32,0.32
-83650,16,073,16073,552,391,4161652679,4153363355,552,391,4161652679,4153363355,11526,4781,19935091492,19853582270,100,100,100,100,4.79,8.18,20.88,20.92
-83651,16,027,16027,28611,11318,38639638,38522283,28611,11318,38639638,38522283,188923,69409,1563181812,1521281478,100,100,100,100,15.14,16.31,2.47,2.53
-83654,16,003,16003,1608,1124,551447478,550847209,1672,1185,652096681,651157694,3976,2636,3547691086,3530298662,96.17,94.85,84.57,84.6,40.44,42.64,15.54,15.6
-83654,16,049,16049,64,61,100649203,100310485,1672,1185,652096681,651157694,16267,8744,22023575681,21956239945,3.83,5.15,15.43,15.4,0.39,0.7,0.46,0.46
-83655,16,075,16075,4397,1651,153356803,151026948,4397,1651,153356803,151026948,22623,8945,1062607801,1053780320,100,100,100,100,19.44,18.46,14.43,14.33
-83656,16,027,16027,582,213,1163376,1141948,582,213,1163376,1141948,188923,69409,1563181812,1521281478,100,100,100,100,0.31,0.31,0.07,0.08
-83657,16,045,16045,174,97,398902979,398628404,174,113,405508747,405073006,16719,7099,1465170123,1452724628,100,85.84,98.37,98.41,1.04,1.37,27.23,27.44
-83657,16,085,16085,0,16,6605768,6444602,174,113,405508747,405073006,9862,11789,9668323510,9491050481,0,14.16,1.63,1.59,0,0.14,0.07,0.07
-83660,16,027,16027,5247,2015,235828162,231559023,5890,2244,315404941,310734588,188923,69409,1563181812,1521281478,89.08,89.8,74.77,74.52,2.78,2.9,15.09,15.22
-83660,16,075,16075,643,229,79576779,79175565,5890,2244,315404941,310734588,22623,8945,1062607801,1053780320,10.92,10.2,25.23,25.48,2.84,2.56,7.49,7.51
-83661,16,075,16075,9848,4100,610687585,607007989,9881,4116,611093511,607251407,22623,8945,1062607801,1053780320,99.67,99.61,99.93,99.96,43.53,45.84,57.47,57.6
-83661,16,087,16087,33,16,405926,243418,9881,4116,611093511,607251407,10198,4529,3816417867,3763204795,0.33,0.39,0.07,0.04,0.32,0.35,0.01,0.01
-83666,16,015,16015,52,77,25263226,25263226,52,77,25263226,25263226,7028,5292,4938293563,4919000288,100,100,100,100,0.74,1.46,0.51,0.51
-83669,16,001,16001,7046,2543,39553800,39287455,7365,2688,51671924,51260666,392365,159471,2746582723,2726158067,95.67,94.61,76.55,76.64,1.8,1.59,1.44,1.44
-83669,16,027,16027,319,145,12118124,11973211,7365,2688,51671924,51260666,188923,69409,1563181812,1521281478,4.33,5.39,23.45,23.36,0.17,0.21,0.78,0.79
-83670,16,015,16015,31,19,55242965,55232010,553,228,192545092,191475165,7028,5292,4938293563,4919000288,5.61,8.33,28.69,28.85,0.44,0.36,1.12,1.12
-83670,16,045,16045,522,209,137302127,136243155,553,228,192545092,191475165,16719,7099,1465170123,1452724628,94.39,91.67,71.31,71.15,3.12,2.94,9.37,9.38
-83671,16,049,16049,33,150,2686557196,2677984352,33,150,2686557196,2677984352,16267,8744,22023575681,21956239945,100,100,100,100,0.2,1.72,12.2,12.2
-83672,16,087,16087,8583,3631,1600175117,1573382473,8583,3631,1600175117,1573382473,10198,4529,3816417867,3763204795,100,100,100,100,84.16,80.17,41.93,41.81
-83676,16,027,16027,4347,1623,108233906,105343892,4347,1623,108233906,105343892,188923,69409,1563181812,1521281478,100,100,100,100,2.3,2.34,6.92,6.92
-83677,16,085,16085,44,143,925252478,922823041,44,143,925252478,922823041,9862,11789,9668323510,9491050481,100,100,100,100,0.45,1.21,9.57,9.72
-83686,16,027,16027,46224,16819,238889550,230069084,46224,16819,238889550,230069084,188923,69409,1563181812,1521281478,100,100,100,100,24.47,24.23,15.28,15.12
-83687,16,001,16001,542,170,14486388,14423719,29697,10611,129208105,128746556,392365,159471,2746582723,2726158067,1.83,1.6,11.21,11.2,0.14,0.11,0.53,0.53
-83687,16,027,16027,29155,10441,114721717,114322837,29697,10611,129208105,128746556,188923,69409,1563181812,1521281478,98.17,98.4,88.79,88.8,15.43,15.04,7.34,7.51
-83702,16,001,16001,22290,11733,100707925,100315175,22293,11774,105770873,105378123,392365,159471,2746582723,2726158067,99.99,99.65,95.21,95.2,5.68,7.36,3.67,3.68
-83702,16,015,16015,3,41,5062948,5062948,22293,11774,105770873,105378123,7028,5292,4938293563,4919000288,0.01,0.35,4.79,4.8,0.04,0.77,0.1,0.1
-83703,16,001,16001,16565,7912,22545917,22228710,16565,7912,22545917,22228710,392365,159471,2746582723,2726158067,100,100,100,100,4.22,4.96,0.82,0.82
-83704,16,001,16001,39628,17064,22789114,22687581,39628,17064,22789114,22687581,392365,159471,2746582723,2726158067,100,100,100,100,10.1,10.7,0.83,0.83
-83705,16,001,16001,26631,12983,37338837,37199107,26631,12983,37338837,37199107,392365,159471,2746582723,2726158067,100,100,100,100,6.79,8.14,1.36,1.36
-83706,16,001,16001,29732,14929,19690486,19355429,29732,14929,19690486,19355429,392365,159471,2746582723,2726158067,100,100,100,100,7.58,9.36,0.72,0.71
-83709,16,001,16001,50034,18539,90162644,90048096,50034,18539,90162644,90048096,392365,159471,2746582723,2726158067,100,100,100,100,12.75,11.63,3.28,3.3
-83712,16,001,16001,8148,3853,59678628,59452922,8148,3853,59678628,59452922,392365,159471,2746582723,2726158067,100,100,100,100,2.08,2.42,2.17,2.18
-83713,16,001,16001,28103,10685,17485778,17440160,28103,10685,17485778,17440160,392365,159471,2746582723,2726158067,100,100,100,100,7.16,6.7,0.64,0.64
-83714,16,001,16001,20290,9112,127650815,126229425,20290,9112,127650815,126229425,392365,159471,2746582723,2726158067,100,100,100,100,5.17,5.71,4.65,4.63
-83716,16,001,16001,12353,4886,427863667,418832032,14523,6174,1351333717,1336789042,392365,159471,2746582723,2726158067,85.06,79.14,31.66,31.33,3.15,3.06,15.58,15.36
-83716,16,015,16015,2014,1219,444379232,443933562,14523,6174,1351333717,1336789042,7028,5292,4938293563,4919000288,13.87,19.74,32.88,33.21,28.66,23.03,9,9.02
-83716,16,039,16039,156,69,479090818,474023448,14523,6174,1351333717,1336789042,27038,12162,8030918009,7963533304,1.07,1.12,35.45,35.46,0.58,0.57,5.97,5.95
-83801,16,017,16017,980,463,114611685,114055894,6150,2500,385274059,384718268,40877,24669,4971479060,4492523343,15.93,18.52,29.75,29.65,2.4,1.88,2.31,2.54
-83801,16,055,16055,5170,2037,270662374,270662374,6150,2500,385274059,384718268,138494,63177,3407447924,3222267856,84.07,81.48,70.25,70.35,3.73,3.22,7.94,8.4
-83802,16,079,16079,68,104,1426537344,1423570314,68,104,1426537344,1423570314,12765,7061,6824936927,6810799882,100,100,100,100,0.53,1.47,20.9,20.9
-83803,16,017,16017,105,255,250560352,124766436,744,860,302681537,164347087,40877,24669,4971479060,4492523343,14.11,29.65,82.78,75.92,0.26,1.03,5.04,2.78
-83803,16,055,16055,639,605,52121185,39580651,744,860,302681537,164347087,138494,63177,3407447924,3222267856,85.89,70.35,17.22,24.08,0.46,0.96,1.53,1.23
-83804,16,017,16017,1254,879,136386106,135576862,1254,879,136386106,135576862,40877,24669,4971479060,4492523343,100,100,100,100,3.07,3.56,2.74,3.02
-83805,16,021,16021,7437,3545,2095830965,2075592267,7437,3545,2095830965,2075592267,10972,5175,3309637332,3285556291,100,100,100,100,67.78,68.5,63.33,63.17
-83806,16,057,16057,220,112,51548202,51538078,220,112,51548202,51538078,37244,15988,2789188621,2786815890,100,100,100,100,0.59,0.7,1.85,1.85
-83808,16,079,16079,147,146,482888333,481748565,147,146,482888333,481748565,12765,7061,6824936927,6810799882,100,100,100,100,1.15,2.07,7.08,7.07
-83809,16,017,16017,401,176,36290535,36290535,401,176,36290535,36290535,40877,24669,4971479060,4492523343,100,100,100,100,0.98,0.71,0.73,0.81
-83810,16,055,16055,1116,570,360926695,355243127,1189,604,368416630,362731048,138494,63177,3407447924,3222267856,93.86,94.37,97.97,97.94,0.81,0.9,10.59,11.02
-83810,16,079,16079,73,34,7489935,7487921,1189,604,368416630,362731048,12765,7061,6824936927,6810799882,6.14,5.63,2.03,2.06,0.57,0.48,0.11,0.11
-83811,16,017,16017,1411,862,481120687,470592043,1411,862,481120687,470592043,40877,24669,4971479060,4492523343,100,100,100,100,3.45,3.49,9.68,10.48
-83812,16,079,16079,66,70,134023262,133908993,66,70,134023262,133908993,12765,7061,6824936927,6810799882,100,100,100,100,0.52,0.99,1.96,1.97
-83813,16,017,16017,1158,629,121254512,117955464,1158,629,121254512,117955464,40877,24669,4971479060,4492523343,100,100,100,100,2.83,2.55,2.44,2.63
-83814,16,055,16055,23371,12287,554545614,513716392,23371,12287,554545614,513716392,138494,63177,3407447924,3222267856,100,100,100,100,16.88,19.45,16.27,15.94
-83815,16,055,16055,31015,13021,42021131,41943201,31015,13021,42021131,41943201,138494,63177,3407447924,3222267856,100,100,100,100,22.39,20.61,1.23,1.3
-83821,16,017,16017,210,1054,163539604,72141982,210,1054,163539604,72141982,40877,24669,4971479060,4492523343,100,100,100,100,0.51,4.27,3.29,1.61
-83822,16,017,16017,2006,880,87893385,85644818,2006,880,87893385,85644818,40877,24669,4971479060,4492523343,100,100,100,100,4.91,3.57,1.77,1.91
-83823,16,035,16035,0,1,589066,589066,1318,626,405790654,405514677,8761,4453,6443854170,6364309391,0,0.16,0.15,0.15,0,0.02,0.01,0.01
-83823,16,057,16057,1318,625,405201588,404925611,1318,626,405790654,405514677,37244,15988,2789188621,2786815890,100,99.84,99.85,99.85,3.54,3.91,14.53,14.53
-83824,16,009,16009,348,135,137191961,137191961,348,135,137191961,137191961,9285,4629,2030417626,2011429331,100,100,100,100,3.75,2.92,6.76,6.82
-83825,16,017,16017,190,147,2858655,1132355,190,147,2858655,1132355,40877,24669,4971479060,4492523343,100,100,100,100,0.46,0.6,0.06,0.03
-83826,16,021,16021,45,26,10908197,10908197,45,26,10908197,10908197,10972,5175,3309637332,3285556291,100,100,100,100,0.41,0.5,0.33,0.33
-83827,16,035,16035,143,178,24983327,24636817,143,178,24983327,24636817,8761,4453,6443854170,6364309391,100,100,100,100,1.63,4,0.39,0.39
-83830,16,009,16009,710,367,119399900,119397667,733,377,149793334,149724204,9285,4629,2030417626,2011429331,96.86,97.35,79.71,79.75,7.65,7.93,5.88,5.94
-83830,16,079,16079,23,10,30393434,30326537,733,377,149793334,149724204,12765,7061,6824936927,6810799882,3.14,2.65,20.29,20.25,0.18,0.14,0.45,0.45
-83832,16,057,16057,1339,564,211884096,211842390,1524,639,377069190,377023512,37244,15988,2789188621,2786815890,87.86,88.26,56.19,56.19,3.6,3.53,7.6,7.6
-83832,16,069,16069,185,75,165185094,165181122,1524,639,377069190,377023512,39265,17438,2217760463,2196547487,12.14,11.74,43.81,43.81,0.47,0.43,7.45,7.52
-83833,16,009,16009,4,10,3807940,485878,1164,1567,341089649,275492543,9285,4629,2030417626,2011429331,0.34,0.64,1.12,0.18,0.04,0.22,0.19,0.02
-83833,16,055,16055,1160,1557,337281709,275006665,1164,1567,341089649,275492543,138494,63177,3407447924,3222267856,99.66,99.36,98.88,99.82,0.84,2.46,9.9,8.53
-83834,16,057,16057,254,119,257735234,257659511,254,119,257735234,257659511,37244,15988,2789188621,2786815890,100,100,100,100,0.68,0.74,9.24,9.25
-83835,16,055,16055,19990,9031,292644119,276265997,19990,9031,292644119,276265997,138494,63177,3407447924,3222267856,100,100,100,100,14.43,14.29,8.59,8.57
-83836,16,017,16017,1033,916,296177783,243091134,1033,916,296177783,243091134,40877,24669,4971479060,4492523343,100,100,100,100,2.53,3.71,5.96,5.41
-83837,16,079,16079,3063,1671,179077657,178813706,3063,1671,179077657,178813706,12765,7061,6824936927,6810799882,100,100,100,100,24,23.67,2.62,2.63
-83839,16,079,16079,1417,686,282393658,280195894,1417,686,282393658,280195894,12765,7061,6824936927,6810799882,100,100,100,100,11.1,9.72,4.14,4.11
-83840,16,017,16017,227,110,217917,217917,227,110,217917,217917,40877,24669,4971479060,4492523343,100,100,100,100,0.56,0.45,0,0
-83841,16,017,16017,338,231,12873171,12873171,338,231,12873171,12873171,40877,24669,4971479060,4492523343,100,100,100,100,0.83,0.94,0.26,0.29
-83842,16,055,16055,148,89,55193190,50526817,148,89,55193190,50526817,138494,63177,3407447924,3222267856,100,100,100,100,0.11,0.14,1.62,1.57
-83843,16,057,16057,25866,11395,312643121,312548071,25866,11395,312643121,312548071,37244,15988,2789188621,2786815890,100,100,100,100,69.45,71.27,11.21,11.22
-83844,16,057,16057,1353,8,91212,91212,1353,8,91212,91212,37244,15988,2789188621,2786815890,100,100,100,100,3.63,0.05,0,0
-83845,16,021,16021,1742,783,245377435,243564136,1742,783,245377435,243564136,10972,5175,3309637332,3285556291,100,100,100,100,15.88,15.13,7.41,7.41
-83846,16,079,16079,770,466,122896669,122652276,770,466,122896669,122652276,12765,7061,6824936927,6810799882,100,100,100,100,6.03,6.6,1.8,1.8
-83847,16,021,16021,1719,792,296021916,294788672,1719,792,296021916,294788672,10972,5175,3309637332,3285556291,100,100,100,100,15.67,15.3,8.94,8.97
-83848,16,017,16017,137,500,91224886,81979160,137,500,91224886,81979160,40877,24669,4971479060,4492523343,100,100,100,100,0.34,2.03,1.83,1.82
-83849,16,079,16079,1925,938,50624694,50516644,1925,938,50624694,50516644,12765,7061,6824936927,6810799882,100,100,100,100,15.08,13.28,0.74,0.74
-83850,16,079,16079,2129,1057,181208628,181164095,2129,1057,181208628,181164095,12765,7061,6824936927,6810799882,100,100,100,100,16.68,14.97,2.66,2.66
-83851,16,009,16009,1691,845,317776661,313194622,1691,845,317776661,313194622,9285,4629,2030417626,2011429331,100,100,100,100,18.21,18.25,15.65,15.57
-83852,16,017,16017,884,510,3919172,3894580,884,510,3919172,3894580,40877,24669,4971479060,4492523343,100,100,100,100,2.16,2.07,0.08,0.09
-83854,16,055,16055,37245,14988,199370568,194501504,37245,14988,199370568,194501504,138494,63177,3407447924,3222267856,100,100,100,100,26.89,23.72,5.85,6.04
-83855,16,057,16057,2111,969,287752705,287434058,2111,969,287752705,287434058,37244,15988,2789188621,2786815890,100,100,100,100,5.67,6.06,10.32,10.31
-83856,16,017,16017,6340,3850,930261264,915035696,6340,3850,930261264,915035696,40877,24669,4971479060,4492523343,100,100,100,100,15.51,15.61,18.71,20.37
-83857,16,057,16057,691,298,165985985,165870337,691,298,165985985,165870337,37244,15988,2789188621,2786815890,100,100,100,100,1.86,1.86,5.95,5.95
-83858,16,055,16055,13656,5791,310815095,306300760,13656,5791,310815095,306300760,138494,63177,3407447924,3222267856,100,100,100,100,9.86,9.17,9.12,9.51
-83860,16,017,16017,6119,3618,420528177,308370165,6119,3618,420528177,308370165,40877,24669,4971479060,4492523343,100,100,100,100,14.97,14.67,8.46,6.86
-83861,16,009,16009,5900,2922,1096590436,1085508475,6360,3241,1332996351,1318545641,9285,4629,2030417626,2011429331,92.77,90.16,82.27,82.33,63.54,63.12,54.01,53.97
-83861,16,055,16055,418,279,61890435,59835823,6360,3241,1332996351,1318545641,138494,63177,3407447924,3222267856,6.57,8.61,4.64,4.54,0.3,0.44,1.82,1.86
-83861,16,079,16079,42,40,174515480,173201343,6360,3241,1332996351,1318545641,12765,7061,6824936927,6810799882,0.66,1.23,13.09,13.14,0.33,0.57,2.56,2.54
-83864,16,017,16017,17047,9164,797955990,745301995,17076,9193,1241129197,1187679402,40877,24669,4971479060,4492523343,99.83,99.68,64.29,62.75,41.7,37.15,16.05,16.59
-83864,16,021,16021,29,29,443173207,442377407,17076,9193,1241129197,1187679402,10972,5175,3309637332,3285556291,0.17,0.32,35.71,37.25,0.26,0.56,13.39,13.46
-83866,16,009,16009,320,168,170614416,170614416,320,168,170614416,170614416,9285,4629,2030417626,2011429331,100,100,100,100,3.45,3.63,8.4,8.48
-83867,16,079,16079,616,283,11682006,11666396,616,283,11682006,11666396,12765,7061,6824936927,6810799882,100,100,100,100,4.83,4.01,0.17,0.17
-83868,16,079,16079,769,436,25126174,24800417,769,436,25126174,24800417,12765,7061,6824936927,6810799882,100,100,100,100,6.02,6.17,0.37,0.36
-83869,16,017,16017,1037,425,65893762,65893762,4161,1966,161769056,156006670,40877,24669,4971479060,4492523343,24.92,21.62,40.73,42.24,2.54,1.72,1.33,1.47
-83869,16,055,16055,3124,1541,95875294,90112908,4161,1966,161769056,156006670,138494,63177,3407447924,3222267856,75.08,78.38,59.27,57.76,2.26,2.44,2.81,2.8
-83870,16,009,16009,312,182,185036312,185036312,312,182,185036312,185036312,9285,4629,2030417626,2011429331,100,100,100,100,3.36,3.93,9.11,9.2
-83871,16,057,16057,1938,822,289553122,289031841,1938,822,289553122,289031841,37244,15988,2789188621,2786815890,100,100,100,100,5.2,5.14,10.38,10.37
-83872,16,057,16057,705,305,107387382,107094242,705,305,107387382,107094242,37244,15988,2789188621,2786815890,100,100,100,100,1.89,1.91,3.85,3.84
-83873,16,079,16079,1591,1054,536342122,535483015,1591,1054,536342122,535483015,12765,7061,6824936927,6810799882,100,100,100,100,12.46,14.93,7.86,7.86
-83874,16,079,16079,64,48,114218035,114214017,64,48,114218035,114214017,12765,7061,6824936927,6810799882,100,100,100,100,0.5,0.68,1.67,1.68
-83876,16,055,16055,1442,1380,334997600,309468722,1442,1380,334997600,309468722,138494,63177,3407447924,3222267856,100,100,100,100,1.04,2.18,9.83,9.6
-84001,49,013,49013,725,272,58582402,58467850,725,272,58582402,58467850,18607,9493,8432796597,8394008306,100,100,100,100,3.9,2.87,0.69,0.7
-84002,49,013,49013,302,106,139572281,139536870,302,106,139572281,139536870,18607,9493,8432796597,8394008306,100,100,100,100,1.62,1.12,1.66,1.66
-84003,49,049,49049,42384,11467,149997040,149819678,42384,11467,149997040,149819678,516564,148350,5553229748,5188922666,100,100,100,100,8.2,7.73,2.7,2.89
-84004,49,049,49049,9818,2606,75949489,75922497,9818,2606,75949489,75922497,516564,148350,5553229748,5188922666,100,100,100,100,1.9,1.76,1.37,1.46
-84005,49,049,49049,21410,5544,79870577,79870577,21410,5544,79870577,79870577,516564,148350,5553229748,5188922666,100,100,100,100,4.14,3.74,1.44,1.54
-84006,49,035,49035,826,308,54185509,54185509,826,308,54185509,54185509,1029655,364031,2091071090,1922501205,100,100,100,100,0.08,0.08,2.59,2.82
-84007,49,013,49013,740,267,119878543,118154043,740,267,119878543,118154043,18607,9493,8432796597,8394008306,100,100,100,100,3.98,2.81,1.42,1.41
-84010,49,011,49011,44821,16038,39036414,38981778,44821,16038,39036414,38981778,306479,97570,1641955117,773832198,100,100,100,100,14.62,16.44,2.38,5.04
-84013,49,049,49049,1011,304,103700112,103667621,1011,304,103700112,103667621,516564,148350,5553229748,5188922666,100,100,100,100,0.2,0.2,1.87,2
-84014,49,011,49011,15268,4997,14253537,14214416,15268,4997,14253537,14214416,306479,97570,1641955117,773832198,100,100,100,100,4.98,5.12,0.87,1.84
-84015,49,011,49011,62494,19887,54769384,54611153,62494,19887,54769384,54611153,306479,97570,1641955117,773832198,100,100,100,100,20.39,20.38,3.34,7.06
-84017,49,043,49043,3556,1889,1236546323,1225542587,3556,1889,1236546323,1225542587,36324,26545,4874281491,4847710464,100,100,100,100,9.79,7.12,25.37,25.28
-84018,49,029,49029,179,55,388737653,388737653,179,55,388737653,388737653,9469,3006,1582237824,1577810469,100,100,100,100,1.89,1.83,24.57,24.64
-84020,49,035,49035,38029,11544,55726742,55687915,39765,12123,65267469,65228642,1029655,364031,2091071090,1922501205,95.63,95.22,85.38,85.37,3.69,3.17,2.66,2.9
-84020,49,049,49049,1736,579,9540727,9540727,39765,12123,65267469,65228642,516564,148350,5553229748,5188922666,4.37,4.78,14.62,14.63,0.34,0.39,0.17,0.18
-84021,49,013,49013,3323,2423,1735305775,1722015808,3323,2423,1735305775,1722015808,18607,9493,8432796597,8394008306,100,100,100,100,17.86,25.52,20.58,20.51
-84022,49,023,49023,2,7,147574593,137119459,896,555,845044849,834485206,10246,3502,8822530081,8785958124,0.22,1.26,17.46,16.43,0.02,0.2,1.67,1.56
-84022,49,045,49045,894,548,697470256,697365747,896,555,845044849,834485206,58218,19455,18870858544,17978017875,99.78,98.74,82.54,83.57,1.54,2.82,3.7,3.88
-84023,49,009,49009,266,265,402515969,399421669,266,265,402515969,399421669,1059,1141,1866629342,1805167690,100,100,100,100,25.12,23.23,21.56,22.13
-84024,49,043,49043,63,36,20321263,20321263,63,36,20321263,20321263,36324,26545,4874281491,4847710464,100,100,100,100,0.17,0.14,0.42,0.42
-84025,49,011,49011,18255,5343,32063196,31625996,18255,5343,32063196,31625996,306479,97570,1641955117,773832198,100,100,100,100,5.96,5.48,1.95,4.09
-84026,49,047,49047,1668,583,111244948,109436991,1668,583,111244948,109436991,32588,11972,11658537354,11602350635,100,100,100,100,5.12,4.87,0.95,0.94
-84027,49,013,49013,452,1108,528338595,527936877,452,1108,528338595,527936877,18607,9493,8432796597,8394008306,100,100,100,100,2.43,11.67,6.27,6.29
-84028,49,033,49033,824,1967,206992022,125961654,824,1967,206992022,125961654,2264,2834,2813650178,2664514120,100,100,100,100,36.4,69.41,7.36,4.73
-84029,49,045,49045,9473,3112,880212726,879930283,9473,3112,880212726,879930283,58218,19455,18870858544,17978017875,100,100,100,100,16.27,16,4.66,4.89
-84031,49,013,49013,259,383,801664994,796724131,259,383,801664994,796724131,18607,9493,8432796597,8394008306,100,100,100,100,1.39,4.03,9.51,9.49
-84032,49,051,49051,17249,6787,824629423,812238742,17249,6787,824629423,812238742,23530,10577,3123486856,3044533262,100,100,100,100,73.31,64.17,26.4,26.68
-84033,49,043,49043,1032,351,136181228,136181228,1032,351,136181228,136181228,36324,26545,4874281491,4847710464,100,100,100,100,2.84,1.32,2.79,2.81
-84034,32,033,32033,21,9,124129174,124115273,209,126,1537326985,1537290270,10030,4498,23042499474,22987820587,10.05,7.14,8.07,8.07,0.21,0.2,0.54,0.54
-84034,49,023,49023,84,38,194846623,194846623,209,126,1537326985,1537290270,10246,3502,8822530081,8785958124,40.19,30.16,12.67,12.67,0.82,1.09,2.21,2.22
-84034,49,045,49045,104,79,1218351188,1218328374,209,126,1537326985,1537290270,58218,19455,18870858544,17978017875,49.76,62.7,79.25,79.25,0.18,0.41,6.46,6.78
-84035,49,047,49047,748,314,1493672716,1483945513,748,314,1493672716,1483945513,32588,11972,11658537354,11602350635,100,100,100,100,2.3,2.62,12.81,12.79
-84036,49,043,49043,4978,2335,615549906,611178333,6045,3049,828047844,823676271,36324,26545,4874281491,4847710464,82.35,76.58,74.34,74.2,13.7,8.8,12.63,12.61
-84036,49,051,49051,1067,714,212497938,212497938,6045,3049,828047844,823676271,23530,10577,3123486856,3044533262,17.65,23.42,25.66,25.8,4.53,6.75,6.8,6.98
-84037,49,011,49011,33369,9506,48547277,48332407,33369,9506,48547277,48332407,306479,97570,1641955117,773832198,100,100,100,100,10.89,9.74,2.96,6.25
-84038,49,033,49033,347,372,175185078,112839596,347,372,175185078,112839596,2264,2834,2813650178,2664514120,100,100,100,100,15.33,13.13,6.23,4.23
-84039,49,047,49047,1102,382,280157150,278923676,1102,382,280157150,278923676,32588,11972,11658537354,11602350635,100,100,100,100,3.38,3.19,2.4,2.4
-84040,49,011,49011,23026,7252,28071441,27730671,23026,7252,28071441,27730671,306479,97570,1641955117,773832198,100,100,100,100,7.51,7.43,1.71,3.58
-84041,49,011,49011,44625,15228,38348103,38231214,44625,15228,38348103,38231214,306479,97570,1641955117,773832198,100,100,100,100,14.56,15.61,2.34,4.94
-84042,49,049,49049,10094,2608,20818744,20818744,10094,2608,20818744,20818744,516564,148350,5553229748,5188922666,100,100,100,100,1.95,1.76,0.37,0.4
-84043,49,049,49049,49030,13505,81546501,80603815,49030,13505,81546501,80603815,516564,148350,5553229748,5188922666,100,100,100,100,9.49,9.1,1.47,1.55
-84044,49,035,49035,26524,8098,196668531,123277485,26524,8098,196668531,123277485,1029655,364031,2091071090,1922501205,100,100,100,100,2.58,2.22,9.41,6.41
-84045,49,049,49049,16875,4457,52855224,52746599,16875,4457,52855224,52746599,516564,148350,5553229748,5188922666,100,100,100,100,3.27,3,0.95,1.02
-84046,49,009,49009,793,844,337745156,333284406,793,844,337745156,333284406,1059,1141,1866629342,1805167690,100,100,100,100,74.88,73.97,18.09,18.46
-84047,49,035,49035,28936,12425,16166039,16157178,28936,12425,16166039,16157178,1029655,364031,2091071090,1922501205,100,100,100,100,2.81,3.41,0.77,0.84
-84049,49,051,49051,4372,2641,226378947,215906802,4372,2641,226378947,215906802,23530,10577,3123486856,3044533262,100,100,100,100,18.58,24.97,7.25,7.09
-84050,49,029,49029,9290,2946,975434179,972505092,9290,2946,975434179,972505092,9469,3006,1582237824,1577810469,100,100,100,100,98.11,98,61.65,61.64
-84051,49,013,49013,402,149,135702653,135601508,402,149,135702653,135601508,18607,9493,8432796597,8394008306,100,100,100,100,2.16,1.57,1.61,1.62
-84052,49,013,49013,1222,515,222503955,222123144,1403,585,378869266,378454914,18607,9493,8432796597,8394008306,87.1,88.03,58.73,58.69,6.57,5.43,2.64,2.65
-84052,49,047,49047,181,70,156365311,156331770,1403,585,378869266,378454914,32588,11972,11658537354,11602350635,12.9,11.97,41.27,41.31,0.56,0.58,1.34,1.35
-84053,49,013,49013,1051,368,115528874,115474008,1115,389,146741056,146686190,18607,9493,8432796597,8394008306,94.26,94.6,78.73,78.72,5.65,3.88,1.37,1.38
-84053,49,047,49047,64,21,31212182,31212182,1115,389,146741056,146686190,32588,11972,11658537354,11602350635,5.74,5.4,21.27,21.28,0.2,0.18,0.27,0.27
-84054,49,011,49011,16196,5595,21684537,21493886,16196,5595,21684537,21493886,306479,97570,1641955117,773832198,100,100,100,100,5.28,5.73,1.32,2.78
-84055,49,043,49043,1406,1607,404006284,402620302,1406,1607,404006284,402620302,36324,26545,4874281491,4847710464,100,100,100,100,3.87,6.05,8.29,8.31
-84056,49,011,49011,3310,1000,24543545,24485806,3310,1000,24543545,24485806,306479,97570,1641955117,773832198,100,100,100,100,1.08,1.02,1.49,3.16
-84057,49,049,49049,36666,11347,16349627,16349627,36666,11347,16349627,16349627,516564,148350,5553229748,5188922666,100,100,100,100,7.1,7.65,0.29,0.32
-84058,49,049,49049,30540,9444,31914796,30761356,30540,9444,31914796,30761356,516564,148350,5553229748,5188922666,100,100,100,100,5.91,6.37,0.57,0.59
-84060,49,043,49043,7581,9465,70686071,70055579,7596,9520,73296001,72665509,36324,26545,4874281491,4847710464,99.8,99.42,96.44,96.41,20.87,35.66,1.45,1.45
-84060,49,051,49051,15,55,2609930,2609930,7596,9520,73296001,72665509,23530,10577,3123486856,3044533262,0.2,0.58,3.56,3.59,0.06,0.52,0.08,0.09
-84061,49,043,49043,391,186,77952062,77923403,391,186,77952062,77923403,36324,26545,4874281491,4847710464,100,100,100,100,1.08,0.7,1.6,1.61
-84062,49,049,49049,43269,12319,105479622,105409058,43269,12319,105479622,105409058,516564,148350,5553229748,5188922666,100,100,100,100,8.38,8.3,1.9,2.03
-84063,49,047,49047,334,138,854788345,839949768,334,138,854788345,839949768,32588,11972,11658537354,11602350635,100,100,100,100,1.02,1.15,7.33,7.24
-84064,49,033,49033,692,314,401380911,400995208,692,314,401380911,400995208,2264,2834,2813650178,2664514120,100,100,100,100,30.57,11.08,14.27,15.05
-84065,49,035,49035,38168,9819,54012173,54003593,38168,9819,54012173,54003593,1029655,364031,2091071090,1922501205,100,100,100,100,3.71,2.7,2.58,2.81
-84066,49,013,49013,9566,3306,300196130,299243588,11283,3894,435687157,434263157,18607,9493,8432796597,8394008306,84.78,84.9,68.9,68.91,51.41,34.83,3.56,3.56
-84066,49,047,49047,1717,588,135491027,135019569,11283,3894,435687157,434263157,32588,11972,11658537354,11602350635,15.22,15.1,31.1,31.09,5.27,4.91,1.16,1.16
-84067,49,057,49057,37444,12791,21305787,21301336,37444,12791,21305787,21301336,231236,86187,1707803237,1492050864,100,100,100,100,16.19,14.84,1.25,1.43
-84069,49,045,49045,505,209,165901979,165901309,505,209,165901979,165901309,58218,19455,18870858544,17978017875,100,100,100,100,0.87,1.07,0.88,0.92
-84070,49,035,49035,24861,9530,18635445,18635445,24861,9530,18635445,18635445,1029655,364031,2091071090,1922501205,100,100,100,100,2.41,2.62,0.89,0.97
-84071,49,045,49045,1175,407,279624682,277461036,1175,407,279624682,277461036,58218,19455,18870858544,17978017875,100,100,100,100,2.02,2.09,1.48,1.54
-84072,49,013,49013,372,332,309609060,309609060,372,332,309609060,309609060,18607,9493,8432796597,8394008306,100,100,100,100,2,3.5,3.67,3.69
-84073,49,013,49013,191,82,44095140,44075289,191,82,44095140,44075289,18607,9493,8432796597,8394008306,100,100,100,100,1.03,0.86,0.52,0.53
-84074,49,045,49045,44310,14385,283415519,282848303,44310,14385,283415519,282848303,58218,19455,18870858544,17978017875,100,100,100,100,76.11,73.94,1.5,1.57
-84075,49,011,49011,24506,6586,37064299,36655006,24506,6586,37064299,36655006,306479,97570,1641955117,773832198,100,100,100,100,8,6.75,2.26,4.74
-84076,49,047,49047,390,115,46486308,46486308,390,115,46486308,46486308,32588,11972,11658537354,11602350635,100,100,100,100,1.2,0.96,0.4,0.4
-84078,49,009,49009,0,28,209078,209078,25851,9548,2412637695,2402068708,1059,1141,1866629342,1805167690,0,0.29,0.01,0.01,0,2.45,0.01,0.01
-84078,49,047,49047,25851,9520,2412428617,2401859630,25851,9548,2412637695,2402068708,32588,11972,11658537354,11602350635,100,99.71,99.99,99.99,79.33,79.52,20.69,20.7
-84080,49,045,49045,304,108,90878502,90689417,304,108,90878502,90689417,58218,19455,18870858544,17978017875,100,100,100,100,0.52,0.56,0.48,0.5
-84081,49,035,49035,40732,11425,37919622,37919622,40732,11425,37919622,37919622,1029655,364031,2091071090,1922501205,100,100,100,100,3.96,3.14,1.81,1.97
-84082,49,051,49051,743,296,277475077,277475077,743,296,277475077,277475077,23530,10577,3123486856,3044533262,100,100,100,100,3.16,2.8,8.88,9.11
-84083,49,003,49003,18,10,3211853185,3211679036,1516,658,5421893075,5420215136,49975,17326,17428849266,14880907163,1.19,1.52,59.24,59.25,0.04,0.06,18.43,21.58
-84083,49,023,49023,98,58,1157377921,1156258087,1516,658,5421893075,5420215136,10246,3502,8822530081,8785958124,6.46,8.81,21.35,21.33,0.96,1.66,13.12,13.16
-84083,49,045,49045,1400,590,1052661969,1052278013,1516,658,5421893075,5420215136,58218,19455,18870858544,17978017875,92.35,89.67,19.42,19.41,2.4,3.03,5.58,5.85
-84084,49,035,49035,37247,12110,19989848,19989848,37247,12110,19989848,19989848,1029655,364031,2091071090,1922501205,100,100,100,100,3.62,3.33,0.96,1.04
-84085,49,047,49047,531,198,252779115,251739185,531,198,252779115,251739185,32588,11972,11658537354,11602350635,100,100,100,100,1.63,1.65,2.17,2.17
-84086,49,033,49033,401,173,259049253,258939206,401,173,259049253,258939206,2264,2834,2813650178,2664514120,100,100,100,100,17.71,6.1,9.21,9.72
-84087,49,011,49011,13983,4252,35368125,33583418,13983,4252,35368125,33583418,306479,97570,1641955117,773832198,100,100,100,100,4.56,4.36,2.15,4.34
-84088,49,035,49035,35603,10964,24395069,24395069,35603,10964,24395069,24395069,1029655,364031,2091071090,1922501205,100,100,100,100,3.46,3.01,1.17,1.27
-84092,49,035,49035,29525,9771,141924751,141724364,29525,9771,141924751,141724364,1029655,364031,2091071090,1922501205,100,100,100,100,2.87,2.68,6.79,7.37
-84093,49,035,49035,23130,7602,14046164,14046164,23130,7602,14046164,14046164,1029655,364031,2091071090,1922501205,100,100,100,100,2.25,2.09,0.67,0.73
-84094,49,035,49035,28069,9297,13223087,13223087,28069,9297,13223087,13223087,1029655,364031,2091071090,1922501205,100,100,100,100,2.73,2.55,0.63,0.69
-84095,49,035,49035,50566,14987,58862235,58665239,50566,14987,58862235,58665239,1029655,364031,2091071090,1922501205,100,100,100,100,4.91,4.12,2.81,3.05
-84096,49,035,49035,33396,9358,182027733,181899214,33396,9358,182027733,181899214,1029655,364031,2091071090,1922501205,100,100,100,100,3.24,2.57,8.7,9.46
-84097,49,049,49049,21322,6249,15555370,15555370,21322,6249,15555370,15555370,516564,148350,5553229748,5188922666,100,100,100,100,4.13,4.21,0.28,0.3
-84098,49,043,49043,17282,9827,212641790,212606138,17282,9827,212641790,212606138,36324,26545,4874281491,4847710464,100,100,100,100,47.58,37.02,4.36,4.39
-84101,49,035,49035,5277,2916,4712265,4712265,5277,2916,4712265,4712265,1029655,364031,2091071090,1922501205,100,100,100,100,0.51,0.8,0.23,0.25
-84102,49,035,49035,17421,9789,4594063,4594063,17421,9789,4594063,4594063,1029655,364031,2091071090,1922501205,100,100,100,100,1.69,2.69,0.22,0.24
-84103,49,035,49035,21084,11459,39082615,39082615,21084,11459,39082615,39082615,1029655,364031,2091071090,1922501205,100,100,100,100,2.05,3.15,1.87,2.03
-84104,49,035,49035,24869,7579,55015264,54996101,24869,7579,55015264,54996101,1029655,364031,2091071090,1922501205,100,100,100,100,2.42,2.08,2.63,2.86
-84105,49,035,49035,22140,10005,7872934,7872934,22140,10005,7872934,7872934,1029655,364031,2091071090,1922501205,100,100,100,100,2.15,2.75,0.38,0.41
-84106,49,035,49035,33384,14836,15641079,15641079,33384,14836,15641079,15641079,1029655,364031,2091071090,1922501205,100,100,100,100,3.24,4.08,0.75,0.81
-84107,49,035,49035,30863,13866,19430237,19430237,30863,13866,19430237,19430237,1029655,364031,2091071090,1922501205,100,100,100,100,3,3.81,0.93,1.01
-84108,49,035,49035,20738,8502,178609253,178228247,20738,8502,178609253,178228247,1029655,364031,2091071090,1922501205,100,100,100,100,2.01,2.34,8.54,9.27
-84109,49,035,49035,23858,9385,159512216,159504953,23858,9385,159512216,159504953,1029655,364031,2091071090,1922501205,100,100,100,100,2.32,2.58,7.63,8.3
-84111,49,035,49035,10744,6470,3713794,3713794,10744,6470,3713794,3713794,1029655,364031,2091071090,1922501205,100,100,100,100,1.04,1.78,0.18,0.19
-84112,49,035,49035,1942,388,2229459,2229459,1942,388,2229459,2229459,1029655,364031,2091071090,1922501205,100,100,100,100,0.19,0.11,0.11,0.12
-84113,49,035,49035,245,14,611596,611596,245,14,611596,611596,1029655,364031,2091071090,1922501205,100,100,100,100,0.02,0,0.03,0.03
-84115,49,035,49035,24668,10892,15947145,15947145,24668,10892,15947145,15947145,1029655,364031,2091071090,1922501205,100,100,100,100,2.4,2.99,0.76,0.83
-84116,49,035,49035,33297,10535,97453277,97250648,33297,10535,97453277,97250648,1029655,364031,2091071090,1922501205,100,100,100,100,3.23,2.89,4.66,5.06
-84117,49,035,49035,24305,10722,14815378,14815378,24305,10722,14815378,14815378,1029655,364031,2091071090,1922501205,100,100,100,100,2.36,2.95,0.71,0.77
-84118,49,035,49035,68295,20084,44361298,44361298,68295,20084,44361298,44361298,1029655,364031,2091071090,1922501205,100,100,100,100,6.63,5.52,2.12,2.31
-84119,49,035,49035,53077,17547,31371607,31234881,53077,17547,31371607,31234881,1029655,364031,2091071090,1922501205,100,100,100,100,5.15,4.82,1.5,1.62
-84120,49,035,49035,48956,13994,26348282,26348282,48956,13994,26348282,26348282,1029655,364031,2091071090,1922501205,100,100,100,100,4.75,3.84,1.26,1.37
-84121,49,035,49035,41702,17183,167158012,166739729,41702,17183,167158012,166739729,1029655,364031,2091071090,1922501205,100,100,100,100,4.05,4.72,7.99,8.67
-84123,49,035,49035,37900,14770,21291280,21291280,37900,14770,21291280,21291280,1029655,364031,2091071090,1922501205,100,100,100,100,3.68,4.06,1.02,1.11
-84124,49,035,49035,21295,8354,15042373,15042373,21295,8354,15042373,15042373,1029655,364031,2091071090,1922501205,100,100,100,100,2.07,2.29,0.72,0.78
-84128,49,035,49035,27983,7503,26489343,26489343,27983,7503,26489343,26489343,1029655,364031,2091071090,1922501205,100,100,100,100,2.72,2.06,1.27,1.38
-84144,49,035,49035,0,0,58280,58280,0,0,58280,58280,1029655,364031,2091071090,1922501205,0,0,100,100,0,0,0,0
-84180,49,035,49035,0,0,59013,59013,0,0,59013,59013,1029655,364031,2091071090,1922501205,0,0,100,100,0,0,0,0
-84301,49,003,49003,883,299,11365227,11365227,883,299,11365227,11365227,49975,17326,17428849266,14880907163,100,100,100,100,1.77,1.73,0.07,0.08
-84302,49,003,49003,23703,8203,150537938,149117537,23703,8203,150537938,149117537,49975,17326,17428849266,14880907163,100,100,100,100,47.43,47.35,0.86,1
-84304,49,005,49005,40,18,33602643,32185975,40,18,33602643,32185975,112656,37024,3038115707,3016851000,100,100,100,100,0.04,0.05,1.11,1.07
-84305,49,005,49005,751,257,107823197,107823197,751,257,107823197,107823197,112656,37024,3038115707,3016851000,100,100,100,100,0.67,0.69,3.55,3.57
-84306,49,003,49003,318,113,45806403,45748227,318,113,45806403,45748227,49975,17326,17428849266,14880907163,100,100,100,100,0.64,0.65,0.26,0.31
-84307,49,003,49003,1375,501,1151350118,1144071276,1375,501,1151350118,1144071276,49975,17326,17428849266,14880907163,100,100,100,100,2.75,2.89,6.61,7.69
-84308,49,005,49005,325,101,63801737,63672752,325,101,63801737,63672752,112656,37024,3038115707,3016851000,100,100,100,100,0.29,0.27,2.1,2.11
-84309,49,003,49003,535,205,22097978,22097978,535,205,22097978,22097978,49975,17326,17428849266,14880907163,100,100,100,100,1.07,1.18,0.13,0.15
-84310,49,057,49057,4111,2287,295971937,291954923,4111,2287,295971937,291954923,231236,86187,1707803237,1492050864,100,100,100,100,1.78,2.65,17.33,19.57
-84311,49,003,49003,714,248,18170696,18170696,714,248,18170696,18170696,49975,17326,17428849266,14880907163,100,100,100,100,1.43,1.43,0.1,0.12
-84312,49,003,49003,4028,1297,60792707,60705242,4028,1297,60792707,60705242,49975,17326,17428849266,14880907163,100,100,100,100,8.06,7.49,0.35,0.41
-84313,49,003,49003,68,103,739318019,738970036,68,103,739318019,738970036,49975,17326,17428849266,14880907163,100,100,100,100,0.14,0.59,4.24,4.97
-84314,49,003,49003,1031,330,20869994,20869994,1031,330,20869994,20869994,49975,17326,17428849266,14880907163,100,100,100,100,2.06,1.9,0.12,0.14
-84315,49,011,49011,321,113,10415580,9944894,7581,2284,48370634,45958088,306479,97570,1641955117,773832198,4.23,4.95,21.53,21.64,0.1,0.12,0.63,1.29
-84315,49,057,49057,7260,2171,37955054,36013194,7581,2284,48370634,45958088,231236,86187,1707803237,1492050864,95.77,95.05,78.47,78.36,3.14,2.52,2.22,2.41
-84316,49,003,49003,254,109,420262408,419749138,254,109,420262408,419749138,49975,17326,17428849266,14880907163,100,100,100,100,0.51,0.63,2.41,2.82
-84317,49,057,49057,2304,2355,565040161,558279236,2304,2355,565040161,558279236,231236,86187,1707803237,1492050864,100,100,100,100,1,2.73,33.09,37.42
-84318,49,005,49005,3918,1128,11796634,11796634,3918,1128,11796634,11796634,112656,37024,3038115707,3016851000,100,100,100,100,3.48,3.05,0.39,0.39
-84319,49,005,49005,7905,2365,254308306,252508719,7905,2365,254308306,252508719,112656,37024,3038115707,3016851000,100,100,100,100,7.02,6.39,8.37,8.37
-84320,49,005,49005,2237,749,115462816,115147423,2237,749,115462816,115147423,112656,37024,3038115707,3016851000,100,100,100,100,1.99,2.02,3.8,3.82
-84321,49,005,49005,44074,14718,500977865,498609538,44074,14718,500977865,498609538,112656,37024,3038115707,3016851000,100,100,100,100,39.12,39.75,16.49,16.53
-84324,49,003,49003,701,257,30824946,30824946,701,257,30824946,30824946,49975,17326,17428849266,14880907163,100,100,100,100,1.4,1.48,0.18,0.21
-84325,49,005,49005,2078,597,97452428,95614195,2078,597,97452428,95614195,112656,37024,3038115707,3016851000,100,100,100,100,1.84,1.61,3.21,3.17
-84326,49,005,49005,1763,496,7762426,7762426,1763,496,7762426,7762426,112656,37024,3038115707,3016851000,100,100,100,100,1.56,1.34,0.26,0.26
-84327,49,005,49005,951,286,46580061,44734449,951,286,46580061,44734449,112656,37024,3038115707,3016851000,100,100,100,100,0.84,0.77,1.53,1.48
-84328,49,005,49005,1666,536,150566732,150566732,1666,536,150566732,150566732,112656,37024,3038115707,3016851000,100,100,100,100,1.48,1.45,4.96,4.99
-84329,49,003,49003,202,144,1245948762,1245902081,202,144,1245948762,1245902081,49975,17326,17428849266,14880907163,100,100,100,100,0.4,0.83,7.15,8.37
-84330,49,003,49003,502,161,74869951,74869951,502,161,74869951,74869951,49975,17326,17428849266,14880907163,100,100,100,100,1,0.93,0.43,0.5
-84331,49,003,49003,272,115,144601557,144601557,272,115,144601557,144601557,49975,17326,17428849266,14880907163,100,100,100,100,0.54,0.66,0.83,0.97
-84332,49,005,49005,7218,2331,10825455,10825455,7218,2331,10825455,10825455,112656,37024,3038115707,3016851000,100,100,100,100,6.41,6.3,0.36,0.36
-84333,49,005,49005,2722,874,62704218,62234258,2722,874,62704218,62234258,112656,37024,3038115707,3016851000,100,100,100,100,2.42,2.36,2.06,2.06
-84334,49,003,49003,230,95,2352653,2352653,230,95,2352653,2352653,49975,17326,17428849266,14880907163,100,100,100,100,0.46,0.55,0.01,0.02
-84335,49,005,49005,11372,3561,181654903,172135351,11372,3561,181654903,172135351,112656,37024,3038115707,3016851000,100,100,100,100,10.09,9.62,5.98,5.71
-84336,49,003,49003,281,136,728910502,728413553,281,136,728910502,728413553,49975,17326,17428849266,14880907163,100,100,100,100,0.56,0.78,4.18,4.89
-84337,49,003,49003,11393,3783,454100086,451273985,11393,3783,454100086,451273985,49975,17326,17428849266,14880907163,100,100,100,100,22.8,21.83,2.61,3.03
-84338,49,005,49005,481,166,28613265,28297232,481,166,28613265,28297232,112656,37024,3038115707,3016851000,100,100,100,100,0.43,0.45,0.94,0.94
-84339,49,005,49005,5046,1507,146193505,145863851,5046,1507,146193505,145863851,112656,37024,3038115707,3016851000,100,100,100,100,4.48,4.07,4.81,4.83
-84340,49,003,49003,3369,1141,31489503,31489503,3369,1141,31489503,31489503,49975,17326,17428849266,14880907163,100,100,100,100,6.74,6.59,0.18,0.21
-84341,49,005,49005,20109,7082,31818121,31796719,20109,7082,31818121,31796719,112656,37024,3038115707,3016851000,100,100,100,100,17.85,19.13,1.05,1.05
-84401,49,057,49057,35622,14096,77266811,76445717,35622,14096,77266811,76445717,231236,86187,1707803237,1492050864,100,100,100,100,15.41,16.36,4.52,5.12
-84403,49,057,49057,36582,13885,93306838,93274452,36582,13885,93306838,93274452,231236,86187,1707803237,1492050864,100,100,100,100,15.82,16.11,5.46,6.25
-84404,49,057,49057,56363,20140,244872684,241246525,56363,20140,244872684,241246525,231236,86187,1707803237,1492050864,100,100,100,100,24.37,23.37,14.34,16.17
-84405,49,011,49011,6305,1744,15018562,14855637,31348,11450,46692570,46522323,306479,97570,1641955117,773832198,20.11,15.23,32.16,31.93,2.06,1.79,0.91,1.92
-84405,49,057,49057,25043,9706,31674008,31666686,31348,11450,46692570,46522323,231236,86187,1707803237,1492050864,79.89,84.77,67.84,68.07,10.83,11.26,1.85,2.12
-84414,49,057,49057,26507,8756,42184001,42184001,26507,8756,42184001,42184001,231236,86187,1707803237,1492050864,100,100,100,100,11.46,10.16,2.47,2.83
-84501,49,007,49007,13612,5313,373590087,373533104,13612,5313,373590087,373533104,21403,9551,3845053207,3829279233,100,100,100,100,63.6,55.63,9.72,9.75
-84511,49,037,49037,4672,1617,1118867763,1115506701,4672,1617,1118867763,1115506701,14746,5734,20546771694,20253675635,100,100,100,100,31.68,28.2,5.45,5.51
-84512,49,037,49037,1093,504,727257484,725745785,1093,504,727257484,725745785,14746,5734,20546771694,20253675635,100,100,100,100,7.41,8.79,3.54,3.58
-84513,49,015,49015,1710,737,29092006,29035388,1710,737,29092006,29035388,10976,4489,11581932072,11557340590,100,100,100,100,15.58,16.42,0.25,0.25
-84515,49,019,49019,15,18,832044125,824494793,15,18,832044125,824494793,9225,4816,9540692140,9509252821,100,100,100,100,0.16,0.37,8.72,8.67
-84516,49,015,49015,227,87,60772929,60772929,227,87,60772929,60772929,10976,4489,11581932072,11557340590,100,100,100,100,2.07,1.94,0.52,0.53
-84518,49,015,49015,702,268,171595783,171530946,702,268,171595783,171530946,10976,4489,11581932072,11557340590,100,100,100,100,6.4,5.97,1.48,1.48
-84520,49,007,49007,1302,722,14745169,14729264,1302,722,14745169,14729264,21403,9551,3845053207,3829279233,100,100,100,100,6.08,7.56,0.38,0.38
-84521,49,015,49015,840,314,149636218,148154695,840,314,149636218,148154695,10976,4489,11581932072,11557340590,100,100,100,100,7.65,6.99,1.29,1.28
-84522,49,015,49015,321,168,142014246,141964368,321,168,142014246,141964368,10976,4489,11581932072,11557340590,100,100,100,100,2.92,3.74,1.23,1.23
-84523,49,015,49015,1797,675,296924420,295001586,1797,675,296924420,295001586,10976,4489,11581932072,11557340590,100,100,100,100,16.37,15.04,2.56,2.55
-84525,49,015,49015,1132,465,1646172888,1644786375,1183,497,2826946348,2814449796,10976,4489,11581932072,11557340590,95.69,93.56,58.23,58.44,10.31,10.36,14.21,14.23
-84525,49,019,49019,51,32,1180773460,1169663421,1183,497,2826946348,2814449796,9225,4816,9540692140,9509252821,4.31,6.44,41.77,41.56,0.55,0.66,12.38,12.3
-84526,49,007,49007,4124,2497,761440260,750451749,4134,2518,844751998,833763487,21403,9551,3845053207,3829279233,99.76,99.17,90.14,90.01,19.27,26.14,19.8,19.6
-84526,49,013,49013,2,3,4649113,4649113,4134,2518,844751998,833763487,18607,9493,8432796597,8394008306,0.05,0.12,0.55,0.56,0.01,0.03,0.06,0.06
-84526,49,049,49049,8,18,78662625,78662625,4134,2518,844751998,833763487,516564,148350,5553229748,5188922666,0.19,0.71,9.31,9.43,0,0.01,1.42,1.52
-84528,49,015,49015,2742,1068,455528239,454256700,2742,1068,455528239,454256700,10976,4489,11581932072,11557340590,100,100,100,100,24.98,23.79,3.93,3.93
-84529,49,007,49007,180,112,3287268,3287268,180,112,3287268,3287268,21403,9551,3845053207,3829279233,100,100,100,100,0.84,1.17,0.09,0.09
-84530,49,037,49037,460,263,720662692,720259462,460,263,720662692,720259462,14746,5734,20546771694,20253675635,100,100,100,100,3.12,4.59,3.51,3.56
-84531,04,001,04001,20,13,150659958,150422616,642,261,1480459164,1474694505,71518,32514,29055619613,29001443825,3.12,4.98,10.18,10.2,0.03,0.04,0.52,0.52
-84531,49,037,49037,622,248,1329799206,1324271889,642,261,1480459164,1474694505,14746,5734,20546771694,20253675635,96.88,95.02,89.82,89.8,4.22,4.33,6.47,6.54
-84532,49,019,49019,9115,4708,2162893678,2152090672,9772,5016,3829194645,3800718411,9225,4816,9540692140,9509252821,93.28,93.86,56.48,56.62,98.81,97.76,22.67,22.63
-84532,49,037,49037,657,308,1666300967,1648627739,9772,5016,3829194645,3800718411,14746,5734,20546771694,20253675635,6.72,6.14,43.52,43.38,4.46,5.37,8.11,8.14
-84533,49,017,49017,89,152,525289825,525289825,267,346,3756440691,3578540349,5172,3726,13489297914,13403502531,33.33,43.93,13.98,14.68,1.72,4.08,3.89,3.92
-84533,49,025,49025,144,107,29584743,29584743,267,346,3756440691,3578540349,7125,5815,10641011849,10334644139,53.93,30.92,0.79,0.83,2.02,1.84,0.28,0.29
-84533,49,037,49037,34,87,3201566123,3023665781,267,346,3756440691,3578540349,14746,5734,20546771694,20253675635,12.73,25.14,85.23,84.49,0.23,1.52,15.58,14.93
-84534,49,037,49037,2654,854,1134153830,1128999701,2654,854,1134153830,1128999701,14746,5734,20546771694,20253675635,100,100,100,100,18,14.89,5.52,5.57
-84535,49,037,49037,2601,1079,4875961564,4871767686,2601,1079,4875961564,4871767686,14746,5734,20546771694,20253675635,100,100,100,100,17.64,18.82,23.73,24.05
-84536,04,017,04017,280,89,129980400,129779298,1454,513,1546743287,1546533859,107449,56938,25795551384,25771473007,19.26,17.35,8.4,8.39,0.26,0.16,0.5,0.5
-84536,49,037,49037,1174,424,1416762887,1416754561,1454,513,1546743287,1546533859,14746,5734,20546771694,20253675635,80.74,82.65,91.6,91.61,7.96,7.39,6.9,7
-84537,49,015,49015,1505,691,242598326,242569757,1505,691,242598326,242569757,10976,4489,11581932072,11557340590,100,100,100,100,13.71,15.39,2.09,2.1
-84539,49,007,49007,379,179,104450389,104450389,379,179,104450389,104450389,21403,9551,3845053207,3829279233,100,100,100,100,1.77,1.87,2.72,2.73
-84540,49,019,49019,44,58,2575557867,2575557867,46,62,2635960859,2635960859,9225,4816,9540692140,9509252821,95.65,93.55,97.71,97.71,0.48,1.2,27,27.08
-84540,49,047,49047,2,4,60402992,60402992,46,62,2635960859,2635960859,32588,11972,11658537354,11602350635,4.35,6.45,2.29,2.29,0.01,0.03,0.52,0.52
-84542,49,007,49007,1806,722,17413395,17413395,1806,722,17413395,17413395,21403,9551,3845053207,3829279233,100,100,100,100,8.44,7.56,0.45,0.45
-84601,49,049,49049,31486,10218,36226454,36205030,31486,10218,36226454,36205030,516564,148350,5553229748,5188922666,100,100,100,100,6.1,6.89,0.65,0.7
-84604,49,049,49049,49061,13333,293000021,292981046,49145,13383,324485123,324466148,516564,148350,5553229748,5188922666,99.83,99.63,90.3,90.3,9.5,8.99,5.28,5.65
-84604,49,051,49051,84,50,31485102,31485102,49145,13383,324485123,324466148,23530,10577,3123486856,3044533262,0.17,0.37,9.7,9.7,0.36,0.47,1.01,1.03
-84606,49,049,49049,32291,10097,29316820,29316820,32291,10097,29316820,29316820,516564,148350,5553229748,5188922666,100,100,100,100,6.25,6.81,0.53,0.56
-84620,49,041,49041,1151,409,41778294,41778294,1151,409,41778294,41778294,20802,8449,4968632277,4948372346,100,100,100,100,5.53,4.84,0.84,0.84
-84621,49,039,49039,240,84,19168656,19006734,240,84,19168656,19006734,27822,10379,4150551533,4118475669,100,100,100,100,0.86,0.81,0.46,0.46
-84622,49,039,49039,1517,484,50196592,50196592,1517,484,50196592,50196592,27822,10379,4150551533,4118475669,100,100,100,100,5.45,4.66,1.21,1.22
-84623,49,039,49039,405,131,54101932,53951357,405,131,54101932,53951357,27822,10379,4150551533,4118475669,100,100,100,100,1.46,1.26,1.3,1.31
-84624,49,027,49027,5668,2150,1270704191,1268242224,5668,2150,1270704191,1268242224,12503,4939,17684156153,17022500900,100,100,100,100,45.33,43.53,7.19,7.45
-84626,49,049,49049,410,114,228726083,228680482,410,114,228726083,228680482,516564,148350,5553229748,5188922666,100,100,100,100,0.08,0.08,4.12,4.41
-84627,49,039,49039,6310,1817,86385876,86268798,6310,1817,86385876,86268798,27822,10379,4150551533,4118475669,100,100,100,100,22.68,17.51,2.08,2.09
-84628,49,023,49023,692,346,24286456,24286456,721,357,53340975,53340975,10246,3502,8822530081,8785958124,95.98,96.92,45.53,45.53,6.75,9.88,0.28,0.28
-84628,49,045,49045,29,11,29054519,29054519,721,357,53340975,53340975,58218,19455,18870858544,17978017875,4.02,3.08,54.47,54.47,0.05,0.06,0.15,0.16
-84629,49,039,49039,2380,1905,342585959,342107796,2531,1959,672718021,672156833,27822,10379,4150551533,4118475669,94.03,97.24,50.93,50.9,8.55,18.35,8.25,8.31
-84629,49,049,49049,151,54,330132062,330049037,2531,1959,672718021,672156833,516564,148350,5553229748,5188922666,5.97,2.76,49.07,49.1,0.03,0.04,5.94,6.36
-84630,49,039,49039,294,118,257304152,257286189,294,118,257304152,257286189,27822,10379,4150551533,4118475669,100,100,100,100,1.06,1.14,6.2,6.25
-84631,49,027,49027,3067,1191,428687224,428628339,3067,1191,428687224,428628339,12503,4939,17684156153,17022500900,100,100,100,100,24.53,24.11,2.42,2.52
-84632,49,039,49039,1148,407,68441719,68441719,1148,407,68441719,68441719,27822,10379,4150551533,4118475669,100,100,100,100,4.13,3.92,1.65,1.66
-84633,49,049,49049,1048,356,110111392,109921593,1048,356,110111392,109921593,516564,148350,5553229748,5188922666,100,100,100,100,0.2,0.24,1.98,2.12
-84634,49,039,49039,3395,667,109020565,109020565,3395,667,109020565,109020565,27822,10379,4150551533,4118475669,100,100,100,100,12.2,6.43,2.63,2.65
-84635,49,027,49027,863,326,98167377,98163854,863,326,98167377,98163854,12503,4939,17684156153,17022500900,100,100,100,100,6.9,6.6,0.56,0.58
-84636,49,027,49027,474,210,169711355,169711355,474,210,169711355,169711355,12503,4939,17684156153,17022500900,100,100,100,100,3.79,4.25,0.96,1
-84637,49,027,49027,729,335,346877740,346874376,729,335,346877740,346874376,12503,4939,17684156153,17022500900,100,100,100,100,5.83,6.78,1.96,2.04
-84638,49,027,49027,294,105,124816966,121202034,294,105,124816966,121202034,12503,4939,17684156153,17022500900,100,100,100,100,2.35,2.13,0.71,0.71
-84639,49,023,49023,963,395,549963827,547816627,963,395,549963827,547816627,10246,3502,8822530081,8785958124,100,100,100,100,9.4,11.28,6.23,6.24
-84640,49,027,49027,121,62,91440910,91371404,121,62,91440910,91371404,12503,4939,17684156153,17022500900,100,100,100,100,0.97,1.26,0.52,0.54
-84642,49,039,49039,3548,1202,131264832,129800651,3548,1202,131264832,129800651,27822,10379,4150551533,4118475669,100,100,100,100,12.75,11.58,3.16,3.15
-84643,49,039,49039,605,251,66781147,66781147,605,251,66781147,66781147,27822,10379,4150551533,4118475669,100,100,100,100,2.17,2.42,1.61,1.62
-84645,49,023,49023,2620,674,224504346,218314375,2620,674,224504346,218314375,10246,3502,8822530081,8785958124,100,100,100,100,25.57,19.25,2.54,2.48
-84646,49,039,49039,1657,571,100660406,100634175,1657,571,100660406,100634175,27822,10379,4150551533,4118475669,100,100,100,100,5.96,5.5,2.43,2.44
-84647,49,039,49039,4019,1744,284226611,284226611,4019,1744,284226611,284226611,27822,10379,4150551533,4118475669,100,100,100,100,14.45,16.8,6.85,6.9
-84648,49,023,49023,5776,1972,401392838,401392838,5776,1972,401392838,401392838,10246,3502,8822530081,8785958124,100,100,100,100,56.37,56.31,4.55,4.57
-84649,49,027,49027,760,277,593133522,588399376,760,277,593133522,588399376,12503,4939,17684156153,17022500900,100,100,100,100,6.08,5.61,3.35,3.46
-84651,49,049,49049,23457,6790,282283249,282095615,23457,6790,282283249,282095615,516564,148350,5553229748,5188922666,100,100,100,100,4.54,4.58,5.08,5.44
-84652,49,041,49041,872,310,30501058,30501058,872,310,30501058,30501058,20802,8449,4968632277,4948372346,100,100,100,100,4.19,3.67,0.61,0.62
-84653,49,049,49049,7947,2248,57512635,57452531,7947,2248,57512635,57452531,516564,148350,5553229748,5188922666,100,100,100,100,1.54,1.52,1.04,1.11
-84654,49,041,49041,2689,1317,637156979,636641104,2689,1317,637156979,636641104,20802,8449,4968632277,4948372346,100,100,100,100,12.93,15.59,12.82,12.87
-84655,49,049,49049,10547,2861,118081823,117969708,10547,2861,118081823,117969708,516564,148350,5553229748,5188922666,100,100,100,100,2.04,1.93,2.13,2.27
-84656,49,023,49023,8,2,4896650,4896650,345,165,52067399,49032396,10246,3502,8822530081,8785958124,2.32,1.21,9.4,9.99,0.08,0.06,0.06,0.06
-84656,49,027,49027,337,163,47170749,44135746,345,165,52067399,49032396,12503,4939,17684156153,17022500900,97.68,98.79,90.6,90.01,2.7,3.3,0.27,0.26
-84657,49,041,49041,505,179,55046504,53946306,505,179,55046504,53946306,20802,8449,4968632277,4948372346,100,100,100,100,2.43,2.12,1.11,1.09
-84660,49,049,49049,37995,10475,361875394,361230376,37995,10475,361875394,361230376,516564,148350,5553229748,5188922666,100,100,100,100,7.36,7.06,6.52,6.96
-84662,49,039,49039,1371,534,204683424,204659435,1371,534,204683424,204659435,27822,10379,4150551533,4118475669,100,100,100,100,4.93,5.15,4.93,4.97
-84663,49,049,49049,29975,9197,354297300,354297300,29975,9197,354297300,354297300,516564,148350,5553229748,5188922666,100,100,100,100,5.8,6.2,6.38,6.83
-84664,49,049,49049,8033,2136,44250438,44250438,8033,2136,44250438,44250438,516564,148350,5553229748,5188922666,100,100,100,100,1.56,1.44,0.8,0.85
-84665,49,039,49039,528,194,61192414,58458884,528,194,61192414,58458884,27822,10379,4150551533,4118475669,100,100,100,100,1.9,1.87,1.47,1.42
-84667,49,039,49039,405,137,43581836,42265115,405,137,43581836,42265115,27822,10379,4150551533,4118475669,100,100,100,100,1.46,1.32,1.05,1.03
-84701,49,041,49041,8692,3447,699031157,694513133,8692,3447,699031157,694513133,20802,8449,4968632277,4948372346,100,100,100,100,41.78,40.8,14.07,14.04
-84710,49,025,49025,131,140,79514365,79399742,131,140,79514365,79399742,7125,5815,10641011849,10334644139,100,100,100,100,1.84,2.41,0.75,0.77
-84711,49,041,49041,735,244,94375740,94007927,735,244,94375740,94007927,20802,8449,4968632277,4948372346,100,100,100,100,3.53,2.89,1.9,1.9
-84712,49,017,49017,147,129,391489101,391357864,201,172,538079354,527160818,5172,3726,13489297914,13403502531,73.13,75,72.76,74.24,2.84,3.46,2.9,2.92
-84712,49,031,49031,54,43,146590253,135802954,201,172,538079354,527160818,1556,898,1983197028,1962668913,26.87,25,27.24,25.76,3.47,4.79,7.39,6.92
-84713,49,001,49001,3764,1738,254467624,254428722,3792,1753,263776943,263738041,6629,2908,6713088580,6707757757,99.26,99.14,96.47,96.47,56.78,59.77,3.79,3.79
-84713,49,027,49027,28,15,9309319,9309319,3792,1753,263776943,263738041,12503,4939,17684156153,17022500900,0.74,0.86,3.53,3.53,0.22,0.3,0.05,0.05
-84714,49,021,49021,835,474,1029350141,1029168930,835,474,1029350141,1029168930,46163,19667,8549757670,8538363871,100,100,100,100,1.81,2.41,12.04,12.05
-84715,49,055,49055,459,211,73801333,73801333,459,211,73801333,73801333,2778,1591,6388176886,6373122094,100,100,100,100,16.52,13.26,1.16,1.16
-84716,49,017,49017,297,238,661152706,660313228,297,238,661152706,660313228,5172,3726,13489297914,13403502531,100,100,100,100,5.74,6.39,4.9,4.93
-84718,49,017,49017,177,80,41044056,41044056,189,83,76099278,76099278,5172,3726,13489297914,13403502531,93.65,96.39,53.93,53.93,3.42,2.15,0.3,0.31
-84718,49,025,49025,12,3,35055222,35055222,189,83,76099278,76099278,7125,5815,10641011849,10334644139,6.35,3.61,46.07,46.07,0.17,0.05,0.33,0.34
-84719,49,021,49021,90,1585,156540986,156503182,90,1585,156540986,156503182,46163,19667,8549757670,8538363871,100,100,100,100,0.19,8.06,1.83,1.83
-84720,49,021,49021,19705,7752,810387400,805657064,19705,7752,810387400,805657064,46163,19667,8549757670,8538363871,100,100,100,100,42.69,39.42,9.48,9.44
-84721,49,021,49021,20961,7459,659615426,656444208,20961,7459,659615426,656444208,46163,19667,8549757670,8538363871,100,100,100,100,45.41,37.93,7.72,7.69
-84722,49,053,49053,615,347,36146830,35995882,615,347,36146830,35995882,138115,57734,6293544792,6284236933,100,100,100,100,0.45,0.6,0.57,0.57
-84723,49,031,49031,687,320,40617406,40608913,687,320,40617406,40608913,1556,898,1983197028,1962668913,100,100,100,100,44.15,35.63,2.05,2.07
-84724,49,041,49041,1214,475,10003936,10003936,1214,475,10003936,10003936,20802,8449,4968632277,4948372346,100,100,100,100,5.84,5.62,0.2,0.2
-84725,49,053,49053,1964,686,436940628,435129850,1964,686,436940628,435129850,138115,57734,6293544792,6284236933,100,100,100,100,1.42,1.19,6.94,6.92
-84726,49,017,49017,961,499,972215217,971685855,961,499,972215217,971685855,5172,3726,13489297914,13403502531,100,100,100,100,18.58,13.39,7.21,7.25
-84728,49,027,49027,158,83,870234272,869031718,158,83,870234272,869031718,12503,4939,17684156153,17022500900,100,100,100,100,1.26,1.68,4.92,5.11
-84729,49,025,49025,396,208,257663263,257654397,396,208,257663263,257654397,7125,5815,10641011849,10334644139,100,100,100,100,5.56,3.58,2.42,2.49
-84730,49,041,49041,268,102,28750875,28697685,268,102,28750875,28697685,20802,8449,4968632277,4948372346,100,100,100,100,1.29,1.21,0.58,0.58
-84731,49,001,49001,194,85,200319705,200272973,194,85,200319705,200272973,6629,2908,6713088580,6707757757,100,100,100,100,2.93,2.92,2.98,2.99
-84732,49,031,49031,77,54,24400071,24400071,77,54,24400071,24400071,1556,898,1983197028,1962668913,100,100,100,100,4.95,6.01,1.23,1.24
-84733,49,053,49053,202,75,285553344,284516380,202,75,285553344,284516380,138115,57734,6293544792,6284236933,100,100,100,100,0.15,0.13,4.54,4.53
-84734,49,055,49055,261,127,2243823201,2236192684,261,127,2243823201,2236192684,2778,1591,6388176886,6373122094,100,100,100,100,9.4,7.98,35.12,35.09
-84735,49,017,49017,258,298,330388691,330388691,258,298,330388691,330388691,5172,3726,13489297914,13403502531,100,100,100,100,4.99,8,2.45,2.46
-84736,49,017,49017,246,97,22779208,22771316,246,97,22779208,22771316,5172,3726,13489297914,13403502531,100,100,100,100,4.76,2.6,0.17,0.17
-84737,49,053,49053,14838,5893,513169442,510656508,14838,5893,513169442,510656508,138115,57734,6293544792,6284236933,100,100,100,100,10.74,10.21,8.15,8.13
-84738,49,053,49053,6878,2928,57337314,57182070,6878,2928,57337314,57182070,138115,57734,6293544792,6284236933,100,100,100,100,4.98,5.07,0.91,0.91
-84739,49,041,49041,507,198,71822155,71822155,507,198,71822155,71822155,20802,8449,4968632277,4948372346,100,100,100,100,2.44,2.34,1.45,1.45
-84740,49,031,49031,191,121,128811007,124550954,191,121,128811007,124550954,1556,898,1983197028,1962668913,100,100,100,100,12.28,13.47,6.5,6.35
-84741,49,025,49025,5556,2875,3509214142,3507746902,5556,2875,3509214142,3507746902,7125,5815,10641011849,10334644139,100,100,100,100,77.98,49.44,32.98,33.94
-84742,49,021,49021,260,127,72030536,72006528,260,127,72030536,72006528,46163,19667,8549757670,8538363871,100,100,100,100,0.56,0.65,0.84,0.84
-84743,49,031,49031,34,19,81513966,81513966,34,19,81513966,81513966,1556,898,1983197028,1962668913,100,100,100,100,2.19,2.12,4.11,4.15
-84744,49,031,49031,44,21,10698232,10669722,411,229,99745453,99716943,1556,898,1983197028,1962668913,10.71,9.17,10.73,10.7,2.83,2.34,0.54,0.54
-84744,49,041,49041,367,208,89047221,89047221,411,229,99745453,99716943,20802,8449,4968632277,4948372346,89.29,90.83,89.27,89.3,1.76,2.46,1.79,1.8
-84745,49,053,49053,4066,1429,44818260,44818260,4066,1429,44818260,44818260,138115,57734,6293544792,6284236933,100,100,100,100,2.94,2.48,0.71,0.71
-84746,49,053,49053,1149,466,23976045,23976045,1149,466,23976045,23976045,138115,57734,6293544792,6284236933,100,100,100,100,0.83,0.81,0.38,0.38
-84747,49,055,49055,1097,497,174175578,174175578,1097,497,174175578,174175578,2778,1591,6388176886,6373122094,100,100,100,100,39.49,31.24,2.73,2.73
-84749,49,055,49055,218,97,102434133,102409276,218,97,102434133,102409276,2778,1591,6388176886,6373122094,100,100,100,100,7.85,6.1,1.6,1.61
-84750,49,031,49031,469,315,327499018,327172831,469,315,327499018,327172831,1556,898,1983197028,1962668913,100,100,100,100,30.14,35.08,16.51,16.67
-84751,49,001,49001,1676,723,580865321,580653812,1680,726,774611673,774400164,6629,2908,6713088580,6707757757,99.76,99.59,74.99,74.98,25.28,24.86,8.65,8.66
-84751,49,027,49027,4,3,193746352,193746352,1680,726,774611673,774400164,12503,4939,17684156153,17022500900,0.24,0.41,25.01,25.02,0.03,0.06,1.1,1.14
-84752,49,001,49001,994,336,89478483,85467737,994,336,89478483,85467737,6629,2908,6713088580,6707757757,100,100,100,100,14.99,11.55,1.33,1.27
-84753,49,001,49001,1,9,165654411,165654411,26,47,910247367,910089023,6629,2908,6713088580,6707757757,3.85,19.15,18.2,18.2,0.02,0.31,2.47,2.47
-84753,49,021,49021,25,38,744592956,744434612,26,47,910247367,910089023,46163,19667,8549757670,8538363871,96.15,80.85,81.8,81.8,0.05,0.19,8.71,8.72
-84754,49,041,49041,3652,1424,164080545,164035295,3652,1424,164080545,164035295,20802,8449,4968632277,4948372346,100,100,100,100,17.56,16.85,3.3,3.31
-84755,49,025,49025,112,129,207953303,207949176,112,129,207953303,207949176,7125,5815,10641011849,10334644139,100,100,100,100,1.57,2.22,1.95,2.01
-84756,49,021,49021,358,147,131316294,130875481,366,190,377468119,377027306,46163,19667,8549757670,8538363871,97.81,77.37,34.79,34.71,0.78,0.75,1.54,1.53
-84756,49,053,49053,8,43,246151825,246151825,366,190,377468119,377027306,138115,57734,6293544792,6284236933,2.19,22.63,65.21,65.29,0.01,0.07,3.91,3.92
-84757,49,021,49021,68,28,4459310,4459310,1167,555,132523503,132302113,46163,19667,8549757670,8538363871,5.83,5.05,3.36,3.37,0.15,0.14,0.05,0.05
-84757,49,053,49053,1099,527,128064193,127842803,1167,555,132523503,132302113,138115,57734,6293544792,6284236933,94.17,94.95,96.64,96.63,0.8,0.91,2.03,2.03
-84758,49,025,49025,533,305,200015269,200015269,533,305,200015269,200015269,7125,5815,10641011849,10334644139,100,100,100,100,7.48,5.25,1.88,1.94
-84759,49,017,49017,2112,1399,1290898376,1286598210,2112,1399,1290898376,1286598210,5172,3726,13489297914,13403502531,100,100,100,100,40.84,37.55,9.57,9.6
-84760,49,021,49021,559,311,370761531,370478263,559,311,370761531,370478263,46163,19667,8549757670,8538363871,100,100,100,100,1.21,1.58,4.34,4.34
-84761,49,021,49021,3131,1600,394302014,393673338,3131,1600,394302014,393673338,46163,19667,8549757670,8538363871,100,100,100,100,6.78,8.14,4.61,4.61
-84762,49,017,49017,7,249,39805616,39805616,248,2282,580994480,579688920,5172,3726,13489297914,13403502531,2.82,10.91,6.85,6.87,0.14,6.68,0.3,0.3
-84762,49,025,49025,241,2033,541188864,539883304,248,2282,580994480,579688920,7125,5815,10641011849,10334644139,97.18,89.09,93.15,93.13,3.38,34.96,5.09,5.22
-84763,49,053,49053,245,172,43425123,43425123,245,172,43425123,43425123,138115,57734,6293544792,6284236933,100,100,100,100,0.18,0.3,0.69,0.69
-84764,49,017,49017,331,294,134651444,134650693,331,294,134651444,134650693,5172,3726,13489297914,13403502531,100,100,100,100,6.4,7.89,1,1
-84765,49,053,49053,6143,2021,24734780,24697327,6143,2021,24734780,24697327,138115,57734,6293544792,6284236933,100,100,100,100,4.45,3.5,0.39,0.39
-84766,49,041,49041,147,63,138800305,138800305,147,63,138800305,138800305,20802,8449,4968632277,4948372346,100,100,100,100,0.71,0.75,2.79,2.8
-84767,49,053,49053,679,481,676026237,676026237,679,481,676026237,676026237,138115,57734,6293544792,6284236933,100,100,100,100,0.49,0.83,10.74,10.76
-84770,49,053,49053,39131,18119,135835065,135824591,39131,18119,135835065,135824591,138115,57734,6293544792,6284236933,100,100,100,100,28.33,31.38,2.16,2.16
-84772,49,021,49021,171,82,17619996,17614144,171,82,17619996,17614144,46163,19667,8549757670,8538363871,100,100,100,100,0.37,0.42,0.21,0.21
-84773,49,055,49055,321,280,259819205,259792307,321,280,259819205,259792307,2778,1591,6388176886,6373122094,100,100,100,100,11.56,17.6,4.07,4.08
-84774,49,053,49053,1399,522,107632342,107632342,1399,522,107632342,107632342,138115,57734,6293544792,6284236933,100,100,100,100,1.01,0.9,1.71,1.71
-84775,49,017,49017,9,11,807906565,807887798,431,389,1302844784,1302306094,5172,3726,13489297914,13403502531,2.09,2.83,62.01,62.04,0.17,0.3,5.99,6.03
-84775,49,055,49055,422,378,494938219,494418296,431,389,1302844784,1302306094,2778,1591,6388176886,6373122094,97.91,97.17,37.99,37.96,15.19,23.76,7.75,7.76
-84776,49,017,49017,538,224,25942105,25885795,538,224,25942105,25885795,5172,3726,13489297914,13403502531,100,100,100,100,10.4,6.01,0.19,0.19
-84779,49,053,49053,641,554,535187536,534060364,641,554,535187536,534060364,138115,57734,6293544792,6284236933,100,100,100,100,0.46,0.96,8.5,8.5
-84780,49,053,49053,18756,7540,95181807,95088904,18756,7540,95181807,95088904,138115,57734,6293544792,6284236933,100,100,100,100,13.58,13.06,1.51,1.51
-84781,49,053,49053,188,481,185963917,185933070,188,481,185963917,185933070,138115,57734,6293544792,6284236933,100,100,100,100,0.14,0.83,2.95,2.96
-84782,49,053,49053,794,358,63642836,63622459,794,358,63642836,63622459,138115,57734,6293544792,6284236933,100,100,100,100,0.57,0.62,1.01,1.01
-84783,49,053,49053,805,318,122200777,122143294,805,318,122200777,122143294,138115,57734,6293544792,6284236933,100,100,100,100,0.58,0.55,1.94,1.94
-84784,49,053,49053,2745,290,36638823,36638823,2745,290,36638823,36638823,138115,57734,6293544792,6284236933,100,100,100,100,1.99,0.5,0.58,0.58
-84790,49,053,49053,35770,14477,115861517,114517630,35770,14477,115861517,114517630,138115,57734,6293544792,6284236933,100,100,100,100,25.9,25.08,1.84,1.82
-85003,04,013,04013,9369,4910,4795027,4795027,9369,4910,4795027,4795027,3817117,1639279,23891055915,23828260196,100,100,100,100,0.25,0.3,0.02,0.02
-85004,04,013,04013,4965,2804,5283332,5283332,4965,2804,5283332,5283332,3817117,1639279,23891055915,23828260196,100,100,100,100,0.13,0.17,0.02,0.02
-85006,04,013,04013,25742,10183,10111561,10108876,25742,10183,10111561,10108876,3817117,1639279,23891055915,23828260196,100,100,100,100,0.67,0.62,0.04,0.04
-85007,04,013,04013,14040,5916,11873336,11690704,14040,5916,11873336,11690704,3817117,1639279,23891055915,23828260196,100,100,100,100,0.37,0.36,0.05,0.05
-85008,04,013,04013,56145,23282,27253141,27110870,56145,23282,27253141,27110870,3817117,1639279,23891055915,23828260196,100,100,100,100,1.47,1.42,0.11,0.11
-85009,04,013,04013,52520,14369,40528880,40357622,52520,14369,40528880,40357622,3817117,1639279,23891055915,23828260196,100,100,100,100,1.38,0.88,0.17,0.17
-85012,04,013,04013,6390,3804,5692381,5682461,6390,3804,5692381,5682461,3817117,1639279,23891055915,23828260196,100,100,100,100,0.17,0.23,0.02,0.02
-85013,04,013,04013,19314,10943,9655938,9628904,19314,10943,9655938,9628904,3817117,1639279,23891055915,23828260196,100,100,100,100,0.51,0.67,0.04,0.04
-85014,04,013,04013,24782,14326,10850927,10824910,24782,14326,10850927,10824910,3817117,1639279,23891055915,23828260196,100,100,100,100,0.65,0.87,0.05,0.05
-85015,04,013,04013,37644,16495,12676304,12646585,37644,16495,12676304,12646585,3817117,1639279,23891055915,23828260196,100,100,100,100,0.99,1.01,0.05,0.05
-85016,04,013,04013,33896,19287,23602375,23399384,33896,19287,23602375,23399384,3817117,1639279,23891055915,23828260196,100,100,100,100,0.89,1.18,0.1,0.1
-85017,04,013,04013,38872,13883,13597676,13577669,38872,13883,13597676,13577669,3817117,1639279,23891055915,23828260196,100,100,100,100,1.02,0.85,0.06,0.06
-85018,04,013,04013,36065,19231,28897461,28784216,36065,19231,28897461,28784216,3817117,1639279,23891055915,23828260196,100,100,100,100,0.94,1.17,0.12,0.12
-85019,04,013,04013,25042,8241,9729203,9712436,25042,8241,9729203,9712436,3817117,1639279,23891055915,23828260196,100,100,100,100,0.66,0.5,0.04,0.04
-85020,04,013,04013,32850,17709,23092782,23027513,32850,17709,23092782,23027513,3817117,1639279,23891055915,23828260196,100,100,100,100,0.86,1.08,0.1,0.1
-85021,04,013,04013,37743,17619,17494782,17419863,37743,17619,17494782,17419863,3817117,1639279,23891055915,23828260196,100,100,100,100,0.99,1.07,0.07,0.07
-85022,04,013,04013,46395,22923,24234495,24230486,46395,22923,24234495,24230486,3817117,1639279,23891055915,23828260196,100,100,100,100,1.22,1.4,0.1,0.1
-85023,04,013,04013,31274,13690,18946776,18927804,31274,13690,18946776,18927804,3817117,1639279,23891055915,23828260196,100,100,100,100,0.82,0.84,0.08,0.08
-85024,04,013,04013,22898,10131,73166840,72976206,22898,10131,73166840,72976206,3817117,1639279,23891055915,23828260196,100,100,100,100,0.6,0.62,0.31,0.31
-85027,04,013,04013,37140,17010,36469867,36408565,37140,17010,36469867,36408565,3817117,1639279,23891055915,23828260196,100,100,100,100,0.97,1.04,0.15,0.15
-85028,04,013,04013,19157,8705,25959070,25957279,19157,8705,25959070,25957279,3817117,1639279,23891055915,23828260196,100,100,100,100,0.5,0.53,0.11,0.11
-85029,04,013,04013,43233,18508,24801404,24717205,43233,18508,24801404,24717205,3817117,1639279,23891055915,23828260196,100,100,100,100,1.13,1.13,0.1,0.1
-85031,04,013,04013,30493,8716,10533806,10501712,30493,8716,10533806,10501712,3817117,1639279,23891055915,23828260196,100,100,100,100,0.8,0.53,0.04,0.04
-85032,04,013,04013,65485,29594,32187228,32170337,65485,29594,32187228,32170337,3817117,1639279,23891055915,23828260196,100,100,100,100,1.72,1.81,0.13,0.14
-85033,04,013,04013,53037,16046,15814693,15789701,53037,16046,15814693,15789701,3817117,1639279,23891055915,23828260196,100,100,100,100,1.39,0.98,0.07,0.07
-85034,04,013,04013,5582,2062,29737667,29587865,5582,2062,29737667,29587865,3817117,1639279,23891055915,23828260196,100,100,100,100,0.15,0.13,0.12,0.12
-85035,04,013,04013,47486,14961,14797711,14797711,47486,14961,14797711,14797711,3817117,1639279,23891055915,23828260196,100,100,100,100,1.24,0.91,0.06,0.06
-85037,04,013,04013,44771,14660,21236393,21200571,44771,14660,21236393,21200571,3817117,1639279,23891055915,23828260196,100,100,100,100,1.17,0.89,0.09,0.09
-85040,04,013,04013,29352,10446,26429166,26352332,29352,10446,26429166,26352332,3817117,1639279,23891055915,23828260196,100,100,100,100,0.77,0.64,0.11,0.11
-85041,04,013,04013,54947,17226,41224177,41109732,54947,17226,41224177,41109732,3817117,1639279,23891055915,23828260196,100,100,100,100,1.44,1.05,0.17,0.17
-85042,04,013,04013,40962,14698,38930427,38929554,40962,14698,38930427,38929554,3817117,1639279,23891055915,23828260196,100,100,100,100,1.07,0.9,0.16,0.16
-85043,04,013,04013,30560,9443,49687869,49678326,30560,9443,49687869,49678326,3817117,1639279,23891055915,23828260196,100,100,100,100,0.8,0.58,0.21,0.21
-85044,04,013,04013,37993,18246,37460375,37412960,37993,18246,37460375,37412960,3817117,1639279,23891055915,23828260196,100,100,100,100,1,1.11,0.16,0.16
-85045,04,013,04013,7238,2693,9406713,9384025,7238,2693,9406713,9384025,3817117,1639279,23891055915,23828260196,100,100,100,100,0.19,0.16,0.04,0.04
-85048,04,013,04013,33449,13632,51272015,51156859,33449,13632,51272015,51156859,3817117,1639279,23891055915,23828260196,100,100,100,100,0.88,0.83,0.21,0.21
-85050,04,013,04013,25736,11333,37870278,37759457,25736,11333,37870278,37759457,3817117,1639279,23891055915,23828260196,100,100,100,100,0.67,0.69,0.16,0.16
-85051,04,013,04013,40375,16525,16490293,16360814,40375,16525,16490293,16360814,3817117,1639279,23891055915,23828260196,100,100,100,100,1.06,1.01,0.07,0.07
-85053,04,013,04013,28480,11898,13492670,13491929,28480,11898,13492670,13491929,3817117,1639279,23891055915,23828260196,100,100,100,100,0.75,0.73,0.06,0.06
-85054,04,013,04013,5384,3801,23510074,23311654,5384,3801,23510074,23311654,3817117,1639279,23891055915,23828260196,100,100,100,100,0.14,0.23,0.1,0.1
-85083,04,013,04013,18104,6293,25504762,25504762,18104,6293,25504762,25504762,3817117,1639279,23891055915,23828260196,100,100,100,100,0.47,0.38,0.11,0.11
-85085,04,013,04013,17517,7618,66355700,66343140,17517,7618,66355700,66343140,3817117,1639279,23891055915,23828260196,100,100,100,100,0.46,0.46,0.28,0.28
-85086,04,013,04013,40495,16014,151185885,151078149,40495,16014,151185885,151078149,3817117,1639279,23891055915,23828260196,100,100,100,100,1.06,0.98,0.63,0.63
-85087,04,013,04013,7708,3248,194169763,194147370,7708,3248,194169763,194147370,3817117,1639279,23891055915,23828260196,100,100,100,100,0.2,0.2,0.81,0.81
-85118,04,021,04021,12246,8236,412839721,412809693,12246,8236,412839721,412809693,375770,159222,13919201128,13896869603,100,100,100,100,3.26,5.17,2.97,2.97
-85119,04,021,04021,21219,13530,114040443,114040443,21219,13530,114040443,114040443,375770,159222,13919201128,13896869603,100,100,100,100,5.65,8.5,0.82,0.82
-85120,04,013,04013,4573,3321,3325349,3318046,28168,17473,46325961,46272549,3817117,1639279,23891055915,23828260196,16.23,19.01,7.18,7.17,0.12,0.2,0.01,0.01
-85120,04,021,04021,23595,14152,43000612,42954503,28168,17473,46325961,46272549,375770,159222,13919201128,13896869603,83.77,80.99,92.82,92.83,6.28,8.89,0.31,0.31
-85121,04,021,04021,2178,615,190377545,190170925,2178,615,190377545,190170925,375770,159222,13919201128,13896869603,100,100,100,100,0.58,0.39,1.37,1.37
-85122,04,021,04021,50942,22918,129556205,129556205,50942,22918,129556205,129556205,375770,159222,13919201128,13896869603,100,100,100,100,13.56,14.39,0.93,0.93
-85123,04,021,04021,10677,5019,68979053,68784574,10677,5019,68979053,68784574,375770,159222,13919201128,13896869603,100,100,100,100,2.84,3.15,0.5,0.49
-85128,04,021,04021,14823,5850,427584876,423108085,14823,5850,427584876,423108085,375770,159222,13919201128,13896869603,100,100,100,100,3.94,3.67,3.07,3.04
-85131,04,021,04021,18017,4237,699185825,698441996,18017,4237,699185825,698441996,375770,159222,13919201128,13896869603,100,100,100,100,4.79,2.66,5.02,5.03
-85132,04,021,04021,33556,8704,1565475181,1564297581,33556,8704,1565475181,1564297581,375770,159222,13919201128,13896869603,100,100,100,100,8.93,5.47,11.25,11.26
-85135,04,007,04007,630,288,1145805,1141779,630,288,1145805,1141779,53597,32698,12420100696,12322988718,100,100,100,100,1.18,0.88,0.01,0.01
-85137,04,021,04021,2329,1157,538825313,535529065,2329,1157,538825313,535529065,375770,159222,13919201128,13896869603,100,100,100,100,0.62,0.73,3.87,3.85
-85138,04,021,04021,33633,13392,192119033,191824823,33633,13392,192119033,191824823,375770,159222,13919201128,13896869603,100,100,100,100,8.95,8.41,1.38,1.38
-85139,04,013,04013,124,56,88086073,88086073,17979,7211,500951525,500871522,3817117,1639279,23891055915,23828260196,0.69,0.78,17.58,17.59,0,0,0.37,0.37
-85139,04,021,04021,17855,7155,412865452,412785449,17979,7211,500951525,500871522,375770,159222,13919201128,13896869603,99.31,99.22,82.42,82.41,4.75,4.49,2.97,2.97
-85140,04,021,04021,36711,12775,86861807,86861807,36711,12775,86861807,86861807,375770,159222,13919201128,13896869603,100,100,100,100,9.77,8.02,0.62,0.63
-85141,04,021,04021,515,221,108722153,108615327,515,221,108722153,108615327,375770,159222,13919201128,13896869603,100,100,100,100,0.14,0.14,0.78,0.78
-85142,04,013,04013,32379,10453,88438255,88312645,48870,16505,183958712,183833102,3817117,1639279,23891055915,23828260196,66.26,63.33,48.08,48.04,0.85,0.64,0.37,0.37
-85142,04,021,04021,16491,6052,95520457,95520457,48870,16505,183958712,183833102,375770,159222,13919201128,13896869603,33.74,36.67,51.92,51.96,4.39,3.8,0.69,0.69
-85143,04,021,04021,35015,13526,93126327,93126327,35015,13526,93126327,93126327,375770,159222,13919201128,13896869603,100,100,100,100,9.32,8.5,0.67,0.67
-85145,04,021,04021,2106,758,57575000,57566201,2106,758,57575000,57566201,375770,159222,13919201128,13896869603,100,100,100,100,0.56,0.48,0.41,0.41
-85147,04,021,04021,4543,1193,184693098,184693008,4543,1193,184693098,184693008,375770,159222,13919201128,13896869603,100,100,100,100,1.21,0.75,1.33,1.33
-85172,04,021,04021,1368,451,171150065,170572599,1368,451,171150065,170572599,375770,159222,13919201128,13896869603,100,100,100,100,0.36,0.28,1.23,1.23
-85173,04,021,04021,2872,1473,96633700,96633700,2872,1473,96633700,96633700,375770,159222,13919201128,13896869603,100,100,100,100,0.76,0.93,0.69,0.7
-85192,04,007,04007,694,337,286568666,285905282,2120,997,942350410,941656318,53597,32698,12420100696,12322988718,32.74,33.8,30.41,30.36,1.29,1.03,2.31,2.32
-85192,04,021,04021,1426,660,655781744,655751036,2120,997,942350410,941656318,375770,159222,13919201128,13896869603,67.26,66.2,69.59,69.64,0.38,0.41,4.71,4.72
-85193,04,021,04021,4906,2080,671136031,671072181,4906,2080,671136031,671072181,375770,159222,13919201128,13896869603,100,100,100,100,1.31,1.31,4.82,4.83
-85194,04,021,04021,6721,3673,196578287,196490243,6721,3673,196578287,196490243,375770,159222,13919201128,13896869603,100,100,100,100,1.79,2.31,1.41,1.41
-85201,04,013,04013,46092,21487,25487245,24145872,46092,21487,25487245,24145872,3817117,1639279,23891055915,23828260196,100,100,100,100,1.21,1.31,0.11,0.1
-85202,04,013,04013,37275,17681,16609848,16247196,37275,17681,16609848,16247196,3817117,1639279,23891055915,23828260196,100,100,100,100,0.98,1.08,0.07,0.07
-85203,04,013,04013,35541,13644,24963130,23725997,35541,13644,24963130,23725997,3817117,1639279,23891055915,23828260196,100,100,100,100,0.93,0.83,0.1,0.1
-85204,04,013,04013,60885,22611,25666015,25653620,60885,22611,25666015,25653620,3817117,1639279,23891055915,23828260196,100,100,100,100,1.6,1.38,0.11,0.11
-85205,04,013,04013,39858,22676,25351606,25343510,39858,22676,25351606,25343510,3817117,1639279,23891055915,23828260196,100,100,100,100,1.04,1.38,0.11,0.11
-85206,04,013,04013,33154,18849,24817903,24747609,33154,18849,24817903,24747609,3817117,1639279,23891055915,23828260196,100,100,100,100,0.87,1.15,0.1,0.1
-85207,04,013,04013,44744,20434,77588937,77326920,44744,20434,77588937,77326920,3817117,1639279,23891055915,23828260196,100,100,100,100,1.17,1.25,0.32,0.32
-85208,04,013,04013,34762,18657,23399361,23246803,34762,18657,23399361,23246803,3817117,1639279,23891055915,23828260196,100,100,100,100,0.91,1.14,0.1,0.1
-85209,04,013,04013,37377,20027,28690919,28670342,37377,20027,28690919,28670342,3817117,1639279,23891055915,23828260196,100,100,100,100,0.98,1.22,0.12,0.12
-85210,04,013,04013,36464,15095,17068997,17051574,36464,15095,17068997,17051574,3817117,1639279,23891055915,23828260196,100,100,100,100,0.96,0.92,0.07,0.07
-85212,04,013,04013,24492,8095,91865457,91756100,24492,8095,91865457,91756100,3817117,1639279,23891055915,23828260196,100,100,100,100,0.64,0.49,0.38,0.39
-85213,04,013,04013,31797,14592,25019715,24490995,31797,14592,25019715,24490995,3817117,1639279,23891055915,23828260196,100,100,100,100,0.83,0.89,0.1,0.1
-85215,04,013,04013,15963,9141,220115624,214688077,15963,9141,220115624,214688077,3817117,1639279,23891055915,23828260196,100,100,100,100,0.42,0.56,0.92,0.9
-85224,04,013,04013,42796,18763,24250201,24249761,42796,18763,24250201,24249761,3817117,1639279,23891055915,23828260196,100,100,100,100,1.12,1.14,0.1,0.1
-85225,04,013,04013,69810,27397,33105394,33101476,69810,27397,33105394,33101476,3817117,1639279,23891055915,23828260196,100,100,100,100,1.83,1.67,0.14,0.14
-85226,04,013,04013,37376,15439,208341364,207611133,37376,15439,208341364,207611133,3817117,1639279,23891055915,23828260196,100,100,100,100,0.98,0.94,0.87,0.87
-85233,04,013,04013,37564,14487,25554296,25214199,37564,14487,25554296,25214199,3817117,1639279,23891055915,23828260196,100,100,100,100,0.98,0.88,0.11,0.11
-85234,04,013,04013,50014,17366,30910592,30832715,50014,17366,30910592,30832715,3817117,1639279,23891055915,23828260196,100,100,100,100,1.31,1.06,0.13,0.13
-85248,04,013,04013,29091,16573,54565030,54306717,29821,16773,78566529,78308216,3817117,1639279,23891055915,23828260196,97.55,98.81,69.45,69.35,0.76,1.01,0.23,0.23
-85248,04,021,04021,730,200,24001499,24001499,29821,16773,78566529,78308216,375770,159222,13919201128,13896869603,2.45,1.19,30.55,30.65,0.19,0.13,0.17,0.17
-85249,04,013,04013,36908,13667,35846346,35758173,36908,13667,35846346,35758173,3817117,1639279,23891055915,23828260196,100,100,100,100,0.97,0.83,0.15,0.15
-85250,04,013,04013,15906,9669,24626084,24377959,15906,9669,24626084,24377959,3817117,1639279,23891055915,23828260196,100,100,100,100,0.42,0.59,0.1,0.1
-85251,04,013,04013,34390,22441,19175205,19048355,34390,22441,19175205,19048355,3817117,1639279,23891055915,23828260196,100,100,100,100,0.9,1.37,0.08,0.08
-85253,04,013,04013,17047,8211,46763160,46562854,17047,8211,46763160,46562854,3817117,1639279,23891055915,23828260196,100,100,100,100,0.45,0.5,0.2,0.2
-85254,04,013,04013,45801,20252,35392933,35301158,45801,20252,35392933,35301158,3817117,1639279,23891055915,23828260196,100,100,100,100,1.2,1.24,0.15,0.15
-85255,04,013,04013,37270,19159,226963858,226811440,37270,19159,226963858,226811440,3817117,1639279,23891055915,23828260196,100,100,100,100,0.98,1.17,0.95,0.95
-85256,04,013,04013,4974,1854,87682301,85498969,4974,1854,87682301,85498969,3817117,1639279,23891055915,23828260196,100,100,100,100,0.13,0.11,0.37,0.36
-85257,04,013,04013,26755,13896,17108501,16990967,26755,13896,17108501,16990967,3817117,1639279,23891055915,23828260196,100,100,100,100,0.7,0.85,0.07,0.07
-85258,04,013,04013,23342,15233,22774790,22203131,23342,15233,22774790,22203131,3817117,1639279,23891055915,23828260196,100,100,100,100,0.61,0.93,0.1,0.09
-85259,04,013,04013,21422,10270,53070105,53070105,21422,10270,53070105,53070105,3817117,1639279,23891055915,23828260196,100,100,100,100,0.56,0.63,0.22,0.22
-85260,04,013,04013,36056,19498,37650782,37622439,36056,19498,37650782,37622439,3817117,1639279,23891055915,23828260196,100,100,100,100,0.94,1.19,0.16,0.16
-85262,04,013,04013,11275,7273,327927136,327758703,11275,7273,327927136,327758703,3817117,1639279,23891055915,23828260196,100,100,100,100,0.3,0.44,1.37,1.38
-85263,04,013,04013,2111,1801,885282508,874939286,2111,1801,885282508,874939286,3817117,1639279,23891055915,23828260196,100,100,100,100,0.06,0.11,3.71,3.67
-85264,04,013,04013,1249,425,560478070,552532720,1249,425,560478070,552532720,3817117,1639279,23891055915,23828260196,100,100,100,100,0.03,0.03,2.35,2.32
-85266,04,013,04013,11406,6232,44369664,44367011,11406,6232,44369664,44367011,3817117,1639279,23891055915,23828260196,100,100,100,100,0.3,0.38,0.19,0.19
-85268,04,013,04013,22684,13281,53663294,53433475,22684,13281,53663294,53433475,3817117,1639279,23891055915,23828260196,100,100,100,100,0.59,0.81,0.22,0.22
-85281,04,013,04013,57348,26011,34914363,34574278,57348,26011,34914363,34574278,3817117,1639279,23891055915,23828260196,100,100,100,100,1.5,1.59,0.15,0.15
-85282,04,013,04013,48671,23136,28988458,28943731,48671,23136,28988458,28943731,3817117,1639279,23891055915,23828260196,100,100,100,100,1.28,1.41,0.12,0.12
-85283,04,013,04013,44813,19320,23101681,22738886,44813,19320,23101681,22738886,3817117,1639279,23891055915,23828260196,100,100,100,100,1.17,1.18,0.1,0.1
-85284,04,013,04013,16479,6407,20172980,20095638,16479,6407,20172980,20095638,3817117,1639279,23891055915,23828260196,100,100,100,100,0.43,0.39,0.08,0.08
-85286,04,013,04013,38930,14351,42098845,42046563,38930,14351,42098845,42046563,3817117,1639279,23891055915,23828260196,100,100,100,100,1.02,0.88,0.18,0.18
-85295,04,013,04013,38332,13857,32767632,32737996,38332,13857,32767632,32737996,3817117,1639279,23891055915,23828260196,100,100,100,100,1,0.85,0.14,0.14
-85296,04,013,04013,36799,12927,29325865,29325865,36799,12927,29325865,29325865,3817117,1639279,23891055915,23828260196,100,100,100,100,0.96,0.79,0.12,0.12
-85297,04,013,04013,26979,8740,27340444,27321769,26979,8740,27340444,27321769,3817117,1639279,23891055915,23828260196,100,100,100,100,0.71,0.53,0.11,0.11
-85298,04,013,04013,21479,8215,37057813,37047908,21479,8215,37057813,37047908,3817117,1639279,23891055915,23828260196,100,100,100,100,0.56,0.5,0.16,0.16
-85301,04,013,04013,60161,23846,24014066,24014066,60161,23846,24014066,24014066,3817117,1639279,23891055915,23828260196,100,100,100,100,1.58,1.45,0.1,0.1
-85302,04,013,04013,36909,15947,15805548,15805548,36909,15947,15805548,15805548,3817117,1639279,23891055915,23828260196,100,100,100,100,0.97,0.97,0.07,0.07
-85303,04,013,04013,30310,9718,16405194,16403323,30310,9718,16405194,16403323,3817117,1639279,23891055915,23828260196,100,100,100,100,0.79,0.59,0.07,0.07
-85304,04,013,04013,25883,9772,14498484,14422620,25883,9772,14498484,14422620,3817117,1639279,23891055915,23828260196,100,100,100,100,0.68,0.6,0.06,0.06
-85305,04,013,04013,10822,4328,16474613,16473658,10822,4328,16474613,16473658,3817117,1639279,23891055915,23828260196,100,100,100,100,0.28,0.26,0.07,0.07
-85306,04,013,04013,24191,9641,14559531,14509765,24191,9641,14559531,14509765,3817117,1639279,23891055915,23828260196,100,100,100,100,0.63,0.59,0.06,0.06
-85307,04,013,04013,9230,3613,32428796,32148424,9230,3613,32428796,32148424,3817117,1639279,23891055915,23828260196,100,100,100,100,0.24,0.22,0.14,0.13
-85308,04,013,04013,63876,26234,45134552,44926851,63876,26234,45134552,44926851,3817117,1639279,23891055915,23828260196,100,100,100,100,1.67,1.6,0.19,0.19
-85309,04,013,04013,1485,1796,8850353,8850235,1485,1796,8850353,8850235,3817117,1639279,23891055915,23828260196,100,100,100,100,0.04,0.11,0.04,0.04
-85310,04,013,04013,19007,7026,23621796,23606984,19007,7026,23621796,23606984,3817117,1639279,23891055915,23828260196,100,100,100,100,0.5,0.43,0.1,0.1
-85320,04,013,04013,1181,544,923213792,923059433,1197,557,1409477415,1409323056,3817117,1639279,23891055915,23828260196,98.66,97.67,65.5,65.5,0.03,0.03,3.86,3.87
-85320,04,025,04025,16,13,486263623,486263623,1197,557,1409477415,1409323056,211033,110432,21051266664,21039764981,1.34,2.33,34.5,34.5,0.01,0.01,2.31,2.31
-85321,04,013,04013,151,58,386107318,385950184,4435,2731,3989348500,3988615424,3817117,1639279,23891055915,23828260196,3.4,2.12,9.68,9.68,0,0,1.62,1.62
-85321,04,019,04019,4284,2673,3603241182,3602665240,4435,2731,3989348500,3988615424,980263,440909,23799649464,23794311939,96.6,97.88,90.32,90.32,0.44,0.61,15.14,15.14
-85322,04,013,04013,752,349,886861475,886808132,752,349,886861475,886808132,3817117,1639279,23891055915,23828260196,100,100,100,100,0.02,0.02,3.71,3.72
-85323,04,013,04013,39507,13246,48125412,48114495,39507,13246,48125412,48114495,3817117,1639279,23891055915,23828260196,100,100,100,100,1.03,0.81,0.2,0.2
-85324,04,025,04025,2886,1598,759204665,759204665,2886,1598,759204665,759204665,211033,110432,21051266664,21039764981,100,100,100,100,1.37,1.45,3.61,3.61
-85325,04,012,04012,1212,1077,2151890833,2150697301,1212,1077,2151890833,2150697301,20489,16049,11690566132,11653984341,100,100,100,100,5.92,6.71,18.41,18.45
-85326,04,013,04013,51705,17220,955043452,954883488,51705,17220,955043452,954883488,3817117,1639279,23891055915,23828260196,100,100,100,100,1.35,1.05,4,4.01
-85328,04,012,04012,259,312,458970650,448403416,259,312,458970650,448403416,20489,16049,11690566132,11653984341,100,100,100,100,1.26,1.94,3.93,3.85
-85331,04,013,04013,26960,11677,291097151,291050163,26960,11677,291097151,291050163,3817117,1639279,23891055915,23828260196,100,100,100,100,0.71,0.71,1.22,1.22
-85332,04,025,04025,2146,1357,1075303685,1075169491,2146,1357,1075303685,1075169491,211033,110432,21051266664,21039764981,100,100,100,100,1.02,1.23,5.11,5.11
-85333,04,013,04013,77,48,1190291121,1190080525,790,485,1876582581,1876371985,3817117,1639279,23891055915,23828260196,9.75,9.9,63.43,63.42,0,0,4.98,4.99
-85333,04,027,04027,713,437,686291460,686291460,790,485,1876582581,1876371985,195751,87850,14294428229,14281174361,90.25,90.1,36.57,36.58,0.36,0.5,4.8,4.81
-85334,04,012,04012,1482,953,170692083,166752222,1482,953,170692083,166752222,20489,16049,11690566132,11653984341,100,100,100,100,7.23,5.94,1.46,1.43
-85335,04,013,04013,31787,11324,26050051,25897345,31787,11324,26050051,25897345,3817117,1639279,23891055915,23828260196,100,100,100,100,0.83,0.69,0.11,0.11
-85336,04,027,04027,700,233,9978724,9938572,700,233,9978724,9938572,195751,87850,14294428229,14281174361,100,100,100,100,0.36,0.27,0.07,0.07
-85337,04,013,04013,2793,1176,1476557545,1476529952,2793,1176,1476557545,1476529952,3817117,1639279,23891055915,23828260196,100,100,100,100,0.07,0.07,6.18,6.2
-85338,04,013,04013,41115,15361,191102533,191069114,41115,15361,191102533,191069114,3817117,1639279,23891055915,23828260196,100,100,100,100,1.08,0.94,0.8,0.8
-85339,04,013,04013,35532,12013,258028753,257615911,35586,12031,550765770,550349841,3817117,1639279,23891055915,23828260196,99.85,99.85,46.85,46.81,0.93,0.73,1.08,1.08
-85339,04,021,04021,54,18,292737017,292733930,35586,12031,550765770,550349841,375770,159222,13919201128,13896869603,0.15,0.15,53.15,53.19,0.01,0.01,2.1,2.11
-85340,04,013,04013,26262,9587,78601109,78345758,26262,9587,78601109,78345758,3817117,1639279,23891055915,23828260196,100,100,100,100,0.69,0.58,0.33,0.33
-85341,04,019,04019,39,24,3650841,3650841,39,24,3650841,3650841,980263,440909,23799649464,23794311939,100,100,100,100,0,0.01,0.02,0.02
-85342,04,013,04013,1534,873,606169960,603817692,1578,917,1216217973,1211061914,3817117,1639279,23891055915,23828260196,97.21,95.2,49.84,49.86,0.04,0.05,2.54,2.53
-85342,04,025,04025,44,44,610048013,607244222,1578,917,1216217973,1211061914,211033,110432,21051266664,21039764981,2.79,4.8,50.16,50.14,0.02,0.04,2.9,2.89
-85343,04,013,04013,196,76,20744278,20743921,196,76,20744278,20743921,3817117,1639279,23891055915,23828260196,100,100,100,100,0.01,0,0.09,0.09
-85344,04,012,04012,9147,6501,1122439504,1109370167,9147,6501,1122439504,1109370167,20489,16049,11690566132,11653984341,100,100,100,100,44.64,40.51,9.6,9.52
-85345,04,013,04013,56208,23118,33818727,33800026,56208,23118,33818727,33800026,3817117,1639279,23891055915,23828260196,100,100,100,100,1.47,1.41,0.14,0.14
-85346,04,012,04012,4423,4102,1613038046,1613038046,4423,4102,1613038046,1613038046,20489,16049,11690566132,11653984341,100,100,100,100,21.59,25.56,13.8,13.84
-85347,04,027,04027,716,319,542004276,542004276,716,319,542004276,542004276,195751,87850,14294428229,14281174361,100,100,100,100,0.37,0.36,3.79,3.8
-85348,04,012,04012,2786,2499,1146244125,1146206695,2786,2499,1146244125,1146206695,20489,16049,11690566132,11653984341,100,100,100,100,13.6,15.57,9.8,9.84
-85349,04,027,04027,25517,6528,46649196,46509110,25517,6528,46649196,46509110,195751,87850,14294428229,14281174361,100,100,100,100,13.04,7.43,0.33,0.33
-85350,04,027,04027,21214,5425,255585615,255139866,21214,5425,255585615,255139866,195751,87850,14294428229,14281174361,100,100,100,100,10.84,6.18,1.79,1.79
-85351,04,013,04013,27789,21284,28447962,28050211,27789,21284,28447962,28050211,3817117,1639279,23891055915,23828260196,100,100,100,100,0.73,1.3,0.12,0.12
-85352,04,027,04027,461,237,161150055,161150055,461,237,161150055,161150055,195751,87850,14294428229,14281174361,100,100,100,100,0.24,0.27,1.13,1.13
-85353,04,013,04013,31011,9673,56181755,56158374,31011,9673,56181755,56158374,3817117,1639279,23891055915,23828260196,100,100,100,100,0.81,0.59,0.24,0.24
-85354,04,013,04013,6645,2851,1547515661,1547510876,6645,2851,1547515661,1547510876,3817117,1639279,23891055915,23828260196,100,100,100,100,0.17,0.17,6.48,6.49
-85355,04,013,04013,8745,3060,91181852,91085688,8745,3060,91181852,91085688,3817117,1639279,23891055915,23828260196,100,100,100,100,0.23,0.19,0.38,0.38
-85356,04,027,04027,4539,2967,428126284,428126284,4539,2967,428126284,428126284,195751,87850,14294428229,14281174361,100,100,100,100,2.32,3.38,3,3
-85357,04,012,04012,761,458,1519375763,1512399971,761,458,1519375763,1512399971,20489,16049,11690566132,11653984341,100,100,100,100,3.71,2.85,13,12.98
-85360,04,015,04015,222,174,1905350328,1904347442,222,174,1905350328,1904347442,200186,110911,34862918316,34475546921,100,100,100,100,0.11,0.16,5.47,5.52
-85361,04,013,04013,6700,2764,308389185,308273439,6700,2764,308389185,308273439,3817117,1639279,23891055915,23828260196,100,100,100,100,0.18,0.17,1.29,1.29
-85362,04,025,04025,663,614,187035827,187035827,663,614,187035827,187035827,211033,110432,21051266664,21039764981,100,100,100,100,0.31,0.56,0.89,0.89
-85363,04,013,04013,6156,2831,4139454,4123269,6156,2831,4139454,4123269,3817117,1639279,23891055915,23828260196,100,100,100,100,0.16,0.17,0.02,0.02
-85364,04,027,04027,74904,29918,104891692,102169362,74904,29918,104891692,102169362,195751,87850,14294428229,14281174361,100,100,100,100,38.26,34.06,0.73,0.72
-85365,04,027,04027,46558,24699,3554655621,3544889689,46558,24699,3554655621,3544889689,195751,87850,14294428229,14281174361,100,100,100,100,23.78,28.11,24.87,24.82
-85367,04,027,04027,20429,17074,117502698,117502698,20429,17074,117502698,117502698,195751,87850,14294428229,14281174361,100,100,100,100,10.44,19.44,0.82,0.82
-85371,04,012,04012,419,146,459120398,459120398,419,146,459120398,459120398,20489,16049,11690566132,11653984341,100,100,100,100,2.04,0.91,3.93,3.94
-85373,04,013,04013,17356,10342,29618958,29503642,17356,10342,29618958,29503642,3817117,1639279,23891055915,23828260196,100,100,100,100,0.45,0.63,0.12,0.12
-85374,04,013,04013,47146,26224,42175258,42116615,47146,26224,42175258,42116615,3817117,1639279,23891055915,23828260196,100,100,100,100,1.24,1.6,0.18,0.18
-85375,04,013,04013,27703,20021,47610122,47570427,27703,20021,47610122,47570427,3817117,1639279,23891055915,23828260196,100,100,100,100,0.73,1.22,0.2,0.2
-85377,04,013,04013,3051,2017,21923594,21908227,3051,2017,21923594,21908227,3817117,1639279,23891055915,23828260196,100,100,100,100,0.08,0.12,0.09,0.09
-85379,04,013,04013,39732,13935,27911658,27862583,39732,13935,27911658,27862583,3817117,1639279,23891055915,23828260196,100,100,100,100,1.04,0.85,0.12,0.12
-85381,04,013,04013,24249,10231,17218759,17183330,24249,10231,17218759,17183330,3817117,1639279,23891055915,23828260196,100,100,100,100,0.64,0.62,0.07,0.07
-85382,04,013,04013,40454,18632,25644272,25462879,40454,18632,25644272,25462879,3817117,1639279,23891055915,23828260196,100,100,100,100,1.06,1.14,0.11,0.11
-85383,04,013,04013,37182,13700,251861327,246067364,37182,13700,251861327,246067364,3817117,1639279,23891055915,23828260196,100,100,100,100,0.97,0.84,1.05,1.03
-85387,04,013,04013,9573,5060,140683283,140516053,9573,5060,140683283,140516053,3817117,1639279,23891055915,23828260196,100,100,100,100,0.25,0.31,0.59,0.59
-85388,04,013,04013,23490,8311,34038887,33966730,23490,8311,34038887,33966730,3817117,1639279,23891055915,23828260196,100,100,100,100,0.62,0.51,0.14,0.14
-85390,04,013,04013,7902,4451,1112632079,1112491813,8621,4844,1529671598,1529531332,3817117,1639279,23891055915,23828260196,91.66,91.89,72.74,72.73,0.21,0.27,4.66,4.67
-85390,04,025,04025,719,393,417039519,417039519,8621,4844,1529671598,1529531332,211033,110432,21051266664,21039764981,8.34,8.11,27.26,27.27,0.34,0.36,1.98,1.98
-85392,04,013,04013,35310,13302,25163736,25034766,35310,13302,25163736,25034766,3817117,1639279,23891055915,23828260196,100,100,100,100,0.93,0.81,0.11,0.11
-85395,04,013,04013,25922,10275,37179531,37119104,25922,10275,37179531,37119104,3817117,1639279,23891055915,23828260196,100,100,100,100,0.68,0.63,0.16,0.16
-85396,04,013,04013,12163,5615,213875786,213865564,12163,5615,213875786,213865564,3817117,1639279,23891055915,23828260196,100,100,100,100,0.32,0.34,0.9,0.9
-85501,04,007,04007,13345,6209,1458735385,1454587141,13345,6209,1458735385,1454587141,53597,32698,12420100696,12322988718,100,100,100,100,24.9,18.99,11.74,11.8
-85530,04,009,04009,2069,528,1108371218,1081923256,2069,528,1108371218,1081923256,37220,12980,12020304959,11972471194,100,100,100,100,5.56,4.07,9.22,9.04
-85531,04,009,04009,623,204,11144182,10813235,623,204,11144182,10813235,37220,12980,12020304959,11972471194,100,100,100,100,1.67,1.57,0.09,0.09
-85533,04,009,04009,9,9,796272366,795862507,2943,1601,3002804989,2999736948,37220,12980,12020304959,11972471194,0.31,0.56,26.52,26.53,0.02,0.07,6.62,6.65
-85533,04,011,04011,2934,1592,2206532623,2203874441,2943,1601,3002804989,2999736948,8437,4372,4787419184,4773673819,99.69,99.44,73.48,73.47,34.78,36.41,46.09,46.17
-85534,04,011,04011,2588,1380,1148241685,1145308140,2588,1380,1148241685,1145308140,8437,4372,4787419184,4773673819,100,100,100,100,30.67,31.56,23.98,23.99
-85535,04,009,04009,21,8,11454239,11288544,21,8,11454239,11288544,37220,12980,12020304959,11972471194,100,100,100,100,0.06,0.06,0.1,0.09
-85536,04,009,04009,408,239,375511981,374560671,408,239,375511981,374560671,37220,12980,12020304959,11972471194,100,100,100,100,1.1,1.84,3.12,3.13
-85539,04,007,04007,4289,2168,129998233,127669880,4520,2341,147647825,145319472,53597,32698,12420100696,12322988718,94.89,92.61,88.05,87.85,8,6.63,1.05,1.04
-85539,04,021,04021,231,173,17649592,17649592,4520,2341,147647825,145319472,375770,159222,13919201128,13896869603,5.11,7.39,11.95,12.15,0.06,0.11,0.13,0.13
-85540,04,011,04011,2874,1336,266483176,259251328,2874,1336,266483176,259251328,8437,4372,4787419184,4773673819,100,100,100,100,34.06,30.56,5.57,5.43
-85541,04,007,04007,21877,14774,2028819014,2027864097,21877,14774,2028819014,2027864097,53597,32698,12420100696,12322988718,100,100,100,100,40.82,45.18,16.33,16.46
-85542,04,007,04007,498,229,115298600,94029023,3196,826,589242492,567840964,53597,32698,12420100696,12322988718,15.58,27.72,19.57,16.56,0.93,0.7,0.93,0.76
-85542,04,009,04009,2698,597,473943892,473811941,3196,826,589242492,567840964,37220,12980,12020304959,11972471194,84.42,72.28,80.43,83.44,7.25,4.6,3.94,3.96
-85543,04,009,04009,3822,1456,1548718322,1545737372,3822,1456,1548718322,1545737372,37220,12980,12020304959,11972471194,100,100,100,100,10.27,11.22,12.88,12.91
-85544,04,007,04007,2949,3898,429662370,429463672,2949,3898,429662370,429463672,53597,32698,12420100696,12322988718,100,100,100,100,5.5,11.92,3.46,3.49
-85545,04,007,04007,568,777,533500039,494587466,583,793,1058730474,1011409921,53597,32698,12420100696,12322988718,97.43,97.98,50.39,48.9,1.06,2.38,4.3,4.01
-85545,04,013,04013,15,16,525230435,516822455,583,793,1058730474,1011409921,3817117,1639279,23891055915,23828260196,2.57,2.02,49.61,51.1,0,0,2.2,2.17
-85546,04,009,04009,19677,7172,1756661205,1747141380,19677,7172,1756661205,1747141380,37220,12980,12020304959,11972471194,100,100,100,100,52.87,55.25,14.61,14.59
-85550,04,007,04007,4790,1222,1468848580,1467392535,4790,1222,1468848580,1467392535,53597,32698,12420100696,12322988718,100,100,100,100,8.94,3.74,11.83,11.91
-85551,04,009,04009,405,167,138948903,138832165,405,167,138948903,138832165,37220,12980,12020304959,11972471194,100,100,100,100,1.09,1.29,1.16,1.16
-85552,04,009,04009,6218,2334,62634055,62024662,6218,2334,62634055,62024662,37220,12980,12020304959,11972471194,100,100,100,100,16.71,17.98,0.52,0.52
-85553,04,007,04007,1501,1481,807962760,786536906,1501,1481,807962760,786536906,53597,32698,12420100696,12322988718,100,100,100,100,2.8,4.53,6.51,6.38
-85554,04,007,04007,778,851,1968675747,1968466377,778,851,1968675747,1968466377,53597,32698,12420100696,12322988718,100,100,100,100,1.45,2.6,15.85,15.97
-85601,04,019,04019,698,496,312271497,311894192,698,496,312271497,311894192,980263,440909,23799649464,23794311939,100,100,100,100,0.07,0.11,1.31,1.31
-85602,04,003,04003,8533,4621,1484510637,1483757595,9464,5049,1938357696,1937604654,131346,59041,16106089107,15969063883,90.16,91.52,76.59,76.58,6.5,7.83,9.22,9.29
-85602,04,019,04019,931,428,453847059,453847059,9464,5049,1938357696,1937604654,980263,440909,23799649464,23794311939,9.84,8.48,23.41,23.42,0.09,0.1,1.91,1.91
-85603,04,003,04003,7155,4117,585958125,583186389,7155,4117,585958125,583186389,131346,59041,16106089107,15969063883,100,100,100,100,5.45,6.97,3.64,3.65
-85605,04,003,04003,597,352,847556096,847157899,597,352,847556096,847157899,131346,59041,16106089107,15969063883,100,100,100,100,0.45,0.6,5.26,5.3
-85606,04,003,04003,1184,747,371791511,331970794,1184,747,371791511,331970794,131346,59041,16106089107,15969063883,100,100,100,100,0.9,1.27,2.31,2.08
-85607,04,003,04003,18925,7159,2165583401,2162554145,18925,7159,2165583401,2162554145,131346,59041,16106089107,15969063883,100,100,100,100,14.41,12.13,13.45,13.54
-85608,04,003,04003,2305,1,4928987,4799984,2305,1,4928987,4799984,131346,59041,16106089107,15969063883,100,100,100,100,1.75,0,0.03,0.03
-85609,04,003,04003,392,217,337420384,337286884,392,217,337420384,337286884,131346,59041,16106089107,15969063883,100,100,100,100,0.3,0.37,2.09,2.11
-85610,04,003,04003,1333,753,1153435837,1153050386,1333,753,1153435837,1153050386,131346,59041,16106089107,15969063883,100,100,100,100,1.01,1.28,7.16,7.22
-85611,04,003,04003,20,75,103150199,102677696,965,594,798152137,797478543,131346,59041,16106089107,15969063883,2.07,12.63,12.92,12.88,0.02,0.13,0.64,0.64
-85611,04,019,04019,173,77,298461586,298461586,965,594,798152137,797478543,980263,440909,23799649464,23794311939,17.93,12.96,37.39,37.43,0.02,0.02,1.25,1.25
-85611,04,023,04023,772,442,396540352,396339261,965,594,798152137,797478543,47420,18010,3206686712,3203598541,80,74.41,49.68,49.7,1.63,2.45,12.37,12.37
-85613,04,003,04003,5601,944,121532855,121484584,5601,944,121532855,121484584,131346,59041,16106089107,15969063883,100,100,100,100,4.26,1.6,0.75,0.76
-85614,04,019,04019,21895,16136,351397784,351337503,21895,16136,351397784,351337503,980263,440909,23799649464,23794311939,100,100,100,100,2.23,3.66,1.48,1.48
-85615,04,003,04003,9413,4150,540172139,540015052,9413,4150,540172139,540015052,131346,59041,16106089107,15969063883,100,100,100,100,7.17,7.03,3.35,3.38
-85616,04,003,04003,5566,2605,346763270,346613856,5566,2605,346763270,346613856,131346,59041,16106089107,15969063883,100,100,100,100,4.24,4.41,2.15,2.17
-85617,04,003,04003,1277,745,572301029,571345554,1277,745,572301029,571345554,131346,59041,16106089107,15969063883,100,100,100,100,0.97,1.26,3.55,3.58
-85618,04,021,04021,1725,795,291443726,290959317,1725,795,291443726,290959317,375770,159222,13919201128,13896869603,100,100,100,100,0.46,0.5,2.09,2.09
-85619,04,019,04019,50,388,526048673,526048673,50,388,526048673,526048673,980263,440909,23799649464,23794311939,100,100,100,100,0.01,0.09,2.21,2.21
-85620,04,003,04003,897,274,2765050,2765050,897,274,2765050,2765050,131346,59041,16106089107,15969063883,100,100,100,100,0.68,0.46,0.02,0.02
-85621,04,023,04023,23054,8065,732391382,731039985,23054,8065,732391382,731039985,47420,18010,3206686712,3203598541,100,100,100,100,48.62,44.78,22.84,22.82
-85622,04,019,04019,6325,5029,126361631,126361631,6325,5029,126361631,126361631,980263,440909,23799649464,23794311939,100,100,100,100,0.65,1.14,0.53,0.53
-85623,04,021,04021,4073,2005,898168477,898168477,4073,2005,898168477,898168477,375770,159222,13919201128,13896869603,100,100,100,100,1.08,1.26,6.45,6.46
-85624,04,023,04023,1426,913,1014308915,1013820063,1426,913,1014308915,1013820063,47420,18010,3206686712,3203598541,100,100,100,100,3.01,5.07,31.63,31.65
-85625,04,003,04003,1983,1402,655591491,655181877,1983,1402,655591491,655181877,131346,59041,16106089107,15969063883,100,100,100,100,1.51,2.37,4.07,4.1
-85626,04,003,04003,1021,367,1907854,1907854,1021,367,1907854,1907854,131346,59041,16106089107,15969063883,100,100,100,100,0.78,0.62,0.01,0.01
-85627,04,003,04003,968,427,44673197,44633767,968,427,44673197,44633767,131346,59041,16106089107,15969063883,100,100,100,100,0.74,0.72,0.28,0.28
-85629,04,019,04019,23568,8832,596770744,596770744,23568,8832,596770744,596770744,980263,440909,23799649464,23794311939,100,100,100,100,2.4,2,2.51,2.51
-85630,04,003,04003,2819,1335,474025278,473769825,2819,1335,474025278,473769825,131346,59041,16106089107,15969063883,100,100,100,100,2.15,2.26,2.94,2.97
-85631,04,021,04021,3630,1594,303148033,302045541,3630,1594,303148033,302045541,375770,159222,13919201128,13896869603,100,100,100,100,0.97,1,2.18,2.17
-85632,04,003,04003,835,665,2162555657,2161227526,835,665,2162555657,2161227526,131346,59041,16106089107,15969063883,100,100,100,100,0.64,1.13,13.43,13.53
-85633,04,019,04019,54,50,780053621,779762941,54,50,780053621,779762941,980263,440909,23799649464,23794311939,100,100,100,100,0.01,0.01,3.28,3.28
-85634,04,019,04019,6381,2285,7330320757,7330222445,6490,2323,7443449977,7443351665,980263,440909,23799649464,23794311939,98.32,98.36,98.48,98.48,0.65,0.52,30.8,30.81
-85634,04,021,04021,109,38,113129220,113129220,6490,2323,7443449977,7443351665,375770,159222,13919201128,13896869603,1.68,1.64,1.52,1.52,0.03,0.02,0.81,0.81
-85635,04,003,04003,34727,16298,185415562,184897662,34727,16298,185415562,184897662,131346,59041,16106089107,15969063883,100,100,100,100,26.44,27.6,1.15,1.16
-85637,04,019,04019,214,114,152500191,152500191,1268,719,312574791,312513411,980263,440909,23799649464,23794311939,16.88,15.86,48.79,48.8,0.02,0.03,0.64,0.64
-85637,04,023,04023,1054,605,160074600,160013220,1268,719,312574791,312513411,47420,18010,3206686712,3203598541,83.12,84.14,51.21,51.2,2.22,3.36,4.99,4.99
-85638,04,003,04003,1973,1204,839105757,838889403,1973,1204,839105757,838889403,131346,59041,16106089107,15969063883,100,100,100,100,1.5,2.04,5.21,5.25
-85640,04,023,04023,441,219,19117879,19112424,441,219,19117879,19112424,47420,18010,3206686712,3203598541,100,100,100,100,0.93,1.22,0.6,0.6
-85641,04,019,04019,21753,8308,1200228274,1200228274,21753,8308,1200228274,1200228274,980263,440909,23799649464,23794311939,100,100,100,100,2.22,1.88,5.04,5.04
-85643,04,003,04003,8543,3946,2805910938,2721012388,9810,4187,5389115811,5303878231,131346,59041,16106089107,15969063883,87.08,94.24,52.07,51.3,6.5,6.68,17.42,17.04
-85643,04,009,04009,1267,241,2583204873,2582865843,9810,4187,5389115811,5303878231,37220,12980,12020304959,11972471194,12.92,5.76,47.93,48.7,3.4,1.86,21.49,21.57
-85645,04,019,04019,1949,749,382718792,382718792,2231,959,525813381,525685763,980263,440909,23799649464,23794311939,87.36,78.1,72.79,72.8,0.2,0.17,1.61,1.61
-85645,04,023,04023,282,210,143094589,142966971,2231,959,525813381,525685763,47420,18010,3206686712,3203598541,12.64,21.9,27.21,27.2,0.59,1.17,4.46,4.46
-85646,04,023,04023,1311,1139,333355533,333208547,1311,1139,333355533,333208547,47420,18010,3206686712,3203598541,100,100,100,100,2.76,6.32,10.4,10.4
-85648,04,023,04023,19080,6417,407803462,407098070,19080,6417,407803462,407098070,47420,18010,3206686712,3203598541,100,100,100,100,40.24,35.63,12.72,12.71
-85650,04,003,04003,15279,6637,108112676,108059037,15279,6637,108112676,108059037,131346,59041,16106089107,15969063883,100,100,100,100,11.63,11.24,0.67,0.68
-85653,04,019,04019,15075,5854,871394701,869685423,15083,5863,906355504,904646226,980263,440909,23799649464,23794311939,99.95,99.85,96.14,96.14,1.54,1.33,3.66,3.66
-85653,04,021,04021,8,9,34960803,34960803,15083,5863,906355504,904646226,375770,159222,13919201128,13896869603,0.05,0.15,3.86,3.86,0,0.01,0.25,0.25
-85654,04,019,04019,97,49,159313,159313,97,49,159313,159313,980263,440909,23799649464,23794311939,100,100,100,100,0.01,0.01,0,0
-85658,04,019,04019,6572,3667,141162212,141162212,7790,4197,579825008,579814266,980263,440909,23799649464,23794311939,84.36,87.37,24.35,24.35,0.67,0.83,0.59,0.59
-85658,04,021,04021,1218,530,438662796,438652054,7790,4197,579825008,579814266,375770,159222,13919201128,13896869603,15.64,12.63,75.65,75.65,0.32,0.33,3.15,3.16
-85701,04,019,04019,4983,2988,3755047,3755047,4983,2988,3755047,3755047,980263,440909,23799649464,23794311939,100,100,100,100,0.51,0.68,0.02,0.02
-85704,04,019,04019,30929,15833,46418991,46292988,30929,15833,46418991,46292988,980263,440909,23799649464,23794311939,100,100,100,100,3.16,3.59,0.2,0.19
-85705,04,019,04019,57521,28242,35476101,35208429,57521,28242,35476101,35208429,980263,440909,23799649464,23794311939,100,100,100,100,5.87,6.41,0.15,0.15
-85706,04,019,04019,55209,18298,32447024,32447024,55209,18298,32447024,32447024,980263,440909,23799649464,23794311939,100,100,100,100,5.63,4.15,0.14,0.14
-85707,04,019,04019,658,0,11745387,11745387,658,0,11745387,11745387,980263,440909,23799649464,23794311939,100,0,100,100,0.07,0,0.05,0.05
-85708,04,019,04019,2980,974,3723393,3723393,2980,974,3723393,3723393,980263,440909,23799649464,23794311939,100,100,100,100,0.3,0.22,0.02,0.02
-85710,04,019,04019,54439,27859,31278396,31278396,54439,27859,31278396,31278396,980263,440909,23799649464,23794311939,100,100,100,100,5.55,6.32,0.13,0.13
-85711,04,019,04019,41251,19649,22147923,22147923,41251,19649,22147923,22147923,980263,440909,23799649464,23794311939,100,100,100,100,4.21,4.46,0.09,0.09
-85712,04,019,04019,32666,18003,17739340,17601918,32666,18003,17739340,17601918,980263,440909,23799649464,23794311939,100,100,100,100,3.33,4.08,0.07,0.07
-85713,04,019,04019,50151,19268,61405948,61366662,50151,19268,61405948,61366662,980263,440909,23799649464,23794311939,100,100,100,100,5.12,4.37,0.26,0.26
-85714,04,019,04019,15009,5536,17045533,17045533,15009,5536,17045533,17045533,980263,440909,23799649464,23794311939,100,100,100,100,1.53,1.26,0.07,0.07
-85715,04,019,04019,17702,8953,17347125,17261267,17702,8953,17347125,17261267,980263,440909,23799649464,23794311939,100,100,100,100,1.81,2.03,0.07,0.07
-85716,04,019,04019,32853,18008,18265337,18265337,32853,18008,18265337,18265337,980263,440909,23799649464,23794311939,100,100,100,100,3.35,4.08,0.08,0.08
-85718,04,019,04019,27367,15037,98680091,98680091,27367,15037,98680091,98680091,980263,440909,23799649464,23794311939,100,100,100,100,2.79,3.41,0.41,0.41
-85719,04,019,04019,43989,19849,21201347,21201347,43989,19849,21201347,21201347,980263,440909,23799649464,23794311939,100,100,100,100,4.49,4.5,0.09,0.09
-85723,04,019,04019,0,0,332731,332731,0,0,332731,332731,980263,440909,23799649464,23794311939,0,0,100,100,0,0,0,0
-85724,04,019,04019,0,0,103874,103874,0,0,103874,103874,980263,440909,23799649464,23794311939,0,0,100,100,0,0,0,0
-85726,04,019,04019,0,0,121584,121584,0,0,121584,121584,980263,440909,23799649464,23794311939,0,0,100,100,0,0,0,0
-85730,04,019,04019,38323,16583,120184894,120128227,38323,16583,120184894,120128227,980263,440909,23799649464,23794311939,100,100,100,100,3.91,3.76,0.5,0.5
-85735,04,019,04019,11250,4629,493717523,493691026,11250,4629,493717523,493691026,980263,440909,23799649464,23794311939,100,100,100,100,1.15,1.05,2.07,2.07
-85736,04,019,04019,4975,2225,913224650,913204168,4975,2225,913224650,913204168,980263,440909,23799649464,23794311939,100,100,100,100,0.51,0.5,3.84,3.84
-85737,04,019,04019,20727,9633,62687499,62482717,20727,9633,62687499,62482717,980263,440909,23799649464,23794311939,100,100,100,100,2.11,2.18,0.26,0.26
-85739,04,019,04019,7666,3331,36697858,36697858,17848,9331,483040816,483040121,980263,440909,23799649464,23794311939,42.95,35.7,7.6,7.6,0.78,0.76,0.15,0.15
-85739,04,021,04021,10182,6000,446342958,446342263,17848,9331,483040816,483040121,375770,159222,13919201128,13896869603,57.05,64.3,92.4,92.4,2.71,3.77,3.21,3.21
-85741,04,019,04019,32998,14008,26298296,26080228,32998,14008,26298296,26080228,980263,440909,23799649464,23794311939,100,100,100,100,3.37,3.18,0.11,0.11
-85742,04,019,04019,25212,10275,74594006,74389170,25212,10275,74594006,74389170,980263,440909,23799649464,23794311939,100,100,100,100,2.57,2.33,0.31,0.31
-85743,04,019,04019,29144,12095,249907154,249591051,29144,12095,249907154,249591051,980263,440909,23799649464,23794311939,100,100,100,100,2.97,2.74,1.05,1.05
-85745,04,019,04019,37006,16396,174689495,174405704,37006,16396,174689495,174405704,980263,440909,23799649464,23794311939,100,100,100,100,3.78,3.72,0.73,0.73
-85746,04,019,04019,43057,15592,197672993,197672993,43057,15592,197672993,197672993,980263,440909,23799649464,23794311939,100,100,100,100,4.39,3.54,0.83,0.83
-85747,04,019,04019,23058,8345,152311837,152311837,23058,8345,152311837,152311837,980263,440909,23799649464,23794311939,100,100,100,100,2.35,1.89,0.64,0.64
-85748,04,019,04019,18087,7826,30645411,30645411,18087,7826,30645411,30645411,980263,440909,23799649464,23794311939,100,100,100,100,1.85,1.77,0.13,0.13
-85749,04,019,04019,19032,8348,155676826,155619450,19032,8348,155676826,155619450,980263,440909,23799649464,23794311939,100,100,100,100,1.94,1.89,0.65,0.65
-85750,04,019,04019,24161,13194,51725211,51558221,24161,13194,51725211,51558221,980263,440909,23799649464,23794311939,100,100,100,100,2.46,2.99,0.22,0.22
-85755,04,019,04019,15107,7907,87209603,87209603,15107,7907,87209603,87209603,980263,440909,23799649464,23794311939,100,100,100,100,1.54,1.79,0.37,0.37
-85756,04,019,04019,35703,11378,175852722,175852722,35703,11378,175852722,175852722,980263,440909,23799649464,23794311939,100,100,100,100,3.64,2.58,0.74,0.74
-85757,04,019,04019,16988,5486,66556194,66556194,16988,5486,66556194,66556194,980263,440909,23799649464,23794311939,100,100,100,100,1.73,1.24,0.28,0.28
-85901,04,001,04001,561,374,83195363,83143270,17207,12337,675860936,674043417,71518,32514,29055619613,29001443825,3.26,3.03,12.31,12.34,0.78,1.15,0.29,0.29
-85901,04,017,04017,16646,11963,592665573,590900147,17207,12337,675860936,674043417,107449,56938,25795551384,25771473007,96.74,96.97,87.69,87.66,15.49,21.01,2.3,2.29
-85911,04,017,04017,1800,485,1648764246,1648685900,1800,485,1648764246,1648685900,107449,56938,25795551384,25771473007,100,100,100,100,1.68,0.85,6.39,6.4
-85912,04,017,04017,178,120,107987841,107976926,178,120,107987841,107976926,107449,56938,25795551384,25771473007,100,100,100,100,0.17,0.21,0.42,0.42
-85920,04,001,04001,464,952,276871993,275658859,464,952,276871993,275658859,71518,32514,29055619613,29001443825,100,100,100,100,0.65,2.93,0.95,0.95
-85922,04,011,04011,41,62,1012428888,1011639524,41,62,1012428888,1011639524,8437,4372,4787419184,4773673819,100,100,100,100,0.49,1.42,21.15,21.19
-85923,04,017,04017,621,301,162571829,162571829,621,301,162571829,162571829,107449,56938,25795551384,25771473007,100,100,100,100,0.58,0.53,0.63,0.63
-85924,04,001,04001,2683,2062,2030388893,2027667905,2683,2062,2030388893,2027667905,71518,32514,29055619613,29001443825,100,100,100,100,3.75,6.34,6.99,6.99
-85925,04,001,04001,4893,2052,76394099,76326521,4893,2052,76394099,76326521,71518,32514,29055619613,29001443825,100,100,100,100,6.84,6.31,0.26,0.26
-85926,04,017,04017,265,82,17793390,17756115,265,82,17793390,17756115,107449,56938,25795551384,25771473007,100,100,100,100,0.25,0.14,0.07,0.07
-85927,04,001,04001,176,639,338850752,330910000,176,639,338850752,330910000,71518,32514,29055619613,29001443825,100,100,100,100,0.25,1.97,1.17,1.14
-85928,04,017,04017,1102,1033,736866139,736436065,1102,1033,736866139,736436065,107449,56938,25795551384,25771473007,100,100,100,100,1.03,1.81,2.86,2.86
-85929,04,017,04017,8322,5843,157706615,156377156,8322,5843,157706615,156377156,107449,56938,25795551384,25771473007,100,100,100,100,7.75,10.26,0.61,0.61
-85930,04,001,04001,530,250,480855446,478569777,1086,391,485579569,483293372,71518,32514,29055619613,29001443825,48.8,63.94,99.03,99.02,0.74,0.77,1.65,1.65
-85930,04,017,04017,556,141,4724123,4723595,1086,391,485579569,483293372,107449,56938,25795551384,25771473007,51.2,36.06,0.97,0.98,0.52,0.25,0.02,0.02
-85931,04,005,04005,207,1093,778668299,776994124,207,1093,778668299,776994124,134421,63321,48332653175,48222689085,100,100,100,100,0.15,1.73,1.61,1.61
-85932,04,001,04001,364,500,339663752,339003081,364,500,339663752,339003081,71518,32514,29055619613,29001443825,100,100,100,100,0.51,1.54,1.17,1.17
-85933,04,017,04017,3033,4775,238463121,238459925,3033,4775,238463121,238459925,107449,56938,25795551384,25771473007,100,100,100,100,2.82,8.39,0.92,0.93
-85934,04,017,04017,574,471,151879639,151879639,574,471,151879639,151879639,107449,56938,25795551384,25771473007,100,100,100,100,0.53,0.83,0.59,0.59
-85935,04,017,04017,4735,6138,125399267,125028478,4735,6138,125399267,125028478,107449,56938,25795551384,25771473007,100,100,100,100,4.41,10.78,0.49,0.49
-85936,04,001,04001,4293,1955,2581610721,2574110894,4293,1955,2581610721,2574110894,71518,32514,29055619613,29001443825,100,100,100,100,6,6.01,8.89,8.88
-85937,04,017,04017,7638,3228,796179397,795763569,7638,3228,796179397,795763569,107449,56938,25795551384,25771473007,100,100,100,100,7.11,5.67,3.09,3.09
-85938,04,001,04001,2366,1247,958622524,956071745,2366,1247,958622524,956071745,71518,32514,29055619613,29001443825,100,100,100,100,3.31,3.84,3.3,3.3
-85939,04,017,04017,4400,1578,144741581,144628731,4400,1578,144741581,144628731,107449,56938,25795551384,25771473007,100,100,100,100,4.09,2.77,0.56,0.56
-85940,04,001,04001,1443,844,212940235,212662907,1443,844,212940235,212662907,71518,32514,29055619613,29001443825,100,100,100,100,2.02,2.6,0.73,0.73
-85941,04,001,04001,25,73,737051691,730641422,9941,2671,2163946223,2153723794,71518,32514,29055619613,29001443825,0.25,2.73,34.06,33.92,0.03,0.22,2.54,2.52
-85941,04,007,04007,1678,460,1036201761,1033414466,9941,2671,2163946223,2153723794,53597,32698,12420100696,12322988718,16.88,17.22,47.88,47.98,3.13,1.41,8.34,8.39
-85941,04,017,04017,8238,2138,390692771,389667906,9941,2671,2163946223,2153723794,107449,56938,25795551384,25771473007,82.87,80.04,18.05,18.09,7.67,3.75,1.51,1.51
-85942,04,017,04017,80,44,144894711,144808116,80,44,144894711,144808116,107449,56938,25795551384,25771473007,100,100,100,100,0.07,0.08,0.56,0.56
-86001,04,005,04005,40776,19759,2300553274,2289712185,40776,19759,2300553274,2289712185,134421,63321,48332653175,48222689085,100,100,100,100,30.33,31.2,4.76,4.75
-86003,04,005,04005,23,18,55328841,55328841,23,18,55328841,55328841,134421,63321,48332653175,48222689085,100,100,100,100,0.02,0.03,0.11,0.11
-86004,04,005,04005,37338,15861,1975839947,1975385651,37338,15861,1975839947,1975385651,134421,63321,48332653175,48222689085,100,100,100,100,27.78,25.05,4.09,4.1
-86011,04,005,04005,6362,10,1756314,1756314,6362,10,1756314,1756314,134421,63321,48332653175,48222689085,100,100,100,100,4.73,0.02,0,0
-86015,04,005,04005,385,179,14103923,14077985,385,179,14103923,14077985,134421,63321,48332653175,48222689085,100,100,100,100,0.29,0.28,0.03,0.03
-86016,04,005,04005,62,46,276697554,276597914,62,46,276697554,276597914,134421,63321,48332653175,48222689085,100,100,100,100,0.05,0.07,0.57,0.57
-86017,04,005,04005,667,3153,359392718,358724636,667,3153,359392718,358724636,134421,63321,48332653175,48222689085,100,100,100,100,0.5,4.98,0.74,0.74
-86018,04,005,04005,759,709,259722472,259659228,759,709,259722472,259659228,134421,63321,48332653175,48222689085,100,100,100,100,0.56,1.12,0.54,0.54
-86020,04,005,04005,1941,742,2994301216,2992130052,1941,742,2994301216,2992130052,134421,63321,48332653175,48222689085,100,100,100,100,1.44,1.17,6.2,6.2
-86021,04,015,04015,6085,824,68970986,68950484,6085,824,68970986,68950484,200186,110911,34862918316,34475546921,100,100,100,100,3.04,0.74,0.2,0.2
-86022,04,005,04005,1377,630,678213772,678026136,2210,970,1452116576,1451909020,134421,63321,48332653175,48222689085,62.31,64.95,46.71,46.7,1.02,0.99,1.4,1.41
-86022,04,015,04015,833,340,773902804,773882884,2210,970,1452116576,1451909020,200186,110911,34862918316,34475546921,37.69,35.05,53.29,53.3,0.42,0.31,2.22,2.24
-86023,04,005,04005,2627,1208,705658825,702611398,2627,1208,705658825,702611398,134421,63321,48332653175,48222689085,100,100,100,100,1.95,1.91,1.46,1.46
-86024,04,005,04005,703,1944,1369504781,1367460866,703,1944,1369504781,1367460866,134421,63321,48332653175,48222689085,100,100,100,100,0.52,3.07,2.83,2.84
-86025,04,017,04017,5676,2183,1866774289,1858495333,5676,2183,1866774289,1858495333,107449,56938,25795551384,25771473007,100,100,100,100,5.28,3.83,7.24,7.21
-86028,04,001,04001,47,58,454256281,453947621,47,58,454256281,453947621,71518,32514,29055619613,29001443825,100,100,100,100,0.07,0.18,1.56,1.57
-86029,04,017,04017,320,153,156452262,156319088,320,153,156452262,156319088,107449,56938,25795551384,25771473007,100,100,100,100,0.3,0.27,0.61,0.61
-86030,04,005,04005,3,6,218330475,218329728,1374,597,610491754,610439178,134421,63321,48332653175,48222689085,0.22,1.01,35.76,35.77,0,0.01,0.45,0.45
-86030,04,017,04017,1371,591,392161279,392109450,1374,597,610491754,610439178,107449,56938,25795551384,25771473007,99.78,98.99,64.24,64.23,1.28,1.04,1.52,1.52
-86031,04,017,04017,1856,688,1160062264,1159308085,1856,688,1160062264,1159308085,107449,56938,25795551384,25771473007,100,100,100,100,1.73,1.21,4.5,4.5
-86032,04,017,04017,1509,603,521448182,519603056,1509,603,521448182,519603056,107449,56938,25795551384,25771473007,100,100,100,100,1.4,1.06,2.02,2.02
-86033,04,001,04001,191,117,311238336,311168480,7844,2875,3059885812,3057282183,71518,32514,29055619613,29001443825,2.43,4.07,10.17,10.18,0.27,0.36,1.07,1.07
-86033,04,017,04017,7653,2758,2748647476,2746113703,7844,2875,3059885812,3057282183,107449,56938,25795551384,25771473007,97.57,95.93,89.83,89.82,7.12,4.84,10.66,10.66
-86034,04,001,04001,367,162,198574731,198492445,2271,981,1284914024,1284239967,71518,32514,29055619613,29001443825,16.16,16.51,15.45,15.46,0.51,0.5,0.68,0.68
-86034,04,017,04017,1904,819,1086339293,1085747522,2271,981,1284914024,1284239967,107449,56938,25795551384,25771473007,83.84,83.49,84.55,84.54,1.77,1.44,4.21,4.21
-86035,04,005,04005,1802,617,1884105600,1881973796,1802,617,1884105600,1881973796,134421,63321,48332653175,48222689085,100,100,100,100,1.34,0.97,3.9,3.9
-86036,04,005,04005,388,281,2584874663,2575789505,388,281,2584874663,2575789505,134421,63321,48332653175,48222689085,100,100,100,100,0.29,0.44,5.35,5.34
-86038,04,005,04005,77,311,138543958,125106218,77,311,138543958,125106218,134421,63321,48332653175,48222689085,100,100,100,100,0.06,0.49,0.29,0.26
-86039,04,017,04017,1467,644,761981507,761762456,1467,644,761981507,761762456,107449,56938,25795551384,25771473007,100,100,100,100,1.37,1.13,2.95,2.96
-86040,04,005,04005,10283,3858,1982552117,1950486157,10283,3858,1982552117,1950486157,134421,63321,48332653175,48222689085,100,100,100,100,7.65,6.09,4.1,4.04
-86042,04,017,04017,1778,648,183395811,183343803,1778,648,183395811,183343803,107449,56938,25795551384,25771473007,100,100,100,100,1.65,1.14,0.71,0.71
-86043,04,017,04017,1798,570,270753602,270660559,1798,570,270753602,270660559,107449,56938,25795551384,25771473007,100,100,100,100,1.67,1,1.05,1.05
-86044,04,005,04005,3295,1022,1439417475,1439048571,4251,1423,2624078035,2606408630,134421,63321,48332653175,48222689085,77.51,71.82,54.85,55.21,2.45,1.61,2.98,2.98
-86044,04,017,04017,530,240,555692430,555641487,4251,1423,2624078035,2606408630,107449,56938,25795551384,25771473007,12.47,16.87,21.18,21.32,0.49,0.42,2.15,2.16
-86044,49,037,49037,426,161,628968130,611718572,4251,1423,2624078035,2606408630,14746,5734,20546771694,20253675635,10.02,11.31,23.97,23.47,2.89,2.81,3.06,3.02
-86045,04,005,04005,11354,3436,3561585368,3561471110,11354,3436,3561585368,3561471110,134421,63321,48332653175,48222689085,100,100,100,100,8.45,5.43,7.37,7.39
-86046,04,005,04005,6090,3854,3785024522,3783514421,6090,3854,3785024522,3783514421,134421,63321,48332653175,48222689085,100,100,100,100,4.53,6.09,7.83,7.85
-86047,04,005,04005,874,338,1486514957,1486245499,14970,5405,4450233408,4448462122,134421,63321,48332653175,48222689085,5.84,6.25,33.4,33.41,0.65,0.53,3.08,3.08
-86047,04,017,04017,14096,5067,2963718451,2962216623,14970,5405,4450233408,4448462122,107449,56938,25795551384,25771473007,94.16,93.75,66.6,66.59,13.12,8.9,11.49,11.49
-86052,04,005,04005,28,67,2617619360,2613840768,28,67,2617619360,2613840768,134421,63321,48332653175,48222689085,100,100,100,100,0.02,0.11,5.42,5.42
-86053,04,005,04005,2311,712,1894724212,1885212406,2311,712,1894724212,1885212406,134421,63321,48332653175,48222689085,100,100,100,100,1.72,1.12,3.92,3.91
-86054,04,005,04005,109,35,14625495,14625495,1935,720,1081455732,1081195599,134421,63321,48332653175,48222689085,5.63,4.86,1.35,1.35,0.08,0.06,0.03,0.03
-86054,04,017,04017,1826,685,1066830237,1066570104,1935,720,1081455732,1081195599,107449,56938,25795551384,25771473007,94.37,95.14,98.65,98.65,1.7,1.2,4.14,4.14
-86301,04,025,04025,20626,10797,81840281,80097498,20626,10797,81840281,80097498,211033,110432,21051266664,21039764981,100,100,100,100,9.77,9.78,0.39,0.38
-86303,04,025,04025,17082,11632,346352473,346031287,17082,11632,346352473,346031287,211033,110432,21051266664,21039764981,100,100,100,100,8.09,10.53,1.65,1.64
-86305,04,025,04025,17356,9625,3243035159,3242490547,17356,9625,3243035159,3242490547,211033,110432,21051266664,21039764981,100,100,100,100,8.22,8.72,15.41,15.41
-86313,04,025,04025,257,1,293740,293740,257,1,293740,293740,211033,110432,21051266664,21039764981,100,100,100,100,0.12,0,0,0
-86314,04,025,04025,34401,14906,187032556,187032556,34401,14906,187032556,187032556,211033,110432,21051266664,21039764981,100,100,100,100,16.3,13.5,0.89,0.89
-86315,04,025,04025,7234,3062,157580010,157580010,7234,3062,157580010,157580010,211033,110432,21051266664,21039764981,100,100,100,100,3.43,2.77,0.75,0.75
-86320,04,005,04005,885,692,1551059790,1551025169,1885,1452,2412992821,2412929204,134421,63321,48332653175,48222689085,46.95,47.66,64.28,64.28,0.66,1.09,3.21,3.22
-86320,04,025,04025,1000,760,861933031,861904035,1885,1452,2412992821,2412929204,211033,110432,21051266664,21039764981,53.05,52.34,35.72,35.72,0.47,0.69,4.09,4.1
-86321,04,025,04025,2219,1117,762185419,762185419,2219,1117,762185419,762185419,211033,110432,21051266664,21039764981,100,100,100,100,1.05,1.01,3.62,3.62
-86322,04,025,04025,11480,5051,1000952064,1000910236,11480,5051,1000952064,1000910236,211033,110432,21051266664,21039764981,100,100,100,100,5.44,4.57,4.75,4.76
-86323,04,025,04025,15822,7263,367100023,367000054,15822,7263,367100023,367000054,211033,110432,21051266664,21039764981,100,100,100,100,7.5,6.58,1.74,1.74
-86324,04,025,04025,4168,2089,433386686,433005703,4168,2089,433386686,433005703,211033,110432,21051266664,21039764981,100,100,100,100,1.98,1.89,2.06,2.06
-86325,04,025,04025,5152,2813,155583136,155583136,5152,2813,155583136,155583136,211033,110432,21051266664,21039764981,100,100,100,100,2.44,2.55,0.74,0.74
-86326,04,025,04025,23344,11059,140175039,140175039,23344,11059,140175039,140175039,211033,110432,21051266664,21039764981,100,100,100,100,11.06,10.01,0.67,0.67
-86327,04,025,04025,8858,5138,518275692,518275692,8858,5138,518275692,518275692,211033,110432,21051266664,21039764981,100,100,100,100,4.2,4.65,2.46,2.46
-86329,04,025,04025,1179,569,95805063,95805063,1179,569,95805063,95805063,211033,110432,21051266664,21039764981,100,100,100,100,0.56,0.52,0.46,0.46
-86331,04,025,04025,477,314,112659701,112659701,477,314,112659701,112659701,211033,110432,21051266664,21039764981,100,100,100,100,0.23,0.28,0.54,0.54
-86332,04,025,04025,1637,1049,1265203148,1265203148,1637,1049,1265203148,1265203148,211033,110432,21051266664,21039764981,100,100,100,100,0.78,0.95,6.01,6.01
-86333,04,025,04025,5734,3214,1277560674,1277535860,5734,3214,1277560674,1277535860,211033,110432,21051266664,21039764981,100,100,100,100,2.72,2.91,6.07,6.07
-86334,04,025,04025,4985,2153,588629522,588571852,4985,2153,588629522,588571852,211033,110432,21051266664,21039764981,100,100,100,100,2.36,1.95,2.8,2.8
-86335,04,025,04025,4806,2374,480082011,480045665,4806,2374,480082011,480045665,211033,110432,21051266664,21039764981,100,100,100,100,2.28,2.15,2.28,2.28
-86336,04,005,04005,3150,2544,132620773,132512114,11320,7607,584627143,584497700,134421,63321,48332653175,48222689085,27.83,33.44,22.68,22.67,2.34,4.02,0.27,0.27
-86336,04,025,04025,8170,5063,452006370,451985586,11320,7607,584627143,584497700,211033,110432,21051266664,21039764981,72.17,66.56,77.32,77.33,3.87,4.58,2.15,2.15
-86337,04,005,04005,56,36,1074235413,1074235413,1267,1419,3147343373,3147143866,134421,63321,48332653175,48222689085,4.42,2.54,34.13,34.13,0.04,0.06,2.22,2.23
-86337,04,025,04025,1211,1383,2073107960,2072908453,1267,1419,3147343373,3147143866,211033,110432,21051266664,21039764981,95.58,97.46,65.87,65.87,0.57,1.25,9.85,9.85
-86338,04,025,04025,743,364,719734880,719734880,743,364,719734880,719734880,211033,110432,21051266664,21039764981,100,100,100,100,0.35,0.33,3.42,3.42
-86343,04,025,04025,177,308,265635659,265620081,177,308,265635659,265620081,211033,110432,21051266664,21039764981,100,100,100,100,0.08,0.28,1.26,1.26
-86351,04,025,04025,6349,4192,103534741,103534741,6349,4192,103534741,103534741,211033,110432,21051266664,21039764981,100,100,100,100,3.01,3.8,0.49,0.49
-86401,04,015,04015,24289,11365,2876967773,2876917472,24289,11365,2876967773,2876917472,200186,110911,34862918316,34475546921,100,100,100,100,12.13,10.25,8.25,8.34
-86403,04,015,04015,15802,10794,43928635,25951067,15802,10794,43928635,25951067,200186,110911,34862918316,34475546921,100,100,100,100,7.89,9.73,0.13,0.08
-86404,04,015,04015,16243,10510,453926223,448365498,16243,10510,453926223,448365498,200186,110911,34862918316,34475546921,100,100,100,100,8.11,9.48,1.3,1.3
-86406,04,015,04015,23763,13499,651429532,636098899,23763,13499,651429532,636098899,200186,110911,34862918316,34475546921,100,100,100,100,11.87,12.17,1.87,1.85
-86409,04,015,04015,26471,12703,920023865,866119432,26471,12703,920023865,866119432,200186,110911,34862918316,34475546921,100,100,100,100,13.22,11.45,2.64,2.51
-86411,04,015,04015,224,180,1078780131,1078691243,224,180,1078780131,1078691243,200186,110911,34862918316,34475546921,100,100,100,100,0.11,0.16,3.09,3.13
-86413,04,015,04015,12103,5658,1859475465,1825908353,12103,5658,1859475465,1825908353,200186,110911,34862918316,34475546921,100,100,100,100,6.05,5.1,5.33,5.3
-86426,04,015,04015,13863,6880,94781643,93848238,13863,6880,94781643,93848238,200186,110911,34862918316,34475546921,100,100,100,100,6.93,6.2,0.27,0.27
-86429,04,015,04015,7162,4954,223436982,216884868,7162,4954,223436982,216884868,200186,110911,34862918316,34475546921,100,100,100,100,3.58,4.47,0.64,0.63
-86431,04,015,04015,403,348,149714959,149714959,403,348,149714959,149714959,200186,110911,34862918316,34475546921,100,100,100,100,0.2,0.31,0.43,0.43
-86432,04,015,04015,3933,2175,8370433565,8345456715,3933,2175,8370433565,8345456715,200186,110911,34862918316,34475546921,100,100,100,100,1.96,1.96,24.01,24.21
-86433,04,015,04015,111,93,439049953,439049953,111,93,439049953,439049953,200186,110911,34862918316,34475546921,100,100,100,100,0.06,0.08,1.26,1.27
-86434,04,015,04015,1398,459,1916269681,1911792166,1490,573,2028813903,2024336388,200186,110911,34862918316,34475546921,93.83,80.1,94.45,94.44,0.7,0.41,5.5,5.55
-86434,04,025,04025,92,114,112544222,112544222,1490,573,2028813903,2024336388,211033,110432,21051266664,21039764981,6.17,19.9,5.55,5.56,0.04,0.1,0.53,0.53
-86435,04,005,04005,487,127,3231333331,3222894550,487,127,3231333331,3222894550,134421,63321,48332653175,48222689085,100,100,100,100,0.36,0.2,6.69,6.68
-86436,04,015,04015,2104,1711,309412794,288703407,2104,1711,309412794,288703407,200186,110911,34862918316,34475546921,100,100,100,100,1.05,1.54,0.89,0.84
-86437,04,015,04015,76,39,178828003,178828003,76,39,178828003,178828003,200186,110911,34862918316,34475546921,100,100,100,100,0.04,0.04,0.51,0.52
-86438,04,015,04015,913,828,3444738192,3435652734,913,828,3444738192,3435652734,200186,110911,34862918316,34475546921,100,100,100,100,0.46,0.75,9.88,9.97
-86440,04,015,04015,6906,4622,297720504,295852814,6906,4622,297720504,295852814,200186,110911,34862918316,34475546921,100,100,100,100,3.45,4.17,0.85,0.86
-86441,04,015,04015,2224,1743,1331998274,1322350417,2224,1743,1331998274,1322350417,200186,110911,34862918316,34475546921,100,100,100,100,1.11,1.57,3.82,3.84
-86442,04,015,04015,33382,19108,100014545,98609702,33382,19108,100014545,98609702,200186,110911,34862918316,34475546921,100,100,100,100,16.68,17.23,0.29,0.29
-86443,04,015,04015,76,172,1352942292,1208872428,76,172,1352942292,1208872428,200186,110911,34862918316,34475546921,100,100,100,100,0.04,0.16,3.88,3.51
-86444,04,015,04015,1289,1445,1337164240,1309804230,1289,1445,1337164240,1309804230,200186,110911,34862918316,34475546921,100,100,100,100,0.64,1.3,3.84,3.8
-86445,04,015,04015,311,275,765019731,757700674,311,275,765019731,757700674,200186,110911,34862918316,34475546921,100,100,100,100,0.16,0.25,2.19,2.2
-86502,04,001,04001,1464,628,1822653521,1821508132,1464,628,1822653521,1821508132,71518,32514,29055619613,29001443825,100,100,100,100,2.05,1.93,6.27,6.28
-86503,04,001,04001,10714,3998,2156483588,2155630736,10714,3998,2156483588,2155630736,71518,32514,29055619613,29001443825,100,100,100,100,14.98,12.3,7.42,7.43
-86504,04,001,04001,5835,2244,732444689,732133581,6589,2466,836611413,836300305,71518,32514,29055619613,29001443825,88.56,91,87.55,87.54,8.16,6.9,2.52,2.52
-86504,35,031,35031,754,222,104166724,104166724,6589,2466,836611413,836300305,71492,25813,14129101170,14114940579,11.44,9,12.45,12.46,1.05,0.86,0.74,0.74
-86505,04,001,04001,6476,2650,2229931326,2227016593,7682,3112,2679919058,2676890470,71518,32514,29055619613,29001443825,84.3,85.15,83.21,83.19,9.06,8.15,7.67,7.68
-86505,04,017,04017,1206,462,449987732,449873877,7682,3112,2679919058,2676890470,107449,56938,25795551384,25771473007,15.7,14.85,16.79,16.81,1.12,0.81,1.74,1.75
-86506,04,001,04001,1321,545,441154866,440942496,1321,545,441154866,440942496,71518,32514,29055619613,29001443825,100,100,100,100,1.85,1.68,1.52,1.52
-86507,04,001,04001,2340,1080,575778567,574727933,2340,1080,575778567,574727933,71518,32514,29055619613,29001443825,100,100,100,100,3.27,3.32,1.98,1.98
-86508,04,001,04001,752,304,180448470,180349746,752,304,180448470,180349746,71518,32514,29055619613,29001443825,100,100,100,100,1.05,0.93,0.62,0.62
-86510,04,001,04001,16,14,60827542,60827542,5358,2163,1919091428,1918793257,71518,32514,29055619613,29001443825,0.3,0.65,3.17,3.17,0.02,0.04,0.21,0.21
-86510,04,017,04017,5342,2149,1858263886,1857965715,5358,2163,1919091428,1918793257,107449,56938,25795551384,25771473007,99.7,99.35,96.83,96.83,4.97,3.77,7.2,7.21
-86511,04,001,04001,3694,1534,955056106,954655438,3694,1534,955056106,954655438,71518,32514,29055619613,29001443825,100,100,100,100,5.17,4.72,3.29,3.29
-86512,04,001,04001,2439,953,1493070268,1492175974,2439,953,1493070268,1492175974,71518,32514,29055619613,29001443825,100,100,100,100,3.41,2.93,5.14,5.15
-86514,04,001,04001,3011,1229,1730658578,1729380144,3317,1381,2118975933,2114897850,71518,32514,29055619613,29001443825,90.77,88.99,81.67,81.77,4.21,3.78,5.96,5.96
-86514,49,037,49037,306,152,388317355,385517706,3317,1381,2118975933,2114897850,14746,5734,20546771694,20253675635,9.23,11.01,18.33,18.23,2.08,2.65,1.89,1.9
-86515,04,001,04001,2894,1002,38840229,38837148,4479,1538,284970144,284967063,71518,32514,29055619613,29001443825,64.61,65.15,13.63,13.63,4.05,3.08,0.13,0.13
-86515,35,031,35031,1585,536,246129915,246129915,4479,1538,284970144,284967063,71492,25813,14129101170,14114940579,35.39,34.85,86.37,86.37,2.22,2.08,1.74,1.74
-86520,04,001,04001,1151,561,558206547,558086236,1793,783,645298001,645145270,71518,32514,29055619613,29001443825,64.19,71.65,86.5,86.51,1.61,1.73,1.92,1.92
-86520,04,017,04017,642,222,87091454,87059034,1793,783,645298001,645145270,107449,56938,25795551384,25771473007,35.81,28.35,13.5,13.49,0.6,0.39,0.34,0.34
-86535,04,001,04001,1199,455,704133079,704008648,1199,455,704133079,704008648,71518,32514,29055619613,29001443825,100,100,100,100,1.68,1.4,2.42,2.43
-86538,04,001,04001,2338,932,529399807,522785730,2338,932,529399807,522785730,71518,32514,29055619613,29001443825,100,100,100,100,3.27,2.87,1.82,1.8
-86540,04,001,04001,1088,460,627420786,627281564,1088,460,627420786,627281564,71518,32514,29055619613,29001443825,100,100,100,100,1.52,1.41,2.16,2.16
-86544,04,001,04001,1267,612,638938057,638558171,1267,612,638938057,638558171,71518,32514,29055619613,29001443825,100,100,100,100,1.77,1.88,2.2,2.2
-86545,04,001,04001,1650,582,846595276,846477596,1650,582,846595276,846477596,71518,32514,29055619613,29001443825,100,100,100,100,2.31,1.79,2.91,2.92
-86547,04,001,04001,1171,385,337840061,337529660,1171,385,337840061,337529660,71518,32514,29055619613,29001443825,100,100,100,100,1.64,1.18,1.16,1.16
-86556,04,001,04001,2090,902,626593812,624152459,2090,902,626593812,624152459,71518,32514,29055619613,29001443825,100,100,100,100,2.92,2.77,2.16,2.15
-87001,35,043,35043,3684,893,312530256,311114793,3684,893,312530256,311114793,131561,52287,9624248051,9610539961,100,100,100,100,2.8,1.71,3.25,3.24
-87002,35,061,35061,22517,9754,893634921,892137899,22517,9754,893634921,892137899,76569,30085,2766869814,2761380350,100,100,100,100,29.41,32.42,32.3,32.31
-87004,35,043,35043,10136,3944,149433075,146470760,10136,3944,149433075,146470760,131561,52287,9624248051,9610539961,100,100,100,100,7.7,7.54,1.55,1.52
-87005,35,006,35006,799,349,77189189,76599578,799,349,77189189,76599578,27213,11101,11763028945,11757199036,100,100,100,100,2.94,3.14,0.66,0.65
-87006,35,053,35053,419,194,143896803,142688473,703,303,150137422,148840203,17866,8059,17220177962,17214817782,59.6,64.03,95.84,95.87,2.35,2.41,0.84,0.83
-87006,35,061,35061,284,109,6240619,6151730,703,303,150137422,148840203,76569,30085,2766869814,2761380350,40.4,35.97,4.16,4.13,0.37,0.36,0.23,0.22
-87007,35,006,35006,1080,358,62011573,61998456,1080,358,62011573,61998456,27213,11101,11763028945,11757199036,100,100,100,100,3.97,3.22,0.53,0.53
-87008,35,001,35001,2552,1253,73297270,73290931,2552,1253,73297270,73290931,662564,284234,3023001884,3006530549,100,100,100,100,0.39,0.44,2.42,2.44
-87010,35,049,35049,1139,848,423220560,423210620,1139,848,423220560,423210620,144170,71267,4949133812,4945359181,100,100,100,100,0.79,1.19,8.55,8.56
-87011,35,027,35027,48,37,515133314,515021534,84,78,1183689313,1183577533,20497,17519,12513032023,12512467751,57.14,47.44,43.52,43.51,0.23,0.21,4.12,4.12
-87011,35,053,35053,36,41,668555999,668555999,84,78,1183689313,1183577533,17866,8059,17220177962,17214817782,42.86,52.56,56.48,56.49,0.2,0.51,3.88,3.88
-87012,35,039,35039,261,174,245747220,245682230,261,174,245747220,245682230,40246,19638,15270957146,15179497392,100,100,100,100,0.65,0.89,1.61,1.62
-87013,35,031,35031,1381,614,1847847608,1847534500,5200,2334,4817328049,4816539325,71492,25813,14129101170,14114940579,26.56,26.31,38.36,38.36,1.93,2.38,13.08,13.09
-87013,35,039,35039,194,94,523966035,523681196,5200,2334,4817328049,4816539325,40246,19638,15270957146,15179497392,3.73,4.03,10.88,10.87,0.48,0.48,3.43,3.45
-87013,35,043,35043,3522,1597,2395161403,2394989249,5200,2334,4817328049,4816539325,131561,52287,9624248051,9610539961,67.73,68.42,49.72,49.72,2.68,3.05,24.89,24.92
-87013,35,045,35045,103,29,50353003,50334380,5200,2334,4817328049,4816539325,130044,49341,14344450215,14278776370,1.98,1.24,1.05,1.05,0.08,0.06,0.35,0.35
-87014,35,006,35006,652,330,564712701,563959270,654,341,573658524,572886035,27213,11101,11763028945,11757199036,99.69,96.77,98.44,98.44,2.4,2.97,4.8,4.8
-87014,35,043,35043,2,11,8945823,8926765,654,341,573658524,572886035,131561,52287,9624248051,9610539961,0.31,3.23,1.56,1.56,0,0.02,0.09,0.09
-87015,35,001,35001,1881,879,53365641,53344484,13105,5741,389527409,389373365,662564,284234,3023001884,3006530549,14.35,15.31,13.7,13.7,0.28,0.31,1.77,1.77
-87015,35,049,35049,8867,3731,246240015,246109113,13105,5741,389527409,389373365,144170,71267,4949133812,4945359181,67.66,64.99,63.22,63.21,6.15,5.24,4.98,4.98
-87015,35,057,35057,2357,1131,89921753,89919768,13105,5741,389527409,389373365,16383,7798,8665409748,8663108604,17.99,19.7,23.08,23.09,14.39,14.5,1.04,1.04
-87016,35,057,35057,3730,1498,1975012390,1973397202,3730,1498,1975012390,1973397202,16383,7798,8665409748,8663108604,100,100,100,100,22.77,19.21,22.79,22.78
-87017,35,039,35039,429,243,435431979,434862544,429,243,435431979,434862544,40246,19638,15270957146,15179497392,100,100,100,100,1.07,1.24,2.85,2.86
-87018,35,043,35043,522,220,312612031,312485604,522,220,312612031,312485604,131561,52287,9624248051,9610539961,100,100,100,100,0.4,0.42,3.25,3.25
-87020,35,006,35006,11347,4683,2671779185,2671258955,11347,4683,2671779185,2671258955,27213,11101,11763028945,11757199036,100,100,100,100,41.7,42.19,22.71,22.72
-87021,35,006,35006,3472,915,20102262,20099036,3472,915,20102262,20099036,27213,11101,11763028945,11757199036,100,100,100,100,12.76,8.24,0.17,0.17
-87022,35,001,35001,907,444,5503148,5052949,907,444,5503148,5052949,662564,284234,3023001884,3006530549,100,100,100,100,0.14,0.16,0.18,0.17
-87023,35,061,35061,665,269,8570539,8050000,665,269,8570539,8050000,76569,30085,2766869814,2761380350,100,100,100,100,0.87,0.89,0.31,0.29
-87024,35,043,35043,2214,748,224666123,224653103,2214,748,224666123,224653103,131561,52287,9624248051,9610539961,100,100,100,100,1.68,1.43,2.33,2.34
-87025,35,043,35043,1237,1189,897382751,897172067,1237,1189,897382751,897172067,131561,52287,9624248051,9610539961,100,100,100,100,0.94,2.27,9.32,9.34
-87026,35,001,35001,1543,517,223760544,223435384,4063,1416,1310336305,1309265177,662564,284234,3023001884,3006530549,37.98,36.51,17.08,17.07,0.23,0.18,7.4,7.43
-87026,35,006,35006,1891,590,798100559,797454368,4063,1416,1310336305,1309265177,27213,11101,11763028945,11757199036,46.54,41.67,60.91,60.91,6.95,5.31,6.78,6.78
-87026,35,061,35061,629,309,288475202,288375425,4063,1416,1310336305,1309265177,76569,30085,2766869814,2761380350,15.48,21.82,22.02,22.03,0.82,1.03,10.43,10.44
-87027,35,043,35043,309,208,92319928,92319928,309,208,92319928,92319928,131561,52287,9624248051,9610539961,100,100,100,100,0.23,0.4,0.96,0.96
-87028,35,053,35053,145,90,178573947,177832849,145,90,178573947,177832849,17866,8059,17220177962,17214817782,100,100,100,100,0.81,1.12,1.04,1.03
-87029,35,039,35039,237,200,833185719,832516460,237,200,833185719,832516460,40246,19638,15270957146,15179497392,100,100,100,100,0.59,1.02,5.46,5.48
-87031,35,061,35061,44075,16238,1318043820,1315802445,44075,16238,1318043820,1315802445,76569,30085,2766869814,2761380350,100,100,100,100,57.56,53.97,47.64,47.65
-87032,35,057,35057,291,145,41191246,41191246,291,145,41191246,41191246,16383,7798,8665409748,8663108604,100,100,100,100,1.78,1.86,0.48,0.48
-87034,35,006,35006,2207,893,2243557019,2243446815,2207,893,2243557019,2243446815,27213,11101,11763028945,11757199036,100,100,100,100,8.11,8.04,19.07,19.08
-87035,35,049,35049,102,46,18199231,18199231,7268,3316,568386959,568376400,144170,71267,4949133812,4945359181,1.4,1.39,3.2,3.2,0.07,0.06,0.37,0.37
-87035,35,057,35057,7166,3270,550187728,550177169,7268,3316,568386959,568376400,16383,7798,8665409748,8663108604,98.6,98.61,96.8,96.8,43.74,41.93,6.35,6.35
-87036,35,053,35053,22,19,786631002,786631002,1868,1113,2565746105,2565169896,17866,8059,17220177962,17214817782,1.18,1.71,30.66,30.67,0.12,0.24,4.57,4.57
-87036,35,057,35057,1846,1094,1779115103,1778538894,1868,1113,2565746105,2565169896,16383,7798,8665409748,8663108604,98.82,98.29,69.34,69.33,11.27,14.03,20.53,20.53
-87037,35,045,35045,677,282,720686330,720563509,677,282,720686330,720563509,130044,49341,14344450215,14278776370,100,100,100,100,0.52,0.57,5.02,5.05
-87038,35,006,35006,616,205,66570858,66525328,616,205,66570858,66525328,27213,11101,11763028945,11757199036,100,100,100,100,2.26,1.85,0.57,0.57
-87040,35,006,35006,496,216,46353631,46315693,496,216,46353631,46315693,27213,11101,11763028945,11757199036,100,100,100,100,1.82,1.95,0.39,0.39
-87041,35,043,35043,881,334,365728088,359774201,881,334,365728088,359774201,131561,52287,9624248051,9610539961,100,100,100,100,0.67,0.64,3.8,3.74
-87042,35,061,35061,3644,1478,11740371,11740371,3644,1478,11740371,11740371,76569,30085,2766869814,2761380350,100,100,100,100,4.76,4.91,0.42,0.43
-87043,35,043,35043,5052,2582,221722008,221720318,5052,2582,221722008,221720318,131561,52287,9624248051,9610539961,100,100,100,100,3.84,4.94,2.3,2.31
-87044,35,043,35043,387,194,36526574,36526574,387,194,36526574,36526574,131561,52287,9624248051,9610539961,100,100,100,100,0.29,0.37,0.38,0.38
-87045,35,006,35006,43,60,9424402,7648483,1751,739,413484419,411690993,27213,11101,11763028945,11757199036,2.46,8.12,2.28,1.86,0.16,0.54,0.08,0.07
-87045,35,031,35031,1708,679,404060017,404042510,1751,739,413484419,411690993,71492,25813,14129101170,14114940579,97.54,91.88,97.72,98.14,2.39,2.63,2.86,2.86
-87046,35,039,35039,48,38,108327561,108144566,186,185,157652058,157361341,40246,19638,15270957146,15179497392,25.81,20.54,68.71,68.72,0.12,0.19,0.71,0.71
-87046,35,043,35043,138,147,49324497,49216775,186,185,157652058,157361341,131561,52287,9624248051,9610539961,74.19,79.46,31.29,31.28,0.1,0.28,0.51,0.51
-87047,35,001,35001,4050,1895,106665912,106662961,4894,2396,344058469,344055518,662564,284234,3023001884,3006530549,82.75,79.09,31,31,0.61,0.67,3.53,3.55
-87047,35,043,35043,629,338,135984164,135984164,4894,2396,344058469,344055518,131561,52287,9624248051,9610539961,12.85,14.11,39.52,39.52,0.48,0.65,1.41,1.41
-87047,35,049,35049,215,163,101408393,101408393,4894,2396,344058469,344055518,144170,71267,4949133812,4945359181,4.39,6.8,29.47,29.47,0.15,0.23,2.05,2.05
-87048,35,001,35001,368,155,627920,627920,8682,3959,28603288,27857237,662564,284234,3023001884,3006530549,4.24,3.92,2.2,2.25,0.06,0.05,0.02,0.02
-87048,35,043,35043,8314,3804,27975368,27229317,8682,3959,28603288,27857237,131561,52287,9624248051,9610539961,95.76,96.08,97.8,97.75,6.32,7.28,0.29,0.28
-87049,35,006,35006,973,360,164654240,164301082,973,360,164654240,164301082,27213,11101,11763028945,11757199036,100,100,100,100,3.58,3.24,1.4,1.4
-87051,35,006,35006,969,463,163202942,163173595,969,463,163202942,163173595,27213,11101,11763028945,11757199036,100,100,100,100,3.56,4.17,1.39,1.39
-87052,35,043,35043,3182,638,101862418,101653743,3182,638,101862418,101653743,131561,52287,9624248051,9610539961,100,100,100,100,2.42,1.22,1.06,1.06
-87053,35,043,35043,998,363,745907030,745706908,998,363,745907030,745706908,131561,52287,9624248051,9610539961,100,100,100,100,0.76,0.69,7.75,7.76
-87056,35,047,35047,14,16,124531680,124531680,954,513,1264560353,1264493301,29393,15595,12265298816,12213918594,1.47,3.12,9.85,9.85,0.05,0.1,1.02,1.02
-87056,35,049,35049,940,497,1140028673,1139961621,954,513,1264560353,1264493301,144170,71267,4949133812,4945359181,98.53,96.88,90.15,90.15,0.65,0.7,23.03,23.05
-87059,35,001,35001,9604,4513,368711411,368642166,9604,4513,368711411,368642166,662564,284234,3023001884,3006530549,100,100,100,100,1.45,1.59,12.2,12.26
-87061,35,057,35057,371,243,341083015,341083015,371,243,341083015,341083015,16383,7798,8665409748,8663108604,100,100,100,100,2.26,3.12,3.94,3.94
-87062,35,053,35053,1869,757,334683538,334683538,1869,757,334683538,334683538,17866,8059,17220177962,17214817782,100,100,100,100,10.46,9.39,1.94,1.94
-87063,35,057,35057,323,174,844773601,844753355,323,174,844773601,844753355,16383,7798,8665409748,8663108604,100,100,100,100,1.97,2.23,9.75,9.75
-87064,35,039,35039,161,130,403685919,394961508,161,130,403685919,394961508,40246,19638,15270957146,15179497392,100,100,100,100,0.4,0.66,2.64,2.6
-87068,35,061,35061,4755,1928,240164342,239122480,4755,1928,240164342,239122480,76569,30085,2766869814,2761380350,100,100,100,100,6.21,6.41,8.68,8.66
-87070,35,057,35057,42,40,68853943,68853943,42,40,68853943,68853943,16383,7798,8665409748,8663108604,100,100,100,100,0.26,0.51,0.79,0.79
-87072,35,043,35043,660,218,57286057,57066236,660,218,57286057,57066236,131561,52287,9624248051,9610539961,100,100,100,100,0.5,0.42,0.6,0.59
-87083,35,043,35043,569,318,3436662,3436662,569,318,3436662,3436662,131561,52287,9624248051,9610539961,100,100,100,100,0.43,0.61,0.04,0.04
-87102,35,001,35001,21204,10253,16982158,16826106,21204,10253,16982158,16826106,662564,284234,3023001884,3006530549,100,100,100,100,3.2,3.61,0.56,0.56
-87104,35,001,35001,12123,5849,11919352,11006016,12123,5849,11919352,11006016,662564,284234,3023001884,3006530549,100,100,100,100,1.83,2.06,0.39,0.37
-87105,35,001,35001,57680,20949,249223809,243240517,57680,20949,249223809,243240517,662564,284234,3023001884,3006530549,100,100,100,100,8.71,7.37,8.24,8.09
-87106,35,001,35001,27013,13078,27422241,27362916,27013,13078,27422241,27362916,662564,284234,3023001884,3006530549,100,100,100,100,4.08,4.6,0.91,0.91
-87107,35,001,35001,31183,14074,38700484,38240621,31183,14074,38700484,38240621,662564,284234,3023001884,3006530549,100,100,100,100,4.71,4.95,1.28,1.27
-87108,35,001,35001,38647,18935,15224438,15224438,38647,18935,15224438,15224438,662564,284234,3023001884,3006530549,100,100,100,100,5.83,6.66,0.5,0.51
-87109,35,001,35001,40432,19546,26382802,26199125,40432,19546,26382802,26199125,662564,284234,3023001884,3006530549,100,100,100,100,6.1,6.88,0.87,0.87
-87110,35,001,35001,38587,18862,22370995,22361758,38587,18862,22370995,22361758,662564,284234,3023001884,3006530549,100,100,100,100,5.82,6.64,0.74,0.74
-87111,35,001,35001,56490,27552,56375739,56147469,56490,27552,56375739,56147469,662564,284234,3023001884,3006530549,100,100,100,100,8.53,9.69,1.86,1.87
-87112,35,001,35001,43584,20177,21077010,20921526,43584,20177,21077010,20921526,662564,284234,3023001884,3006530549,100,100,100,100,6.58,7.1,0.7,0.7
-87113,35,001,35001,14477,6129,23485191,23320774,14477,6129,23485191,23320774,662564,284234,3023001884,3006530549,100,100,100,100,2.18,2.16,0.78,0.78
-87114,35,001,35001,61623,24618,56631838,55158454,61623,24618,56631838,55158454,662564,284234,3023001884,3006530549,100,100,100,100,9.3,8.66,1.87,1.83
-87116,35,001,35001,4117,1298,8460141,8417090,4117,1298,8460141,8417090,662564,284234,3023001884,3006530549,100,100,100,100,0.62,0.46,0.28,0.28
-87117,35,001,35001,310,1,50733899,50544921,310,1,50733899,50544921,662564,284234,3023001884,3006530549,100,100,100,100,0.05,0,1.68,1.68
-87120,35,001,35001,58023,23716,101077082,99509653,58023,23716,101077082,99509653,662564,284234,3023001884,3006530549,100,100,100,100,8.76,8.34,3.34,3.31
-87121,35,001,35001,76721,23826,665053475,662970493,76721,23826,665053475,662970493,662564,284234,3023001884,3006530549,100,100,100,100,11.58,8.38,22,22.05
-87122,35,001,35001,17977,7210,69168675,69071660,17977,7210,69168675,69071660,662564,284234,3023001884,3006530549,100,100,100,100,2.71,2.54,2.29,2.3
-87123,35,001,35001,41468,18503,90088201,89634896,41468,18503,90088201,89634896,662564,284234,3023001884,3006530549,100,100,100,100,6.26,6.51,2.98,2.98
-87124,35,043,35043,51404,20610,182373709,182350924,51404,20610,182373709,182350924,131561,52287,9624248051,9610539961,100,100,100,100,39.07,39.42,1.89,1.9
-87144,35,043,35043,37719,13917,230821909,230510920,37719,13917,230821909,230510920,131561,52287,9624248051,9610539961,100,100,100,100,28.67,26.62,2.4,2.4
-87301,35,031,35031,23674,8844,213699798,213685333,23674,8844,213699798,213685333,71492,25813,14129101170,14114940579,100,100,100,100,33.11,34.26,1.51,1.51
-87305,35,031,35031,3350,1268,592379437,592365794,3350,1268,592379437,592365794,71492,25813,14129101170,14114940579,100,100,100,100,4.69,4.91,4.19,4.2
-87310,35,031,35031,938,384,474035151,473965319,938,384,474035151,473965319,71492,25813,14129101170,14114940579,100,100,100,100,1.31,1.49,3.36,3.36
-87311,35,031,35031,4208,1364,501797467,501610409,4208,1364,501797467,501610409,71492,25813,14129101170,14114940579,100,100,100,100,5.89,5.28,3.55,3.55
-87312,35,031,35031,579,230,129374059,129374059,579,230,129374059,129374059,71492,25813,14129101170,14114940579,100,100,100,100,0.81,0.89,0.92,0.92
-87313,35,031,35031,5347,2111,2104115189,2104027951,5662,2272,2474760856,2474477046,71492,25813,14129101170,14114940579,94.44,92.91,85.02,85.03,7.48,8.18,14.89,14.91
-87313,35,045,35045,315,161,370645667,370449095,5662,2272,2474760856,2474477046,130044,49341,14344450215,14278776370,5.56,7.09,14.98,14.97,0.24,0.33,2.58,2.59
-87315,35,006,35006,149,134,1537532078,1537423393,149,134,1537532078,1537423393,27213,11101,11763028945,11757199036,100,100,100,100,0.55,1.21,13.07,13.08
-87316,35,031,35031,1304,458,321405500,321318236,1304,458,321405500,321318236,71492,25813,14129101170,14114940579,100,100,100,100,1.82,1.77,2.27,2.28
-87317,35,031,35031,1956,634,60505999,60505999,1956,634,60505999,60505999,71492,25813,14129101170,14114940579,100,100,100,100,2.74,2.46,0.43,0.43
-87319,35,031,35031,1832,722,437682539,437660208,1832,722,437682539,437660208,71492,25813,14129101170,14114940579,100,100,100,100,2.56,2.8,3.1,3.1
-87320,35,031,35031,765,239,213376435,213376435,765,239,213376435,213376435,71492,25813,14129101170,14114940579,100,100,100,100,1.07,0.93,1.51,1.51
-87321,35,006,35006,1622,828,1346620434,1346492968,2226,1207,1583308916,1582440086,27213,11101,11763028945,11757199036,72.87,68.6,85.05,85.09,5.96,7.46,11.45,11.45
-87321,35,031,35031,604,379,236688482,235947118,2226,1207,1583308916,1582440086,71492,25813,14129101170,14114940579,27.13,31.4,14.95,14.91,0.84,1.47,1.68,1.67
-87322,35,031,35031,247,69,4800642,4800642,247,69,4800642,4800642,71492,25813,14129101170,14114940579,100,100,100,100,0.35,0.27,0.03,0.03
-87323,35,006,35006,259,374,109108477,108981078,4558,1979,753052141,751509880,27213,11101,11763028945,11757199036,5.68,18.9,14.49,14.5,0.95,3.37,0.93,0.93
-87323,35,031,35031,4299,1605,643943664,642528802,4558,1979,753052141,751509880,71492,25813,14129101170,14114940579,94.32,81.1,85.51,85.5,6.01,6.22,4.56,4.55
-87325,35,031,35031,1714,755,765168492,764755585,3034,1265,1463876002,1462973906,71492,25813,14129101170,14114940579,56.49,59.68,52.27,52.27,2.4,2.92,5.42,5.42
-87325,35,045,35045,1320,510,698707510,698218321,3034,1265,1463876002,1462973906,130044,49341,14344450215,14278776370,43.51,40.32,47.73,47.73,1.02,1.03,4.87,4.89
-87326,35,031,35031,1688,680,444325944,444075739,1688,680,444325944,444075739,71492,25813,14129101170,14114940579,100,100,100,100,2.36,2.63,3.14,3.15
-87327,35,006,35006,6,27,629853152,629816362,7883,2184,1493237223,1490850175,27213,11101,11763028945,11757199036,0.08,1.24,42.18,42.25,0.02,0.24,5.35,5.36
-87327,35,031,35031,7877,2157,863384071,861033813,7883,2184,1493237223,1490850175,71492,25813,14129101170,14114940579,99.92,98.76,57.82,57.75,11.02,8.36,6.11,6.1
-87328,04,001,04001,185,109,98791161,98453333,2668,995,492077391,488258471,71518,32514,29055619613,29001443825,6.93,10.95,20.08,20.16,0.26,0.34,0.34,0.34
-87328,35,031,35031,2067,653,225902428,223565060,2668,995,492077391,488258471,71492,25813,14129101170,14114940579,77.47,65.63,45.91,45.79,2.89,2.53,1.6,1.58
-87328,35,045,35045,416,233,167383802,166240078,2668,995,492077391,488258471,130044,49341,14344450215,14278776370,15.59,23.42,34.02,34.05,0.32,0.47,1.17,1.16
-87347,35,031,35031,309,132,90389703,90389703,309,132,90389703,90389703,71492,25813,14129101170,14114940579,100,100,100,100,0.43,0.51,0.64,0.64
-87357,35,006,35006,604,283,175199568,175198399,604,283,175199568,175198399,27213,11101,11763028945,11757199036,100,100,100,100,2.22,2.55,1.49,1.49
-87364,35,045,35045,1111,488,399582202,399556345,1111,488,399582202,399556345,130044,49341,14344450215,14278776370,100,100,100,100,0.85,0.99,2.79,2.8
-87375,35,031,35031,3193,1017,248033073,247977475,3193,1017,248033073,247977475,71492,25813,14129101170,14114940579,100,100,100,100,4.47,3.94,1.76,1.76
-87401,35,045,35045,46293,17411,340478382,337668408,46293,17411,340478382,337668408,130044,49341,14344450215,14278776370,100,100,100,100,35.6,35.29,2.37,2.36
-87402,35,045,35045,11034,4239,30103233,29706129,11034,4239,30103233,29706129,130044,49341,14344450215,14278776370,100,100,100,100,8.48,8.59,0.21,0.21
-87410,35,045,35045,17603,7247,699411102,696189391,17603,7247,699411102,696189391,130044,49341,14344450215,14278776370,100,100,100,100,13.54,14.69,4.88,4.88
-87412,35,039,35039,59,44,998835638,997268572,966,480,1305596508,1301807944,40246,19638,15270957146,15179497392,6.11,9.17,76.5,76.61,0.15,0.22,6.54,6.57
-87412,35,045,35045,907,436,306760870,304539372,966,480,1305596508,1301807944,130044,49341,14344450215,14278776370,93.89,90.83,23.5,23.39,0.7,0.88,2.14,2.13
-87413,35,045,35045,16792,6348,1669082996,1666368530,16792,6348,1669082996,1666368530,130044,49341,14344450215,14278776370,100,100,100,100,12.91,12.87,11.64,11.67
-87415,35,045,35045,1791,773,29333912,28426621,1791,773,29333912,28426621,130044,49341,14344450215,14278776370,100,100,100,100,1.38,1.57,0.2,0.2
-87416,35,045,35045,5454,1665,255784410,253226412,5454,1665,255784410,253226412,130044,49341,14344450215,14278776370,100,100,100,100,4.19,3.37,1.78,1.77
-87417,35,045,35045,6910,2300,31398118,30834459,6910,2300,31398118,30834459,130044,49341,14344450215,14278776370,100,100,100,100,5.31,4.66,0.22,0.22
-87418,35,045,35045,1059,419,158287779,158269375,1059,419,158287779,158269375,130044,49341,14344450215,14278776370,100,100,100,100,0.81,0.85,1.1,1.11
-87419,35,039,35039,18,41,461169632,436811692,464,409,796240103,757970672,40246,19638,15270957146,15179497392,3.88,10.02,57.92,57.63,0.04,0.21,3.02,2.88
-87419,35,045,35045,446,368,335070471,321158980,464,409,796240103,757970672,130044,49341,14344450215,14278776370,96.12,89.98,42.08,42.37,0.34,0.75,2.34,2.25
-87420,35,045,35045,11967,4050,1396566144,1387460061,11967,4050,1396566144,1387460061,130044,49341,14344450215,14278776370,100,100,100,100,9.2,8.21,9.74,9.72
-87421,35,045,35045,1871,609,109968298,103673213,1871,609,109968298,103673213,130044,49341,14344450215,14278776370,100,100,100,100,1.44,1.23,0.77,0.73
-87455,35,045,35045,1750,709,899234926,899083521,1750,709,899234926,899083521,130044,49341,14344450215,14278776370,100,100,100,100,1.35,1.44,6.27,6.3
-87461,35,045,35045,1315,657,788332112,787139244,1315,657,788332112,787139244,130044,49341,14344450215,14278776370,100,100,100,100,1.01,1.33,5.5,5.51
-87499,35,045,35045,453,191,643192517,643089192,453,191,643192517,643089192,130044,49341,14344450215,14278776370,100,100,100,100,0.35,0.39,4.48,4.5
-87501,35,049,35049,15147,10726,206915630,206671902,15147,10726,206915630,206671902,144170,71267,4949133812,4945359181,100,100,100,100,10.51,15.05,4.18,4.18
-87505,35,049,35049,31013,17194,179503651,179321360,31013,17194,179503651,179321360,144170,71267,4949133812,4945359181,100,100,100,100,21.51,24.13,3.63,3.63
-87506,35,049,35049,12580,6759,512732503,511786691,12580,6759,512732503,511786691,144170,71267,4949133812,4945359181,100,100,100,100,8.73,9.48,10.36,10.35
-87507,35,049,35049,45890,18512,215750916,214387170,45890,18512,215750916,214387170,144170,71267,4949133812,4945359181,100,100,100,100,31.83,25.98,4.36,4.34
-87508,35,049,35049,18183,8020,382646491,382646491,18183,8020,382646491,382646491,144170,71267,4949133812,4945359181,100,100,100,100,12.61,11.25,7.73,7.74
-87510,35,039,35039,1096,627,1112058218,1109696832,1096,627,1112058218,1109696832,40246,19638,15270957146,15179497392,100,100,100,100,2.72,3.19,7.28,7.31
-87511,35,039,35039,2747,1116,143433584,143246030,2747,1116,143433584,143246030,40246,19638,15270957146,15179497392,100,100,100,100,6.83,5.68,0.94,0.94
-87512,35,055,35055,199,176,536869073,535412278,199,176,536869073,535412278,32937,20265,5709415378,5706029510,100,100,100,100,0.6,0.87,9.4,9.38
-87513,35,055,35055,1007,550,86118883,86118883,1007,550,86118883,86118883,32937,20265,5709415378,5706029510,100,100,100,100,3.06,2.71,1.51,1.51
-87514,35,055,35055,1345,856,45483808,45483808,1345,856,45483808,45483808,32937,20265,5709415378,5706029510,100,100,100,100,4.08,4.22,0.8,0.8
-87515,35,039,35039,311,191,344863757,344404597,311,191,344863757,344404597,40246,19638,15270957146,15179497392,100,100,100,100,0.77,0.97,2.26,2.27
-87516,35,039,35039,130,74,139343857,139335974,130,74,139343857,139335974,40246,19638,15270957146,15179497392,100,100,100,100,0.32,0.38,0.91,0.92
-87517,35,055,35055,356,405,203625602,203625602,356,405,203625602,203625602,32937,20265,5709415378,5706029510,100,100,100,100,1.08,2,3.57,3.57
-87518,35,039,35039,91,62,232548951,232068512,91,62,232548951,232068512,40246,19638,15270957146,15179497392,100,100,100,100,0.23,0.32,1.52,1.53
-87519,35,055,35055,460,253,59152426,59152426,460,253,59152426,59152426,32937,20265,5709415378,5706029510,100,100,100,100,1.4,1.25,1.04,1.04
-87520,35,039,35039,1419,1168,673540246,672244484,1419,1168,673540246,672244484,40246,19638,15270957146,15179497392,100,100,100,100,3.53,5.95,4.41,4.43
-87521,35,039,35039,237,131,172180896,172086529,1003,529,255299972,255205605,40246,19638,15270957146,15179497392,23.63,24.76,67.44,67.43,0.59,0.67,1.13,1.13
-87521,35,055,35055,766,398,83119076,83119076,1003,529,255299972,255205605,32937,20265,5709415378,5706029510,76.37,75.24,32.56,32.57,2.33,1.96,1.46,1.46
-87522,35,039,35039,2548,1237,53765286,53747812,3384,1669,405009442,404536069,40246,19638,15270957146,15179497392,75.3,74.12,13.28,13.29,6.33,6.3,0.35,0.35
-87522,35,049,35049,836,432,351244156,350788257,3384,1669,405009442,404536069,144170,71267,4949133812,4945359181,24.7,25.88,86.72,86.71,0.58,0.61,7.1,7.09
-87523,35,039,35039,405,199,18705674,18705674,405,199,18705674,18705674,40246,19638,15270957146,15179497392,100,100,100,100,1.01,1.01,0.12,0.12
-87524,35,055,35055,260,169,309482386,309482386,260,169,309482386,309482386,32937,20265,5709415378,5706029510,100,100,100,100,0.79,0.83,5.42,5.42
-87525,35,055,35055,72,290,55126595,55102552,72,290,55126595,55102552,32937,20265,5709415378,5706029510,100,100,100,100,0.22,1.43,0.97,0.97
-87527,35,039,35039,880,492,93600519,93499288,880,492,93600519,93499288,40246,19638,15270957146,15179497392,100,100,100,100,2.19,2.51,0.61,0.62
-87528,35,039,35039,3417,1257,1992383180,1986296511,3417,1257,1992383180,1986296511,40246,19638,15270957146,15179497392,100,100,100,100,8.49,6.4,13.05,13.09
-87529,35,055,35055,3600,2198,65729549,65729549,3600,2198,65729549,65729549,32937,20265,5709415378,5706029510,100,100,100,100,10.93,10.85,1.15,1.15
-87530,35,039,35039,974,507,365787539,365586910,974,507,365787539,365586910,40246,19638,15270957146,15179497392,100,100,100,100,2.42,2.58,2.4,2.41
-87531,35,039,35039,245,167,44677715,44088762,368,264,92992657,92403704,40246,19638,15270957146,15179497392,66.58,63.26,48.04,47.71,0.61,0.85,0.29,0.29
-87531,35,055,35055,123,97,48314942,48314942,368,264,92992657,92403704,32937,20265,5709415378,5706029510,33.42,36.74,51.96,52.29,0.37,0.48,0.85,0.85
-87532,35,039,35039,12699,5532,243348856,242488628,18223,7929,295729560,294835025,40246,19638,15270957146,15179497392,69.69,69.77,82.29,82.25,31.55,28.17,1.59,1.6
-87532,35,049,35049,5524,2397,52380704,52346397,18223,7929,295729560,294835025,144170,71267,4949133812,4945359181,30.31,30.23,17.71,17.75,3.83,3.36,1.06,1.06
-87533,35,039,35039,185,69,53638,53638,185,69,53638,53638,40246,19638,15270957146,15179497392,100,100,100,100,0.46,0.35,0,0
-87535,35,047,35047,284,118,5512779,5512779,1270,709,166499361,166499361,29393,15595,12265298816,12213918594,22.36,16.64,3.31,3.31,0.97,0.76,0.04,0.05
-87535,35,049,35049,986,591,160986582,160986582,1270,709,166499361,166499361,144170,71267,4949133812,4945359181,77.64,83.36,96.69,96.69,0.68,0.83,3.25,3.26
-87537,35,039,35039,2957,1247,154473841,154008130,2957,1247,154473841,154008130,40246,19638,15270957146,15179497392,100,100,100,100,7.35,6.35,1.01,1.01
-87538,35,047,35047,493,312,201654869,201654869,493,312,201654869,201654869,29393,15595,12265298816,12213918594,100,100,100,100,1.68,2,1.64,1.65
-87539,35,039,35039,269,163,201428739,201407136,269,163,201428739,201407136,40246,19638,15270957146,15179497392,100,100,100,100,0.67,0.83,1.32,1.33
-87540,35,049,35049,923,536,219833300,219811494,923,536,219833300,219811494,144170,71267,4949133812,4945359181,100,100,100,100,0.64,0.75,4.44,4.44
-87543,35,055,35055,247,147,52008249,52008249,247,147,52008249,52008249,32937,20265,5709415378,5706029510,100,100,100,100,0.75,0.73,0.91,0.91
-87544,35,028,35028,17950,8354,144638888,144522884,17950,8354,144638888,144522884,17950,8354,282970241,282740301,100,100,100,100,100,100,51.11,51.12
-87548,35,039,35039,928,402,87233544,86760733,928,402,87233544,86760733,40246,19638,15270957146,15179497392,100,100,100,100,2.31,2.05,0.57,0.57
-87549,35,039,35039,980,440,166024538,165529598,1118,525,244614454,244119514,40246,19638,15270957146,15179497392,87.66,83.81,67.87,67.81,2.44,2.24,1.09,1.09
-87549,35,055,35055,138,85,78589916,78589916,1118,525,244614454,244119514,32937,20265,5709415378,5706029510,12.34,16.19,32.13,32.19,0.42,0.42,1.38,1.38
-87551,35,039,35039,305,427,104658463,79041680,305,427,104658463,79041680,40246,19638,15270957146,15179497392,100,100,100,100,0.76,2.17,0.69,0.52
-87552,35,047,35047,3325,1823,382999717,382999717,3325,1823,382999717,382999717,29393,15595,12265298816,12213918594,100,100,100,100,11.31,11.69,3.12,3.14
-87553,35,055,35055,1209,626,52966803,52959716,1209,626,52966803,52959716,32937,20265,5709415378,5706029510,100,100,100,100,3.67,3.09,0.93,0.93
-87554,35,039,35039,61,44,120410277,120388761,61,44,120410277,120388761,40246,19638,15270957146,15179497392,100,100,100,100,0.15,0.22,0.79,0.79
-87556,35,055,35055,2417,1471,532701451,531144937,2417,1471,532701451,531144937,32937,20265,5709415378,5706029510,100,100,100,100,7.34,7.26,9.33,9.31
-87557,35,055,35055,6359,3127,261973941,261955359,6359,3127,261973941,261955359,32937,20265,5709415378,5706029510,100,100,100,100,19.31,15.43,4.59,4.59
-87558,35,055,35055,606,1254,328434587,328317654,606,1254,328434587,328317654,32937,20265,5709415378,5706029510,100,100,100,100,1.84,6.19,5.75,5.75
-87560,35,047,35047,1445,791,1221720842,1221704024,1445,791,1221720842,1221704024,29393,15595,12265298816,12213918594,100,100,100,100,4.92,5.07,9.96,10
-87562,35,047,35047,576,264,150113902,150113902,576,264,150113902,150113902,29393,15595,12265298816,12213918594,100,100,100,100,1.96,1.69,1.22,1.23
-87564,35,055,35055,332,191,64168684,64168684,332,191,64168684,64168684,32937,20265,5709415378,5706029510,100,100,100,100,1.01,0.94,1.12,1.12
-87565,35,047,35047,478,254,125225656,125225656,478,254,125225656,125225656,29393,15595,12265298816,12213918594,100,100,100,100,1.63,1.63,1.02,1.03
-87566,35,039,35039,3000,1223,54629605,53907510,3000,1223,54629605,53907510,40246,19638,15270957146,15179497392,100,100,100,100,7.45,6.23,0.36,0.36
-87567,35,049,35049,1634,731,8396936,8396936,1634,731,8396936,8396936,144170,71267,4949133812,4945359181,100,100,100,100,1.13,1.03,0.17,0.17
-87569,35,047,35047,442,215,204810697,204810697,442,215,204810697,204810697,29393,15595,12265298816,12213918594,100,100,100,100,1.5,1.38,1.67,1.68
-87571,35,055,35055,11706,6656,393622702,393581916,11706,6656,393622702,393581916,32937,20265,5709415378,5706029510,100,100,100,100,35.54,32.84,6.89,6.9
-87573,35,047,35047,32,283,260092438,260092438,36,296,330084750,329912510,29393,15595,12265298816,12213918594,88.89,95.61,78.8,78.84,0.11,1.81,2.12,2.13
-87573,35,049,35049,4,13,69992312,69820072,36,296,330084750,329912510,144170,71267,4949133812,4945359181,11.11,4.39,21.2,21.16,0,0.02,1.41,1.41
-87574,35,049,35049,187,71,7769631,7769631,187,71,7769631,7769631,144170,71267,4949133812,4945359181,100,100,100,100,0.13,0.1,0.16,0.16
-87575,35,039,35039,789,611,1533572053,1521238559,789,611,1533572053,1521238559,40246,19638,15270957146,15179497392,100,100,100,100,1.96,3.11,10.04,10.02
-87577,35,039,35039,62,93,578485955,578179162,454,465,1005063353,1004740177,40246,19638,15270957146,15179497392,13.66,20,57.56,57.55,0.15,0.47,3.79,3.81
-87577,35,055,35055,392,372,426577398,426561015,454,465,1005063353,1004740177,32937,20265,5709415378,5706029510,86.34,80,42.44,42.45,1.19,1.84,7.47,7.48
-87578,35,039,35039,611,376,113369133,113319950,611,376,113369133,113319950,40246,19638,15270957146,15179497392,100,100,100,100,1.52,1.91,0.74,0.75
-87579,35,055,35055,890,637,320803620,320779337,890,637,320803620,320779337,32937,20265,5709415378,5706029510,100,100,100,100,2.7,3.14,5.62,5.62
-87580,35,055,35055,449,298,61044173,61044173,449,298,61044173,61044173,32937,20265,5709415378,5706029510,100,100,100,100,1.36,1.47,1.07,1.07
-87581,35,039,35039,141,144,339315392,339256510,141,144,339315392,339256510,40246,19638,15270957146,15179497392,100,100,100,100,0.35,0.73,2.22,2.23
-87582,35,039,35039,1350,671,49065808,48600642,1350,671,49065808,48600642,40246,19638,15270957146,15179497392,100,100,100,100,3.35,3.42,0.32,0.32
-87583,35,047,35047,234,138,75157035,75157035,234,138,75157035,75157035,29393,15595,12265298816,12213918594,100,100,100,100,0.8,0.88,0.61,0.62
-87701,35,047,35047,20081,9469,4180044834,4172150045,20081,9469,4180044834,4172150045,29393,15595,12265298816,12213918594,100,100,100,100,68.32,60.72,34.08,34.16
-87710,35,007,35007,1768,3063,402862142,398874421,1768,3063,402862142,398874421,13750,10023,9759648063,9733329419,100,100,100,100,12.86,30.56,4.13,4.1
-87711,35,019,35019,489,302,301872787,301803999,753,402,636673230,636604442,4687,2393,7851800146,7848912419,64.94,75.12,47.41,47.41,10.43,12.62,3.84,3.85
-87711,35,047,35047,264,100,334800443,334800443,753,402,636673230,636604442,29393,15595,12265298816,12213918594,35.06,24.88,52.59,52.59,0.9,0.64,2.73,2.74
-87712,35,033,35033,283,160,175602206,173597069,283,160,175602206,173597069,4881,3232,5008056439,5001977314,100,100,100,100,5.8,4.95,3.51,3.47
-87713,35,033,35033,283,230,182516218,182516218,283,230,182516218,182516218,4881,3232,5008056439,5001977314,100,100,100,100,5.8,7.12,3.64,3.65
-87714,35,007,35007,1151,604,1075471633,1073878027,1151,604,1075471633,1073878027,13750,10023,9759648063,9733329419,100,100,100,100,8.37,6.03,11.02,11.03
-87715,35,033,35033,532,318,111614324,111547347,532,318,111614324,111547347,4881,3232,5008056439,5001977314,100,100,100,100,10.9,9.84,2.23,2.23
-87718,35,007,35007,467,809,247769901,245569342,467,809,247769901,245569342,13750,10023,9759648063,9733329419,100,100,100,100,3.4,8.07,2.54,2.52
-87722,35,033,35033,376,407,226940325,226897157,376,407,226940325,226897157,4881,3232,5008056439,5001977314,100,100,100,100,7.7,12.59,4.53,4.54
-87723,35,033,35033,408,214,51473622,51473622,408,214,51473622,51473622,4881,3232,5008056439,5001977314,100,100,100,100,8.36,6.62,1.03,1.03
-87724,35,019,35019,88,38,14390073,14390073,88,38,14390073,14390073,4687,2393,7851800146,7848912419,100,100,100,100,1.88,1.59,0.18,0.18
-87728,35,007,35007,417,237,355826792,348682795,417,237,355826792,348682795,13750,10023,9759648063,9733329419,100,100,100,100,3.03,2.36,3.65,3.58
-87729,35,007,35007,126,77,250847266,249967458,126,77,250847266,249967458,13750,10023,9759648063,9733329419,100,100,100,100,0.92,0.77,2.57,2.57
-87730,35,021,35021,27,18,582642054,582373180,27,18,582642054,582373180,695,526,5506023461,5504869120,100,100,100,100,3.88,3.42,10.58,10.58
-87731,35,047,35047,223,200,226019085,225914742,223,200,226019085,225914742,29393,15595,12265298816,12213918594,100,100,100,100,0.76,1.28,1.84,1.85
-87732,35,033,35033,1672,1033,395529917,395420554,1672,1033,395529917,395420554,4881,3232,5008056439,5001977314,100,100,100,100,34.26,31.96,7.9,7.91
-87733,35,021,35021,158,132,1061092201,1060959678,158,132,1061092201,1060959678,695,526,5506023461,5504869120,100,100,100,100,22.73,25.1,19.27,19.27
-87734,35,007,35007,2,6,7342426,7342426,181,178,381783031,381748107,13750,10023,9759648063,9733329419,1.1,3.37,1.92,1.92,0.01,0.06,0.08,0.08
-87734,35,033,35033,179,172,374440605,374405681,181,178,381783031,381748107,4881,3232,5008056439,5001977314,98.9,96.63,98.08,98.08,3.67,5.32,7.48,7.49
-87735,35,033,35033,90,58,89530216,89408234,90,58,89530216,89408234,4881,3232,5008056439,5001977314,100,100,100,100,1.84,1.79,1.79,1.79
-87736,35,033,35033,233,135,66961823,66795724,233,135,66961823,66795724,4881,3232,5008056439,5001977314,100,100,100,100,4.77,4.18,1.34,1.34
-87740,35,007,35007,8068,4155,3127986071,3125751785,8068,4155,3127986071,3125751785,13750,10023,9759648063,9733329419,100,100,100,100,58.68,41.45,32.05,32.11
-87742,35,033,35033,102,51,231878169,231841799,609,477,340524637,340488267,4881,3232,5008056439,5001977314,16.75,10.69,68.09,68.09,2.09,1.58,4.63,4.64
-87742,35,047,35047,507,426,108646468,108646468,609,477,340524637,340488267,29393,15595,12265298816,12213918594,83.25,89.31,31.91,31.91,1.72,2.73,0.89,0.89
-87743,35,021,35021,361,276,1439312807,1439202730,361,276,1439312807,1439202730,695,526,5506023461,5504869120,100,100,100,100,51.94,52.47,26.14,26.14
-87745,35,033,35033,27,17,5365975,5365975,654,375,347635397,343383103,4881,3232,5008056439,5001977314,4.13,4.53,1.54,1.56,0.55,0.53,0.11,0.11
-87745,35,047,35047,627,358,342269422,338017128,654,375,347635397,343383103,29393,15595,12265298816,12213918594,95.87,95.47,98.46,98.44,2.13,2.3,2.79,2.77
-87746,35,021,35021,17,17,84329789,84329789,120,126,1193753935,1193734936,695,526,5506023461,5504869120,14.17,13.49,7.06,7.06,2.45,3.23,1.53,1.53
-87746,35,047,35047,103,109,1109424146,1109405147,120,126,1193753935,1193734936,29393,15595,12265298816,12213918594,85.83,86.51,92.94,92.94,0.35,0.7,9.05,9.08
-87747,35,007,35007,1624,811,1889151025,1884126510,1624,811,1889151025,1884126510,13750,10023,9759648063,9733329419,100,100,100,100,11.81,8.09,19.36,19.36
-87749,35,007,35007,75,204,129821769,129788662,75,204,129821769,129788662,13750,10023,9759648063,9733329419,100,100,100,100,0.55,2.04,1.33,1.33
-87750,35,033,35033,11,10,26385656,26385656,11,10,26385656,26385656,4881,3232,5008056439,5001977314,100,100,100,100,0.23,0.31,0.53,0.53
-87752,35,033,35033,431,301,2262766834,2260339082,431,301,2262766834,2260339082,4881,3232,5008056439,5001977314,100,100,100,100,8.83,9.31,45.18,45.19
-87753,35,033,35033,254,126,450113678,449046325,254,126,450113678,449046325,4881,3232,5008056439,5001977314,100,100,100,100,5.2,3.9,8.99,8.98
-87801,35,053,35053,10221,4615,369868021,369842168,10221,4615,369868021,369842168,17866,8059,17220177962,17214817782,100,100,100,100,57.21,57.27,2.15,2.15
-87820,35,003,35003,161,157,409061916,407782428,161,157,409061916,407782428,3725,3289,17946468192,17932273698,100,100,100,100,4.32,4.77,2.28,2.27
-87821,35,003,35003,672,657,4656750281,4654847288,672,657,4656750281,4654847288,3725,3289,17946468192,17932273698,100,100,100,100,18.04,19.98,25.95,25.96
-87823,35,053,35053,884,436,155790795,155667100,884,436,155790795,155667100,17866,8059,17220177962,17214817782,100,100,100,100,4.95,5.41,0.9,0.9
-87824,35,003,35003,194,185,359395884,359140750,194,185,359395884,359140750,3725,3289,17946468192,17932273698,100,100,100,100,5.21,5.62,2,2
-87825,35,003,35003,38,65,2216952691,2215861052,2999,1305,6899779322,6897450389,3725,3289,17946468192,17932273698,1.27,4.98,32.13,32.13,1.02,1.98,12.35,12.36
-87825,35,053,35053,2961,1240,4682826631,4681589337,2999,1305,6899779322,6897450389,17866,8059,17220177962,17214817782,98.73,95.02,67.87,67.87,16.57,15.39,27.19,27.2
-87827,35,003,35003,276,259,1539544357,1538776991,276,259,1539544357,1538776991,3725,3289,17946468192,17932273698,100,100,100,100,7.41,7.87,8.58,8.58
-87828,35,053,35053,429,187,5139414,5139414,429,187,5139414,5139414,17866,8059,17220177962,17214817782,100,100,100,100,2.4,2.32,0.03,0.03
-87829,35,003,35003,904,877,4213044503,4206547874,922,902,4546037724,4539541095,3725,3289,17946468192,17932273698,98.05,97.23,92.68,92.66,24.27,26.66,23.48,23.46
-87829,35,006,35006,18,25,332993221,332993221,922,902,4546037724,4539541095,27213,11101,11763028945,11757199036,1.95,2.77,7.32,7.34,0.07,0.23,2.83,2.83
-87830,35,003,35003,999,667,2143228516,2142249391,999,667,2143228516,2142249391,3725,3289,17946468192,17932273698,100,100,100,100,26.82,20.28,11.94,11.95
-87831,35,053,35053,195,95,34335937,34335937,195,95,34335937,34335937,17866,8059,17220177962,17214817782,100,100,100,100,1.09,1.18,0.2,0.2
-87832,35,053,35053,600,331,3259560679,3257901781,600,331,3259560679,3257901781,17866,8059,17220177962,17214817782,100,100,100,100,3.36,4.11,18.93,18.92
-87901,35,051,35051,7139,4680,2214809300,2089530794,7139,4680,2214809300,2089530794,11988,8356,10971771063,10823447042,100,100,100,100,59.55,56.01,20.19,19.31
-87930,35,051,35051,829,370,379470759,378522425,829,370,379470759,378522425,11988,8356,10971771063,10823447042,100,100,100,100,6.92,4.43,3.46,3.5
-87931,35,051,35051,634,441,302609317,285570797,634,441,302609317,285570797,11988,8356,10971771063,10823447042,100,100,100,100,5.29,5.28,2.76,2.64
-87933,35,051,35051,106,33,3191605,3191605,106,33,3191605,3191605,11988,8356,10971771063,10823447042,100,100,100,100,0.88,0.39,0.03,0.03
-87935,35,051,35051,1770,1758,93962112,93901978,1770,1758,93962112,93901978,11988,8356,10971771063,10823447042,100,100,100,100,14.76,21.04,0.86,0.87
-87936,35,013,35013,456,181,28752890,28221734,515,202,31620175,31089019,209233,81492,9879198193,9861408558,88.54,89.6,90.93,90.78,0.22,0.22,0.29,0.29
-87936,35,051,35051,59,21,2867285,2867285,515,202,31620175,31089019,11988,8356,10971771063,10823447042,11.46,10.4,9.07,9.22,0.49,0.25,0.03,0.03
-87937,35,013,35013,3303,1126,465028885,463185109,3303,1126,465028885,463185109,209233,81492,9879198193,9861408558,100,100,100,100,1.58,1.38,4.71,4.7
-87939,35,051,35051,125,80,335889461,335889461,125,80,335889461,335889461,11988,8356,10971771063,10823447042,100,100,100,100,1.04,0.96,3.06,3.1
-87940,35,013,35013,669,254,168079647,166576270,669,254,168079647,166576270,209233,81492,9879198193,9861408558,100,100,100,100,0.32,0.31,1.7,1.69
-87941,35,013,35013,1216,368,20607189,20450720,1216,368,20607189,20450720,209233,81492,9879198193,9861408558,100,100,100,100,0.58,0.45,0.21,0.21
-87942,35,051,35051,898,537,383470638,383002909,898,537,383470638,383002909,11988,8356,10971771063,10823447042,100,100,100,100,7.49,6.43,3.5,3.54
-87943,35,003,35003,16,11,317789067,317666460,228,233,2859529850,2859407243,3725,3289,17946468192,17932273698,7.02,4.72,11.11,11.11,0.43,0.33,1.77,1.77
-87943,35,051,35051,176,193,1665939061,1665939061,228,233,2859529850,2859407243,11988,8356,10971771063,10823447042,77.19,82.83,58.26,58.26,1.47,2.31,15.18,15.39
-87943,35,053,35053,36,29,875801722,875801722,228,233,2859529850,2859407243,17866,8059,17220177962,17214817782,15.79,12.45,30.63,30.63,0.2,0.36,5.09,5.09
-88001,35,013,35013,37484,16135,29428951,29428951,37484,16135,29428951,29428951,209233,81492,9879198193,9861408558,100,100,100,100,17.91,19.8,0.3,0.3
-88002,35,013,35013,1656,565,465331474,465327123,1656,565,465331474,465327123,209233,81492,9879198193,9861408558,100,100,100,100,0.79,0.69,4.71,4.72
-88003,35,013,35013,894,4,857053,857053,894,4,857053,857053,209233,81492,9879198193,9861408558,100,100,100,100,0.43,0,0.01,0.01
-88004,35,013,35013,699,0,100654252,100654252,699,0,100654252,100654252,209233,81492,9879198193,9861408558,100,0,100,100,0.33,0,1.02,1.02
-88005,35,013,35013,27116,11467,127810205,127311050,27116,11467,127810205,127311050,209233,81492,9879198193,9861408558,100,100,100,100,12.96,14.07,1.29,1.29
-88007,35,013,35013,24048,9538,964727027,962782093,24048,9538,964727027,962782093,209233,81492,9879198193,9861408558,100,100,100,100,11.49,11.7,9.77,9.76
-88008,35,013,35013,5747,2097,127318541,127318541,5747,2097,127318541,127318541,209233,81492,9879198193,9861408558,100,100,100,100,2.75,2.57,1.29,1.29
-88009,35,023,35023,88,35,647110155,644390851,88,35,647110155,644390851,4894,2393,8925081718,8901429611,100,100,100,100,1.8,1.46,7.25,7.24
-88011,35,013,35013,27698,13263,379384120,379184810,27698,13263,379384120,379184810,209233,81492,9879198193,9861408558,100,100,100,100,13.24,16.28,3.84,3.85
-88012,35,013,35013,25961,9533,943435217,943435217,25961,9533,943435217,943435217,209233,81492,9879198193,9861408558,100,100,100,100,12.41,11.7,9.55,9.57
-88020,35,023,35023,882,490,3029722703,3019596359,882,490,3029722703,3019596359,4894,2393,8925081718,8901429611,100,100,100,100,18.02,20.48,33.95,33.92
-88021,35,013,35013,18421,5896,2067650022,2066905837,18421,5896,2067650022,2066905837,209233,81492,9879198193,9861408558,100,100,100,100,8.8,7.24,20.93,20.96
-88022,35,017,35017,1343,588,30359434,30348270,1343,588,30359434,30348270,29514,14693,10275911107,10260561575,100,100,100,100,4.55,4,0.3,0.3
-88023,35,017,35017,2406,1119,18360516,18182846,2406,1119,18360516,18182846,29514,14693,10275911107,10260561575,100,100,100,100,8.15,7.62,0.18,0.18
-88024,35,013,35013,236,69,1921838,1921838,236,69,1921838,1921838,209233,81492,9879198193,9861408558,100,100,100,100,0.11,0.08,0.02,0.02
-88025,35,017,35017,256,148,552896043,552795552,256,148,552896043,552795552,29514,14693,10275911107,10260561575,100,100,100,100,0.87,1.01,5.38,5.39
-88026,35,017,35017,1658,769,13256416,13185320,1658,769,13256416,13185320,29514,14693,10275911107,10260561575,100,100,100,100,5.62,5.23,0.13,0.13
-88027,35,013,35013,493,179,192094569,192094569,493,179,192094569,192094569,209233,81492,9879198193,9861408558,100,100,100,100,0.24,0.22,1.94,1.95
-88028,35,017,35017,492,265,338778788,338778788,492,265,338778788,338778788,29514,14693,10275911107,10260561575,100,100,100,100,1.67,1.8,3.3,3.3
-88029,35,029,35029,1873,865,464818490,464804276,1873,865,464818490,464804276,25095,10999,7680234458,7679802477,100,100,100,100,7.46,7.86,6.05,6.05
-88030,35,029,35029,23222,10134,6671416334,6670998567,23222,10134,6671416334,6670998567,25095,10999,7680234458,7679802477,100,100,100,100,92.54,92.14,86.86,86.86
-88032,35,013,35013,195,67,443317,443317,195,67,443317,443317,209233,81492,9879198193,9861408558,100,100,100,100,0.09,0.08,0,0
-88033,35,013,35013,11,9,214413151,214413151,11,9,214413151,214413151,209233,81492,9879198193,9861408558,100,100,100,100,0.01,0.01,2.17,2.17
-88034,35,017,35017,96,53,239102268,238865996,96,53,239102268,238865996,29514,14693,10275911107,10260561575,100,100,100,100,0.33,0.36,2.33,2.33
-88038,35,017,35017,431,257,1000619577,995922517,431,257,1000619577,995922517,29514,14693,10275911107,10260561575,100,100,100,100,1.46,1.75,9.74,9.71
-88039,35,003,35003,465,411,2090700977,2089401464,465,411,2090700977,2089401464,3725,3289,17946468192,17932273698,100,100,100,100,12.48,12.5,11.65,11.65
-88040,35,017,35017,74,85,491540548,491185278,116,110,2912397617,2902091868,29514,14693,10275911107,10260561575,63.79,77.27,16.88,16.93,0.25,0.58,4.78,4.79
-88040,35,023,35023,42,25,2420857069,2410906590,116,110,2912397617,2902091868,4894,2393,8925081718,8901429611,36.21,22.73,83.12,83.07,0.86,1.04,27.12,27.08
-88041,35,017,35017,1243,809,1160587099,1158898058,1243,809,1160587099,1158898058,29514,14693,10275911107,10260561575,100,100,100,100,4.21,5.51,11.29,11.29
-88042,35,051,35051,250,240,1404188414,1403956895,250,240,1404188414,1403956895,11988,8356,10971771063,10823447042,100,100,100,100,2.09,2.87,12.8,12.97
-88043,35,017,35017,1621,809,167369858,165461698,1621,809,167369858,165461698,29514,14693,10275911107,10260561575,100,100,100,100,5.49,5.51,1.63,1.61
-88044,35,013,35013,3896,1507,307117407,306154932,3896,1507,307117407,306154932,209233,81492,9879198193,9861408558,100,100,100,100,1.86,1.85,3.11,3.1
-88045,35,017,35017,13,10,407932235,407883223,3662,1695,2898409830,2897504838,29514,14693,10275911107,10260561575,0.35,0.59,14.07,14.08,0.04,0.07,3.97,3.98
-88045,35,023,35023,3649,1685,2490477595,2489621615,3662,1695,2898409830,2897504838,4894,2393,8925081718,8901429611,99.65,99.41,85.93,85.92,74.56,70.41,27.9,27.97
-88046,35,013,35013,697,371,6184492,6184492,697,371,6184492,6184492,209233,81492,9879198193,9861408558,100,100,100,100,0.33,0.46,0.06,0.06
-88047,35,013,35013,1967,764,18886372,18886372,1967,764,18886372,18886372,209233,81492,9879198193,9861408558,100,100,100,100,0.94,0.94,0.19,0.19
-88048,35,013,35013,3862,1206,50857202,50688632,3862,1206,50857202,50688632,209233,81492,9879198193,9861408558,100,100,100,100,1.85,1.48,0.51,0.51
-88049,35,017,35017,408,256,484222508,483955381,408,256,484222508,483955381,29514,14693,10275911107,10260561575,100,100,100,100,1.38,1.74,4.71,4.72
-88051,35,017,35017,94,77,836985182,836972546,94,77,836985182,836972546,29514,14693,10275911107,10260561575,100,100,100,100,0.32,0.52,8.15,8.16
-88052,35,013,35013,270,169,2638788,2638788,270,169,2638788,2638788,209233,81492,9879198193,9861408558,100,100,100,100,0.13,0.21,0.03,0.03
-88053,35,017,35017,133,95,28004395,28004395,133,95,28004395,28004395,29514,14693,10275911107,10260561575,100,100,100,100,0.45,0.65,0.27,0.27
-88055,35,017,35017,37,41,795087851,795016312,37,41,795087851,795016312,29514,14693,10275911107,10260561575,100,100,100,100,0.13,0.28,7.74,7.75
-88056,35,023,35023,233,158,336914196,336914196,233,158,336914196,336914196,4894,2393,8925081718,8901429611,100,100,100,100,4.76,6.6,3.77,3.78
-88061,35,017,35017,18585,9006,3707135130,3701432136,18585,9006,3707135130,3701432136,29514,14693,10275911107,10260561575,100,100,100,100,62.97,61.29,36.08,36.07
-88063,35,013,35013,12772,3561,30738144,30005151,12799,3567,30802722,30049707,209233,81492,9879198193,9861408558,99.79,99.83,99.79,99.85,6.1,4.37,0.31,0.3
-88063,48,141,48141,27,6,64578,44556,12799,3567,30802722,30049707,800647,270307,2628734114,2622862905,0.21,0.17,0.21,0.15,0,0,0,0
-88065,35,017,35017,624,306,3673259,3673259,624,306,3673259,3673259,29514,14693,10275911107,10260561575,100,100,100,100,2.11,2.08,0.04,0.04
-88072,35,013,35013,2501,735,63303431,63183026,2501,735,63303431,63183026,209233,81492,9879198193,9861408558,100,100,100,100,1.2,0.9,0.64,0.64
-88081,35,013,35013,6965,2428,100338586,100338586,15708,4654,1026353052,1026335458,209233,81492,9879198193,9861408558,44.34,52.17,9.78,9.78,3.33,2.98,1.02,1.02
-88081,35,035,35035,8743,2226,926014466,925996872,15708,4654,1026353052,1026335458,63797,30992,17165151239,17128132348,55.66,47.83,90.22,90.22,13.7,7.18,5.39,5.41
-88101,35,009,35009,45006,18662,1382564522,1378042728,45006,18662,1382564522,1378042728,48376,20062,3646581486,3638407189,100,100,100,100,93.03,93.02,37.91,37.87
-88103,35,009,35009,278,0,11357632,11184807,278,0,11357632,11184807,48376,20062,3646581486,3638407189,100,0,100,100,0.57,0,0.31,0.31
-88112,35,009,35009,123,80,436778622,436320293,123,80,436778622,436320293,48376,20062,3646581486,3638407189,100,100,100,100,0.25,0.4,11.98,11.99
-88113,35,041,35041,103,56,199419172,199352250,103,56,199419172,199352250,19846,8163,6357520636,6338816708,100,100,100,100,0.52,0.69,3.14,3.14
-88114,35,025,35025,35,27,452412851,452324327,35,27,452412851,452324327,64727,24919,11380929145,11372460346,100,100,100,100,0.05,0.11,3.98,3.98
-88115,35,041,35041,44,25,4201306,4175306,44,25,4201306,4175306,19846,8163,6357520636,6338816708,100,100,100,100,0.22,0.31,0.07,0.07
-88116,35,005,35005,26,21,1772030544,1770268466,455,253,3662143490,3657852209,65645,26697,15734496396,15708988921,5.71,8.3,48.39,48.4,0.04,0.08,11.26,11.27
-88116,35,041,35041,429,232,1890112946,1887583743,455,253,3662143490,3657852209,19846,8163,6357520636,6338816708,94.29,91.7,51.61,51.6,2.16,2.84,29.73,29.78
-88118,35,041,35041,180,96,465454005,464856616,180,96,465454005,464856616,19846,8163,6357520636,6338816708,100,100,100,100,0.91,1.18,7.32,7.33
-88119,35,011,35011,1932,1284,4495987362,4467531196,1932,1284,4495987362,4467531196,2022,1344,6044726346,6015566556,100,100,100,100,95.55,95.54,74.38,74.27
-88120,35,009,35009,192,97,285774734,285502943,239,129,792901680,792629889,48376,20062,3646581486,3638407189,80.33,75.19,36.04,36.02,0.4,0.48,7.84,7.85
-88120,35,037,35037,47,32,507126946,507126946,239,129,792901680,792629889,9041,5569,7463264614,7444529760,19.67,24.81,63.96,63.98,0.52,0.57,6.79,6.81
-88121,35,037,35037,152,98,642330300,642330300,152,98,642330300,642330300,9041,5569,7463264614,7444529760,100,100,100,100,1.68,1.76,8.61,8.63
-88124,35,009,35009,1031,560,1110737900,1109409588,1165,637,2194463452,2192908036,48376,20062,3646581486,3638407189,88.5,87.91,50.62,50.59,2.13,2.79,30.46,30.49
-88124,35,037,35037,72,46,440105106,440105106,1165,637,2194463452,2192908036,9041,5569,7463264614,7444529760,6.18,7.22,20.06,20.07,0.8,0.83,5.9,5.91
-88124,35,041,35041,62,31,643620446,643393342,1165,637,2194463452,2192908036,19846,8163,6357520636,6338816708,5.32,4.87,29.33,29.34,0.31,0.38,10.12,10.15
-88125,35,041,35041,90,46,836111509,835998158,90,46,836111509,835998158,19846,8163,6357520636,6338816708,100,100,100,100,0.45,0.56,13.15,13.19
-88126,35,041,35041,30,16,132012804,131771181,30,16,132012804,131771181,19846,8163,6357520636,6338816708,100,100,100,100,0.15,0.2,2.08,2.08
-88130,35,041,35041,18651,7543,1632842669,1619022150,18651,7543,1632842669,1619022150,19846,8163,6357520636,6338816708,100,100,100,100,93.98,92.4,25.68,25.54
-88132,35,041,35041,199,105,532512137,531456585,199,105,532512137,531456585,19846,8163,6357520636,6338816708,100,100,100,100,1,1.29,8.38,8.38
-88134,35,011,35011,46,25,683170027,682965835,46,25,683170027,682965835,2022,1344,6044726346,6015566556,100,100,100,100,2.27,1.86,11.3,11.35
-88135,35,009,35009,1746,663,419368076,417946830,1804,676,440601718,439154207,48376,20062,3646581486,3638407189,96.78,98.08,95.18,95.17,3.61,3.3,11.5,11.49
-88135,35,041,35041,58,13,21233642,21207377,1804,676,440601718,439154207,19846,8163,6357520636,6338816708,3.22,1.92,4.82,4.83,0.29,0.16,0.33,0.33
-88136,35,011,35011,44,35,865568957,865069525,44,35,865568957,865069525,2022,1344,6044726346,6015566556,100,100,100,100,2.18,2.6,14.32,14.38
-88201,35,005,35005,25490,11195,5941776710,5928333069,25490,11195,5941776710,5928333069,65645,26697,15734496396,15708988921,100,100,100,100,38.83,41.93,37.76,37.74
-88203,35,005,35005,31561,12305,3829449635,3826665362,31561,12305,3829449635,3826665362,65645,26697,15734496396,15708988921,100,100,100,100,48.08,46.09,24.34,24.36
-88210,35,015,35015,17217,6934,3334422023,3307222397,17217,6934,3334422023,3307222397,53829,22585,10871531753,10815079253,100,100,100,100,31.98,30.7,30.67,30.58
-88220,35,015,35015,33721,14459,5063092454,5053809964,33725,14464,5315193774,5305911284,53829,22585,10871531753,10815079253,99.99,99.97,95.26,95.25,62.64,64.02,46.57,46.73
-88220,48,109,48109,4,5,252101320,252101320,33725,14464,5315193774,5305911284,2398,1137,9875656241,9875100057,0.01,0.03,4.74,4.75,0.17,0.44,2.55,2.55
-88230,35,005,35005,5179,1934,640284033,637557089,5179,1934,640284033,637557089,65645,26697,15734496396,15708988921,100,100,100,100,7.89,7.24,4.07,4.06
-88231,35,025,35025,3238,1412,950839541,950803120,3238,1412,950839541,950803120,64727,24919,11380929145,11372460346,100,100,100,100,5,5.67,8.35,8.36
-88232,35,005,35005,2525,847,487596689,484957171,2525,847,487596689,484957171,65645,26697,15734496396,15708988921,100,100,100,100,3.85,3.17,3.1,3.09
-88240,35,025,35025,37149,14041,1619841458,1618596696,37149,14041,1619841458,1618596696,64727,24919,11380929145,11372460346,100,100,100,100,57.39,56.35,14.23,14.23
-88242,35,025,35025,6141,2335,143467182,143281405,6141,2335,143467182,143281405,64727,24919,11380929145,11372460346,100,100,100,100,9.49,9.37,1.26,1.26
-88250,35,005,35005,49,42,1160194579,1159859107,270,161,1784264228,1781921777,65645,26697,15734496396,15708988921,18.15,26.09,65.02,65.09,0.07,0.16,7.37,7.38
-88250,35,015,35015,221,119,624069649,622062670,270,161,1784264228,1781921777,53829,22585,10871531753,10815079253,81.85,73.91,34.98,34.91,0.41,0.53,5.74,5.75
-88252,35,025,35025,2160,1082,2291055951,2290984006,2160,1082,2291055951,2290984006,64727,24919,11380929145,11372460346,100,100,100,100,3.34,4.34,20.13,20.15
-88253,35,005,35005,691,290,356050977,355042547,935,389,492566784,490970591,65645,26697,15734496396,15708988921,73.9,74.55,72.28,72.31,1.05,1.09,2.26,2.26
-88253,35,015,35015,244,99,136515807,135928044,935,389,492566784,490970591,53829,22585,10871531753,10815079253,26.1,25.45,27.72,27.69,0.45,0.44,1.26,1.26
-88254,35,015,35015,191,98,147115248,146714497,191,98,147115248,146714497,53829,22585,10871531753,10815079253,100,100,100,100,0.35,0.43,1.35,1.36
-88255,35,015,35015,128,57,17250596,17250596,128,57,17250596,17250596,53829,22585,10871531753,10815079253,100,100,100,100,0.24,0.25,0.16,0.16
-88256,35,015,35015,1925,740,1280295317,1264836762,1925,740,1280295317,1264836762,53829,22585,10871531753,10815079253,100,100,100,100,3.58,3.28,11.78,11.7
-88260,35,025,35025,14343,5244,1961163854,1957769322,14343,5244,1961163854,1957769322,64727,24919,11380929145,11372460346,100,100,100,100,22.16,21.04,17.23,17.22
-88262,35,025,35025,30,23,175286634,175222346,30,23,175286634,175222346,64727,24919,11380929145,11372460346,100,100,100,100,0.05,0.09,1.54,1.54
-88263,35,015,35015,175,72,268352393,266836057,175,72,268352393,266836057,53829,22585,10871531753,10815079253,100,100,100,100,0.33,0.32,2.47,2.47
-88264,35,025,35025,39,28,305117664,304851020,39,28,305117664,304851020,64727,24919,11380929145,11372460346,100,100,100,100,0.06,0.11,2.68,2.68
-88265,35,025,35025,243,115,199804852,199804852,243,115,199804852,199804852,64727,24919,11380929145,11372460346,100,100,100,100,0.38,0.46,1.76,1.76
-88267,35,025,35025,1349,612,2487692668,2484611516,1349,612,2487692668,2484611516,64727,24919,11380929145,11372460346,100,100,100,100,2.08,2.46,21.86,21.85
-88268,35,015,35015,7,7,418266,418266,7,7,418266,418266,53829,22585,10871531753,10815079253,100,100,100,100,0.01,0.03,0,0
-88301,35,027,35027,1347,818,2009802607,2009747654,1386,859,2277475966,2277421013,20497,17519,12513032023,12512467751,97.19,95.23,88.25,88.25,6.57,4.67,16.06,16.06
-88301,35,057,35057,39,41,267673359,267673359,1386,859,2277475966,2277421013,16383,7798,8665409748,8663108604,2.81,4.77,11.75,11.75,0.24,0.53,3.09,3.09
-88310,35,035,35035,35776,16669,1107650437,1106376644,35776,16669,1107650437,1106376644,63797,30992,17165151239,17128132348,100,100,100,100,56.08,53.78,6.45,6.46
-88311,35,035,35035,854,482,6344741,6343484,854,482,6344741,6343484,63797,30992,17165151239,17128132348,100,100,100,100,1.34,1.56,0.04,0.04
-88312,35,027,35027,2586,2834,250299613,250265899,2586,2834,250299613,250265899,20497,17519,12513032023,12512467751,100,100,100,100,12.62,16.18,2,2
-88314,35,035,35035,210,131,121932753,121903957,210,131,121932753,121903957,63797,30992,17165151239,17128132348,100,100,100,100,0.33,0.42,0.71,0.71
-88316,35,027,35027,2351,1358,2769640189,2769526094,2351,1358,2769640189,2769526094,20497,17519,12513032023,12512467751,100,100,100,100,11.47,7.75,22.13,22.13
-88317,35,035,35035,1751,3217,611381279,611211914,1751,3217,611381279,611211914,63797,30992,17165151239,17128132348,100,100,100,100,2.74,10.38,3.56,3.57
-88318,35,027,35027,323,221,2630892406,2630888603,381,274,3365230877,3365227074,20497,17519,12513032023,12512467751,84.78,80.66,78.18,78.18,1.58,1.26,21.03,21.03
-88318,35,057,35057,58,53,734338471,734338471,381,274,3365230877,3365227074,16383,7798,8665409748,8663108604,15.22,19.34,21.82,21.82,0.35,0.68,8.47,8.48
-88321,35,019,35019,27,31,245793634,245793634,187,140,2219052773,2218975816,4687,2393,7851800146,7848912419,14.44,22.14,11.08,11.08,0.58,1.3,3.13,3.13
-88321,35,057,35057,160,109,1973259139,1973182182,187,140,2219052773,2218975816,16383,7798,8665409748,8663108604,85.56,77.86,88.92,88.92,0.98,1.4,22.77,22.78
-88323,35,027,35027,14,10,301788,301788,14,10,301788,301788,20497,17519,12513032023,12512467751,100,100,100,100,0.07,0.06,0,0
-88324,35,027,35027,210,126,100430232,100430232,210,126,100430232,100430232,20497,17519,12513032023,12512467751,100,100,100,100,1.02,0.72,0.8,0.8
-88325,35,035,35035,899,649,263157368,263109003,899,649,263157368,263109003,63797,30992,17165151239,17128132348,100,100,100,100,1.41,2.09,1.53,1.54
-88330,35,035,35035,3054,1006,3572590,3572590,3054,1006,3572590,3572590,63797,30992,17165151239,17128132348,100,100,100,100,4.79,3.25,0.02,0.02
-88336,35,027,35027,267,169,322003668,321979312,267,169,322003668,321979312,20497,17519,12513032023,12512467751,100,100,100,100,1.3,0.96,2.57,2.57
-88337,35,035,35035,2295,1131,103849085,103755426,2295,1131,103849085,103755426,63797,30992,17165151239,17128132348,100,100,100,100,3.6,3.65,0.6,0.61
-88338,35,027,35027,189,118,261247499,261246885,189,118,261247499,261246885,20497,17519,12513032023,12512467751,100,100,100,100,0.92,0.67,2.09,2.09
-88339,35,005,35005,47,32,807547989,807064916,618,635,1164711410,1163897718,65645,26697,15734496396,15708988921,7.61,5.04,69.33,69.34,0.07,0.12,5.13,5.14
-88339,35,035,35035,571,603,357163421,356832802,618,635,1164711410,1163897718,63797,30992,17165151239,17128132348,92.39,94.96,30.67,30.66,0.9,1.95,2.08,2.08
-88340,35,035,35035,3616,1114,1861540707,1860070442,3616,1114,1861540707,1860070442,63797,30992,17165151239,17128132348,100,100,100,100,5.67,3.59,10.84,10.86
-88341,35,027,35027,538,360,257701658,257515433,538,360,257701658,257515433,20497,17519,12513032023,12512467751,100,100,100,100,2.62,2.05,2.06,2.06
-88342,35,035,35035,52,43,15114029,15112802,52,43,15114029,15112802,63797,30992,17165151239,17128132348,100,100,100,100,0.08,0.14,0.09,0.09
-88343,35,027,35027,48,33,681285459,681285459,48,33,681285459,681285459,20497,17519,12513032023,12512467751,100,100,100,100,0.23,0.19,5.44,5.44
-88344,35,005,35005,77,31,739565240,739241194,159,92,1723433157,1719807899,65645,26697,15734496396,15708988921,48.43,33.7,42.91,42.98,0.12,0.12,4.7,4.71
-88344,35,035,35035,82,61,983867917,980566705,159,92,1723433157,1719807899,63797,30992,17165151239,17128132348,51.57,66.3,57.09,57.02,0.13,0.2,5.73,5.72
-88345,35,027,35027,8845,9457,85555056,85539571,8845,9457,85555056,85539571,20497,17519,12513032023,12512467751,100,100,100,100,43.15,53.98,0.68,0.68
-88346,35,027,35027,3132,1600,155197966,155197966,3132,1600,155197966,155197966,20497,17519,12513032023,12512467751,100,100,100,100,15.28,9.13,1.24,1.24
-88347,35,035,35035,100,187,99540730,99450544,100,187,99540730,99450544,63797,30992,17165151239,17128132348,100,100,100,100,0.16,0.6,0.58,0.58
-88348,35,027,35027,314,170,26458096,26458096,314,170,26458096,26458096,20497,17519,12513032023,12512467751,100,100,100,100,1.53,0.97,0.21,0.21
-88349,35,035,35035,70,41,78515816,78508261,70,41,78515816,78508261,63797,30992,17165151239,17128132348,100,100,100,100,0.11,0.13,0.46,0.46
-88350,35,035,35035,368,708,368030724,367898146,368,708,368030724,367898146,63797,30992,17165151239,17128132348,100,100,100,100,0.58,2.28,2.14,2.15
-88351,35,027,35027,256,180,1714594170,1714594170,256,180,1714594170,1714594170,20497,17519,12513032023,12512467751,100,100,100,100,1.25,1.03,13.7,13.7
-88352,35,035,35035,5188,2560,1277973001,1276361689,5188,2560,1277973001,1276361689,63797,30992,17165151239,17128132348,100,100,100,100,8.13,8.26,7.45,7.45
-88353,35,019,35019,473,344,1798770115,1798770115,473,344,1798770115,1798770115,4687,2393,7851800146,7848912419,100,100,100,100,10.09,14.38,22.91,22.92
-88354,35,035,35035,108,109,316427922,316268886,108,109,316427922,316268886,63797,30992,17165151239,17128132348,100,100,100,100,0.17,0.35,1.84,1.85
-88355,35,027,35027,29,28,45391,45391,29,28,45391,45391,20497,17519,12513032023,12512467751,100,100,100,100,0.14,0.16,0,0
-88401,35,037,35037,6927,3855,2249785707,2242110723,6944,3864,2789324658,2781595904,9041,5569,7463264614,7444529760,99.76,99.77,80.66,80.61,76.62,69.22,30.14,30.12
-88401,35,047,35047,17,9,539538951,539485181,6944,3864,2789324658,2781595904,29393,15595,12265298816,12213918594,0.24,0.23,19.34,19.39,0.06,0.06,4.4,4.42
-88410,35,021,35021,14,11,489541001,489482353,129,83,1412859269,1411371301,695,526,5506023461,5504869120,10.85,13.25,34.65,34.68,2.01,2.09,8.89,8.89
-88410,35,059,35059,115,72,923318268,921888948,129,83,1412859269,1411371301,4549,2305,9921918253,9903449966,89.15,86.75,65.35,65.32,2.53,3.12,9.31,9.31
-88411,35,037,35037,82,61,710361848,710288573,82,61,710361848,710288573,9041,5569,7463264614,7444529760,100,100,100,100,0.91,1.1,9.52,9.54
-88414,35,059,35059,39,26,11670400,11669040,39,26,11670400,11669040,4549,2305,9921918253,9903449966,100,100,100,100,0.86,1.13,0.12,0.12
-88415,35,021,35021,26,17,502978257,502831823,3569,1666,3126432777,3116489743,695,526,5506023461,5504869120,0.73,1.02,16.09,16.13,3.74,3.23,9.14,9.13
-88415,35,059,35059,3543,1649,2623454520,2613657920,3569,1666,3126432777,3116489743,4549,2305,9921918253,9903449966,99.27,98.98,83.91,83.87,77.89,71.54,26.44,26.39
-88416,35,047,35047,189,618,193382218,183603503,189,618,193382218,183603503,29393,15595,12265298816,12213918594,100,100,100,100,0.64,3.96,1.58,1.5
-88417,35,019,35019,25,21,333506226,333455163,25,21,333506226,333455163,4687,2393,7851800146,7848912419,100,100,100,100,0.53,0.88,4.25,4.25
-88418,35,059,35059,294,199,1316985301,1315528547,294,199,1316985301,1315528547,4549,2305,9921918253,9903449966,100,100,100,100,6.46,8.63,13.27,13.28
-88419,35,007,35007,20,25,273736767,272416692,229,170,2385350343,2381853799,13750,10023,9759648063,9733329419,8.73,14.71,11.48,11.44,0.15,0.25,2.8,2.8
-88419,35,059,35059,209,145,2111613576,2109437107,229,170,2385350343,2381853799,4549,2305,9921918253,9903449966,91.27,85.29,88.52,88.56,4.59,6.29,21.28,21.3
-88421,35,047,35047,19,42,485498549,485498549,19,42,485498549,485498549,29393,15595,12265298816,12213918594,100,100,100,100,0.06,0.27,3.96,3.97
-88422,35,007,35007,32,32,251888509,251627665,68,58,625662056,624971629,13750,10023,9759648063,9733329419,47.06,55.17,40.26,40.26,0.23,0.32,2.58,2.59
-88422,35,059,35059,36,26,373773547,373343964,68,58,625662056,624971629,4549,2305,9921918253,9903449966,52.94,44.83,59.74,59.74,0.79,1.13,3.77,3.77
-88424,35,059,35059,128,94,2218403227,2216082762,128,94,2218403227,2216082762,4549,2305,9921918253,9903449966,100,100,100,100,2.81,4.08,22.36,22.38
-88426,35,021,35021,92,55,1346127352,1345689567,1212,1153,1835219857,1823962319,695,526,5506023461,5504869120,7.59,4.77,73.35,73.78,13.24,10.46,24.45,24.45
-88426,35,037,35037,1120,1098,489092505,478272752,1212,1153,1835219857,1823962319,9041,5569,7463264614,7444529760,92.41,95.23,26.65,26.22,12.39,19.72,6.55,6.42
-88427,35,037,35037,119,72,532996610,532996610,119,72,532996610,532996610,9041,5569,7463264614,7444529760,100,100,100,100,1.32,1.29,7.14,7.16
-88430,35,037,35037,153,108,921532340,921532127,162,113,951555126,951554913,9041,5569,7463264614,7444529760,94.44,95.58,96.84,96.84,1.69,1.94,12.35,12.38
-88430,48,359,48359,9,5,30022786,30022786,162,113,951555126,951554913,2052,841,3888701328,3886363298,5.56,4.42,3.16,3.16,0.44,0.59,0.77,0.77
-88431,35,019,35019,26,24,424598805,424589996,49,45,543136202,543127393,4687,2393,7851800146,7848912419,53.06,53.33,78.18,78.18,0.55,1,5.41,5.41
-88431,35,047,35047,23,21,118537397,118537397,49,45,543136202,543127393,29393,15595,12265298816,12213918594,46.94,46.67,21.82,21.82,0.08,0.13,0.97,0.97
-88434,35,037,35037,369,199,969933252,969766623,369,199,969933252,969766623,9041,5569,7463264614,7444529760,100,100,100,100,4.08,3.57,13,13.03
-88435,35,019,35019,3559,1633,4732868506,4730109439,3559,1633,4732868506,4730109439,4687,2393,7851800146,7848912419,100,100,100,100,75.93,68.24,60.28,60.26
-88436,35,059,35059,185,94,342699414,341841678,185,94,342699414,341841678,4549,2305,9921918253,9903449966,100,100,100,100,4.07,4.08,3.45,3.45
-89001,32,017,32017,1222,554,5306021773,5301020047,1224,559,5373094566,5368092840,5345,2730,27549669172,27539866410,99.84,99.11,98.75,98.75,22.86,20.29,19.26,19.25
-89001,32,023,32023,2,5,67072793,67072793,1224,559,5373094566,5368092840,43946,22350,47134175230,47090965923,0.16,0.89,1.25,1.25,0,0.02,0.14,0.14
-89002,32,003,32003,31880,11705,22608039,22608039,31880,11705,22608039,22608039,1951269,840343,20877405942,20438710673,100,100,100,100,1.63,1.39,0.11,0.11
-89003,32,023,32023,1032,714,809340420,809259803,1032,714,809340420,809259803,43946,22350,47134175230,47090965923,100,100,100,100,2.35,3.19,1.72,1.72
-89004,32,003,32003,313,165,113521639,113506227,313,165,113521639,113506227,1951269,840343,20877405942,20438710673,100,100,100,100,0.02,0.02,0.54,0.56
-89005,32,003,32003,15065,7592,359496025,317102339,15065,7592,359496025,317102339,1951269,840343,20877405942,20438710673,100,100,100,100,0.77,0.9,1.72,1.55
-89007,32,003,32003,1351,404,862028868,857519276,1351,404,862028868,857519276,1951269,840343,20877405942,20438710673,100,100,100,100,0.07,0.05,4.13,4.2
-89008,32,017,32017,1508,720,5630052384,5629118448,1508,720,5630052384,5629118448,5345,2730,27549669172,27539866410,100,100,100,100,28.21,26.37,20.44,20.44
-89010,06,051,06051,31,16,38227170,38185568,415,279,1049132308,1046943189,14202,13912,8111522878,7896827391,7.47,5.73,3.64,3.65,0.22,0.12,0.47,0.48
-89010,32,009,32009,368,257,952811253,950680139,415,279,1049132308,1046943189,783,850,9295569169,9277017113,88.67,92.11,90.82,90.81,47,30.24,10.25,10.25
-89010,32,021,32021,16,6,58093885,58077482,415,279,1049132308,1046943189,4772,2830,9875567593,9719820866,3.86,2.15,5.54,5.55,0.34,0.21,0.59,0.6
-89011,32,003,32003,19550,9592,44036803,44036803,19550,9592,44036803,44036803,1951269,840343,20877405942,20438710673,100,100,100,100,1,1.14,0.21,0.22
-89012,32,003,32003,29085,13511,28427646,28427646,29085,13511,28427646,28427646,1951269,840343,20877405942,20438710673,100,100,100,100,1.49,1.61,0.14,0.14
-89013,32,009,32009,285,390,2245052203,2244897069,285,390,2245052203,2244897069,783,850,9295569169,9277017113,100,100,100,100,36.4,45.88,24.15,24.2
-89014,32,003,32003,36922,16432,19631725,19631725,36922,16432,19631725,19631725,1951269,840343,20877405942,20438710673,100,100,100,100,1.89,1.96,0.09,0.1
-89015,32,003,32003,38993,15554,97106365,97106365,38993,15554,97106365,97106365,1951269,840343,20877405942,20438710673,100,100,100,100,2,1.85,0.47,0.48
-89017,32,017,32017,176,80,1101277368,1100423250,176,80,1101277368,1100423250,5345,2730,27549669172,27539866410,100,100,100,100,3.29,2.93,4,4
-89018,32,003,32003,1007,563,145446645,145446645,1007,563,145446645,145446645,1951269,840343,20877405942,20438710673,100,100,100,100,0.05,0.07,0.7,0.71
-89019,06,027,06027,0,0,4392496,4392496,2673,1623,1235849127,1235849127,18546,9478,26487562274,26368354217,0,0,0.36,0.36,0,0,0.02,0.02
-89019,06,071,06071,69,41,533610963,533610963,2673,1623,1235849127,1235849127,2035210,699637,52071257852,51947229509,2.58,2.53,43.18,43.18,0,0.01,1.02,1.03
-89019,32,003,32003,2604,1582,697845668,697845668,2673,1623,1235849127,1235849127,1951269,840343,20877405942,20438710673,97.42,97.47,56.47,56.47,0.13,0.19,3.34,3.41
-89020,32,023,32023,1456,711,894813400,894671578,1456,711,894813400,894671578,43946,22350,47134175230,47090965923,100,100,100,100,3.31,3.18,1.9,1.9
-89021,32,003,32003,3605,1214,105845460,105783967,3605,1214,105845460,105783967,1951269,840343,20877405942,20438710673,100,100,100,100,0.18,0.14,0.51,0.52
-89022,32,023,32023,69,138,447429758,447429758,69,138,447429758,447429758,43946,22350,47134175230,47090965923,100,100,100,100,0.16,0.62,0.95,0.95
-89025,32,003,32003,1400,510,1687122564,1687120143,1400,510,1687122564,1687120143,1951269,840343,20877405942,20438710673,100,100,100,100,0.07,0.06,8.08,8.25
-89026,32,003,32003,150,8,69212986,69212986,150,8,69212986,69212986,1951269,840343,20877405942,20438710673,100,100,100,100,0.01,0,0.33,0.34
-89027,32,003,32003,15275,8910,77376439,76382004,15275,8910,77376439,76382004,1951269,840343,20877405942,20438710673,100,100,100,100,0.78,1.06,0.37,0.37
-89029,32,003,32003,7546,5170,247752272,243611646,7546,5170,247752272,243611646,1951269,840343,20877405942,20438710673,100,100,100,100,0.39,0.62,1.19,1.19
-89030,32,003,32003,53928,15908,24235952,24235952,53928,15908,24235952,24235952,1951269,840343,20877405942,20438710673,100,100,100,100,2.76,1.89,0.12,0.12
-89031,32,003,32003,60589,21485,24632957,24632957,60589,21485,24632957,24632957,1951269,840343,20877405942,20438710673,100,100,100,100,3.11,2.56,0.12,0.12
-89032,32,003,32003,40297,14414,26560249,26560249,40297,14414,26560249,26560249,1951269,840343,20877405942,20438710673,100,100,100,100,2.07,1.72,0.13,0.13
-89039,32,003,32003,316,215,213584516,213584516,316,215,213584516,213584516,1951269,840343,20877405942,20438710673,100,100,100,100,0.02,0.03,1.02,1.04
-89040,32,003,32003,3721,1964,1602949281,1350296772,3721,1964,1602949281,1350296772,1951269,840343,20877405942,20438710673,100,100,100,100,0.19,0.23,7.68,6.61
-89042,32,017,32017,1010,448,368070850,368051133,1010,448,368070850,368051133,5345,2730,27549669172,27539866410,100,100,100,100,18.9,16.41,1.34,1.34
-89043,32,017,32017,1429,926,4502505922,4501440819,1429,926,4502505922,4501440819,5345,2730,27549669172,27539866410,100,100,100,100,26.74,33.92,16.34,16.35
-89044,32,003,32003,14260,7556,81260253,81260253,14260,7556,81260253,81260253,1951269,840343,20877405942,20438710673,100,100,100,100,0.73,0.9,0.39,0.4
-89045,32,023,32023,1505,776,3102691923,3095916089,1505,776,3102691923,3095916089,43946,22350,47134175230,47090965923,100,100,100,100,3.42,3.47,6.58,6.57
-89046,32,003,32003,660,573,2291800859,2236071565,660,573,2291800859,2236071565,1951269,840343,20877405942,20438710673,100,100,100,100,0.03,0.07,10.98,10.94
-89047,32,009,32009,107,133,14116706,14116706,107,133,14116706,14116706,783,850,9295569169,9277017113,100,100,100,100,13.67,15.65,0.15,0.15
-89048,32,023,32023,21169,10388,198795042,198442603,21169,10388,198795042,198442603,43946,22350,47134175230,47090965923,100,100,100,100,48.17,46.48,0.42,0.42
-89049,32,009,32009,22,66,25326092,25326092,2727,1769,4520787059,4519429256,783,850,9295569169,9277017113,0.81,3.73,0.56,0.56,2.81,7.76,0.27,0.27
-89049,32,023,32023,2705,1703,4495460967,4494103164,2727,1769,4520787059,4519429256,43946,22350,47134175230,47090965923,99.19,96.27,99.44,99.44,6.16,7.62,9.54,9.54
-89052,32,003,32003,47214,21996,134472674,134472674,47214,21996,134472674,134472674,1951269,840343,20877405942,20438710673,100,100,100,100,2.42,2.62,0.64,0.66
-89054,32,003,32003,105,59,12980268,12980268,105,59,12980268,12980268,1951269,840343,20877405942,20438710673,100,100,100,100,0.01,0.01,0.06,0.06
-89060,06,027,06027,30,13,21962261,21962261,10227,4988,1198088398,1198004405,18546,9478,26487562274,26368354217,0.29,0.26,1.83,1.83,0.16,0.14,0.08,0.08
-89060,32,023,32023,10197,4975,1176126137,1176042144,10227,4988,1198088398,1198004405,43946,22350,47134175230,47090965923,99.71,99.74,98.17,98.17,23.2,22.26,2.5,2.5
-89061,06,027,06027,51,23,1868432,1868432,5252,2567,188346815,188336183,18546,9478,26487562274,26368354217,0.97,0.9,0.99,0.99,0.27,0.24,0.01,0.01
-89061,32,023,32023,5201,2544,186478383,186467751,5252,2567,188346815,188336183,43946,22350,47134175230,47090965923,99.03,99.1,99.01,99.01,11.83,11.38,0.4,0.4
-89074,32,003,32003,47095,20274,23248043,23248043,47095,20274,23248043,23248043,1951269,840343,20877405942,20438710673,100,100,100,100,2.41,2.41,0.11,0.11
-89081,32,003,32003,29774,10880,19448281,19336280,29774,10880,19448281,19336280,1951269,840343,20877405942,20438710673,100,100,100,100,1.53,1.29,0.09,0.09
-89084,32,003,32003,21837,9359,28312067,28312067,21837,9359,28312067,28312067,1951269,840343,20877405942,20438710673,100,100,100,100,1.12,1.11,0.14,0.14
-89085,32,003,32003,3367,1222,1340545,1340545,3367,1222,1340545,1340545,1951269,840343,20877405942,20438710673,100,100,100,100,0.17,0.15,0.01,0.01
-89086,32,003,32003,4726,1798,17587708,17587708,4726,1798,17587708,17587708,1951269,840343,20877405942,20438710673,100,100,100,100,0.24,0.21,0.08,0.09
-89101,32,003,32003,46055,18340,13863521,13863521,46055,18340,13863521,13863521,1951269,840343,20877405942,20438710673,100,100,100,100,2.36,2.18,0.07,0.07
-89102,32,003,32003,35759,16357,13875196,13875196,35759,16357,13875196,13875196,1951269,840343,20877405942,20438710673,100,100,100,100,1.83,1.95,0.07,0.07
-89103,32,003,32003,50519,27455,17340746,17340746,50519,27455,17340746,17340746,1951269,840343,20877405942,20438710673,100,100,100,100,2.59,3.27,0.08,0.08
-89104,32,003,32003,39909,16431,14706763,14706763,39909,16431,14706763,14706763,1951269,840343,20877405942,20438710673,100,100,100,100,2.05,1.96,0.07,0.07
-89106,32,003,32003,25759,10222,13709882,13709882,25759,10222,13709882,13709882,1951269,840343,20877405942,20438710673,100,100,100,100,1.32,1.22,0.07,0.07
-89107,32,003,32003,36282,13646,14156809,14140123,36282,13646,14156809,14140123,1951269,840343,20877405942,20438710673,100,100,100,100,1.86,1.62,0.07,0.07
-89108,32,003,32003,70123,28171,23273170,23273170,70123,28171,23273170,23273170,1951269,840343,20877405942,20438710673,100,100,100,100,3.59,3.35,0.11,0.11
-89109,32,003,32003,7770,14574,11481186,11481186,7770,14574,11481186,11481186,1951269,840343,20877405942,20438710673,100,100,100,100,0.4,1.73,0.05,0.06
-89110,32,003,32003,70994,22502,28782115,28782115,70994,22502,28782115,28782115,1951269,840343,20877405942,20438710673,100,100,100,100,3.64,2.68,0.14,0.14
-89113,32,003,32003,23800,11593,28858530,28858530,23800,11593,28858530,28858530,1951269,840343,20877405942,20438710673,100,100,100,100,1.22,1.38,0.14,0.14
-89115,32,003,32003,58794,21384,64782038,64782038,58794,21384,64782038,64782038,1951269,840343,20877405942,20438710673,100,100,100,100,3.01,2.54,0.31,0.32
-89117,32,003,32003,55416,26704,23732337,23623828,55416,26704,23732337,23623828,1951269,840343,20877405942,20438710673,100,100,100,100,2.84,3.18,0.11,0.12
-89118,32,003,32003,19318,10020,27409080,27409080,19318,10020,27409080,27409080,1951269,840343,20877405942,20438710673,100,100,100,100,0.99,1.19,0.13,0.13
-89119,32,003,32003,49445,26082,33487365,33487365,49445,26082,33487365,33487365,1951269,840343,20877405942,20438710673,100,100,100,100,2.53,3.1,0.16,0.16
-89120,32,003,32003,23311,10062,18038716,18038716,23311,10062,18038716,18038716,1951269,840343,20877405942,20438710673,100,100,100,100,1.19,1.2,0.09,0.09
-89121,32,003,32003,64096,28968,23822443,23822443,64096,28968,23822443,23822443,1951269,840343,20877405942,20438710673,100,100,100,100,3.28,3.45,0.11,0.12
-89122,32,003,32003,45720,20088,23510250,23510250,45720,20088,23510250,23510250,1951269,840343,20877405942,20438710673,100,100,100,100,2.34,2.39,0.11,0.12
-89123,32,003,32003,56300,27243,27602272,27602272,56300,27243,27602272,27602272,1951269,840343,20877405942,20438710673,100,100,100,100,2.89,3.24,0.13,0.14
-89124,32,003,32003,925,947,3529016712,3527877243,941,958,3529116407,3527976938,1951269,840343,20877405942,20438710673,98.3,98.85,100,100,0.05,0.11,16.9,17.26
-89124,32,023,32023,16,11,99695,99695,941,958,3529116407,3527976938,43946,22350,47134175230,47090965923,1.7,1.15,0,0,0.04,0.05,0,0
-89128,32,003,32003,35669,16357,15535830,15535830,35669,16357,15535830,15535830,1951269,840343,20877405942,20438710673,100,100,100,100,1.83,1.95,0.07,0.08
-89129,32,003,32003,51252,21020,25915606,25915606,51252,21020,25915606,25915606,1951269,840343,20877405942,20438710673,100,100,100,100,2.63,2.5,0.12,0.13
-89130,32,003,32003,33015,13186,19801355,19801355,33015,13186,19801355,19801355,1951269,840343,20877405942,20438710673,100,100,100,100,1.69,1.57,0.09,0.1
-89131,32,003,32003,43072,16101,41524750,41515959,43072,16101,41524750,41515959,1951269,840343,20877405942,20438710673,100,100,100,100,2.21,1.92,0.2,0.2
-89134,32,003,32003,24040,12884,17167455,17167455,24040,12884,17167455,17167455,1951269,840343,20877405942,20438710673,100,100,100,100,1.23,1.53,0.08,0.08
-89135,32,003,32003,24144,11577,118079022,118079022,24144,11577,118079022,118079022,1951269,840343,20877405942,20438710673,100,100,100,100,1.24,1.38,0.57,0.58
-89138,32,003,32003,12118,4923,10895598,10895598,12118,4923,10895598,10895598,1951269,840343,20877405942,20438710673,100,100,100,100,0.62,0.59,0.05,0.05
-89139,32,003,32003,30477,12124,27418912,27418912,30477,12124,27418912,27418912,1951269,840343,20877405942,20438710673,100,100,100,100,1.56,1.44,0.13,0.13
-89141,32,003,32003,25150,9955,27684272,27684272,25150,9955,27684272,27684272,1951269,840343,20877405942,20438710673,100,100,100,100,1.29,1.18,0.13,0.14
-89142,32,003,32003,33731,11410,12338843,12338843,33731,11410,12338843,12338843,1951269,840343,20877405942,20438710673,100,100,100,100,1.73,1.36,0.06,0.06
-89143,32,003,32003,12786,4463,8864942,8864942,12786,4463,8864942,8864942,1951269,840343,20877405942,20438710673,100,100,100,100,0.66,0.53,0.04,0.04
-89144,32,003,32003,18714,8205,10166081,10166081,18714,8205,10166081,10166081,1951269,840343,20877405942,20438710673,100,100,100,100,0.96,0.98,0.05,0.05
-89145,32,003,32003,23186,10495,11942971,11942971,23186,10495,11942971,11942971,1951269,840343,20877405942,20438710673,100,100,100,100,1.19,1.25,0.06,0.06
-89146,32,003,32003,19071,8105,12411418,12411418,19071,8105,12411418,12411418,1951269,840343,20877405942,20438710673,100,100,100,100,0.98,0.96,0.06,0.06
-89147,32,003,32003,49778,21829,19227223,19227223,49778,21829,19227223,19227223,1951269,840343,20877405942,20438710673,100,100,100,100,2.55,2.6,0.09,0.09
-89148,32,003,32003,39712,16862,31901228,31901228,39712,16862,31901228,31901228,1951269,840343,20877405942,20438710673,100,100,100,100,2.04,2.01,0.15,0.16
-89149,32,003,32003,31143,13917,31087031,31087031,31143,13917,31087031,31087031,1951269,840343,20877405942,20438710673,100,100,100,100,1.6,1.66,0.15,0.15
-89156,32,003,32003,27794,10565,84041812,84041812,27794,10565,84041812,84041812,1951269,840343,20877405942,20438710673,100,100,100,100,1.42,1.26,0.4,0.41
-89161,32,003,32003,184,89,49591319,49591319,184,89,49591319,49591319,1951269,840343,20877405942,20438710673,100,100,100,100,0.01,0.01,0.24,0.24
-89166,32,003,32003,13209,4091,500294062,500294062,13209,4091,500294062,500294062,1951269,840343,20877405942,20438710673,100,100,100,100,0.68,0.49,2.4,2.45
-89169,32,003,32003,23304,13158,8811101,8811101,23304,13158,8811101,8811101,1951269,840343,20877405942,20438710673,100,100,100,100,1.19,1.57,0.04,0.04
-89178,32,003,32003,27588,11678,49497825,49497825,27588,11678,49497825,49497825,1951269,840343,20877405942,20438710673,100,100,100,100,1.41,1.39,0.24,0.24
-89179,32,003,32003,2340,881,308602532,308602532,2340,881,308602532,308602532,1951269,840343,20877405942,20438710673,100,100,100,100,0.12,0.1,1.48,1.51
-89183,32,003,32003,36005,15062,18154277,18154277,36005,15062,18154277,18154277,1951269,840343,20877405942,20438710673,100,100,100,100,1.85,1.79,0.09,0.09
-89191,32,003,32003,857,1,17427671,17427671,857,1,17427671,17427671,1951269,840343,20877405942,20438710673,100,100,100,100,0.04,0,0.08,0.09
-89301,32,033,32033,7606,3230,5069084853,5036363696,7606,3230,5069084853,5036363696,10030,4498,23042499474,22987820587,100,100,100,100,75.83,71.81,22,21.91
-89310,32,015,32015,419,371,6550466852,6492264088,550,426,7744930945,7686710750,5775,2575,14295409019,14219305794,76.18,87.09,84.58,84.46,7.26,14.41,45.82,45.66
-89310,32,023,32023,131,55,1194464093,1194446662,550,426,7744930945,7686710750,43946,22350,47134175230,47090965923,23.82,12.91,15.42,15.54,0.3,0.25,2.53,2.54
-89311,32,033,32033,235,154,550981682,550724109,235,154,550981682,550724109,10030,4498,23042499474,22987820587,100,100,100,100,2.34,3.42,2.39,2.4
-89314,32,023,32023,158,78,429081277,429023611,158,78,429081277,429023611,43946,22350,47134175230,47090965923,100,100,100,100,0.36,0.35,0.91,0.91
-89316,32,011,32011,1360,704,3212902147,3210075285,1408,750,3997986796,3994919074,1987,1076,10826053757,10814970882,96.59,93.87,80.36,80.35,68.44,65.43,29.68,29.68
-89316,32,023,32023,7,4,135956287,135956287,1408,750,3997986796,3994919074,43946,22350,47134175230,47090965923,0.5,0.53,3.4,3.4,0.02,0.02,0.29,0.29
-89316,32,033,32033,41,42,649128362,648887502,1408,750,3997986796,3994919074,10030,4498,23042499474,22987820587,2.91,5.6,16.24,16.24,0.41,0.93,2.82,2.82
-89317,32,023,32023,19,51,96754334,93455492,477,237,246248317,242935786,43946,22350,47134175230,47090965923,3.98,21.52,39.29,38.47,0.04,0.23,0.21,0.2
-89317,32,033,32033,458,186,149493983,149480294,477,237,246248317,242935786,10030,4498,23042499474,22987820587,96.02,78.48,60.71,61.53,4.57,4.14,0.65,0.65
-89318,32,033,32033,1219,616,73778170,72849529,1219,616,73778170,72849529,10030,4498,23042499474,22987820587,100,100,100,100,12.15,13.69,0.32,0.32
-89319,32,033,32033,450,251,27374403,27374403,450,251,27374403,27374403,10030,4498,23042499474,22987820587,100,100,100,100,4.49,5.58,0.12,0.12
-89402,32,031,32031,71,59,409719,269192,71,59,409719,269192,421407,184841,16944249885,16323051686,100,100,100,100,0.02,0.03,0,0
-89403,32,019,32019,13477,5619,514651542,514451593,14158,5947,522340512,522140563,51980,22547,5242651800,5183049296,95.19,94.48,98.53,98.53,25.93,24.92,9.82,9.93
-89403,32,029,32029,681,328,7688970,7688970,14158,5947,522340512,522140563,4010,1990,682832916,680960552,4.81,5.52,1.47,1.47,16.98,16.48,1.13,1.13
-89404,32,013,32013,52,51,599672748,593638701,52,51,599672748,593638701,16528,7123,25013641453,24969444419,100,100,100,100,0.31,0.72,2.4,2.38
-89405,32,027,32027,1,2,220089683,220089683,239,162,1146218210,1146218210,6753,2464,15714561425,15634626982,0.42,1.23,19.2,19.2,0.01,0.08,1.4,1.41
-89405,32,031,32031,238,160,926128527,926128527,239,162,1146218210,1146218210,421407,184841,16944249885,16323051686,99.58,98.77,80.8,80.8,0.06,0.09,5.47,5.67
-89406,32,001,32001,24770,10785,4065508943,4012204994,24772,10790,4088805241,4035501292,24877,10826,13012248235,12769826211,99.99,99.95,99.43,99.42,99.57,99.62,31.24,31.42
-89406,32,019,32019,2,5,23296298,23296298,24772,10790,4088805241,4035501292,51980,22547,5242651800,5183049296,0.01,0.05,0.57,0.58,0,0.02,0.44,0.45
-89408,32,001,32001,107,41,36355571,36355571,19626,8074,402157056,384394576,24877,10826,13012248235,12769826211,0.55,0.51,9.04,9.46,0.43,0.38,0.28,0.28
-89408,32,019,32019,19519,8033,365801485,348039005,19626,8074,402157056,384394576,51980,22547,5242651800,5183049296,99.45,99.49,90.96,90.54,37.55,35.63,6.98,6.71
-89409,32,021,32021,4,6,757214970,757193871,283,201,1140977831,1139083170,4772,2830,9875567593,9719820866,1.41,2.99,66.37,66.47,0.08,0.21,7.67,7.79
-89409,32,023,32023,279,195,383762861,381889299,283,201,1140977831,1139083170,43946,22350,47134175230,47090965923,98.59,97.01,33.63,33.53,0.63,0.87,0.81,0.81
-89410,32,005,32005,10557,4959,455020004,450579619,10557,4959,455020004,450579619,46997,23671,1910481855,1838164305,100,100,100,100,22.46,20.95,23.82,24.51
-89411,32,005,32005,929,695,58897332,58897332,929,695,58897332,58897332,46997,23671,1910481855,1838164305,100,100,100,100,1.98,2.94,3.08,3.2
-89412,32,013,32013,8,14,526448435,522680079,288,240,7603146440,7586436922,16528,7123,25013641453,24969444419,2.78,5.83,6.92,6.89,0.05,0.2,2.1,2.09
-89412,32,031,32031,280,226,7076698005,7063756843,288,240,7603146440,7586436922,421407,184841,16944249885,16323051686,97.22,94.17,93.08,93.11,0.07,0.12,41.76,43.27
-89413,32,005,32005,655,799,42344114,40897131,655,799,42344114,40897131,46997,23671,1910481855,1838164305,100,100,100,100,1.39,3.38,2.22,2.22
-89414,32,007,32007,46,64,816627658,816529190,349,249,2289191315,2280748904,48818,19566,44555421823,44469662857,13.18,25.7,35.67,35.8,0.09,0.33,1.83,1.84
-89414,32,013,32013,303,185,1472563657,1464219714,349,249,2289191315,2280748904,16528,7123,25013641453,24969444419,86.82,74.3,64.33,64.2,1.83,2.6,5.89,5.86
-89415,32,021,32021,3793,2233,829907443,784996624,3793,2233,829907443,784996624,4772,2830,9875567593,9719820866,100,100,100,100,79.48,78.9,8.4,8.08
-89418,32,027,32027,388,255,703561542,703561542,388,255,703561542,703561542,6753,2464,15714561425,15634626982,100,100,100,100,5.75,10.35,4.48,4.5
-89419,32,027,32027,5150,1706,1194762170,1194581827,5150,1706,1194762170,1194581827,6753,2464,15714561425,15634626982,100,100,100,100,76.26,69.24,7.6,7.64
-89420,32,021,32021,48,58,79628564,79628564,48,58,79628564,79628564,4772,2830,9875567593,9719820866,100,100,100,100,1.01,2.05,0.81,0.82
-89421,32,013,32013,541,249,734473797,734461977,634,306,2164585047,2164573227,16528,7123,25013641453,24969444419,85.33,81.37,33.93,33.93,3.27,3.5,2.94,2.94
-89421,41,045,41045,93,57,1430111250,1430111250,634,306,2164585047,2164573227,31313,11692,25717804527,25608588996,14.67,18.63,66.07,66.07,0.3,0.49,5.56,5.58
-89422,32,021,32021,165,166,1141962975,1140425438,165,166,1141962975,1140425438,4772,2830,9875567593,9719820866,100,100,100,100,3.46,5.87,11.56,11.73
-89423,32,005,32005,10465,4597,180040518,179370927,10465,4597,180040518,179370927,46997,23671,1910481855,1838164305,100,100,100,100,22.27,19.42,9.42,9.76
-89424,32,031,32031,341,134,649593290,613173696,341,134,649593290,613173696,421407,184841,16944249885,16323051686,100,100,100,100,0.08,0.07,3.83,3.76
-89425,32,013,32013,432,242,1842110682,1842109530,432,242,1842110682,1842109530,16528,7123,25013641453,24969444419,100,100,100,100,2.61,3.4,7.36,7.38
-89426,32,013,32013,208,158,828424712,827584497,208,158,828424712,827584497,16528,7123,25013641453,24969444419,100,100,100,100,1.26,2.22,3.31,3.31
-89427,32,021,32021,746,360,635872583,632704410,746,360,635872583,632704410,4772,2830,9875567593,9719820866,100,100,100,100,15.63,12.72,6.44,6.51
-89428,32,019,32019,179,95,3179021,3179021,179,95,3179021,3179021,51980,22547,5242651800,5183049296,100,100,100,100,0.34,0.42,0.06,0.06
-89429,32,019,32019,7627,3499,451426094,436326503,7627,3499,451426094,436326503,51980,22547,5242651800,5183049296,100,100,100,100,14.67,15.52,8.61,8.42
-89430,32,019,32019,433,203,102154352,102154352,433,203,102154352,102154352,51980,22547,5242651800,5183049296,100,100,100,100,0.83,0.9,1.95,1.97
-89431,32,031,32031,36189,14980,25061247,25051624,36189,14980,25061247,25051624,421407,184841,16944249885,16323051686,100,100,100,100,8.59,8.1,0.15,0.15
-89433,32,031,32031,20188,6934,40217746,40217746,20188,6934,40217746,40217746,421407,184841,16944249885,16323051686,100,100,100,100,4.79,3.75,0.24,0.25
-89434,32,029,32029,1113,553,27407436,26866995,25416,10670,78186114,77496113,4010,1990,682832916,680960552,4.38,5.18,35.05,34.67,27.76,27.79,4.01,3.95
-89434,32,031,32031,24303,10117,50778678,50629118,25416,10670,78186114,77496113,421407,184841,16944249885,16323051686,95.62,94.82,64.95,65.33,5.77,5.47,0.3,0.31
-89436,32,031,32031,36867,14060,106846438,105577091,36867,14060,106846438,105577091,421407,184841,16944249885,16323051686,100,100,100,100,8.75,7.61,0.63,0.65
-89438,32,013,32013,48,40,124280563,121096231,48,40,124280563,121096231,16528,7123,25013641453,24969444419,100,100,100,100,0.29,0.56,0.5,0.48
-89439,06,091,06091,80,44,19321080,19321080,1417,718,38064206,37759515,3240,2328,2492112905,2468813797,5.65,6.13,50.76,51.17,2.47,1.89,0.78,0.78
-89439,32,031,32031,1337,674,18743126,18438435,1417,718,38064206,37759515,421407,184841,16944249885,16323051686,94.35,93.87,49.24,48.83,0.32,0.36,0.11,0.11
-89440,32,029,32029,947,560,37448148,37448148,947,560,37448148,37448148,4010,1990,682832916,680960552,100,100,100,100,23.62,28.14,5.48,5.5
-89441,32,031,32031,11542,4259,107495036,107495036,11542,4259,107495036,107495036,421407,184841,16944249885,16323051686,100,100,100,100,2.74,2.3,0.63,0.66
-89442,32,029,32029,10,5,441422,414792,1118,464,413785846,413737161,4010,1990,682832916,680960552,0.89,1.08,0.11,0.1,0.25,0.25,0.06,0.06
-89442,32,031,32031,1108,459,413344424,413322369,1118,464,413785846,413737161,421407,184841,16944249885,16323051686,99.11,98.92,99.89,99.9,0.26,0.25,2.44,2.53
-89444,32,005,32005,1542,863,344130518,344130518,2734,1475,775422163,766282163,46997,23671,1910481855,1838164305,56.4,58.51,44.38,44.91,3.28,3.65,18.01,18.72
-89444,32,019,32019,1192,612,431291645,422151645,2734,1475,775422163,766282163,51980,22547,5242651800,5183049296,43.6,41.49,55.62,55.09,2.29,2.71,8.23,8.14
-89445,32,013,32013,14900,6164,8731655227,8727262819,16114,6665,10134883468,10130491060,16528,7123,25013641453,24969444419,92.47,92.48,86.15,86.15,90.15,86.54,34.91,34.95
-89445,32,027,32027,1214,501,1403228241,1403228241,16114,6665,10134883468,10130491060,6753,2464,15714561425,15634626982,7.53,7.52,13.85,13.85,17.98,20.33,8.93,8.98
-89446,32,013,32013,36,12,12053800,12053800,36,12,12053800,12053800,16528,7123,25013641453,24969444419,100,100,100,100,0.22,0.17,0.05,0.05
-89447,32,019,32019,7931,3783,1977460543,1975464374,7931,3783,1977460543,1975464374,51980,22547,5242651800,5183049296,100,100,100,100,15.26,16.78,37.72,38.11
-89448,32,005,32005,1695,1695,32727432,31812838,1695,1695,32727432,31812838,46997,23671,1910481855,1838164305,100,100,100,100,3.61,7.16,1.71,1.73
-89449,32,005,32005,2994,2330,26253585,25980901,2994,2330,26253585,25980901,46997,23671,1910481855,1838164305,100,100,100,100,6.37,9.84,1.37,1.41
-89450,32,031,32031,86,113,76478,76478,86,113,76478,76478,421407,184841,16944249885,16323051686,100,100,100,100,0.02,0.06,0,0
-89451,32,031,32031,8930,7782,68030415,65526936,8930,7782,68030415,65526936,421407,184841,16944249885,16323051686,100,100,100,100,2.12,4.21,0.4,0.4
-89460,32,005,32005,13236,5681,141587443,140390942,13236,5681,141587443,140390942,46997,23671,1910481855,1838164305,100,100,100,100,28.16,24,7.41,7.64
-89501,32,031,32031,4252,3592,1641357,1641357,4252,3592,1641357,1641357,421407,184841,16944249885,16323051686,100,100,100,100,1.01,1.94,0.01,0.01
-89502,32,031,32031,43566,19541,57804339,57651951,43566,19541,57804339,57651951,421407,184841,16944249885,16323051686,100,100,100,100,10.34,10.57,0.34,0.35
-89503,32,031,32031,27891,13086,16965950,16798517,27891,13086,16965950,16798517,421407,184841,16944249885,16323051686,100,100,100,100,6.62,7.08,0.1,0.1
-89506,32,031,32031,38379,13729,250149275,244810401,38379,13729,250149275,244810401,421407,184841,16944249885,16323051686,100,100,100,100,9.11,7.43,1.48,1.5
-89508,32,031,32031,11662,4562,418204464,413325843,11662,4562,418204464,413325843,421407,184841,16944249885,16323051686,100,100,100,100,2.77,2.47,2.47,2.53
-89509,32,031,32031,33395,17127,23270963,23175764,33395,17127,23270963,23175764,421407,184841,16944249885,16323051686,100,100,100,100,7.92,9.27,0.14,0.14
-89510,32,031,32031,1685,744,3157810404,2678695600,1685,744,3157810404,2678695600,421407,184841,16944249885,16323051686,100,100,100,100,0.4,0.4,18.64,16.41
-89511,32,031,32031,25011,10788,386049591,386019151,25011,10788,386049591,386019151,421407,184841,16944249885,16323051686,100,100,100,100,5.94,5.84,2.28,2.36
-89512,32,031,32031,25574,11304,16381284,16321939,25574,11304,16381284,16321939,421407,184841,16944249885,16323051686,100,100,100,100,6.07,6.12,0.1,0.1
-89519,32,031,32031,8392,3858,20375929,20176090,8392,3858,20375929,20176090,421407,184841,16944249885,16323051686,100,100,100,100,1.99,2.09,0.12,0.12
-89521,32,029,32029,1259,544,66646992,65987525,25716,11137,199487771,198606344,4010,1990,682832916,680960552,4.9,4.88,33.41,33.23,31.4,27.34,9.76,9.69
-89521,32,031,32031,24457,10593,132840779,132618819,25716,11137,199487771,198606344,421407,184841,16944249885,16323051686,95.1,95.12,66.59,66.77,5.8,5.73,0.78,0.81
-89523,32,031,32031,31373,14059,49127838,48799502,31373,14059,49127838,48799502,421407,184841,16944249885,16323051686,100,100,100,100,7.44,7.61,0.29,0.3
-89701,32,510,32510,27625,10579,87265840,86266815,27625,10579,87265840,86266815,55274,23534,407260471,374672985,100,100,100,100,49.98,44.95,21.43,23.02
-89702,32,510,32510,0,0,486977,486977,0,0,486977,486977,55274,23534,407260471,374672985,0,0,100,100,0,0,0.12,0.13
-89703,32,510,32510,9714,4751,65780206,65751616,9714,4751,65780206,65751616,55274,23534,407260471,374672985,100,100,100,100,17.57,20.19,16.15,17.55
-89704,32,031,32031,4290,1897,221429732,198283064,4290,1897,221429732,198283064,421407,184841,16944249885,16323051686,100,100,100,100,1.02,1.03,1.31,1.21
-89705,32,005,32005,4924,2051,59397115,59397115,4969,2082,113361012,111776425,46997,23671,1910481855,1838164305,99.09,98.51,52.4,53.14,10.48,8.66,3.11,3.23
-89705,32,510,32510,45,31,53963897,52379310,4969,2082,113361012,111776425,55274,23534,407260471,374672985,0.91,1.49,47.6,46.86,0.08,0.13,13.25,13.98
-89706,32,019,32019,1620,698,35224927,35135083,19510,8871,82199083,82078515,51980,22547,5242651800,5183049296,8.3,7.87,42.85,42.81,3.12,3.1,0.67,0.68
-89706,32,510,32510,17890,8173,46974156,46943432,19510,8871,82199083,82078515,55274,23534,407260471,374672985,91.7,92.13,57.15,57.19,32.37,34.73,11.53,12.53
-89801,32,007,32007,23298,9177,4525434347,4513939571,23298,9177,4525434347,4513939571,48818,19566,44555421823,44469662857,100,100,100,100,47.72,46.9,10.16,10.15
-89815,32,007,32007,13346,4843,1634886013,1630404813,13346,4843,1634886013,1630404813,48818,19566,44555421823,44469662857,100,100,100,100,27.34,24.75,3.67,3.67
-89820,32,011,32011,2,1,13255565,13218111,5358,2203,5614429735,5611198612,1987,1076,10826053757,10814970882,0.04,0.05,0.24,0.24,0.1,0.09,0.12,0.12
-89820,32,015,32015,5356,2202,5601174170,5597980501,5358,2203,5614429735,5611198612,5775,2575,14295409019,14219305794,99.96,99.95,99.76,99.76,92.74,85.51,39.18,39.37
-89821,32,011,32011,482,314,956403293,949853494,482,314,956403293,949853494,1987,1076,10826053757,10814970882,100,100,100,100,24.26,29.18,8.83,8.78
-89822,32,007,32007,2370,1044,114479177,114479177,2513,1100,1495390958,1495390958,48818,19566,44555421823,44469662857,94.31,94.91,7.66,7.66,4.85,5.34,0.26,0.26
-89822,32,011,32011,143,56,1380911781,1380911781,2513,1100,1495390958,1495390958,1987,1076,10826053757,10814970882,5.69,5.09,92.34,92.34,7.2,5.2,12.76,12.77
-89823,32,007,32007,273,109,984749100,983544995,273,109,984749100,983544995,48818,19566,44555421823,44469662857,100,100,100,100,0.56,0.56,2.21,2.21
-89825,32,007,32007,1228,651,109032017,108914547,1228,651,109032017,108914547,48818,19566,44555421823,44469662857,100,100,100,100,2.52,3.33,0.24,0.24
-89826,32,007,32007,42,102,228095562,228074740,42,102,228095562,228074740,48818,19566,44555421823,44469662857,100,100,100,100,0.09,0.52,0.51,0.51
-89828,32,007,32007,268,176,337630293,337536655,268,176,337630293,337536655,48818,19566,44555421823,44469662857,100,100,100,100,0.55,0.9,0.76,0.76
-89830,32,007,32007,270,224,2026444295,2024493617,270,224,2026444295,2024493617,48818,19566,44555421823,44469662857,100,100,100,100,0.55,1.14,4.55,4.55
-89831,32,007,32007,78,81,543629335,542637347,78,81,543629335,542637347,48818,19566,44555421823,44469662857,100,100,100,100,0.16,0.41,1.22,1.22
-89832,16,073,16073,356,100,140241204,137746909,1304,491,346153555,343419336,11526,4781,19935091492,19853582270,27.3,20.37,40.51,40.11,3.09,2.09,0.7,0.69
-89832,32,007,32007,948,391,205912351,205672427,1304,491,346153555,343419336,48818,19566,44555421823,44469662857,72.7,79.63,59.49,59.89,1.94,2,0.46,0.46
-89833,32,007,32007,201,182,1306386644,1298129242,201,182,1306386644,1298129242,48818,19566,44555421823,44469662857,100,100,100,100,0.41,0.93,2.93,2.92
-89834,32,007,32007,126,73,2341585591,2338193596,126,73,2341585591,2338193596,48818,19566,44555421823,44469662857,100,100,100,100,0.26,0.37,5.26,5.26
-89835,32,007,32007,1822,876,6605342713,6601140462,1822,876,6605342713,6601140462,48818,19566,44555421823,44469662857,100,100,100,100,3.73,4.48,14.83,14.84
-89883,32,007,32007,4488,1549,776098328,775119298,4488,1549,776098328,775119298,48818,19566,44555421823,44469662857,100,100,100,100,9.19,7.92,1.74,1.74
-90001,06,037,06037,57110,13788,9071361,9071361,57110,13788,9071361,9071361,9818605,3445076,12304882555,10509869649,100,100,100,100,0.58,0.4,0.07,0.09
-90002,06,037,06037,51223,12598,7930685,7930685,51223,12598,7930685,7930685,9818605,3445076,12304882555,10509869649,100,100,100,100,0.52,0.37,0.06,0.08
-90003,06,037,06037,66266,17127,9198045,9197642,66266,17127,9198045,9197642,9818605,3445076,12304882555,10509869649,100,100,100,100,0.67,0.5,0.07,0.09
-90004,06,037,06037,62180,24278,7894533,7894533,62180,24278,7894533,7894533,9818605,3445076,12304882555,10509869649,100,100,100,100,0.63,0.7,0.06,0.08
-90005,06,037,06037,37681,16345,2807559,2807559,37681,16345,2807559,2807559,9818605,3445076,12304882555,10509869649,100,100,100,100,0.38,0.47,0.02,0.03
-90006,06,037,06037,59185,20332,4972248,4972248,59185,20332,4972248,4972248,9818605,3445076,12304882555,10509869649,100,100,100,100,0.6,0.59,0.04,0.05
-90007,06,037,06037,40920,12762,6387018,6387018,40920,12762,6387018,6387018,9818605,3445076,12304882555,10509869649,100,100,100,100,0.42,0.37,0.05,0.06
-90008,06,037,06037,32327,15006,9581974,9513430,32327,15006,9581974,9513430,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.44,0.08,0.09
-90010,06,037,06037,3800,2382,1184445,1184445,3800,2382,1184445,1184445,9818605,3445076,12304882555,10509869649,100,100,100,100,0.04,0.07,0.01,0.01
-90011,06,037,06037,103892,23547,11100953,11100424,103892,23547,11100953,11100424,9818605,3445076,12304882555,10509869649,100,100,100,100,1.06,0.68,0.09,0.11
-90012,06,037,06037,31103,11370,8528623,8375660,31103,11370,8528623,8375660,9818605,3445076,12304882555,10509869649,100,100,100,100,0.32,0.33,0.07,0.08
-90013,06,037,06037,11772,7516,1773762,1737681,11772,7516,1773762,1737681,9818605,3445076,12304882555,10509869649,100,100,100,100,0.12,0.22,0.01,0.02
-90014,06,037,06037,7005,4990,733437,733437,7005,4990,733437,733437,9818605,3445076,12304882555,10509869649,100,100,100,100,0.07,0.14,0.01,0.01
-90015,06,037,06037,18986,8245,4430188,4430188,18986,8245,4430188,4430188,9818605,3445076,12304882555,10509869649,100,100,100,100,0.19,0.24,0.04,0.04
-90016,06,037,06037,47596,17204,9402209,9393921,47596,17204,9402209,9393921,9818605,3445076,12304882555,10509869649,100,100,100,100,0.48,0.5,0.08,0.09
-90017,06,037,06037,23768,10610,1881077,1881077,23768,10610,1881077,1881077,9818605,3445076,12304882555,10509869649,100,100,100,100,0.24,0.31,0.02,0.02
-90018,06,037,06037,49310,16658,7500313,7500313,49310,16658,7500313,7500313,9818605,3445076,12304882555,10509869649,100,100,100,100,0.5,0.48,0.06,0.07
-90019,06,037,06037,64458,25116,10080662,10070053,64458,25116,10080662,10070053,9818605,3445076,12304882555,10509869649,100,100,100,100,0.66,0.73,0.08,0.1
-90020,06,037,06037,38967,17900,2927480,2927480,38967,17900,2927480,2927480,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.52,0.02,0.03
-90021,06,037,06037,3951,1761,5435244,5362540,3951,1761,5435244,5362540,9818605,3445076,12304882555,10509869649,100,100,100,100,0.04,0.05,0.04,0.05
-90022,06,037,06037,67179,17713,11357617,11346604,67179,17713,11357617,11346604,9818605,3445076,12304882555,10509869649,100,100,100,100,0.68,0.51,0.09,0.11
-90023,06,037,06037,45903,11259,11030884,10941450,45903,11259,11030884,10941450,9818605,3445076,12304882555,10509869649,100,100,100,100,0.47,0.33,0.09,0.1
-90024,06,037,06037,47452,19932,7608226,7608226,47452,19932,7608226,7608226,9818605,3445076,12304882555,10509869649,100,100,100,100,0.48,0.58,0.06,0.07
-90025,06,037,06037,42147,23058,6659051,6655173,42147,23058,6659051,6655173,9818605,3445076,12304882555,10509869649,100,100,100,100,0.43,0.67,0.05,0.06
-90026,06,037,06037,67869,26686,11163835,10942889,67869,26686,11163835,10942889,9818605,3445076,12304882555,10509869649,100,100,100,100,0.69,0.77,0.09,0.1
-90027,06,037,06037,45151,23390,21671926,21402832,45151,23390,21671926,21402832,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.68,0.18,0.2
-90028,06,037,06037,28714,17126,3947880,3947880,28714,17126,3947880,3947880,9818605,3445076,12304882555,10509869649,100,100,100,100,0.29,0.5,0.03,0.04
-90029,06,037,06037,38617,14723,3526895,3526895,38617,14723,3526895,3526895,9818605,3445076,12304882555,10509869649,100,100,100,100,0.39,0.43,0.03,0.03
-90031,06,037,06037,39316,11903,9148978,8945994,39316,11903,9148978,8945994,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.35,0.07,0.09
-90032,06,037,06037,45786,13521,12375736,12347050,45786,13521,12375736,12347050,9818605,3445076,12304882555,10509869649,100,100,100,100,0.47,0.39,0.1,0.12
-90033,06,037,06037,48852,13690,8535582,8461294,48852,13690,8535582,8461294,9818605,3445076,12304882555,10509869649,100,100,100,100,0.5,0.4,0.07,0.08
-90034,06,037,06037,57964,27210,8085207,8062311,57964,27210,8085207,8062311,9818605,3445076,12304882555,10509869649,100,100,100,100,0.59,0.79,0.07,0.08
-90035,06,037,06037,28418,14030,5330221,5330221,28418,14030,5330221,5330221,9818605,3445076,12304882555,10509869649,100,100,100,100,0.29,0.41,0.04,0.05
-90036,06,037,06037,36865,19920,6401943,6398643,36865,19920,6401943,6398643,9818605,3445076,12304882555,10509869649,100,100,100,100,0.38,0.58,0.05,0.06
-90037,06,037,06037,62276,17192,7351184,7351184,62276,17192,7351184,7351184,9818605,3445076,12304882555,10509869649,100,100,100,100,0.63,0.5,0.06,0.07
-90038,06,037,06037,28917,12812,4060536,4057211,28917,12812,4060536,4057211,9818605,3445076,12304882555,10509869649,100,100,100,100,0.29,0.37,0.03,0.04
-90039,06,037,06037,28514,12127,10278733,9764431,28514,12127,10278733,9764431,9818605,3445076,12304882555,10509869649,100,100,100,100,0.29,0.35,0.08,0.09
-90040,06,037,06037,12520,3397,14457577,14454795,12520,3397,14457577,14454795,9818605,3445076,12304882555,10509869649,100,100,100,100,0.13,0.1,0.12,0.14
-90041,06,037,06037,27425,9998,9383338,9352825,27425,9998,9383338,9352825,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.29,0.08,0.09
-90042,06,037,06037,62430,21018,12111674,12027396,62430,21018,12111674,12027396,9818605,3445076,12304882555,10509869649,100,100,100,100,0.64,0.61,0.1,0.11
-90043,06,037,06037,44789,17172,10708405,10705820,44789,17172,10708405,10705820,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.5,0.09,0.1
-90044,06,037,06037,89779,27479,13303825,13303825,89779,27479,13303825,13303825,9818605,3445076,12304882555,10509869649,100,100,100,100,0.91,0.8,0.11,0.13
-90045,06,037,06037,39480,16127,27779824,27779045,39480,16127,27779824,27779045,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.47,0.23,0.26
-90046,06,037,06037,48581,30688,14974008,14970999,48581,30688,14974008,14970999,9818605,3445076,12304882555,10509869649,100,100,100,100,0.49,0.89,0.12,0.14
-90047,06,037,06037,48606,17150,12252335,12251863,48606,17150,12252335,12251863,9818605,3445076,12304882555,10509869649,100,100,100,100,0.5,0.5,0.1,0.12
-90048,06,037,06037,21397,12939,4882696,4882696,21397,12939,4882696,4882696,9818605,3445076,12304882555,10509869649,100,100,100,100,0.22,0.38,0.04,0.05
-90049,06,037,06037,35482,18097,38906432,38905061,35482,18097,38906432,38905061,9818605,3445076,12304882555,10509869649,100,100,100,100,0.36,0.53,0.32,0.37
-90056,06,037,06037,7827,3518,4090954,4090954,7827,3518,4090954,4090954,9818605,3445076,12304882555,10509869649,100,100,100,100,0.08,0.1,0.03,0.04
-90057,06,037,06037,44998,17247,2327917,2293706,44998,17247,2327917,2293706,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.5,0.02,0.02
-90058,06,037,06037,3223,921,15633185,15042486,3223,921,15633185,15042486,9818605,3445076,12304882555,10509869649,100,100,100,100,0.03,0.03,0.13,0.14
-90059,06,037,06037,40952,10617,8624370,8581870,40952,10617,8624370,8581870,9818605,3445076,12304882555,10509869649,100,100,100,100,0.42,0.31,0.07,0.08
-90061,06,037,06037,26872,7385,6896569,6895207,26872,7385,6896569,6895207,9818605,3445076,12304882555,10509869649,100,100,100,100,0.27,0.21,0.06,0.07
-90062,06,037,06037,32821,9795,5008337,5008337,32821,9795,5008337,5008337,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.28,0.04,0.05
-90063,06,037,06037,55758,14012,8476100,8476100,55758,14012,8476100,8476100,9818605,3445076,12304882555,10509869649,100,100,100,100,0.57,0.41,0.07,0.08
-90064,06,037,06037,25403,11540,10363493,10360459,25403,11540,10363493,10360459,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.33,0.08,0.1
-90065,06,037,06037,45527,15288,13674178,13671567,45527,15288,13674178,13671567,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.44,0.11,0.13
-90066,06,037,06037,55277,25319,12890748,12746971,55277,25319,12890748,12746971,9818605,3445076,12304882555,10509869649,100,100,100,100,0.56,0.73,0.1,0.12
-90067,06,037,06037,2424,1808,849895,849895,2424,1808,849895,849895,9818605,3445076,12304882555,10509869649,100,100,100,100,0.02,0.05,0.01,0.01
-90068,06,037,06037,22286,13901,20202252,19731266,22286,13901,20202252,19731266,9818605,3445076,12304882555,10509869649,100,100,100,100,0.23,0.4,0.16,0.19
-90069,06,037,06037,20483,14781,5475785,5475785,20483,14781,5475785,5475785,9818605,3445076,12304882555,10509869649,100,100,100,100,0.21,0.43,0.04,0.05
-90071,06,037,06037,15,0,319155,319155,15,0,319155,319155,9818605,3445076,12304882555,10509869649,100,0,100,100,0,0,0,0
-90073,06,037,06037,539,4,877374,877374,539,4,877374,877374,9818605,3445076,12304882555,10509869649,100,100,100,100,0.01,0,0.01,0.01
-90077,06,037,06037,9377,3888,19335985,18985951,9377,3888,19335985,18985951,9818605,3445076,12304882555,10509869649,100,100,100,100,0.1,0.11,0.16,0.18
-90079,06,037,06037,0,0,25585,25585,0,0,25585,25585,9818605,3445076,12304882555,10509869649,0,0,100,100,0,0,0,0
-90089,06,037,06037,3217,31,742759,742759,3217,31,742759,742759,9818605,3445076,12304882555,10509869649,100,100,100,100,0.03,0,0.01,0.01
-90090,06,037,06037,0,0,599380,599380,0,0,599380,599380,9818605,3445076,12304882555,10509869649,0,0,100,100,0,0,0,0.01
-90094,06,037,06037,5464,3168,1582611,1582611,5464,3168,1582611,1582611,9818605,3445076,12304882555,10509869649,100,100,100,100,0.06,0.09,0.01,0.02
-90095,06,037,06037,3,2,1023532,1023532,3,2,1023532,1023532,9818605,3445076,12304882555,10509869649,100,100,100,100,0,0,0.01,0.01
-90201,06,037,06037,101279,24940,15670274,15375409,101279,24940,15670274,15375409,9818605,3445076,12304882555,10509869649,100,100,100,100,1.03,0.72,0.13,0.15
-90210,06,037,06037,21741,9563,26383345,26226245,21741,9563,26383345,26226245,9818605,3445076,12304882555,10509869649,100,100,100,100,0.22,0.28,0.21,0.25
-90211,06,037,06037,8434,4052,1813980,1813980,8434,4052,1813980,1813980,9818605,3445076,12304882555,10509869649,100,100,100,100,0.09,0.12,0.01,0.02
-90212,06,037,06037,11555,6170,2474163,2474163,11555,6170,2474163,2474163,9818605,3445076,12304882555,10509869649,100,100,100,100,0.12,0.18,0.02,0.02
-90220,06,037,06037,49328,13498,17992443,17898040,49328,13498,17992443,17898040,9818605,3445076,12304882555,10509869649,100,100,100,100,0.5,0.39,0.15,0.17
-90221,06,037,06037,53704,12368,14074957,13809565,53704,12368,14074957,13809565,9818605,3445076,12304882555,10509869649,100,100,100,100,0.55,0.36,0.11,0.13
-90222,06,037,06037,31869,8026,6692763,6621871,31869,8026,6692763,6621871,9818605,3445076,12304882555,10509869649,100,100,100,100,0.32,0.23,0.05,0.06
-90230,06,037,06037,31766,13344,11785759,11672688,31766,13344,11785759,11672688,9818605,3445076,12304882555,10509869649,100,100,100,100,0.32,0.39,0.1,0.11
-90232,06,037,06037,15149,6944,5490049,5454835,15149,6944,5490049,5454835,9818605,3445076,12304882555,10509869649,100,100,100,100,0.15,0.2,0.04,0.05
-90240,06,037,06037,25876,7991,7808527,7624869,25876,7991,7808527,7624869,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.23,0.06,0.07
-90241,06,037,06037,42399,14316,12929196,12758123,42399,14316,12929196,12758123,9818605,3445076,12304882555,10509869649,100,100,100,100,0.43,0.42,0.11,0.12
-90242,06,037,06037,43497,13294,11845530,11785986,43497,13294,11845530,11785986,9818605,3445076,12304882555,10509869649,100,100,100,100,0.44,0.39,0.1,0.11
-90245,06,037,06037,16654,7410,15142094,14148053,16654,7410,15142094,14148053,9818605,3445076,12304882555,10509869649,100,100,100,100,0.17,0.22,0.12,0.13
-90247,06,037,06037,47487,16620,9734119,9723269,47487,16620,9734119,9723269,9818605,3445076,12304882555,10509869649,100,100,100,100,0.48,0.48,0.08,0.09
-90248,06,037,06037,9947,3573,12398396,12155495,9947,3573,12398396,12155495,9818605,3445076,12304882555,10509869649,100,100,100,100,0.1,0.1,0.1,0.12
-90249,06,037,06037,26669,9214,7792536,7712765,26669,9214,7792536,7712765,9818605,3445076,12304882555,10509869649,100,100,100,100,0.27,0.27,0.06,0.07
-90250,06,037,06037,93193,32600,17375880,17340185,93193,32600,17375880,17340185,9818605,3445076,12304882555,10509869649,100,100,100,100,0.95,0.95,0.14,0.16
-90254,06,037,06037,19506,10162,5238068,3697139,19506,10162,5238068,3697139,9818605,3445076,12304882555,10509869649,100,100,100,100,0.2,0.29,0.04,0.04
-90255,06,037,06037,75066,19118,9638256,9629884,75066,19118,9638256,9629884,9818605,3445076,12304882555,10509869649,100,100,100,100,0.76,0.55,0.08,0.09
-90260,06,037,06037,34924,10879,6990335,6941367,34924,10879,6990335,6941367,9818605,3445076,12304882555,10509869649,100,100,100,100,0.36,0.32,0.06,0.07
-90262,06,037,06037,69745,15266,12703572,12517493,69745,15266,12703572,12517493,9818605,3445076,12304882555,10509869649,100,100,100,100,0.71,0.44,0.1,0.12
-90263,06,037,06037,1612,0,585126,585126,1612,0,585126,585126,9818605,3445076,12304882555,10509869649,100,0,100,100,0.02,0,0,0.01
-90265,06,037,06037,17515,8652,211595965,194807382,18116,9033,298041072,279184812,9818605,3445076,12304882555,10509869649,96.68,95.78,71,69.78,0.18,0.25,1.72,1.85
-90265,06,111,06111,601,381,86445107,84377430,18116,9033,298041072,279184812,823318,281695,5719683515,4773691889,3.32,4.22,29,30.22,0.07,0.14,1.51,1.77
-90266,06,037,06037,35135,14929,12096152,10194994,35135,14929,12096152,10194994,9818605,3445076,12304882555,10509869649,100,100,100,100,0.36,0.43,0.1,0.1
-90270,06,037,06037,27372,6761,3346384,3267832,27372,6761,3346384,3267832,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.2,0.03,0.03
-90272,06,037,06037,22986,9815,60557886,59133992,22986,9815,60557886,59133992,9818605,3445076,12304882555,10509869649,100,100,100,100,0.23,0.28,0.49,0.56
-90274,06,037,06037,25209,9941,33634809,31002843,25209,9941,33634809,31002843,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.29,0.27,0.29
-90275,06,037,06037,41804,16236,43402847,35004660,41804,16236,43402847,35004660,9818605,3445076,12304882555,10509869649,100,100,100,100,0.43,0.47,0.35,0.33
-90277,06,037,06037,35293,18062,12782878,9279695,35293,18062,12782878,9279695,9818605,3445076,12304882555,10509869649,100,100,100,100,0.36,0.52,0.1,0.09
-90278,06,037,06037,40071,16655,9333177,9333177,40071,16655,9333177,9333177,9818605,3445076,12304882555,10509869649,100,100,100,100,0.41,0.48,0.08,0.09
-90280,06,037,06037,94396,24160,19222788,18920058,94396,24160,19222788,18920058,9818605,3445076,12304882555,10509869649,100,100,100,100,0.96,0.7,0.16,0.18
-90290,06,037,06037,6368,2867,51959503,51935407,6368,2867,51959503,51935407,9818605,3445076,12304882555,10509869649,100,100,100,100,0.06,0.08,0.42,0.49
-90291,06,037,06037,28341,16212,7335173,6462163,28341,16212,7335173,6462163,9818605,3445076,12304882555,10509869649,100,100,100,100,0.29,0.47,0.06,0.06
-90292,06,037,06037,21576,14585,8131830,5280289,21576,14585,8131830,5280289,9818605,3445076,12304882555,10509869649,100,100,100,100,0.22,0.42,0.07,0.05
-90293,06,037,06037,12132,6968,11404980,7420242,12132,6968,11404980,7420242,9818605,3445076,12304882555,10509869649,100,100,100,100,0.12,0.2,0.09,0.07
-90301,06,037,06037,36568,12565,6416784,6416784,36568,12565,6416784,6416784,9818605,3445076,12304882555,10509869649,100,100,100,100,0.37,0.36,0.05,0.06
-90302,06,037,06037,29415,11431,4906274,4903281,29415,11431,4906274,4903281,9818605,3445076,12304882555,10509869649,100,100,100,100,0.3,0.33,0.04,0.05
-90303,06,037,06037,26176,7646,5792330,5745894,26176,7646,5792330,5745894,9818605,3445076,12304882555,10509869649,100,100,100,100,0.27,0.22,0.05,0.05
-90304,06,037,06037,28210,6946,4057527,4057527,28210,6946,4057527,4057527,9818605,3445076,12304882555,10509869649,100,100,100,100,0.29,0.2,0.03,0.04
-90305,06,037,06037,14853,6166,6023139,6006924,14853,6166,6023139,6006924,9818605,3445076,12304882555,10509869649,100,100,100,100,0.15,0.18,0.05,0.06
-90401,06,037,06037,6722,4682,2638544,2199166,6722,4682,2638544,2199166,9818605,3445076,12304882555,10509869649,100,100,100,100,0.07,0.14,0.02,0.02
-90402,06,037,06037,12250,5945,5516813,5189913,12250,5945,5516813,5189913,9818605,3445076,12304882555,10509869649,100,100,100,100,0.12,0.17,0.04,0.05
-90403,06,037,06037,24525,15172,3944526,3697303,24525,15172,3944526,3697303,9818605,3445076,12304882555,10509869649,100,100,100,100,0.25,0.44,0.03,0.04
-90404,06,037,06037,21360,10865,5159382,5159382,21360,10865,5159382,5159382,9818605,3445076,12304882555,10509869649,100,100,100,100,0.22,0.32,0.04,0.05
-90405,06,037,06037,27186,15370,7310832,6854633,27186,15370,7310832,6854633,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.45,0.06,0.07
-90501,06,037,06037,43180,15364,14667670,14565670,43180,15364,14667670,14565670,9818605,3445076,12304882555,10509869649,100,100,100,100,0.44,0.45,0.12,0.14
-90502,06,037,06037,18010,5939,5821657,5788343,18010,5939,5821657,5788343,9818605,3445076,12304882555,10509869649,100,100,100,100,0.18,0.17,0.05,0.06
-90503,06,037,06037,44383,17948,13743973,13719607,44383,17948,13743973,13719607,9818605,3445076,12304882555,10509869649,100,100,100,100,0.45,0.52,0.11,0.13
-90504,06,037,06037,32102,11986,11571976,11527566,32102,11986,11571976,11527566,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.35,0.09,0.11
-90505,06,037,06037,36678,14846,15037766,15007286,36678,14846,15037766,15007286,9818605,3445076,12304882555,10509869649,100,100,100,100,0.37,0.43,0.12,0.14
-90506,06,037,06037,0,0,413613,407877,0,0,413613,407877,9818605,3445076,12304882555,10509869649,0,0,100,100,0,0,0,0
-90601,06,037,06037,31974,11549,30029820,29388881,31974,11549,30029820,29388881,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.34,0.24,0.28
-90602,06,037,06037,25777,8451,9617306,9610146,25777,8451,9617306,9610146,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.25,0.08,0.09
-90603,06,037,06037,20063,7007,8477125,8469076,20063,7007,8477125,8469076,9818605,3445076,12304882555,10509869649,100,100,100,100,0.2,0.2,0.07,0.08
-90604,06,037,06037,39407,12326,11047533,11036745,39407,12326,11047533,11036745,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.36,0.09,0.11
-90605,06,037,06037,40331,10897,14661596,14638491,40331,10897,14661596,14638491,9818605,3445076,12304882555,10509869649,100,100,100,100,0.41,0.32,0.12,0.14
-90606,06,037,06037,32396,8931,10016709,9797979,32396,8931,10016709,9797979,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.26,0.08,0.09
-90620,06,059,06059,45113,13680,16576765,16553642,45113,13680,16576765,16553642,3010232,1048907,2455477898,2047561084,100,100,100,100,1.5,1.3,0.68,0.81
-90621,06,059,06059,35153,10803,10780383,10728187,35153,10803,10780383,10728187,3010232,1048907,2455477898,2047561084,100,100,100,100,1.17,1.03,0.44,0.52
-90623,06,037,06037,119,39,26920,26920,15554,5215,4756785,4694270,9818605,3445076,12304882555,10509869649,0.77,0.75,0.57,0.57,0,0,0,0
-90623,06,059,06059,15435,5176,4729865,4667350,15554,5215,4756785,4694270,3010232,1048907,2455477898,2047561084,99.23,99.25,99.43,99.43,0.51,0.49,0.19,0.23
-90630,06,037,06037,185,81,86043,86043,47993,16204,15888670,15864796,9818605,3445076,12304882555,10509869649,0.39,0.5,0.54,0.54,0,0,0,0
-90630,06,059,06059,47808,16123,15802627,15778753,47993,16204,15888670,15864796,3010232,1048907,2455477898,2047561084,99.61,99.5,99.46,99.46,1.59,1.54,0.64,0.77
-90631,06,037,06037,6033,2110,16288965,16281766,67619,22497,36033857,36010789,9818605,3445076,12304882555,10509869649,8.92,9.38,45.2,45.21,0.06,0.06,0.13,0.15
-90631,06,059,06059,61586,20387,19744892,19729023,67619,22497,36033857,36010789,3010232,1048907,2455477898,2047561084,91.08,90.62,54.8,54.79,2.05,1.94,0.8,0.96
-90638,06,037,06037,48530,15093,20320867,20275947,49012,15236,20461944,20417024,9818605,3445076,12304882555,10509869649,99.02,99.06,99.31,99.31,0.49,0.44,0.17,0.19
-90638,06,059,06059,482,143,141077,141077,49012,15236,20461944,20417024,3010232,1048907,2455477898,2047561084,0.98,0.94,0.69,0.69,0.02,0.01,0.01,0.01
-90640,06,037,06037,62549,19785,22094920,21990769,62549,19785,22094920,21990769,9818605,3445076,12304882555,10509869649,100,100,100,100,0.64,0.57,0.18,0.21
-90650,06,037,06037,105549,28083,25505135,25403321,105549,28083,25505135,25403321,9818605,3445076,12304882555,10509869649,100,100,100,100,1.07,0.82,0.21,0.24
-90660,06,037,06037,62928,17106,21340652,20071601,62928,17106,21340652,20071601,9818605,3445076,12304882555,10509869649,100,100,100,100,0.64,0.5,0.17,0.19
-90670,06,037,06037,14866,4616,22021330,21918115,14866,4616,22021330,21918115,9818605,3445076,12304882555,10509869649,100,100,100,100,0.15,0.13,0.18,0.21
-90680,06,059,06059,29945,8848,6981102,6981102,29945,8848,6981102,6981102,3010232,1048907,2455477898,2047561084,100,100,100,100,0.99,0.84,0.28,0.34
-90701,06,037,06037,16591,4715,4221723,4221723,16591,4715,4221723,4221723,9818605,3445076,12304882555,10509869649,100,100,100,100,0.17,0.14,0.03,0.04
-90703,06,037,06037,49399,15946,23079381,22740186,49399,15946,23079381,22740186,9818605,3445076,12304882555,10509869649,100,100,100,100,0.5,0.46,0.19,0.22
-90704,06,037,06037,4090,2481,761699295,193719023,4090,2481,761699295,193719023,9818605,3445076,12304882555,10509869649,100,100,100,100,0.04,0.07,6.19,1.84
-90706,06,037,06037,76615,24896,15958140,15819961,76615,24896,15958140,15819961,9818605,3445076,12304882555,10509869649,100,100,100,100,0.78,0.72,0.13,0.15
-90710,06,037,06037,25457,9061,6108785,6106901,25457,9061,6108785,6106901,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.26,0.05,0.06
-90712,06,037,06037,31499,11155,11154953,11101330,31499,11155,11154953,11101330,9818605,3445076,12304882555,10509869649,100,100,100,100,0.32,0.32,0.09,0.11
-90713,06,037,06037,27925,9711,8790089,8790089,27925,9711,8790089,8790089,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.28,0.07,0.08
-90715,06,037,06037,20388,6406,4515519,4404198,20388,6406,4515519,4404198,9818605,3445076,12304882555,10509869649,100,100,100,100,0.21,0.19,0.04,0.04
-90716,06,037,06037,14184,3652,2438597,2411559,14184,3652,2438597,2411559,9818605,3445076,12304882555,10509869649,100,100,100,100,0.14,0.11,0.02,0.02
-90717,06,037,06037,21318,8887,5128003,5128003,21318,8887,5128003,5128003,9818605,3445076,12304882555,10509869649,100,100,100,100,0.22,0.26,0.04,0.05
-90720,06,059,06059,21751,8010,16038389,15868153,21751,8010,16038389,15868153,3010232,1048907,2455477898,2047561084,100,100,100,100,0.72,0.76,0.65,0.77
-90723,06,037,06037,54099,14572,12342618,12133919,54099,14572,12342618,12133919,9818605,3445076,12304882555,10509869649,100,100,100,100,0.55,0.42,0.1,0.12
-90731,06,037,06037,59662,23914,40481090,23803092,59662,23914,40481090,23803092,9818605,3445076,12304882555,10509869649,100,100,100,100,0.61,0.69,0.33,0.23
-90732,06,037,06037,21115,9250,9860855,8903149,21115,9250,9860855,8903149,9818605,3445076,12304882555,10509869649,100,100,100,100,0.22,0.27,0.08,0.08
-90740,06,037,06037,15,6,37913,37913,23729,14303,24694586,22725811,9818605,3445076,12304882555,10509869649,0.06,0.04,0.15,0.17,0,0,0,0
-90740,06,059,06059,23714,14297,24656673,22687898,23729,14303,24694586,22725811,3010232,1048907,2455477898,2047561084,99.94,99.96,99.85,99.83,0.79,1.36,1,1.11
-90742,06,059,06059,831,556,1393417,478557,831,556,1393417,478557,3010232,1048907,2455477898,2047561084,100,100,100,100,0.03,0.05,0.06,0.02
-90743,06,059,06059,456,256,1342517,214434,456,256,1342517,214434,3010232,1048907,2455477898,2047561084,100,100,100,100,0.02,0.02,0.05,0.01
-90744,06,037,06037,53815,14684,24557568,21593280,53815,14684,24557568,21593280,9818605,3445076,12304882555,10509869649,100,100,100,100,0.55,0.43,0.2,0.21
-90745,06,037,06037,57251,15680,21679787,21498764,57251,15680,21679787,21498764,9818605,3445076,12304882555,10509869649,100,100,100,100,0.58,0.46,0.18,0.2
-90746,06,037,06037,25990,8271,15171473,15106706,25990,8271,15171473,15106706,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.24,0.12,0.14
-90747,06,037,06037,0,0,16629,16629,0,0,16629,16629,9818605,3445076,12304882555,10509869649,0,0,100,100,0,0,0,0
-90755,06,037,06037,11074,4404,5649139,5644694,11074,4404,5649139,5644694,9818605,3445076,12304882555,10509869649,100,100,100,100,0.11,0.13,0.05,0.05
-90802,06,037,06037,39347,23071,38701229,16791357,39347,23071,38701229,16791357,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.67,0.31,0.16
-90803,06,037,06037,32031,18682,21221353,10353507,32031,18682,21221353,10353507,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.54,0.17,0.1
-90804,06,037,06037,40311,15792,5479891,5477388,40311,15792,5479891,5477388,9818605,3445076,12304882555,10509869649,100,100,100,100,0.41,0.46,0.04,0.05
-90805,06,037,06037,93524,27646,19514231,19085334,93524,27646,19514231,19085334,9818605,3445076,12304882555,10509869649,100,100,100,100,0.95,0.8,0.16,0.18
-90806,06,037,06037,42399,13072,9190890,8908246,42399,13072,9190890,8908246,9818605,3445076,12304882555,10509869649,100,100,100,100,0.43,0.38,0.07,0.08
-90807,06,037,06037,31481,13256,15222343,15124348,31481,13256,15222343,15124348,9818605,3445076,12304882555,10509869649,100,100,100,100,0.32,0.38,0.12,0.14
-90808,06,037,06037,38232,14567,18038020,17783214,38232,14567,18038020,17783214,9818605,3445076,12304882555,10509869649,100,100,100,100,0.39,0.42,0.15,0.17
-90810,06,037,06037,36735,9709,17878021,17342372,36735,9709,17878021,17342372,9818605,3445076,12304882555,10509869649,100,100,100,100,0.37,0.28,0.15,0.17
-90813,06,037,06037,58911,17896,8552763,8310405,58911,17896,8552763,8310405,9818605,3445076,12304882555,10509869649,100,100,100,100,0.6,0.52,0.07,0.08
-90814,06,037,06037,19131,9808,3508606,3508606,19131,9808,3508606,3508606,9818605,3445076,12304882555,10509869649,100,100,100,100,0.19,0.28,0.03,0.03
-90815,06,037,06037,39640,15358,18883071,18415000,39733,15409,18914334,18446263,9818605,3445076,12304882555,10509869649,99.77,99.67,99.83,99.83,0.4,0.45,0.15,0.18
-90815,06,059,06059,93,51,31263,31263,39733,15409,18914334,18446263,3010232,1048907,2455477898,2047561084,0.23,0.33,0.17,0.17,0,0,0,0
-90822,06,037,06037,117,4,420836,420836,117,4,420836,420836,9818605,3445076,12304882555,10509869649,100,100,100,100,0,0,0,0
-90831,06,037,06037,0,0,107540,107540,0,0,107540,107540,9818605,3445076,12304882555,10509869649,0,0,100,100,0,0,0,0
-91001,06,037,06037,36126,13285,21464006,21421337,36126,13285,21464006,21421337,9818605,3445076,12304882555,10509869649,100,100,100,100,0.37,0.39,0.17,0.2
-91006,06,037,06037,31715,11142,16706561,16364902,31715,11142,16706561,16364902,9818605,3445076,12304882555,10509869649,100,100,100,100,0.32,0.32,0.14,0.16
-91007,06,037,06037,34095,12750,14408571,14395473,34095,12750,14408571,14395473,9818605,3445076,12304882555,10509869649,100,100,100,100,0.35,0.37,0.12,0.14
-91008,06,037,06037,1391,640,5246221,5242985,1391,640,5246221,5242985,9818605,3445076,12304882555,10509869649,100,100,100,100,0.01,0.02,0.04,0.05
-91010,06,037,06037,26074,8256,18347724,18234461,26074,8256,18347724,18234461,9818605,3445076,12304882555,10509869649,100,100,100,100,0.27,0.24,0.15,0.17
-91011,06,037,06037,20280,7099,30752656,30703806,20280,7099,30752656,30703806,9818605,3445076,12304882555,10509869649,100,100,100,100,0.21,0.21,0.25,0.29
-91016,06,037,06037,40598,15781,22207472,21978603,40598,15781,22207472,21978603,9818605,3445076,12304882555,10509869649,100,100,100,100,0.41,0.46,0.18,0.21
-91020,06,037,06037,8415,3586,1948563,1948563,8415,3586,1948563,1948563,9818605,3445076,12304882555,10509869649,100,100,100,100,0.09,0.1,0.02,0.02
-91024,06,037,06037,10917,5113,7658515,7646972,10917,5113,7658515,7646972,9818605,3445076,12304882555,10509869649,100,100,100,100,0.11,0.15,0.06,0.07
-91030,06,037,06037,25616,11116,8864971,8833647,25616,11116,8864971,8833647,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.32,0.07,0.08
-91040,06,037,06037,20372,7732,21257816,21244063,20372,7732,21257816,21244063,9818605,3445076,12304882555,10509869649,100,100,100,100,0.21,0.22,0.17,0.2
-91042,06,037,06037,27585,10534,129350937,129196196,27585,10534,129350937,129196196,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.31,1.05,1.23
-91046,06,037,06037,156,118,25915,25915,156,118,25915,25915,9818605,3445076,12304882555,10509869649,100,100,100,100,0,0,0,0
-91101,06,037,06037,20460,11873,3430898,3430898,20460,11873,3430898,3430898,9818605,3445076,12304882555,10509869649,100,100,100,100,0.21,0.34,0.03,0.03
-91103,06,037,06037,27480,9076,14054866,13896598,27480,9076,14054866,13896598,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.26,0.11,0.13
-91104,06,037,06037,36751,13670,9861048,9849391,36751,13670,9861048,9849391,9818605,3445076,12304882555,10509869649,100,100,100,100,0.37,0.4,0.08,0.09
-91105,06,037,06037,11254,5704,9620106,9566884,11254,5704,9620106,9566884,9818605,3445076,12304882555,10509869649,100,100,100,100,0.11,0.17,0.08,0.09
-91106,06,037,06037,24229,11742,7646195,7643112,24229,11742,7646195,7643112,9818605,3445076,12304882555,10509869649,100,100,100,100,0.25,0.34,0.06,0.07
-91107,06,037,06037,32940,13763,21488003,21287664,32940,13763,21488003,21287664,9818605,3445076,12304882555,10509869649,100,100,100,100,0.34,0.4,0.17,0.2
-91108,06,037,06037,13361,4562,9892254,9872619,13361,4562,9892254,9872619,9818605,3445076,12304882555,10509869649,100,100,100,100,0.14,0.13,0.08,0.09
-91201,06,037,06037,22781,8590,6143646,6116160,22781,8590,6143646,6116160,9818605,3445076,12304882555,10509869649,100,100,100,100,0.23,0.25,0.05,0.06
-91202,06,037,06037,22830,9297,5329901,5308492,22830,9297,5329901,5308492,9818605,3445076,12304882555,10509869649,100,100,100,100,0.23,0.27,0.04,0.05
-91203,06,037,06037,13220,5407,2127366,2119997,13220,5407,2127366,2119997,9818605,3445076,12304882555,10509869649,100,100,100,100,0.13,0.16,0.02,0.02
-91204,06,037,06037,16032,5969,2911130,2911130,16032,5969,2911130,2911130,9818605,3445076,12304882555,10509869649,100,100,100,100,0.16,0.17,0.02,0.03
-91205,06,037,06037,37810,14899,4898344,4897491,37810,14899,4898344,4897491,9818605,3445076,12304882555,10509869649,100,100,100,100,0.39,0.43,0.04,0.05
-91206,06,037,06037,33065,14041,15275175,15235193,33065,14041,15275175,15235193,9818605,3445076,12304882555,10509869649,100,100,100,100,0.34,0.41,0.12,0.14
-91207,06,037,06037,10506,4283,11841353,11767215,10506,4283,11841353,11767215,9818605,3445076,12304882555,10509869649,100,100,100,100,0.11,0.12,0.1,0.11
-91208,06,037,06037,16245,6342,18014814,17876662,16245,6342,18014814,17876662,9818605,3445076,12304882555,10509869649,100,100,100,100,0.17,0.18,0.15,0.17
-91210,06,037,06037,328,309,113997,113997,328,309,113997,113997,9818605,3445076,12304882555,10509869649,100,100,100,100,0,0.01,0,0
-91214,06,037,06037,30356,10919,19598833,19546295,30356,10919,19598833,19546295,9818605,3445076,12304882555,10509869649,100,100,100,100,0.31,0.32,0.16,0.19
-91301,06,037,06037,25488,9559,88628548,88294586,25488,9559,88628548,88294586,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.28,0.72,0.84
-91302,06,037,06037,25709,9702,69273356,69143126,25709,9702,69273356,69143126,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.28,0.56,0.66
-91303,06,037,06037,26855,9502,5644978,5603372,26855,9502,5644978,5603372,9818605,3445076,12304882555,10509869649,100,100,100,100,0.27,0.28,0.05,0.05
-91304,06,037,06037,49990,17349,20908689,20861548,50231,17456,24409414,24360147,9818605,3445076,12304882555,10509869649,99.52,99.39,85.66,85.64,0.51,0.5,0.17,0.2
-91304,06,111,06111,241,107,3500725,3498599,50231,17456,24409414,24360147,823318,281695,5719683515,4773691889,0.48,0.61,14.34,14.36,0.03,0.04,0.06,0.07
-91306,06,037,06037,45061,14389,10781255,10718165,45061,14389,10781255,10718165,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.42,0.09,0.1
-91307,06,037,06037,22425,7868,11446963,11423103,24474,8556,20860392,20836532,9818605,3445076,12304882555,10509869649,91.63,91.96,54.87,54.82,0.23,0.23,0.09,0.11
-91307,06,111,06111,2049,688,9413429,9413429,24474,8556,20860392,20836532,823318,281695,5719683515,4773691889,8.37,8.04,45.13,45.18,0.25,0.24,0.16,0.2
-91311,06,037,06037,36289,13891,84611945,82199762,36557,14021,85493419,83081236,9818605,3445076,12304882555,10509869649,99.27,99.07,98.97,98.94,0.37,0.4,0.69,0.78
-91311,06,111,06111,268,130,881474,881474,36557,14021,85493419,83081236,823318,281695,5719683515,4773691889,0.73,0.93,1.03,1.06,0.03,0.05,0.02,0.02
-91316,06,037,06037,26898,12692,13661450,12968532,26898,12692,13661450,12968532,9818605,3445076,12304882555,10509869649,100,100,100,100,0.27,0.37,0.11,0.12
-91320,06,111,06111,44274,15438,47261336,47261336,44274,15438,47261336,47261336,823318,281695,5719683515,4773691889,100,100,100,100,5.38,5.48,0.83,0.99
-91321,06,037,06037,34882,11892,67096531,67031333,34882,11892,67096531,67031333,9818605,3445076,12304882555,10509869649,100,100,100,100,0.36,0.35,0.55,0.64
-91324,06,037,06037,27669,10020,11437330,11373551,27669,10020,11437330,11373551,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.29,0.09,0.11
-91325,06,037,06037,32417,12488,12494338,12486897,32417,12488,12494338,12486897,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.36,0.1,0.12
-91326,06,037,06037,33708,12206,21152755,21131468,33708,12206,21152755,21131468,9818605,3445076,12304882555,10509869649,100,100,100,100,0.34,0.35,0.17,0.2
-91330,06,037,06037,2702,2,882333,882333,2702,2,882333,882333,9818605,3445076,12304882555,10509869649,100,100,100,100,0.03,0,0.01,0.01
-91331,06,037,06037,103689,23780,23048758,22928415,103689,23780,23048758,22928415,9818605,3445076,12304882555,10509869649,100,100,100,100,1.06,0.69,0.19,0.22
-91335,06,037,06037,74363,24158,17083043,17002131,74363,24158,17083043,17002131,9818605,3445076,12304882555,10509869649,100,100,100,100,0.76,0.7,0.14,0.16
-91340,06,037,06037,34188,8623,8756157,8756157,34188,8623,8756157,8756157,9818605,3445076,12304882555,10509869649,100,100,100,100,0.35,0.25,0.07,0.08
-91342,06,037,06037,91725,24967,143422182,142711370,91725,24967,143422182,142711370,9818605,3445076,12304882555,10509869649,100,100,100,100,0.93,0.72,1.17,1.36
-91343,06,037,06037,60254,17619,15344725,15310097,60254,17619,15344725,15310097,9818605,3445076,12304882555,10509869649,100,100,100,100,0.61,0.51,0.12,0.15
-91344,06,037,06037,51747,17444,43401915,42511968,51747,17444,43401915,42511968,9818605,3445076,12304882555,10509869649,100,100,100,100,0.53,0.51,0.35,0.4
-91345,06,037,06037,18496,5412,8429521,8396240,18496,5412,8429521,8396240,9818605,3445076,12304882555,10509869649,100,100,100,100,0.19,0.16,0.07,0.08
-91350,06,037,06037,33348,11336,43948937,43886336,33348,11336,43948937,43886336,9818605,3445076,12304882555,10509869649,100,100,100,100,0.34,0.33,0.36,0.42
-91351,06,037,06037,32362,10531,24793103,24789457,32362,10531,24793103,24789457,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.31,0.2,0.24
-91352,06,037,06037,47807,12620,30813290,30221660,47807,12620,30813290,30221660,9818605,3445076,12304882555,10509869649,100,100,100,100,0.49,0.37,0.25,0.29
-91354,06,037,06037,28722,9926,22600194,22595656,28722,9926,22600194,22595656,9818605,3445076,12304882555,10509869649,100,100,100,100,0.29,0.29,0.18,0.21
-91355,06,037,06037,32605,13322,40487220,40079320,32605,13322,40487220,40079320,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.39,0.33,0.38
-91356,06,037,06037,29458,12454,18996187,18996187,29458,12454,18996187,18996187,9818605,3445076,12304882555,10509869649,100,100,100,100,0.3,0.36,0.15,0.18
-91360,06,111,06111,42402,15515,37627046,37627046,42402,15515,37627046,37627046,823318,281695,5719683515,4773691889,100,100,100,100,5.15,5.51,0.66,0.79
-91361,06,037,06037,7140,3002,14908526,14079907,20438,8738,88474150,86771992,9818605,3445076,12304882555,10509869649,34.93,34.36,16.85,16.23,0.07,0.09,0.12,0.13
-91361,06,111,06111,13298,5736,73565624,72692085,20438,8738,88474150,86771992,823318,281695,5719683515,4773691889,65.07,65.64,83.15,83.77,1.62,2.04,1.29,1.52
-91362,06,037,06037,1215,414,2677322,2677322,36045,14033,50808113,50808113,9818605,3445076,12304882555,10509869649,3.37,2.95,5.27,5.27,0.01,0.01,0.02,0.03
-91362,06,111,06111,34830,13619,48130791,48130791,36045,14033,50808113,50808113,823318,281695,5719683515,4773691889,96.63,97.05,94.73,94.73,4.23,4.83,0.84,1.01
-91364,06,037,06037,25851,10975,19680220,19665436,25851,10975,19680220,19665436,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.32,0.16,0.19
-91367,06,037,06037,39499,18210,19304376,19272057,39499,18210,19304376,19272057,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.53,0.16,0.18
-91371,06,037,06037,1,1,606883,606883,1,1,606883,606883,9818605,3445076,12304882555,10509869649,100,100,100,100,0,0,0,0.01
-91377,06,111,06111,13811,5297,13712658,13712658,13811,5297,13712658,13712658,823318,281695,5719683515,4773691889,100,100,100,100,1.68,1.88,0.24,0.29
-91381,06,037,06037,20158,6848,97560026,97468870,20158,6848,97560026,97468870,9818605,3445076,12304882555,10509869649,100,100,100,100,0.21,0.2,0.79,0.93
-91384,06,037,06037,29855,7197,290445925,281172396,29855,7197,290445925,281172396,9818605,3445076,12304882555,10509869649,100,100,100,100,0.3,0.21,2.36,2.68
-91387,06,037,06037,40328,13793,128490151,128267971,40328,13793,128490151,128267971,9818605,3445076,12304882555,10509869649,100,100,100,100,0.41,0.4,1.04,1.22
-91390,06,037,06037,19786,6742,373151071,370679105,19786,6742,373151071,370679105,9818605,3445076,12304882555,10509869649,100,100,100,100,0.2,0.2,3.03,3.53
-91401,06,037,06037,39285,15289,8968205,8943621,39285,15289,8968205,8943621,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.44,0.07,0.09
-91402,06,037,06037,69817,19179,9730355,9652884,69817,19179,9730355,9652884,9818605,3445076,12304882555,10509869649,100,100,100,100,0.71,0.56,0.08,0.09
-91403,06,037,06037,23484,12051,9443615,9404990,23484,12051,9443615,9404990,9818605,3445076,12304882555,10509869649,100,100,100,100,0.24,0.35,0.08,0.09
-91405,06,037,06037,51145,17442,8587857,8570051,51145,17442,8587857,8570051,9818605,3445076,12304882555,10509869649,100,100,100,100,0.52,0.51,0.07,0.08
-91406,06,037,06037,51558,18034,21102152,21061927,51558,18034,21102152,21061927,9818605,3445076,12304882555,10509869649,100,100,100,100,0.53,0.52,0.17,0.2
-91411,06,037,06037,24628,9788,5289571,5289571,24628,9788,5289571,5289571,9818605,3445076,12304882555,10509869649,100,100,100,100,0.25,0.28,0.04,0.05
-91423,06,037,06037,30991,15787,11361296,11299941,30991,15787,11361296,11299941,9818605,3445076,12304882555,10509869649,100,100,100,100,0.32,0.46,0.09,0.11
-91436,06,037,06037,14372,5788,14891780,14751608,14372,5788,14891780,14751608,9818605,3445076,12304882555,10509869649,100,100,100,100,0.15,0.17,0.12,0.14
-91501,06,037,06037,20849,8686,10303987,10275378,20849,8686,10303987,10275378,9818605,3445076,12304882555,10509869649,100,100,100,100,0.21,0.25,0.08,0.1
-91502,06,037,06037,11371,5419,3485092,3456372,11371,5419,3485092,3456372,9818605,3445076,12304882555,10509869649,100,100,100,100,0.12,0.16,0.03,0.03
-91504,06,037,06037,24939,9702,12812967,12783282,24939,9702,12812967,12783282,9818605,3445076,12304882555,10509869649,100,100,100,100,0.25,0.28,0.1,0.12
-91505,06,037,06037,30778,13850,13062729,13054296,30778,13850,13062729,13054296,9818605,3445076,12304882555,10509869649,100,100,100,100,0.31,0.4,0.11,0.12
-91506,06,037,06037,18904,7927,6339632,6337375,18904,7927,6339632,6337375,9818605,3445076,12304882555,10509869649,100,100,100,100,0.19,0.23,0.05,0.06
-91601,06,037,06037,37180,17392,6865017,6864519,37180,17392,6865017,6864519,9818605,3445076,12304882555,10509869649,100,100,100,100,0.38,0.5,0.06,0.07
-91602,06,037,06037,17473,9946,5370807,5302419,17473,9946,5370807,5302419,9818605,3445076,12304882555,10509869649,100,100,100,100,0.18,0.29,0.04,0.05
-91604,06,037,06037,29034,15373,13534045,13343410,29034,15373,13534045,13343410,9818605,3445076,12304882555,10509869649,100,100,100,100,0.3,0.45,0.11,0.13
-91605,06,037,06037,56343,16199,14189685,14151285,56343,16199,14189685,14151285,9818605,3445076,12304882555,10509869649,100,100,100,100,0.57,0.47,0.12,0.13
-91606,06,037,06037,44958,15676,8656643,8631179,44958,15676,8656643,8631179,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.46,0.07,0.08
-91607,06,037,06037,27927,13841,6376445,6318261,27927,13841,6376445,6318261,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.4,0.05,0.06
-91608,06,037,06037,0,0,1588900,1551696,0,0,1588900,1551696,9818605,3445076,12304882555,10509869649,0,0,100,100,0,0,0.01,0.01
-91701,06,071,06071,38976,13351,18829141,18829141,38976,13351,18829141,18829141,2035210,699637,52071257852,51947229509,100,100,100,100,1.92,1.91,0.04,0.04
-91702,06,037,06037,59705,16224,442580406,438640351,59705,16224,442580406,438640351,9818605,3445076,12304882555,10509869649,100,100,100,100,0.61,0.47,3.6,4.17
-91706,06,037,06037,76571,18067,37020933,34800666,76571,18067,37020933,34800666,9818605,3445076,12304882555,10509869649,100,100,100,100,0.78,0.52,0.3,0.33
-91708,06,071,06071,3369,381,24821473,24788125,3369,381,24821473,24788125,2035210,699637,52071257852,51947229509,100,100,100,100,0.17,0.05,0.05,0.05
-91709,06,071,06071,74796,23615,88696866,88521406,74796,23615,88696866,88521406,2035210,699637,52071257852,51947229509,100,100,100,100,3.68,3.38,0.17,0.17
-91710,06,071,06071,80358,23009,55706484,55706484,80358,23009,55706484,55706484,2035210,699637,52071257852,51947229509,100,100,100,100,3.95,3.29,0.11,0.11
-91711,06,037,06037,35705,12431,39236210,38876149,35705,12431,39236210,38876149,9818605,3445076,12304882555,10509869649,100,100,100,100,0.36,0.36,0.32,0.37
-91722,06,037,06037,34409,10450,10702808,10698907,34409,10450,10702808,10698907,9818605,3445076,12304882555,10509869649,100,100,100,100,0.35,0.3,0.09,0.1
-91723,06,037,06037,18275,6672,6041128,6008935,18275,6672,6041128,6008935,9818605,3445076,12304882555,10509869649,100,100,100,100,0.19,0.19,0.05,0.06
-91724,06,037,06037,26184,8771,16153581,16146217,26184,8771,16153581,16146217,9818605,3445076,12304882555,10509869649,100,100,100,100,0.27,0.25,0.13,0.15
-91730,06,071,06071,66925,24024,37517224,37487504,66925,24024,37517224,37487504,2035210,699637,52071257852,51947229509,100,100,100,100,3.29,3.43,0.07,0.07
-91731,06,037,06037,29591,8381,10048062,9878514,29591,8381,10048062,9878514,9818605,3445076,12304882555,10509869649,100,100,100,100,0.3,0.24,0.08,0.09
-91732,06,037,06037,61386,15347,12191473,11953508,61386,15347,12191473,11953508,9818605,3445076,12304882555,10509869649,100,100,100,100,0.63,0.45,0.1,0.11
-91733,06,037,06037,43896,10297,18102844,17303562,43896,10297,18102844,17303562,9818605,3445076,12304882555,10509869649,100,100,100,100,0.45,0.3,0.15,0.16
-91737,06,071,06071,24740,8399,21696646,21696646,24740,8399,21696646,21696646,2035210,699637,52071257852,51947229509,100,100,100,100,1.22,1.2,0.04,0.04
-91739,06,071,06071,34794,10890,76139018,76117741,34794,10890,76139018,76117741,2035210,699637,52071257852,51947229509,100,100,100,100,1.71,1.56,0.15,0.15
-91740,06,037,06037,25356,8724,12935986,12892633,25356,8724,12935986,12892633,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.25,0.11,0.12
-91741,06,037,06037,25824,9433,38761214,38377632,25824,9433,38761214,38377632,9818605,3445076,12304882555,10509869649,100,100,100,100,0.26,0.27,0.32,0.37
-91744,06,037,06037,85040,19211,22768245,22764793,85040,19211,22768245,22764793,9818605,3445076,12304882555,10509869649,100,100,100,100,0.87,0.56,0.19,0.22
-91745,06,037,06037,54013,16645,33233421,33172472,54013,16645,33233421,33172472,9818605,3445076,12304882555,10509869649,100,100,100,100,0.55,0.48,0.27,0.32
-91746,06,037,06037,30485,6937,14912865,14425626,30485,6937,14912865,14425626,9818605,3445076,12304882555,10509869649,100,100,100,100,0.31,0.2,0.12,0.14
-91748,06,037,06037,45406,13889,37677926,37472106,45406,13889,37677926,37472106,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.4,0.31,0.36
-91750,06,037,06037,33249,12396,65866419,65354791,33249,12396,65866419,65354791,9818605,3445076,12304882555,10509869649,100,100,100,100,0.34,0.36,0.54,0.62
-91752,06,065,06065,30047,9025,39617643,39075775,30047,9025,39617643,39075775,2189641,800707,18915769995,18664696661,100,100,100,100,1.37,1.13,0.21,0.21
-91754,06,037,06037,32742,11718,11767698,11739576,32742,11718,11767698,11739576,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.34,0.1,0.11
-91755,06,037,06037,27496,9122,8180171,8049940,27496,9122,8180171,8049940,9818605,3445076,12304882555,10509869649,100,100,100,100,0.28,0.26,0.07,0.08
-91759,06,037,06037,66,39,168716871,168714806,476,366,213131276,213129211,9818605,3445076,12304882555,10509869649,13.87,10.66,79.16,79.16,0,0,1.37,1.61
-91759,06,071,06071,410,327,44414405,44414405,476,366,213131276,213129211,2035210,699637,52071257852,51947229509,86.13,89.34,20.84,20.84,0.02,0.05,0.09,0.09
-91761,06,071,06071,56913,16038,75584135,75551607,56913,16038,75584135,75551607,2035210,699637,52071257852,51947229509,100,100,100,100,2.8,2.29,0.15,0.15
-91762,06,071,06071,55857,16769,35286725,35286725,55857,16769,35286725,35286725,2035210,699637,52071257852,51947229509,100,100,100,100,2.74,2.4,0.07,0.07
-91763,06,071,06071,36375,9833,13393075,13393075,36375,9833,13393075,13393075,2035210,699637,52071257852,51947229509,100,100,100,100,1.79,1.41,0.03,0.03
-91764,06,071,06071,54086,15411,20872460,20735380,54086,15411,20872460,20735380,2035210,699637,52071257852,51947229509,100,100,100,100,2.66,2.2,0.04,0.04
-91765,06,037,06037,46457,15547,49014411,49001327,46457,15547,49014411,49001327,9818605,3445076,12304882555,10509869649,100,100,100,100,0.47,0.45,0.4,0.47
-91766,06,037,06037,66902,17574,25273104,25260041,71599,18629,26342970,26329907,9818605,3445076,12304882555,10509869649,93.44,94.34,95.94,95.94,0.68,0.51,0.21,0.24
-91766,06,071,06071,4697,1055,1069866,1069866,71599,18629,26342970,26329907,2035210,699637,52071257852,51947229509,6.56,5.66,4.06,4.06,0.23,0.15,0,0
-91767,06,037,06037,48068,14520,14573620,14557522,48068,14520,14573620,14557522,9818605,3445076,12304882555,10509869649,100,100,100,100,0.49,0.42,0.12,0.14
-91768,06,037,06037,34537,8381,22415291,22402279,34537,8381,22415291,22402279,9818605,3445076,12304882555,10509869649,100,100,100,100,0.35,0.24,0.18,0.21
-91770,06,037,06037,62097,17258,16773129,16634980,62097,17258,16773129,16634980,9818605,3445076,12304882555,10509869649,100,100,100,100,0.63,0.5,0.14,0.16
-91773,06,037,06037,33119,12414,38050864,37043410,33119,12414,38050864,37043410,9818605,3445076,12304882555,10509869649,100,100,100,100,0.34,0.36,0.31,0.35
-91775,06,037,06037,23988,8567,7971786,7934784,23988,8567,7971786,7934784,9818605,3445076,12304882555,10509869649,100,100,100,100,0.24,0.25,0.06,0.08
-91776,06,037,06037,38475,12493,8819870,8818748,38475,12493,8819870,8818748,9818605,3445076,12304882555,10509869649,100,100,100,100,0.39,0.36,0.07,0.08
-91780,06,037,06037,34332,11828,9930899,9917339,34332,11828,9930899,9917339,9818605,3445076,12304882555,10509869649,100,100,100,100,0.35,0.34,0.08,0.09
-91784,06,071,06071,25938,9200,24107868,23605118,25938,9200,24107868,23605118,2035210,699637,52071257852,51947229509,100,100,100,100,1.27,1.31,0.05,0.05
-91786,06,071,06071,51165,19394,23187609,23187609,51165,19394,23187609,23187609,2035210,699637,52071257852,51947229509,100,100,100,100,2.51,2.77,0.04,0.04
-91789,06,037,06037,43079,13246,40612636,40488919,43079,13246,40612636,40488919,9818605,3445076,12304882555,10509869649,100,100,100,100,0.44,0.38,0.33,0.39
-91790,06,037,06037,44907,13151,15020449,14950670,44907,13151,15020449,14950670,9818605,3445076,12304882555,10509869649,100,100,100,100,0.46,0.38,0.12,0.14
-91791,06,037,06037,32414,10612,17239020,17184581,32414,10612,17239020,17184581,9818605,3445076,12304882555,10509869649,100,100,100,100,0.33,0.31,0.14,0.16
-91792,06,037,06037,30854,9504,9952140,9950710,30854,9504,9952140,9950710,9818605,3445076,12304882555,10509869649,100,100,100,100,0.31,0.28,0.08,0.09
-91801,06,037,06037,52735,20521,11286727,11286727,52735,20521,11286727,11286727,9818605,3445076,12304882555,10509869649,100,100,100,100,0.54,0.6,0.09,0.11
-91803,06,037,06037,30322,10385,8461013,8458066,30322,10385,8461013,8458066,9818605,3445076,12304882555,10509869649,100,100,100,100,0.31,0.3,0.07,0.08
-91901,06,073,06073,17403,6720,233208463,231185687,17403,6720,233208463,231185687,3095313,1164786,11721468557,10895120648,100,100,100,100,0.56,0.58,1.99,2.12
-91902,06,073,06073,17653,6183,23318152,22549756,17653,6183,23318152,22549756,3095313,1164786,11721468557,10895120648,100,100,100,100,0.57,0.53,0.2,0.21
-91905,06,073,06073,1700,893,170516716,170458715,1700,893,170516716,170458715,3095313,1164786,11721468557,10895120648,100,100,100,100,0.05,0.08,1.45,1.56
-91906,06,073,06073,3627,1518,275176610,273324669,3627,1518,275176610,273324669,3095313,1164786,11721468557,10895120648,100,100,100,100,0.12,0.13,2.35,2.51
-91910,06,073,06073,75802,27557,31771163,31684276,75802,27557,31771163,31684276,3095313,1164786,11721468557,10895120648,100,100,100,100,2.45,2.37,0.27,0.29
-91911,06,073,06073,82999,25616,30815225,30333860,82999,25616,30815225,30333860,3095313,1164786,11721468557,10895120648,100,100,100,100,2.68,2.2,0.26,0.28
-91913,06,073,06073,40971,12865,26505158,26413863,40971,12865,26505158,26413863,3095313,1164786,11721468557,10895120648,100,100,100,100,1.32,1.1,0.23,0.24
-91914,06,073,06073,15448,4572,16528132,16300235,15448,4572,16528132,16300235,3095313,1164786,11721468557,10895120648,100,100,100,100,0.5,0.39,0.14,0.15
-91915,06,073,06073,24659,7487,21375779,19700021,24659,7487,21375779,19700021,3095313,1164786,11721468557,10895120648,100,100,100,100,0.8,0.64,0.18,0.18
-91916,06,073,06073,1622,793,103034401,103034401,1622,793,103034401,103034401,3095313,1164786,11721468557,10895120648,100,100,100,100,0.05,0.07,0.88,0.95
-91917,06,073,06073,992,320,93800045,93800045,992,320,93800045,93800045,3095313,1164786,11721468557,10895120648,100,100,100,100,0.03,0.03,0.8,0.86
-91931,06,073,06073,592,288,37465786,37465786,592,288,37465786,37465786,3095313,1164786,11721468557,10895120648,100,100,100,100,0.02,0.02,0.32,0.34
-91932,06,073,06073,25718,9883,7974318,6509768,25718,9883,7974318,6509768,3095313,1164786,11721468557,10895120648,100,100,100,100,0.83,0.85,0.07,0.06
-91934,06,073,06073,737,436,121045920,121027388,737,436,121045920,121027388,3095313,1164786,11721468557,10895120648,100,100,100,100,0.02,0.04,1.03,1.11
-91935,06,073,06073,8624,3101,251630813,250190793,8624,3101,251630813,250190793,3095313,1164786,11721468557,10895120648,100,100,100,100,0.28,0.27,2.15,2.3
-91941,06,073,06073,31779,12856,20907284,20879219,31779,12856,20907284,20879219,3095313,1164786,11721468557,10895120648,100,100,100,100,1.03,1.1,0.18,0.19
-91942,06,073,06073,38069,18285,15192192,15114012,38069,18285,15192192,15114012,3095313,1164786,11721468557,10895120648,100,100,100,100,1.23,1.57,0.13,0.14
-91945,06,073,06073,25460,8915,10169406,10169406,25460,8915,10169406,10169406,3095313,1164786,11721468557,10895120648,100,100,100,100,0.82,0.77,0.09,0.09
-91948,06,073,06073,78,215,51539711,51396049,78,215,51539711,51396049,3095313,1164786,11721468557,10895120648,100,100,100,100,0,0.02,0.44,0.47
-91950,06,073,06073,60322,17167,20747733,19680919,60322,17167,20747733,19680919,3095313,1164786,11721468557,10895120648,100,100,100,100,1.95,1.47,0.18,0.18
-91962,06,073,06073,1646,804,133722486,133722486,1646,804,133722486,133722486,3095313,1164786,11721468557,10895120648,100,100,100,100,0.05,0.07,1.14,1.23
-91963,06,073,06073,1118,413,87130680,87130680,1118,413,87130680,87130680,3095313,1164786,11721468557,10895120648,100,100,100,100,0.04,0.04,0.74,0.8
-91977,06,073,06073,58368,19167,25044841,25033285,58368,19167,25044841,25033285,3095313,1164786,11721468557,10895120648,100,100,100,100,1.89,1.65,0.21,0.23
-91978,06,073,06073,8896,3159,17531088,16572908,8896,3159,17531088,16572908,3095313,1164786,11721468557,10895120648,100,100,100,100,0.29,0.27,0.15,0.15
-91980,06,073,06073,165,49,9275957,9275957,165,49,9275957,9275957,3095313,1164786,11721468557,10895120648,100,100,100,100,0.01,0,0.08,0.09
-92003,06,073,06073,4746,1995,45683215,44881644,4746,1995,45683215,44881644,3095313,1164786,11721468557,10895120648,100,100,100,100,0.15,0.17,0.39,0.41
-92004,06,025,06025,5,22,1006947617,1006947617,3881,3288,1797855828,1796320407,174528,56067,11607600466,10817352524,0.13,0.67,56.01,56.06,0,0.04,8.67,9.31
-92004,06,073,06073,3876,3266,790908211,789372790,3881,3288,1797855828,1796320407,3095313,1164786,11721468557,10895120648,99.87,99.33,43.99,43.94,0.13,0.28,6.75,7.25
-92007,06,073,06073,10429,4765,7503442,6330084,10429,4765,7503442,6330084,3095313,1164786,11721468557,10895120648,100,100,100,100,0.34,0.41,0.06,0.06
-92008,06,073,06073,27649,12799,30573749,26696113,27649,12799,30573749,26696113,3095313,1164786,11721468557,10895120648,100,100,100,100,0.89,1.1,0.26,0.25
-92009,06,073,06073,40747,16059,33648860,32960924,40747,16059,33648860,32960924,3095313,1164786,11721468557,10895120648,100,100,100,100,1.32,1.38,0.29,0.3
-92010,06,073,06073,14382,5711,21282121,20925397,14382,5711,21282121,20925397,3095313,1164786,11721468557,10895120648,100,100,100,100,0.46,0.49,0.18,0.19
-92011,06,073,06073,22405,10036,18184276,17611529,22405,10036,18184276,17611529,3095313,1164786,11721468557,10895120648,100,100,100,100,0.72,0.86,0.16,0.16
-92014,06,073,06073,13154,6755,16843256,15615216,13154,6755,16843256,15615216,3095313,1164786,11721468557,10895120648,100,100,100,100,0.42,0.58,0.14,0.14
-92019,06,073,06073,42598,15838,71858827,69540477,42598,15838,71858827,69540477,3095313,1164786,11721468557,10895120648,100,100,100,100,1.38,1.36,0.61,0.64
-92020,06,073,06073,57767,20894,28841078,28841078,57767,20894,28841078,28841078,3095313,1164786,11721468557,10895120648,100,100,100,100,1.87,1.79,0.25,0.26
-92021,06,073,06073,65068,23881,77818150,77254882,65068,23881,77818150,77254882,3095313,1164786,11721468557,10895120648,100,100,100,100,2.1,2.05,0.66,0.71
-92024,06,073,06073,49121,20991,45659826,43710390,49121,20991,45659826,43710390,3095313,1164786,11721468557,10895120648,100,100,100,100,1.59,1.8,0.39,0.4
-92025,06,073,06073,49978,15781,58248837,57076472,49978,15781,58248837,57076472,3095313,1164786,11721468557,10895120648,100,100,100,100,1.61,1.35,0.5,0.52
-92026,06,073,06073,48922,18178,96377487,96377487,48922,18178,96377487,96377487,3095313,1164786,11721468557,10895120648,100,100,100,100,1.58,1.56,0.82,0.88
-92027,06,073,06073,53881,17051,164588274,163333206,53881,17051,164588274,163333206,3095313,1164786,11721468557,10895120648,100,100,100,100,1.74,1.46,1.4,1.5
-92028,06,065,06065,49,12,2313698,2313698,46239,17325,245522969,244405303,2189641,800707,18915769995,18664696661,0.11,0.07,0.94,0.95,0,0,0.01,0.01
-92028,06,073,06073,46190,17313,243209271,242091605,46239,17325,245522969,244405303,3095313,1164786,11721468557,10895120648,99.89,99.93,99.06,99.05,1.49,1.49,2.07,2.22
-92029,06,073,06073,19021,7364,62427223,61242380,19021,7364,62427223,61242380,3095313,1164786,11721468557,10895120648,100,100,100,100,0.61,0.63,0.53,0.56
-92036,06,073,06073,3440,2227,462978160,462868130,3440,2227,462978160,462868130,3095313,1164786,11721468557,10895120648,100,100,100,100,0.11,0.19,3.95,4.25
-92037,06,073,06073,46781,20162,39098651,33871798,46781,20162,39098651,33871798,3095313,1164786,11721468557,10895120648,100,100,100,100,1.51,1.73,0.33,0.31
-92040,06,073,06073,41281,15610,172797073,166223863,41281,15610,172797073,166223863,3095313,1164786,11721468557,10895120648,100,100,100,100,1.33,1.34,1.47,1.53
-92054,06,073,06073,40375,17924,33071354,30931473,40375,17924,33071354,30931473,3095313,1164786,11721468557,10895120648,100,100,100,100,1.3,1.54,0.28,0.28
-92055,06,073,06073,15655,388,255039574,255039574,15655,388,255039574,255039574,3095313,1164786,11721468557,10895120648,100,100,100,100,0.51,0.03,2.18,2.34
-92056,06,073,06073,51835,20128,32242249,32145434,51835,20128,32242249,32145434,3095313,1164786,11721468557,10895120648,100,100,100,100,1.67,1.73,0.28,0.3
-92057,06,073,06073,54096,18860,40023291,39077390,54096,18860,40023291,39077390,3095313,1164786,11721468557,10895120648,100,100,100,100,1.75,1.62,0.34,0.36
-92058,06,073,06073,42436,14431,77685344,73079229,42436,14431,77685344,73079229,3095313,1164786,11721468557,10895120648,100,100,100,100,1.37,1.24,0.66,0.67
-92059,06,073,06073,1618,569,72142986,72142986,1618,569,72142986,72142986,3095313,1164786,11721468557,10895120648,100,100,100,100,0.05,0.05,0.62,0.66
-92060,06,073,06073,218,217,185682214,180321664,218,217,185682214,180321664,3095313,1164786,11721468557,10895120648,100,100,100,100,0.01,0.02,1.58,1.66
-92061,06,073,06073,2499,1097,102841863,102841863,2499,1097,102841863,102841863,3095313,1164786,11721468557,10895120648,100,100,100,100,0.08,0.09,0.88,0.94
-92064,06,073,06073,47904,16752,106301730,106078295,47904,16752,106301730,106078295,3095313,1164786,11721468557,10895120648,100,100,100,100,1.55,1.44,0.91,0.97
-92065,06,073,06073,35414,12708,428961978,427786922,35414,12708,428961978,427786922,3095313,1164786,11721468557,10895120648,100,100,100,100,1.14,1.09,3.66,3.93
-92066,06,073,06073,378,211,51378283,51378283,378,211,51378283,51378283,3095313,1164786,11721468557,10895120648,100,100,100,100,0.01,0.02,0.44,0.47
-92067,06,073,06073,9535,3990,58521219,58320346,9535,3990,58521219,58320346,3095313,1164786,11721468557,10895120648,100,100,100,100,0.31,0.34,0.5,0.54
-92069,06,073,06073,46369,14538,42612345,42612345,46369,14538,42612345,42612345,3095313,1164786,11721468557,10895120648,100,100,100,100,1.5,1.25,0.36,0.39
-92070,06,073,06073,1245,600,353487482,344918806,1245,600,353487482,344918806,3095313,1164786,11721468557,10895120648,100,100,100,100,0.04,0.05,3.02,3.17
-92071,06,073,06073,53422,20052,46009726,45148259,53422,20052,46009726,45148259,3095313,1164786,11721468557,10895120648,100,100,100,100,1.73,1.72,0.39,0.41
-92075,06,073,06073,12056,6163,10396372,9177835,12056,6163,10396372,9177835,3095313,1164786,11721468557,10895120648,100,100,100,100,0.39,0.53,0.09,0.08
-92078,06,073,06073,42906,17034,43528331,43252983,42906,17034,43528331,43252983,3095313,1164786,11721468557,10895120648,100,100,100,100,1.39,1.46,0.37,0.4
-92081,06,073,06073,27404,10840,22933235,22933235,27404,10840,22933235,22933235,3095313,1164786,11721468557,10895120648,100,100,100,100,0.89,0.93,0.2,0.21
-92082,06,073,06073,19037,6711,318443651,318248357,19037,6711,318443651,318248357,3095313,1164786,11721468557,10895120648,100,100,100,100,0.62,0.58,2.72,2.92
-92083,06,073,06073,36975,10982,14429010,14429010,36975,10982,14429010,14429010,3095313,1164786,11721468557,10895120648,100,100,100,100,1.19,0.94,0.12,0.13
-92084,06,073,06073,47654,15562,67831242,67781555,47654,15562,67831242,67781555,3095313,1164786,11721468557,10895120648,100,100,100,100,1.54,1.34,0.58,0.62
-92086,06,073,06073,1573,846,572059585,570899193,1573,846,572059585,570899193,3095313,1164786,11721468557,10895120648,100,100,100,100,0.05,0.07,4.88,5.24
-92091,06,073,06073,1048,620,1697779,1696988,1048,620,1697779,1696988,3095313,1164786,11721468557,10895120648,100,100,100,100,0.03,0.05,0.01,0.02
-92101,06,073,06073,37095,25169,12748437,12212329,37095,25169,12748437,12212329,3095313,1164786,11721468557,10895120648,100,100,100,100,1.2,2.16,0.11,0.11
-92102,06,073,06073,43267,14987,11988531,11988531,43267,14987,11988531,11988531,3095313,1164786,11721468557,10895120648,100,100,100,100,1.4,1.29,0.1,0.11
-92103,06,073,06073,31066,19080,9758123,9758123,31066,19080,9758123,9758123,3095313,1164786,11721468557,10895120648,100,100,100,100,1,1.64,0.08,0.09
-92104,06,073,06073,44414,22325,9821555,9814957,44414,22325,9821555,9814957,3095313,1164786,11721468557,10895120648,100,100,100,100,1.43,1.92,0.08,0.09
-92105,06,073,06073,69813,21744,14426494,14426494,69813,21744,14426494,14426494,3095313,1164786,11721468557,10895120648,100,100,100,100,2.26,1.87,0.12,0.13
-92106,06,073,06073,19330,8322,16455710,14611356,19330,8322,16455710,14611356,3095313,1164786,11721468557,10895120648,100,100,100,100,0.62,0.71,0.14,0.13
-92107,06,073,06073,28651,14493,9340510,8148687,28651,14493,9340510,8148687,3095313,1164786,11721468557,10895120648,100,100,100,100,0.93,1.24,0.08,0.07
-92108,06,073,06073,18858,11601,11401844,11094650,18858,11601,11401844,11094650,3095313,1164786,11721468557,10895120648,100,100,100,100,0.61,1,0.1,0.1
-92109,06,073,06073,45787,26216,30779916,19673788,45787,26216,30779916,19673788,3095313,1164786,11721468557,10895120648,100,100,100,100,1.48,2.25,0.26,0.18
-92110,06,073,06073,25341,11426,12783884,12568206,25341,11426,12783884,12568206,3095313,1164786,11721468557,10895120648,100,100,100,100,0.82,0.98,0.11,0.12
-92111,06,073,06073,45096,17268,21910604,21910604,45096,17268,21910604,21910604,3095313,1164786,11721468557,10895120648,100,100,100,100,1.46,1.48,0.19,0.2
-92113,06,073,06073,56066,13196,13676394,13647793,56066,13196,13676394,13647793,3095313,1164786,11721468557,10895120648,100,100,100,100,1.81,1.13,0.12,0.13
-92114,06,073,06073,65433,17930,21336471,21336471,65433,17930,21336471,21336471,3095313,1164786,11721468557,10895120648,100,100,100,100,2.11,1.54,0.18,0.2
-92115,06,073,06073,58560,22754,16914627,16846299,58560,22754,16914627,16846299,3095313,1164786,11721468557,10895120648,100,100,100,100,1.89,1.95,0.14,0.15
-92116,06,073,06073,31680,17122,8980826,8980826,31680,17122,8980826,8980826,3095313,1164786,11721468557,10895120648,100,100,100,100,1.02,1.47,0.08,0.08
-92117,06,073,06073,51332,21466,22756330,22756330,51332,21466,22756330,22756330,3095313,1164786,11721468557,10895120648,100,100,100,100,1.66,1.84,0.19,0.21
-92118,06,073,06073,23575,9633,24127708,20073884,23575,9633,24127708,20073884,3095313,1164786,11721468557,10895120648,100,100,100,100,0.76,0.83,0.21,0.18
-92119,06,073,06073,23057,9853,18389739,17741735,23057,9853,18389739,17741735,3095313,1164786,11721468557,10895120648,100,100,100,100,0.74,0.85,0.16,0.16
-92120,06,073,06073,26317,11411,17629645,17237652,26317,11411,17629645,17237652,3095313,1164786,11721468557,10895120648,100,100,100,100,0.85,0.98,0.15,0.16
-92121,06,073,06073,4179,1752,31805186,31731008,4179,1752,31805186,31731008,3095313,1164786,11721468557,10895120648,100,100,100,100,0.14,0.15,0.27,0.29
-92122,06,073,06073,43728,21058,41277715,41256867,43728,21058,41277715,41256867,3095313,1164786,11721468557,10895120648,100,100,100,100,1.41,1.81,0.35,0.38
-92123,06,073,06073,26823,10760,21148247,21148247,26823,10760,21148247,21148247,3095313,1164786,11721468557,10895120648,100,100,100,100,0.87,0.92,0.18,0.19
-92124,06,073,06073,30443,11445,27292841,27147056,30443,11445,27292841,27147056,3095313,1164786,11721468557,10895120648,100,100,100,100,0.98,0.98,0.23,0.25
-92126,06,073,06073,73343,23820,32816606,32816606,73343,23820,32816606,32816606,3095313,1164786,11721468557,10895120648,100,100,100,100,2.37,2.05,0.28,0.3
-92127,06,073,06073,39337,13748,58512372,57139789,39337,13748,58512372,57139789,3095313,1164786,11721468557,10895120648,100,100,100,100,1.27,1.18,0.5,0.52
-92128,06,073,06073,47490,21265,28941850,28920353,47490,21265,28941850,28920353,3095313,1164786,11721468557,10895120648,100,100,100,100,1.53,1.83,0.25,0.27
-92129,06,073,06073,51536,17439,36457658,36446661,51536,17439,36457658,36446661,3095313,1164786,11721468557,10895120648,100,100,100,100,1.66,1.5,0.31,0.33
-92130,06,073,06073,48940,18272,47814802,47751334,48940,18272,47814802,47751334,3095313,1164786,11721468557,10895120648,100,100,100,100,1.58,1.57,0.41,0.44
-92131,06,073,06073,32787,11832,65600464,65044859,32787,11832,65600464,65044859,3095313,1164786,11721468557,10895120648,100,100,100,100,1.06,1.02,0.56,0.6
-92132,06,073,06073,0,0,88677,88677,0,0,88677,88677,3095313,1164786,11721468557,10895120648,0,0,100,100,0,0,0,0
-92134,06,073,06073,198,13,479583,479583,198,13,479583,479583,3095313,1164786,11721468557,10895120648,100,100,100,100,0.01,0,0,0
-92135,06,073,06073,571,0,1246194,1238371,571,0,1246194,1238371,3095313,1164786,11721468557,10895120648,100,0,100,100,0.02,0,0.01,0.01
-92139,06,073,06073,35125,10629,9392108,9392108,35125,10629,9392108,9392108,3095313,1164786,11721468557,10895120648,100,100,100,100,1.13,0.91,0.08,0.09
-92140,06,073,06073,3435,7,1736166,1654884,3435,7,1736166,1654884,3095313,1164786,11721468557,10895120648,100,100,100,100,0.11,0,0.01,0.02
-92145,06,073,06073,1449,407,8673008,8673008,1449,407,8673008,8673008,3095313,1164786,11721468557,10895120648,100,100,100,100,0.05,0.03,0.07,0.08
-92147,06,073,06073,559,1,249799,249799,559,1,249799,249799,3095313,1164786,11721468557,10895120648,100,100,100,100,0.02,0,0,0
-92154,06,073,06073,79708,21206,97703995,95724135,79708,21206,97703995,95724135,3095313,1164786,11721468557,10895120648,100,100,100,100,2.58,1.82,0.83,0.88
-92155,06,073,06073,550,0,576863,576863,550,0,576863,576863,3095313,1164786,11721468557,10895120648,100,0,100,100,0.02,0,0,0.01
-92173,06,073,06073,29429,7870,13634617,13102503,29429,7870,13634617,13102503,3095313,1164786,11721468557,10895120648,100,100,100,100,0.95,0.68,0.12,0.12
-92201,06,065,06065,61827,22207,58667257,58667257,61827,22207,58667257,58667257,2189641,800707,18915769995,18664696661,100,100,100,100,2.82,2.77,0.31,0.31
-92203,06,065,06065,25605,11667,45348802,45348802,25605,11667,45348802,45348802,2189641,800707,18915769995,18664696661,100,100,100,100,1.17,1.46,0.24,0.24
-92210,06,065,06065,4677,4830,34294366,33811381,4677,4830,34294366,33811381,2189641,800707,18915769995,18664696661,100,100,100,100,0.21,0.6,0.18,0.18
-92211,06,065,06065,24294,19948,39351083,38994202,24294,19948,39351083,38994202,2189641,800707,18915769995,18664696661,100,100,100,100,1.11,2.49,0.21,0.21
-92220,06,065,06065,31638,13061,321659435,321659435,31638,13061,321659435,321659435,2189641,800707,18915769995,18664696661,100,100,100,100,1.44,1.63,1.7,1.72
-92222,06,025,06025,45,25,4094711,4094711,45,25,4094711,4094711,174528,56067,11607600466,10817352524,100,100,100,100,0.03,0.04,0.04,0.04
-92223,06,065,06065,43605,15916,112349093,112349093,43605,15916,112349093,112349093,2189641,800707,18915769995,18664696661,100,100,100,100,1.99,1.99,0.59,0.6
-92225,06,025,06025,21,49,7133471,7011934,24310,8288,1561506243,1551578846,174528,56067,11607600466,10817352524,0.09,0.59,0.46,0.45,0.01,0.09,0.06,0.06
-92225,06,065,06065,24289,8239,1554372772,1544566912,24310,8288,1561506243,1551578846,2189641,800707,18915769995,18664696661,99.91,99.41,99.54,99.55,1.11,1.03,8.22,8.28
-92227,06,025,06025,26234,8709,1437270831,1400818602,26234,8709,1437270831,1400818602,174528,56067,11607600466,10817352524,100,100,100,100,15.03,15.53,12.38,12.95
-92230,06,065,06065,2550,938,39619253,39227350,2550,938,39619253,39227350,2189641,800707,18915769995,18664696661,100,100,100,100,0.12,0.12,0.21,0.21
-92231,06,025,06025,39073,10826,147857937,147857937,39073,10826,147857937,147857937,174528,56067,11607600466,10817352524,100,100,100,100,22.39,19.31,1.27,1.37
-92233,06,025,06025,8099,1270,580189683,390193486,8099,1270,580189683,390193486,174528,56067,11607600466,10817352524,100,100,100,100,4.64,2.27,5,3.61
-92234,06,065,06065,51151,20958,41413525,40748005,51151,20958,41413525,40748005,2189641,800707,18915769995,18664696661,100,100,100,100,2.34,2.62,0.22,0.22
-92236,06,065,06065,41083,9968,56675825,56675825,41083,9968,56675825,56675825,2189641,800707,18915769995,18664696661,100,100,100,100,1.88,1.24,0.3,0.3
-92239,06,065,06065,223,171,371349379,371315907,223,171,371349379,371315907,2189641,800707,18915769995,18664696661,100,100,100,100,0.01,0.02,1.96,1.99
-92240,06,065,06065,34722,14481,95615408,94744237,34722,14481,95615408,94744237,2189641,800707,18915769995,18664696661,100,100,100,100,1.59,1.81,0.51,0.51
-92241,06,065,06065,8803,6283,357983824,357735466,8803,6283,357983824,357735466,2189641,800707,18915769995,18664696661,100,100,100,100,0.4,0.78,1.89,1.92
-92242,06,071,06071,1539,1681,84060178,81078293,1539,1681,84060178,81078293,2035210,699637,52071257852,51947229509,100,100,100,100,0.08,0.24,0.16,0.16
-92243,06,025,06025,48030,16217,285782229,285619001,48030,16217,285782229,285619001,174528,56067,11607600466,10817352524,100,100,100,100,27.52,28.92,2.46,2.64
-92249,06,025,06025,7334,2006,55571652,55571652,7334,2006,55571652,55571652,174528,56067,11607600466,10817352524,100,100,100,100,4.2,3.58,0.48,0.51
-92250,06,025,06025,8285,2828,1074815585,1074803683,8285,2828,1074815585,1074803683,174528,56067,11607600466,10817352524,100,100,100,100,4.75,5.04,9.26,9.94
-92251,06,025,06025,21583,5572,516854205,516794503,21583,5572,516854205,516794503,174528,56067,11607600466,10817352524,100,100,100,100,12.37,9.94,4.45,4.78
-92252,06,071,06071,9647,5343,232864515,232864515,9647,5343,232864515,232864515,2035210,699637,52071257852,51947229509,100,100,100,100,0.47,0.76,0.45,0.45
-92253,06,065,06065,37262,23339,91707396,90562562,37262,23339,91707396,90562562,2189641,800707,18915769995,18664696661,100,100,100,100,1.7,2.91,0.48,0.49
-92254,06,065,06065,12768,3093,126937367,120923509,12768,3093,126937367,120923509,2189641,800707,18915769995,18664696661,100,100,100,100,0.58,0.39,0.67,0.65
-92256,06,071,06071,3588,2030,202140548,202140548,3588,2030,202140548,202140548,2035210,699637,52071257852,51947229509,100,100,100,100,0.18,0.29,0.39,0.39
-92257,06,025,06025,2326,1832,2124236548,1926668603,2326,1832,2124236548,1926668603,174528,56067,11607600466,10817352524,100,100,100,100,1.33,3.27,18.3,17.81
-92258,06,065,06065,861,483,27385636,27385636,861,483,27385636,27385636,2189641,800707,18915769995,18664696661,100,100,100,100,0.04,0.06,0.14,0.15
-92259,06,025,06025,390,526,839509108,839509108,390,526,839509108,839509108,174528,56067,11607600466,10817352524,100,100,100,100,0.22,0.94,7.23,7.76
-92260,06,065,06065,31753,22799,73941143,73550542,31753,22799,73941143,73550542,2189641,800707,18915769995,18664696661,100,100,100,100,1.45,2.85,0.39,0.39
-92262,06,065,06065,26179,18306,95022254,94913381,26179,18306,95022254,94913381,2189641,800707,18915769995,18664696661,100,100,100,100,1.2,2.29,0.5,0.51
-92264,06,065,06065,19383,17140,136002847,135416980,19383,17140,136002847,135416980,2189641,800707,18915769995,18664696661,100,100,100,100,0.89,2.14,0.72,0.73
-92266,06,025,06025,234,293,845970832,844205809,234,293,845970832,844205809,174528,56067,11607600466,10817352524,100,100,100,100,0.13,0.52,7.29,7.8
-92267,06,071,06071,126,144,45182854,42219456,126,144,45182854,42219456,2035210,699637,52071257852,51947229509,100,100,100,100,0.01,0.02,0.09,0.08
-92268,06,071,06071,574,482,209375318,209375318,574,482,209375318,209375318,2035210,699637,52071257852,51947229509,100,100,100,100,0.03,0.07,0.4,0.4
-92270,06,065,06065,17220,14244,70089231,69080773,17220,14244,70089231,69080773,2189641,800707,18915769995,18664696661,100,100,100,100,0.79,1.78,0.37,0.37
-92273,06,025,06025,1823,583,18023410,18008987,1823,583,18023410,18008987,174528,56067,11607600466,10817352524,100,100,100,100,1.04,1.04,0.16,0.17
-92274,06,025,06025,3950,1928,259284242,174774411,19801,5980,548090031,463283412,174528,56067,11607600466,10817352524,19.95,32.24,47.31,37.73,2.26,3.44,2.23,1.62
-92274,06,065,06065,15851,4052,288805789,288509001,19801,5980,548090031,463283412,2189641,800707,18915769995,18664696661,80.05,67.76,52.69,62.27,0.72,0.51,1.53,1.55
-92275,06,025,06025,1506,986,423149944,161556469,1506,986,423149944,161556469,174528,56067,11607600466,10817352524,100,100,100,100,0.86,1.76,3.65,1.49
-92276,06,065,06065,7585,3552,75942945,75942945,7585,3552,75942945,75942945,2189641,800707,18915769995,18664696661,100,100,100,100,0.35,0.44,0.4,0.41
-92277,06,065,06065,6,7,21870479,21870479,23911,11910,3613024451,3612971124,2189641,800707,18915769995,18664696661,0.03,0.06,0.61,0.61,0,0,0.12,0.12
-92277,06,071,06071,23905,11903,3591153972,3591100645,23911,11910,3613024451,3612971124,2035210,699637,52071257852,51947229509,99.97,99.94,99.39,99.39,1.17,1.7,6.9,6.91
-92278,06,071,06071,3846,141,2073334,2073334,3846,141,2073334,2073334,2035210,699637,52071257852,51947229509,100,100,100,100,0.19,0.02,0,0
-92280,06,071,06071,14,17,430175691,430175691,14,17,430175691,430175691,2035210,699637,52071257852,51947229509,100,100,100,100,0,0,0.83,0.83
-92281,06,025,06025,2432,746,36940498,36940498,2432,746,36940498,36940498,174528,56067,11607600466,10817352524,100,100,100,100,1.39,1.33,0.32,0.34
-92282,06,065,06065,1239,607,189656965,184159720,1239,607,189656965,184159720,2189641,800707,18915769995,18664696661,100,100,100,100,0.06,0.08,1,0.99
-92283,06,025,06025,3158,1649,1943967963,1925975513,3158,1649,1943967963,1925975513,174528,56067,11607600466,10817352524,100,100,100,100,1.81,2.94,16.75,17.8
-92284,06,071,06071,25095,11943,285498917,285498917,25095,11943,285498917,285498917,2035210,699637,52071257852,51947229509,100,100,100,100,1.23,1.71,0.55,0.55
-92285,06,071,06071,2632,2517,442938529,442938529,2632,2517,442938529,442938529,2035210,699637,52071257852,51947229509,100,100,100,100,0.13,0.36,0.85,0.85
-92301,06,071,06071,32725,9470,441599761,441599761,32725,9470,441599761,441599761,2035210,699637,52071257852,51947229509,100,100,100,100,1.61,1.35,0.85,0.85
-92304,06,071,06071,17,23,106622766,106622766,17,23,106622766,106622766,2035210,699637,52071257852,51947229509,100,100,100,100,0,0,0.2,0.21
-92305,06,071,06071,535,629,258971564,258935678,535,629,258971564,258935678,2035210,699637,52071257852,51947229509,100,100,100,100,0.03,0.09,0.5,0.5
-92307,06,071,06071,37630,14125,440434073,439979786,37630,14125,440434073,439979786,2035210,699637,52071257852,51947229509,100,100,100,100,1.85,2.02,0.85,0.85
-92308,06,071,06071,39837,15613,242436886,241377618,39837,15613,242436886,241377618,2035210,699637,52071257852,51947229509,100,100,100,100,1.96,2.23,0.47,0.46
-92309,06,071,06071,763,317,414966003,414966003,763,317,414966003,414966003,2035210,699637,52071257852,51947229509,100,100,100,100,0.04,0.05,0.8,0.8
-92310,06,071,06071,8845,2487,7978142,7978142,8845,2487,7978142,7978142,2035210,699637,52071257852,51947229509,100,100,100,100,0.43,0.36,0.02,0.02
-92311,06,071,06071,31894,13151,643323963,643300849,31894,13151,643323963,643300849,2035210,699637,52071257852,51947229509,100,100,100,100,1.57,1.88,1.24,1.24
-92313,06,071,06071,12025,4645,9031618,9031618,12025,4645,9031618,9031618,2035210,699637,52071257852,51947229509,100,100,100,100,0.59,0.66,0.02,0.02
-92314,06,071,06071,10162,9153,79870136,79825161,10162,9153,79870136,79825161,2035210,699637,52071257852,51947229509,100,100,100,100,0.5,1.31,0.15,0.15
-92315,06,071,06071,5094,10066,33473232,32920520,5094,10066,33473232,32920520,2035210,699637,52071257852,51947229509,100,100,100,100,0.25,1.44,0.06,0.06
-92316,06,071,06071,30830,7527,28485146,28471052,30830,7527,28485146,28471052,2035210,699637,52071257852,51947229509,100,100,100,100,1.51,1.08,0.05,0.05
-92320,06,065,06065,7788,3654,27723531,27723531,7788,3654,27723531,27723531,2189641,800707,18915769995,18664696661,100,100,100,100,0.36,0.46,0.15,0.15
-92321,06,071,06071,1522,1393,16972133,16848477,1522,1393,16972133,16848477,2035210,699637,52071257852,51947229509,100,100,100,100,0.07,0.2,0.03,0.03
-92322,06,071,06071,1257,886,7748282,7748282,1257,886,7748282,7748282,2035210,699637,52071257852,51947229509,100,100,100,100,0.06,0.13,0.01,0.01
-92324,06,065,06065,886,310,28245195,28245195,56505,17685,78280851,76425832,2189641,800707,18915769995,18664696661,1.57,1.75,36.08,36.96,0.04,0.04,0.15,0.15
-92324,06,071,06071,55619,17375,50035656,48180637,56505,17685,78280851,76425832,2035210,699637,52071257852,51947229509,98.43,98.25,63.92,63.04,2.73,2.48,0.1,0.09
-92325,06,071,06071,9391,6309,26496305,26133660,9391,6309,26496305,26133660,2035210,699637,52071257852,51947229509,100,100,100,100,0.46,0.9,0.05,0.05
-92327,06,071,06071,632,369,73724216,73100942,632,369,73724216,73100942,2035210,699637,52071257852,51947229509,100,100,100,100,0.03,0.05,0.14,0.14
-92328,06,027,06027,445,331,1828881348,1815795755,445,331,1828881348,1815795755,18546,9478,26487562274,26368354217,100,100,100,100,2.4,3.49,6.9,6.89
-92332,06,071,06071,65,93,2317385871,2317385871,65,93,2317385871,2317385871,2035210,699637,52071257852,51947229509,100,100,100,100,0,0.01,4.45,4.46
-92333,06,071,06071,472,992,10806936,10806936,472,992,10806936,10806936,2035210,699637,52071257852,51947229509,100,100,100,100,0.02,0.14,0.02,0.02
-92335,06,071,06071,95397,24246,44947371,44875990,95397,24246,44947371,44875990,2035210,699637,52071257852,51947229509,100,100,100,100,4.69,3.47,0.09,0.09
-92336,06,071,06071,88419,23271,64661745,64412146,88419,23271,64661745,64412146,2035210,699637,52071257852,51947229509,100,100,100,100,4.34,3.33,0.12,0.12
-92337,06,071,06071,37849,9851,36072725,36072725,37849,9851,36072725,36072725,2035210,699637,52071257852,51947229509,100,100,100,100,1.86,1.41,0.07,0.07
-92338,06,071,06071,12,5,625042067,625042067,12,5,625042067,625042067,2035210,699637,52071257852,51947229509,100,100,100,100,0,0,1.2,1.2
-92339,06,071,06071,885,716,27378444,27378444,885,716,27378444,27378444,2035210,699637,52071257852,51947229509,100,100,100,100,0.04,0.1,0.05,0.05
-92341,06,071,06071,410,1096,18343968,18302549,410,1096,18343968,18302549,2035210,699637,52071257852,51947229509,100,100,100,100,0.02,0.16,0.04,0.04
-92342,06,071,06071,6379,3107,275089663,273172272,6379,3107,275089663,273172272,2035210,699637,52071257852,51947229509,100,100,100,100,0.31,0.44,0.53,0.53
-92344,06,071,06071,20769,6421,99727163,99727163,20769,6421,99727163,99727163,2035210,699637,52071257852,51947229509,100,100,100,100,1.02,0.92,0.19,0.19
-92345,06,071,06071,78715,25758,213039752,212434496,78715,25758,213039752,212434496,2035210,699637,52071257852,51947229509,100,100,100,100,3.87,3.68,0.41,0.41
-92346,06,071,06071,54923,17999,66144171,65812826,54923,17999,66144171,65812826,2035210,699637,52071257852,51947229509,100,100,100,100,2.7,2.57,0.13,0.13
-92347,06,071,06071,1692,790,380633301,379685444,1692,790,380633301,379685444,2035210,699637,52071257852,51947229509,100,100,100,100,0.08,0.11,0.73,0.73
-92352,06,071,06071,8004,8544,28037236,24991240,8004,8544,28037236,24991240,2035210,699637,52071257852,51947229509,100,100,100,100,0.39,1.22,0.05,0.05
-92354,06,071,06071,21559,8594,12644554,12642182,21559,8594,12644554,12642182,2035210,699637,52071257852,51947229509,100,100,100,100,1.06,1.23,0.02,0.02
-92356,06,071,06071,6455,3494,1019909691,1019909691,6455,3494,1019909691,1019909691,2035210,699637,52071257852,51947229509,100,100,100,100,0.32,0.5,1.96,1.96
-92358,06,071,06071,707,457,51241437,51241437,707,457,51241437,51241437,2035210,699637,52071257852,51947229509,100,100,100,100,0.03,0.07,0.1,0.1
-92359,06,071,06071,8103,3058,44557727,43165372,8103,3058,44557727,43165372,2035210,699637,52071257852,51947229509,100,100,100,100,0.4,0.44,0.09,0.08
-92363,06,071,06071,5321,3976,541287415,513292031,5321,3976,541287415,513292031,2035210,699637,52071257852,51947229509,100,100,100,100,0.26,0.57,1.04,0.99
-92364,06,071,06071,90,100,1331683169,1331683169,90,100,1331683169,1331683169,2035210,699637,52071257852,51947229509,100,100,100,100,0,0.01,2.56,2.56
-92365,06,071,06071,2637,1393,449604416,447096417,2637,1393,449604416,447096417,2035210,699637,52071257852,51947229509,100,100,100,100,0.13,0.2,0.86,0.86
-92368,06,071,06071,1113,474,73466055,72307932,1113,474,73466055,72307932,2035210,699637,52071257852,51947229509,100,100,100,100,0.05,0.07,0.14,0.14
-92371,06,071,06071,16763,6098,361914471,361914471,16763,6098,361914471,361914471,2035210,699637,52071257852,51947229509,100,100,100,100,0.82,0.87,0.7,0.7
-92372,06,071,06071,6220,2571,72212111,72204588,6220,2571,72212111,72204588,2035210,699637,52071257852,51947229509,100,100,100,100,0.31,0.37,0.14,0.14
-92373,06,065,06065,458,204,45472330,44808634,33423,14940,106048060,105384364,2189641,800707,18915769995,18664696661,1.37,1.37,42.88,42.52,0.02,0.03,0.24,0.24
-92373,06,071,06071,32965,14736,60575730,60575730,33423,14940,106048060,105384364,2035210,699637,52071257852,51947229509,98.63,98.63,57.12,57.48,1.62,2.11,0.12,0.12
-92374,06,071,06071,40267,13867,48504714,48497162,40267,13867,48504714,48497162,2035210,699637,52071257852,51947229509,100,100,100,100,1.98,1.98,0.09,0.09
-92376,06,071,06071,81516,22370,35332376,35008397,81516,22370,35332376,35008397,2035210,699637,52071257852,51947229509,100,100,100,100,4.01,3.2,0.07,0.07
-92377,06,071,06071,19989,5524,27087547,26446720,19989,5524,27087547,26446720,2035210,699637,52071257852,51947229509,100,100,100,100,0.98,0.79,0.05,0.05
-92378,06,071,06071,183,80,2146364,2146364,183,80,2146364,2146364,2035210,699637,52071257852,51947229509,100,100,100,100,0.01,0.01,0,0
-92382,06,071,06071,5268,4037,39068949,39045765,5268,4037,39068949,39045765,2035210,699637,52071257852,51947229509,100,100,100,100,0.26,0.58,0.08,0.08
-92384,06,027,06027,36,37,362659806,362659188,36,37,362659806,362659188,18546,9478,26487562274,26368354217,100,100,100,100,0.19,0.39,1.37,1.38
-92385,06,071,06071,313,328,21791945,21791945,313,328,21791945,21791945,2035210,699637,52071257852,51947229509,100,100,100,100,0.02,0.05,0.04,0.04
-92386,06,071,06071,2270,3224,4965969,4965969,2270,3224,4965969,4965969,2035210,699637,52071257852,51947229509,100,100,100,100,0.11,0.46,0.01,0.01
-92389,06,027,06027,156,162,356867736,356690499,156,162,356867736,356690499,18546,9478,26487562274,26368354217,100,100,100,100,0.84,1.71,1.35,1.35
-92391,06,071,06071,2534,1674,6046158,6046158,2534,1674,6046158,6046158,2035210,699637,52071257852,51947229509,100,100,100,100,0.12,0.24,0.01,0.01
-92392,06,071,06071,54858,17356,96672039,96672039,54858,17356,96672039,96672039,2035210,699637,52071257852,51947229509,100,100,100,100,2.7,2.48,0.19,0.19
-92394,06,071,06071,33237,9051,71240879,70663589,33237,9051,71240879,70663589,2035210,699637,52071257852,51947229509,100,100,100,100,1.63,1.29,0.14,0.14
-92395,06,071,06071,42400,15854,46165695,44293390,42400,15854,46165695,44293390,2035210,699637,52071257852,51947229509,100,100,100,100,2.08,2.27,0.09,0.09
-92397,06,037,06037,71,31,86716,86716,4894,2857,26714191,26705522,9818605,3445076,12304882555,10509869649,1.45,1.09,0.32,0.32,0,0,0,0
-92397,06,071,06071,4823,2826,26627475,26618806,4894,2857,26714191,26705522,2035210,699637,52071257852,51947229509,98.55,98.91,99.68,99.68,0.24,0.4,0.05,0.05
-92398,06,071,06071,1379,679,73003546,72569713,1379,679,73003546,72569713,2035210,699637,52071257852,51947229509,100,100,100,100,0.07,0.1,0.14,0.14
-92399,06,065,06065,651,220,2540934,2540934,52606,20048,137374246,137346775,2189641,800707,18915769995,18664696661,1.24,1.1,1.85,1.85,0.03,0.03,0.01,0.01
-92399,06,071,06071,51955,19828,134833312,134805841,52606,20048,137374246,137346775,2035210,699637,52071257852,51947229509,98.76,98.9,98.15,98.15,2.55,2.83,0.26,0.26
-92401,06,071,06071,1932,748,2239188,2239188,1932,748,2239188,2239188,2035210,699637,52071257852,51947229509,100,100,100,100,0.09,0.11,0,0
-92404,06,071,06071,58271,19384,74025912,73988231,58271,19384,74025912,73988231,2035210,699637,52071257852,51947229509,100,100,100,100,2.86,2.77,0.14,0.14
-92405,06,071,06071,28873,9604,12233017,12233017,28873,9604,12233017,12233017,2035210,699637,52071257852,51947229509,100,100,100,100,1.42,1.37,0.02,0.02
-92407,06,071,06071,56689,16829,164741157,162888869,56689,16829,164741157,162888869,2035210,699637,52071257852,51947229509,100,100,100,100,2.79,2.41,0.32,0.31
-92408,06,071,06071,15271,4324,27937440,27507391,15271,4324,27937440,27507391,2035210,699637,52071257852,51947229509,100,100,100,100,0.75,0.62,0.05,0.05
-92410,06,071,06071,49410,14224,21354069,21289559,49410,14224,21354069,21289559,2035210,699637,52071257852,51947229509,100,100,100,100,2.43,2.03,0.04,0.04
-92411,06,071,06071,26214,7127,10913928,10597441,26214,7127,10913928,10597441,2035210,699637,52071257852,51947229509,100,100,100,100,1.29,1.02,0.02,0.02
-92501,06,065,06065,20970,7287,15468260,14766127,20970,7287,15468260,14766127,2189641,800707,18915769995,18664696661,100,100,100,100,0.96,0.91,0.08,0.08
-92503,06,065,06065,84519,24754,88298414,77362953,84519,24754,88298414,77362953,2189641,800707,18915769995,18664696661,100,100,100,100,3.86,3.09,0.47,0.41
-92504,06,065,06065,53778,17788,60768243,60620256,53778,17788,60768243,60620256,2189641,800707,18915769995,18664696661,100,100,100,100,2.46,2.22,0.32,0.32
-92505,06,065,06065,47672,14573,32070815,31661219,47672,14573,32070815,31661219,2189641,800707,18915769995,18664696661,100,100,100,100,2.18,1.82,0.17,0.17
-92506,06,065,06065,44001,16248,41957182,41957182,44001,16248,41957182,41957182,2189641,800707,18915769995,18664696661,100,100,100,100,2.01,2.03,0.22,0.22
-92507,06,065,06065,58002,19834,52361283,52337394,58002,19834,52361283,52337394,2189641,800707,18915769995,18664696661,100,100,100,100,2.65,2.48,0.28,0.28
-92508,06,065,06065,35000,10351,27793443,27793443,35000,10351,27793443,27793443,2189641,800707,18915769995,18664696661,100,100,100,100,1.6,1.29,0.15,0.15
-92509,06,065,06065,75183,20505,80332935,79025685,75196,20512,81836577,80529327,2189641,800707,18915769995,18664696661,99.98,99.97,98.16,98.13,3.43,2.56,0.42,0.42
-92509,06,071,06071,13,7,1503642,1503642,75196,20512,81836577,80529327,2035210,699637,52071257852,51947229509,0.02,0.03,1.84,1.87,0,0,0,0
-92518,06,065,06065,1162,717,30849668,30849224,1162,717,30849668,30849224,2189641,800707,18915769995,18664696661,100,100,100,100,0.05,0.09,0.16,0.17
-92530,06,059,06059,14,6,6357068,6357068,50216,16205,153893952,139541514,3010232,1048907,2455477898,2047561084,0.03,0.04,4.13,4.56,0,0,0.26,0.31
-92530,06,065,06065,50202,16199,147536884,133184446,50216,16205,153893952,139541514,2189641,800707,18915769995,18664696661,99.97,99.96,95.87,95.44,2.29,2.02,0.78,0.71
-92532,06,065,06065,18644,6049,46832969,46832969,18644,6049,46832969,46832969,2189641,800707,18915769995,18664696661,100,100,100,100,0.85,0.76,0.25,0.25
-92536,06,065,06065,3810,2296,324405359,323128701,3810,2296,324405359,323128701,2189641,800707,18915769995,18664696661,100,100,100,100,0.17,0.29,1.71,1.73
-92539,06,065,06065,4734,2442,340374638,340147198,4734,2442,340374638,340147198,2189641,800707,18915769995,18664696661,100,100,100,100,0.22,0.3,1.8,1.82
-92543,06,065,06065,33555,14994,45758379,45758379,33555,14994,45758379,45758379,2189641,800707,18915769995,18664696661,100,100,100,100,1.53,1.87,0.24,0.25
-92544,06,065,06065,44734,17221,352048304,351455494,44734,17221,352048304,351455494,2189641,800707,18915769995,18664696661,100,100,100,100,2.04,2.15,1.86,1.88
-92545,06,065,06065,39457,17984,83213374,83213374,39457,17984,83213374,83213374,2189641,800707,18915769995,18664696661,100,100,100,100,1.8,2.25,0.44,0.45
-92548,06,065,06065,6643,2518,25456124,25456124,6643,2518,25456124,25456124,2189641,800707,18915769995,18664696661,100,100,100,100,0.3,0.31,0.13,0.14
-92549,06,065,06065,3926,4157,71211990,71185899,3926,4157,71211990,71185899,2189641,800707,18915769995,18664696661,100,100,100,100,0.18,0.52,0.38,0.38
-92551,06,065,06065,30815,8114,15474687,15210033,30815,8114,15474687,15210033,2189641,800707,18915769995,18664696661,100,100,100,100,1.41,1.01,0.08,0.08
-92553,06,065,06065,73722,20376,26238877,26238877,73722,20376,26238877,26238877,2189641,800707,18915769995,18664696661,100,100,100,100,3.37,2.54,0.14,0.14
-92555,06,065,06065,39076,11763,217055366,208971685,39076,11763,217055366,208971685,2189641,800707,18915769995,18664696661,100,100,100,100,1.78,1.47,1.15,1.12
-92557,06,065,06065,50320,15510,48843299,48702642,50320,15510,48843299,48702642,2189641,800707,18915769995,18664696661,100,100,100,100,2.3,1.94,0.26,0.26
-92561,06,065,06065,1661,1275,411073755,409676848,1661,1275,411073755,409676848,2189641,800707,18915769995,18664696661,100,100,100,100,0.08,0.16,2.17,2.19
-92562,06,065,06065,62079,22069,283386531,283317742,62079,22069,283386531,283317742,2189641,800707,18915769995,18664696661,100,100,100,100,2.84,2.76,1.5,1.52
-92563,06,065,06065,53892,17192,52701563,52676576,53892,17192,52701563,52676576,2189641,800707,18915769995,18664696661,100,100,100,100,2.46,2.15,0.28,0.28
-92567,06,065,06065,9459,2920,76781084,76382832,9459,2920,76781084,76382832,2189641,800707,18915769995,18664696661,100,100,100,100,0.43,0.36,0.41,0.41
-92570,06,065,06065,53697,14903,252123721,252025051,53697,14903,252123721,252025051,2189641,800707,18915769995,18664696661,100,100,100,100,2.45,1.86,1.33,1.35
-92571,06,065,06065,52516,13526,59149512,58425208,52516,13526,59149512,58425208,2189641,800707,18915769995,18664696661,100,100,100,100,2.4,1.69,0.31,0.31
-92582,06,065,06065,15649,4661,48693758,47921059,15649,4661,48693758,47921059,2189641,800707,18915769995,18664696661,100,100,100,100,0.71,0.58,0.26,0.26
-92583,06,065,06065,30236,11044,75227798,73685013,30236,11044,75227798,73685013,2189641,800707,18915769995,18664696661,100,100,100,100,1.38,1.38,0.4,0.39
-92584,06,065,06065,43400,14553,77535752,77170383,43400,14553,77535752,77170383,2189641,800707,18915769995,18664696661,100,100,100,100,1.98,1.82,0.41,0.41
-92585,06,065,06065,17797,5944,52585311,52585311,17797,5944,52585311,52585311,2189641,800707,18915769995,18664696661,100,100,100,100,0.81,0.74,0.28,0.28
-92586,06,065,06065,19815,10638,18290589,18290589,19815,10638,18290589,18290589,2189641,800707,18915769995,18664696661,100,100,100,100,0.9,1.33,0.1,0.1
-92587,06,065,06065,16675,6499,22396290,20467790,16675,6499,22396290,20467790,2189641,800707,18915769995,18664696661,100,100,100,100,0.76,0.81,0.12,0.11
-92590,06,065,06065,3660,1464,138507634,138431957,3660,1464,138507634,138431957,2189641,800707,18915769995,18664696661,100,100,100,100,0.17,0.18,0.73,0.74
-92591,06,065,06065,38272,13631,42661081,42661081,38272,13631,42661081,42661081,2189641,800707,18915769995,18664696661,100,100,100,100,1.75,1.7,0.23,0.23
-92592,06,065,06065,72492,24146,255103396,251822673,72492,24146,255103396,251822673,2189641,800707,18915769995,18664696661,100,100,100,100,3.31,3.02,1.35,1.35
-92595,06,065,06065,29851,10020,54537406,54537406,29851,10020,54537406,54537406,2189641,800707,18915769995,18664696661,100,100,100,100,1.36,1.25,0.29,0.29
-92596,06,065,06065,23172,7131,158533549,158455663,23172,7131,158533549,158455663,2189641,800707,18915769995,18664696661,100,100,100,100,1.06,0.89,0.84,0.85
-92602,06,059,06059,22871,8764,27189235,27046598,22871,8764,27189235,27046598,3010232,1048907,2455477898,2047561084,100,100,100,100,0.76,0.84,1.11,1.32
-92603,06,059,06059,20184,7937,34377125,34324480,20184,7937,34377125,34324480,3010232,1048907,2455477898,2047561084,100,100,100,100,0.67,0.76,1.4,1.68
-92604,06,059,06059,26853,10094,8879047,8737517,26853,10094,8879047,8737517,3010232,1048907,2455477898,2047561084,100,100,100,100,0.89,0.96,0.36,0.43
-92606,06,059,06059,21495,8021,12581224,12556550,21495,8021,12581224,12556550,3010232,1048907,2455477898,2047561084,100,100,100,100,0.71,0.76,0.51,0.61
-92610,06,059,06059,11248,3882,25392689,25392689,11248,3882,25392689,25392689,3010232,1048907,2455477898,2047561084,100,100,100,100,0.37,0.37,1.03,1.24
-92612,06,059,06059,27522,13044,16089753,15748381,27522,13044,16089753,15748381,3010232,1048907,2455477898,2047561084,100,100,100,100,0.91,1.24,0.66,0.77
-92614,06,059,06059,24748,9973,11568122,11448309,24748,9973,11568122,11448309,3010232,1048907,2455477898,2047561084,100,100,100,100,0.82,0.95,0.47,0.56
-92617,06,059,06059,14044,3713,6226856,6226856,14044,3713,6226856,6226856,3010232,1048907,2455477898,2047561084,100,100,100,100,0.47,0.35,0.25,0.3
-92618,06,059,06059,16366,8077,54927730,54826663,16366,8077,54927730,54826663,3010232,1048907,2455477898,2047561084,100,100,100,100,0.54,0.77,2.24,2.68
-92620,06,059,06059,38486,14293,18330323,18235128,38486,14293,18330323,18235128,3010232,1048907,2455477898,2047561084,100,100,100,100,1.28,1.36,0.75,0.89
-92624,06,059,06059,7248,3243,6698139,3557287,7248,3243,6698139,3557287,3010232,1048907,2455477898,2047561084,100,100,100,100,0.24,0.31,0.27,0.17
-92625,06,059,06059,12478,6722,7479732,6612182,12478,6722,7479732,6612182,3010232,1048907,2455477898,2047561084,100,100,100,100,0.41,0.64,0.3,0.32
-92626,06,059,06059,49341,19641,25167480,24922545,49341,19641,25167480,24922545,3010232,1048907,2455477898,2047561084,100,100,100,100,1.64,1.87,1.02,1.22
-92627,06,059,06059,61510,22839,16557224,16443731,61510,22839,16557224,16443731,3010232,1048907,2455477898,2047561084,100,100,100,100,2.04,2.18,0.67,0.8
-92629,06,059,06059,25756,12521,16070388,13192708,25756,12521,16070388,13192708,3010232,1048907,2455477898,2047561084,100,100,100,100,0.86,1.19,0.65,0.64
-92630,06,059,06059,59182,20785,24891094,24667892,59182,20785,24891094,24667892,3010232,1048907,2455477898,2047561084,100,100,100,100,1.97,1.98,1.01,1.2
-92637,06,059,06059,16012,12851,9106526,9075455,16012,12851,9106526,9075455,3010232,1048907,2455477898,2047561084,100,100,100,100,0.53,1.23,0.37,0.44
-92646,06,059,06059,55224,21947,22902194,20839398,55224,21947,22902194,20839398,3010232,1048907,2455477898,2047561084,100,100,100,100,1.83,2.09,0.93,1.02
-92647,06,059,06059,57245,20625,20117098,20070489,57245,20625,20117098,20070489,3010232,1048907,2455477898,2047561084,100,100,100,100,1.9,1.97,0.82,0.98
-92648,06,059,06059,45317,20863,25979329,20791068,45317,20863,25979329,20791068,3010232,1048907,2455477898,2047561084,100,100,100,100,1.51,1.99,1.06,1.02
-92649,06,059,06059,32463,14697,22756959,19811591,32463,14697,22756959,19811591,3010232,1048907,2455477898,2047561084,100,100,100,100,1.08,1.4,0.93,0.97
-92651,06,059,06059,23881,13462,57614565,50409025,23881,13462,57614565,50409025,3010232,1048907,2455477898,2047561084,100,100,100,100,0.79,1.28,2.35,2.46
-92653,06,059,06059,29291,10362,17407236,17343655,29291,10362,17407236,17343655,3010232,1048907,2455477898,2047561084,100,100,100,100,0.97,0.99,0.71,0.85
-92655,06,059,06059,8337,2477,1633379,1633379,8337,2477,1633379,1633379,3010232,1048907,2455477898,2047561084,100,100,100,100,0.28,0.24,0.07,0.08
-92656,06,059,06059,49046,19711,21310173,21310173,49046,19711,21310173,21310173,3010232,1048907,2455477898,2047561084,100,100,100,100,1.63,1.88,0.87,1.04
-92657,06,059,06059,9741,4159,20862714,19093774,9741,4159,20862714,19093774,3010232,1048907,2455477898,2047561084,100,100,100,100,0.32,0.4,0.85,0.93
-92660,06,059,06059,34797,16354,28085426,25272033,34797,16354,28085426,25272033,3010232,1048907,2455477898,2047561084,100,100,100,100,1.16,1.56,1.14,1.23
-92661,06,059,06059,3744,2609,4946704,1686746,3744,2609,4946704,1686746,3010232,1048907,2455477898,2047561084,100,100,100,100,0.12,0.25,0.2,0.08
-92662,06,059,06059,2756,2111,1058626,539407,2756,2111,1058626,539407,3010232,1048907,2455477898,2047561084,100,100,100,100,0.09,0.2,0.04,0.03
-92663,06,059,06059,21649,12233,11896195,8551219,21649,12233,11896195,8551219,3010232,1048907,2455477898,2047561084,100,100,100,100,0.72,1.17,0.48,0.42
-92672,06,059,06059,34194,15632,22868396,20526486,34464,15708,22956933,20615023,3010232,1048907,2455477898,2047561084,99.22,99.52,99.61,99.57,1.14,1.49,0.93,1
-92672,06,073,06073,270,76,88537,88537,34464,15708,22956933,20615023,3095313,1164786,11721468557,10895120648,0.78,0.48,0.39,0.43,0.01,0.01,0,0
-92673,06,059,06059,29309,10246,30274973,30253137,29309,10246,30274973,30253137,3010232,1048907,2455477898,2047561084,100,100,100,100,0.97,0.98,1.23,1.48
-92675,06,059,06059,34731,12005,90214422,89237050,34731,12005,90214422,89237050,3010232,1048907,2455477898,2047561084,100,100,100,100,1.15,1.14,3.67,4.36
-92676,06,059,06059,1945,861,173713959,171828234,1945,861,173713959,171828234,3010232,1048907,2455477898,2047561084,100,100,100,100,0.06,0.08,7.07,8.39
-92677,06,059,06059,63297,25554,43380017,43246467,63297,25554,43380017,43246467,3010232,1048907,2455477898,2047561084,100,100,100,100,2.1,2.44,1.77,2.11
-92678,06,059,06059,494,244,39048823,39043264,494,244,39048823,39043264,3010232,1048907,2455477898,2047561084,100,100,100,100,0.02,0.02,1.59,1.91
-92679,06,059,06059,32611,10751,58636892,58572933,32611,10751,58636892,58572933,3010232,1048907,2455477898,2047561084,100,100,100,100,1.08,1.02,2.39,2.86
-92683,06,059,06059,89747,27713,25897934,25897934,89747,27713,25897934,25897934,3010232,1048907,2455477898,2047561084,100,100,100,100,2.98,2.64,1.05,1.26
-92688,06,059,06059,43792,16120,28329320,28225740,43792,16120,28329320,28225740,3010232,1048907,2455477898,2047561084,100,100,100,100,1.45,1.54,1.15,1.38
-92691,06,059,06059,47582,16702,22921784,22802974,47582,16702,22921784,22802974,3010232,1048907,2455477898,2047561084,100,100,100,100,1.58,1.59,0.93,1.11
-92692,06,059,06059,47222,18109,26371813,25517069,47222,18109,26371813,25517069,3010232,1048907,2455477898,2047561084,100,100,100,100,1.57,1.73,1.07,1.25
-92694,06,059,06059,21944,6933,24593751,24593751,21944,6933,24593751,24593751,3010232,1048907,2455477898,2047561084,100,100,100,100,0.73,0.66,1,1.2
-92701,06,059,06059,53908,13175,8469146,8469146,53908,13175,8469146,8469146,3010232,1048907,2455477898,2047561084,100,100,100,100,1.79,1.26,0.34,0.41
-92703,06,059,06059,65445,13177,10699221,10569906,65445,13177,10699221,10569906,3010232,1048907,2455477898,2047561084,100,100,100,100,2.17,1.26,0.44,0.52
-92704,06,059,06059,88123,20468,19517906,19149819,88123,20468,19517906,19149819,3010232,1048907,2455477898,2047561084,100,100,100,100,2.93,1.95,0.79,0.94
-92705,06,059,06059,44706,15095,29931335,29931335,44706,15095,29931335,29931335,3010232,1048907,2455477898,2047561084,100,100,100,100,1.49,1.44,1.22,1.46
-92706,06,059,06059,36457,9687,9136131,8826364,36457,9687,9136131,8826364,3010232,1048907,2455477898,2047561084,100,100,100,100,1.21,0.92,0.37,0.43
-92707,06,059,06059,59492,13564,13040057,13022655,59492,13564,13040057,13022655,3010232,1048907,2455477898,2047561084,100,100,100,100,1.98,1.29,0.53,0.64
-92708,06,059,06059,56004,19391,23700025,23468328,56004,19391,23700025,23468328,3010232,1048907,2455477898,2047561084,100,100,100,100,1.86,1.85,0.97,1.15
-92780,06,059,06059,57741,19516,18109171,18109171,57741,19516,18109171,18109171,3010232,1048907,2455477898,2047561084,100,100,100,100,1.92,1.86,0.74,0.88
-92782,06,059,06059,23032,8881,8710317,8710317,23032,8881,8710317,8710317,3010232,1048907,2455477898,2047561084,100,100,100,100,0.77,0.85,0.35,0.43
-92801,06,059,06059,62068,18604,16328273,16284681,62068,18604,16328273,16284681,3010232,1048907,2455477898,2047561084,100,100,100,100,2.06,1.77,0.66,0.8
-92802,06,059,06059,42709,12321,11771914,11771914,42709,12321,11771914,11771914,3010232,1048907,2455477898,2047561084,100,100,100,100,1.42,1.17,0.48,0.57
-92804,06,059,06059,85914,25717,18142648,18142648,85914,25717,18142648,18142648,3010232,1048907,2455477898,2047561084,100,100,100,100,2.85,2.45,0.74,0.89
-92805,06,059,06059,70401,18804,16373295,16327878,70401,18804,16373295,16327878,3010232,1048907,2455477898,2047561084,100,100,100,100,2.34,1.79,0.67,0.8
-92806,06,059,06059,37173,12844,20890661,20014403,37173,12844,20890661,20014403,3010232,1048907,2455477898,2047561084,100,100,100,100,1.23,1.22,0.85,0.98
-92807,06,059,06059,36171,12893,29377783,27750531,36171,12893,29377783,27750531,3010232,1048907,2455477898,2047561084,100,100,100,100,1.2,1.23,1.2,1.36
-92808,06,059,06059,20039,7538,13163092,13163092,20039,7538,13163092,13163092,3010232,1048907,2455477898,2047561084,100,100,100,100,0.67,0.72,0.54,0.64
-92821,06,059,06059,35533,13551,27342989,27296225,35533,13551,27342989,27296225,3010232,1048907,2455477898,2047561084,100,100,100,100,1.18,1.29,1.11,1.33
-92823,06,059,06059,3613,1182,28180499,28155266,3613,1182,28180499,28155266,3010232,1048907,2455477898,2047561084,100,100,100,100,0.12,0.11,1.15,1.38
-92831,06,059,06059,34204,13409,15476120,15476120,34204,13409,15476120,15476120,3010232,1048907,2455477898,2047561084,100,100,100,100,1.14,1.28,0.63,0.76
-92832,06,059,06059,24752,8460,7288246,7288246,24752,8460,7288246,7288246,3010232,1048907,2455477898,2047561084,100,100,100,100,0.82,0.81,0.3,0.36
-92833,06,059,06059,51767,16562,18919733,18919733,51767,16562,18919733,18919733,3010232,1048907,2455477898,2047561084,100,100,100,100,1.72,1.58,0.77,0.92
-92835,06,059,06059,24010,9140,15634473,15606410,24010,9140,15634473,15606410,3010232,1048907,2455477898,2047561084,100,100,100,100,0.8,0.87,0.64,0.76
-92840,06,059,06059,54083,15338,13519070,13473180,54083,15338,13519070,13473180,3010232,1048907,2455477898,2047561084,100,100,100,100,1.8,1.46,0.55,0.66
-92841,06,059,06059,32845,9451,11606226,11606226,32845,9451,11606226,11606226,3010232,1048907,2455477898,2047561084,100,100,100,100,1.09,0.9,0.47,0.57
-92843,06,059,06059,45214,11265,10117601,10117601,45214,11265,10117601,10117601,3010232,1048907,2455477898,2047561084,100,100,100,100,1.5,1.07,0.41,0.49
-92844,06,059,06059,24307,6749,5506328,5506328,24307,6749,5506328,5506328,3010232,1048907,2455477898,2047561084,100,100,100,100,0.81,0.64,0.22,0.27
-92845,06,059,06059,16333,5751,5668299,5668299,16333,5751,5668299,5668299,3010232,1048907,2455477898,2047561084,100,100,100,100,0.54,0.55,0.23,0.28
-92860,06,065,06065,27198,7360,37002666,36207819,27198,7360,37002666,36207819,2189641,800707,18915769995,18664696661,100,100,100,100,1.24,0.92,0.2,0.19
-92861,06,059,06059,5781,2006,5506878,5506878,5781,2006,5506878,5506878,3010232,1048907,2455477898,2047561084,100,100,100,100,0.19,0.19,0.22,0.27
-92865,06,059,06059,19704,6659,9859712,9479343,19704,6659,9859712,9479343,3010232,1048907,2455477898,2047561084,100,100,100,100,0.65,0.63,0.4,0.46
-92866,06,059,06059,14885,6048,5003355,5003355,14885,6048,5003355,5003355,3010232,1048907,2455477898,2047561084,100,100,100,100,0.49,0.58,0.2,0.24
-92867,06,059,06059,44515,13628,20689401,20560190,44515,13628,20689401,20560190,3010232,1048907,2455477898,2047561084,100,100,100,100,1.48,1.3,0.84,1
-92868,06,059,06059,25404,8125,8636674,8374032,25404,8125,8636674,8374032,3010232,1048907,2455477898,2047561084,100,100,100,100,0.84,0.77,0.35,0.41
-92869,06,059,06059,37184,11995,24561734,24068243,37184,11995,24561734,24068243,3010232,1048907,2455477898,2047561084,100,100,100,100,1.24,1.14,1,1.18
-92870,06,059,06059,52033,17493,17627650,17590269,52033,17493,17627650,17590269,3010232,1048907,2455477898,2047561084,100,100,100,100,1.73,1.67,0.72,0.86
-92879,06,065,06065,46745,14380,26043860,26018525,46745,14380,26043860,26018525,2189641,800707,18915769995,18664696661,100,100,100,100,2.13,1.8,0.14,0.14
-92880,06,065,06065,58728,16341,62979057,61233093,58763,16355,65686884,63940920,2189641,800707,18915769995,18664696661,99.94,99.91,95.88,95.77,2.68,2.04,0.33,0.33
-92880,06,071,06071,35,14,2707827,2707827,58763,16355,65686884,63940920,2035210,699637,52071257852,51947229509,0.06,0.09,4.12,4.23,0,0,0.01,0.01
-92881,06,065,06065,30991,9311,72279517,71691421,30991,9311,72279517,71691421,2189641,800707,18915769995,18664696661,100,100,100,100,1.42,1.16,0.38,0.38
-92882,06,065,06065,67917,20452,66727635,66692923,67917,20452,66727635,66692923,2189641,800707,18915769995,18664696661,100,100,100,100,3.1,2.55,0.35,0.36
-92883,06,065,06065,29301,9738,144399131,144241811,29301,9738,144399131,144241811,2189641,800707,18915769995,18664696661,100,100,100,100,1.34,1.22,0.76,0.77
-92886,06,059,06059,46564,16255,38214728,38143710,46564,16255,38214728,38143710,3010232,1048907,2455477898,2047561084,100,100,100,100,1.55,1.55,1.56,1.86
-92887,06,059,06059,20006,6926,24734811,23281753,20006,6926,24734811,23281753,3010232,1048907,2455477898,2047561084,100,100,100,100,0.66,0.66,1.01,1.14
-93001,06,083,06083,7,16,390751642,250343270,32990,14290,694107789,531955559,423895,152834,9813667387,7083838022,0.02,0.11,56.3,47.06,0,0.01,3.98,3.53
-93001,06,111,06111,32983,14274,303356147,281612289,32990,14290,694107789,531955559,823318,281695,5719683515,4773691889,99.98,99.89,43.7,52.94,4.01,5.07,5.3,5.9
-93003,06,111,06111,50474,20116,53554055,53297200,50474,20116,53554055,53297200,823318,281695,5719683515,4773691889,100,100,100,100,6.13,7.14,0.94,1.12
-93004,06,111,06111,29149,10866,18796578,17783920,29149,10866,18796578,17783920,823318,281695,5719683515,4773691889,100,100,100,100,3.54,3.86,0.33,0.37
-93010,06,111,06111,42901,16499,57382219,57342588,42901,16499,57382219,57342588,823318,281695,5719683515,4773691889,100,100,100,100,5.21,5.86,1,1.2
-93012,06,111,06111,34617,13559,136089718,135616852,34617,13559,136089718,135616852,823318,281695,5719683515,4773691889,100,100,100,100,4.2,4.81,2.38,2.84
-93013,06,083,06083,16004,6811,125578533,124780746,16091,6856,148339947,147483369,423895,152834,9813667387,7083838022,99.46,99.34,84.66,84.61,3.78,4.46,1.28,1.76
-93013,06,111,06111,87,45,22761414,22702623,16091,6856,148339947,147483369,823318,281695,5719683515,4773691889,0.54,0.66,15.34,15.39,0.01,0.02,0.4,0.48
-93015,06,111,06111,17334,5147,199482350,198297439,17334,5147,199482350,198297439,823318,281695,5719683515,4773691889,100,100,100,100,2.11,1.83,3.49,4.15
-93021,06,111,06111,36422,11393,123377714,122331194,36422,11393,123377714,122331194,823318,281695,5719683515,4773691889,100,100,100,100,4.42,4.04,2.16,2.56
-93022,06,111,06111,6106,2369,11986007,11965557,6106,2369,11986007,11965557,823318,281695,5719683515,4773691889,100,100,100,100,0.74,0.84,0.21,0.25
-93023,06,111,06111,20589,9096,700833990,698122037,20589,9096,700833990,698122037,823318,281695,5719683515,4773691889,100,100,100,100,2.5,3.23,12.25,14.62
-93030,06,111,06111,59372,15395,35912814,35912814,59372,15395,35912814,35912814,823318,281695,5719683515,4773691889,100,100,100,100,7.21,5.47,0.63,0.75
-93033,06,111,06111,82728,17696,76303459,75962345,82728,17696,76303459,75962345,823318,281695,5719683515,4773691889,100,100,100,100,10.05,6.28,1.33,1.59
-93035,06,111,06111,27732,11848,12707601,10643950,27732,11848,12707601,10643950,823318,281695,5719683515,4773691889,100,100,100,100,3.37,4.21,0.22,0.22
-93036,06,111,06111,41691,12185,43339406,41146263,41691,12185,43339406,41146263,823318,281695,5719683515,4773691889,100,100,100,100,5.06,4.33,0.76,0.86
-93040,06,111,06111,2031,575,187881183,182830429,2031,575,187881183,182830429,823318,281695,5719683515,4773691889,100,100,100,100,0.25,0.2,3.28,3.83
-93041,06,111,06111,23641,8824,33536491,29109041,23641,8824,33536491,29109041,823318,281695,5719683515,4773691889,100,100,100,100,2.87,3.13,0.59,0.61
-93042,06,111,06111,56,1,67425982,58634149,56,1,67425982,58634149,823318,281695,5719683515,4773691889,100,100,100,100,0.01,0,1.18,1.23
-93043,06,111,06111,333,17,1247670,1247670,333,17,1247670,1247670,823318,281695,5719683515,4773691889,100,100,100,100,0.04,0.01,0.02,0.03
-93060,06,111,06111,32811,9848,311104584,308235662,32811,9848,311104584,308235662,823318,281695,5719683515,4773691889,100,100,100,100,3.99,3.5,5.44,6.46
-93063,06,111,06111,54366,19234,85714790,85340849,54366,19234,85714790,85340849,823318,281695,5719683515,4773691889,100,100,100,100,6.6,6.83,1.5,1.79
-93064,06,111,06111,40,18,14687257,14687257,40,18,14687257,14687257,823318,281695,5719683515,4773691889,100,100,100,100,0,0.01,0.26,0.31
-93065,06,111,06111,72508,24282,84470391,81956189,72508,24282,84470391,81956189,823318,281695,5719683515,4773691889,100,100,100,100,8.81,8.62,1.48,1.72
-93066,06,111,06111,3102,1086,107680724,107679728,3102,1086,107680724,107679728,823318,281695,5719683515,4773691889,100,100,100,100,0.38,0.39,1.88,2.26
-93067,06,083,06083,895,507,1526376,1526376,895,507,1526376,1526376,423895,152834,9813667387,7083838022,100,100,100,100,0.21,0.33,0.02,0.02
-93101,06,083,06083,31683,13317,8883521,8883521,31683,13317,8883521,8883521,423895,152834,9813667387,7083838022,100,100,100,100,7.47,8.71,0.09,0.13
-93103,06,083,06083,20249,7669,13917786,13567127,20249,7669,13917786,13567127,423895,152834,9813667387,7083838022,100,100,100,100,4.78,5.02,0.14,0.19
-93105,06,083,06083,24815,11610,258256840,251547025,24815,11610,258256840,251547025,423895,152834,9813667387,7083838022,100,100,100,100,5.85,7.6,2.63,3.55
-93108,06,083,06083,11112,5398,55193360,54910962,11112,5398,55193360,54910962,423895,152834,9813667387,7083838022,100,100,100,100,2.62,3.53,0.56,0.78
-93109,06,083,06083,10858,4888,9770409,8760774,10858,4888,9770409,8760774,423895,152834,9813667387,7083838022,100,100,100,100,2.56,3.2,0.1,0.12
-93110,06,083,06083,16829,6679,27630974,27313594,16829,6679,27630974,27313594,423895,152834,9813667387,7083838022,100,100,100,100,3.97,4.37,0.28,0.39
-93111,06,083,06083,17370,6570,21334126,21004190,17370,6570,21334126,21004190,423895,152834,9813667387,7083838022,100,100,100,100,4.1,4.3,0.22,0.3
-93117,06,083,06083,53217,16470,445488083,440495381,53217,16470,445488083,440495381,423895,152834,9813667387,7083838022,100,100,100,100,12.55,10.78,4.54,6.22
-93201,06,031,06031,5,2,26563395,26563395,1348,363,200527186,200498836,152982,43867,3604050863,3598582308,0.37,0.55,13.25,13.25,0,0,0.74,0.74
-93201,06,107,06107,1343,361,173963791,173935441,1348,363,200527186,200498836,442179,141696,12532049785,12494658169,99.63,99.45,86.75,86.75,0.3,0.25,1.39,1.39
-93202,06,031,06031,4143,1184,2008663,2008663,4143,1184,2008663,2008663,152982,43867,3604050863,3598582308,100,100,100,100,2.71,2.7,0.06,0.06
-93203,06,029,06029,20938,5013,556450763,556194489,20938,5013,556450763,556194489,839631,284367,21141142333,21061565098,100,100,100,100,2.49,1.76,2.63,2.64
-93204,06,031,06031,15529,2421,154419550,154419550,15529,2421,154419550,154419550,152982,43867,3604050863,3598582308,100,100,100,100,10.15,5.52,4.28,4.29
-93205,06,029,06029,2113,1280,149223819,149169002,2113,1280,149223819,149169002,839631,284367,21141142333,21061565098,100,100,100,100,0.25,0.45,0.71,0.71
-93206,06,029,06029,2300,656,387861787,387297231,2300,656,387861787,387297231,839631,284367,21141142333,21061565098,100,100,100,100,0.27,0.23,1.83,1.84
-93207,06,107,06107,263,423,150386334,150386334,263,423,150386334,150386334,442179,141696,12532049785,12494658169,100,100,100,100,0.06,0.3,1.2,1.2
-93208,06,107,06107,104,527,152694931,152694931,104,527,152694931,152694931,442179,141696,12532049785,12494658169,100,100,100,100,0.02,0.37,1.22,1.22
-93210,06,019,06019,19439,4805,1835176962,1834500147,19504,4836,1999636824,1998867967,930450,315531,15568942406,15431126407,99.67,99.36,91.78,91.78,2.09,1.52,11.79,11.89
-93210,06,053,06053,57,25,85534584,85442542,19504,4836,1999636824,1998867967,415057,139048,9767417220,8496702738,0.29,0.52,4.28,4.27,0.01,0.02,0.88,1.01
-93210,06,069,06069,8,6,78925278,78925278,19504,4836,1999636824,1998867967,55269,17870,3601297341,3596742302,0.04,0.12,3.95,3.95,0.01,0.03,2.19,2.19
-93212,06,031,06031,25924,4312,126714970,126714970,26079,4355,274749153,274749153,152982,43867,3604050863,3598582308,99.41,99.01,46.12,46.12,16.95,9.83,3.52,3.52
-93212,06,107,06107,155,43,148034183,148034183,26079,4355,274749153,274749153,442179,141696,12532049785,12494658169,0.59,0.99,53.88,53.88,0.04,0.03,1.18,1.18
-93215,06,029,06029,54972,11206,231305493,229526441,55659,11410,369266465,367487413,839631,284367,21141142333,21061565098,98.77,98.21,62.64,62.46,6.55,3.94,1.09,1.09
-93215,06,107,06107,687,204,137960972,137960972,55659,11410,369266465,367487413,442179,141696,12532049785,12494658169,1.23,1.79,37.36,37.54,0.16,0.14,1.1,1.1
-93218,06,107,06107,994,281,166925891,166925891,994,281,166925891,166925891,442179,141696,12532049785,12494658169,100,100,100,100,0.22,0.2,1.33,1.34
-93219,06,107,06107,10194,2534,252296371,252029668,10194,2534,252296371,252029668,442179,141696,12532049785,12494658169,100,100,100,100,2.31,1.79,2.01,2.02
-93220,06,029,06029,211,69,68287162,68285734,211,69,68287162,68285734,839631,284367,21141142333,21061565098,100,100,100,100,0.03,0.02,0.32,0.32
-93221,06,107,06107,14945,5282,340975687,340975687,14945,5282,340975687,340975687,442179,141696,12532049785,12494658169,100,100,100,100,3.38,3.73,2.72,2.73
-93222,06,029,06029,2099,2033,74471992,74455074,2099,2033,74471992,74455074,839631,284367,21141142333,21061565098,100,100,100,100,0.25,0.71,0.35,0.35
-93223,06,107,06107,10604,2733,6399814,6399814,10604,2733,6399814,6399814,442179,141696,12532049785,12494658169,100,100,100,100,2.4,1.93,0.05,0.05
-93224,06,029,06029,451,198,57916235,57916235,451,198,57916235,57916235,839631,284367,21141142333,21061565098,100,100,100,100,0.05,0.07,0.27,0.27
-93225,06,029,06029,4742,2403,139898594,139861868,5077,2658,459092443,458972389,839631,284367,21141142333,21061565098,93.4,90.41,30.47,30.47,0.56,0.85,0.66,0.66
-93225,06,111,06111,335,255,319193849,319110521,5077,2658,459092443,458972389,823318,281695,5719683515,4773691889,6.6,9.59,69.53,69.53,0.04,0.09,5.58,6.68
-93226,06,029,06029,282,182,242670035,242441859,282,182,242670035,242441859,839631,284367,21141142333,21061565098,100,100,100,100,0.03,0.06,1.15,1.15
-93230,06,031,06031,65264,22331,680540967,678071973,65264,22331,680540967,678071973,152982,43867,3604050863,3598582308,100,100,100,100,42.66,50.91,18.88,18.84
-93234,06,019,06019,6987,1693,207601865,207601865,6987,1693,207601865,207601865,930450,315531,15568942406,15431126407,100,100,100,100,0.75,0.54,1.33,1.35
-93235,06,107,06107,4559,1237,7462347,7462347,4559,1237,7462347,7462347,442179,141696,12532049785,12494658169,100,100,100,100,1.03,0.87,0.06,0.06
-93238,06,029,06029,1485,1144,170135620,159083108,1490,1177,338888870,327836358,839631,284367,21141142333,21061565098,99.66,97.2,50.2,48.53,0.18,0.4,0.8,0.76
-93238,06,107,06107,5,33,168753250,168753250,1490,1177,338888870,327836358,442179,141696,12532049785,12494658169,0.34,2.8,49.8,51.47,0,0.02,1.35,1.35
-93239,06,031,06031,1688,443,166157069,165572238,1688,443,166157069,165572238,152982,43867,3604050863,3598582308,100,100,100,100,1.1,1.01,4.61,4.6
-93240,06,029,06029,6056,3574,209684286,193725770,6056,3574,209684286,193725770,839631,284367,21141142333,21061565098,100,100,100,100,0.72,1.26,0.99,0.92
-93241,06,029,06029,17489,4202,10694181,10682633,17489,4202,10694181,10682633,839631,284367,21141142333,21061565098,100,100,100,100,2.08,1.48,0.05,0.05
-93242,06,019,06019,3180,944,87760887,87760887,3468,1058,106379654,106379654,930450,315531,15568942406,15431126407,91.7,89.22,82.5,82.5,0.34,0.3,0.56,0.57
-93242,06,031,06031,288,114,18618767,18618767,3468,1058,106379654,106379654,152982,43867,3604050863,3598582308,8.3,10.78,17.5,17.5,0.19,0.26,0.52,0.52
-93243,06,029,06029,1566,645,111848327,110831918,1699,713,396799753,389376655,839631,284367,21141142333,21061565098,92.17,90.46,28.19,28.46,0.19,0.23,0.53,0.53
-93243,06,037,06037,133,68,284951426,278544737,1699,713,396799753,389376655,9818605,3445076,12304882555,10509869649,7.83,9.54,71.81,71.54,0,0,2.32,2.65
-93244,06,107,06107,534,250,176373378,176196991,534,250,176373378,176196991,442179,141696,12532049785,12494658169,100,100,100,100,0.12,0.18,1.41,1.41
-93245,06,031,06031,37412,12232,305448091,305247504,37412,12232,305448091,305247504,152982,43867,3604050863,3598582308,100,100,100,100,24.46,27.88,8.48,8.48
-93247,06,107,06107,17423,4870,196059301,196035524,17423,4870,196059301,196035524,442179,141696,12532049785,12494658169,100,100,100,100,3.94,3.44,1.56,1.57
-93249,06,029,06029,2739,560,579266993,577893652,2739,560,579266993,577893652,839631,284367,21141142333,21061565098,100,100,100,100,0.33,0.2,2.74,2.74
-93250,06,029,06029,13522,2924,219088513,219045841,13522,2924,219088513,219045841,839631,284367,21141142333,21061565098,100,100,100,100,1.61,1.03,1.04,1.04
-93251,06,029,06029,270,99,346577918,346577918,270,99,346577918,346577918,839631,284367,21141142333,21061565098,100,100,100,100,0.03,0.03,1.64,1.65
-93252,06,029,06029,3724,571,117629130,117233983,4176,876,1776275760,1759948921,839631,284367,21141142333,21061565098,89.18,65.18,6.62,6.66,0.44,0.2,0.56,0.56
-93252,06,079,06079,105,31,90303676,88663202,4176,876,1776275760,1759948921,269637,117315,9364223107,8543248461,2.51,3.54,5.08,5.04,0.04,0.03,0.96,1.04
-93252,06,083,06083,228,128,217210154,207447836,4176,876,1776275760,1759948921,423895,152834,9813667387,7083838022,5.46,14.61,12.23,11.79,0.05,0.08,2.21,2.93
-93252,06,111,06111,119,146,1351132800,1346603900,4176,876,1776275760,1759948921,823318,281695,5719683515,4773691889,2.85,16.67,76.07,76.51,0.01,0.05,23.62,28.21
-93254,06,079,06079,24,7,11635647,10814036,811,402,356191134,353715158,269637,117315,9364223107,8543248461,2.96,1.74,3.27,3.06,0.01,0.01,0.12,0.13
-93254,06,083,06083,787,395,344555487,342901122,811,402,356191134,353715158,423895,152834,9813667387,7083838022,97.04,98.26,96.73,96.94,0.19,0.26,3.51,4.84
-93255,06,029,06029,614,409,560850008,560731083,614,409,560850008,560731083,839631,284367,21141142333,21061565098,100,100,100,100,0.07,0.14,2.65,2.66
-93256,06,107,06107,5753,1573,206958316,206901726,5753,1573,206958316,206901726,442179,141696,12532049785,12494658169,100,100,100,100,1.3,1.11,1.65,1.66
-93257,06,107,06107,75004,22985,1163372585,1152544483,75004,22985,1163372585,1152544483,442179,141696,12532049785,12494658169,100,100,100,100,16.96,16.22,9.28,9.22
-93258,06,107,06107,2046,484,1120563,1120563,2046,484,1120563,1120563,442179,141696,12532049785,12494658169,100,100,100,100,0.46,0.34,0.01,0.01
-93260,06,107,06107,200,490,85266177,85266177,200,490,85266177,85266177,442179,141696,12532049785,12494658169,100,100,100,100,0.05,0.35,0.68,0.68
-93261,06,107,06107,3099,666,21990002,21990002,3099,666,21990002,21990002,442179,141696,12532049785,12494658169,100,100,100,100,0.7,0.47,0.18,0.18
-93262,06,107,06107,63,33,232890072,232048489,63,33,232890072,232048489,442179,141696,12532049785,12494658169,100,100,100,100,0.01,0.02,1.86,1.86
-93263,06,029,06029,19582,5305,234665277,234665277,19582,5305,234665277,234665277,839631,284367,21141142333,21061565098,100,100,100,100,2.33,1.87,1.11,1.11
-93265,06,107,06107,3699,2068,969344395,968901189,3699,2068,969344395,968901189,442179,141696,12532049785,12494658169,100,100,100,100,0.84,1.46,7.73,7.75
-93266,06,031,06031,1587,436,144335293,144335293,1587,436,144335293,144335293,152982,43867,3604050863,3598582308,100,100,100,100,1.04,0.99,4,4.01
-93267,06,107,06107,6237,1756,194731989,194698069,6237,1756,194731989,194698069,442179,141696,12532049785,12494658169,100,100,100,100,1.41,1.24,1.55,1.56
-93268,06,029,06029,16897,6040,108640459,108640459,16897,6040,108640459,108640459,839631,284367,21141142333,21061565098,100,100,100,100,2.01,2.12,0.51,0.52
-93270,06,107,06107,5837,1677,160064387,160064387,5837,1677,160064387,160064387,442179,141696,12532049785,12494658169,100,100,100,100,1.32,1.18,1.28,1.28
-93271,06,107,06107,2276,1464,992111605,983444922,2276,1464,992111605,983444922,442179,141696,12532049785,12494658169,100,100,100,100,0.51,1.03,7.92,7.87
-93272,06,107,06107,3583,979,216945035,216931322,3583,979,216945035,216931322,442179,141696,12532049785,12494658169,100,100,100,100,0.81,0.69,1.73,1.74
-93274,06,107,06107,69721,22004,555919812,554430884,69721,22004,555919812,554430884,442179,141696,12532049785,12494658169,100,100,100,100,15.77,15.53,4.44,4.44
-93276,06,029,06029,161,73,1774193,1774193,161,73,1774193,1774193,839631,284367,21141142333,21061565098,100,100,100,100,0.02,0.03,0.01,0.01
-93277,06,107,06107,50607,19634,103829473,103536763,50607,19634,103829473,103536763,442179,141696,12532049785,12494658169,100,100,100,100,11.44,13.86,0.83,0.83
-93280,06,029,06029,27152,6012,834227618,834129119,27152,6012,834227618,834129119,839631,284367,21141142333,21061565098,100,100,100,100,3.23,2.11,3.95,3.96
-93283,06,029,06029,2040,1303,530600603,529101795,2040,1303,530600603,529101795,839631,284367,21141142333,21061565098,100,100,100,100,0.24,0.46,2.51,2.51
-93285,06,029,06029,2536,2561,129245018,122156204,2536,2561,129245018,122156204,839631,284367,21141142333,21061565098,100,100,100,100,0.3,0.9,0.61,0.58
-93286,06,107,06107,9548,2896,222585858,221031624,9548,2896,222585858,221031624,442179,141696,12532049785,12494658169,100,100,100,100,2.16,2.04,1.78,1.77
-93287,06,029,06029,119,54,144693990,144693990,119,54,144693990,144693990,839631,284367,21141142333,21061565098,100,100,100,100,0.01,0.02,0.68,0.69
-93291,06,107,06107,52849,16362,219586861,219218023,52849,16362,219586861,219218023,442179,141696,12532049785,12494658169,100,100,100,100,11.95,11.55,1.75,1.75
-93292,06,107,06107,39032,13622,281509843,281391266,39032,13622,281509843,281391266,442179,141696,12532049785,12494658169,100,100,100,100,8.83,9.61,2.25,2.25
-93301,06,029,06029,12248,5707,11173379,10828653,12248,5707,11173379,10828653,839631,284367,21141142333,21061565098,100,100,100,100,1.46,2.01,0.05,0.05
-93304,06,029,06029,48731,16480,19670450,19670450,48731,16480,19670450,19670450,839631,284367,21141142333,21061565098,100,100,100,100,5.8,5.8,0.09,0.09
-93305,06,029,06029,37601,11964,15369431,15369431,37601,11964,15369431,15369431,839631,284367,21141142333,21061565098,100,100,100,100,4.48,4.21,0.07,0.07
-93306,06,029,06029,64587,22210,229470601,228103462,64587,22210,229470601,228103462,839631,284367,21141142333,21061565098,100,100,100,100,7.69,7.81,1.09,1.08
-93307,06,029,06029,82658,23411,360493793,359744699,82658,23411,360493793,359744699,839631,284367,21141142333,21061565098,100,100,100,100,9.84,8.23,1.71,1.71
-93308,06,029,06029,52447,20931,820249978,818459147,52447,20931,820249978,818459147,839631,284367,21141142333,21061565098,100,100,100,100,6.25,7.36,3.88,3.89
-93309,06,029,06029,58409,23542,28373550,27570004,58409,23542,28373550,27570004,839631,284367,21141142333,21061565098,100,100,100,100,6.96,8.28,0.13,0.13
-93311,06,029,06029,40829,14414,440630664,438967246,40829,14414,440630664,438967246,839631,284367,21141142333,21061565098,100,100,100,100,4.86,5.07,2.08,2.08
-93312,06,029,06029,56741,19494,39408937,39408937,56741,19494,39408937,39408937,839631,284367,21141142333,21061565098,100,100,100,100,6.76,6.86,0.19,0.19
-93313,06,029,06029,43553,12990,258154248,258154248,43553,12990,258154248,258154248,839631,284367,21141142333,21061565098,100,100,100,100,5.19,4.57,1.22,1.23
-93314,06,029,06029,22393,7515,257288557,256237826,22393,7515,257288557,256237826,839631,284367,21141142333,21061565098,100,100,100,100,2.67,2.64,1.22,1.22
-93401,06,079,06079,28033,13378,181202764,181154941,28033,13378,181202764,181154941,269637,117315,9364223107,8543248461,100,100,100,100,10.4,11.4,1.94,2.12
-93402,06,079,06079,14318,6506,85575208,75349656,14318,6506,85575208,75349656,269637,117315,9364223107,8543248461,100,100,100,100,5.31,5.55,0.91,0.88
-93405,06,079,06079,35440,9346,227734260,227263313,35440,9346,227734260,227263313,269637,117315,9364223107,8543248461,100,100,100,100,13.14,7.97,2.43,2.66
-93410,06,079,06079,0,0,216393,216393,0,0,216393,216393,269637,117315,9364223107,8543248461,0,0,100,100,0,0,0,0
-93420,06,079,06079,28413,12444,488222295,485264761,28413,12444,488222295,485264761,269637,117315,9364223107,8543248461,100,100,100,100,10.54,10.61,5.21,5.68
-93422,06,079,06079,31375,12744,156975338,154910478,31375,12744,156975338,154910478,269637,117315,9364223107,8543248461,100,100,100,100,11.64,10.86,1.68,1.81
-93424,06,079,06079,1261,919,8414665,6819126,1261,919,8414665,6819126,269637,117315,9364223107,8543248461,100,100,100,100,0.47,0.78,0.09,0.08
-93426,06,053,06053,933,451,497430428,471037148,1401,1260,583613813,549711127,415057,139048,9767417220,8496702738,66.6,35.79,85.23,85.69,0.22,0.32,5.09,5.54
-93426,06,079,06079,468,809,86183385,78673979,1401,1260,583613813,549711127,269637,117315,9364223107,8543248461,33.4,64.21,14.77,14.31,0.17,0.69,0.92,0.92
-93427,06,083,06083,5505,2141,145032212,144984684,5505,2141,145032212,144984684,423895,152834,9813667387,7083838022,100,100,100,100,1.3,1.4,1.48,2.05
-93428,06,079,06079,6314,4196,204462790,199391527,6314,4196,204462790,199391527,269637,117315,9364223107,8543248461,100,100,100,100,2.34,3.58,2.18,2.33
-93429,06,083,06083,154,69,19334170,19273597,154,69,19334170,19273597,423895,152834,9813667387,7083838022,100,100,100,100,0.04,0.05,0.2,0.27
-93430,06,079,06079,2972,2537,199124620,187111444,2972,2537,199124620,187111444,269637,117315,9364223107,8543248461,100,100,100,100,1.1,2.16,2.13,2.19
-93432,06,079,06079,1384,645,233970863,233270207,1384,645,233970863,233270207,269637,117315,9364223107,8543248461,100,100,100,100,0.51,0.55,2.5,2.73
-93433,06,079,06079,13162,5749,5730492,5603498,13162,5749,5730492,5603498,269637,117315,9364223107,8543248461,100,100,100,100,4.88,4.9,0.06,0.07
-93434,06,083,06083,7110,1900,86960543,85505781,7110,1900,86960543,85505781,423895,152834,9813667387,7083838022,100,100,100,100,1.68,1.24,0.89,1.21
-93436,06,083,06083,54017,18989,569076117,567006773,54017,18989,569076117,567006773,423895,152834,9813667387,7083838022,100,100,100,100,12.74,12.42,5.8,8
-93437,06,083,06083,3338,1035,100763050,100488726,3338,1035,100763050,100488726,423895,152834,9813667387,7083838022,100,100,100,100,0.79,0.68,1.03,1.42
-93440,06,083,06083,2058,743,104160404,104117618,2058,743,104160404,104117618,423895,152834,9813667387,7083838022,100,100,100,100,0.49,0.49,1.06,1.47
-93441,06,083,06083,1530,574,142287595,142144460,1530,574,142287595,142144460,423895,152834,9813667387,7083838022,100,100,100,100,0.36,0.38,1.45,2.01
-93442,06,079,06079,10789,6596,120046988,116165760,10789,6596,120046988,116165760,269637,117315,9364223107,8543248461,100,100,100,100,4,5.62,1.28,1.36
-93444,06,079,06079,19244,7201,181033149,178359533,19244,7201,181033149,178359533,269637,117315,9364223107,8543248461,100,100,100,100,7.14,6.14,1.93,2.09
-93445,06,079,06079,7173,3036,46990571,43522002,7173,3036,46990571,43522002,269637,117315,9364223107,8543248461,100,100,100,100,2.66,2.59,0.5,0.51
-93446,06,079,06079,43714,18374,1098424827,1080179738,43714,18374,1098424827,1080179738,269637,117315,9364223107,8543248461,100,100,100,100,16.21,15.66,11.73,12.64
-93449,06,079,06079,7657,5587,27722070,25882303,7657,5587,27722070,25882303,269637,117315,9364223107,8543248461,100,100,100,100,2.84,4.76,0.3,0.3
-93450,06,053,06053,740,245,448595337,439657056,740,245,448595337,439657056,415057,139048,9767417220,8496702738,100,100,100,100,0.18,0.18,4.59,5.17
-93451,06,053,06053,522,261,1134983122,1131080558,3779,1462,1325347196,1321354826,415057,139048,9767417220,8496702738,13.81,17.85,85.64,85.6,0.13,0.19,11.62,13.31
-93451,06,079,06079,3257,1201,190364074,190274268,3779,1462,1325347196,1321354826,269637,117315,9364223107,8543248461,86.19,82.15,14.36,14.4,1.21,1.02,2.03,2.23
-93452,06,079,06079,524,345,313452810,295623512,524,345,313452810,295623512,269637,117315,9364223107,8543248461,100,100,100,100,0.19,0.29,3.35,3.46
-93453,06,079,06079,2899,1392,1617004994,1613002286,2899,1392,1617004994,1613002286,269637,117315,9364223107,8543248461,100,100,100,100,1.08,1.19,17.27,18.88
-93454,06,079,06079,283,154,286500411,281367014,36448,12393,1115763667,1105927257,269637,117315,9364223107,8543248461,0.78,1.24,25.68,25.44,0.1,0.13,3.06,3.29
-93454,06,083,06083,36165,12239,829263256,824560243,36448,12393,1115763667,1105927257,423895,152834,9813667387,7083838022,99.22,98.76,74.32,74.56,8.53,8.01,8.45,11.64
-93455,06,083,06083,41684,15675,280919316,279983178,41684,15675,280919316,279983178,423895,152834,9813667387,7083838022,100,100,100,100,9.83,10.26,2.86,3.95
-93458,06,079,06079,61,18,182263,182263,55431,13026,72286000,70894975,269637,117315,9364223107,8543248461,0.11,0.14,0.25,0.26,0.02,0.02,0,0
-93458,06,083,06083,55370,13008,72103737,70712712,55431,13026,72286000,70894975,423895,152834,9813667387,7083838022,99.89,99.86,99.75,99.74,13.06,8.51,0.73,1
-93460,06,083,06083,5255,2394,322329319,319600065,5255,2394,322329319,319600065,423895,152834,9813667387,7083838022,100,100,100,100,1.24,1.57,3.28,4.51
-93461,06,029,06029,11,5,70071371,70071371,1623,569,920093432,917505721,839631,284367,21141142333,21061565098,0.68,0.88,7.62,7.64,0,0,0.33,0.33
-93461,06,053,06053,14,5,92627643,92536158,1623,569,920093432,917505721,415057,139048,9767417220,8496702738,0.86,0.88,10.07,10.09,0,0,0.95,1.09
-93461,06,079,06079,1598,559,757394418,754898192,1623,569,920093432,917505721,269637,117315,9364223107,8543248461,98.46,98.24,82.32,82.28,0.59,0.48,8.09,8.84
-93463,06,083,06083,7646,3589,78616086,78199941,7646,3589,78616086,78199941,423895,152834,9813667387,7083838022,100,100,100,100,1.8,2.35,0.8,1.1
-93465,06,079,06079,9153,3532,227994408,227097616,9153,3532,227994408,227097616,269637,117315,9364223107,8543248461,100,100,100,100,3.39,3.01,2.43,2.66
-93501,06,029,06029,5467,2418,424573092,424305072,5467,2418,424573092,424305072,839631,284367,21141142333,21061565098,100,100,100,100,0.65,0.85,2.01,2.01
-93505,06,029,06029,14038,5165,202775104,202551905,14038,5165,202775104,202551905,839631,284367,21141142333,21061565098,100,100,100,100,1.67,1.82,0.96,0.96
-93510,06,037,06037,7993,2954,186318729,186232826,7993,2954,186318729,186232826,9818605,3445076,12304882555,10509869649,100,100,100,100,0.08,0.09,1.51,1.77
-93512,06,051,06051,277,154,328156855,327426701,277,154,328156855,327426701,14202,13912,8111522878,7896827391,100,100,100,100,1.95,1.11,4.05,4.15
-93513,06,027,06027,1763,874,1674009266,1666604665,1763,874,1674009266,1666604665,18546,9478,26487562274,26368354217,100,100,100,100,9.51,9.22,6.32,6.32
-93514,06,027,06027,12671,6060,1172600823,1160696513,13857,6663,2901899889,2889792721,18546,9478,26487562274,26368354217,91.44,90.95,40.41,40.17,68.32,63.94,4.43,4.4
-93514,06,051,06051,1186,603,1729299066,1729096208,13857,6663,2901899889,2889792721,14202,13912,8111522878,7896827391,8.56,9.05,59.59,59.83,8.35,4.33,21.32,21.9
-93516,06,029,06029,2253,1208,24123886,24114297,2299,1233,49956571,49946982,839631,284367,21141142333,21061565098,98,97.97,48.29,48.28,0.27,0.42,0.11,0.11
-93516,06,071,06071,46,25,25832685,25832685,2299,1233,49956571,49946982,2035210,699637,52071257852,51947229509,2,2.03,51.71,51.72,0,0,0.05,0.05
-93517,06,051,06051,670,686,1552745468,1536338281,670,686,1552745468,1536338281,14202,13912,8111522878,7896827391,100,100,100,100,4.72,4.93,19.14,19.46
-93518,06,029,06029,1146,844,772380725,772164845,1146,844,772380725,772164845,839631,284367,21141142333,21061565098,100,100,100,100,0.14,0.3,3.65,3.67
-93519,06,029,06029,101,86,205372418,203937660,101,86,205372418,203937660,839631,284367,21141142333,21061565098,100,100,100,100,0.01,0.03,0.97,0.97
-93522,06,027,06027,48,49,119762436,119667688,48,49,119762436,119667688,18546,9478,26487562274,26368354217,100,100,100,100,0.26,0.52,0.45,0.45
-93523,06,029,06029,3074,1436,253792583,252296184,3074,1436,253792583,252296184,839631,284367,21141142333,21061565098,100,100,100,100,0.37,0.5,1.2,1.2
-93524,06,029,06029,229,0,5312089,5312089,229,0,5312089,5312089,839631,284367,21141142333,21061565098,100,0,100,100,0.03,0,0.03,0.03
-93526,06,027,06027,719,473,355508542,354621290,719,473,355508542,354621290,18546,9478,26487562274,26368354217,100,100,100,100,3.88,4.99,1.34,1.34
-93527,06,027,06027,17,16,15631073,15420326,2387,1349,1412821269,1412346246,18546,9478,26487562274,26368354217,0.71,1.19,1.11,1.09,0.09,0.17,0.06,0.06
-93527,06,029,06029,2317,1155,172763834,172615482,2387,1349,1412821269,1412346246,839631,284367,21141142333,21061565098,97.07,85.62,12.23,12.22,0.28,0.41,0.82,0.82
-93527,06,107,06107,53,178,1224426362,1224310438,2387,1349,1412821269,1412346246,442179,141696,12532049785,12494658169,2.22,13.19,86.67,86.69,0.01,0.13,9.77,9.8
-93528,06,029,06029,172,139,9839019,9839019,172,139,9839019,9839019,839631,284367,21141142333,21061565098,100,100,100,100,0.02,0.05,0.05,0.05
-93529,06,051,06051,633,825,86129614,79303871,633,825,86129614,79303871,14202,13912,8111522878,7896827391,100,100,100,100,4.46,5.93,1.06,1
-93530,06,027,06027,47,46,2362111,2362111,47,46,2362111,2362111,18546,9478,26487562274,26368354217,100,100,100,100,0.25,0.49,0.01,0.01
-93531,06,029,06029,509,261,88899488,88879339,509,261,88899488,88879339,839631,284367,21141142333,21061565098,100,100,100,100,0.06,0.09,0.42,0.42
-93532,06,037,06037,2932,1291,295460887,294415332,2932,1291,295460887,294415332,9818605,3445076,12304882555,10509869649,100,100,100,100,0.03,0.04,2.4,2.8
-93534,06,037,06037,39341,16066,47041999,45994950,39341,16066,47041999,45994950,9818605,3445076,12304882555,10509869649,100,100,100,100,0.4,0.47,0.38,0.44
-93535,06,037,06037,72046,22946,668194378,667949042,72046,22946,668194378,667949042,9818605,3445076,12304882555,10509869649,100,100,100,100,0.73,0.67,5.43,6.36
-93536,06,037,06037,70918,22620,630849400,628570647,70918,22620,630849400,628570647,9818605,3445076,12304882555,10509869649,100,100,100,100,0.72,0.66,5.13,5.98
-93541,06,051,06051,449,378,855710012,693505539,449,378,855710012,693505539,14202,13912,8111522878,7896827391,100,100,100,100,3.16,2.72,10.55,8.78
-93543,06,037,06037,13033,3986,154202644,153742038,13033,3986,154202644,153742038,9818605,3445076,12304882555,10509869649,100,100,100,100,0.13,0.12,1.25,1.46
-93544,06,037,06037,1259,762,284290417,283741899,1259,762,284290417,283741899,9818605,3445076,12304882555,10509869649,100,100,100,100,0.01,0.02,2.31,2.7
-93545,06,027,06027,2082,1055,277431366,276654075,2082,1055,277431366,276654075,18546,9478,26487562274,26368354217,100,100,100,100,11.23,11.13,1.05,1.05
-93546,06,051,06051,9567,10470,451963355,446182420,9567,10470,451963355,446182420,14202,13912,8111522878,7896827391,100,100,100,100,67.36,75.26,5.57,5.65
-93549,06,027,06027,344,217,878653717,868880003,344,217,878653717,868880003,18546,9478,26487562274,26368354217,100,100,100,100,1.85,2.29,3.32,3.3
-93550,06,037,06037,74929,22961,510356630,508068932,74929,22961,510356630,508068932,9818605,3445076,12304882555,10509869649,100,100,100,100,0.76,0.67,4.15,4.83
-93551,06,037,06037,50798,17144,189925749,189434904,50798,17144,189925749,189434904,9818605,3445076,12304882555,10509869649,100,100,100,100,0.52,0.5,1.54,1.8
-93552,06,037,06037,38158,10422,126263825,125624886,38158,10422,126263825,125624886,9818605,3445076,12304882555,10509869649,100,100,100,100,0.39,0.3,1.03,1.2
-93553,06,037,06037,2138,933,224275881,224009768,2138,933,224275881,224009768,9818605,3445076,12304882555,10509869649,100,100,100,100,0.02,0.03,1.82,2.13
-93554,06,029,06029,72,103,191992112,191856647,72,103,191992112,191856647,839631,284367,21141142333,21061565098,100,100,100,100,0.01,0.04,0.91,0.91
-93555,06,029,06029,32334,14035,204708888,203531500,32560,14147,212454615,211253737,839631,284367,21141142333,21061565098,99.31,99.21,96.35,96.34,3.85,4.94,0.97,0.97
-93555,06,071,06071,226,112,7745727,7722237,32560,14147,212454615,211253737,2035210,699637,52071257852,51947229509,0.69,0.79,3.65,3.66,0.01,0.02,0.01,0.01
-93558,06,071,06071,125,107,9503246,9503246,125,107,9503246,9503246,2035210,699637,52071257852,51947229509,100,100,100,100,0.01,0.02,0.02,0.02
-93560,06,029,06029,18860,7343,398508229,397875929,18910,7367,413904300,413238776,839631,284367,21141142333,21061565098,99.74,99.67,96.28,96.28,2.25,2.58,1.88,1.89
-93560,06,037,06037,50,24,15396071,15362847,18910,7367,413904300,413238776,9818605,3445076,12304882555,10509869649,0.26,0.33,3.72,3.72,0,0,0.13,0.15
-93561,06,029,06029,34630,12824,684884645,684141522,34630,12824,684884645,684141522,839631,284367,21141142333,21061565098,100,100,100,100,4.12,4.51,3.24,3.25
-93562,06,071,06071,1818,1008,103080704,102433332,1818,1008,103080704,102433332,2035210,699637,52071257852,51947229509,100,100,100,100,0.09,0.14,0.2,0.2
-93563,06,037,06037,388,146,104183328,104092212,388,146,104183328,104092212,9818605,3445076,12304882555,10509869649,100,100,100,100,0,0,0.85,0.99
-93591,06,037,06037,7285,2235,213839973,213558349,7285,2235,213839973,213558349,9818605,3445076,12304882555,10509869649,100,100,100,100,0.07,0.06,1.74,2.03
-93592,06,027,06027,64,44,409775409,388868679,64,44,409775409,388868679,18546,9478,26487562274,26368354217,100,100,100,100,0.35,0.46,1.55,1.47
-93601,06,039,06039,1809,831,76249001,76249001,1909,884,115659233,115615217,150865,49140,5576940489,5534982985,94.76,94,65.93,65.95,1.2,1.69,1.37,1.38
-93601,06,043,06043,100,53,39410232,39366216,1909,884,115659233,115615217,18251,10188,3788688376,3752416976,5.24,6,34.07,34.05,0.55,0.52,1.04,1.05
-93602,06,019,06019,3862,1878,373377565,371872184,3862,1878,373377565,371872184,930450,315531,15568942406,15431126407,100,100,100,100,0.42,0.6,2.4,2.41
-93603,06,107,06107,222,218,112792745,112705936,222,218,112792745,112705936,442179,141696,12532049785,12494658169,100,100,100,100,0.05,0.15,0.9,0.9
-93604,06,039,06039,674,1279,366860818,364396911,674,1279,366860818,364396911,150865,49140,5576940489,5534982985,100,100,100,100,0.45,2.6,6.58,6.58
-93605,06,019,06019,175,117,1078646,1078646,175,117,1078646,1078646,930450,315531,15568942406,15431126407,100,100,100,100,0.02,0.04,0.01,0.01
-93606,06,019,06019,1217,266,388723,388723,1217,266,388723,388723,930450,315531,15568942406,15431126407,100,100,100,100,0.13,0.08,0,0
-93608,06,019,06019,1114,302,283121760,282247651,1114,302,283121760,282247651,930450,315531,15568942406,15431126407,100,100,100,100,0.12,0.1,1.82,1.83
-93609,06,019,06019,5640,1584,159254587,159254587,5640,1584,159254587,159254587,930450,315531,15568942406,15431126407,100,100,100,100,0.61,0.5,1.02,1.03
-93610,06,039,06039,23640,5746,595713330,593417830,23833,5809,707401246,705028898,150865,49140,5576940489,5534982985,99.19,98.92,84.21,84.17,15.67,11.69,10.68,10.72
-93610,06,047,06047,193,63,111687916,111611068,23833,5809,707401246,705028898,255793,83698,5124315228,5011554741,0.81,1.08,15.79,15.83,0.08,0.08,2.18,2.23
-93611,06,019,06019,45614,15825,28993835,28993835,45614,15825,28993835,28993835,930450,315531,15568942406,15431126407,100,100,100,100,4.9,5.02,0.19,0.19
-93612,06,019,06019,35351,14584,17132668,17132668,35351,14584,17132668,17132668,930450,315531,15568942406,15431126407,100,100,100,100,3.8,4.62,0.11,0.11
-93614,06,039,06039,11661,5329,298168718,297469148,11661,5329,298168718,297469148,150865,49140,5576940489,5534982985,100,100,100,100,7.73,10.84,5.35,5.37
-93615,06,107,06107,6042,1471,43328922,43328922,6042,1471,43328922,43328922,442179,141696,12532049785,12494658169,100,100,100,100,1.37,1.04,0.35,0.35
-93616,06,019,06019,2627,709,35932441,35932441,2627,709,35932441,35932441,930450,315531,15568942406,15431126407,100,100,100,100,0.28,0.22,0.23,0.23
-93618,06,019,06019,278,98,17473720,17473720,28262,7808,172635698,172635698,930450,315531,15568942406,15431126407,0.98,1.26,10.12,10.12,0.03,0.03,0.11,0.11
-93618,06,107,06107,27984,7710,155161978,155161978,28262,7808,172635698,172635698,442179,141696,12532049785,12494658169,99.02,98.74,89.88,89.88,6.33,5.44,1.24,1.24
-93619,06,019,06019,28874,10057,465504874,462062835,28965,10079,465542424,462100385,930450,315531,15568942406,15431126407,99.69,99.78,99.99,99.99,3.1,3.19,2.99,2.99
-93619,06,107,06107,91,22,37550,37550,28965,10079,465542424,462100385,442179,141696,12532049785,12494658169,0.31,0.22,0.01,0.01,0.02,0.02,0,0
-93620,06,019,06019,588,201,127684843,127595177,9591,3296,453212199,452385420,930450,315531,15568942406,15431126407,6.13,6.1,28.17,28.2,0.06,0.06,0.82,0.83
-93620,06,047,06047,9003,3095,325527356,324790243,9591,3296,453212199,452385420,255793,83698,5124315228,5011554741,93.87,93.9,71.83,71.8,3.52,3.7,6.35,6.48
-93621,06,019,06019,464,213,181102620,170897022,464,213,181102620,170897022,930450,315531,15568942406,15431126407,100,100,100,100,0.05,0.07,1.16,1.11
-93622,06,019,06019,9054,2573,759069282,754695186,9581,2782,923621355,918158449,930450,315531,15568942406,15431126407,94.5,92.49,82.18,82.2,0.97,0.82,4.88,4.89
-93622,06,039,06039,483,188,141162052,140310913,9581,2782,923621355,918158449,150865,49140,5576940489,5534982985,5.04,6.76,15.28,15.28,0.32,0.38,2.53,2.53
-93622,06,047,06047,44,21,23390021,23152350,9581,2782,923621355,918158449,255793,83698,5124315228,5011554741,0.46,0.75,2.53,2.52,0.02,0.03,0.46,0.46
-93623,06,039,06039,2,3,837335,837335,69,170,79859291,79826695,150865,49140,5576940489,5534982985,2.9,1.76,1.05,1.05,0,0.01,0.02,0.02
-93623,06,043,06043,67,167,79021956,78989360,69,170,79859291,79826695,18251,10188,3788688376,3752416976,97.1,98.24,98.95,98.95,0.37,1.64,2.09,2.11
-93624,06,019,06019,1134,295,290607256,290240690,1134,295,290607256,290240690,930450,315531,15568942406,15431126407,100,100,100,100,0.12,0.09,1.87,1.88
-93625,06,019,06019,7313,2416,64025289,64025289,7313,2416,64025289,64025289,930450,315531,15568942406,15431126407,100,100,100,100,0.79,0.77,0.41,0.41
-93626,06,019,06019,1032,455,60161271,52009665,1359,613,273625877,257886516,930450,315531,15568942406,15431126407,75.94,74.23,21.99,20.17,0.11,0.14,0.39,0.34
-93626,06,039,06039,327,158,213464606,205876851,1359,613,273625877,257886516,150865,49140,5576940489,5534982985,24.06,25.77,78.01,79.83,0.22,0.32,3.83,3.72
-93627,06,019,06019,123,29,92352753,92352753,123,29,92352753,92352753,930450,315531,15568942406,15431126407,100,100,100,100,0.01,0.01,0.59,0.6
-93628,06,019,06019,327,403,93269581,92921560,327,403,93269581,92921560,930450,315531,15568942406,15431126407,100,100,100,100,0.04,0.13,0.6,0.6
-93630,06,019,06019,19162,5642,406190446,403278744,19162,5642,406190446,403278744,930450,315531,15568942406,15431126407,100,100,100,100,2.06,1.79,2.61,2.61
-93631,06,019,06019,13127,4638,53150460,53150460,15941,5587,208607561,207801286,930450,315531,15568942406,15431126407,82.35,83.01,25.48,25.58,1.41,1.47,0.34,0.34
-93631,06,031,06031,773,258,42553555,42478318,15941,5587,208607561,207801286,152982,43867,3604050863,3598582308,4.85,4.62,20.4,20.44,0.51,0.59,1.18,1.18
-93631,06,107,06107,2041,691,112903546,112172508,15941,5587,208607561,207801286,442179,141696,12532049785,12494658169,12.8,12.37,54.12,53.98,0.46,0.49,0.9,0.9
-93633,06,019,06019,0,28,41621855,41621855,25,256,54295038,54295038,930450,315531,15568942406,15431126407,0,10.94,76.66,76.66,0,0.01,0.27,0.27
-93633,06,107,06107,25,228,12673183,12673183,25,256,54295038,54295038,442179,141696,12532049785,12494658169,100,89.06,23.34,23.34,0.01,0.16,0.1,0.1
-93634,06,019,06019,33,622,3127253992,3068390690,33,622,3127253992,3068390690,930450,315531,15568942406,15431126407,100,100,100,100,0,0.2,20.09,19.88
-93635,06,047,06047,38776,12546,693389247,671300236,38776,12546,693389247,671300236,255793,83698,5124315228,5011554741,100,100,100,100,15.16,14.99,13.53,13.4
-93636,06,039,06039,11908,4186,509521714,506600467,11908,4186,509521714,506600467,150865,49140,5576940489,5534982985,100,100,100,100,7.89,8.52,9.14,9.15
-93637,06,039,06039,37743,12241,700764508,700616337,37743,12241,700764508,700616337,150865,49140,5576940489,5534982985,100,100,100,100,25.02,24.91,12.57,12.66
-93638,06,039,06039,49068,12038,247163269,245587585,49068,12038,247163269,245587585,150865,49140,5576940489,5534982985,100,100,100,100,32.52,24.5,4.43,4.44
-93640,06,019,06019,11880,2797,296611263,292929642,11880,2797,296611263,292929642,930450,315531,15568942406,15431126407,100,100,100,100,1.28,0.89,1.91,1.9
-93641,06,019,06019,595,438,83068380,82690991,595,438,83068380,82690991,930450,315531,15568942406,15431126407,100,100,100,100,0.06,0.14,0.53,0.54
-93643,06,039,06039,3171,1778,323775903,322495957,3171,1778,323775903,322495957,150865,49140,5576940489,5534982985,100,100,100,100,2.1,3.62,5.81,5.83
-93644,06,039,06039,8637,4431,240277329,240257914,8637,4431,240277329,240257914,150865,49140,5576940489,5534982985,100,100,100,100,5.72,9.02,4.31,4.34
-93645,06,039,06039,318,149,138591934,138498803,318,149,138591934,138498803,150865,49140,5576940489,5534982985,100,100,100,100,0.21,0.3,2.49,2.5
-93646,06,019,06019,10242,2567,59938772,59938772,10557,2671,110351230,110351230,930450,315531,15568942406,15431126407,97.02,96.11,54.32,54.32,1.1,0.81,0.38,0.39
-93646,06,107,06107,315,104,50412458,50412458,10557,2671,110351230,110351230,442179,141696,12532049785,12494658169,2.98,3.89,45.68,45.68,0.07,0.07,0.4,0.4
-93647,06,107,06107,11874,2928,276802484,276774369,11874,2928,276802484,276774369,442179,141696,12532049785,12494658169,100,100,100,100,2.69,2.07,2.21,2.22
-93648,06,019,06019,15719,3875,59395881,59395881,15719,3875,59395881,59395881,930450,315531,15568942406,15431126407,100,100,100,100,1.69,1.23,0.38,0.38
-93650,06,019,06019,4055,1458,1834447,1834447,4055,1458,1834447,1834447,930450,315531,15568942406,15431126407,100,100,100,100,0.44,0.46,0.01,0.01
-93651,06,019,06019,1674,673,74478225,74408723,1674,673,74478225,74408723,930450,315531,15568942406,15431126407,100,100,100,100,0.18,0.21,0.48,0.48
-93652,06,019,06019,415,111,5346999,5346999,415,111,5346999,5346999,930450,315531,15568942406,15431126407,100,100,100,100,0.04,0.04,0.03,0.03
-93653,06,039,06039,1129,518,363879990,354987325,1229,570,624253320,614771703,150865,49140,5576940489,5534982985,91.86,90.88,58.29,57.74,0.75,1.05,6.52,6.41
-93653,06,043,06043,100,52,260373330,259784378,1229,570,624253320,614771703,18251,10188,3788688376,3752416976,8.14,9.12,41.71,42.26,0.55,0.51,6.87,6.92
-93654,06,019,06019,29013,8558,233573753,232224427,29776,8832,256721414,255245837,930450,315531,15568942406,15431126407,97.44,96.9,90.98,90.98,3.12,2.71,1.5,1.5
-93654,06,107,06107,763,274,23147661,23021410,29776,8832,256721414,255245837,442179,141696,12532049785,12494658169,2.56,3.1,9.02,9.02,0.17,0.19,0.18,0.18
-93656,06,019,06019,5958,1712,261897328,261897328,6313,1840,284553257,284522417,930450,315531,15568942406,15431126407,94.38,93.04,92.04,92.05,0.64,0.54,1.68,1.7
-93656,06,031,06031,355,128,22655929,22625089,6313,1840,284553257,284522417,152982,43867,3604050863,3598582308,5.62,6.96,7.96,7.95,0.23,0.29,0.63,0.63
-93657,06,019,06019,34999,11444,564249459,551883337,34999,11444,564249459,551883337,930450,315531,15568942406,15431126407,100,100,100,100,3.76,3.63,3.62,3.58
-93660,06,019,06019,4675,1130,211689153,210354182,4675,1130,211689153,210354182,930450,315531,15568942406,15431126407,100,100,100,100,0.5,0.36,1.36,1.36
-93662,06,019,06019,30237,8979,204608079,204057392,30237,8979,204608079,204057392,930450,315531,15568942406,15431126407,100,100,100,100,3.25,2.85,1.31,1.32
-93664,06,019,06019,585,2295,505387494,496537450,585,2295,505387494,496537450,930450,315531,15568942406,15431126407,100,100,100,100,0.06,0.73,3.25,3.22
-93665,06,047,06047,472,144,2178983,2178983,472,144,2178983,2178983,255793,83698,5124315228,5011554741,100,100,100,100,0.18,0.17,0.04,0.04
-93666,06,107,06107,692,207,968551,968551,692,207,968551,968551,442179,141696,12532049785,12494658169,100,100,100,100,0.16,0.15,0.01,0.01
-93667,06,019,06019,2604,1060,290664185,288369123,2604,1060,290664185,288369123,930450,315531,15568942406,15431126407,100,100,100,100,0.28,0.34,1.87,1.87
-93668,06,019,06019,1118,361,87364488,87172781,1118,361,87364488,87172781,930450,315531,15568942406,15431126407,100,100,100,100,0.12,0.11,0.56,0.56
-93669,06,039,06039,295,261,19630806,17625483,295,261,19630806,17625483,150865,49140,5576940489,5534982985,100,100,100,100,0.2,0.53,0.35,0.32
-93673,06,107,06107,713,184,2154155,2154155,713,184,2154155,2154155,442179,141696,12532049785,12494658169,100,100,100,100,0.16,0.13,0.02,0.02
-93675,06,019,06019,3721,1678,204269148,204126337,3721,1678,204269148,204126337,930450,315531,15568942406,15431126407,100,100,100,100,0.4,0.53,1.31,1.32
-93701,06,019,06019,12529,3828,3921893,3921893,12529,3828,3921893,3921893,930450,315531,15568942406,15431126407,100,100,100,100,1.35,1.21,0.03,0.03
-93702,06,019,06019,48607,12806,13633816,13633816,48607,12806,13633816,13633816,930450,315531,15568942406,15431126407,100,100,100,100,5.22,4.06,0.09,0.09
-93703,06,019,06019,31868,10249,12244599,12244599,31868,10249,12244599,12244599,930450,315531,15568942406,15431126407,100,100,100,100,3.43,3.25,0.08,0.08
-93704,06,019,06019,27156,11678,14195500,14195500,27156,11678,14195500,14195500,930450,315531,15568942406,15431126407,100,100,100,100,2.92,3.7,0.09,0.09
-93705,06,019,06019,36703,13085,12628103,12628103,36703,13085,12628103,12628103,930450,315531,15568942406,15431126407,100,100,100,100,3.94,4.15,0.08,0.08
-93706,06,019,06019,41087,11392,423558745,423558745,41087,11392,423558745,423558745,930450,315531,15568942406,15431126407,100,100,100,100,4.42,3.61,2.72,2.74
-93710,06,019,06019,30202,12181,18158800,18158800,30202,12181,18158800,18158800,930450,315531,15568942406,15431126407,100,100,100,100,3.25,3.86,0.12,0.12
-93711,06,019,06019,36731,16376,29660682,29291416,36731,16376,29660682,29291416,930450,315531,15568942406,15431126407,100,100,100,100,3.95,5.19,0.19,0.19
-93720,06,019,06019,45191,18236,25910775,25791046,45191,18236,25910775,25791046,930450,315531,15568942406,15431126407,100,100,100,100,4.86,5.78,0.17,0.17
-93721,06,019,06019,6959,1923,5309617,5309617,6959,1923,5309617,5309617,930450,315531,15568942406,15431126407,100,100,100,100,0.75,0.61,0.03,0.03
-93722,06,019,06019,76448,25246,50908025,50733010,76448,25246,50908025,50733010,930450,315531,15568942406,15431126407,100,100,100,100,8.22,8,0.33,0.33
-93723,06,019,06019,9547,3119,110615344,110550767,9547,3119,110615344,110550767,930450,315531,15568942406,15431126407,100,100,100,100,1.03,0.99,0.71,0.72
-93725,06,019,06019,24979,6974,169636803,169473946,24979,6974,169636803,169473946,930450,315531,15568942406,15431126407,100,100,100,100,2.68,2.21,1.09,1.1
-93726,06,019,06019,40705,15033,16619268,16619268,40705,15033,16619268,16619268,930450,315531,15568942406,15431126407,100,100,100,100,4.37,4.76,0.11,0.11
-93727,06,019,06019,71820,23644,84197155,84197155,71820,23644,84197155,84197155,930450,315531,15568942406,15431126407,100,100,100,100,7.72,7.49,0.54,0.55
-93728,06,019,06019,15743,6366,7924791,7924791,15743,6366,7924791,7924791,930450,315531,15568942406,15431126407,100,100,100,100,1.69,2.02,0.05,0.05
-93730,06,019,06019,9941,3869,21361532,19620322,9941,3869,21361532,19620322,930450,315531,15568942406,15431126407,100,100,100,100,1.07,1.23,0.14,0.13
-93901,06,053,06053,26863,10603,37908456,37833782,26863,10603,37908456,37833782,415057,139048,9767417220,8496702738,100,100,100,100,6.47,7.63,0.39,0.45
-93905,06,053,06053,61087,13157,24199643,24104021,61087,13157,24199643,24104021,415057,139048,9767417220,8496702738,100,100,100,100,14.72,9.46,0.25,0.28
-93906,06,053,06053,59461,17788,33905945,33858896,59461,17788,33905945,33858896,415057,139048,9767417220,8496702738,100,100,100,100,14.33,12.79,0.35,0.4
-93907,06,053,06053,21726,7512,140555934,139772769,21726,7512,140555934,139772769,415057,139048,9767417220,8496702738,100,100,100,100,5.23,5.4,1.44,1.65
-93908,06,053,06053,13043,4854,562376366,555777572,13043,4854,562376366,555777572,415057,139048,9767417220,8496702738,100,100,100,100,3.14,3.49,5.76,6.54
-93920,06,053,06053,1369,864,976372550,955395979,1369,864,976372550,955395979,415057,139048,9767417220,8496702738,100,100,100,100,0.33,0.62,10,11.24
-93921,06,053,06053,3281,3139,2749400,2328597,3281,3139,2749400,2328597,415057,139048,9767417220,8496702738,100,100,100,100,0.79,2.26,0.03,0.03
-93923,06,053,06053,12073,7476,343996136,334047495,12073,7476,343996136,334047495,415057,139048,9767417220,8496702738,100,100,100,100,2.91,5.38,3.52,3.93
-93924,06,053,06053,6279,3094,492862855,491762200,6279,3094,492862855,491762200,415057,139048,9767417220,8496702738,100,100,100,100,1.51,2.23,5.05,5.79
-93925,06,053,06053,1671,405,141858509,141038288,1671,405,141858509,141038288,415057,139048,9767417220,8496702738,100,100,100,100,0.4,0.29,1.45,1.66
-93926,06,053,06053,8726,2153,153622518,153337781,8726,2153,153622518,153337781,415057,139048,9767417220,8496702738,100,100,100,100,2.1,1.55,1.57,1.8
-93927,06,053,06053,17547,4347,686264259,683438614,17547,4347,686264259,683438614,415057,139048,9767417220,8496702738,100,100,100,100,4.23,3.13,7.03,8.04
-93928,06,053,06053,506,82,49521455,49472760,506,82,49521455,49472760,415057,139048,9767417220,8496702738,100,100,100,100,0.12,0.06,0.51,0.58
-93930,06,053,06053,15814,4229,780661039,768826882,15866,4260,944442492,932571919,415057,139048,9767417220,8496702738,99.67,99.27,82.66,82.44,3.81,3.04,7.99,9.05
-93930,06,069,06069,52,31,163781453,163745037,15866,4260,944442492,932571919,55269,17870,3601297341,3596742302,0.33,0.73,17.34,17.56,0.09,0.17,4.55,4.55
-93932,06,053,06053,592,292,261401591,260851306,592,292,261401591,260851306,415057,139048,9767417220,8496702738,100,100,100,100,0.14,0.21,2.68,3.07
-93933,06,053,06053,22406,8409,35024642,33300089,22406,8409,35024642,33300089,415057,139048,9767417220,8496702738,100,100,100,100,5.4,6.05,0.36,0.39
-93940,06,053,06053,31615,15281,55029448,53196768,31615,15281,55029448,53196768,415057,139048,9767417220,8496702738,100,100,100,100,7.62,10.99,0.56,0.63
-93943,06,053,06053,6,5,439354,439354,6,5,439354,439354,415057,139048,9767417220,8496702738,100,100,100,100,0,0,0,0.01
-93950,06,053,06053,15046,8171,9049969,7421665,15046,8171,9049969,7421665,415057,139048,9767417220,8496702738,100,100,100,100,3.63,5.88,0.09,0.09
-93953,06,053,06053,4509,2809,23907821,20823997,4509,2809,23907821,20823997,415057,139048,9767417220,8496702738,100,100,100,100,1.09,2.02,0.24,0.25
-93954,06,053,06053,302,93,94938859,94936001,302,93,94938859,94936001,415057,139048,9767417220,8496702738,100,100,100,100,0.07,0.07,0.97,1.12
-93955,06,053,06053,33359,11017,74726948,73140141,33359,11017,74726948,73140141,415057,139048,9767417220,8496702738,100,100,100,100,8.04,7.92,0.77,0.86
-93960,06,053,06053,27080,4359,541633779,528420486,27080,4359,541633779,528420486,415057,139048,9767417220,8496702738,100,100,100,100,6.52,3.13,5.55,6.22
-93962,06,053,06053,673,246,316378,316378,673,246,316378,316378,415057,139048,9767417220,8496702738,100,100,100,100,0.16,0.18,0,0
-94002,06,081,06081,25992,11108,14690614,14668197,25992,11108,14690614,14668197,718451,271031,1919076205,1161371825,100,100,100,100,3.62,4.1,0.77,1.26
-94005,06,081,06081,4282,1934,11832039,11384384,4282,1934,11832039,11384384,718451,271031,1919076205,1161371825,100,100,100,100,0.6,0.71,0.62,0.98
-94010,06,081,06081,40737,17348,30881144,30654438,40737,17348,30881144,30654438,718451,271031,1919076205,1161371825,100,100,100,100,5.67,6.4,1.61,2.64
-94014,06,081,06081,47014,14284,16334952,16334952,47014,14284,16334952,16334952,718451,271031,1919076205,1161371825,100,100,100,100,6.54,5.27,0.85,1.41
-94015,06,081,06081,60927,20678,14921282,14921282,60927,20678,14921282,14921282,718451,271031,1919076205,1161371825,100,100,100,100,8.48,7.63,0.78,1.28
-94019,06,081,06081,18424,7096,137689748,136231572,18424,7096,137689748,136231572,718451,271031,1919076205,1161371825,100,100,100,100,2.56,2.62,7.17,11.73
-94020,06,081,06081,1559,849,144520995,144436917,1559,849,144520995,144436917,718451,271031,1919076205,1161371825,100,100,100,100,0.22,0.31,7.53,12.44
-94021,06,081,06081,192,115,11740454,11740454,192,115,11740454,11740454,718451,271031,1919076205,1161371825,100,100,100,100,0.03,0.04,0.61,1.01
-94022,06,085,06085,18500,7479,45294442,45294442,18500,7479,45294442,45294442,1781642,631920,3377518466,3341343470,100,100,100,100,1.04,1.18,1.34,1.36
-94024,06,085,06085,22385,8178,18910937,18910937,22385,8178,18910937,18910937,1781642,631920,3377518466,3341343470,100,100,100,100,1.26,1.29,0.56,0.57
-94025,06,081,06081,40526,16271,30443754,30440620,40526,16271,30443754,30440620,718451,271031,1919076205,1161371825,100,100,100,100,5.64,6,1.59,2.62
-94027,06,081,06081,7089,2616,13543644,13461324,7089,2616,13543644,13461324,718451,271031,1919076205,1161371825,100,100,100,100,0.99,0.97,0.71,1.16
-94028,06,081,06081,6431,2699,36897105,36753556,6534,2744,39748569,39458835,718451,271031,1919076205,1161371825,98.42,98.36,92.83,93.14,0.9,1,1.92,3.16
-94028,06,085,06085,103,45,2851464,2705279,6534,2744,39748569,39458835,1781642,631920,3377518466,3341343470,1.58,1.64,7.17,6.86,0.01,0.01,0.08,0.08
-94030,06,081,06081,21536,8374,8801446,8771378,21536,8374,8801446,8771378,718451,271031,1919076205,1161371825,100,100,100,100,3,3.09,0.46,0.76
-94037,06,081,06081,2913,1169,14985393,14985393,2913,1169,14985393,14985393,718451,271031,1919076205,1161371825,100,100,100,100,0.41,0.43,0.78,1.29
-94038,06,081,06081,3040,1109,4081711,4081711,3040,1109,4081711,4081711,718451,271031,1919076205,1161371825,100,100,100,100,0.42,0.41,0.21,0.35
-94040,06,085,06085,32996,14492,9554256,9554256,32996,14492,9554256,9554256,1781642,631920,3377518466,3341343470,100,100,100,100,1.85,2.29,0.28,0.29
-94041,06,085,06085,13292,6331,3962150,3962150,13292,6331,3962150,3962150,1781642,631920,3377518466,3341343470,100,100,100,100,0.75,1,0.12,0.12
-94043,06,085,06085,28358,13213,27645044,27643575,28358,13213,27645044,27643575,1781642,631920,3377518466,3341343470,100,100,100,100,1.59,2.09,0.82,0.83
-94044,06,081,06081,37296,14550,37988545,37983639,37296,14550,37988545,37983639,718451,271031,1919076205,1161371825,100,100,100,100,5.19,5.37,1.98,3.27
-94060,06,081,06081,1554,650,189828402,188949679,1554,650,189828402,188949679,718451,271031,1919076205,1161371825,100,100,100,100,0.22,0.24,9.89,16.27
-94061,06,081,06081,36245,14010,10001799,9995762,36245,14010,10001799,9995762,718451,271031,1919076205,1161371825,100,100,100,100,5.04,5.17,0.52,0.86
-94062,06,081,06081,25876,10547,186031575,183596898,25876,10547,186031575,183596898,718451,271031,1919076205,1161371825,100,100,100,100,3.6,3.89,9.69,15.81
-94063,06,081,06081,30949,9175,20519832,17660779,30949,9175,20519832,17660779,718451,271031,1919076205,1161371825,100,100,100,100,4.31,3.39,1.07,1.52
-94065,06,081,06081,11359,4943,8008925,6313332,11359,4943,8008925,6313332,718451,271031,1919076205,1161371825,100,100,100,100,1.58,1.82,0.42,0.54
-94066,06,081,06081,41130,15360,15885106,15885106,41130,15360,15885106,15885106,718451,271031,1919076205,1161371825,100,100,100,100,5.72,5.67,0.83,1.37
-94070,06,081,06081,29166,12341,15912329,15905820,29166,12341,15912329,15905820,718451,271031,1919076205,1161371825,100,100,100,100,4.06,4.55,0.83,1.37
-94074,06,081,06081,214,101,48085489,48020109,214,101,48085489,48020109,718451,271031,1919076205,1161371825,100,100,100,100,0.03,0.04,2.51,4.13
-94080,06,081,06081,63975,21946,26906418,26623587,63975,21946,26906418,26623587,718451,271031,1919076205,1161371825,100,100,100,100,8.9,8.1,1.4,2.29
-94085,06,085,06085,21247,8076,9039193,9039193,21247,8076,9039193,9039193,1781642,631920,3377518466,3341343470,100,100,100,100,1.19,1.28,0.27,0.27
-94086,06,085,06085,45697,19359,11617938,11617938,45697,19359,11617938,11617938,1781642,631920,3377518466,3341343470,100,100,100,100,2.56,3.06,0.34,0.35
-94087,06,085,06085,54293,20977,17048754,17048754,54293,20977,17048754,17048754,1781642,631920,3377518466,3341343470,100,100,100,100,3.05,3.32,0.5,0.51
-94089,06,085,06085,19245,7530,15551988,15520469,19245,7530,15551988,15520469,1781642,631920,3377518466,3341343470,100,100,100,100,1.08,1.19,0.46,0.46
-94102,06,075,06075,31176,18758,1737493,1737493,31176,18758,1737493,1737493,805235,376942,600590280,121399963,100,100,100,100,3.87,4.98,0.29,1.43
-94103,06,075,06075,27170,14778,3512156,3512156,27170,14778,3512156,3512156,805235,376942,600590280,121399963,100,100,100,100,3.37,3.92,0.58,2.89
-94104,06,075,06075,406,368,200977,200977,406,368,200977,200977,805235,376942,600590280,121399963,100,100,100,100,0.05,0.1,0.03,0.17
-94105,06,075,06075,5846,4601,1167736,956710,5846,4601,1167736,956710,805235,376942,600590280,121399963,100,100,100,100,0.73,1.22,0.19,0.79
-94107,06,075,06075,26599,15141,4875049,4640746,26599,15141,4875049,4640746,805235,376942,600590280,121399963,100,100,100,100,3.3,4.02,0.81,3.82
-94108,06,075,06075,13768,8843,699434,699434,13768,8843,699434,699434,805235,376942,600590280,121399963,100,100,100,100,1.71,2.35,0.12,0.58
-94109,06,075,06075,55984,37182,3372018,3076630,55984,37182,3372018,3076630,805235,376942,600590280,121399963,100,100,100,100,6.95,9.86,0.56,2.53
-94110,06,075,06075,69333,28913,6034796,6022589,69333,28913,6034796,6022589,805235,376942,600590280,121399963,100,100,100,100,8.61,7.67,1,4.96
-94111,06,075,06075,3713,2811,1385516,891185,3713,2811,1385516,891185,805235,376942,600590280,121399963,100,100,100,100,0.46,0.75,0.23,0.73
-94112,06,075,06075,79407,23081,8712507,8712507,79407,23081,8712507,8712507,805235,376942,600590280,121399963,100,100,100,100,9.86,6.12,1.45,7.18
-94114,06,075,06075,31124,17634,3691502,3691502,31124,17634,3691502,3691502,805235,376942,600590280,121399963,100,100,100,100,3.87,4.68,0.61,3.04
-94115,06,075,06075,33021,18884,2889747,2889747,33021,18884,2889747,2889747,805235,376942,600590280,121399963,100,100,100,100,4.1,5.01,0.48,2.38
-94116,06,075,06075,43698,16283,6793787,6696583,43698,16283,6793787,6696583,805235,376942,600590280,121399963,100,100,100,100,5.43,4.32,1.13,5.52
-94117,06,075,06075,39169,19255,4372283,4370658,39169,19255,4372283,4370658,805235,376942,600590280,121399963,100,100,100,100,4.86,5.11,0.73,3.6
-94118,06,075,06075,38319,18633,5106525,5047351,38319,18633,5106525,5047351,805235,376942,600590280,121399963,100,100,100,100,4.76,4.94,0.85,4.16
-94121,06,075,06075,41203,18787,8042964,7981770,41203,18787,8042964,7981770,805235,376942,600590280,121399963,100,100,100,100,5.12,4.98,1.34,6.57
-94122,06,075,06075,56023,23633,6122506,6122506,56023,23633,6122506,6122506,805235,376942,600590280,121399963,100,100,100,100,6.96,6.27,1.02,5.04
-94123,06,075,06075,23088,15083,2866147,2643367,23088,15083,2866147,2643367,805235,376942,600590280,121399963,100,100,100,100,2.87,4,0.48,2.18
-94124,06,075,06075,33996,10812,15566151,12759593,33996,10812,15566151,12759593,805235,376942,600590280,121399963,100,100,100,100,4.22,2.87,2.59,10.51
-94127,06,075,06075,19289,7801,4594824,4585465,19289,7801,4594824,4585465,805235,376942,600590280,121399963,100,100,100,100,2.4,2.07,0.77,3.78
-94128,06,081,06081,69,0,9126347,9108453,69,0,9126347,9108453,718451,271031,1919076205,1161371825,100,0,100,100,0.01,0,0.48,0.78
-94129,06,075,06075,3183,1132,5983313,5968616,3183,1132,5983313,5968616,805235,376942,600590280,121399963,100,100,100,100,0.4,0.3,1,4.92
-94130,06,075,06075,2880,786,2333737,2333737,2880,786,2333737,2333737,805235,376942,600590280,121399963,100,100,100,100,0.36,0.21,0.39,1.92
-94131,06,075,06075,26881,13427,5436598,5386048,26881,13427,5436598,5386048,805235,376942,600590280,121399963,100,100,100,100,3.34,3.56,0.91,4.44
-94132,06,075,06075,28129,10769,9354165,8055033,28129,10769,9354165,8055033,805235,376942,600590280,121399963,100,100,100,100,3.49,2.86,1.56,6.64
-94133,06,075,06075,26237,15197,2602499,1955574,26237,15197,2602499,1955574,805235,376942,600590280,121399963,100,100,100,100,3.26,4.03,0.43,1.61
-94134,06,075,06075,40798,11867,6306233,6215356,40798,11867,6306233,6215356,805235,376942,600590280,121399963,100,100,100,100,5.07,3.15,1.05,5.12
-94158,06,075,06075,4792,2482,3045551,1702946,4792,2482,3045551,1702946,805235,376942,600590280,121399963,100,100,100,100,0.6,0.66,0.51,1.4
-94301,06,085,06085,16995,8109,6146453,6146453,16995,8109,6146453,6146453,1781642,631920,3377518466,3341343470,100,100,100,100,0.95,1.28,0.18,0.18
-94303,06,081,06081,28155,7819,6534615,6495216,45467,14551,22515438,20623192,718451,271031,1919076205,1161371825,61.92,53.74,29.02,31.49,3.92,2.88,0.34,0.56
-94303,06,085,06085,17312,6732,15980823,14127976,45467,14551,22515438,20623192,1781642,631920,3377518466,3341343470,38.08,46.26,70.98,68.51,0.97,1.07,0.47,0.42
-94304,06,085,06085,3627,2130,16877357,16830141,3627,2130,16877357,16830141,1781642,631920,3377518466,3341343470,100,100,100,100,0.2,0.34,0.5,0.5
-94305,06,085,06085,13862,4020,13398012,13280359,13862,4020,13398012,13280359,1781642,631920,3377518466,3341343470,100,100,100,100,0.78,0.64,0.4,0.4
-94306,06,085,06085,26469,11243,10843552,10843552,26469,11243,10843552,10843552,1781642,631920,3377518466,3341343470,100,100,100,100,1.49,1.78,0.32,0.32
-94401,06,081,06081,34429,13518,10935607,8148342,34429,13518,10935607,8148342,718451,271031,1919076205,1161371825,100,100,100,100,4.79,4.99,0.57,0.7
-94402,06,081,06081,23981,9804,12589400,12589400,23981,9804,12589400,12589400,718451,271031,1919076205,1161371825,100,100,100,100,3.34,3.62,0.66,1.08
-94403,06,081,06081,39642,16371,15018089,14584661,39642,16371,15018089,14584661,718451,271031,1919076205,1161371825,100,100,100,100,5.52,6.04,0.78,1.26
-94404,06,081,06081,33749,14246,12589534,11032640,33749,14246,12589534,11032640,718451,271031,1919076205,1161371825,100,100,100,100,4.7,5.26,0.66,0.95
-94501,06,001,06001,60212,27087,29544769,20539466,60212,27087,29544769,20539466,1510271,582549,2127230753,1914046110,100,100,100,100,3.99,4.65,1.39,1.07
-94502,06,001,06001,13600,5264,10023733,6942292,13600,5264,10023733,6942292,1510271,582549,2127230753,1914046110,100,100,100,100,0.9,0.9,0.47,0.36
-94503,06,055,06055,19681,6064,40511180,33556323,19681,6064,40511180,33556323,136484,54759,2042416680,1938247338,100,100,100,100,14.42,11.07,1.98,1.73
-94505,06,001,06001,74,48,2232846,2079096,13403,5452,55910749,42133370,1510271,582549,2127230753,1914046110,0.55,0.88,3.99,4.93,0,0.01,0.1,0.11
-94505,06,013,06013,13329,5404,53677903,40054274,13403,5452,55910749,42133370,1049025,400263,2081754142,1854268836,99.45,99.12,96.01,95.07,1.27,1.35,2.58,2.16
-94506,06,013,06013,22452,7788,48689940,48664719,22452,7788,48689940,48664719,1049025,400263,2081754142,1854268836,100,100,100,100,2.14,1.95,2.34,2.62
-94507,06,013,06013,14889,5528,32888775,32888775,14889,5528,32888775,32888775,1049025,400263,2081754142,1854268836,100,100,100,100,1.42,1.38,1.58,1.77
-94508,06,055,06055,3661,1213,45597850,45184656,3661,1213,45597850,45184656,136484,54759,2042416680,1938247338,100,100,100,100,2.68,2.22,2.23,2.33
-94509,06,013,06013,62439,22500,46136835,42552559,62439,22500,46136835,42552559,1049025,400263,2081754142,1854268836,100,100,100,100,5.95,5.62,2.22,2.29
-94510,06,095,06095,27088,11338,81098964,72389963,27088,11338,81098964,72389963,413344,152698,2347027136,2128361199,100,100,100,100,6.55,7.43,3.46,3.4
-94511,06,013,06013,2137,1327,14411147,14411147,2137,1327,14411147,14411147,1049025,400263,2081754142,1854268836,100,100,100,100,0.2,0.33,0.69,0.78
-94512,06,095,06095,108,41,52246100,52217895,108,41,52246100,52217895,413344,152698,2347027136,2128361199,100,100,100,100,0.03,0.03,2.23,2.45
-94513,06,013,06013,54605,18644,201010195,195948049,54605,18644,201010195,195948049,1049025,400263,2081754142,1854268836,100,100,100,100,5.21,4.66,9.66,10.57
-94514,06,001,06001,78,31,20251541,20088225,1360,468,74804296,74350346,1510271,582549,2127230753,1914046110,5.74,6.62,27.07,27.02,0.01,0.01,0.95,1.05
-94514,06,013,06013,1282,437,54552755,54262121,1360,468,74804296,74350346,1049025,400263,2081754142,1854268836,94.26,93.38,72.93,72.98,0.12,0.11,2.62,2.93
-94515,06,055,06055,6478,3166,146363367,145890691,7050,3517,274104941,273632265,136484,54759,2042416680,1938247338,91.89,90.02,53.4,53.32,4.75,5.78,7.17,7.53
-94515,06,097,06097,572,351,127741574,127741574,7050,3517,274104941,273632265,483878,204572,4578960489,4081430136,8.11,9.98,46.6,46.68,0.12,0.17,2.79,3.13
-94516,06,013,06013,211,91,2264979,2264979,211,91,2264979,2264979,1049025,400263,2081754142,1854268836,100,100,100,100,0.02,0.02,0.11,0.12
-94517,06,013,06013,12385,4662,148195672,148195672,12385,4662,148195672,148195672,1049025,400263,2081754142,1854268836,100,100,100,100,1.18,1.16,7.12,7.99
-94518,06,013,06013,26778,10638,14081235,14081235,26778,10638,14081235,14081235,1049025,400263,2081754142,1854268836,100,100,100,100,2.55,2.66,0.68,0.76
-94519,06,013,06013,18453,7246,11323357,11323357,18453,7246,11323357,11323357,1049025,400263,2081754142,1854268836,100,100,100,100,1.76,1.81,0.54,0.61
-94520,06,013,06013,37208,13601,26130104,26130104,37208,13601,26130104,26130104,1049025,400263,2081754142,1854268836,100,100,100,100,3.55,3.4,1.26,1.41
-94521,06,013,06013,41249,16269,33572538,33572538,41249,16269,33572538,33572538,1049025,400263,2081754142,1854268836,100,100,100,100,3.93,4.06,1.61,1.81
-94523,06,013,06013,33569,14505,18738956,18738956,33569,14505,18738956,18738956,1049025,400263,2081754142,1854268836,100,100,100,100,3.2,3.62,0.9,1.01
-94525,06,013,06013,3127,1664,7928253,6093356,3127,1664,7928253,6093356,1049025,400263,2081754142,1854268836,100,100,100,100,0.3,0.42,0.38,0.33
-94526,06,013,06013,31102,12218,38673581,38668323,31102,12218,38673581,38668323,1049025,400263,2081754142,1854268836,100,100,100,100,2.96,3.05,1.86,2.09
-94528,06,013,06013,964,393,6072659,6072659,964,393,6072659,6072659,1049025,400263,2081754142,1854268836,100,100,100,100,0.09,0.1,0.29,0.33
-94530,06,013,06013,23877,10914,12506021,12506021,23877,10914,12506021,12506021,1049025,400263,2081754142,1854268836,100,100,100,100,2.28,2.73,0.6,0.67
-94531,06,013,06013,40290,12494,28373833,28373833,40290,12494,28373833,28373833,1049025,400263,2081754142,1854268836,100,100,100,100,3.84,3.12,1.36,1.53
-94533,06,095,06095,69277,24359,56294100,55951716,69277,24359,56294100,55951716,413344,152698,2347027136,2128361199,100,100,100,100,16.76,15.95,2.4,2.63
-94534,06,095,06095,36416,13331,206575162,205029594,36416,13331,206575162,205029594,413344,152698,2347027136,2128361199,100,100,100,100,8.81,8.73,8.8,9.63
-94535,06,095,06095,3793,1238,9890026,9871382,3793,1238,9890026,9871382,413344,152698,2347027136,2128361199,100,100,100,100,0.92,0.81,0.42,0.46
-94536,06,001,06001,68790,25068,37778959,37767267,68790,25068,37778959,37767267,1510271,582549,2127230753,1914046110,100,100,100,100,4.55,4.3,1.78,1.97
-94538,06,001,06001,61148,21739,43091536,42636278,61148,21739,43091536,42636278,1510271,582549,2127230753,1914046110,100,100,100,100,4.05,3.73,2.03,2.23
-94539,06,001,06001,50031,16100,65831999,65831999,50031,16100,65831999,65831999,1510271,582549,2127230753,1914046110,100,100,100,100,3.31,2.76,3.09,3.44
-94541,06,001,06001,61635,21989,19304888,19243298,61635,21989,19304888,19243298,1510271,582549,2127230753,1914046110,100,100,100,100,4.08,3.77,0.91,1.01
-94542,06,001,06001,12717,4595,14773416,14773416,12717,4595,14773416,14773416,1510271,582549,2127230753,1914046110,100,100,100,100,0.84,0.79,0.69,0.77
-94544,06,001,06001,73026,23308,28378433,28378433,73026,23308,28378433,28378433,1510271,582549,2127230753,1914046110,100,100,100,100,4.84,4,1.33,1.48
-94545,06,001,06001,29707,9477,63015014,55787089,29707,9477,63015014,55787089,1510271,582549,2127230753,1914046110,100,100,100,100,1.97,1.63,2.96,2.91
-94546,06,001,06001,42209,16929,25085713,24404738,42209,16929,25085713,24404738,1510271,582549,2127230753,1914046110,100,100,100,100,2.79,2.91,1.18,1.28
-94547,06,013,06013,24092,8569,16238329,14095493,24092,8569,16238329,14095493,1049025,400263,2081754142,1854268836,100,100,100,100,2.3,2.14,0.78,0.76
-94548,06,013,06013,412,172,7279967,7157010,412,172,7279967,7157010,1049025,400263,2081754142,1854268836,100,100,100,100,0.04,0.04,0.35,0.39
-94549,06,013,06013,26864,10896,50177606,49746404,26864,10896,50177606,49746404,1049025,400263,2081754142,1854268836,100,100,100,100,2.56,2.72,2.41,2.68
-94550,06,001,06001,46766,17763,409753502,405632788,46896,17858,607075870,602772633,1510271,582549,2127230753,1914046110,99.72,99.47,67.5,67.29,3.1,3.05,19.26,21.19
-94550,06,085,06085,130,95,197322368,197139845,46896,17858,607075870,602772633,1781642,631920,3377518466,3341343470,0.28,0.53,32.5,32.71,0.01,0.02,5.84,5.9
-94551,06,001,06001,36661,13483,137039040,136948409,36867,13566,204480607,204389976,1510271,582549,2127230753,1914046110,99.44,99.39,67.02,67,2.43,2.31,6.44,7.15
-94551,06,013,06013,206,83,67441567,67441567,36867,13566,204480607,204389976,1049025,400263,2081754142,1854268836,0.56,0.61,32.98,33,0.02,0.02,3.24,3.64
-94552,06,001,06001,14454,5067,116340860,116286622,14454,5067,116340860,116286622,1510271,582549,2127230753,1914046110,100,100,100,100,0.96,0.87,5.47,6.08
-94553,06,013,06013,47065,19581,133448296,126758554,47065,19581,133448296,126758554,1049025,400263,2081754142,1854268836,100,100,100,100,4.49,4.89,6.41,6.84
-94555,06,001,06001,34143,11096,33728928,30070498,34143,11096,33728928,30070498,1510271,582549,2127230753,1914046110,100,100,100,100,2.26,1.9,1.59,1.57
-94556,06,013,06013,15229,5817,31722307,31722307,15229,5817,31722307,31722307,1049025,400263,2081754142,1854268836,100,100,100,100,1.45,1.45,1.52,1.71
-94558,06,055,06055,66830,27133,1000272770,921414306,66830,27133,1000272770,921414306,136484,54759,2042416680,1938247338,100,100,100,100,48.97,49.55,48.97,47.54
-94559,06,055,06055,27184,11014,100683876,94910435,27184,11014,100683876,94910435,136484,54759,2042416680,1938247338,100,100,100,100,19.92,20.11,4.93,4.9
-94560,06,001,06001,42573,13414,35818395,35757865,42573,13414,35818395,35757865,1510271,582549,2127230753,1914046110,100,100,100,100,2.82,2.3,1.68,1.87
-94561,06,013,06013,36515,12080,46369297,43839147,36515,12080,46369297,43839147,1049025,400263,2081754142,1854268836,100,100,100,100,3.48,3.02,2.23,2.36
-94563,06,013,06013,17672,6816,44752114,44713551,17672,6816,44752114,44713551,1049025,400263,2081754142,1854268836,100,100,100,100,1.68,1.7,2.15,2.41
-94564,06,013,06013,18287,7127,15662662,14477578,18287,7127,15662662,14477578,1049025,400263,2081754142,1854268836,100,100,100,100,1.74,1.78,0.75,0.78
-94565,06,013,06013,84641,27897,87774027,78214477,84641,27897,87774027,78214477,1049025,400263,2081754142,1854268836,100,100,100,100,8.07,6.97,4.22,4.22
-94566,06,001,06001,40884,15329,51183458,50788269,40884,15329,51183458,50788269,1510271,582549,2127230753,1914046110,100,100,100,100,2.71,2.63,2.41,2.65
-94567,06,055,06055,623,312,346614875,340358151,623,312,346614875,340358151,136484,54759,2042416680,1938247338,100,100,100,100,0.46,0.57,16.97,17.56
-94568,06,001,06001,46016,15773,39599489,39588086,46016,15773,39599489,39588086,1510271,582549,2127230753,1914046110,100,100,100,100,3.05,2.71,1.86,2.07
-94569,06,013,06013,198,115,6127472,6127472,198,115,6127472,6127472,1049025,400263,2081754142,1854268836,100,100,100,100,0.02,0.03,0.29,0.33
-94571,06,067,06067,242,144,97763184,61165093,7911,4149,358300535,304636842,1418788,555932,2574492918,2498415670,3.06,3.47,27.29,20.08,0.02,0.03,3.8,2.45
-94571,06,095,06095,7669,4005,260537351,243471749,7911,4149,358300535,304636842,413344,152698,2347027136,2128361199,96.94,96.53,72.71,79.92,1.86,2.62,11.1,11.44
-94572,06,013,06013,8684,3130,13536319,11244845,8684,3130,13536319,11244845,1049025,400263,2081754142,1854268836,100,100,100,100,0.83,0.78,0.65,0.61
-94573,06,055,06055,94,53,2585502,2577621,94,53,2585502,2577621,136484,54759,2042416680,1938247338,100,100,100,100,0.07,0.1,0.13,0.13
-94574,06,055,06055,8742,4406,336407576,330994478,8742,4406,336407576,330994478,136484,54759,2042416680,1938247338,100,100,100,100,6.41,8.05,16.47,17.08
-94575,06,013,06013,974,1,456695,433794,974,1,456695,433794,1049025,400263,2081754142,1854268836,100,100,100,100,0.09,0,0.02,0.02
-94576,06,055,06055,164,84,956949,956949,164,84,956949,956949,136484,54759,2042416680,1938247338,100,100,100,100,0.12,0.15,0.05,0.05
-94577,06,001,06001,45560,17714,24647370,21107125,45560,17714,24647370,21107125,1510271,582549,2127230753,1914046110,100,100,100,100,3.02,3.04,1.16,1.1
-94578,06,001,06001,38558,14808,11406269,11406269,38558,14808,11406269,11406269,1510271,582549,2127230753,1914046110,100,100,100,100,2.55,2.54,0.54,0.6
-94579,06,001,06001,20571,7019,8113265,8113265,20571,7019,8113265,8113265,1510271,582549,2127230753,1914046110,100,100,100,100,1.36,1.2,0.38,0.42
-94580,06,001,06001,27152,8958,8946888,8929836,27152,8958,8946888,8929836,1510271,582549,2127230753,1914046110,100,100,100,100,1.8,1.54,0.42,0.47
-94582,06,013,06013,38537,13345,33704760,33663078,38537,13345,33704760,33663078,1049025,400263,2081754142,1854268836,100,100,100,100,3.67,3.33,1.62,1.82
-94583,06,013,06013,34859,13282,38728611,38727298,34859,13282,38728611,38727298,1049025,400263,2081754142,1854268836,100,100,100,100,3.32,3.32,1.86,2.09
-94585,06,095,06095,28263,9511,303743681,291131232,28263,9511,303743681,291131232,413344,152698,2347027136,2128361199,100,100,100,100,6.84,6.23,12.94,13.68
-94586,06,001,06001,925,398,153885998,151891060,925,398,153885998,151891060,1510271,582549,2127230753,1914046110,100,100,100,100,0.06,0.07,7.23,7.94
-94587,06,001,06001,69516,21258,51075108,51075108,69516,21258,51075108,51075108,1510271,582549,2127230753,1914046110,100,100,100,100,4.6,3.65,2.4,2.67
-94588,06,001,06001,30440,11123,45800136,45800136,30842,11263,84547541,84547541,1510271,582549,2127230753,1914046110,98.7,98.76,54.17,54.17,2.02,1.91,2.15,2.39
-94588,06,013,06013,402,140,38747405,38747405,30842,11263,84547541,84547541,1049025,400263,2081754142,1854268836,1.3,1.24,45.83,45.83,0.04,0.03,1.86,2.09
-94589,06,055,06055,6,4,14828885,14809878,29876,9973,30021009,29676409,136484,54759,2042416680,1938247338,0.02,0.04,49.4,49.9,0,0.01,0.73,0.76
-94589,06,095,06095,29870,9969,15192124,14866531,29876,9973,30021009,29676409,413344,152698,2347027136,2128361199,99.98,99.96,50.6,50.1,7.23,6.53,0.65,0.7
-94590,06,095,06095,35420,15729,17910910,15395883,35420,15729,17910910,15395883,413344,152698,2347027136,2128361199,100,100,100,100,8.57,10.3,0.76,0.72
-94591,06,095,06095,53042,19644,57765591,55883798,53042,19644,57765591,55883798,413344,152698,2347027136,2128361199,100,100,100,100,12.83,12.86,2.46,2.63
-94592,06,095,06095,742,319,10969482,10953975,742,319,10969482,10953975,413344,152698,2347027136,2128361199,100,100,100,100,0.18,0.21,0.47,0.51
-94595,06,013,06013,16425,10261,13930717,13930717,16425,10261,13930717,13930717,1049025,400263,2081754142,1854268836,100,100,100,100,1.57,2.56,0.67,0.75
-94596,06,013,06013,20037,10198,15448709,15448709,20037,10198,15448709,15448709,1049025,400263,2081754142,1854268836,100,100,100,100,1.91,2.55,0.74,0.83
-94597,06,013,06013,20277,10181,10139311,10139311,20277,10181,10139311,10139311,1049025,400263,2081754142,1854268836,100,100,100,100,1.93,2.54,0.49,0.55
-94598,06,013,06013,25818,10756,39524900,39493625,25818,10756,39524900,39493625,1049025,400263,2081754142,1854268836,100,100,100,100,2.46,2.69,1.9,2.13
-94599,06,055,06055,3021,1310,7593850,7593850,3021,1310,7593850,7593850,136484,54759,2042416680,1938247338,100,100,100,100,2.21,2.39,0.37,0.39
-94601,06,001,06001,50294,16362,8721642,8410939,50294,16362,8721642,8410939,1510271,582549,2127230753,1914046110,100,100,100,100,3.33,2.81,0.41,0.44
-94602,06,001,06001,28329,12498,8634560,8557026,28329,12498,8634560,8557026,1510271,582549,2127230753,1914046110,100,100,100,100,1.88,2.15,0.41,0.45
-94603,06,001,06001,31403,9950,8445735,8445735,31403,9950,8445735,8445735,1510271,582549,2127230753,1914046110,100,100,100,100,2.08,1.71,0.4,0.44
-94605,06,001,06001,39016,16360,23335944,23196747,39016,16360,23335944,23196747,1510271,582549,2127230753,1914046110,100,100,100,100,2.58,2.81,1.1,1.21
-94606,06,001,06001,36672,16289,6489029,5922461,36672,16289,6489029,5922461,1510271,582549,2127230753,1914046110,100,100,100,100,2.43,2.8,0.31,0.31
-94607,06,001,06001,24978,12086,18337845,15275654,24978,12086,18337845,15275654,1510271,582549,2127230753,1914046110,100,100,100,100,1.65,2.07,0.86,0.8
-94608,06,001,06001,28019,15101,8836116,7090119,28019,15101,8836116,7090119,1510271,582549,2127230753,1914046110,100,100,100,100,1.86,2.59,0.42,0.37
-94609,06,001,06001,20596,10348,4424277,4424277,20596,10348,4424277,4424277,1510271,582549,2127230753,1914046110,100,100,100,100,1.36,1.78,0.21,0.23
-94610,06,001,06001,29287,16450,6258744,5656311,29287,16450,6258744,5656311,1510271,582549,2127230753,1914046110,100,100,100,100,1.94,2.82,0.29,0.3
-94611,06,001,06001,36521,17971,18928806,18923665,36565,17999,27357321,27352180,1510271,582549,2127230753,1914046110,99.88,99.84,69.19,69.19,2.42,3.08,0.89,0.99
-94611,06,013,06013,44,28,8428515,8428515,36565,17999,27357321,27352180,1049025,400263,2081754142,1854268836,0.12,0.16,30.81,30.81,0,0.01,0.4,0.45
-94612,06,001,06001,14389,8921,2205251,2205251,14389,8921,2205251,2205251,1510271,582549,2127230753,1914046110,100,100,100,100,0.95,1.53,0.1,0.12
-94613,06,001,06001,715,5,656685,656685,715,5,656685,656685,1510271,582549,2127230753,1914046110,100,100,100,100,0.05,0,0.03,0.03
-94618,06,001,06001,16046,7698,6306772,6281500,16046,7698,6306772,6281500,1510271,582549,2127230753,1914046110,100,100,100,100,1.06,1.32,0.3,0.33
-94619,06,001,06001,23299,9644,44251343,40532270,23299,9644,44251343,40532270,1510271,582549,2127230753,1914046110,100,100,100,100,1.54,1.66,2.08,2.12
-94621,06,001,06001,29870,9689,24735263,20144786,29870,9689,24735263,20144786,1510271,582549,2127230753,1914046110,100,100,100,100,1.98,1.66,1.16,1.05
-94702,06,001,06001,15979,7959,3299367,3299367,15979,7959,3299367,3299367,1510271,582549,2127230753,1914046110,100,100,100,100,1.06,1.37,0.16,0.17
-94703,06,001,06001,19846,9468,3460814,3460814,19846,9468,3460814,3460814,1510271,582549,2127230753,1914046110,100,100,100,100,1.31,1.63,0.16,0.18
-94704,06,001,06001,25592,9683,2769877,2769877,25592,9683,2769877,2769877,1510271,582549,2127230753,1914046110,100,100,100,100,1.69,1.66,0.13,0.14
-94705,06,001,06001,12762,6133,8558635,8558635,12762,6133,8558635,8558635,1510271,582549,2127230753,1914046110,100,100,100,100,0.85,1.05,0.4,0.45
-94706,06,001,06001,19611,8426,3814094,3814094,19615,8429,3823559,3823559,1510271,582549,2127230753,1914046110,99.98,99.96,99.75,99.75,1.3,1.45,0.18,0.2
-94706,06,013,06013,4,3,9465,9465,19615,8429,3823559,3823559,1049025,400263,2081754142,1854268836,0.02,0.04,0.25,0.25,0,0,0,0
-94707,06,001,06001,8932,3964,2906067,2906067,11710,5198,4390733,4390733,1510271,582549,2127230753,1914046110,76.28,76.26,66.19,66.19,0.59,0.68,0.14,0.15
-94707,06,013,06013,2778,1234,1484666,1484666,11710,5198,4390733,4390733,1049025,400263,2081754142,1854268836,23.72,23.74,33.81,33.81,0.26,0.31,0.07,0.08
-94708,06,001,06001,8715,3990,3600417,3595273,10985,5047,8820213,8784938,1510271,582549,2127230753,1914046110,79.34,79.06,40.82,40.93,0.58,0.68,0.17,0.19
-94708,06,013,06013,2270,1057,5219796,5189665,10985,5047,8820213,8784938,1049025,400263,2081754142,1854268836,20.66,20.94,59.18,59.07,0.22,0.26,0.25,0.28
-94709,06,001,06001,11806,5605,1522484,1522484,11806,5605,1522484,1522484,1510271,582549,2127230753,1914046110,100,100,100,100,0.78,0.96,0.07,0.08
-94710,06,001,06001,6948,2937,11430367,5566008,6948,2937,11430367,5566008,1510271,582549,2127230753,1914046110,100,100,100,100,0.46,0.5,0.54,0.29
-94720,06,001,06001,2964,105,1612536,1612536,2964,105,1612536,1612536,1510271,582549,2127230753,1914046110,100,100,100,100,0.2,0.02,0.08,0.08
-94801,06,013,06013,29395,10221,45692751,29210775,29395,10221,45692751,29210775,1049025,400263,2081754142,1854268836,100,100,100,100,2.8,2.55,2.19,1.58
-94803,06,013,06013,24904,9675,30223793,30223793,24904,9675,30223793,30223793,1049025,400263,2081754142,1854268836,100,100,100,100,2.37,2.42,1.45,1.63
-94804,06,013,06013,38559,15257,22860030,16002841,38559,15257,22860030,16002841,1049025,400263,2081754142,1854268836,100,100,100,100,3.68,3.81,1.1,0.86
-94805,06,013,06013,13648,5446,5142991,5142991,13648,5446,5142991,5142991,1049025,400263,2081754142,1854268836,100,100,100,100,1.3,1.36,0.25,0.28
-94806,06,013,06013,59861,20531,22177759,21583495,59861,20531,22177759,21583495,1049025,400263,2081754142,1854268836,100,100,100,100,5.71,5.13,1.07,1.16
-94850,06,013,06013,0,0,142901,109969,0,0,142901,109969,1049025,400263,2081754142,1854268836,0,0,100,100,0,0,0.01,0.01
-94901,06,041,06041,41157,16408,43878279,34087837,41157,16408,43878279,34087837,252409,111214,2145005954,1347585521,100,100,100,100,16.31,14.75,2.05,2.53
-94903,06,041,06041,29040,12603,53581014,51941338,29040,12603,53581014,51941338,252409,111214,2145005954,1347585521,100,100,100,100,11.51,11.33,2.5,3.85
-94904,06,041,06041,11995,5759,19178018,18763550,11995,5759,19178018,18763550,252409,111214,2145005954,1347585521,100,100,100,100,4.75,5.18,0.89,1.39
-94920,06,041,06041,12474,5817,30597382,16917954,12474,5817,30597382,16917954,252409,111214,2145005954,1347585521,100,100,100,100,4.94,5.23,1.43,1.26
-94922,06,097,06097,425,212,31987814,31919856,425,212,31987814,31919856,483878,204572,4578960489,4081430136,100,100,100,100,0.09,0.1,0.7,0.78
-94923,06,097,06097,1411,1449,59195372,55431799,1411,1449,59195372,55431799,483878,204572,4578960489,4081430136,100,100,100,100,0.29,0.71,1.29,1.36
-94924,06,041,06041,1638,995,70790154,59879387,1638,995,70790154,59879387,252409,111214,2145005954,1347585521,100,100,100,100,0.65,0.89,3.3,4.44
-94925,06,041,06041,9253,4026,10953921,8193476,9253,4026,10953921,8193476,252409,111214,2145005954,1347585521,100,100,100,100,3.67,3.62,0.51,0.61
-94928,06,097,06097,43170,16594,19951956,19951956,43170,16594,19951956,19951956,483878,204572,4578960489,4081430136,100,100,100,100,8.92,8.11,0.44,0.49
-94929,06,041,06041,264,426,2749903,2749903,264,426,2749903,2749903,252409,111214,2145005954,1347585521,100,100,100,100,0.1,0.38,0.13,0.2
-94930,06,041,06041,8500,4023,42287227,41237691,8500,4023,42287227,41237691,252409,111214,2145005954,1347585521,100,100,100,100,3.37,3.62,1.97,3.06
-94931,06,097,06097,8470,3677,16481637,16452622,8470,3677,16481637,16452622,483878,204572,4578960489,4081430136,100,100,100,100,1.75,1.8,0.36,0.4
-94933,06,041,06041,865,421,2835008,2835008,865,421,2835008,2835008,252409,111214,2145005954,1347585521,100,100,100,100,0.34,0.38,0.13,0.21
-94937,06,041,06041,837,762,137029820,107741785,837,762,137029820,107741785,252409,111214,2145005954,1347585521,100,100,100,100,0.33,0.69,6.39,8
-94938,06,041,06041,812,417,27406981,27406981,812,417,27406981,27406981,252409,111214,2145005954,1347585521,100,100,100,100,0.32,0.37,1.28,2.03
-94939,06,041,06041,6859,3582,5789279,5536933,6859,3582,5789279,5536933,252409,111214,2145005954,1347585521,100,100,100,100,2.72,3.22,0.27,0.41
-94940,06,041,06041,268,197,68692902,58977903,268,197,68692902,58977903,252409,111214,2145005954,1347585521,100,100,100,100,0.11,0.18,3.2,4.38
-94941,06,041,06041,30496,14108,59457825,57584368,30496,14108,59457825,57584368,252409,111214,2145005954,1347585521,100,100,100,100,12.08,12.69,2.77,4.27
-94945,06,041,06041,17167,7020,69582147,67357203,17167,7020,69582147,67357203,252409,111214,2145005954,1347585521,100,100,100,100,6.8,6.31,3.24,5
-94946,06,041,06041,699,351,116719942,113128397,699,351,116719942,113128397,252409,111214,2145005954,1347585521,100,100,100,100,0.28,0.32,5.44,8.39
-94947,06,041,06041,24283,9772,59291862,58778749,24283,9772,59291862,58778749,252409,111214,2145005954,1347585521,100,100,100,100,9.62,8.79,2.76,4.36
-94949,06,041,06041,17202,7282,42097333,38918837,17202,7282,42097333,38918837,252409,111214,2145005954,1347585521,100,100,100,100,6.82,6.55,1.96,2.89
-94950,06,041,06041,89,54,22279973,22279973,89,54,22279973,22279973,252409,111214,2145005954,1347585521,100,100,100,100,0.04,0.05,1.04,1.65
-94951,06,097,06097,4124,1794,37958330,37958330,4124,1794,37958330,37958330,483878,204572,4578960489,4081430136,100,100,100,100,0.85,0.88,0.83,0.93
-94952,06,041,06041,669,316,218444341,217763240,32858,13904,469818998,466820751,252409,111214,2145005954,1347585521,2.04,2.27,46.5,46.65,0.27,0.28,10.18,16.16
-94952,06,097,06097,32189,13588,251374657,249057511,32858,13904,469818998,466820751,483878,204572,4578960489,4081430136,97.96,97.73,53.5,53.35,6.65,6.64,5.49,6.1
-94954,06,097,06097,37365,13915,166459147,160575265,37365,13915,166459147,160575265,483878,204572,4578960489,4081430136,100,100,100,100,7.72,6.8,3.64,3.93
-94956,06,041,06041,1756,1064,180448975,151282609,1756,1064,180448975,151282609,252409,111214,2145005954,1347585521,100,100,100,100,0.7,0.96,8.41,11.23
-94957,06,041,06041,1332,475,2963524,2963524,1332,475,2963524,2963524,252409,111214,2145005954,1347585521,100,100,100,100,0.53,0.43,0.14,0.22
-94960,06,041,06041,15740,6791,15368189,15368189,15740,6791,15368189,15368189,252409,111214,2145005954,1347585521,100,100,100,100,6.24,6.11,0.72,1.14
-94963,06,041,06041,569,259,6894481,6894481,569,259,6894481,6894481,252409,111214,2145005954,1347585521,100,100,100,100,0.23,0.23,0.32,0.51
-94964,06,041,06041,5094,115,1009696,1009696,5094,115,1009696,1009696,252409,111214,2145005954,1347585521,100,100,100,100,2.02,0.1,0.05,0.07
-94965,06,041,06041,10847,6466,46129939,35020350,10847,6466,46129939,35020350,252409,111214,2145005954,1347585521,100,100,100,100,4.3,5.81,2.15,2.6
-94970,06,041,06041,683,818,18019764,18019764,683,818,18019764,18019764,252409,111214,2145005954,1347585521,100,100,100,100,0.27,0.74,0.84,1.34
-94971,06,041,06041,337,181,37024677,32062021,337,181,37024677,32062021,252409,111214,2145005954,1347585521,100,100,100,100,0.13,0.16,1.73,2.38
-94972,06,041,06041,52,28,32913976,29959646,52,28,32913976,29959646,252409,111214,2145005954,1347585521,100,100,100,100,0.02,0.03,1.53,2.22
-94973,06,041,06041,1429,677,10318686,10318686,1429,677,10318686,10318686,252409,111214,2145005954,1347585521,100,100,100,100,0.57,0.61,0.48,0.77
-95002,06,085,06085,2077,614,36980052,31006231,2077,614,36980052,31006231,1781642,631920,3377518466,3341343470,100,100,100,100,0.12,0.1,1.09,0.93
-95003,06,087,06087,23974,11719,94570800,91033228,23974,11719,94570800,91033228,262382,104476,1572554884,1152986019,100,100,100,100,9.14,11.22,6.01,7.9
-95004,06,053,06053,2380,838,23164019,23128682,3918,1412,47060646,47013437,415057,139048,9767417220,8496702738,60.75,59.35,49.22,49.2,0.57,0.6,0.24,0.27
-95004,06,069,06069,1538,574,23896627,23884755,3918,1412,47060646,47013437,55269,17870,3601297341,3596742302,39.25,40.65,50.78,50.8,2.78,3.21,0.66,0.66
-95005,06,087,06087,6311,2705,31596048,30929047,6311,2705,31596048,30929047,262382,104476,1572554884,1152986019,100,100,100,100,2.41,2.59,2.01,2.68
-95006,06,087,06087,8979,4518,138563087,138550364,8979,4518,138563087,138550364,262382,104476,1572554884,1152986019,100,100,100,100,3.42,4.32,8.81,12.02
-95007,06,087,06087,676,300,1482252,1482252,676,300,1482252,1482252,262382,104476,1572554884,1152986019,100,100,100,100,0.26,0.29,0.09,0.13
-95008,06,085,06085,45260,19410,16789494,16543756,45260,19410,16789494,16543756,1781642,631920,3377518466,3341343470,100,100,100,100,2.54,3.07,0.5,0.5
-95010,06,087,06087,9137,5127,4252210,3554436,9137,5127,4252210,3554436,262382,104476,1572554884,1152986019,100,100,100,100,3.48,4.91,0.27,0.31
-95012,06,053,06053,10320,2765,40706054,38655375,10320,2765,40706054,38655375,415057,139048,9767417220,8496702738,100,100,100,100,2.49,1.99,0.42,0.45
-95013,06,085,06085,80,32,3954839,3954839,80,32,3954839,3954839,1781642,631920,3377518466,3341343470,100,100,100,100,0,0.01,0.12,0.12
-95014,06,085,06085,60717,22035,70088747,69748879,60717,22035,70088747,69748879,1781642,631920,3377518466,3341343470,100,100,100,100,3.41,3.49,2.08,2.09
-95017,06,087,06087,834,391,136458647,129510756,834,391,136458647,129510756,262382,104476,1572554884,1152986019,100,100,100,100,0.32,0.37,8.68,11.23
-95018,06,087,06087,7778,3642,48687752,48687752,7778,3642,48687752,48687752,262382,104476,1572554884,1152986019,100,100,100,100,2.96,3.49,3.1,4.22
-95019,06,087,06087,7727,2061,3144664,3144664,7727,2061,3144664,3144664,262382,104476,1572554884,1152986019,100,100,100,100,2.94,1.97,0.2,0.27
-95020,06,085,06085,57349,17629,406188984,403878926,57349,17629,406188984,403878926,1781642,631920,3377518466,3341343470,100,100,100,100,3.22,2.79,12.03,12.09
-95023,06,069,06069,48655,15229,744117262,742880518,48841,15301,1069932758,1067981566,55269,17870,3601297341,3596742302,99.62,99.53,69.55,69.56,88.03,85.22,20.66,20.65
-95023,06,085,06085,186,72,325815496,325101048,48841,15301,1069932758,1067981566,1781642,631920,3377518466,3341343470,0.38,0.47,30.45,30.44,0.01,0.01,9.65,9.73
-95030,06,085,06085,12791,5711,27046433,27046433,12791,5711,27046433,27046433,1781642,631920,3377518466,3341343470,100,100,100,100,0.72,0.9,0.8,0.81
-95032,06,085,06085,25089,10568,41501635,41143975,25089,10568,41501635,41143975,1781642,631920,3377518466,3341343470,100,100,100,100,1.41,1.67,1.23,1.23
-95033,06,085,06085,4083,1762,116315192,114438258,9372,4135,239366484,237460748,1781642,631920,3377518466,3341343470,43.57,42.61,48.59,48.19,0.23,0.28,3.44,3.42
-95033,06,087,06087,5289,2373,123051292,123022490,9372,4135,239366484,237460748,262382,104476,1572554884,1152986019,56.43,57.39,51.41,51.81,2.02,2.27,7.82,10.67
-95035,06,085,06085,66943,19874,60355736,60201550,66943,19874,60355736,60201550,1781642,631920,3377518466,3341343470,100,100,100,100,3.76,3.15,1.79,1.8
-95037,06,085,06085,45579,15626,636490658,630183859,45579,15626,636490658,630183859,1781642,631920,3377518466,3341343470,100,100,100,100,2.56,2.47,18.84,18.86
-95039,06,053,06053,1377,460,43214698,38187112,1377,460,43214698,38187112,415057,139048,9767417220,8496702738,100,100,100,100,0.33,0.33,0.44,0.45
-95041,06,087,06087,160,88,104883,104883,160,88,104883,104883,262382,104476,1572554884,1152986019,100,100,100,100,0.06,0.08,0.01,0.01
-95043,06,069,06069,639,366,2226430518,2223642050,639,366,2226430518,2223642050,55269,17870,3601297341,3596742302,100,100,100,100,1.16,2.05,61.82,61.82
-95045,06,069,06069,4046,1542,122868838,122780227,4046,1542,122868838,122780227,55269,17870,3601297341,3596742302,100,100,100,100,7.32,8.63,3.41,3.41
-95046,06,085,06085,6417,1954,50560753,50452242,6417,1954,50560753,50452242,1781642,631920,3377518466,3341343470,100,100,100,100,0.36,0.31,1.5,1.51
-95050,06,085,06085,35923,14855,13667199,13667199,35923,14855,13667199,13667199,1781642,631920,3377518466,3341343470,100,100,100,100,2.02,2.35,0.4,0.41
-95051,06,085,06085,54327,21119,17244623,17244623,54327,21119,17244623,17244623,1781642,631920,3377518466,3341343470,100,100,100,100,3.05,3.34,0.51,0.52
-95053,06,085,06085,2206,21,442035,442035,2206,21,442035,442035,1781642,631920,3377518466,3341343470,100,100,100,100,0.12,0,0.01,0.01
-95054,06,085,06085,23364,8891,16222835,16222835,23364,8891,16222835,16222835,1781642,631920,3377518466,3341343470,100,100,100,100,1.31,1.41,0.48,0.49
-95060,06,087,06087,46377,19875,184209416,175669268,46377,19875,184209416,175669268,262382,104476,1572554884,1152986019,100,100,100,100,17.68,19.02,11.71,15.24
-95062,06,087,06087,36079,16919,16365940,13072397,36079,16919,16365940,13072397,262382,104476,1572554884,1152986019,100,100,100,100,13.75,16.19,1.04,1.13
-95064,06,087,06087,7331,403,4857960,4857960,7331,403,4857960,4857960,262382,104476,1572554884,1152986019,100,100,100,100,2.79,0.39,0.31,0.42
-95065,06,087,06087,8113,3361,28979514,28979514,8113,3361,28979514,28979514,262382,104476,1572554884,1152986019,100,100,100,100,3.09,3.22,1.84,2.51
-95066,06,087,06087,14749,5975,49084675,49084675,14749,5975,49084675,49084675,262382,104476,1572554884,1152986019,100,100,100,100,5.62,5.72,3.12,4.26
-95070,06,085,06085,30617,11379,66094871,66031411,30617,11379,66094871,66031411,1781642,631920,3377518466,3341343470,100,100,100,100,1.72,1.8,1.96,1.98
-95073,06,087,06087,10154,4334,54910802,54910802,10154,4334,54910802,54910802,262382,104476,1572554884,1152986019,100,100,100,100,3.87,4.15,3.49,4.76
-95075,06,069,06069,331,122,241277365,240884437,331,122,241277365,240884437,55269,17870,3601297341,3596742302,100,100,100,100,0.6,0.68,6.7,6.7
-95076,06,053,06053,13677,3610,83982666,83390144,82474,24331,360536430,353788509,415057,139048,9767417220,8496702738,16.58,14.84,23.29,23.57,3.3,2.6,0.86,0.98
-95076,06,085,06085,83,36,14006834,14006834,82474,24331,360536430,353788509,1781642,631920,3377518466,3341343470,0.1,0.15,3.88,3.96,0,0.01,0.41,0.42
-95076,06,087,06087,68714,20685,262546930,256391531,82474,24331,360536430,353788509,262382,104476,1572554884,1152986019,83.32,85.02,72.82,72.47,26.19,19.8,16.7,22.24
-95110,06,085,06085,18730,6339,12086351,12086351,18730,6339,12086351,12086351,1781642,631920,3377518466,3341343470,100,100,100,100,1.05,1,0.36,0.36
-95111,06,085,06085,58466,15511,13987554,13969546,58466,15511,13987554,13969546,1781642,631920,3377518466,3341343470,100,100,100,100,3.28,2.45,0.41,0.42
-95112,06,085,06085,55927,20763,18370035,18370035,55927,20763,18370035,18370035,1781642,631920,3377518466,3341343470,100,100,100,100,3.14,3.29,0.54,0.55
-95113,06,085,06085,893,992,883438,883438,893,992,883438,883438,1781642,631920,3377518466,3341343470,100,100,100,100,0.05,0.16,0.03,0.03
-95116,06,085,06085,51496,13663,9273431,9273431,51496,13663,9273431,9273431,1781642,631920,3377518466,3341343470,100,100,100,100,2.89,2.16,0.27,0.28
-95117,06,085,06085,30067,11263,6659925,6659925,30067,11263,6659925,6659925,1781642,631920,3377518466,3341343470,100,100,100,100,1.69,1.78,0.2,0.2
-95118,06,085,06085,31932,11544,10735870,10735870,31932,11544,10735870,10735870,1781642,631920,3377518466,3341343470,100,100,100,100,1.79,1.83,0.32,0.32
-95119,06,085,06085,9970,3200,7335345,7327319,9970,3200,7335345,7327319,1781642,631920,3377518466,3341343470,100,100,100,100,0.56,0.51,0.22,0.22
-95120,06,085,06085,37457,12785,104820158,102966010,37457,12785,104820158,102966010,1781642,631920,3377518466,3341343470,100,100,100,100,2.1,2.02,3.1,3.08
-95121,06,085,06085,37469,9625,11479041,11479041,37469,9625,11479041,11479041,1781642,631920,3377518466,3341343470,100,100,100,100,2.1,1.52,0.34,0.34
-95122,06,085,06085,56545,12702,12351716,12351716,56545,12702,12351716,12351716,1781642,631920,3377518466,3341343470,100,100,100,100,3.17,2.01,0.37,0.37
-95123,06,085,06085,62228,22035,21552343,21542559,62228,22035,21552343,21542559,1781642,631920,3377518466,3341343470,100,100,100,100,3.49,3.49,0.64,0.64
-95124,06,085,06085,47082,17345,17015453,17015453,47082,17345,17015453,17015453,1781642,631920,3377518466,3341343470,100,100,100,100,2.64,2.74,0.5,0.51
-95125,06,085,06085,51939,21640,20732334,20732334,51939,21640,20732334,20732334,1781642,631920,3377518466,3341343470,100,100,100,100,2.92,3.42,0.61,0.62
-95126,06,085,06085,31049,13815,8501814,8501814,31049,13815,8501814,8501814,1781642,631920,3377518466,3341343470,100,100,100,100,1.74,2.19,0.25,0.25
-95127,06,085,06085,61325,16416,33699820,33699820,61325,16416,33699820,33699820,1781642,631920,3377518466,3341343470,100,100,100,100,3.44,2.6,1,1.01
-95128,06,085,06085,34836,14295,10111701,10111701,34836,14295,10111701,10111701,1781642,631920,3377518466,3341343470,100,100,100,100,1.96,2.26,0.3,0.3
-95129,06,085,06085,38720,14517,11686153,11686153,38720,14517,11686153,11686153,1781642,631920,3377518466,3341343470,100,100,100,100,2.17,2.3,0.35,0.35
-95130,06,085,06085,13911,5175,4034677,4034677,13911,5175,4034677,4034677,1781642,631920,3377518466,3341343470,100,100,100,100,0.78,0.82,0.12,0.12
-95131,06,085,06085,28565,9231,15058227,15058227,28565,9231,15058227,15058227,1781642,631920,3377518466,3341343470,100,100,100,100,1.6,1.46,0.45,0.45
-95132,06,085,06085,40299,11899,137255444,132004424,40299,11899,137255444,132004424,1781642,631920,3377518466,3341343470,100,100,100,100,2.26,1.88,4.06,3.95
-95133,06,085,06085,25401,7651,8241772,8241772,25401,7651,8241772,8241772,1781642,631920,3377518466,3341343470,100,100,100,100,1.43,1.21,0.24,0.25
-95134,06,085,06085,15268,7068,25312872,24563311,15268,7068,25312872,24563311,1781642,631920,3377518466,3341343470,100,100,100,100,0.86,1.12,0.75,0.74
-95135,06,085,06085,20120,7373,79233623,79227374,20120,7373,79233623,79227374,1781642,631920,3377518466,3341343470,100,100,100,100,1.13,1.17,2.35,2.37
-95136,06,085,06085,42989,15448,12272832,12260084,42989,15448,12272832,12260084,1781642,631920,3377518466,3341343470,100,100,100,100,2.41,2.44,0.36,0.37
-95138,06,085,06085,18889,5891,67519790,67519790,18889,5891,67519790,67519790,1781642,631920,3377518466,3341343470,100,100,100,100,1.06,0.93,2,2.02
-95139,06,085,06085,6748,2260,3188071,3188071,6748,2260,3188071,3188071,1781642,631920,3377518466,3341343470,100,100,100,100,0.38,0.36,0.09,0.1
-95140,06,085,06085,191,130,320653574,320449305,191,130,320653574,320449305,1781642,631920,3377518466,3341343470,100,100,100,100,0.01,0.02,9.49,9.59
-95148,06,085,06085,45528,11747,24656459,24409620,45528,11747,24656459,24409620,1781642,631920,3377518466,3341343470,100,100,100,100,2.56,1.86,0.73,0.73
-95202,06,077,06077,6521,3984,2808846,2791931,6521,3984,2808846,2791931,685306,233755,3694614642,3603505998,100,100,100,100,0.95,1.7,0.08,0.08
-95203,06,077,06077,15696,5959,17646139,15979378,15696,5959,17646139,15979378,685306,233755,3694614642,3603505998,100,100,100,100,2.29,2.55,0.48,0.44
-95204,06,077,06077,27786,12047,13896809,13209883,27786,12047,13896809,13209883,685306,233755,3694614642,3603505998,100,100,100,100,4.05,5.15,0.38,0.37
-95205,06,077,06077,38069,11346,23573761,23543550,38069,11346,23573761,23543550,685306,233755,3694614642,3603505998,100,100,100,100,5.56,4.85,0.64,0.65
-95206,06,077,06077,65004,17923,395553107,375339829,65004,17923,395553107,375339829,685306,233755,3694614642,3603505998,100,100,100,100,9.49,7.67,10.71,10.42
-95207,06,077,06077,47965,19457,19264197,18793035,47965,19457,19264197,18793035,685306,233755,3694614642,3603505998,100,100,100,100,7,8.32,0.52,0.52
-95209,06,077,06077,39488,13337,22195487,21707643,39488,13337,22195487,21707643,685306,233755,3694614642,3603505998,100,100,100,100,5.76,5.71,0.6,0.6
-95210,06,077,06077,39009,12154,17335812,17148410,39009,12154,17335812,17148410,685306,233755,3694614642,3603505998,100,100,100,100,5.69,5.2,0.47,0.48
-95211,06,077,06077,1545,5,460505,391981,1545,5,460505,391981,685306,233755,3694614642,3603505998,100,100,100,100,0.23,0,0.01,0.01
-95212,06,077,06077,25239,7327,56206986,55851885,25239,7327,56206986,55851885,685306,233755,3694614642,3603505998,100,100,100,100,3.68,3.13,1.52,1.55
-95215,06,077,06077,23224,7298,245768439,245224640,23224,7298,245768439,245224640,685306,233755,3694614642,3603505998,100,100,100,100,3.39,3.12,6.65,6.81
-95219,06,013,06013,16,37,31716066,30628962,27884,11281,167386322,147276476,1049025,400263,2081754142,1854268836,0.06,0.33,18.95,20.8,0,0.01,1.52,1.65
-95219,06,077,06077,27868,11244,135670256,116647514,27884,11281,167386322,147276476,685306,233755,3694614642,3603505998,99.94,99.67,81.05,79.2,4.07,4.81,3.67,3.24
-95220,06,077,06077,7273,2685,151111053,149078523,7273,2685,151111053,149078523,685306,233755,3694614642,3603505998,100,100,100,100,1.06,1.15,4.09,4.14
-95222,06,009,06009,5292,2710,401123935,391328301,5292,2710,401123935,391328301,45578,27925,2685630145,2641819725,100,100,100,100,11.61,9.7,14.94,14.81
-95223,06,003,06003,121,593,533405616,529624989,4612,7605,748379055,744404500,1175,1760,1924829158,1912271907,2.62,7.8,71.27,71.15,10.3,33.69,27.71,27.7
-95223,06,009,06009,4491,7006,195129688,195021027,4612,7605,748379055,744404500,45578,27925,2685630145,2641819725,97.38,92.12,26.07,26.2,9.85,25.09,7.27,7.38
-95223,06,109,06109,0,6,19843751,19758484,4612,7605,748379055,744404500,55365,31244,5890746158,5752062580,0,0.08,2.65,2.65,0,0.02,0.34,0.34
-95224,06,009,06009,429,274,29529070,29435671,429,274,29529070,29435671,45578,27925,2685630145,2641819725,100,100,100,100,0.94,0.98,1.1,1.11
-95225,06,009,06009,672,274,18347871,18148136,672,274,18347871,18148136,45578,27925,2685630145,2641819725,100,100,100,100,1.47,0.98,0.68,0.69
-95226,06,009,06009,84,43,15015163,14620683,84,43,15015163,14620683,45578,27925,2685630145,2641819725,100,100,100,100,0.18,0.15,0.56,0.55
-95227,06,077,06077,941,423,103643439,96147855,941,423,103643439,96147855,685306,233755,3694614642,3603505998,100,100,100,100,0.14,0.18,2.81,2.67
-95228,06,009,06009,3976,2476,279998119,276696940,3976,2476,279998119,276696940,45578,27925,2685630145,2641819725,100,100,100,100,8.72,8.87,10.43,10.47
-95230,06,009,06009,49,24,45826670,42019097,718,300,311698401,294342191,45578,27925,2685630145,2641819725,6.82,8,14.7,14.28,0.11,0.09,1.71,1.59
-95230,06,077,06077,497,203,82509920,80278164,718,300,311698401,294342191,685306,233755,3694614642,3603505998,69.22,67.67,26.47,27.27,0.07,0.09,2.23,2.23
-95230,06,099,06099,172,73,183361811,172044930,718,300,311698401,294342191,514453,179503,3923020227,3871582888,23.96,24.33,58.83,58.45,0.03,0.04,4.67,4.44
-95231,06,077,06077,4374,923,27427100,27424810,4374,923,27427100,27424810,685306,233755,3694614642,3603505998,100,100,100,100,0.64,0.39,0.74,0.76
-95232,06,009,06009,304,171,20458114,20458114,304,171,20458114,20458114,45578,27925,2685630145,2641819725,100,100,100,100,0.67,0.61,0.76,0.77
-95233,06,009,06009,436,280,18149230,18136632,436,280,18149230,18136632,45578,27925,2685630145,2641819725,100,100,100,100,0.96,1,0.68,0.69
-95234,06,077,06077,70,34,92473697,86988086,70,34,92473697,86988086,685306,233755,3694614642,3603505998,100,100,100,100,0.01,0.01,2.5,2.41
-95236,06,077,06077,4223,1543,281792442,279863422,4223,1543,281792442,279863422,685306,233755,3694614642,3603505998,100,100,100,100,0.62,0.66,7.63,7.77
-95237,06,077,06077,3167,1214,20788906,20680744,3167,1214,20788906,20680744,685306,233755,3694614642,3603505998,100,100,100,100,0.46,0.52,0.56,0.57
-95240,06,077,06077,47172,17344,215371353,214205908,47172,17344,215371353,214205908,685306,233755,3694614642,3603505998,100,100,100,100,6.88,7.42,5.83,5.94
-95242,06,077,06077,25393,10355,255141077,248722742,25393,10355,255141077,248722742,685306,233755,3694614642,3603505998,100,100,100,100,3.71,4.43,6.91,6.9
-95245,06,009,06009,2277,1306,177457285,177269751,2277,1306,177457285,177269751,45578,27925,2685630145,2641819725,100,100,100,100,5,4.68,6.61,6.71
-95246,06,009,06009,1615,962,135246694,135101285,1615,962,135246694,135101285,45578,27925,2685630145,2641819725,100,100,100,100,3.54,3.44,5.04,5.11
-95247,06,009,06009,4368,2526,108031092,107949319,4368,2526,108031092,107949319,45578,27925,2685630145,2641819725,100,100,100,100,9.58,9.05,4.02,4.09
-95248,06,009,06009,301,223,82793842,82390657,301,223,82793842,82390657,45578,27925,2685630145,2641819725,100,100,100,100,0.66,0.8,3.08,3.12
-95249,06,009,06009,4042,1895,219370655,217037743,4042,1895,219370655,217037743,45578,27925,2685630145,2641819725,100,100,100,100,8.87,6.79,8.17,8.22
-95250,06,009,06009,78,61,27560027,27560027,78,61,27560027,27560027,45578,27925,2685630145,2641819725,100,100,100,100,0.17,0.22,1.03,1.04
-95251,06,009,06009,767,360,28479756,28468035,767,360,28479756,28468035,45578,27925,2685630145,2641819725,100,100,100,100,1.68,1.29,1.06,1.08
-95252,06,009,06009,13460,5605,336904193,317230744,13460,5605,336904193,317230744,45578,27925,2685630145,2641819725,100,100,100,100,29.53,20.07,12.54,12.01
-95254,06,009,06009,480,212,15261414,14269489,480,212,15261414,14269489,45578,27925,2685630145,2641819725,100,100,100,100,1.05,0.76,0.57,0.54
-95255,06,009,06009,2042,1242,115653111,115518267,2042,1242,115653111,115518267,45578,27925,2685630145,2641819725,100,100,100,100,4.48,4.45,4.31,4.37
-95257,06,009,06009,413,262,39530147,39368932,413,262,39530147,39368932,45578,27925,2685630145,2641819725,100,100,100,100,0.91,0.94,1.47,1.49
-95258,06,077,06077,4018,1511,8624062,8347501,4018,1511,8624062,8347501,685306,233755,3694614642,3603505998,100,100,100,100,0.59,0.65,0.23,0.23
-95301,06,047,06047,37073,12387,161412646,161350226,37073,12387,161412646,161350226,255793,83698,5124315228,5011554741,100,100,100,100,14.49,14.8,3.15,3.22
-95303,06,047,06047,912,305,100993887,100938837,912,305,100993887,100938837,255793,83698,5124315228,5011554741,100,100,100,100,0.36,0.36,1.97,2.01
-95304,06,077,06077,15706,4140,421987835,412956949,15706,4140,421987835,412956949,685306,233755,3694614642,3603505998,100,100,100,100,2.29,1.77,11.42,11.46
-95305,06,109,06109,245,133,38380147,36939206,245,133,38380147,36939206,55365,31244,5890746158,5752062580,100,100,100,100,0.44,0.43,0.65,0.64
-95306,06,043,06043,970,466,357699552,354278506,970,466,357699552,354278506,18251,10188,3788688376,3752416976,100,100,100,100,5.31,4.57,9.44,9.44
-95307,06,099,06099,42753,13177,86765441,86765441,42753,13177,86765441,86765441,514453,179503,3923020227,3871582888,100,100,100,100,8.31,7.34,2.21,2.24
-95310,06,109,06109,1882,1006,105074020,102404324,1882,1006,105074020,102404324,55365,31244,5890746158,5752062580,100,100,100,100,3.4,3.22,1.78,1.78
-95311,06,043,06043,2150,1417,616163391,608389944,2197,1455,628246613,620473166,18251,10188,3788688376,3752416976,97.86,97.39,98.08,98.05,11.78,13.91,16.26,16.21
-95311,06,109,06109,47,38,12083222,12083222,2197,1455,628246613,620473166,55365,31244,5890746158,5752062580,2.14,2.61,1.92,1.95,0.08,0.12,0.21,0.21
-95312,06,047,06047,268,84,2538604,2538604,268,84,2538604,2538604,255793,83698,5124315228,5011554741,100,100,100,100,0.1,0.1,0.05,0.05
-95313,06,099,06099,1386,532,134656279,133809703,1386,532,134656279,133809703,514453,179503,3923020227,3871582888,100,100,100,100,0.27,0.3,3.43,3.46
-95314,06,109,06109,0,106,65239556,65080494,0,106,65239556,65080494,55365,31244,5890746158,5752062580,0,100,100,100,0,0.34,1.11,1.13
-95315,06,047,06047,13018,3528,47294681,47264386,13018,3528,47294681,47264386,255793,83698,5124315228,5011554741,100,100,100,100,5.09,4.22,0.92,0.94
-95316,06,099,06099,6573,2279,173038771,173038771,6573,2279,173038771,173038771,514453,179503,3923020227,3871582888,100,100,100,100,1.28,1.27,4.41,4.47
-95317,06,047,06047,817,277,137623778,137237401,817,277,137623778,137237401,255793,83698,5124315228,5011554741,100,100,100,100,0.32,0.33,2.69,2.74
-95318,06,043,06043,541,304,102829990,102482297,541,304,102829990,102482297,18251,10188,3788688376,3752416976,100,100,100,100,2.96,2.98,2.71,2.73
-95319,06,099,06099,1749,565,1606178,1606178,1749,565,1606178,1606178,514453,179503,3923020227,3871582888,100,100,100,100,0.34,0.31,0.04,0.04
-95320,06,077,06077,12819,4657,230968510,229551963,12819,4657,230968510,229551963,685306,233755,3694614642,3603505998,100,100,100,100,1.87,1.99,6.25,6.37
-95321,06,043,06043,82,65,25320582,25316264,3736,3656,456129717,453642681,18251,10188,3788688376,3752416976,2.19,1.78,5.55,5.58,0.45,0.64,0.67,0.67
-95321,06,109,06109,3654,3591,430809135,428326417,3736,3656,456129717,453642681,55365,31244,5890746158,5752062580,97.81,98.22,94.45,94.42,6.6,11.49,7.31,7.45
-95322,06,047,06047,8942,3398,469940002,451124009,8942,3398,469940002,451124009,255793,83698,5124315228,5011554741,100,100,100,100,3.5,4.06,9.17,9
-95323,06,099,06099,1260,411,80390028,79900201,1260,411,80390028,79900201,514453,179503,3923020227,3871582888,100,100,100,100,0.24,0.23,2.05,2.06
-95324,06,047,06047,7324,2604,108448258,106607228,7324,2604,108448258,106607228,255793,83698,5124315228,5011554741,100,100,100,100,2.86,3.11,2.12,2.13
-95325,06,043,06043,81,42,105549014,105428390,81,42,105549014,105428390,18251,10188,3788688376,3752416976,100,100,100,100,0.44,0.41,2.79,2.81
-95326,06,099,06099,9581,3328,75364545,74925117,9581,3328,75364545,74925117,514453,179503,3923020227,3871582888,100,100,100,100,1.86,1.85,1.92,1.94
-95327,06,109,06109,9806,2978,429209097,406875018,9806,2978,429209097,406875018,55365,31244,5890746158,5752062580,100,100,100,100,17.71,9.53,7.29,7.07
-95328,06,099,06099,3993,1105,2697387,2697387,3993,1105,2697387,2697387,514453,179503,3923020227,3871582888,100,100,100,100,0.78,0.62,0.07,0.07
-95329,06,043,06043,1040,553,55142314,55097771,2460,1355,303358068,282985362,18251,10188,3788688376,3752416976,42.28,40.81,18.18,19.47,5.7,5.43,1.46,1.47
-95329,06,099,06099,273,124,99331229,88438737,2460,1355,303358068,282985362,514453,179503,3923020227,3871582888,11.1,9.15,32.74,31.25,0.05,0.07,2.53,2.28
-95329,06,109,06109,1147,678,148884525,139448854,2460,1355,303358068,282985362,55365,31244,5890746158,5752062580,46.63,50.04,49.08,49.28,2.07,2.17,2.53,2.42
-95330,06,077,06077,17853,5181,57060333,55728730,17853,5181,57060333,55728730,685306,233755,3694614642,3603505998,100,100,100,100,2.61,2.22,1.54,1.55
-95333,06,047,06047,2942,956,302258898,302258898,2942,956,302258898,302258898,255793,83698,5124315228,5011554741,100,100,100,100,1.15,1.14,5.9,6.03
-95334,06,047,06047,15457,4098,145627507,145038400,15457,4098,145627507,145038400,255793,83698,5124315228,5011554741,100,100,100,100,6.04,4.9,2.84,2.89
-95335,06,109,06109,541,1225,109306335,109040377,541,1225,109306335,109040377,55365,31244,5890746158,5752062580,100,100,100,100,0.98,3.92,1.86,1.9
-95336,06,077,06077,42675,15067,99266160,99172501,42675,15067,99266160,99172501,685306,233755,3694614642,3603505998,100,100,100,100,6.23,6.45,2.69,2.75
-95337,06,077,06077,31557,10622,119611713,117858732,31557,10622,119611713,117858732,685306,233755,3694614642,3603505998,100,100,100,100,4.6,4.54,3.24,3.27
-95338,06,043,06043,11062,5746,894922664,881437284,11062,5746,894922664,881437284,18251,10188,3788688376,3752416976,100,100,100,100,60.61,56.4,23.62,23.49
-95340,06,047,06047,33931,12642,104874879,102957321,33931,12642,104874879,102957321,255793,83698,5124315228,5011554741,100,100,100,100,13.27,15.1,2.05,2.05
-95341,06,047,06047,32967,9330,390930571,387424591,32967,9330,390930571,387424591,255793,83698,5124315228,5011554741,100,100,100,100,12.89,11.15,7.63,7.73
-95345,06,043,06043,708,365,83001896,82770991,708,365,83001896,82770991,18251,10188,3788688376,3752416976,100,100,100,100,3.88,3.58,2.19,2.21
-95346,06,109,06109,1272,1375,15543873,15529278,1272,1375,15543873,15529278,55365,31244,5890746158,5752062580,100,100,100,100,2.3,4.4,0.26,0.27
-95348,06,047,06047,30805,11276,123299056,123033842,30805,11276,123299056,123033842,255793,83698,5124315228,5011554741,100,100,100,100,12.04,13.47,2.41,2.46
-95350,06,099,06099,51046,20928,22996426,22996426,51046,20928,22996426,22996426,514453,179503,3923020227,3871582888,100,100,100,100,9.92,11.66,0.59,0.59
-95351,06,099,06099,46458,13749,23646053,22972046,46458,13749,23646053,22972046,514453,179503,3923020227,3871582888,100,100,100,100,9.03,7.66,0.6,0.59
-95354,06,099,06099,25394,9836,19062971,19012000,25394,9836,19062971,19012000,514453,179503,3923020227,3871582888,100,100,100,100,4.94,5.48,0.49,0.49
-95355,06,099,06099,58311,22505,24650042,24577003,58311,22505,24650042,24577003,514453,179503,3923020227,3871582888,100,100,100,100,11.33,12.54,0.63,0.63
-95356,06,099,06099,30918,11949,58420242,55384235,30918,11949,58420242,55384235,514453,179503,3923020227,3871582888,100,100,100,100,6.01,6.66,1.49,1.43
-95357,06,099,06099,11559,3861,100136881,99788867,11559,3861,100136881,99788867,514453,179503,3923020227,3871582888,100,100,100,100,2.25,2.15,2.55,2.58
-95358,06,099,06099,31668,9228,316836887,311649004,31668,9228,316836887,311649004,514453,179503,3923020227,3871582888,100,100,100,100,6.16,5.14,8.08,8.05
-95360,06,047,06047,181,104,39536139,35975659,11712,3935,871274639,866928107,255793,83698,5124315228,5011554741,1.55,2.64,4.54,4.15,0.07,0.12,0.77,0.72
-95360,06,099,06099,11531,3831,831738500,830952448,11712,3935,871274639,866928107,514453,179503,3923020227,3871582888,98.45,97.36,95.46,95.85,2.24,2.13,21.2,21.46
-95361,06,077,06077,414,156,12395053,12368454,31610,12050,608814771,600087588,685306,233755,3694614642,3603505998,1.31,1.29,2.04,2.06,0.06,0.07,0.34,0.34
-95361,06,099,06099,31196,11894,596419718,587719134,31610,12050,608814771,600087588,514453,179503,3923020227,3871582888,98.69,98.71,97.96,97.94,6.06,6.63,15.2,15.18
-95363,06,099,06099,25237,8085,306498193,305729794,25237,8085,306498193,305729794,514453,179503,3923020227,3871582888,100,100,100,100,4.91,4.5,7.81,7.9
-95364,06,109,06109,53,539,715834640,704408811,53,539,715834640,704408811,55365,31244,5890746158,5752062580,100,100,100,100,0.1,1.73,12.15,12.25
-95365,06,047,06047,4985,1272,39294026,39294026,4985,1272,39294026,39294026,255793,83698,5124315228,5011554741,100,100,100,100,1.95,1.52,0.77,0.78
-95366,06,077,06077,16575,5991,89943685,89066315,16575,5991,89943685,89066315,685306,233755,3694614642,3603505998,100,100,100,100,2.42,2.56,2.43,2.47
-95367,06,099,06099,23173,7271,12024425,11873483,23173,7271,12024425,11873483,514453,179503,3923020227,3871582888,100,100,100,100,4.5,4.05,0.31,0.31
-95368,06,099,06099,13614,4159,9167240,8517356,13614,4159,9167240,8517356,514453,179503,3923020227,3871582888,100,100,100,100,2.65,2.32,0.23,0.22
-95369,06,043,06043,80,88,61348536,55499746,1099,502,420744048,412607079,18251,10188,3788688376,3752416976,7.28,17.53,14.58,13.45,0.44,0.86,1.62,1.48
-95369,06,047,06047,1019,414,359395512,357107333,1099,502,420744048,412607079,255793,83698,5124315228,5011554741,92.72,82.47,85.42,86.55,0.4,0.49,7.01,7.13
-95370,06,109,06109,26803,13100,279750089,267162080,26803,13100,279750089,267162080,55365,31244,5890746158,5752062580,100,100,100,100,48.41,41.93,4.75,4.64
-95372,06,109,06109,1963,848,6951245,6937465,1963,848,6951245,6937465,55365,31244,5890746158,5752062580,100,100,100,100,3.55,2.71,0.12,0.12
-95374,06,047,06047,2030,700,121912383,120614886,2030,700,121912383,120614886,255793,83698,5124315228,5011554741,100,100,100,100,0.79,0.84,2.38,2.41
-95375,06,109,06109,106,393,7991738,7889388,106,393,7991738,7889388,55365,31244,5890746158,5752062580,100,100,100,100,0.19,1.26,0.14,0.14
-95376,06,077,06077,49859,16589,19775153,19775153,49859,16589,19775153,19775153,685306,233755,3694614642,3603505998,100,100,100,100,7.28,7.1,0.54,0.55
-95377,06,001,06001,66,23,32406787,32406787,30902,8819,279915889,279847793,1510271,582549,2127230753,1914046110,0.21,0.26,11.58,11.58,0,0,1.52,1.69
-95377,06,077,06077,30836,8796,247509102,247441006,30902,8819,279915889,279847793,685306,233755,3694614642,3603505998,99.79,99.74,88.42,88.42,4.5,3.76,6.7,6.87
-95379,06,109,06109,3898,1760,139852662,139518165,3898,1760,139852662,139518165,55365,31244,5890746158,5752062580,100,100,100,100,7.04,5.63,2.37,2.43
-95380,06,047,06047,1559,539,47803641,47776938,41201,14525,194322714,194296011,255793,83698,5124315228,5011554741,3.78,3.71,24.6,24.59,0.61,0.64,0.93,0.95
-95380,06,099,06099,39642,13986,146519073,146519073,41201,14525,194322714,194296011,514453,179503,3923020227,3871582888,96.22,96.29,75.4,75.41,7.71,7.79,3.73,3.78
-95382,06,099,06099,36176,13132,27189623,27189623,36176,13132,27189623,27189623,514453,179503,3923020227,3871582888,100,100,100,100,7.03,7.32,0.69,0.7
-95383,06,109,06109,3937,3355,203356844,202933668,3937,3355,203356844,202933668,55365,31244,5890746158,5752062580,100,100,100,100,7.11,10.74,3.45,3.53
-95385,06,077,06077,152,86,862711,862711,429,189,64640662,64333467,685306,233755,3694614642,3603505998,35.43,45.5,1.33,1.34,0.02,0.04,0.02,0.02
-95385,06,099,06099,277,103,63777951,63470756,429,189,64640662,64333467,514453,179503,3923020227,3871582888,64.57,54.5,98.67,98.66,0.05,0.06,1.63,1.64
-95386,06,099,06099,9877,3203,226498733,219848238,9877,3203,226498733,219848238,514453,179503,3923020227,3871582888,100,100,100,100,1.92,1.78,5.77,5.68
-95387,06,099,06099,636,189,300225600,300156937,636,189,300225600,300156937,514453,179503,3923020227,3871582888,100,100,100,100,0.12,0.11,7.65,7.75
-95388,06,047,06047,13074,3912,100741676,100539257,13074,3912,100741676,100539257,255793,83698,5124315228,5011554741,100,100,100,100,5.11,4.67,1.97,2.01
-95389,06,043,06043,1270,870,425907954,425252093,1272,875,614869025,611344150,18251,10188,3788688376,3752416976,99.84,99.43,69.27,69.56,6.96,8.54,11.24,11.33
-95389,06,109,06109,2,5,188961071,186092057,1272,875,614869025,611344150,55365,31244,5890746158,5752062580,0.16,0.57,30.73,30.44,0,0.02,3.21,3.24
-95391,06,001,06001,130,43,49602449,48510308,9959,3331,62610567,61518426,1510271,582549,2127230753,1914046110,1.31,1.29,79.22,78.85,0.01,0.01,2.33,2.53
-95391,06,077,06077,9829,3288,13008118,13008118,9959,3331,62610567,61518426,685306,233755,3694614642,3603505998,98.69,98.71,20.78,21.15,1.43,1.41,0.35,0.36
-95401,06,097,06097,36981,14062,53457318,53417691,36981,14062,53457318,53417691,483878,204572,4578960489,4081430136,100,100,100,100,7.64,6.87,1.17,1.31
-95403,06,097,06097,45164,17965,57155287,57009092,45164,17965,57155287,57009092,483878,204572,4578960489,4081430136,100,100,100,100,9.33,8.78,1.25,1.4
-95404,06,097,06097,39761,17039,207192939,207132279,39761,17039,207192939,207132279,483878,204572,4578960489,4081430136,100,100,100,100,8.22,8.33,4.52,5.07
-95405,06,097,06097,21399,9251,14183932,14183932,21399,9251,14183932,14183932,483878,204572,4578960489,4081430136,100,100,100,100,4.42,4.52,0.31,0.35
-95407,06,097,06097,39352,12442,58756661,58746449,39352,12442,58756661,58746449,483878,204572,4578960489,4081430136,100,100,100,100,8.13,6.08,1.28,1.44
-95409,06,097,06097,27187,12983,100064155,99389538,27187,12983,100064155,99389538,483878,204572,4578960489,4081430136,100,100,100,100,5.62,6.35,2.19,2.44
-95410,06,045,06045,950,582,113426882,103240724,950,582,113426882,103240724,87841,40323,10044339030,9081386386,100,100,100,100,1.08,1.44,1.13,1.14
-95412,06,097,06097,401,203,221922989,221922989,401,203,221922989,221922989,483878,204572,4578960489,4081430136,100,100,100,100,0.08,0.1,4.85,5.44
-95415,06,045,06045,1592,629,143172375,143172375,1592,629,143172375,143172375,87841,40323,10044339030,9081386386,100,100,100,100,1.81,1.56,1.43,1.58
-95417,06,045,06045,297,139,195095313,195095313,297,139,195095313,195095313,87841,40323,10044339030,9081386386,100,100,100,100,0.34,0.34,1.94,2.15
-95420,06,045,06045,374,215,6030019,5194874,374,215,6030019,5194874,87841,40323,10044339030,9081386386,100,100,100,100,0.43,0.53,0.06,0.06
-95421,06,097,06097,1592,1289,561885816,561075399,1592,1289,561885816,561075399,483878,204572,4578960489,4081430136,100,100,100,100,0.33,0.63,12.27,13.75
-95422,06,033,06033,15585,8546,113511512,91236887,15585,8546,113511512,91236887,64665,35492,3443189863,3254227528,100,100,100,100,24.1,24.08,3.3,2.8
-95423,06,033,06033,3747,2680,271154621,266350758,3747,2680,271154621,266350758,64665,35492,3443189863,3254227528,100,100,100,100,5.79,7.55,7.88,8.18
-95425,06,045,06045,186,111,187751719,187676883,10841,4544,548063584,532783085,87841,40323,10044339030,9081386386,1.72,2.44,34.26,35.23,0.21,0.28,1.87,2.07
-95425,06,097,06097,10655,4433,360311865,345106202,10841,4544,548063584,532783085,483878,204572,4578960489,4081430136,98.28,97.56,65.74,64.77,2.2,2.17,7.87,8.46
-95426,06,033,06033,2147,1315,52558550,52522679,2147,1315,52558550,52522679,64665,35492,3443189863,3254227528,100,100,100,100,3.32,3.71,1.53,1.61
-95427,06,045,06045,459,243,180426079,180426079,459,243,180426079,180426079,87841,40323,10044339030,9081386386,100,100,100,100,0.52,0.6,1.8,1.99
-95428,06,045,06045,2516,1160,584953694,583227506,2516,1160,584953694,583227506,87841,40323,10044339030,9081386386,100,100,100,100,2.86,2.88,5.82,6.42
-95429,06,045,06045,70,60,103919411,103509130,70,60,103919411,103509130,87841,40323,10044339030,9081386386,100,100,100,100,0.08,0.15,1.03,1.14
-95430,06,097,06097,44,32,615335,615335,44,32,615335,615335,483878,204572,4578960489,4081430136,100,100,100,100,0.01,0.02,0.01,0.02
-95431,06,097,06097,631,0,196644,196644,631,0,196644,196644,483878,204572,4578960489,4081430136,100,0,100,100,0.13,0,0,0
-95432,06,045,06045,426,312,190077167,188871558,426,312,190077167,188871558,87841,40323,10044339030,9081386386,100,100,100,100,0.48,0.77,1.89,2.08
-95435,06,033,06033,82,26,399528,399528,82,26,399528,399528,64665,35492,3443189863,3254227528,100,100,100,100,0.13,0.07,0.01,0.01
-95436,06,097,06097,5418,2995,60380601,59514277,5418,2995,60380601,59514277,483878,204572,4578960489,4081430136,100,100,100,100,1.12,1.46,1.32,1.46
-95437,06,045,06045,14799,7082,263502321,253224320,14799,7082,263502321,253224320,87841,40323,10044339030,9081386386,100,100,100,100,16.85,17.56,2.62,2.79
-95439,06,097,06097,675,263,7091874,7091874,675,263,7091874,7091874,483878,204572,4578960489,4081430136,100,100,100,100,0.14,0.13,0.15,0.17
-95441,06,097,06097,2014,847,268640873,263936405,2014,847,268640873,263936405,483878,204572,4578960489,4081430136,100,100,100,100,0.42,0.41,5.87,6.47
-95442,06,097,06097,3178,1750,63372650,63226514,3178,1750,63372650,63226514,483878,204572,4578960489,4081430136,100,100,100,100,0.66,0.86,1.38,1.55
-95443,06,033,06033,233,222,10859723,10840827,233,222,10859723,10840827,64665,35492,3443189863,3254227528,100,100,100,100,0.36,0.63,0.32,0.33
-95444,06,097,06097,748,288,700896,700896,748,288,700896,700896,483878,204572,4578960489,4081430136,100,100,100,100,0.15,0.14,0.02,0.02
-95445,06,045,06045,2093,1421,228922290,221559110,2093,1421,228922290,221559110,87841,40323,10044339030,9081386386,100,100,100,100,2.38,3.52,2.28,2.44
-95446,06,097,06097,4750,3565,85699301,85259067,4750,3565,85699301,85259067,483878,204572,4578960489,4081430136,100,100,100,100,0.98,1.74,1.87,2.09
-95448,06,097,06097,16852,7753,489657911,488207763,16852,7753,489657911,488207763,483878,204572,4578960489,4081430136,100,100,100,100,3.48,3.79,10.69,11.96
-95449,06,045,06045,1507,606,339183489,338228682,1507,606,339183489,338228682,87841,40323,10044339030,9081386386,100,100,100,100,1.72,1.5,3.38,3.72
-95450,06,097,06097,387,366,71798148,71095022,387,366,71798148,71095022,483878,204572,4578960489,4081430136,100,100,100,100,0.08,0.18,1.57,1.74
-95451,06,033,06033,11213,5911,263072328,249096169,11213,5911,263072328,249096169,64665,35492,3443189863,3254227528,100,100,100,100,17.34,16.65,7.64,7.65
-95452,06,097,06097,1393,760,37217734,37217734,1393,760,37217734,37217734,483878,204572,4578960489,4081430136,100,100,100,100,0.29,0.37,0.81,0.91
-95453,06,033,06033,11256,5533,217858919,216831467,11256,5533,217858919,216831467,64665,35492,3443189863,3254227528,100,100,100,100,17.41,15.59,6.33,6.66
-95454,06,045,06045,2556,1331,692552203,691590624,2556,1331,692552203,691590624,87841,40323,10044339030,9081386386,100,100,100,100,2.91,3.3,6.89,7.62
-95456,06,045,06045,795,605,28211393,26094867,795,605,28211393,26094867,87841,40323,10044339030,9081386386,100,100,100,100,0.91,1.5,0.28,0.29
-95457,06,033,06033,2893,1712,395299622,384368466,2893,1712,395299622,384368466,64665,35492,3443189863,3254227528,100,100,100,100,4.47,4.82,11.48,11.81
-95458,06,033,06033,3104,1904,126897032,126835961,3104,1904,126897032,126835961,64665,35492,3443189863,3254227528,100,100,100,100,4.8,5.36,3.69,3.9
-95459,06,045,06045,504,421,180832536,173713747,504,421,180832536,173713747,87841,40323,10044339030,9081386386,100,100,100,100,0.57,1.04,1.8,1.91
-95460,06,045,06045,2285,1555,76954761,70740091,2285,1555,76954761,70740091,87841,40323,10044339030,9081386386,100,100,100,100,2.6,3.86,0.77,0.78
-95461,06,033,06033,3413,1886,326172479,324324519,3413,1886,326172479,324324519,64665,35492,3443189863,3254227528,100,100,100,100,5.28,5.31,9.47,9.97
-95462,06,097,06097,1417,1135,15881716,15213763,1417,1135,15881716,15213763,483878,204572,4578960489,4081430136,100,100,100,100,0.29,0.55,0.35,0.37
-95463,06,045,06045,169,134,29224936,29224936,169,134,29224936,29224936,87841,40323,10044339030,9081386386,100,100,100,100,0.19,0.33,0.29,0.32
-95464,06,033,06033,2673,1582,8612745,8612745,2673,1582,8612745,8612745,64665,35492,3443189863,3254227528,100,100,100,100,4.13,4.46,0.25,0.26
-95465,06,097,06097,2083,1314,109483604,108040410,2083,1314,109483604,108040410,483878,204572,4578960489,4081430136,100,100,100,100,0.43,0.64,2.39,2.65
-95466,06,045,06045,946,461,243673918,243568666,946,461,243673918,243568666,87841,40323,10044339030,9081386386,100,100,100,100,1.08,1.14,2.43,2.68
-95467,06,033,06033,5498,2565,25817942,25420363,5498,2565,25817942,25420363,64665,35492,3443189863,3254227528,100,100,100,100,8.5,7.23,0.75,0.78
-95468,06,045,06045,1258,703,176473869,168829054,1258,703,176473869,168829054,87841,40323,10044339030,9081386386,100,100,100,100,1.43,1.74,1.76,1.86
-95469,06,033,06033,60,236,163852234,155848351,1767,1014,461001625,452411498,64665,35492,3443189863,3254227528,3.4,23.27,35.54,34.45,0.09,0.66,4.76,4.79
-95469,06,045,06045,1707,778,297149391,296563147,1767,1014,461001625,452411498,87841,40323,10044339030,9081386386,96.6,76.73,64.46,65.55,1.94,1.93,2.96,3.27
-95470,06,045,06045,6032,2391,214346698,213718860,6032,2391,214346698,213718860,87841,40323,10044339030,9081386386,100,100,100,100,6.87,5.93,2.13,2.35
-95471,06,097,06097,522,434,3734436,3734436,522,434,3734436,3734436,483878,204572,4578960489,4081430136,100,100,100,100,0.11,0.21,0.08,0.09
-95472,06,097,06097,28255,13187,179180595,179074707,28255,13187,179180595,179074707,483878,204572,4578960489,4081430136,100,100,100,100,5.84,6.45,3.91,4.39
-95476,06,097,06097,35394,16559,292171511,290048360,35394,16559,292171511,290048360,483878,204572,4578960489,4081430136,100,100,100,100,7.31,8.09,6.38,7.11
-95482,06,045,06045,31808,12571,813473542,805163258,31808,12571,813473542,805163258,87841,40323,10044339030,9081386386,100,100,100,100,36.21,31.18,8.1,8.87
-95485,06,033,06033,2557,1265,274327553,271775618,2557,1265,274327553,271775618,64665,35492,3443189863,3254227528,100,100,100,100,3.95,3.56,7.97,8.35
-95486,06,097,06097,62,67,50163,50163,62,67,50163,50163,483878,204572,4578960489,4081430136,100,100,100,100,0.01,0.03,0,0
-95488,06,045,06045,280,219,239161822,229779523,280,219,239161822,229779523,87841,40323,10044339030,9081386386,100,100,100,100,0.32,0.54,2.38,2.53
-95490,06,045,06045,13264,6012,1017982157,1015732741,13264,6012,1017982157,1015732741,87841,40323,10044339030,9081386386,100,100,100,100,15.1,14.91,10.13,11.18
-95492,06,097,06097,28532,10192,49325582,49281501,28532,10192,49325582,49281501,483878,204572,4578960489,4081430136,100,100,100,100,5.9,4.98,1.08,1.21
-95493,06,033,06033,198,104,11795603,11734792,198,104,11795603,11734792,64665,35492,3443189863,3254227528,100,100,100,100,0.31,0.29,0.34,0.36
-95494,06,045,06045,139,77,266620306,266620306,139,77,266620306,266620306,87841,40323,10044339030,9081386386,100,100,100,100,0.16,0.19,2.65,2.94
-95497,06,097,06097,1305,1818,42063627,41841498,1305,1818,42063627,41841498,483878,204572,4578960489,4081430136,100,100,100,100,0.27,0.89,0.92,1.03
-95501,06,023,06023,23976,10574,22680189,18248993,23976,10574,22680189,18248993,134623,61559,10495301069,9241044673,100,100,100,100,17.81,17.18,0.22,0.2
-95503,06,023,06023,24152,10555,232184684,223897953,24152,10555,232184684,223897953,134623,61559,10495301069,9241044673,100,100,100,100,17.94,17.15,2.21,2.42
-95511,06,023,06023,360,206,151408054,151231027,360,206,151408054,151231027,134623,61559,10495301069,9241044673,100,100,100,100,0.27,0.33,1.44,1.64
-95514,06,023,06023,254,136,225107719,224546112,254,136,225107719,224546112,134623,61559,10495301069,9241044673,100,100,100,100,0.19,0.22,2.14,2.43
-95519,06,023,06023,17432,7585,150843054,147123701,17432,7585,150843054,147123701,134623,61559,10495301069,9241044673,100,100,100,100,12.95,12.32,1.44,1.59
-95521,06,023,06023,20199,9068,184445233,138572176,20199,9068,184445233,138572176,134623,61559,10495301069,9241044673,100,100,100,100,15,14.73,1.76,1.5
-95524,06,023,06023,1787,813,27015340,26988359,1787,813,27015340,26988359,134623,61559,10495301069,9241044673,100,100,100,100,1.33,1.32,0.26,0.29
-95525,06,023,06023,1733,830,216392821,215993820,1733,830,216392821,215993820,134623,61559,10495301069,9241044673,100,100,100,100,1.29,1.35,2.06,2.34
-95526,06,023,06023,378,301,285573243,285104732,378,301,285573243,285104732,134623,61559,10495301069,9241044673,100,100,100,100,0.28,0.49,2.72,3.09
-95527,06,105,06105,627,455,356400397,356397254,627,455,356400397,356397254,13786,8681,8307637595,8234229734,100,100,100,100,4.55,5.24,4.29,4.33
-95528,06,023,06023,1139,546,266106882,265698291,1139,546,266106882,265698291,134623,61559,10495301069,9241044673,100,100,100,100,0.85,0.89,2.54,2.88
-95531,06,015,06015,24528,9176,582511967,505493073,24528,9176,582511967,505493073,28610,11186,3185019519,2606493856,100,100,100,100,85.73,82.03,18.29,19.39
-95536,06,023,06023,2849,1397,384439183,381215528,2849,1397,384439183,381215528,134623,61559,10495301069,9241044673,100,100,100,100,2.12,2.27,3.66,4.13
-95537,06,023,06023,276,143,461647,461647,276,143,461647,461647,134623,61559,10495301069,9241044673,100,100,100,100,0.21,0.23,0,0
-95540,06,023,06023,13657,5722,73165826,71915618,13657,5722,73165826,71915618,134623,61559,10495301069,9241044673,100,100,100,100,10.14,9.3,0.7,0.78
-95542,06,023,06023,2533,1390,512408822,511758966,2533,1390,512408822,511758966,134623,61559,10495301069,9241044673,100,100,100,100,1.88,2.26,4.88,5.54
-95543,06,015,06015,765,425,264744753,264109164,765,425,264744753,264109164,28610,11186,3185019519,2606493856,100,100,100,100,2.67,3.8,8.31,10.13
-95545,06,023,06023,153,100,124177311,124177311,153,100,124177311,124177311,134623,61559,10495301069,9241044673,100,100,100,100,0.11,0.16,1.18,1.34
-95546,06,023,06023,3494,1417,357436169,353538808,3494,1417,357436169,353538808,134623,61559,10495301069,9241044673,100,100,100,100,2.6,2.3,3.41,3.83
-95547,06,023,06023,1222,506,19536376,19536376,1222,506,19536376,19536376,134623,61559,10495301069,9241044673,100,100,100,100,0.91,0.82,0.19,0.21
-95548,06,015,06015,1373,647,244955495,226208775,1373,647,244955495,226208775,28610,11186,3185019519,2606493856,100,100,100,100,4.8,5.78,7.69,8.68
-95549,06,023,06023,805,382,291132260,290949644,805,382,291132260,290949644,134623,61559,10495301069,9241044673,100,100,100,100,0.6,0.62,2.77,3.15
-95550,06,023,06023,128,73,349975615,349472026,128,73,349975615,349472026,134623,61559,10495301069,9241044673,100,100,100,100,0.1,0.12,3.33,3.78
-95551,06,023,06023,1739,732,137002585,110251523,1739,732,137002585,110251523,134623,61559,10495301069,9241044673,100,100,100,100,1.29,1.19,1.31,1.19
-95552,06,105,06105,697,749,1402262545,1397857063,697,749,1402262545,1397857063,13786,8681,8307637595,8234229734,100,100,100,100,5.06,8.63,16.88,16.98
-95553,06,023,06023,1062,612,153682893,153521378,1062,612,153682893,153521378,134623,61559,10495301069,9241044673,100,100,100,100,0.79,0.99,1.46,1.66
-95554,06,023,06023,533,336,130498558,130018977,533,336,130498558,130018977,134623,61559,10495301069,9241044673,100,100,100,100,0.4,0.55,1.24,1.41
-95555,06,023,06023,410,238,223918331,222554404,410,238,223918331,222554404,134623,61559,10495301069,9241044673,100,100,100,100,0.3,0.39,2.13,2.41
-95556,06,023,06023,605,353,356617351,354804079,605,353,356617351,354804079,134623,61559,10495301069,9241044673,100,100,100,100,0.45,0.57,3.4,3.84
-95558,06,023,06023,425,360,521123009,520360392,425,360,521123009,520360392,134623,61559,10495301069,9241044673,100,100,100,100,0.32,0.58,4.97,5.63
-95559,06,023,06023,182,110,46846102,46752702,182,110,46846102,46752702,134623,61559,10495301069,9241044673,100,100,100,100,0.14,0.18,0.45,0.51
-95560,06,023,06023,1648,867,86428985,86279071,1648,867,86428985,86279071,134623,61559,10495301069,9241044673,100,100,100,100,1.22,1.41,0.82,0.93
-95562,06,023,06023,3450,1486,64404087,63696882,3450,1486,64404087,63696882,134623,61559,10495301069,9241044673,100,100,100,100,2.56,2.41,0.61,0.69
-95563,06,105,06105,652,395,156133648,155965062,652,395,156133648,155965062,13786,8681,8307637595,8234229734,100,100,100,100,4.73,4.55,1.88,1.89
-95564,06,023,06023,462,192,12452835,8591808,462,192,12452835,8591808,134623,61559,10495301069,9241044673,100,100,100,100,0.34,0.31,0.12,0.09
-95565,06,023,06023,1071,394,87849629,86153866,1071,394,87849629,86153866,134623,61559,10495301069,9241044673,100,100,100,100,0.8,0.64,0.84,0.93
-95567,06,015,06015,1930,927,172311050,162006946,1930,927,172311050,162006946,28610,11186,3185019519,2606493856,100,100,100,100,6.75,8.29,5.41,6.22
-95568,06,093,06093,136,102,213432939,210442116,136,102,213432939,210442116,44900,23910,16439541703,16259652221,100,100,100,100,0.3,0.43,1.3,1.29
-95569,06,023,06023,361,154,161978661,160183060,361,154,161978661,160183060,134623,61559,10495301069,9241044673,100,100,100,100,0.27,0.25,1.54,1.73
-95570,06,023,06023,2579,1571,95466030,61405919,2579,1571,95466030,61405919,134623,61559,10495301069,9241044673,100,100,100,100,1.92,2.55,0.91,0.66
-95571,06,023,06023,271,137,2005623,1957032,271,137,2005623,1957032,134623,61559,10495301069,9241044673,100,100,100,100,0.2,0.22,0.02,0.02
-95573,06,023,06023,1744,1136,312475296,311511625,1744,1136,312475296,311511625,134623,61559,10495301069,9241044673,100,100,100,100,1.3,1.85,2.98,3.37
-95585,06,045,06045,508,300,141191455,141191455,508,300,141191455,141191455,87841,40323,10044339030,9081386386,100,100,100,100,0.58,0.74,1.41,1.55
-95587,06,045,06045,201,119,33669032,33669032,201,119,33669032,33669032,87841,40323,10044339030,9081386386,100,100,100,100,0.23,0.3,0.34,0.37
-95589,06,023,06023,1523,1098,356646479,347696067,1612,1159,506876268,483494749,134623,61559,10495301069,9241044673,94.48,94.74,70.36,71.91,1.13,1.78,3.4,3.76
-95589,06,045,06045,89,61,150229789,135798682,1612,1159,506876268,483494749,87841,40323,10044339030,9081386386,5.52,5.26,29.64,28.09,0.1,0.15,1.5,1.5
-95595,06,105,06105,262,175,634107440,634035127,262,175,634107440,634035127,13786,8681,8307637595,8234229734,100,100,100,100,1.9,2.02,7.63,7.7
-95601,06,005,06005,198,111,4564649,4538018,198,111,4564649,4538018,38091,18032,1569419566,1539962991,100,100,100,100,0.52,0.62,0.29,0.29
-95602,06,057,06057,5747,2525,27830004,26369069,17509,7496,129598382,127870645,98764,52590,2522131930,2480616988,32.82,33.68,21.47,20.62,5.82,4.8,1.1,1.06
-95602,06,061,06061,11762,4971,101768378,101501576,17509,7496,129598382,127870645,348432,152648,3891341378,3644136017,67.18,66.32,78.53,79.38,3.38,3.26,2.62,2.79
-95603,06,061,06061,27844,12243,102407180,101082367,27844,12243,102407180,101082367,348432,152648,3891341378,3644136017,100,100,100,100,7.99,8.02,2.63,2.77
-95604,06,061,06061,75,117,1037384,1037384,75,117,1037384,1037384,348432,152648,3891341378,3644136017,100,100,100,100,0.02,0.08,0.03,0.03
-95605,06,113,06113,14179,5251,10534141,10099855,14179,5251,10534141,10099855,200849,75054,2651001586,2628032408,100,100,100,100,7.06,7,0.4,0.38
-95606,06,113,06113,196,87,94066749,94066749,196,87,94066749,94066749,200849,75054,2651001586,2628032408,100,100,100,100,0.1,0.12,3.55,3.58
-95607,06,113,06113,431,219,348361243,347705376,431,219,348361243,347705376,200849,75054,2651001586,2628032408,100,100,100,100,0.21,0.29,13.14,13.23
-95608,06,067,06067,59418,27325,34462618,33776671,59418,27325,34462618,33776671,1418788,555932,2574492918,2498415670,100,100,100,100,4.19,4.92,1.34,1.35
-95610,06,067,06067,44147,18539,20279505,20279505,44147,18539,20279505,20279505,1418788,555932,2574492918,2498415670,100,100,100,100,3.11,3.33,0.79,0.81
-95612,06,095,06095,20,8,6867279,6570721,1239,502,150862396,143682929,413344,152698,2347027136,2128361199,1.61,1.59,4.55,4.57,0,0.01,0.29,0.31
-95612,06,113,06113,1219,494,143995117,137112208,1239,502,150862396,143682929,200849,75054,2651001586,2628032408,98.39,98.41,95.45,95.43,0.61,0.66,5.43,5.22
-95614,06,017,06017,3833,1680,92163768,91938310,3833,1680,92163768,91938310,181058,88159,4626639842,4423396606,100,100,100,100,2.12,1.91,1.99,2.08
-95615,06,067,06067,819,323,58810331,56717074,834,333,62331028,60185000,1418788,555932,2574492918,2498415670,98.2,97,94.35,94.24,0.06,0.06,2.28,2.27
-95615,06,113,06113,15,10,3520697,3467926,834,333,62331028,60185000,200849,75054,2651001586,2628032408,1.8,3,5.65,5.76,0.01,0.01,0.13,0.13
-95616,06,113,06113,47032,17982,71434073,71372239,47032,17982,71434073,71372239,200849,75054,2651001586,2628032408,100,100,100,100,23.42,23.96,2.69,2.72
-95618,06,095,06095,92,45,22584913,22485271,27281,10257,90727282,90464817,413344,152698,2347027136,2128361199,0.34,0.44,24.89,24.86,0.02,0.03,0.96,1.06
-95618,06,113,06113,27189,10212,68142369,67979546,27281,10257,90727282,90464817,200849,75054,2651001586,2628032408,99.66,99.56,75.11,75.14,13.54,13.61,2.57,2.59
-95619,06,017,06017,4842,2139,15663650,15567920,4842,2139,15663650,15567920,181058,88159,4626639842,4423396606,100,100,100,100,2.67,2.43,0.34,0.35
-95620,06,095,06095,20455,6952,465862488,459708190,20553,7048,631088850,623564441,413344,152698,2347027136,2128361199,99.52,98.64,73.82,73.72,4.95,4.55,19.85,21.6
-95620,06,113,06113,98,96,165226362,163856251,20553,7048,631088850,623564441,200849,75054,2651001586,2628032408,0.48,1.36,26.18,26.28,0.05,0.13,6.23,6.23
-95621,06,067,06067,39819,16768,17589801,17589801,39819,16768,17589801,17589801,1418788,555932,2574492918,2498415670,100,100,100,100,2.81,3.02,0.68,0.7
-95623,06,017,06017,3806,1633,135602088,135578059,3806,1633,135602088,135578059,181058,88159,4626639842,4423396606,100,100,100,100,2.1,1.85,2.93,3.07
-95624,06,067,06067,61989,19978,114027286,113912658,61989,19978,114027286,113912658,1418788,555932,2574492918,2498415670,100,100,100,100,4.37,3.59,4.43,4.56
-95625,06,095,06095,155,69,2991432,2991432,155,69,2991432,2991432,413344,152698,2347027136,2128361199,100,100,100,100,0.04,0.05,0.13,0.14
-95626,06,061,06061,510,190,16396098,16396098,5975,2041,60247188,60247188,348432,152648,3891341378,3644136017,8.54,9.31,27.21,27.21,0.15,0.12,0.42,0.45
-95626,06,067,06067,5355,1795,36811203,36811203,5975,2041,60247188,60247188,1418788,555932,2574492918,2498415670,89.62,87.95,61.1,61.1,0.38,0.32,1.43,1.47
-95626,06,101,06101,110,56,7039887,7039887,5975,2041,60247188,60247188,94737,33858,1575982605,1560235601,1.84,2.74,11.69,11.69,0.12,0.17,0.45,0.45
-95627,06,113,06113,3513,1224,133973773,133169251,3513,1224,133973773,133169251,200849,75054,2651001586,2628032408,100,100,100,100,1.75,1.63,5.05,5.07
-95628,06,067,06067,40196,17294,34205724,33034540,40196,17294,34205724,33034540,1418788,555932,2574492918,2498415670,100,100,100,100,2.83,3.11,1.33,1.32
-95629,06,005,06005,651,367,67856538,67856538,832,453,120422740,120422740,38091,18032,1569419566,1539962991,78.25,81.02,56.35,56.35,1.71,2.04,4.32,4.41
-95629,06,017,06017,181,86,52566202,52566202,832,453,120422740,120422740,181058,88159,4626639842,4423396606,21.75,18.98,43.65,43.65,0.1,0.1,1.14,1.19
-95630,06,067,06067,72180,26093,77470794,71442063,72180,26093,77470794,71442063,1418788,555932,2574492918,2498415670,100,100,100,100,5.09,4.69,3.01,2.86
-95631,06,061,06061,6076,2667,395535199,394127755,6076,2667,395535199,394127755,348432,152648,3891341378,3644136017,100,100,100,100,1.74,1.75,10.16,10.82
-95632,06,067,06067,28216,9245,194504460,193665936,29269,9633,288388768,287084116,1418788,555932,2574492918,2498415670,96.4,95.97,67.45,67.46,1.99,1.66,7.56,7.75
-95632,06,077,06077,1053,388,93884308,93418180,29269,9633,288388768,287084116,685306,233755,3694614642,3603505998,3.6,4.03,32.55,32.54,0.15,0.17,2.54,2.59
-95633,06,017,06017,3349,1515,106874075,106773340,3349,1515,106874075,106773340,181058,88159,4626639842,4423396606,100,100,100,100,1.85,1.72,2.31,2.41
-95634,06,017,06017,3232,1580,210328042,210131556,3232,1580,210328042,210131556,181058,88159,4626639842,4423396606,100,100,100,100,1.79,1.79,4.55,4.75
-95635,06,017,06017,1262,543,52576122,52517081,1262,543,52576122,52517081,181058,88159,4626639842,4423396606,100,100,100,100,0.7,0.62,1.14,1.19
-95636,06,017,06017,1101,678,300279569,300279569,1101,678,300279569,300279569,181058,88159,4626639842,4423396606,100,100,100,100,0.61,0.77,6.49,6.79
-95637,06,113,06113,370,191,54635119,54635119,370,191,54635119,54635119,200849,75054,2651001586,2628032408,100,100,100,100,0.18,0.25,2.06,2.08
-95638,06,067,06067,2255,766,205331132,203809770,2255,766,205331132,203809770,1418788,555932,2574492918,2498415670,100,100,100,100,0.16,0.14,7.98,8.16
-95639,06,067,06067,283,116,12889191,11775487,283,116,12889191,11775487,1418788,555932,2574492918,2498415670,100,100,100,100,0.02,0.02,0.5,0.47
-95640,06,005,06005,11353,3189,315260069,298901716,11353,3189,315260069,298901716,38091,18032,1569419566,1539962991,100,100,100,100,29.8,17.69,20.09,19.41
-95641,06,067,06067,1955,1178,96619508,92215843,1986,1190,121984472,115564042,1418788,555932,2574492918,2498415670,98.44,98.99,79.21,79.8,0.14,0.21,3.75,3.69
-95641,06,077,06077,31,12,25364964,23348199,1986,1190,121984472,115564042,685306,233755,3694614642,3603505998,1.56,1.01,20.79,20.2,0,0.01,0.69,0.65
-95642,06,005,06005,7164,3529,176282307,171575200,7164,3529,176282307,171575200,38091,18032,1569419566,1539962991,100,100,100,100,18.81,19.57,11.23,11.14
-95645,06,011,06011,105,37,60985820,60376120,2037,738,337372065,331528885,21419,7883,2994960389,2980379369,5.15,5.01,18.08,18.21,0.49,0.47,2.04,2.03
-95645,06,101,06101,800,294,143175056,139721830,2037,738,337372065,331528885,94737,33858,1575982605,1560235601,39.27,39.84,42.44,42.14,0.84,0.87,9.08,8.96
-95645,06,113,06113,1132,407,133211189,131430935,2037,738,337372065,331528885,200849,75054,2651001586,2628032408,55.57,55.15,39.48,39.64,0.56,0.54,5.02,5
-95646,06,003,06003,97,528,8755357,6302641,158,729,12386735,9934019,1175,1760,1924829158,1912271907,61.39,72.43,70.68,63.45,8.26,30,0.45,0.33
-95646,06,005,06005,61,201,3631378,3631378,158,729,12386735,9934019,38091,18032,1569419566,1539962991,38.61,27.57,29.32,36.55,0.16,1.11,0.23,0.24
-95648,06,061,06061,47354,19219,369577928,366503117,47354,19219,369577928,366503117,348432,152648,3891341378,3644136017,100,100,100,100,13.59,12.59,9.5,10.06
-95650,06,061,06061,12447,4792,64365464,63888285,12447,4792,64365464,63888285,348432,152648,3891341378,3644136017,100,100,100,100,3.57,3.14,1.65,1.75
-95651,06,017,06017,637,302,30057290,30057290,637,302,30057290,30057290,181058,88159,4626639842,4423396606,100,100,100,100,0.35,0.34,0.65,0.68
-95652,06,067,06067,739,223,9776107,9776107,739,223,9776107,9776107,1418788,555932,2574492918,2498415670,100,100,100,100,0.05,0.04,0.38,0.39
-95653,06,113,06113,527,147,13355268,13333351,527,147,13355268,13333351,200849,75054,2651001586,2628032408,100,100,100,100,0.26,0.2,0.5,0.51
-95655,06,067,06067,4314,1561,24596261,24531691,4314,1561,24596261,24531691,1418788,555932,2574492918,2498415670,100,100,100,100,0.3,0.28,0.96,0.98
-95658,06,061,06061,6285,2589,65243147,64231827,6285,2589,65243147,64231827,348432,152648,3891341378,3644136017,100,100,100,100,1.8,1.7,1.68,1.76
-95659,06,101,06101,702,328,131533597,129554142,702,328,131533597,129554142,94737,33858,1575982605,1560235601,100,100,100,100,0.74,0.97,8.35,8.3
-95660,06,067,06067,30714,10871,16152210,16152210,30714,10871,16152210,16152210,1418788,555932,2574492918,2498415670,100,100,100,100,2.16,1.96,0.63,0.65
-95661,06,061,06061,29791,12455,23317915,23314549,29791,12455,23317915,23314549,348432,152648,3891341378,3644136017,100,100,100,100,8.55,8.16,0.6,0.64
-95662,06,067,06067,31558,12623,28494101,28154331,31558,12623,28494101,28154331,1418788,555932,2574492918,2498415670,100,100,100,100,2.22,2.27,1.11,1.13
-95663,06,061,06061,2377,926,20680794,20680794,2377,926,20680794,20680794,348432,152648,3891341378,3644136017,100,100,100,100,0.68,0.61,0.53,0.57
-95664,06,017,06017,1380,620,109942316,97732414,1380,620,109942316,97732414,181058,88159,4626639842,4423396606,100,100,100,100,0.76,0.7,2.38,2.21
-95665,06,005,06005,4426,2152,52833875,52698565,4426,2152,52833875,52698565,38091,18032,1569419566,1539962991,100,100,100,100,11.62,11.93,3.37,3.42
-95666,06,005,06005,5336,3779,146512482,144277374,5336,3779,146512482,144277374,38091,18032,1569419566,1539962991,100,100,100,100,14.01,20.96,9.34,9.37
-95667,06,017,06017,36726,16204,449705889,448627560,36726,16204,449705889,448627560,181058,88159,4626639842,4423396606,100,100,100,100,20.28,18.38,9.72,10.14
-95668,06,061,06061,137,53,48414459,48414459,815,330,157335720,156973092,348432,152648,3891341378,3644136017,16.81,16.06,30.77,30.84,0.04,0.03,1.24,1.33
-95668,06,101,06101,678,277,108921261,108558633,815,330,157335720,156973092,94737,33858,1575982605,1560235601,83.19,83.94,69.23,69.16,0.72,0.82,6.91,6.96
-95669,06,005,06005,2443,1182,228953230,228749899,2443,1182,228953230,228749899,38091,18032,1569419566,1539962991,100,100,100,100,6.41,6.56,14.59,14.85
-95670,06,067,06067,52973,21636,33488700,32514204,52973,21636,33488700,32514204,1418788,555932,2574492918,2498415670,100,100,100,100,3.73,3.89,1.3,1.3
-95672,06,017,06017,4773,1856,58955728,58455805,4773,1856,58955728,58455805,181058,88159,4626639842,4423396606,100,100,100,100,2.64,2.11,1.27,1.32
-95673,06,067,06067,15455,5239,42178519,42005044,15455,5239,42178519,42005044,1418788,555932,2574492918,2498415670,100,100,100,100,1.09,0.94,1.64,1.68
-95674,06,101,06101,935,356,83001111,83001111,935,356,83001111,83001111,94737,33858,1575982605,1560235601,100,100,100,100,0.99,1.05,5.27,5.32
-95675,06,005,06005,381,201,1785214,1785214,381,201,1785214,1785214,38091,18032,1569419566,1539962991,100,100,100,100,1,1.11,0.11,0.12
-95677,06,061,06061,23333,9568,22956062,22938022,23333,9568,22956062,22938022,348432,152648,3891341378,3644136017,100,100,100,100,6.7,6.27,0.59,0.63
-95678,06,061,06061,41192,16978,28131203,28131203,41192,16978,28131203,28131203,348432,152648,3891341378,3644136017,100,100,100,100,11.82,11.12,0.72,0.77
-95679,06,113,06113,55,36,119570383,118879306,55,36,119570383,118879306,200849,75054,2651001586,2628032408,100,100,100,100,0.03,0.05,4.51,4.52
-95680,06,067,06067,146,48,5348336,5206956,146,48,5348336,5206956,1418788,555932,2574492918,2498415670,100,100,100,100,0.01,0.01,0.21,0.21
-95681,06,061,06061,1226,438,44707591,44663142,1226,438,44707591,44663142,348432,152648,3891341378,3644136017,100,100,100,100,0.35,0.29,1.15,1.23
-95682,06,017,06017,29114,11841,210470305,210189667,29114,11841,210470305,210189667,181058,88159,4626639842,4423396606,100,100,100,100,16.08,13.43,4.55,4.75
-95683,06,067,06067,6180,2671,236179023,235100708,6180,2671,236179023,235100708,1418788,555932,2574492918,2498415670,100,100,100,100,0.44,0.48,9.17,9.41
-95684,06,017,06017,3422,1786,376735222,376578972,3422,1786,376735222,376578972,181058,88159,4626639842,4423396606,100,100,100,100,1.89,2.03,8.14,8.51
-95685,06,005,06005,4680,2449,127718542,127699901,4680,2449,127718542,127699901,38091,18032,1569419566,1539962991,100,100,100,100,12.29,13.58,8.14,8.29
-95686,06,077,06077,1405,466,73713604,70581553,1405,466,73713604,70581553,685306,233755,3694614642,3603505998,100,100,100,100,0.21,0.2,2,1.96
-95687,06,095,06095,65096,22537,113335774,112718088,65096,22537,113335774,112718088,413344,152698,2347027136,2128361199,100,100,100,100,15.75,14.76,4.83,5.3
-95688,06,095,06095,34379,12997,211013186,210272010,34379,12997,211013186,210272010,413344,152698,2347027136,2128361199,100,100,100,100,8.32,8.51,8.99,9.88
-95689,06,005,06005,1244,793,71920341,71920341,1244,793,71920341,71920341,38091,18032,1569419566,1539962991,100,100,100,100,3.27,4.4,4.58,4.67
-95690,06,067,06067,2197,992,105089015,99870287,2533,1123,155952931,148353474,1418788,555932,2574492918,2498415670,86.74,88.33,67.39,67.32,0.15,0.18,4.08,4
-95690,06,095,06095,336,131,50863916,48483187,2533,1123,155952931,148353474,413344,152698,2347027136,2128361199,13.26,11.67,32.61,32.68,0.08,0.09,2.17,2.28
-95691,06,113,06113,34737,13497,113459085,107541255,34737,13497,113459085,107541255,200849,75054,2651001586,2628032408,100,100,100,100,17.3,17.98,4.28,4.09
-95692,06,101,06101,22,9,2947330,2947330,4769,1834,142531538,140536860,94737,33858,1575982605,1560235601,0.46,0.49,2.07,2.1,0.02,0.03,0.19,0.19
-95692,06,115,06115,4747,1825,139584208,137589530,4769,1834,142531538,140536860,72155,27635,1667452760,1636454192,99.54,99.51,97.93,97.9,6.58,6.6,8.37,8.41
-95693,06,067,06067,6758,2612,162855210,162731619,6758,2612,162855210,162731619,1418788,555932,2574492918,2498415670,100,100,100,100,0.48,0.47,6.33,6.51
-95694,06,095,06095,1122,474,103000431,102501677,9156,3274,387400612,386439555,413344,152698,2347027136,2128361199,12.25,14.48,26.59,26.52,0.27,0.31,4.39,4.82
-95694,06,113,06113,8034,2800,284400181,283937878,9156,3274,387400612,386439555,200849,75054,2651001586,2628032408,87.75,85.52,73.41,73.48,4,3.73,10.73,10.8
-95695,06,113,06113,37946,14689,368191217,368191217,37946,14689,368191217,368191217,200849,75054,2651001586,2628032408,100,100,100,100,18.89,19.57,13.89,14.01
-95697,06,113,06113,425,152,600030,600030,425,152,600030,600030,200849,75054,2651001586,2628032408,100,100,100,100,0.21,0.2,0.02,0.02
-95698,06,113,06113,236,99,112109906,111340391,236,99,112109906,111340391,200849,75054,2651001586,2628032408,100,100,100,100,0.12,0.13,4.23,4.24
-95699,06,005,06005,154,76,10584222,10517828,154,76,10584222,10517828,38091,18032,1569419566,1539962991,100,100,100,100,0.4,0.42,0.67,0.68
-95701,06,061,06061,983,573,86530330,86311664,983,573,86530330,86311664,348432,152648,3891341378,3644136017,100,100,100,100,0.28,0.38,2.22,2.37
-95703,06,061,06061,897,374,11528523,11528523,897,374,11528523,11528523,348432,152648,3891341378,3644136017,100,100,100,100,0.26,0.25,0.3,0.32
-95709,06,017,06017,4772,2144,57918787,57840036,4772,2144,57918787,57840036,181058,88159,4626639842,4423396606,100,100,100,100,2.64,2.43,1.25,1.31
-95713,06,061,06061,9495,4246,185435831,184443496,9495,4246,185435831,184443496,348432,152648,3891341378,3644136017,100,100,100,100,2.73,2.78,4.77,5.06
-95714,06,061,06061,382,277,8742518,8708468,382,277,8742518,8708468,348432,152648,3891341378,3644136017,100,100,100,100,0.11,0.18,0.22,0.24
-95715,06,057,06057,8,24,17187178,14532691,115,143,70275059,67483834,98764,52590,2522131930,2480616988,6.96,16.78,24.46,21.54,0.01,0.05,0.68,0.59
-95715,06,061,06061,107,119,53087881,52951143,115,143,70275059,67483834,348432,152648,3891341378,3644136017,93.04,83.22,75.54,78.46,0.03,0.08,1.36,1.45
-95717,06,061,06061,231,144,26466649,26466649,231,144,26466649,26466649,348432,152648,3891341378,3644136017,100,100,100,100,0.07,0.09,0.68,0.73
-95720,06,017,06017,157,420,315093975,313595788,157,420,315093975,313595788,181058,88159,4626639842,4423396606,100,100,100,100,0.09,0.48,6.81,7.09
-95721,06,017,06017,37,505,34239593,32453168,37,505,34239593,32453168,181058,88159,4626639842,4423396606,100,100,100,100,0.02,0.57,0.74,0.73
-95722,06,061,06061,4585,1942,28932661,28297792,4585,1942,28932661,28297792,348432,152648,3891341378,3644136017,100,100,100,100,1.32,1.27,0.74,0.78
-95724,06,061,06061,27,47,3095249,3095249,27,47,3095249,3095249,348432,152648,3891341378,3644136017,100,100,100,100,0.01,0.03,0.08,0.08
-95726,06,017,06017,8842,4605,194641106,192441900,8842,4605,194641106,192441900,181058,88159,4626639842,4423396606,100,100,100,100,4.88,5.22,4.21,4.35
-95728,06,057,06057,108,210,14536152,14261149,386,1048,32790157,32165502,98764,52590,2522131930,2480616988,27.98,20.04,44.33,44.34,0.11,0.4,0.58,0.57
-95728,06,061,06061,278,838,18254005,17904353,386,1048,32790157,32165502,348432,152648,3891341378,3644136017,72.02,79.96,55.67,55.66,0.08,0.55,0.47,0.49
-95735,06,017,06017,68,398,56914741,56102495,68,398,56914741,56102495,181058,88159,4626639842,4423396606,100,100,100,100,0.04,0.45,1.23,1.27
-95736,06,061,06061,240,85,649432,649432,240,85,649432,649432,348432,152648,3891341378,3644136017,100,100,100,100,0.07,0.06,0.02,0.02
-95742,06,067,06067,7749,2635,129008219,128909075,7749,2635,129008219,128909075,1418788,555932,2574492918,2498415670,100,100,100,100,0.55,0.47,5.01,5.16
-95746,06,061,06061,21460,7811,45845471,45732364,21460,7811,45845471,45732364,348432,152648,3891341378,3644136017,100,100,100,100,6.16,5.12,1.18,1.25
-95747,06,061,06061,51870,19836,120749211,120747938,51870,19836,120749211,120747938,348432,152648,3891341378,3644136017,100,100,100,100,14.89,12.99,3.1,3.31
-95757,06,067,06067,40222,11878,159071538,156578023,40222,11878,159071538,156578023,1418788,555932,2574492918,2498415670,100,100,100,100,2.83,2.14,6.18,6.27
-95758,06,067,06067,60435,21347,33899524,33222381,60435,21347,33899524,33222381,1418788,555932,2574492918,2498415670,100,100,100,100,4.26,3.84,1.32,1.33
-95762,06,017,06017,38797,13827,112771270,106934855,38797,13827,112771270,106934855,181058,88159,4626639842,4423396606,100,100,100,100,21.43,15.68,2.44,2.42
-95765,06,061,06061,33974,12546,32172655,32091508,33974,12546,32172655,32091508,348432,152648,3891341378,3644136017,100,100,100,100,9.75,8.22,0.83,0.88
-95776,06,113,06113,21902,6824,242285596,239384437,21902,6824,242285596,239384437,200849,75054,2651001586,2628032408,100,100,100,100,10.9,9.09,9.14,9.11
-95811,06,067,06067,7595,4465,7652504,7212901,7595,4465,7652504,7212901,1418788,555932,2574492918,2498415670,100,100,100,100,0.54,0.8,0.3,0.29
-95814,06,067,06067,9922,6473,3711231,3616899,9922,6473,3711231,3616899,1418788,555932,2574492918,2498415670,100,100,100,100,0.7,1.16,0.14,0.14
-95815,06,067,06067,24680,10004,21351698,20324446,24680,10004,21351698,20324446,1418788,555932,2574492918,2498415670,100,100,100,100,1.74,1.8,0.83,0.81
-95816,06,067,06067,15579,10137,5303864,5301362,15579,10137,5303864,5301362,1418788,555932,2574492918,2498415670,100,100,100,100,1.1,1.82,0.21,0.21
-95817,06,067,06067,13534,6574,5933955,5933955,13534,6574,5933955,5933955,1418788,555932,2574492918,2498415670,100,100,100,100,0.95,1.18,0.23,0.24
-95818,06,067,06067,19811,10143,10324936,9948048,19811,10143,10324936,9948048,1418788,555932,2574492918,2498415670,100,100,100,100,1.4,1.82,0.4,0.4
-95819,06,067,06067,17141,8036,9194150,8760910,17141,8036,9194150,8760910,1418788,555932,2574492918,2498415670,100,100,100,100,1.21,1.45,0.36,0.35
-95820,06,067,06067,34480,13190,13453303,13453303,34480,13190,13453303,13453303,1418788,555932,2574492918,2498415670,100,100,100,100,2.43,2.37,0.52,0.54
-95821,06,067,06067,33550,16240,18715264,18522331,33550,16240,18715264,18522331,1418788,555932,2574492918,2498415670,100,100,100,100,2.36,2.92,0.73,0.74
-95822,06,067,06067,42347,16569,22108672,21875767,42347,16569,22108672,21875767,1418788,555932,2574492918,2498415670,100,100,100,100,2.98,2.98,0.86,0.88
-95823,06,067,06067,73985,24552,30571490,30571490,73985,24552,30571490,30571490,1418788,555932,2574492918,2498415670,100,100,100,100,5.21,4.42,1.19,1.22
-95824,06,067,06067,30221,9689,10518257,10518257,30221,9689,10518257,10518257,1418788,555932,2574492918,2498415670,100,100,100,100,2.13,1.74,0.41,0.42
-95825,06,067,06067,31084,16993,12260122,12243232,31084,16993,12260122,12243232,1418788,555932,2574492918,2498415670,100,100,100,100,2.19,3.06,0.48,0.49
-95826,06,067,06067,36628,16192,30252443,29842945,36628,16192,30252443,29842945,1418788,555932,2574492918,2498415670,100,100,100,100,2.58,2.91,1.18,1.19
-95827,06,067,06067,20269,7846,20361400,19712471,20269,7846,20361400,19712471,1418788,555932,2574492918,2498415670,100,100,100,100,1.43,1.41,0.79,0.79
-95828,06,067,06067,57862,18515,31896927,31896927,57862,18515,31896927,31896927,1418788,555932,2574492918,2498415670,100,100,100,100,4.08,3.33,1.24,1.28
-95829,06,067,06067,24755,7763,53838957,53827168,24755,7763,53838957,53827168,1418788,555932,2574492918,2498415670,100,100,100,100,1.74,1.4,2.09,2.15
-95830,06,067,06067,934,311,33771170,33598959,934,311,33771170,33598959,1418788,555932,2574492918,2498415670,100,100,100,100,0.07,0.06,1.31,1.34
-95831,06,067,06067,41321,19186,19532444,18097102,41321,19186,19532444,18097102,1418788,555932,2574492918,2498415670,100,100,100,100,2.91,3.45,0.76,0.72
-95832,06,067,06067,11924,3222,22925735,21414053,11924,3222,22925735,21414053,1418788,555932,2574492918,2498415670,100,100,100,100,0.84,0.58,0.89,0.86
-95833,06,067,06067,37293,15007,21057423,20065426,37293,15007,21057423,20065426,1418788,555932,2574492918,2498415670,100,100,100,100,2.63,2.7,0.82,0.8
-95834,06,067,06067,25899,10085,26583861,25884200,25899,10085,26583861,25884200,1418788,555932,2574492918,2498415670,100,100,100,100,1.83,1.81,1.03,1.04
-95835,06,067,06067,35936,13606,23338620,23201611,35936,13606,23338620,23201611,1418788,555932,2574492918,2498415670,100,100,100,100,2.53,2.45,0.91,0.93
-95837,06,067,06067,211,102,37117691,36084111,315,144,47848078,46760394,1418788,555932,2574492918,2498415670,66.98,70.83,77.57,77.17,0.01,0.02,1.44,1.44
-95837,06,101,06101,104,42,10730387,10676283,315,144,47848078,46760394,94737,33858,1575982605,1560235601,33.02,29.17,22.43,22.83,0.11,0.12,0.68,0.68
-95838,06,067,06067,36764,11587,23501491,23480746,36764,11587,23501491,23480746,1418788,555932,2574492918,2498415670,100,100,100,100,2.59,2.08,0.91,0.94
-95841,06,067,06067,19448,8804,10556566,10556566,19448,8804,10556566,10556566,1418788,555932,2574492918,2498415670,100,100,100,100,1.37,1.58,0.41,0.42
-95842,06,067,06067,31806,12111,10143467,10143467,31806,12111,10143467,10143467,1418788,555932,2574492918,2498415670,100,100,100,100,2.24,2.18,0.39,0.41
-95843,06,067,06067,45048,14599,16701380,16701380,45048,14599,16701380,16701380,1418788,555932,2574492918,2498415670,100,100,100,100,3.18,2.63,0.65,0.67
-95864,06,067,06067,22447,10031,16850495,16615455,22447,10031,16850495,16615455,1418788,555932,2574492918,2498415670,100,100,100,100,1.58,1.8,0.65,0.67
-95901,06,007,06007,329,145,15182218,15182218,31314,12250,513207498,509066137,220000,95835,4343748996,4238423238,1.05,1.18,2.96,2.98,0.15,0.15,0.35,0.36
-95901,06,115,06115,30985,12105,498025280,493883919,31314,12250,513207498,509066137,72155,27635,1667452760,1636454192,98.95,98.82,97.04,97.02,42.94,43.8,29.87,30.18
-95903,06,115,06115,1732,843,37614437,37588823,1732,843,37614437,37588823,72155,27635,1667452760,1636454192,100,100,100,100,2.4,3.05,2.26,2.3
-95910,06,091,06091,86,81,88773905,88769698,86,81,88773905,88769698,3240,2328,2492112905,2468813797,100,100,100,100,2.65,3.48,3.56,3.6
-95912,06,011,06011,4563,1524,468248897,467504711,4685,1566,468348178,467603992,21419,7883,2994960389,2980379369,97.4,97.32,99.98,99.98,21.3,19.33,15.63,15.69
-95912,06,113,06113,122,42,99281,99281,4685,1566,468348178,467603992,200849,75054,2651001586,2628032408,2.6,2.68,0.02,0.02,0.06,0.06,0,0
-95914,06,007,06007,348,167,22832643,22832643,578,285,37956907,37956907,220000,95835,4343748996,4238423238,60.21,58.6,60.15,60.15,0.16,0.17,0.53,0.54
-95914,06,115,06115,230,118,15124264,15124264,578,285,37956907,37956907,72155,27635,1667452760,1636454192,39.79,41.4,39.85,39.85,0.32,0.43,0.91,0.92
-95915,06,063,06063,44,55,58489161,58437101,44,55,58489161,58437101,20007,15566,6768746183,6612350713,100,100,100,100,0.22,0.35,0.86,0.88
-95916,06,007,06007,1441,1011,270765106,250762126,1441,1011,270765106,250762126,220000,95835,4343748996,4238423238,100,100,100,100,0.66,1.05,6.23,5.92
-95917,06,007,06007,3155,1156,179560430,178476123,3155,1156,179560430,178476123,220000,95835,4343748996,4238423238,100,100,100,100,1.43,1.21,4.13,4.21
-95918,06,115,06115,2339,1008,184137121,178954698,2339,1008,184137121,178954698,72155,27635,1667452760,1636454192,100,100,100,100,3.24,3.65,11.04,10.94
-95919,06,115,06115,1378,714,64005512,64005512,1378,714,64005512,64005512,72155,27635,1667452760,1636454192,100,100,100,100,1.91,2.58,3.84,3.91
-95920,06,021,06021,274,134,179529633,178912999,274,134,179529633,178912999,28122,10778,3436856898,3403106702,100,100,100,100,0.97,1.24,5.22,5.26
-95922,06,091,06091,16,16,27482031,27475739,687,412,173569046,162584164,3240,2328,2492112905,2468813797,2.33,3.88,15.83,16.9,0.49,0.69,1.1,1.11
-95922,06,115,06115,671,396,146087015,135108425,687,412,173569046,162584164,72155,27635,1667452760,1636454192,97.67,96.12,84.17,83.1,0.93,1.43,8.76,8.26
-95923,06,063,06063,58,214,25726097,25726097,58,214,25726097,25726097,20007,15566,6768746183,6612350713,100,100,100,100,0.29,1.37,0.38,0.39
-95925,06,115,06115,295,163,91649942,86279365,295,163,91649942,86279365,72155,27635,1667452760,1636454192,100,100,100,100,0.41,0.59,5.5,5.27
-95926,06,007,06007,37725,16385,19815814,19815814,37725,16385,19815814,19815814,220000,95835,4343748996,4238423238,100,100,100,100,17.15,17.1,0.46,0.47
-95928,06,007,06007,36511,15496,362469515,356254048,36511,15496,362469515,356254048,220000,95835,4343748996,4238423238,100,100,100,100,16.6,16.17,8.34,8.41
-95930,06,007,06007,35,25,38867652,38436364,69,52,43832265,43400977,220000,95835,4343748996,4238423238,50.72,48.08,88.67,88.56,0.02,0.03,0.89,0.91
-95930,06,115,06115,34,27,4964613,4964613,69,52,43832265,43400977,72155,27635,1667452760,1636454192,49.28,51.92,11.33,11.44,0.05,0.1,0.3,0.3
-95932,06,011,06011,7718,3047,326744345,321650643,7718,3047,326744345,321650643,21419,7883,2994960389,2980379369,100,100,100,100,36.03,38.65,10.91,10.79
-95934,06,063,06063,274,161,53897991,53855943,274,161,53897991,53855943,20007,15566,6768746183,6612350713,100,100,100,100,1.37,1.03,0.8,0.81
-95935,06,115,06115,631,332,61312702,61125450,631,332,61312702,61125450,72155,27635,1667452760,1636454192,100,100,100,100,0.87,1.2,3.68,3.74
-95936,06,091,06091,352,297,271944557,271773214,352,297,271944557,271773214,3240,2328,2492112905,2468813797,100,100,100,100,10.86,12.76,10.91,11.01
-95937,06,113,06113,1491,595,131729796,131729796,1491,595,131729796,131729796,200849,75054,2651001586,2628032408,100,100,100,100,0.74,0.79,4.97,5.01
-95938,06,007,06007,3787,1525,186233348,186139046,3787,1525,186233348,186139046,220000,95835,4343748996,4238423238,100,100,100,100,1.72,1.59,4.29,4.39
-95939,06,021,06021,604,308,800188726,792186963,604,308,800188726,792186963,28122,10778,3436856898,3403106702,100,100,100,100,2.15,2.86,23.28,23.28
-95941,06,007,06007,451,314,24548840,24457399,563,383,41017599,40926158,220000,95835,4343748996,4238423238,80.11,81.98,59.85,59.76,0.21,0.33,0.57,0.58
-95941,06,115,06115,112,69,16468759,16468759,563,383,41017599,40926158,72155,27635,1667452760,1636454192,19.89,18.02,40.15,40.24,0.16,0.25,0.99,1.01
-95942,06,007,06007,1301,965,144815790,144775404,1301,965,144815790,144775404,220000,95835,4343748996,4238423238,100,100,100,100,0.59,1.01,3.33,3.42
-95943,06,021,06021,879,380,169558446,163942688,879,380,169558446,163942688,28122,10778,3436856898,3403106702,100,100,100,100,3.13,3.53,4.93,4.82
-95944,06,091,06091,46,40,131127940,130825651,46,40,131127940,130825651,3240,2328,2492112905,2468813797,100,100,100,100,1.42,1.72,5.26,5.3
-95945,06,057,06057,25199,12405,168660782,166352193,25199,12405,168660782,166352193,98764,52590,2522131930,2480616988,100,100,100,100,25.51,23.59,6.69,6.71
-95946,06,057,06057,9790,4728,111256273,108456907,9790,4728,111256273,108456907,98764,52590,2522131930,2480616988,100,100,100,100,9.91,8.99,4.41,4.37
-95947,06,063,06063,1899,1012,338095439,338095439,1899,1012,338095439,338095439,20007,15566,6768746183,6612350713,100,100,100,100,9.49,6.5,4.99,5.11
-95948,06,007,06007,10784,4006,202340300,201671643,10810,4015,202745634,202076977,220000,95835,4343748996,4238423238,99.76,99.78,99.8,99.8,4.9,4.18,4.66,4.76
-95948,06,101,06101,26,9,405334,405334,10810,4015,202745634,202076977,94737,33858,1575982605,1560235601,0.24,0.22,0.2,0.2,0.03,0.03,0.03,0.03
-95949,06,057,06057,19741,8938,361947779,361463789,19741,8938,361947779,361463789,98764,52590,2522131930,2480616988,100,100,100,100,19.99,17,14.35,14.57
-95950,06,011,06011,569,202,132615240,132069187,569,202,132615240,132069187,21419,7883,2994960389,2980379369,100,100,100,100,2.66,2.56,4.43,4.43
-95951,06,021,06021,2601,775,50081578,47587859,2601,775,50081578,47587859,28122,10778,3436856898,3403106702,100,100,100,100,9.25,7.19,1.46,1.4
-95953,06,101,06101,10718,3407,295321359,294620010,10718,3407,295321359,294620010,94737,33858,1575982605,1560235601,100,100,100,100,11.31,10.06,18.74,18.88
-95954,06,007,06007,12251,5863,187176356,183961862,12251,5863,187176356,183961862,220000,95835,4343748996,4238423238,100,100,100,100,5.57,6.12,4.31,4.34
-95955,06,011,06011,1517,608,318640137,318560903,1517,608,318640137,318560903,21419,7883,2994960389,2980379369,100,100,100,100,7.08,7.71,10.64,10.69
-95956,06,063,06063,401,534,175443832,175421696,401,534,175443832,175421696,20007,15566,6768746183,6612350713,100,100,100,100,2,3.43,2.59,2.65
-95957,06,101,06101,761,336,182567750,180934757,761,336,182567750,180934757,94737,33858,1575982605,1560235601,100,100,100,100,0.8,0.99,11.58,11.6
-95959,06,057,06057,17838,8600,645846307,642106455,17838,8600,645846307,642106455,98764,52590,2522131930,2480616988,100,100,100,100,18.06,16.35,25.61,25.88
-95960,06,057,06057,583,306,47922128,47840838,796,437,125201586,125062066,98764,52590,2522131930,2480616988,73.24,70.02,38.28,38.25,0.59,0.58,1.9,1.93
-95960,06,091,06091,146,96,51040967,50988393,796,437,125201586,125062066,3240,2328,2492112905,2468813797,18.34,21.97,40.77,40.77,4.51,4.12,2.05,2.07
-95960,06,115,06115,67,35,26238491,26232835,796,437,125201586,125062066,72155,27635,1667452760,1636454192,8.42,8.01,20.96,20.98,0.09,0.13,1.57,1.6
-95961,06,115,06115,26510,8799,120329236,118575036,26510,8799,120329236,118575036,72155,27635,1667452760,1636454192,100,100,100,100,36.74,31.84,7.22,7.25
-95962,06,115,06115,1567,765,77367530,76947527,1567,765,77367530,76947527,72155,27635,1667452760,1636454192,100,100,100,100,2.17,2.77,4.64,4.7
-95963,06,021,06021,14735,5558,680601208,666977672,15493,5853,806559548,791684843,28122,10778,3436856898,3403106702,95.11,94.96,84.38,84.25,52.4,51.57,19.8,19.6
-95963,06,103,06103,758,295,125958340,124707171,15493,5853,806559548,791684843,63463,26987,7671985844,7639709781,4.89,5.04,15.62,15.75,1.19,1.09,1.64,1.63
-95965,06,007,06007,20384,8002,871772552,829307201,20384,8002,871772552,829307201,220000,95835,4343748996,4238423238,100,100,100,100,9.27,8.35,20.07,19.57
-95966,06,007,06007,30503,13064,485085199,462392893,30643,13148,499417521,476725215,220000,95835,4343748996,4238423238,99.54,99.36,97.13,96.99,13.87,13.63,11.17,10.91
-95966,06,115,06115,140,84,14332322,14332322,30643,13148,499417521,476725215,72155,27635,1667452760,1636454192,0.46,0.64,2.87,3.01,0.19,0.3,0.86,0.88
-95968,06,007,06007,1412,514,4008182,4008182,1412,514,4008182,4008182,220000,95835,4343748996,4238423238,100,100,100,100,0.64,0.54,0.09,0.09
-95969,06,007,06007,27549,13621,153712326,152881285,27549,13621,153712326,152881285,220000,95835,4343748996,4238423238,100,100,100,100,12.52,14.21,3.54,3.61
-95970,06,011,06011,358,183,76720769,76647185,530,261,122576510,121264527,21419,7883,2994960389,2980379369,67.55,70.11,62.59,63.21,1.67,2.32,2.56,2.57
-95970,06,021,06021,172,78,45855741,44617342,530,261,122576510,121264527,28122,10778,3436856898,3403106702,32.45,29.89,37.41,36.79,0.61,0.72,1.33,1.31
-95971,06,063,06063,5970,2920,262727012,262028573,5970,2920,262727012,262028573,20007,15566,6768746183,6612350713,100,100,100,100,29.84,18.76,3.88,3.96
-95973,06,007,06007,31879,13464,474248181,469611025,31957,13510,866810115,861956753,220000,95835,4343748996,4238423238,99.76,99.66,54.71,54.48,14.49,14.05,10.92,11.08
-95973,06,103,06103,78,46,392561934,392345728,31957,13510,866810115,861956753,63463,26987,7671985844,7639709781,0.24,0.34,45.29,45.52,0.12,0.17,5.12,5.14
-95974,06,007,06007,8,3,21744218,21744218,8,3,21744218,21744218,220000,95835,4343748996,4238423238,100,100,100,100,0,0,0.5,0.51
-95975,06,057,06057,1769,855,24218351,24218351,1769,855,24218351,24218351,98764,52590,2522131930,2480616988,100,100,100,100,1.79,1.63,0.96,0.98
-95977,06,057,06057,1033,426,40398116,40351526,1678,704,101928155,101350964,98764,52590,2522131930,2480616988,61.56,60.51,39.63,39.81,1.05,0.81,1.6,1.63
-95977,06,115,06115,645,278,61530039,60999438,1678,704,101928155,101350964,72155,27635,1667452760,1636454192,38.44,39.49,60.37,60.19,0.89,1.01,3.69,3.73
-95978,06,007,06007,143,71,16390482,16390482,143,71,16390482,16390482,220000,95835,4343748996,4238423238,100,100,100,100,0.07,0.07,0.38,0.39
-95979,06,011,06011,597,428,743880863,736641676,597,428,743880863,736641676,21419,7883,2994960389,2980379369,100,100,100,100,2.79,5.43,24.84,24.72
-95981,06,063,06063,30,275,63326995,62863781,97,346,107080418,106424267,20007,15566,6768746183,6612350713,30.93,79.48,59.14,59.07,0.15,1.77,0.94,0.95
-95981,06,115,06115,67,71,43753423,43560486,97,346,107080418,106424267,72155,27635,1667452760,1636454192,69.07,20.52,40.86,40.93,0.09,0.26,2.62,2.66
-95982,06,101,06101,3221,1217,115199922,114902241,3221,1217,115199922,114902241,94737,33858,1575982605,1560235601,100,100,100,100,3.4,3.59,7.31,7.36
-95983,06,063,06063,428,297,305392204,305392204,428,297,305392204,305392204,20007,15566,6768746183,6612350713,100,100,100,100,2.14,1.91,4.51,4.62
-95984,06,063,06063,120,91,85943976,85943976,120,91,85943976,85943976,20007,15566,6768746183,6612350713,100,100,100,100,0.6,0.58,1.27,1.3
-95986,06,057,06057,162,121,21257292,21257292,162,121,21257292,21257292,98764,52590,2522131930,2480616988,100,100,100,100,0.16,0.23,0.84,0.86
-95987,06,011,06011,5992,1854,867124318,866928944,5992,1854,867124318,866928944,21419,7883,2994960389,2980379369,100,100,100,100,27.98,23.52,28.95,29.09
-95988,06,021,06021,8857,3543,806343001,804260340,8857,3543,806343001,804260340,28122,10778,3436856898,3403106702,100,100,100,100,31.49,32.87,23.46,23.63
-95991,06,101,06101,40593,15139,108297231,105482089,40593,15139,108297231,105482089,94737,33858,1575982605,1560235601,100,100,100,100,42.85,44.71,6.87,6.76
-95993,06,101,06101,36067,12388,221650881,221499871,36067,12388,221650881,221499871,94737,33858,1575982605,1560235601,100,100,100,100,38.07,36.59,14.06,14.2
-96001,06,089,06089,33865,14846,231939209,227797024,33865,14846,231939209,227797024,177223,77313,9964777854,9778246966,100,100,100,100,19.11,19.2,2.33,2.33
-96002,06,089,06089,33298,13374,80150371,78346896,33298,13374,80150371,78346896,177223,77313,9964777854,9778246966,100,100,100,100,18.79,17.3,0.8,0.8
-96003,06,089,06089,44461,19402,673298770,615250597,44461,19402,673298770,615250597,177223,77313,9964777854,9778246966,100,100,100,100,25.09,25.1,6.76,6.29
-96006,06,035,06035,171,92,260523582,259677487,557,307,419573887,418524842,34895,12710,12225052893,11761612172,30.7,29.97,62.09,62.05,0.49,0.72,2.13,2.21
-96006,06,049,06049,386,215,159050305,158847355,557,307,419573887,418524842,9686,5192,10886751609,10146977156,69.3,70.03,37.91,37.95,3.99,4.14,1.46,1.57
-96007,06,089,06089,22841,9487,340849461,335549415,22841,9487,340849461,335549415,177223,77313,9964777854,9778246966,100,100,100,100,12.89,12.27,3.42,3.43
-96008,06,089,06089,1231,485,94396107,94129012,1231,485,94396107,94129012,177223,77313,9964777854,9778246966,100,100,100,100,0.69,0.63,0.95,0.96
-96009,06,035,06035,569,285,576341016,570891928,569,285,576341016,570891928,34895,12710,12225052893,11761612172,100,100,100,100,1.63,2.24,4.71,4.85
-96010,06,105,06105,239,153,1041444280,1041435918,239,153,1041444280,1041435918,13786,8681,8307637595,8234229734,100,100,100,100,1.73,1.76,12.54,12.65
-96011,06,089,06089,218,191,832212689,826335814,218,191,832212689,826335814,177223,77313,9964777854,9778246966,100,100,100,100,0.12,0.25,8.35,8.45
-96013,06,089,06089,4212,2033,602280187,595068978,4212,2033,602280187,595068978,177223,77313,9964777854,9778246966,100,100,100,100,2.38,2.63,6.04,6.09
-96014,06,093,06093,211,124,345198489,343767195,211,124,345198489,343767195,44900,23910,16439541703,16259652221,100,100,100,100,0.47,0.52,2.1,2.11
-96015,06,049,06049,465,156,648932217,626722760,465,156,648932217,626722760,9686,5192,10886751609,10146977156,100,100,100,100,4.8,3,5.96,6.18
-96016,06,089,06089,366,238,110698097,109061797,366,238,110698097,109061797,177223,77313,9964777854,9778246966,100,100,100,100,0.21,0.31,1.11,1.12
-96017,06,089,06089,171,184,380105431,378404137,171,184,380105431,378404137,177223,77313,9964777854,9778246966,100,100,100,100,0.1,0.24,3.81,3.87
-96019,06,089,06089,10082,4148,28359086,28334829,10082,4148,28359086,28334829,177223,77313,9964777854,9778246966,100,100,100,100,5.69,5.37,0.28,0.29
-96020,06,063,06063,2416,1752,104840617,103725698,2416,1752,104840617,103725698,20007,15566,6768746183,6612350713,100,100,100,100,12.08,11.26,1.55,1.57
-96021,06,103,06103,16097,6337,624867219,617955662,16097,6337,624867219,617955662,63463,26987,7671985844,7639709781,100,100,100,100,25.36,23.48,8.14,8.09
-96022,06,089,06089,7519,2967,158278918,157705701,15768,6443,628586349,626871170,177223,77313,9964777854,9778246966,47.69,46.05,25.18,25.16,4.24,3.84,1.59,1.61
-96022,06,103,06103,8249,3476,470307431,469165469,15768,6443,628586349,626871170,63463,26987,7671985844,7639709781,52.31,53.95,74.82,74.84,13,12.88,6.13,6.14
-96023,06,093,06093,1240,603,713461181,646989271,1240,603,713461181,646989271,44900,23910,16439541703,16259652221,100,100,100,100,2.76,2.52,4.34,3.98
-96024,06,105,06105,1145,670,462559451,462527066,1145,670,462559451,462527066,13786,8681,8307637595,8234229734,100,100,100,100,8.31,7.72,5.57,5.62
-96025,06,089,06089,167,98,36857780,36738360,2310,1502,238351703,237536436,177223,77313,9964777854,9778246966,7.23,6.52,15.46,15.47,0.09,0.13,0.37,0.38
-96025,06,093,06093,2143,1404,201493923,200798076,2310,1502,238351703,237536436,44900,23910,16439541703,16259652221,92.77,93.48,84.54,84.53,4.77,5.87,1.23,1.23
-96027,06,093,06093,2227,1108,1238022426,1233590146,2227,1108,1238022426,1233590146,44900,23910,16439541703,16259652221,100,100,100,100,4.96,4.63,7.53,7.59
-96028,06,089,06089,1464,795,439356969,433264243,1464,795,439356969,433264243,177223,77313,9964777854,9778246966,100,100,100,100,0.83,1.03,4.41,4.43
-96029,06,103,06103,124,68,90481224,90316097,124,68,90481224,90316097,63463,26987,7671985844,7639709781,100,100,100,100,0.2,0.25,1.18,1.18
-96031,06,093,06093,158,154,920213482,917917096,158,154,920213482,917917096,44900,23910,16439541703,16259652221,100,100,100,100,0.35,0.64,5.6,5.65
-96032,06,093,06093,2407,1196,1183353746,1179820395,2407,1196,1183353746,1179820395,44900,23910,16439541703,16259652221,100,100,100,100,5.36,5,7.2,7.26
-96033,06,089,06089,432,216,375633879,366782602,432,216,375633879,366782602,177223,77313,9964777854,9778246966,100,100,100,100,0.24,0.28,3.77,3.75
-96034,06,093,06093,294,177,287117592,286030393,294,177,287117592,286030393,44900,23910,16439541703,16259652221,100,100,100,100,0.65,0.74,1.75,1.76
-96035,06,103,06103,3324,1308,120928963,119034439,3324,1308,120928963,119034439,63463,26987,7671985844,7639709781,100,100,100,100,5.24,4.85,1.58,1.56
-96037,06,093,06093,308,157,10745084,10391119,308,157,10745084,10391119,44900,23910,16439541703,16259652221,100,100,100,100,0.69,0.66,0.07,0.06
-96038,06,093,06093,589,291,46244252,46183849,589,291,46244252,46183849,44900,23910,16439541703,16259652221,100,100,100,100,1.31,1.22,0.28,0.28
-96039,06,093,06093,1251,695,1618468780,1613739881,1251,695,1618468780,1613739881,44900,23910,16439541703,16259652221,100,100,100,100,2.79,2.91,9.84,9.92
-96040,06,089,06089,341,207,319851660,319038217,341,207,319851660,319038217,177223,77313,9964777854,9778246966,100,100,100,100,0.19,0.27,3.21,3.26
-96041,06,105,06105,2747,1653,852342687,852284465,2747,1653,852342687,852284465,13786,8681,8307637595,8234229734,100,100,100,100,19.93,19.04,10.26,10.35
-96044,06,093,06093,1022,681,370282132,364904363,1022,681,370282132,364904363,44900,23910,16439541703,16259652221,100,100,100,100,2.28,2.85,2.25,2.24
-96046,06,105,06105,304,227,464602144,464561213,304,227,464602144,464561213,13786,8681,8307637595,8234229734,100,100,100,100,2.21,2.61,5.59,5.64
-96047,06,089,06089,1004,556,534084245,533303697,1004,556,534084245,533303697,177223,77313,9964777854,9778246966,100,100,100,100,0.57,0.72,5.36,5.45
-96048,06,105,06105,736,406,398238156,397572844,736,406,398238156,397572844,13786,8681,8307637595,8234229734,100,100,100,100,5.34,4.68,4.79,4.83
-96049,06,093,06093,95,63,41216720,41030624,95,63,41216720,41030624,44900,23910,16439541703,16259652221,100,100,100,100,0.21,0.26,0.25,0.25
-96050,06,093,06093,414,318,742069039,740074878,414,318,742069039,740074878,44900,23910,16439541703,16259652221,100,100,100,100,0.92,1.33,4.51,4.55
-96051,06,089,06089,1139,873,852439188,801678065,1139,873,852439188,801678065,177223,77313,9964777854,9778246966,100,100,100,100,0.64,1.13,8.55,8.2
-96052,06,105,06105,1460,907,204301714,199642870,1460,907,204301714,199642870,13786,8681,8307637595,8234229734,100,100,100,100,10.59,10.45,2.46,2.42
-96054,06,049,06049,366,220,335440734,330848756,366,220,335440734,330848756,9686,5192,10886751609,10146977156,100,100,100,100,3.78,4.24,3.08,3.26
-96055,06,103,06103,3935,1775,165402237,163727579,3935,1775,165402237,163727579,63463,26987,7671985844,7639709781,100,100,100,100,6.2,6.58,2.16,2.14
-96056,06,035,06035,564,319,542511175,537678317,1642,884,885849764,873654746,34895,12710,12225052893,11761612172,34.35,36.09,61.24,61.54,1.62,2.51,4.44,4.57
-96056,06,049,06049,111,68,95825599,95656042,1642,884,885849764,873654746,9686,5192,10886751609,10146977156,6.76,7.69,10.82,10.95,1.15,1.31,0.88,0.94
-96056,06,089,06089,967,497,247512990,240320387,1642,884,885849764,873654746,177223,77313,9964777854,9778246966,58.89,56.22,27.94,27.51,0.55,0.64,2.48,2.46
-96057,06,093,06093,1355,1064,819813357,819170056,1355,1064,819813357,819170056,44900,23910,16439541703,16259652221,100,100,100,100,3.02,4.45,4.99,5.04
-96058,06,093,06093,798,446,1134334810,1126445144,798,446,1134334810,1126445144,44900,23910,16439541703,16259652221,100,100,100,100,1.78,1.87,6.9,6.93
-96059,06,089,06089,284,149,103843121,103715956,688,355,203346527,203136347,177223,77313,9964777854,9778246966,41.28,41.97,51.07,51.06,0.16,0.19,1.04,1.06
-96059,06,103,06103,404,206,99503406,99420391,688,355,203346527,203136347,63463,26987,7671985844,7639709781,58.72,58.03,48.93,48.94,0.64,0.76,1.3,1.3
-96061,06,103,06103,36,167,107184741,106913157,36,167,107184741,106913157,63463,26987,7671985844,7639709781,100,100,100,100,0.06,0.62,1.4,1.4
-96062,06,089,06089,1105,439,189531628,188849980,1105,439,189531628,188849980,177223,77313,9964777854,9778246966,100,100,100,100,0.62,0.57,1.9,1.93
-96063,06,103,06103,125,345,31148699,31030922,125,345,31148699,31030922,63463,26987,7671985844,7639709781,100,100,100,100,0.2,1.28,0.41,0.41
-96064,06,093,06093,4574,2265,1249912481,1240888485,4574,2265,1249912481,1240888485,44900,23910,16439541703,16259652221,100,100,100,100,10.19,9.47,7.6,7.63
-96065,06,089,06089,357,221,220595561,219507209,357,221,220595561,219507209,177223,77313,9964777854,9778246966,100,100,100,100,0.2,0.29,2.21,2.24
-96067,06,093,06093,7165,3974,354168759,351861118,7165,3974,354168759,351861118,44900,23910,16439541703,16259652221,100,100,100,100,15.96,16.62,2.15,2.16
-96068,06,035,06035,183,54,104459470,103808797,183,54,104459470,103808797,34895,12710,12225052893,11761612172,100,100,100,100,0.52,0.42,0.85,0.88
-96069,06,089,06089,982,502,229890349,229493517,982,502,229890349,229493517,177223,77313,9964777854,9778246966,100,100,100,100,0.55,0.65,2.31,2.35
-96071,06,089,06089,125,212,207966857,207637746,125,212,207966857,207637746,177223,77313,9964777854,9778246966,100,100,100,100,0.07,0.27,2.09,2.12
-96073,06,089,06089,4082,1619,116183126,115302061,4082,1619,116183126,115302061,177223,77313,9964777854,9778246966,100,100,100,100,2.3,2.09,1.17,1.18
-96074,06,103,06103,260,75,259893663,259310706,260,75,259893663,259310706,63463,26987,7671985844,7639709781,100,100,100,100,0.41,0.28,3.39,3.39
-96075,06,089,06089,20,14,12188572,12098905,369,207,178340858,178155066,177223,77313,9964777854,9778246966,5.42,6.76,6.83,6.79,0.01,0.02,0.12,0.12
-96075,06,103,06103,349,193,166152286,166056161,369,207,178340858,178155066,63463,26987,7671985844,7639709781,94.58,93.24,93.17,93.21,0.55,0.72,2.17,2.17
-96076,06,089,06089,63,54,273749834,273732561,166,157,536314816,536253682,177223,77313,9964777854,9778246966,37.95,34.39,51.04,51.05,0.04,0.07,2.75,2.8
-96076,06,103,06103,39,28,130130668,130086807,166,157,536314816,536253682,63463,26987,7671985844,7639709781,23.49,17.83,24.26,24.26,0.06,0.1,1.7,1.7
-96076,06,105,06105,64,75,132434314,132434314,166,157,536314816,536253682,13786,8681,8307637595,8234229734,38.55,47.77,24.69,24.7,0.46,0.86,1.59,1.61
-96080,06,103,06103,28764,12256,1593651787,1585623463,28764,12256,1593651787,1585623463,63463,26987,7671985844,7639709781,100,100,100,100,45.32,45.41,20.77,20.76
-96084,06,089,06089,625,323,275834240,272767503,625,323,275834240,272767503,177223,77313,9964777854,9778246966,100,100,100,100,0.35,0.42,2.77,2.79
-96085,06,093,06093,85,60,193538499,193310678,85,60,193538499,193310678,44900,23910,16439541703,16259652221,100,100,100,100,0.19,0.25,1.18,1.19
-96086,06,093,06093,338,215,666450719,664958042,338,215,666450719,664958042,44900,23910,16439541703,16259652221,100,100,100,100,0.75,0.9,4.05,4.09
-96087,06,089,06089,600,271,215577711,202673338,600,271,215577711,202673338,177223,77313,9964777854,9778246966,100,100,100,100,0.34,0.35,2.16,2.07
-96088,06,089,06089,4506,2567,408721129,408067687,4506,2567,408721129,408067687,177223,77313,9964777854,9778246966,100,100,100,100,2.54,3.32,4.1,4.17
-96090,06,103,06103,421,197,2733053,2660998,421,197,2733053,2660998,63463,26987,7671985844,7639709781,100,100,100,100,0.66,0.73,0.04,0.03
-96091,06,105,06105,699,845,1174366122,1171223887,699,845,1174366122,1171223887,13786,8681,8307637595,8234229734,100,100,100,100,5.07,9.73,14.14,14.22
-96092,06,103,06103,496,177,127961641,127912597,496,177,127961641,127912597,63463,26987,7671985844,7639709781,100,100,100,100,0.78,0.66,1.67,1.67
-96093,06,105,06105,4133,1939,151933112,151923465,4133,1939,151933112,151923465,13786,8681,8307637595,8234229734,100,100,100,100,29.98,22.34,1.83,1.85
-96094,06,093,06093,6630,3305,652009185,640774711,6630,3305,652009185,640774711,44900,23910,16439541703,16259652221,100,100,100,100,14.77,13.82,3.97,3.94
-96096,06,089,06089,695,343,295301518,294944136,695,343,295301518,294944136,177223,77313,9964777854,9778246966,100,100,100,100,0.39,0.44,2.96,3.02
-96097,06,093,06093,10031,4815,494996775,493971895,10031,4815,494996775,493971895,44900,23910,16439541703,16259652221,100,100,100,100,22.34,20.14,3.01,3.04
-96101,06,049,06049,5490,2786,1540892076,1513198323,5490,2786,1540892076,1513198323,9686,5192,10886751609,10146977156,100,100,100,100,56.68,53.66,14.15,14.91
-96103,06,063,06063,1725,1988,326533023,325567919,1725,1988,326533023,325567919,20007,15566,6768746183,6612350713,100,100,100,100,8.62,12.77,4.82,4.92
-96104,06,049,06049,748,427,547764511,498525771,748,427,547764511,498525771,9686,5192,10886751609,10146977156,100,100,100,100,7.72,8.22,5.03,4.91
-96105,06,035,06035,127,75,143487754,143308016,527,423,656141114,655846407,34895,12710,12225052893,11761612172,24.1,17.73,21.87,21.85,0.36,0.59,1.17,1.22
-96105,06,063,06063,381,332,398079418,398002663,527,423,656141114,655846407,20007,15566,6768746183,6612350713,72.3,78.49,60.67,60.69,1.9,2.13,5.88,6.02
-96105,06,091,06091,19,16,114573942,114535728,527,423,656141114,655846407,3240,2328,2492112905,2468813797,3.61,3.78,17.46,17.46,0.59,0.69,4.6,4.64
-96106,06,063,06063,479,495,60594374,60594374,479,495,60594374,60594374,20007,15566,6768746183,6612350713,100,100,100,100,2.39,3.18,0.9,0.92
-96107,06,051,06051,1269,659,230295921,230266600,1269,659,230295921,230266600,14202,13912,8111522878,7896827391,100,100,100,100,8.94,4.74,2.84,2.92
-96108,06,049,06049,122,96,516763210,512906657,122,96,516763210,512906657,9686,5192,10886751609,10146977156,100,100,100,100,1.26,1.85,4.75,5.05
-96109,06,035,06035,2197,566,517618916,512467549,2197,566,517618916,512467549,34895,12710,12225052893,11761612172,100,100,100,100,6.3,4.45,4.23,4.36
-96110,06,035,06035,10,6,13175364,13150272,166,117,425594874,387611636,34895,12710,12225052893,11761612172,6.02,5.13,3.1,3.39,0.03,0.05,0.11,0.11
-96110,06,049,06049,156,111,412419510,374461364,166,117,425594874,387611636,9686,5192,10886751609,10146977156,93.98,94.87,96.9,96.61,1.61,2.14,3.79,3.69
-96111,06,057,06057,73,43,14184500,14182235,160,91,86988115,86872470,98764,52590,2522131930,2480616988,45.63,47.25,16.31,16.33,0.07,0.08,0.56,0.57
-96111,06,091,06091,87,48,72803615,72690235,160,91,86988115,86872470,3240,2328,2492112905,2468813797,54.38,52.75,83.69,83.67,2.69,2.06,2.92,2.94
-96112,06,049,06049,214,151,348101857,328270939,214,151,348101857,328270939,9686,5192,10886751609,10146977156,100,100,100,100,2.21,2.91,3.2,3.24
-96113,06,035,06035,1000,484,17724485,17651025,1000,484,17724485,17651025,34895,12710,12225052893,11761612172,100,100,100,100,2.87,3.81,0.14,0.15
-96114,06,035,06035,3220,1372,181475111,176017772,3220,1372,181475111,176017772,34895,12710,12225052893,11761612172,100,100,100,100,9.23,10.79,1.48,1.5
-96115,06,049,06049,145,113,360935784,257927144,145,113,360935784,257927144,9686,5192,10886751609,10146977156,100,100,100,100,1.5,2.18,3.32,2.54
-96116,06,049,06049,233,166,657514029,650132830,233,166,657514029,650132830,9686,5192,10886751609,10146977156,100,100,100,100,2.41,3.2,6.04,6.41
-96117,06,035,06035,405,189,850149410,846107047,405,189,850149410,846107047,34895,12710,12225052893,11761612172,100,100,100,100,1.16,1.49,6.95,7.19
-96118,06,063,06063,19,10,67524237,67137061,1627,812,526197486,525385634,20007,15566,6768746183,6612350713,1.17,1.23,12.83,12.78,0.09,0.06,1,1.02
-96118,06,091,06091,1608,802,458673249,458248573,1627,812,526197486,525385634,3240,2328,2492112905,2468813797,98.83,98.77,87.17,87.22,49.63,34.45,18.4,18.56
-96119,06,035,06035,90,70,425219887,419944622,90,70,425219887,419944622,34895,12710,12225052893,11761612172,100,100,100,100,0.26,0.55,3.48,3.57
-96120,06,003,06003,957,618,547039689,545586369,957,618,547039689,545586369,1175,1760,1924829158,1912271907,100,100,100,100,81.45,35.11,28.42,28.53
-96121,06,035,06035,368,184,90212620,86706921,368,184,90212620,86706921,34895,12710,12225052893,11761612172,100,100,100,100,1.05,1.45,0.74,0.74
-96122,06,063,06063,3883,2321,158856707,158826906,3883,2321,158856707,158826906,20007,15566,6768746183,6612350713,100,100,100,100,19.41,14.91,2.35,2.4
-96123,06,035,06035,48,40,536100944,529518177,48,40,536100944,529518177,34895,12710,12225052893,11761612172,100,100,100,100,0.14,0.31,4.39,4.5
-96124,06,091,06091,326,273,149472690,149405801,326,273,149472690,149405801,3240,2328,2492112905,2468813797,100,100,100,100,10.06,11.73,6,6.05
-96125,06,091,06091,258,443,257763025,256197728,258,443,257763025,256197728,3240,2328,2492112905,2468813797,100,100,100,100,7.96,19.03,10.34,10.38
-96126,06,091,06091,215,156,232338506,229753503,215,156,232338506,229753503,3240,2328,2492112905,2468813797,100,100,100,100,6.64,6.7,9.32,9.31
-96128,06,035,06035,752,320,81483487,81364942,752,320,81483487,81364942,34895,12710,12225052893,11761612172,100,100,100,100,2.16,2.52,0.67,0.69
-96129,06,063,06063,261,137,244568961,244527212,261,137,244568961,244527212,20007,15566,6768746183,6612350713,100,100,100,100,1.3,0.88,3.61,3.7
-96130,06,035,06035,23150,7286,1366605009,1242920631,23150,7286,1366605009,1242920631,34895,12710,12225052893,11761612172,100,100,100,100,66.34,57.32,11.18,10.57
-96132,06,035,06035,119,116,1011902270,1005942315,119,116,1011902270,1005942315,34895,12710,12225052893,11761612172,100,100,100,100,0.34,0.91,8.28,8.55
-96133,06,051,06051,110,64,36285667,32925952,110,64,36285667,32925952,14202,13912,8111522878,7896827391,100,100,100,100,0.77,0.46,0.45,0.42
-96134,06,049,06049,1083,555,578160771,577224955,2512,1189,904404978,859230351,9686,5192,10886751609,10146977156,43.11,46.68,63.93,67.18,11.18,10.69,5.31,5.69
-96134,06,093,06093,1429,634,326244207,282005396,2512,1189,904404978,859230351,44900,23910,16439541703,16259652221,56.89,53.32,36.07,32.82,3.18,2.65,1.98,1.73
-96135,06,063,06063,128,80,86139723,86139723,128,80,86139723,86139723,20007,15566,6768746183,6612350713,100,100,100,100,0.64,0.51,1.27,1.3
-96136,06,035,06035,104,65,385114422,383663420,104,65,385114422,383663420,34895,12710,12225052893,11761612172,100,100,100,100,0.3,0.51,3.15,3.26
-96137,06,035,06035,1818,1171,87240437,86853893,3297,3872,125766863,125380319,34895,12710,12225052893,11761612172,55.14,30.24,69.37,69.27,5.21,9.21,0.71,0.74
-96137,06,063,06063,1479,2701,38526426,38526426,3297,3872,125766863,125380319,20007,15566,6768746183,6612350713,44.86,69.76,30.63,30.73,7.39,17.35,0.57,0.58
-96140,06,061,06061,1170,1640,12684684,12168154,1170,1640,12684684,12168154,348432,152648,3891341378,3644136017,100,100,100,100,0.34,1.07,0.33,0.33
-96141,06,061,06061,744,1649,32209856,31061010,744,1649,32209856,31061010,348432,152648,3891341378,3644136017,100,100,100,100,0.21,1.08,0.83,0.85
-96142,06,017,06017,927,1972,57206660,52092569,1037,2105,57749557,52338483,181058,88159,4626639842,4423396606,89.39,93.68,99.06,99.53,0.51,2.24,1.24,1.18
-96142,06,061,06061,110,133,542897,245914,1037,2105,57749557,52338483,348432,152648,3891341378,3644136017,10.61,6.32,0.94,0.47,0.03,0.09,0.01,0.01
-96143,06,061,06061,4414,3110,14640776,14252104,4414,3110,14640776,14252104,348432,152648,3891341378,3644136017,100,100,100,100,1.27,2.04,0.38,0.39
-96145,06,061,06061,3161,4764,98772765,96405205,3161,4764,98772765,96405205,348432,152648,3891341378,3644136017,100,100,100,100,0.91,3.12,2.54,2.65
-96146,06,061,06061,1366,1726,54280542,54220865,1366,1726,54280542,54220865,348432,152648,3891341378,3644136017,100,100,100,100,0.39,1.13,1.39,1.49
-96148,06,061,06061,788,677,3793876,3521562,788,677,3793876,3521562,348432,152648,3891341378,3644136017,100,100,100,100,0.23,0.44,0.1,0.1
-96150,06,017,06017,29792,21720,331667606,320034300,29792,21720,331667606,320034300,181058,88159,4626639842,4423396606,100,100,100,100,16.45,24.64,7.17,7.24
-96155,06,017,06017,8,88,96017550,95941522,8,88,96017550,95941522,181058,88159,4626639842,4423396606,100,100,100,100,0,0.1,2.08,2.17
-96161,06,057,06057,16710,13383,209054282,205318295,18451,16285,474886468,470913694,98764,52590,2522131930,2480616988,90.56,82.18,44.02,43.6,16.92,25.45,8.29,8.28
-96161,06,061,06061,1741,2902,265832186,265595399,18451,16285,474886468,470913694,348432,152648,3891341378,3644136017,9.44,17.82,55.98,56.4,0.5,1.9,6.83,7.29
-96701,15,003,15003,40281,14008,50990256,48976810,40281,14008,50990256,48976810,953207,336899,5511678150,1555917151,100,100,100,100,4.23,4.16,0.93,3.15
-96703,15,007,15007,2368,899,52683368,48363962,2368,899,52683368,48363962,67091,29793,3279854727,1605678326,100,100,100,100,3.53,3.02,1.61,3.01
-96704,15,001,15001,6505,2938,795289390,738044815,6505,2938,795289390,738044815,185079,82324,13173021211,10433550395,100,100,100,100,3.51,3.57,6.04,7.07
-96705,15,007,15007,2319,784,8805001,7534555,2319,784,8805001,7534555,67091,29793,3279854727,1605678326,100,100,100,100,3.46,2.63,0.27,0.47
-96706,15,003,15003,62730,18319,49072335,44376884,62730,18319,49072335,44376884,953207,336899,5511678150,1555917151,100,100,100,100,6.58,5.44,0.89,2.85
-96707,15,003,15003,38817,12461,120218788,112357835,38817,12461,120218788,112357835,953207,336899,5511678150,1555917151,100,100,100,100,4.07,3.7,2.18,7.22
-96708,15,009,15009,10220,4394,273496736,252370834,10220,4394,273496736,252370834,154834,70379,6211643036,3008326306,100,100,100,100,6.6,6.24,4.4,8.39
-96710,15,001,15001,613,275,100904347,99135322,613,275,100904347,99135322,185079,82324,13173021211,10433550395,100,100,100,100,0.33,0.33,0.77,0.95
-96712,15,003,15003,7352,3028,65945366,53651079,7352,3028,65945366,53651079,953207,336899,5511678150,1555917151,100,100,100,100,0.77,0.9,1.2,3.45
-96713,15,009,15009,1990,964,283608745,270727956,1990,964,283608745,270727956,154834,70379,6211643036,3008326306,100,100,100,100,1.29,1.37,4.57,9
-96714,15,007,15007,1390,959,217620206,202854811,1390,959,217620206,202854811,67091,29793,3279854727,1605678326,100,100,100,100,2.07,3.22,6.64,12.63
-96716,15,007,15007,2823,982,282318666,278330697,2823,982,282318666,278330697,67091,29793,3279854727,1605678326,100,100,100,100,4.21,3.3,8.61,17.33
-96717,15,003,15003,5555,1826,70414149,64414694,5555,1826,70414149,64414694,953207,336899,5511678150,1555917151,100,100,100,100,0.58,0.54,1.28,4.14
-96719,15,001,15001,1692,655,53016891,52869737,1692,655,53016891,52869737,185079,82324,13173021211,10433550395,100,100,100,100,0.91,0.8,0.4,0.51
-96720,15,001,15001,46165,17770,793745606,775767929,46165,17770,793745606,775767929,185079,82324,13173021211,10433550395,100,100,100,100,24.94,21.59,6.03,7.44
-96722,15,007,15007,2484,2464,17141828,14329414,2484,2464,17141828,14329414,67091,29793,3279854727,1605678326,100,100,100,100,3.7,8.27,0.52,0.89
-96725,15,001,15001,3592,1469,203083385,203066001,3592,1469,203083385,203066001,185079,82324,13173021211,10433550395,100,100,100,100,1.94,1.78,1.54,1.95
-96726,15,001,15001,661,271,77674110,77674110,661,271,77674110,77674110,185079,82324,13173021211,10433550395,100,100,100,100,0.36,0.33,0.59,0.74
-96727,15,001,15001,4878,1857,363460048,325796343,4878,1857,363460048,325796343,185079,82324,13173021211,10433550395,100,100,100,100,2.64,2.26,2.76,3.12
-96728,15,001,15001,610,253,10368109,9506021,610,253,10368109,9506021,185079,82324,13173021211,10433550395,100,100,100,100,0.33,0.31,0.08,0.09
-96729,15,009,15009,1303,396,134436702,108269994,1303,396,134436702,108269994,154834,70379,6211643036,3008326306,100,100,100,100,0.84,0.56,2.16,3.6
-96730,15,003,15003,1541,617,4598865,2739038,1541,617,4598865,2739038,953207,336899,5511678150,1555917151,100,100,100,100,0.16,0.18,0.08,0.18
-96731,15,003,15003,3292,1297,65901080,50247074,3292,1297,65901080,50247074,953207,336899,5511678150,1555917151,100,100,100,100,0.35,0.38,1.2,3.23
-96732,15,009,15009,24816,7638,29330878,25194958,24816,7638,29330878,25194958,154834,70379,6211643036,3008326306,100,100,100,100,16.03,10.85,0.47,0.84
-96734,15,003,15003,50746,16548,64464854,56282056,50746,16548,64464854,56282056,953207,336899,5511678150,1555917151,100,100,100,100,5.32,4.91,1.17,3.62
-96737,15,001,15001,4552,2450,365658516,333249259,4552,2450,365658516,333249259,185079,82324,13173021211,10433550395,100,100,100,100,2.46,2.98,2.78,3.19
-96738,15,001,15001,6609,4421,233665490,232207177,6609,4421,233665490,232207177,185079,82324,13173021211,10433550395,100,100,100,100,3.57,5.37,1.77,2.23
-96740,15,001,15001,33321,16843,685263369,612314102,33321,16843,685263369,612314102,185079,82324,13173021211,10433550395,100,100,100,100,18,20.46,5.2,5.87
-96741,15,007,15007,5929,2370,71937236,71374541,5929,2370,71937236,71374541,67091,29793,3279854727,1605678326,100,100,100,100,8.84,7.95,2.19,4.45
-96742,15,005,15005,90,113,45183543,31057797,90,113,45183543,31057797,90,113,136827309,31057797,100,100,100,100,100,100,33.02,100
-96743,15,001,15001,12160,5668,1001432098,964807461,12160,5668,1001432098,964807461,185079,82324,13173021211,10433550395,100,100,100,100,6.57,6.88,7.6,9.25
-96744,15,003,15003,54247,17803,141021881,89310738,54247,17803,141021881,89310738,953207,336899,5511678150,1555917151,100,100,100,100,5.69,5.28,2.56,5.74
-96746,15,007,15007,18319,8134,140609128,132939278,18319,8134,140609128,132939278,67091,29793,3279854727,1605678326,100,100,100,100,27.3,27.3,4.29,8.28
-96747,15,007,15007,749,219,6755445,6701950,749,219,6755445,6701950,67091,29793,3279854727,1605678326,100,100,100,100,1.12,0.74,0.21,0.42
-96748,15,009,15009,4503,2159,373733902,318169468,4503,2159,373733902,318169468,154834,70379,6211643036,3008326306,100,100,100,100,2.91,3.07,6.02,10.58
-96749,15,001,15001,17047,6645,172718652,162781816,17047,6645,172718652,162781816,185079,82324,13173021211,10433550395,100,100,100,100,9.21,8.07,1.31,1.56
-96750,15,001,15001,3793,1466,489645911,483331961,3793,1466,489645911,483331961,185079,82324,13173021211,10433550395,100,100,100,100,2.05,1.78,3.72,4.63
-96751,15,007,15007,175,69,999966,999966,175,69,999966,999966,67091,29793,3279854727,1605678326,100,100,100,100,0.26,0.23,0.03,0.06
-96752,15,007,15007,3680,1382,12356559,10472052,3680,1382,12356559,10472052,67091,29793,3279854727,1605678326,100,100,100,100,5.49,4.64,0.38,0.65
-96753,15,009,15009,26892,18059,104349493,84273594,26892,18059,104349493,84273594,154834,70379,6211643036,3008326306,100,100,100,100,17.37,25.66,1.68,2.8
-96754,15,007,15007,4084,1706,117320269,107406055,4084,1706,117320269,107406055,67091,29793,3279854727,1605678326,100,100,100,100,6.09,5.73,3.58,6.69
-96755,15,001,15001,3575,1384,187841373,150179562,3575,1384,187841373,150179562,185079,82324,13173021211,10433550395,100,100,100,100,1.93,1.68,1.43,1.44
-96756,15,007,15007,5190,3247,73292134,63910818,5190,3247,73292134,63910818,67091,29793,3279854727,1605678326,100,100,100,100,7.74,10.9,2.23,3.98
-96757,15,009,15009,758,290,39827097,39793923,758,290,39827097,39793923,154834,70379,6211643036,3008326306,100,100,100,100,0.49,0.41,0.64,1.32
-96759,15,003,15003,457,119,15433685,15433685,457,119,15433685,15433685,953207,336899,5511678150,1555917151,100,100,100,100,0.05,0.04,0.28,0.99
-96760,15,001,15001,3001,1335,44922274,44922274,3001,1335,44922274,44922274,185079,82324,13173021211,10433550395,100,100,100,100,1.62,1.62,0.34,0.43
-96761,15,009,15009,22156,11928,236267557,200105867,22156,11928,236267557,200105867,154834,70379,6211643036,3008326306,100,100,100,100,14.31,16.95,3.8,6.65
-96762,15,003,15003,6419,1188,33387321,31223935,6419,1188,33387321,31223935,953207,336899,5511678150,1555917151,100,100,100,100,0.67,0.35,0.61,2.01
-96763,15,009,15009,3135,1545,424704962,365360876,3135,1545,424704962,365360876,154834,70379,6211643036,3008326306,100,100,100,100,2.02,2.2,6.84,12.14
-96764,15,001,15001,799,357,115405916,114749737,799,357,115405916,114749737,185079,82324,13173021211,10433550395,100,100,100,100,0.43,0.43,0.88,1.1
-96765,15,007,15007,553,210,2806078,2759852,553,210,2806078,2759852,67091,29793,3279854727,1605678326,100,100,100,100,0.82,0.7,0.09,0.17
-96766,15,007,15007,14683,5296,233249822,219894229,14683,5296,233249822,219894229,67091,29793,3279854727,1605678326,100,100,100,100,21.89,17.78,7.11,13.69
-96768,15,009,15009,17668,6729,110817389,110584449,17668,6729,110817389,110584449,154834,70379,6211643036,3008326306,100,100,100,100,11.41,9.56,1.78,3.68
-96769,15,007,15007,464,185,238466245,193525234,464,185,238466245,193525234,67091,29793,3279854727,1605678326,100,100,100,100,0.69,0.62,7.27,12.05
-96770,15,009,15009,691,757,210663062,177285629,691,757,210663062,177285629,154834,70379,6211643036,3008326306,100,100,100,100,0.45,1.08,3.39,5.89
-96771,15,001,15001,8339,3660,238267508,238259953,8339,3660,238267508,238259953,185079,82324,13173021211,10433550395,100,100,100,100,4.51,4.45,1.81,2.28
-96772,15,001,15001,2304,1089,857707506,835313554,2304,1089,857707506,835313554,185079,82324,13173021211,10433550395,100,100,100,100,1.24,1.32,6.51,8.01
-96773,15,001,15001,210,105,97313797,90153110,210,105,97313797,90153110,185079,82324,13173021211,10433550395,100,100,100,100,0.11,0.13,0.74,0.86
-96774,15,001,15001,342,124,100716300,100713102,342,124,100716300,100713102,185079,82324,13173021211,10433550395,100,100,100,100,0.18,0.15,0.76,0.97
-96776,15,001,15001,1490,607,190684462,174680995,1490,607,190684462,174680995,185079,82324,13173021211,10433550395,100,100,100,100,0.81,0.74,1.45,1.67
-96777,15,001,15001,1479,575,460830834,451246423,1479,575,460830834,451246423,185079,82324,13173021211,10433550395,100,100,100,100,0.8,0.7,3.5,4.32
-96778,15,001,15001,14409,6685,724391112,696973791,14409,6685,724391112,696973791,185079,82324,13173021211,10433550395,100,100,100,100,7.79,8.12,5.5,6.68
-96779,15,009,15009,3088,1292,29082756,20991444,3088,1292,29082756,20991444,154834,70379,6211643036,3008326306,100,100,100,100,1.99,1.84,0.47,0.7
-96780,15,001,15001,557,202,17293577,7722728,557,202,17293577,7722728,185079,82324,13173021211,10433550395,100,100,100,100,0.3,0.25,0.13,0.07
-96781,15,001,15001,1670,654,107433745,104379799,1670,654,107433745,104379799,185079,82324,13173021211,10433550395,100,100,100,100,0.9,0.79,0.82,1
-96782,15,003,15003,40496,12089,48540532,45534751,40496,12089,48540532,45534751,953207,336899,5511678150,1555917151,100,100,100,100,4.25,3.59,0.88,2.93
-96783,15,001,15001,2060,789,54371568,50575781,2060,789,54371568,50575781,185079,82324,13173021211,10433550395,100,100,100,100,1.11,0.96,0.41,0.48
-96785,15,001,15001,2646,1776,671699968,671699968,2646,1776,671699968,671699968,185079,82324,13173021211,10433550395,100,100,100,100,1.43,2.16,5.1,6.44
-96786,15,003,15003,40859,12842,213425770,212390268,40859,12842,213425770,212390268,953207,336899,5511678150,1555917151,100,100,100,100,4.29,3.81,3.87,13.65
-96789,15,003,15003,54129,18650,71055257,70652605,54129,18650,71055257,70652605,953207,336899,5511678150,1555917151,100,100,100,100,5.68,5.54,1.29,4.54
-96790,15,009,15009,8065,3664,595849396,588725397,8065,3664,595849396,588725397,154834,70379,6211643036,3008326306,100,100,100,100,5.21,5.21,9.59,19.57
-96791,15,003,15003,8014,2776,105158389,96742107,8014,2776,105158389,96742107,953207,336899,5511678150,1555917151,100,100,100,100,0.84,0.82,1.91,6.22
-96792,15,003,15003,48519,13376,193185088,157862934,48519,13376,193185088,157862934,953207,336899,5511678150,1555917151,100,100,100,100,5.09,3.97,3.51,10.15
-96793,15,009,15009,29549,10564,193502398,177902920,29549,10564,193502398,177902920,154834,70379,6211643036,3008326306,100,100,100,100,19.08,15.01,3.12,5.91
-96795,15,003,15003,10034,2494,34158062,28915581,10034,2494,34158062,28915581,953207,336899,5511678150,1555917151,100,100,100,100,1.05,0.74,0.62,1.86
-96796,15,007,15007,1881,887,131035717,119607241,1881,887,131035717,119607241,67091,29793,3279854727,1605678326,100,100,100,100,2.8,2.98,4,7.45
-96797,15,003,15003,72289,19986,93698642,89107548,72289,19986,93698642,89107548,953207,336899,5511678150,1555917151,100,100,100,100,7.58,5.93,1.7,5.73
-96813,15,003,15003,22881,10542,9556202,8912089,22881,10542,9556202,8912089,953207,336899,5511678150,1555917151,100,100,100,100,2.4,3.13,0.17,0.57
-96814,15,003,15003,18721,11187,4339044,3225550,18721,11187,4339044,3225550,953207,336899,5511678150,1555917151,100,100,100,100,1.96,3.32,0.08,0.21
-96815,15,003,15003,31470,22750,7262454,4963333,31470,22750,7262454,4963333,953207,336899,5511678150,1555917151,100,100,100,100,3.3,6.75,0.13,0.32
-96816,15,003,15003,49368,18914,27528207,25627960,49368,18914,27528207,25627960,953207,336899,5511678150,1555917151,100,100,100,100,5.18,5.61,0.5,1.65
-96817,15,003,15003,54628,20157,25261184,24046929,54628,20157,25261184,24046929,953207,336899,5511678150,1555917151,100,100,100,100,5.73,5.98,0.46,1.55
-96818,15,003,15003,50586,17313,39086732,29818831,50586,17313,39086732,29818831,953207,336899,5511678150,1555917151,100,100,100,100,5.31,5.14,0.71,1.92
-96819,15,003,15003,49492,12399,66169284,56684403,49492,12399,66169284,56684403,953207,336899,5511678150,1555917151,100,100,100,100,5.19,3.68,1.2,3.64
-96821,15,003,15003,19856,7295,31090406,29876667,19856,7295,31090406,29876667,953207,336899,5511678150,1555917151,100,100,100,100,2.08,2.17,0.56,1.92
-96822,15,003,15003,45007,19372,21239274,21239274,45007,19372,21239274,21239274,953207,336899,5511678150,1555917151,100,100,100,100,4.72,5.75,0.39,1.37
-96825,15,003,15003,30263,11592,34152698,29041291,30263,11592,34152698,29041291,953207,336899,5511678150,1555917151,100,100,100,100,3.17,3.44,0.62,1.87
-96826,15,003,15003,30842,15948,2811997,2761968,30842,15948,2811997,2761968,953207,336899,5511678150,1555917151,100,100,100,100,3.24,4.73,0.05,0.18
-96850,15,003,15003,0,0,55919,55919,0,0,55919,55919,953207,336899,5511678150,1555917151,0,0,100,100,0,0,0,0
-96853,15,003,15003,462,0,239916,239916,462,0,239916,239916,953207,336899,5511678150,1555917151,100,0,100,100,0.05,0,0,0.02
-96857,15,003,15003,2522,0,1204623,1204623,2522,0,1204623,1204623,953207,336899,5511678150,1555917151,100,0,100,100,0.26,0,0.02,0.08
-96859,15,003,15003,156,0,294633,294633,156,0,294633,294633,953207,336899,5511678150,1555917151,100,0,100,100,0.02,0,0.01,0.02
-96860,15,003,15003,1124,3,866337,866337,1124,3,866337,866337,953207,336899,5511678150,1555917151,100,100,100,100,0.12,0,0.02,0.06
-96863,15,003,15003,52,0,73422,73422,52,0,73422,73422,953207,336899,5511678150,1555917151,100,0,100,100,0.01,0,0,0
-97001,41,065,41065,229,76,770979271,770309402,229,76,770979271,770309402,25213,11487,6204053035,6168106312,100,100,100,100,0.91,0.66,12.43,12.49
-97002,41,005,41005,1334,516,33771413,32912466,5623,2230,112241858,110754683,375992,156945,4875939505,4844112024,23.72,23.14,30.09,29.72,0.35,0.33,0.69,0.68
-97002,41,047,41047,4289,1714,78470445,77842217,5623,2230,112241858,110754683,315335,120948,3088571862,3062209653,76.28,76.86,69.91,70.28,1.36,1.42,2.54,2.54
-97004,41,005,41005,4388,1689,113470761,113398767,4388,1689,113470761,113398767,375992,156945,4875939505,4844112024,100,100,100,100,1.17,1.08,2.33,2.34
-97005,41,067,41067,24906,10955,13753498,13753498,24906,10955,13753498,13753498,529710,212450,1881419546,1875746999,100,100,100,100,4.7,5.16,0.73,0.73
-97006,41,067,41067,63036,25287,30429045,30429045,63036,25287,30429045,30429045,529710,212450,1881419546,1875746999,100,100,100,100,11.9,11.9,1.62,1.62
-97007,41,067,41067,66954,25553,69343741,69343741,66954,25553,69343741,69343741,529710,212450,1881419546,1875746999,100,100,100,100,12.64,12.03,3.69,3.7
-97008,41,067,41067,28969,12508,12842365,12842365,28969,12508,12842365,12842365,529710,212450,1881419546,1875746999,100,100,100,100,5.47,5.89,0.68,0.68
-97009,41,005,41005,7661,2990,77323724,77079764,7762,3030,79513470,79232040,375992,156945,4875939505,4844112024,98.7,98.68,97.25,97.28,2.04,1.91,1.59,1.59
-97009,41,051,41051,101,40,2189746,2152276,7762,3030,79513470,79232040,735334,324832,1205907416,1117054236,1.3,1.32,2.75,2.72,0.01,0.01,0.18,0.19
-97011,41,005,41005,582,343,15032314,15032314,582,343,15032314,15032314,375992,156945,4875939505,4844112024,100,100,100,100,0.15,0.22,0.31,0.31
-97013,41,005,41005,22688,8516,148778961,147220363,22688,8516,148778961,147220363,375992,156945,4875939505,4844112024,100,100,100,100,6.03,5.43,3.05,3.04
-97014,41,027,41027,1154,506,8165330,8133074,1288,573,93503551,93144802,22346,9271,1380948268,1351841432,89.6,88.31,8.73,8.73,5.16,5.46,0.59,0.6
-97014,41,051,41051,134,67,85338221,85011728,1288,573,93503551,93144802,735334,324832,1205907416,1117054236,10.4,11.69,91.27,91.27,0.02,0.02,7.08,7.61
-97015,41,005,41005,19521,8124,22913427,22817427,19521,8124,22913427,22817427,375992,156945,4875939505,4844112024,100,100,100,100,5.19,5.18,0.47,0.47
-97016,41,007,41007,883,535,156544748,156159734,6083,2873,622035187,596655267,37039,21546,2808540424,2147227903,14.52,18.62,25.17,26.17,2.38,2.48,5.57,7.27
-97016,41,009,41009,5200,2338,465490439,440495533,6083,2873,622035187,596655267,49351,20698,1782766538,1702546794,85.48,81.38,74.83,73.83,10.54,11.3,26.11,25.87
-97017,41,005,41005,2922,1090,112509713,112431927,2922,1090,112509713,112431927,375992,156945,4875939505,4844112024,100,100,100,100,0.78,0.69,2.31,2.32
-97018,41,009,41009,1952,837,3468704,2086801,1952,837,3468704,2086801,49351,20698,1782766538,1702546794,100,100,100,100,3.96,4.04,0.19,0.12
-97019,41,005,41005,102,39,7464097,7354201,3161,1226,152682313,152043825,375992,156945,4875939505,4844112024,3.23,3.18,4.89,4.84,0.03,0.02,0.15,0.15
-97019,41,051,41051,3059,1187,145218216,144689624,3161,1226,152682313,152043825,735334,324832,1205907416,1117054236,96.77,96.82,95.11,95.16,0.42,0.37,12.04,12.95
-97020,41,047,41047,791,303,370438,370438,791,303,370438,370438,315335,120948,3088571862,3062209653,100,100,100,100,0.25,0.25,0.01,0.01
-97021,41,065,41065,1089,505,637773405,636730745,1089,505,637773405,636730745,25213,11487,6204053035,6168106312,100,100,100,100,4.32,4.4,10.28,10.32
-97022,41,005,41005,3722,1405,64907865,63943512,3722,1405,64907865,63943512,375992,156945,4875939505,4844112024,100,100,100,100,0.99,0.9,1.33,1.32
-97023,41,005,41005,9832,3933,332565949,330220870,9832,3933,332565949,330220870,375992,156945,4875939505,4844112024,100,100,100,100,2.61,2.51,6.82,6.82
-97024,41,051,41051,10242,4377,10801627,9067433,10242,4377,10801627,9067433,735334,324832,1205907416,1117054236,100,100,100,100,1.39,1.35,0.9,0.81
-97026,41,047,41047,3815,1094,94288017,92514022,3815,1094,94288017,92514022,315335,120948,3088571862,3062209653,100,100,100,100,1.21,0.9,3.05,3.02
-97027,41,005,41005,12131,5020,6744712,6560842,12131,5020,6744712,6560842,375992,156945,4875939505,4844112024,100,100,100,100,3.23,3.2,0.14,0.14
-97028,41,005,41005,217,713,98716904,98452861,217,713,98716904,98452861,375992,156945,4875939505,4844112024,100,100,100,100,0.06,0.45,2.02,2.03
-97029,41,055,41055,285,163,630619577,628744600,285,163,630619577,628744600,1765,918,2152761340,2133357976,100,100,100,100,16.15,17.76,29.29,29.47
-97030,41,051,41051,36693,15334,19767341,19544450,36693,15334,19767341,19544450,735334,324832,1205907416,1117054236,100,100,100,100,4.99,4.72,1.64,1.75
-97031,41,027,41027,18375,7676,311844883,300824949,18375,7676,311844883,300824949,22346,9271,1380948268,1351841432,100,100,100,100,82.23,82.8,22.58,22.25
-97032,41,005,41005,552,197,16966495,16966495,5043,1698,47478621,47422138,375992,156945,4875939505,4844112024,10.95,11.6,35.74,35.78,0.15,0.13,0.35,0.35
-97032,41,047,41047,4491,1501,30512126,30455643,5043,1698,47478621,47422138,315335,120948,3088571862,3062209653,89.05,88.4,64.26,64.22,1.42,1.24,0.99,0.99
-97033,41,055,41055,60,40,467732403,464093465,60,40,467732403,464093465,1765,918,2152761340,2133357976,100,100,100,100,3.4,4.36,21.73,21.75
-97034,41,005,41005,18746,8354,20512120,18525209,18905,8422,21111665,19030906,375992,156945,4875939505,4844112024,99.16,99.19,97.16,97.34,4.99,5.32,0.42,0.38
-97034,41,051,41051,159,68,599545,505697,18905,8422,21111665,19030906,735334,324832,1205907416,1117054236,0.84,0.81,2.84,2.66,0.02,0.02,0.05,0.05
-97035,41,005,41005,20565,9489,14019226,13752503,23912,11320,15888984,15622261,375992,156945,4875939505,4844112024,86,83.83,88.23,88.03,5.47,6.05,0.29,0.28
-97035,41,051,41051,3000,1662,1564897,1564897,23912,11320,15888984,15622261,735334,324832,1205907416,1117054236,12.55,14.68,9.85,10.02,0.41,0.51,0.13,0.14
-97035,41,067,41067,347,169,304861,304861,23912,11320,15888984,15622261,529710,212450,1881419546,1875746999,1.45,1.49,1.92,1.95,0.07,0.08,0.02,0.02
-97037,41,065,41065,849,574,1415641885,1411048885,849,574,1415641885,1411048885,25213,11487,6204053035,6168106312,100,100,100,100,3.37,5,22.82,22.88
-97038,41,005,41005,15113,5680,324595845,323822191,15113,5680,324595845,323822191,375992,156945,4875939505,4844112024,100,100,100,100,4.02,3.62,6.66,6.68
-97039,41,055,41055,472,238,371539426,370658047,472,238,371539426,370658047,1765,918,2152761340,2133357976,100,100,100,100,26.74,25.93,17.26,17.37
-97040,41,065,41065,1244,649,139776980,135781351,1244,649,139776980,135781351,25213,11487,6204053035,6168106312,100,100,100,100,4.93,5.65,2.25,2.2
-97041,41,027,41027,2817,1089,299260745,299173626,2817,1089,299260745,299173626,22346,9271,1380948268,1351841432,100,100,100,100,12.61,11.75,21.67,22.13
-97042,41,005,41005,2923,1149,58168818,58083275,2923,1149,58168818,58083275,375992,156945,4875939505,4844112024,100,100,100,100,0.78,0.73,1.19,1.2
-97045,41,005,41005,51359,20525,226759956,223636091,51359,20525,226759956,223636091,375992,156945,4875939505,4844112024,100,100,100,100,13.66,13.08,4.65,4.62
-97048,41,009,41009,6691,2902,235803605,216238764,6691,2902,235803605,216238764,49351,20698,1782766538,1702546794,100,100,100,100,13.56,14.02,13.23,12.7
-97049,41,005,41005,1899,1853,400383013,398264901,1899,1853,400383013,398264901,375992,156945,4875939505,4844112024,100,100,100,100,0.51,1.18,8.21,8.22
-97050,41,055,41055,272,150,30055449,19739692,272,150,30055449,19739692,1765,918,2152761340,2133357976,100,100,100,100,15.41,16.34,1.4,0.93
-97051,41,009,41009,15957,6352,127652485,124921285,15957,6352,127652485,124921285,49351,20698,1782766538,1702546794,100,100,100,100,32.33,30.69,7.16,7.34
-97053,41,009,41009,3247,1333,36719565,35787156,3247,1333,36719565,35787156,49351,20698,1782766538,1702546794,100,100,100,100,6.58,6.44,2.06,2.1
-97054,41,009,41009,1579,657,130451145,124405195,1579,657,130451145,124405195,49351,20698,1782766538,1702546794,100,100,100,100,3.2,3.17,7.32,7.31
-97055,41,005,41005,17350,7000,308299350,305202087,17350,7000,308299350,305202087,375992,156945,4875939505,4844112024,100,100,100,100,4.61,4.46,6.32,6.3
-97056,41,009,41009,11219,4698,213239721,208884857,11497,4845,257747875,253285282,49351,20698,1782766538,1702546794,97.58,96.97,82.73,82.47,22.73,22.7,11.96,12.27
-97056,41,051,41051,216,118,13012910,12905181,11497,4845,257747875,253285282,735334,324832,1205907416,1117054236,1.88,2.44,5.05,5.1,0.03,0.04,1.08,1.16
-97056,41,067,41067,62,29,31495244,31495244,11497,4845,257747875,253285282,529710,212450,1881419546,1875746999,0.54,0.6,12.22,12.43,0.01,0.01,1.67,1.68
-97057,41,065,41065,36,24,1740878,1740878,36,24,1740878,1740878,25213,11487,6204053035,6168106312,100,100,100,100,0.14,0.21,0.03,0.03
-97058,41,065,41065,19838,8508,915186115,894209195,19838,8508,915186115,894209195,25213,11487,6204053035,6168106312,100,100,100,100,78.68,74.07,14.75,14.5
-97060,41,051,41051,21226,7733,55273372,45615227,21226,7733,55273372,45615227,735334,324832,1205907416,1117054236,100,100,100,100,2.89,2.38,4.58,4.08
-97062,41,005,41005,3829,1531,9973803,9915782,27434,11033,36029457,35971436,375992,156945,4875939505,4844112024,13.96,13.88,27.68,27.57,1.02,0.98,0.2,0.2
-97062,41,067,41067,23605,9502,26055654,26055654,27434,11033,36029457,35971436,529710,212450,1881419546,1875746999,86.04,86.12,72.32,72.43,4.46,4.47,1.38,1.39
-97063,41,065,41065,1074,902,339012552,337640411,1074,902,339012552,337640411,25213,11487,6204053035,6168106312,100,100,100,100,4.26,7.85,5.46,5.47
-97064,41,009,41009,3442,1546,229492201,229361701,3464,1553,253598006,253467506,49351,20698,1782766538,1702546794,99.36,99.55,90.49,90.49,6.97,7.47,12.87,13.47
-97064,41,067,41067,22,7,24105805,24105805,3464,1553,253598006,253467506,529710,212450,1881419546,1875746999,0.64,0.45,9.51,9.51,0,0,1.28,1.29
-97065,41,055,41055,676,327,652814485,650122172,676,327,652814485,650122172,1765,918,2152761340,2133357976,100,100,100,100,38.3,35.62,30.32,30.47
-97067,41,005,41005,2138,1480,113146972,113145458,2138,1480,113146972,113145458,375992,156945,4875939505,4844112024,100,100,100,100,0.57,0.94,2.32,2.34
-97068,41,005,41005,28305,11324,61556690,58185025,28305,11324,61556690,58185025,375992,156945,4875939505,4844112024,100,100,100,100,7.53,7.22,1.26,1.2
-97070,41,005,41005,18670,8674,48002080,46350246,20957,9078,51067887,49416053,375992,156945,4875939505,4844112024,89.09,95.55,94,93.8,4.97,5.53,0.98,0.96
-97070,41,067,41067,2287,404,3065807,3065807,20957,9078,51067887,49416053,529710,212450,1881419546,1875746999,10.91,4.45,6,6.2,0.43,0.19,0.16,0.16
-97071,41,005,41005,1026,340,35134410,34967033,28803,9746,136405707,136001979,375992,156945,4875939505,4844112024,3.56,3.49,25.76,25.71,0.27,0.22,0.72,0.72
-97071,41,047,41047,27777,9406,101271297,101034946,28803,9746,136405707,136001979,315335,120948,3088571862,3062209653,96.44,96.51,74.24,74.29,8.81,7.78,3.28,3.3
-97080,41,005,41005,13,7,25447,25447,40888,15415,56282083,55840534,375992,156945,4875939505,4844112024,0.03,0.05,0.05,0.05,0,0,0,0
-97080,41,051,41051,40875,15408,56256636,55815087,40888,15415,56282083,55840534,735334,324832,1205907416,1117054236,99.97,99.95,99.95,99.95,5.56,4.74,4.67,5
-97086,41,005,41005,26010,9984,27332885,27332885,26010,9984,27332885,27332885,375992,156945,4875939505,4844112024,100,100,100,100,6.92,6.36,0.56,0.56
-97089,41,005,41005,11986,4362,56901561,56370807,11986,4362,56901561,56370807,375992,156945,4875939505,4844112024,100,100,100,100,3.19,2.78,1.17,1.16
-97101,41,053,41053,319,129,46648941,46547818,3794,1416,143772592,143576931,75403,30302,1926728377,1918629058,8.41,9.11,32.45,32.42,0.42,0.43,2.42,2.43
-97101,41,071,41071,3475,1287,97123651,97029113,3794,1416,143772592,143576931,99193,37110,1860498733,1854068926,91.59,90.89,67.55,67.58,3.5,3.47,5.22,5.23
-97102,41,007,41007,187,395,15584730,10476655,205,429,22719862,16097941,37039,21546,2808540424,2147227903,91.22,92.07,68.6,65.08,0.5,1.83,0.55,0.49
-97102,41,057,41057,18,34,7135132,5621286,205,429,22719862,16097941,25250,18359,3451841453,2855668955,8.78,7.93,31.4,34.92,0.07,0.19,0.21,0.2
-97103,41,007,41007,16859,8021,406926246,385518656,16859,8021,406926246,385518656,37039,21546,2808540424,2147227903,100,100,100,100,45.52,37.23,14.49,17.95
-97106,41,067,41067,4550,1626,121035309,120968208,4550,1626,121035309,120968208,529710,212450,1881419546,1875746999,100,100,100,100,0.86,0.77,6.43,6.45
-97107,41,057,41057,1530,766,43665872,36293770,1530,766,43665872,36293770,25250,18359,3451841453,2855668955,100,100,100,100,6.06,4.17,1.27,1.27
-97108,41,057,41057,490,256,197664162,197664162,490,256,197664162,197664162,25250,18359,3451841453,2855668955,100,100,100,100,1.94,1.39,5.73,6.92
-97109,41,067,41067,577,215,84617192,84617192,577,215,84617192,84617192,529710,212450,1881419546,1875746999,100,100,100,100,0.11,0.1,4.5,4.51
-97110,41,007,41007,1284,1250,8576262,8576262,1284,1250,8576262,8576262,37039,21546,2808540424,2147227903,100,100,100,100,3.47,5.8,0.31,0.4
-97111,41,071,41071,3156,1227,100553889,100468139,3156,1227,100553889,100468139,99193,37110,1860498733,1854068926,100,100,100,100,3.18,3.31,5.4,5.42
-97112,41,057,41057,1901,1244,279434690,271464543,1901,1244,279434690,271464543,25250,18359,3451841453,2855668955,100,100,100,100,7.53,6.78,8.1,9.51
-97113,41,067,41067,14155,4404,92317466,92025411,14155,4404,92317466,92025411,529710,212450,1881419546,1875746999,100,100,100,100,2.67,2.07,4.91,4.91
-97114,41,071,41071,4762,1733,151275465,148385879,4762,1733,151275465,148385879,99193,37110,1860498733,1854068926,100,100,100,100,4.8,4.67,8.13,8
-97115,41,071,41071,4139,1574,31268798,30768116,4139,1574,31268798,30768116,99193,37110,1860498733,1854068926,100,100,100,100,4.17,4.24,1.68,1.66
-97116,41,067,41067,24104,9079,187524836,187049817,24104,9079,187524836,187049817,529710,212450,1881419546,1875746999,100,100,100,100,4.55,4.27,9.97,9.97
-97117,41,067,41067,679,271,91077755,91061074,679,271,91077755,91061074,529710,212450,1881419546,1875746999,100,100,100,100,0.13,0.13,4.84,4.85
-97118,41,057,41057,775,523,3642759,2642657,775,523,3642759,2642657,25250,18359,3451841453,2855668955,100,100,100,100,3.07,2.85,0.11,0.09
-97119,41,067,41067,3510,1347,174152315,170350513,4420,1697,228057374,224255572,529710,212450,1881419546,1875746999,79.41,79.38,76.36,75.96,0.66,0.63,9.26,9.08
-97119,41,071,41071,910,350,53905059,53905059,4420,1697,228057374,224255572,99193,37110,1860498733,1854068926,20.59,20.62,23.64,24.04,0.92,0.94,2.9,2.91
-97121,41,007,41007,1383,630,13694791,10733640,1383,630,13694791,10733640,37039,21546,2808540424,2147227903,100,100,100,100,3.73,2.92,0.49,0.5
-97122,41,057,41057,460,241,76549315,76538236,460,241,76549315,76538236,25250,18359,3451841453,2855668955,100,100,100,100,1.82,1.31,2.22,2.68
-97123,41,067,41067,43775,15092,122328655,122197219,44537,15390,139188158,139056722,529710,212450,1881419546,1875746999,98.29,98.06,87.89,87.88,8.26,7.1,6.5,6.51
-97123,41,071,41071,762,298,16859503,16859503,44537,15390,139188158,139056722,99193,37110,1860498733,1854068926,1.71,1.94,12.11,12.12,0.77,0.8,0.91,0.91
-97124,41,067,41067,48349,19977,111605506,111580289,48349,19977,111605506,111580289,529710,212450,1881419546,1875746999,100,100,100,100,9.13,9.4,5.93,5.95
-97125,41,067,41067,157,69,13548304,13530005,157,69,13548304,13530005,529710,212450,1881419546,1875746999,100,100,100,100,0.03,0.03,0.72,0.72
-97127,41,071,41071,3740,1314,2288586,2288586,3740,1314,2288586,2288586,99193,37110,1860498733,1854068926,100,100,100,100,3.77,3.54,0.12,0.12
-97128,41,071,41071,36141,13987,276849589,276790005,36141,13987,276849589,276790005,99193,37110,1860498733,1854068926,100,100,100,100,36.44,37.69,14.88,14.93
-97130,41,057,41057,710,1412,16070586,8110803,710,1412,16070586,8110803,25250,18359,3451841453,2855668955,100,100,100,100,2.81,7.69,0.47,0.28
-97131,41,007,41007,76,63,49605634,49571813,2498,1886,283105823,279184537,37039,21546,2808540424,2147227903,3.04,3.34,17.52,17.76,0.21,0.29,1.77,2.31
-97131,41,057,41057,2422,1823,233500189,229612724,2498,1886,283105823,279184537,25250,18359,3451841453,2855668955,96.96,96.66,82.48,82.24,9.59,9.93,6.76,8.04
-97132,41,005,41005,84,35,2002976,2002976,28278,10695,162893436,161655975,375992,156945,4875939505,4844112024,0.3,0.33,1.23,1.24,0.02,0.02,0.04,0.04
-97132,41,067,41067,306,125,11040144,11040144,28278,10695,162893436,161655975,529710,212450,1881419546,1875746999,1.08,1.17,6.78,6.83,0.06,0.06,0.59,0.59
-97132,41,071,41071,27888,10535,149850316,148612855,28278,10695,162893436,161655975,99193,37110,1860498733,1854068926,98.62,98.5,91.99,91.93,28.11,28.39,8.05,8.02
-97133,41,051,41051,51,23,6325881,6325431,4000,1658,181597243,181551172,735334,324832,1205907416,1117054236,1.28,1.39,3.48,3.48,0.01,0.01,0.52,0.57
-97133,41,067,41067,3949,1635,175271362,175225741,4000,1658,181597243,181551172,529710,212450,1881419546,1875746999,98.73,98.61,96.52,96.52,0.75,0.77,9.32,9.34
-97134,41,057,41057,175,399,4926316,1230981,175,399,4926316,1230981,25250,18359,3451841453,2855668955,100,100,100,100,0.69,2.17,0.14,0.04
-97135,41,057,41057,861,1219,22191485,11110484,861,1219,22191485,11110484,25250,18359,3451841453,2855668955,100,100,100,100,3.41,6.64,0.64,0.39
-97136,41,057,41057,1761,2720,62558364,52966823,1761,2720,62558364,52966823,25250,18359,3451841453,2855668955,100,100,100,100,6.97,14.82,1.81,1.85
-97137,41,047,41047,1307,465,111290453,108164372,1307,465,111290453,108164372,315335,120948,3088571862,3062209653,100,100,100,100,0.41,0.38,3.6,3.53
-97138,41,007,41007,10021,7236,333864966,330302808,10021,7236,333864966,330302808,37039,21546,2808540424,2147227903,100,100,100,100,27.06,33.58,11.89,15.38
-97140,41,005,41005,1501,592,24533527,24515646,23474,8598,113303974,113286093,375992,156945,4875939505,4844112024,6.39,6.89,21.65,21.64,0.4,0.38,0.5,0.51
-97140,41,067,41067,21687,7904,86379946,86379946,23474,8598,113303974,113286093,529710,212450,1881419546,1875746999,92.39,91.93,76.24,76.25,4.09,3.72,4.59,4.61
-97140,41,071,41071,286,102,2390501,2390501,23474,8598,113303974,113286093,99193,37110,1860498733,1854068926,1.22,1.19,2.11,2.11,0.29,0.27,0.13,0.13
-97141,41,057,41057,13140,6495,621189490,575779203,13140,6495,621189490,575779203,25250,18359,3451841453,2855668955,100,100,100,100,52.04,35.38,18,20.16
-97144,41,067,41067,195,83,36971896,36971896,195,83,36971896,36971896,529710,212450,1881419546,1875746999,100,100,100,100,0.04,0.04,1.97,1.97
-97145,41,007,41007,441,594,9220211,9220211,441,594,9220211,9220211,37039,21546,2808540424,2147227903,100,100,100,100,1.19,2.76,0.33,0.43
-97146,41,007,41007,5905,2803,108312498,55088190,5905,2803,108312498,55088190,37039,21546,2808540424,2147227903,100,100,100,100,15.94,13.01,3.86,2.57
-97147,41,057,41057,408,283,2144588,1881527,408,283,2144588,1881527,25250,18359,3451841453,2855668955,100,100,100,100,1.62,1.54,0.06,0.07
-97148,41,071,41071,3406,1327,195569222,195370917,3406,1327,195569222,195370917,99193,37110,1860498733,1854068926,100,100,100,100,3.43,3.58,10.51,10.54
-97149,41,057,41057,574,881,76244966,66613653,574,881,76244966,66613653,25250,18359,3451841453,2855668955,100,100,100,100,2.27,4.8,2.21,2.33
-97201,41,051,41051,15484,9393,5632835,5265254,15484,9393,5632835,5265254,735334,324832,1205907416,1117054236,100,100,100,100,2.11,2.89,0.47,0.47
-97202,41,005,41005,174,71,197998,197305,38762,18424,19037155,16386465,375992,156945,4875939505,4844112024,0.45,0.39,1.04,1.2,0.05,0.05,0,0
-97202,41,051,41051,38588,18353,18839157,16189160,38762,18424,19037155,16386465,735334,324832,1205907416,1117054236,99.55,99.61,98.96,98.8,5.25,5.65,1.56,1.45
-97203,41,051,41051,31042,12153,27205857,23113522,31042,12153,27205857,23113522,735334,324832,1205907416,1117054236,100,100,100,100,4.22,3.74,2.26,2.07
-97204,41,051,41051,1036,448,861233,643571,1036,448,861233,643571,735334,324832,1205907416,1117054236,100,100,100,100,0.14,0.14,0.07,0.06
-97205,41,051,41051,7688,5464,2536167,2528640,7688,5464,2536167,2528640,735334,324832,1205907416,1117054236,100,100,100,100,1.05,1.68,0.21,0.23
-97206,41,005,41005,1688,661,1386232,1384947,47596,20385,16930635,16907018,375992,156945,4875939505,4844112024,3.55,3.24,8.19,8.19,0.45,0.42,0.03,0.03
-97206,41,051,41051,45908,19724,15544403,15522071,47596,20385,16930635,16907018,735334,324832,1205907416,1117054236,96.45,96.76,91.81,91.81,6.24,6.07,1.29,1.39
-97208,41,051,41051,0,0,62888,62888,0,0,62888,62888,735334,324832,1205907416,1117054236,0,0,100,100,0,0,0.01,0.01
-97209,41,051,41051,14950,11517,3192270,2708461,14950,11517,3192270,2708461,735334,324832,1205907416,1117054236,100,100,100,100,2.03,3.55,0.26,0.24
-97210,41,051,41051,10592,6715,21325522,19414717,10887,6948,21438175,19527370,735334,324832,1205907416,1117054236,97.29,96.65,99.47,99.42,1.44,2.07,1.77,1.74
-97210,41,067,41067,295,233,112653,112653,10887,6948,21438175,19527370,529710,212450,1881419546,1875746999,2.71,3.35,0.53,0.58,0.06,0.11,0.01,0.01
-97211,41,051,41051,31254,13035,23991906,18802223,31254,13035,23991906,18802223,735334,324832,1205907416,1117054236,100,100,100,100,4.25,4.01,1.99,1.68
-97212,41,051,41051,24126,10724,7069219,7069219,24126,10724,7069219,7069219,735334,324832,1205907416,1117054236,100,100,100,100,3.28,3.3,0.59,0.63
-97213,41,051,41051,29219,13773,10479539,10475765,29219,13773,10479539,10475765,735334,324832,1205907416,1117054236,100,100,100,100,3.97,4.24,0.87,0.94
-97214,41,051,41051,23813,12548,7397106,7269426,23813,12548,7397106,7269426,735334,324832,1205907416,1117054236,100,100,100,100,3.24,3.86,0.61,0.65
-97215,41,051,41051,16375,7559,5961699,5884275,16375,7559,5961699,5884275,735334,324832,1205907416,1117054236,100,100,100,100,2.23,2.33,0.49,0.53
-97216,41,051,41051,15594,6583,6569247,6569247,15594,6583,6569247,6569247,735334,324832,1205907416,1117054236,100,100,100,100,2.12,2.03,0.54,0.59
-97217,41,051,41051,31438,14682,47192085,33471270,31438,14682,47192085,33471270,735334,324832,1205907416,1117054236,100,100,100,100,4.28,4.52,3.91,3
-97218,41,051,41051,14561,5797,18327853,18096964,14561,5797,18327853,18096964,735334,324832,1205907416,1117054236,100,100,100,100,1.98,1.78,1.52,1.62
-97219,41,005,41005,1018,378,1085572,1085572,38709,17086,31122897,30448880,375992,156945,4875939505,4844112024,2.63,2.21,3.49,3.57,0.27,0.24,0.02,0.02
-97219,41,051,41051,37691,16708,30037325,29363308,38709,17086,31122897,30448880,735334,324832,1205907416,1117054236,97.37,97.79,96.51,96.43,5.13,5.14,2.49,2.63
-97220,41,051,41051,28495,11800,18748003,18611500,28495,11800,18748003,18611500,735334,324832,1205907416,1117054236,100,100,100,100,3.88,3.63,1.55,1.67
-97221,41,051,41051,11618,5209,11099536,11089241,11630,5213,11106662,11096367,735334,324832,1205907416,1117054236,99.9,99.92,99.94,99.94,1.58,1.6,0.92,0.99
-97221,41,067,41067,12,4,7126,7126,11630,5213,11106662,11096367,529710,212450,1881419546,1875746999,0.1,0.08,0.06,0.06,0,0,0,0
-97222,41,005,41005,34821,15840,22385411,21692333,34979,15908,22613061,21915588,375992,156945,4875939505,4844112024,99.55,99.57,98.99,98.98,9.26,10.09,0.46,0.45
-97222,41,051,41051,158,68,227650,223255,34979,15908,22613061,21915588,735334,324832,1205907416,1117054236,0.45,0.43,1.01,1.02,0.02,0.02,0.02,0.02
-97223,41,067,41067,46699,19380,29921178,29903830,46699,19380,29921178,29903830,529710,212450,1881419546,1875746999,100,100,100,100,8.82,9.12,1.59,1.59
-97224,41,067,41067,31122,14188,22988207,22988207,31122,14188,22988207,22988207,529710,212450,1881419546,1875746999,100,100,100,100,5.88,6.68,1.22,1.23
-97225,41,051,41051,105,38,124825,124825,24176,11989,17112331,17094006,735334,324832,1205907416,1117054236,0.43,0.32,0.73,0.73,0.01,0.01,0.01,0.01
-97225,41,067,41067,24071,11951,16987506,16969181,24176,11989,17112331,17094006,529710,212450,1881419546,1875746999,99.57,99.68,99.27,99.27,4.54,5.63,0.9,0.9
-97227,41,051,41051,3847,1815,4144184,3472202,3847,1815,4144184,3472202,735334,324832,1205907416,1117054236,100,100,100,100,0.52,0.56,0.34,0.31
-97229,41,051,41051,7010,2833,21809154,21795631,58217,23226,53266471,53252948,735334,324832,1205907416,1117054236,12.04,12.2,40.94,40.93,0.95,0.87,1.81,1.95
-97229,41,067,41067,51207,20393,31457317,31457317,58217,23226,53266471,53252948,529710,212450,1881419546,1875746999,87.96,87.8,59.06,59.07,9.67,9.6,1.67,1.68
-97230,41,051,41051,39752,15826,49322823,35935627,39752,15826,49322823,35935627,735334,324832,1205907416,1117054236,100,100,100,100,5.41,4.87,4.09,3.22
-97231,41,009,41009,64,35,47876532,27976689,4280,1963,200706665,166617575,49351,20698,1782766538,1702546794,1.5,1.78,23.85,16.79,0.13,0.17,2.69,1.64
-97231,41,051,41051,4093,1868,148807707,134618460,4280,1963,200706665,166617575,735334,324832,1205907416,1117054236,95.63,95.16,74.14,80.79,0.56,0.58,12.34,12.05
-97231,41,067,41067,123,60,4022426,4022426,4280,1963,200706665,166617575,529710,212450,1881419546,1875746999,2.87,3.06,2,2.41,0.02,0.03,0.21,0.21
-97232,41,051,41051,11472,6569,4935146,4861503,11472,6569,4935146,4861503,735334,324832,1205907416,1117054236,100,100,100,100,1.56,2.02,0.41,0.44
-97233,41,051,41051,39367,13877,11751035,11705514,39367,13877,11751035,11705514,735334,324832,1205907416,1117054236,100,100,100,100,5.35,4.27,0.97,1.05
-97236,41,051,41051,36852,13145,20057456,20007686,36852,13145,20057456,20007686,735334,324832,1205907416,1117054236,100,100,100,100,5.01,4.05,1.66,1.79
-97239,41,051,41051,14150,8046,9719774,9198334,14150,8046,9719774,9198334,735334,324832,1205907416,1117054236,100,100,100,100,1.92,2.48,0.81,0.82
-97266,41,051,41051,33300,12545,15709820,15655677,33300,12545,15709820,15655677,735334,324832,1205907416,1117054236,100,100,100,100,4.53,3.86,1.3,1.4
-97267,41,005,41005,30839,12918,19506804,18921221,30839,12918,19506804,18921221,375992,156945,4875939505,4844112024,100,100,100,100,8.2,8.23,0.4,0.39
-97301,41,047,41047,53518,19686,30366213,29992208,53518,19686,30366213,29992208,315335,120948,3088571862,3062209653,100,100,100,100,16.97,16.28,0.98,0.98
-97302,41,047,41047,37131,16749,62877211,61042906,37131,16749,62877211,61042906,315335,120948,3088571862,3062209653,100,100,100,100,11.78,13.85,2.04,1.99
-97303,41,047,41047,38663,15221,66285036,64592761,38663,15221,66285036,64592761,315335,120948,3088571862,3062209653,100,100,100,100,12.26,12.58,2.15,2.11
-97304,41,053,41053,28202,11666,132168185,129883862,28454,11777,147184995,144455524,75403,30302,1926728377,1918629058,99.11,99.06,89.8,89.91,37.4,38.5,6.86,6.77
-97304,41,071,41071,252,111,15016810,14571662,28454,11777,147184995,144455524,99193,37110,1860498733,1854068926,0.89,0.94,10.2,10.09,0.25,0.3,0.81,0.79
-97305,41,047,41047,40176,14570,123507910,123507910,40176,14570,123507910,123507910,315335,120948,3088571862,3062209653,100,100,100,100,12.74,12.05,4,4.03
-97306,41,047,41047,27360,11448,87489165,86266502,27360,11448,87489165,86266502,315335,120948,3088571862,3062209653,100,100,100,100,8.68,9.47,2.83,2.82
-97317,41,047,41047,24355,8142,142362501,142362501,24355,8142,142362501,142362501,315335,120948,3088571862,3062209653,100,100,100,100,7.72,6.73,4.61,4.65
-97321,41,003,41003,8553,3343,57449032,56072443,24928,10382,179807416,175265684,85579,36245,1757598196,1750680238,34.31,32.2,31.95,31.99,9.99,9.22,3.27,3.2
-97321,41,043,41043,16375,7039,122358384,119193241,24928,10382,179807416,175265684,116672,48821,5980180944,5931407318,65.69,67.8,68.05,68.01,14.04,14.42,2.05,2.01
-97322,41,043,41043,34039,14167,163394462,161437631,34039,14167,163394462,161437631,116672,48821,5980180944,5931407318,100,100,100,100,29.17,29.02,2.73,2.72
-97324,41,003,41003,993,513,394382928,393551403,1126,609,456689959,455844985,85579,36245,1757598196,1750680238,88.19,84.24,86.36,86.33,1.16,1.42,22.44,22.48
-97324,41,039,41039,22,8,13065378,13065378,1126,609,456689959,455844985,351715,156112,12229575559,11792524334,1.95,1.31,2.86,2.87,0.01,0.01,0.11,0.11
-97324,41,041,41041,111,88,49241653,49228204,1126,609,456689959,455844985,46034,30610,3091884801,2537580591,9.86,14.45,10.78,10.8,0.24,0.29,1.59,1.94
-97325,41,047,41047,6614,2397,80822212,80396401,6614,2397,80822212,80396401,315335,120948,3088571862,3062209653,100,100,100,100,2.1,1.98,2.62,2.63
-97326,41,003,41003,574,254,178858388,178698832,961,440,379766335,379589548,85579,36245,1757598196,1750680238,59.73,57.73,47.1,47.08,0.67,0.7,10.18,10.21
-97326,41,041,41041,387,186,200907947,200890716,961,440,379766335,379589548,46034,30610,3091884801,2537580591,40.27,42.27,52.9,52.92,0.84,0.61,6.5,7.92
-97327,41,043,41043,2871,1218,180880427,180880427,2871,1218,180880427,180880427,116672,48821,5980180944,5931407318,100,100,100,100,2.46,2.49,3.02,3.05
-97329,41,043,41043,90,77,91981050,91981050,90,77,91981050,91981050,116672,48821,5980180944,5931407318,100,100,100,100,0.08,0.16,1.54,1.55
-97330,41,003,41003,41472,18488,200512303,199697439,41472,18488,200512303,199697439,85579,36245,1757598196,1750680238,100,100,100,100,48.46,51.01,11.41,11.41
-97331,41,003,41003,2408,3,835604,835604,2408,3,835604,835604,85579,36245,1757598196,1750680238,100,100,100,100,2.81,0.01,0.05,0.05
-97333,41,003,41003,20100,8915,268590684,266657344,21377,9530,305229417,301750446,85579,36245,1757598196,1750680238,94.03,93.55,88,88.37,23.49,24.6,15.28,15.23
-97333,41,043,41043,1277,615,36638733,35093102,21377,9530,305229417,301750446,116672,48821,5980180944,5931407318,5.97,6.45,12,11.63,1.09,1.26,0.61,0.59
-97338,41,053,41053,20045,8271,280306799,279899916,20045,8271,280306799,279899916,75403,30302,1926728377,1918629058,100,100,100,100,26.58,27.3,14.55,14.59
-97341,41,041,41041,2325,2190,20327511,18945144,2325,2190,20327511,18945144,46034,30610,3091884801,2537580591,100,100,100,100,5.05,7.15,0.66,0.75
-97342,41,047,41047,267,501,146743817,145284654,267,501,146743817,145284654,315335,120948,3088571862,3062209653,100,100,100,100,0.08,0.41,4.75,4.74
-97343,41,041,41041,434,191,390692293,390605715,434,191,390692293,390605715,46034,30610,3091884801,2537580591,100,100,100,100,0.94,0.62,12.64,15.39
-97344,41,053,41053,1076,449,28608232,28608232,1076,449,28608232,28608232,75403,30302,1926728377,1918629058,100,100,100,100,1.43,1.48,1.48,1.49
-97345,41,043,41043,574,276,99421984,98631672,574,276,99421984,98631672,116672,48821,5980180944,5931407318,100,100,100,100,0.49,0.57,1.66,1.66
-97346,41,043,41043,334,145,24339024,24315431,883,443,79564329,79527807,116672,48821,5980180944,5931407318,37.83,32.73,30.59,30.57,0.29,0.3,0.41,0.41
-97346,41,047,41047,549,298,55225305,55212376,883,443,79564329,79527807,315335,120948,3088571862,3062209653,62.17,67.27,69.41,69.43,0.17,0.25,1.79,1.8
-97347,41,053,41053,1293,546,51866476,51866476,1878,800,111451116,111451116,75403,30302,1926728377,1918629058,68.85,68.25,46.54,46.54,1.71,1.8,2.69,2.7
-97347,41,057,41057,4,2,3329396,3329396,1878,800,111451116,111451116,25250,18359,3451841453,2855668955,0.21,0.25,2.99,2.99,0.02,0.01,0.1,0.12
-97347,41,071,41071,581,252,56255244,56255244,1878,800,111451116,111451116,99193,37110,1860498733,1854068926,30.94,31.5,50.48,50.48,0.59,0.68,3.02,3.03
-97348,41,043,41043,1625,598,172070079,171095461,1625,598,172070079,171095461,116672,48821,5980180944,5931407318,100,100,100,100,1.39,1.22,2.88,2.88
-97350,41,043,41043,71,65,199897626,199506808,182,140,221718309,221327491,116672,48821,5980180944,5931407318,39.01,46.43,90.16,90.14,0.06,0.13,3.34,3.36
-97350,41,047,41047,111,75,21820683,21820683,182,140,221718309,221327491,315335,120948,3088571862,3062209653,60.99,53.57,9.84,9.86,0.04,0.06,0.71,0.71
-97351,41,053,41053,10307,3811,138840039,135852071,10307,3811,138840039,135852071,75403,30302,1926728377,1918629058,100,100,100,100,13.67,12.58,7.21,7.08
-97352,41,043,41043,83,30,14768196,14364949,5604,2112,115001353,113077034,116672,48821,5980180944,5931407318,1.48,1.42,12.84,12.7,0.07,0.06,0.25,0.24
-97352,41,047,41047,5521,2082,100233157,98712085,5604,2112,115001353,113077034,315335,120948,3088571862,3062209653,98.52,98.58,87.16,87.3,1.75,1.72,3.25,3.22
-97355,41,043,41043,28613,12100,543896105,540588254,28613,12100,543896105,540588254,116672,48821,5980180944,5931407318,100,100,100,100,24.52,24.78,9.09,9.11
-97357,41,041,41041,253,127,42434898,42409749,253,127,42434898,42409749,46034,30610,3091884801,2537580591,100,100,100,100,0.55,0.41,1.37,1.67
-97358,41,043,41043,1876,792,48915239,48361221,2576,1229,185556945,184428211,116672,48821,5980180944,5931407318,72.83,64.44,26.36,26.22,1.61,1.62,0.82,0.82
-97358,41,047,41047,700,437,136641706,136066990,2576,1229,185556945,184428211,315335,120948,3088571862,3062209653,27.17,35.56,73.64,73.78,0.22,0.36,4.42,4.44
-97360,41,043,41043,1790,721,16410186,16346379,2249,923,59237014,59173207,116672,48821,5980180944,5931407318,79.59,78.11,27.7,27.62,1.53,1.48,0.27,0.28
-97360,41,047,41047,459,202,42826828,42826828,2249,923,59237014,59173207,315335,120948,3088571862,3062209653,20.41,21.89,72.3,72.38,0.15,0.17,1.39,1.4
-97361,41,003,41003,217,93,51296607,51290818,11258,4207,362198058,362105612,85579,36245,1757598196,1750680238,1.93,2.21,14.16,14.16,0.25,0.26,2.92,2.93
-97361,41,053,41053,11041,4114,310901451,310814794,11258,4207,362198058,362105612,75403,30302,1926728377,1918629058,98.07,97.79,85.84,85.84,14.64,13.58,16.14,16.2
-97362,41,005,41005,132,49,6449027,6449027,4338,1633,61947912,61855849,375992,156945,4875939505,4844112024,3.04,3,10.41,10.43,0.04,0.03,0.13,0.13
-97362,41,047,41047,4206,1584,55498885,55406822,4338,1633,61947912,61855849,315335,120948,3088571862,3062209653,96.96,97,89.59,89.57,1.33,1.31,1.8,1.81
-97364,41,041,41041,446,285,811482,811482,446,285,811482,811482,46034,30610,3091884801,2537580591,100,100,100,100,0.97,0.93,0.03,0.03
-97365,41,041,41041,10744,5800,116644633,109817193,10744,5800,116644633,109817193,46034,30610,3091884801,2537580591,100,100,100,100,23.34,18.95,3.77,4.33
-97366,41,041,41041,1460,1027,29110382,26726259,1460,1027,29110382,26726259,46034,30610,3091884801,2537580591,100,100,100,100,3.17,3.36,0.94,1.05
-97367,41,041,41041,9416,7845,112296077,109351510,9416,7845,112296077,109351510,46034,30610,3091884801,2537580591,100,100,100,100,20.45,25.63,3.63,4.31
-97368,41,041,41041,3415,1798,133585615,130726836,3435,1858,145625903,142287663,46034,30610,3091884801,2537580591,99.42,96.77,91.73,91.88,7.42,5.87,4.32,5.15
-97368,41,057,41057,20,60,12040288,11560827,3435,1858,145625903,142287663,25250,18359,3451841453,2855668955,0.58,3.23,8.27,8.12,0.08,0.33,0.35,0.4
-97369,41,041,41041,193,460,8031827,8031827,193,460,8031827,8031827,46034,30610,3091884801,2537580591,100,100,100,100,0.42,1.5,0.26,0.32
-97370,41,003,41003,8222,3339,354446275,353798484,8271,3357,376462159,375814368,85579,36245,1757598196,1750680238,99.41,99.46,94.15,94.14,9.61,9.21,20.17,20.21
-97370,41,053,41053,49,18,22015884,22015884,8271,3357,376462159,375814368,75403,30302,1926728377,1918629058,0.59,0.54,5.85,5.86,0.06,0.06,1.14,1.15
-97371,41,053,41053,730,300,111126572,110886540,730,300,111126572,110886540,75403,30302,1926728377,1918629058,100,100,100,100,0.97,0.99,5.77,5.78
-97373,41,047,41047,178,0,308734,308734,178,0,308734,308734,315335,120948,3088571862,3062209653,100,0,100,100,0.06,0,0.01,0.01
-97374,41,043,41043,5266,2069,331091035,330634779,5266,2069,331091035,330634779,116672,48821,5980180944,5931407318,100,100,100,100,4.51,4.24,5.54,5.57
-97375,41,005,41005,151,74,29838348,29838348,1252,498,121510278,121510278,375992,156945,4875939505,4844112024,12.06,14.86,24.56,24.56,0.04,0.05,0.61,0.62
-97375,41,047,41047,1101,424,91671930,91671930,1252,498,121510278,121510278,315335,120948,3088571862,3062209653,87.94,85.14,75.44,75.44,0.35,0.35,2.97,2.99
-97376,41,041,41041,1301,872,166217452,165556435,1301,872,166217452,165556435,46034,30610,3091884801,2537580591,100,100,100,100,2.83,2.85,5.38,6.52
-97377,41,043,41043,917,355,124258128,123965540,917,355,124258128,123965540,116672,48821,5980180944,5931407318,100,100,100,100,0.79,0.73,2.08,2.09
-97378,41,053,41053,1157,501,163784942,163745278,8882,2749,300206478,300020184,75403,30302,1926728377,1918629058,13.03,18.22,54.56,54.58,1.53,1.65,8.5,8.53
-97378,41,071,41071,7725,2248,136421536,136274906,8882,2749,300206478,300020184,99193,37110,1860498733,1854068926,86.97,81.78,45.44,45.42,7.79,6.06,7.33,7.35
-97380,41,041,41041,2449,992,187016463,186975792,2449,992,187016463,186975792,46034,30610,3091884801,2537580591,100,100,100,100,5.32,3.24,6.05,7.37
-97381,41,047,41047,14711,5741,282203203,281842047,14711,5741,282203203,281842047,315335,120948,3088571862,3062209653,100,100,100,100,4.67,4.75,9.14,9.2
-97383,41,043,41043,813,309,42791193,41805836,9587,3809,115932066,113986516,116672,48821,5980180944,5931407318,8.48,8.11,36.91,36.68,0.7,0.63,0.72,0.7
-97383,41,047,41047,8774,3500,73140873,72180680,9587,3809,115932066,113986516,315335,120948,3088571862,3062209653,91.52,91.89,63.09,63.32,2.78,2.89,2.37,2.36
-97384,41,047,41047,23,9,18834,18834,23,9,18834,18834,315335,120948,3088571862,3062209653,100,100,100,100,0.01,0.01,0,0
-97385,41,047,41047,3257,1359,105747707,105676112,3257,1359,105747707,105676112,315335,120948,3088571862,3062209653,100,100,100,100,1.03,1.12,3.42,3.45
-97386,41,043,41043,13567,5672,333469379,328364501,13567,5672,333469379,328364501,116672,48821,5980180944,5931407318,100,100,100,100,11.63,11.62,5.58,5.54
-97388,41,041,41041,888,1116,11781024,7069866,888,1116,11781024,7069866,46034,30610,3091884801,2537580591,100,100,100,100,1.93,3.65,0.38,0.28
-97389,41,043,41043,1676,643,92344749,92344749,1676,643,92344749,92344749,116672,48821,5980180944,5931407318,100,100,100,100,1.44,1.32,1.54,1.56
-97390,41,039,41039,45,22,115737102,115713660,555,491,285846528,285502244,351715,156112,12229575559,11792524334,8.11,4.48,40.49,40.53,0.01,0.01,0.95,0.98
-97390,41,041,41041,510,469,170109426,169788584,555,491,285846528,285502244,46034,30610,3091884801,2537580591,91.89,95.52,59.51,59.47,1.11,1.53,5.5,6.69
-97391,41,041,41041,5344,2311,250076021,243986694,5344,2311,250076021,243986694,46034,30610,3091884801,2537580591,100,100,100,100,11.61,7.55,8.09,9.61
-97392,41,047,41047,5191,2039,113664003,112660054,5191,2039,113664003,112660054,315335,120948,3088571862,3062209653,100,100,100,100,1.65,1.69,3.68,3.68
-97394,41,041,41041,4643,3329,164033064,158153985,4643,3329,164033064,158153985,46034,30610,3091884801,2537580591,100,100,100,100,10.09,10.88,5.31,6.23
-97396,41,053,41053,1184,497,25224130,25179436,3154,1262,134486319,134297063,75403,30302,1926728377,1918629058,37.54,39.38,18.76,18.75,1.57,1.64,1.31,1.31
-97396,41,071,41071,1970,765,109262189,109117627,3154,1262,134486319,134297063,99193,37110,1860498733,1854068926,62.46,60.62,81.24,81.25,1.99,2.06,5.87,5.89
-97401,41,039,41039,40521,20211,23810150,23751176,40521,20211,23810150,23751176,351715,156112,12229575559,11792524334,100,100,100,100,11.52,12.95,0.19,0.2
-97402,41,039,41039,50342,22044,195618671,178923199,50342,22044,195618671,178923199,351715,156112,12229575559,11792524334,100,100,100,100,14.31,14.12,1.6,1.52
-97403,41,039,41039,11622,3979,11094495,11094495,11622,3979,11094495,11094495,351715,156112,12229575559,11792524334,100,100,100,100,3.3,2.55,0.09,0.09
-97404,41,039,41039,32255,13210,25323204,25097986,32255,13210,25323204,25097986,351715,156112,12229575559,11792524334,100,100,100,100,9.17,8.46,0.21,0.21
-97405,41,039,41039,44645,20082,394418543,393448507,44645,20082,394418543,393448507,351715,156112,12229575559,11792524334,100,100,100,100,12.69,12.86,3.23,3.34
-97406,41,015,41015,105,110,309105220,305694026,105,110,309105220,305694026,22364,12613,5149787157,4215100613,100,100,100,100,0.47,0.87,6,7.25
-97408,41,039,41039,11711,5164,132689936,129253149,11711,5164,132689936,129253149,351715,156112,12229575559,11792524334,100,100,100,100,3.33,3.31,1.08,1.1
-97410,41,019,41019,759,389,322218296,322218296,759,389,322218296,322218296,107667,48915,13296393289,13043372940,100,100,100,100,0.7,0.8,2.42,2.47
-97411,41,011,41011,6953,3915,378503377,347599360,6953,3915,378503377,347599360,63043,30593,4678458195,4134068696,100,100,100,100,11.03,12.8,8.09,8.41
-97412,41,039,41039,521,344,220422669,219113640,521,344,220422669,219113640,351715,156112,12229575559,11792524334,100,100,100,100,0.15,0.22,1.8,1.86
-97413,41,039,41039,909,780,1387691593,1377477196,915,784,1407050869,1396601454,351715,156112,12229575559,11792524334,99.34,99.49,98.62,98.63,0.26,0.5,11.35,11.68
-97413,41,043,41043,6,4,19359276,19124258,915,784,1407050869,1396601454,116672,48821,5980180944,5931407318,0.66,0.51,1.38,1.37,0.01,0.01,0.32,0.32
-97414,41,011,41011,273,138,71064841,70683373,273,138,71064841,70683373,63043,30593,4678458195,4134068696,100,100,100,100,0.43,0.45,1.52,1.71
-97415,41,015,41015,14051,7434,389273469,385423091,14051,7434,389273469,385423091,22364,12613,5149787157,4215100613,100,100,100,100,62.83,58.94,7.56,9.14
-97416,41,019,41019,937,402,138605781,138557870,937,402,138605781,138557870,107667,48915,13296393289,13043372940,100,100,100,100,0.87,0.82,1.04,1.06
-97417,41,019,41019,2439,1085,51953706,51924124,2439,1085,51953706,51924124,107667,48915,13296393289,13043372940,100,100,100,100,2.27,2.22,0.39,0.4
-97419,41,039,41039,1066,489,75811421,75807504,1066,489,75811421,75807504,351715,156112,12229575559,11792524334,100,100,100,100,0.3,0.31,0.62,0.64
-97420,41,011,41011,27473,12905,665066973,616004719,27473,12905,665066973,616004719,63043,30593,4678458195,4134068696,100,100,100,100,43.58,42.18,14.22,14.9
-97423,41,011,41011,6809,3121,332397006,328794544,6809,3121,332397006,328794544,63043,30593,4678458195,4134068696,100,100,100,100,10.8,10.2,7.1,7.95
-97424,41,019,41019,271,106,71382507,71382507,17594,7505,606234292,596218745,107667,48915,13296393289,13043372940,1.54,1.41,11.77,11.97,0.25,0.22,0.54,0.55
-97424,41,039,41039,17323,7399,534851785,524836238,17594,7505,606234292,596218745,351715,156112,12229575559,11792524334,98.46,98.59,88.23,88.03,4.93,4.74,4.37,4.45
-97426,41,039,41039,9716,3955,208403267,208161678,9716,3955,208403267,208161678,351715,156112,12229575559,11792524334,100,100,100,100,2.76,2.53,1.7,1.77
-97429,41,019,41019,684,342,235845707,235845707,684,342,235845707,235845707,107667,48915,13296393289,13043372940,100,100,100,100,0.64,0.7,1.77,1.81
-97430,41,039,41039,385,218,271750147,271750147,385,218,271750147,271750147,351715,156112,12229575559,11792524334,100,100,100,100,0.11,0.14,2.22,2.3
-97431,41,039,41039,2335,987,108588090,108052892,2335,987,108588090,108052892,351715,156112,12229575559,11792524334,100,100,100,100,0.66,0.63,0.89,0.92
-97434,41,039,41039,928,394,279184388,277130526,928,394,279184388,277130526,351715,156112,12229575559,11792524334,100,100,100,100,0.26,0.25,2.28,2.35
-97435,41,019,41019,2349,1053,250798790,250742273,2349,1053,250798790,250742273,107667,48915,13296393289,13043372940,100,100,100,100,2.18,2.15,1.89,1.92
-97436,41,019,41019,841,445,257801362,254138997,841,445,257801362,254138997,107667,48915,13296393289,13043372940,100,100,100,100,0.78,0.91,1.94,1.95
-97437,41,039,41039,2572,1035,62186941,57372938,2572,1035,62186941,57372938,351715,156112,12229575559,11792524334,100,100,100,100,0.73,0.66,0.51,0.49
-97438,41,039,41039,1191,491,276852388,269055680,1191,491,276852388,269055680,351715,156112,12229575559,11792524334,100,100,100,100,0.34,0.31,2.26,2.28
-97439,41,039,41039,14343,8851,492782247,457221284,14343,8851,492782247,457221284,351715,156112,12229575559,11792524334,100,100,100,100,4.08,5.67,4.03,3.88
-97441,41,019,41019,260,166,66392347,40992542,260,166,66392347,40992542,107667,48915,13296393289,13043372940,100,100,100,100,0.24,0.34,0.5,0.31
-97442,41,019,41019,2232,1008,216674654,216581243,2232,1008,216674654,216581243,107667,48915,13296393289,13043372940,100,100,100,100,2.07,2.06,1.63,1.66
-97443,41,019,41019,2232,920,196856009,196489425,2232,920,196856009,196489425,107667,48915,13296393289,13043372940,100,100,100,100,2.07,1.88,1.48,1.51
-97444,41,015,41015,5181,3168,429405754,423009562,5181,3168,429405754,423009562,22364,12613,5149787157,4215100613,100,100,100,100,23.17,25.12,8.34,10.04
-97446,41,039,41039,19,9,2210655,2210655,4812,1850,317385806,315506843,351715,156112,12229575559,11792524334,0.39,0.49,0.7,0.7,0.01,0.01,0.02,0.02
-97446,41,043,41043,4793,1841,315175151,313296188,4812,1850,317385806,315506843,116672,48821,5980180944,5931407318,99.61,99.51,99.3,99.3,4.11,3.77,5.27,5.28
-97447,41,019,41019,794,558,321870626,307238188,794,558,321870626,307238188,107667,48915,13296393289,13043372940,100,100,100,100,0.74,1.14,2.42,2.36
-97448,41,003,41003,259,107,23049570,22844793,12244,5190,372528552,369681256,85579,36245,1757598196,1750680238,2.12,2.06,6.19,6.18,0.3,0.3,1.31,1.3
-97448,41,039,41039,11985,5083,349478982,346836463,12244,5190,372528552,369681256,351715,156112,12229575559,11792524334,97.88,97.94,93.81,93.82,3.41,3.26,2.86,2.94
-97449,41,011,41011,1959,1417,124582702,116076095,1959,1417,124582702,116076095,63043,30593,4678458195,4134068696,100,100,100,100,3.11,4.63,2.66,2.81
-97450,41,011,41011,6,10,9370048,9275063,671,407,218603803,216397227,63043,30593,4678458195,4134068696,0.89,2.46,4.29,4.29,0.01,0.03,0.2,0.22
-97450,41,015,41015,665,397,209233755,207122164,671,407,218603803,216397227,22364,12613,5149787157,4215100613,99.11,97.54,95.71,95.71,2.97,3.15,4.06,4.91
-97451,41,039,41039,387,183,106056913,106056913,387,183,106056913,106056913,351715,156112,12229575559,11792524334,100,100,100,100,0.11,0.12,0.87,0.9
-97452,41,039,41039,1420,614,75259351,55827482,1420,614,75259351,55827482,351715,156112,12229575559,11792524334,100,100,100,100,0.4,0.39,0.62,0.47
-97453,41,039,41039,897,521,284585360,282544104,897,521,284585360,282544104,351715,156112,12229575559,11792524334,100,100,100,100,0.26,0.33,2.33,2.4
-97454,41,039,41039,1337,573,145255337,145255337,1337,573,145255337,145255337,351715,156112,12229575559,11792524334,100,100,100,100,0.38,0.37,1.19,1.23
-97455,41,039,41039,2538,1024,62636166,62194243,2538,1024,62636166,62194243,351715,156112,12229575559,11792524334,100,100,100,100,0.72,0.66,0.51,0.53
-97456,41,003,41003,2781,1190,228176805,227233078,2985,1266,236487884,235544157,85579,36245,1757598196,1750680238,93.17,94,96.49,96.47,3.25,3.28,12.98,12.98
-97456,41,039,41039,204,76,8311079,8311079,2985,1266,236487884,235544157,351715,156112,12229575559,11792524334,6.83,6,3.51,3.53,0.06,0.05,0.07,0.07
-97457,41,019,41019,10208,4440,420641166,420606568,10208,4440,420641166,420606568,107667,48915,13296393289,13043372940,100,100,100,100,9.48,9.08,3.16,3.22
-97458,41,011,41011,4733,2190,988296316,984420944,4733,2190,988296316,984420944,63043,30593,4678458195,4134068696,100,100,100,100,7.51,7.16,21.12,23.81
-97459,41,011,41011,14021,6451,289639265,251366111,14096,6492,306200872,264228134,63043,30593,4678458195,4134068696,99.47,99.37,94.59,95.13,22.24,21.09,6.19,6.08
-97459,41,019,41019,75,41,16561607,12862023,14096,6492,306200872,264228134,107667,48915,13296393289,13043372940,0.53,0.63,5.41,4.87,0.07,0.08,0.12,0.1
-97461,41,039,41039,683,289,109606767,109574556,683,289,109606767,109574556,351715,156112,12229575559,11792524334,100,100,100,100,0.19,0.19,0.9,0.93
-97462,41,019,41019,3938,1786,540680874,534683685,3938,1786,540680874,534683685,107667,48915,13296393289,13043372940,100,100,100,100,3.66,3.65,4.07,4.1
-97463,41,039,41039,3877,1931,110844633,110245579,3877,1931,110844633,110245579,351715,156112,12229575559,11792524334,100,100,100,100,1.1,1.24,0.91,0.93
-97465,41,015,41015,2145,1377,239784713,237741473,2145,1377,239784713,237741473,22364,12613,5149787157,4215100613,100,100,100,100,9.59,10.92,4.66,5.64
-97466,41,011,41011,816,446,109074439,108626649,816,446,109074439,108626649,63043,30593,4678458195,4134068696,100,100,100,100,1.29,1.46,2.33,2.63
-97467,41,019,41019,5339,2897,673755935,657959902,5339,2897,673755935,657959902,107667,48915,13296393289,13043372940,100,100,100,100,4.96,5.92,5.07,5.04
-97469,41,019,41019,2596,1137,128746197,128506072,2596,1137,128746197,128506072,107667,48915,13296393289,13043372940,100,100,100,100,2.41,2.32,0.97,0.99
-97470,41,019,41019,19985,9135,451904726,447958508,19985,9135,451904726,447958508,107667,48915,13296393289,13043372940,100,100,100,100,18.56,18.68,3.4,3.43
-97471,41,019,41019,29100,12666,455403977,450366700,29100,12666,455403977,450366700,107667,48915,13296393289,13043372940,100,100,100,100,27.03,25.89,3.43,3.45
-97473,41,019,41019,328,249,142588558,132795748,328,249,142588558,132795748,107667,48915,13296393289,13043372940,100,100,100,100,0.3,0.51,1.07,1.02
-97476,41,015,41015,217,123,118120751,117464190,217,123,118120751,117464190,22364,12613,5149787157,4215100613,100,100,100,100,0.97,0.98,2.29,2.79
-97477,41,039,41039,36874,16047,32870706,32304566,36874,16047,32870706,32304566,351715,156112,12229575559,11792524334,100,100,100,100,10.48,10.28,0.27,0.27
-97478,41,039,41039,37011,14675,425103583,421440461,37011,14675,425103583,421440461,351715,156112,12229575559,11792524334,100,100,100,100,10.52,9.4,3.48,3.57
-97479,41,019,41019,9505,4302,166140151,164750102,9505,4302,166140151,164750102,107667,48915,13296393289,13043372940,100,100,100,100,8.83,8.79,1.25,1.26
-97480,41,039,41039,379,203,180025510,180023003,379,203,180025510,180023003,351715,156112,12229575559,11792524334,100,100,100,100,0.11,0.13,1.47,1.53
-97481,41,019,41019,679,292,19179471,19175375,679,292,19179471,19175375,107667,48915,13296393289,13043372940,100,100,100,100,0.63,0.6,0.14,0.15
-97484,41,019,41019,235,152,328200528,328200528,235,152,328200528,328200528,107667,48915,13296393289,13043372940,100,100,100,100,0.22,0.31,2.47,2.52
-97486,41,019,41019,714,354,172964059,169276790,714,354,172964059,169276790,107667,48915,13296393289,13043372940,100,100,100,100,0.66,0.72,1.3,1.3
-97487,41,039,41039,8449,3382,210038793,196144040,8449,3382,210038793,196144040,351715,156112,12229575559,11792524334,100,100,100,100,2.4,2.17,1.72,1.66
-97488,41,039,41039,1011,606,268303361,266746123,1011,606,268303361,266746123,351715,156112,12229575559,11792524334,100,100,100,100,0.29,0.39,2.19,2.26
-97489,41,039,41039,868,434,41618607,41020039,868,434,41618607,41020039,351715,156112,12229575559,11792524334,100,100,100,100,0.25,0.28,0.34,0.35
-97490,41,039,41039,326,155,267909534,267909534,326,155,267909534,267909534,351715,156112,12229575559,11792524334,100,100,100,100,0.09,0.1,2.19,2.27
-97492,41,039,41039,597,296,59140771,58917399,597,296,59140771,58917399,351715,156112,12229575559,11792524334,100,100,100,100,0.17,0.19,0.48,0.5
-97493,41,019,41019,21,21,21572996,18909567,323,233,153316164,141383958,107667,48915,13296393289,13043372940,6.5,9.01,14.07,13.37,0.02,0.04,0.16,0.14
-97493,41,039,41039,302,212,131743168,122474391,323,233,153316164,141383958,351715,156112,12229575559,11792524334,93.5,90.99,85.93,86.63,0.09,0.14,1.08,1.04
-97494,41,019,41019,49,18,2427984,2427984,49,18,2427984,2427984,107667,48915,13296393289,13043372940,100,100,100,100,0.05,0.04,0.02,0.02
-97495,41,019,41019,1450,718,20013170,19133281,1450,718,20013170,19133281,107667,48915,13296393289,13043372940,100,100,100,100,1.35,1.47,0.15,0.15
-97496,41,019,41019,7634,3281,226166826,226149223,7634,3281,226166826,226149223,107667,48915,13296393289,13043372940,100,100,100,100,7.09,6.71,1.7,1.73
-97497,41,029,41029,10,7,24931235,24931235,1523,737,381104608,381088403,203206,90937,7256236869,7209356169,0.66,0.95,6.54,6.54,0,0.01,0.34,0.35
-97497,41,033,41033,1513,730,356173373,356157168,1523,737,381104608,381088403,82713,38001,4252363871,4246719858,99.34,99.05,93.46,93.46,1.83,1.92,8.38,8.39
-97498,41,039,41039,99,135,115985024,108016541,1814,1659,264319908,256305088,351715,156112,12229575559,11792524334,5.46,8.14,43.88,42.14,0.03,0.09,0.95,0.92
-97498,41,041,41041,1715,1524,148334884,148288547,1814,1659,264319908,256305088,46034,30610,3091884801,2537580591,94.54,91.86,56.12,57.86,3.73,4.98,4.8,5.84
-97499,41,019,41019,1957,908,344862496,344618366,1957,908,344862496,344618366,107667,48915,13296393289,13043372940,100,100,100,100,1.82,1.86,2.59,2.64
-97501,41,029,41029,42117,17816,137702010,137565826,42117,17816,137702010,137565826,203206,90937,7256236869,7209356169,100,100,100,100,20.73,19.59,1.9,1.91
-97502,41,029,41029,27694,11316,248411603,245349937,27694,11316,248411603,245349937,203206,90937,7256236869,7209356169,100,100,100,100,13.63,12.44,3.42,3.4
-97503,41,029,41029,10528,4058,216773029,215917460,10528,4058,216773029,215917460,203206,90937,7256236869,7209356169,100,100,100,100,5.18,4.46,2.99,2.99
-97504,41,029,41029,44444,19864,121077743,121018006,44444,19864,121077743,121018006,203206,90937,7256236869,7209356169,100,100,100,100,21.87,21.84,1.67,1.68
-97520,41,029,41029,24469,12614,808591674,798728371,24469,12614,808591674,798728371,203206,90937,7256236869,7209356169,100,100,100,100,12.04,13.87,11.14,11.08
-97522,41,029,41029,658,297,234993040,234586003,658,297,234993040,234586003,203206,90937,7256236869,7209356169,100,100,100,100,0.32,0.33,3.24,3.25
-97523,41,033,41033,6264,3119,439686296,439250959,6264,3119,439686296,439250959,82713,38001,4252363871,4246719858,100,100,100,100,7.57,8.21,10.34,10.34
-97524,41,029,41029,14459,6115,806265470,802071928,14459,6115,806265470,802071928,203206,90937,7256236869,7209356169,100,100,100,100,7.12,6.72,11.11,11.13
-97525,41,029,41029,4601,2179,258665992,257185436,4601,2179,258665992,257185436,203206,90937,7256236869,7209356169,100,100,100,100,2.26,2.4,3.56,3.57
-97526,41,029,41029,179,105,1476729,1226416,34205,15422,366712736,364950829,203206,90937,7256236869,7209356169,0.52,0.68,0.4,0.34,0.09,0.12,0.02,0.02
-97526,41,033,41033,34026,15317,365236007,363724413,34205,15422,366712736,364950829,82713,38001,4252363871,4246719858,99.48,99.32,99.6,99.66,41.14,40.31,8.59,8.56
-97527,41,029,41029,1464,771,73533991,72989113,33713,15365,616520274,614062630,203206,90937,7256236869,7209356169,4.34,5.02,11.93,11.89,0.72,0.85,1.01,1.01
-97527,41,033,41033,32249,14594,542986283,541073517,33713,15365,616520274,614062630,82713,38001,4252363871,4246719858,95.66,94.98,88.07,88.11,38.99,38.4,12.77,12.74
-97530,41,029,41029,6916,3516,942077039,937826393,6916,3516,942077039,937826393,203206,90937,7256236869,7209356169,100,100,100,100,3.4,3.87,12.98,13.01
-97531,41,033,41033,522,238,6642337,6602358,522,238,6642337,6602358,82713,38001,4252363871,4246719858,100,100,100,100,0.63,0.63,0.16,0.16
-97532,41,033,41033,2378,1114,155171750,154337080,2378,1114,155171750,154337080,82713,38001,4252363871,4246719858,100,100,100,100,2.88,2.93,3.65,3.63
-97534,41,033,41033,756,437,261102116,261066334,756,437,261102116,261066334,82713,38001,4252363871,4246719858,100,100,100,100,0.91,1.15,6.14,6.15
-97535,41,029,41029,5047,2291,8183868,8183868,5047,2291,8183868,8183868,203206,90937,7256236869,7209356169,100,100,100,100,2.48,2.52,0.11,0.11
-97536,41,029,41029,965,564,176851711,176541998,965,564,176851711,176541998,203206,90937,7256236869,7209356169,100,100,100,100,0.47,0.62,2.44,2.45
-97537,41,029,41029,6918,3339,308018563,307982972,6918,3339,308018563,307982972,203206,90937,7256236869,7209356169,100,100,100,100,3.4,3.67,4.24,4.27
-97538,41,033,41033,2063,1017,368459770,367901674,2063,1017,368459770,367901674,82713,38001,4252363871,4246719858,100,100,100,100,2.49,2.68,8.66,8.66
-97539,41,029,41029,3329,1671,57281771,56748241,3329,1671,57281771,56748241,203206,90937,7256236869,7209356169,100,100,100,100,1.64,1.84,0.79,0.79
-97540,41,029,41029,7930,3653,108193601,108175713,7930,3653,108193601,108175713,203206,90937,7256236869,7209356169,100,100,100,100,3.9,4.02,1.49,1.5
-97541,41,029,41029,1478,760,524221478,523571047,1478,760,524221478,523571047,203206,90937,7256236869,7209356169,100,100,100,100,0.73,0.84,7.22,7.26
-97543,41,033,41033,736,355,116385577,116385577,736,355,116385577,116385577,82713,38001,4252363871,4246719858,100,100,100,100,0.89,0.93,2.74,2.74
-97544,41,033,41033,2206,1080,422210502,422121229,2206,1080,422210502,422121229,82713,38001,4252363871,4246719858,100,100,100,100,2.67,2.84,9.93,9.94
-97601,41,035,41035,22459,11139,1536514960,1438189233,22459,11139,1536514960,1438189233,66380,32774,15890998330,15387252316,100,100,100,100,33.83,33.99,9.67,9.35
-97603,41,035,41035,29525,12962,818399953,805082421,29525,12962,818399953,805082421,66380,32774,15890998330,15387252316,100,100,100,100,44.48,39.55,5.15,5.23
-97604,41,035,41035,28,40,245719739,192285554,28,40,245719739,192285554,66380,32774,15890998330,15387252316,100,100,100,100,0.04,0.12,1.55,1.25
-97620,41,037,41037,111,92,1656821363,1612805075,111,92,1656821363,1612805075,7895,4439,21647788868,21079871249,100,100,100,100,1.41,2.07,7.65,7.65
-97621,41,035,41035,320,270,335904238,335325586,320,270,335904238,335325586,66380,32774,15890998330,15387252316,100,100,100,100,0.48,0.82,2.11,2.18
-97622,41,035,41035,558,359,426457732,425520315,558,359,426457732,425520315,66380,32774,15890998330,15387252316,100,100,100,100,0.84,1.1,2.68,2.77
-97623,41,035,41035,2310,1073,969080454,958760323,2310,1073,969080454,958760323,66380,32774,15890998330,15387252316,100,100,100,100,3.48,3.27,6.1,6.23
-97624,41,035,41035,3500,2109,1223169265,1178113161,3500,2109,1223169265,1178113161,66380,32774,15890998330,15387252316,100,100,100,100,5.27,6.43,7.7,7.66
-97625,41,035,41035,199,87,140827258,140827258,199,87,140827258,140827258,66380,32774,15890998330,15387252316,100,100,100,100,0.3,0.27,0.89,0.92
-97626,41,035,41035,88,106,169043122,168775705,88,106,169043122,168775705,66380,32774,15890998330,15387252316,100,100,100,100,0.13,0.32,1.06,1.1
-97627,41,035,41035,780,383,73427945,72189847,780,383,73427945,72189847,66380,32774,15890998330,15387252316,100,100,100,100,1.18,1.17,0.46,0.47
-97630,41,037,41037,5096,2495,2256939294,2110618259,5096,2495,2256939294,2110618259,7895,4439,21647788868,21079871249,100,100,100,100,64.55,56.21,10.43,10.01
-97632,41,035,41035,1466,563,111041118,110961048,1466,563,111041118,110961048,66380,32774,15890998330,15387252316,100,100,100,100,2.21,1.72,0.7,0.72
-97633,41,035,41035,1361,572,77627240,76853653,1361,572,77627240,76853653,66380,32774,15890998330,15387252316,100,100,100,100,2.05,1.75,0.49,0.5
-97634,41,035,41035,212,90,1489723,1489723,212,90,1489723,1489723,66380,32774,15890998330,15387252316,100,100,100,100,0.32,0.27,0.01,0.01
-97635,06,049,06049,165,117,106593218,106474613,289,181,116250248,116131643,9686,5192,10886751609,10146977156,57.09,64.64,91.69,91.68,1.7,2.25,0.98,1.05
-97635,41,037,41037,124,64,9657030,9657030,289,181,116250248,116131643,7895,4439,21647788868,21079871249,42.91,35.36,8.31,8.32,1.57,1.44,0.04,0.05
-97636,41,037,41037,387,230,489240078,489014308,387,230,489240078,489014308,7895,4439,21647788868,21079871249,100,100,100,100,4.9,5.18,2.26,2.32
-97637,41,037,41037,76,71,526851599,489940782,76,71,526851599,489940782,7895,4439,21647788868,21079871249,100,100,100,100,0.96,1.6,2.43,2.32
-97638,41,037,41037,507,313,1228472231,1228081903,507,313,1228472231,1228081903,7895,4439,21647788868,21079871249,100,100,100,100,6.42,7.05,5.67,5.83
-97639,41,035,41035,570,349,213546989,212412273,570,349,213546989,212412273,66380,32774,15890998330,15387252316,100,100,100,100,0.86,1.06,1.34,1.38
-97640,41,037,41037,99,120,1422509259,1290819584,99,120,1422509259,1290819584,7895,4439,21647788868,21079871249,100,100,100,100,1.25,2.7,6.57,6.12
-97641,41,037,41037,1313,897,1641257056,1640918316,1313,897,1641257056,1640918316,7895,4439,21647788868,21079871249,100,100,100,100,16.63,20.21,7.58,7.78
-97701,41,013,41013,59,25,79097017,79097017,58993,27682,1771939064,1758347878,20978,10202,7736990621,7715797890,0.1,0.09,4.46,4.5,0.28,0.25,1.02,1.03
-97701,41,017,41017,58934,27657,1692842047,1679250861,58993,27682,1771939064,1758347878,157733,80139,7911812199,7817065156,99.9,99.91,95.54,95.5,37.36,34.51,21.4,21.48
-97702,41,017,41017,40583,18484,212840591,212268868,40583,18484,212840591,212268868,157733,80139,7911812199,7817065156,100,100,100,100,25.73,23.06,2.69,2.72
-97707,41,017,41017,5814,7495,151875104,151292186,5814,7495,151875104,151292186,157733,80139,7911812199,7817065156,100,100,100,100,3.69,9.35,1.92,1.94
-97710,41,025,41025,116,80,2047336673,2047005324,120,81,2135055053,2134723704,7422,3835,26486282592,26244789736,96.67,98.77,95.89,95.89,1.56,2.09,7.73,7.8
-97710,41,045,41045,4,1,87718380,87718380,120,81,2135055053,2134723704,31313,11692,25717804527,25608588996,3.33,1.23,4.11,4.11,0.01,0.01,0.34,0.34
-97711,41,031,41031,61,49,667205731,667118496,61,49,667205731,667118496,21720,9815,4638443073,4612211364,100,100,100,100,0.28,0.5,14.38,14.46
-97712,41,017,41017,38,19,448374645,448316523,38,19,448374645,448316523,157733,80139,7911812199,7817065156,100,100,100,100,0.02,0.02,5.67,5.74
-97720,41,025,41025,4530,2316,2876693179,2678299799,4530,2316,2876693179,2678299799,7422,3835,26486282592,26244789736,100,100,100,100,61.03,60.39,10.86,10.21
-97721,41,025,41025,271,183,4394638715,4381144157,271,183,4394638715,4381144157,7422,3835,26486282592,26244789736,100,100,100,100,3.65,4.77,16.59,16.69
-97722,41,025,41025,91,46,1297361251,1293796711,91,46,1297361251,1293796711,7422,3835,26486282592,26244789736,100,100,100,100,1.23,1.2,4.9,4.93
-97730,41,031,41031,252,380,34284012,34284012,252,380,34284012,34284012,21720,9815,4638443073,4612211364,100,100,100,100,1.16,3.87,0.74,0.74
-97731,41,019,41019,56,42,2614033,2614033,278,177,125736130,125736130,107667,48915,13296393289,13043372940,20.14,23.73,2.08,2.08,0.05,0.09,0.02,0.02
-97731,41,035,41035,222,135,123122097,123122097,278,177,125736130,125736130,66380,32774,15890998330,15387252316,79.86,76.27,97.92,97.92,0.33,0.41,0.77,0.8
-97732,41,025,41025,139,77,222549439,222409963,139,77,222549439,222409963,7422,3835,26486282592,26244789736,100,100,100,100,1.87,2.01,0.84,0.85
-97733,41,035,41035,770,1297,943301046,907767117,770,1297,943301046,907767117,66380,32774,15890998330,15387252316,100,100,100,100,1.16,3.96,5.94,5.9
-97734,41,031,41031,2786,1705,406016357,397513868,2786,1705,406016357,397513868,21720,9815,4638443073,4612211364,100,100,100,100,12.83,17.37,8.75,8.62
-97735,41,037,41037,165,115,874591881,874591881,165,115,874591881,874591881,7895,4439,21647788868,21079871249,100,100,100,100,2.09,2.59,4.04,4.15
-97736,41,025,41025,73,56,1428727700,1427347052,73,56,1428727700,1427347052,7422,3835,26486282592,26244789736,100,100,100,100,0.98,1.46,5.39,5.44
-97737,41,035,41035,496,340,67321285,67155721,496,340,67321285,67155721,66380,32774,15890998330,15387252316,100,100,100,100,0.75,1.04,0.42,0.44
-97738,41,025,41025,1941,906,191511080,189589231,1941,906,191511080,189589231,7422,3835,26486282592,26244789736,100,100,100,100,26.15,23.62,0.72,0.72
-97739,41,017,41017,9508,5427,513654004,464794947,11018,6319,587339402,538480345,157733,80139,7911812199,7817065156,86.3,85.88,87.45,86.32,6.03,6.77,6.49,5.95
-97739,41,035,41035,1510,892,73685398,73685398,11018,6319,587339402,538480345,66380,32774,15890998330,15387252316,13.7,14.12,12.55,13.68,2.27,2.72,0.46,0.48
-97741,41,031,41031,11912,4862,913849515,908147013,11912,4862,913849515,908147013,21720,9815,4638443073,4612211364,100,100,100,100,54.84,49.54,19.7,19.69
-97750,41,069,41069,386,229,993628422,993336065,386,229,993628422,993336065,1441,895,4442421608,4441179416,100,100,100,100,26.79,25.59,22.37,22.37
-97751,41,013,41013,128,115,897896847,897590940,129,116,906277327,905971420,20978,10202,7736990621,7715797890,99.22,99.14,99.08,99.07,0.61,1.13,11.61,11.63
-97751,41,025,41025,1,1,8380480,8380480,129,116,906277327,905971420,7422,3835,26486282592,26244789736,0.78,0.86,0.92,0.93,0.01,0.03,0.03,0.03
-97752,41,013,41013,44,44,395018354,394567091,44,44,395018354,394567091,20978,10202,7736990621,7715797890,100,100,100,100,0.21,0.43,5.11,5.11
-97753,41,013,41013,2016,1026,307070326,306457910,2016,1026,307070326,306457910,20978,10202,7736990621,7715797890,100,100,100,100,9.61,10.06,3.97,3.97
-97754,41,013,41013,18562,8913,3128106105,3111862281,18574,8919,3149589178,3133345354,20978,10202,7736990621,7715797890,99.94,99.93,99.32,99.31,88.48,87.37,40.43,40.33
-97754,41,031,41031,12,6,21483073,21483073,18574,8919,3149589178,3133345354,21720,9815,4638443073,4612211364,0.06,0.07,0.68,0.69,0.06,0.06,0.46,0.47
-97756,41,013,41013,37,18,7521357,7521357,33554,15222,292922619,292781311,20978,10202,7736990621,7715797890,0.11,0.12,2.57,2.57,0.18,0.18,0.1,0.1
-97756,41,017,41017,33517,15204,285401262,285259954,33554,15222,292922619,292781311,157733,80139,7911812199,7817065156,99.89,99.88,97.43,97.43,21.25,18.97,3.61,3.65
-97758,41,025,41025,84,65,737351074,736985670,101,87,1503639052,1503273648,7422,3835,26486282592,26244789736,83.17,74.71,49.04,49.03,1.13,1.69,2.78,2.81
-97758,41,037,41037,17,22,766287978,766287978,101,87,1503639052,1503273648,7895,4439,21647788868,21079871249,16.83,25.29,50.96,50.97,0.22,0.5,3.54,3.64
-97759,41,017,41017,6250,4463,368353322,368017668,6294,4494,1001815739,994674066,157733,80139,7911812199,7817065156,99.3,99.31,36.77,37,3.96,5.57,4.66,4.71
-97759,41,031,41031,28,16,35746724,34358795,6294,4494,1001815739,994674066,21720,9815,4638443073,4612211364,0.44,0.36,3.57,3.45,0.13,0.16,0.77,0.74
-97759,41,043,41043,16,15,597715693,592297603,6294,4494,1001815739,994674066,116672,48821,5980180944,5931407318,0.25,0.33,59.66,59.55,0.01,0.03,9.99,9.99
-97760,41,013,41013,132,60,41948435,41948435,6757,3442,251198832,250649105,20978,10202,7736990621,7715797890,1.95,1.74,16.7,16.74,0.63,0.59,0.54,0.54
-97760,41,017,41017,3089,1389,115612508,115421272,6757,3442,251198832,250649105,157733,80139,7911812199,7817065156,45.72,40.35,46.02,46.05,1.96,1.73,1.46,1.48
-97760,41,031,41031,3536,1993,93637889,93279398,6757,3442,251198832,250649105,21720,9815,4638443073,4612211364,52.33,57.9,37.28,37.22,16.28,20.31,2.02,2.02
-97761,41,031,41031,3133,802,382069670,380220962,3987,1051,973812155,970867784,21720,9815,4638443073,4612211364,78.58,76.31,39.23,39.16,14.42,8.17,8.24,8.24
-97761,41,065,41065,854,249,591742485,590646822,3987,1051,973812155,970867784,25213,11487,6204053035,6168106312,21.42,23.69,60.77,60.84,3.39,2.17,9.54,9.58
-97801,41,059,41059,21521,8739,1276458938,1271940128,21521,8739,1276458938,1271940128,75889,29693,8369304241,8328130471,100,100,100,100,28.36,29.43,15.25,15.27
-97810,41,059,41059,815,359,521781827,521781827,815,359,521781827,521781827,75889,29693,8369304241,8328130471,100,100,100,100,1.07,1.21,6.23,6.27
-97812,41,021,41021,851,472,1253134921,1225203673,851,472,1253134921,1225203673,1871,1156,3167140174,3120439560,100,100,100,100,45.48,40.83,39.57,39.26
-97813,41,059,41059,1302,554,141379835,141379835,1302,554,141379835,141379835,75889,29693,8369304241,8328130471,100,100,100,100,1.72,1.87,1.69,1.7
-97814,41,001,41001,12309,6047,1755312883,1744601989,12382,6109,1993715954,1980997077,16134,8826,7998840327,7947008933,99.41,98.99,88.04,88.07,76.29,68.51,21.94,21.95
-97814,41,061,41061,73,62,238403071,236395088,12382,6109,1993715954,1980997077,25748,11489,5279779889,5274784008,0.59,1.01,11.96,11.93,0.28,0.54,4.52,4.48
-97817,41,023,41023,38,55,346580983,345755014,38,55,346580983,345755014,7445,4344,11730761596,11728867794,100,100,100,100,0.51,1.27,2.95,2.95
-97818,41,049,41049,4159,1354,204879795,204868670,4159,1354,204879795,204868670,11173,4442,5305622177,5261843781,100,100,100,100,37.22,30.48,3.86,3.89
-97819,41,001,41001,29,30,116733349,116733349,29,30,116733349,116733349,16134,8826,7998840327,7947008933,100,100,100,100,0.18,0.34,1.46,1.47
-97820,41,023,41023,1095,598,877024445,876727912,1095,598,877024445,876727912,7445,4344,11730761596,11728867794,100,100,100,100,14.71,13.77,7.48,7.47
-97823,41,021,41021,948,641,1625258521,1621400060,948,641,1625258521,1621400060,1871,1156,3167140174,3120439560,100,100,100,100,50.67,55.45,51.32,51.96
-97824,41,061,41061,1661,732,566200726,566179875,1661,732,566200726,566179875,25748,11489,5279779889,5274784008,100,100,100,100,6.45,6.37,10.72,10.73
-97825,41,023,41023,244,171,642663227,642631156,244,171,642663227,642631156,7445,4344,11730761596,11728867794,100,100,100,100,3.28,3.94,5.48,5.48
-97826,41,049,41049,32,15,92247616,92247616,1085,429,822877992,822820004,11173,4442,5305622177,5261843781,2.95,3.5,11.21,11.21,0.29,0.34,1.74,1.75
-97826,41,059,41059,1053,414,730630376,730572388,1085,429,822877992,822820004,75889,29693,8369304241,8328130471,97.05,96.5,88.79,88.79,1.39,1.39,8.73,8.77
-97827,41,061,41061,2628,1299,533425509,533407307,2628,1299,533425509,533407307,25748,11489,5279779889,5274784008,100,100,100,100,10.21,11.31,10.1,10.11
-97828,41,063,41063,3124,1653,1906866142,1906775056,3124,1653,1906866142,1906775056,7008,4108,8162789883,8148590560,100,100,100,100,44.58,40.24,23.36,23.4
-97830,41,021,41021,46,30,179355706,179355706,748,473,1553342612,1552752602,1871,1156,3167140174,3120439560,6.15,6.34,11.55,11.55,2.46,2.6,5.66,5.75
-97830,41,069,41069,702,443,1373986906,1373396896,748,473,1553342612,1552752602,1441,895,4442421608,4441179416,93.85,93.66,88.45,88.45,48.72,49.5,30.93,30.92
-97833,41,001,41001,895,440,228152974,228152974,895,440,228152974,228152974,16134,8826,7998840327,7947008933,100,100,100,100,5.55,4.99,2.85,2.87
-97834,41,001,41001,986,697,541299502,540675196,986,697,541299502,540675196,16134,8826,7998840327,7947008933,100,100,100,100,6.11,7.9,6.77,6.8
-97835,41,059,41059,361,145,487028659,487028659,361,145,487028659,487028659,75889,29693,8369304241,8328130471,100,100,100,100,0.48,0.49,5.82,5.85
-97836,41,049,41049,1983,1163,2402006099,2400780481,1983,1163,2402006099,2400780481,11173,4442,5305622177,5261843781,100,100,100,100,17.75,26.18,45.27,45.63
-97837,41,001,41001,95,66,311226620,311217135,95,66,311226620,311217135,16134,8826,7998840327,7947008933,100,100,100,100,0.59,0.75,3.89,3.92
-97838,41,049,41049,97,32,107320699,107320699,25346,9497,454221498,426229342,11173,4442,5305622177,5261843781,0.38,0.34,23.63,25.18,0.87,0.72,2.02,2.04
-97838,41,059,41059,25249,9465,346900799,318908643,25346,9497,454221498,426229342,75889,29693,8369304241,8328130471,99.62,99.66,76.37,74.82,33.27,31.88,4.14,3.83
-97839,41,049,41049,475,188,518015024,518015024,475,188,518015024,518015024,11173,4442,5305622177,5261843781,100,100,100,100,4.25,4.23,9.76,9.84
-97840,41,001,41001,98,73,306555688,295777905,98,73,306555688,295777905,16134,8826,7998840327,7947008933,100,100,100,100,0.61,0.83,3.83,3.72
-97841,41,061,41061,476,185,49834325,49834325,476,185,49834325,49834325,25748,11489,5279779889,5274784008,100,100,100,100,1.85,1.61,0.94,0.94
-97842,41,063,41063,153,139,1802594748,1797077397,153,139,1802594748,1797077397,7008,4108,8162789883,8148590560,100,100,100,100,2.18,3.38,22.08,22.05
-97843,41,021,41021,26,13,109391026,94480121,647,307,929781031,914870126,1871,1156,3167140174,3120439560,4.02,4.23,11.77,10.33,1.39,1.12,3.45,3.03
-97843,41,049,41049,621,294,820390005,820390005,647,307,929781031,914870126,11173,4442,5305622177,5261843781,95.98,95.77,88.23,89.67,5.56,6.62,15.46,15.59
-97844,41,049,41049,3806,1393,127159873,107475730,3806,1393,127159873,107475730,11173,4442,5305622177,5261843781,100,100,100,100,34.06,31.36,2.4,2.04
-97845,41,023,41023,2652,1341,168393411,168393411,2652,1341,168393411,168393411,7445,4344,11730761596,11728867794,100,100,100,100,35.62,30.87,1.44,1.44
-97846,41,063,41063,1891,1358,1954530226,1947017249,1891,1358,1954530226,1947017249,7008,4108,8162789883,8148590560,100,100,100,100,26.98,33.06,23.94,23.89
-97848,41,023,41023,191,114,483288600,483235088,195,117,490365953,490312441,7445,4344,11730761596,11728867794,97.95,97.44,98.56,98.56,2.57,2.62,4.12,4.12
-97848,41,069,41069,4,3,7077353,7077353,195,117,490365953,490312441,1441,895,4442421608,4441179416,2.05,2.56,1.44,1.44,0.28,0.34,0.16,0.16
-97850,41,061,41061,16955,7434,750434799,749321189,16955,7434,750434799,749321189,25748,11489,5279779889,5274784008,100,100,100,100,65.85,64.71,14.21,14.21
-97856,41,023,41023,366,290,1117471248,1117453064,366,290,1117471248,1117453064,7445,4344,11730761596,11728867794,100,100,100,100,4.92,6.68,9.53,9.53
-97857,41,063,41063,457,250,699001533,697924474,457,250,699001533,697924474,7008,4108,8162789883,8148590560,100,100,100,100,6.52,6.09,8.56,8.56
-97859,41,059,41059,123,158,207531223,207466418,123,158,207531223,207466418,75889,29693,8369304241,8328130471,100,100,100,100,0.16,0.53,2.48,2.49
-97862,41,059,41059,11666,4689,711859009,711811977,11666,4689,711859009,711811977,75889,29693,8369304241,8328130471,100,100,100,100,15.37,15.79,8.51,8.55
-97864,41,023,41023,262,179,844501408,844501408,262,179,844501408,844501408,7445,4344,11730761596,11728867794,100,100,100,100,3.52,4.12,7.2,7.2
-97865,41,023,41023,1160,612,989233748,989204306,1160,612,989233748,989204306,7445,4344,11730761596,11728867794,100,100,100,100,15.58,14.09,8.43,8.43
-97867,41,001,41001,118,65,58069784,58004668,763,365,353537210,352614569,16134,8826,7998840327,7947008933,15.47,17.81,16.43,16.45,0.73,0.74,0.73,0.73
-97867,41,061,41061,645,300,295467426,294609901,763,365,353537210,352614569,25748,11489,5279779889,5274784008,84.53,82.19,83.57,83.55,2.51,2.61,5.6,5.59
-97868,41,059,41059,1991,880,1145025681,1144922590,1991,880,1145025681,1144922590,75889,29693,8369304241,8328130471,100,100,100,100,2.62,2.96,13.68,13.75
-97869,41,001,41001,0,0,59181634,59181634,1135,623,890078527,889807068,16134,8826,7998840327,7947008933,0,0,6.65,6.65,0,0,0.74,0.74
-97869,41,023,41023,1135,623,830896893,830625434,1135,623,890078527,889807068,7445,4344,11730761596,11728867794,100,100,93.35,93.35,15.25,14.34,7.08,7.08
-97870,41,001,41001,573,387,350341414,338747084,573,387,350341414,338747084,16134,8826,7998840327,7947008933,100,100,100,100,3.55,4.38,4.38,4.26
-97873,41,023,41023,228,152,198021458,198021458,228,152,198021458,198021458,7445,4344,11730761596,11728867794,100,100,100,100,3.06,3.5,1.69,1.69
-97874,41,069,41069,349,219,593675380,593675380,349,219,593675380,593675380,1441,895,4442421608,4441179416,100,100,100,100,24.22,24.47,13.36,13.37
-97875,41,059,41059,2610,973,162529597,162386295,2610,973,162529597,162386295,75889,29693,8369304241,8328130471,100,100,100,100,3.44,3.28,1.94,1.95
-97876,41,061,41061,837,378,163963821,163963821,837,378,163963821,163963821,25748,11489,5279779889,5274784008,100,100,100,100,3.25,3.29,3.11,3.11
-97877,41,001,41001,229,378,267348554,267314948,283,521,526277238,526144338,16134,8826,7998840327,7947008933,80.92,72.55,50.8,50.81,1.42,4.28,3.34,3.36
-97877,41,023,41023,54,143,258928684,258829390,283,521,526277238,526144338,7445,4344,11730761596,11728867794,19.08,27.45,49.2,49.19,0.73,3.29,2.21,2.21
-97880,41,023,41023,20,46,128887666,128887666,272,272,811086666,811066970,7445,4344,11730761596,11728867794,7.35,16.91,15.89,15.89,0.27,1.06,1.1,1.1
-97880,41,059,41059,252,226,682199000,682179304,272,272,811086666,811066970,75889,29693,8369304241,8328130471,92.65,83.09,84.11,84.11,0.33,0.76,8.15,8.19
-97882,41,059,41059,7760,2134,69131678,61072719,7760,2134,69131678,61072719,75889,29693,8369304241,8328130471,100,100,100,100,10.23,7.19,0.83,0.73
-97883,41,061,41061,2473,1098,691501936,691041137,2473,1098,691501936,691041137,25748,11489,5279779889,5274784008,100,100,100,100,9.6,9.56,13.1,13.1
-97884,41,001,41001,157,160,210033648,206023260,157,160,210033648,206023260,16134,8826,7998840327,7947008933,100,100,100,100,0.97,1.81,2.63,2.59
-97885,41,063,41063,1383,700,780503322,780503322,1383,700,780503322,780503322,7008,4108,8162789883,8148590560,100,100,100,100,19.73,17.04,9.56,9.58
-97886,41,059,41059,1140,880,368689682,368521751,1140,880,368689682,368521751,75889,29693,8369304241,8328130471,100,100,100,100,1.5,2.96,4.41,4.43
-97901,41,045,41045,692,309,261828438,257708781,692,309,261828438,257708781,31313,11692,25717804527,25608588996,100,100,100,100,2.21,2.64,1.02,1.01
-97903,41,045,41045,109,76,309564223,309279887,109,76,309564223,309279887,31313,11692,25717804527,25608588996,100,100,100,100,0.35,0.65,1.2,1.21
-97904,41,025,41025,176,102,1596921684,1594768434,176,102,1596921684,1594768434,7422,3835,26486282592,26244789736,100,100,100,100,2.37,2.66,6.03,6.08
-97905,41,001,41001,133,102,536120897,536120897,133,102,536120897,536120897,16134,8826,7998840327,7947008933,100,100,100,100,0.82,1.16,6.7,6.75
-97906,41,045,41045,249,130,3200480348,3199687727,249,130,3200480348,3199687727,31313,11692,25717804527,25608588996,100,100,100,100,0.8,1.11,12.44,12.49
-97907,41,001,41001,512,367,567568676,556041845,560,393,837397803,821511138,16134,8826,7998840327,7947008933,91.43,93.38,67.78,67.69,3.17,4.16,7.1,7
-97907,41,045,41045,48,26,269829127,265469293,560,393,837397803,821511138,31313,11692,25717804527,25608588996,8.57,6.62,32.22,32.31,0.15,0.22,1.05,1.04
-97908,41,045,41045,56,48,916004245,913849484,56,48,916004245,913849484,31313,11692,25717804527,25608588996,100,100,100,100,0.18,0.41,3.56,3.57
-97909,41,045,41045,51,22,129029722,129029722,51,22,129029722,129029722,31313,11692,25717804527,25608588996,100,100,100,100,0.16,0.19,0.5,0.5
-97910,16,073,16073,68,51,976885173,975202614,641,419,13462551550,13426781897,11526,4781,19935091492,19853582270,10.61,12.17,7.26,7.26,0.59,1.07,4.9,4.91
-97910,41,045,41045,573,368,12485666377,12451579283,641,419,13462551550,13426781897,31313,11692,25717804527,25608588996,89.39,87.83,92.74,92.74,1.83,3.15,48.55,48.62
-97911,41,045,41045,109,78,1823989529,1809091573,109,78,1823989529,1809091573,31313,11692,25717804527,25608588996,100,100,100,100,0.35,0.67,7.09,7.06
-97913,16,075,16075,4,3,1502785,1438850,5531,2103,1819555620,1781173656,22623,8945,1062607801,1053780320,0.07,0.14,0.08,0.08,0.02,0.03,0.14,0.14
-97913,41,045,41045,5527,2100,1818052835,1779734806,5531,2103,1819555620,1781173656,31313,11692,25717804527,25608588996,99.93,99.86,99.92,99.92,17.65,17.96,7.07,6.95
-97914,41,045,41045,19205,6620,669650372,662536813,19205,6620,669650372,662536813,31313,11692,25717804527,25608588996,100,100,100,100,61.33,56.62,2.6,2.59
-97918,41,045,41045,4537,1829,1114591756,1111697888,4537,1829,1114591756,1111697888,31313,11692,25717804527,25608588996,100,100,100,100,14.49,15.64,4.33,4.34
-97920,41,045,41045,60,28,1201287925,1201094109,60,28,1201287925,1201094109,31313,11692,25717804527,25608588996,100,100,100,100,0.19,0.24,4.67,4.69
-98001,53,033,53033,31911,11249,48969470,48144696,31911,11249,48969470,48144696,1931249,851261,5974763073,5479291809,100,100,100,100,1.65,1.32,0.82,0.88
-98002,53,033,53033,31647,13480,18868959,18530037,31647,13480,18868959,18530037,1931249,851261,5974763073,5479291809,100,100,100,100,1.64,1.58,0.32,0.34
-98003,53,033,53033,44151,18436,30377640,30089472,44151,18436,30377640,30089472,1931249,851261,5974763073,5479291809,100,100,100,100,2.29,2.17,0.51,0.55
-98004,53,033,53033,27946,16568,22378795,18200338,27946,16568,22378795,18200338,1931249,851261,5974763073,5479291809,100,100,100,100,1.45,1.95,0.37,0.33
-98005,53,033,53033,17714,8070,19447940,19429635,17714,8070,19447940,19429635,1931249,851261,5974763073,5479291809,100,100,100,100,0.92,0.95,0.33,0.35
-98006,53,033,53033,36364,13891,29626695,27685306,36364,13891,29626695,27685306,1931249,851261,5974763073,5479291809,100,100,100,100,1.88,1.63,0.5,0.51
-98007,53,033,53033,24889,10996,11366699,11341201,24889,10996,11366699,11341201,1931249,851261,5974763073,5479291809,100,100,100,100,1.29,1.29,0.19,0.21
-98008,53,033,53033,24411,9552,21620215,14250591,24411,9552,21620215,14250591,1931249,851261,5974763073,5479291809,100,100,100,100,1.26,1.12,0.36,0.26
-98010,53,033,53033,5025,2017,41622207,38991722,5025,2017,41622207,38991722,1931249,851261,5974763073,5479291809,100,100,100,100,0.26,0.24,0.7,0.71
-98011,53,033,53033,29212,12646,21201057,21201057,29212,12646,21201057,21201057,1931249,851261,5974763073,5479291809,100,100,100,100,1.51,1.49,0.35,0.39
-98012,53,061,53061,51136,20580,39722824,39681392,51136,20580,39722824,39681392,713335,286659,5688384758,5406013264,100,100,100,100,7.17,7.18,0.7,0.73
-98014,53,033,53033,6765,2631,121972812,117346593,6765,2631,121972812,117346593,1931249,851261,5974763073,5479291809,100,100,100,100,0.35,0.31,2.04,2.14
-98019,53,033,53033,10725,3907,199803219,197687698,10725,3907,199803219,197687698,1931249,851261,5974763073,5479291809,100,100,100,100,0.56,0.46,3.34,3.61
-98020,53,061,53061,18304,8794,15910069,13396283,18304,8794,15910069,13396283,713335,286659,5688384758,5406013264,100,100,100,100,2.57,3.07,0.28,0.25
-98021,53,061,53061,26722,10496,26276137,26276137,26722,10496,26276137,26276137,713335,286659,5688384758,5406013264,100,100,100,100,3.75,3.66,0.46,0.49
-98022,53,033,53033,20631,8606,722365660,717347771,20987,9179,1057694787,1051343227,1931249,851261,5974763073,5479291809,98.3,93.76,68.3,68.23,1.07,1.01,12.09,13.09
-98022,53,053,53053,356,573,335329127,333995456,20987,9179,1057694787,1051343227,795225,325375,4678663318,4324005310,1.7,6.24,31.7,31.77,0.04,0.18,7.17,7.72
-98023,53,033,53033,47510,18026,30334878,26727719,47510,18026,30334878,26727719,1931249,851261,5974763073,5479291809,100,100,100,100,2.46,2.12,0.51,0.49
-98024,53,033,53033,5650,2246,63294422,61945438,5650,2246,63294422,61945438,1931249,851261,5974763073,5479291809,100,100,100,100,0.29,0.26,1.06,1.13
-98026,53,061,53061,35921,15039,27121138,24153199,35921,15039,27121138,24153199,713335,286659,5688384758,5406013264,100,100,100,100,5.04,5.25,0.48,0.45
-98027,53,033,53033,26141,11248,147434712,144495296,26141,11248,147434712,144495296,1931249,851261,5974763073,5479291809,100,100,100,100,1.35,1.32,2.47,2.64
-98028,53,033,53033,20419,8566,16523706,14667571,20419,8566,16523706,14667571,1931249,851261,5974763073,5479291809,100,100,100,100,1.06,1.01,0.28,0.27
-98029,53,033,53033,24348,10222,23232523,23189927,24348,10222,23232523,23189927,1931249,851261,5974763073,5479291809,100,100,100,100,1.26,1.2,0.39,0.42
-98030,53,033,53033,33769,12739,18669250,18448814,33769,12739,18669250,18448814,1931249,851261,5974763073,5479291809,100,100,100,100,1.75,1.5,0.31,0.34
-98031,53,033,53033,36581,12846,19681310,19424908,36581,12846,19681310,19424908,1931249,851261,5974763073,5479291809,100,100,100,100,1.89,1.51,0.33,0.35
-98032,53,033,53033,33853,14451,44077111,43315933,33853,14451,44077111,43315933,1931249,851261,5974763073,5479291809,100,100,100,100,1.75,1.7,0.74,0.79
-98033,53,033,53033,34338,16615,28485343,24062601,34338,16615,28485343,24062601,1931249,851261,5974763073,5479291809,100,100,100,100,1.78,1.95,0.48,0.44
-98034,53,033,53033,40407,17880,28011687,23633758,40407,17880,28011687,23633758,1931249,851261,5974763073,5479291809,100,100,100,100,2.09,2.1,0.47,0.43
-98036,53,061,53061,36000,14359,25109984,25075706,36000,14359,25109984,25075706,713335,286659,5688384758,5406013264,100,100,100,100,5.05,5.01,0.44,0.46
-98037,53,061,53061,26889,10647,14931093,14931093,26889,10647,14931093,14931093,713335,286659,5688384758,5406013264,100,100,100,100,3.77,3.71,0.26,0.28
-98038,53,033,53033,31171,11387,173217781,172206702,31171,11387,173217781,172206702,1931249,851261,5974763073,5479291809,100,100,100,100,1.61,1.34,2.9,3.14
-98039,53,033,53033,2971,1163,14867517,3737877,2971,1163,14867517,3737877,1931249,851261,5974763073,5479291809,100,100,100,100,0.15,0.14,0.25,0.07
-98040,53,033,53033,22699,9930,33953487,16370442,22699,9930,33953487,16370442,1931249,851261,5974763073,5479291809,100,100,100,100,1.18,1.17,0.57,0.3
-98042,53,033,53033,43673,15820,76705385,73577362,43673,15820,76705385,73577362,1931249,851261,5974763073,5479291809,100,100,100,100,2.26,1.86,1.28,1.34
-98043,53,061,53061,19943,8615,10846225,10570552,19943,8615,10846225,10570552,713335,286659,5688384758,5406013264,100,100,100,100,2.8,3.01,0.19,0.2
-98045,53,033,53033,13888,5536,888449245,872796478,13888,5536,888449245,872796478,1931249,851261,5974763073,5479291809,100,100,100,100,0.72,0.65,14.87,15.93
-98047,53,033,53033,6234,2270,4648108,4619923,6339,2322,6351428,6277098,1931249,851261,5974763073,5479291809,98.34,97.76,73.18,73.6,0.32,0.27,0.08,0.08
-98047,53,053,53053,105,52,1703320,1657175,6339,2322,6351428,6277098,795225,325375,4678663318,4324005310,1.66,2.24,26.82,26.4,0.01,0.02,0.04,0.04
-98050,53,033,53033,322,133,8568685,8567888,322,133,8568685,8567888,1931249,851261,5974763073,5479291809,100,100,100,100,0.02,0.02,0.14,0.16
-98051,53,033,53033,3270,1304,134002670,132339462,3270,1304,134002670,132339462,1931249,851261,5974763073,5479291809,100,100,100,100,0.17,0.15,2.24,2.42
-98052,53,033,53033,58442,25674,54205954,52053966,58442,25674,54205954,52053966,1931249,851261,5974763073,5479291809,100,100,100,100,3.03,3.02,0.91,0.95
-98053,53,033,53033,18784,7652,73926790,73465062,18784,7652,73926790,73465062,1931249,851261,5974763073,5479291809,100,100,100,100,0.97,0.9,1.24,1.34
-98055,53,033,53033,21904,9498,12623941,12373996,21904,9498,12623941,12373996,1931249,851261,5974763073,5479291809,100,100,100,100,1.13,1.12,0.21,0.23
-98056,53,033,53033,32489,13746,23486348,19466244,32489,13746,23486348,19466244,1931249,851261,5974763073,5479291809,100,100,100,100,1.68,1.61,0.39,0.36
-98057,53,033,53033,10613,6049,15952660,15780776,10613,6049,15952660,15780776,1931249,851261,5974763073,5479291809,100,100,100,100,0.55,0.71,0.27,0.29
-98058,53,033,53033,41938,16120,51177423,49037425,41938,16120,51177423,49037425,1931249,851261,5974763073,5479291809,100,100,100,100,2.17,1.89,0.86,0.89
-98059,53,033,53033,34463,13004,51885068,51737366,34463,13004,51885068,51737366,1931249,851261,5974763073,5479291809,100,100,100,100,1.78,1.53,0.87,0.94
-98065,53,033,53033,12699,4556,194153919,191904766,12699,4556,194153919,191904766,1931249,851261,5974763073,5479291809,100,100,100,100,0.66,0.54,3.25,3.5
-98068,53,033,53033,79,250,293963415,286992896,403,894,718646105,687680542,1931249,851261,5974763073,5479291809,19.6,27.96,40.91,41.73,0,0.03,4.92,5.24
-98068,53,037,53037,324,644,424682690,400687646,403,894,718646105,687680542,40915,21900,6042274276,5949903934,80.4,72.04,59.09,58.27,0.79,2.94,7.03,6.73
-98070,53,033,53033,10624,5552,128854856,95633751,10624,5552,128854856,95633751,1931249,851261,5974763073,5479291809,100,100,100,100,0.55,0.65,2.16,1.75
-98072,53,033,53033,19337,7960,33997605,33927321,22312,9091,47029177,46958893,1931249,851261,5974763073,5479291809,86.67,87.56,72.29,72.25,1,0.94,0.57,0.62
-98072,53,061,53061,2975,1131,13031572,13031572,22312,9091,47029177,46958893,713335,286659,5688384758,5406013264,13.33,12.44,27.71,27.75,0.42,0.39,0.23,0.24
-98074,53,033,53033,25748,8942,31664992,27654818,25748,8942,31664992,27654818,1931249,851261,5974763073,5479291809,100,100,100,100,1.33,1.05,0.53,0.5
-98075,53,033,53033,20715,7005,28769950,24552292,20715,7005,28769950,24552292,1931249,851261,5974763073,5479291809,100,100,100,100,1.07,0.82,0.48,0.45
-98077,53,033,53033,12658,4397,38358337,37971240,13585,4775,45395611,44819919,1931249,851261,5974763073,5479291809,93.18,92.08,84.5,84.72,0.66,0.52,0.64,0.69
-98077,53,061,53061,927,378,7037274,6848679,13585,4775,45395611,44819919,713335,286659,5688384758,5406013264,6.82,7.92,15.5,15.28,0.13,0.13,0.12,0.13
-98087,53,061,53061,29976,12255,14906942,14418856,29976,12255,14906942,14418856,713335,286659,5688384758,5406013264,100,100,100,100,4.2,4.28,0.26,0.27
-98092,53,033,53033,32876,11946,113447810,111611931,39816,14935,117437507,115596899,1931249,851261,5974763073,5479291809,82.57,79.99,96.6,96.55,1.7,1.4,1.9,2.04
-98092,53,053,53053,6940,2989,3989697,3984968,39816,14935,117437507,115596899,795225,325375,4678663318,4324005310,17.43,20.01,3.4,3.45,0.87,0.92,0.09,0.09
-98101,53,033,53033,10238,9226,1615836,1344752,10238,9226,1615836,1344752,1931249,851261,5974763073,5479291809,100,100,100,100,0.53,1.08,0.03,0.02
-98102,53,033,53033,20756,14289,4040376,3396112,20756,14289,4040376,3396112,1931249,851261,5974763073,5479291809,100,100,100,100,1.07,1.68,0.07,0.06
-98103,53,033,53033,45911,24128,13711122,12005476,45911,24128,13711122,12005476,1931249,851261,5974763073,5479291809,100,100,100,100,2.38,2.83,0.23,0.22
-98104,53,033,53033,13095,7711,2259691,2007034,13095,7711,2259691,2007034,1931249,851261,5974763073,5479291809,100,100,100,100,0.68,0.91,0.04,0.04
-98105,53,033,53033,43924,17161,17124049,10689306,43924,17161,17124049,10689306,1931249,851261,5974763073,5479291809,100,100,100,100,2.27,2.02,0.29,0.2
-98106,53,033,53033,22873,9990,15078272,14236532,22873,9990,15078272,14236532,1931249,851261,5974763073,5479291809,100,100,100,100,1.18,1.17,0.25,0.26
-98107,53,033,53033,21147,12360,6408243,5704026,21147,12360,6408243,5704026,1931249,851261,5974763073,5479291809,100,100,100,100,1.09,1.45,0.11,0.1
-98108,53,033,53033,22374,8194,20349414,19384665,22374,8194,20349414,19384665,1931249,851261,5974763073,5479291809,100,100,100,100,1.16,0.96,0.34,0.35
-98109,53,033,53033,20715,13906,6257262,5178191,20715,13906,6257262,5178191,1931249,851261,5974763073,5479291809,100,100,100,100,1.07,1.63,0.1,0.09
-98110,53,035,53035,23025,10584,101011855,71512405,23025,10584,101011855,71512405,251133,107367,1465722918,1022893152,100,100,100,100,9.17,9.86,6.89,6.99
-98112,53,033,53033,21077,10897,12021093,8187984,21077,10897,12021093,8187984,1931249,851261,5974763073,5479291809,100,100,100,100,1.09,1.28,0.2,0.15
-98115,53,033,53033,46206,21623,22520140,17051603,46206,21623,22520140,17051603,1931249,851261,5974763073,5479291809,100,100,100,100,2.39,2.54,0.38,0.31
-98116,53,033,53033,22241,11961,9537618,7657204,22241,11961,9537618,7657204,1931249,851261,5974763073,5479291809,100,100,100,100,1.15,1.41,0.16,0.14
-98117,53,033,53033,31365,14213,11783656,10214490,31365,14213,11783656,10214490,1931249,851261,5974763073,5479291809,100,100,100,100,1.62,1.67,0.2,0.19
-98118,53,033,53033,42731,16162,23018543,16178230,42731,16162,23018543,16178230,1931249,851261,5974763073,5479291809,100,100,100,100,2.21,1.9,0.39,0.3
-98119,53,033,53033,21039,11592,7934763,6308526,21039,11592,7934763,6308526,1931249,851261,5974763073,5479291809,100,100,100,100,1.09,1.36,0.13,0.12
-98121,53,033,53033,12628,10149,1687213,1141212,12628,10149,1687213,1141212,1931249,851261,5974763073,5479291809,100,100,100,100,0.65,1.19,0.03,0.02
-98122,53,033,53033,31454,17123,9148478,5992910,31454,17123,9148478,5992910,1931249,851261,5974763073,5479291809,100,100,100,100,1.63,2.01,0.15,0.11
-98125,53,033,53033,37081,18677,17937292,13960901,37081,18677,17937292,13960901,1931249,851261,5974763073,5479291809,100,100,100,100,1.92,2.19,0.3,0.25
-98126,53,033,53033,20698,9805,9741087,7963648,20698,9805,9741087,7963648,1931249,851261,5974763073,5479291809,100,100,100,100,1.07,1.15,0.16,0.15
-98133,53,033,53033,44555,21903,18557285,18378984,44555,21903,18557285,18378984,1931249,851261,5974763073,5479291809,100,100,100,100,2.31,2.57,0.31,0.34
-98134,53,033,53033,644,236,10626665,8738521,644,236,10626665,8738521,1931249,851261,5974763073,5479291809,100,100,100,100,0.03,0.03,0.18,0.16
-98136,53,033,53033,14770,7533,8117669,5954028,14770,7533,8117669,5954028,1931249,851261,5974763073,5479291809,100,100,100,100,0.76,0.88,0.14,0.11
-98144,53,033,53033,26881,12660,13363849,8818482,26881,12660,13363849,8818482,1931249,851261,5974763073,5479291809,100,100,100,100,1.39,1.49,0.22,0.16
-98146,53,033,53033,25922,10222,13806968,12045888,25922,10222,13806968,12045888,1931249,851261,5974763073,5479291809,100,100,100,100,1.34,1.2,0.23,0.22
-98148,53,033,53033,10010,4588,8117264,8117264,10010,4588,8117264,8117264,1931249,851261,5974763073,5479291809,100,100,100,100,0.52,0.54,0.14,0.15
-98154,53,033,53033,0,0,9147,9147,0,0,9147,9147,1931249,851261,5974763073,5479291809,0,0,100,100,0,0,0,0
-98155,53,033,53033,32778,13905,21317809,19604378,32778,13905,21317809,19604378,1931249,851261,5974763073,5479291809,100,100,100,100,1.7,1.63,0.36,0.36
-98158,53,033,53033,0,0,5726911,5726911,0,0,5726911,5726911,1931249,851261,5974763073,5479291809,0,0,100,100,0,0,0.1,0.1
-98164,53,033,53033,141,126,9165,9165,141,126,9165,9165,1931249,851261,5974763073,5479291809,100,100,100,100,0.01,0.01,0,0
-98166,53,033,53033,20301,8953,18723342,14685852,20301,8953,18723342,14685852,1931249,851261,5974763073,5479291809,100,100,100,100,1.05,1.05,0.31,0.27
-98168,53,033,53033,33734,12541,23456992,23030102,33734,12541,23456992,23030102,1931249,851261,5974763073,5479291809,100,100,100,100,1.75,1.47,0.39,0.42
-98174,53,033,53033,0,0,9145,9145,0,0,9145,9145,1931249,851261,5974763073,5479291809,0,0,100,100,0,0,0,0
-98177,53,033,53033,19030,8078,18329253,14752872,19030,8078,18329253,14752872,1931249,851261,5974763073,5479291809,100,100,100,100,0.99,0.95,0.31,0.27
-98178,53,033,53033,24092,9290,15200429,12564278,24092,9290,15200429,12564278,1931249,851261,5974763073,5479291809,100,100,100,100,1.25,1.09,0.25,0.23
-98188,53,033,53033,23111,9959,20306607,19551348,23111,9959,20306607,19551348,1931249,851261,5974763073,5479291809,100,100,100,100,1.2,1.17,0.34,0.36
-98195,53,033,53033,0,0,234297,183452,0,0,234297,183452,1931249,851261,5974763073,5479291809,0,0,100,100,0,0,0,0
-98198,53,033,53033,34584,14328,22491028,20167178,34584,14328,22491028,20167178,1931249,851261,5974763073,5479291809,100,100,100,100,1.79,1.68,0.38,0.37
-98199,53,033,53033,19686,9810,14704666,10815353,19686,9810,14704666,10815353,1931249,851261,5974763073,5479291809,100,100,100,100,1.02,1.15,0.25,0.2
-98201,53,061,53061,29582,13899,26299896,19365402,29582,13899,26299896,19365402,713335,286659,5688384758,5406013264,100,100,100,100,4.15,4.85,0.46,0.36
-98203,53,061,53061,34354,14245,29984160,27723263,34354,14245,29984160,27723263,713335,286659,5688384758,5406013264,100,100,100,100,4.82,4.97,0.53,0.51
-98204,53,061,53061,39380,17330,20779331,20779331,39380,17330,20779331,20779331,713335,286659,5688384758,5406013264,100,100,100,100,5.52,6.05,0.37,0.38
-98205,53,061,53061,12283,4599,55364845,49040504,12283,4599,55364845,49040504,713335,286659,5688384758,5406013264,100,100,100,100,1.72,1.6,0.97,0.91
-98207,53,061,53061,758,1,786018,575949,758,1,786018,575949,713335,286659,5688384758,5406013264,100,100,100,100,0.11,0,0.01,0.01
-98208,53,061,53061,51802,19792,42506401,41918895,51802,19792,42506401,41918895,713335,286659,5688384758,5406013264,100,100,100,100,7.26,6.9,0.75,0.78
-98220,53,073,53073,634,276,53080049,52834909,634,276,53080049,52834909,201140,90665,6483958071,5456733620,100,100,100,100,0.32,0.3,0.82,0.97
-98221,53,055,53055,97,428,25343490,10229425,20429,11005,171820584,137490614,15769,13313,1608546675,450437066,0.47,3.89,14.75,7.44,0.62,3.21,1.58,2.27
-98221,53,057,53057,20332,10577,146477094,127261189,20429,11005,171820584,137490614,116901,51473,4973124821,4483794950,99.53,96.11,85.25,92.56,17.39,20.55,2.95,2.84
-98222,53,055,53055,33,166,33833972,17123093,33,166,33833972,17123093,15769,13313,1608546675,450437066,100,100,100,100,0.21,1.25,2.1,3.8
-98223,53,061,53061,40815,16079,832194213,827807585,40815,16079,832194213,827807585,713335,286659,5688384758,5406013264,100,100,100,100,5.72,5.61,14.63,15.31
-98224,53,033,53033,294,309,520229533,510454144,294,309,520229533,510454144,1931249,851261,5974763073,5479291809,100,100,100,100,0.02,0.04,8.71,9.32
-98225,53,073,53073,46172,20986,38926232,32513414,46172,20986,38926232,32513414,201140,90665,6483958071,5456733620,100,100,100,100,22.96,23.15,0.6,0.6
-98226,53,073,53073,41235,17623,310291426,277732046,41235,17623,310291426,277732046,201140,90665,6483958071,5456733620,100,100,100,100,20.5,19.44,4.79,5.09
-98229,53,057,53057,299,133,6842452,6842452,30321,13600,140507962,127275005,116901,51473,4973124821,4483794950,0.99,0.98,4.87,5.38,0.26,0.26,0.14,0.15
-98229,53,073,53073,30022,13467,133665510,120432553,30321,13600,140507962,127275005,201140,90665,6483958071,5456733620,99.01,99.02,95.13,94.62,14.93,14.85,2.06,2.21
-98230,53,073,53073,15710,8802,125791406,113340436,15710,8802,125791406,113340436,201140,90665,6483958071,5456733620,100,100,100,100,7.81,9.71,1.94,2.08
-98232,53,057,53057,3920,1792,143601584,138642205,3920,1792,143601584,138642205,116901,51473,4973124821,4483794950,100,100,100,100,3.35,3.48,2.89,3.09
-98233,53,057,53057,14871,5897,88347201,87664372,14871,5897,88347201,87664372,116901,51473,4973124821,4483794950,100,100,100,100,12.72,11.46,1.78,1.96
-98235,53,057,53057,103,45,79407,79407,103,45,79407,79407,116901,51473,4973124821,4483794950,100,100,100,100,0.09,0.09,0,0
-98236,53,029,53029,5635,3430,84861620,59279796,5635,3430,84861620,59279796,78506,40234,1339994931,539879663,100,100,100,100,7.18,8.53,6.33,10.98
-98237,53,057,53057,4024,2326,630633988,614849952,4025,2329,864190043,827707761,116901,51473,4973124821,4483794950,99.98,99.87,72.97,74.28,3.44,4.52,12.68,13.71
-98237,53,073,53073,1,3,233556055,212857809,4025,2329,864190043,827707761,201140,90665,6483958071,5456733620,0.02,0.13,27.03,25.72,0,0,3.6,3.9
-98238,53,057,53057,85,29,563363,563363,85,29,563363,563363,116901,51473,4973124821,4483794950,100,100,100,100,0.07,0.06,0.01,0.01
-98239,53,029,53029,6646,3714,110352389,75803716,6646,3714,110352389,75803716,78506,40234,1339994931,539879663,100,100,100,100,8.47,9.23,8.24,14.04
-98240,53,073,53073,3061,1157,53640662,53583344,3061,1157,53640662,53583344,201140,90665,6483958071,5456733620,100,100,100,100,1.52,1.28,0.83,0.98
-98241,53,057,53057,318,125,134762441,132619788,2129,1024,1066734648,1060181498,116901,51473,4973124821,4483794950,14.94,12.21,12.63,12.51,0.27,0.24,2.71,2.96
-98241,53,061,53061,1811,899,931972207,927561710,2129,1024,1066734648,1060181498,713335,286659,5688384758,5406013264,85.06,87.79,87.37,87.49,0.25,0.31,16.38,17.16
-98243,53,055,53055,507,607,39466219,13302672,507,607,39466219,13302672,15769,13313,1608546675,450437066,100,100,100,100,3.22,4.56,2.45,2.95
-98244,53,073,53073,3001,2145,1276842864,1264000692,3001,2145,1276842864,1264000692,201140,90665,6483958071,5456733620,100,100,100,100,1.49,2.37,19.69,23.16
-98245,53,055,53055,3651,2565,113695068,82864214,3651,2565,113695068,82864214,15769,13313,1608546675,450437066,100,100,100,100,23.15,19.27,7.07,18.4
-98247,53,073,53073,9072,3282,168028250,164987407,9072,3282,168028250,164987407,201140,90665,6483958071,5456733620,100,100,100,100,4.51,3.62,2.59,3.02
-98248,53,073,53073,22361,8739,189438531,183462686,22361,8739,189438531,183462686,201140,90665,6483958071,5456733620,100,100,100,100,11.12,9.64,2.92,3.36
-98249,53,029,53029,4561,3097,64122699,41291160,4561,3097,64122699,41291160,78506,40234,1339994931,539879663,100,100,100,100,5.81,7.7,4.79,7.65
-98250,53,055,53055,7664,5556,278988953,160966488,7664,5556,278988953,160966488,15769,13313,1608546675,450437066,100,100,100,100,48.6,41.73,17.34,35.74
-98251,53,061,53061,4567,2174,401388660,394887169,4567,2174,401388660,394887169,713335,286659,5688384758,5406013264,100,100,100,100,0.64,0.76,7.06,7.3
-98252,53,061,53061,8777,3736,697592167,692257955,8777,3736,697592167,692257955,713335,286659,5688384758,5406013264,100,100,100,100,1.23,1.3,12.26,12.81
-98253,53,029,53029,1837,1470,48016118,32118442,1837,1470,48016118,32118442,78506,40234,1339994931,539879663,100,100,100,100,2.34,3.65,3.58,5.95
-98255,53,057,53057,245,119,1349289,1349289,245,119,1349289,1349289,116901,51473,4973124821,4483794950,100,100,100,100,0.21,0.23,0.03,0.03
-98256,53,061,53061,420,454,219715066,218855030,420,454,219715066,218855030,713335,286659,5688384758,5406013264,100,100,100,100,0.06,0.16,3.86,4.05
-98257,53,057,53057,4134,2227,53146296,47486891,4134,2227,53146296,47486891,116901,51473,4973124821,4483794950,100,100,100,100,3.54,4.33,1.07,1.06
-98258,53,061,53061,30524,11341,79381065,74699782,30524,11341,79381065,74699782,713335,286659,5688384758,5406013264,100,100,100,100,4.28,3.96,1.4,1.38
-98260,53,029,53029,5278,3285,85366280,68456492,5278,3285,85366280,68456492,78506,40234,1339994931,539879663,100,100,100,100,6.72,8.16,6.37,12.68
-98261,53,055,53055,2383,2410,140929210,77211492,2383,2410,140929210,77211492,15769,13313,1608546675,450437066,100,100,100,100,15.11,18.1,8.76,17.14
-98262,53,073,53073,964,964,24783263,23949593,964,964,24783263,23949593,201140,90665,6483958071,5456733620,100,100,100,100,0.48,1.06,0.38,0.44
-98263,53,057,53057,76,35,659167,421041,76,35,659167,421041,116901,51473,4973124821,4483794950,100,100,100,100,0.07,0.07,0.01,0.01
-98264,53,073,53073,18893,7254,150315682,147753338,18893,7254,150315682,147753338,201140,90665,6483958071,5456733620,100,100,100,100,9.39,8,2.32,2.71
-98266,53,073,53073,3642,1655,62773406,62038225,3642,1655,62773406,62038225,201140,90665,6483958071,5456733620,100,100,100,100,1.81,1.83,0.97,1.14
-98267,53,057,53057,534,477,906150493,900046747,534,477,906150493,900046747,116901,51473,4973124821,4483794950,100,100,100,100,0.46,0.93,18.22,20.07
-98270,53,061,53061,45899,17093,37502742,37060532,45899,17093,37502742,37060532,713335,286659,5688384758,5406013264,100,100,100,100,6.43,5.96,0.66,0.69
-98271,53,061,53061,27184,10496,133569817,120688056,27184,10496,133569817,120688056,713335,286659,5688384758,5406013264,100,100,100,100,3.81,3.66,2.35,2.23
-98272,53,061,53061,27942,9398,285024869,283032842,27942,9398,285024869,283032842,713335,286659,5688384758,5406013264,100,100,100,100,3.92,3.28,5.01,5.24
-98273,53,057,53057,28717,10954,230275104,217802411,28717,10954,230275104,217802411,116901,51473,4973124821,4483794950,100,100,100,100,24.57,21.28,4.63,4.86
-98274,53,057,53057,16613,7377,372189925,365437844,16613,7377,372189925,365437844,116901,51473,4973124821,4483794950,100,100,100,100,14.21,14.33,7.48,8.15
-98275,53,061,53061,20256,8548,22361205,19768770,20256,8548,22361205,19768770,713335,286659,5688384758,5406013264,100,100,100,100,2.84,2.98,0.39,0.37
-98276,53,073,53073,450,151,542593,542593,450,151,542593,542593,201140,90665,6483958071,5456733620,100,100,100,100,0.22,0.17,0.01,0.01
-98277,53,029,53029,37823,16752,184317195,146129625,37823,16752,184317195,146129625,78506,40234,1339994931,539879663,100,100,100,100,48.18,41.64,13.76,27.07
-98278,53,029,53029,1065,1,17339275,13633654,1065,1,17339275,13633654,78506,40234,1339994931,539879663,100,100,100,100,1.36,0,1.29,2.53
-98279,53,055,53055,608,680,60127726,36329362,608,680,60127726,36329362,15769,13313,1608546675,450437066,100,100,100,100,3.86,5.11,3.74,8.07
-98280,53,055,53055,480,444,22353501,18480114,480,444,22353501,18480114,15769,13313,1608546675,450437066,100,100,100,100,3.04,3.34,1.39,4.1
-98281,53,073,53073,1314,2068,17042030,12652231,1314,2068,17042030,12652231,201140,90665,6483958071,5456733620,100,100,100,100,0.65,2.28,0.26,0.23
-98282,53,029,53029,15661,8485,146968537,102982587,15661,8485,146968537,102982587,78506,40234,1339994931,539879663,100,100,100,100,19.95,21.09,10.97,19.08
-98283,53,057,53057,355,240,47021116,45503154,434,297,1488666071,1419061566,116901,51473,4973124821,4483794950,81.8,80.81,3.16,3.21,0.3,0.47,0.95,1.01
-98283,53,073,53073,79,57,1441644955,1373558412,434,297,1488666071,1419061566,201140,90665,6483958071,5456733620,18.2,19.19,96.84,96.79,0.04,0.06,22.23,25.17
-98284,53,057,53057,22211,9098,684435187,673338829,24331,10142,749844452,731873913,116901,51473,4973124821,4483794950,91.29,89.71,91.28,92,19,17.68,13.76,15.02
-98284,53,073,53073,2120,1044,65409265,58535084,24331,10142,749844452,731873913,201140,90665,6483958071,5456733620,8.71,10.29,8.72,8,1.05,1.15,1.01,1.07
-98286,53,055,53055,240,245,44189322,19964274,240,245,44189322,19964274,15769,13313,1608546675,450437066,100,100,100,100,1.52,1.84,2.75,4.43
-98288,53,033,53033,333,515,558736869,547876467,333,515,558736869,547876467,1931249,851261,5974763073,5479291809,100,100,100,100,0.02,0.06,9.35,10
-98290,53,061,53061,32714,13141,314079883,306698662,32714,13141,314079883,306698662,713335,286659,5688384758,5406013264,100,100,100,100,4.59,4.58,5.52,5.67
-98292,53,057,53057,64,22,2094131,2094131,20987,8779,207594516,192963470,116901,51473,4973124821,4483794950,0.3,0.25,1.01,1.09,0.05,0.04,0.04,0.05
-98292,53,061,53061,20923,8757,205500385,190869339,20987,8779,207594516,192963470,713335,286659,5688384758,5406013264,99.7,99.75,98.99,98.91,2.93,3.05,3.61,3.53
-98294,53,061,53061,6595,2568,156159638,155411158,6595,2568,156159638,155411158,713335,286659,5688384758,5406013264,100,100,100,100,0.92,0.9,2.75,2.87
-98295,53,073,53073,2409,989,75170528,74785340,2409,989,75170528,74785340,201140,90665,6483958071,5456733620,100,100,100,100,1.2,1.09,1.16,1.37
-98296,53,061,53061,27956,9814,89948305,88264899,27956,9814,89948305,88264899,713335,286659,5688384758,5406013264,100,100,100,100,3.92,3.42,1.58,1.63
-98297,53,055,53055,106,211,20709068,11703383,106,211,20709068,11703383,15769,13313,1608546675,450437066,100,100,100,100,0.67,1.58,1.29,2.6
-98303,53,053,53053,1037,1025,55117434,20071339,1037,1025,55117434,20071339,795225,325375,4678663318,4324005310,100,100,100,100,0.13,0.32,1.18,0.46
-98304,53,041,53041,185,248,14037546,13767271,759,766,901493640,891110795,75455,34050,6309866390,6223229463,24.37,32.38,1.56,1.54,0.25,0.73,0.22,0.22
-98304,53,053,53053,574,518,887456094,877343524,759,766,901493640,891110795,795225,325375,4678663318,4324005310,75.63,67.62,98.44,98.46,0.07,0.16,18.97,20.29
-98305,53,009,53009,358,228,313186292,310421661,358,228,313186292,310421661,71404,35582,6916919299,4502251295,100,100,100,100,0.5,0.64,4.53,6.89
-98310,53,035,53035,18703,9061,22361376,15439818,18703,9061,22361376,15439818,251133,107367,1465722918,1022893152,100,100,100,100,7.45,8.44,1.53,1.51
-98311,53,035,53035,25880,10305,37643550,28116579,25880,10305,37643550,28116579,251133,107367,1465722918,1022893152,100,100,100,100,10.31,9.6,2.57,2.75
-98312,53,035,53035,30203,14105,174272271,159168131,30203,14105,174272271,159168131,251133,107367,1465722918,1022893152,100,100,100,100,12.03,13.14,11.89,15.56
-98314,53,035,53035,3329,28,3704547,1495426,3329,28,3704547,1495426,251133,107367,1465722918,1022893152,100,100,100,100,1.33,0.03,0.25,0.15
-98315,53,035,53035,6054,1281,31728680,28766162,6054,1281,31728680,28766162,251133,107367,1465722918,1022893152,100,100,100,100,2.41,1.19,2.16,2.81
-98320,53,031,53031,1250,1384,257245195,252865213,1250,1384,257245195,252865213,29872,17767,5654313053,4671561779,100,100,100,100,4.18,7.79,4.55,5.41
-98321,53,053,53053,15152,5534,94493897,93325269,15152,5534,94493897,93325269,795225,325375,4678663318,4324005310,100,100,100,100,1.91,1.7,2.02,2.16
-98323,53,053,53053,702,257,641169368,638112512,702,257,641169368,638112512,795225,325375,4678663318,4324005310,100,100,100,100,0.09,0.08,13.7,14.76
-98325,53,031,53031,1848,871,78511474,77907774,1848,871,78511474,77907774,29872,17767,5654313053,4671561779,100,100,100,100,6.19,4.9,1.39,1.67
-98326,53,009,53009,1412,371,786873631,754265256,1412,371,786873631,754265256,71404,35582,6916919299,4502251295,100,100,100,100,1.98,1.04,11.38,16.75
-98327,53,053,53053,8267,3271,23501585,17788609,8267,3271,23501585,17788609,795225,325375,4678663318,4324005310,100,100,100,100,1.04,1.01,0.5,0.41
-98328,53,053,53053,10433,4329,561618769,548825745,10433,4329,561618769,548825745,795225,325375,4678663318,4324005310,100,100,100,100,1.31,1.33,12,12.69
-98329,53,035,53035,143,39,684612,684612,10545,4240,81508098,66967775,251133,107367,1465722918,1022893152,1.36,0.92,0.84,1.02,0.06,0.04,0.05,0.07
-98329,53,053,53053,10402,4201,80823486,66283163,10545,4240,81508098,66967775,795225,325375,4678663318,4324005310,98.64,99.08,99.16,98.98,1.31,1.29,1.73,1.53
-98330,53,053,53053,149,81,17041639,16907606,149,81,17041639,16907606,795225,325375,4678663318,4324005310,100,100,100,100,0.02,0.02,0.36,0.39
-98331,53,009,53009,5380,2251,367322092,364268152,6261,2533,2147586449,2022178740,71404,35582,6916919299,4502251295,85.93,88.87,17.1,18.01,7.53,6.33,5.31,8.09
-98331,53,031,53031,881,282,1780264357,1657910588,6261,2533,2147586449,2022178740,29872,17767,5654313053,4671561779,14.07,11.13,82.9,81.99,2.95,1.59,31.49,35.49
-98332,53,053,53053,15855,6494,62641000,54162176,15855,6494,62641000,54162176,795225,325375,4678663318,4324005310,100,100,100,100,1.99,2,1.34,1.25
-98333,53,053,53053,3633,1565,38445539,13514702,3633,1565,38445539,13514702,795225,325375,4678663318,4324005310,100,100,100,100,0.46,0.48,0.82,0.31
-98335,53,053,53053,24925,10477,84625264,57778439,24925,10477,84625264,57778439,795225,325375,4678663318,4324005310,100,100,100,100,3.13,3.22,1.81,1.34
-98336,53,041,53041,970,475,179192140,179111986,970,475,179192140,179111986,75455,34050,6309866390,6223229463,100,100,100,100,1.29,1.4,2.84,2.88
-98337,53,035,53035,6697,3436,4484913,2704468,6697,3436,4484913,2704468,251133,107367,1465722918,1022893152,100,100,100,100,2.67,3.2,0.31,0.26
-98338,53,053,53053,24098,9019,140186962,139310526,24098,9019,140186962,139310526,795225,325375,4678663318,4324005310,100,100,100,100,3.03,2.77,3,3.22
-98339,53,031,53031,3326,1645,17543255,14902871,3326,1645,17543255,14902871,29872,17767,5654313053,4671561779,100,100,100,100,11.13,9.26,0.31,0.32
-98340,53,035,53035,2537,1531,30053020,22516951,2537,1531,30053020,22516951,251133,107367,1465722918,1022893152,100,100,100,100,1.01,1.43,2.05,2.2
-98342,53,035,53035,1370,758,8330830,6208869,1370,758,8330830,6208869,251133,107367,1465722918,1022893152,100,100,100,100,0.55,0.71,0.57,0.61
-98345,53,035,53035,554,264,1730900,1272139,554,264,1730900,1272139,251133,107367,1465722918,1022893152,100,100,100,100,0.22,0.25,0.12,0.12
-98346,53,035,53035,9297,4089,84477971,71464150,9297,4089,84477971,71464150,251133,107367,1465722918,1022893152,100,100,100,100,3.7,3.81,5.76,6.99
-98349,53,053,53053,4614,2573,109264724,55159877,4614,2573,109264724,55159877,795225,325375,4678663318,4324005310,100,100,100,100,0.58,0.79,2.34,1.28
-98350,53,009,53009,460,159,8458632,8214634,460,159,8458632,8214634,71404,35582,6916919299,4502251295,100,100,100,100,0.64,0.45,0.12,0.18
-98351,53,053,53053,1115,725,50598550,22137151,1115,725,50598550,22137151,795225,325375,4678663318,4324005310,100,100,100,100,0.14,0.22,1.08,0.51
-98353,53,035,53035,4,4,5079752,2078858,4,4,5079752,2078858,251133,107367,1465722918,1022893152,100,100,100,100,0,0,0.35,0.2
-98354,53,033,53033,826,356,657982,657982,6976,3084,6341497,6237568,1931249,851261,5974763073,5479291809,11.84,11.54,10.38,10.55,0.04,0.04,0.01,0.01
-98354,53,053,53053,6150,2728,5683515,5579586,6976,3084,6341497,6237568,795225,325375,4678663318,4324005310,88.16,88.46,89.62,89.45,0.77,0.84,0.12,0.13
-98355,53,041,53041,628,385,494048623,491306508,628,385,494048623,491306508,75455,34050,6309866390,6223229463,100,100,100,100,0.83,1.13,7.83,7.89
-98356,53,041,53041,2149,1060,276413441,259126114,2149,1060,276413441,259126114,75455,34050,6309866390,6223229463,100,100,100,100,2.85,3.11,4.38,4.16
-98357,53,009,53009,1414,563,110466832,110004759,1414,563,110466832,110004759,71404,35582,6916919299,4502251295,100,100,100,100,1.98,1.58,1.6,2.44
-98358,53,031,53031,897,611,36568439,27655236,897,611,36568439,27655236,29872,17767,5654313053,4671561779,100,100,100,100,3,3.44,0.65,0.59
-98359,53,035,53035,4887,1982,39544169,36315365,4887,1982,39544169,36315365,251133,107367,1465722918,1022893152,100,100,100,100,1.95,1.85,2.7,3.55
-98360,53,053,53053,12221,4497,183877045,179987033,12221,4497,183877045,179987033,795225,325375,4678663318,4324005310,100,100,100,100,1.54,1.38,3.93,4.16
-98361,53,041,53041,1158,1525,1195272817,1187660089,1158,1525,1195272817,1187660089,75455,34050,6309866390,6223229463,100,100,100,100,1.53,4.48,18.94,19.08
-98362,53,009,53009,22230,10915,567478607,567302775,22230,10915,567478607,567302775,71404,35582,6916919299,4502251295,100,100,100,100,31.13,30.68,8.2,12.6
-98363,53,009,53009,13343,6564,1667186839,1639355751,13343,6564,1667186839,1639355751,71404,35582,6916919299,4502251295,100,100,100,100,18.69,18.45,24.1,36.41
-98364,53,035,53035,45,23,779380,779380,45,23,779380,779380,251133,107367,1465722918,1022893152,100,100,100,100,0.02,0.02,0.05,0.08
-98365,53,031,53031,4528,2961,109423429,96360969,4528,2961,109423429,96360969,29872,17767,5654313053,4671561779,100,100,100,100,15.16,16.67,1.94,2.06
-98366,53,035,53035,34258,14423,74358824,60023697,34258,14423,74358824,60023697,251133,107367,1465722918,1022893152,100,100,100,100,13.64,13.43,5.07,5.87
-98367,53,035,53035,27693,10814,212423639,208413122,27693,10814,212423639,208413122,251133,107367,1465722918,1022893152,100,100,100,100,11.03,10.07,14.49,20.37
-98368,53,031,53031,14724,8417,164237838,137583639,14724,8417,164237838,137583639,29872,17767,5654313053,4671561779,100,100,100,100,49.29,47.37,2.9,2.95
-98370,53,035,53035,29528,12638,172078855,146489098,29528,12638,172078855,146489098,251133,107367,1465722918,1022893152,100,100,100,100,11.76,11.77,11.74,14.32
-98371,53,053,53053,20468,8867,30066566,29867982,20468,8867,30066566,29867982,795225,325375,4678663318,4324005310,100,100,100,100,2.57,2.73,0.64,0.69
-98372,53,053,53053,22475,9756,35658779,35314275,22475,9756,35658779,35314275,795225,325375,4678663318,4324005310,100,100,100,100,2.83,3,0.76,0.82
-98373,53,053,53053,22246,9178,24464684,24401165,22246,9178,24464684,24401165,795225,325375,4678663318,4324005310,100,100,100,100,2.8,2.82,0.52,0.56
-98374,53,053,53053,37360,14074,41415702,41032501,37360,14074,41415702,41032501,795225,325375,4678663318,4324005310,100,100,100,100,4.7,4.33,0.89,0.95
-98375,53,053,53053,26863,9270,25173883,25169192,26863,9270,25173883,25169192,795225,325375,4678663318,4324005310,100,100,100,100,3.38,2.85,0.54,0.58
-98376,53,031,53031,1998,1329,341681051,302919715,1998,1329,341681051,302919715,29872,17767,5654313053,4671561779,100,100,100,100,6.69,7.48,6.04,6.48
-98377,53,041,53041,1922,1157,558927197,551042622,1922,1157,558927197,551042622,75455,34050,6309866390,6223229463,100,100,100,100,2.55,3.4,8.86,8.85
-98380,53,035,53035,4173,1915,123583852,108540302,4173,1915,123583852,108540302,251133,107367,1465722918,1022893152,100,100,100,100,1.66,1.78,8.43,10.61
-98381,53,009,53009,371,297,174200975,174200975,371,297,174200975,174200975,71404,35582,6916919299,4502251295,100,100,100,100,0.52,0.83,2.52,3.87
-98382,53,009,53009,26436,14234,426956629,426885927,26856,14501,444764313,444691010,71404,35582,6916919299,4502251295,98.44,98.16,96,96,37.02,40,6.17,9.48
-98382,53,031,53031,420,267,17807684,17805083,26856,14501,444764313,444691010,29872,17767,5654313053,4671561779,1.56,1.84,4,4,1.41,1.5,0.31,0.38
-98383,53,035,53035,19727,8708,50576889,46551571,19727,8708,50576889,46551571,251133,107367,1465722918,1022893152,100,100,100,100,7.86,8.11,3.45,4.55
-98385,53,053,53053,459,185,1259090,1225463,459,185,1259090,1225463,795225,325375,4678663318,4324005310,100,100,100,100,0.06,0.06,0.03,0.03
-98387,53,053,53053,43173,15384,74490326,73507041,43173,15384,74490326,73507041,795225,325375,4678663318,4324005310,100,100,100,100,5.43,4.73,1.59,1.7
-98388,53,053,53053,7508,2867,53790848,23145675,7508,2867,53790848,23145675,795225,325375,4678663318,4324005310,100,100,100,100,0.94,0.88,1.15,0.54
-98390,53,053,53053,10461,4688,25476804,25032472,10461,4688,25476804,25032472,795225,325375,4678663318,4324005310,100,100,100,100,1.32,1.44,0.54,0.58
-98391,53,053,53053,44309,16281,102521836,99908435,44309,16281,102521836,99908435,795225,325375,4678663318,4324005310,100,100,100,100,5.57,5,2.19,2.31
-98392,53,035,53035,2994,1367,5113066,4256226,2994,1367,5113066,4256226,251133,107367,1465722918,1022893152,100,100,100,100,1.19,1.27,0.35,0.42
-98394,53,053,53053,1107,588,16893001,14363481,1107,588,16893001,14363481,795225,325375,4678663318,4324005310,100,100,100,100,0.14,0.18,0.36,0.33
-98396,53,053,53053,662,239,35600362,35538591,662,239,35600362,35538591,795225,325375,4678663318,4324005310,100,100,100,100,0.08,0.07,0.76,0.82
-98402,53,053,53053,6356,3933,3000181,2439379,6356,3933,3000181,2439379,795225,325375,4678663318,4324005310,100,100,100,100,0.8,1.21,0.06,0.06
-98403,53,053,53053,7713,4569,2842069,2842069,7713,4569,2842069,2842069,795225,325375,4678663318,4324005310,100,100,100,100,0.97,1.4,0.06,0.07
-98404,53,053,53053,32086,11390,19779319,19720772,32086,11390,19779319,19720772,795225,325375,4678663318,4324005310,100,100,100,100,4.03,3.5,0.42,0.46
-98405,53,053,53053,22851,10412,10724154,10676833,22851,10412,10724154,10676833,795225,325375,4678663318,4324005310,100,100,100,100,2.87,3.2,0.23,0.25
-98406,53,053,53053,21610,10220,12107369,11053311,21610,10220,12107369,11053311,795225,325375,4678663318,4324005310,100,100,100,100,2.72,3.14,0.26,0.26
-98407,53,053,53053,19885,9427,18763708,14567007,19885,9427,18763708,14567007,795225,325375,4678663318,4324005310,100,100,100,100,2.5,2.9,0.4,0.34
-98408,53,053,53053,18830,7656,8871328,8757847,18830,7656,8871328,8757847,795225,325375,4678663318,4324005310,100,100,100,100,2.37,2.35,0.19,0.2
-98409,53,053,53053,22989,9992,18431554,18412393,22989,9992,18431554,18412393,795225,325375,4678663318,4324005310,100,100,100,100,2.89,3.07,0.39,0.43
-98416,53,053,53053,1014,50,269804,269804,1014,50,269804,269804,795225,325375,4678663318,4324005310,100,100,100,100,0.13,0.02,0.01,0.01
-98418,53,053,53053,10069,4279,4359597,4359597,10069,4279,4359597,4359597,795225,325375,4678663318,4324005310,100,100,100,100,1.27,1.32,0.09,0.1
-98421,53,053,53053,1308,27,21440163,17280014,1308,27,21440163,17280014,795225,325375,4678663318,4324005310,100,100,100,100,0.16,0.01,0.46,0.4
-98422,53,053,53053,20151,7866,17601998,17298972,20151,7866,17601998,17298972,795225,325375,4678663318,4324005310,100,100,100,100,2.53,2.42,0.38,0.4
-98424,53,053,53053,10140,4229,16705501,16337139,10140,4229,16705501,16337139,795225,325375,4678663318,4324005310,100,100,100,100,1.28,1.3,0.36,0.38
-98430,53,053,53053,13,24,1247733,992075,13,24,1247733,992075,795225,325375,4678663318,4324005310,100,100,100,100,0,0.01,0.03,0.02
-98433,53,053,53053,14584,3654,54664468,51009435,14584,3654,54664468,51009435,795225,325375,4678663318,4324005310,100,100,100,100,1.83,1.12,1.17,1.18
-98438,53,053,53053,366,10,2204010,2204010,366,10,2204010,2204010,795225,325375,4678663318,4324005310,100,100,100,100,0.05,0,0.05,0.05
-98439,53,053,53053,4839,2024,22600968,22582097,4839,2024,22600968,22582097,795225,325375,4678663318,4324005310,100,100,100,100,0.61,0.62,0.48,0.52
-98443,53,053,53053,5371,2216,13259333,13154267,5371,2216,13259333,13154267,795225,325375,4678663318,4324005310,100,100,100,100,0.68,0.68,0.28,0.3
-98444,53,053,53053,33956,13520,17560656,17425684,33956,13520,17560656,17425684,795225,325375,4678663318,4324005310,100,100,100,100,4.27,4.16,0.38,0.4
-98445,53,053,53053,29661,11403,26979260,26979260,29661,11403,26979260,26979260,795225,325375,4678663318,4324005310,100,100,100,100,3.73,3.5,0.58,0.62
-98446,53,053,53053,10173,4045,28526357,28470498,10173,4045,28526357,28470498,795225,325375,4678663318,4324005310,100,100,100,100,1.28,1.24,0.61,0.66
-98447,53,053,53053,842,0,122035,122035,842,0,122035,122035,795225,325375,4678663318,4324005310,100,0,100,100,0.11,0,0,0
-98465,53,053,53053,6340,3244,6026640,4304096,6340,3244,6026640,4304096,795225,325375,4678663318,4324005310,100,100,100,100,0.8,1,0.13,0.1
-98466,53,053,53053,26944,12169,17610738,15460766,26944,12169,17610738,15460766,795225,325375,4678663318,4324005310,100,100,100,100,3.39,3.74,0.38,0.36
-98467,53,053,53053,14728,6297,21110611,11896797,14728,6297,21110611,11896797,795225,325375,4678663318,4324005310,100,100,100,100,1.85,1.94,0.45,0.28
-98498,53,053,53053,27546,12330,24911751,22002787,27546,12330,24911751,22002787,795225,325375,4678663318,4324005310,100,100,100,100,3.46,3.79,0.53,0.51
-98499,53,053,53053,29750,13719,25524348,23852571,29750,13719,25524348,23852571,795225,325375,4678663318,4324005310,100,100,100,100,3.74,4.22,0.55,0.55
-98501,53,067,53067,38133,17048,92540321,89203449,38133,17048,92540321,89203449,252264,108182,2003363109,1869871525,100,100,100,100,15.12,15.76,4.62,4.77
-98502,53,067,53067,30491,13997,184188167,140811824,30491,13997,184188167,140811824,252264,108182,2003363109,1869871525,100,100,100,100,12.09,12.94,9.19,7.53
-98503,53,067,53067,36611,15998,31728133,29227044,36611,15998,31728133,29227044,252264,108182,2003363109,1869871525,100,100,100,100,14.51,14.79,1.58,1.56
-98506,53,067,53067,18199,8432,77944281,57955564,18199,8432,77944281,57955564,252264,108182,2003363109,1869871525,100,100,100,100,7.21,7.79,3.89,3.1
-98512,53,067,53067,28130,12039,394012236,389166807,28130,12039,394012236,389166807,252264,108182,2003363109,1869871525,100,100,100,100,11.15,11.13,19.67,20.81
-98513,53,067,53067,31975,12755,156348386,152955099,31975,12755,156348386,152955099,252264,108182,2003363109,1869871525,100,100,100,100,12.68,11.79,7.8,8.18
-98516,53,067,53067,20166,8481,110170269,74190979,20166,8481,110170269,74190979,252264,108182,2003363109,1869871525,100,100,100,100,7.99,7.84,5.5,3.97
-98520,53,027,53027,23814,9519,693042659,618430741,23814,9519,693042659,618430741,72797,35166,5761183504,4926225833,100,100,100,100,32.71,27.07,12.03,12.55
-98524,53,045,53045,3232,1787,43072534,36969791,3232,1787,43072534,36969791,60699,32518,2722124629,2484878730,100,100,100,100,5.32,5.5,1.58,1.49
-98526,53,027,53027,398,236,243511921,225366174,398,236,243511921,225366174,72797,35166,5761183504,4926225833,100,100,100,100,0.55,0.67,4.23,4.57
-98527,53,049,53049,324,230,59409489,25988400,324,230,59409489,25988400,20920,15547,3168549890,2415572451,100,100,100,100,1.55,1.48,1.87,1.08
-98528,53,035,53035,32,12,117345,95823,9983,5013,222463177,189011920,251133,107367,1465722918,1022893152,0.32,0.24,0.05,0.05,0.01,0.01,0.01,0.01
-98528,53,045,53045,9951,5001,222345832,188916097,9983,5013,222463177,189011920,60699,32518,2722124629,2484878730,99.68,99.76,99.95,99.95,16.39,15.38,8.17,7.6
-98530,53,067,53067,565,245,13067571,12908941,565,245,13067571,12908941,252264,108182,2003363109,1869871525,100,100,100,100,0.22,0.23,0.65,0.69
-98531,53,041,53041,22141,9612,289026090,286798951,24121,10301,357480588,353875685,75455,34050,6309866390,6223229463,91.79,93.31,80.85,81.05,29.34,28.23,4.58,4.61
-98531,53,067,53067,1980,689,68454498,67076734,24121,10301,357480588,353875685,252264,108182,2003363109,1869871525,8.21,6.69,19.15,18.95,0.78,0.64,3.42,3.59
-98532,53,041,53041,23596,9580,838161406,835383096,23596,9580,838161406,835383096,75455,34050,6309866390,6223229463,100,100,100,100,31.27,28.14,13.28,13.42
-98533,53,041,53041,609,287,311675660,311104187,609,287,311675660,311104187,75455,34050,6309866390,6223229463,100,100,100,100,0.81,0.84,4.94,5
-98535,53,027,53027,445,392,30158553,26498905,445,392,30158553,26498905,72797,35166,5761183504,4926225833,100,100,100,100,0.61,1.11,0.52,0.54
-98536,53,027,53027,211,153,160537032,158991185,211,153,160537032,158991185,72797,35166,5761183504,4926225833,100,100,100,100,0.29,0.44,2.79,3.23
-98537,53,027,53027,2047,900,371647016,371397617,2129,938,501503440,501254041,72797,35166,5761183504,4926225833,96.15,95.95,74.11,74.09,2.81,2.56,6.45,7.54
-98537,53,049,53049,82,38,129856424,129856424,2129,938,501503440,501254041,20920,15547,3168549890,2415572451,3.85,4.05,25.89,25.91,0.39,0.24,4.1,5.38
-98538,53,041,53041,304,135,274161014,273773355,304,135,274161014,273773355,75455,34050,6309866390,6223229463,100,100,100,100,0.4,0.4,4.34,4.4
-98541,53,027,53027,8715,3519,354221032,350130924,10101,4434,552121692,547573891,72797,35166,5761183504,4926225833,86.28,79.36,64.16,63.94,11.97,10.01,6.15,7.11
-98541,53,045,53045,1386,915,197900660,197442967,10101,4434,552121692,547573891,60699,32518,2722124629,2484878730,13.72,20.64,35.84,36.06,2.28,2.81,7.27,7.95
-98542,53,041,53041,656,284,35204952,35204952,656,284,35204952,35204952,75455,34050,6309866390,6223229463,100,100,100,100,0.87,0.83,0.56,0.57
-98544,53,041,53041,73,30,260229,260229,73,30,260229,260229,75455,34050,6309866390,6223229463,100,100,100,100,0.1,0.09,0,0
-98546,53,045,53045,2909,2168,81580826,68581895,2909,2168,81580826,68581895,60699,32518,2722124629,2484878730,100,100,100,100,4.79,6.67,3,2.76
-98547,53,027,53027,876,895,68120035,60658796,1436,1560,185065560,157790677,72797,35166,5761183504,4926225833,61,57.37,36.81,38.44,1.2,2.55,1.18,1.23
-98547,53,049,53049,560,665,116945525,97131881,1436,1560,185065560,157790677,20920,15547,3168549890,2415572451,39,42.63,63.19,61.56,2.68,4.28,3.69,4.02
-98548,53,045,53045,2193,2224,362240766,355695104,2193,2224,362240766,355695104,60699,32518,2722124629,2484878730,100,100,100,100,3.61,6.84,13.31,14.31
-98550,53,027,53027,11382,5184,666643695,554530299,11382,5184,666643695,554530299,72797,35166,5761183504,4926225833,100,100,100,100,15.64,14.74,11.57,11.26
-98552,53,027,53027,508,219,239583760,237437008,508,219,239583760,237437008,72797,35166,5761183504,4926225833,100,100,100,100,0.7,0.62,4.16,4.82
-98555,53,045,53045,599,850,53015523,52820573,599,850,53015523,52820573,60699,32518,2722124629,2484878730,100,100,100,100,0.99,2.61,1.95,2.13
-98557,53,027,53027,3161,1389,90547097,90183784,3225,1415,93757019,93393706,72797,35166,5761183504,4926225833,98.02,98.16,96.58,96.56,4.34,3.95,1.57,1.83
-98557,53,045,53045,64,26,3209922,3209922,3225,1415,93757019,93393706,60699,32518,2722124629,2484878730,1.98,1.84,3.42,3.44,0.11,0.08,0.12,0.13
-98558,53,053,53053,192,54,357322,327359,192,54,357322,327359,795225,325375,4678663318,4324005310,100,100,100,100,0.02,0.02,0.01,0.01
-98559,53,027,53027,93,34,40625,40625,93,34,40625,40625,72797,35166,5761183504,4926225833,100,100,100,100,0.13,0.1,0,0
-98560,53,045,53045,142,60,149357528,149261191,142,60,149357528,149261191,60699,32518,2722124629,2484878730,100,100,100,100,0.23,0.18,5.49,6.01
-98562,53,027,53027,195,222,2610538,2542358,195,222,2610538,2542358,72797,35166,5761183504,4926225833,100,100,100,100,0.27,0.63,0.05,0.05
-98563,53,027,53027,8001,3407,962834977,946982315,8001,3407,962834977,946982315,72797,35166,5761183504,4926225833,100,100,100,100,10.99,9.69,16.71,19.22
-98564,53,041,53041,2459,1244,387390425,363144019,2459,1244,387390425,363144019,75455,34050,6309866390,6223229463,100,100,100,100,3.26,3.65,6.14,5.84
-98565,53,041,53041,618,243,1603995,1603995,618,243,1603995,1603995,75455,34050,6309866390,6223229463,100,100,100,100,0.82,0.71,0.03,0.03
-98568,53,027,53027,2473,1041,362600999,360351438,2519,1058,392089427,389838892,72797,35166,5761183504,4926225833,98.17,98.39,92.48,92.44,3.4,2.96,6.29,7.31
-98568,53,041,53041,46,17,29488428,29487454,2519,1058,392089427,389838892,75455,34050,6309866390,6223229463,1.83,1.61,7.52,7.56,0.06,0.05,0.47,0.47
-98569,53,027,53027,5784,4998,99389224,37939902,5784,4998,99389224,37939902,72797,35166,5761183504,4926225833,100,100,100,100,7.95,14.21,1.73,0.77
-98570,53,041,53041,3889,1660,307694395,307602563,3889,1660,307694395,307602563,75455,34050,6309866390,6223229463,100,100,100,100,5.15,4.88,4.88,4.94
-98571,53,027,53027,483,447,25486293,22678197,483,447,25486293,22678197,72797,35166,5761183504,4926225833,100,100,100,100,0.66,1.27,0.44,0.46
-98572,53,041,53041,797,362,89972236,89608676,797,362,89972236,89608676,75455,34050,6309866390,6223229463,100,100,100,100,1.06,1.06,1.43,1.44
-98575,53,027,53027,228,166,263841876,262809374,228,166,263841876,262809374,72797,35166,5761183504,4926225833,100,100,100,100,0.31,0.47,4.58,5.33
-98576,53,067,53067,4667,1955,185338219,182880852,4667,1955,185338219,182880852,252264,108182,2003363109,1869871525,100,100,100,100,1.85,1.81,9.25,9.78
-98577,53,049,53049,6338,2923,1017136951,991184568,6338,2923,1017136951,991184568,20920,15547,3168549890,2415572451,100,100,100,100,30.3,18.8,32.1,41.03
-98579,53,041,53041,400,178,88196957,88196957,12870,5009,236017671,234361852,75455,34050,6309866390,6223229463,3.11,3.55,37.37,37.63,0.53,0.52,1.4,1.42
-98579,53,067,53067,12470,4831,147820714,146164895,12870,5009,236017671,234361852,252264,108182,2003363109,1869871525,96.89,96.45,62.63,62.37,4.94,4.47,7.38,7.82
-98580,53,053,53053,11099,4331,369920981,364775307,11099,4331,369920981,364775307,795225,325375,4678663318,4324005310,100,100,100,100,1.4,1.33,7.91,8.44
-98581,53,015,53015,424,285,76099428,76099428,424,285,76099428,76099428,102410,43450,3020473722,2952910628,100,100,100,100,0.41,0.66,2.52,2.58
-98582,53,041,53041,611,301,18854781,18385643,611,301,18854781,18385643,75455,34050,6309866390,6223229463,100,100,100,100,0.81,0.88,0.3,0.3
-98583,53,027,53027,124,47,291134,283657,124,47,291134,283657,72797,35166,5761183504,4926225833,100,100,100,100,0.17,0.13,0.01,0.01
-98584,53,045,53045,36630,16557,976949383,883190500,36630,16557,976949383,883190500,60699,32518,2722124629,2484878730,100,100,100,100,60.35,50.92,35.89,35.54
-98585,53,041,53041,655,388,62746153,57419162,655,388,62746153,57419162,75455,34050,6309866390,6223229463,100,100,100,100,0.87,1.14,0.99,0.92
-98586,53,049,53049,1944,978,452637599,350850902,1944,978,452637599,350850902,20920,15547,3168549890,2415572451,100,100,100,100,9.29,6.29,14.29,14.52
-98587,53,027,53027,942,313,82226537,74150653,942,313,82226537,74150653,72797,35166,5761183504,4926225833,100,100,100,100,1.29,0.89,1.43,1.51
-98588,53,045,53045,1829,1681,128967165,126445138,1829,1681,128967165,126445138,60699,32518,2722124629,2484878730,100,100,100,100,3.01,5.17,4.74,5.09
-98589,53,067,53067,7320,3063,243121945,238300083,7320,3063,243121945,238300083,252264,108182,2003363109,1869871525,100,100,100,100,2.9,2.83,12.14,12.74
-98590,53,049,53049,356,345,20051166,7980778,356,345,20051166,7980778,20920,15547,3168549890,2415572451,100,100,100,100,1.7,2.22,0.63,0.33
-98591,53,041,53041,3952,1710,303356330,299345903,3952,1710,303356330,299345903,75455,34050,6309866390,6223229463,100,100,100,100,5.24,5.02,4.81,4.81
-98592,53,045,53045,1764,1249,50515780,45670104,1764,1249,50515780,45670104,60699,32518,2722124629,2484878730,100,100,100,100,2.91,3.84,1.86,1.84
-98593,53,041,53041,1113,477,34829857,34719238,1113,477,34829857,34719238,75455,34050,6309866390,6223229463,100,100,100,100,1.48,1.4,0.55,0.56
-98595,53,027,53027,2917,2083,23137706,14137875,2917,2083,23137706,14137875,72797,35166,5761183504,4926225833,100,100,100,100,4.01,5.92,0.4,0.29
-98596,53,041,53041,6524,2692,231665686,231197016,6524,2692,231665686,231197016,75455,34050,6309866390,6223229463,100,100,100,100,8.65,7.91,3.67,3.72
-98597,53,067,53067,21557,8649,298628369,289029254,21557,8649,298628369,289029254,252264,108182,2003363109,1869871525,100,100,100,100,8.55,7.99,14.91,15.46
-98601,53,011,53011,2851,1052,188372485,172063573,2982,1109,193318991,176749082,425363,167413,1699635827,1629112686,95.61,94.86,97.44,97.35,0.67,0.63,11.08,10.56
-98601,53,015,53015,131,57,4946506,4685509,2982,1109,193318991,176749082,102410,43450,3020473722,2952910628,4.39,5.14,2.56,2.65,0.13,0.13,0.16,0.16
-98602,53,039,53039,200,122,145030761,145030761,200,122,145030761,145030761,20318,9786,4931742608,4846679228,100,100,100,100,0.98,1.25,2.94,2.99
-98603,53,015,53015,1017,552,316050189,302522143,1017,552,316050189,302522143,102410,43450,3020473722,2952910628,100,100,100,100,0.99,1.27,10.46,10.24
-98604,53,011,53011,34232,11726,187462509,187325219,34232,11726,187462509,187325219,425363,167413,1699635827,1629112686,100,100,100,100,8.05,7,11.03,11.5
-98605,53,039,53039,766,331,14080928,9821831,1225,538,118544693,111955065,20318,9786,4931742608,4846679228,62.53,61.52,11.88,8.77,3.77,3.38,0.29,0.2
-98605,53,059,53059,459,207,104463765,102133234,1225,538,118544693,111955065,11066,5628,4361036311,4288183445,37.47,38.48,88.12,91.23,4.15,3.68,2.4,2.38
-98606,53,011,53011,9027,3076,96898263,96898263,9027,3076,96898263,96898263,425363,167413,1699635827,1629112686,100,100,100,100,2.12,1.84,5.7,5.95
-98607,53,011,53011,27899,10177,128621912,121658124,27899,10177,128621912,121658124,425363,167413,1699635827,1629112686,100,100,100,100,6.56,6.08,7.57,7.47
-98610,53,059,53059,2871,1383,959670017,952000245,2871,1383,959670017,952000245,11066,5628,4361036311,4288183445,100,100,100,100,25.94,24.57,22.01,22.2
-98611,53,015,53015,9133,3760,327109460,322678040,9133,3760,327109460,322678040,102410,43450,3020473722,2952910628,100,100,100,100,8.92,8.65,10.83,10.93
-98612,53,069,53069,2704,1391,221388265,195711118,2704,1391,221388265,195711118,3978,2067,743797085,682138841,100,100,100,100,67.97,67.3,29.76,28.69
-98613,53,039,53039,400,176,239457793,239457793,400,176,239457793,239457793,20318,9786,4931742608,4846679228,100,100,100,100,1.97,1.8,4.86,4.94
-98614,53,049,53049,353,202,82119267,73305884,353,202,82119267,73305884,20920,15547,3168549890,2415572451,100,100,100,100,1.69,1.3,2.59,3.03
-98616,53,015,53015,112,89,7494033,6109821,150,472,563209469,537262707,102410,43450,3020473722,2952910628,74.67,18.86,1.33,1.14,0.11,0.2,0.25,0.21
-98616,53,059,53059,38,383,555715436,531152886,150,472,563209469,537262707,11066,5628,4361036311,4288183445,25.33,81.14,98.67,98.86,0.34,6.81,12.74,12.39
-98617,53,039,53039,1042,458,30491778,28777996,1042,458,30491778,28777996,20318,9786,4931742608,4846679228,100,100,100,100,5.13,4.68,0.62,0.59
-98619,53,039,53039,457,255,386835633,386699373,457,255,386835633,386699373,20318,9786,4931742608,4846679228,100,100,100,100,2.25,2.61,7.84,7.98
-98620,53,039,53039,7123,3515,1275148219,1260155351,7123,3515,1275148219,1260155351,20318,9786,4931742608,4846679228,100,100,100,100,35.06,35.92,25.86,26
-98621,53,049,53049,9,3,47743880,47743880,276,133,109012375,108841488,20920,15547,3168549890,2415572451,3.26,2.26,43.8,43.87,0.04,0.02,1.51,1.98
-98621,53,069,53069,267,130,61268495,61097608,276,133,109012375,108841488,3978,2067,743797085,682138841,96.74,97.74,56.2,56.13,6.71,6.29,8.24,8.96
-98624,53,049,53049,1532,924,145854278,87794909,1532,924,145854278,87794909,20920,15547,3168549890,2415572451,100,100,100,100,7.32,5.94,4.6,3.63
-98625,53,015,53015,6133,2652,213311409,208548406,6133,2652,213311409,208548406,102410,43450,3020473722,2952910628,100,100,100,100,5.99,6.1,7.06,7.06
-98626,53,015,53015,24523,10088,355797702,353415991,24523,10088,355797702,353415991,102410,43450,3020473722,2952910628,100,100,100,100,23.95,23.22,11.78,11.97
-98628,53,039,53039,385,194,22971960,22971960,385,194,22971960,22971960,20318,9786,4931742608,4846679228,100,100,100,100,1.89,1.98,0.47,0.47
-98629,53,011,53011,8364,3038,100598283,100148090,8364,3038,100598283,100148090,425363,167413,1699635827,1629112686,100,100,100,100,1.97,1.81,5.92,6.15
-98631,53,049,53049,3243,3201,68141863,40236924,3243,3201,68141863,40236924,20920,15547,3168549890,2415572451,100,100,100,100,15.5,20.59,2.15,1.67
-98632,53,015,53015,49168,21370,353172189,332042395,49205,21383,355597780,334435769,102410,43450,3020473722,2952910628,99.92,99.94,99.32,99.28,48.01,49.18,11.69,11.24
-98632,53,069,53069,37,13,2425591,2393374,49205,21383,355597780,334435769,3978,2067,743797085,682138841,0.08,0.06,0.68,0.72,0.93,0.63,0.33,0.35
-98635,53,039,53039,1735,927,337852836,332246961,1735,927,337852836,332246961,20318,9786,4931742608,4846679228,100,100,100,100,8.54,9.47,6.85,6.86
-98638,53,049,53049,1321,591,429517065,398401660,1525,705,485158975,437297731,20920,15547,3168549890,2415572451,86.62,83.83,88.53,91.11,6.31,3.8,13.56,16.49
-98638,53,069,53069,204,114,55641910,38896071,1525,705,485158975,437297731,3978,2067,743797085,682138841,13.38,16.17,11.47,8.89,5.13,5.52,7.48,5.7
-98639,53,059,53059,847,418,33567214,33159189,847,418,33567214,33159189,11066,5628,4361036311,4288183445,100,100,100,100,7.65,7.43,0.77,0.77
-98640,53,049,53049,4380,4939,166535436,52515964,4380,4939,166535436,52515964,20920,15547,3168549890,2415572451,100,100,100,100,20.94,31.77,5.26,2.17
-98641,53,049,53049,5,13,106518,106518,5,13,106518,106518,20920,15547,3168549890,2415572451,100,100,100,100,0.02,0.08,0,0
-98642,53,011,53011,15696,5991,155593323,147852512,15696,5991,155593323,147852512,425363,167413,1699635827,1629112686,100,100,100,100,3.69,3.58,9.15,9.08
-98643,53,069,53069,362,219,106018898,94347859,362,219,106018898,94347859,3978,2067,743797085,682138841,100,100,100,100,9.1,10.6,14.25,13.83
-98644,53,049,53049,473,495,2148488,1823365,473,495,2148488,1823365,20920,15547,3168549890,2415572451,100,100,100,100,2.26,3.18,0.07,0.08
-98645,53,015,53015,1429,657,45041747,38597644,1429,657,45041747,38597644,102410,43450,3020473722,2952910628,100,100,100,100,1.4,1.51,1.49,1.31
-98647,53,069,53069,404,200,165873533,158512418,404,200,165873533,158512418,3978,2067,743797085,682138841,100,100,100,100,10.16,9.68,22.3,23.24
-98648,53,059,53059,3100,1541,342928826,319037546,3100,1541,342928826,319037546,11066,5628,4361036311,4288183445,100,100,100,100,28.01,27.38,7.86,7.44
-98649,53,015,53015,895,377,516423253,516317446,895,377,516423253,516317446,102410,43450,3020473722,2952910628,100,100,100,100,0.87,0.87,17.1,17.49
-98650,53,039,53039,959,528,212994197,212884557,959,528,212994197,212884557,20318,9786,4931742608,4846679228,100,100,100,100,4.72,5.4,4.32,4.39
-98651,53,059,53059,939,432,50957721,46239026,939,432,50957721,46239026,11066,5628,4361036311,4288183445,100,100,100,100,8.49,7.68,1.17,1.08
-98660,53,011,53011,11858,5552,60995069,38698053,11858,5552,60995069,38698053,425363,167413,1699635827,1629112686,100,100,100,100,2.79,3.32,3.59,2.38
-98661,53,011,53011,41740,18556,29359221,27512147,41740,18556,29359221,27512147,425363,167413,1699635827,1629112686,100,100,100,100,9.81,11.08,1.73,1.69
-98662,53,011,53011,31644,12331,33338974,33338974,31644,12331,33338974,33338974,425363,167413,1699635827,1629112686,100,100,100,100,7.44,7.37,1.96,2.05
-98663,53,011,53011,14115,6197,11204238,11134084,14115,6197,11204238,11134084,425363,167413,1699635827,1629112686,100,100,100,100,3.32,3.7,0.66,0.68
-98664,53,011,53011,21771,9487,14386364,13615216,21771,9487,14386364,13615216,425363,167413,1699635827,1629112686,100,100,100,100,5.12,5.67,0.85,0.84
-98665,53,011,53011,24057,10045,21042986,20802164,24057,10045,21042986,20802164,425363,167413,1699635827,1629112686,100,100,100,100,5.66,6,1.24,1.28
-98670,53,039,53039,113,71,66449222,66449222,113,71,66449222,66449222,20318,9786,4931742608,4846679228,100,100,100,100,0.56,0.73,1.35,1.37
-98671,53,011,53011,18517,7412,113979728,104271774,21220,8593,239689673,223526619,425363,167413,1699635827,1629112686,87.26,86.26,47.55,46.65,4.35,4.43,6.71,6.4
-98671,53,059,53059,2703,1181,125709945,119254845,21220,8593,239689673,223526619,11066,5628,4361036311,4288183445,12.74,13.74,52.45,53.35,24.43,20.98,2.88,2.78
-98672,53,039,53039,6037,2689,374943799,371567242,6146,2771,379919167,376400105,20318,9786,4931742608,4846679228,98.23,97.04,98.69,98.72,29.71,27.48,7.6,7.67
-98672,53,059,53059,109,82,4975368,4832863,6146,2771,379919167,376400105,11066,5628,4361036311,4288183445,1.77,2.96,1.31,1.28,0.98,1.46,0.11,0.11
-98673,53,039,53039,404,208,46857004,33643510,404,208,46857004,33643510,20318,9786,4931742608,4846679228,100,100,100,100,1.99,2.13,0.95,0.69
-98674,53,011,53011,2584,1043,80210538,78067846,12029,4606,226611626,214836558,425363,167413,1699635827,1629112686,21.48,22.64,35.4,36.34,0.61,0.62,4.72,4.79
-98674,53,015,53015,9445,3563,146401088,136768712,12029,4606,226611626,214836558,102410,43450,3020473722,2952910628,78.52,77.36,64.6,63.66,9.22,8.2,4.85,4.63
-98675,53,011,53011,6713,2052,305910703,305779639,6713,2052,305910703,305779639,425363,167413,1699635827,1629112686,100,100,100,100,1.58,1.23,18,18.77
-98682,53,011,53011,52893,18926,78100407,78100407,52893,18926,78100407,78100407,425363,167413,1699635827,1629112686,100,100,100,100,12.43,11.3,4.6,4.79
-98683,53,011,53011,30832,13684,20113705,18805420,30832,13684,20113705,18805420,425363,167413,1699635827,1629112686,100,100,100,100,7.25,8.17,1.18,1.15
-98684,53,011,53011,26968,10316,18071469,18064308,26968,10316,18071469,18064308,425363,167413,1699635827,1629112686,100,100,100,100,6.34,6.16,1.06,1.11
-98685,53,011,53011,26217,9903,25576726,25188829,26217,9903,25576726,25188829,425363,167413,1699635827,1629112686,100,100,100,100,6.16,5.92,1.5,1.55
-98686,53,011,53011,17385,6849,29798924,29788044,17385,6849,29798924,29788044,425363,167413,1699635827,1629112686,100,100,100,100,4.09,4.09,1.75,1.83
-98801,53,007,53007,40977,16686,430307578,420417984,40977,16686,430307578,420417984,72453,35465,7754117343,7564124657,100,100,100,100,56.56,47.05,5.55,5.56
-98802,53,017,53017,28719,11297,472902966,464787144,28719,11297,472902966,464787144,38431,16004,4787995018,4711872269,100,100,100,100,74.73,70.59,9.88,9.86
-98811,53,007,53007,71,34,13423862,13423862,71,34,13423862,13423862,72453,35465,7754117343,7564124657,100,100,100,100,0.1,0.1,0.17,0.18
-98812,53,017,53017,612,240,116031832,105751376,4899,1775,710077742,686964768,38431,16004,4787995018,4711872269,12.49,13.52,16.34,15.39,1.59,1.5,2.42,2.24
-98812,53,047,53047,4287,1535,594045910,581213392,4899,1775,710077742,686964768,41120,22245,13765249392,13643999206,87.51,86.48,83.66,84.61,10.43,6.9,4.32,4.26
-98813,53,017,53017,3036,996,249144284,235066272,3176,1084,324985294,305926126,38431,16004,4787995018,4711872269,95.59,91.88,76.66,76.84,7.9,6.22,5.2,4.99
-98813,53,047,53047,140,88,75841010,70859854,3176,1084,324985294,305926126,41120,22245,13765249392,13643999206,4.41,8.12,23.34,23.16,0.34,0.4,0.55,0.52
-98814,53,047,53047,466,351,388716870,388376215,466,351,388716870,388376215,41120,22245,13765249392,13643999206,100,100,100,100,1.13,1.58,2.82,2.85
-98815,53,007,53007,7233,2864,308631649,307735121,7233,2864,308631649,307735121,72453,35465,7754117343,7564124657,100,100,100,100,9.98,8.08,3.98,4.07
-98816,53,007,53007,6376,4640,1126903131,1021776356,6394,4676,1133686918,1027248248,72453,35465,7754117343,7564124657,99.72,99.23,99.4,99.47,8.8,13.08,14.53,13.51
-98816,53,017,53017,18,36,6783787,5471892,6394,4676,1133686918,1027248248,38431,16004,4787995018,4711872269,0.28,0.77,0.6,0.53,0.05,0.22,0.14,0.12
-98817,53,007,53007,366,144,3456845,2544385,366,144,3456845,2544385,72453,35465,7754117343,7564124657,100,100,100,100,0.51,0.41,0.04,0.03
-98819,53,047,53047,258,287,323003238,320507529,258,287,323003238,320507529,41120,22245,13765249392,13643999206,100,100,100,100,0.63,1.29,2.35,2.35
-98821,53,007,53007,519,213,4953223,4754899,519,213,4953223,4754899,72453,35465,7754117343,7564124657,100,100,100,100,0.72,0.6,0.06,0.06
-98822,53,007,53007,1953,999,1137420099,1131837710,1953,999,1137420099,1131837710,72453,35465,7754117343,7564124657,100,100,100,100,2.7,2.82,14.67,14.96
-98823,53,017,53017,51,284,170389141,170389141,11055,4576,773725877,772478178,38431,16004,4787995018,4711872269,0.46,6.21,22.02,22.06,0.13,1.77,3.56,3.62
-98823,53,025,53025,11004,4292,603336736,602089037,11055,4576,773725877,772478178,89120,35083,7229482404,6939907170,99.54,93.79,77.98,77.94,12.35,12.23,8.35,8.68
-98824,53,025,53025,181,82,990406,990406,181,82,990406,990406,89120,35083,7229482404,6939907170,100,100,100,100,0.2,0.23,0.01,0.01
-98826,53,007,53007,6504,5598,2652037317,2631314141,6504,5598,2652037317,2631314141,72453,35465,7754117343,7564124657,100,100,100,100,8.98,15.78,34.2,34.79
-98827,53,047,53047,312,254,836691648,825195816,312,254,836691648,825195816,41120,22245,13765249392,13643999206,100,100,100,100,0.76,1.14,6.08,6.05
-98828,53,007,53007,2138,811,125120645,120919796,2146,817,150964318,146763469,72453,35465,7754117343,7564124657,99.63,99.27,82.88,82.39,2.95,2.29,1.61,1.6
-98828,53,037,53037,8,6,25843673,25843673,2146,817,150964318,146763469,40915,21900,6042274276,5949903934,0.37,0.73,17.12,17.61,0.02,0.03,0.43,0.43
-98829,53,047,53047,564,274,179072121,178304282,564,274,179072121,178304282,41120,22245,13765249392,13643999206,100,100,100,100,1.37,1.23,1.3,1.31
-98830,53,017,53017,494,276,1174044881,1166999173,494,276,1174044881,1166999173,38431,16004,4787995018,4711872269,100,100,100,100,1.29,1.72,24.52,24.77
-98831,53,007,53007,3708,2147,140627833,121577832,3708,2147,140627833,121577832,72453,35465,7754117343,7564124657,100,100,100,100,5.12,6.05,1.81,1.61
-98832,53,025,53025,294,86,377570992,377271605,320,103,518333622,517811402,89120,35083,7229482404,6939907170,91.88,83.5,72.84,72.86,0.33,0.25,5.22,5.44
-98832,53,043,53043,26,17,140762630,140539797,320,103,518333622,517811402,10570,5776,6058896152,5984151955,8.13,16.5,27.16,27.14,0.25,0.29,2.32,2.35
-98833,53,047,53047,150,360,522301741,522121524,150,360,522301741,522121524,41120,22245,13765249392,13643999206,100,100,100,100,0.36,1.62,3.79,3.83
-98834,53,047,53047,239,194,191445763,191382871,239,194,191445763,191382871,41120,22245,13765249392,13643999206,100,100,100,100,0.58,0.87,1.39,1.4
-98836,53,007,53007,584,225,19943544,19786083,584,225,19943544,19786083,72453,35465,7754117343,7564124657,100,100,100,100,0.81,0.63,0.26,0.26
-98837,53,025,53025,39722,15479,1333720300,1250595193,39722,15479,1333720300,1250595193,89120,35083,7229482404,6939907170,100,100,100,100,44.57,44.12,18.45,18.02
-98840,53,047,53047,4851,2145,1097282692,1081267659,4851,2145,1097282692,1081267659,41120,22245,13765249392,13643999206,100,100,100,100,11.8,9.64,7.97,7.92
-98841,53,047,53047,9197,3866,1009464156,993865626,9197,3866,1009464156,993865626,41120,22245,13765249392,13643999206,100,100,100,100,22.37,17.38,7.33,7.28
-98843,53,017,53017,1817,1224,182563356,169761186,1817,1224,182563356,169761186,38431,16004,4787995018,4711872269,100,100,100,100,4.73,7.65,3.81,3.6
-98844,53,047,53047,4740,3038,872753560,856254904,4740,3038,872753560,856254904,41120,22245,13765249392,13643999206,100,100,100,100,11.53,13.66,6.34,6.28
-98845,53,017,53017,128,71,180136042,180122104,128,71,180136042,180122104,38431,16004,4787995018,4711872269,100,100,100,100,0.33,0.44,3.76,3.82
-98846,53,047,53047,1173,603,237262068,230695250,1173,603,237262068,230695250,41120,22245,13765249392,13643999206,100,100,100,100,2.85,2.71,1.72,1.69
-98847,53,007,53007,1920,905,419227543,418773216,1920,905,419227543,418773216,72453,35465,7754117343,7564124657,100,100,100,100,2.65,2.55,5.41,5.54
-98848,53,017,53017,51,42,27526478,26632893,11518,4958,1188091851,1165967409,38431,16004,4787995018,4711872269,0.44,0.85,2.32,2.28,0.13,0.26,0.57,0.57
-98848,53,025,53025,11467,4916,1160565373,1139334516,11518,4958,1188091851,1165967409,89120,35083,7229482404,6939907170,99.56,99.15,97.68,97.72,12.87,14.01,16.05,16.42
-98849,53,047,53047,1078,733,400086356,397586050,1078,733,400086356,397586050,41120,22245,13765249392,13643999206,100,100,100,100,2.62,3.3,2.91,2.91
-98850,53,017,53017,1543,596,65862172,58790268,1543,596,65862172,58790268,38431,16004,4787995018,4711872269,100,100,100,100,4.01,3.72,1.38,1.25
-98851,53,025,53025,4014,2084,422684688,411451359,4014,2084,422684688,411451359,89120,35083,7229482404,6939907170,100,100,100,100,4.5,5.94,5.85,5.93
-98852,53,007,53007,104,199,603911691,582849631,104,199,603911691,582849631,72453,35465,7754117343,7564124657,100,100,100,100,0.14,0.56,7.79,7.71
-98853,53,025,53025,23,28,25714790,20248632,23,28,25714790,20248632,89120,35083,7229482404,6939907170,100,100,100,100,0.03,0.08,0.36,0.29
-98855,53,047,53047,5863,3400,1669946807,1662923140,5863,3400,1669946807,1662923140,41120,22245,13765249392,13643999206,100,100,100,100,14.26,15.28,12.13,12.19
-98856,53,047,53047,2464,1587,1175196665,1174332087,2464,1587,1175196665,1174332087,41120,22245,13765249392,13643999206,100,100,100,100,5.99,7.13,8.54,8.61
-98857,53,001,53001,150,48,114001095,113926964,4082,1340,427361674,421950818,18728,6242,4998292095,4985668796,3.67,3.58,26.68,27,0.8,0.77,2.28,2.29
-98857,53,025,53025,3932,1292,313360579,308023854,4082,1340,427361674,421950818,89120,35083,7229482404,6939907170,96.33,96.42,73.32,73,4.41,3.68,4.33,4.44
-98858,53,017,53017,1521,708,1005784484,1002061010,1521,708,1005784484,1002061010,38431,16004,4787995018,4711872269,100,100,100,100,3.96,4.42,21.01,21.27
-98859,53,047,53047,238,249,348380648,348134731,238,249,348380648,348134731,41120,22245,13765249392,13643999206,100,100,100,100,0.58,1.12,2.53,2.55
-98860,53,025,53025,259,142,199096967,199037454,259,142,199096967,199037454,89120,35083,7229482404,6939907170,100,100,100,100,0.29,0.4,2.75,2.87
-98862,53,047,53047,2218,2069,1020070712,1017618374,2218,2072,1162666029,1160184395,41120,22245,13765249392,13643999206,100,99.86,87.74,87.71,5.39,9.3,7.41,7.46
-98862,53,073,53073,0,3,142595317,142566021,2218,2072,1162666029,1160184395,201140,90665,6483958071,5456733620,0,0.14,12.26,12.29,0,0,2.2,2.61
-98901,53,037,53037,59,36,111403803,109981581,30169,10287,306480225,302110890,40915,21900,6042274276,5949903934,0.2,0.35,36.35,36.4,0.14,0.16,1.84,1.85
-98901,53,077,53077,30110,10251,195076422,192129309,30169,10287,306480225,302110890,243231,85474,11166154758,11125023321,99.8,99.65,63.65,63.6,12.38,11.99,1.75,1.73
-98902,53,077,53077,46322,17714,23647160,23373808,46322,17714,23647160,23373808,243231,85474,11166154758,11125023321,100,100,100,100,19.04,20.72,0.21,0.21
-98903,53,077,53077,14517,5648,749576797,749040854,14517,5648,749576797,749040854,243231,85474,11166154758,11125023321,100,100,100,100,5.97,6.61,6.71,6.73
-98908,53,077,53077,35240,14656,256586745,255917365,35240,14656,256586745,255917365,243231,85474,11166154758,11125023321,100,100,100,100,14.49,17.15,2.3,2.3
-98921,53,077,53077,516,118,326160,326160,516,118,326160,326160,243231,85474,11166154758,11125023321,100,100,100,100,0.21,0.14,0,0
-98922,53,037,53037,5468,4639,1158397566,1158190455,5468,4639,1158397566,1158190455,40915,21900,6042274276,5949903934,100,100,100,100,13.36,21.18,19.17,19.47
-98923,53,077,53077,1434,464,15623478,15623478,1434,464,15623478,15623478,243231,85474,11166154758,11125023321,100,100,100,100,0.59,0.54,0.14,0.14
-98925,53,037,53037,689,827,334342728,325189820,689,827,334342728,325189820,40915,21900,6042274276,5949903934,100,100,100,100,1.68,3.78,5.53,5.47
-98926,53,037,53037,30239,12883,1500488665,1494509227,30239,12883,1500488665,1494509227,40915,21900,6042274276,5949903934,100,100,100,100,73.91,58.83,24.83,25.12
-98929,53,077,53077,0,27,2996126,2996126,0,27,2996126,2996126,243231,85474,11166154758,11125023321,0,100,100,100,0,0.03,0.03,0.03
-98930,53,005,53005,893,281,47613027,47613027,15252,4503,123746386,123083474,175177,68618,4558374112,4403961281,5.85,6.24,38.48,38.68,0.51,0.41,1.04,1.08
-98930,53,077,53077,14359,4222,76133359,75470447,15252,4503,123746386,123083474,243231,85474,11166154758,11125023321,94.15,93.76,61.52,61.32,5.9,4.94,0.68,0.68
-98932,53,077,53077,5032,1361,87988545,87507442,5032,1361,87988545,87507442,243231,85474,11166154758,11125023321,100,100,100,100,2.07,1.59,0.79,0.79
-98933,53,077,53077,1267,365,62558521,62558521,1267,365,62558521,62558521,243231,85474,11166154758,11125023321,100,100,100,100,0.52,0.43,0.56,0.56
-98934,53,037,53037,1117,489,2210185,2210185,1117,489,2210185,2210185,40915,21900,6042274276,5949903934,100,100,100,100,2.73,2.23,0.04,0.04
-98935,53,077,53077,4190,1133,696562093,693407684,4190,1133,696562093,693407684,243231,85474,11166154758,11125023321,100,100,100,100,1.72,1.33,6.24,6.23
-98936,53,077,53077,5872,1964,367562390,366600477,5872,1964,367562390,366600477,243231,85474,11166154758,11125023321,100,100,100,100,2.41,2.3,3.29,3.3
-98937,53,037,53037,0,9,31131510,31116352,4112,2478,2052166200,2032983911,40915,21900,6042274276,5949903934,0,0.36,1.52,1.53,0,0.04,0.52,0.52
-98937,53,077,53077,4112,2469,2021034690,2001867559,4112,2478,2052166200,2032983911,243231,85474,11166154758,11125023321,100,99.64,98.48,98.47,1.69,2.89,18.1,17.99
-98938,53,077,53077,2177,611,95672912,95672912,2177,611,95672912,95672912,243231,85474,11166154758,11125023321,100,100,100,100,0.9,0.71,0.86,0.86
-98939,53,077,53077,167,52,738747,738747,167,52,738747,738747,243231,85474,11166154758,11125023321,100,100,100,100,0.07,0.06,0.01,0.01
-98940,53,037,53037,760,1076,297447398,277789488,760,1076,297447398,277789488,40915,21900,6042274276,5949903934,100,100,100,100,1.86,4.91,4.92,4.67
-98941,53,037,53037,919,647,12531574,12531574,919,647,12531574,12531574,40915,21900,6042274276,5949903934,100,100,100,100,2.25,2.95,0.21,0.21
-98942,53,077,53077,16973,6471,489253208,487909447,16973,6471,489253208,487909447,243231,85474,11166154758,11125023321,100,100,100,100,6.98,7.57,4.38,4.39
-98943,53,037,53037,660,342,2243346,2223598,660,342,2243346,2223598,40915,21900,6042274276,5949903934,100,100,100,100,1.61,1.56,0.04,0.04
-98944,53,005,53005,43,20,1158797808,1132060937,22014,6415,1524595932,1497260973,175177,68618,4558374112,4403961281,0.2,0.31,76.01,75.61,0.02,0.03,25.42,25.71
-98944,53,077,53077,21971,6395,365798124,365200036,22014,6415,1524595932,1497260973,243231,85474,11166154758,11125023321,99.8,99.69,23.99,24.39,9.03,7.48,3.28,3.28
-98946,53,037,53037,495,229,47498840,47267202,495,229,47498840,47267202,40915,21900,6042274276,5949903934,100,100,100,100,1.21,1.05,0.79,0.79
-98947,53,077,53077,2902,976,106837711,106837711,2902,976,106837711,106837711,243231,85474,11166154758,11125023321,100,100,100,100,1.19,1.14,0.96,0.96
-98948,53,077,53077,13225,3701,565452704,565156330,13225,3701,565452704,565156330,243231,85474,11166154758,11125023321,100,100,100,100,5.44,4.33,5.06,5.08
-98950,53,037,53037,177,73,81629918,60332577,177,73,81629918,60332577,40915,21900,6042274276,5949903934,100,100,100,100,0.43,0.33,1.35,1.01
-98951,53,077,53077,13739,3824,389991316,389536396,13739,3824,389991316,389536396,243231,85474,11166154758,11125023321,100,100,100,100,5.65,4.47,3.49,3.5
-98952,53,077,53077,2330,662,533481857,533301571,2330,662,533481857,533301571,243231,85474,11166154758,11125023321,100,100,100,100,0.96,0.77,4.78,4.79
-98953,53,077,53077,6681,2359,163160443,163160443,6681,2359,163160443,163160443,243231,85474,11166154758,11125023321,100,100,100,100,2.75,2.76,1.46,1.47
-99001,53,063,53063,6151,1742,18401954,18401954,6151,1742,18401954,18401954,471221,201434,4612001354,4568198649,100,100,100,100,1.31,0.86,0.4,0.4
-99003,53,063,53063,4848,2006,181860436,181679393,4848,2006,181860436,181679393,471221,201434,4612001354,4568198649,100,100,100,100,1.03,1,3.94,3.98
-99004,53,063,53063,18365,7517,858798504,846278246,18376,7522,882771402,870251144,471221,201434,4612001354,4568198649,99.94,99.93,97.28,97.25,3.9,3.73,18.62,18.53
-99004,53,075,53075,11,5,23972898,23972898,18376,7522,882771402,870251144,44776,19323,5639956178,5592015929,0.06,0.07,2.72,2.75,0.02,0.03,0.43,0.43
-99005,53,063,53063,8574,2974,102757583,102757583,8574,2974,102757583,102757583,471221,201434,4612001354,4568198649,100,100,100,100,1.82,1.48,2.23,2.25
-99006,53,051,53051,91,71,51554821,50733507,11946,4765,476841263,475627744,13001,7936,3691360640,3625955333,0.76,1.49,10.81,10.67,0.7,0.89,1.4,1.4
-99006,53,063,53063,10045,3995,231662220,231574647,11946,4765,476841263,475627744,471221,201434,4612001354,4568198649,84.09,83.84,48.58,48.69,2.13,1.98,5.02,5.07
-99006,53,065,53065,1810,699,193624222,193319590,11946,4765,476841263,475627744,43531,21156,6580512027,6417380728,15.15,14.67,40.61,40.65,4.16,3.3,2.94,3.01
-99008,53,043,53043,357,168,313035256,312937343,641,287,336187930,336029875,10570,5776,6058896152,5984151955,55.69,58.54,93.11,93.13,3.38,2.91,5.17,5.23
-99008,53,063,53063,284,119,23152674,23092532,641,287,336187930,336029875,471221,201434,4612001354,4568198649,44.31,41.46,6.89,6.87,0.06,0.06,0.5,0.51
-99009,53,051,53051,810,344,61630981,61315809,3947,1666,210829072,207737563,13001,7936,3691360640,3625955333,20.52,20.65,29.23,29.52,6.23,4.33,1.67,1.69
-99009,53,063,53063,3137,1322,149198091,146421754,3947,1666,210829072,207737563,471221,201434,4612001354,4568198649,79.48,79.35,70.77,70.48,0.67,0.66,3.23,3.21
-99011,53,063,53063,2776,858,16913880,16913880,2776,858,16913880,16913880,471221,201434,4612001354,4568198649,100,100,100,100,0.59,0.43,0.37,0.37
-99012,53,063,53063,1064,416,246191714,246191714,1064,416,246191714,246191714,471221,201434,4612001354,4568198649,100,100,100,100,0.23,0.21,5.34,5.39
-99013,53,043,53043,182,72,36628653,35370247,1785,691,273798044,264478407,10570,5776,6058896152,5984151955,10.2,10.42,13.38,13.37,1.72,1.25,0.6,0.59
-99013,53,063,53063,126,58,33944516,30990589,1785,691,273798044,264478407,471221,201434,4612001354,4568198649,7.06,8.39,12.4,11.72,0.03,0.03,0.74,0.68
-99013,53,065,53065,1477,561,203224875,198117571,1785,691,273798044,264478407,43531,21156,6580512027,6417380728,82.75,81.19,74.22,74.91,3.39,2.65,3.09,3.09
-99016,53,063,53063,12480,4967,65471087,65287891,12480,4967,65471087,65287891,471221,201434,4612001354,4568198649,100,100,100,100,2.65,2.47,1.42,1.43
-99017,53,075,53075,161,87,220640370,219408556,161,87,220640370,219408556,44776,19323,5639956178,5592015929,100,100,100,100,0.36,0.45,3.91,3.92
-99018,53,063,53063,282,131,90604171,90604171,282,131,90604171,90604171,471221,201434,4612001354,4568198649,100,100,100,100,0.06,0.07,1.96,1.98
-99019,53,063,53063,9502,4153,59755611,56625159,9502,4153,59755611,56625159,471221,201434,4612001354,4568198649,100,100,100,100,2.02,2.06,1.3,1.24
-99020,53,063,53063,82,32,232804,232804,82,32,232804,232804,471221,201434,4612001354,4568198649,100,100,100,100,0.02,0.02,0.01,0.01
-99021,53,063,53063,9174,3703,217948824,217948824,9174,3703,217948824,217948824,471221,201434,4612001354,4568198649,100,100,100,100,1.95,1.84,4.73,4.77
-99022,53,063,53063,8820,3344,183324153,178670710,8820,3344,183324153,178670710,471221,201434,4612001354,4568198649,100,100,100,100,1.87,1.66,3.97,3.91
-99023,53,063,53063,529,197,35338077,35338077,529,197,35338077,35338077,471221,201434,4612001354,4568198649,100,100,100,100,0.11,0.1,0.77,0.77
-99025,53,063,53063,5232,2127,120204269,115272867,5232,2127,120204269,115272867,471221,201434,4612001354,4568198649,100,100,100,100,1.11,1.06,2.61,2.52
-99026,53,063,53063,3273,1352,133710825,126462497,9042,3564,196225969,183608637,471221,201434,4612001354,4568198649,36.2,37.93,68.14,68.88,0.69,0.67,2.9,2.77
-99026,53,065,53065,5769,2212,62515144,57146140,9042,3564,196225969,183608637,43531,21156,6580512027,6417380728,63.8,62.07,31.86,31.12,13.25,10.46,0.95,0.89
-99027,53,063,53063,6101,2524,39417183,39071861,6101,2524,39417183,39071861,471221,201434,4612001354,4568198649,100,100,100,100,1.29,1.25,0.85,0.86
-99029,53,043,53043,968,414,181377312,181030236,1289,537,307632796,306871354,10570,5776,6058896152,5984151955,75.1,77.09,58.96,58.99,9.16,7.17,2.99,3.03
-99029,53,063,53063,321,123,126255484,125841118,1289,537,307632796,306871354,471221,201434,4612001354,4568198649,24.9,22.91,41.04,41.01,0.07,0.06,2.74,2.75
-99030,53,063,53063,1032,446,203036631,203036631,1032,446,203036631,203036631,471221,201434,4612001354,4568198649,100,100,100,100,0.22,0.22,4.4,4.44
-99031,53,063,53063,1137,473,183815950,183815950,1137,473,183815950,183815950,471221,201434,4612001354,4568198649,100,100,100,100,0.24,0.23,3.99,4.02
-99032,53,001,53001,16,8,75567452,71293314,691,351,572260813,562986022,18728,6242,4998292095,4985668796,2.32,2.28,13.21,12.66,0.09,0.13,1.51,1.43
-99032,53,043,53043,675,343,496693361,491692708,691,351,572260813,562986022,10570,5776,6058896152,5984151955,97.68,97.72,86.79,87.34,6.39,5.94,8.2,8.22
-99033,53,063,53063,11,8,15918063,15918063,895,421,97428649,97428649,471221,201434,4612001354,4568198649,1.23,1.9,16.34,16.34,0,0,0.35,0.35
-99033,53,075,53075,884,413,81510586,81510586,895,421,97428649,97428649,44776,19323,5639956178,5592015929,98.77,98.1,83.66,83.66,1.97,2.14,1.45,1.46
-99034,53,065,53065,209,112,44859307,44505527,209,112,44859307,44505527,43531,21156,6580512027,6417380728,100,100,100,100,0.48,0.53,0.68,0.69
-99036,53,063,53063,1448,568,105892139,105892139,1448,568,105892139,105892139,471221,201434,4612001354,4568198649,100,100,100,100,0.31,0.28,2.3,2.32
-99037,53,063,53063,12973,5028,16830195,16750927,12973,5028,16830195,16750927,471221,201434,4612001354,4568198649,100,100,100,100,2.75,2.5,0.36,0.37
-99039,53,063,53063,87,47,11614539,11614539,87,47,11614539,11614539,471221,201434,4612001354,4568198649,100,100,100,100,0.02,0.02,0.25,0.25
-99040,53,065,53065,734,285,275131687,271211141,734,285,275131687,271211141,43531,21156,6580512027,6417380728,100,100,100,100,1.69,1.35,4.18,4.23
-99101,53,065,53065,1453,628,283840014,283615030,1453,628,283840014,283615030,43531,21156,6580512027,6417380728,100,100,100,100,3.34,2.97,4.31,4.42
-99102,53,075,53075,500,259,597769,597769,500,259,597769,597769,44776,19323,5639956178,5592015929,100,100,100,100,1.12,1.34,0.01,0.01
-99103,53,025,53025,37,18,148413206,148387388,497,252,590471580,590375063,89120,35083,7229482404,6939907170,7.44,7.14,25.13,25.13,0.04,0.05,2.05,2.14
-99103,53,043,53043,460,234,442058374,441987675,497,252,590471580,590375063,10570,5776,6058896152,5984151955,92.56,92.86,74.87,74.87,4.35,4.05,7.3,7.39
-99105,53,001,53001,61,37,314371276,313041682,61,37,314371276,313041682,18728,6242,4998292095,4985668796,100,100,100,100,0.33,0.59,6.29,6.28
-99109,53,065,53065,5109,2454,725936219,725587412,5109,2454,725936219,725587412,43531,21156,6580512027,6417380728,100,100,100,100,11.74,11.6,11.03,11.31
-99110,53,063,53063,165,71,6576713,6576713,1667,622,97353510,97353510,471221,201434,4612001354,4568198649,9.9,11.41,6.76,6.76,0.04,0.04,0.14,0.14
-99110,53,065,53065,1502,551,90776797,90776797,1667,622,97353510,97353510,43531,21156,6580512027,6417380728,90.1,88.59,93.24,93.24,3.45,2.6,1.38,1.41
-99111,53,075,53075,4047,1954,754249395,747252282,4047,1954,754249395,747252282,44776,19323,5639956178,5592015929,100,100,100,100,9.04,10.11,13.37,13.36
-99113,53,075,53075,761,312,255270557,248083935,761,312,255270557,248083935,44776,19323,5639956178,5592015929,100,100,100,100,1.7,1.61,4.53,4.44
-99114,53,065,53065,12018,5988,1893414949,1886882696,12018,5988,1893414949,1886882696,43531,21156,6580512027,6417380728,100,100,100,100,27.61,28.3,28.77,29.4
-99115,53,017,53017,157,84,793236284,791128483,1143,882,1094031920,1084259015,38431,16004,4787995018,4711872269,13.74,9.52,72.51,72.96,0.41,0.52,16.57,16.79
-99115,53,025,53025,986,798,300795636,293130532,1143,882,1094031920,1084259015,89120,35083,7229482404,6939907170,86.26,90.48,27.49,27.04,1.11,2.27,4.16,4.22
-99116,53,017,53017,187,94,398406,345095,1439,715,131684466,121663008,38431,16004,4787995018,4711872269,13,13.15,0.3,0.28,0.49,0.59,0.01,0.01
-99116,53,025,53025,0,0,556108,478978,1439,715,131684466,121663008,89120,35083,7229482404,6939907170,0,0,0.42,0.39,0,0,0.01,0.01
-99116,53,047,53047,1252,621,130729952,120838935,1439,715,131684466,121663008,41120,22245,13765249392,13643999206,87,86.85,99.28,99.32,3.04,2.79,0.95,0.89
-99117,53,043,53043,485,305,478422179,477692479,485,305,478422179,477692479,10570,5776,6058896152,5984151955,100,100,100,100,4.59,5.28,7.9,7.98
-99118,53,019,53019,931,497,510135455,510135455,931,497,510135455,510135455,7551,4403,5846435031,5706154501,100,100,100,100,12.33,11.29,8.73,8.94
-99119,53,051,53051,1204,952,1068190385,1049239552,1204,952,1068190385,1049239552,13001,7936,3691360640,3625955333,100,100,100,100,9.26,12,28.94,28.94
-99121,53,019,53019,145,106,146806137,146779001,145,106,146806137,146779001,7551,4403,5846435031,5706154501,100,100,100,100,1.92,2.41,2.51,2.57
-99122,53,043,53043,3747,2170,1489767567,1469324226,3773,2187,1495078017,1474634676,10570,5776,6058896152,5984151955,99.31,99.22,99.64,99.64,35.45,37.57,24.59,24.55
-99122,53,065,53065,26,17,5310450,5310450,3773,2187,1495078017,1474634676,43531,21156,6580512027,6417380728,0.69,0.78,0.36,0.36,0.06,0.08,0.08,0.08
-99123,53,025,53025,1058,584,219067237,112733811,1058,584,219067237,112733811,89120,35083,7229482404,6939907170,100,100,100,100,1.19,1.66,3.03,1.62
-99124,53,047,53047,240,114,559382,559382,240,114,559382,559382,41120,22245,13765249392,13643999206,100,100,100,100,0.58,0.51,0,0
-99125,53,075,53075,527,307,604165817,603506308,527,307,604165817,603506308,44776,19323,5639956178,5592015929,100,100,100,100,1.18,1.59,10.71,10.79
-99126,53,065,53065,877,389,134996567,134526214,877,389,134996567,134526214,43531,21156,6580512027,6417380728,100,100,100,100,2.01,1.84,2.05,2.1
-99128,16,057,16057,43,28,60890667,60879172,321,167,221487567,221476072,37244,15988,2789188621,2786815890,13.4,16.77,27.49,27.49,0.12,0.18,2.18,2.18
-99128,53,075,53075,278,139,160596900,160596900,321,167,221487567,221476072,44776,19323,5639956178,5592015929,86.6,83.23,72.51,72.51,0.62,0.72,2.85,2.87
-99129,53,065,53065,793,404,433221076,401280270,793,404,433221076,401280270,43531,21156,6580512027,6417380728,100,100,100,100,1.82,1.91,6.58,6.25
-99130,53,075,53075,828,424,203048420,203048420,828,424,203048420,203048420,44776,19323,5639956178,5592015929,100,100,100,100,1.85,2.19,3.6,3.63
-99131,53,065,53065,170,132,92750154,68735929,170,132,92750154,68735929,43531,21156,6580512027,6417380728,100,100,100,100,0.39,0.62,1.41,1.07
-99133,53,017,53017,97,56,343190905,334566232,1493,886,409075982,383155350,38431,16004,4787995018,4711872269,6.5,6.32,83.89,87.32,0.25,0.35,7.17,7.1
-99133,53,025,53025,1156,661,16417969,14677487,1493,886,409075982,383155350,89120,35083,7229482404,6939907170,77.43,74.6,4.01,3.83,1.3,1.88,0.23,0.21
-99133,53,043,53043,240,169,49467108,33911631,1493,886,409075982,383155350,10570,5776,6058896152,5984151955,16.08,19.07,12.09,8.85,2.27,2.93,0.82,0.57
-99134,53,043,53043,643,326,556681531,555495051,643,326,556681531,555495051,10570,5776,6058896152,5984151955,100,100,100,100,6.08,5.64,9.19,9.28
-99135,53,025,53025,255,134,456757444,456733366,255,134,456757444,456733366,89120,35083,7229482404,6939907170,100,100,100,100,0.29,0.38,6.32,6.58
-99136,53,075,53075,29,22,51163094,51163094,29,22,51163094,51163094,44776,19323,5639956178,5592015929,100,100,100,100,0.06,0.11,0.91,0.91
-99137,53,065,53065,343,217,208551885,208452272,343,217,208551885,208452272,43531,21156,6580512027,6417380728,100,100,100,100,0.79,1.03,3.17,3.25
-99138,53,019,53019,1209,735,1448186968,1367436580,1209,735,1448186968,1367436580,7551,4403,5846435031,5706154501,100,100,100,100,16.01,16.69,24.77,23.96
-99139,53,051,53051,1301,822,537522410,530363412,1301,822,537522410,530363412,13001,7936,3691360640,3625955333,100,100,100,100,10.01,10.36,14.56,14.63
-99140,53,019,53019,475,228,1047179061,1007708003,475,228,1047179061,1007708003,7551,4403,5846435031,5706154501,100,100,100,100,6.29,5.18,17.91,17.66
-99141,53,019,53019,1024,592,635793169,619949547,5240,2722,1442679804,1372216440,7551,4403,5846435031,5706154501,19.54,21.75,44.07,45.18,13.56,13.45,10.87,10.86
-99141,53,065,53065,4216,2130,806886635,752266893,5240,2722,1442679804,1372216440,43531,21156,6580512027,6417380728,80.46,78.25,55.93,54.82,9.69,10.07,12.26,11.72
-99143,53,075,53075,650,364,811983367,803350060,650,364,811983367,803350060,44776,19323,5639956178,5592015929,100,100,100,100,1.45,1.88,14.4,14.37
-99144,53,043,53043,43,18,87820793,87820793,43,18,87820793,87820793,10570,5776,6058896152,5984151955,100,100,100,100,0.41,0.31,1.45,1.47
-99146,53,019,53019,56,41,120444658,120444658,56,41,120444658,120444658,7551,4403,5846435031,5706154501,100,100,100,100,0.74,0.93,2.06,2.11
-99147,53,043,53043,190,141,29392893,21199009,190,141,29392893,21199009,10570,5776,6058896152,5984151955,100,100,100,100,1.8,2.44,0.49,0.35
-99148,53,065,53065,2106,1771,159147826,149958527,2106,1771,159147826,149958527,43531,21156,6580512027,6417380728,100,100,100,100,4.84,8.37,2.42,2.34
-99149,53,075,53075,208,121,6744865,6744865,208,121,6744865,6744865,44776,19323,5639956178,5592015929,100,100,100,100,0.46,0.63,0.12,0.12
-99150,53,019,53019,380,218,144459081,144440311,380,218,144459081,144440311,7551,4403,5846435031,5706154501,100,100,100,100,5.03,4.95,2.47,2.53
-99151,53,065,53065,164,72,314770,314770,164,72,314770,314770,43531,21156,6580512027,6417380728,100,100,100,100,0.38,0.34,0,0
-99152,53,051,53051,197,115,13075604,12086183,197,115,13075604,12086183,13001,7936,3691360640,3625955333,100,100,100,100,1.52,1.45,0.35,0.33
-99153,53,051,53051,467,347,898825624,888786500,467,347,898825624,888786500,13001,7936,3691360640,3625955333,100,100,100,100,3.59,4.37,24.35,24.51
-99154,53,043,53043,20,9,47728271,47728271,20,9,47728271,47728271,10570,5776,6058896152,5984151955,100,100,100,100,0.19,0.16,0.79,0.8
-99155,53,019,53019,17,5,57610814,57610814,1350,443,797082315,788658196,7551,4403,5846435031,5706154501,1.26,1.13,7.23,7.3,0.23,0.11,0.99,1.01
-99155,53,047,53047,1333,438,739471501,731047382,1350,443,797082315,788658196,41120,22245,13765249392,13643999206,98.74,98.87,92.77,92.7,3.24,1.97,5.37,5.36
-99156,53,051,53051,7992,4544,789638217,769382465,8114,4608,867752037,847496285,13001,7936,3691360640,3625955333,98.5,98.61,91,90.78,61.47,57.26,21.39,21.22
-99156,53,063,53063,122,64,78113820,78113820,8114,4608,867752037,847496285,471221,201434,4612001354,4568198649,1.5,1.39,9,9.22,0.03,0.03,1.69,1.71
-99157,53,065,53065,697,435,200554312,189933972,697,435,200554312,189933972,43531,21156,6580512027,6417380728,100,100,100,100,1.6,2.06,3.05,2.96
-99158,53,075,53075,603,286,235435592,235435592,603,286,235435592,235435592,44776,19323,5639956178,5592015929,100,100,100,100,1.35,1.48,4.17,4.21
-99159,53,001,53001,173,62,393180542,393180542,1375,696,1306438491,1300034123,18728,6242,4998292095,4985668796,12.58,8.91,30.1,30.24,0.92,0.99,7.87,7.89
-99159,53,043,53043,1202,634,913257949,906853581,1375,696,1306438491,1300034123,10570,5776,6058896152,5984151955,87.42,91.09,69.9,69.76,11.37,10.98,15.07,15.15
-99160,53,019,53019,149,82,233031766,233031766,149,82,233031766,233031766,7551,4403,5846435031,5706154501,100,100,100,100,1.97,1.86,3.99,4.08
-99161,53,075,53075,1400,653,192343044,192340413,1400,653,192343044,192340413,44776,19323,5639956178,5592015929,100,100,100,100,3.13,3.38,3.41,3.44
-99163,53,075,53075,31404,12672,537176963,536124445,31404,12672,537176963,536124445,44776,19323,5639956178,5592015929,100,100,100,100,70.14,65.58,9.52,9.59
-99164,53,075,53075,0,0,187184,187184,0,0,187184,187184,44776,19323,5639956178,5592015929,0,0,100,100,0,0,0,0
-99166,53,019,53019,3165,1899,1502787922,1498618366,3222,1934,1524333193,1520163637,7551,4403,5846435031,5706154501,98.23,98.19,98.59,98.58,41.91,43.13,25.7,26.26
-99166,53,047,53047,57,35,21545271,21545271,3222,1934,1524333193,1520163637,41120,22245,13765249392,13643999206,1.77,1.81,1.41,1.42,0.14,0.16,0.16,0.16
-99167,53,065,53065,625,355,168785834,161526113,625,355,168785834,161526113,43531,21156,6580512027,6417380728,100,100,100,100,1.44,1.68,2.56,2.52
-99169,53,001,53001,2422,1246,1760233547,1756468747,2459,1263,1842342613,1838577813,18728,6242,4998292095,4985668796,98.5,98.65,95.54,95.53,12.93,19.96,35.22,35.23
-99169,53,043,53043,37,17,82109066,82109066,2459,1263,1842342613,1838577813,10570,5776,6058896152,5984151955,1.5,1.35,4.46,4.47,0.35,0.29,1.36,1.37
-99170,53,063,53063,224,103,193095229,192387088,1072,521,472104016,471271756,471221,201434,4612001354,4568198649,20.9,19.77,40.9,40.82,0.05,0.05,4.19,4.21
-99170,53,075,53075,848,418,279008787,278884668,1072,521,472104016,471271756,44776,19323,5639956178,5592015929,79.1,80.23,59.1,59.18,1.89,2.16,4.95,4.99
-99171,53,075,53075,959,523,698015304,688310887,959,523,698015304,688310887,44776,19323,5639956178,5592015929,100,100,100,100,2.14,2.71,12.38,12.31
-99173,53,065,53065,1532,722,338482153,338482153,1532,722,338482153,338482153,43531,21156,6580512027,6417380728,100,100,100,100,3.52,3.41,5.14,5.27
-99174,53,075,53075,44,26,348107,348107,44,26,348107,348107,44776,19323,5639956178,5592015929,100,100,100,100,0.1,0.13,0.01,0.01
-99176,53,075,53075,145,82,98828996,98828996,145,82,98828996,98828996,44776,19323,5639956178,5592015929,100,100,100,100,0.32,0.42,1.75,1.77
-99179,53,075,53075,437,226,187638433,183608096,437,226,187638433,183608096,44776,19323,5639956178,5592015929,100,100,100,100,0.98,1.17,3.33,3.28
-99180,53,051,53051,939,741,270922598,264047905,939,741,270922598,264047905,13001,7936,3691360640,3625955333,100,100,100,100,7.22,9.34,7.34,7.28
-99181,53,065,53065,1901,1022,258187151,255431261,1901,1022,258187151,255431261,43531,21156,6580512027,6417380728,100,100,100,100,4.37,4.83,3.92,3.98
-99185,53,043,53043,1295,739,713693209,698459842,1295,739,713693209,698459842,10570,5776,6058896152,5984151955,100,100,100,100,12.25,12.79,11.78,11.67
-99201,53,063,53063,13342,7858,8254226,7773515,13342,7858,8254226,7773515,471221,201434,4612001354,4568198649,100,100,100,100,2.83,3.9,0.18,0.17
-99202,53,063,53063,21580,8159,16159299,15905932,21580,8159,16159299,15905932,471221,201434,4612001354,4568198649,100,100,100,100,4.58,4.05,0.35,0.35
-99203,53,063,53063,20192,9335,12142346,12113205,20192,9335,12142346,12113205,471221,201434,4612001354,4568198649,100,100,100,100,4.29,4.63,0.26,0.27
-99204,53,063,53063,6681,4301,2919952,2919952,6681,4301,2919952,2919952,471221,201434,4612001354,4568198649,100,100,100,100,1.42,2.14,0.06,0.06
-99205,53,063,53063,42137,18661,23459532,23202063,42137,18661,23459532,23202063,471221,201434,4612001354,4568198649,100,100,100,100,8.94,9.26,0.51,0.51
-99206,53,063,53063,34802,14561,60874819,60620755,34802,14561,60874819,60620755,471221,201434,4612001354,4568198649,100,100,100,100,7.39,7.23,1.32,1.33
-99207,53,063,53063,30854,13130,14267345,14110126,30854,13130,14267345,14110126,471221,201434,4612001354,4568198649,100,100,100,100,6.55,6.52,0.31,0.31
-99208,53,063,53063,49193,20688,127590852,127316372,49193,20688,127590852,127316372,471221,201434,4612001354,4568198649,100,100,100,100,10.44,10.27,2.77,2.79
-99212,53,063,53063,19197,8700,31798119,31445036,19197,8700,31798119,31445036,471221,201434,4612001354,4568198649,100,100,100,100,4.07,4.32,0.69,0.69
-99216,53,063,53063,24362,10906,34866530,34584382,24362,10906,34866530,34584382,471221,201434,4612001354,4568198649,100,100,100,100,5.17,5.41,0.76,0.76
-99217,53,063,53063,17423,7306,132353700,132146010,17423,7306,132353700,132146010,471221,201434,4612001354,4568198649,100,100,100,100,3.7,3.63,2.87,2.89
-99218,53,063,53063,15531,6030,18941835,18938894,15531,6030,18941835,18938894,471221,201434,4612001354,4568198649,100,100,100,100,3.3,2.99,0.41,0.41
-99223,53,063,53063,29273,12989,74182860,74148973,29273,12989,74182860,74148973,471221,201434,4612001354,4568198649,100,100,100,100,6.21,6.45,1.61,1.62
-99224,53,063,53063,18289,8342,304152600,303209293,18289,8342,304152600,303209293,471221,201434,4612001354,4568198649,100,100,100,100,3.88,4.14,6.59,6.64
-99301,53,021,53021,68191,21697,1239890321,1204285093,68191,21697,1239890321,1204285093,78163,24423,3277401627,3217208258,100,100,100,100,87.24,88.84,37.83,37.43
-99320,53,005,53005,9201,3505,362483386,359642127,9201,3505,362483386,359642127,175177,68618,4558374112,4403961281,100,100,100,100,5.25,5.11,7.95,8.17
-99321,53,025,53025,531,150,102429271,95746219,531,150,102429271,95746219,89120,35083,7229482404,6939907170,100,100,100,100,0.6,0.43,1.42,1.38
-99322,53,039,53039,217,118,639331821,639331821,217,118,639331821,639331821,20318,9786,4931742608,4846679228,100,100,100,100,1.07,1.21,12.96,13.19
-99323,53,071,53071,3684,1310,346337599,326083969,3684,1310,346337599,326083969,58781,23451,3364446558,3289618915,100,100,100,100,6.27,5.59,10.29,9.91
-99324,53,071,53071,9202,3948,7898067,7898067,9202,3948,7898067,7898067,58781,23451,3364446558,3289618915,100,100,100,100,15.65,16.84,0.23,0.24
-99326,53,001,53001,23,14,54680977,54680977,4956,1184,710875294,706863737,18728,6242,4998292095,4985668796,0.46,1.18,7.69,7.74,0.12,0.22,1.09,1.1
-99326,53,021,53021,4933,1170,656194317,652182760,4956,1184,710875294,706863737,78163,24423,3277401627,3217208258,99.54,98.82,92.31,92.26,6.31,4.79,20.02,20.27
-99328,53,013,53013,3733,1924,1666603047,1659495094,3733,1924,1666603047,1659495094,4078,2136,2262305659,2249738808,100,100,100,100,91.54,90.07,73.67,73.76
-99329,53,071,53071,160,73,4738265,4738265,160,73,4738265,4738265,58781,23451,3364446558,3289618915,100,100,100,100,0.27,0.31,0.14,0.14
-99330,53,021,53021,907,319,199564362,199564362,907,319,199564362,199564362,78163,24423,3277401627,3217208258,100,100,100,100,1.16,1.31,6.09,6.2
-99333,53,001,53001,16,11,44429827,43973744,50,33,242792623,236821657,18728,6242,4998292095,4985668796,32,33.33,18.3,18.57,0.09,0.18,0.89,0.88
-99333,53,075,53075,34,22,198362796,192847913,50,33,242792623,236821657,44776,19323,5639956178,5592015929,68,66.67,81.7,81.43,0.08,0.11,3.52,3.45
-99335,53,021,53021,340,181,447294205,438424455,340,181,447294205,438424455,78163,24423,3277401627,3217208258,100,100,100,100,0.43,0.74,13.65,13.63
-99336,53,005,53005,48753,19401,38170143,34570311,48753,19401,38170143,34570311,175177,68618,4558374112,4403961281,100,100,100,100,27.83,28.27,0.84,0.78
-99337,53,005,53005,29845,10808,444948963,407217264,29845,10808,444948963,407217264,175177,68618,4558374112,4403961281,100,100,100,100,17.04,15.75,9.76,9.25
-99338,53,005,53005,11555,4095,171927259,171927259,11555,4095,171927259,171927259,175177,68618,4558374112,4403961281,100,100,100,100,6.6,5.97,3.77,3.9
-99341,53,001,53001,884,413,1036903859,1036903859,884,413,1036903859,1036903859,18728,6242,4998292095,4985668796,100,100,100,100,4.72,6.62,20.75,20.8
-99343,53,021,53021,3040,840,436067375,428395394,3040,840,436067375,428395394,78163,24423,3277401627,3217208258,100,100,100,100,3.89,3.44,13.31,13.32
-99344,53,001,53001,14676,4217,765219555,762603343,16817,5105,1186132819,1174591075,18728,6242,4998292095,4985668796,87.27,82.61,64.51,64.93,78.36,67.56,15.31,15.3
-99344,53,021,53021,746,208,201812894,199748334,16817,5105,1186132819,1174591075,78163,24423,3277401627,3217208258,4.44,4.07,17.01,17.01,0.95,0.85,6.16,6.21
-99344,53,025,53025,1395,680,219100370,212239398,16817,5105,1186132819,1174591075,89120,35083,7229482404,6939907170,8.3,13.32,18.47,18.07,1.57,1.94,3.03,3.06
-99345,53,005,53005,213,76,530469664,473108439,213,76,530469664,473108439,175177,68618,4558374112,4403961281,100,100,100,100,0.12,0.11,11.64,10.74
-99346,53,005,53005,352,172,338220919,325438409,352,172,338220919,325438409,175177,68618,4558374112,4403961281,100,100,100,100,0.2,0.25,7.42,7.39
-99347,53,013,53013,82,50,143152182,143080801,2293,1265,1982581338,1960341750,4078,2136,2262305659,2249738808,3.58,3.95,7.22,7.3,2.01,2.34,6.33,6.36
-99347,53,023,53023,2193,1207,1800762222,1781396994,2293,1265,1982581338,1960341750,2266,1233,1860159432,1840669150,95.64,95.42,90.83,90.87,96.78,97.89,96.81,96.78
-99347,53,075,53075,18,8,38666934,35863955,2293,1265,1982581338,1960341750,44776,19323,5639956178,5592015929,0.78,0.63,1.95,1.83,0.04,0.04,0.69,0.64
-99348,53,013,53013,17,8,49304315,49304315,1364,512,1366001793,1345764368,4078,2136,2262305659,2249738808,1.25,1.56,3.61,3.66,0.42,0.37,2.18,2.19
-99348,53,071,53071,1347,504,1316697478,1296460053,1364,512,1366001793,1345764368,58781,23451,3364446558,3289618915,98.75,98.44,96.39,96.34,2.29,2.15,39.14,39.41
-99349,53,025,53025,8483,2430,724795350,695197271,8483,2430,724795350,695197271,89120,35083,7229482404,6939907170,100,100,100,100,9.52,6.93,10.03,10.02
-99350,53,005,53005,12698,4388,1280204103,1278041130,12979,4475,1482285963,1480080357,175177,68618,4558374112,4403961281,97.83,98.06,86.37,86.35,7.25,6.39,28.08,29.02
-99350,53,039,53039,186,58,189401961,189401961,12979,4475,1482285963,1480080357,20318,9786,4931742608,4846679228,1.43,1.3,12.78,12.8,0.92,0.59,3.84,3.91
-99350,53,077,53077,95,29,12679899,12637266,12979,4475,1482285963,1480080357,243231,85474,11166154758,11125023321,0.73,0.65,0.86,0.85,0.04,0.03,0.11,0.11
-99352,53,005,53005,26975,11586,62951257,54262092,26975,11586,62951257,54262092,175177,68618,4558374112,4403961281,100,100,100,100,15.4,16.88,1.38,1.23
-99353,53,005,53005,13306,4902,69772123,67479354,13306,4902,69772123,67479354,175177,68618,4558374112,4403961281,100,100,100,100,7.6,7.14,1.53,1.53
-99354,53,005,53005,21343,9384,52815460,52600932,21343,9384,52815460,52600932,175177,68618,4558374112,4403961281,100,100,100,100,12.18,13.68,1.16,1.19
-99356,53,039,53039,294,136,690839888,649184081,294,136,690839888,649184081,20318,9786,4931742608,4846679228,100,100,100,100,1.45,1.39,14.01,13.39
-99357,53,025,53025,4323,1227,604108982,601540664,4323,1227,604108982,601540664,89120,35083,7229482404,6939907170,100,100,100,100,4.85,3.5,8.36,8.67
-99359,53,013,53013,156,111,214506312,209118795,158,114,222446782,215544424,4078,2136,2262305659,2249738808,98.73,97.37,96.43,97.02,3.83,5.2,9.48,9.3
-99359,53,021,53021,2,3,7940470,6425629,158,114,222446782,215544424,78163,24423,3277401627,3217208258,1.27,2.63,3.57,2.98,0,0.01,0.24,0.2
-99360,53,071,53071,1350,525,407715464,407715464,1350,525,407715464,407715464,58781,23451,3364446558,3289618915,100,100,100,100,2.3,2.24,12.12,12.39
-99361,53,013,53013,90,43,188739803,188739803,1902,862,579326402,579326402,4078,2136,2262305659,2249738808,4.73,4.99,32.58,32.58,2.21,2.01,8.34,8.39
-99361,53,071,53071,1812,819,390586599,390586599,1902,862,579326402,579326402,58781,23451,3364446558,3289618915,95.27,95.01,67.42,67.42,3.08,3.49,11.61,11.87
-99362,41,059,41059,46,70,89618332,89618332,41056,16264,830723469,830410706,75889,29693,8369304241,8328130471,0.11,0.43,10.79,10.79,0.06,0.24,1.07,1.08
-99362,53,071,53071,41010,16194,741105137,740792374,41056,16264,830723469,830410706,58781,23451,3364446558,3289618915,99.89,99.57,89.21,89.21,69.77,69.05,22.03,22.52
-99363,53,071,53071,216,78,149367949,115344124,216,78,149367949,115344124,58781,23451,3364446558,3289618915,100,100,100,100,0.37,0.33,4.44,3.51
-99371,53,001,53001,307,186,439703965,439595624,311,191,528341648,527777855,18728,6242,4998292095,4985668796,98.71,97.38,83.22,83.29,1.64,2.98,8.8,8.82
-99371,53,021,53021,4,5,88637683,88182231,311,191,528341648,527777855,78163,24423,3277401627,3217208258,1.29,2.62,16.78,16.71,0.01,0.02,2.7,2.74
-99401,53,003,53003,273,209,572554242,569160578,273,209,572554242,569160578,21623,9872,1659259148,1647784012,100,100,100,100,1.26,2.12,34.51,34.54
-99402,53,003,53003,1875,849,746594529,741920735,1875,849,746594529,741920735,21623,9872,1659259148,1647784012,100,100,100,100,8.67,8.6,45,45.03
-99403,53,003,53003,19475,8814,340110377,336702699,19548,8840,399507587,395974855,21623,9872,1659259148,1647784012,99.63,99.71,85.13,85.03,90.07,89.28,20.5,20.43
-99403,53,023,53023,73,26,59397210,59272156,19548,8840,399507587,395974855,2266,1233,1860159432,1840669150,0.37,0.29,14.87,14.97,3.22,2.11,3.19,3.22
-99501,02,020,02020,17603,8588,18438075,17980486,17603,8588,18438075,17980486,291826,113032,5078969947,4415108963,100,100,100,100,6.03,7.6,0.36,0.41
-99502,02,020,02020,24168,9206,47258357,45702919,24168,9206,47258357,45702919,291826,113032,5078969947,4415108963,100,100,100,100,8.28,8.14,0.93,1.04
-99503,02,020,02020,14553,6666,8729388,8714189,14563,6667,53589257,53574058,291826,113032,5078969947,4415108963,99.93,99.99,16.29,16.27,4.99,5.9,0.17,0.2
-99503,02,050,02050,10,1,44859869,44859869,14563,6667,53589257,53574058,17013,5919,117855346301,105075822708,0.07,0.01,83.71,83.73,0.06,0.02,0.04,0.04
-99504,02,020,02020,40914,15642,16582777,16479886,40914,15642,16582777,16479886,291826,113032,5078969947,4415108963,100,100,100,100,14.02,13.84,0.33,0.37
-99505,02,020,02020,6174,1239,59301503,59277940,6174,1239,59301503,59277940,291826,113032,5078969947,4415108963,100,100,100,100,2.12,1.1,1.17,1.34
-99506,02,020,02020,7749,2043,46530564,45853625,7749,2043,46530564,45853625,291826,113032,5078969947,4415108963,100,100,100,100,2.66,1.81,0.92,1.04
-99507,02,020,02020,37850,14475,56796257,56762865,37850,14475,56796257,56762865,291826,113032,5078969947,4415108963,100,100,100,100,12.97,12.81,1.12,1.29
-99508,02,020,02020,35857,13489,18185978,17974797,35857,13489,18185978,17974797,291826,113032,5078969947,4415108963,100,100,100,100,12.29,11.93,0.36,0.41
-99510,02,185,02185,353,1,4574128945,3928215479,353,1,4574128945,3928215479,9430,2500,245521233756,229720054439,100,100,100,100,3.74,0.04,1.86,1.71
-99513,02,020,02020,0,0,36058,36058,0,0,36058,36058,291826,113032,5078969947,4415108963,0,0,100,100,0,0,0,0
-99515,02,020,02020,22441,8282,27675826,27456152,22441,8282,27675826,27456152,291826,113032,5078969947,4415108963,100,100,100,100,7.69,7.33,0.54,0.62
-99516,02,020,02020,20095,7114,111307196,111279997,20095,7114,111307196,111279997,291826,113032,5078969947,4415108963,100,100,100,100,6.89,6.29,2.19,2.52
-99517,02,020,02020,16645,7358,8828904,8508871,16645,7358,8828904,8508871,291826,113032,5078969947,4415108963,100,100,100,100,5.7,6.51,0.17,0.19
-99518,02,020,02020,10225,4431,9781975,9781975,10225,4431,9781975,9781975,291826,113032,5078969947,4415108963,100,100,100,100,3.5,3.92,0.19,0.22
-99519,02,185,02185,1316,4,33387095863,33144891315,1316,4,33387095863,33144891315,9430,2500,245521233756,229720054439,100,100,100,100,13.96,0.16,13.6,14.43
-99540,02,020,02020,320,201,131702205,131548955,320,201,131702205,131548955,291826,113032,5078969947,4415108963,100,100,100,100,0.11,0.18,2.59,2.98
-99546,02,016,02016,326,500,37050080,36786059,326,500,37050080,36786059,5561,1929,36561406149,11370762625,100,100,100,100,5.86,25.92,0.1,0.32
-99547,02,016,02016,61,43,23191822,22213781,61,43,23191822,22213781,5561,1929,36561406149,11370762625,100,100,100,100,1.1,2.23,0.06,0.2
-99548,02,164,02164,73,48,31132543,22279164,73,48,31132543,22279164,1631,1502,85268876908,61258419419,100,100,100,100,4.48,3.2,0.04,0.04
-99549,02,164,02164,102,56,136341795,131838359,102,56,136341795,131838359,1631,1502,85268876908,61258419419,100,100,100,100,6.25,3.73,0.16,0.22
-99550,02,150,02150,197,132,240864714,233488402,197,132,240864714,233488402,13592,5303,31136394042,16963331761,100,100,100,100,1.45,2.49,0.77,1.38
-99551,02,050,02050,627,183,5881090,5859165,627,183,5881090,5859165,17013,5919,117855346301,105075822708,100,100,100,100,3.69,3.09,0,0.01
-99552,02,050,02050,346,98,2679524,2615875,346,98,2679524,2615875,17013,5919,117855346301,105075822708,100,100,100,100,2.03,1.66,0,0
-99553,02,013,02013,1027,44,36075272,35823298,1027,44,36075272,35823298,3141,747,38875357833,18083148800,100,100,100,100,32.7,5.89,0.09,0.2
-99554,02,270,02270,677,185,81651940,55708758,677,185,81651940,55708758,7459,2183,50952705096,44240705695,100,100,100,100,9.08,8.47,0.16,0.13
-99555,02,070,02070,221,120,65570215,47404058,221,120,65570215,47404058,4847,2427,54170136347,48092912615,100,100,100,100,4.56,4.94,0.12,0.1
-99556,02,122,02122,2510,1638,917563268,917025497,2510,1638,917563268,917025497,55400,30578,64108205651,41634915224,100,100,100,100,4.53,5.36,1.43,2.2
-99557,02,050,02050,726,411,35108420976,34786101507,726,411,35108420976,34786101507,17013,5919,117855346301,105075822708,100,100,100,100,4.27,6.94,29.79,33.11
-99558,02,290,02290,85,46,18755287,18324749,85,46,18755287,18324749,5588,4038,382812220312,376855656455,100,100,100,100,1.52,1.14,0,0
-99559,02,050,02050,7632,2772,164774834,149595377,7632,2772,164774834,149595377,17013,5919,117855346301,105075822708,100,100,100,100,44.86,46.83,0.14,0.14
-99561,02,050,02050,418,99,13954540,13886267,418,99,13954540,13886267,17013,5919,117855346301,105075822708,100,100,100,100,2.46,1.67,0.01,0.01
-99563,02,270,02270,938,219,2617560,2562638,938,219,2617560,2562638,7459,2183,50952705096,44240705695,100,100,100,100,12.58,10.03,0.01,0.01
-99564,02,164,02164,91,105,41111317,29494078,91,105,41111317,29494078,1631,1502,85268876908,61258419419,100,100,100,100,5.58,6.99,0.05,0.05
-99565,02,164,02164,78,66,71194090,35672336,78,66,71194090,35672336,1631,1502,85268876908,61258419419,100,100,100,100,4.78,4.39,0.08,0.06
-99566,02,261,02261,192,212,24941507062,24371671954,192,212,24941507062,24371671954,9636,6102,104480566930,88680877051,100,100,100,100,1.99,3.47,23.87,27.48
-99567,02,020,02020,9211,3495,1645476908,1594947779,9211,3495,1645476908,1594947779,291826,113032,5078969947,4415108963,100,100,100,100,3.16,3.09,32.4,36.12
-99568,02,122,02122,279,234,50446020,49997408,279,234,50446020,49997408,55400,30578,64108205651,41634915224,100,100,100,100,0.5,0.77,0.08,0.12
-99569,02,070,02070,64,99,18658326,18644084,64,99,18658326,18644084,4847,2427,54170136347,48092912615,100,100,100,100,1.32,4.08,0.03,0.04
-99571,02,013,02013,160,111,85356798,76206560,160,111,85356798,76206560,3141,747,38875357833,18083148800,100,100,100,100,5.09,14.86,0.22,0.42
-99572,02,122,02122,296,397,373363876,358777592,296,397,373363876,358777592,55400,30578,64108205651,41634915224,100,100,100,100,0.53,1.3,0.58,0.86
-99573,02,261,02261,1115,796,9407213908,9110333221,1115,796,9407213908,9110333221,9636,6102,104480566930,88680877051,100,100,100,100,11.57,13.04,9,10.27
-99574,02,261,02261,2348,1257,7174466085,6405931698,2348,1257,7174466085,6405931698,9636,6102,104480566930,88680877051,100,100,100,100,24.37,20.6,6.87,7.22
-99575,02,050,02050,105,47,278135288,258517645,105,47,278135288,258517645,17013,5919,117855346301,105075822708,100,100,100,100,0.62,0.79,0.24,0.25
-99576,02,070,02070,2603,1360,22268842076,21447191579,2603,1360,22268842076,21447191579,4847,2427,54170136347,48092912615,100,100,100,100,53.7,56.04,41.11,44.6
-99577,02,020,02020,25771,9130,559764784,556131742,25771,9130,559764784,556131742,291826,113032,5078969947,4415108963,100,100,100,100,8.83,8.08,11.02,12.6
-99578,02,050,02050,296,101,2631673,2360326,296,101,2631673,2360326,17013,5919,117855346301,105075822708,100,100,100,100,1.74,1.71,0,0
-99579,02,164,02164,109,196,134386117,67039712,109,196,134386117,67039712,1631,1502,85268876908,61258419419,100,100,100,100,6.68,13.05,0.16,0.11
-99580,02,070,02070,115,51,24135989,24135989,115,51,24135989,24135989,4847,2427,54170136347,48092912615,100,100,100,100,2.37,2.1,0.04,0.05
-99581,02,270,02270,762,213,20275633,16434206,762,213,20275633,16434206,7459,2183,50952705096,44240705695,100,100,100,100,10.22,9.76,0.04,0.04
-99583,02,013,02013,35,38,33061429,33061429,35,38,33061429,33061429,3141,747,38875357833,18083148800,100,100,100,100,1.11,5.09,0.09,0.18
-99585,02,270,02270,417,109,158917069,127810981,417,109,158917069,127810981,7459,2183,50952705096,44240705695,100,100,100,100,5.59,4.99,0.31,0.29
-99586,02,261,02261,605,585,5025738146,5016203902,605,585,5025738146,5016203902,9636,6102,104480566930,88680877051,100,100,100,100,6.28,9.59,4.81,5.66
-99587,02,020,02020,2250,1658,648251918,627577730,2250,1658,648251918,627577730,291826,113032,5078969947,4415108963,100,100,100,100,0.77,1.47,12.76,14.21
-99588,02,170,02170,86,563,3679855095,3532911564,980,1201,5477175213,5299709553,88995,41329,65416897600,63734160198,8.78,46.88,67.19,66.66,0.1,1.36,5.63,5.54
-99588,02,261,02261,894,638,1797320118,1766797989,980,1201,5477175213,5299709553,9636,6102,104480566930,88680877051,91.22,53.12,32.81,33.34,9.28,10.46,1.72,1.99
-99589,02,050,02050,243,82,7701527,7701527,243,82,7701527,7701527,17013,5919,117855346301,105075822708,100,100,100,100,1.43,1.39,0.01,0.01
-99590,02,290,02290,194,63,28358083,28332248,194,63,28358083,28332248,5588,4038,382812220312,376855656455,100,100,100,100,3.47,1.56,0.01,0.01
-99591,02,016,02016,102,61,90705648,90002657,102,61,90705648,90002657,5561,1929,36561406149,11370762625,100,100,100,100,1.83,3.16,0.25,0.79
-99602,02,290,02290,178,86,70269749,66896446,178,86,70269749,66896446,5588,4038,382812220312,376855656455,100,100,100,100,3.19,2.13,0.02,0.02
-99603,02,122,02122,9840,5662,3178482899,2774347634,9840,5662,3178482899,2774347634,55400,30578,64108205651,41634915224,100,100,100,100,17.76,18.52,4.96,6.66
-99604,02,270,02270,1093,283,20570418,20425088,1093,283,20570418,20425088,7459,2183,50952705096,44240705695,100,100,100,100,14.65,12.96,0.04,0.05
-99605,02,122,02122,211,225,869491176,789110349,211,225,869491176,789110349,55400,30578,64108205651,41634915224,100,100,100,100,0.38,0.74,1.36,1.9
-99606,02,164,02164,469,177,553135160,539658451,469,177,553135160,539658451,1631,1502,85268876908,61258419419,100,100,100,100,28.76,11.78,0.65,0.88
-99607,02,050,02050,216,87,2036579717,2034561693,216,87,2036579717,2034561693,17013,5919,117855346301,105075822708,100,100,100,100,1.27,1.47,1.73,1.94
-99609,02,050,02050,569,121,33992478,31290182,569,121,33992478,31290182,17013,5919,117855346301,105075822708,100,100,100,100,3.34,2.04,0.03,0.03
-99610,02,122,02122,2167,1343,2427082804,2400867030,2167,1343,2427082804,2400867030,55400,30578,64108205651,41634915224,100,100,100,100,3.91,4.39,3.79,5.77
-99611,02,122,02122,15122,6880,891528657,845421668,15122,6880,891528657,845421668,55400,30578,64108205651,41634915224,100,100,100,100,27.3,22.5,1.39,2.03
-99612,02,013,02013,938,229,35175636,30280355,938,229,35175636,30280355,3141,747,38875357833,18083148800,100,100,100,100,29.86,30.66,0.09,0.17
-99613,02,060,02060,374,345,634914456,579117364,434,495,10357083376,9571772181,997,969,2298777274,1304947207,86.18,69.7,6.13,6.05,37.51,35.6,27.62,44.38
-99613,02,164,02164,60,150,9722168920,8992654817,434,495,10357083376,9571772181,1631,1502,85268876908,61258419419,13.82,30.3,93.87,93.95,3.68,9.99,11.4,14.68
-99614,02,050,02050,639,176,52595452,51773656,639,176,52595452,51773656,17013,5919,117855346301,105075822708,100,100,100,100,3.76,2.97,0.04,0.05
-99615,02,150,02150,12899,4870,12730751236,11053082905,12899,4870,12730751236,11053082905,13592,5303,31136394042,16963331761,100,100,100,100,94.9,91.83,40.89,65.16
-99620,02,270,02270,577,148,7769195,5959864,577,148,7769195,5959864,7459,2183,50952705096,44240705695,100,100,100,100,7.74,6.78,0.02,0.01
-99621,02,050,02050,723,221,27241052,24626594,723,221,27241052,24626594,17013,5919,117855346301,105075822708,100,100,100,100,4.25,3.73,0.02,0.02
-99622,02,050,02050,321,106,40104690,39878079,321,106,40104690,39878079,17013,5919,117855346301,105075822708,100,100,100,100,1.89,1.79,0.03,0.04
-99624,02,150,02150,90,69,149672180,39561920,90,69,149672180,39561920,13592,5303,31136394042,16963331761,100,100,100,100,0.66,1.3,0.48,0.23
-99625,02,164,02164,72,51,2064582918,2064582918,72,51,2064582918,2064582918,1631,1502,85268876908,61258419419,100,100,100,100,4.41,3.4,2.42,3.37
-99626,02,050,02050,282,80,2389969,2389969,282,80,2389969,2389969,17013,5919,117855346301,105075822708,100,100,100,100,1.66,1.35,0,0
-99627,02,290,02290,406,293,10451179189,10433971588,406,293,10451179189,10433971588,5588,4038,382812220312,376855656455,100,100,100,100,7.27,7.26,2.73,2.77
-99628,02,070,02070,443,236,4003978690,3800720377,443,236,4003978690,3800720377,4847,2427,54170136347,48092912615,100,100,100,100,9.14,9.72,7.39,7.9
-99630,02,050,02050,191,86,18090398,16491475,191,86,18090398,16491475,17013,5919,117855346301,105075822708,100,100,100,100,1.12,1.45,0.02,0.02
-99631,02,122,02122,228,165,1140565241,1102532920,228,165,1140565241,1102532920,55400,30578,64108205651,41634915224,100,100,100,100,0.41,0.54,1.78,2.65
-99632,02,270,02270,813,211,65089576,65089576,813,211,65089576,65089576,7459,2183,50952705096,44240705695,100,100,100,100,10.9,9.67,0.13,0.15
-99633,02,060,02060,544,460,220574868,211212803,544,460,220574868,211212803,997,969,2298777274,1304947207,100,100,100,100,54.56,47.47,9.6,16.19
-99634,02,050,02050,354,112,12075413,10100980,354,112,12075413,10100980,17013,5919,117855346301,105075822708,100,100,100,100,2.08,1.89,0.01,0.01
-99636,02,070,02070,510,130,54239711,54239711,510,130,54239711,54239711,4847,2427,54170136347,48092912615,100,100,100,100,10.52,5.36,0.1,0.11
-99637,02,050,02050,590,135,78232858,78156517,590,135,78232858,78156517,17013,5919,117855346301,105075822708,100,100,100,100,3.47,2.28,0.07,0.07
-99638,02,016,02016,18,23,51585732,49689462,18,23,51585732,49689462,5561,1929,36561406149,11370762625,100,100,100,100,0.32,1.19,0.14,0.44
-99639,02,122,02122,1131,1213,571480609,571399387,1131,1213,571480609,571399387,55400,30578,64108205651,41634915224,100,100,100,100,2.04,3.97,0.89,1.37
-99640,02,164,02164,174,155,8048992411,7875097626,174,155,8048992411,7875097626,1631,1502,85268876908,61258419419,100,100,100,100,10.67,10.32,9.44,12.86
-99641,02,050,02050,496,132,12414400,11551935,496,132,12414400,11551935,17013,5919,117855346301,105075822708,100,100,100,100,2.92,2.23,0.01,0.01
-99643,02,150,02150,218,105,58666714,53174969,218,105,58666714,53174969,13592,5303,31136394042,16963331761,100,100,100,100,1.6,1.98,0.19,0.31
-99644,02,150,02150,175,113,49178230,42214839,175,113,49178230,42214839,13592,5303,31136394042,16963331761,100,100,100,100,1.29,2.13,0.16,0.25
-99645,02,170,02170,25176,9503,1203919594,1143037549,25176,9503,1203919594,1143037549,88995,41329,65416897600,63734160198,100,100,100,100,28.29,22.99,1.84,1.79
-99647,02,164,02164,44,40,593856754,566191138,44,40,593856754,566191138,1631,1502,85268876908,61258419419,100,100,100,100,2.7,2.66,0.7,0.92
-99648,02,164,02164,113,50,51181391,28892565,113,50,51181391,28892565,1631,1502,85268876908,61258419419,100,100,100,100,6.93,3.33,0.06,0.05
-99649,02,164,02164,80,87,318109971,261986346,80,87,318109971,261986346,1631,1502,85268876908,61258419419,100,100,100,100,4.9,5.79,0.37,0.43
-99650,02,270,02270,568,137,4388529,4382289,568,137,4388529,4382289,7459,2183,50952705096,44240705695,100,100,100,100,7.61,6.28,0.01,0.01
-99651,02,050,02050,61,22,51528475,51419042,61,22,51528475,51419042,17013,5919,117855346301,105075822708,100,100,100,100,0.36,0.37,0.04,0.05
-99652,02,170,02170,3703,2928,333672144,300921770,3703,2928,333672144,300921770,88995,41329,65416897600,63734160198,100,100,100,100,4.16,7.08,0.51,0.47
-99653,02,164,02164,159,74,114548810,58650530,159,74,114548810,58650530,1631,1502,85268876908,61258419419,100,100,100,100,9.75,4.93,0.13,0.1
-99654,02,170,02170,52168,20169,1340164798,1289464507,52168,20169,1340164798,1289464507,88995,41329,65416897600,63734160198,100,100,100,100,58.62,48.8,2.05,2.02
-99655,02,050,02050,669,186,6991510,6926510,669,186,6991510,6926510,17013,5919,117855346301,105075822708,100,100,100,100,3.93,3.14,0.01,0.01
-99656,02,050,02050,25,28,198466956,178526554,25,28,198466956,178526554,17013,5919,117855346301,105075822708,100,100,100,100,0.15,0.47,0.17,0.17
-99657,02,270,02270,329,116,2341023897,2105934975,329,116,2341023897,2105934975,7459,2183,50952705096,44240705695,100,100,100,100,4.41,5.31,4.59,4.76
-99658,02,270,02270,616,243,108166978,107253326,616,243,108166978,107253326,7459,2183,50952705096,44240705695,100,100,100,100,8.26,11.13,0.21,0.24
-99659,02,180,02180,401,116,47084282,46064543,401,116,47084282,46064543,9492,4008,73238697598,59470685832,100,100,100,100,4.22,2.89,0.06,0.08
-99660,02,016,02016,479,190,110451048,103539843,479,190,110451048,103539843,5561,1929,36561406149,11370762625,100,100,100,100,8.61,9.85,0.3,0.91
-99661,02,013,02013,978,292,461496779,460666008,978,292,461496779,460666008,3141,747,38875357833,18083148800,100,100,100,100,31.14,39.09,1.19,2.55
-99662,02,270,02270,480,105,18512059,18512059,480,105,18512059,18512059,7459,2183,50952705096,44240705695,100,100,100,100,6.44,4.81,0.04,0.04
-99663,02,122,02122,414,394,308500693,296687955,414,394,308500693,296687955,55400,30578,64108205651,41634915224,100,100,100,100,0.75,1.29,0.48,0.71
-99664,02,122,02122,4932,2357,8130801857,6647664043,4932,2357,8130801857,6647664043,55400,30578,64108205651,41634915224,100,100,100,100,8.9,7.71,12.68,15.97
-99665,02,290,02290,83,53,5086167,5011107,83,53,5086167,5011107,5588,4038,382812220312,376855656455,100,100,100,100,1.49,1.31,0,0
-99666,02,270,02270,189,47,232020679,220701153,189,47,232020679,220701153,7459,2183,50952705096,44240705695,100,100,100,100,2.53,2.15,0.46,0.5
-99667,02,170,02170,65,752,12144639681,12073687066,65,752,12144639681,12073687066,88995,41329,65416897600,63734160198,100,100,100,100,0.07,1.82,18.56,18.94
-99668,02,050,02050,86,49,43471977,37270570,86,49,43471977,37270570,17013,5919,117855346301,105075822708,100,100,100,100,0.51,0.83,0.04,0.04
-99669,02,122,02122,14191,7195,644250512,627774631,14191,7195,644250512,627774631,55400,30578,64108205651,41634915224,100,100,100,100,25.62,23.53,1,1.51
-99670,02,060,02060,79,132,283477809,268025960,79,132,283477809,268025960,997,969,2298777274,1304947207,100,100,100,100,7.92,13.62,12.33,20.54
-99671,02,180,02180,556,153,74998469,68930232,556,153,74998469,68930232,9492,4008,73238697598,59470685832,100,100,100,100,5.86,3.82,0.1,0.12
-99672,02,122,02122,3704,2468,762409013,738922559,3704,2468,762409013,738922559,55400,30578,64108205651,41634915224,100,100,100,100,6.69,8.07,1.19,1.77
-99674,02,170,02170,1444,993,2915754620,2888622638,1444,993,2915754620,2888622638,88995,41329,65416897600,63734160198,100,100,100,100,1.62,2.4,4.46,4.53
-99676,02,170,02170,1546,1706,2655765062,2614433406,1546,1706,2655765062,2614433406,88995,41329,65416897600,63734160198,100,100,100,100,1.74,4.13,4.06,4.1
-99677,02,261,02261,88,75,21469327,18808312,88,75,21469327,18808312,9636,6102,104480566930,88680877051,100,100,100,100,0.91,1.23,0.02,0.02
-99678,02,070,02070,891,344,5904167989,5767484721,891,344,5904167989,5767484721,4847,2427,54170136347,48092912615,100,100,100,100,18.38,14.17,10.9,11.99
-99679,02,050,02050,373,99,4270506,3971621,373,99,4270506,3971621,17013,5919,117855346301,105075822708,100,100,100,100,2.19,1.67,0,0
-99680,02,050,02050,408,106,300991315,300296882,408,106,300991315,300296882,17013,5919,117855346301,105075822708,100,100,100,100,2.4,1.79,0.26,0.29
-99681,02,050,02050,325,89,85980770,85705001,325,89,85980770,85705001,17013,5919,117855346301,105075822708,100,100,100,100,1.91,1.5,0.07,0.08
-99682,02,122,02122,373,307,16741660925,16315954728,373,307,16741660925,16315954728,55400,30578,64108205651,41634915224,100,100,100,100,0.67,1,26.11,39.19
-99683,02,170,02170,524,774,7003724771,6938451595,524,774,7003724771,6938451595,88995,41329,65416897600,63734160198,100,100,100,100,0.59,1.87,10.71,10.89
-99684,02,180,02180,688,344,1789403090,1774746742,688,344,1789403090,1774746742,9492,4008,73238697598,59470685832,100,100,100,100,7.25,8.58,2.44,2.98
-99685,02,016,02016,4224,1001,174858872,153664671,4224,1001,174858872,153664671,5561,1929,36561406149,11370762625,100,100,100,100,75.96,51.89,0.48,1.35
-99686,02,261,02261,4005,1839,9500197840,8181621632,4005,1839,9500197840,8181621632,9636,6102,104480566930,88680877051,100,100,100,100,41.56,30.14,9.09,9.23
-99688,02,170,02170,2759,2883,4187069634,4149711489,2759,2883,4187069634,4149711489,88995,41329,65416897600,63734160198,100,100,100,100,3.1,6.98,6.4,6.51
-99689,02,282,02282,662,387,599618213,532422976,662,387,599618213,532422976,662,450,24508712318,19812002035,100,100,100,100,100,86,2.45,2.69
-99690,02,050,02050,280,61,250956891,250945233,280,61,250956891,250945233,17013,5919,117855346301,105075822708,100,100,100,100,1.65,1.03,0.21,0.24
-99691,02,290,02290,95,60,4006209985,3987020418,95,60,4006209985,3987020418,5588,4038,382812220312,376855656455,100,100,100,100,1.7,1.49,1.05,1.06
-99692,02,016,02016,152,105,698071,698071,152,105,698071,698071,5561,1929,36561406149,11370762625,100,100,100,100,2.73,5.44,0,0.01
-99693,02,170,02170,0,17,80899565,80899565,248,308,527113082,312431287,88995,41329,65416897600,63734160198,0,5.52,15.35,25.89,0,0.04,0.12,0.13
-99693,02,261,02261,248,291,446213517,231531722,248,308,527113082,312431287,9636,6102,104480566930,88680877051,100,94.48,84.65,74.11,2.57,4.77,0.43,0.26
-99694,02,170,02170,1512,799,55341154,52372190,1512,799,55341154,52372190,88995,41329,65416897600,63734160198,100,100,100,100,1.7,1.93,0.08,0.08
-99695,02,164,02164,7,12,10860665,10860665,7,12,10860665,10860665,1631,1502,85268876908,61258419419,100,100,100,100,0.43,0.8,0.01,0.02
-99701,02,090,02090,18965,8926,45404465,44050218,19019,9032,11098373180,11061204262,97581,41783,19279062512,19005874393,99.72,98.83,0.41,0.4,19.44,21.36,0.24,0.23
-99701,02,290,02290,54,106,11052968715,11017154044,19019,9032,11098373180,11061204262,5588,4038,382812220312,376855656455,0.28,1.17,99.59,99.6,0.97,2.63,2.89,2.92
-99702,02,090,02090,2647,848,42954727,41797370,2647,848,42954727,41797370,97581,41783,19279062512,19005874393,100,100,100,100,2.71,2.03,0.22,0.22
-99703,02,090,02090,7065,1676,23562938,22690714,7065,1676,23562938,22690714,97581,41783,19279062512,19005874393,100,100,100,100,7.24,4.01,0.12,0.12
-99704,02,068,02068,24,0,2532855,2494462,24,0,2532855,2494462,1826,1771,33092069328,33026000538,100,0,100,100,1.31,0,0.01,0.01
-99705,02,090,02090,22544,8866,290087678,277514381,22544,8866,290087678,277514381,97581,41783,19279062512,19005874393,100,100,100,100,23.1,21.22,1.5,1.46
-99706,02,240,02240,13,19,195129497,172910679,13,19,195129497,172910679,7029,3915,64903710530,64150915284,100,100,100,100,0.18,0.49,0.3,0.27
-99709,02,090,02090,29830,13631,1334322654,1313751232,29830,13631,1334322654,1313751232,97581,41783,19279062512,19005874393,100,100,100,100,30.57,32.62,6.92,6.91
-99712,02,090,02090,13866,6293,9143998441,9140177870,13866,6293,9143998441,9140177870,97581,41783,19279062512,19005874393,100,100,100,100,14.21,15.06,47.43,48.09
-99714,02,090,02090,1385,1260,972991315,902237766,1385,1260,972991315,902237766,97581,41783,19279062512,19005874393,100,100,100,100,1.42,3.02,5.05,4.75
-99720,02,290,02290,208,97,117955932,113030737,208,97,117955932,113030737,5588,4038,382812220312,376855656455,100,100,100,100,3.72,2.4,0.03,0.03
-99721,02,185,02185,324,118,12660673,12521157,324,118,12660673,12521157,9430,2500,245521233756,229720054439,100,100,100,100,3.44,4.72,0.01,0.01
-99722,02,290,02290,152,85,36757610,30974104,152,85,36757610,30974104,5588,4038,382812220312,376855656455,100,100,100,100,2.72,2.11,0.01,0.01
-99723,02,185,02185,4213,1554,63831250,53780612,4213,1554,63831250,53780612,9430,2500,245521233756,229720054439,100,100,100,100,44.68,62.16,0.03,0.02
-99724,02,290,02290,84,56,54554368,52461849,84,56,54554368,52461849,5588,4038,382812220312,376855656455,100,100,100,100,1.5,1.39,0.01,0.01
-99726,02,290,02290,30,55,6028461747,5947543601,30,55,6028461747,5947543601,5588,4038,382812220312,376855656455,100,100,100,100,0.54,1.36,1.57,1.58
-99727,02,188,02188,416,101,1424507,1424507,416,101,1424507,1424507,7523,2707,105539252923,92132564828,100,100,100,100,5.53,3.73,0,0
-99729,02,068,02068,219,200,274299232,273411162,231,240,1551597273,1541448132,1826,1771,33092069328,33026000538,94.81,83.33,17.68,17.74,11.99,11.29,0.83,0.83
-99729,02,170,02170,12,40,1277298041,1268036970,231,240,1551597273,1541448132,88995,41329,65416897600,63734160198,5.19,16.67,82.32,82.26,0.01,0.1,1.95,1.99
-99730,02,290,02290,144,250,19446989653,19409689300,144,250,19446989653,19409689300,5588,4038,382812220312,376855656455,100,100,100,100,2.58,6.19,5.08,5.15
-99732,02,240,02240,10,26,847514734,847514734,10,26,847514734,847514734,7029,3915,64903710530,64150915284,100,100,100,100,0.14,0.66,1.31,1.32
-99733,02,290,02290,104,52,278362045,276963447,104,52,278362045,276963447,5588,4038,382812220312,376855656455,100,100,100,100,1.86,1.29,0.07,0.07
-99734,02,185,02185,845,0,835139782,521315060,845,0,835139782,521315060,9430,2500,245521233756,229720054439,100,0,100,100,8.96,0,0.34,0.23
-99736,02,188,02188,122,61,4340468,4311279,122,61,4340468,4311279,7523,2707,105539252923,92132564828,100,100,100,100,1.62,2.25,0,0
-99737,02,240,02240,4968,2494,10468595388,10284251727,5011,2678,11346459155,11117780078,7029,3915,64903710530,64150915284,99.14,93.13,92.26,92.5,70.68,63.7,16.13,16.03
-99737,02,261,02261,43,184,877863767,833528351,5011,2678,11346459155,11117780078,9636,6102,104480566930,88680877051,0.86,6.87,7.74,7.5,0.45,3.02,0.84,0.94
-99738,02,240,02240,187,268,10690584058,10649522636,187,280,18737845871,18585495890,7029,3915,64903710530,64150915284,100,95.71,57.05,57.3,2.66,6.85,16.47,16.6
-99738,02,290,02290,0,12,8047261813,7935973254,187,280,18737845871,18585495890,5588,4038,382812220312,376855656455,0,4.29,42.95,42.7,0,0.3,2.1,2.11
-99739,02,180,02180,330,132,3536114738,3509211007,330,132,3536114738,3509211007,9492,4008,73238697598,59470685832,100,100,100,100,3.48,3.29,4.83,5.9
-99740,02,290,02290,585,345,24145604552,23599013222,585,345,24145604552,23599013222,5588,4038,382812220312,376855656455,100,100,100,100,10.47,8.54,6.31,6.26
-99741,02,290,02290,470,264,62666750,45896456,470,264,62666750,45896456,5588,4038,382812220312,376855656455,100,100,100,100,8.41,6.54,0.02,0.01
-99742,02,180,02180,681,200,78615992,28230083,681,200,78615992,28230083,9492,4008,73238697598,59470685832,100,100,100,100,7.17,4.99,0.11,0.05
-99743,02,068,02068,1069,864,13936187630,13926739186,1069,864,13936187630,13926739186,1826,1771,33092069328,33026000538,100,100,100,100,58.54,48.79,42.11,42.17
-99744,02,068,02068,226,147,93107253,85862692,226,147,93107253,85862692,1826,1771,33092069328,33026000538,100,100,100,100,12.38,8.3,0.28,0.26
-99745,02,290,02290,78,41,13146971,10212134,78,41,13146971,10212134,5588,4038,382812220312,376855656455,100,100,100,100,1.4,1.02,0,0
-99746,02,290,02290,277,124,20055502587,19893806149,277,124,20055502587,19893806149,5588,4038,382812220312,376855656455,100,100,100,100,4.96,3.07,5.24,5.28
-99747,02,185,02185,239,87,16175819,15524482,239,87,16175819,15524482,9430,2500,245521233756,229720054439,100,100,100,100,2.53,3.48,0.01,0.01
-99748,02,290,02290,190,87,47311148,47283266,190,87,47311148,47283266,5588,4038,382812220312,376855656455,100,100,100,100,3.4,2.15,0.01,0.01
-99749,02,188,02188,363,150,2865627,2865627,363,150,2865627,2865627,7523,2707,105539252923,92132564828,100,100,100,100,4.83,5.54,0,0
-99750,02,188,02188,374,99,1464548,482226,374,99,1464548,482226,7523,2707,105539252923,92132564828,100,100,100,100,4.97,3.66,0,0
-99751,02,188,02188,151,41,15090455,14961761,151,41,15090455,14961761,7523,2707,105539252923,92132564828,100,100,100,100,2.01,1.51,0.01,0.02
-99752,02,188,02188,3553,1342,12743382662,10266809115,3553,1342,12743382662,10266809115,7523,2707,105539252923,92132564828,100,100,100,100,47.23,49.58,12.07,11.14
-99753,02,180,02180,332,99,12350345,12350345,332,99,12350345,12350345,9492,4008,73238697598,59470685832,100,100,100,100,3.5,2.47,0.02,0.02
-99754,02,290,02290,96,54,14802201,14511944,96,54,14802201,14511944,5588,4038,382812220312,376855656455,100,100,100,100,1.72,1.34,0,0
-99755,02,068,02068,217,447,1011790153,1011165243,217,447,1011790153,1011165243,1826,1771,33092069328,33026000538,100,100,100,100,11.88,25.24,3.06,3.06
-99756,02,290,02290,119,260,23480905516,23255592418,119,260,23480905516,23255592418,5588,4038,382812220312,376855656455,100,100,100,100,2.13,6.44,6.13,6.17
-99757,02,290,02290,17,48,2287174213,2217408159,17,48,2287174213,2217408159,5588,4038,382812220312,376855656455,100,100,100,100,0.3,1.19,0.6,0.59
-99758,02,290,02290,210,94,7833799,7833799,210,94,7833799,7833799,5588,4038,382812220312,376855656455,100,100,100,100,3.76,2.33,0,0
-99759,02,185,02185,189,70,97696016,66660123,189,70,97696016,66660123,9430,2500,245521233756,229720054439,100,100,100,100,2,2.8,0.04,0.03
-99760,02,068,02068,71,105,5014146779,5009612332,785,520,6916452905,6839922498,1826,1771,33092069328,33026000538,9.04,20.19,72.5,73.24,3.89,5.93,15.15,15.17
-99760,02,090,02090,28,30,145297716,145297716,785,520,6916452905,6839922498,97581,41783,19279062512,19005874393,3.57,5.77,2.1,2.12,0.03,0.07,0.75,0.76
-99760,02,290,02290,686,385,1757008410,1685012450,785,520,6916452905,6839922498,5588,4038,382812220312,376855656455,87.39,74.04,25.4,24.63,12.28,9.53,0.46,0.45
-99761,02,188,02188,514,114,41667486,41348262,514,114,41667486,41348262,7523,2707,105539252923,92132564828,100,100,100,100,6.83,4.21,0.04,0.04
-99762,02,180,02180,4038,1967,5662412508,5471312328,4038,1967,5662412508,5471312328,9492,4008,73238697598,59470685832,100,100,100,100,42.54,49.08,7.73,9.2
-99763,02,188,02188,668,171,2395039,2273742,668,171,2395039,2273742,7523,2707,105539252923,92132564828,100,100,100,100,8.88,6.32,0,0
-99764,02,240,02240,290,153,6749148642,6733355968,290,153,6749148642,6733355968,7029,3915,64903710530,64150915284,100,100,100,100,4.13,3.91,10.4,10.5
-99765,02,290,02290,264,134,17723078,17723078,264,134,17723078,17723078,5588,4038,382812220312,376855656455,100,100,100,100,4.72,3.32,0,0
-99766,02,185,02185,678,222,6312938750,6195468813,678,222,6312938750,6195468813,9430,2500,245521233756,229720054439,100,100,100,100,7.19,8.88,2.57,2.7
-99767,02,290,02290,24,37,5263013,5263013,24,37,5263013,5263013,5588,4038,382812220312,376855656455,100,100,100,100,0.43,0.92,0,0
-99768,02,290,02290,175,150,12825861619,12538452659,175,150,12825861619,12538452659,5588,4038,382812220312,376855656455,100,100,100,100,3.13,3.71,3.35,3.33
-99769,02,180,02180,671,185,15856227,15787377,671,185,15856227,15787377,9492,4008,73238697598,59470685832,100,100,100,100,7.07,4.62,0.02,0.03
-99770,02,188,02188,841,217,2388469471,2275819118,841,217,2388469471,2275819118,7523,2707,105539252923,92132564828,100,100,100,100,11.18,8.02,2.26,2.47
-99771,02,180,02180,251,70,2817636,2697572,251,70,2817636,2697572,9492,4008,73238697598,59470685832,100,100,100,100,2.64,1.75,0,0
-99772,02,180,02180,567,215,10246270979,9262642646,567,215,10246270979,9262642646,9492,4008,73238697598,59470685832,100,100,100,100,5.97,5.36,13.99,15.58
-99773,02,188,02188,262,73,15653694,15509532,262,73,15653694,15509532,7523,2707,105539252923,92132564828,100,100,100,100,3.48,2.7,0.01,0.02
-99774,02,290,02290,78,52,39841004,31025481,78,52,39841004,31025481,5588,4038,382812220312,376855656455,100,100,100,100,1.4,1.29,0.01,0.01
-99775,02,090,02090,1251,166,300291,300291,1251,166,300291,300291,97581,41783,19279062512,19005874393,100,100,100,100,1.28,0.4,0,0
-99776,02,240,02240,124,68,60049935,56967121,124,68,60049935,56967121,7029,3915,64903710530,64150915284,100,100,100,100,1.76,1.74,0.09,0.09
-99777,02,290,02290,246,136,62868343,62781242,246,136,62868343,62781242,5588,4038,382812220312,376855656455,100,100,100,100,4.4,3.37,0.02,0.02
-99778,02,180,02180,254,91,935395593,848436667,254,91,935395593,848436667,9492,4008,73238697598,59470685832,100,100,100,100,2.68,2.27,1.28,1.43
-99780,02,240,02240,1437,823,2845854582,2781667660,1535,874,3231332360,3163091540,7029,3915,64903710530,64150915284,93.62,94.16,88.07,87.94,20.44,21.02,4.38,4.34
-99780,02,261,02261,98,51,385477778,381423880,1535,874,3231332360,3163091540,9636,6102,104480566930,88680877051,6.38,5.84,11.93,12.06,1.02,0.84,0.37,0.43
-99781,02,290,02290,167,90,4836417736,4768487124,167,90,4836417736,4768487124,5588,4038,382812220312,376855656455,100,100,100,100,2.99,2.23,1.26,1.27
-99782,02,185,02185,556,179,55788099,46461393,556,179,55788099,46461393,9430,2500,245521233756,229720054439,100,100,100,100,5.9,7.16,0.02,0.02
-99783,02,180,02180,145,51,62317470,62316719,145,51,62317470,62316719,9492,4008,73238697598,59470685832,100,100,100,100,1.53,1.27,0.09,0.1
-99784,02,180,02180,190,79,2288822,1773108,190,79,2288822,1773108,9492,4008,73238697598,59470685832,100,100,100,100,2,1.97,0,0
-99785,02,180,02180,388,103,6426147,6415592,388,103,6426147,6415592,9492,4008,73238697598,59470685832,100,100,100,100,4.09,2.57,0.01,0.01
-99786,02,188,02188,259,130,17965175704,17809910732,259,130,17965175704,17809910732,7523,2707,105539252923,92132564828,100,100,100,100,3.44,4.8,17.02,19.33
-99788,02,290,02290,69,67,23323213,21965885,69,67,23323213,21965885,5588,4038,382812220312,376855656455,100,100,100,100,1.23,1.66,0.01,0.01
-99789,02,185,02185,402,138,2416752790,2410363442,402,138,2416752790,2410363442,9430,2500,245521233756,229720054439,100,100,100,100,4.26,5.52,0.98,1.05
-99790,02,290,02290,20,35,998980888,997733049,20,35,998980888,997733049,5588,4038,382812220312,376855656455,100,100,100,100,0.36,0.87,0.26,0.26
-99791,02,185,02185,237,72,2208510054,2179121087,237,72,2208510054,2179121087,9430,2500,245521233756,229720054439,100,100,100,100,2.51,2.88,0.9,0.95
-99801,02,110,02110,29164,11998,6467713465,5680932497,29164,11998,6467713465,5680932497,31275,13055,8427543777,6997968643,100,100,100,100,93.25,91.9,76.74,81.18
-99820,02,105,02105,479,351,2584507612,2432957574,479,351,2584507612,2432957574,2150,1771,28267524385,19489439091,100,100,100,100,22.28,19.82,9.14,12.48
-99824,02,110,02110,2111,1049,5507792,4472894,2111,1049,5507792,4472894,31275,13055,8427543777,6997968643,100,100,100,100,6.75,8.04,0.07,0.06
-99825,02,105,02105,120,107,1045947509,944703076,120,107,1045947509,944703076,2150,1771,28267524385,19489439091,100,100,100,100,5.58,6.04,3.7,4.85
-99826,02,105,02105,442,488,8867631039,8418808599,442,488,8867631039,8418808599,2150,1771,28267524385,19489439091,100,100,100,100,20.56,27.56,31.37,43.2
-99827,02,100,02100,2507,1607,4646817523,4448452822,2602,1677,4651716488,4452051324,2508,1631,7059021502,6005146534,96.35,95.83,99.89,99.92,99.96,98.53,65.83,74.08
-99827,02,105,02105,95,70,4898965,3598502,2602,1677,4651716488,4452051324,2150,1771,28267524385,19489439091,3.65,4.17,0.11,0.08,4.42,3.95,0.02,0.02
-99829,02,105,02105,777,416,22323928,19248519,777,416,22323928,19248519,2150,1771,28267524385,19489439091,100,100,100,100,36.14,23.49,0.08,0.1
-99830,02,195,02195,561,293,1124645860,703636836,561,293,1124645860,703636836,3815,1994,14721661775,8500293927,100,100,100,100,14.71,14.69,7.64,8.28
-99832,02,105,02105,104,117,615404725,481019855,104,117,615404725,481019855,2150,1771,28267524385,19489439091,100,100,100,100,4.84,6.61,2.18,2.47
-99833,02,195,02195,3202,1637,8676376807,6948943148,3202,1637,8676376807,6948943148,3815,1994,14721661775,8500293927,100,100,100,100,83.93,82.1,58.94,81.75
-99835,02,220,02220,8880,4085,5139349741,4182810807,8880,4085,5139349741,4182810807,8881,4102,12461547816,7434143788,100,100,100,100,99.99,99.59,41.24,56.26
-99836,02,195,02195,52,64,9825898,8976005,52,64,9825898,8976005,3815,1994,14721661775,8500293927,100,100,100,100,1.36,3.21,0.07,0.11
-99840,02,230,02230,968,636,1201847132,1171515798,968,636,1201847132,1171515798,968,636,1201847132,1171515798,100,100,100,100,100,100,100,100
-99841,02,105,02105,133,181,36970597,36970597,133,181,36970597,36970597,2150,1771,28267524385,19489439091,100,100,100,100,6.19,10.22,0.13,0.19
-99901,02,130,02130,13475,6160,13120436830,11742225087,13508,6161,13972924788,12428129405,13477,6166,17232647056,12583232994,99.76,99.98,93.9,94.48,99.99,99.9,76.14,93.32
-99901,02,198,02198,33,1,852487958,685904318,13508,6161,13972924788,12428129405,5559,2992,19899611817,10160193695,0.24,0.02,6.1,5.52,0.59,0.03,4.28,6.75
-99903,02,275,02275,31,69,456712842,401532954,31,69,456712842,401532954,2369,1428,8966687298,6582411037,100,100,100,100,1.31,4.83,5.09,6.1
-99918,02,198,02198,231,223,107717006,95158906,231,223,107717006,95158906,5559,2992,19899611817,10160193695,100,100,100,100,4.16,7.45,0.54,0.94
-99919,02,198,02198,531,409,143670987,125279693,531,409,143670987,125279693,5559,2992,19899611817,10160193695,100,100,100,100,9.55,13.67,0.72,1.23
-99921,02,198,02198,1920,1077,6417202419,5284962602,1920,1077,6417202419,5284962602,5559,2992,19899611817,10160193695,100,100,100,100,34.54,36,32.25,52.02
-99922,02,198,02198,384,140,318532537,297631982,384,140,318532537,297631982,5559,2992,19899611817,10160193695,100,100,100,100,6.91,4.68,1.6,2.93
-99923,02,198,02198,87,90,35939636,35937519,87,90,35939636,35937519,5559,2992,19899611817,10160193695,100,100,100,100,1.57,3.01,0.18,0.35
-99925,02,198,02198,819,400,181409664,144503281,819,400,181409664,144503281,5559,2992,19899611817,10160193695,100,100,100,100,14.73,13.37,0.91,1.42
-99926,02,198,02198,1460,544,557283125,343947256,1460,544,557283125,343947256,5559,2992,19899611817,10160193695,100,100,100,100,26.26,18.18,2.8,3.39
-99927,02,198,02198,94,101,607689356,589688205,94,101,607689356,589688205,5559,2992,19899611817,10160193695,100,100,100,100,1.69,3.38,3.05,5.8
-99929,02,275,02275,2338,1339,6235969341,5598556684,2338,1339,6235969341,5598556684,2369,1428,8966687298,6582411037,100,100,100,100,98.69,93.77,69.55,85.05
\ No newline at end of file
diff --git a/_delphi_utils_python/delphi_utils/data/fips_hrr_cross.csv b/_delphi_utils_python/delphi_utils/data/fips_hrr_cross.csv
deleted file mode 100644
index 9616b0462..000000000
--- a/_delphi_utils_python/delphi_utils/data/fips_hrr_cross.csv
+++ /dev/null
@@ -1,4274 +0,0 @@
-fips,hrr,weight
-1001,1,0.016004628
-1007,1,0.427184041
-1009,1,1.0
-1015,1,1.0
-1017,1,0.956007299
-1019,1,0.24919047800000002
-1021,1,1.0
-1027,1,1.0
-1029,1,0.686206897
-1033,1,1.0
-1037,1,0.9095259590000001
-1043,1,0.972076594
-1047,1,1.0
-1049,1,0.944678407
-1055,1,1.0
-1057,1,0.000740329
-1059,1,0.975363772
-1063,1,0.169433962
-1073,1,1.0
-1075,1,0.036225266
-1077,1,1.0
-1079,1,0.8401579109999999
-1081,1,0.7819965520000001
-1085,1,0.112069895
-1087,1,0.862176055
-1091,1,0.782827203
-1093,1,0.6131667470000001
-1095,1,0.553403936
-1099,1,0.00039091099999999997
-1103,1,0.340494653
-1105,1,1.0
-1111,1,0.98110908
-1115,1,1.0
-1117,1,1.0
-1121,1,1.0
-1123,1,1.0
-1125,1,0.080348352
-1127,1,1.0
-1131,1,0.712288447
-1133,1,1.0
-13285,1,0.101185281
-28141,1,0.772243268
-47099,1,0.022726266000000002
-47181,1,0.22676277399999997
-1005,2,1.0
-1031,2,1.0
-1039,2,0.253977745
-1045,2,1.0
-1061,2,1.0
-1067,2,1.0
-1069,2,1.0
-1109,2,0.026860073999999998
-12059,2,1.0
-12063,2,1.0
-12133,2,0.040546458
-13061,2,0.8445161290000001
-13099,2,1.0
-13201,2,0.10389036300000001
-13253,2,1.0
-1043,5,0.027923406
-1071,5,0.722037632
-1079,5,0.159842089
-1083,5,1.0
-1089,5,1.0
-1095,5,0.44659606399999996
-1103,5,0.6595053470000001
-47003,5,0.063868066
-47055,5,0.09313073300000001
-47103,5,1.0
-1003,6,0.971718008
-1025,6,1.0
-1035,6,0.169901749
-1091,6,0.217172797
-1097,6,1.0
-1099,6,0.999609089
-1129,6,1.0
-1131,6,0.287711553
-28041,6,0.793746848
-28059,6,1.0
-1001,7,0.983995372
-1011,7,1.0
-1013,7,1.0
-1035,7,0.647735442
-1037,7,0.09047404099999999
-1041,7,1.0
-1051,7,1.0
-1085,7,0.887930105
-1087,7,0.137823945
-1101,7,1.0
-1109,7,0.973139926
-1007,9,0.5728159589999999
-1057,9,0.9992596709999999
-1063,9,0.830566038
-1065,9,1.0
-1075,9,0.671156773
-1107,9,0.896539944
-1119,9,0.132011938
-1125,9,0.919651648
-2013,10,1.0
-2016,10,1.0
-2020,10,1.0
-2050,10,1.0
-2060,10,1.0
-2068,10,1.0
-2070,10,1.0
-2090,10,1.0
-2100,10,1.0
-2105,10,1.0
-2110,10,1.0
-2122,10,1.0
-2130,10,1.0
-2150,10,1.0
-2164,10,1.0
-2170,10,1.0
-2180,10,1.0
-2185,10,1.0
-2188,10,1.0
-2195,10,1.0
-2198,10,1.0
-2220,10,1.0
-2230,10,1.0
-2240,10,1.0
-2261,10,1.0
-2270,10,1.0
-2275,10,1.0
-2282,10,1.0
-2290,10,1.0
-4013,11,0.313591566
-4021,11,0.481143903
-4001,12,0.240791673
-4005,12,0.9831498409999999
-4007,12,0.990629237
-4009,12,0.14459782300000001
-4012,12,1.0
-4013,12,0.620565385
-4015,12,0.635030875
-4017,12,0.957769799
-4019,12,0.004319223
-4021,12,0.43586784799999995
-4025,12,0.981552682
-4027,12,1.0
-6025,12,0.010245156
-6065,12,0.009286325
-6071,12,0.000614992
-4013,14,0.065843049
-4025,14,0.018447318
-4003,15,1.0
-4007,15,0.009370763
-4009,15,0.855402177
-4011,15,1.0
-4019,15,0.995680777
-4021,15,0.082988249
-4023,15,1.0
-5033,16,1.0
-5047,16,1.0
-5083,16,0.9718348
-5113,16,0.873228971
-5127,16,1.0
-5131,16,1.0
-40061,16,1.0
-40077,16,1.0
-40079,16,1.0
-40089,16,0.049461602
-40121,16,0.046614845999999995
-40127,16,0.00648213
-40135,16,0.921437155
-5021,18,0.6796090859999999
-5031,18,1.0
-5037,18,0.038122299
-5055,18,1.0
-5075,18,0.8695813259999999
-5093,18,0.17167513199999998
-5111,18,0.916632744
-5121,18,1.0
-5135,18,0.057231565
-29069,18,0.629664697
-29143,18,0.103517915
-29155,18,0.050269191
-5001,19,1.0
-5003,19,1.0
-5005,19,0.0014598179999999999
-5011,19,1.0
-5013,19,1.0
-5017,19,1.0
-5019,19,1.0
-5023,19,1.0
-5025,19,1.0
-5027,19,0.924958288
-5029,19,1.0
-5039,19,1.0
-5041,19,1.0
-5043,19,1.0
-5045,19,1.0
-5049,19,0.39838741
-5051,19,1.0
-5053,19,1.0
-5059,19,1.0
-5063,19,1.0
-5065,19,1.0
-5067,19,1.0
-5069,19,1.0
-5071,19,1.0
-5073,19,0.467471391
-5075,19,0.130418674
-5079,19,1.0
-5083,19,0.028165199999999998
-5085,19,1.0
-5095,19,1.0
-5097,19,1.0
-5101,19,0.044399439000000006
-5103,19,1.0
-5105,19,1.0
-5109,19,0.9584872640000001
-5115,19,1.0
-5117,19,1.0
-5119,19,1.0
-5125,19,1.0
-5135,19,0.7932729620000001
-5137,19,1.0
-5139,19,1.0
-5141,19,1.0
-5145,19,1.0
-5147,19,1.0
-5149,19,1.0
-5007,21,1.0
-5009,21,1.0
-5015,21,0.7218194490000001
-5087,21,1.0
-5089,21,0.015761703999999998
-5101,21,0.9556005609999999
-5129,21,0.906476449
-5143,21,1.0
-29009,21,0.077530035
-29119,21,0.278477058
-40001,21,0.339202237
-40041,21,0.190760535
-5057,22,1.0
-5061,22,1.0
-5073,22,0.532528609
-5081,22,1.0
-5091,22,1.0
-5099,22,1.0
-5109,22,0.041512736
-5113,22,0.126771029
-5133,22,1.0
-40089,22,0.7843450479999999
-48037,22,1.0
-48067,22,0.6577801010000001
-6059,23,1.0
-6065,23,0.119021265
-6073,23,0.003675517
-6029,25,0.8989353040000001
-6107,25,0.927959352
-6007,31,0.933237894
-6011,31,0.04524699
-6021,31,1.0
-6035,31,0.10425
-6063,31,0.273807433
-6103,31,0.760360563
-6115,31,0.016148556
-6013,33,0.769359847
-6095,33,0.578379985
-6019,43,1.0
-6031,43,1.0
-6039,43,0.847139573
-6043,43,0.007669285
-6107,43,0.072040648
-6029,56,0.060870745
-6037,56,0.9974601390000001
-6071,56,0.018016311
-6009,58,0.099454228
-6039,58,0.152860427
-6043,58,0.992330715
-6047,58,1.0
-6077,58,0.042082155
-6099,58,1.0
-6109,58,1.0
-6023,62,0.045367897000000004
-6033,62,1.0
-6045,62,0.9509845570000001
-6055,62,0.856276321
-6105,62,0.064717199
-6001,65,1.0
-6013,65,0.022841137999999997
-6065,69,0.131287315
-6071,69,0.032731553999999996
-6023,73,0.954632103
-6035,73,0.0168125
-6049,73,0.202995008
-6089,73,1.0
-6093,73,0.389147601
-6103,73,0.23963943699999998
-6105,73,0.9352828009999999
-6003,77,0.067857143
-6005,77,1.0
-6007,77,0.066762106
-6009,77,0.033630157
-6011,77,0.95475301
-6017,77,0.995674893
-6057,77,0.8068278809999999
-6061,77,0.977134218
-6067,77,1.0
-6077,77,0.126013801
-6091,77,0.076302274
-6095,77,0.072351811
-6101,77,1.0
-6113,77,1.0
-6115,77,0.983851444
-32005,77,0.117347565
-6053,78,0.986724956
-6027,79,0.006821211999999999
-6029,79,0.040193951
-6065,79,0.535583535
-6071,79,0.946048641
-6073,79,2.7899999999999997e-05
-6025,80,0.989754844
-6065,80,0.20482156
-6073,80,0.996296583
-6013,81,0.207799015
-6041,81,0.997956422
-6055,81,0.143723679
-6075,81,1.0
-6095,81,0.34926820299999994
-6069,82,1.0
-6085,82,0.9661044259999999
-6087,82,0.032672862999999996
-6053,83,0.003829707
-6079,83,0.9257603529999999
-6081,85,1.0
-6085,85,0.033895574
-6079,86,0.074239647
-6083,86,1.0
-6053,87,0.009445337
-6087,87,0.9673271370000001
-6041,89,0.002043578
-6045,89,0.049015443
-6097,89,1.0
-6009,91,0.866915615
-6077,91,0.8319040440000001
-6037,96,0.002539861
-6111,96,1.0
-8013,101,1.0
-8123,101,0.021439985
-8003,102,1.0
-8009,102,1.0
-8011,102,1.0
-8015,102,1.0
-8017,102,1.0
-8021,102,1.0
-8023,102,1.0
-8025,102,0.682922472
-8035,102,0.019386248999999998
-8039,102,0.064779188
-8041,102,1.0
-8043,102,1.0
-8061,102,0.793650794
-8071,102,0.961839599
-8079,102,1.0
-8089,102,0.9080671359999999
-8093,102,0.13829197699999998
-8099,102,1.0
-8105,102,1.0
-8109,102,1.0
-8119,102,1.0
-20199,102,0.15226849
-8001,103,1.0
-8005,103,1.0
-8014,103,1.0
-8019,103,1.0
-8031,103,1.0
-8035,103,0.9806137509999999
-8037,103,0.357342603
-8039,103,0.9352208120000001
-8047,103,1.0
-8049,103,1.0
-8059,103,1.0
-8063,103,1.0
-8065,103,1.0
-8073,103,1.0
-8081,103,0.9755127029999999
-8093,103,0.8617080229999999
-8097,103,1.0
-8107,103,1.0
-8117,103,1.0
-8123,103,0.225332775
-20023,103,1.0
-20039,103,1.0
-20109,103,0.24380305600000002
-20153,103,1.0
-20181,103,1.0
-20193,103,1.0
-31005,103,1.0
-31007,103,1.0
-31013,103,1.0
-31029,103,1.0
-31033,103,1.0
-31045,103,0.01510574
-31049,103,1.0
-31057,103,0.829168791
-31063,103,0.65474339
-31069,103,1.0
-31075,103,0.291832669
-31087,103,1.0
-31101,103,1.0
-31111,103,0.016747704
-31123,103,1.0
-31135,103,1.0
-31145,103,0.853145557
-31157,103,1.0
-31161,103,0.077771649
-31165,103,1.0
-56007,103,0.059689821
-56015,103,0.000596748
-56027,103,0.014855688
-8057,104,1.0
-8069,104,0.6816435120000001
-31105,104,1.0
-56001,104,1.0
-56007,104,0.08803597
-56015,104,0.034238401
-56021,104,1.0
-8029,105,1.0
-8037,105,0.642657397
-8045,105,1.0
-8051,105,1.0
-8053,105,1.0
-8077,105,1.0
-8085,105,1.0
-8091,105,1.0
-8103,105,0.586341616
-8113,105,1.0
-49019,105,0.014329179
-8069,106,0.318356488
-8075,106,1.0
-8087,106,1.0
-8095,106,1.0
-8115,106,1.0
-8121,106,1.0
-8123,106,0.7532272409999999
-8125,106,1.0
-31057,106,0.17083120899999998
-8025,107,0.317077528
-8027,107,1.0
-8055,107,1.0
-8071,107,0.038160401000000004
-8089,107,0.091932864
-8101,107,1.0
-9001,109,0.743701327
-9003,110,0.951217577
-9005,110,0.560123183
-9007,110,1.0
-9011,110,0.35002811899999997
-9013,110,1.0
-9015,110,1.0
-36021,110,0.008876446999999999
-36027,110,0.072917088
-9001,111,0.25629867300000003
-9003,111,0.048782423
-9005,111,0.43987681700000003
-9009,111,1.0
-9011,111,0.577078184
-36027,111,0.049484752
-36079,111,0.79590159
-36103,111,0.000123502
-36119,111,0.004986534
-10001,112,0.897661921
-10003,112,1.0
-24015,112,0.698079343
-34033,112,0.720847345
-11001,113,1.0
-24001,113,1.0
-24003,113,0.386380722
-24009,113,1.0
-24013,113,0.033433525
-24017,113,1.0
-24021,113,0.973951364
-24023,113,0.160324783
-24031,113,0.578125804
-24033,113,0.445304239
-24035,113,0.27995923899999997
-24037,113,1.0
-24043,113,0.993073153
-42009,113,0.07578868
-54027,113,0.22073659899999998
-54057,113,1.0
-12081,115,0.904097565
-12103,116,0.551064596
-12011,118,0.641000109
-12085,118,1.0
-12099,118,1.0
-12111,118,0.6797206490000001
-12015,119,0.84604257
-12021,119,1.0
-12043,119,1.0
-12051,119,1.0
-12071,119,0.9988003529999999
-12115,119,0.166233931
-12001,120,1.0
-12007,120,1.0
-12019,120,0.07053355900000001
-12023,120,1.0
-12029,120,1.0
-12041,120,1.0
-12047,120,0.145053921
-12067,120,1.0
-12075,120,0.896242365
-12107,120,1.0
-12121,120,1.0
-12123,120,0.05768611
-12125,120,1.0
-12053,122,1.0
-12101,122,0.5350492570000001
-12003,123,1.0
-12019,123,0.929466441
-12031,123,1.0
-12089,123,1.0
-12109,123,1.0
-13001,123,0.05018949599999999
-13003,123,1.0
-13005,123,1.0
-13025,123,1.0
-13039,123,1.0
-13049,123,1.0
-13065,123,0.9165424740000001
-13069,123,1.0
-13127,123,1.0
-13155,123,0.11121372
-13191,123,0.9206307659999999
-13229,123,1.0
-13299,123,1.0
-12049,124,0.280767687
-12057,124,0.055626220999999997
-12105,124,0.4926104
-12011,127,0.358999891
-12086,127,1.0
-12087,127,1.0
-12017,129,1.0
-12075,129,0.103757635
-12083,129,1.0
-12119,129,0.512431097
-12009,130,1.0
-12049,130,0.679899296
-12055,130,1.0
-12061,130,1.0
-12069,130,1.0
-12093,130,1.0
-12095,130,1.0
-12097,130,1.0
-12105,130,0.5073896
-12111,130,0.320279351
-12117,130,1.0
-12119,130,0.487568903
-12127,130,0.42025218200000003
-12035,131,1.0
-12127,131,0.579747818
-12005,133,1.0
-12013,133,0.045052691
-12037,133,0.600104913
-12045,133,1.0
-12133,133,0.959453542
-1003,134,0.028281992000000002
-1035,134,0.182362809
-1039,134,0.746022255
-1053,134,1.0
-12033,134,1.0
-12091,134,1.0
-12113,134,1.0
-12131,134,1.0
-12015,137,0.15395743
-12027,137,1.0
-12049,137,0.039333017000000005
-12071,137,0.0011996469999999999
-12081,137,0.095902435
-12115,137,0.833766069
-12103,139,0.448935404
-12013,140,0.954947309
-12037,140,0.39989508700000004
-12039,140,1.0
-12047,140,0.8549460790000001
-12065,140,1.0
-12073,140,1.0
-12077,140,1.0
-12079,140,1.0
-12123,140,0.94231389
-12129,140,1.0
-13019,140,1.0
-13027,140,1.0
-13065,140,0.08345752599999999
-13071,140,1.0
-13075,140,1.0
-13087,140,1.0
-13101,140,1.0
-13131,140,1.0
-13173,140,1.0
-13185,140,1.0
-13201,140,0.896109637
-13205,140,0.451560453
-13275,140,1.0
-13277,140,1.0
-13287,140,1.0
-13321,140,0.164791235
-12057,141,0.9443737790000001
-12101,141,0.46495074299999994
-13007,142,1.0
-13037,142,1.0
-13095,142,1.0
-13177,142,1.0
-13205,142,0.5484395470000001
-13243,142,0.248052309
-13249,142,1.0
-13261,142,0.9683407540000001
-13273,142,0.9634201590000001
-13321,142,0.835208765
-1017,144,0.043992700999999995
-1029,144,0.207931034
-1111,144,0.01889092
-13011,144,1.0
-13013,144,1.0
-13015,144,0.7156941609999999
-13035,144,1.0
-13045,144,1.0
-13057,144,1.0
-13059,144,1.0
-13063,144,1.0
-13067,144,1.0
-13077,144,1.0
-13085,144,1.0
-13089,144,1.0
-13097,144,1.0
-13105,144,1.0
-13111,144,1.0
-13113,144,1.0
-13117,144,1.0
-13119,144,1.0
-13121,144,1.0
-13123,144,1.0
-13129,144,0.11726155199999999
-13133,144,1.0
-13135,144,1.0
-13137,144,1.0
-13139,144,1.0
-13143,144,0.419590707
-13145,144,0.170212155
-13147,144,1.0
-13149,144,1.0
-13151,144,1.0
-13157,144,1.0
-13159,144,0.118217586
-13171,144,0.224919764
-13187,144,1.0
-13195,144,1.0
-13199,144,0.585220627
-13207,144,0.5418162320000001
-13211,144,1.0
-13213,144,1.0
-13217,144,1.0
-13219,144,1.0
-13221,144,1.0
-13223,144,1.0
-13227,144,1.0
-13231,144,0.709019567
-13237,144,1.0
-13241,144,1.0
-13247,144,1.0
-13255,144,1.0
-13257,144,1.0
-13281,144,1.0
-13285,144,0.8988147190000001
-13291,144,1.0
-13297,144,1.0
-13311,144,1.0
-13313,144,1.0
-37039,144,0.711441144
-37043,144,1.0
-37113,144,0.00769874
-13033,145,1.0
-13073,145,1.0
-13107,145,0.702632301
-13125,145,1.0
-13163,145,1.0
-13165,145,1.0
-13167,145,1.0
-13181,145,1.0
-13189,145,1.0
-13245,145,1.0
-13265,145,1.0
-13301,145,1.0
-13303,145,1.0
-13317,145,1.0
-45003,145,1.0
-45005,145,1.0
-45011,145,0.292638092
-45037,145,1.0
-45049,145,0.024473092000000002
-45065,145,0.151985172
-1081,146,0.21800344800000002
-1113,146,1.0
-13053,146,1.0
-13061,146,0.155483871
-13145,146,0.829787845
-13197,146,1.0
-13199,146,0.41477937299999995
-13215,146,1.0
-13239,146,1.0
-13243,146,0.7519476909999999
-13259,146,1.0
-13263,146,1.0
-13273,146,0.036579841
-13307,146,1.0
-13009,147,1.0
-13017,147,1.0
-13021,147,1.0
-13023,147,1.0
-13079,147,1.0
-13081,147,1.0
-13091,147,1.0
-13093,147,1.0
-13141,147,1.0
-13153,147,1.0
-13155,147,0.88878628
-13159,147,0.881782414
-13169,147,1.0
-13171,147,0.775080236
-13175,147,1.0
-13193,147,1.0
-13207,147,0.458183768
-13209,147,0.013433488
-13225,147,1.0
-13231,147,0.290980433
-13235,147,1.0
-13261,147,0.031659246
-13269,147,1.0
-13271,147,0.839101895
-13283,147,1.0
-13289,147,1.0
-13293,147,1.0
-13309,147,1.0
-13315,147,1.0
-13319,147,1.0
-1019,148,0.7508095220000001
-1029,148,0.105862069
-13015,148,0.284305839
-13055,148,1.0
-13115,148,1.0
-13129,148,0.882738448
-13143,148,0.580409293
-13233,148,1.0
-13001,149,0.9498105040000001
-13029,149,1.0
-13031,149,1.0
-13043,149,1.0
-13051,149,1.0
-13103,149,1.0
-13107,149,0.297367699
-13109,149,1.0
-13161,149,1.0
-13179,149,1.0
-13183,149,1.0
-13191,149,0.079369234
-13209,149,0.986566512
-13251,149,1.0
-13267,149,1.0
-13271,149,0.160898105
-13279,149,1.0
-13305,149,1.0
-45013,149,1.0
-45049,149,0.309883364
-45053,149,1.0
-15001,150,1.0
-15003,150,1.0
-15005,150,1.0
-15007,150,1.0
-15009,150,1.0
-16001,151,1.0
-16003,151,1.0
-16013,151,1.0
-16015,151,1.0
-16025,151,1.0
-16027,151,1.0
-16037,151,0.084188371
-16039,151,1.0
-16045,151,1.0
-16047,151,1.0
-16049,151,0.057558791
-16053,151,1.0
-16063,151,1.0
-16073,151,1.0
-16075,151,1.0
-16083,151,1.0
-16085,151,1.0
-16087,151,1.0
-32007,151,0.058694616
-41001,151,1.0
-41045,151,1.0
-41061,151,0.027823743999999997
-16011,152,0.9057690999999999
-16019,152,0.998930386
-16023,152,1.0
-16033,152,1.0
-16037,152,0.34727703200000004
-16043,152,1.0
-16051,152,1.0
-16065,152,1.0
-16081,152,1.0
-17037,154,0.144476055
-17043,154,0.063092945
-17089,154,0.279935017
-17093,154,0.96615972
-17099,154,0.110326219
-17031,155,0.161223737
-17197,155,0.057017122999999996
-17031,156,0.5022278720000001
-17031,158,0.029561929
-17043,158,0.043860917
-17089,158,0.43482994799999997
-17097,158,0.170116954
-17111,158,0.811561277
-17031,161,0.150285467
-17097,161,0.19645038899999998
-17043,163,0.369917706
-17197,163,0.229913003
-17031,164,0.004535328
-17053,164,0.067953328
-17063,164,0.996469158
-17075,164,0.178940641
-17091,164,1.0
-17093,164,0.03384028
-17099,164,0.032971466
-17197,164,0.713069873
-17031,166,0.136909908
-17043,166,0.523128432
-17089,166,0.277507763
-17011,170,0.28527259899999996
-17057,170,0.876861828
-17063,170,0.003530842
-17071,170,0.360892599
-17073,170,0.393385425
-17095,170,1.0
-17099,170,0.7449417759999999
-17105,170,0.199732985
-17123,170,1.0
-17125,170,0.345140665
-17131,170,0.100752083
-17143,170,1.0
-17155,170,0.9018232820000001
-17175,170,1.0
-17179,170,1.0
-17187,170,0.981510462
-17203,170,0.874194933
-17007,171,1.0
-17011,171,0.714727401
-17015,171,0.61510458
-17037,171,0.855523945
-17073,171,0.004930637
-17085,171,0.29459871600000004
-17089,171,0.0077272719999999994
-17099,171,0.11176054
-17103,171,1.0
-17111,171,0.188438723
-17141,171,1.0
-17155,171,0.09817671800000001
-17177,171,0.944181849
-17195,171,0.838686739
-17201,171,0.963740432
-17001,172,1.0
-17009,172,1.0
-17013,172,0.01018892
-17017,172,1.0
-17021,172,1.0
-17025,172,1.0
-17035,172,0.294027377
-17039,172,0.709818875
-17041,172,0.272181955
-17049,172,1.0
-17051,172,1.0
-17057,172,0.12313817199999999
-17061,172,0.9422806890000001
-17067,172,1.0
-17071,172,0.009632365
-17079,172,0.755550389
-17107,172,0.910882929
-17109,172,1.0
-17115,172,1.0
-17117,172,0.609794099
-17125,172,0.654859335
-17129,172,1.0
-17135,172,1.0
-17137,172,1.0
-17139,172,1.0
-17147,172,0.17214849
-17149,172,0.9417833459999999
-17167,172,1.0
-17169,172,1.0
-17171,172,1.0
-17173,172,1.0
-17191,172,0.028337491
-29111,172,0.973170497
-29127,172,0.075797212
-29205,172,0.186766275
-17019,173,1.0
-17023,173,0.081953363
-17029,173,1.0
-17035,173,0.705972623
-17039,173,0.246266285
-17041,173,0.727818045
-17045,173,1.0
-17053,173,0.91781023
-17075,173,0.821059359
-17079,173,0.09845402800000001
-17105,173,0.009095208
-17113,173,0.010652888999999999
-17147,173,0.82785151
-17183,173,1.0
-18045,173,0.490332827
-18111,173,0.215550057
-18165,173,0.074277136
-18171,173,0.476876132
-17039,175,0.04391484
-17053,175,0.014236442
-17105,175,0.791171808
-17107,175,0.08911707099999999
-17113,175,0.989347111
-17203,175,0.125805067
-17033,179,0.980135832
-17047,179,1.0
-17059,179,1.0
-17065,179,1.0
-17069,179,1.0
-17079,179,0.145995583
-17087,179,0.099330531
-17101,179,1.0
-17159,179,1.0
-17165,179,1.0
-17185,179,1.0
-17191,179,0.781487878
-17193,179,1.0
-18025,179,0.197203159
-18027,179,1.0
-18037,179,0.903740305
-18051,179,1.0
-18083,179,1.0
-18101,179,0.693793213
-18123,179,1.0
-18125,179,1.0
-18129,179,1.0
-18147,179,0.654149259
-18163,179,1.0
-18173,179,1.0
-21101,179,1.0
-21225,179,1.0
-21233,179,0.7134040079999999
-18001,180,1.0
-18003,180,1.0
-18033,180,1.0
-18069,180,0.882241775
-18075,180,0.8673189609999999
-18085,180,0.833122945
-18087,180,0.770155643
-18113,180,0.7118472379999999
-18151,180,1.0
-18169,180,0.9183597509999999
-18179,180,1.0
-18183,180,1.0
-39039,180,1.0
-39069,180,0.14059212
-39107,180,0.070560805
-39125,180,1.0
-39161,180,0.970579595
-39171,180,1.0
-18073,181,0.6007317010000001
-18089,181,0.52251808
-18091,181,0.411935083
-18111,181,0.291587362
-18127,181,1.0
-18149,181,0.8548718909999999
-26021,181,0.045724833
-18005,183,1.0
-18011,183,1.0
-18013,183,1.0
-18015,183,0.187858539
-18017,183,1.0
-18021,183,0.82208935
-18023,183,0.796021387
-18031,183,1.0
-18041,183,1.0
-18045,183,0.09846706300000001
-18047,183,0.187209237
-18049,183,0.070947203
-18053,183,1.0
-18055,183,0.8633790179999999
-18057,183,1.0
-18059,183,1.0
-18063,183,1.0
-18065,183,0.9719966959999999
-18067,183,1.0
-18069,183,0.117758225
-18071,183,1.0
-18079,183,1.0
-18081,183,1.0
-18093,183,1.0
-18095,183,1.0
-18097,183,1.0
-18101,183,0.306206787
-18103,183,0.942437856
-18105,183,1.0
-18107,183,0.9853844359999999
-18109,183,1.0
-18117,183,0.35557872799999996
-18119,183,0.953322192
-18131,183,1.0
-18133,183,1.0
-18135,183,0.11120996400000001
-18139,183,1.0
-18145,183,1.0
-18159,183,1.0
-18161,183,1.0
-18169,183,0.081640249
-18177,183,1.0
-18181,183,0.745667992
-39135,183,0.11147337
-18007,184,1.0
-18015,184,0.812141461
-18023,184,0.203978613
-18045,184,0.41120011
-18073,184,0.399268299
-18107,184,0.014615564
-18111,184,0.492862581
-18157,184,1.0
-18171,184,0.523123868
-18181,184,0.254332008
-18009,185,1.0
-18035,185,1.0
-18065,185,0.028003304
-18075,185,0.132681039
-18135,185,0.888790036
-39037,185,0.063333077
-17031,186,0.015255758000000001
-18089,186,0.47748192
-18039,187,1.0
-18049,187,0.929052797
-18085,187,0.166877055
-18087,187,0.229844357
-18091,187,0.5880649170000001
-18099,187,1.0
-18103,187,0.057562144
-18113,187,0.288152762
-18141,187,1.0
-18149,187,0.145128109
-26021,187,0.292446534
-26027,187,0.505117169
-17023,188,0.918046637
-17033,188,0.019864168
-18021,188,0.17791065
-18055,188,0.136620982
-18119,188,0.046677808
-18121,188,1.0
-18153,188,1.0
-18165,188,0.925722864
-18167,188,1.0
-19011,190,1.0
-19019,190,0.102670935
-19031,190,0.30970921
-19043,190,0.38217959100000004
-19055,190,0.936481879
-19095,190,0.552701781
-19103,190,0.025611684
-19105,190,0.9520544470000001
-19113,190,1.0
-19157,190,0.009747406
-19171,190,0.018600181
-17015,191,0.38489542
-17071,191,0.629475036
-17073,191,0.601683938
-17131,191,0.8992479170000001
-17161,191,0.991260218
-17187,191,0.018489538
-17195,191,0.16131326099999999
-19031,191,0.162124346
-19045,191,1.0
-19057,191,1.0
-19087,191,0.18436571
-19097,191,0.619573252
-19105,191,0.047945552999999995
-19111,191,0.022712013
-19115,191,0.45012810299999995
-19139,191,0.015851246
-19163,191,1.0
-19001,192,0.9539500340000001
-19003,192,0.9156414759999999
-19007,192,1.0
-19009,192,0.915411145
-19015,192,1.0
-19025,192,1.0
-19027,192,0.887757054
-19039,192,1.0
-19047,192,0.040334538999999996
-19049,192,1.0
-19051,192,1.0
-19053,192,1.0
-19069,192,0.012606474
-19073,192,1.0
-19075,192,0.18224852100000002
-19077,192,1.0
-19079,192,1.0
-19083,192,0.82883266
-19091,192,1.0
-19099,192,1.0
-19117,192,1.0
-19121,192,1.0
-19123,192,1.0
-19125,192,1.0
-19127,192,1.0
-19135,192,1.0
-19151,192,0.8310561
-19153,192,1.0
-19157,192,0.9780945390000001
-19159,192,1.0
-19161,192,0.305325802
-19169,192,1.0
-19171,192,0.6808005429999999
-19173,192,0.8890094559999999
-19175,192,1.0
-19177,192,0.141647421
-19181,192,1.0
-19185,192,1.0
-19187,192,1.0
-19197,192,0.326658514
-29129,192,0.283199045
-29171,192,0.100556174
-29197,192,0.023040321000000002
-29199,192,0.8286418740000001
-17085,193,0.705401284
-19043,193,0.296082284
-19055,193,0.063518121
-19061,193,1.0
-19097,193,0.380426748
-55043,193,0.577194403
-55065,193,0.175071
-17161,194,0.008739782
-19031,194,0.528166444
-19087,194,0.81563429
-19095,194,0.447298219
-19101,194,1.0
-19103,194,0.974388316
-19107,194,1.0
-19111,194,0.9772879870000001
-19115,194,0.549871897
-19139,194,0.984148754
-19157,194,0.012158055
-19177,194,0.8583525790000001
-19179,194,1.0
-19183,194,1.0
-29045,194,1.0
-29111,194,0.026829502999999998
-19023,195,0.214226263
-19033,195,1.0
-19067,195,0.296457388
-19069,195,0.987393526
-19081,195,1.0
-19109,195,0.850186233
-19131,195,1.0
-19147,195,0.698698805
-19151,195,0.013181161
-19189,195,0.986190637
-19195,195,1.0
-19197,195,0.673341486
-19021,196,0.896690998
-19035,196,1.0
-19093,196,1.0
-19133,196,0.200798631
-19141,196,0.849659255
-19149,196,1.0
-19151,196,0.155762739
-19161,196,0.694674198
-19167,196,0.670444638
-19193,196,0.984592241
-31027,196,0.20299197300000002
-31039,196,0.100031723
-31043,196,1.0
-31051,196,1.0
-31173,196,1.0
-31179,196,0.77770293
-46027,196,0.023697807999999997
-46127,196,0.87398374
-19013,197,1.0
-19017,197,1.0
-19019,197,0.897329065
-19023,197,0.7857737370000001
-19065,197,0.44507933
-19075,197,0.8177514790000001
-19083,197,0.17116734
-19171,197,0.300599276
-20013,200,0.7339099990000001
-20017,200,0.762840837
-20027,200,0.970490547
-20031,200,1.0
-20041,200,0.6920821109999999
-20043,200,0.21148514899999998
-20045,200,0.01715478
-20061,200,1.0
-20073,200,0.199969045
-20085,200,1.0
-20087,200,0.713823683
-20111,200,1.0
-20117,200,0.25350974600000004
-20127,200,0.984281735
-20131,200,1.0
-20139,200,1.0
-20149,200,1.0
-20161,200,1.0
-20177,200,1.0
-20197,200,1.0
-20201,200,0.29188078100000003
-8061,201,0.206349206
-20001,201,0.9751886940000001
-20003,201,0.265200835
-20007,201,1.0
-20009,201,1.0
-20011,201,0.034580611000000004
-20015,201,1.0
-20017,201,0.237159163
-20019,201,0.280128205
-20025,201,1.0
-20027,201,0.029509452999999998
-20029,201,1.0
-20033,201,1.0
-20035,201,1.0
-20041,201,0.307917889
-20047,201,1.0
-20049,201,1.0
-20051,201,1.0
-20053,201,1.0
-20055,201,1.0
-20057,201,1.0
-20063,201,1.0
-20065,201,1.0
-20067,201,1.0
-20069,201,1.0
-20071,201,1.0
-20073,201,0.800030955
-20075,201,1.0
-20077,201,1.0
-20079,201,1.0
-20081,201,1.0
-20083,201,1.0
-20089,201,0.868309859
-20093,201,1.0
-20095,201,1.0
-20097,201,1.0
-20099,201,0.8665638059999999
-20101,201,1.0
-20105,201,1.0
-20109,201,0.756196944
-20113,201,1.0
-20115,201,1.0
-20119,201,1.0
-20123,201,1.0
-20125,201,0.503998568
-20127,201,0.015718265
-20133,201,1.0
-20135,201,1.0
-20137,201,1.0
-20141,201,1.0
-20143,201,1.0
-20145,201,1.0
-20147,201,0.9529698329999999
-20151,201,1.0
-20155,201,1.0
-20157,201,1.0
-20159,201,1.0
-20163,201,1.0
-20165,201,1.0
-20167,201,1.0
-20169,201,1.0
-20171,201,1.0
-20173,201,1.0
-20175,201,1.0
-20179,201,1.0
-20183,201,1.0
-20185,201,1.0
-20187,201,1.0
-20189,201,1.0
-20191,201,1.0
-20195,201,1.0
-20199,201,0.84773151
-20201,201,0.029804728
-20203,201,1.0
-20205,201,1.0
-20207,201,1.0
-31169,201,0.09402843599999999
-40003,201,0.013208494
-40007,201,0.273823415
-40053,201,0.021035965
-40139,201,0.19558005899999997
-21015,203,1.0
-21023,203,0.177398303
-21037,203,1.0
-21077,203,0.630775154
-21081,203,1.0
-21117,203,1.0
-21187,203,0.131171246
-21191,203,1.0
-21005,204,1.0
-21011,204,1.0
-21017,204,1.0
-21021,204,1.0
-21023,204,0.8226016970000001
-21025,204,1.0
-21043,204,0.463767084
-21045,204,0.956576835
-21049,204,1.0
-21051,204,0.981014809
-21053,204,0.007265587
-21063,204,1.0
-21065,204,1.0
-21067,204,1.0
-21069,204,0.80459694
-21071,204,1.0
-21073,204,1.0
-21077,204,0.369224846
-21079,204,1.0
-21095,204,0.97024945
-21097,204,1.0
-21109,204,1.0
-21113,204,1.0
-21115,204,0.9854897220000001
-21119,204,1.0
-21121,204,0.979984271
-21125,204,1.0
-21129,204,1.0
-21131,204,1.0
-21133,204,0.7869616779999999
-21135,204,0.167706648
-21137,204,1.0
-21147,204,1.0
-21151,204,1.0
-21153,204,1.0
-21155,204,0.065738592
-21159,204,0.911222636
-21161,204,1.0
-21165,204,1.0
-21167,204,1.0
-21173,204,1.0
-21175,204,1.0
-21181,204,1.0
-21187,204,0.868828754
-21189,204,1.0
-21193,204,1.0
-21195,204,0.968634971
-21197,204,1.0
-21199,204,1.0
-21201,204,1.0
-21203,204,1.0
-21205,204,1.0
-21209,204,1.0
-21231,204,1.0
-21235,204,1.0
-21237,204,1.0
-21239,204,1.0
-39015,204,0.042951583
-54059,204,0.014789139
-18019,205,1.0
-18025,205,0.8027968409999999
-18037,205,0.096259695
-18043,205,1.0
-18061,205,1.0
-18077,205,1.0
-18117,205,0.644421272
-18137,205,0.18448863100000001
-18143,205,1.0
-18155,205,0.827196908
-18175,205,1.0
-21001,205,1.0
-21009,205,1.0
-21027,205,1.0
-21029,205,1.0
-21041,205,1.0
-21045,205,0.043423165
-21053,205,0.992734413
-21057,205,1.0
-21085,205,1.0
-21087,205,1.0
-21093,205,1.0
-21099,205,1.0
-21103,205,1.0
-21111,205,1.0
-21123,205,1.0
-21155,205,0.934261408
-21163,205,1.0
-21169,205,1.0
-21171,205,1.0
-21179,205,1.0
-21185,205,1.0
-21207,205,1.0
-21211,205,1.0
-21215,205,1.0
-21217,205,1.0
-21223,205,1.0
-21229,205,1.0
-18147,207,0.345850741
-21059,207,1.0
-21091,207,1.0
-21149,207,0.838648363
-21183,207,1.0
-17087,208,0.7590689709999999
-17127,208,1.0
-17151,208,1.0
-17153,208,0.29684418100000004
-17199,208,0.510394322
-21007,208,1.0
-21033,208,1.0
-21035,208,1.0
-21039,208,1.0
-21055,208,1.0
-21075,208,0.600692042
-21083,208,1.0
-21105,208,1.0
-21107,208,1.0
-21139,208,1.0
-21143,208,1.0
-21145,208,1.0
-21149,208,0.161351637
-21157,208,1.0
-21177,208,0.082052788
-21221,208,1.0
-21233,208,0.28659599199999997
-47079,208,0.082825937
-47131,208,0.155807848
-22003,209,0.578242645
-22009,209,1.0
-22025,209,1.0
-22029,209,0.593198605
-22039,209,0.088930329
-22043,209,1.0
-22059,209,1.0
-22069,209,0.021789729
-22079,209,0.9989478270000001
-22097,209,0.01009684
-22107,209,0.573296185
-22115,209,0.722432917
-22005,210,1.0
-22007,210,0.11845473
-22033,210,1.0
-22037,210,1.0
-22047,210,1.0
-22063,210,1.0
-22077,210,1.0
-22091,210,1.0
-22093,210,0.058435734
-22105,210,1.0
-22121,210,1.0
-22125,210,1.0
-28005,210,0.774723718
-28157,210,1.0
-22007,212,0.88154527
-22051,212,0.001739031
-22057,212,1.0
-22093,212,0.424432685
-22101,212,0.43094493
-22109,212,1.0
-22001,213,1.0
-22039,213,0.9110696709999999
-22045,213,1.0
-22053,213,0.766925676
-22055,213,1.0
-22097,213,0.98990316
-22099,213,1.0
-22101,213,0.56905507
-22113,213,1.0
-22003,214,0.421757355
-22011,214,1.0
-22019,214,1.0
-22023,214,1.0
-22053,214,0.23307432399999997
-22115,214,0.277567083
-48351,214,0.125413907
-22051,216,0.4836136
-22089,216,0.44956433
-22093,216,0.517131581
-22095,216,0.954120855
-22103,216,0.5580077410000001
-22117,216,1.0
-22021,217,1.0
-22035,217,0.984165135
-22041,217,1.0
-22067,217,1.0
-22073,217,1.0
-22083,217,1.0
-22107,217,0.426703815
-22111,217,0.73727993
-22123,217,1.0
-22051,218,0.51464737
-22071,218,1.0
-22075,218,1.0
-22087,218,1.0
-22089,218,0.55043567
-22095,218,0.045879145
-5027,219,0.075041712
-22013,219,1.0
-22015,219,1.0
-22017,219,1.0
-22027,219,1.0
-22031,219,1.0
-22049,219,1.0
-22061,219,1.0
-22069,219,0.9782102709999999
-22079,219,0.001052173
-22081,219,1.0
-22085,219,1.0
-22111,219,0.26272007
-22119,219,1.0
-22127,219,1.0
-48203,219,0.7861042090000001
-48365,219,1.0
-48419,219,0.101834378
-22103,220,0.441992259
-28045,220,1.0
-28109,220,0.78948777
-23003,221,1.0
-23009,221,1.0
-23013,221,0.000652889
-23019,221,1.0
-23021,221,1.0
-23025,221,0.8322302779999999
-23027,221,0.612929375
-23029,221,1.0
-23001,222,1.0
-23005,222,1.0
-23007,222,1.0
-23011,222,1.0
-23013,222,0.999347111
-23015,222,1.0
-23017,222,1.0
-23023,222,1.0
-23025,222,0.16776972199999998
-23027,222,0.387070625
-23031,222,1.0
-33003,222,0.395169265
-33015,222,0.016276044
-33017,222,1.0
-24003,223,0.5811788379999999
-24005,223,1.0
-24011,223,1.0
-24013,223,0.966566475
-24015,223,0.301920657
-24025,223,1.0
-24027,223,0.7859276340000001
-24029,223,1.0
-24035,223,0.7200407609999999
-24041,223,1.0
-24510,223,1.0
-10001,225,0.102338079
-10005,225,1.0
-24019,225,1.0
-24039,225,1.0
-24045,225,1.0
-24047,225,1.0
-51001,225,0.347474192
-24003,226,0.032440441
-24027,226,0.21407236600000001
-24031,226,0.42187419600000003
-24033,226,0.5546957610000001
-25001,227,1.0
-25005,227,0.741725338
-25007,227,1.0
-25009,227,1.0
-25017,227,0.959221397
-25019,227,1.0
-25021,227,0.9633389840000001
-25023,227,1.0
-25025,227,1.0
-25027,227,0.055728409000000007
-33011,227,0.033071199
-33015,227,0.179882076
-44005,227,0.23257297600000001
-25003,230,0.386332935
-25011,230,0.865254057
-25013,230,0.979381685
-25015,230,0.9984189290000001
-25027,230,0.013703647
-36021,230,0.08236318299999999
-50003,230,0.0461108
-25011,231,0.134745943
-25013,231,0.01752994
-25017,231,0.040778603
-25027,231,0.9153724940000001
-26059,232,0.17451879399999998
-26065,232,0.018897314
-26075,232,1.0
-26091,232,0.9210199259999999
-26093,232,0.975113687
-26125,232,0.07826526
-26161,232,1.0
-26163,232,0.283228358
-26115,233,0.024976385
-26163,233,0.282915767
-26099,234,0.8943450340000001
-26147,234,1.0
-26151,234,0.460165201
-26163,234,0.433855875
-26049,235,1.0
-26087,235,0.985787891
-26093,235,0.024886312999999997
-26125,235,0.017078753999999998
-26151,235,0.122350604
-26155,235,0.075817468
-26157,235,0.179215645
-26005,236,0.544807083
-26015,236,0.7649491359999999
-26067,236,0.817558131
-26073,236,0.0501358
-26081,236,1.0
-26085,236,0.7691428570000001
-26105,236,0.046630301
-26107,236,0.866615835
-26113,236,1.0
-26117,236,0.776154734
-26121,236,0.014758671000000001
-26123,236,1.0
-26127,236,0.21785252300000002
-26133,236,1.0
-26139,236,0.812081301
-26165,236,0.829819703
-26005,238,0.45519291700000003
-26015,238,0.235050864
-26023,238,1.0
-26025,238,1.0
-26027,238,0.494882831
-26045,238,0.052210509
-26059,238,0.825481206
-26077,238,1.0
-26149,238,1.0
-26159,238,0.5954834
-26035,239,1.0
-26037,239,1.0
-26045,239,0.947789491
-26057,239,1.0
-26065,239,0.981102686
-26067,239,0.18244186899999998
-26073,239,0.9498641999999999
-26107,239,0.133384165
-26111,239,0.109229185
-26117,239,0.22384526600000001
-26145,239,0.0071949940000000006
-26155,239,0.924182532
-26003,240,1.0
-26013,240,1.0
-26033,240,0.017688248
-26041,240,1.0
-26061,240,1.0
-26071,240,1.0
-26083,240,1.0
-26095,240,1.0
-26097,240,0.07560413099999999
-26103,240,1.0
-26109,240,0.147406289
-26131,240,0.713380047
-26153,240,1.0
-55037,240,0.111264115
-26105,242,0.882315678
-26121,242,0.985241329
-26127,242,0.782147477
-26139,242,0.187918699
-26009,243,0.167247694
-26029,243,1.0
-26031,243,1.0
-26033,243,0.982311752
-26047,243,1.0
-26097,243,0.924395869
-26119,243,0.6819533720000001
-26137,243,1.0
-26141,243,0.746606013
-26125,244,0.40327954
-26099,245,0.105654966
-26125,245,0.501376446
-26001,246,1.0
-26007,246,1.0
-26011,246,1.0
-26017,246,1.0
-26051,246,1.0
-26063,246,1.0
-26069,246,1.0
-26087,246,0.014212108999999999
-26111,246,0.890770815
-26119,246,0.318046628
-26129,246,1.0
-26135,246,1.0
-26141,246,0.253393987
-26143,246,0.14712008199999999
-26145,246,0.992805006
-26151,246,0.417484194
-26157,246,0.820784355
-26021,248,0.6618286329999999
-26159,248,0.40451659999999995
-26009,249,0.8327523059999999
-26019,249,1.0
-26039,249,1.0
-26055,249,1.0
-26079,249,1.0
-26085,249,0.23085714300000001
-26089,249,1.0
-26101,249,1.0
-26105,249,0.071054021
-26143,249,0.852879918
-26165,249,0.17018029699999998
-26053,250,0.9179788329999999
-26131,250,0.13430096800000002
-27001,250,0.034992175
-27017,250,1.0
-27031,250,1.0
-27075,250,1.0
-27115,250,0.276570005
-27137,250,0.875890132
-55003,250,0.845519005
-55007,250,1.0
-55031,250,1.0
-55051,250,0.7560975609999999
-55113,250,0.8203152990000001
-19063,251,0.150218613
-19109,251,0.047868672
-19189,251,0.013809363
-27001,251,0.965007825
-27003,251,1.0
-27011,251,0.314405488
-27013,251,1.0
-27015,251,1.0
-27019,251,1.0
-27021,251,0.591803457
-27023,251,1.0
-27025,251,0.20367708399999998
-27035,251,1.0
-27037,251,0.564490704
-27041,251,0.979225096
-27043,251,0.652400549
-27049,251,0.102496559
-27051,251,0.32001887100000004
-27053,251,1.0
-27059,251,0.804581999
-27061,251,1.0
-27065,251,1.0
-27067,251,0.9663452709999999
-27071,251,0.892352805
-27073,251,0.472666772
-27079,251,1.0
-27083,251,0.077215243
-27085,251,1.0
-27091,251,0.978649827
-27093,251,0.743810193
-27095,251,1.0
-27097,251,1.0
-27103,251,1.0
-27111,251,0.11328801599999999
-27115,251,0.723429995
-27121,251,0.052993806
-27123,251,0.091501587
-27127,251,0.8810754909999999
-27129,251,1.0
-27131,251,1.0
-27137,251,0.12410986800000001
-27139,251,1.0
-27141,251,0.69576314
-27143,251,1.0
-27145,251,0.017967087
-27149,251,1.0
-27151,251,0.41576891200000005
-27153,251,0.22613172199999998
-27155,251,0.671252927
-27159,251,0.71521376
-27161,251,0.8862943090000001
-27165,251,0.894879192
-27171,251,0.959077664
-27173,251,0.6979878509999999
-46109,251,0.09160459
-55005,251,0.551679673
-55013,251,1.0
-55017,251,0.167393064
-55033,251,0.9868334129999999
-55035,251,1.0
-55093,251,0.11358629599999999
-55095,251,0.08477301
-55109,251,0.04322132
-55121,251,0.213994744
-55129,251,0.790980302
-19037,253,1.0
-19067,253,0.703542612
-19089,253,1.0
-19191,253,0.042761238
-27037,253,0.00281937
-27039,253,1.0
-27043,253,0.347599451
-27045,253,0.664405033
-27047,253,1.0
-27049,253,0.8975034409999999
-27099,253,1.0
-27109,253,1.0
-27147,253,1.0
-27157,253,1.0
-27161,253,0.113705691
-27169,253,0.176489443
-55011,253,0.355784134
-55033,253,0.013166586999999999
-55091,253,1.0
-55093,253,0.112248049
-27009,254,1.0
-27021,254,0.10834511
-27041,254,0.020774904
-27067,254,0.033654729
-27093,254,0.256189807
-27121,254,0.9470061940000001
-27141,254,0.30423686
-27145,254,0.982032913
-27151,254,0.584231088
-27153,254,0.773868278
-27171,254,0.040922336000000004
-27025,256,0.7963229159999999
-27037,256,0.432689926
-27059,256,0.195418001
-27123,256,0.908498413
-27163,256,1.0
-55093,256,0.774165654
-55095,256,0.91522699
-55109,256,0.95677868
-28047,257,1.0
-28031,258,1.0
-28035,258,1.0
-28041,258,0.206253152
-28061,258,0.8159756229999999
-28065,258,0.25588020899999997
-28067,258,1.0
-28073,258,1.0
-28109,258,0.21051223
-28111,258,1.0
-28129,258,0.475400417
-28131,258,1.0
-28153,258,1.0
-22029,259,0.406801395
-22035,259,0.015834865
-22065,259,1.0
-28001,259,1.0
-28005,259,0.225276282
-28007,259,1.0
-28015,259,1.0
-28019,259,1.0
-28021,259,1.0
-28029,259,1.0
-28037,259,1.0
-28049,259,1.0
-28051,259,1.0
-28053,259,1.0
-28055,259,1.0
-28063,259,1.0
-28065,259,0.7441197909999999
-28077,259,1.0
-28079,259,1.0
-28083,259,1.0
-28085,259,1.0
-28089,259,1.0
-28091,259,1.0
-28097,259,0.776601196
-28113,259,1.0
-28121,259,1.0
-28123,259,1.0
-28125,259,1.0
-28127,259,1.0
-28129,259,0.524599583
-28133,259,1.0
-28135,259,0.035501193
-28147,259,1.0
-28149,259,1.0
-28155,259,0.058521653
-28159,259,1.0
-28163,259,1.0
-1023,260,1.0
-1119,260,0.867988062
-28023,260,1.0
-28061,260,0.184024377
-28069,260,1.0
-28075,260,1.0
-28099,260,1.0
-28101,260,1.0
-28103,260,1.0
-28013,261,1.0
-28017,261,0.45250800399999996
-28043,261,1.0
-28071,261,1.0
-28093,261,0.041145847
-28097,261,0.22339880399999998
-28107,261,0.801826588
-28135,261,0.499552506
-28155,261,0.13117853599999998
-28161,261,1.0
-1059,262,0.024636228
-1075,262,0.29261796
-1093,262,0.386833253
-1107,262,0.103460056
-28009,262,0.259227677
-28017,262,0.547491996
-28025,262,1.0
-28057,262,1.0
-28081,262,1.0
-28087,262,1.0
-28093,262,0.08419439199999999
-28095,262,1.0
-28105,262,1.0
-28115,262,1.0
-28117,262,1.0
-28139,262,0.054538866
-28141,262,0.227756732
-28145,262,0.894522501
-28155,262,0.8102998109999999
-17003,263,1.0
-17077,263,0.315108289
-17087,263,0.14160049800000002
-17153,263,0.703155819
-17181,263,1.0
-29017,263,0.999565369
-29031,263,1.0
-29123,263,0.118610193
-29133,263,1.0
-29143,263,0.797850163
-29155,263,0.68501603
-29157,263,1.0
-29201,263,1.0
-29207,263,0.777736786
-17149,264,0.05821665400000001
-29001,264,1.0
-29007,264,1.0
-29015,264,0.19090036300000002
-29019,264,1.0
-29027,264,1.0
-29029,264,0.970971147
-29033,264,0.024637044
-29041,264,1.0
-29051,264,1.0
-29053,264,1.0
-29073,264,0.5129595020000001
-29089,264,1.0
-29103,264,1.0
-29115,264,0.925747705
-29121,264,1.0
-29125,264,0.89725927
-29127,264,0.924202788
-29131,264,1.0
-29135,264,1.0
-29137,264,1.0
-29139,264,0.815430815
-29141,264,1.0
-29151,264,1.0
-29159,264,1.0
-29163,264,0.060668547999999996
-29171,264,0.899443826
-29173,264,1.0
-29175,264,1.0
-29195,264,1.0
-29197,264,0.976959679
-29199,264,0.17135812600000003
-29205,264,0.813233725
-29211,264,0.9800335309999999
-20001,267,0.024811306
-20011,267,0.965419389
-20021,267,1.0
-20037,267,1.0
-20099,267,0.09013537699999999
-20107,267,0.560323069
-29009,267,0.019522501
-29011,267,0.88034262
-29013,267,0.063076427
-29039,267,0.049720142
-29097,267,1.0
-29109,267,0.024984732000000003
-29119,267,0.721522942
-29145,267,1.0
-29217,267,0.92228583
-40035,267,0.19056762300000002
-40041,267,0.754563895
-40115,267,1.0
-20003,268,0.734799165
-20005,268,1.0
-20013,268,0.266090001
-20043,268,0.788514851
-20045,268,0.98284522
-20059,268,1.0
-20087,268,0.286176317
-20091,268,1.0
-20103,268,1.0
-20107,268,0.439676931
-20121,268,1.0
-20209,268,1.0
-29003,268,1.0
-29013,268,0.936923573
-29015,268,0.809099637
-29021,268,1.0
-29025,268,1.0
-29033,268,0.9753629559999999
-29037,268,1.0
-29047,268,1.0
-29049,268,1.0
-29061,268,1.0
-29063,268,1.0
-29075,268,1.0
-29079,268,1.0
-29081,268,1.0
-29083,268,1.0
-29085,268,0.124867163
-29087,268,0.854648526
-29095,268,1.0
-29101,268,1.0
-29107,268,1.0
-29115,268,0.074252295
-29117,268,1.0
-29129,268,0.716800955
-29147,268,0.987198424
-29165,268,1.0
-29177,268,1.0
-29185,268,1.0
-29211,268,0.019966469
-29227,268,1.0
-5005,270,0.998540182
-5015,270,0.278180551
-5049,270,0.60161259
-5089,270,0.9842382959999999
-5129,270,0.093523551
-5135,270,0.149495472
-29009,270,0.902947465
-29011,270,0.11965738
-29029,270,0.029028852999999997
-29039,270,0.9502798579999999
-29043,270,1.0
-29057,270,1.0
-29059,270,1.0
-29067,270,1.0
-29077,270,1.0
-29085,270,0.875132837
-29091,270,1.0
-29105,270,1.0
-29109,270,0.9750152679999999
-29149,270,1.0
-29153,270,1.0
-29161,270,0.000988865
-29167,270,1.0
-29169,270,0.141621401
-29203,270,1.0
-29209,270,1.0
-29213,270,1.0
-29215,270,1.0
-29217,270,0.07771417
-29225,270,1.0
-29229,270,1.0
-5021,273,0.32039091399999997
-17005,273,1.0
-17013,273,0.98981108
-17027,273,1.0
-17055,273,1.0
-17061,273,0.057719310999999995
-17077,273,0.6848917109999999
-17081,273,1.0
-17083,273,1.0
-17117,273,0.390205901
-17119,273,1.0
-17121,273,1.0
-17133,273,1.0
-17145,273,1.0
-17157,273,1.0
-17163,273,1.0
-17189,273,1.0
-17191,273,0.190174631
-17199,273,0.489605678
-29017,273,0.000434631
-29023,273,1.0
-29035,273,1.0
-29055,273,1.0
-29065,273,1.0
-29069,273,0.37033530299999995
-29071,273,1.0
-29073,273,0.487040498
-29093,273,1.0
-29099,273,1.0
-29113,273,1.0
-29123,273,0.881389807
-29125,273,0.10274073
-29139,273,0.184569185
-29143,273,0.098631922
-29161,273,0.999011135
-29163,273,0.939331452
-29169,273,0.858378599
-29179,273,1.0
-29181,273,1.0
-29183,273,1.0
-29186,273,1.0
-29187,273,1.0
-29189,273,1.0
-29207,273,0.222263214
-29219,273,1.0
-29221,273,1.0
-29223,273,1.0
-29510,273,1.0
-30003,274,1.0
-30005,274,0.011984436000000001
-30007,274,1.0
-30009,274,1.0
-30011,274,0.727692308
-30017,274,1.0
-30019,274,1.0
-30021,274,1.0
-30025,274,1.0
-30027,274,0.993486214
-30031,274,1.0
-30033,274,1.0
-30037,274,1.0
-30043,274,1.0
-30045,274,0.438224912
-30049,274,0.9659550509999999
-30055,274,1.0
-30057,274,0.281966332
-30059,274,1.0
-30065,274,1.0
-30067,274,1.0
-30069,274,1.0
-30071,274,0.051863493
-30075,274,1.0
-30077,274,0.086431879
-30079,274,1.0
-30083,274,1.0
-30085,274,0.9150365709999999
-30087,274,1.0
-30091,274,1.0
-30095,274,1.0
-30097,274,1.0
-30103,274,1.0
-30105,274,1.0
-30107,274,1.0
-30109,274,1.0
-30111,274,1.0
-38053,274,0.013111053000000001
-56003,274,1.0
-56005,274,1.0
-56029,274,1.0
-56033,274,0.963328258
-56043,274,1.0
-30005,275,0.988015564
-30013,275,1.0
-30015,275,1.0
-30027,275,0.006513786
-30035,275,1.0
-30041,275,1.0
-30045,275,0.561775088
-30049,275,0.034044949
-30051,275,1.0
-30071,275,0.9481365070000001
-30073,275,1.0
-30099,275,1.0
-30101,275,1.0
-16037,276,0.568534596
-16059,276,1.0
-30001,276,1.0
-30023,276,1.0
-30029,276,1.0
-30039,276,1.0
-30047,276,1.0
-30053,276,1.0
-30057,276,0.718033668
-30061,276,1.0
-30063,276,1.0
-30077,276,0.913568121
-30081,276,1.0
-30089,276,0.8818965520000001
-30093,276,1.0
-20089,277,0.13169014099999998
-20117,277,0.746490254
-20147,277,0.047030167000000005
-20201,277,0.678314491
-31001,277,1.0
-31009,277,0.871485944
-31023,277,1.0
-31025,277,0.282313716
-31031,277,0.9394441379999999
-31035,277,1.0
-31041,277,0.854628781
-31047,277,0.9822632290000001
-31059,277,1.0
-31061,277,0.67177814
-31063,277,0.34525661
-31065,277,1.0
-31067,277,1.0
-31073,277,1.0
-31075,277,0.708167331
-31081,277,0.859016393
-31083,277,1.0
-31085,277,1.0
-31091,277,1.0
-31095,277,1.0
-31097,277,1.0
-31099,277,0.050813683
-31109,277,1.0
-31111,277,0.983252296
-31113,277,1.0
-31117,277,1.0
-31129,277,1.0
-31131,277,0.36429132799999997
-31133,277,1.0
-31137,277,1.0
-31143,277,0.111476083
-31145,277,0.146854443
-31147,277,0.221712728
-31151,277,1.0
-31155,277,0.436441908
-31159,277,1.0
-31169,277,0.905971564
-31171,277,1.0
-31175,277,0.138201988
-31181,277,1.0
-31185,277,1.0
-19001,278,0.046049966
-19003,278,0.084358524
-19009,278,0.084588855
-19027,278,0.112242946
-19029,278,1.0
-19047,278,0.9596654609999999
-19071,278,1.0
-19085,278,1.0
-19129,278,1.0
-19133,278,0.799201369
-19137,278,1.0
-19145,278,1.0
-19155,278,1.0
-19165,278,1.0
-19173,278,0.11099054400000001
-19193,278,0.015407758999999998
-29005,278,1.0
-29087,278,0.145351474
-29147,278,0.012801576
-31003,278,1.0
-31009,278,0.128514056
-31011,278,1.0
-31015,278,0.8610846809999999
-31017,278,1.0
-31019,278,1.0
-31021,278,1.0
-31025,278,0.717686284
-31027,278,0.28691316
-31031,278,0.017301675
-31037,278,1.0
-31039,278,0.899968277
-31041,278,0.145371219
-31047,278,0.017736771000000002
-31053,278,1.0
-31055,278,1.0
-31061,278,0.32822186
-31071,278,1.0
-31077,278,1.0
-31079,278,1.0
-31081,278,0.14098360699999998
-31089,278,1.0
-31093,278,1.0
-31099,278,0.949186317
-31103,278,0.810419682
-31107,278,0.623072657
-31115,278,1.0
-31119,278,1.0
-31121,278,1.0
-31125,278,1.0
-31127,278,1.0
-31131,278,0.635708672
-31139,278,1.0
-31141,278,1.0
-31143,278,0.888523917
-31147,278,0.778287272
-31149,278,1.0
-31153,278,1.0
-31155,278,0.5635580920000001
-31163,278,1.0
-31167,278,1.0
-31175,278,0.8617980120000001
-31177,278,1.0
-31179,278,0.22229707
-31183,278,1.0
-4015,279,0.317410651
-6027,279,0.138014155
-6071,279,0.002588502
-32003,279,1.0
-32017,279,0.29822187899999997
-32023,279,0.8838925559999999
-6003,280,0.932142857
-6017,280,0.004325107
-6027,280,0.855164632
-6035,280,0.8789375
-6049,280,0.700915141
-6051,280,1.0
-6057,280,0.19317211899999998
-6061,280,0.022865782
-6063,280,0.726192567
-6091,280,0.9236977259999999
-32001,280,1.0
-32005,280,0.882652435
-32009,280,1.0
-32011,280,0.731034483
-32013,280,1.0
-32015,280,1.0
-32019,280,1.0
-32021,280,1.0
-32023,280,0.109254675
-32027,280,1.0
-32029,280,1.0
-32031,280,1.0
-32510,280,1.0
-33005,281,0.851946502
-33007,281,1.0
-33009,281,0.695740095
-33013,281,0.09383914800000001
-33019,281,0.9723528570000001
-50001,281,0.018150146000000002
-50003,281,0.026776721
-50005,281,0.916836854
-50009,281,1.0
-50017,281,0.77442193
-50019,281,0.8884998159999999
-50021,281,0.006064111
-50023,281,0.011342631
-50025,281,0.89567991
-50027,281,1.0
-33001,282,1.0
-33003,282,0.604830735
-33005,282,0.148053498
-33009,282,0.304259905
-33011,282,0.9669288009999999
-33013,282,0.9061608520000001
-33015,282,0.80384188
-33019,282,0.027647143
-34001,283,1.0
-34005,283,0.959043023
-34007,283,1.0
-34009,283,1.0
-34011,283,1.0
-34015,283,0.454889592
-34025,283,0.99026406
-34029,283,1.0
-34033,283,0.279152655
-34003,284,0.75507393
-34017,284,0.42070289899999996
-34031,284,0.30698818699999997
-36087,284,0.553576614
-34013,285,0.025397577
-34023,285,0.047321389000000005
-34027,285,0.901581418
-34035,285,0.23621282300000002
-34037,285,0.983975295
-34039,285,0.37215822600000004
-34041,285,0.437894073
-36071,285,0.05323778
-36105,285,0.058517965
-42103,285,0.48255330700000004
-34021,288,0.300329305
-34023,288,0.9007667659999999
-34035,288,0.763787177
-34003,289,0.016907545
-34013,289,0.974602423
-34017,289,0.579297101
-34023,289,0.051911845
-34039,289,0.627841774
-34003,291,0.02162583
-34027,291,0.09841858199999999
-34031,291,0.6556463539999999
-34003,292,0.206392695
-34031,292,0.037365459
-34037,292,0.016024705
-36071,292,0.323406849
-36087,292,0.44642338600000003
-4001,293,0.7592083270000001
-4017,293,0.042230200999999995
-8007,293,1.0
-8033,293,1.0
-8067,293,1.0
-8083,293,1.0
-8111,293,1.0
-35001,293,1.0
-35003,293,1.0
-35005,293,1.0
-35006,293,1.0
-35007,293,1.0
-35011,293,0.9723300970000001
-35015,293,0.326298955
-35017,293,1.0
-35019,293,1.0
-35021,293,0.658476658
-35023,293,1.0
-35025,293,0.000385021
-35027,293,1.0
-35028,293,1.0
-35031,293,1.0
-35033,293,1.0
-35035,293,0.051679052999999996
-35037,293,0.011356844
-35039,293,1.0
-35043,293,1.0
-35045,293,1.0
-35047,293,1.0
-35049,293,1.0
-35053,293,1.0
-35055,293,1.0
-35057,293,1.0
-35059,293,0.975047529
-35061,293,1.0
-49037,293,0.18945449399999997
-25003,295,0.613667065
-25013,295,0.003088375
-25015,295,0.001581071
-36001,295,1.0
-36017,295,0.10497687300000001
-36021,295,0.90876037
-36025,295,0.410283492
-36027,295,0.87759816
-36031,295,0.074048987
-36035,295,0.986966563
-36039,295,1.0
-36041,295,0.714748307
-36043,295,0.096487796
-36057,295,0.908585311
-36077,295,0.305451049
-36083,295,1.0
-36091,295,1.0
-36093,295,1.0
-36095,295,0.937481882
-36105,295,0.708105414
-36111,295,0.819661309
-36113,295,0.986715372
-36115,295,0.990448842
-50003,295,0.9136541690000001
-50025,295,0.10432009
-36007,296,1.0
-36017,296,0.752744526
-36025,296,0.589716508
-36077,296,0.6945489509999999
-36095,296,0.062518118
-36105,296,0.033122139
-36107,296,0.540889498
-42115,296,0.416268889
-42127,296,0.007197069
-36005,297,0.935304259
-36119,297,0.108325083
-36003,299,0.264927234
-36009,299,0.8992244909999999
-36013,299,0.333931329
-36029,299,1.0
-36037,299,0.93915458
-36051,299,0.005711022
-36063,299,1.0
-36073,299,0.722473417
-36121,299,0.435195255
-42083,299,0.080800289
-42105,299,0.156478076
-36015,300,0.9713483409999999
-36035,300,0.013033437
-36041,300,0.09685016199999999
-36043,300,0.9035122040000001
-36049,300,0.026627451
-36057,300,0.09141468900000001
-36065,300,0.668613126
-36097,300,0.759430974
-42015,300,0.057373147
-42117,300,0.046380415
-36059,301,0.964139234
-36081,301,0.8733028509999999
-36103,301,0.999876498
-36005,303,0.064695741
-36047,303,1.0
-36059,303,0.035860766
-36061,303,1.0
-36081,303,0.126697149
-36085,303,1.0
-36003,304,0.7350727659999999
-36011,304,0.026524847
-36037,304,0.06084542
-36051,304,0.9942889779999999
-36055,304,1.0
-36069,304,1.0
-36073,304,0.277526583
-36099,304,1.0
-36101,304,0.5657202170000001
-36107,304,0.020364178
-36109,304,0.93248179
-36117,304,1.0
-36121,304,0.564804745
-36123,304,1.0
-36011,307,0.973475153
-36017,307,0.142278602
-36023,307,1.0
-36045,307,1.0
-36049,307,0.973372549
-36053,307,1.0
-36065,307,0.331386874
-36067,307,1.0
-36075,307,1.0
-36089,307,0.40523215799999995
-36109,307,0.06751821
-36071,308,0.62335537
-36079,308,0.20409841
-36105,308,0.156900555
-36111,308,0.18033869100000002
-36119,308,0.886688383
-37011,309,0.81748161
-37021,309,1.0
-37027,309,0.014538812
-37039,309,0.28855885600000003
-37075,309,1.0
-37087,309,1.0
-37089,309,1.0
-37099,309,1.0
-37111,309,1.0
-37113,309,0.99230126
-37115,309,1.0
-37121,309,1.0
-37149,309,0.146852475
-37173,309,1.0
-37175,309,1.0
-37189,309,0.060040284000000006
-37199,309,1.0
-37007,311,1.0
-37023,311,0.703206497
-37025,311,1.0
-37045,311,1.0
-37071,311,1.0
-37097,311,0.451653575
-37109,311,1.0
-37119,311,1.0
-37153,311,0.8396155679999999
-37159,311,0.950337157
-37161,311,1.0
-37167,311,1.0
-37179,311,1.0
-45023,311,0.155831857
-45025,311,0.319320846
-45055,311,0.001553226
-45057,311,1.0
-45091,311,1.0
-37001,312,1.0
-37033,312,1.0
-37037,312,0.532084189
-37063,312,0.996916777
-37077,312,1.0
-37085,312,0.042541148
-37093,312,1.0
-37105,312,1.0
-37123,312,0.408078856
-37125,312,1.0
-37135,312,1.0
-37145,312,1.0
-37153,312,0.160384432
-37155,312,0.9312576570000001
-37165,312,1.0
-37181,312,1.0
-37185,312,1.0
-51037,312,0.371475435
-51083,312,1.0
-51089,312,1.0
-51117,312,0.41481902600000004
-51143,312,0.669910639
-51590,312,1.0
-37037,313,0.433324119
-37057,313,0.06532924
-37081,313,0.774147225
-37123,313,0.591921144
-37151,313,0.707329643
-37157,313,1.0
-37013,314,1.0
-37015,314,1.0
-37031,314,1.0
-37041,314,1.0
-37049,314,1.0
-37061,314,0.7129145290000001
-37065,314,0.570496392
-37073,314,0.26028561699999997
-37079,314,1.0
-37083,314,0.01916991
-37091,314,1.0
-37095,314,0.886519115
-37103,314,1.0
-37107,314,1.0
-37117,314,1.0
-37131,314,0.213073005
-37133,314,0.9495536109999999
-37137,314,1.0
-37147,314,1.0
-37177,314,1.0
-37187,314,1.0
-37195,314,0.036483349
-37003,315,0.688658465
-37023,315,0.296793503
-37027,315,0.9854611879999999
-37035,315,1.0
-37037,318,0.034591692
-37051,318,1.0
-37061,318,0.08779621
-37063,318,0.003083223
-37065,318,0.429503608
-37069,318,1.0
-37083,318,0.98083009
-37085,318,0.957458852
-37101,318,1.0
-37127,318,1.0
-37131,318,0.786926995
-37155,318,0.068742343
-37163,318,1.0
-37183,318,1.0
-37191,318,1.0
-37195,318,0.963516651
-37017,319,1.0
-37019,319,0.8799947840000001
-37047,319,0.8138081309999999
-37061,319,0.19928926100000002
-37129,319,1.0
-37133,319,0.050446389
-37141,319,1.0
-37003,320,0.311341535
-37005,320,1.0
-37009,320,0.9132694140000001
-37057,320,0.93467076
-37059,320,1.0
-37067,320,1.0
-37081,320,0.225852775
-37097,320,0.548346425
-37151,320,0.292670357
-37159,320,0.049662843
-37169,320,1.0
-37171,320,1.0
-37193,320,1.0
-37197,320,1.0
-51035,320,0.926930481
-51077,320,0.8742685029999999
-51141,320,1.0
-51640,320,1.0
-38001,321,1.0
-38007,321,1.0
-38011,321,1.0
-38015,321,1.0
-38021,321,0.10384615400000001
-38025,321,1.0
-38029,321,1.0
-38033,321,1.0
-38037,321,1.0
-38041,321,1.0
-38043,321,1.0
-38047,321,0.7155907429999999
-38051,321,1.0
-38053,321,0.9229834159999999
-38055,321,0.578165939
-38057,321,1.0
-38059,321,1.0
-38065,321,1.0
-38083,321,1.0
-38085,321,1.0
-38087,321,1.0
-38089,321,1.0
-38093,321,0.022370837999999997
-38103,321,0.656338028
-46021,321,1.0
-46031,321,1.0
-46041,321,0.919720497
-46045,321,0.305933727
-46063,321,0.222222222
-46089,321,0.643356643
-46105,321,1.0
-46107,321,0.261243645
-46129,321,1.0
-27005,322,1.0
-27007,322,1.0
-27021,322,0.299851433
-27027,322,1.0
-27029,322,1.0
-27051,322,0.6799811290000001
-27057,322,1.0
-27071,322,0.092599738
-27087,322,1.0
-27089,322,0.40489361700000004
-27107,322,1.0
-27111,322,0.8867119840000001
-27113,322,1.0
-27119,322,0.17416698600000002
-27125,322,0.46009389700000003
-27135,322,0.01606883
-27155,322,0.328747073
-27159,322,0.28478624
-27167,322,1.0
-38003,322,1.0
-38005,322,0.718124813
-38017,322,1.0
-38021,322,0.564102564
-38027,322,1.0
-38031,322,1.0
-38035,322,0.015745174
-38039,322,1.0
-38045,322,1.0
-38047,322,0.28440925699999997
-38071,322,0.953498257
-38073,322,1.0
-38077,322,1.0
-38081,322,1.0
-38091,322,1.0
-38093,322,0.977629162
-38097,322,0.861603253
-38103,322,0.34366197200000004
-46091,322,0.91172735
-46109,322,0.689450372
-27069,323,1.0
-27071,323,0.015047457
-27077,323,1.0
-27089,323,0.595106383
-27119,323,0.8258330140000001
-27125,323,0.539906103
-27135,323,0.98393117
-38019,323,1.0
-38035,323,0.9842548259999999
-38063,323,1.0
-38067,323,1.0
-38071,323,0.046501743
-38079,323,0.74656853
-38095,323,1.0
-38097,323,0.138396747
-38099,323,1.0
-30085,324,0.08496342900000001
-38005,324,0.28187518699999997
-38009,324,1.0
-38013,324,1.0
-38023,324,1.0
-38049,324,1.0
-38053,324,0.063905531
-38055,324,0.42183406100000004
-38061,324,1.0
-38069,324,1.0
-38075,324,1.0
-38079,324,0.25343147
-38101,324,1.0
-38105,324,1.0
-39055,325,0.00103543
-39099,325,0.005507625
-39103,325,0.184072113
-39133,325,0.833241527
-39153,325,0.9032248620000001
-39169,325,0.15540474699999998
-39019,326,0.991742055
-39029,326,0.038460827999999996
-39067,326,0.055964267000000005
-39075,326,0.8942971390000001
-39099,326,0.037834423
-39103,326,0.045974008
-39151,326,1.0
-39157,326,0.920201965
-39169,326,0.8445952529999999
-18029,327,1.0
-18047,327,0.812790763
-18115,327,1.0
-18137,327,0.8155113690000001
-18155,327,0.172803092
-39001,327,0.941795148
-39015,327,0.957048417
-39017,327,0.717969918
-39025,327,1.0
-39027,327,1.0
-39061,327,1.0
-39071,327,0.796477495
-39131,327,0.019350085
-39135,327,0.17257342
-39165,327,0.6749709509999999
-39005,328,0.077972158
-39007,328,0.673264524
-39035,328,1.0
-39043,328,0.8007110590000001
-39055,328,0.99896457
-39077,328,0.7417147740000001
-39085,328,1.0
-39093,328,0.185574126
-39103,328,0.7699538779999999
-39123,328,0.00988266
-39133,328,0.113549995
-39143,328,0.368854092
-39147,328,0.001210513
-39153,328,0.09677513800000001
-39155,328,0.019809689
-21069,329,0.19540306
-21089,329,0.196687875
-21135,329,0.832293352
-39001,329,0.058204852
-39005,329,0.922027842
-39009,329,0.922466676
-39011,329,0.005687598
-39013,329,0.150695271
-39031,329,1.0
-39033,329,0.997680184
-39041,329,1.0
-39045,329,1.0
-39047,329,1.0
-39049,329,1.0
-39053,329,1.0
-39059,329,1.0
-39065,329,0.659933985
-39067,329,0.149829217
-39071,329,0.203522505
-39073,329,1.0
-39075,329,0.105702861
-39077,329,0.25828522600000003
-39079,329,1.0
-39083,329,1.0
-39089,329,1.0
-39091,329,0.9799190409999999
-39097,329,1.0
-39101,329,1.0
-39105,329,0.8397297420000001
-39111,329,0.715970696
-39115,329,1.0
-39117,329,1.0
-39119,329,1.0
-39121,329,1.0
-39127,329,1.0
-39129,329,1.0
-39131,329,0.980649915
-39139,329,1.0
-39141,329,1.0
-39145,329,1.0
-39147,329,0.035154631
-39157,329,0.079798035
-39159,329,1.0
-39163,329,1.0
-39167,329,0.804007052
-39175,329,0.7279414909999999
-54107,329,0.07471874099999999
-39003,330,1.0
-39011,330,0.994312402
-39021,330,1.0
-39023,330,1.0
-39037,330,0.936666923
-39057,330,0.517330054
-39065,330,0.340066015
-39091,330,0.020080959
-39107,330,0.929439195
-39109,330,1.0
-39113,330,0.64569965
-39135,330,0.715953211
-39137,330,1.0
-39149,330,1.0
-39161,330,0.029420405
-39043,331,0.19928894100000002
-39093,331,0.8144258740000001
-39017,332,0.282030082
-39057,332,0.482669946
-39113,332,0.35430035
-39165,332,0.32502904899999996
-26091,334,0.078980074
-26115,334,0.975023615
-39033,334,0.002319816
-39051,334,1.0
-39063,334,1.0
-39069,334,0.85940788
-39095,334,1.0
-39123,334,0.99011734
-39143,334,0.6311459079999999
-39147,334,0.963634856
-39173,334,1.0
-39175,334,0.272058509
-39007,335,0.140597042
-39019,335,0.008257945
-39029,335,0.667975172
-39099,335,0.956657952
-39133,335,0.053208477000000004
-39155,335,0.980190311
-42073,335,0.763966815
-42085,335,0.434014722
-40015,336,0.531146879
-40019,336,0.00081676
-40031,336,1.0
-40033,336,0.8235488129999999
-40067,336,0.578487448
-40075,336,0.33891393
-40137,336,0.985683704
-40141,336,0.8528932359999999
-40003,339,0.986791506
-40005,339,0.909629513
-40007,339,0.645274212
-40009,339,1.0
-40011,339,1.0
-40015,339,0.46885312100000004
-40017,339,1.0
-40019,339,0.99918324
-40027,339,1.0
-40029,339,0.13701698699999998
-40039,339,1.0
-40043,339,1.0
-40045,339,1.0
-40047,339,1.0
-40049,339,1.0
-40051,339,1.0
-40053,339,0.978964035
-40055,339,1.0
-40057,339,1.0
-40059,339,1.0
-40063,339,0.864843582
-40065,339,1.0
-40067,339,0.335716555
-40069,339,0.943756934
-40071,339,1.0
-40073,339,1.0
-40075,339,0.66108607
-40081,339,0.8879764490000001
-40083,339,0.9609412829999999
-40085,339,1.0
-40087,339,1.0
-40093,339,1.0
-40095,339,1.0
-40099,339,1.0
-40103,339,0.768541609
-40107,339,0.269657341
-40109,339,1.0
-40123,339,1.0
-40125,339,1.0
-40127,339,0.866065172
-40129,339,1.0
-40133,339,1.0
-40137,339,0.014316296000000001
-40141,339,0.147106764
-40149,339,1.0
-40151,339,1.0
-40153,339,1.0
-48295,339,0.503192107
-20019,340,0.719871795
-20099,340,0.043300816
-20125,340,0.496001432
-40001,340,0.6607977629999999
-40005,340,0.023540564
-40021,340,1.0
-40029,340,0.862983013
-40035,340,0.809432377
-40037,340,1.0
-40041,340,0.05467557
-40063,340,0.135156418
-40081,340,0.112023551
-40083,340,0.039058717
-40091,340,1.0
-40097,340,1.0
-40101,340,1.0
-40103,340,0.231458391
-40105,340,1.0
-40107,340,0.7303426590000001
-40111,340,1.0
-40113,340,1.0
-40117,340,1.0
-40119,340,1.0
-40121,340,0.953385154
-40127,340,0.127452698
-40131,340,1.0
-40135,340,0.078562845
-40143,340,1.0
-40145,340,1.0
-40147,340,1.0
-41013,341,1.0
-41017,341,1.0
-41023,341,1.0
-41025,341,1.0
-41031,341,1.0
-41035,341,0.019094778
-41037,341,0.233257518
-41065,341,0.014647931999999999
-41069,341,0.48707197799999996
-41003,342,1.0
-41011,342,1.0
-41015,342,0.12009597
-41019,342,0.982597576
-41035,342,0.005384913000000001
-41039,342,1.0
-41041,342,0.026604582
-41043,342,0.983298235
-41047,342,0.019332561
-6015,343,1.0
-6049,343,0.09608985
-6093,343,0.610852399
-41015,343,0.87990403
-41019,343,0.017402424
-41029,343,1.0
-41033,343,1.0
-41035,343,0.9755203090000001
-41037,343,0.7667424820000001
-41005,344,1.0
-41007,344,1.0
-41009,344,1.0
-41021,344,1.0
-41027,344,1.0
-41041,344,0.973395418
-41047,344,0.204448612
-41049,344,1.0
-41051,344,1.0
-41053,344,0.025867674
-41055,344,1.0
-41057,344,1.0
-41059,344,0.8190004679999999
-41061,344,0.9721762559999999
-41065,344,0.985352068
-41067,344,1.0
-41069,344,0.512928022
-41071,344,1.0
-53005,344,0.000754549
-53011,344,1.0
-53015,344,1.0
-53039,344,0.9907039129999999
-53041,344,0.018105209
-53049,344,0.553037259
-53059,344,1.0
-53069,344,1.0
-41043,345,0.016701765
-41047,345,0.776218827
-41053,345,0.974132326
-34019,346,0.116953109
-34041,346,0.5621059270000001
-42011,346,0.043089617000000004
-42017,346,0.135101554
-42025,346,0.9946375679999999
-42077,346,1.0
-42079,346,0.195633274
-42089,346,0.955157138
-42091,346,0.098520994
-42095,346,1.0
-42103,346,0.16919136199999998
-42107,346,0.164946801
-42009,347,0.869998743
-42013,347,1.0
-42021,347,0.12055537
-42027,347,0.062520642
-42033,347,0.691448594
-42057,347,0.03021978
-42061,347,0.9138441159999999
-42087,347,0.001969494
-42027,350,0.9374793579999999
-42035,350,1.0
-42037,350,0.9886801059999999
-42061,350,0.045241775
-42079,350,0.04202680599999999
-42081,350,1.0
-42093,350,1.0
-42097,350,1.0
-42109,350,0.919109057
-42113,350,0.428963624
-42117,350,0.029884288
-42119,350,1.0
-36009,351,0.100775509
-36013,351,0.666068671
-39007,351,0.186138434
-42023,351,1.0
-42031,351,0.08588380699999999
-42039,351,1.0
-42047,351,0.860434893
-42049,351,1.0
-42053,351,0.992104944
-42083,351,0.919199711
-42085,351,0.405138875
-42105,351,0.732994687
-42121,351,1.0
-42123,351,1.0
-24021,352,0.026048636
-24043,352,0.006926847
-42001,352,0.5690170529999999
-42011,352,0.009304451
-42041,352,1.0
-42043,352,1.0
-42055,352,1.0
-42057,352,0.96978022
-42061,352,0.040914109
-42067,352,1.0
-42075,352,1.0
-42087,352,0.998030506
-42099,352,1.0
-42107,352,0.002104251
-42109,352,0.08089094299999999
-42133,352,0.08445272300000001
-42009,354,0.054212577000000005
-42021,354,0.87944463
-42033,354,0.011666973
-42063,354,0.081804508
-42111,354,0.984656874
-42129,354,0.012332961000000002
-42029,355,0.30107654699999997
-42071,355,1.0
-34005,356,0.040956977
-34015,356,0.545110408
-34019,356,0.8830468909999999
-34021,356,0.699670695
-34025,356,0.00973594
-42017,356,0.864898446
-42029,356,0.655610719
-42045,356,1.0
-42091,356,0.822441141
-42101,356,1.0
-39013,357,0.8493047290000001
-39029,357,0.293564
-39067,357,0.7942065159999999
-39081,357,1.0
-39111,357,0.284029304
-42003,357,1.0
-42005,357,1.0
-42007,357,1.0
-42019,357,1.0
-42031,357,0.914116193
-42033,357,0.296884433
-42047,357,0.139565107
-42051,357,0.974926195
-42053,357,0.007895056
-42059,357,0.006446608
-42063,357,0.9181954920000001
-42065,357,1.0
-42073,357,0.236033185
-42085,357,0.160846403
-42111,357,0.015343126
-42125,357,0.997014967
-42129,357,0.9876670390000001
-54009,357,1.0
-54029,357,1.0
-54051,357,1.0
-54069,357,1.0
-54095,357,0.36570727
-54103,357,0.92278856
-42011,358,0.947605932
-42029,358,0.043312734000000006
-42037,358,0.011319893999999999
-42091,358,0.079037865
-42107,358,0.832948948
-36015,359,0.028651659
-36097,359,0.24056902600000002
-36101,359,0.434279783
-36107,359,0.43874632399999997
-42015,359,0.9426268529999999
-42105,359,0.11052723800000001
-42113,359,0.571036376
-42115,359,0.09729676300000001
-42117,359,0.923735297
-42131,359,0.699931868
-36105,360,0.043353928
-42069,360,1.0
-42079,360,0.021014988999999998
-42103,360,0.348255331
-42115,360,0.48643434799999996
-42127,360,0.9928029309999999
-42131,360,0.17979703800000002
-42025,362,0.0053624319999999994
-42079,362,0.741324931
-42089,362,0.044842862000000004
-42131,362,0.12027109400000001
-42001,363,0.430982947
-42133,363,0.915547277
-9011,364,0.07289369700000001
-25005,364,0.258274662
-25021,364,0.036661016
-25027,364,0.015195449
-44001,364,1.0
-44003,364,1.0
-44005,364,0.7674270240000001
-44007,364,1.0
-44009,364,1.0
-37019,365,0.120005216
-45015,365,1.0
-45019,365,1.0
-45029,365,1.0
-45035,365,1.0
-45043,365,1.0
-45049,365,0.665643544
-45051,365,0.881896699
-45075,365,0.11454276199999999
-45001,366,1.0
-45009,366,1.0
-45011,366,0.707361908
-45017,366,1.0
-45023,366,0.844168143
-45025,366,0.06575323799999999
-45027,366,0.9011616590000001
-45031,366,0.497990091
-45039,366,1.0
-45047,366,1.0
-45055,366,0.998446774
-45059,366,0.125010302
-45061,366,0.9907568999999999
-45063,366,1.0
-45065,366,0.8480148279999999
-45071,366,0.9181535479999999
-45075,366,0.885457238
-45079,366,1.0
-45081,366,1.0
-45085,366,1.0
-37047,367,0.18619186899999998
-45025,367,0.614925917
-45027,367,0.098838341
-45031,367,0.502009909
-45033,367,1.0
-45041,367,1.0
-45051,367,0.118103301
-45061,367,0.009243099999999999
-45067,367,1.0
-45069,367,1.0
-45089,367,1.0
-45007,368,1.0
-45045,368,1.0
-45059,368,0.8749896979999999
-45073,368,1.0
-45077,368,1.0
-37149,369,0.853147525
-45021,369,1.0
-45071,369,0.081846452
-45083,369,1.0
-45087,369,1.0
-30011,370,0.272307692
-31031,370,0.043254187
-31045,370,0.98489426
-31161,370,0.9222283509999999
-46007,370,1.0
-46019,370,1.0
-46033,370,1.0
-46041,370,0.080279503
-46047,370,1.0
-46055,370,0.044251825
-46063,370,0.7777777779999999
-46071,370,1.0
-46075,370,0.08600583099999999
-46081,370,1.0
-46093,370,1.0
-46095,370,0.276522593
-46103,370,1.0
-46113,370,1.0
-46137,370,1.0
-56011,370,0.21281840600000002
-19021,371,0.103309002
-19041,371,1.0
-19059,371,1.0
-19063,371,0.849781387
-19109,371,0.101945096
-19119,371,1.0
-19141,371,0.150340745
-19143,371,1.0
-19147,371,0.301301195
-19167,371,0.329555362
-27011,371,0.685594512
-27033,371,1.0
-27063,371,1.0
-27073,371,0.5273332279999999
-27081,371,1.0
-27083,371,0.9227847570000001
-27091,371,0.021350172999999997
-27101,371,1.0
-27105,371,1.0
-27117,371,1.0
-27127,371,0.118924509
-27133,371,1.0
-27165,371,0.10512080800000001
-27173,371,0.302012149
-31015,371,0.138915319
-31027,371,0.5100948670000001
-31103,371,0.189580318
-31107,371,0.37692734299999997
-38021,371,0.332051282
-46003,371,1.0
-46005,371,1.0
-46009,371,1.0
-46011,371,1.0
-46013,371,1.0
-46015,371,1.0
-46017,371,1.0
-46023,371,1.0
-46025,371,1.0
-46027,371,0.976302192
-46029,371,1.0
-46035,371,1.0
-46037,371,1.0
-46039,371,1.0
-46043,371,1.0
-46045,371,0.694066273
-46049,371,1.0
-46051,371,1.0
-46053,371,1.0
-46055,371,0.955748175
-46057,371,1.0
-46059,371,1.0
-46061,371,1.0
-46065,371,1.0
-46067,371,1.0
-46069,371,1.0
-46073,371,1.0
-46075,371,0.9139941690000001
-46077,371,1.0
-46079,371,1.0
-46083,371,1.0
-46085,371,1.0
-46087,371,1.0
-46089,371,0.35664335700000005
-46091,371,0.08827265
-46095,371,0.7234774070000001
-46097,371,1.0
-46099,371,1.0
-46101,371,1.0
-46107,371,0.738756355
-46109,371,0.21894503699999998
-46111,371,1.0
-46115,371,1.0
-46117,371,1.0
-46119,371,1.0
-46121,371,1.0
-46123,371,1.0
-46125,371,1.0
-46127,371,0.12601626
-46135,371,1.0
-1049,373,0.055321592999999995
-1071,373,0.277962368
-13047,373,1.0
-13083,373,1.0
-13295,373,1.0
-47007,373,1.0
-47011,373,1.0
-47061,373,0.076033663
-47065,373,1.0
-47107,373,0.149215384
-47115,373,1.0
-47139,373,0.8484057970000001
-47143,373,0.630737863
-47153,373,1.0
-47005,374,0.203040107
-47017,374,1.0
-47023,374,1.0
-47033,374,1.0
-47039,374,1.0
-47053,374,0.955147883
-47069,374,0.42395568899999997
-47077,374,1.0
-47079,374,0.9171740629999999
-47109,374,0.20253955
-47113,374,1.0
-47183,374,1.0
-37009,375,0.086730586
-37011,375,0.18251839
-37189,375,0.939959716
-47019,375,1.0
-47059,375,0.13962359400000002
-47091,375,0.95175508
-47163,375,0.061480884000000006
-47171,375,1.0
-47179,375,1.0
-21095,376,0.010308144
-21133,376,0.213038322
-21195,376,0.031365028999999996
-47067,376,0.09921169
-47073,376,0.454446077
-47091,376,0.04824492
-47163,376,0.9385191159999999
-51027,376,1.0
-51051,376,1.0
-51077,376,0.125731497
-51105,376,0.894630934
-51167,376,1.0
-51169,376,1.0
-51173,376,1.0
-51185,376,0.468883664
-51191,376,1.0
-51195,376,1.0
-51520,376,1.0
-51720,376,1.0
-54047,376,0.098555826
-21013,377,1.0
-21051,377,0.018985191000000002
-21095,377,0.019442406000000002
-21121,377,0.020015729
-47001,377,1.0
-47009,377,1.0
-47013,377,1.0
-47025,377,1.0
-47029,377,1.0
-47057,377,1.0
-47059,377,0.860376406
-47063,377,1.0
-47067,377,0.90078831
-47073,377,0.5455539229999999
-47089,377,1.0
-47093,377,1.0
-47105,377,1.0
-47107,377,0.850784616
-47121,377,1.0
-47123,377,1.0
-47129,377,1.0
-47139,377,0.151594203
-47143,377,0.321044801
-47145,377,1.0
-47151,377,1.0
-47155,377,1.0
-47173,377,1.0
-51105,377,0.105369066
-5035,379,1.0
-5037,379,0.9618777009999999
-5077,379,1.0
-5093,379,0.8283248679999999
-5107,379,1.0
-5111,379,0.083367256
-5123,379,1.0
-21075,379,0.39930795799999996
-28003,379,1.0
-28009,379,0.740772323
-28011,379,1.0
-28027,379,1.0
-28033,379,1.0
-28093,379,0.874659761
-28107,379,0.198173412
-28119,379,1.0
-28135,379,0.464946301
-28137,379,1.0
-28139,379,0.9454611340000001
-28143,379,1.0
-28145,379,0.105477499
-28151,379,1.0
-29155,379,0.264714778
-47045,379,1.0
-47047,379,1.0
-47053,379,0.044852117000000004
-47069,379,0.576044311
-47071,379,1.0
-47075,379,1.0
-47095,379,1.0
-47097,379,1.0
-47109,379,0.79746045
-47131,379,0.8441921520000001
-47157,379,1.0
-47167,379,1.0
-21003,380,1.0
-21031,380,1.0
-21047,380,1.0
-21061,380,1.0
-21141,380,1.0
-21177,380,0.9179472120000001
-21213,380,1.0
-21219,380,1.0
-21227,380,1.0
-47003,380,0.936131934
-47005,380,0.7969598929999999
-47015,380,1.0
-47021,380,1.0
-47027,380,1.0
-47031,380,1.0
-47035,380,1.0
-47037,380,1.0
-47041,380,1.0
-47043,380,1.0
-47049,380,1.0
-47051,380,1.0
-47055,380,0.906869267
-47061,380,0.9239663370000001
-47081,380,1.0
-47083,380,1.0
-47085,380,1.0
-47087,380,1.0
-47099,380,0.9772737340000001
-47101,380,1.0
-47111,380,1.0
-47117,380,1.0
-47119,380,1.0
-47125,380,1.0
-47127,380,1.0
-47133,380,1.0
-47135,380,1.0
-47137,380,1.0
-47141,380,1.0
-47143,380,0.048217336
-47147,380,1.0
-47149,380,1.0
-47159,380,1.0
-47161,380,1.0
-47165,380,1.0
-47169,380,1.0
-47175,380,1.0
-47177,380,1.0
-47181,380,0.7732372259999999
-47185,380,1.0
-47187,380,1.0
-47189,380,1.0
-48049,382,1.0
-48059,382,1.0
-48083,382,0.9725138609999999
-48093,382,1.0
-48133,382,1.0
-48151,382,1.0
-48207,382,1.0
-48253,382,1.0
-48333,382,1.0
-48353,382,0.953815773
-48411,382,0.9980802790000001
-48417,382,1.0
-48429,382,1.0
-48433,382,1.0
-48441,382,1.0
-20129,383,1.0
-35021,383,0.341523342
-35037,383,0.903167962
-35059,383,0.024952471
-40007,383,0.080902373
-40025,383,1.0
-40139,383,0.8044199409999999
-48011,383,1.0
-48065,383,1.0
-48069,383,0.003912254
-48075,383,1.0
-48087,383,1.0
-48101,383,1.0
-48111,383,1.0
-48117,383,1.0
-48129,383,1.0
-48179,383,1.0
-48191,383,1.0
-48195,383,1.0
-48205,383,1.0
-48211,383,1.0
-48233,383,1.0
-48295,383,0.49680789299999994
-48341,383,1.0
-48357,383,1.0
-48359,383,1.0
-48369,383,0.549692079
-48375,383,1.0
-48381,383,1.0
-48393,383,1.0
-48421,383,1.0
-48437,383,0.8467966570000001
-48483,383,1.0
-48021,385,1.0
-48053,385,0.98843825
-48055,385,1.0
-48177,385,0.04561956599999999
-48187,385,0.366250398
-48209,385,1.0
-48287,385,0.639953895
-48299,385,0.9985051079999999
-48319,385,0.025733402000000002
-48453,385,1.0
-48491,385,0.832399983
-48199,386,1.0
-48241,386,1.0
-48245,386,1.0
-48291,386,0.043819047
-48351,386,0.874586093
-48361,386,1.0
-48457,386,1.0
-48041,388,1.0
-48051,388,1.0
-48185,388,0.7515257190000001
-48289,388,0.44526295200000005
-48313,388,1.0
-48395,388,1.0
-48007,390,1.0
-48025,390,1.0
-48047,390,1.0
-48131,390,1.0
-48249,390,1.0
-48261,390,1.0
-48273,390,1.0
-48297,390,0.976550939
-48355,390,1.0
-48391,390,0.059815117
-48409,390,1.0
-40005,391,0.066829923
-40013,391,1.0
-40023,391,1.0
-40067,391,0.085795996
-40069,391,0.056243065999999994
-40089,391,0.16619335
-48085,391,1.0
-48097,391,1.0
-48113,391,0.9638719179999999
-48119,391,1.0
-48121,391,1.0
-48139,391,1.0
-48147,391,1.0
-48161,391,0.111694153
-48181,391,1.0
-48213,391,0.86396666
-48223,391,0.787599328
-48231,391,1.0
-48251,391,0.047140507000000005
-48257,391,1.0
-48277,391,1.0
-48337,391,0.49749542399999996
-48349,391,0.945101667
-48379,391,0.36159356299999995
-48387,391,1.0
-48397,391,1.0
-48439,391,0.045262897
-48467,391,0.34104629700000005
-48497,391,0.563882918
-35013,393,1.0
-35029,393,1.0
-35035,393,0.948320947
-35051,393,1.0
-48105,393,0.006198929000000001
-48109,393,1.0
-48141,393,1.0
-48229,393,1.0
-48243,393,0.038167939
-48035,394,0.073330802
-48113,394,0.036128082
-48143,394,1.0
-48193,394,0.425551159
-48217,394,0.092513203
-48221,394,1.0
-48237,394,0.108169656
-48251,394,0.952859493
-48363,394,1.0
-48367,394,1.0
-48425,394,1.0
-48439,394,0.9547371029999999
-48497,394,0.43611708200000004
-48503,394,0.772610648
-48061,396,1.0
-48215,396,0.20989911600000002
-48489,396,1.0
-48005,397,1.0
-48015,397,1.0
-48039,397,1.0
-48057,397,0.893850625
-48071,397,1.0
-48073,397,0.10717098300000001
-48089,397,1.0
-48149,397,1.0
-48157,397,1.0
-48167,397,1.0
-48185,397,0.24847428100000002
-48201,397,1.0
-48225,397,0.077598461
-48285,397,0.40514417399999997
-48287,397,0.075649114
-48291,397,0.956180953
-48321,397,1.0
-48339,397,1.0
-48347,397,1.0
-48373,397,1.0
-48401,397,0.048392547
-48403,397,1.0
-48405,397,1.0
-48407,397,1.0
-48419,397,0.898165622
-48455,397,1.0
-48471,397,1.0
-48473,397,1.0
-48477,397,1.0
-48481,397,1.0
-48067,399,0.342219899
-48183,399,1.0
-48203,399,0.213895791
-48315,399,1.0
-48343,399,0.7797954340000001
-48401,399,0.08081194900000001
-48423,399,0.052561326
-48459,399,0.499008202
-35009,400,1.0
-35011,400,0.027669903
-35015,400,0.673701045
-35025,400,0.9996149790000001
-35037,400,0.085475194
-35041,400,1.0
-48003,400,1.0
-48017,400,1.0
-48033,400,1.0
-48045,400,1.0
-48069,400,0.9960877459999999
-48079,400,1.0
-48107,400,1.0
-48115,400,1.0
-48125,400,1.0
-48153,400,1.0
-48165,400,1.0
-48169,400,1.0
-48173,400,1.0
-48189,400,1.0
-48219,400,1.0
-48227,400,1.0
-48263,400,1.0
-48269,400,1.0
-48279,400,1.0
-48303,400,1.0
-48305,400,1.0
-48335,400,1.0
-48345,400,1.0
-48369,400,0.450307921
-48415,400,1.0
-48437,400,0.15320334300000002
-48445,400,1.0
-48501,400,1.0
-48215,402,0.7901008840000001
-48427,402,1.0
-48043,406,1.0
-48103,406,1.0
-48135,406,1.0
-48243,406,0.961832061
-48301,406,1.0
-48317,406,1.0
-48329,406,1.0
-48371,406,0.900176234
-48377,406,1.0
-48389,406,1.0
-48443,406,1.0
-48461,406,0.67402096
-48475,406,1.0
-48495,406,1.0
-48081,411,1.0
-48083,411,0.027486139
-48095,411,1.0
-48105,411,0.9938010709999999
-48235,411,1.0
-48307,411,0.96888161
-48327,411,1.0
-48353,411,0.046184227
-48371,411,0.099823766
-48383,411,1.0
-48399,411,1.0
-48413,411,1.0
-48431,411,1.0
-48435,411,1.0
-48451,411,1.0
-48461,411,0.32597904
-48013,412,1.0
-48019,412,1.0
-48029,412,1.0
-48031,412,1.0
-48091,412,1.0
-48127,412,1.0
-48137,412,1.0
-48163,412,1.0
-48171,412,1.0
-48177,412,0.900783415
-48187,412,0.6337496020000001
-48247,412,1.0
-48255,412,1.0
-48259,412,1.0
-48265,412,1.0
-48267,412,1.0
-48271,412,1.0
-48283,412,1.0
-48297,412,0.023449061
-48299,412,0.001494892
-48307,412,0.03111839
-48311,412,1.0
-48319,412,0.9742665979999999
-48323,412,1.0
-48325,412,1.0
-48385,412,1.0
-48463,412,1.0
-48465,412,1.0
-48479,412,1.0
-48493,412,1.0
-48505,412,1.0
-48507,412,1.0
-48027,413,1.0
-48053,413,0.01156175
-48099,413,0.995859918
-48145,413,0.358152866
-48281,413,0.9303328829999999
-48287,413,0.284396991
-48309,413,0.020505275
-48331,413,1.0
-48411,413,0.001919721
-48491,413,0.167600017
-48001,416,1.0
-48063,416,1.0
-48073,416,0.8928290170000001
-48159,416,1.0
-48213,416,0.13603334
-48223,416,0.21240067199999998
-48225,416,0.9224015390000001
-48289,416,0.554737048
-48343,416,0.22020456600000002
-48379,416,0.638406437
-48401,416,0.870795503
-48423,416,0.947438674
-48449,416,1.0
-48459,416,0.5009917979999999
-48467,416,0.658953703
-48499,416,1.0
-48057,417,0.106149375
-48123,417,1.0
-48175,417,1.0
-48177,417,0.053597019
-48239,417,1.0
-48285,417,0.594855826
-48391,417,0.9401848829999999
-48469,417,1.0
-48035,418,0.9266691979999999
-48099,418,0.004140082
-48145,418,0.6418471339999999
-48161,418,0.888305847
-48193,418,0.574448841
-48217,418,0.907486797
-48281,418,0.069667117
-48293,418,1.0
-48309,418,0.979494725
-48349,418,0.054898333
-40033,420,0.17645118699999998
-48009,420,1.0
-48023,420,1.0
-48077,420,1.0
-48155,420,1.0
-48197,420,1.0
-48237,420,0.891830344
-48275,420,1.0
-48337,420,0.502504576
-48447,420,1.0
-48485,420,1.0
-48487,420,1.0
-48503,420,0.227389352
-49003,421,0.977483093
-49011,421,0.6328197760000001
-49029,421,0.9895531559999999
-49057,421,1.0
-49001,422,0.5639867510000001
-49023,422,1.0
-49027,422,1.0
-49039,422,1.0
-49041,422,0.207191457
-49049,422,1.0
-49051,422,1.0
-4005,423,0.016850159
-4015,423,0.047558473
-8081,423,0.024487297
-8103,423,0.413658384
-16005,423,1.0
-16007,423,1.0
-16011,423,0.09423089999999999
-16019,423,0.001069614
-16029,423,1.0
-16031,423,1.0
-16041,423,1.0
-16067,423,1.0
-16071,423,1.0
-16077,423,1.0
-32007,423,0.9413053840000001
-32011,423,0.268965517
-32017,423,0.7017781209999999
-32023,423,0.006852769
-32033,423,1.0
-49001,423,0.436013249
-49003,423,0.022516907000000003
-49005,423,1.0
-49007,423,1.0
-49009,423,1.0
-49011,423,0.367180224
-49013,423,1.0
-49015,423,1.0
-49017,423,1.0
-49019,423,0.9856708209999999
-49021,423,1.0
-49025,423,1.0
-49029,423,0.010446844
-49031,423,1.0
-49033,423,1.0
-49035,423,1.0
-49037,423,0.810545506
-49041,423,0.7928085429999999
-49043,423,1.0
-49045,423,1.0
-49047,423,1.0
-49053,423,1.0
-49055,423,1.0
-56023,423,1.0
-56035,423,1.0
-56037,423,0.9919078809999999
-56039,423,1.0
-56041,423,1.0
-36019,424,1.0
-36031,424,0.9259510129999999
-36033,424,1.0
-36041,424,0.188401531
-36089,424,0.594767842
-36113,424,0.013284628
-36115,424,0.009551158
-50001,424,0.981849854
-50003,424,0.01345831
-50005,424,0.083163146
-50007,424,1.0
-50011,424,1.0
-50013,424,1.0
-50015,424,1.0
-50017,424,0.22557807
-50019,424,0.111500184
-50021,424,0.9939358890000001
-50023,424,0.988657369
-51013,426,1.0
-51047,426,0.136892234
-51059,426,1.0
-51061,426,0.979496424
-51107,426,1.0
-51153,426,1.0
-51157,426,0.45723945899999996
-51510,426,1.0
-51610,426,1.0
-51683,426,1.0
-51003,427,1.0
-51015,427,1.0
-51017,427,1.0
-51029,427,0.412869565
-51047,427,0.8631077659999999
-51065,427,1.0
-51079,427,1.0
-51091,427,1.0
-51109,427,0.39103405
-51113,427,1.0
-51125,427,0.6960854479999999
-51137,427,0.302140884
-51139,427,0.222839796
-51157,427,0.267700875
-51163,427,0.132373532
-51165,427,1.0
-51171,427,0.129521161
-51540,427,1.0
-51660,427,1.0
-51790,427,1.0
-51820,427,1.0
-54031,427,0.104490754
-54071,427,0.6273052179999999
-54075,427,0.619153675
-51009,428,1.0
-51011,428,1.0
-51019,428,0.914738975
-51031,428,1.0
-51037,428,0.40443646
-51125,428,0.303914552
-51143,428,0.330089361
-51680,428,1.0
-51073,429,1.0
-51093,429,0.534621479
-51095,429,1.0
-51097,429,0.38401206600000004
-51115,429,1.0
-51119,429,0.489547325
-51127,429,0.274939472
-51181,429,0.49714648100000003
-51199,429,1.0
-51650,429,1.0
-51700,429,1.0
-51735,429,1.0
-51830,429,1.0
-37029,430,1.0
-37053,430,1.0
-37055,430,1.0
-37073,430,0.7397143829999999
-37095,430,0.113480885
-37139,430,1.0
-37143,430,1.0
-51001,430,0.6525258079999999
-51093,430,0.465378521
-51131,430,1.0
-51175,430,0.9617228409999999
-51181,430,0.129676601
-51183,430,0.187229533
-51550,430,1.0
-51710,430,1.0
-51740,430,1.0
-51800,430,1.0
-51810,430,1.0
-51007,431,1.0
-51025,431,1.0
-51029,431,0.587130435
-51033,431,1.0
-51036,431,1.0
-51037,431,0.22408810399999998
-51041,431,1.0
-51049,431,1.0
-51053,431,1.0
-51057,431,1.0
-51061,431,0.010903975
-51075,431,1.0
-51081,431,1.0
-51085,431,1.0
-51087,431,1.0
-51097,431,0.615987934
-51099,431,1.0
-51101,431,1.0
-51103,431,1.0
-51109,431,0.60896595
-51111,431,1.0
-51117,431,0.585180974
-51119,431,0.510452675
-51127,431,0.725060528
-51133,431,1.0
-51135,431,1.0
-51137,431,0.697859116
-51145,431,1.0
-51147,431,1.0
-51149,431,1.0
-51159,431,1.0
-51175,431,0.038277159
-51177,431,1.0
-51179,431,1.0
-51181,431,0.37317691799999997
-51183,431,0.812770467
-51193,431,1.0
-51570,431,1.0
-51630,431,1.0
-51670,431,1.0
-51730,431,1.0
-51760,431,1.0
-51005,432,1.0
-51019,432,0.085261025
-51021,432,1.0
-51023,432,1.0
-51035,432,0.073069519
-51045,432,1.0
-51063,432,1.0
-51067,432,1.0
-51071,432,1.0
-51121,432,1.0
-51155,432,1.0
-51161,432,1.0
-51163,432,0.867626468
-51185,432,0.531116336
-51197,432,1.0
-51530,432,1.0
-51750,432,1.0
-51770,432,1.0
-51775,432,1.0
-54047,432,0.859205963
-54055,432,0.9850312259999999
-54059,432,0.002118236
-54063,432,0.615402299
-54089,432,0.081714001
-54109,432,0.062805759
-51043,435,1.0
-51061,435,0.009599601
-51069,435,1.0
-51139,435,0.7771602040000001
-51157,435,0.27505966600000004
-51171,435,0.870478839
-51187,435,1.0
-51840,435,1.0
-54003,435,1.0
-54023,435,0.955947535
-54027,435,0.7792634009999999
-54031,435,0.8955092459999999
-54037,435,1.0
-54065,435,1.0
-54071,435,0.252751966
-53029,437,1.0
-53033,437,0.00020036900000000002
-53055,437,1.0
-53057,437,1.0
-53061,437,0.6332608279999999
-53027,438,0.22093398600000003
-53041,438,0.970186415
-53045,438,0.679638706
-53049,438,0.42758420700000005
-53067,438,1.0
-53009,439,1.0
-53027,439,0.7790660140000001
-53031,439,1.0
-53033,439,0.9997996309999999
-53035,439,0.9809429470000001
-53037,439,0.008752735
-53045,439,0.32036129399999996
-53049,439,0.019378534
-53061,439,0.366739172
-53073,439,1.0
-16009,440,1.0
-16017,440,1.0
-16021,440,1.0
-16035,440,1.0
-16049,440,0.9424412090000001
-16055,440,1.0
-16057,440,1.0
-16061,440,1.0
-16069,440,1.0
-16079,440,1.0
-30089,440,0.11810344800000001
-41059,440,0.180999532
-41063,440,1.0
-53001,440,1.0
-53003,440,1.0
-53005,440,0.926803554
-53007,440,1.0
-53013,440,1.0
-53017,440,1.0
-53019,440,1.0
-53021,440,1.0
-53023,440,1.0
-53025,440,0.9926974709999999
-53043,440,1.0
-53047,440,1.0
-53051,440,1.0
-53063,440,1.0
-53065,440,1.0
-53071,440,1.0
-53075,440,1.0
-53035,441,0.019057053
-53041,441,0.011708376000000001
-53053,441,1.0
-53005,442,0.072441897
-53025,442,0.007302529
-53037,442,0.991247265
-53039,442,0.009296087
-53077,442,1.0
-21159,443,0.088777364
-39009,443,0.077533324
-39105,443,0.160270258
-39167,443,0.195992948
-54005,443,1.0
-54007,443,1.0
-54013,443,1.0
-54015,443,1.0
-54019,443,1.0
-54021,443,1.0
-54025,443,1.0
-54035,443,0.989136195
-54039,443,1.0
-54041,443,1.0
-54043,443,0.316940817
-54045,443,1.0
-54047,443,0.042238211
-54055,443,0.014968773999999999
-54059,443,0.983092625
-54063,443,0.384597701
-54067,443,1.0
-54073,443,1.0
-54075,443,0.169733912
-54079,443,1.0
-54081,443,1.0
-54083,443,0.0033786109999999997
-54085,443,1.0
-54087,443,1.0
-54089,443,0.9182859990000001
-54095,443,0.63429273
-54097,443,1.0
-54099,443,0.002595625
-54101,443,1.0
-54105,443,1.0
-54107,443,0.925281259
-54109,443,0.9371942409999999
-21019,444,1.0
-21043,444,0.536232916
-21089,444,0.803312125
-21115,444,0.014510278
-21127,444,1.0
-39087,444,1.0
-54011,444,1.0
-54035,444,0.010863805
-54043,444,0.683059183
-54053,444,1.0
-54099,444,0.997404375
-24023,445,0.839675217
-42051,445,0.025073805
-42059,445,0.993553392
-42125,445,0.002985033
-54001,445,1.0
-54017,445,1.0
-54023,445,0.044052465
-54033,445,1.0
-54049,445,1.0
-54061,445,1.0
-54071,445,0.119942816
-54075,445,0.211112414
-54077,445,1.0
-54083,445,0.9966213890000001
-54091,445,1.0
-54093,445,1.0
-54103,445,0.07721144
-55015,446,0.887237376
-55067,446,0.971462855
-55071,446,0.0016689
-55073,446,0.008212446
-55078,446,1.0
-55083,446,0.026088996
-55087,446,0.951444663
-55115,446,0.794074437
-55135,446,1.0
-55139,446,0.20282145399999998
-26043,447,1.0
-26109,447,0.8525937109999999
-55009,447,1.0
-55029,447,1.0
-55037,447,0.888735885
-55041,447,0.060376919
-55061,447,1.0
-55071,447,0.887455045
-55075,447,1.0
-55083,447,0.9739110040000001
-55087,447,0.048555337000000004
-55115,447,0.029464577000000002
-19005,448,1.0
-19043,448,0.321738126
-19065,448,0.55492067
-19191,448,0.957238762
-27045,448,0.335594967
-27055,448,1.0
-27169,448,0.823510557
-55011,448,0.644215866
-55023,448,1.0
-55043,448,0.046547936
-55053,448,0.113386746
-55063,448,1.0
-55081,448,0.966273038
-55103,448,0.094353726
-55121,448,0.7860052559999999
-55123,448,0.858245771
-17177,449,0.055818150999999996
-17201,449,0.036259568
-55001,449,1.0
-55021,449,1.0
-55025,449,1.0
-55027,449,0.626435572
-55043,449,0.37625766200000005
-55045,449,1.0
-55047,449,0.08246515
-55049,449,1.0
-55055,449,0.924381385
-55057,449,1.0
-55065,449,0.8249290000000001
-55077,449,0.38271692700000004
-55081,449,0.033726962
-55103,449,0.9056462740000001
-55105,449,1.0
-55111,449,1.0
-55123,449,0.141754229
-55127,449,0.18661310600000003
-55133,449,0.000364545
-55003,450,0.154480995
-55005,450,0.448320327
-55017,450,0.8326069359999999
-55019,450,1.0
-55051,450,0.243902439
-55053,450,0.886613254
-55073,450,0.14925881900000001
-55085,450,0.23546845100000002
-55097,450,1.0
-55099,450,0.967352786
-55107,450,1.0
-55113,450,0.179684701
-55119,450,1.0
-55125,450,0.548917534
-55129,450,0.209019698
-55137,450,0.260719683
-55141,450,1.0
-17097,451,0.6334326570000001
-55027,451,0.21984606
-55039,451,0.860349923
-55055,451,0.075618615
-55059,451,1.0
-55071,451,0.110876055
-55079,451,1.0
-55089,451,1.0
-55101,451,1.0
-55117,451,1.0
-55127,451,0.8133868940000001
-55131,451,1.0
-55133,451,0.999635455
-55015,452,0.112762624
-55027,452,0.153718368
-55039,452,0.13965007699999998
-55047,452,0.91753485
-55077,452,0.617283073
-55137,452,0.7392803170000001
-55139,452,0.7971785459999999
-26053,456,0.082021167
-26131,456,0.152318986
-55041,456,0.9396230809999999
-55067,456,0.028537145
-55069,456,1.0
-55073,456,0.8425287359999999
-55085,456,0.7645315490000001
-55099,456,0.032647214
-55115,456,0.17646098600000001
-55125,456,0.451082466
-56007,457,0.852274208
-56009,457,1.0
-56011,457,0.7871815940000001
-56013,457,1.0
-56015,457,0.965164852
-56017,457,1.0
-56019,457,1.0
-56025,457,1.0
-56027,457,0.9851443120000001
-56031,457,1.0
-56033,457,0.036671742
-56037,457,0.008092119
-56045,457,1.0
diff --git a/_delphi_utils_python/delphi_utils/data/fips_hrr_table.csv b/_delphi_utils_python/delphi_utils/data/fips_hrr_table.csv
new file mode 100644
index 000000000..dd83d11d4
--- /dev/null
+++ b/_delphi_utils_python/delphi_utils/data/fips_hrr_table.csv
@@ -0,0 +1,5175 @@
+fips,hrr,weight
+01001,1,0.03910501914936505
+01001,7,0.9608949808506351
+01003,134,0.03199789314283833
+01003,6,0.9680021068571617
+01005,2,0.9743599082201261
+01005,7,0.025640091779873985
+01007,1,0.4743181322277984
+01007,9,0.5256818677722016
+01009,1,0.9885733226335439
+01009,5,0.01142667736645616
+01011,146,0.003023639362286971
+01011,7,0.996976360637713
+01013,134,0.00033417673175156347
+01013,7,0.9996658232682485
+01015,1,1.0
+01017,1,0.9546690048224462
+01017,144,0.045330995177553714
+01019,1,0.16884066335757436
+01019,148,0.8311593366424257
+01021,1,0.9057809958068878
+01021,7,0.08379350640423436
+01021,9,0.010425497788877941
+01023,260,0.9814560935132404
+01023,6,0.01854390648675951
+01025,6,1.0
+01027,1,0.9999999999999999
+01029,1,0.7121960993855196
+01029,144,0.19462997595511625
+01029,148,0.09317392465936417
+01031,2,0.9783357360243473
+01031,7,0.02166426397565273
+01033,1,1.0
+01035,134,0.20169337768370116
+01035,6,0.1298004233444209
+01035,7,0.6685061989718779
+01037,1,0.9299766010919491
+01037,7,0.07002339890805095
+01039,134,0.7380113862041572
+01039,2,0.25891698662783
+01039,7,0.00307162716801271
+01041,134,0.05321443981015389
+01041,2,0.016539623184237018
+01041,7,0.9302459370056092
+01043,1,0.9623784294704376
+01043,5,0.03762157052956247
+01045,2,0.9993034548638753
+01045,7,0.0006965451361248209
+01047,1,0.9999999999999999
+01049,1,0.9349449436780155
+01049,373,0.0602033497869468
+01049,5,0.004851706535037759
+01051,1,0.0033416138103224344
+01051,7,0.9966583861896776
+01053,134,0.9983820037057334
+01053,6,0.001617996294266552
+01055,1,1.0000000000000002
+01057,1,0.20805057711269648
+01057,9,0.7919494228873035
+01059,1,0.97703759777946
+01059,262,0.02296240222054
+01061,134,0.0006345651362448675
+01061,2,0.9993654348637551
+01063,1,0.14682144831398564
+01063,9,0.8531785516860144
+01065,1,0.04162436548223351
+01065,9,0.9583756345177664
+01067,2,1.0000000000000002
+01069,2,1.0
+01071,1,0.01910684427076484
+01071,373,0.28451725627970764
+01071,5,0.6963758994495274
+01073,1,0.999890654946497
+01073,9,0.00010934505350314216
+01075,1,0.049780280142817906
+01075,262,0.23942598187311176
+01075,9,0.7107937379840703
+01077,1,0.9999244949249804
+01077,5,7.550507501968525e-05
+01079,1,0.8564605841754274
+01079,5,0.1435394158245726
+01081,1,0.7786120202214664
+01081,146,0.22138797977853358
+01083,1,0.006921794593027469
+01083,5,0.9930782054069724
+01085,1,0.126382865740331
+01085,7,0.8736171342596689
+01087,1,0.8423923177326123
+01087,146,0.008204363229535706
+01087,7,0.14940331903785192
+01089,5,1.0
+01091,1,0.7746231036286679
+01091,6,0.2253768963713321
+01093,1,0.6166168442942552
+01093,262,0.38338315570574477
+01095,1,0.5365247960094174
+01095,5,0.4634752039905825
+01097,6,1.0000000000000002
+01099,1,0.005505462112016647
+01099,134,0.010664123461071614
+01099,6,0.9818796601352523
+01099,7,0.0019507542916594417
+01101,7,1.0
+01103,1,0.3261862917398945
+01103,5,0.6738137082601056
+01105,1,0.9597771692946843
+01105,9,0.040222830705315835
+01107,262,0.11339005368175832
+01107,9,0.8866099463182416
+01109,2,0.01185446366150947
+01109,7,0.9881455363384906
+01111,1,0.9712826779557456
+01111,144,0.028717322044254357
+01113,1,0.023553188274403142
+01113,146,0.9742747053490481
+01113,2,0.0021721063765488065
+01115,1,1.0000000000000002
+01117,1,0.9999999999999999
+01119,260,0.8636198503233306
+01119,9,0.13638014967666934
+01121,1,1.0
+01123,1,0.8861735870818915
+01123,7,0.11382641291810842
+01125,1,0.043075990465230966
+01125,9,0.9569240095347692
+01127,1,0.998060367336586
+01127,9,0.001939632663414052
+01129,260,0.0009100733746658324
+01129,6,0.9990899266253342
+01131,1,0.66898029134533
+01131,6,0.3310197086546701
+01133,1,1.0000000000000002
+02013,10,1.0
+02016,10,1.0
+02020,10,1.0
+02050,10,1.0
+02060,10,1.0
+02068,10,1.0
+02070,10,1.0
+02090,10,0.9999999999999999
+02100,10,1.0
+02105,10,1.0
+02110,10,1.0
+02122,10,1.0
+02130,10,1.0
+02150,10,1.0
+02164,10,1.0
+02170,10,1.0
+02180,10,1.0000000000000002
+02185,10,1.0
+02188,10,1.0
+02195,10,1.0
+02198,10,0.9999999999999999
+02220,10,1.0
+02230,10,1.0
+02240,10,1.0
+02261,10,1.0
+02270,10,1.0
+02275,10,1.0
+02282,10,1.0
+02290,10,0.9999999999999998
+04001,12,0.2734276685589641
+04001,293,0.7262926815626835
+04001,423,0.0002796498783523029
+04003,15,1.0000000000000002
+04005,12,0.9895476085969989
+04005,423,0.010452391403001063
+04007,12,0.9752971248390767
+04007,15,0.024702875160923184
+04009,12,0.12808662707902302
+04009,15,0.8719133729209769
+04011,15,1.0
+04012,12,0.9999999999999999
+04013,11,0.31089920005029975
+04013,12,0.617331675886108
+04013,14,0.07176912406359254
+04015,12,0.623889782502273
+04015,279,0.3219056277661775
+04015,423,0.054204589731549666
+04017,12,0.9304741162673814
+04017,293,0.06691982651104782
+04017,423,0.0026060572215707077
+04019,12,0.004370273570556353
+04019,15,0.9956297264294437
+04021,11,0.5048415774120051
+04021,12,0.4294151779060112
+04021,15,0.0657432446819837
+04023,15,1.0
+04025,12,0.9752408391104708
+04025,14,0.024759160889529126
+04027,12,1.0
+05001,19,1.0
+05003,19,1.0
+05005,19,0.02076457977019247
+05005,270,0.9792354202298076
+05007,21,1.0000000000000002
+05009,21,0.9997561173888302
+05009,270,0.00024388261116982358
+05011,19,1.0
+05013,19,1.0
+05015,21,0.7039277125992859
+05015,270,0.2960722874007141
+05017,19,1.0
+05019,19,1.0
+05021,18,0.6647391655785613
+05021,273,0.3352608344214387
+05023,19,1.0
+05025,19,1.0
+05027,19,0.9434669273378952
+05027,219,0.05653307266210492
+05029,19,1.0
+05031,18,1.0000000000000002
+05033,16,0.9974979014657455
+05033,21,0.002502098534254536
+05035,379,1.0
+05037,18,0.036317851147174035
+05037,379,0.9636821488528261
+05039,19,1.0
+05041,19,0.994157441574416
+05041,379,0.005842558425584256
+05043,19,1.0
+05045,19,1.0
+05047,16,0.9991724137931035
+05047,21,0.0008275862068965517
+05049,19,0.4597795018374847
+05049,270,0.5402204981625153
+05051,19,0.9999999999999999
+05053,19,0.9999999999999999
+05055,18,1.0
+05057,22,1.0
+05059,19,1.0
+05061,22,1.0
+05063,19,0.9999999999999999
+05065,19,0.9899970794392522
+05065,270,0.010002920560747664
+05067,18,0.010168361393565594
+05067,19,0.9898316386064344
+05069,19,1.0
+05071,16,0.022905246671887237
+05071,19,0.9751761942051684
+05071,21,0.0019185591229444012
+05073,19,0.4019620667102682
+05073,219,0.11379986919555266
+05073,22,0.4842380640941792
+05075,18,0.881711168532874
+05075,19,0.11828883146712606
+05077,379,1.0
+05079,19,1.0
+05081,22,1.0
+05083,16,0.9558895897642373
+05083,19,0.04411041023576254
+05085,19,1.0
+05087,21,0.9979639880384298
+05087,270,0.0020360119615702747
+05089,21,0.09217558397886266
+05089,270,0.9078244160211373
+05091,22,1.0000000000000002
+05093,18,0.16228079612694996
+05093,379,0.8377192038730501
+05095,19,0.9775432568413303
+05095,379,0.022456743158669773
+05097,19,1.0000000000000002
+05099,19,0.0586862287429143
+05099,22,0.9413137712570857
+05101,19,0.07346938775510203
+05101,21,0.9265306122448979
+05103,19,1.0
+05105,19,1.0
+05107,19,0.0042287185144328
+05107,379,0.9957712814855673
+05109,19,0.8883181294836594
+05109,22,0.11168187051634045
+05111,18,0.9453687507627222
+05111,379,0.054631249237277794
+05113,16,0.8919756073952182
+05113,22,0.10802439260478174
+05115,19,1.0
+05117,19,1.0
+05119,19,0.9999999999999999
+05121,18,0.9873114808837443
+05121,19,0.012688519116255776
+05123,379,0.9999999999999999
+05125,19,1.0000000000000002
+05127,16,0.9893171904210807
+05127,19,0.010682809578919256
+05129,19,0.1816961561928005
+05129,21,0.7349603416717513
+05129,270,0.08334350213544844
+05131,16,1.0
+05133,22,1.0
+05135,18,0.10553753475440222
+05135,19,0.7784986098239111
+05135,270,0.11596385542168673
+05137,19,0.9850734226238502
+05137,21,0.01492657737614975
+05139,19,1.0
+05141,19,1.0000000000000002
+05143,21,1.0
+05145,19,1.0
+05147,19,0.9991735537190084
+05147,379,0.0008264462809917355
+05149,16,0.0020734730673878745
+05149,19,0.9979265269326121
+06001,33,0.00010064685468646849
+06001,65,0.9997695716747969
+06001,91,0.000129781470516762
+06003,280,0.8144680851063829
+06003,77,0.0825531914893617
+06003,91,0.10297872340425533
+06005,77,1.0
+06007,31,0.935144275350461
+06007,77,0.06485572464953908
+06009,58,0.08831402492539933
+06009,77,0.05147446024223275
+06009,91,0.8585000877654906
+06011,31,0.04458658200662963
+06011,77,0.9554134179933704
+06013,33,0.7615353010765294
+06013,65,0.0281987266198229
+06013,81,0.2102507199583611
+06013,91,1.525234528640568e-05
+06015,343,1.0
+06017,280,0.005119906328358868
+06017,77,0.9948800936716412
+06019,43,0.9993680280217233
+06019,58,0.0006319719782765008
+06021,31,1.0
+06023,62,0.058733059914407984
+06023,73,0.9412669400855922
+06025,12,0.019813439677301065
+06025,80,0.980186560322699
+06027,279,0.1727385914578033
+06027,280,0.8202782439235641
+06027,79,0.0069831646186326
+06029,25,0.8959641202187094
+06029,56,0.062454882247132124
+06029,79,0.04156789402837504
+06029,83,1.3103505783410962e-05
+06031,25,3.268657496992835e-05
+06031,43,0.99996731342503
+06033,62,1.0
+06035,280,0.9052872904427568
+06035,31,0.052099154606677175
+06035,73,0.042613554950565985
+06037,23,0.0006469396911046301
+06037,56,0.9958922588756876
+06037,79,1.3953201776028706e-05
+06037,96,0.003446848231431675
+06039,43,0.8433036158154643
+06039,58,0.15669638418453585
+06041,81,0.9947624065988923
+06041,89,0.0052375934011077395
+06043,43,0.014629335378883349
+06043,58,0.9853706646211166
+06045,62,0.9523972212732036
+06045,89,0.047602778726796496
+06047,43,0.00017201476199412018
+06047,58,0.9998279852380056
+06049,280,0.7213961173068979
+06049,343,0.22728211482858324
+06049,73,0.051321767864518794
+06051,280,1.0
+06053,43,0.00013733152794576128
+06053,78,0.95763683761631
+06053,83,0.0035392985009179527
+06053,87,0.03868653235482612
+06055,62,0.8557559860496468
+06055,81,0.14424401395035316
+06057,280,0.17102904992861553
+06057,77,0.8289709500713844
+06059,23,0.9998043321980834
+06059,56,0.00019101695433266318
+06059,80,4.650847583751799e-06
+06061,280,0.03960313633650181
+06061,77,0.9603968636634981
+06063,280,0.684421105276319
+06063,31,0.3155788947236809
+06065,12,0.011092989937344177
+06065,23,0.11914608320039313
+06065,69,0.13494545303416502
+06065,79,0.5328366477421937
+06065,80,0.20197882608590412
+06067,77,0.9999999999999998
+06069,43,0.00014474660297816137
+06069,78,0.0009408529193580488
+06069,82,0.9710868660551123
+06069,87,0.02782753442255152
+06071,12,0.0008181613138933618
+06071,23,1.7198586177938542e-05
+06071,279,0.0027316268732331525
+06071,56,0.020204899041842198
+06071,69,0.034055166185024355
+06071,79,0.9421729479998293
+06073,23,0.005150098280368439
+06073,79,7.050056044711585e-05
+06073,80,0.9947794011591848
+06075,81,1.0
+06077,58,0.044442920388848194
+06077,77,0.1319892135775843
+06077,91,0.8235678660335676
+06079,25,0.0003894355410001446
+06079,83,0.9268714232200016
+06079,86,0.07273914123899847
+06081,85,1.0
+06083,25,0.000537880467861642
+06083,86,0.9994456056581249
+06083,96,1.651387401329603e-05
+06085,65,7.296639841225117e-05
+06085,82,0.9558940572797451
+06085,85,0.04398639008285615
+06085,87,4.6586238986283445e-05
+06087,82,0.020157632764442684
+06087,87,0.9798423672355574
+06089,31,0.00011285280608502328
+06089,73,0.9998871471939151
+06091,280,0.7209015128125964
+06091,77,0.27909848718740354
+06093,343,0.6031625835189309
+06093,73,0.39683741648106907
+06095,33,0.5745518854800976
+06095,77,0.0718386424833613
+06095,81,0.3536094720365411
+06097,62,0.0011821161532452394
+06097,89,0.9988178838467546
+06099,58,1.0
+06101,77,1.0
+06103,31,0.8630296727020597
+06103,73,0.1369703272979404
+06105,62,0.01903378132945877
+06105,73,0.9809662186705412
+06107,25,0.9257495267753556
+06107,43,0.0741306122633594
+06107,79,0.00011986096128490952
+06109,58,1.0
+06111,25,0.00014454008922617608
+06111,56,0.004243891359296297
+06111,86,0.00010567216607291867
+06111,96,0.9955058963854047
+06113,77,0.9999999999999999
+06115,31,0.00808038808038808
+06115,77,0.9919196119196119
+08001,103,0.9989606048871951
+08001,106,0.00103939511280494
+08003,102,1.0
+08005,103,0.9999999999999999
+08007,293,0.9999999999999999
+08009,102,1.0
+08011,102,1.0
+08013,101,0.9676236645652773
+08013,103,0.03237633543472283
+08014,103,1.0
+08015,102,0.9999999999999999
+08017,102,0.9901960784313726
+08017,103,0.00980392156862745
+08019,103,1.0
+08021,102,1.0
+08023,102,1.0
+08025,102,0.5730722995019748
+08025,107,0.4269277004980251
+08027,107,1.0
+08029,105,1.0
+08031,103,1.0000000000000002
+08033,105,0.002422480620155039
+08033,293,0.9975775193798451
+08035,102,0.018937522988807735
+08035,103,0.9810624770111924
+08037,103,0.33791214054447577
+08037,105,0.6620878594555243
+08039,102,0.132504548211037
+08039,103,0.867495451788963
+08041,102,0.9998891144098232
+08041,107,0.00011088559017650095
+08043,102,0.9985691098581922
+08043,107,0.0014308901418076199
+08045,105,1.0
+08047,103,1.0
+08049,103,1.0
+08051,102,0.00013051422605063953
+08051,105,0.9998694857739493
+08053,102,0.013048635824436536
+08053,105,0.951364175563464
+08053,293,0.03558718861209965
+08055,107,1.0
+08057,104,1.0000000000000002
+08059,103,0.9999999999999999
+08061,102,0.7610872675250357
+08061,201,0.23891273247496425
+08063,103,1.0
+08065,103,1.0
+08067,293,1.0
+08069,101,0.005757100423856089
+08069,104,0.6711143743950873
+08069,106,0.3231285251810566
+08071,102,0.9599535693557748
+08071,107,0.04004643064422519
+08073,102,0.06932504115602706
+08073,103,0.9306749588439729
+08075,106,1.0
+08077,105,1.0
+08079,102,0.9971910112359552
+08079,293,0.002808988764044944
+08081,103,0.9637549836897426
+08081,105,0.0025371511417180137
+08081,423,0.03370786516853933
+08083,293,1.0
+08085,105,0.9999999999999999
+08087,106,1.0
+08089,102,0.9123254208486007
+08089,107,0.08767457915139928
+08091,105,1.0
+08093,102,0.1569788967049241
+08093,103,0.843021103295076
+08095,106,0.9999999999999998
+08097,103,0.8405061814788897
+08097,105,0.15949381852111033
+08099,102,0.9999999999999999
+08101,107,0.9999999999999999
+08103,105,0.5787578757875788
+08103,423,0.4212421242124213
+08105,102,1.0
+08107,103,1.0
+08109,102,0.9855926653569089
+08109,105,0.014407334643091027
+08111,293,1.0000000000000002
+08113,105,1.0
+08115,106,1.0
+08117,103,1.0
+08119,102,1.0
+08121,103,0.022226838388034898
+08121,106,0.9777731616119651
+08123,101,0.09434984673192919
+08123,103,0.16723425294175814
+08123,104,0.0032393948383269058
+08123,106,0.7351765054879859
+08125,103,0.00368415812008364
+08125,106,0.9963158418799162
+09001,109,0.7444485285696679
+09001,111,0.25555147143033213
+09003,110,0.951825139203637
+09003,111,0.048174860796363364
+09005,110,0.5620791146071912
+09005,111,0.43792088539280893
+09007,110,0.9997344214008066
+09007,111,0.0002655785991936068
+09009,111,1.0
+09011,110,0.3467661600773567
+09011,111,0.5811680137198738
+09011,364,0.07206582620276952
+09013,110,0.9999999999999999
+09015,110,1.0000000000000002
+10001,112,0.8440391842770009
+10001,225,0.1559608157229992
+10003,112,0.9999999999999998
+10005,225,1.0
+11001,113,0.9994133513261086
+12001,120,1.0000000000000002
+12003,123,1.0
+12005,133,1.0
+12007,120,1.0
+12009,130,0.9999999999999999
+12011,118,0.6439625277306462
+12011,127,0.35603747226935356
+12013,133,0.05230769230769231
+12013,140,0.9360683760683761
+12013,2,0.011623931623931624
+12015,119,0.8201315180837365
+12015,137,0.1798684819162635
+12017,129,1.0000000000000002
+12019,120,0.07556649988211561
+12019,123,0.9244335001178842
+12021,119,0.9999999999999998
+12023,120,1.0000000000000002
+12027,137,1.0
+12029,120,1.0
+12031,123,1.0000000000000002
+12033,134,1.0
+12035,130,0.00014629660591874267
+12035,131,0.9998537033940813
+12037,133,0.6067191964672266
+12037,140,0.3932808035327734
+12039,140,0.9999999999999999
+12041,120,1.0000000000000002
+12043,119,0.8032443340577461
+12043,130,0.19675566594225394
+12045,133,1.0
+12047,120,0.11534563146158525
+12047,140,0.8846543685384148
+12049,124,0.2549493346796005
+12049,130,0.7167069344776603
+12049,137,0.028343730842739168
+12051,119,1.0
+12053,122,0.9668881454814849
+12053,130,0.00773246593895056
+12053,141,0.025379388579564528
+12055,130,1.0
+12057,124,0.060840724163009896
+12057,141,0.9391592758369902
+12059,134,0.10608721834696642
+12059,2,0.8939127816530336
+12061,130,1.0
+12063,2,1.0
+12065,140,1.0
+12067,120,1.0
+12069,129,0.0012253746818738807
+12069,130,0.9987746253181263
+12071,119,0.9978602158531499
+12071,137,0.00213978414684996
+12073,140,1.0
+12075,120,0.8951110675231696
+12075,129,0.10488893247683029
+12077,140,1.0
+12079,140,1.0
+12081,115,0.9135466324694189
+12081,124,0.0004088801330718979
+12081,137,0.08554887511499755
+12081,141,0.0004956122825113913
+12083,120,0.010630912350814072
+12083,129,0.978391055786633
+12083,130,0.010978031862552747
+12085,118,0.9968493281756174
+12085,130,0.003150671824382509
+12086,127,1.0
+12087,119,8.211753756877343e-05
+12087,127,0.9999178824624312
+12089,123,0.9999999999999999
+12091,134,1.0000000000000002
+12093,130,1.0
+12095,130,1.0
+12097,130,1.0000000000000002
+12099,118,0.9997992617376964
+12099,119,0.0002007382623035511
+12101,122,0.5373738156260961
+12101,130,9.038147438007992e-05
+12101,141,0.4625358028995238
+12103,116,0.5487364463385203
+12103,139,0.4512635536614798
+12105,124,0.5135136481784435
+12105,130,0.48648635182155636
+12107,120,0.9945403689957506
+12107,123,0.0023129471249529344
+12107,129,0.003146683879296434
+12109,123,1.0
+12111,118,0.6789253714149948
+12111,130,0.3210746285850052
+12113,134,1.0
+12115,115,0.00022664502118867406
+12115,119,0.16341896649870336
+12115,137,0.8363543884801079
+12117,130,0.9999999999999999
+12119,129,0.48201669877970454
+12119,130,0.5179833012202955
+12121,120,1.0000000000000002
+12123,120,0.06050800124118978
+12123,140,0.9394919987588102
+12125,120,1.0
+12127,130,0.41903747121370494
+12127,131,0.5809625287862951
+12129,140,1.0
+12131,133,0.023527060661664517
+12131,134,0.9662264048107843
+12131,2,0.010246534527551188
+12133,133,0.8639942159383034
+12133,2,0.13600578406169667
+13001,149,1.0
+13003,123,0.9966567164179104
+13003,140,0.0033432835820895518
+13005,123,1.0
+13007,140,0.11185163720660678
+13007,142,0.8464213271515504
+13007,2,0.041727035641842936
+13009,145,0.0008092738407699037
+13009,147,0.9991907261592301
+13011,144,1.0000000000000002
+13013,144,1.0
+13015,144,0.7540761005221801
+13015,148,0.24592389947781984
+13017,123,0.007428830668027673
+13017,140,0.0065782012022229785
+13017,147,0.9859929681297492
+13019,140,1.0
+13021,147,1.0000000000000002
+13023,147,1.0
+13025,123,1.0
+13027,140,1.0000000000000002
+13029,149,1.0
+13031,149,1.0
+13033,145,1.0
+13035,144,0.9997886281969985
+13035,147,0.0002113718030014796
+13037,142,0.9999999999999999
+13039,123,1.0
+13043,149,1.0000000000000002
+13045,144,0.994553367050585
+13045,148,0.005446632949415075
+13047,144,0.05695786806793657
+13047,373,0.9430421319320634
+13049,123,0.9999999999999999
+13051,149,1.0
+13053,146,1.0
+13055,148,1.0
+13057,144,1.0
+13059,144,1.0
+13061,142,0.03770028275212064
+13061,146,0.11592836946277096
+13061,2,0.8463713477851085
+13063,144,1.0
+13065,123,0.9428487258801
+13065,140,0.057151274119899835
+13067,144,1.0
+13069,123,1.0
+13071,140,1.0
+13073,145,1.0
+13075,140,1.0
+13077,144,1.0
+13079,147,1.0
+13081,147,1.0
+13083,148,0.02236517765887092
+13083,373,0.9776348223411291
+13085,144,0.9999999999999999
+13087,140,0.9969111414409884
+13087,142,0.003088858559011565
+13089,144,0.9999999999999999
+13091,147,1.0
+13093,147,0.9999999999999999
+13095,142,1.0000000000000002
+13097,144,1.0
+13099,140,0.0021802325581395353
+13099,142,0.05823037790697674
+13099,2,0.9395893895348837
+13101,123,0.029995042141794742
+13101,140,0.9700049578582053
+13103,149,1.0
+13105,144,1.0
+13107,145,0.6690415080980617
+13107,147,0.055137622798477746
+13107,149,0.2758208691034605
+13109,149,1.0
+13111,144,1.0
+13113,144,1.0000000000000002
+13115,148,1.0
+13117,144,1.0
+13119,144,1.0
+13121,144,1.0
+13123,144,1.0
+13125,145,1.0
+13127,123,1.0000000000000002
+13129,144,0.061501105352806874
+13129,148,0.9384988946471933
+13131,140,0.9999999999999999
+13133,144,0.9999999999999999
+13135,144,0.9999999999999999
+13137,144,1.0000000000000002
+13139,144,0.9999999999999999
+13141,144,0.006999681832643971
+13141,145,0.0014847809948032665
+13141,147,0.9915155371725528
+13143,144,0.09874913134120916
+13143,148,0.9012508686587909
+13145,1,0.06404571571321509
+13145,144,0.09574069447914063
+13145,146,0.8402135898076443
+13147,144,1.0
+13149,144,1.0
+13151,144,1.0
+13153,147,1.0000000000000002
+13155,123,0.04969595302998532
+13155,140,0.09719018662193332
+13155,147,0.8531138603480813
+13157,144,1.0
+13159,144,0.28561151079136693
+13159,147,0.7143884892086331
+13161,123,0.006902044066896734
+13161,149,0.9930979559331032
+13163,145,1.0000000000000002
+13165,145,0.9556354916067146
+13165,149,0.044364508393285366
+13167,145,0.8796593186372745
+13167,147,0.12034068136272545
+13169,147,1.0
+13171,144,0.2731888409674073
+13171,147,0.726811159032593
+13173,140,1.0
+13175,147,1.0
+13177,142,1.0
+13179,149,0.9999999999999999
+13181,145,1.0
+13183,149,1.0000000000000002
+13185,140,0.9999999999999999
+13187,144,1.0
+13189,145,1.0
+13191,123,0.9887671806321077
+13191,149,0.011232819367892277
+13193,142,0.0037991858887381283
+13193,147,0.9962008141112619
+13195,144,1.0
+13197,146,1.0
+13199,144,0.6453255729356131
+13199,146,0.35467442706438707
+13201,140,0.8868571428571429
+13201,2,0.11314285714285714
+13205,140,0.40488552217209967
+13205,142,0.5951144778279003
+13207,144,0.0800408719346049
+13207,147,0.9199591280653951
+13209,147,0.03485695494902993
+13209,149,0.9651430450509699
+13211,144,1.0
+13213,144,1.0000000000000002
+13215,146,1.0
+13217,144,0.9998399327717643
+13217,148,0.00016006722823585907
+13219,144,1.0
+13221,144,0.9828847573662662
+13221,145,0.017115242633733808
+13223,144,0.9657401422107305
+13223,148,0.03425985778926956
+13225,147,1.0
+13227,144,0.9526349767252217
+13227,148,0.0473650232747783
+13229,123,0.9870988378291929
+13229,149,0.012901162170807123
+13231,144,0.7600313391907774
+13231,147,0.23996866080922272
+13233,148,0.9999999999999999
+13235,147,1.0
+13237,144,0.9670562729757753
+13237,147,0.03294372702422471
+13239,146,1.0000000000000002
+13241,144,1.0
+13243,142,0.19445524031610312
+13243,146,0.8055447596838969
+13245,145,1.0
+13247,144,1.0000000000000002
+13249,142,0.979241516966068
+13249,146,0.020758483033932136
+13251,145,0.006098814500102789
+13251,149,0.9939011854998974
+13253,140,0.010081338068507277
+13253,2,0.9899186619314928
+13255,144,1.0
+13257,144,1.0
+13259,146,1.0
+13261,142,0.9821749596270452
+13261,147,0.017825040372954692
+13263,146,0.9999999999999999
+13265,144,0.039603960396039604
+13265,145,0.9603960396039604
+13267,149,1.0
+13269,146,0.09735010105546824
+13269,147,0.9026498989445318
+13271,147,0.8730909090909091
+13271,149,0.12690909090909092
+13273,142,0.9666129898013955
+13273,146,0.0333870101986044
+13275,140,1.0
+13277,140,1.0
+13279,149,1.0
+13281,144,1.0
+13283,147,0.9914306463326071
+13283,149,0.00856935366739288
+13285,1,0.07232563689517332
+13285,144,0.9276743631048266
+13287,140,1.0
+13289,147,0.9999999999999999
+13291,144,0.9999999999999999
+13293,147,1.0
+13295,144,0.003257897492582465
+13295,148,0.026586770609110476
+13295,373,0.970155331898307
+13297,144,1.0
+13299,123,1.0
+13301,145,1.0
+13303,145,0.999150422428848
+13303,147,0.0008495775711521216
+13305,123,0.009834213761254526
+13305,149,0.9901657862387455
+13307,142,0.006430868167202572
+13307,146,0.9935691318327974
+13309,147,0.9804608543323002
+13309,149,0.019539145667699768
+13311,144,0.9999999999999999
+13313,144,0.9961598066257957
+13313,373,0.0038401933742044274
+13315,147,1.0
+13317,145,1.0
+13319,147,1.0
+13321,140,0.11162876516444487
+13321,142,0.8883712348355552
+15001,150,1.0
+15003,150,1.0000000000000002
+15005,150,1.0
+15007,150,0.9999999999999999
+15009,150,0.9999999999999999
+16001,151,0.9999999999999999
+16003,151,1.0
+16005,423,0.9999999999999998
+16007,423,1.0
+16009,440,1.0
+16011,152,0.8879996491766615
+16011,423,0.11200035082333852
+16013,151,0.9978480538922156
+16013,423,0.0021519461077844308
+16015,151,0.9999999999999999
+16017,440,1.0
+16019,152,0.9990981829345512
+16019,423,0.000901817065448894
+16021,440,1.0
+16023,152,1.0
+16025,151,1.0
+16027,151,0.9999999999999999
+16029,423,1.0
+16031,151,0.00984663645869641
+16031,423,0.9901533635413033
+16033,152,0.9938900203665988
+16033,276,0.006109979633401222
+16035,440,1.0
+16037,151,0.042582417582417584
+16037,152,0.32532051282051283
+16037,276,0.6320970695970695
+16039,151,0.9984836156520452
+16041,423,1.0
+16043,152,1.0
+16045,151,1.0
+16047,151,1.0
+16049,151,0.07585910124792526
+16049,276,0.003196655806233479
+16049,440,0.9209442429458415
+16051,152,1.0
+16053,151,0.9929829266112452
+16053,423,0.007017073388754805
+16055,440,1.0
+16057,440,1.0
+16059,276,0.9999999999999999
+16061,440,0.9999999999999999
+16063,151,0.9723502304147466
+16063,423,0.027649769585253458
+16065,152,1.0
+16067,423,1.0
+16069,440,1.0000000000000002
+16071,423,1.0
+16073,151,1.0000000000000002
+16075,151,1.0
+16077,423,0.9999999999999999
+16079,440,1.0
+16081,152,1.0
+16083,151,0.9999999999999999
+16085,151,1.0
+16087,151,1.0
+17001,172,0.9994188039282893
+17001,264,0.0005811960717106537
+17003,263,1.0
+17005,172,0.01755965781179649
+17005,273,0.9824403421882035
+17007,171,0.9958091018185175
+17007,449,0.004190898181482507
+17009,172,1.0
+17011,170,0.2862084738978787
+17011,171,0.7137915261021214
+17013,172,0.04637453330713303
+17013,273,0.953625466692867
+17015,171,0.6071358939364399
+17015,191,0.3928641060635601
+17017,172,1.0
+17019,173,0.9999999999999999
+17021,172,1.0
+17023,173,0.30602999693908783
+17023,179,0.0022038567493112946
+17023,188,0.6917661463116009
+17025,172,0.9897213174086139
+17025,179,0.0086138255519363
+17025,273,0.0016648570394498733
+17027,273,1.0
+17029,172,0.0014292873981400704
+17029,173,0.9985707126018598
+17031,155,0.15775289118183522
+17031,156,0.49642104655247926
+17031,158,0.03786762405732794
+17031,161,0.15105815089490682
+17031,163,0.0012054652119718751
+17031,164,0.004030281008917786
+17031,166,0.13645723745951382
+17031,186,0.015207303633047302
+17033,179,0.985719331886764
+17033,188,0.014280668113236111
+17035,172,0.4204380883417813
+17035,173,0.5795619116582188
+17037,154,0.1238398630658045
+17037,158,0.0005895777862305058
+17037,171,0.8755705591479651
+17039,172,0.7118531489644344
+17039,173,0.23627800253607872
+17039,175,0.051868848499486746
+17041,172,0.1967967967967968
+17041,173,0.8032032032032033
+17043,154,0.05082536829660911
+17043,158,0.046362621111455254
+17043,163,0.36311733578791705
+17043,164,0.0016577164519633034
+17043,166,0.5380369583520553
+17045,173,0.9837962962962964
+17045,188,0.016203703703703703
+17047,179,1.0
+17049,172,1.0
+17051,172,0.9705510388437217
+17051,273,0.029448961156278233
+17053,164,0.052766138768553364
+17053,173,0.941978552659612
+17053,175,0.005255308571834388
+17055,179,0.008745987209625642
+17055,273,0.9912540127903744
+17057,170,0.8736410477757696
+17057,172,0.12635895222423046
+17059,179,1.0
+17061,172,0.945772720725911
+17061,273,0.05422727927408901
+17063,164,0.9910712502247169
+17063,170,0.008928749775283141
+17065,179,0.9632257301643607
+17065,273,0.03677426983563912
+17067,172,0.9999999999999999
+17069,179,0.962037037037037
+17069,208,0.03796296296296296
+17071,170,0.3389714909289319
+17071,172,0.05619969990451507
+17071,191,0.604828809166553
+17073,170,0.39016757120785966
+17073,171,0.0123202471972428
+17073,191,0.5975121815948977
+17075,164,0.22965879265091865
+17075,173,0.7703412073490814
+17077,263,0.3356637550234149
+17077,273,0.664336244976585
+17079,172,0.7364405031965354
+17079,173,0.09837079810270158
+17079,179,0.16518869870076305
+17081,273,1.0
+17083,273,1.0
+17085,171,0.29499955904400743
+17085,191,0.0011464855807390422
+17085,193,0.7038539553752535
+17087,179,0.11508504212366874
+17087,208,0.798760133524082
+17087,263,0.08615482435224925
+17089,154,0.318148384630164
+17089,158,0.40081394378470275
+17089,166,0.27472834577667193
+17089,171,0.006309325808461211
+17091,155,0.000907896940475456
+17091,164,0.9990921030595245
+17093,154,0.8073839074048249
+17093,163,0.0629706456561149
+17093,164,0.1296454469390601
+17095,170,1.0
+17097,158,0.15824735380162683
+17097,161,0.18337166755276052
+17097,451,0.6583809786456127
+17099,154,0.11950071977809767
+17099,164,0.029063235139215625
+17099,170,0.7427056634247392
+17099,171,0.1087303816579474
+17101,179,1.0000000000000002
+17103,171,1.0000000000000002
+17105,164,0.007008985879332477
+17105,170,0.26456996148908857
+17105,173,0.008523748395378691
+17105,175,0.7198973042362002
+17107,170,0.011516251443656164
+17107,172,0.9114337568058076
+17107,175,0.07704999175053621
+17109,172,0.9999999999999999
+17111,158,0.7979563414950124
+17111,171,0.2020436585049877
+17113,170,7.666360012266175e-05
+17113,173,0.011888755219022008
+17113,175,0.9880345811808554
+17115,172,0.9994312436804855
+17115,173,0.0005687563195146613
+17117,172,0.6814403852193028
+17117,273,0.31855961478069716
+17119,273,1.0000000000000002
+17121,172,0.00038035347516291807
+17121,273,0.999619646524837
+17123,170,1.0
+17125,170,0.23810173189690442
+17125,172,0.7618982681030956
+17127,208,1.0
+17129,172,1.0
+17131,170,0.12693197030546427
+17131,191,0.8730680296945357
+17133,273,1.0
+17135,172,0.9956484188147754
+17135,273,0.004351581185224554
+17137,172,0.9999999999999999
+17139,172,0.9671291930486325
+17139,173,0.03287080695136737
+17141,171,0.9999999999999999
+17143,170,1.0000000000000002
+17145,273,1.0
+17147,172,0.19989240241496803
+17147,173,0.8001075975850318
+17149,172,0.9590383444917835
+17149,264,0.040961655508216684
+17151,179,0.1214765100671141
+17151,208,0.878523489932886
+17153,208,0.19298815127414382
+17153,263,0.8070118487258562
+17155,170,0.875957375957376
+17155,171,0.12404262404262405
+17157,263,0.0002389771776795316
+17157,273,0.9997610228223205
+17159,172,0.00646830530401035
+17159,179,0.9935316946959896
+17161,191,0.9913518495926693
+17161,194,0.008648150407330595
+17163,273,0.9999999999999999
+17165,179,0.9951029582948662
+17165,273,0.004897041705133866
+17167,172,1.0
+17169,172,1.0
+17171,172,1.0
+17173,172,0.9684299959754953
+17173,173,0.031570004024504765
+17175,170,1.0
+17177,171,0.9439332648655447
+17177,449,0.05606673513445536
+17179,170,0.9993205016470448
+17179,172,0.00010340192327577293
+17179,175,0.0005760964296793064
+17181,208,0.002920035938903864
+17181,263,0.9875336927223718
+17181,273,0.009546271338724169
+17183,173,1.0
+17185,179,1.0
+17187,170,0.9842999943525159
+17187,172,0.0008471226068786355
+17187,191,0.014852883040605409
+17189,273,1.0
+17191,172,0.061754176610978526
+17191,179,0.7294749403341289
+17191,273,0.2087708830548926
+17193,179,1.0
+17195,171,0.8339772299907688
+17195,191,0.1660227700092311
+17197,154,1.4758840545486746e-05
+17197,155,0.07255741188972195
+17197,163,0.22871922781746268
+17197,164,0.6987086014522699
+17199,179,0.0084241300842413
+17199,208,0.4659342646593427
+17199,273,0.5256416052564161
+17201,171,0.9648723523873388
+17201,449,0.03512764761266113
+17203,170,0.8755690047589489
+17203,175,0.12443099524105111
+18001,180,1.0
+18003,180,1.0
+18005,183,0.9999999999999999
+18007,184,1.0
+18009,183,0.0019583268055773147
+18009,185,0.9980416731944228
+18011,183,0.9988170903954802
+18011,184,0.001182909604519774
+18013,183,1.0
+18015,183,0.2973951872984371
+18015,184,0.702604812701563
+18017,183,0.9999999999999999
+18019,205,0.9999999999999998
+18021,183,0.8018966158423205
+18021,188,0.19810338415767945
+18023,183,0.8227185167348905
+18023,184,0.17728148326510956
+18025,179,0.4611220013068234
+18025,205,0.5388779986931764
+18027,179,1.0
+18029,327,1.0
+18031,183,0.9988344988344988
+18031,327,0.0011655011655011655
+18033,180,1.0000000000000002
+18035,183,0.0029658964400744448
+18035,185,0.9970341035599257
+18037,179,0.990116737090883
+18037,205,0.009883262909116952
+18039,187,1.0000000000000002
+18041,183,1.0
+18043,205,1.0
+18045,173,0.6160092807424594
+18045,183,0.08938515081206497
+18045,184,0.2946055684454756
+18047,183,0.16121626889591542
+18047,327,0.8387837311040846
+18049,180,0.004127471683624497
+18049,183,0.09550777500479939
+18049,187,0.9003647533115762
+18051,179,0.9999999999999999
+18053,183,0.9999999999999999
+18055,179,0.006995326398311473
+18055,183,0.8842454394693201
+18055,188,0.10875923413236845
+18057,183,0.9999999999999999
+18059,183,1.0
+18061,205,1.0
+18063,183,1.0000000000000002
+18065,183,0.9617281953823136
+18065,185,0.038271804617686304
+18067,183,0.9976314771848416
+18067,184,0.002368522815158546
+18069,180,0.9095194483353087
+18069,183,0.0904805516646913
+18071,183,0.9930385123654899
+18071,205,0.0069614876345101
+18073,181,0.552870541848378
+18073,183,0.010185793655534979
+18073,184,0.43694366449608696
+18075,180,0.7499647108643486
+18075,185,0.2500352891356514
+18077,183,0.009559639817441718
+18077,205,0.9904403601825583
+18079,183,0.9851007887817703
+18079,205,0.014899211218229624
+18081,183,1.0
+18083,179,1.0
+18085,180,0.7873781638615267
+18085,187,0.21262183613847307
+18087,180,0.7259480715363068
+18087,187,0.27405192846369314
+18089,181,0.5166298726827351
+18089,186,0.4833701273172649
+18091,181,0.38879668422044183
+18091,187,0.611203315779558
+18093,183,0.9999999999999999
+18095,183,1.0
+18097,183,1.0
+18099,180,0.0009989160697966037
+18099,187,0.9990010839302033
+18101,179,0.5854461002515967
+18101,183,0.3995548674279079
+18101,205,0.014999032320495454
+18103,180,0.009646912175161913
+18103,183,0.9431753515974312
+18103,187,0.04717773622740699
+18105,183,1.0
+18107,183,0.9782813975448537
+18107,184,0.021718602455146365
+18109,183,0.9999999999999999
+18111,173,0.15810165683796687
+18111,181,0.4847655153046897
+18111,184,0.3571328278573434
+18113,180,0.7576152810501515
+18113,187,0.24238471894984853
+18115,205,0.00293733681462141
+18115,327,0.9970626631853785
+18117,179,0.015020161290322579
+18117,183,0.25
+18117,205,0.7349798387096774
+18119,183,0.9479026651216685
+18119,188,0.052097334878331396
+18121,173,0.03973700905473209
+18121,183,0.07116904089047812
+18121,188,0.8890939500547899
+18123,179,0.9997414417209638
+18123,205,0.00025855827903609467
+18125,179,1.0
+18127,181,0.9880798086927949
+18127,187,0.011920191307205053
+18129,179,1.0
+18131,181,0.01820623787494404
+18131,183,0.975376809431428
+18131,187,0.006416952693627818
+18133,183,0.9986302452387852
+18133,188,0.0013697547612148671
+18135,180,0.00030568186160253723
+18135,183,0.11512743112605556
+18135,185,0.884566887012342
+18137,183,0.0011798181691998054
+18137,205,0.24411825942119514
+18137,327,0.7547019224096052
+18139,183,1.0
+18141,187,1.0
+18143,205,0.9999999999999999
+18145,183,1.0
+18147,179,0.6524436807941963
+18147,207,0.34755631920580377
+18149,181,0.7608611907717332
+18149,183,0.019774857680948506
+18149,187,0.21936395154731841
+18151,180,1.0
+18153,179,0.0012572759022118742
+18153,188,0.9987427240977882
+18155,205,0.791199472345237
+18155,327,0.20880052765476304
+18157,183,0.0002372959833314041
+18157,184,0.9997627040166686
+18159,183,0.9999999999999999
+18161,183,0.9878924960085153
+18161,327,0.012107503991484832
+18163,179,1.0
+18165,173,0.09696521095484827
+18165,188,0.9030347890451518
+18167,183,0.006128996365254803
+18167,188,0.9938710036347452
+18169,180,0.9273291170031621
+18169,183,0.07267088299683777
+18171,173,0.05982604607428304
+18171,184,0.940173953925717
+18173,179,1.0
+18175,183,0.01358714882173944
+18175,205,0.9864128511782606
+18177,183,0.9983023056720403
+18177,185,0.0016976943279597193
+18179,180,0.9537197857866552
+18179,183,0.02576349688811695
+18179,185,0.020516717325227963
+18181,183,0.7142393377429697
+18181,184,0.28576066225703034
+18183,180,0.9999999999999998
+19001,192,0.9497526685758917
+19001,278,0.0502473314241083
+19003,192,0.9198312236286919
+19003,278,0.08016877637130804
+19005,448,1.0
+19007,192,0.9999999999999999
+19009,192,0.882006863866645
+19009,278,0.11799313613335512
+19011,190,0.9769519865009971
+19011,197,0.023048013499002915
+19013,197,0.9999999999999999
+19015,192,0.9999999999999998
+19017,197,0.9953451969022903
+19017,253,0.004654803097709673
+19019,190,0.13054680790151732
+19019,197,0.8694531920984828
+19021,192,0.0004935834155972358
+19021,196,0.9071076011846002
+19021,371,0.09239881539980256
+19023,195,0.21154234209995293
+19023,197,0.7884576579000471
+19025,192,0.971147880041365
+19025,196,0.02885211995863495
+19027,192,0.9071387394312068
+19027,278,0.09286126056879324
+19029,278,0.9999999999999998
+19031,190,0.30850316233309916
+19031,191,0.15190010270825452
+19031,194,0.5395967349586465
+19033,195,0.9999999999999998
+19035,196,0.9969350563286944
+19035,371,0.0030649436713055004
+19037,197,0.006672562103062947
+19037,253,0.9933274378969371
+19039,192,0.9999999999999999
+19041,195,0.0007199856002879943
+19041,196,0.0002399952000959981
+19041,371,0.9990400191996159
+19043,190,0.35981024877268464
+19043,193,0.302002316730101
+19043,197,0.0009377240884770258
+19043,448,0.3372497104087374
+19045,191,1.0
+19047,192,0.034160037435657466
+19047,196,0.0031001403837154894
+19047,278,0.9627398221806273
+19049,192,0.9999999999999999
+19051,192,0.9944019193419399
+19051,194,0.005598080658060094
+19053,192,1.0000000000000002
+19055,190,0.8958567890114838
+19055,193,0.1041432109885161
+19057,191,1.0000000000000002
+19059,371,1.0
+19061,190,0.00016016571812969152
+19061,193,0.9998398342818704
+19063,251,0.12492719860221314
+19063,371,0.875072801397787
+19065,190,0.005890804597701149
+19065,197,0.4670019157088123
+19065,253,0.03496168582375478
+19065,448,0.4921455938697318
+19067,195,0.3051585597742747
+19067,253,0.6948414402257254
+19069,192,0.05402621722846442
+19069,195,0.9147003745318352
+19069,197,0.031273408239700366
+19071,278,1.0
+19073,192,0.9999999999999999
+19075,192,0.1525736770256163
+19075,197,0.8474263229743836
+19077,192,1.0000000000000002
+19079,192,1.0
+19081,195,1.0
+19083,192,0.8641496521044827
+19083,197,0.1358503478955173
+19085,278,1.0000000000000002
+19087,191,0.17845619260362375
+19087,194,0.8215438073963764
+19089,195,0.09021534601714404
+19089,253,0.9071712314446999
+19089,448,0.0026134225381559692
+19091,192,0.9801324503311258
+19091,195,0.019867549668874173
+19093,196,0.9939342643532232
+19093,278,0.0060657356467766965
+19095,190,0.5395903393457658
+19095,192,0.008865790278202385
+19095,194,0.4515438703760317
+19097,191,0.6290810157194681
+19097,193,0.370918984280532
+19099,192,1.0
+19101,194,1.0
+19103,190,0.027597377790681683
+19103,194,0.9724026222093184
+19105,190,0.9087120845043125
+19105,191,0.04215524760151178
+19105,193,0.049132667894175794
+19107,192,0.0008562458376938447
+19107,194,0.9991437541623063
+19109,192,0.02103840957344142
+19109,195,0.8219134015312358
+19109,251,0.06826224023676254
+19109,371,0.08878594865856013
+19111,191,0.02766159165690703
+19111,194,0.972338408343093
+19113,190,0.9999999999999999
+19115,191,0.4470009660138754
+19115,194,0.5529990339861245
+19117,192,0.9999999999999999
+19119,196,0.0008634832915983075
+19119,371,0.9991365167084016
+19121,192,1.0
+19123,192,0.9774362182208123
+19123,194,0.022563781779187705
+19125,192,0.9999999999999998
+19127,192,0.9999999999999999
+19129,278,1.0
+19131,195,0.9948032665181885
+19131,253,0.005196733481811433
+19133,196,0.19928594612138917
+19133,278,0.8007140538786109
+19135,192,0.9626097867001254
+19135,194,0.037390213299874527
+19137,278,1.0
+19139,191,0.022926658088665338
+19139,194,0.9770733419113347
+19141,196,0.8415752187803862
+19141,371,0.15842478121961384
+19143,196,0.0068090374497059725
+19143,371,0.9931909625502939
+19145,278,1.0
+19147,192,0.004776562997558646
+19147,195,0.7476913278845132
+19147,371,0.247532109117928
+19149,196,1.0
+19151,192,0.8448700410396717
+19151,195,0.012722298221614227
+19151,196,0.14240766073871408
+19153,192,1.0000000000000002
+19155,278,0.9999999999999999
+19157,190,0.025695252194141906
+19157,192,0.9743047478058579
+19159,192,1.0
+19161,192,0.3145893719806763
+19161,196,0.6792270531400966
+19161,278,0.006183574879227053
+19163,191,0.9999999999999998
+19165,278,0.9999999999999999
+19167,196,0.6654106337526702
+19167,371,0.3345893662473297
+19169,192,1.0
+19171,190,0.02667867394607981
+19171,192,0.6764225811898463
+19171,197,0.2968987448640738
+19173,192,0.8622763970239038
+19173,278,0.13772360297609626
+19175,192,1.0
+19177,192,0.1120211360634082
+19177,194,0.8879788639365918
+19179,192,0.010750877192982455
+19179,194,0.9892491228070176
+19181,192,1.0
+19183,194,0.9999999999999998
+19185,192,0.9999999999999999
+19187,192,1.0
+19189,195,0.976992453524756
+19189,251,0.023007546475243883
+19191,253,0.032722264437689975
+19191,448,0.9672777355623099
+19193,196,0.9888717065340797
+19193,278,0.011128293465920213
+19195,195,1.0
+19197,192,0.34303424295109225
+19197,195,0.6569657570489076
+20001,201,0.9735995811831576
+20001,267,0.026400418816842422
+20003,201,0.22327820291286105
+20003,268,0.776721797087139
+20005,200,0.034034507208697704
+20005,268,0.9659654927913023
+20007,201,1.0
+20009,201,1.0
+20011,201,0.005338430106109536
+20011,267,0.9946615698938904
+20013,200,0.7474959935897437
+20013,268,0.2525040064102564
+20015,201,1.0
+20017,200,0.9774193548387096
+20017,201,0.02258064516129032
+20019,201,0.28018533660397926
+20019,340,0.7198146633960206
+20021,201,0.0030088413646252835
+20021,267,0.9969911586353747
+20023,103,1.0
+20025,201,1.0000000000000002
+20027,200,0.9691857059168132
+20027,201,0.030814294083186883
+20029,201,1.0000000000000002
+20031,200,0.9812812463667016
+20031,201,0.018718753633298453
+20033,201,1.0
+20035,201,0.9999999999999998
+20037,201,0.010655695814381356
+20037,267,0.9893443041856186
+20039,103,0.9598108747044918
+20039,201,0.04018912529550828
+20041,200,0.7084641085349802
+20041,201,0.29153589146501974
+20043,200,0.21220893643801134
+20043,268,0.7877910635619887
+20045,200,0.02145705881291394
+20045,268,0.978542941187086
+20047,201,1.0
+20049,201,1.0
+20051,201,1.0
+20053,201,1.0
+20055,201,1.0
+20057,201,1.0
+20059,200,0.0048476454293628814
+20059,268,0.9951523545706371
+20061,200,1.0
+20063,201,0.9999999999999999
+20065,201,0.9999999999999999
+20067,201,1.0000000000000002
+20069,201,1.0
+20071,201,1.0
+20073,200,0.17267155030647333
+20073,201,0.8273284496935266
+20075,201,1.0000000000000002
+20077,201,1.0
+20079,201,0.9999999999999998
+20081,201,1.0
+20083,201,1.0
+20085,200,0.9990343188233548
+20085,268,0.0009656811766453723
+20087,200,0.7182369549304612
+20087,268,0.2817630450695388
+20089,201,0.8339291517712057
+20089,277,0.1660708482287943
+20091,268,0.9995479428643882
+20093,201,1.0
+20095,201,1.0
+20097,201,1.0
+20099,201,0.867947234436473
+20099,267,0.07211293682018052
+20099,340,0.05993982874334645
+20101,201,1.0
+20103,200,0.00011806840096028965
+20103,268,0.9998819315990397
+20105,201,1.0
+20107,267,0.5113918806959403
+20107,268,0.4886081193040597
+20109,103,0.16690856313497823
+20109,201,0.8330914368650217
+20111,200,0.9999999999999999
+20113,201,1.0
+20115,201,1.0
+20117,200,0.24948107146387272
+20117,277,0.7505189285361274
+20119,201,0.9999999999999999
+20121,268,1.0
+20123,201,1.0
+20125,201,0.5018465788954357
+20125,340,0.4981534211045643
+20127,200,0.9061286510214419
+20127,201,0.09387134897855816
+20129,201,0.010207237859573153
+20129,383,0.9897927621404269
+20131,200,1.0
+20133,201,1.0000000000000002
+20135,201,1.0
+20137,103,0.014106859460412626
+20137,201,0.9848351260800564
+20137,277,0.0010580144595309466
+20139,200,1.0
+20141,201,0.9999999999999999
+20143,200,0.009522245936627812
+20143,201,0.9904777540633722
+20145,201,1.0
+20147,201,0.955689471818504
+20147,277,0.04431052818149592
+20149,200,1.0
+20151,201,1.0
+20153,103,1.0000000000000002
+20155,201,1.0
+20157,201,1.0000000000000002
+20159,201,1.0
+20161,200,0.9989453701750686
+20161,277,0.0010546298249314492
+20163,201,1.0
+20165,201,1.0
+20167,201,1.0
+20169,201,1.0
+20171,201,1.0
+20173,201,1.0
+20175,201,1.0
+20177,200,1.0
+20179,103,0.05594679186228482
+20179,201,0.9440532081377151
+20181,103,1.0
+20183,201,1.0
+20185,201,1.0
+20187,201,1.0
+20189,201,0.9970300489168413
+20189,383,0.0029699510831586303
+20191,201,1.0
+20193,103,0.9665822784810127
+20193,201,0.033417721518987344
+20195,201,1.0
+20197,200,0.9999999999999999
+20199,102,0.19393939393939394
+20199,201,0.8060606060606061
+20201,200,0.25176754612864294
+20201,201,0.043800655285394036
+20201,277,0.704431798585963
+20203,201,1.0
+20205,201,1.0
+20207,200,0.008461770927772741
+20207,201,0.9915382290722273
+20209,268,1.0000000000000002
+21001,204,0.0015008576329331046
+21001,205,0.9984991423670668
+21003,205,0.01242734014832632
+21003,380,0.9875726598516736
+21005,204,0.9885626254609962
+21005,205,0.011437374539003781
+21007,208,1.0
+21009,205,0.9566310198468214
+21009,380,0.043368980153178575
+21011,204,1.0
+21013,377,1.0
+21015,203,0.9999999999999998
+21017,204,1.0000000000000002
+21019,444,1.0
+21021,204,1.0000000000000002
+21023,203,0.16635249764373233
+21023,204,0.8336475023562676
+21025,204,1.0
+21027,205,1.0
+21029,205,1.0
+21031,205,0.010874704491725768
+21031,207,0.00929866036249015
+21031,380,0.9798266351457839
+21033,208,1.0
+21035,208,1.0
+21037,203,1.0
+21039,208,0.9999999999999999
+21041,203,0.06844880214596244
+21041,204,0.07455369531033207
+21041,205,0.8569975025437054
+21043,204,0.41064213564213564
+21043,444,0.5893578643578645
+21045,204,0.8643685365089313
+21045,205,0.13563146349106864
+21047,208,0.006828476776418093
+21047,380,0.9931715232235819
+21049,204,1.0
+21051,204,0.9960423377818683
+21051,377,0.003957662218131615
+21053,204,0.013629283489096571
+21053,205,0.9863707165109035
+21055,179,0.02168545356951154
+21055,208,0.9694041867954911
+21057,205,0.9568261376896149
+21059,207,1.0
+21061,205,0.08321684072033551
+21061,380,0.9167831592796645
+21063,204,0.9817880794701986
+21063,444,0.018211920529801324
+21065,204,1.0
+21067,204,1.0
+21069,204,0.9999999999999999
+21071,204,1.0000000000000002
+21073,204,0.9936897636197626
+21073,205,0.006310236380237395
+21075,208,0.5194481138998972
+21075,379,0.48055188610010274
+21077,203,0.7721504249621609
+21077,204,0.1905926184654791
+21077,205,0.03725695657236
+21079,204,1.0000000000000002
+21081,203,0.9918092612115805
+21081,204,0.00819073878841943
+21083,208,1.0
+21085,205,0.9901343898081255
+21085,207,0.009360677386778529
+21085,380,0.0005049328050959372
+21087,205,1.0000000000000002
+21089,329,0.1905716607965321
+21089,444,0.8094283392034679
+21091,207,1.0
+21093,205,1.0
+21095,204,0.9702165448459595
+21095,376,0.008846232666165722
+21095,377,0.020937222487874857
+21097,203,0.017191977077363897
+21097,204,0.9828080229226361
+21099,205,1.0000000000000002
+21101,179,0.9973837837837838
+21101,207,0.002616216216216216
+21103,204,0.0022703684483653353
+21103,205,0.9977296315516347
+21105,208,1.0
+21107,179,0.013192668371696505
+21107,208,0.9868073316283036
+21109,204,1.0
+21111,205,0.9999999999999998
+21113,204,0.9999999999999998
+21115,204,0.9817605754410001
+21115,444,0.018239424558999826
+21117,203,1.0
+21119,204,1.0
+21121,204,0.9962048740708214
+21121,377,0.0037951259291785595
+21123,205,1.0
+21125,204,1.0
+21127,204,0.00308953341740227
+21127,444,0.9969104665825977
+21129,204,1.0
+21131,204,1.0000000000000002
+21133,204,0.8715689873159591
+21133,376,0.12843101268404095
+21135,204,0.21333813987022351
+21135,329,0.7866618601297766
+21137,204,1.0
+21139,208,1.0000000000000002
+21141,380,1.0
+21143,208,1.0
+21145,208,0.9999999999999999
+21147,204,1.0
+21149,207,0.8566782079529955
+21149,208,0.14332179204700451
+21151,204,1.0
+21153,204,1.0
+21155,204,0.03425832492431887
+21155,205,0.9657416750756811
+21157,208,1.0
+21159,204,0.9106659447753113
+21159,443,0.0775001933637559
+21159,444,0.011833861860932786
+21161,204,1.0
+21163,205,1.0000000000000002
+21165,204,0.9999999999999999
+21167,204,1.0
+21169,205,0.9955441132785425
+21171,205,1.0
+21173,204,1.0
+21175,204,1.0
+21177,208,0.08346296707831995
+21177,380,0.91653703292168
+21179,205,0.9999999999999999
+21181,204,0.9999999999999999
+21183,205,0.002139082291754048
+21183,207,0.9978609177082459
+21185,205,0.9999999999999999
+21187,203,0.12286689419795221
+21187,204,0.8771331058020477
+21189,204,1.0
+21191,203,0.9717012838609934
+21191,204,0.028298716139006527
+21193,204,1.0000000000000002
+21195,204,0.9398837352362206
+21195,376,0.06011626476377953
+21197,204,1.0
+21199,204,0.9990327133184277
+21199,205,0.0009672866815723961
+21201,204,1.0
+21203,204,1.0
+21205,204,1.0
+21207,204,0.029775120979220037
+21207,205,0.97022487902078
+21209,203,0.0022894452335022147
+21209,204,0.9977105547664977
+21211,204,0.013595094357560487
+21211,205,0.9864049056424395
+21213,380,1.0000000000000002
+21215,205,1.0
+21217,205,0.9999999999999999
+21219,380,0.9999999999999998
+21221,208,0.9360485389497176
+21221,380,0.06395146105028245
+21223,205,1.0
+21225,179,0.9999999999999999
+21227,380,1.0000000000000002
+21229,204,0.05991294700008535
+21229,205,0.9400870529999147
+21231,204,0.9980781242492675
+21231,205,0.0019218757507327153
+21233,179,0.7186697011966815
+21233,208,0.2813302988033184
+21235,204,0.9923955439571231
+21235,377,0.0076044560428767845
+21237,204,1.0
+21239,204,1.0
+22001,213,1.0
+22003,209,0.5633442012109922
+22003,213,0.030973451327433624
+22003,214,0.4056823474615743
+22005,210,1.0000000000000002
+22007,210,0.22300499551684383
+22007,212,0.7769950044831562
+22009,209,0.9999999999999998
+22011,214,0.9999999999999998
+22013,219,1.0
+22015,219,1.0
+22017,219,1.0
+22019,214,0.9999999999999999
+22021,209,0.0094749309119621
+22021,217,0.990525069088038
+22023,213,0.03538529024711215
+22023,214,0.9646147097528879
+22025,209,0.9896223695589508
+22025,217,0.010377630441049293
+22027,19,0.008258214597266647
+22027,219,0.9917417854027335
+22029,209,0.5650273748919413
+22029,259,0.4349726251080588
+22031,219,0.9999999999999999
+22033,210,0.9999999999999999
+22035,217,0.9627529320788761
+22035,259,0.03724706792112386
+22037,210,1.0
+22039,209,0.10952212806026365
+22039,213,0.8904778719397364
+22041,217,1.0
+22043,209,0.9878972611950334
+22043,219,0.012102738804966606
+22045,213,1.0
+22047,210,1.0
+22049,217,0.04885092786039081
+22049,219,0.9511490721396093
+22051,212,0.00299623390044458
+22051,216,0.4745840297958816
+22051,218,0.5224197363036739
+22053,213,0.6681331898461733
+22053,214,0.33186681015382663
+22055,213,1.0
+22057,212,0.9952345356008223
+22057,218,0.004765464399177724
+22059,209,0.9948959032907992
+22059,217,0.005104096709200806
+22061,217,0.003958489354873221
+22061,219,0.9960415106451268
+22063,210,0.9999999999999999
+22065,217,0.05937319110229058
+22065,259,0.9406268088977094
+22067,217,1.0
+22069,209,0.0381640802709397
+22069,219,0.9618359197290602
+22071,218,1.0000000000000002
+22073,217,0.9990697371844912
+22073,219,0.0009302628155087171
+22075,218,0.9999999999999999
+22077,210,0.9999122883957547
+22077,213,8.771160424524164e-05
+22079,209,0.9989818634937279
+22079,219,0.0010181365062721767
+22081,219,1.0
+22083,217,1.0
+22085,209,0.017496801881731527
+22085,219,0.9825031981182686
+22087,218,1.0
+22089,216,0.49511178476695716
+22089,218,0.5048882152330428
+22091,210,1.0
+22093,210,0.07960716871832006
+22093,212,0.39477733526430125
+22093,216,0.5256154960173787
+22095,212,0.01996777284208693
+22095,216,0.9260081874401185
+22095,218,0.05402403971779462
+22097,209,0.015182768876523074
+22097,213,0.984817231123477
+22099,210,0.00015337423312883434
+22099,212,0.027664877300613497
+22099,213,0.9721817484662577
+22101,212,0.6108904548366432
+22101,213,0.3891095451633568
+22103,216,0.5336855841016537
+22103,220,0.46631441589834643
+22105,210,0.9911063032114752
+22105,216,0.008893696788524903
+22107,209,0.5908225437928408
+22107,217,0.4091774562071592
+22109,212,0.9999999999999999
+22111,19,0.014876105805202237
+22111,217,0.7483825535847894
+22111,219,0.23674134061000834
+22113,213,1.0
+22115,209,0.6765391523674857
+22115,214,0.3234608476325142
+22117,216,1.0
+22119,219,1.0
+22121,210,1.0
+22123,217,1.0
+22125,210,1.0
+22127,209,0.03532945862992229
+22127,219,0.9646705413700776
+23001,222,0.9999999999999999
+23003,221,0.9999999999999998
+23005,222,0.9999999999999999
+23007,222,0.9999999999999999
+23009,221,0.9999999999999996
+23011,222,1.0
+23013,221,0.001837125025166096
+23013,222,0.9981628749748338
+23015,222,1.0000000000000002
+23017,222,0.998219009907838
+23017,281,0.0017809900921619145
+23019,221,1.0
+23021,221,1.0000000000000002
+23023,222,1.0
+23025,221,0.8283487784330246
+23025,222,0.17165122156697557
+23027,221,0.615041509823132
+23027,222,0.38495849017686795
+23029,221,0.9999999999999999
+23031,222,0.9999999999999999
+24001,113,1.0
+24003,113,0.3834329013346824
+24003,223,0.5745569657922539
+24003,226,0.042010132873063814
+24005,223,1.0
+24009,113,0.9999999999999999
+24011,223,1.0
+24013,113,0.10023095240944392
+24013,223,0.8997690475905561
+24015,112,0.6912410491751394
+24015,223,0.30875895082486055
+24017,113,1.0000000000000002
+24019,223,0.021583174934085483
+24019,225,0.9784168250659145
+24021,113,0.9702680120830386
+24021,223,0.004499003792017482
+24021,352,0.02523298412494376
+24023,113,0.2183606339502276
+24023,445,0.7816393660497725
+24025,223,1.0
+24027,113,0.010415033874984759
+24027,223,0.814591497291743
+24027,226,0.17499346883327238
+24029,223,1.0
+24031,113,0.5816869508127892
+24031,226,0.41831304918721063
+24033,113,0.4430462579046119
+24033,226,0.556953742095388
+24035,113,0.2575212351981254
+24035,223,0.7424787648018747
+24037,113,0.9999999999999999
+24039,225,1.0
+24041,223,1.0
+24043,113,0.9897646340636231
+24043,352,0.010235365936376584
+24045,225,1.0
+24047,225,0.9999999999999999
+24510,223,1.0
+25001,227,0.9999999999999998
+25003,230,0.3880154550789139
+25003,295,0.611984544921086
+25005,227,0.7449319240905733
+25005,364,0.25506807590942665
+25007,227,1.0
+25009,227,0.9999999999999999
+25011,230,0.8651992377963348
+25011,231,0.1348007622036653
+25013,230,0.980644674103001
+25013,231,0.016802951519989645
+25013,295,0.0025523743770092125
+25015,230,0.9967042004048583
+25015,295,0.0032957995951417
+25017,227,0.958245209020115
+25017,231,0.0417547909798847
+25019,227,1.0
+25021,227,0.9633360661846909
+25021,364,0.036663933815308934
+25023,227,0.9999999999999998
+25025,227,1.0
+25027,227,0.05553551928991475
+25027,230,0.014755457377853916
+25027,231,0.9144113345154732
+25027,364,0.015297688816758331
+26001,246,0.9999999999999999
+26003,240,1.0
+26005,236,0.5224220881803819
+26005,238,0.4420418641390206
+26005,248,0.03553604768059745
+26007,246,1.0000000000000002
+26009,243,0.19346904156064462
+26009,249,0.8065309584393554
+26011,246,1.0
+26013,240,1.0
+26015,236,0.6957565105706995
+26015,238,0.3042434894293005
+26017,246,1.0000000000000002
+26019,249,1.0
+26021,181,0.05276985964173888
+26021,187,0.25038740410552696
+26021,238,0.0006058171197541022
+26021,248,0.69623691913298
+26023,238,1.0
+26025,232,0.00010283078459888647
+26025,238,0.9862133298077064
+26025,239,0.01368383940769468
+26027,187,0.608456198726407
+26027,238,0.38861797946187837
+26027,248,0.0029258218117147617
+26029,243,1.0
+26031,243,1.0
+26033,240,0.01671858774662513
+26033,243,0.983281412253375
+26035,236,0.01749337127336222
+26035,239,0.9514971221625815
+26035,246,0.03100950656405613
+26037,239,1.0
+26039,243,0.0008527572484366118
+26039,249,0.9991472427515634
+26041,240,1.0
+26043,240,0.008445429532253133
+26043,447,0.9915545704677468
+26045,236,0.00528958138067354
+26045,238,0.03127348991731549
+26045,239,0.9634369287020111
+26047,243,1.0
+26049,235,0.9987669978158247
+26049,239,0.000528429507503699
+26049,244,0.0002982690997909768
+26049,246,0.0004063035768806219
+26051,246,0.9999999999999999
+26053,250,0.9137395750897912
+26053,456,0.0862604249102088
+26055,249,0.9999999999999999
+26057,239,0.9936670119596948
+26057,246,0.006332988040305114
+26059,232,0.17192854694996576
+26059,238,0.8280714530500343
+26061,240,1.0000000000000002
+26063,246,0.9999999999999998
+26065,232,0.018113529966713542
+26065,239,0.9818864700332864
+26067,236,0.7962131288631563
+26067,239,0.20378687113684374
+26069,246,1.0
+26071,240,0.9991537615299992
+26071,456,0.0008462384700008463
+26073,236,0.028587276528565943
+26073,239,0.9617129609876123
+26073,246,0.009699762483821877
+26075,232,0.9689481303978832
+26075,238,0.013348060506215367
+26075,239,0.017703809095901354
+26077,238,0.9999999999999999
+26079,249,1.0
+26081,236,1.0000000000000004
+26083,240,1.0
+26085,236,0.8343010659502555
+26085,249,0.16569893404974434
+26087,234,0.000566129598387663
+26087,235,0.9652962556188364
+26087,244,0.010258268322784451
+26087,246,0.023879346459991624
+26089,249,1.0
+26091,232,0.9208745445080688
+26091,334,0.07912545549193128
+26093,232,0.9006338172152935
+26093,235,0.0840153177098587
+26093,239,0.005818740433338674
+26093,244,0.009532124641509224
+26095,240,1.0
+26097,240,0.12147934851075318
+26097,243,0.8785206514892469
+26099,234,0.8944407582600257
+26099,245,0.10555924173997416
+26101,236,0.0028302268224639146
+26101,249,0.9971697731775361
+26103,240,0.9990905973731683
+26103,447,0.00090940262683185
+26105,236,0.030796028566451836
+26105,242,0.8792893224176973
+26105,249,0.0899146490158509
+26107,236,0.8797607364830132
+26107,239,0.12023926351698677
+26109,240,0.16234549918848057
+26109,447,0.8376545008115195
+26111,239,0.04960001913211924
+26111,246,0.9503999808678808
+26113,236,0.9984510741464072
+26113,249,0.0015489258535928345
+26115,232,0.03360719900540057
+26115,233,0.026766038902520047
+26115,334,0.9396267620920792
+26117,236,0.7675002368096996
+26117,239,0.23249976319030027
+26119,243,0.6562211981566821
+26119,246,0.34377880184331794
+26121,236,0.013804678607103866
+26121,242,0.986195321392896
+26123,236,0.9907758976475443
+26123,242,0.009224102352455634
+26125,232,0.09882381512389779
+26125,235,0.01721777634356375
+26125,244,0.3904473028921405
+26125,245,0.49351110564039796
+26127,236,0.15509973654497555
+26127,242,0.8449002634550246
+26129,246,1.0
+26131,240,0.6979351032448378
+26131,250,0.14262536873156342
+26131,456,0.1594395280235988
+26133,236,0.9960472628357702
+26133,239,0.003952737164229854
+26135,243,0.14525462962962962
+26135,246,0.8547453703703705
+26137,243,0.9798874358549908
+26137,249,0.020112564145009105
+26139,236,0.8084540998707359
+26139,242,0.1915459001292641
+26141,243,0.7251794258373205
+26141,246,0.2748205741626794
+26143,246,0.1742811566935253
+26143,249,0.8257188433064746
+26145,235,0.011635168282801034
+26145,239,0.012969041160219614
+26145,246,0.9753957905569793
+26147,234,0.9980618253189403
+26147,235,0.0019381746810598626
+26149,238,1.0
+26151,234,0.4765505404277033
+26151,235,0.07215753583522752
+26151,246,0.45129192373706917
+26153,240,1.0
+26155,235,0.08706545125127392
+26155,239,0.9126656097837165
+26155,246,0.0002689389650096252
+26157,235,0.1751870659800104
+26157,246,0.8248129340199896
+26159,238,0.6079755566629075
+26159,248,0.3920244433370925
+26161,232,0.9999999999999999
+26163,232,0.2795454645322599
+26163,233,0.2794713125019224
+26163,234,0.44098322296581755
+26165,236,0.8282572170459753
+26165,249,0.17174278295402476
+27001,250,0.051043081101098634
+27001,251,0.9489569188989013
+27003,251,0.9381974586209816
+27003,256,0.061802541379018514
+27005,322,0.9999999999999999
+27007,322,1.0
+27009,251,0.01739876726222985
+27009,254,0.9826012327377702
+27011,251,0.3108749288289998
+27011,371,0.6891250711710002
+27013,251,1.0
+27015,251,0.9999999999999999
+27017,250,1.0
+27019,251,1.0
+27021,251,0.7008086253369271
+27021,254,0.05646375188154164
+27021,322,0.24272762278153115
+27023,251,1.0
+27025,251,0.1859817766808321
+27025,256,0.8140182233191677
+27027,322,0.9999999999999999
+27029,322,1.0
+27031,250,1.0
+27033,251,0.05664413450842817
+27033,371,0.9433558654915717
+27035,251,1.0
+27037,251,0.5572547622393064
+27037,253,0.005728236215098658
+27037,256,0.437017001545595
+27039,253,1.0
+27041,251,0.9783942903163098
+27041,254,0.021605709683690185
+27043,251,0.6578712292998008
+27043,253,0.34212877070019926
+27045,253,0.640946995111665
+27045,448,0.3590530048883351
+27047,253,0.9999999999999999
+27049,251,0.08639542688868199
+27049,253,0.9120239049000713
+27049,256,0.0015806682112465627
+27051,251,0.3218677301429046
+27051,322,0.6781322698570954
+27053,251,1.0
+27055,448,1.0
+27057,322,1.0
+27059,251,0.9355299344192936
+27059,256,0.06447006558070659
+27061,250,0.006990989391451019
+27061,251,0.9774956722446626
+27061,322,0.015513338363886547
+27063,371,1.0
+27065,251,1.0
+27067,251,0.9921399654347877
+27067,254,0.007860034565212245
+27069,323,1.0
+27071,250,0.005559311847344301
+27071,251,0.9163849447825108
+27071,322,0.05529261513034332
+27071,323,0.02276312823980167
+27073,251,0.461771593883455
+27073,371,0.538228406116545
+27075,250,1.0
+27077,323,1.0
+27079,251,1.0
+27081,371,1.0
+27083,251,0.0657075453455544
+27083,371,0.9342924546544455
+27085,251,1.0
+27087,322,1.0
+27089,322,0.46519758448988235
+27089,323,0.5348024155101175
+27091,251,0.9778790786948176
+27091,371,0.02212092130518234
+27093,251,0.7990128755364808
+27093,254,0.20098712446351932
+27095,251,0.9877763727631529
+27095,254,0.012223627236847149
+27097,251,0.9337309476474488
+27097,254,0.06626905235255137
+27099,253,1.0
+27101,371,1.0000000000000002
+27103,251,0.9999999999999999
+27105,371,1.0
+27107,322,0.9696438995913603
+27107,323,0.030356100408639813
+27109,253,1.0
+27111,251,0.14618780866621295
+27111,322,0.8538121913337869
+27113,322,0.9926776740847093
+27113,323,0.007322325915290739
+27115,250,0.26813445378151257
+27115,251,0.7318655462184874
+27117,371,0.9953105460608587
+27119,322,0.17212025316455695
+27119,323,0.8278797468354432
+27121,251,0.07467030468394725
+27121,254,0.9253296953160528
+27123,251,0.09169156967599874
+27123,256,0.9083084303240011
+27125,322,0.39691856199559794
+27125,323,0.6030814380044021
+27127,251,0.8794445482284078
+27127,371,0.12055545177159224
+27129,251,1.0000000000000002
+27131,251,0.9995634685541456
+27131,253,0.0004365314458545103
+27133,371,0.9999999999999999
+27135,322,0.017211593831979014
+27135,323,0.9827884061680208
+27137,250,0.8755955769979923
+27137,251,0.12440442300200774
+27139,251,1.0
+27141,251,0.735737126973186
+27141,254,0.26426287302681384
+27143,251,1.0
+27145,251,0.014577607838451427
+27145,254,0.9854223921615487
+27147,251,0.007190507436570429
+27147,253,0.9928094925634297
+27149,251,1.0
+27151,251,0.4703056322191557
+27151,254,0.5296943677808442
+27153,251,0.2797750552319743
+27153,254,0.7202249447680257
+27155,251,0.7568858909499718
+27155,322,0.24311410905002812
+27157,253,0.9999999999999999
+27159,251,0.6759372968287221
+27159,254,0.13328035830383586
+27159,322,0.19078234486744203
+27161,251,0.8845631270903009
+27161,253,0.115436872909699
+27163,256,0.9999999999999999
+27165,251,0.8887699580768886
+27165,371,0.11123004192311124
+27167,322,1.0
+27169,253,0.16340529721536698
+27169,448,0.836594702784633
+27171,251,0.9644346431435442
+27171,254,0.035565356856455496
+27173,251,0.6698601264610079
+27173,371,0.33013987353899216
+28001,259,1.0
+28003,1,0.003858920042097309
+28003,379,0.9961410799579027
+28005,210,0.7114461960246744
+28005,259,0.2885538039753256
+28007,259,1.0
+28009,262,0.27414365906747623
+28009,379,0.7258563409325238
+28011,379,1.0
+28013,261,0.962505012698837
+28013,262,0.03749498730116294
+28015,259,0.962914032273285
+28015,261,0.03708596772671511
+28017,261,0.5752069917203313
+28017,262,0.42479300827966876
+28019,259,0.8193518193518194
+28019,262,0.18064818064818067
+28021,259,1.0
+28023,258,0.023846521635190056
+28023,260,0.9761534783648099
+28025,261,0.028254337501211594
+28025,262,0.9717456624987885
+28027,379,0.9999999999999998
+28029,259,1.0
+28031,258,0.8282910874897792
+28031,259,0.17170891251022077
+28033,379,1.0
+28035,258,0.9999999999999998
+28037,259,1.0
+28039,258,0.013907343431659136
+28039,6,0.9860926565683408
+28041,258,0.35993055555555553
+28041,6,0.6400694444444446
+28043,261,1.0
+28045,220,0.9478476632748297
+28045,257,0.0065560335996721975
+28045,258,0.045596303125497964
+28047,257,0.9992731354052539
+28047,258,0.0005237700756259853
+28047,6,0.00020309451912028006
+28049,259,1.0000000000000002
+28051,259,1.0
+28053,259,1.0
+28055,259,0.8940256045519203
+28055,379,0.10597439544807966
+28057,262,1.0
+28059,257,0.06652919781195406
+28059,258,0.00095941804851505
+28059,6,0.9325113841395309
+28061,258,0.837475090845153
+28061,260,0.16252490915484702
+28063,259,1.0
+28065,258,0.3545287098582525
+28065,259,0.6454712901417474
+28067,258,1.0000000000000002
+28069,260,0.9999999999999999
+28071,261,0.970391332812401
+28071,262,0.007602796139469071
+28071,379,0.022005871048129923
+28073,258,0.9991555571526106
+28073,259,0.0008444428473894139
+28075,260,1.0
+28077,259,0.9999999999999999
+28079,259,0.9942449065322412
+28079,260,0.005755093467758874
+28081,262,0.9999999999999999
+28083,259,0.9988241482810906
+28083,261,0.0011758517189095524
+28085,259,1.0000000000000002
+28087,262,1.0
+28089,259,1.0000000000000002
+28091,258,0.031822209096278795
+28091,259,0.968177790903721
+28093,261,0.03316821020891665
+28093,262,0.06929786775791515
+28093,379,0.8975339220331683
+28095,262,1.0
+28097,259,0.819771167048055
+28097,261,0.18022883295194508
+28099,259,0.01371478635934762
+28099,260,0.9862852136406524
+28101,259,0.025966850828729283
+28101,260,0.9740331491712707
+28103,260,0.9981810307492421
+28103,262,0.001818969250757904
+28105,262,0.9999999999999999
+28107,261,0.8281614659866886
+28107,379,0.17183853401331145
+28109,220,0.7234480782319018
+28109,258,0.27655192176809834
+28111,258,1.0
+28113,259,1.0
+28115,262,0.9999999999999999
+28117,1,0.01448013926254154
+28117,262,0.9493590758031334
+28117,379,0.03616078493432505
+28119,261,0.004256354128663505
+28119,379,0.9957436458713365
+28121,259,1.0000000000000002
+28123,259,0.994126804415511
+28123,260,0.005873195584489102
+28125,259,0.9867778681855167
+28125,379,0.013222131814483321
+28127,259,1.0
+28129,258,0.34164089503365475
+28129,259,0.657631435328361
+28129,260,0.000727669637984355
+28131,257,0.003148543798493197
+28131,258,0.996851456201507
+28133,259,0.9632258064516128
+28133,379,0.0367741935483871
+28135,259,0.02425542983482898
+28135,261,0.5980621667316945
+28135,379,0.37768240343347637
+28137,379,1.0
+28139,262,0.05208708168405901
+28139,379,0.9479129183159409
+28141,1,0.7134180574695044
+28141,262,0.26739141530138316
+28141,379,0.01919052722911244
+28143,379,1.0
+28145,262,0.9873958870789417
+28145,379,0.01260411292105845
+28147,259,1.0
+28149,259,1.0
+28151,379,1.0
+28153,258,0.9310743721983901
+28153,260,0.06892562780160988
+28155,259,0.042524139276309374
+28155,261,0.10426216717058422
+28155,262,0.8532136935531064
+28157,210,1.0
+28159,259,0.9431711636628816
+28159,260,0.041358474841129284
+28159,262,0.015470361495989163
+28161,261,1.0
+28163,259,1.0000000000000002
+29001,264,1.0
+29003,268,1.0000000000000002
+29005,268,0.011257695690413369
+29005,278,0.9887423043095867
+29007,264,1.0
+29009,21,0.06393797230103661
+29009,267,0.02255808073714077
+29009,270,0.9135039469618226
+29011,267,0.9138042251249798
+29011,270,0.08619577487502016
+29013,267,0.038418675582145574
+29013,268,0.9615813244178544
+29015,264,0.1799433249370277
+29015,268,0.8188497061293031
+29015,270,0.0012069689336691855
+29017,263,0.9897274124403461
+29017,273,0.010272587559653806
+29019,264,1.0000000000000002
+29021,268,1.0
+29023,273,0.9999999999999999
+29025,268,1.0
+29027,264,1.0000000000000002
+29029,264,0.9380255442934413
+29029,268,0.011817644652515795
+29029,270,0.05015681105404299
+29031,263,1.0
+29033,264,0.025820333512641205
+29033,268,0.9741796664873588
+29035,273,1.0
+29037,268,1.0
+29039,267,0.04555857531111429
+29039,270,0.9544414246888857
+29041,264,1.0
+29043,270,1.0000000000000002
+29045,172,0.053929121725731895
+29045,192,0.005603025633842275
+29045,194,0.940467852640426
+29047,268,1.0000000000000002
+29049,268,0.9999999999999999
+29051,264,1.0
+29053,264,0.9999999999999999
+29055,273,1.0
+29057,267,0.016871749334009895
+29057,270,0.98312825066599
+29059,264,0.004768432973714014
+29059,270,0.9952315670262861
+29061,268,1.0
+29063,268,0.9999999999999999
+29065,270,0.009197164207702623
+29065,273,0.9908028357922973
+29067,270,1.0
+29069,18,0.6324601758833286
+29069,273,0.36613150564892183
+29069,379,0.001408318467749507
+29071,273,0.9999999999999999
+29073,264,0.4800289055314676
+29073,273,0.5199710944685324
+29075,268,1.0
+29077,270,1.0
+29079,268,1.0
+29081,268,1.0
+29083,268,1.0
+29085,268,0.10719850420691805
+29085,270,0.892801495793082
+29087,268,0.8363192182410423
+29087,278,0.16368078175895767
+29089,264,1.0
+29091,270,1.0
+29093,273,1.0
+29095,268,0.9999777500229918
+29097,267,0.9969507001465028
+29097,270,0.0030492998534973254
+29099,273,1.0
+29101,264,0.0007034889248027379
+29101,268,0.9992965110751973
+29103,172,0.0019365770999757925
+29103,264,0.9929799080125878
+29105,270,0.9986786989401478
+29105,273,0.0013213010598521267
+29107,264,0.004104131092537671
+29107,268,0.9958958689074624
+29109,267,0.020448309778951183
+29109,270,0.9795516902210488
+29111,172,0.9812946822054646
+29111,194,0.016354911370091083
+29111,264,0.002350406424444227
+29113,264,0.0008750903625917894
+29113,273,0.9991249096374082
+29115,264,0.9169344095290338
+29115,268,0.08306559047096623
+29117,268,0.9999999999999998
+29119,21,0.29684183165099853
+29119,267,0.6840531993241781
+29119,270,0.01910496902482346
+29121,264,1.0
+29123,263,0.07974807786684115
+29123,273,0.9202519221331589
+29125,264,0.6078901482127289
+29125,273,0.3921098517872711
+29127,172,0.07293005802439109
+29127,264,0.927069941975609
+29129,192,0.2420079260237781
+29129,264,0.013738441215323648
+29129,268,0.7442536327608983
+29131,264,0.985857443025699
+29131,273,0.014142556974300953
+29133,263,1.0
+29135,264,1.0
+29137,264,0.9999999999999999
+29139,264,0.8473357306309252
+29139,273,0.15266426936907487
+29141,264,0.9999999999999999
+29143,18,0.08255961173243301
+29143,263,0.8328233804600127
+29143,273,0.08461700780755434
+29145,267,0.9892108614103314
+29145,270,0.010789138589668585
+29147,268,0.9866495507060333
+29147,278,0.013350449293966624
+29149,270,0.9778513004319456
+29149,273,0.022148699568054403
+29151,264,0.9989912091079406
+29151,273,0.0010087908920593746
+29153,270,1.0
+29155,18,0.05329033668561434
+29155,263,0.689877568867512
+29155,379,0.2568320944468736
+29157,263,0.9685309156080334
+29157,273,0.03146908439196668
+29159,264,0.9867538683917443
+29159,268,0.013246131608255727
+29161,270,0.002015236070511117
+29161,273,0.9979847639294888
+29163,264,0.09786130913804279
+29163,273,0.9021386908619572
+29165,268,1.0
+29167,270,1.0000000000000002
+29169,270,0.07862417262884033
+29169,273,0.9213758273711596
+29171,192,0.106246234183571
+29171,264,0.8937537658164291
+29173,264,1.0
+29175,264,0.9999999999999999
+29177,268,1.0
+29179,273,0.9999999999999999
+29181,273,1.0000000000000002
+29183,273,0.9999999999999999
+29185,268,0.9133095359510455
+29185,270,0.08669046404895461
+29186,273,1.0
+29187,273,1.0
+29189,273,1.0000000000000002
+29195,264,0.9988446726572529
+29195,268,0.0011553273427471118
+29197,192,0.022568269013766643
+29197,264,0.9774317309862334
+29199,192,0.8313029114185422
+29199,194,0.01837703902539748
+29199,264,0.15032004955606026
+29201,263,1.0
+29203,270,0.9511906172254472
+29203,273,0.04880938277455278
+29205,172,0.20320100423662327
+29205,264,0.7967989957633768
+29207,263,0.7649492792311798
+29207,273,0.2350507207688201
+29209,270,1.0
+29211,264,0.9633601429848079
+29211,268,0.03663985701519214
+29213,21,0.0002902757619738752
+29213,270,0.9997097242380261
+29215,270,1.0
+29217,267,0.9024528569403091
+29217,268,0.016257857176615154
+29217,270,0.08128928588307575
+29219,264,0.007781502783501983
+29219,273,0.992218497216498
+29221,273,0.9999999999999999
+29223,263,0.007691738776717698
+29223,273,0.9923082612232823
+29225,270,0.9999999999999999
+29227,268,0.9999999999999999
+29229,270,1.0000000000000002
+29510,273,1.0
+30001,276,1.0
+30003,274,1.0
+30005,274,0.011400400554614082
+30005,275,0.9885995994453858
+30007,274,1.0
+30009,274,1.0
+30011,274,0.7077586206896552
+30011,370,0.29224137931034483
+30013,275,0.9999999999999999
+30015,275,1.0
+30017,274,1.0000000000000002
+30019,274,0.9999999999999999
+30021,274,1.0
+30023,276,1.0
+30025,274,1.0000000000000002
+30027,274,0.993785603314345
+30027,275,0.006214396685655101
+30029,276,0.9999999999999998
+30031,274,1.0
+30033,274,1.0
+30035,275,1.0
+30037,274,1.0
+30039,276,1.0
+30041,275,1.0
+30043,274,0.6867438190426092
+30043,276,0.31325618095739083
+30045,274,0.3976833976833977
+30045,275,0.6023166023166022
+30047,276,1.0
+30049,274,0.9575991797460367
+30049,275,0.042400820253963245
+30051,275,1.0
+30053,276,1.0
+30055,274,1.0
+30057,274,0.5059160057209725
+30057,276,0.4940839942790274
+30059,274,1.0
+30061,276,1.0
+30063,276,1.0
+30065,274,1.0
+30067,274,1.0
+30069,274,1.0
+30071,274,0.041147425346814016
+30071,275,0.958852574653186
+30073,275,1.0
+30075,274,0.9999999999999999
+30077,274,0.10886580333001282
+30077,276,0.8911341966699872
+30079,274,1.0
+30081,276,0.9999999999999998
+30083,274,0.9946644777344552
+30083,324,0.005335522265544839
+30085,274,0.8409592326139088
+30085,324,0.1590407673860911
+30087,274,0.9999999999999999
+30089,276,0.874266187680715
+30089,440,0.12573381231928504
+30091,274,1.0
+30093,276,1.0
+30095,274,0.9999999999999999
+30097,274,1.0
+30099,275,1.0
+30101,275,1.0
+30103,274,1.0
+30105,274,0.9947075586918172
+30105,275,0.005292441308182928
+30107,274,1.0
+30109,274,1.0
+30111,274,1.0000000000000002
+31001,277,0.995982655273562
+31001,278,0.004017344726437954
+31003,278,1.0
+31005,103,0.9217391304347826
+31005,277,0.07826086956521738
+31007,103,0.855072463768116
+31007,104,0.14492753623188406
+31009,277,0.7196652719665272
+31009,278,0.2803347280334728
+31011,278,1.0
+31013,103,1.0
+31015,278,0.8766079085278704
+31015,371,0.12339209147212958
+31017,278,1.0
+31019,278,1.0
+31021,278,1.0
+31023,277,0.9598570577724836
+31023,278,0.04014294222751638
+31025,277,0.29578859791608897
+31025,278,0.7042114020839111
+31027,196,0.201536375960235
+31027,278,0.23802530501581565
+31027,371,0.5604383190239494
+31029,103,0.9957135653050934
+31029,106,0.004286434694906707
+31031,103,0.015578505163661825
+31031,277,0.8995273936635743
+31031,278,0.011377559950988972
+31031,370,0.0735165412217749
+31033,103,1.0
+31035,277,1.0
+31037,278,1.0
+31039,196,0.11620527410001097
+31039,278,0.883794725899989
+31041,277,0.8543742572447208
+31041,278,0.14562574275527929
+31043,196,1.0
+31045,103,0.013395774341102156
+31045,370,0.9866042256588977
+31047,277,0.9797747266299434
+31047,278,0.02022527337005673
+31049,103,1.0
+31051,196,1.0
+31053,278,1.0
+31055,278,1.0
+31057,103,0.8451195219123505
+31057,106,0.1548804780876494
+31059,277,1.0
+31061,277,0.5798449612403102
+31061,278,0.4201550387596899
+31063,103,0.6291727140783744
+31063,277,0.3708272859216256
+31065,277,1.0
+31067,277,1.0000000000000002
+31069,103,1.0
+31071,278,1.0
+31073,277,1.0
+31075,103,0.1970684039087948
+31075,277,0.8029315960912052
+31077,278,1.0
+31079,277,0.000870203218045626
+31079,278,0.9991297967819542
+31081,277,0.8592722490135906
+31081,278,0.14072775098640947
+31083,277,0.9792579608530529
+31083,278,0.020742039146947118
+31085,103,0.48500517063081705
+31085,277,0.5149948293691831
+31087,103,1.0
+31089,278,1.0
+31091,277,1.0
+31093,278,1.0
+31095,277,1.0
+31097,277,0.9948246118458884
+31097,278,0.005175388154111558
+31099,277,0.0408383418092156
+31099,278,0.9591616581907845
+31101,103,1.0
+31103,277,0.06067961165048543
+31103,278,0.8046116504854369
+31103,371,0.13470873786407767
+31105,104,0.9999999999999998
+31107,278,0.6346396965865992
+31107,371,0.36536030341340076
+31109,277,0.9999999999999999
+31111,103,0.016727292768959436
+31111,277,0.9832727072310407
+31113,277,1.0
+31115,278,1.0
+31117,277,1.0
+31119,278,1.0
+31121,278,1.0
+31123,103,1.0
+31125,278,1.0
+31127,277,0.009519867549668874
+31127,278,0.9904801324503312
+31129,277,1.0
+31131,277,0.37846251588310037
+31131,278,0.6215374841168996
+31133,200,0.01009736747205193
+31133,277,0.9899026325279481
+31135,103,1.0
+31137,277,0.9650631258162821
+31137,278,0.034936874183717895
+31139,278,1.0
+31141,278,1.0
+31143,277,0.09637439881613025
+31143,278,0.9036256011838699
+31145,103,0.874265038444143
+31145,277,0.1257349615558571
+31147,277,0.20925505201482722
+31147,278,0.7907449479851729
+31149,278,1.0
+31151,277,1.0
+31153,278,1.0000000000000002
+31155,277,0.3811357074109721
+31155,278,0.6188642925890279
+31157,103,1.0
+31159,277,1.0
+31161,103,0.08721886999451454
+31161,370,0.9127811300054856
+31163,277,0.01998730964467005
+31163,278,0.9800126903553299
+31165,103,0.9488939740655988
+31165,370,0.051106025934401215
+31167,278,1.0
+31169,201,0.09506503442999235
+31169,277,0.9049349655700077
+31171,277,1.0
+31173,196,0.995821325648415
+31173,278,0.004178674351585014
+31175,277,0.10938967136150236
+31175,278,0.8906103286384979
+31177,278,0.9999999999999998
+31179,196,0.813548723293382
+31179,278,0.18645127670661804
+31181,277,0.984784889821616
+31181,278,0.015215110178384053
+31183,278,1.0
+31185,277,1.0
+32001,280,1.0
+32003,279,0.9999999999999999
+32005,280,0.8665233951103263
+32005,77,0.13347660488967383
+32007,151,0.04876649454962708
+32007,280,0.0009425456929759856
+32007,423,0.9502909597573971
+32009,280,0.9999999999999999
+32011,280,0.6854554604932058
+32011,423,0.3145445395067942
+32013,280,1.0000000000000002
+32015,280,1.0
+32017,279,0.26155285313376986
+32017,423,0.7384471468662301
+32019,280,1.0000000000000002
+32021,280,1.0
+32023,279,0.889113912529013
+32023,280,0.10685841714831838
+32023,423,0.00402767032266873
+32027,280,0.9999999999999999
+32029,280,0.9999999999999999
+32031,280,1.0
+32033,280,0.004087736789631107
+32033,423,0.9959122632103689
+32510,280,1.0
+33001,282,0.9999999999999999
+33003,222,0.3933665147015768
+33003,282,0.6066334852984232
+33005,281,0.8511612225579316
+33005,282,0.14883877744206853
+33007,281,0.9999999999999998
+33009,281,0.6968289234498081
+33009,282,0.3031710765501919
+33011,227,0.03218448746135092
+33011,282,0.967815512538649
+33013,281,0.09174775512991225
+33013,282,0.9082522448700877
+33015,222,0.016157277718876917
+33015,227,0.184213289614969
+33015,282,0.7996294326661539
+33017,222,0.9997807427137555
+33017,282,0.00021925728624444752
+33019,281,0.9743267340313657
+33019,282,0.025673265968634264
+34001,283,0.9999999999999999
+34003,284,0.7536923444066836
+34003,289,0.017005555089071457
+34003,291,0.02143703127554921
+34003,292,0.20786506922869552
+34005,283,0.9487848034693158
+34005,356,0.051215196530684105
+34007,283,1.0
+34009,283,0.9999999999999999
+34011,283,0.9999999999999998
+34013,285,0.02566172897142617
+34013,289,0.9743382710285737
+34015,283,0.49145992895992896
+34015,356,0.508540071040071
+34017,284,0.4209511466797842
+34017,289,0.5790488533202158
+34019,285,0.0029295125010712977
+34019,288,0.011608972411160197
+34019,346,0.10561827517160245
+34019,356,0.879843239916166
+34021,288,0.2595706018613255
+34021,356,0.7404293981386745
+34023,283,0.015815118205907704
+34023,285,0.037789340847407815
+34023,288,0.8980549676609971
+34023,289,0.048340573285687125
+34025,283,0.9902550842349059
+34025,356,0.009744915765094073
+34027,285,0.8994710284474565
+34027,291,0.09841836693237128
+34027,356,0.0021106046201724237
+34029,283,0.9999999999999999
+34031,284,0.3061772533747252
+34031,285,0.0028350484611732035
+34031,289,0.000961642053684366
+34031,291,0.6525359817726932
+34031,292,0.0374900743377239
+34033,112,0.7361499931903819
+34033,283,0.26176172389268043
+34033,356,0.002088282916937791
+34035,285,0.3004755073521227
+34035,288,0.6987886620249564
+34035,356,0.0007358306229208148
+34037,285,0.98161658794761
+34037,291,0.003316249623153452
+34037,292,0.015067162429236591
+34039,285,0.35060083988972957
+34039,289,0.6493991601102705
+34041,285,0.39809737607183604
+34041,346,0.5990781290251352
+34041,356,0.0028244949030287424
+35001,293,1.0
+35003,293,0.9957046979865771
+35003,393,0.004295302013422818
+35005,293,0.9977149821006932
+35005,393,0.001888948130093686
+35005,400,0.00039606976921319214
+35006,293,0.9999999999999999
+35007,293,1.0000000000000002
+35009,400,1.0
+35011,293,0.977250247279921
+35011,400,0.02274975272007913
+35013,393,1.0
+35015,293,0.33441081944676665
+35015,400,0.6655891805532335
+35017,293,1.0
+35019,293,1.0
+35021,293,0.6201438848920864
+35021,383,0.37985611510791367
+35023,293,1.0
+35025,293,0.0006025306286402892
+35025,400,0.9993974693713596
+35027,293,1.0
+35028,293,1.0
+35029,393,1.0
+35031,293,1.0
+35033,293,0.9999999999999999
+35035,293,0.056679781180933274
+35035,393,0.9433202188190669
+35037,293,0.016812299524388896
+35037,383,0.9069793164472957
+35037,400,0.07620838402831545
+35039,293,0.9999999999999999
+35041,400,1.0
+35043,293,1.0
+35045,293,0.9999999999999999
+35047,293,0.9994212962962963
+35047,383,0.0005787037037037037
+35049,293,1.0
+35051,393,0.9999999999999999
+35053,293,0.997979457821182
+35053,393,0.0020205421788179827
+35055,293,1.0
+35057,293,0.9999999999999999
+35059,293,0.9747197186194768
+35059,383,0.02528028138052319
+35061,293,1.0000000000000002
+36001,295,0.9999999999999998
+36003,299,0.2605524455522413
+36003,304,0.7394475544477588
+36005,297,0.932481799253199
+36005,301,0.008007317840919266
+36005,303,0.059510882905881704
+36007,296,0.9983150548354934
+36007,307,0.0016849451645064805
+36009,299,0.8997098995231395
+36009,351,0.10029010047686043
+36011,304,0.03938719916027291
+36011,307,0.9606128008397271
+36013,299,0.34418294355287044
+36013,351,0.6558170564471294
+36015,300,0.9465833614769785
+36015,359,0.053416638523021504
+36017,295,0.05830378192047863
+36017,296,0.7874675594825365
+36017,307,0.15422865859698476
+36019,424,0.9999999999999999
+36021,110,0.0402561176619754
+36021,230,0.08242994801572207
+36021,295,0.8773139343223025
+36023,296,0.008452245824550024
+36023,304,0.010702124209502187
+36023,307,0.9808456299659477
+36025,295,0.3847644852021676
+36025,296,0.6152355147978325
+36027,110,0.07198945839832196
+36027,111,0.04894987360834723
+36027,295,0.8790606679933308
+36029,299,1.0
+36031,295,0.062077724155448315
+36031,424,0.9379222758445517
+36033,424,1.0000000000000002
+36035,295,0.9350813059372242
+36035,300,0.06491869406277574
+36037,299,0.9375655387073686
+36037,304,0.06243446129263136
+36039,295,0.9999999999999998
+36041,295,0.674317617866005
+36041,300,0.14764267990074442
+36041,424,0.1780397022332506
+36043,295,0.024721399897704558
+36043,300,0.9749531145864005
+36043,307,0.00032548551589454267
+36045,307,1.0000000000000002
+36047,303,0.9999999999999998
+36049,300,0.0579613836895928
+36049,307,0.9420386163104072
+36051,299,0.008334225375804749
+36051,304,0.9916657746241951
+36053,300,0.006617466844584844
+36053,307,0.9933825331554151
+36055,299,5.373859398342702e-05
+36055,304,0.9999462614060168
+36057,295,0.9472908660068897
+36057,300,0.052709133993110176
+36059,301,0.9628967430415997
+36059,303,0.037103256958400395
+36061,303,1.0
+36063,299,0.9999999999999999
+36065,300,0.6535520568124729
+36065,307,0.34644794318752714
+36067,307,1.0000000000000002
+36069,304,1.0
+36071,284,5.364619795983509e-06
+36071,285,0.05230236070094122
+36071,292,0.31107552579979775
+36071,308,0.636616748879465
+36073,299,0.7111909148147284
+36073,304,0.28880908518527154
+36075,307,0.9999999999999999
+36077,295,0.31802630944923627
+36077,296,0.6581056554072502
+36077,300,0.02009348046065629
+36077,307,0.0037745546828570967
+36079,111,0.7912446093671649
+36079,295,0.0008424430849463445
+36079,308,0.20791294754788886
+36081,301,0.8679597905969461
+36081,303,0.13204020940305425
+36083,295,1.0
+36085,303,1.0
+36087,284,0.5649545858505487
+36087,292,0.43504541414945125
+36089,307,0.4110894733080826
+36089,424,0.5889105266919172
+36091,295,1.0000000000000002
+36093,295,1.0
+36095,295,0.9262572902989401
+36095,296,0.07374270970105956
+36097,300,0.7057733195224336
+36097,304,0.1537916371367824
+36097,359,0.14043504334078394
+36099,300,0.003035374882982043
+36099,304,0.9969646251170179
+36101,300,0.0073340741489039294
+36101,304,0.5617739165572282
+36101,359,0.430892009293868
+36103,111,0.00015803395051394516
+36103,301,0.9998419660494862
+36105,285,0.06090499954866081
+36105,295,0.6961068771196823
+36105,296,0.041897172037603
+36105,308,0.15542832088926717
+36105,360,0.04566263040478677
+36107,296,0.5914523227383863
+36107,304,0.018562347188264057
+36107,359,0.3899853300733497
+36109,296,0.002973494545311331
+36109,304,0.9180418258438029
+36109,307,0.07031034618565635
+36109,359,0.008674333425229412
+36111,295,0.8613974234628178
+36111,308,0.13860257653718225
+36113,295,0.9893009877182036
+36113,424,0.01069901228179646
+36115,295,0.9903663629460897
+36115,424,0.009633637053910404
+36117,304,0.9991042102120037
+36117,307,0.0008957897879964168
+36119,111,0.006336442552151324
+36119,297,0.10791022776002437
+36119,308,0.8857533296878242
+36121,299,0.43925987427351443
+36121,304,0.5607401257264856
+36123,300,0.00856083320183052
+36123,304,0.9914391667981695
+37001,312,0.9613778774705387
+37001,313,0.0386221225294612
+37003,315,0.7739663422764664
+37003,320,0.2260336577235335
+37005,320,1.0
+37007,311,1.0
+37009,320,0.9513214324988086
+37009,375,0.0486785675011913
+37011,309,0.6832612238017644
+37011,375,0.31673877619823576
+37013,314,0.9999999999999999
+37015,314,1.0
+37017,312,0.02398408638817846
+37017,318,0.07720943449843705
+37017,319,0.8988064791133845
+37019,319,0.8782660498366394
+37019,365,0.12173395016336068
+37021,309,1.0
+37023,309,0.014211545230552623
+37023,311,0.6268039422738473
+37023,315,0.35898451249560015
+37025,311,0.9999999999999997
+37027,309,0.01146587336954558
+37027,315,0.9844632598248805
+37027,320,0.004070866805573956
+37029,430,1.0
+37031,314,1.0
+37033,312,0.8312323453771238
+37033,313,0.16876765462287618
+37035,311,0.036868837378043244
+37035,315,0.9631311626219567
+37037,312,0.5764900401543185
+37037,313,0.3482245492480907
+37037,318,0.07528541059759074
+37039,144,0.6859058446290629
+37039,309,0.3140941553709372
+37041,314,0.9769485567498142
+37041,430,0.0230514432501859
+37043,144,1.0
+37045,311,1.0
+37047,319,0.8313367069434403
+37047,367,0.1686632930565596
+37049,314,1.0
+37051,312,0.0014431911743068146
+37051,318,0.9985568088256931
+37053,430,1.0
+37055,430,1.0000000000000002
+37057,311,0.0011726568351772492
+37057,313,0.040914058374980036
+37057,320,0.9579132847898426
+37059,320,1.0
+37061,314,0.6212118622339973
+37061,318,0.17581403298863346
+37061,319,0.20297410477736946
+37063,312,0.982267449465034
+37063,318,0.0177325505349662
+37065,314,0.5262590182486915
+37065,318,0.4737409817513086
+37067,320,1.0
+37069,312,0.03525297349015985
+37069,318,0.9647470265098402
+37071,311,1.0
+37073,314,0.2626055587439534
+37073,430,0.7373944412560467
+37075,309,1.0
+37077,312,0.8771279791708391
+37077,318,0.12287202082916082
+37079,314,0.9949911057017133
+37079,318,0.005008894298286677
+37081,312,0.003683410932707624
+37081,313,0.7710019942424949
+37081,320,0.22531459482479738
+37083,314,0.01309173355762374
+37083,318,0.9869082664423763
+37085,312,0.14521529848794015
+37085,318,0.8547847015120599
+37087,309,1.0
+37089,309,1.0
+37091,314,0.9999999999999999
+37093,312,0.952525983983643
+37093,318,0.04747401601635713
+37095,314,0.8368330464716007
+37095,430,0.1631669535283993
+37097,311,0.42898448917127135
+37097,320,0.5710155108287286
+37099,309,0.9999999999999999
+37101,318,1.0
+37103,314,0.9999999999999998
+37105,312,0.9760999550686069
+37105,318,0.023900044931393215
+37107,314,0.9830742079166316
+37107,318,0.01692579208336835
+37109,311,0.9680955727336613
+37109,315,0.031904427266338714
+37111,309,0.9960218686105432
+37111,311,0.003978131389456841
+37113,144,0.008725900595483756
+37113,309,0.9912740994045162
+37115,309,1.0
+37117,314,1.0
+37119,311,1.0
+37121,309,1.0
+37123,311,0.05745017627167422
+37123,312,0.4270091373480107
+37123,313,0.5155406863803151
+37125,312,0.951069158158351
+37125,313,0.014958015569934391
+37125,318,0.03397282627171462
+37127,318,1.0
+37129,319,1.0
+37131,314,0.25983076157292184
+37131,318,0.740169238427078
+37133,314,0.9691571226064847
+37133,319,0.030842877393515288
+37135,312,1.0
+37137,314,1.0000000000000002
+37139,430,1.0
+37141,318,0.007487982840837275
+37141,319,0.9925120171591628
+37143,314,0.021705195867092842
+37143,430,0.9782948041329071
+37145,312,1.0
+37147,314,1.0
+37149,309,0.10380302291565088
+37149,311,0.048561677230619216
+37149,369,0.84763529985373
+37151,312,0.004324453975958011
+37151,313,0.7135419606072578
+37151,320,0.28213358541678424
+37153,311,0.8399408220587921
+37153,312,0.15319796736636723
+37153,313,0.0068612105748407995
+37155,312,0.9564277622085743
+37155,318,0.04357223779142567
+37157,312,0.0057025084629924285
+37157,313,0.9942974915370074
+37159,311,0.9688935764440719
+37159,320,0.031106423555927992
+37161,309,0.0014599616575726294
+37161,311,0.9974487538711105
+37161,369,0.0010912844713169148
+37163,314,0.020352824328798223
+37163,318,0.9755167031892925
+37163,319,0.0041304724819094755
+37165,311,0.0042038885969521815
+37165,312,0.9957961114030478
+37167,311,0.9999999999999999
+37169,313,0.04816354085356849
+37169,320,0.9518364591464316
+37171,320,1.0
+37173,309,1.0
+37175,309,1.0
+37177,314,1.0
+37179,311,0.9999999999999999
+37181,312,1.0
+37183,312,0.0004117679049670752
+37183,318,0.999588232095033
+37185,312,0.8366393286286478
+37185,318,0.1633606713713523
+37187,314,1.0
+37189,309,0.06337242310930127
+37189,315,0.0016640889602380627
+37189,375,0.9349634879304605
+37191,314,0.03766830040041427
+37191,318,0.9623316995995856
+37193,320,0.9994375540813384
+37193,375,0.0005624459186616671
+37195,314,0.0319816825467169
+37195,318,0.968018317453283
+37197,320,1.0
+37199,309,1.0
+38001,321,0.9999999999999999
+38003,322,1.0
+38005,321,0.0016516516516516516
+38005,322,0.7138138138138137
+38005,323,0.001951951951951952
+38005,324,0.2825825825825825
+38007,321,1.0
+38009,324,1.0
+38011,321,1.0
+38013,324,1.0
+38015,321,1.0
+38017,322,1.0
+38019,322,0.011269722013523666
+38019,323,0.9887302779864763
+38021,321,0.017016449234259785
+38021,322,0.5834751370769522
+38021,371,0.399508413688788
+38023,274,0.02607436021245775
+38023,324,0.9739256397875422
+38025,321,1.0
+38027,322,0.9421383647798742
+38027,323,0.05786163522012579
+38029,321,1.0
+38031,322,1.0
+38033,321,1.0
+38035,322,0.0017199862401100793
+38035,323,0.9982800137598902
+38037,321,1.0
+38039,322,0.9578512396694215
+38039,323,0.04214876033057851
+38041,321,1.0
+38043,321,0.986447638603696
+38043,322,0.013552361396303902
+38045,321,0.1099299347668519
+38045,322,0.8900700652331481
+38047,321,0.7768844221105528
+38047,322,0.22311557788944725
+38049,324,0.9999999999999999
+38051,321,0.9999999999999999
+38053,274,0.11682389937106918
+38053,321,0.6768867924528301
+38053,324,0.20628930817610064
+38055,321,0.5547868779290337
+38055,324,0.44521312207096625
+38057,321,1.0000000000000002
+38059,321,1.0
+38061,324,0.9999999999999998
+38063,323,1.0
+38065,321,1.0
+38067,323,1.0
+38069,321,0.04498508147808125
+38069,324,0.9550149185219187
+38071,322,0.9155532267924199
+38071,323,0.08444677320758012
+38073,322,1.0
+38075,324,1.0
+38077,322,1.0
+38079,323,0.7637224653799239
+38079,324,0.23627753462007606
+38081,322,1.0000000000000002
+38083,321,0.8508705526116579
+38083,324,0.14912944738834216
+38085,321,1.0
+38087,321,1.0
+38089,321,1.0
+38091,322,0.9777215189873418
+38091,323,0.02227848101265823
+38093,321,0.020616113744075827
+38093,322,0.9793838862559243
+38095,322,0.019145146927871767
+38095,323,0.9746215494211931
+38095,324,0.006233303650934996
+38097,322,0.8741534293806181
+38097,323,0.12584657061938184
+38099,323,1.0
+38101,324,0.9999999999999997
+38103,321,0.6422628951747087
+38103,322,0.3520323270739244
+38103,324,0.00570477775136677
+38105,324,1.0
+39001,327,0.9203852889667251
+39001,329,0.07961471103327494
+39003,330,0.9999999999999999
+39005,326,0.05530777771504921
+39005,328,0.013699919080148292
+39005,329,0.9309923032048025
+39007,328,0.6825029311211172
+39007,335,0.13748189601663102
+39007,351,0.18001517286225208
+39009,329,0.9218617292339053
+39009,443,0.07813827076609478
+39011,329,0.007247165335480641
+39011,330,0.9927528346645195
+39013,329,0.16136363636363638
+39013,357,0.8386363636363637
+39015,204,0.05318200062435892
+39015,327,0.946817999375641
+39017,327,0.7309754706217912
+39017,332,0.2690245293782088
+39019,326,0.9022402552365099
+39019,335,0.03017062005826051
+39019,357,0.06758912470522957
+39021,329,0.0985360500785595
+39021,330,0.9014639499214406
+39023,329,0.00039036238641538895
+39023,330,0.9975927652837719
+39023,332,0.002016872329812843
+39025,327,0.9997973277666027
+39027,327,0.9960751665080875
+39027,332,0.003924833491912464
+39029,326,0.07247707272744133
+39029,335,0.616361124247735
+39029,357,0.3111618030248236
+39031,326,0.02046015013143275
+39031,329,0.9795398498685671
+39033,329,0.9796044217065595
+39033,334,0.020395578293440526
+39035,328,1.0000000000000002
+39037,183,0.011367284125455542
+39037,185,0.06535244245548442
+39037,330,0.9232802734190602
+39039,180,0.9988984809283501
+39039,330,0.0005123344519302202
+39039,334,0.000589184619719753
+39041,329,0.9999999999999999
+39043,328,0.8787348045511747
+39043,331,0.12126519544882525
+39045,329,0.9999999999999999
+39047,327,0.022046159145711335
+39047,329,0.9737857388908027
+39047,330,0.0017223561832586981
+39047,332,0.002445745780227351
+39049,329,1.0
+39051,180,0.0036769872125158084
+39051,334,0.9963230127874843
+39053,329,0.9963470614857437
+39053,444,0.0036529385142561577
+39055,325,0.029018406878754455
+39055,328,0.9709815931212455
+39057,327,0.000563212913048591
+39057,330,0.5065388400289652
+39057,332,0.49289794705798623
+39059,326,0.0026691945019582408
+39059,329,0.9973308054980419
+39061,327,1.0
+39063,329,0.009066352865662859
+39063,330,0.01823968334625979
+39063,334,0.9726939637880775
+39065,329,0.6443321479817831
+39065,330,0.35566785201821693
+39067,326,0.14214573877962683
+39067,329,0.07936207766011093
+39067,357,0.7784921835602622
+39069,180,0.1469076732234627
+39069,330,0.002480949849370902
+39069,334,0.8506113769271664
+39071,327,0.827089403289821
+39071,329,0.17291059671017917
+39073,329,0.9999999999999999
+39075,326,0.9265448708870322
+39075,329,0.07345512911296795
+39077,328,0.7783852681716029
+39077,329,0.22161473182839703
+39079,329,0.9999999999999999
+39081,357,0.9999999999999998
+39083,326,0.06357413699709459
+39083,329,0.9364258630029055
+39085,328,1.0
+39087,329,0.015564451561248999
+39087,444,0.984435548438751
+39089,329,1.0
+39091,329,0.969601814296306
+39091,330,0.030398185703694014
+39093,328,0.18143325502064006
+39093,329,0.0011282337169327972
+39093,331,0.8174385112624271
+39095,334,0.9999999999999999
+39097,329,0.9779440543340624
+39097,330,0.022055945665937608
+39099,325,0.004718975978025567
+39099,326,0.03638678016773929
+39099,335,0.9588942438542352
+39101,329,1.0
+39103,325,0.2188798365944804
+39103,326,0.010079381658658867
+39103,328,0.7709421349488198
+39103,329,9.864679804099063e-05
+39105,329,0.8317206562894406
+39105,443,0.16827934371055955
+39107,180,0.07715489782917627
+39107,330,0.9228451021708235
+39109,330,0.9999999999999999
+39111,329,0.7205982789236444
+39111,357,0.2794017210763557
+39113,330,0.6542670974468984
+39113,332,0.34320839087139565
+39115,329,1.0
+39117,329,1.0
+39119,329,1.0
+39121,329,1.0
+39123,328,0.015279521096842715
+39123,334,0.9847204789031573
+39125,180,0.9899051697766901
+39125,330,0.01009483022330988
+39127,329,1.0
+39129,329,0.9999999999999999
+39131,327,0.06865442892472742
+39131,329,0.9313455710752725
+39133,325,0.8894677826030393
+39133,326,0.003196649712859081
+39133,328,0.1010785595252108
+39133,335,0.006257008158890837
+39135,183,0.08805299266619351
+39135,327,0.1976105985332387
+39135,330,0.7003785190442394
+39135,332,0.013957889756328364
+39137,180,0.000869590422910809
+39137,330,0.9991304095770892
+39139,328,0.007640088371158867
+39139,329,0.9923599116288411
+39141,329,1.0
+39143,328,0.28591822000525074
+39143,334,0.7140817799947491
+39145,327,0.00028931181524295896
+39145,329,0.9904023949986792
+39145,444,0.009308293186077813
+39147,328,0.030857344259406113
+39147,329,0.04208300290774517
+39147,334,0.9270596528328487
+39149,330,1.0
+39151,325,0.04042749197254424
+39151,326,0.9595725080274559
+39153,325,0.8912678739195355
+39153,326,0.0067794920825942585
+39153,328,0.10195263399786997
+39155,325,0.014121876069839097
+39155,328,0.01569097341093233
+39155,335,0.9701871505192287
+39157,326,0.9173597459549373
+39157,329,0.08264025404506276
+39159,329,0.9997514340344169
+39159,330,0.00024856596558317403
+39161,180,0.8117868076816032
+39161,330,0.1882131923183969
+39163,329,1.0000000000000002
+39165,327,0.6846581692862483
+39165,332,0.31534183071375177
+39167,329,0.7900061510570108
+39167,443,0.20999384894298945
+39169,325,0.15989346838980092
+39169,326,0.8399056933286762
+39169,329,0.0002008382815228781
+39171,180,0.9982466393921684
+39171,334,0.0017533606078316776
+39173,334,1.0000000000000002
+39175,329,0.736369666150785
+39175,334,0.2636303338492152
+40001,16,0.0018956928095930875
+40001,21,0.34730855706917074
+40001,340,0.6507957501212361
+40003,201,0.018078695498050336
+40003,339,0.9819213045019496
+40005,339,0.8318995910308842
+40005,340,0.03687773233676492
+40005,391,0.13122267663235085
+40007,201,0.2934705464868701
+40007,339,0.6160397444996452
+40007,383,0.09048970901348474
+40009,339,0.9999999999999999
+40011,339,1.0
+40013,391,0.9999999999999999
+40015,336,0.5108783783783785
+40015,339,0.4891216216216216
+40017,339,0.9999999999999999
+40019,336,0.0009041781441217908
+40019,339,0.9990958218558782
+40021,16,0.0013833613552684785
+40021,21,0.0018515759678208864
+40021,340,0.9967650626769106
+40023,339,0.015455442288720816
+40023,391,0.9845445577112792
+40025,383,1.0
+40027,339,1.0000000000000002
+40029,339,0.1777215189873418
+40029,340,0.8222784810126582
+40031,336,0.9994601041112668
+40031,339,0.000539895888733098
+40033,336,0.8105926045535281
+40033,420,0.18940739544647184
+40035,267,0.22123893805309736
+40035,340,0.7787610619469028
+40037,339,0.004859433733045579
+40037,340,0.9951405662669546
+40039,339,1.0
+40041,21,0.19835129076578206
+40041,267,0.7441849253983176
+40041,340,0.05746378383590041
+40043,339,0.9999999999999998
+40045,339,1.0
+40047,339,1.0
+40049,339,1.0
+40051,336,0.01176784726593046
+40051,339,0.9882321527340695
+40053,201,0.03931963772918047
+40053,339,0.9606803622708195
+40055,339,1.0
+40057,339,1.0
+40059,339,0.9999999999999999
+40061,16,1.0
+40063,339,0.9082339498678854
+40063,340,0.09176605013211456
+40065,339,1.0
+40067,336,0.6274721878862792
+40067,339,0.2895550061804697
+40067,391,0.08297280593325093
+40069,339,0.9778223966414165
+40069,391,0.022177603358583552
+40071,339,0.9995489884455135
+40071,340,0.0004510115544864912
+40073,339,1.0000000000000002
+40075,336,0.31018420495447807
+40075,339,0.6898157950455219
+40077,16,0.9385870539716694
+40077,339,0.0007172314864622557
+40077,340,0.06069571454186838
+40079,16,1.0000000000000002
+40081,339,0.8659878038105797
+40081,340,0.13401219618942026
+40083,339,0.9767969795450202
+40083,340,0.02320302045497993
+40085,339,0.9999999999999998
+40087,339,0.9999999999999998
+40089,16,0.03755996017739162
+40089,22,0.8095151899116058
+40089,391,0.15292484991100253
+40091,340,1.0
+40093,339,0.9999999999999999
+40095,339,1.0
+40097,340,1.0
+40099,339,1.0000000000000002
+40101,340,0.9999999999999999
+40103,339,0.7534815327393823
+40103,340,0.24651846726061757
+40105,340,1.0
+40107,339,0.2756951849725207
+40107,340,0.7243048150274792
+40109,339,1.0
+40111,340,1.0
+40113,339,0.058308055274688235
+40113,340,0.9416919447253117
+40115,267,0.9999999999999998
+40117,340,1.0
+40119,339,0.0021460892049127342
+40119,340,0.9978539107950873
+40121,16,0.049545127298907
+40121,339,0.0008508410236272007
+40121,340,0.9496040316774658
+40123,339,1.0000000000000002
+40125,339,0.9999999999999999
+40127,16,0.01598962834917891
+40127,22,0.004753673292999135
+40127,339,0.8637856525496974
+40127,340,0.06741573033707865
+40127,391,0.048055315471045815
+40129,339,0.9999999999999999
+40131,340,1.0
+40133,339,0.9866964916411585
+40133,340,0.013303508358841537
+40135,16,0.9316364322615649
+40135,340,0.06836356773843504
+40137,336,0.9871914402415201
+40137,339,0.012808559758479846
+40139,201,0.20678294573643408
+40139,383,0.7932170542635658
+40141,336,0.8588588588588587
+40141,339,0.14114114114114115
+40143,340,1.0
+40145,340,1.0000000000000002
+40147,340,1.0000000000000004
+40149,336,0.02399174477599106
+40149,339,0.9760082552240088
+40151,339,0.9999999999999999
+40153,339,1.0000000000000002
+41001,151,1.0
+41003,342,0.9974643312027485
+41003,345,0.0025356687972516623
+41005,344,1.0
+41007,344,1.0000000000000002
+41009,344,1.0
+41011,342,1.0
+41013,341,1.0000000000000002
+41015,342,0.1353514576998748
+41015,343,0.8646485423001251
+41017,341,1.0
+41019,341,0.00052012222872375
+41019,342,0.9787492917978582
+41019,343,0.02073058597341804
+41021,344,1.0
+41023,151,0.007253190060443252
+41023,341,0.9900604432505037
+41023,344,0.002686366689053056
+41025,341,0.9999999999999999
+41027,344,1.0
+41029,343,1.0000000000000002
+41031,341,1.0
+41033,343,1.0000000000000002
+41035,341,0.04559014071775092
+41035,343,0.9544098592822491
+41037,341,0.25357821405953135
+41037,343,0.7464217859404686
+41039,342,0.9995905775983395
+41039,344,0.00040942240166043527
+41041,342,0.020245905200503976
+41041,344,0.979754094799496
+41043,341,0.00013713658804168953
+41043,342,0.9740811848601207
+41043,345,0.02578167855183763
+41045,151,0.9969022450739309
+41045,280,0.0029700124548909398
+41045,341,0.00012774247117810494
+41047,342,0.019728225537919992
+41047,344,0.19872833653099087
+41047,345,0.7815434379310893
+41049,344,1.0
+41051,344,1.0
+41053,342,0.0006498415182419798
+41053,344,0.05242496982878665
+41053,345,0.9469251886529714
+41055,344,1.0
+41057,344,1.0
+41059,344,0.8134907562360815
+41059,440,0.18650924376391834
+41061,151,0.02788566102221532
+41061,344,0.9721143389777847
+41063,440,1.0
+41065,341,0.044381866497441795
+41065,344,0.9556181335025582
+41067,344,0.9999999999999999
+41069,341,0.5128383067314365
+41069,344,0.4871616932685635
+41071,344,0.9974594981500711
+41071,345,0.0025405018499289264
+42001,352,0.5380595027956651
+42001,363,0.46194049720433505
+42003,357,0.9999999999999999
+42005,351,0.014505156583165316
+42005,357,0.9854948434168345
+42007,335,0.0012841637396724505
+42007,357,0.9987158362603277
+42009,113,0.07011374140910735
+42009,347,0.8825408946585747
+42009,354,0.04734536393231784
+42011,346,0.04398189781305749
+42011,352,0.016998750735219056
+42011,355,0.002289508606316321
+42011,358,0.9365670009381635
+42013,347,0.9965299907938531
+42013,354,0.003470009206146873
+42015,296,0.0003992207211523107
+42015,300,0.05399061032863851
+42015,359,0.9456101689502091
+42017,346,0.14528771737339843
+42017,356,0.8547122826266015
+42019,351,0.0075654567012215694
+42019,357,0.9924345432987782
+42021,347,0.12410999519762807
+42021,354,0.8758900048023717
+42023,351,1.0
+42025,346,0.9764594093396068
+42025,362,0.02354059066039326
+42027,347,0.047886226378336255
+42027,350,0.9521137736216638
+42029,355,0.30797817537473493
+42029,356,0.6481661141022197
+42029,358,0.04385571052304534
+42031,351,0.11245873762128639
+42031,357,0.8875412623787134
+42033,347,0.6983782856862892
+42033,354,0.017319516915313197
+42033,357,0.2843021973983979
+42035,347,0.0005351954737754218
+42035,350,0.9971456241398643
+42037,346,0.0022438516977487184
+42037,350,0.9864031503083438
+42037,358,0.011352997993907422
+42039,351,1.0
+42041,352,0.9999999999999998
+42043,350,0.0004774337933606863
+42043,352,0.9859903021260723
+42043,355,0.012670645281611341
+42043,358,0.0008616187989556137
+42045,356,0.9999999999999996
+42047,351,0.8988292744005508
+42047,357,0.10117072559944909
+42049,351,1.0
+42051,354,0.004150622959460054
+42051,357,0.9728269622124948
+42051,445,0.023022414828045623
+42053,351,0.9739502332814931
+42053,357,0.026049766718507
+42055,352,0.9992313553544456
+42057,347,0.04742337487369484
+42057,352,0.9525766251263051
+42059,357,0.021067052680556274
+42059,445,0.9789329473194437
+42061,347,0.9180624224075971
+42061,350,0.028815368196371403
+42061,352,0.05312220939603163
+42063,347,0.0006300630063006301
+42063,354,0.09031278127812782
+42063,357,0.9090571557155717
+42065,351,0.00035398230088495576
+42065,357,0.9996460176991149
+42067,347,0.0012583211560318233
+42067,350,0.017616496184445527
+42067,352,0.9811251826595226
+42069,360,0.9999253860108098
+42069,362,7.461398919029832e-05
+42071,352,1.925131630875261e-05
+42071,355,0.9965001106950686
+42071,358,0.003480637988622472
+42073,335,0.7947490889932829
+42073,357,0.20525091100671727
+42075,352,0.9932992932438908
+42075,355,0.004102779108768567
+42075,358,0.002597927647340681
+42077,346,0.998137323067151
+42077,358,0.001862676932849209
+42079,346,0.19294025265020973
+42079,350,0.057790463607525905
+42079,360,0.018830355417894917
+42079,362,0.7304389283243695
+42081,350,0.9966928198017415
+42081,359,0.003307180198258563
+42083,299,0.1118987341772152
+42083,351,0.8881012658227847
+42085,335,0.4483873180267151
+42085,351,0.400375520842264
+42085,357,0.15123716113102076
+42087,347,0.029883038430230068
+42087,352,0.9701169615697699
+42089,346,0.9492587228129675
+42089,360,0.00153083454033749
+42089,362,0.04921044264669516
+42091,346,0.09517999084855863
+42091,356,0.8268864846213277
+42091,358,0.0779335245301135
+42093,350,1.0
+42095,346,1.0000000000000002
+42097,350,0.9976832261340557
+42097,358,0.002316773865944482
+42099,352,1.0
+42101,356,1.0
+42103,285,0.5160278199027349
+42103,346,0.18999808258815737
+42103,360,0.2939740975091077
+42105,299,0.13318439594432033
+42105,350,0.0042389872257547105
+42105,351,0.7202841267113478
+42105,359,0.14229249011857706
+42107,346,0.1678007134716668
+42107,352,0.001510563831437261
+42107,358,0.8306887226968959
+42109,350,0.9152687522039191
+42109,352,0.0847312477960808
+42111,113,0.00018008283810552856
+42111,347,0.00010290447891744489
+42111,354,0.9980062257209746
+42111,357,0.0017107869620025212
+42113,350,0.45939639079029243
+42113,359,0.5406036092097076
+42115,296,0.4159977857735954
+42115,359,0.13543684841775072
+42115,360,0.4485653658086539
+42117,300,0.04525856935280246
+42117,350,0.02553536123484433
+42117,359,0.9292060694123532
+42119,350,0.9999999999999999
+42121,351,0.9736105048741451
+42121,357,0.026389495125854798
+42123,351,1.0
+42125,357,0.9930709267635454
+42125,445,0.006929073236454626
+42127,296,0.007648328348036803
+42127,360,0.9923516716519634
+42129,354,0.013864813278235556
+42129,357,0.9861351867217643
+42131,359,0.6044702220964776
+42131,360,0.2607511670674777
+42131,362,0.1347786108360447
+42133,352,0.10206404090378231
+42133,363,0.8979359590962176
+44001,364,0.9999999999999999
+44003,364,1.0
+44005,227,0.2325065148151723
+44005,364,0.7674934851848277
+44007,364,1.0
+44009,364,1.0000000000000002
+45001,366,0.8072156430735334
+45001,368,0.19278435692646653
+45003,145,0.9858587498985002
+45003,366,0.014141250101499695
+45005,145,0.9990402149918418
+45005,366,0.0009597850081581727
+45007,368,0.9999999999999998
+45009,365,0.015262400700569211
+45009,366,0.9847375992994306
+45011,145,0.2501215684540913
+45011,366,0.7498784315459087
+45013,149,1.0
+45015,365,1.0
+45017,366,1.0
+45019,365,1.0
+45021,369,1.0
+45023,311,0.18053711526855765
+45023,366,0.808328304164152
+45023,369,0.011134580567290284
+45025,311,0.2976205760260196
+45025,366,0.10275174391235503
+45025,367,0.5996276800616254
+45027,366,0.8550799233650741
+45027,367,0.14492007663492606
+45029,149,0.03597140800164558
+45029,365,0.9636686207960508
+45029,366,0.0003599712023038157
+45031,366,0.44613503006653954
+45031,367,0.5538649699334605
+45033,367,0.9999999999999998
+45035,365,0.9975540990809564
+45035,366,0.0024459009190436086
+45037,145,0.9851769501574947
+45037,366,0.014823049842505095
+45039,366,0.9964935715478377
+45039,369,0.003506428452162297
+45041,367,0.9999999999999999
+45043,365,0.9390272282988131
+45043,367,0.060972771701186874
+45045,368,0.9913723752008422
+45045,369,0.008627624799157848
+45047,366,0.9713613069005613
+45047,368,0.028638693099438714
+45049,145,0.02726410621147464
+45049,149,0.17155049786628734
+45049,365,0.8011853959222379
+45051,365,0.8785180343940199
+45051,367,0.12148196560598015
+45053,149,0.9966097590507326
+45053,365,0.003390240949267466
+45055,311,0.05361686953984797
+45055,366,0.9463831304601521
+45057,311,1.0
+45059,366,0.10089123344905843
+45059,368,0.8845905285780844
+45059,369,0.014518237972857208
+45061,366,0.9702393340270552
+45061,367,0.02976066597294485
+45063,366,1.0
+45065,145,0.09977523697840321
+45065,366,0.9002247630215968
+45067,367,1.0
+45069,367,0.9999999999999999
+45071,366,0.9268689346272797
+45071,369,0.07313106537272049
+45073,368,1.0
+45075,145,0.002745916260364753
+45075,365,0.11709062604728598
+45075,366,0.8801634576923493
+45077,368,1.0000000000000002
+45079,366,0.9999999999999999
+45081,145,0.12191194968553459
+45081,366,0.8780880503144655
+45083,368,0.05667816831805055
+45083,369,0.9433218316819495
+45085,366,0.9947885646217989
+45085,367,0.00521143537820131
+45087,369,1.0
+45089,365,0.13101705255207274
+45089,366,0.002934084768904512
+45089,367,0.8660488626790227
+45091,311,0.9981023828586342
+45091,366,0.00010173704953709642
+45091,369,0.0017958800918287453
+46003,371,0.9999999999999999
+46005,371,1.0
+46007,370,1.0000000000000002
+46009,371,1.0
+46011,371,1.0
+46013,371,0.9999999999999998
+46015,371,1.0
+46017,371,1.0
+46019,370,0.9999999999999999
+46021,321,1.0
+46023,371,1.0
+46025,371,1.0
+46027,196,0.02769763416041546
+46027,371,0.9723023658395846
+46029,371,0.9999999999999999
+46031,321,1.0
+46033,370,0.99634858812074
+46033,457,0.003651411879259981
+46035,371,1.0
+46037,322,0.009807355516637478
+46037,371,0.9901926444833624
+46039,371,1.0
+46041,321,0.8854933031503489
+46041,370,0.09243538954914167
+46041,371,0.022071307300509338
+46043,371,0.9999999999999999
+46045,321,0.24170965364775243
+46045,371,0.7582903463522476
+46047,370,1.0
+46049,371,1.0000000000000002
+46051,371,1.0
+46053,278,0.004682744088035589
+46053,371,0.9953172559119644
+46055,370,0.10428497676819823
+46055,371,0.8957150232318017
+46057,371,0.9999999999999999
+46059,371,1.0
+46061,371,1.0
+46063,321,0.2924302788844622
+46063,370,0.7075697211155378
+46065,371,1.0
+46067,371,1.0
+46069,371,1.0
+46071,370,0.957769712966018
+46071,371,0.04223028703398219
+46073,371,1.0
+46075,370,0.09741550695825048
+46075,371,0.9025844930417495
+46077,371,1.0
+46079,371,1.0
+46081,370,0.9999999999999999
+46083,371,1.0
+46085,371,1.0
+46087,371,1.0000000000000002
+46089,321,0.5363969093127288
+46089,371,0.4636030906872713
+46091,322,0.8797250859106529
+46091,371,0.12027491408934707
+46093,370,0.9999999999999999
+46095,370,0.220703125
+46095,371,0.779296875
+46097,371,1.0
+46099,371,1.0000000000000002
+46101,371,1.0
+46103,370,1.0
+46105,321,0.926224010731053
+46105,370,0.07377598926894702
+46107,321,0.28295405753542296
+46107,371,0.7170459424645771
+46109,251,0.1076953394423096
+46109,322,0.6627253916642034
+46109,371,0.229579268893487
+46111,371,0.9999999999999999
+46113,370,1.0000000000000002
+46115,371,1.0
+46117,371,1.0
+46119,371,1.0
+46121,277,0.04411152725759467
+46121,371,0.9558884727424054
+46123,371,0.9999999999999999
+46125,371,1.0
+46127,196,0.7363011320230572
+46127,371,0.26369886797694286
+46129,321,1.0
+46135,371,1.0
+46137,321,0.36629775080328447
+46137,370,0.6337022491967155
+47001,377,1.0
+47003,380,0.9940964978472189
+47003,5,0.005903502152780861
+47005,374,0.20977621444599429
+47005,380,0.7902237855540056
+47007,373,0.9157347002174587
+47007,377,0.07323703013358185
+47007,380,0.011028269648959303
+47009,377,1.0
+47011,373,0.9999999999999999
+47013,377,1.0
+47015,380,1.0
+47017,374,0.9993338475562723
+47017,380,0.0006661524437276489
+47019,375,1.0
+47021,380,1.0
+47023,374,0.9999999999999999
+47025,377,1.0
+47027,380,1.0
+47029,377,1.0
+47031,380,1.0
+47033,374,0.9600301659125189
+47033,379,0.039969834087481136
+47035,373,0.0008384921413662071
+47035,377,0.033789449271225444
+47035,380,0.9653720585874085
+47037,380,1.0
+47039,374,0.964957046865697
+47039,380,0.035042953134302966
+47041,380,1.0
+47043,380,0.9999999999999999
+47045,374,0.018729620451284727
+47045,379,0.9812703795487153
+47047,379,1.0
+47049,377,0.009967147391280138
+47049,380,0.9900328526087198
+47051,380,0.9960294260937348
+47051,5,0.003970573906265224
+47053,374,0.9637099208984965
+47053,379,0.03629007910150354
+47055,380,0.9330846192979482
+47055,5,0.0669153807020519
+47057,377,0.9999999999999999
+47059,375,0.12280803707631734
+47059,376,0.011884180093271926
+47059,377,0.8653077828304107
+47061,373,0.09552652703787493
+47061,380,0.9044734729621251
+47063,377,1.0
+47065,373,1.0
+47067,376,0.10382754069511659
+47067,377,0.8961724593048833
+47069,374,0.47532381756136943
+47069,379,0.5246761824386306
+47071,374,0.016291400906785526
+47071,379,0.976023976023976
+47071,380,0.007684623069238455
+47073,376,0.4905072757024968
+47073,377,0.5094927242975033
+47075,374,0.045776334699526265
+47075,379,0.9542236653004736
+47077,374,1.0
+47079,208,0.08509124652025983
+47079,374,0.9149087534797402
+47081,380,1.0000000000000002
+47083,380,0.9999999999999999
+47085,380,1.0
+47087,380,1.0
+47089,377,1.0
+47091,375,0.944200833150625
+47091,376,0.05579916684937514
+47093,377,0.9999999999999999
+47095,379,1.0
+47097,379,1.0
+47099,1,0.040101268241419664
+47099,380,0.9598987317585802
+47101,380,1.0
+47103,380,0.0006894277749467943
+47103,5,0.9993105722250533
+47105,377,1.0
+47107,373,0.12449776145103891
+47107,377,0.875502238548961
+47109,374,0.19930968360498558
+47109,379,0.8006903163950144
+47111,380,1.0
+47113,374,1.0
+47115,373,0.9555547685660659
+47115,380,0.044445231433934196
+47117,380,0.9699839958193159
+47117,5,0.030016004180683932
+47119,380,1.0
+47121,373,0.1761252446183953
+47121,377,0.8238747553816047
+47123,377,1.0
+47125,380,0.9999999999999999
+47127,380,0.869695064445143
+47127,5,0.13030493555485698
+47129,377,1.0
+47131,208,0.13393278209199233
+47131,379,0.8660672179080077
+47133,380,1.0000000000000002
+47135,380,1.0
+47137,205,0.009257435493401614
+47137,380,0.9907425645065985
+47139,373,0.8526597325408618
+47139,377,0.1473402674591382
+47141,380,1.0
+47143,373,0.6417366154233078
+47143,377,0.33075544657172495
+47143,380,0.027507938004967147
+47145,377,0.9999999999999998
+47147,380,0.9999999999999999
+47149,380,1.0
+47151,377,0.9985153859996401
+47151,380,0.0014846140003599065
+47153,373,1.0
+47155,377,1.0
+47157,379,0.9999999999999999
+47159,380,1.0
+47161,380,1.0
+47163,375,0.04637712580425065
+47163,376,0.9530744852476996
+47163,377,0.0005483889480497121
+47165,380,1.0
+47167,379,0.9999999999999999
+47169,380,1.0
+47171,375,1.0
+47173,377,0.9999999999999999
+47175,373,0.09841384282624367
+47175,380,0.9015861571737562
+47177,380,0.9999999999999999
+47179,375,0.9718976410606688
+47179,376,0.028102358939331103
+47181,1,0.2147347394395159
+47181,379,0.0030550496445567238
+47181,380,0.7822102109159274
+47183,208,0.003911938551155021
+47183,374,0.9960880614488449
+47185,380,1.0
+47187,380,1.0
+47189,380,1.0
+48001,391,0.004516062814328235
+48001,416,0.9954839371856716
+48003,400,1.0
+48005,397,0.9999999999999999
+48007,390,0.9996977286466879
+48007,417,0.00030227135331203036
+48009,420,1.0
+48011,383,1.0
+48013,412,1.0
+48015,397,1.0
+48017,400,0.9999999999999999
+48019,412,1.0
+48021,385,0.9985034582249127
+48021,397,0.0014965417750872985
+48023,420,1.0
+48025,390,0.990050531998368
+48025,412,0.00994946800163209
+48027,385,0.0006446725869099231
+48027,413,0.9993553274130902
+48029,412,1.0000000000000002
+48031,385,0.029722777936553306
+48031,412,0.9702772220634468
+48033,400,1.0
+48035,394,0.07105205359103887
+48035,418,0.928947946408961
+48037,22,0.9972019661859235
+48037,391,0.002798033814076595
+48039,397,0.9999999999999999
+48041,388,0.9999999999999999
+48043,406,1.0
+48045,383,0.03176542455711667
+48045,400,0.9682345754428834
+48047,390,1.0
+48049,382,1.0
+48051,388,0.9882469308198056
+48051,413,0.011753069180194331
+48053,385,0.9573333333333334
+48053,413,0.04266666666666667
+48055,385,0.9988178426942679
+48055,412,0.0011821573057321493
+48057,397,0.8927084794911371
+48057,417,0.107291520508863
+48059,382,1.0000000000000002
+48061,396,0.9999999999999998
+48063,416,1.0
+48065,383,1.0
+48067,22,0.606453518907563
+48067,399,0.3640690651260504
+48067,416,0.029477415966386557
+48069,383,0.07442322004465393
+48069,400,0.9255767799553462
+48071,397,1.0
+48073,397,0.10270429737437309
+48073,416,0.8972957026256271
+48075,383,1.0
+48077,391,0.0020461309523809525
+48077,420,0.997953869047619
+48079,400,0.9999999999999999
+48081,411,1.0
+48083,382,0.9777403035413155
+48083,411,0.02225969645868465
+48085,391,1.0000000000000002
+48087,383,1.0000000000000002
+48089,397,1.0
+48091,385,0.0001106276274061509
+48091,412,0.9998893723725937
+48093,382,0.9190639759553456
+48093,394,0.08093602404465436
+48095,411,1.0
+48097,391,1.0
+48099,413,0.98470578871969
+48099,418,0.015294211280309864
+48101,383,0.9926910299003323
+48101,420,0.007308970099667774
+48103,406,1.0000000000000002
+48105,393,0.0005377789728421619
+48105,411,0.999462221027158
+48107,400,1.0
+48109,393,0.9983270598076119
+48109,400,0.001672940192388122
+48111,383,1.0
+48113,391,0.9763350039841411
+48113,394,0.023664996015858867
+48115,400,0.9999999999999998
+48117,383,1.0
+48119,391,1.0
+48121,391,0.9968594083433194
+48121,394,0.003140591656680964
+48123,412,0.0013932427725531177
+48123,417,0.9986067572274471
+48125,400,1.0
+48127,412,1.0
+48129,383,1.0000000000000002
+48131,390,0.9976232917409388
+48131,412,0.0023767082590612004
+48133,382,0.9818651455631492
+48133,394,0.018134854436850884
+48135,406,0.9999999999999998
+48137,411,0.02197802197802198
+48137,412,0.978021978021978
+48139,391,0.998529510059488
+48139,394,0.001470489940511998
+48141,393,0.9999999999999999
+48143,394,0.9982317234098708
+48143,418,0.001768276590129322
+48145,388,0.010578752938542484
+48145,413,0.2746557707377141
+48145,418,0.7147654763237434
+48147,391,1.0
+48149,385,0.016005538812413456
+48149,397,0.9787814612690396
+48149,412,0.005212999918546876
+48151,382,0.9954705586311021
+48151,400,0.004529441368897836
+48153,400,0.9999999999999999
+48155,420,0.9999999999999999
+48157,397,1.0000000000000002
+48159,391,0.008486562942008485
+48159,416,0.9915134370579914
+48161,391,0.08518368994751717
+48161,416,0.09931368591037545
+48161,418,0.8155026241421073
+48163,412,1.0
+48165,400,1.0
+48167,397,0.9999999999999999
+48169,400,0.9999999999999999
+48171,412,1.0
+48173,400,0.969820554649266
+48173,406,0.030179445350734094
+48175,417,0.9999999999999999
+48177,385,0.036603221083455345
+48177,397,0.004240924925531378
+48177,412,0.8853940526076639
+48177,417,0.07376180138334931
+48179,383,0.9999999999999999
+48181,391,0.9999999999999998
+48183,399,1.0
+48185,388,0.7331228386708766
+48185,397,0.2668771613291234
+48187,385,0.05548417507393581
+48187,412,0.9445158249260641
+48189,400,1.0
+48191,383,0.9999999999999999
+48193,382,0.018198896324997063
+48193,394,0.28378537043559937
+48193,413,0.043325114476928495
+48193,418,0.6546906187624751
+48195,383,0.9999999999999999
+48197,420,1.0
+48199,386,0.9989750160153748
+48199,397,0.0010249839846252402
+48201,397,0.9999999999999997
+48203,219,0.6478798128932974
+48203,399,0.35212018710670256
+48205,383,1.0
+48207,382,0.9991523987116461
+48207,420,0.0008476012883539584
+48209,385,0.9996117295855691
+48209,412,0.00038827041443092927
+48211,383,1.0
+48213,391,0.7784215351703763
+48213,416,0.2215784648296236
+48215,396,0.2096904097495244
+48215,402,0.7903095902504758
+48217,391,0.011200091196671322
+48217,394,0.10125680412664939
+48217,418,0.8875431046766794
+48219,400,0.9999999999999999
+48221,394,1.0
+48223,391,0.9631978612667444
+48223,416,0.0368021387332556
+48225,397,0.07247598179673015
+48225,416,0.9275240182032697
+48227,400,1.0
+48229,393,1.0
+48231,391,0.9999999999999999
+48233,383,1.0
+48235,411,1.0
+48237,391,0.04444935869084476
+48237,394,0.2089783281733746
+48237,420,0.7465723131357807
+48239,397,0.04987566607460035
+48239,417,0.9501243339253995
+48241,386,0.9980397647717726
+48241,397,0.0019602352282273874
+48243,393,0.08557980316645272
+48243,406,0.9144201968335472
+48245,386,0.9956000047567516
+48245,397,0.004399995243248385
+48247,412,1.0
+48249,390,1.0
+48251,391,0.045861104853777146
+48251,394,0.9541388951462229
+48253,382,1.0
+48255,412,0.9996627091203454
+48255,417,0.0003372908796546141
+48257,391,1.0000000000000002
+48259,412,0.9999999999999999
+48261,390,0.8674033149171271
+48261,396,0.13259668508287292
+48263,400,1.0
+48265,412,0.9999999999999999
+48267,411,0.014760147601476013
+48267,412,0.985239852398524
+48269,383,0.08391608391608392
+48269,400,0.9160839160839158
+48271,412,1.0
+48273,390,1.0
+48275,420,1.0000000000000002
+48277,391,0.9999999999999999
+48279,400,1.0
+48281,382,0.0007623113279463332
+48281,413,0.9957818773186969
+48281,418,0.003455811353356711
+48283,412,0.9999999999999999
+48285,397,0.5081762965270207
+48285,417,0.49182370347297927
+48287,385,0.7017818444497953
+48287,397,0.02883457741391765
+48287,413,0.269383578136287
+48289,388,0.5197904886613893
+48289,416,0.48020951133861084
+48291,386,0.05042105680631387
+48291,397,0.949578943193686
+48293,416,0.018687991789257608
+48293,418,0.9813120082107425
+48295,339,0.46365838885523925
+48295,383,0.5363416111447606
+48297,390,0.985864192177608
+48297,412,0.014135807822391815
+48299,385,0.9967359204186311
+48299,412,0.003264079581368841
+48301,406,1.0
+48303,400,0.9999999999999999
+48305,400,0.9999999999999999
+48307,382,0.0006036460219727152
+48307,411,0.9972232282989255
+48307,412,0.0021731256791017745
+48309,413,0.013269137442210926
+48309,418,0.986730862557789
+48311,390,0.011315417256011316
+48311,412,0.9886845827439886
+48313,388,1.0
+48315,22,0.018016309501232692
+48315,399,0.9819836904987673
+48317,400,0.08399333055439766
+48317,406,0.9160066694456023
+48319,385,0.02567298105682951
+48319,411,0.007726819541375872
+48319,412,0.9666001994017946
+48321,397,1.0000000000000002
+48323,412,1.0
+48325,412,1.0000000000000002
+48327,411,0.9433541480820695
+48327,412,0.05664585191793041
+48329,406,1.0
+48331,388,0.0022619865088661798
+48331,413,0.9977380134911339
+48333,382,0.9951377633711508
+48333,413,0.0042544570502431114
+48333,418,0.0006077795786061589
+48335,400,1.0000000000000002
+48337,391,0.4831888026776206
+48337,420,0.5168111973223795
+48339,397,1.0000000000000002
+48341,383,1.0
+48343,399,0.6276480593783826
+48343,416,0.3723519406216174
+48345,383,0.027272727272727268
+48345,400,0.9727272727272727
+48347,397,1.0
+48349,391,0.9956216612548446
+48349,418,0.0043783387451555465
+48351,214,0.09768085842852198
+48351,386,0.90079612322603
+48351,397,0.001523018345448252
+48353,382,0.9719374342797058
+48353,400,0.0007229232386961093
+48353,411,0.027339642481598318
+48355,390,1.0
+48357,383,1.0
+48359,383,1.0000000000000002
+48361,386,1.0
+48363,382,0.0016719433673650884
+48363,394,0.9983280566326349
+48365,219,0.9627668515716926
+48365,397,0.025256345604303246
+48365,399,0.011976802824004035
+48367,394,1.0
+48369,383,0.5104684000389522
+48369,400,0.4895315999610477
+48371,406,0.8974375524430387
+48371,411,0.10256244755696121
+48373,386,0.0027965560522317397
+48373,397,0.9972034439477684
+48375,383,0.9999999999999999
+48377,393,0.0024471921689850594
+48377,406,0.9975528078310151
+48379,391,0.3642111050027488
+48379,416,0.6357888949972513
+48381,383,0.9999999999999999
+48383,400,0.0044550044550044545
+48383,411,0.9955449955449956
+48385,412,1.0
+48387,391,1.0
+48389,406,1.0
+48391,390,0.0513341460111066
+48391,417,0.9486658539888935
+48393,383,1.0
+48395,388,0.9827337263867163
+48395,418,0.0172662736132836
+48397,391,1.0
+48399,382,0.022283592038853443
+48399,411,0.9777164079611463
+48401,219,0.002381398837427339
+48401,397,0.07087942996437278
+48401,399,0.22103881492593286
+48401,416,0.705700356272267
+48403,386,0.036736200849178516
+48403,397,0.9632637991508214
+48405,397,1.0
+48407,397,1.0000000000000002
+48409,390,1.0
+48411,382,0.9618270799347473
+48411,385,0.003588907014681892
+48411,411,0.01892332789559543
+48411,412,0.0099510603588907
+48411,413,0.005709624796084829
+48413,411,1.0
+48415,382,0.00171384669936765
+48415,400,0.9982861533006323
+48417,382,1.0
+48419,219,0.12366394215655455
+48419,397,0.8763360578434456
+48421,383,1.0
+48423,399,0.007972762905671534
+48423,416,0.9920272370943282
+48425,394,1.0000000000000002
+48427,402,1.0
+48429,382,0.9917964693665627
+48429,394,0.008203530633437175
+48431,411,1.0
+48433,382,0.993288590604027
+48433,400,0.006711409395973154
+48435,411,1.0
+48437,383,0.8437738731856379
+48437,400,0.1562261268143621
+48439,391,0.05518580634747606
+48439,394,0.944814193652524
+48441,382,0.9995057259744801
+48441,411,0.0004942740255197482
+48443,406,0.9634146341463414
+48443,411,0.03658536585365853
+48445,400,1.0
+48447,382,0.0042656916514320535
+48447,394,0.06825106642291286
+48447,420,0.9274832419256551
+48449,416,1.0
+48451,411,1.0
+48453,385,0.9990910564247957
+48453,412,3.514711998640978e-05
+48453,413,0.0008737964552176876
+48455,397,0.9874528625299966
+48455,416,0.012547137470003428
+48457,386,1.0
+48459,399,0.5416571268666208
+48459,416,0.4583428731333791
+48461,406,0.6697466467958272
+48461,411,0.3302533532041728
+48463,412,1.0000000000000002
+48465,411,0.0012685941112679803
+48465,412,0.998731405888732
+48467,391,0.3696152456303848
+48467,416,0.6303847543696152
+48469,397,0.0007258649891120251
+48469,417,0.999274135010888
+48471,388,0.001871472568927661
+48471,397,0.9981285274310726
+48473,388,0.0007175095475060758
+48473,397,0.9992824904524938
+48475,406,0.9999999999999999
+48477,388,0.000800759238388991
+48477,397,0.9991992407616109
+48479,412,0.9999999999999999
+48481,397,1.0
+48483,383,1.0
+48485,420,1.0
+48487,420,0.9999999999999999
+48489,396,0.9999999999999999
+48491,385,0.8263836149891524
+48491,413,0.17361638501084747
+48493,412,1.0
+48495,406,1.0
+48497,391,0.5642261572547229
+48497,394,0.4357738427452772
+48499,391,0.006839195500905538
+48499,416,0.9931608044990945
+48501,400,1.0
+48503,382,0.0007008086253369272
+48503,394,0.7574123989218329
+48503,420,0.24188679245283023
+48505,402,0.014124696818376373
+48505,412,0.9858753031816236
+48507,412,1.0
+49001,422,0.5970734650776889
+49001,423,0.40292653492231106
+49003,421,0.895407703851926
+49003,423,0.10459229614807404
+49005,423,1.0
+49007,423,1.0
+49009,423,1.0
+49011,421,0.6459039607933985
+49011,423,0.3540960392066015
+49013,423,0.9999999999999998
+49015,423,1.0
+49017,423,0.9999999999999999
+49019,105,0.006395663956639566
+49019,423,0.9936043360433604
+49021,423,1.0
+49023,422,0.982036512740408
+49023,423,0.017963487259591918
+49025,423,0.9999999999999999
+49027,422,0.9996800767815723
+49027,423,0.00031992321842757736
+49029,421,0.9810962086809588
+49029,423,0.01890379131904108
+49031,423,1.0
+49033,423,1.0
+49035,423,0.9999999999999999
+49037,12,0.028889190288891906
+49037,293,0.2039197070391971
+49037,423,0.767191102671911
+49039,422,1.0000000000000002
+49041,422,0.2265493533342949
+49041,423,0.7734506466657052
+49043,423,1.0
+49045,422,0.0004983331614943122
+49045,423,0.9995016668385057
+49047,105,6.137228427642077e-05
+49047,423,0.9999386277157235
+49049,422,0.9966238452544118
+49049,423,0.0033761547455881556
+49051,422,0.9540161495962601
+49051,423,0.04598385040373991
+49053,423,0.9999999999999999
+49055,423,0.9999999999999998
+49057,421,1.0
+50001,281,0.016865375736672007
+50001,424,0.983134624263328
+50003,230,0.04274747474747475
+50003,281,0.03507070707070707
+50003,295,0.904026936026936
+50003,424,0.01815488215488216
+50005,281,0.912191372850418
+50005,424,0.0878086271495821
+50007,424,0.9999999999999999
+50009,281,0.9999999999999999
+50011,424,1.0000000000000002
+50013,424,1.0
+50015,424,1.0
+50017,281,0.7223182195189383
+50017,424,0.2776817804810616
+50019,281,0.8917777532958762
+50019,424,0.10822224670412398
+50021,281,0.00885759709289121
+50021,424,0.9911424029071086
+50023,281,0.010313434340040985
+50023,424,0.9896865656599588
+50025,281,0.903286680295644
+50025,295,0.09671331970435602
+50027,281,1.0000000000000002
+51001,225,0.34937724298078954
+51001,430,0.6506227570192105
+51003,427,1.0
+51005,427,0.036000000000000004
+51005,432,0.964
+51007,431,1.0
+51009,427,0.0040181745124099775
+51009,428,0.9959818254875902
+51011,428,0.9977292459760904
+51011,431,0.0022707540239097048
+51013,426,0.9999999999999999
+51015,427,0.9999999999999998
+51017,427,0.9999999999999999
+51019,428,0.7926641039082067
+51019,432,0.20733589609179337
+51021,432,1.0
+51023,432,1.0
+51025,431,1.0000000000000002
+51027,376,1.0
+51029,427,0.4235390178467281
+51029,428,0.02542867141024146
+51029,431,0.5510323107430304
+51031,428,0.9999999999999998
+51033,431,1.0
+51035,320,0.9411490579854869
+51035,432,0.05885094201451302
+51036,429,0.007855567805953693
+51036,431,0.9921444321940462
+51037,312,0.375814396948991
+51037,428,0.1960114412839663
+51037,431,0.42817416176704276
+51041,431,0.9999999999999999
+51043,435,0.9999999999999999
+51045,432,1.0
+51047,426,0.12045663860866584
+51047,427,0.879543361391334
+51049,427,0.006167926780740151
+51049,431,0.9938320732192598
+51051,376,1.0
+51053,431,1.0
+51057,431,1.0
+51059,426,1.0000000000000002
+51061,426,0.9644188150851954
+51061,431,0.01648697145836848
+51061,435,0.019094213456436054
+51063,320,0.0196347928529354
+51063,432,0.9803652071470647
+51065,427,0.9847806624888094
+51065,431,0.01521933751119069
+51067,312,0.03093003792802578
+51067,428,0.06679249986645061
+51067,432,0.9022774622055236
+51069,435,1.0
+51071,432,1.0000000000000002
+51073,429,1.0
+51075,427,0.05396693834323342
+51075,431,0.9460330616567666
+51077,320,0.8977660464816842
+51077,376,0.09849996781046802
+51077,432,0.0037339857078478077
+51079,427,1.0
+51081,431,0.9999999999999999
+51083,312,0.9929637703153886
+51083,428,0.007036229684611352
+51085,431,1.0
+51087,431,0.9999999999999999
+51089,312,0.9979317094790494
+51089,432,0.002068290520950675
+51091,427,1.0
+51093,429,0.6901899631414801
+51093,430,0.30981003685852
+51095,429,1.0
+51097,429,0.45514758819294454
+51097,431,0.5448524118070555
+51099,431,1.0
+51101,431,0.9999999999999999
+51103,431,1.0
+51105,376,0.8985422284753977
+51105,377,0.10145777152460234
+51107,426,0.9958919154304523
+51107,435,0.004108084569547662
+51109,427,0.5185051126594877
+51109,431,0.48149488734051216
+51111,312,0.03167105466935109
+51111,431,0.9683289453306488
+51113,427,0.9999999999999999
+51115,429,1.0
+51117,312,0.4157117975983133
+51117,431,0.5842882024016868
+51119,429,0.425403777716945
+51119,431,0.574596222283055
+51121,432,1.0
+51125,427,0.6922103861517976
+51125,428,0.3077896138482024
+51127,429,0.2510716805035542
+51127,431,0.7489283194964458
+51131,430,1.0000000000000002
+51133,431,1.0
+51135,431,1.0
+51137,427,0.6516233087422717
+51137,431,0.34837669125772824
+51139,427,0.2276848847849596
+51139,435,0.7723151152150404
+51141,312,0.061763115197404
+51141,320,0.9268253109789076
+51141,432,0.01141157382368848
+51143,312,0.7624791358296854
+51143,428,0.23032469372972636
+51143,432,0.007196170440588291
+51145,431,0.9999999999999999
+51147,428,0.06179390619650805
+51147,431,0.938206093803492
+51149,431,0.9999999999999999
+51153,426,1.0
+51155,432,1.0
+51157,426,0.5989420859894209
+51157,427,0.2560694425606944
+51157,435,0.1449884714498847
+51159,431,1.0
+51161,432,1.0
+51163,427,0.12995920563051958
+51163,432,0.8700407943694806
+51165,427,0.9999999999999999
+51167,376,1.0
+51169,376,1.0
+51171,427,0.12892624961303073
+51171,435,0.8710737503869692
+51173,376,0.9659090909090908
+51173,432,0.03409090909090909
+51175,430,0.9461497038233709
+51175,431,0.05385029617662897
+51177,427,0.0027288250529016234
+51177,431,0.9972711749470983
+51179,426,0.014965764843634898
+51179,431,0.9850342351563651
+51181,429,0.4936242561632189
+51181,430,0.1391328988381978
+51181,431,0.3672428449985832
+51183,430,0.15165053363117398
+51183,431,0.848349466368826
+51185,376,0.4391055503793425
+51185,432,0.5608944496206576
+51187,435,1.0
+51191,376,1.0
+51193,431,0.9999999999999999
+51195,376,1.0
+51197,320,0.0013682230203523175
+51197,432,0.9986317769796477
+51199,429,1.0
+51510,426,1.0
+51515,428,1.0
+51520,376,1.0
+51530,432,1.0
+51540,427,1.0
+51550,430,1.0000000000000002
+51570,431,1.0
+51580,432,1.0
+51590,312,0.9999999999999999
+51595,431,1.0
+51600,426,1.0
+51610,426,1.0
+51620,430,1.0
+51630,431,1.0
+51640,320,1.0
+51650,429,1.0
+51660,427,0.9999999999999999
+51670,431,1.0
+51678,432,1.0
+51680,428,1.0
+51683,426,1.0000000000000002
+51685,426,1.0
+51690,312,1.0
+51700,429,1.0
+51710,430,0.9999999999999999
+51720,376,1.0
+51730,431,1.0
+51735,429,1.0
+51740,430,0.9999999999999999
+51750,432,1.0
+51760,431,0.9999999999999999
+51770,432,1.0
+51775,432,1.0
+51790,427,1.0
+51800,430,1.0
+51810,430,1.0
+51820,427,1.0
+51830,429,0.9999999999999999
+51840,435,1.0
+53001,440,1.0
+53003,440,1.0
+53005,344,0.001215913047945792
+53005,440,0.920954234859599
+53005,442,0.07782985209245506
+53007,440,1.0
+53009,439,1.0
+53011,344,0.9999999999999999
+53013,440,0.9999999999999999
+53015,344,0.9999999999999999
+53017,440,1.0
+53019,440,1.0
+53021,440,1.0000000000000002
+53023,440,0.9999999999999999
+53025,440,0.9940417414721726
+53025,442,0.005958258527827648
+53027,438,0.20009066307677514
+53027,439,0.7999093369232249
+53029,437,1.0
+53031,439,1.0
+53033,437,0.00032466036228368276
+53033,439,0.99924763715088
+53033,441,0.0004277024868362392
+53035,439,0.9799707724592148
+53035,441,0.02002922754078516
+53037,439,0.00791885616522058
+53037,440,0.00019552731272149575
+53037,442,0.9918856165220581
+53039,344,0.9801653706073431
+53039,442,0.019834629392656757
+53041,344,0.014750513551123187
+53041,438,0.9744748525611293
+53041,441,0.010774633887747666
+53043,440,1.0
+53045,438,0.704756256280993
+53045,439,0.2952437437190069
+53047,440,1.0
+53049,344,0.5409177820267687
+53049,438,0.411376673040153
+53049,439,0.047705544933078395
+53051,440,0.9999999999999999
+53053,439,0.009306799962274827
+53053,441,0.9906932000377254
+53055,437,1.0
+53057,437,0.9974422802200152
+53057,439,0.002557719779984773
+53059,344,1.0
+53061,437,0.6340064626017229
+53061,439,0.34877441875135806
+53063,440,0.9999999999999999
+53065,440,1.0000000000000002
+53067,438,1.0
+53069,344,1.0
+53071,440,1.0
+53073,437,0.01093765536442279
+53073,439,0.9890623446355773
+53075,440,0.9999999999999999
+53077,442,0.9999999999999998
+54001,443,0.02778949906564591
+54001,445,0.9722105009343542
+54003,435,1.0
+54005,443,0.98765682731739
+54005,444,0.012343172682609932
+54007,443,1.0
+54009,357,1.0
+54011,444,0.9999999999999999
+54013,443,1.0
+54015,443,1.0
+54017,443,0.1359424530602292
+54017,445,0.8640575469397709
+54019,443,1.0
+54021,443,1.0000000000000002
+54023,113,0.06726983329144677
+54023,435,0.8893356789813185
+54023,445,0.04339448772723465
+54025,443,0.9999999999999999
+54027,113,0.19771323652144884
+54027,435,0.8022867634785512
+54029,357,1.0
+54031,427,0.1215686274509804
+54031,435,0.8784313725490195
+54033,443,0.013820749938494043
+54033,445,0.986179250061506
+54035,443,0.991510047584814
+54035,444,0.00848995241518606
+54037,435,1.0
+54039,443,1.0
+54041,443,1.0
+54043,443,0.3329189686924493
+54043,444,0.6670810313075507
+54045,443,0.9813025610320334
+54045,444,0.018697438967966686
+54047,376,0.15303215303215306
+54047,432,0.8067200289422514
+54047,443,0.0402478180255958
+54049,357,0.00017724839590201708
+54049,445,0.9998227516040978
+54051,357,0.9999999999999998
+54053,443,0.02979066022544283
+54053,444,0.9702093397745573
+54055,432,0.9835860208145958
+54055,443,0.01641397918540409
+54057,113,1.0
+54059,204,0.01520175863482246
+54059,432,0.005663400275718171
+54059,443,0.9791348410894594
+54061,445,0.9999999999999999
+54063,432,0.5481410161457563
+54063,443,0.4518589838542438
+54065,113,0.050453223875491705
+54065,435,0.9495467761245083
+54067,443,0.9999999999999999
+54069,357,1.0
+54071,427,0.6432748538011696
+54071,435,0.2645873944119558
+54071,445,0.0921377517868746
+54073,443,0.9999999999999999
+54075,427,0.5930726000688152
+54075,443,0.17995182933822687
+54075,445,0.22697557059295792
+54077,445,0.9999999999999999
+54079,443,0.9580074252964711
+54079,444,0.04199257470352882
+54081,443,1.0
+54083,443,0.004216969903077708
+54083,445,0.9957830300969224
+54085,443,0.9949277442817495
+54085,445,0.0050722557182505505
+54087,443,1.0
+54089,432,0.07905507288001723
+54089,443,0.920944927119983
+54091,445,1.0000000000000002
+54093,445,1.0
+54095,357,0.5268245004344049
+54095,443,0.45612510860121636
+54095,445,0.0170503909643788
+54097,443,0.9873835243671146
+54097,445,0.012616475632885295
+54099,443,0.03128457428026647
+54099,444,0.9687154257197336
+54101,443,1.0
+54103,357,0.9090031960441418
+54103,445,0.09099680395585841
+54105,443,1.0
+54107,329,0.06879341276047657
+54107,443,0.9312065872395235
+54109,432,0.0850563119852076
+54109,443,0.9149436880147923
+55001,449,0.8239041916167665
+55001,450,0.17609580838323355
+55003,250,0.8551711332549359
+55003,450,0.14482886674506407
+55005,251,0.5194462611728798
+55005,256,0.024613036843252667
+55005,450,0.4559407019838675
+55007,250,0.9999999999999998
+55009,446,0.00411681928332668
+55009,447,0.9958831807166733
+55011,251,0.3721204092146905
+55011,253,0.22470008095974095
+55011,448,0.40317950982556855
+55013,251,0.9934010480688361
+55013,256,0.006598951931163874
+55015,446,0.8302668926507526
+55015,451,0.013354842661983623
+55015,452,0.1563782646872639
+55017,251,0.21882560281983499
+55017,450,0.781174397180165
+55019,251,0.0004612280196021909
+55019,450,0.9995387719803978
+55021,449,1.0000000000000002
+55023,448,0.9632900745013219
+55023,449,0.03670992549867819
+55025,449,1.0
+55027,449,0.6507734426931355
+55027,451,0.25110693000146467
+55027,452,0.09811962730540003
+55029,447,1.0
+55031,250,0.989628388324011
+55031,251,0.01037161167598904
+55033,251,0.9847686800282736
+55033,253,0.01283717536539207
+55033,256,0.002394144606334223
+55035,251,0.9509803921568626
+55035,450,0.049019607843137254
+55037,240,0.06805335744969478
+55037,447,0.9319466425503051
+55039,446,0.004171873308866215
+55039,451,0.8179036336622948
+55039,452,0.17792449302883903
+55041,240,0.01816423043852107
+55041,447,0.044926913155631985
+55041,456,0.9369088564058469
+55043,193,0.535638962662084
+55043,448,0.05381971566942665
+55043,449,0.4105413216684893
+55045,449,1.0000000000000002
+55047,449,0.07343446538239462
+55047,452,0.9265655346176054
+55049,193,0.0010976484991767636
+55049,449,0.9989023515008234
+55051,250,0.7021636240703177
+55051,450,0.29783637592968215
+55053,251,0.05604186023766443
+55053,448,0.11907672746833586
+55053,450,0.8248814122939997
+55055,449,0.9092201801974045
+55055,451,0.09077981980259542
+55057,448,0.003712871287128713
+55057,449,0.9846609660966097
+55057,450,0.011626162616261626
+55059,451,1.0
+55061,447,1.0
+55063,448,1.0
+55065,193,0.2660370634354954
+55065,449,0.7339629365645046
+55067,446,0.964559243129599
+55067,456,0.03544075687040096
+55069,456,1.0
+55071,446,0.012892610692271801
+55071,447,0.8834753566955625
+55071,451,0.1036320326121657
+55073,446,0.0064074353102645774
+55073,450,0.19328226281673544
+55073,456,0.8003103018729999
+55075,447,1.0
+55077,449,0.47890158400415483
+55077,450,0.0009088548428979487
+55077,452,0.5201895611529473
+55078,446,0.9180056710775047
+55078,447,0.08199432892249527
+55079,451,1.0
+55081,448,0.9461419649452689
+55081,449,0.05332079779732725
+55081,450,0.0005372372574038008
+55083,446,0.03090812533191715
+55083,447,0.9690918746680829
+55085,446,0.0005000277793210734
+55085,450,0.25634757486527027
+55085,456,0.7431523973554086
+55087,446,0.9362460737428904
+55087,447,0.06329550921078694
+55087,452,0.00045841704632275956
+55089,451,0.9999999999999998
+55091,251,0.08408086758602222
+55091,253,0.9159191324139777
+55093,251,0.13618079426607183
+55093,253,0.14154416246129842
+55093,256,0.7210560959555328
+55095,251,0.11537156430268068
+55095,256,0.8846284356973192
+55097,446,0.006412545166312001
+55097,450,0.9873462917208186
+55097,452,0.0007283737271312072
+55097,456,0.005512789385738156
+55099,450,0.9662405537114203
+55099,456,0.0337594462885797
+55101,451,1.0
+55103,448,0.06941901115365408
+55103,449,0.9305809888463459
+55105,449,0.9986465499497913
+55105,451,0.001353450050208631
+55107,251,0.04235852253473399
+55107,450,0.9576414774652661
+55109,251,0.04524275297883692
+55109,256,0.954757247021163
+55111,449,1.0000000000000002
+55113,250,0.7772543335145256
+55113,450,0.22274566648547442
+55115,446,0.7778016162483015
+55115,447,0.09652196715058763
+55115,456,0.12567641660111087
+55117,451,1.0
+55119,450,0.9999999999999998
+55121,251,0.2241116046640755
+55121,448,0.7748126041088285
+55121,450,0.0010757912270960577
+55123,448,0.8668928223558257
+55123,449,0.13310717764417423
+55125,450,0.5501633224451703
+55125,456,0.4498366775548297
+55127,449,0.13435653636968345
+55127,451,0.8656434636303164
+55129,250,0.056187543209100625
+55129,251,0.790585129784426
+55129,450,0.1532273270064735
+55131,451,0.9999999999999999
+55133,449,0.00012824096991210363
+55133,451,0.999871759030088
+55135,446,0.9996183934363672
+55135,452,0.00038160656363289447
+55137,446,0.05057968647942522
+55137,449,0.0007756368386675376
+55137,450,0.19893043762246898
+55137,452,0.7497142390594382
+55139,446,0.032863456172078045
+55139,451,0.00029941195492053606
+55139,452,0.9659508724864366
+55141,450,1.0
+56001,104,0.9972451031708862
+56001,457,0.0027548968291137496
+56003,274,0.9999999999999999
+56005,274,1.0000000000000002
+56007,103,0.06295247088448222
+56007,104,0.08114573497009757
+56007,457,0.8559017941454202
+56009,457,0.9999999999999998
+56011,370,0.2452350698856417
+56011,457,0.7547649301143582
+56013,457,0.9999999999999999
+56015,103,0.003622914936976376
+56015,104,0.04792814552041663
+56015,457,0.9484489395426069
+56017,274,0.003117206982543641
+56017,457,0.9968827930174563
+56019,274,0.022873147391760995
+56019,457,0.977126852608239
+56021,104,1.0
+56023,423,1.0
+56025,457,1.0
+56027,103,0.05877616747181964
+56027,457,0.9412238325281803
+56029,274,1.0
+56031,457,1.0
+56033,274,0.9880821541420524
+56033,457,0.011917845857947522
+56035,423,0.9999999999999999
+56037,423,0.9858238597452404
+56037,457,0.014176140254759623
+56039,274,0.0038038884192730343
+56039,423,0.9961961115807271
+56041,423,1.0
+56043,274,0.9999999999999999
+56045,457,1.0
diff --git a/_delphi_utils_python/delphi_utils/data/fips_msa_cross.csv b/_delphi_utils_python/delphi_utils/data/fips_msa_table.csv
similarity index 90%
rename from _delphi_utils_python/delphi_utils/data/fips_msa_cross.csv
rename to _delphi_utils_python/delphi_utils/data/fips_msa_table.csv
index 6516857d8..99829ad3d 100644
--- a/_delphi_utils_python/delphi_utils/data/fips_msa_cross.csv
+++ b/_delphi_utils_python/delphi_utils/data/fips_msa_table.csv
@@ -41,10 +41,10 @@ fips,msa
48381,11100
19015,11180
19169,11180
-2020,11260
-2170,11260
+02020,11260
+02170,11260
26161,11460
-1015,11500
+01015,11500
55015,11540
55087,11540
72013,11640
@@ -89,7 +89,7 @@ fips,msa
13255,12060
13297,12060
34001,12100
-1081,12220
+01081,12220
13033,12260
13073,12260
13181,12260
@@ -102,7 +102,7 @@ fips,msa
48209,12420
48453,12420
48491,12420
-6029,12540
+06029,12540
24003,12580
24005,12580
24013,12580
@@ -136,12 +136,12 @@ fips,msa
30111,13740
36007,13780
36107,13780
-1007,13820
-1009,13820
-1021,13820
-1073,13820
-1115,13820
-1117,13820
+01007,13820
+01009,13820
+01021,13820
+01073,13820
+01115,13820
+01117,13820
38015,13900
38059,13900
38065,13900
@@ -166,13 +166,13 @@ fips,msa
25017,14460
33015,14460
33017,14460
-8013,14500
+08013,14500
21003,14540
21031,14540
21061,14540
21227,14540
53035,14740
-9001,14860
+09001,14860
48061,15180
13025,15260
13127,15260
@@ -246,7 +246,7 @@ fips,msa
18127,16980
17097,16980
55059,16980
-6007,17020
+06007,17020
18029,17140
18047,17140
18115,17140
@@ -278,8 +278,8 @@ fips,msa
48041,17780
48051,17780
48395,17780
-8041,17820
-8119,17820
+08041,17820
+08119,17820
29019,17860
29053,17860
29089,17860
@@ -289,7 +289,7 @@ fips,msa
45063,17900
45079,17900
45081,17900
-1113,17980
+01113,17980
13053,17980
13145,17980
13197,17980
@@ -328,7 +328,7 @@ fips,msa
13213,19140
13313,19140
17183,19180
-1003,19300
+01003,19300
17073,19340
17131,19340
17161,19340
@@ -336,21 +336,21 @@ fips,msa
39057,19430
39109,19430
39113,19430
-1079,19460
-1103,19460
+01079,19460
+01103,19460
17115,19500
12035,19660
12127,19660
-8001,19740
-8005,19740
-8014,19740
-8019,19740
-8031,19740
-8035,19740
-8039,19740
-8047,19740
-8059,19740
-8093,19740
+08001,19740
+08005,19740
+08014,19740
+08019,19740
+08031,19740
+08035,19740
+08039,19740
+08047,19740
+08059,19740
+08093,19740
19049,19780
19077,19780
19099,19780
@@ -363,9 +363,9 @@ fips,msa
26099,19820
26125,19820
26147,19820
-1061,20020
-1067,20020
-1069,20020
+01061,20020
+01067,20020
+01069,20020
10001,20100
19061,20220
27017,20260
@@ -380,7 +380,7 @@ fips,msa
42089,20700
55017,20740
55035,20740
-6025,20940
+06025,20940
21093,21060
21123,21060
21163,21060
@@ -395,32 +395,32 @@ fips,msa
18163,21780
18173,21780
21101,21780
-2090,21820
+02090,21820
27027,22020
38017,22020
35045,22140
37051,22180
37085,22180
37093,22180
-5007,22220
-5087,22220
-5143,22220
-4005,22380
+05007,22220
+05087,22220
+05143,22220
+04005,22380
26049,22420
45031,22500
45041,22500
-1033,22520
-1077,22520
+01033,22520
+01077,22520
55039,22540
-8069,22660
-5033,22900
-5047,22900
-5131,22900
+08069,22660
+05033,22900
+05047,22900
+05131,22900
40135,22900
18003,23060
18183,23060
-6019,23420
-1055,23460
+06019,23420
+01055,23460
12001,23540
12041,23540
12075,23540
@@ -434,14 +434,14 @@ fips,msa
31079,24260
31093,24260
31121,24260
-8077,24300
+08077,24300
26067,24340
26081,24340
26117,24340
26139,24340
41033,24420
30013,24500
-8123,24540
+08123,24540
55009,24580
55061,24580
55083,24580
@@ -464,15 +464,15 @@ fips,msa
54003,25180
54065,25180
22105,25220
-6031,25260
+06031,25260
42041,25420
42043,25420
42099,25420
51165,25500
51660,25500
-9003,25540
-9007,25540
-9013,25540
+09003,25540
+09007,25540
+09013,25540
28031,25620
28035,25620
28073,25620
@@ -486,7 +486,7 @@ fips,msa
13179,25980
13183,25980
12017,26140
-5051,26300
+05051,26300
22057,26380
22109,26380
48015,26420
@@ -505,8 +505,8 @@ fips,msa
54011,26580
54079,26580
54099,26580
-1083,26620
-1089,26620
+01083,26620
+01089,26620
16019,26820
16023,26820
16051,26820
@@ -551,8 +551,8 @@ fips,msa
47171,27740
47179,27740
42021,27780
-5031,27860
-5111,27860
+05031,27860
+05111,27860
29097,27900
29145,27900
15009,27980
@@ -605,7 +605,7 @@ fips,msa
18171,29200
22019,29340
22023,29340
-4015,29420
+04015,29420
12105,29460
42071,29540
26037,29620
@@ -631,12 +631,12 @@ fips,msa
39003,30620
31109,30700
31159,30700
-5045,30780
-5053,30780
-5085,30780
-5105,30780
-5119,30780
-5125,30780
+05045,30780
+05053,30780
+05085,30780
+05105,30780
+05119,30780
+05125,30780
16041,30860
49005,30860
48183,30980
@@ -644,8 +644,8 @@ fips,msa
48401,30980
48459,30980
53015,31020
-6059,31080
-6037,31080
+06059,31080
+06037,31080
18019,31140
18043,31140
18061,31140
@@ -669,7 +669,7 @@ fips,msa
13169,31420
13207,31420
13289,31420
-6039,31460
+06039,31460
55021,31540
55025,31540
55045,31540
@@ -686,7 +686,7 @@ fips,msa
72097,32420
48215,32580
41029,32780
-5035,32820
+05035,32820
28033,32820
28093,32820
28137,32820
@@ -694,7 +694,7 @@ fips,msa
47047,32820
47157,32820
47167,32820
-6047,32900
+06047,32900
12011,33100
12086,33100
12099,33100
@@ -722,17 +722,17 @@ fips,msa
55093,33460
55109,33460
30063,33540
-1097,33660
-1129,33660
-6099,33700
+01097,33660
+01129,33660
+06099,33700
22067,33740
22073,33740
22111,33740
26115,33780
-1001,33860
-1051,33860
-1085,33860
-1101,33860
+01001,33860
+01051,33860
+01085,33860
+01101,33860
54061,34060
54077,34060
47057,34100
@@ -743,7 +743,7 @@ fips,msa
26121,34740
37019,34820
45051,34820
-6055,34900
+06055,34900
12021,34940
47015,34980
47021,34980
@@ -761,7 +761,7 @@ fips,msa
37049,35100
37103,35100
37137,35100
-9009,35300
+09009,35300
22051,35380
22071,35380
22075,35380
@@ -796,7 +796,7 @@ fips,msa
26021,35660
12081,35840
12115,35840
-9011,35980
+09011,35980
12083,36100
34009,36140
48135,36220
@@ -828,7 +828,7 @@ fips,msa
21059,36980
21091,36980
21149,36980
-6111,37100
+06111,37100
12009,37340
12005,37460
54105,37620
@@ -852,11 +852,11 @@ fips,msa
10003,37980
24015,37980
34033,37980
-4013,38060
-4021,38060
-5025,38220
-5069,38220
-5079,38220
+04013,38060
+04021,38060
+05025,38220
+05069,38220
+05079,38220
42003,38300
42005,38300
42007,38300
@@ -885,7 +885,7 @@ fips,msa
12111,38940
36027,39100
36071,39100
-4025,39150
+04025,39150
25005,39300
44001,39300
44003,39300
@@ -894,7 +894,7 @@ fips,msa
44009,39300
49023,39340
49049,39340
-8101,39380
+08101,39380
12015,39460
55101,39540
37069,39580
@@ -903,7 +903,7 @@ fips,msa
46093,39660
46103,39660
42011,39740
-6089,39820
+06089,39820
32029,39900
32031,39900
51007,40060
@@ -923,8 +923,8 @@ fips,msa
51670,40060
51730,40060
51760,40060
-6065,40140
-6071,40140
+06065,40140
+06071,40140
51023,40220
51045,40220
51067,40220
@@ -946,10 +946,10 @@ fips,msa
37065,40580
37127,40580
13115,40660
-6017,40900
-6061,40900
-6067,40900
-6113,40900
+06017,40900
+06061,40900
+06067,40900
+06113,40900
26145,40980
27009,41060
27145,41060
@@ -975,7 +975,7 @@ fips,msa
29510,41180
41047,41420
41053,41420
-6053,41500
+06053,41500
10005,41540
24039,41540
24045,41540
@@ -993,18 +993,18 @@ fips,msa
48259,41700
48325,41700
48493,41700
-6073,41740
-6001,41860
-6013,41860
-6075,41860
-6081,41860
-6041,41860
+06073,41740
+06001,41860
+06013,41860
+06075,41860
+06081,41860
+06041,41860
72023,41900
72079,41900
72121,41900
72125,41900
-6069,41940
-6085,41940
+06069,41940
+06085,41940
72007,41980
72009,41980
72017,41980
@@ -1045,11 +1045,11 @@ fips,msa
72143,41980
72145,41980
72151,41980
-6079,42020
-6087,42100
+06079,42020
+06087,42100
35049,42140
-6083,42200
-6097,42220
+06083,42200
+06097,42220
13029,42340
13051,42340
13103,42340
@@ -1066,7 +1066,7 @@ fips,msa
22015,43340
22017,43340
22031,43340
-4003,43420
+04003,43420
19193,43580
31043,43580
31051,43580
@@ -1095,7 +1095,7 @@ fips,msa
51015,44420
51790,44420
51820,44420
-6077,44700
+06077,44700
45027,44940
45085,44940
36053,45060
@@ -1114,8 +1114,8 @@ fips,msa
18153,45460
18165,45460
18167,45460
-5081,45500
-5091,45500
+05081,45500
+05091,45500
48037,45500
12119,45540
39051,45780
@@ -1128,7 +1128,7 @@ fips,msa
20177,45820
20197,45820
34021,45940
-4019,46060
+04019,46060
40037,46140
40111,46140
40113,46140
@@ -1136,10 +1136,10 @@ fips,msa
40131,46140
40143,46140
40145,46140
-1063,46220
-1065,46220
-1107,46220
-1125,46220
+01063,46220
+01065,46220
+01107,46220
+01125,46220
16053,46300
16083,46300
48423,46340
@@ -1150,7 +1150,7 @@ fips,msa
13101,46660
13173,46660
13185,46660
-6095,46700
+06095,46700
48175,47020
48469,47020
34011,47220
@@ -1173,7 +1173,7 @@ fips,msa
51800,47260
51810,47260
51830,47260
-6107,47300
+06107,47300
48145,47380
48309,47380
53071,47460
@@ -1236,7 +1236,7 @@ fips,msa
37067,49180
37169,49180
37197,49180
-9015,49340
+09015,49340
25027,49340
53077,49420
72055,49500
@@ -1247,6 +1247,6 @@ fips,msa
39099,49660
39155,49660
42085,49660
-6101,49700
-6115,49700
-4027,49740
+06101,49700
+06115,49700
+04027,49740
diff --git a/_delphi_utils_python/delphi_utils/data/fips_pop.csv b/_delphi_utils_python/delphi_utils/data/fips_pop.csv
index f49161c06..6cbf6ea40 100644
--- a/_delphi_utils_python/delphi_utils/data/fips_pop.csv
+++ b/_delphi_utils_python/delphi_utils/data/fips_pop.csv
@@ -1,3147 +1,3200 @@
fips,pop
-01001,54571
-01003,182262
-01005,27457
-01007,22915
-01009,57322
-01011,10914
-01013,20947
-01015,118567
-01017,34215
-01019,25989
-01021,43643
-01023,13859
-01025,25833
-01027,13932
-01029,14972
-01031,49944
-01033,54428
-01035,13228
-01037,11539
-01039,37765
-01041,13906
-01043,80406
-01045,50248
-01047,43820
-01049,71109
-01051,79303
-01053,38319
-01055,104430
-01057,17241
-01059,31704
-01061,26790
-01063,9045
-01065,15760
-01067,17302
-01069,101547
-01071,53227
-01073,658466
-01075,14564
-01077,92709
-01079,34339
-01081,140247
-01083,82782
-01085,11299
-01087,21452
-01089,334811
-01091,21027
-01093,30776
-01095,93019
-01097,412992
-01099,23068
-01101,229363
-01103,119490
-01105,10591
-01107,19746
-01109,32899
-01111,22913
-01113,52944
-01115,83593
-01117,195085
-01119,13763
-01121,82291
-01123,41616
-01125,194656
-01127,67023
-01129,17581
-01131,11670
-01133,24484
-02013,3138
-02016,5362
-02020,291826
-02050,17011
-02060,997
-02068,1826
-02070,4847
-02090,97581
-02100,2507
-02105,2150
-02110,31275
-02122,55398
-02130,13475
-02150,13579
-02164,1631
-02170,88995
-02180,9492
-02185,9352
-02188,7523
-02195,3815
-02198,5559
-02220,8880
-02230,968
-02240,7029
-02261,9636
-02270,7459
-02275,2369
-02282,662
-02290,5588
-04001,71518
-04003,131346
-04005,134419
-04007,53597
-04009,37217
-04011,8437
-04012,20489
-04013,3817115
-04015,200186
-04017,107442
-04019,980259
-04021,375704
-04023,47420
-04025,211033
-04027,195751
-05001,19019
-05003,21853
-05005,41513
-05007,221339
-05009,36903
-05011,11508
-05013,5368
-05015,27446
-05017,11800
-05019,22995
-05021,16083
-05023,25970
-05025,8689
-05027,24552
-05029,21273
-05031,96443
-05033,61948
-05035,50902
-05037,17870
-05039,8116
-05041,13008
-05043,18509
-05045,113237
-05047,18125
-05049,12245
-05051,96024
-05053,17853
-05055,42090
-05057,22609
-05059,32923
-05061,13789
-05063,36647
-05065,13696
-05067,17997
-05069,77435
-05071,25540
-05073,7645
-05075,17415
-05077,10424
-05079,14134
-05081,13171
-05083,22353
-05085,68356
-05087,15717
-05089,16653
-05091,43462
-05093,46475
-05095,8149
-05097,9487
-05099,8997
-05101,8330
-05103,26120
-05105,10445
-05107,21756
-05109,11291
-05111,24583
-05113,20662
-05115,61754
-05117,8715
-05119,382748
-05121,17969
-05123,28258
-05125,107118
-05127,11233
-05129,8195
-05131,125744
-05133,17058
-05135,17264
-05137,12394
-05139,41639
-05141,17295
-05143,203065
-05145,77076
-05147,7260
-05149,22185
-06001,1510231
-06003,1175
-06005,38091
-06007,219996
-06009,45576
-06011,21419
-06013,1049019
-06015,28596
-06017,181058
-06019,930421
-06021,28122
-06023,134592
-06025,174528
-06027,18473
-06029,839470
-06031,152968
-06033,64659
-06035,34895
-06037,9818535
-06039,150865
-06041,252406
-06043,18251
-06045,87810
-06047,255792
-06049,9684
-06051,14192
-06053,415054
-06055,136484
-06057,98761
-06059,3010204
-06061,348432
-06063,19995
-06065,2189581
-06067,1418788
-06069,55269
-06071,2035051
-06073,3092174
-06075,805232
-06077,685306
-06079,269621
-06081,718451
-06083,423886
-06085,1781642
-06087,262382
-06089,177222
-06091,3239
-06093,44900
-06095,413343
-06097,483878
-06099,514453
-06101,94737
-06103,63459
-06105,13765
-06107,442179
-06109,55356
-06111,823301
-06113,200849
-06115,72150
-08001,441603
-08003,15445
-08005,572003
-08007,12084
-08009,3788
-08011,6499
-08013,294567
-08014,55889
-08015,17809
-08017,1836
-08019,9088
-08021,8256
-08023,3524
-08025,5823
-08027,4255
-08029,30952
-08031,600158
-08033,2064
-08035,285465
-08037,52197
-08039,23086
-08041,622263
-08043,46824
-08045,56389
-08047,5441
-08049,14843
-08051,15324
-08053,843
-08055,6711
-08057,1394
-08059,534543
-08061,1398
-08063,8270
-08065,7310
-08067,51334
-08069,299630
-08071,15507
-08073,5467
-08075,22709
-08077,146723
-08079,712
-08081,13795
-08083,25535
-08085,41276
-08087,28159
-08089,18831
-08091,4436
-08093,16206
-08095,4442
-08097,17148
-08099,12551
-08101,159063
-08103,6666
-08105,11982
-08107,23509
-08109,6108
-08111,699
-08113,7359
-08115,2379
-08117,27994
-08119,23350
-08121,4814
-08123,252825
-08125,10043
-09001,916829
-09003,894014
-09005,189927
-09007,165676
-09009,862477
-09011,274055
-09013,152691
-09015,118428
-10001,162310
-10003,538479
-10005,197145
-11001,601723
-12001,247336
-12003,27113
-12005,168851
-12007,28520
-12009,543376
-12011,1748066
-12013,14625
-12015,159978
-12017,141236
-12019,190865
-12021,321520
-12023,67531
-12027,34862
-12029,16421
-12031,864263
-12033,297619
-12035,95696
-12037,11549
-12039,46389
-12041,16939
-12043,12884
-12045,15863
-12047,14799
-12049,27731
-12051,39140
-12053,172778
-12055,98786
-12057,1229226
-12059,19927
-12061,138028
-12063,49746
-12065,14761
-12067,8870
-12069,297052
-12071,618754
-12073,275486
-12075,40786
-12077,8364
-12079,19224
-12081,322833
-12083,331298
-12085,146318
-12086,2496417
-12087,73066
-12089,73314
-12091,180822
-12093,39996
-12095,1145956
-12097,268685
-12099,1320127
-12101,464697
-12103,916542
-12105,602095
-12107,74364
-12109,190039
-12111,277789
-12113,151370
-12115,379448
-12117,422718
-12119,93420
-12121,41551
-12123,22559
-12125,15535
-12127,494593
-12129,30775
-12131,55043
-12133,24896
-13001,18236
-13003,8375
-13005,11096
-13007,3451
-13009,45720
-13011,18395
-13013,69367
-13015,100157
-13017,17634
-13019,19286
-13021,155547
-13023,13063
-13025,18411
-13027,16243
-13029,30233
-13031,70217
-13033,23316
-13035,23655
-13037,6694
-13039,50512
-13043,10998
-13045,110527
-13047,63942
-13049,12166
-13051,265122
-13053,11267
-13055,26015
-13057,214346
-13059,116714
-13061,3183
-13063,259424
-13065,6789
-13067,688078
-13069,42356
-13071,45498
-13073,124053
-13075,17212
-13077,127317
-13079,12630
-13081,23439
-13083,16633
-13085,22330
-13087,27842
-13089,691893
-13091,21796
-13093,14918
-13095,94565
-13097,132403
-13099,11008
-13101,4034
-13103,52250
-13105,20166
-13107,22598
-13109,11000
-13111,23682
-13113,106567
-13115,96317
-13117,175511
-13119,22084
-13121,920581
-13123,28292
-13125,3082
-13127,79626
-13129,55186
-13131,25011
-13133,15994
-13135,805321
-13137,43041
-13139,179684
-13141,9429
-13143,28780
-13145,32024
-13147,25213
-13149,11834
-13151,203922
-13153,139900
-13155,9538
-13157,60485
-13159,13900
-13161,15068
-13163,16930
-13165,8340
-13167,9980
-13169,28669
-13171,18317
-13173,10078
-13175,48434
-13177,28298
-13179,63453
-13181,7996
-13183,14464
-13185,109233
-13187,29966
-13189,21875
-13191,14333
-13193,14740
-13195,28120
-13197,8742
-13199,21992
-13201,6125
-13205,23498
-13207,26424
-13209,9123
-13211,17868
-13213,39628
-13215,189885
-13217,99958
-13219,32808
-13221,14899
-13223,142324
-13225,27695
-13227,29431
-13229,18758
-13231,17869
-13233,41475
-13235,12010
-13237,21218
-13239,2513
-13241,16276
-13243,7719
-13245,200549
-13247,85215
-13249,5010
-13251,14593
-13253,8729
-13255,64073
-13257,26175
-13259,6058
-13261,32819
-13263,6865
-13265,1717
-13267,25520
-13269,8906
-13271,16500
-13273,9315
-13275,44720
-13277,40118
-13279,27223
-13281,10471
-13283,6885
-13285,67044
-13287,8930
-13289,9023
-13291,21356
-13293,27153
-13295,68756
-13297,83768
-13299,36312
-13301,5834
-13303,21187
-13305,30099
-13307,2799
-13309,7421
-13311,27144
-13313,102599
-13315,9255
-13317,10593
-13319,9563
-13321,21679
-15001,185079
-15003,953207
-15005,90
-15007,67091
-15009,154834
-16001,392365
-16003,3976
-16005,82839
-16007,5986
-16009,9285
-16011,45607
-16013,21376
-16015,7028
-16017,40877
-16019,104234
-16021,10972
-16023,2891
-16025,1117
-16027,188923
-16029,6963
-16031,22952
-16033,982
-16035,8761
-16037,4368
-16039,27038
-16041,12786
-16043,13242
-16045,16719
-16047,15464
-16049,16267
-16051,26136
-16053,22374
-16055,138494
-16057,37244
-16059,7936
-16061,3821
-16063,5208
-16065,37536
-16067,20069
-16069,39265
-16071,4286
-16073,11526
-16075,22623
-16077,7817
-16079,12763
-16081,10170
-16083,77228
-16085,9861
-16087,10198
-17001,67103
-17003,8238
-17005,17768
-17007,54165
-17009,6937
-17011,34978
-17013,5089
-17015,15387
-17017,13640
-17019,201081
-17021,34800
-17023,16335
-17025,13815
-17027,37762
-17029,53873
-17031,5194675
-17033,19817
-17035,11048
-17037,105160
-17039,16561
-17041,19980
-17043,916924
-17045,18576
-17047,6721
-17049,34242
-17051,22140
-17053,14081
-17055,39561
-17057,37069
-17059,5589
-17061,13886
-17063,50063
-17065,8457
-17067,19104
-17069,4320
-17071,7331
-17073,50486
-17075,29718
-17077,60218
-17079,9698
-17081,38827
-17083,22985
-17085,22678
-17087,12582
-17089,515269
-17091,113449
-17093,114736
-17095,52919
-17097,703462
-17099,113924
-17101,16833
-17103,36031
-17105,38950
-17107,30305
-17109,32612
-17111,308760
-17113,169572
-17115,110768
-17117,47765
-17119,269282
-17121,39437
-17123,12640
-17125,14666
-17127,15429
-17129,12705
-17131,16434
-17133,32957
-17135,30104
-17137,35547
-17139,14846
-17141,53497
-17143,186494
-17145,22350
-17147,16729
-17149,16430
-17151,4470
-17153,6161
-17155,6006
-17157,33476
-17159,16233
-17161,147546
-17163,270056
-17165,24913
-17167,197465
-17169,7542
-17171,5355
-17173,22363
-17175,5994
-17177,47711
-17179,135394
-17181,17808
-17183,81625
-17185,11947
-17187,17707
-17189,14716
-17191,16760
-17193,14665
-17195,58498
-17197,677560
-17199,66357
-17201,295266
-17203,38664
-18001,34387
-18003,355329
-18005,76794
-18007,8854
-18009,12766
-18011,56640
-18013,15242
-18015,20155
-18017,38966
-18019,110232
-18021,26890
-18023,33224
-18025,10713
-18027,31648
-18029,50047
-18031,25740
-18033,42223
-18035,117671
-18037,41889
-18039,197559
-18041,24277
-18043,74578
-18045,17240
-18047,23087
-18049,20836
-18051,33503
-18053,70061
-18055,33165
-18057,274569
-18059,70002
-18061,39364
-18063,145448
-18065,49462
-18067,82752
-18069,37124
-18071,42376
-18073,33478
-18075,21253
-18077,32428
-18079,28525
-18081,139654
-18083,38440
-18085,77358
-18087,37128
-18089,496005
-18091,111467
-18093,46134
-18095,131636
-18097,903393
-18099,47051
-18101,10334
-18103,36903
-18105,137974
-18107,38124
-18109,68894
-18111,14244
-18113,47536
-18115,6128
-18117,19840
-18119,21575
-18121,17339
-18123,19338
-18125,12845
-18127,164343
-18129,25910
-18131,13402
-18133,37963
-18135,26171
-18137,28818
-18139,17392
-18141,266931
-18143,24181
-18145,44436
-18147,20952
-18149,23363
-18151,34185
-18153,21475
-18155,10613
-18157,172780
-18159,15936
-18161,7516
-18163,179703
-18165,16212
-18167,107848
-18169,32888
-18171,8508
-18173,59689
-18175,28262
-18177,68917
-18179,27636
-18181,24643
-18183,33292
-19001,7682
-19003,4029
-19005,14330
-19007,12887
-19009,6119
-19011,26076
-19013,131090
-19015,26306
-19017,24276
-19019,20958
-19021,20260
-19023,14867
-19025,9670
-19027,20816
-19029,13956
-19031,18499
-19033,44151
-19035,12072
-19037,12439
-19039,9286
-19041,16667
-19043,18129
-19045,49116
-19047,17096
-19049,66135
-19051,8753
-19053,8457
-19055,17764
-19057,40325
-19059,16667
-19061,93653
-19063,10302
-19065,20880
-19067,16303
-19069,10680
-19071,7441
-19073,9336
-19075,12453
-19077,10954
-19079,15673
-19081,11341
-19083,17534
-19085,14928
-19087,20145
-19089,9566
-19091,9815
-19093,7089
-19095,16355
-19097,19848
-19099,36842
-19101,16843
-19103,130882
-19105,20638
-19107,10511
-19109,15543
-19111,35862
-19113,211226
-19115,11387
-19117,8898
-19119,11581
-19121,15679
-19123,22381
-19125,33309
-19127,40648
-19129,15059
-19131,10776
-19133,9243
-19135,7970
-19137,10740
-19139,42745
-19141,14398
-19143,6462
-19145,15932
-19147,9421
-19149,24986
-19151,7310
-19153,430640
-19155,93158
-19157,18914
-19159,5131
-19161,10350
-19163,165224
-19165,12167
-19167,33704
-19169,89542
-19171,17767
-19173,6317
-19175,12534
-19177,7570
-19179,35625
-19181,46225
-19183,21704
-19185,6403
-19187,38013
-19189,10866
-19191,21056
-19193,102172
-19195,7598
-19197,13229
-20001,13371
-20003,8102
-20005,16924
-20007,4861
-20009,27674
-20011,15173
-20013,9984
-20015,65880
-20017,2790
-20019,3669
-20021,21603
-20023,2726
-20025,2215
-20027,8535
-20029,9533
-20031,8601
-20033,1891
-20035,36311
-20037,39134
-20039,2961
-20041,19754
-20043,7945
-20045,110826
-20047,3037
-20049,2882
-20051,28452
-20053,6497
-20055,36776
-20057,33848
-20059,25992
-20061,34362
-20063,2695
-20065,2597
-20067,7829
-20069,6006
-20071,1247
-20073,6689
-20075,2690
-20077,6034
-20079,34684
-20081,4256
-20083,1916
-20085,13462
-20087,19126
-20089,3077
-20091,544179
-20093,3977
-20095,7858
-20097,2553
-20099,21605
-20101,1750
-20103,76227
-20105,3241
-20107,9656
-20109,2756
-20111,33690
-20113,29180
-20115,12660
-20117,10117
-20119,4575
-20121,32787
-20123,6373
-20125,35471
-20127,5923
-20129,3233
-20131,10178
-20133,16512
-20135,3107
-20137,5671
-20139,16295
-20141,3858
-20143,6091
-20145,6973
-20147,5642
-20149,21604
-20151,9656
-20153,2519
-20155,64511
-20157,4980
-20159,10083
-20161,71115
-20163,5181
-20165,3307
-20167,6970
-20169,55606
-20171,4936
-20173,498365
-20175,22952
-20177,177934
-20179,2556
-20181,6010
-20183,3853
-20185,4437
-20187,2235
-20189,5724
-20191,24132
-20193,7900
-20195,3001
-20197,7053
-20199,1485
-20201,5799
-20203,2234
-20205,9409
-20207,3309
-20209,157505
-21001,18656
-21003,19956
-21005,21421
-21007,8249
-21009,42173
-21011,11591
-21013,28691
-21015,118811
-21017,19985
-21019,49542
-21021,28432
-21023,8488
-21025,13878
-21027,20059
-21029,74319
-21031,12690
-21033,12984
-21035,37191
-21037,90336
-21039,5104
-21041,10811
-21043,27720
-21045,15955
-21047,73955
-21049,35613
-21051,21730
-21053,10272
-21055,9315
-21057,6856
-21059,96656
-21061,12161
-21063,7852
-21065,14672
-21067,295803
-21069,14348
-21071,39451
-21073,49285
-21075,6813
-21077,8589
-21079,16912
-21081,24662
-21083,37121
-21085,25746
-21087,11258
-21089,36910
-21091,8565
-21093,105543
-21095,29278
-21097,18846
-21099,18199
-21101,46250
-21103,15416
-21105,4902
-21107,46920
-21109,13494
-21111,741096
-21113,48586
-21115,23356
-21117,159720
-21119,16346
-21121,31883
-21123,14193
-21125,58849
-21127,15860
-21129,7887
-21131,11310
-21133,24519
-21135,13870
-21137,24742
-21139,9519
-21141,26835
-21143,8314
-21145,65565
-21147,18306
-21149,9531
-21151,82916
-21153,13333
-21155,19820
-21157,31448
-21159,12929
-21161,17490
-21163,28602
-21165,6306
-21167,21331
-21169,10099
-21171,10963
-21173,26499
-21175,13923
-21177,31499
-21179,43437
-21181,7135
-21183,23842
-21185,60316
-21187,10841
-21189,4755
-21191,14877
-21193,28712
-21195,65024
-21197,12613
-21199,63063
-21201,2282
-21203,17056
-21205,23333
-21207,17565
-21209,47173
-21211,42074
-21213,17327
-21215,17061
-21217,24512
-21219,12460
-21221,14339
-21223,8809
-21225,15007
-21227,113792
-21229,11717
-21231,20813
-21233,13621
-21235,35637
-21237,7355
-21239,24939
-22001,61773
-22003,25764
-22005,107215
-22007,23421
-22009,42073
-22011,35654
-22013,14353
-22015,116979
-22017,254969
-22019,192768
-22021,10132
-22023,6839
-22025,10407
-22027,17195
-22029,20822
-22031,26656
-22033,440171
-22035,7759
-22037,20267
-22039,33984
-22041,20767
-22043,22309
-22045,73234
-22047,33375
-22049,16274
-22051,432543
-22053,31594
-22055,221578
-22057,96318
-22059,14890
-22061,46735
-22063,128026
-22065,12093
-22067,27979
-22069,39566
-22071,343829
-22073,153720
-22075,23042
-22077,22802
-22079,131613
-22081,9091
-22083,20725
-22085,24233
-22087,35890
-22089,52780
-22091,11203
-22093,22096
-22095,45924
-22097,83384
-22099,52160
-22101,54635
-22103,233735
-22105,121097
-22107,5252
-22109,111860
-22111,22721
-22113,57997
-22115,52334
-22117,47168
-22119,41207
-22121,23788
-22123,11604
-22125,15625
-22127,15313
-23001,107702
-23003,71870
-23005,281674
-23007,30768
-23009,54415
-23011,122151
-23013,39736
-23015,34457
-23017,57833
-23019,153923
-23021,17535
-23023,35293
-23025,52228
-23027,38786
-23029,32856
-23031,197131
-24001,75087
-24003,537656
-24005,805029
-24009,88737
-24011,33066
-24013,167134
-24015,101108
-24017,146551
-24019,32618
-24021,233385
-24023,30097
-24025,244826
-24027,287085
-24029,20197
-24031,971777
-24033,863420
-24035,47798
-24037,105151
-24039,26470
-24041,37782
-24043,147430
-24045,98733
-24047,51454
-24510,620961
-25001,215888
-25003,131219
-25005,548285
-25007,16535
-25009,743159
-25011,71372
-25013,463490
-25015,158080
-25017,1503085
-25019,10172
-25021,670850
-25023,494919
-25025,722020
-25027,798552
-26001,10942
-26003,9601
-26005,111408
-26007,29598
-26009,23580
-26011,15899
-26013,8860
-26015,59173
-26017,107771
-26019,17525
-26021,156813
-26023,45248
-26025,136146
-26027,52293
-26029,25949
-26031,26152
-26033,38520
-26035,30926
-26037,75382
-26039,14072
-26041,37069
-26043,26168
-26045,107759
-26047,32694
-26049,425790
-26051,25692
-26053,16427
-26055,86986
-26057,42476
-26059,46688
-26061,36628
-26063,33118
-26065,280895
-26067,63905
-26069,25887
-26071,11817
-26073,70311
-26075,160248
-26077,250331
-26079,17153
-26081,602622
-26083,2156
-26085,11539
-26087,88319
-26089,21708
-26091,99892
-26093,180967
-26095,6631
-26097,11113
-26099,840978
-26101,24733
-26103,67077
-26105,28705
-26107,42798
-26109,24029
-26111,83629
-26113,14849
-26115,152021
-26117,63342
-26119,9765
-26121,172188
-26123,48460
-26125,1202362
-26127,26570
-26129,21699
-26131,6780
-26133,23528
-26135,8640
-26137,24164
-26139,263801
-26141,13376
-26143,24449
-26145,200169
-26147,163040
-26149,61295
-26151,43114
-26153,8485
-26155,70648
-26157,55729
-26159,76258
-26161,344791
-26163,1820584
-26165,32735
-27001,16202
-27003,330844
-27005,32504
-27007,44442
-27009,38451
-27011,5269
-27013,64013
-27015,25893
-27017,35386
-27019,91042
-27021,28567
-27023,12441
-27025,53887
-27027,58999
-27029,8695
-27031,5176
-27033,11687
-27035,62500
-27037,398552
-27039,20087
-27041,36009
-27043,14553
-27045,20866
-27047,31255
-27049,46183
-27051,6018
-27053,1152425
-27055,19027
-27057,20428
-27059,37816
-27061,45058
-27063,10266
-27065,16239
-27067,42239
-27069,4552
-27071,13311
-27073,7259
-27075,10866
-27077,4044
-27079,27703
-27081,5896
-27083,25857
-27085,36651
-27087,5413
-27089,9439
-27091,20840
-27093,23300
-27095,26097
-27097,33198
-27099,39163
-27101,8725
-27103,32727
-27105,21378
-27107,6852
-27109,144248
-27111,57303
-27113,13930
-27115,29750
-27117,9596
-27119,31600
-27121,10995
-27123,508640
-27125,4089
-27127,16059
-27129,15730
-27131,64142
-27133,9687
-27135,15629
-27137,200226
-27139,129928
-27141,88499
-27143,15226
-27145,150642
-27147,36576
-27149,9726
-27151,9783
-27153,24895
-27155,3558
-27157,21676
-27159,13843
-27161,19136
-27163,238136
-27165,11211
-27167,6576
-27169,51461
-27171,124700
-27173,10438
-28001,32297
-28003,37057
-28005,13131
-28007,19564
-28009,8729
-28011,34145
-28013,14962
-28015,10597
-28017,17392
-28019,8547
-28021,9604
-28023,16732
-28025,20634
-28027,26151
-28029,29449
-28031,19568
-28033,161252
-28035,74934
-28037,8118
-28039,22578
-28041,14400
-28043,21906
-28045,43929
-28047,187105
-28049,245285
-28051,19198
-28053,9375
-28055,1406
-28057,23401
-28059,139668
-28061,17062
-28063,7726
-28065,12487
-28067,67761
-28069,10456
-28071,47351
-28073,55658
-28075,80261
-28077,12929
-28079,23805
-28081,82910
-28083,32317
-28085,34869
-28087,59779
-28089,95203
-28091,27088
-28093,37144
-28095,36989
-28097,10925
-28099,29676
-28101,21720
-28103,11545
-28105,47671
-28107,34707
-28109,55834
-28111,12250
-28113,40404
-28115,29957
-28117,25276
-28119,8223
-28121,141617
-28123,28264
-28125,4916
-28127,27503
-28129,16491
-28131,17786
-28133,29450
-28135,15378
-28137,28886
-28139,22232
-28141,19593
-28143,10778
-28145,27134
-28147,15443
-28149,48773
-28151,51137
-28153,20747
-28155,10253
-28157,9878
-28159,19198
-28161,12678
-28163,28065
-29001,25607
-29003,17291
-29005,5685
-29007,25529
-29009,35597
-29011,12402
-29013,17049
-29015,19056
-29017,12363
-29019,162642
-29021,89201
-29023,42794
-29025,9424
-29027,44332
-29029,44002
-29031,75674
-29033,9295
-29035,6265
-29037,99478
-29039,13982
-29041,7831
-29043,77422
-29045,7139
-29047,221939
-29049,20743
-29051,75990
-29053,17601
-29055,24696
-29057,7883
-29059,16777
-29061,8433
-29063,12892
-29065,15657
-29067,13684
-29069,31953
-29071,101492
-29073,15222
-29075,6738
-29077,275174
-29079,10261
-29081,8957
-29083,22272
-29085,9627
-29087,4912
-29089,10144
-29091,40400
-29093,10630
-29095,674158
-29097,117404
-29099,218733
-29101,52595
-29103,4131
-29105,35571
-29107,33381
-29109,38634
-29111,10211
-29113,52566
-29115,12761
-29117,15195
-29119,23083
-29121,15566
-29123,12226
-29125,9176
-29127,28781
-29129,3785
-29131,24748
-29133,14358
-29135,15607
-29137,8840
-29139,12236
-29141,20565
-29143,18956
-29145,58114
-29147,23370
-29149,10881
-29151,13878
-29153,9723
-29155,18296
-29157,18971
-29159,42201
-29161,45156
-29163,18516
-29165,89322
-29167,31137
-29169,52274
-29171,4979
-29173,10167
-29175,25414
-29177,23494
-29179,6696
-29181,14100
-29183,360485
-29185,9805
-29186,18145
-29187,65359
-29189,998954
-29195,23370
-29197,4431
-29199,4843
-29201,39191
-29203,8441
-29205,6373
-29207,29968
-29209,32202
-29211,6714
-29213,51675
-29215,26008
-29217,21159
-29219,32513
-29221,25195
-29223,13521
-29225,36202
-29227,2171
-29229,18815
-29510,319294
-30001,9246
-30003,12851
-30005,6491
-30007,5612
-30009,10076
-30011,1160
-30013,81327
-30015,5813
-30017,11699
-30019,1751
-30021,8966
-30023,9298
-30025,2890
-30027,11586
-30029,90928
-30031,89513
-30033,1206
-30035,13399
-30037,884
-30039,3079
-30041,16096
-30043,11406
-30045,2072
-30047,28746
-30049,63395
-30051,2339
-30053,19687
-30055,1734
-30057,7691
-30059,1891
-30061,4223
-30063,109299
-30065,4538
-30067,15636
-30069,494
-30071,4253
-30073,6153
-30075,1743
-30077,7027
-30079,1179
-30081,40212
-30083,9746
-30085,10425
-30087,9233
-30089,11413
-30091,3384
-30093,34200
-30095,9117
-30097,3651
-30099,6073
-30101,5324
-30103,718
-30105,7369
-30107,2168
-30109,1017
-30111,147972
-31001,31364
-31003,6685
-31005,460
-31007,690
-31009,478
-31011,5505
-31013,11308
-31015,2099
-31017,3145
-31019,46102
-31021,6858
-31023,8395
-31025,25241
-31027,8852
-31029,3966
-31031,5713
-31033,9998
-31035,6542
-31037,10515
-31039,9139
-31041,10939
-31043,21006
-31045,9182
-31047,24326
-31049,1941
-31051,6000
-31053,36691
-31055,517110
-31057,2008
-31059,5890
-31061,3225
-31063,2756
-31065,4959
-31067,22311
-31069,2057
-31071,2049
-31073,2044
-31075,614
-31077,2538
-31079,58607
-31081,9124
-31083,3423
-31085,967
-31087,2908
-31089,10435
-31091,736
-31093,6274
-31095,7547
-31097,5217
-31099,6489
-31101,8368
-31103,824
-31105,3821
-31107,8701
-31109,285407
-31111,36288
-31113,763
-31115,632
-31117,539
-31119,34876
-31121,7845
-31123,5042
-31125,3735
-31127,7248
-31129,4500
-31131,15740
-31133,2773
-31135,2970
-31137,9188
-31139,7266
-31141,32237
-31143,5406
-31145,11055
-31147,8363
-31149,1526
-31151,14200
-31153,158840
-31155,20780
-31157,36970
-31159,16750
-31161,5469
-31163,3152
-31165,1311
-31167,6129
-31169,5228
-31171,647
-31173,6940
-31175,4260
-31177,20234
-31179,9595
-31181,3812
-31183,818
-31185,13665
-32001,24877
-32003,1951269
-32005,46997
-32007,48804
-32009,782
-32011,1987
-32013,16528
-32015,5775
-32017,5345
-32019,51980
-32021,4772
-32023,43946
-32027,6753
-32029,4010
-32031,421407
-32033,10030
-32510,55274
-33001,60088
-33003,47818
-33005,77117
-33007,33055
-33009,89118
-33011,400721
-33013,146445
-33015,295223
-33017,123143
-33019,43742
-34001,274549
-34003,905116
-34005,448734
-34007,513657
-34009,97265
-34011,156898
-34013,783969
-34015,288288
-34017,634266
-34019,128349
-34021,366513
-34023,809858
-34025,630380
-34027,492276
-34029,576567
-34031,501226
-34033,66083
-34035,323444
-34037,149265
-34039,536499
-34041,108692
-35001,662564
-35003,3725
-35005,65645
-35006,27203
-35007,13750
-35009,48376
-35011,2022
-35013,209233
-35015,53829
-35017,29514
-35019,4687
-35021,695
-35023,4894
-35025,64727
-35027,20497
-35028,17950
-35029,25095
-35031,71379
-35033,4881
-35035,63797
-35037,9041
-35039,40244
-35041,19846
-35043,131559
-35045,129743
-35047,29376
-35049,144170
-35051,11986
-35053,17817
-35055,32933
-35057,16383
-35059,4549
-35061,76569
-36001,304204
-36003,48946
-36005,1385108
-36007,200600
-36009,80317
-36011,80026
-36013,134905
-36015,88830
-36017,50477
-36019,82128
-36021,63096
-36023,49336
-36025,47980
-36027,297488
-36029,919040
-36031,39370
-36033,51599
-36035,55531
-36037,60079
-36039,49221
-36041,4836
-36043,64519
-36045,116229
-36047,2504700
-36049,27087
-36051,65393
-36053,73442
-36055,744344
-36057,50219
-36059,1339532
-36061,1585848
-36063,216469
-36065,234878
-36067,467026
-36069,107931
-36071,372813
-36073,42883
-36075,122109
-36077,62259
-36079,99710
-36081,2230722
-36083,159429
-36085,468730
-36087,311687
-36089,111944
-36091,219607
-36093,154727
-36095,32749
-36097,18343
-36099,35251
-36101,98990
-36103,1493350
-36105,77547
-36107,51125
-36109,101564
-36111,182493
-36113,65707
-36115,63216
-36117,93772
-36119,949113
-36121,42155
-36123,25348
-37001,151131
-37003,37198
-37005,11155
-37007,26948
-37009,27281
-37011,17797
-37013,47759
-37015,21282
-37017,35190
-37019,107431
-37021,238318
-37023,90912
-37025,178011
-37027,83029
-37029,9980
-37031,66469
-37033,23719
-37035,154358
-37037,63505
-37039,27444
-37041,14793
-37043,10587
-37045,98078
-37047,58098
-37049,103505
-37051,319431
-37053,23547
-37055,33920
-37057,162878
-37059,41240
-37061,58505
-37063,267587
-37065,56552
-37067,350670
-37069,60619
-37071,206086
-37073,12197
-37075,8861
-37077,59916
-37079,21362
-37081,488406
-37083,54691
-37085,114678
-37087,59036
-37089,106740
-37091,24669
-37093,46952
-37095,5810
-37097,159437
-37099,40271
-37101,168878
-37103,10153
-37105,57866
-37107,59495
-37109,78265
-37111,44996
-37113,33922
-37115,20764
-37117,24505
-37119,919628
-37121,15579
-37123,27798
-37125,88247
-37127,95840
-37129,202667
-37131,22099
-37133,177772
-37135,133801
-37137,13140
-37139,40661
-37141,52217
-37143,13453
-37145,39464
-37147,168148
-37149,20510
-37151,141752
-37153,46639
-37155,134168
-37157,93643
-37159,138428
-37161,67810
-37163,63431
-37165,36157
-37167,60585
-37169,47401
-37171,73673
-37173,13981
-37175,33090
-37177,4405
-37179,201292
-37181,45422
-37183,900993
-37185,20972
-37187,13228
-37189,51079
-37191,122623
-37193,69340
-37195,81234
-37197,38406
-37199,17818
-38001,2343
-38003,11066
-38005,6660
-38007,783
-38009,6429
-38011,3151
-38013,1968
-38015,81308
-38017,149778
-38019,3993
-38021,5289
-38023,2071
-38025,3536
-38027,2385
-38029,3550
-38031,3343
-38033,1680
-38035,66861
-38037,2394
-38039,2420
-38041,2477
-38043,2435
-38045,4139
-38047,1990
-38049,5395
-38051,2809
-38053,6360
-38055,8962
-38057,8424
-38059,27471
-38061,7673
-38063,3126
-38065,1846
-38067,7413
-38069,4357
-38071,11451
-38073,5457
-38075,2470
-38077,16321
-38079,13937
-38081,3829
-38083,1321
-38085,4153
-38087,727
-38089,24199
-38091,1975
-38093,21100
-38095,2246
-38097,8121
-38099,11119
-38101,61675
-38103,4207
-38105,22398
-39001,28550
-39003,106331
-39005,53139
-39007,101497
-39009,64757
-39011,45949
-39013,70400
-39015,44846
-39017,368130
-39019,28836
-39021,40097
-39023,138333
-39025,197363
-39027,42040
-39029,107841
-39031,36901
-39033,43784
-39035,1280122
-39037,52959
-39039,39037
-39041,174214
-39043,77079
-39045,146156
-39047,29030
-39049,1163414
-39051,42698
-39053,30934
-39055,93389
-39057,161573
-39059,40087
-39061,802374
-39063,74782
-39065,32058
-39067,15864
-39069,28215
-39071,43589
-39073,29380
-39075,42366
-39077,59626
-39079,33225
-39081,69709
-39083,60921
-39085,230041
-39087,62450
-39089,166492
-39091,45858
-39093,301356
-39095,441815
-39097,43435
-39099,238823
-39101,66501
-39103,172332
-39105,23770
-39107,40814
-39109,102506
-39111,14642
-39113,535153
-39115,15054
-39117,34827
-39119,86074
-39121,14645
-39123,41428
-39125,19614
-39127,36058
-39129,55698
-39131,28709
-39133,161419
-39135,42270
-39137,34499
-39139,124475
-39141,78064
-39143,60944
-39145,79499
-39147,56745
-39149,49423
-39151,375586
-39153,541781
-39155,210312
-39157,92582
-39159,52300
-39161,28744
-39163,13435
-39165,212693
-39167,61778
-39169,114520
-39171,37642
-39173,125488
-39175,22615
-40001,22683
-40003,5642
-40005,14182
-40007,5636
-40009,22119
-40011,11943
-40013,42416
-40015,29600
-40017,115541
-40019,47557
-40021,46987
-40023,15205
-40025,2475
-40027,255755
-40029,5925
-40031,124098
-40033,6193
-40035,15029
-40037,69967
-40039,27469
-40041,41487
-40043,4810
-40045,4151
-40047,60580
-40049,27576
-40051,52431
-40053,4527
-40055,6239
-40057,2922
-40059,3685
-40061,12769
-40063,14003
-40065,26446
-40067,6472
-40069,10957
-40071,46562
-40073,15034
-40075,9446
-40077,11154
-40079,50384
-40081,34273
-40083,41848
-40085,9423
-40087,34506
-40089,33147
-40091,20252
-40093,7527
-40095,15840
-40097,41259
-40099,13488
-40101,70990
-40103,11561
-40105,10536
-40107,12191
-40109,718633
-40111,40069
-40113,47472
-40115,31848
-40117,16577
-40119,77350
-40121,45837
-40123,37492
-40125,69442
-40127,11570
-40129,3647
-40131,86905
-40133,25482
-40135,42391
-40137,45048
-40139,20640
-40141,7992
-40143,603403
-40145,73085
-40147,50976
-40149,11629
-40151,8878
-40153,20081
-41001,16134
-41003,85579
-41005,375992
-41007,37039
-41009,49351
-41011,63043
-41013,20978
-41015,22364
-41017,157733
-41019,107667
-41021,1871
-41023,7445
-41025,7422
-41027,22346
-41029,203206
-41031,21720
-41033,82713
-41035,66374
-41037,7895
-41039,351715
-41041,46034
-41043,116672
-41045,31313
-41047,315335
-41049,11173
-41051,735334
-41053,75403
-41055,1765
-41057,25249
-41059,75889
-41061,25748
-41063,7008
-41065,25213
-41067,529710
-41069,1441
-41071,99193
-42001,101407
-42003,1223348
-42005,68941
-42007,170539
-42009,49762
-42011,411442
-42013,127089
-42015,62622
-42017,625249
-42019,183862
-42021,143679
-42023,5085
-42025,65249
-42027,153990
-42029,498886
-42031,39988
-42033,81642
-42035,39238
-42037,67295
-42039,88765
-42041,235406
-42043,268100
-42045,558979
-42047,31946
-42049,280566
-42051,136606
-42053,7716
-42055,149614
-42057,14845
-42059,38686
-42061,45913
-42063,88880
-42065,45200
-42067,24636
-42069,214437
-42071,519445
-42073,91108
-42075,133568
-42077,349497
-42079,320918
-42081,116111
-42083,43450
-42085,116638
-42087,46682
-42089,169842
-42091,799874
-42093,18267
-42095,297735
-42097,94528
-42099,45969
-42101,1526006
-42103,57369
-42105,17457
-42107,148289
-42109,39702
-42111,77742
-42113,6428
-42115,43356
-42117,41981
-42119,44947
-42121,54984
-42123,41815
-42125,207820
-42127,52822
-42129,365169
-42131,28276
-42133,434972
-44001,49875
-44003,166158
-44005,82888
-44007,626667
-44009,126979
-45001,25417
-45003,160099
-45005,10419
-45007,187126
-45009,15987
-45011,22621
-45013,162233
-45015,177843
-45017,15175
-45019,350209
-45021,55342
-45023,33140
-45025,46734
-45027,34971
-45029,38892
-45031,68681
-45033,32062
-45035,136555
-45037,26985
-45039,23956
-45041,136885
-45043,60158
-45045,451225
-45047,69661
-45049,21090
-45051,269291
-45053,24777
-45055,61697
-45057,76652
-45059,66537
-45061,19220
-45063,262391
-45065,10233
-45067,33062
-45069,28933
-45071,37508
-45073,74273
-45075,92501
-45077,119224
-45079,384504
-45081,19875
-45083,284307
-45085,107456
-45087,28961
-45089,34423
-45091,226073
-46003,2710
-46005,17398
-46007,3431
-46009,7070
-46011,31965
-46013,36531
-46015,5255
-46017,1912
-46019,10110
-46021,1466
-46023,9129
-46025,3691
-46027,13864
-46029,27227
-46031,4050
-46033,8216
-46035,19504
-46037,5710
-46039,4364
-46041,5301
-46043,3002
-46045,4071
-46047,7094
-46049,2364
-46051,7356
-46053,4271
-46055,1937
-46057,5903
-46059,3431
-46061,3331
-46063,1255
-46065,17022
-46067,7343
-46069,1420
-46071,3031
-46073,2071
-46075,1006
-46077,5148
-46079,11200
-46081,24097
-46083,44828
-46085,3755
-46087,5618
-46089,2459
-46091,4656
-46093,25434
-46095,2048
-46097,2389
-46099,169468
-46101,6486
-46103,100948
-46105,2982
-46107,2329
-46109,10149
-46111,2355
-46113,13586
-46115,6415
-46117,2966
-46119,1373
-46121,9612
-46123,5644
-46125,8347
-46127,14399
-46129,5438
-46135,22438
-46137,2801
-47001,75129
-47003,45058
-47005,16489
-47007,12876
-47009,123010
-47011,98963
-47013,40716
-47015,13801
-47017,28522
-47019,57424
-47021,39105
-47023,17131
-47025,32213
-47027,7861
-47029,35662
-47031,52796
-47033,14586
-47035,56053
-47037,626681
-47039,11757
-47041,18723
-47043,49666
-47045,38335
-47047,38413
-47049,17959
-47051,41052
-47053,49683
-47055,29485
-47057,22657
-47059,68831
-47061,13703
-47063,62544
-47065,336463
-47067,6819
-47069,27253
-47071,26026
-47073,56833
-47075,18787
-47077,27769
-47079,32330
-47081,24690
-47083,8426
-47085,18538
-47087,11638
-47089,51407
-47091,18244
-47093,432226
-47095,7832
-47097,27815
-47099,41869
-47101,12161
-47103,33361
-47105,48556
-47107,52266
-47109,26075
-47111,22248
-47113,98294
-47115,28237
-47117,30617
-47119,80956
-47121,11753
-47123,44519
-47125,172331
-47127,6362
-47129,21987
-47131,31807
-47133,22083
-47135,7915
-47137,5077
-47139,16825
-47141,72321
-47143,31809
-47145,54181
-47147,66283
-47149,262604
-47151,22228
-47153,14112
-47155,89889
-47157,927644
-47159,19166
-47161,13324
-47163,156823
-47165,160645
-47167,61081
-47169,7870
-47171,18313
-47173,19109
-47175,5548
-47177,39839
-47179,122979
-47181,17021
-47183,35021
-47185,25841
-47187,183182
-47189,113993
-48001,58458
-48003,14786
-48005,86771
-48007,23158
-48009,9054
-48011,1901
-48013,44911
-48015,28417
-48017,7165
-48019,20485
-48021,74171
-48023,3726
-48025,31861
-48027,310235
-48029,1714773
-48031,10497
-48033,639
-48035,18212
-48037,92565
-48039,313166
-48041,194851
-48043,9210
-48045,1637
-48047,7212
-48049,38106
-48051,17187
-48053,42750
-48055,38066
-48057,21381
-48059,13544
-48061,406220
-48063,12401
-48065,6177
-48067,30464
-48069,8062
-48071,35090
-48073,50845
-48075,7041
-48077,10752
-48079,3127
-48081,3320
-48083,8895
-48085,782341
-48087,3057
-48089,20874
-48091,108472
-48093,13974
-48095,4087
-48097,38437
-48099,75388
-48101,1505
-48103,4375
-48105,3719
-48107,6059
-48109,2391
-48111,6703
-48113,2368139
-48115,13833
-48117,19372
-48119,5231
-48121,662614
-48123,20097
-48125,2444
-48127,9996
-48129,3677
-48131,11781
-48133,18583
-48135,137130
-48137,2002
-48139,149610
-48141,800640
-48143,37890
-48145,17866
-48147,33915
-48149,24554
-48151,3974
-48153,6446
-48155,1336
-48157,585375
-48159,10605
-48161,19816
-48163,17217
-48165,17526
-48167,291256
-48169,6461
-48171,24837
-48173,1226
-48175,7210
-48177,19807
-48179,22535
-48181,120877
-48183,121730
-48185,26604
-48187,131533
-48189,36269
-48191,3353
-48193,8517
-48195,5613
-48197,4139
-48199,54635
-48201,4092459
-48203,65631
-48205,6062
-48207,5899
-48209,157107
-48211,3807
-48213,78532
-48215,774766
-48217,35089
-48219,22927
-48221,51182
-48223,35161
-48225,23732
-48227,35012
-48229,3468
-48231,86129
-48233,22150
-48235,1599
-48237,9044
-48239,14075
-48241,35710
-48243,2337
-48245,252273
-48247,5300
-48249,40838
-48251,150934
-48253,20202
-48255,14824
-48257,103350
-48259,33410
-48261,362
-48263,808
-48265,49625
-48267,4607
-48269,286
-48271,3598
-48273,32061
-48275,3719
-48277,49793
-48279,13976
-48281,19677
-48283,6880
-48285,19263
-48287,16612
-48289,16801
-48291,75643
-48293,23384
-48295,3302
-48297,11531
-48299,19301
-48301,80
-48303,278831
-48305,5915
-48307,8283
-48309,234906
-48311,707
-48313,13664
-48315,10546
-48317,4798
-48319,4012
-48321,36702
-48323,54258
-48325,46006
-48327,2242
-48329,136872
-48331,24757
-48333,4936
-48335,9403
-48337,19719
-48339,455746
-48341,21898
-48343,12934
-48345,1210
-48347,64524
-48349,47735
-48351,14445
-48353,15216
-48355,340217
-48357,10223
-48359,2046
-48361,81837
-48363,28111
-48365,23796
-48367,116927
-48369,10269
-48371,15493
-48373,45413
-48375,121058
-48377,7764
-48379,10914
-48381,120725
-48383,3367
-48385,3309
-48387,12860
-48389,13780
-48391,7383
-48393,928
-48395,16622
-48397,78337
-48399,10501
-48401,53330
-48403,10834
-48405,8865
-48407,26384
-48409,64804
-48411,6130
-48413,3458
-48415,16921
-48417,3378
-48419,25448
-48421,3034
-48423,209714
-48425,8490
-48427,60965
-48429,9630
-48431,1143
-48433,1490
-48435,4128
-48437,7854
-48439,1809034
-48441,131506
-48443,984
-48445,12651
-48447,1641
-48449,32334
-48451,110224
-48453,1024266
-48455,14585
-48457,21766
-48459,39309
-48461,3355
-48463,26383
-48465,48873
-48467,52579
-48469,86793
-48471,67861
-48473,43205
-48475,10658
-48477,33718
-48479,250304
-48481,41280
-48483,5410
-48485,131500
-48487,13535
-48489,22094
-48491,422679
-48493,42918
-48495,7099
-48497,59127
-48499,41964
-48501,7879
-48503,18550
-48505,14018
-48507,11677
-49001,6629
-49003,49975
-49005,112656
-49007,21403
-49009,1059
-49011,306479
-49013,18607
-49015,10976
-49017,5172
-49019,9225
-49021,46163
-49023,10243
-49025,7125
-49027,12503
-49029,9469
-49031,1556
-49033,2264
-49035,1029655
-49037,14746
-49039,27822
-49041,20799
-49043,36324
-49045,58194
-49047,32588
-49049,516564
-49051,23530
-49053,138115
-49055,2778
-49057,231236
-50001,36821
-50003,37125
-50005,31227
-50007,156545
-50009,6306
-50011,47746
-50013,6970
-50015,24475
-50017,28936
-50019,27231
-50021,61642
-50023,59534
-50025,44513
-50027,56670
-51001,33159
-51003,98970
-51005,16250
-51007,12690
-51009,32353
-51011,14973
-51013,207627
-51015,73750
-51017,4731
-51019,68676
-51021,6824
-51023,33148
-51025,17434
-51027,24098
-51029,17146
-51031,54842
-51033,28545
-51035,30042
-51036,7256
-51037,12586
-51041,316236
-51043,14034
-51045,5190
-51047,46689
-51049,10052
-51051,15903
-51053,28001
-51057,11151
-51059,1081726
-51061,65203
-51063,15279
-51065,25691
-51067,56159
-51069,78305
-51071,17286
-51073,36858
-51075,21717
-51077,15533
-51079,18403
-51081,12243
-51083,36241
-51085,99863
-51087,306935
-51089,54151
-51091,2321
-51093,35270
-51095,67009
-51097,6945
-51099,23584
-51101,15935
-51103,11391
-51105,25587
-51107,312311
-51109,33153
-51111,12914
-51113,13308
-51115,8978
-51117,32727
-51119,10959
-51121,94392
-51125,15020
-51127,18429
-51131,12389
-51133,12330
-51135,15853
-51137,33481
-51139,24042
-51141,18490
-51143,63506
-51145,28046
-51147,23368
-51149,35725
-51153,402002
-51155,34872
-51157,7373
-51159,9254
-51161,92376
-51163,22307
-51165,76314
-51167,28897
-51169,23177
-51171,41993
-51173,32208
-51175,18570
-51177,122397
-51179,128961
-51181,7058
-51183,12087
-51185,45078
-51187,37575
-51191,54876
-51193,17454
-51195,41452
-51197,29235
-51199,65464
-51510,139966
-51515,6222
-51520,17835
-51530,6650
-51540,43475
-51550,222209
-51570,17411
-51580,5961
-51590,43055
-51595,5927
-51600,22565
-51610,12332
-51620,8582
-51630,24286
-51640,7042
-51650,137436
-51660,48914
-51670,22591
-51678,7042
-51680,75568
-51683,37821
-51685,14273
-51690,13821
-51700,180719
-51710,242803
-51720,3958
-51730,32420
-51735,12150
-51740,95535
-51750,16408
-51760,204214
-51770,97032
-51775,24802
-51790,23746
-51800,84585
-51810,437994
-51820,21006
-51830,14068
-51840,26203
-53001,18728
-53003,21623
-53005,175177
-53007,72453
-53009,71404
-53011,425363
-53013,4078
-53015,102410
-53017,38431
-53019,7551
-53021,78163
-53023,2266
-53025,89120
-53027,72797
-53029,78506
-53031,29872
-53033,1931249
-53035,251133
-53037,40915
-53039,20318
-53041,75455
-53043,10570
-53045,60699
-53047,41120
-53049,20920
-53051,13001
-53053,795225
-53055,15769
-53057,116901
-53059,11066
-53061,713335
-53063,471221
-53065,43531
-53067,252264
-53069,3978
-53071,58781
-53073,201140
-53075,44776
-53077,243231
-54001,16589
-54003,104169
-54005,24629
-54007,14523
-54009,24069
-54011,96319
-54013,7627
-54015,9386
-54017,8202
-54019,46039
-54021,8693
-54023,11937
-54025,35480
-54027,23964
-54029,30676
-54031,14025
-54033,69099
-54035,29211
-54037,53498
-54039,193063
-54041,16372
-54043,21720
-54045,36743
-54047,22113
-54049,56418
-54051,33107
-54053,27324
-54055,62264
-54057,28212
-54059,26839
-54061,96189
-54063,13502
-54065,17541
-54067,26233
-54069,44443
-54071,7695
-54073,7605
-54075,8719
-54077,33520
-54079,55486
-54081,78859
-54083,29405
-54085,10449
-54087,14926
-54089,13927
-54091,16895
-54093,7141
-54095,9208
-54097,24254
-54099,42481
-54101,9154
-54103,16583
-54105,5717
-54107,86956
-54109,23796
-55001,20875
-55003,16157
-55005,45870
-55007,15014
-55009,248007
-55011,13587
-55013,15457
-55015,48971
-55017,62415
-55019,34690
-55021,56833
-55023,16644
-55025,488073
-55027,88759
-55029,27785
-55031,44159
-55033,43857
-55035,98736
-55037,4423
-55039,101633
-55041,9304
-55043,51208
-55045,36842
-55047,19051
-55049,23687
-55051,5916
-55053,20449
-55055,83686
-55057,26664
-55059,166426
-55061,20574
-55063,114638
-55065,16836
-55067,19977
-55069,28743
-55071,81442
-55073,134063
-55075,41749
-55077,15404
-55078,4232
-55079,947735
-55081,44673
-55083,37660
-55085,35998
-55087,176695
-55089,86395
-55091,7469
-55093,41019
-55095,44205
-55097,70019
-55099,14159
-55101,195408
-55103,18021
-55105,160331
-55107,14755
-55109,84345
-55111,61976
-55113,16557
-55115,41949
-55117,115507
-55119,20689
-55121,28816
-55123,29773
-55125,21430
-55127,102228
-55129,15911
-55131,131887
-55133,389891
-55135,52410
-55137,24496
-55139,166994
-55141,74749
-56001,36299
-56003,11668
-56005,46133
-56007,15885
-56009,13833
-56011,7083
-56013,40123
-56015,13249
-56017,4812
-56019,8569
-56021,91738
-56023,18100
-56025,75448
-56027,2484
-56029,28205
-56031,8667
-56033,29116
-56035,10247
-56037,43806
-56039,21294
-56041,21118
-56043,8533
-56045,7208
+01000,4903185
+01001,55869
+01003,223234
+01005,24686
+01007,22394
+01009,57826
+01011,10101
+01013,19448
+01015,113605
+01017,33254
+01019,26196
+01021,44428
+01023,12589
+01025,23622
+01027,13235
+01029,14910
+01031,52342
+01033,55241
+01035,12067
+01037,10663
+01039,37049
+01041,13772
+01043,83768
+01045,49172
+01047,37196
+01049,71513
+01051,81209
+01053,36633
+01055,102268
+01057,16302
+01059,31362
+01061,26271
+01063,8111
+01065,14651
+01067,17205
+01069,105882
+01071,51626
+01073,658573
+01075,13805
+01077,92729
+01079,32924
+01081,164542
+01083,98915
+01085,9726
+01087,18068
+01089,372909
+01091,18863
+01093,29709
+01095,96774
+01097,413210
+01099,20733
+01101,226486
+01103,119679
+01105,8923
+01107,19930
+01109,33114
+01111,22722
+01113,57961
+01115,89512
+01117,217702
+01119,12427
+01121,79978
+01123,40367
+01125,209355
+01127,63521
+01129,16326
+01131,10373
+01133,23629
+02000,731545
+02013,3337
+02016,5634
+02020,288000
+02050,18386
+02060,836
+02068,2097
+02070,4916
+02090,96849
+02100,2530
+02105,2148
+02110,31974
+02122,58708
+02130,13901
+02150,12998
+02158,8314
+02164,1592
+02170,108317
+02180,10004
+02185,9832
+02188,7621
+02195,3266
+02198,6203
+02220,8493
+02230,1183
+02240,6893
+02261,9202
+02275,2502
+02282,579
+02290,5230
+04000,7278717
+04001,71887
+04003,125922
+04005,143476
+04007,54018
+04009,38837
+04011,9498
+04012,21108
+04013,4485414
+04015,212181
+04017,110924
+04019,1047279
+04021,462789
+04023,46498
+04025,235099
+04027,213787
+05000,3017804
+05001,17486
+05003,19657
+05005,41932
+05007,279141
+05009,37432
+05011,10763
+05013,5189
+05015,28380
+05017,10118
+05019,22320
+05021,14551
+05023,24919
+05025,7956
+05027,23457
+05029,20846
+05031,110332
+05033,63257
+05035,47955
+05037,16419
+05039,7009
+05041,11361
+05043,18219
+05045,126007
+05047,17715
+05049,12477
+05051,99386
+05053,18265
+05055,45325
+05057,21532
+05059,33771
+05061,13202
+05063,37825
+05065,13629
+05067,16719
+05069,66824
+05071,26578
+05073,6624
+05075,16406
+05077,8857
+05079,13024
+05081,12259
+05083,21466
+05085,73309
+05087,16576
+05089,16694
+05091,43257
+05093,40651
+05095,6701
+05097,8986
+05099,8252
+05101,7753
+05103,23382
+05105,10455
+05107,17782
+05109,10718
+05111,23528
+05113,19964
+05115,64072
+05117,8062
+05119,391911
+05121,17958
+05123,24994
+05125,122437
+05127,10281
+05129,7881
+05131,127827
+05133,17007
+05135,17442
+05137,12506
+05139,38682
+05141,16545
+05143,239187
+05145,78753
+05147,6320
+05149,21341
+06000,39512223
+06001,1671329
+06003,1129
+06005,39752
+06007,219186
+06009,45905
+06011,21547
+06013,1153526
+06015,27812
+06017,192843
+06019,999101
+06021,28393
+06023,135558
+06025,181215
+06027,18039
+06029,900202
+06031,152940
+06033,64386
+06035,30573
+06037,10039107
+06039,157327
+06041,258826
+06043,17203
+06045,86749
+06047,277680
+06049,8841
+06051,14444
+06053,434061
+06055,137744
+06057,99755
+06059,3175692
+06061,398329
+06063,18807
+06065,2470546
+06067,1552058
+06069,62808
+06071,2180085
+06073,3338330
+06075,881549
+06077,762148
+06079,283111
+06081,766573
+06083,446499
+06085,1927852
+06087,273213
+06089,180080
+06091,3005
+06093,43539
+06095,447643
+06097,494336
+06099,550660
+06101,96971
+06103,65084
+06105,12285
+06107,466195
+06109,54478
+06111,846006
+06113,220500
+06115,78668
+08000,5758736
+08001,517421
+08003,16233
+08005,656590
+08007,14029
+08009,3581
+08011,5577
+08013,326196
+08014,70465
+08015,20356
+08017,1831
+08019,9700
+08021,8205
+08023,3887
+08025,6061
+08027,5068
+08029,31162
+08031,727211
+08033,2055
+08035,351154
+08037,55127
+08039,26729
+08041,720403
+08043,47839
+08045,60061
+08047,6243
+08049,15734
+08051,17462
+08053,820
+08055,6897
+08057,1392
+08059,582881
+08061,1406
+08063,7097
+08065,8127
+08067,56221
+08069,356899
+08071,14506
+08073,5701
+08075,22409
+08077,154210
+08079,769
+08081,13283
+08083,26183
+08085,42758
+08087,29068
+08089,18278
+08091,4952
+08093,18845
+08095,4265
+08097,17767
+08099,12172
+08101,168424
+08103,6324
+08105,11267
+08107,25638
+08109,6824
+08111,728
+08113,8179
+08115,2248
+08117,31011
+08119,25388
+08121,4908
+08123,324492
+08125,10019
+09000,3565287
+09001,943332
+09003,891720
+09005,180333
+09007,162436
+09009,854757
+09011,265206
+09013,150721
+09015,116782
+10000,973764
+10001,180786
+10003,558753
+10005,234225
+11000,705749
+11001,705749
+12000,21477737
+12001,269043
+12003,29210
+12005,174705
+12007,28201
+12009,601942
+12011,1952778
+12013,14105
+12015,188910
+12017,149657
+12019,219252
+12021,384902
+12023,71686
+12027,38001
+12029,16826
+12031,957755
+12033,318316
+12035,115081
+12037,12125
+12039,45660
+12041,18582
+12043,13811
+12045,13639
+12047,14428
+12049,26937
+12051,42022
+12053,193920
+12055,106221
+12057,1471968
+12059,19617
+12061,159923
+12063,46414
+12065,14246
+12067,8422
+12069,367118
+12071,770577
+12073,293582
+12075,41503
+12077,8354
+12079,18493
+12081,403253
+12083,365579
+12085,161000
+12086,2716940
+12087,74228
+12089,88625
+12091,210738
+12093,42168
+12095,1393452
+12097,375751
+12099,1496770
+12101,553947
+12103,974996
+12105,724777
+12107,74521
+12109,264672
+12111,328297
+12113,184313
+12115,433742
+12117,471826
+12119,132420
+12121,44417
+12123,21569
+12125,15237
+12127,553284
+12129,33739
+12131,74071
+12133,25473
+13000,10617423
+13001,18386
+13003,8165
+13005,11164
+13007,3038
+13009,44890
+13011,19234
+13013,83240
+13015,107738
+13017,16700
+13019,19397
+13021,153159
+13023,12873
+13025,19109
+13027,15457
+13029,39627
+13031,79608
+13033,22383
+13035,24936
+13037,6189
+13039,54666
+13043,10803
+13045,119992
+13047,67580
+13049,13392
+13051,289430
+13053,10907
+13055,24789
+13057,258773
+13059,128331
+13061,2834
+13063,292256
+13065,6618
+13067,760141
+13069,43273
+13071,45600
+13073,156714
+13075,17270
+13077,148509
+13079,12404
+13081,22372
+13083,16116
+13085,26108
+13087,26404
+13089,759297
+13091,20605
+13093,13390
+13095,87956
+13097,146343
+13099,10190
+13101,4006
+13103,64296
+13105,19194
+13107,22646
+13109,10654
+13111,26188
+13113,114421
+13115,98498
+13117,244252
+13119,23349
+13121,1063937
+13123,31369
+13125,2971
+13127,85292
+13129,57963
+13131,24633
+13133,18324
+13135,936250
+13137,45328
+13139,204441
+13141,8457
+13143,29792
+13145,35236
+13147,26205
+13149,11923
+13151,234561
+13153,157863
+13155,9416
+13157,72977
+13159,14219
+13161,15115
+13163,15362
+13165,8676
+13167,9643
+13169,28735
+13171,19077
+13173,10423
+13175,47546
+13177,29992
+13179,61435
+13181,7921
+13183,19559
+13185,117406
+13187,33610
+13189,21312
+13191,14378
+13193,12947
+13195,29880
+13197,8359
+13199,21167
+13201,5718
+13205,21863
+13207,27578
+13209,9172
+13211,19276
+13213,40096
+13215,195769
+13217,111744
+13219,40280
+13221,15259
+13223,168667
+13225,27546
+13227,32591
+13229,19465
+13231,18962
+13233,42613
+13235,11137
+13237,22119
+13239,2299
+13241,17137
+13243,6778
+13245,202518
+13247,90896
+13249,5257
+13251,13966
+13253,8090
+13255,66703
+13257,25925
+13259,6621
+13261,29524
+13263,6195
+13265,1537
+13267,25286
+13269,8020
+13271,15860
+13273,8531
+13275,44451
+13277,40644
+13279,26830
+13281,12037
+13283,6901
+13285,69922
+13287,7985
+13289,8120
+13291,24511
+13293,26320
+13295,69761
+13297,94593
+13299,35734
+13301,5254
+13303,20374
+13305,29927
+13307,2607
+13309,7855
+13311,30798
+13313,104628
+13315,8635
+13317,9777
+13319,8954
+13321,20247
+15000,1415872
+15001,201513
+15003,974563
+15005,86
+15007,72293
+15009,167417
+16000,1787065
+16001,481587
+16003,4294
+16005,87808
+16007,6125
+16009,9298
+16011,46811
+16013,23021
+16015,7831
+16017,45739
+16019,119062
+16021,12245
+16023,2597
+16025,1106
+16027,229849
+16029,7155
+16031,24030
+16033,845
+16035,8756
+16037,4315
+16039,27511
+16041,13876
+16043,13099
+16045,18112
+16047,15179
+16049,16667
+16051,29871
+16053,24412
+16055,165697
+16057,40108
+16059,8027
+16061,3838
+16063,5366
+16065,39907
+16067,21039
+16069,40408
+16071,4531
+16073,11823
+16075,23951
+16077,7681
+16079,12882
+16081,12142
+16083,86878
+16085,11392
+16087,10194
+17000,12671821
+17001,65435
+17003,5761
+17005,16426
+17007,53544
+17009,6578
+17011,32628
+17013,4739
+17015,14305
+17017,12147
+17019,209689
+17021,32304
+17023,15441
+17025,13184
+17027,37562
+17029,50621
+17031,5150233
+17033,18667
+17035,10766
+17037,104897
+17039,15638
+17041,19465
+17043,922921
+17045,17161
+17047,6395
+17049,34008
+17051,21336
+17053,12961
+17055,38469
+17057,34340
+17059,4828
+17061,12969
+17063,51054
+17065,8116
+17067,17708
+17069,3821
+17071,6646
+17073,48913
+17075,27114
+17077,56750
+17079,9610
+17081,37684
+17083,21773
+17085,21235
+17087,12417
+17089,532403
+17091,109862
+17093,128990
+17095,49699
+17097,696535
+17099,108669
+17101,15678
+17103,34096
+17105,35648
+17107,28618
+17109,29682
+17111,307774
+17113,171517
+17115,104009
+17117,44926
+17119,262966
+17121,37205
+17123,11438
+17125,13359
+17127,13772
+17129,12196
+17131,15437
+17133,34637
+17135,28414
+17137,33658
+17139,14501
+17141,50643
+17143,179179
+17145,20916
+17147,16344
+17149,15561
+17151,4177
+17153,5335
+17155,5739
+17157,31782
+17159,15513
+17161,141879
+17163,259686
+17165,23491
+17167,194672
+17169,6768
+17171,4951
+17173,21634
+17175,5342
+17177,44498
+17179,131803
+17181,16653
+17183,75758
+17185,11520
+17187,16844
+17189,13887
+17191,16215
+17193,13537
+17195,55175
+17197,690743
+17199,66597
+17201,282572
+17203,38459
+18000,6732219
+18001,35777
+18003,379299
+18005,83779
+18007,8748
+18009,11758
+18011,67843
+18013,15092
+18015,20257
+18017,37689
+18019,118302
+18021,26225
+18023,32399
+18025,10577
+18027,33351
+18029,49458
+18031,26559
+18033,43475
+18035,114135
+18037,42736
+18039,206341
+18041,23102
+18043,78522
+18045,16346
+18047,22758
+18049,19974
+18051,33659
+18053,65769
+18055,31922
+18057,338011
+18059,78168
+18061,40515
+18063,170311
+18065,47972
+18067,82544
+18069,36520
+18071,44231
+18073,33562
+18075,20436
+18077,32308
+18079,27735
+18081,158167
+18083,36594
+18085,79456
+18087,39614
+18089,485493
+18091,109888
+18093,45370
+18095,129569
+18097,964582
+18099,46258
+18101,10255
+18103,35516
+18105,148431
+18107,38338
+18109,70489
+18111,13984
+18113,47744
+18115,5875
+18117,19646
+18119,20799
+18121,16937
+18123,19169
+18125,12389
+18127,170389
+18129,25427
+18131,12353
+18133,37576
+18135,24665
+18137,28324
+18139,16581
+18141,271826
+18143,23873
+18145,44729
+18147,20277
+18149,22995
+18151,34594
+18153,20669
+18155,10751
+18157,195732
+18159,15148
+18161,7054
+18163,181451
+18165,15498
+18167,107038
+18169,30996
+18171,8265
+18173,62998
+18175,28036
+18177,65884
+18179,28296
+18181,24102
+18183,33964
+19000,3155070
+19001,7152
+19003,3602
+19005,13687
+19007,12426
+19009,5496
+19011,25645
+19013,131228
+19015,26234
+19017,25062
+19019,21175
+19021,19620
+19023,14439
+19025,9668
+19027,20165
+19029,12836
+19031,18627
+19033,42450
+19035,11235
+19037,11933
+19039,9395
+19041,16016
+19043,17549
+19045,46429
+19047,16820
+19049,93453
+19051,9000
+19053,7870
+19055,17011
+19057,38967
+19059,17258
+19061,97311
+19063,9208
+19065,19650
+19067,15642
+19069,10070
+19071,6960
+19073,8888
+19075,12232
+19077,10689
+19079,14773
+19081,10630
+19083,16846
+19085,14049
+19087,19954
+19089,9158
+19091,9558
+19093,6860
+19095,16184
+19097,19439
+19099,37185
+19101,18295
+19103,151140
+19105,20681
+19107,10246
+19109,14813
+19111,33657
+19113,226706
+19115,11035
+19117,8600
+19119,11755
+19121,16338
+19123,22095
+19125,33253
+19127,39369
+19129,15109
+19131,10586
+19133,8615
+19135,7707
+19137,9917
+19139,42664
+19141,13753
+19143,5958
+19145,15107
+19147,8886
+19149,25177
+19151,6619
+19153,490161
+19155,93206
+19157,18504
+19159,4894
+19161,9721
+19163,172943
+19165,11454
+19167,34855
+19169,97117
+19171,16854
+19173,6121
+19175,12241
+19177,7044
+19179,34969
+19181,51466
+19183,21965
+19185,6441
+19187,35904
+19189,10354
+19191,19991
+19193,103107
+19195,7381
+19197,12562
+20000,2913314
+20001,12369
+20003,7858
+20005,16073
+20007,4427
+20009,25779
+20011,14534
+20013,9564
+20015,66911
+20017,2648
+20019,3250
+20021,19939
+20023,2657
+20025,1994
+20027,8002
+20029,8786
+20031,8179
+20033,1700
+20035,34908
+20037,38818
+20039,2827
+20041,18466
+20043,7600
+20045,122259
+20047,2798
+20049,2530
+20051,28553
+20053,6102
+20055,36467
+20057,33619
+20059,25544
+20061,31670
+20063,2636
+20065,2482
+20067,7150
+20069,5988
+20071,1232
+20073,5982
+20075,2539
+20077,5436
+20079,34429
+20081,3968
+20083,1794
+20085,13171
+20087,19043
+20089,2879
+20091,602401
+20093,3838
+20095,7152
+20097,2475
+20099,19618
+20101,1535
+20103,81758
+20105,2962
+20107,9703
+20109,2794
+20111,33195
+20113,28542
+20115,11884
+20117,9707
+20119,4033
+20121,34237
+20123,5979
+20125,31829
+20127,5620
+20129,2587
+20131,10231
+20133,16007
+20135,2750
+20137,5361
+20139,15949
+20141,3421
+20143,5704
+20145,6414
+20147,5234
+20149,24383
+20151,9164
+20153,2530
+20155,61998
+20157,4636
+20159,9537
+20161,74232
+20163,4920
+20165,3036
+20167,6856
+20169,54224
+20171,4823
+20173,516042
+20175,21428
+20177,176875
+20179,2521
+20181,5917
+20183,3583
+20185,4156
+20187,2006
+20189,5485
+20191,22836
+20193,7777
+20195,2803
+20197,6931
+20199,1518
+20201,5406
+20203,2119
+20205,8525
+20207,3138
+20209,165429
+21000,4467673
+21001,19202
+21003,21315
+21005,22747
+21007,7888
+21009,44249
+21011,12500
+21013,26032
+21015,133581
+21017,19788
+21019,46718
+21021,30060
+21023,8303
+21025,12630
+21027,20477
+21029,81676
+21031,12879
+21033,12747
+21035,39001
+21037,93584
+21039,4760
+21041,10631
+21043,26797
+21045,16159
+21047,70461
+21049,36263
+21051,19901
+21053,10218
+21055,8806
+21057,6614
+21059,101511
+21061,12150
+21063,7517
+21065,14106
+21067,323152
+21069,14581
+21071,35589
+21073,50991
+21075,5969
+21077,8869
+21079,17666
+21081,25069
+21083,37266
+21085,26427
+21087,10941
+21089,35098
+21091,8722
+21093,110958
+21095,26010
+21097,18886
+21099,19035
+21101,45210
+21103,16126
+21105,4380
+21107,44686
+21109,13329
+21111,766757
+21113,54115
+21115,22188
+21117,166998
+21119,14806
+21121,31145
+21123,14398
+21125,60813
+21127,15317
+21129,7403
+21131,9877
+21133,21553
+21135,13275
+21137,24549
+21139,9194
+21141,27102
+21143,8210
+21145,65418
+21147,17231
+21149,9207
+21151,92987
+21153,12161
+21155,19273
+21157,31100
+21159,11195
+21161,17070
+21163,28572
+21165,6489
+21167,21933
+21169,10071
+21171,10650
+21173,28157
+21175,13309
+21177,30622
+21179,46233
+21181,7269
+21183,23994
+21185,66799
+21187,10901
+21189,4415
+21191,14590
+21193,25758
+21195,57876
+21197,12359
+21199,64979
+21201,2108
+21203,16695
+21205,24460
+21207,17923
+21209,57004
+21211,49024
+21213,18572
+21215,19351
+21217,25769
+21219,12294
+21221,14651
+21223,8471
+21225,14381
+21227,132896
+21229,12095
+21231,20333
+21233,12942
+21235,36264
+21237,7157
+21239,26734
+22000,4648794
+22001,62045
+22003,25627
+22005,126604
+22007,21891
+22009,40144
+22011,37497
+22013,13241
+22015,127039
+22017,240204
+22019,203436
+22021,9918
+22023,6973
+22025,9494
+22027,15670
+22029,19259
+22031,27463
+22033,440059
+22035,6861
+22037,19135
+22039,33395
+22041,20015
+22043,22389
+22045,69830
+22047,32511
+22049,15744
+22051,432493
+22053,31368
+22055,244390
+22057,97614
+22059,14892
+22061,46742
+22063,140789
+22065,10951
+22067,24874
+22069,38158
+22071,390144
+22073,153279
+22075,23197
+22077,21730
+22079,129648
+22081,8442
+22083,20122
+22085,23884
+22087,47244
+22089,53100
+22091,10132
+22093,21096
+22095,42837
+22097,82124
+22099,53431
+22101,49348
+22103,260419
+22105,134758
+22107,4334
+22109,110461
+22111,22108
+22113,59511
+22115,47429
+22117,46194
+22119,38340
+22121,26465
+22123,10830
+22125,15568
+22127,13904
+23000,1344212
+23001,108277
+23003,67055
+23005,295003
+23007,30199
+23009,54987
+23011,122302
+23013,39772
+23015,34634
+23017,57975
+23019,152148
+23021,16785
+23023,35856
+23025,50484
+23027,39715
+23029,31379
+23031,207641
+24000,6045680
+24001,70416
+24003,579234
+24005,827370
+24009,92525
+24011,33406
+24013,168447
+24015,102855
+24017,163257
+24019,31929
+24021,259547
+24023,29014
+24025,255441
+24027,325690
+24029,19422
+24031,1050688
+24033,909327
+24035,50381
+24037,113510
+24039,25616
+24041,37181
+24043,151049
+24045,103609
+24047,52276
+24510,593490
+25000,6892503
+25001,212990
+25003,124944
+25005,565217
+25007,17332
+25009,789034
+25011,70180
+25013,466372
+25015,160830
+25017,1611699
+25019,11399
+25021,706775
+25023,521202
+25025,803907
+25027,830622
+26000,9986857
+26001,10405
+26003,9108
+26005,118081
+26007,28405
+26009,23324
+26011,14883
+26013,8209
+26015,61550
+26017,103126
+26019,17766
+26021,153401
+26023,43517
+26025,134159
+26027,51787
+26029,26143
+26031,25276
+26033,37349
+26035,30950
+26037,79595
+26039,14029
+26041,35784
+26043,25239
+26045,110268
+26047,33415
+26049,405813
+26051,25449
+26053,13975
+26055,93088
+26057,40711
+26059,45605
+26061,35684
+26063,30981
+26065,292406
+26067,64697
+26069,25127
+26071,11066
+26073,69872
+26075,158510
+26077,265066
+26079,18038
+26081,656955
+26083,2116
+26085,11853
+26087,87607
+26089,21761
+26091,98451
+26093,191995
+26095,6229
+26097,10799
+26099,873972
+26101,24558
+26103,66699
+26105,29144
+26107,43453
+26109,22780
+26111,83156
+26113,15118
+26115,150500
+26117,63888
+26119,9328
+26121,173566
+26123,48980
+26125,1257584
+26127,26467
+26129,20997
+26131,5720
+26133,23460
+26135,8241
+26137,24668
+26139,291830
+26141,12592
+26143,24019
+26145,190539
+26147,159128
+26149,60964
+26151,41170
+26153,8094
+26155,68122
+26157,52245
+26159,75677
+26161,367601
+26163,1749343
+26165,33631
+27000,5639632
+27001,15886
+27003,356921
+27005,34423
+27007,47188
+27009,40889
+27011,4991
+27013,67653
+27015,25008
+27017,35871
+27019,105089
+27021,29779
+27023,11800
+27025,56579
+27027,64222
+27029,8818
+27031,5463
+27033,11196
+27035,65055
+27037,429021
+27039,20934
+27041,38141
+27043,13653
+27045,21067
+27047,30281
+27049,46340
+27051,5972
+27053,1265843
+27055,18600
+27057,21491
+27059,40596
+27061,45130
+27063,9846
+27065,16337
+27067,43199
+27069,4298
+27071,12229
+27073,6623
+27075,10641
+27077,3740
+27079,28887
+27081,5639
+27083,25474
+27085,35893
+27087,5527
+27089,9336
+27091,19683
+27093,23222
+27095,26277
+27097,33386
+27099,40062
+27101,8194
+27103,34274
+27105,21629
+27107,6375
+27109,158293
+27111,58746
+27113,14119
+27115,29579
+27117,9126
+27119,31364
+27121,11249
+27123,550321
+27125,4055
+27127,15170
+27129,14548
+27131,66972
+27133,9315
+27135,15165
+27137,199070
+27139,149013
+27141,97238
+27143,14865
+27145,161075
+27147,36649
+27149,9805
+27151,9266
+27153,24664
+27155,3259
+27157,21627
+27159,13682
+27161,18612
+27163,262440
+27165,10897
+27167,6207
+27169,50484
+27171,138377
+27173,9709
+28000,2976149
+28001,30693
+28003,36953
+28005,12297
+28007,18174
+28009,8259
+28011,30628
+28013,14361
+28015,9947
+28017,17103
+28019,8210
+28021,8988
+28023,15541
+28025,19316
+28027,22124
+28029,28065
+28031,18636
+28033,184945
+28035,74897
+28037,7713
+28039,24500
+28041,13586
+28043,20758
+28045,47632
+28047,208080
+28049,231840
+28051,17010
+28053,8064
+28055,1327
+28057,23390
+28059,143617
+28061,16383
+28063,6990
+28065,11128
+28067,68098
+28069,9742
+28071,54019
+28073,63343
+28075,74125
+28077,12586
+28079,22786
+28081,85436
+28083,28183
+28085,34153
+28087,58595
+28089,106272
+28091,24573
+28093,35294
+28095,35252
+28097,9775
+28099,29118
+28101,21018
+28103,10417
+28105,49587
+28107,34192
+28109,55535
+28111,11973
+28113,39288
+28115,32174
+28117,25126
+28119,6792
+28121,155271
+28123,28124
+28125,4321
+28127,26658
+28129,15916
+28131,18336
+28133,25110
+28135,13809
+28137,28321
+28139,22015
+28141,19383
+28143,9632
+28145,28815
+28147,14286
+28149,45381
+28151,43909
+28153,20183
+28155,9689
+28157,8630
+28159,17955
+28161,12108
+28163,29690
+29000,6137428
+29001,25343
+29003,17712
+29005,5143
+29007,25388
+29009,35789
+29011,11754
+29013,16172
+29015,19443
+29017,12133
+29019,180463
+29021,87364
+29023,42478
+29025,9020
+29027,44743
+29029,46305
+29031,78871
+29033,8679
+29035,5982
+29037,105780
+29039,14349
+29041,7426
+29043,88595
+29045,6797
+29047,249948
+29049,20387
+29051,76745
+29053,17709
+29055,23920
+29057,7561
+29059,16878
+29061,8278
+29063,12547
+29065,15573
+29067,13185
+29069,29131
+29071,103967
+29073,14706
+29075,6571
+29077,293086
+29079,9850
+29081,8352
+29083,21824
+29085,9544
+29087,4403
+29089,10001
+29091,40117
+29093,10125
+29095,703011
+29097,121328
+29099,225081
+29101,54062
+29103,3959
+29105,35723
+29107,32708
+29109,38355
+29111,9776
+29113,59013
+29115,11920
+29117,15227
+29119,22837
+29121,15117
+29123,12088
+29125,8697
+29127,28530
+29129,3617
+29131,25619
+29133,13180
+29135,16132
+29137,8644
+29139,11551
+29141,20627
+29143,17076
+29145,58236
+29147,22092
+29149,10529
+29151,13615
+29153,9174
+29155,15805
+29157,19136
+29159,42339
+29161,44573
+29163,18302
+29165,104418
+29167,32149
+29169,52607
+29171,4696
+29173,10309
+29175,24748
+29177,23018
+29179,6270
+29181,13288
+29183,402022
+29185,9397
+29186,17894
+29187,67215
+29189,994205
+29195,22761
+29197,4660
+29199,4902
+29201,38280
+29203,8166
+29205,5930
+29207,29025
+29209,31952
+29211,6089
+29213,55928
+29215,25398
+29217,20563
+29219,35649
+29221,24730
+29223,12873
+29225,39592
+29227,2013
+29229,18289
+29510,300576
+30000,1068778
+30001,9453
+30003,13319
+30005,6681
+30007,6237
+30009,10725
+30011,1252
+30013,81366
+30015,5635
+30017,11402
+30019,1690
+30021,8613
+30023,9140
+30025,2846
+30027,11050
+30029,103806
+30031,114434
+30033,1258
+30035,13753
+30037,821
+30039,3379
+30041,16484
+30043,12221
+30045,2007
+30047,30458
+30049,69432
+30051,2337
+30053,19980
+30055,1664
+30057,8600
+30059,1862
+30061,4397
+30063,119600
+30065,4633
+30067,16606
+30069,487
+30071,3954
+30073,5911
+30075,1682
+30077,6890
+30079,1077
+30081,43806
+30083,10803
+30085,11004
+30087,8937
+30089,12113
+30091,3309
+30093,34915
+30095,9642
+30097,3737
+30099,6147
+30101,4736
+30103,696
+30105,7396
+30107,2126
+30109,969
+30111,161300
+31000,1934408
+31001,31363
+31003,6298
+31005,463
+31007,745
+31009,465
+31011,5192
+31013,10783
+31015,1919
+31017,2955
+31019,49659
+31021,6459
+31023,8016
+31025,26248
+31027,8402
+31029,3924
+31031,5689
+31033,8910
+31035,6203
+31037,10709
+31039,8846
+31041,10777
+31043,20026
+31045,8589
+31047,23595
+31049,1794
+31051,5636
+31053,36565
+31055,571327
+31057,1693
+31059,5462
+31061,2979
+31063,2627
+31065,4676
+31067,21513
+31069,1837
+31071,1969
+31073,1990
+31075,623
+31077,2356
+31079,61353
+31081,9324
+31083,3380
+31085,922
+31087,2762
+31089,10067
+31091,682
+31093,6445
+31095,7046
+31097,5071
+31099,6495
+31101,8034
+31103,806
+31105,3632
+31107,8332
+31109,319090
+31111,34914
+31113,748
+31115,664
+31117,494
+31119,35099
+31121,7755
+31123,4642
+31125,3519
+31127,6972
+31129,4148
+31131,16012
+31133,2613
+31135,2891
+31137,9034
+31139,7148
+31141,33470
+31143,5213
+31145,10724
+31147,7865
+31149,1357
+31151,14224
+31153,187196
+31155,21578
+31157,35618
+31159,17284
+31161,5246
+31163,3001
+31165,1166
+31167,5920
+31169,5003
+31171,722
+31173,7224
+31175,4158
+31177,20729
+31179,9385
+31181,3487
+31183,783
+31185,13679
+32000,3080156
+32001,24909
+32003,2266715
+32005,48905
+32007,52778
+32009,873
+32011,2029
+32013,16831
+32015,5532
+32017,5183
+32019,57510
+32021,4505
+32023,46523
+32027,6725
+32029,4123
+32031,471519
+32033,9580
+32510,55916
+33000,1359711
+33001,61303
+33003,48910
+33005,76085
+33007,31563
+33009,89886
+33011,417025
+33013,151391
+33015,309769
+33017,130633
+33019,43146
+34000,8882190
+34001,263670
+34003,932202
+34005,445349
+34007,506471
+34009,92039
+34011,149527
+34013,798975
+34015,291636
+34017,672391
+34019,124371
+34021,367430
+34023,825062
+34025,618795
+34027,491845
+34029,607186
+34031,501826
+34033,62385
+34035,328934
+34037,140488
+34039,556341
+34041,105267
+35000,2096829
+35001,679121
+35003,3527
+35005,64615
+35006,26675
+35007,11941
+35009,48954
+35011,1748
+35013,218195
+35015,58460
+35017,26998
+35019,4300
+35021,625
+35023,4198
+35025,71070
+35027,19572
+35028,19369
+35029,23709
+35031,71367
+35033,4521
+35035,67490
+35037,8253
+35039,38921
+35041,18500
+35043,146748
+35045,123958
+35047,27277
+35049,150358
+35051,10791
+35053,16637
+35055,32723
+35057,15461
+35059,4059
+35061,76688
+36000,19453561
+36001,305506
+36003,46091
+36005,1418207
+36007,190488
+36009,76117
+36011,76576
+36013,126903
+36015,83456
+36017,47207
+36019,80485
+36021,59461
+36023,47581
+36025,44135
+36027,294218
+36029,918702
+36031,36885
+36033,50022
+36035,53383
+36037,57280
+36039,47188
+36041,4416
+36043,61319
+36045,109834
+36047,2559903
+36049,26296
+36051,62914
+36053,70941
+36055,741770
+36057,49221
+36059,1356924
+36061,1628706
+36063,209281
+36065,228671
+36067,460528
+36069,109777
+36071,384940
+36073,40352
+36075,117124
+36077,59493
+36079,98320
+36081,2253858
+36083,158714
+36085,476143
+36087,325789
+36089,107740
+36091,229863
+36093,155299
+36095,30999
+36097,17807
+36099,34016
+36101,95379
+36103,1476601
+36105,75432
+36107,48203
+36109,102180
+36111,177573
+36113,63944
+36115,61204
+36117,89918
+36119,967506
+36121,39859
+36123,24913
+37000,10488084
+37001,169509
+37003,37497
+37005,11137
+37007,24446
+37009,27203
+37011,17557
+37013,46994
+37015,18947
+37017,32722
+37019,142820
+37021,261191
+37023,90485
+37025,216453
+37027,82178
+37029,10867
+37031,69473
+37033,22604
+37035,159551
+37037,74470
+37039,28612
+37041,13943
+37043,11231
+37045,97947
+37047,55508
+37049,102139
+37051,335509
+37053,27763
+37055,37009
+37057,167609
+37059,42846
+37061,58741
+37063,321488
+37065,51472
+37067,382295
+37069,69685
+37071,224529
+37073,11562
+37075,8441
+37077,60443
+37079,21069
+37081,537174
+37083,50010
+37085,135976
+37087,62317
+37089,117417
+37091,23677
+37093,55234
+37095,4937
+37097,181806
+37099,43938
+37101,209339
+37103,9419
+37105,61779
+37107,55949
+37109,86111
+37111,45756
+37113,35858
+37115,21755
+37117,22440
+37119,1110356
+37121,14964
+37123,27173
+37125,100880
+37127,94298
+37129,234473
+37131,19483
+37133,197938
+37135,148476
+37137,12726
+37139,39824
+37141,63060
+37143,13463
+37145,39490
+37147,180742
+37149,20724
+37151,143667
+37153,44829
+37155,130625
+37157,91010
+37159,142088
+37161,67029
+37163,63531
+37165,34823
+37167,62806
+37169,45591
+37171,71783
+37173,14271
+37175,34385
+37177,4016
+37179,239859
+37181,44535
+37183,1111761
+37185,19731
+37187,11580
+37189,56177
+37191,123131
+37193,68412
+37195,81801
+37197,37667
+37199,18069
+38000,762062
+38001,2216
+38003,10415
+38005,6832
+38007,928
+38009,6282
+38011,3024
+38013,2115
+38015,95626
+38017,181923
+38019,3762
+38021,4872
+38023,2264
+38025,4424
+38027,2287
+38029,3241
+38031,3210
+38033,1761
+38035,69451
+38037,2274
+38039,2231
+38041,2499
+38043,2480
+38045,4046
+38047,1850
+38049,5745
+38051,2497
+38053,15024
+38055,9450
+38057,8187
+38059,31364
+38061,10545
+38063,2879
+38065,1959
+38067,6801
+38069,3975
+38071,11519
+38073,5218
+38075,2327
+38077,16177
+38079,14176
+38081,3898
+38083,1315
+38085,4230
+38087,750
+38089,31489
+38091,1890
+38093,20704
+38095,2189
+38097,8036
+38099,10641
+38101,67641
+38103,3834
+38105,37589
+39000,11689100
+39001,27698
+39003,102351
+39005,53484
+39007,97241
+39009,65327
+39011,45656
+39013,67006
+39015,43432
+39017,383134
+39019,26914
+39021,38885
+39023,134083
+39025,206428
+39027,41968
+39029,101883
+39031,36600
+39033,41494
+39035,1235072
+39037,51113
+39039,38087
+39041,209177
+39043,74266
+39045,157574
+39047,28525
+39049,1316756
+39051,42126
+39053,29898
+39055,93649
+39057,168937
+39059,38875
+39061,817473
+39063,75783
+39065,31365
+39067,15040
+39069,27006
+39071,43161
+39073,28264
+39075,43960
+39077,58266
+39079,32413
+39081,65325
+39083,62322
+39085,230149
+39087,59463
+39089,176862
+39091,45672
+39093,309833
+39095,428348
+39097,44731
+39099,228683
+39101,65093
+39103,179746
+39105,22907
+39107,41172
+39109,106987
+39111,13654
+39113,531687
+39115,14508
+39117,35328
+39119,86215
+39121,14424
+39123,40525
+39125,18672
+39127,36134
+39129,58457
+39131,27772
+39133,162466
+39135,40882
+39137,33861
+39139,121154
+39141,76666
+39143,58518
+39145,75314
+39147,55178
+39149,48590
+39151,370606
+39153,541013
+39155,197974
+39157,91987
+39159,58988
+39161,28275
+39163,13085
+39165,234602
+39167,59911
+39169,115710
+39171,36692
+39173,130817
+39175,21772
+40000,3956971
+40001,22194
+40003,5702
+40005,13758
+40007,5311
+40009,21859
+40011,9429
+40013,47995
+40015,28762
+40017,148306
+40019,48111
+40021,48657
+40023,14672
+40025,2137
+40027,284014
+40029,5495
+40031,120749
+40033,5666
+40035,14142
+40037,71522
+40039,29003
+40041,43009
+40043,4891
+40045,3859
+40047,61056
+40049,27711
+40051,55834
+40053,4333
+40055,5712
+40057,2653
+40059,3688
+40061,12627
+40063,13279
+40065,24530
+40067,6002
+40069,11085
+40071,43538
+40073,15765
+40075,8708
+40077,10073
+40079,49853
+40081,34877
+40083,48011
+40085,10253
+40087,40474
+40089,32832
+40091,19596
+40093,7629
+40095,16931
+40097,41100
+40099,14073
+40101,67997
+40103,11131
+40105,10076
+40107,11993
+40109,797434
+40111,38465
+40113,46963
+40115,31127
+40117,16376
+40119,81784
+40121,43654
+40123,38284
+40125,72592
+40127,11096
+40129,3583
+40131,92459
+40133,24258
+40135,41569
+40137,43143
+40139,19983
+40141,7250
+40143,651552
+40145,81289
+40147,51527
+40149,10916
+40151,8793
+40153,20211
+41000,4217737
+41001,16124
+41003,93053
+41005,418187
+41007,40224
+41009,52354
+41011,64487
+41013,24404
+41015,22925
+41017,197692
+41019,110980
+41021,1912
+41023,7199
+41025,7393
+41027,23382
+41029,220944
+41031,24658
+41033,87487
+41035,68238
+41037,7869
+41039,382067
+41041,49962
+41043,129749
+41045,30571
+41047,347818
+41049,11603
+41051,812855
+41053,86085
+41055,1780
+41057,27036
+41059,77950
+41061,26835
+41063,7208
+41065,26682
+41067,601592
+41069,1332
+41071,107100
+42000,12801989
+42001,103009
+42003,1216045
+42005,64735
+42007,163929
+42009,47888
+42011,421164
+42013,121829
+42015,60323
+42017,628270
+42019,187853
+42021,130192
+42023,4447
+42025,64182
+42027,162385
+42029,524989
+42031,38438
+42033,79255
+42035,38632
+42037,64964
+42039,84629
+42041,253370
+42043,278299
+42045,566747
+42047,29910
+42049,269728
+42051,129274
+42053,7247
+42055,155027
+42057,14530
+42059,36233
+42061,45144
+42063,84073
+42065,43425
+42067,24763
+42069,209674
+42071,545724
+42073,85512
+42075,141793
+42077,369318
+42079,317417
+42081,113299
+42083,40625
+42085,109424
+42087,46138
+42089,170271
+42091,830915
+42093,18230
+42095,305285
+42097,90843
+42099,46272
+42101,1584064
+42103,55809
+42105,16526
+42107,141359
+42109,40372
+42111,73447
+42113,6066
+42115,40328
+42117,40591
+42119,44923
+42121,50668
+42123,39191
+42125,206865
+42127,51361
+42129,348899
+42131,26794
+42133,449058
+44000,1059361
+44001,48479
+44003,164292
+44005,82082
+44007,638931
+44009,125577
+45000,5148714
+45001,24527
+45003,170872
+45005,8688
+45007,202558
+45009,14066
+45011,20866
+45013,192122
+45015,227907
+45017,14553
+45019,411406
+45021,57300
+45023,32244
+45025,45650
+45027,33745
+45029,37677
+45031,66618
+45033,30479
+45035,162809
+45037,27260
+45039,22347
+45041,138293
+45043,62680
+45045,523542
+45047,70811
+45049,19222
+45051,354081
+45053,30073
+45055,66551
+45057,98012
+45059,67493
+45061,16828
+45063,298750
+45065,9463
+45067,30657
+45069,26118
+45071,38440
+45073,79546
+45075,86175
+45077,126884
+45079,415759
+45081,20473
+45083,319785
+45085,106721
+45087,27316
+45089,30368
+45091,280979
+46000,884659
+46003,2751
+46005,18453
+46007,3365
+46009,6901
+46011,35077
+46013,38839
+46015,5297
+46017,1962
+46019,10429
+46021,1376
+46023,9292
+46025,3736
+46027,14070
+46029,28009
+46031,4086
+46033,8972
+46035,19775
+46037,5424
+46039,4351
+46041,5892
+46043,2921
+46045,3829
+46047,6713
+46049,2299
+46051,7052
+46053,4185
+46055,1899
+46057,6164
+46059,3191
+46061,3453
+46063,1298
+46065,17526
+46067,7291
+46069,1301
+46071,3344
+46073,2013
+46075,903
+46077,4939
+46079,12797
+46081,25844
+46083,61128
+46085,3781
+46087,5586
+46089,2379
+46091,4935
+46093,28332
+46095,2061
+46097,2216
+46099,193134
+46101,6576
+46102,14177
+46103,113775
+46105,2865
+46107,2153
+46109,10394
+46111,2344
+46115,6376
+46117,3098
+46119,1391
+46121,10177
+46123,5441
+46125,8384
+46127,15932
+46129,5435
+46135,22814
+46137,2756
+47000,6829174
+47001,76978
+47003,49713
+47005,16160
+47007,15064
+47009,133088
+47011,108110
+47013,39842
+47015,14678
+47017,27767
+47019,56391
+47021,40667
+47023,17297
+47025,31959
+47027,7615
+47029,36004
+47031,56520
+47033,14230
+47035,60520
+47037,694144
+47039,11663
+47041,20490
+47043,53948
+47045,37159
+47047,41133
+47049,18523
+47051,42208
+47053,49133
+47055,29464
+47057,23320
+47059,69069
+47061,13427
+47063,64934
+47065,367804
+47067,6620
+47069,25050
+47071,25652
+47073,56786
+47075,17304
+47077,28117
+47079,32345
+47081,25178
+47083,8201
+47085,18582
+47087,11786
+47089,54495
+47091,17788
+47093,470313
+47095,7016
+47097,25633
+47099,44142
+47101,12268
+47103,34366
+47105,54068
+47107,53794
+47109,25694
+47111,24602
+47113,97984
+47115,28907
+47117,34375
+47119,96387
+47121,12422
+47123,46545
+47125,208993
+47127,6488
+47129,21403
+47131,30069
+47133,22241
+47135,8076
+47137,5048
+47139,16832
+47141,80245
+47143,33167
+47145,53382
+47147,71813
+47149,332285
+47151,22068
+47153,15026
+47155,98250
+47157,937166
+47159,20157
+47161,13715
+47163,158348
+47165,191283
+47167,61599
+47169,11284
+47171,17883
+47173,19972
+47175,5872
+47177,41277
+47179,129375
+47181,16673
+47183,33328
+47185,27345
+47187,238412
+47189,144657
+48000,28995881
+48001,57735
+48003,18705
+48005,86715
+48007,23510
+48009,8553
+48011,1887
+48013,51153
+48015,30032
+48017,7000
+48019,23112
+48021,88723
+48023,3509
+48025,32565
+48027,362924
+48029,2003554
+48031,11931
+48033,654
+48035,18685
+48037,93245
+48039,374264
+48041,229211
+48043,9203
+48045,1546
+48047,7093
+48049,37864
+48051,18443
+48053,48155
+48055,43664
+48057,21290
+48059,13943
+48061,423163
+48063,13094
+48065,5926
+48067,30026
+48069,7530
+48071,43837
+48073,52646
+48075,7306
+48077,10471
+48079,2853
+48081,3387
+48083,8175
+48085,1034730
+48087,2920
+48089,21493
+48091,156209
+48093,13635
+48095,2726
+48097,41257
+48099,75951
+48101,1398
+48103,4797
+48105,3464
+48107,5737
+48109,2171
+48111,7287
+48113,2635516
+48115,12728
+48117,18546
+48119,5331
+48121,887207
+48123,20160
+48125,2211
+48127,10124
+48129,3278
+48131,11157
+48133,18360
+48135,166223
+48137,1932
+48139,184826
+48141,839238
+48143,42698
+48145,17297
+48147,35514
+48149,25346
+48151,3830
+48153,5712
+48155,1155
+48157,811688
+48159,10725
+48161,19717
+48163,20306
+48165,21492
+48167,342139
+48169,6229
+48171,26988
+48173,1409
+48175,7658
+48177,20837
+48179,21886
+48181,136212
+48183,123945
+48185,28880
+48187,166847
+48189,33406
+48191,2964
+48193,8461
+48195,5399
+48197,3933
+48199,57602
+48201,4713325
+48203,66553
+48205,5576
+48207,5658
+48209,230191
+48211,3819
+48213,82737
+48215,868707
+48217,36649
+48219,23021
+48221,61643
+48223,37084
+48225,22968
+48227,36664
+48229,4886
+48231,98594
+48233,20938
+48235,1536
+48237,8935
+48239,14760
+48241,35529
+48243,2274
+48245,251565
+48247,5200
+48249,40482
+48251,175817
+48253,20083
+48255,15601
+48257,136154
+48259,47431
+48261,404
+48263,762
+48265,52600
+48267,4337
+48269,272
+48271,3667
+48273,30680
+48275,3664
+48277,49859
+48279,12893
+48281,21428
+48283,7520
+48285,20154
+48287,17239
+48289,17404
+48291,88219
+48293,23437
+48295,3233
+48297,12207
+48299,21795
+48301,169
+48303,310569
+48305,5951
+48307,7984
+48309,256623
+48311,743
+48313,14284
+48315,9854
+48317,5771
+48319,4274
+48321,36643
+48323,58722
+48325,51584
+48327,2138
+48329,176832
+48331,24823
+48333,4873
+48335,8545
+48337,19818
+48339,607391
+48341,20940
+48343,12388
+48345,1200
+48347,65204
+48349,50113
+48351,13595
+48353,14714
+48355,362294
+48357,9836
+48359,2112
+48361,83396
+48363,29189
+48365,23194
+48367,142878
+48369,9605
+48371,15823
+48373,51353
+48375,117415
+48377,6704
+48379,12514
+48381,137713
+48383,3849
+48385,3452
+48387,12023
+48389,15976
+48391,6948
+48393,854
+48395,17074
+48397,104915
+48399,10264
+48401,54406
+48403,10542
+48405,8237
+48407,28859
+48409,66730
+48411,6055
+48413,2793
+48415,16703
+48417,3265
+48419,25274
+48421,3022
+48423,232751
+48425,9128
+48427,64633
+48429,9366
+48431,1291
+48433,1350
+48435,3776
+48437,7397
+48439,2102515
+48441,138034
+48443,776
+48445,12337
+48447,1501
+48449,32750
+48451,119200
+48453,1273954
+48455,14651
+48457,21672
+48459,41753
+48461,3657
+48463,26741
+48465,49025
+48467,56590
+48469,92084
+48471,72971
+48473,55246
+48475,11998
+48477,35882
+48479,276652
+48481,41556
+48483,5056
+48485,132230
+48487,12769
+48489,21358
+48491,590551
+48493,51070
+48495,8010
+48497,69984
+48499,45539
+48501,8713
+48503,18010
+48505,14179
+48507,11840
+49000,3205958
+49001,6710
+49003,56046
+49005,128289
+49007,20463
+49009,950
+49011,355481
+49013,19938
+49015,10012
+49017,5051
+49019,9754
+49021,54839
+49023,12017
+49025,7886
+49027,13188
+49029,12124
+49031,1479
+49033,2483
+49035,1160437
+49037,15308
+49039,30939
+49041,21620
+49043,42145
+49045,72259
+49047,35734
+49049,636235
+49051,34091
+49053,177556
+49055,2711
+49057,260213
+50000,623989
+50001,36777
+50003,35470
+50005,29993
+50007,163774
+50009,6163
+50011,49402
+50013,7235
+50015,25362
+50017,28892
+50019,27037
+50021,58191
+50023,58409
+50025,42222
+50027,55062
+51000,8535519
+51001,32316
+51003,109330
+51005,14860
+51007,13145
+51009,31605
+51011,15911
+51013,236842
+51015,75558
+51017,4147
+51019,78997
+51021,6280
+51023,33419
+51025,16231
+51027,21004
+51029,17148
+51031,54885
+51033,30725
+51035,29791
+51036,6963
+51037,11880
+51041,352802
+51043,14619
+51045,5131
+51047,52605
+51049,9932
+51051,14318
+51053,28544
+51057,10953
+51059,1147532
+51061,71222
+51063,15749
+51065,27270
+51067,56042
+51069,89313
+51071,16720
+51073,37348
+51075,23753
+51077,15550
+51079,19819
+51081,11336
+51083,33911
+51085,107766
+51087,330818
+51089,50557
+51091,2190
+51093,37109
+51095,76523
+51097,7025
+51099,26836
+51101,17148
+51103,10603
+51105,23423
+51107,413538
+51109,37591
+51111,12196
+51113,13261
+51115,8834
+51117,30587
+51119,10582
+51121,98535
+51125,14930
+51127,23091
+51131,11710
+51133,12095
+51135,15232
+51137,37051
+51139,23902
+51141,17608
+51143,60354
+51145,29652
+51147,22802
+51149,38353
+51153,470335
+51155,34027
+51157,7370
+51159,9023
+51161,94186
+51163,22573
+51165,81948
+51167,26586
+51169,21566
+51171,43616
+51173,30104
+51175,17631
+51177,136215
+51179,152882
+51181,6422
+51183,11159
+51185,40595
+51187,40164
+51191,53740
+51193,18015
+51195,37383
+51197,28684
+51199,68280
+51510,159428
+51520,16762
+51530,6478
+51540,47266
+51550,244835
+51570,17370
+51580,5538
+51590,40044
+51595,5346
+51600,24019
+51610,14617
+51620,7967
+51630,29036
+51640,6347
+51650,134510
+51660,53016
+51670,22529
+51678,7446
+51680,82168
+51683,41085
+51685,17478
+51690,12554
+51700,179225
+51710,242742
+51720,3981
+51730,31346
+51735,12271
+51740,94398
+51750,18249
+51760,230436
+51770,99143
+51775,25301
+51790,24932
+51800,92108
+51810,449974
+51820,22630
+51830,14954
+51840,28078
+53000,7614893
+53001,19983
+53003,22582
+53005,204390
+53007,77200
+53009,77331
+53011,488241
+53013,3985
+53015,110593
+53017,43429
+53019,7627
+53021,95222
+53023,2225
+53025,97733
+53027,75061
+53029,85141
+53031,32221
+53033,2252782
+53035,271473
+53037,47935
+53039,22425
+53041,80707
+53043,10939
+53045,66768
+53047,42243
+53049,22471
+53051,13724
+53053,904980
+53055,17582
+53057,129205
+53059,12083
+53061,822083
+53063,522798
+53065,45723
+53067,290536
+53069,4488
+53071,60760
+53073,229247
+53075,50104
+53077,250873
+54000,1792147
+54001,16441
+54003,119171
+54005,21457
+54007,13957
+54009,21939
+54011,91945
+54013,7109
+54015,8508
+54017,8448
+54019,42406
+54021,7823
+54023,11568
+54025,34662
+54027,23175
+54029,28810
+54031,13776
+54033,67256
+54035,28576
+54037,57146
+54039,178124
+54041,15907
+54043,20409
+54045,32019
+54047,17624
+54049,56072
+54051,30531
+54053,26516
+54055,58758
+54057,26868
+54059,23424
+54061,105612
+54063,13275
+54065,17884
+54067,24496
+54069,41411
+54071,6969
+54073,7460
+54075,8247
+54077,33432
+54079,56450
+54081,73361
+54083,28695
+54085,9554
+54087,13688
+54089,12573
+54091,16695
+54093,6839
+54095,8591
+54097,24176
+54099,39402
+54101,8114
+54103,15065
+54105,5821
+54107,83518
+54109,20394
+55000,5822434
+55001,20220
+55003,15562
+55005,45244
+55007,15036
+55009,264542
+55011,13031
+55013,15414
+55015,50089
+55017,64658
+55019,34774
+55021,57532
+55023,16131
+55025,546695
+55027,87839
+55029,27668
+55031,43150
+55033,45368
+55035,104646
+55037,4295
+55039,103403
+55041,9004
+55043,51439
+55045,36960
+55047,18913
+55049,23678
+55051,5687
+55053,20643
+55055,84769
+55057,26687
+55059,169561
+55061,20434
+55063,118016
+55065,16665
+55067,19189
+55069,27593
+55071,78981
+55073,135692
+55075,40350
+55077,15574
+55078,4556
+55079,945726
+55081,46253
+55083,37930
+55085,35595
+55087,187885
+55089,89221
+55091,7287
+55093,42754
+55095,43783
+55097,70772
+55099,13351
+55101,196311
+55103,17252
+55105,163354
+55107,14178
+55109,90687
+55111,64442
+55113,16558
+55115,40899
+55117,115340
+55119,20343
+55121,29649
+55123,30822
+55125,22195
+55127,103868
+55129,15720
+55131,136034
+55133,404198
+55135,50990
+55137,24443
+55139,171907
+55141,72999
+56000,578759
+56001,38880
+56003,11790
+56005,46341
+56007,14800
+56009,13822
+56011,7584
+56013,39261
+56015,13211
+56017,4413
+56019,8445
+56021,99500
+56023,19830
+56025,79858
+56027,2356
+56029,29194
+56031,8393
+56033,30485
+56035,9831
+56037,42343
+56039,23464
+56041,20226
+56043,7805
+56045,6927
+70002,28731
+70003,491918
+72000,3723066
72001,19483
72003,41959
72005,60944
diff --git a/_delphi_utils_python/delphi_utils/data/fips_state_table.csv b/_delphi_utils_python/delphi_utils/data/fips_state_table.csv
new file mode 100644
index 000000000..b458266a8
--- /dev/null
+++ b/_delphi_utils_python/delphi_utils/data/fips_state_table.csv
@@ -0,0 +1,3275 @@
+fips,state_code,state_id,state_name
+01000,01,al,Alabama
+01001,01,al,Alabama
+01003,01,al,Alabama
+01005,01,al,Alabama
+01007,01,al,Alabama
+01009,01,al,Alabama
+01011,01,al,Alabama
+01013,01,al,Alabama
+01015,01,al,Alabama
+01017,01,al,Alabama
+01019,01,al,Alabama
+01021,01,al,Alabama
+01023,01,al,Alabama
+01025,01,al,Alabama
+01027,01,al,Alabama
+01029,01,al,Alabama
+01031,01,al,Alabama
+01033,01,al,Alabama
+01035,01,al,Alabama
+01037,01,al,Alabama
+01039,01,al,Alabama
+01041,01,al,Alabama
+01043,01,al,Alabama
+01045,01,al,Alabama
+01047,01,al,Alabama
+01049,01,al,Alabama
+01051,01,al,Alabama
+01053,01,al,Alabama
+01055,01,al,Alabama
+01057,01,al,Alabama
+01059,01,al,Alabama
+01061,01,al,Alabama
+01063,01,al,Alabama
+01065,01,al,Alabama
+01067,01,al,Alabama
+01069,01,al,Alabama
+01071,01,al,Alabama
+01073,01,al,Alabama
+01075,01,al,Alabama
+01077,01,al,Alabama
+01079,01,al,Alabama
+01081,01,al,Alabama
+01083,01,al,Alabama
+01085,01,al,Alabama
+01087,01,al,Alabama
+01089,01,al,Alabama
+01091,01,al,Alabama
+01093,01,al,Alabama
+01095,01,al,Alabama
+01097,01,al,Alabama
+01099,01,al,Alabama
+01101,01,al,Alabama
+01103,01,al,Alabama
+01105,01,al,Alabama
+01107,01,al,Alabama
+01109,01,al,Alabama
+01111,01,al,Alabama
+01113,01,al,Alabama
+01115,01,al,Alabama
+01117,01,al,Alabama
+01119,01,al,Alabama
+01121,01,al,Alabama
+01123,01,al,Alabama
+01125,01,al,Alabama
+01127,01,al,Alabama
+01129,01,al,Alabama
+01131,01,al,Alabama
+01133,01,al,Alabama
+02000,02,ak,Alaska
+02013,02,ak,Alaska
+02016,02,ak,Alaska
+02020,02,ak,Alaska
+02050,02,ak,Alaska
+02060,02,ak,Alaska
+02068,02,ak,Alaska
+02070,02,ak,Alaska
+02090,02,ak,Alaska
+02100,02,ak,Alaska
+02105,02,ak,Alaska
+02110,02,ak,Alaska
+02122,02,ak,Alaska
+02130,02,ak,Alaska
+02150,02,ak,Alaska
+02158,02,ak,Alaska
+02164,02,ak,Alaska
+02170,02,ak,Alaska
+02180,02,ak,Alaska
+02185,02,ak,Alaska
+02188,02,ak,Alaska
+02195,02,ak,Alaska
+02198,02,ak,Alaska
+02220,02,ak,Alaska
+02230,02,ak,Alaska
+02240,02,ak,Alaska
+02261,02,ak,Alaska
+02275,02,ak,Alaska
+02282,02,ak,Alaska
+02290,02,ak,Alaska
+04000,04,az,Arizona
+04001,04,az,Arizona
+04003,04,az,Arizona
+04005,04,az,Arizona
+04007,04,az,Arizona
+04009,04,az,Arizona
+04011,04,az,Arizona
+04012,04,az,Arizona
+04013,04,az,Arizona
+04015,04,az,Arizona
+04017,04,az,Arizona
+04019,04,az,Arizona
+04021,04,az,Arizona
+04023,04,az,Arizona
+04025,04,az,Arizona
+04027,04,az,Arizona
+05000,05,ar,Arkansas
+05001,05,ar,Arkansas
+05003,05,ar,Arkansas
+05005,05,ar,Arkansas
+05007,05,ar,Arkansas
+05009,05,ar,Arkansas
+05011,05,ar,Arkansas
+05013,05,ar,Arkansas
+05015,05,ar,Arkansas
+05017,05,ar,Arkansas
+05019,05,ar,Arkansas
+05021,05,ar,Arkansas
+05023,05,ar,Arkansas
+05025,05,ar,Arkansas
+05027,05,ar,Arkansas
+05029,05,ar,Arkansas
+05031,05,ar,Arkansas
+05033,05,ar,Arkansas
+05035,05,ar,Arkansas
+05037,05,ar,Arkansas
+05039,05,ar,Arkansas
+05041,05,ar,Arkansas
+05043,05,ar,Arkansas
+05045,05,ar,Arkansas
+05047,05,ar,Arkansas
+05049,05,ar,Arkansas
+05051,05,ar,Arkansas
+05053,05,ar,Arkansas
+05055,05,ar,Arkansas
+05057,05,ar,Arkansas
+05059,05,ar,Arkansas
+05061,05,ar,Arkansas
+05063,05,ar,Arkansas
+05065,05,ar,Arkansas
+05067,05,ar,Arkansas
+05069,05,ar,Arkansas
+05071,05,ar,Arkansas
+05073,05,ar,Arkansas
+05075,05,ar,Arkansas
+05077,05,ar,Arkansas
+05079,05,ar,Arkansas
+05081,05,ar,Arkansas
+05083,05,ar,Arkansas
+05085,05,ar,Arkansas
+05087,05,ar,Arkansas
+05089,05,ar,Arkansas
+05091,05,ar,Arkansas
+05093,05,ar,Arkansas
+05095,05,ar,Arkansas
+05097,05,ar,Arkansas
+05099,05,ar,Arkansas
+05101,05,ar,Arkansas
+05103,05,ar,Arkansas
+05105,05,ar,Arkansas
+05107,05,ar,Arkansas
+05109,05,ar,Arkansas
+05111,05,ar,Arkansas
+05113,05,ar,Arkansas
+05115,05,ar,Arkansas
+05117,05,ar,Arkansas
+05119,05,ar,Arkansas
+05121,05,ar,Arkansas
+05123,05,ar,Arkansas
+05125,05,ar,Arkansas
+05127,05,ar,Arkansas
+05129,05,ar,Arkansas
+05131,05,ar,Arkansas
+05133,05,ar,Arkansas
+05135,05,ar,Arkansas
+05137,05,ar,Arkansas
+05139,05,ar,Arkansas
+05141,05,ar,Arkansas
+05143,05,ar,Arkansas
+05145,05,ar,Arkansas
+05147,05,ar,Arkansas
+05149,05,ar,Arkansas
+06000,06,ca,California
+06001,06,ca,California
+06003,06,ca,California
+06005,06,ca,California
+06007,06,ca,California
+06009,06,ca,California
+06011,06,ca,California
+06013,06,ca,California
+06015,06,ca,California
+06017,06,ca,California
+06019,06,ca,California
+06021,06,ca,California
+06023,06,ca,California
+06025,06,ca,California
+06027,06,ca,California
+06029,06,ca,California
+06031,06,ca,California
+06033,06,ca,California
+06035,06,ca,California
+06037,06,ca,California
+06039,06,ca,California
+06041,06,ca,California
+06043,06,ca,California
+06045,06,ca,California
+06047,06,ca,California
+06049,06,ca,California
+06051,06,ca,California
+06053,06,ca,California
+06055,06,ca,California
+06057,06,ca,California
+06059,06,ca,California
+06061,06,ca,California
+06063,06,ca,California
+06065,06,ca,California
+06067,06,ca,California
+06069,06,ca,California
+06071,06,ca,California
+06073,06,ca,California
+06075,06,ca,California
+06077,06,ca,California
+06079,06,ca,California
+06081,06,ca,California
+06083,06,ca,California
+06085,06,ca,California
+06087,06,ca,California
+06089,06,ca,California
+06091,06,ca,California
+06093,06,ca,California
+06095,06,ca,California
+06097,06,ca,California
+06099,06,ca,California
+06101,06,ca,California
+06103,06,ca,California
+06105,06,ca,California
+06107,06,ca,California
+06109,06,ca,California
+06111,06,ca,California
+06113,06,ca,California
+06115,06,ca,California
+08000,08,co,Colorado
+08001,08,co,Colorado
+08003,08,co,Colorado
+08005,08,co,Colorado
+08007,08,co,Colorado
+08009,08,co,Colorado
+08011,08,co,Colorado
+08013,08,co,Colorado
+08014,08,co,Colorado
+08015,08,co,Colorado
+08017,08,co,Colorado
+08019,08,co,Colorado
+08021,08,co,Colorado
+08023,08,co,Colorado
+08025,08,co,Colorado
+08027,08,co,Colorado
+08029,08,co,Colorado
+08031,08,co,Colorado
+08033,08,co,Colorado
+08035,08,co,Colorado
+08037,08,co,Colorado
+08039,08,co,Colorado
+08041,08,co,Colorado
+08043,08,co,Colorado
+08045,08,co,Colorado
+08047,08,co,Colorado
+08049,08,co,Colorado
+08051,08,co,Colorado
+08053,08,co,Colorado
+08055,08,co,Colorado
+08057,08,co,Colorado
+08059,08,co,Colorado
+08061,08,co,Colorado
+08063,08,co,Colorado
+08065,08,co,Colorado
+08067,08,co,Colorado
+08069,08,co,Colorado
+08071,08,co,Colorado
+08073,08,co,Colorado
+08075,08,co,Colorado
+08077,08,co,Colorado
+08079,08,co,Colorado
+08081,08,co,Colorado
+08083,08,co,Colorado
+08085,08,co,Colorado
+08087,08,co,Colorado
+08089,08,co,Colorado
+08091,08,co,Colorado
+08093,08,co,Colorado
+08095,08,co,Colorado
+08097,08,co,Colorado
+08099,08,co,Colorado
+08101,08,co,Colorado
+08103,08,co,Colorado
+08105,08,co,Colorado
+08107,08,co,Colorado
+08109,08,co,Colorado
+08111,08,co,Colorado
+08113,08,co,Colorado
+08115,08,co,Colorado
+08117,08,co,Colorado
+08119,08,co,Colorado
+08121,08,co,Colorado
+08123,08,co,Colorado
+08125,08,co,Colorado
+09000,09,ct,Connecticut
+09001,09,ct,Connecticut
+09003,09,ct,Connecticut
+09005,09,ct,Connecticut
+09007,09,ct,Connecticut
+09009,09,ct,Connecticut
+09011,09,ct,Connecticut
+09013,09,ct,Connecticut
+09015,09,ct,Connecticut
+10000,10,de,Delaware
+10001,10,de,Delaware
+10003,10,de,Delaware
+10005,10,de,Delaware
+11000,11,dc,District of Columbia
+11001,11,dc,District of Columbia
+12000,12,fl,Florida
+12001,12,fl,Florida
+12003,12,fl,Florida
+12005,12,fl,Florida
+12007,12,fl,Florida
+12009,12,fl,Florida
+12011,12,fl,Florida
+12013,12,fl,Florida
+12015,12,fl,Florida
+12017,12,fl,Florida
+12019,12,fl,Florida
+12021,12,fl,Florida
+12023,12,fl,Florida
+12027,12,fl,Florida
+12029,12,fl,Florida
+12031,12,fl,Florida
+12033,12,fl,Florida
+12035,12,fl,Florida
+12037,12,fl,Florida
+12039,12,fl,Florida
+12041,12,fl,Florida
+12043,12,fl,Florida
+12045,12,fl,Florida
+12047,12,fl,Florida
+12049,12,fl,Florida
+12051,12,fl,Florida
+12053,12,fl,Florida
+12055,12,fl,Florida
+12057,12,fl,Florida
+12059,12,fl,Florida
+12061,12,fl,Florida
+12063,12,fl,Florida
+12065,12,fl,Florida
+12067,12,fl,Florida
+12069,12,fl,Florida
+12071,12,fl,Florida
+12073,12,fl,Florida
+12075,12,fl,Florida
+12077,12,fl,Florida
+12079,12,fl,Florida
+12081,12,fl,Florida
+12083,12,fl,Florida
+12085,12,fl,Florida
+12086,12,fl,Florida
+12087,12,fl,Florida
+12089,12,fl,Florida
+12091,12,fl,Florida
+12093,12,fl,Florida
+12095,12,fl,Florida
+12097,12,fl,Florida
+12099,12,fl,Florida
+12101,12,fl,Florida
+12103,12,fl,Florida
+12105,12,fl,Florida
+12107,12,fl,Florida
+12109,12,fl,Florida
+12111,12,fl,Florida
+12113,12,fl,Florida
+12115,12,fl,Florida
+12117,12,fl,Florida
+12119,12,fl,Florida
+12121,12,fl,Florida
+12123,12,fl,Florida
+12125,12,fl,Florida
+12127,12,fl,Florida
+12129,12,fl,Florida
+12131,12,fl,Florida
+12133,12,fl,Florida
+13000,13,ga,Georgia
+13001,13,ga,Georgia
+13003,13,ga,Georgia
+13005,13,ga,Georgia
+13007,13,ga,Georgia
+13009,13,ga,Georgia
+13011,13,ga,Georgia
+13013,13,ga,Georgia
+13015,13,ga,Georgia
+13017,13,ga,Georgia
+13019,13,ga,Georgia
+13021,13,ga,Georgia
+13023,13,ga,Georgia
+13025,13,ga,Georgia
+13027,13,ga,Georgia
+13029,13,ga,Georgia
+13031,13,ga,Georgia
+13033,13,ga,Georgia
+13035,13,ga,Georgia
+13037,13,ga,Georgia
+13039,13,ga,Georgia
+13043,13,ga,Georgia
+13045,13,ga,Georgia
+13047,13,ga,Georgia
+13049,13,ga,Georgia
+13051,13,ga,Georgia
+13053,13,ga,Georgia
+13055,13,ga,Georgia
+13057,13,ga,Georgia
+13059,13,ga,Georgia
+13061,13,ga,Georgia
+13063,13,ga,Georgia
+13065,13,ga,Georgia
+13067,13,ga,Georgia
+13069,13,ga,Georgia
+13071,13,ga,Georgia
+13073,13,ga,Georgia
+13075,13,ga,Georgia
+13077,13,ga,Georgia
+13079,13,ga,Georgia
+13081,13,ga,Georgia
+13083,13,ga,Georgia
+13085,13,ga,Georgia
+13087,13,ga,Georgia
+13089,13,ga,Georgia
+13091,13,ga,Georgia
+13093,13,ga,Georgia
+13095,13,ga,Georgia
+13097,13,ga,Georgia
+13099,13,ga,Georgia
+13101,13,ga,Georgia
+13103,13,ga,Georgia
+13105,13,ga,Georgia
+13107,13,ga,Georgia
+13109,13,ga,Georgia
+13111,13,ga,Georgia
+13113,13,ga,Georgia
+13115,13,ga,Georgia
+13117,13,ga,Georgia
+13119,13,ga,Georgia
+13121,13,ga,Georgia
+13123,13,ga,Georgia
+13125,13,ga,Georgia
+13127,13,ga,Georgia
+13129,13,ga,Georgia
+13131,13,ga,Georgia
+13133,13,ga,Georgia
+13135,13,ga,Georgia
+13137,13,ga,Georgia
+13139,13,ga,Georgia
+13141,13,ga,Georgia
+13143,13,ga,Georgia
+13145,13,ga,Georgia
+13147,13,ga,Georgia
+13149,13,ga,Georgia
+13151,13,ga,Georgia
+13153,13,ga,Georgia
+13155,13,ga,Georgia
+13157,13,ga,Georgia
+13159,13,ga,Georgia
+13161,13,ga,Georgia
+13163,13,ga,Georgia
+13165,13,ga,Georgia
+13167,13,ga,Georgia
+13169,13,ga,Georgia
+13171,13,ga,Georgia
+13173,13,ga,Georgia
+13175,13,ga,Georgia
+13177,13,ga,Georgia
+13179,13,ga,Georgia
+13181,13,ga,Georgia
+13183,13,ga,Georgia
+13185,13,ga,Georgia
+13187,13,ga,Georgia
+13189,13,ga,Georgia
+13191,13,ga,Georgia
+13193,13,ga,Georgia
+13195,13,ga,Georgia
+13197,13,ga,Georgia
+13199,13,ga,Georgia
+13201,13,ga,Georgia
+13205,13,ga,Georgia
+13207,13,ga,Georgia
+13209,13,ga,Georgia
+13211,13,ga,Georgia
+13213,13,ga,Georgia
+13215,13,ga,Georgia
+13217,13,ga,Georgia
+13219,13,ga,Georgia
+13221,13,ga,Georgia
+13223,13,ga,Georgia
+13225,13,ga,Georgia
+13227,13,ga,Georgia
+13229,13,ga,Georgia
+13231,13,ga,Georgia
+13233,13,ga,Georgia
+13235,13,ga,Georgia
+13237,13,ga,Georgia
+13239,13,ga,Georgia
+13241,13,ga,Georgia
+13243,13,ga,Georgia
+13245,13,ga,Georgia
+13247,13,ga,Georgia
+13249,13,ga,Georgia
+13251,13,ga,Georgia
+13253,13,ga,Georgia
+13255,13,ga,Georgia
+13257,13,ga,Georgia
+13259,13,ga,Georgia
+13261,13,ga,Georgia
+13263,13,ga,Georgia
+13265,13,ga,Georgia
+13267,13,ga,Georgia
+13269,13,ga,Georgia
+13271,13,ga,Georgia
+13273,13,ga,Georgia
+13275,13,ga,Georgia
+13277,13,ga,Georgia
+13279,13,ga,Georgia
+13281,13,ga,Georgia
+13283,13,ga,Georgia
+13285,13,ga,Georgia
+13287,13,ga,Georgia
+13289,13,ga,Georgia
+13291,13,ga,Georgia
+13293,13,ga,Georgia
+13295,13,ga,Georgia
+13297,13,ga,Georgia
+13299,13,ga,Georgia
+13301,13,ga,Georgia
+13303,13,ga,Georgia
+13305,13,ga,Georgia
+13307,13,ga,Georgia
+13309,13,ga,Georgia
+13311,13,ga,Georgia
+13313,13,ga,Georgia
+13315,13,ga,Georgia
+13317,13,ga,Georgia
+13319,13,ga,Georgia
+13321,13,ga,Georgia
+15000,15,hi,Hawaii
+15001,15,hi,Hawaii
+15003,15,hi,Hawaii
+15005,15,hi,Hawaii
+15007,15,hi,Hawaii
+15009,15,hi,Hawaii
+16000,16,id,Idaho
+16001,16,id,Idaho
+16003,16,id,Idaho
+16005,16,id,Idaho
+16007,16,id,Idaho
+16009,16,id,Idaho
+16011,16,id,Idaho
+16013,16,id,Idaho
+16015,16,id,Idaho
+16017,16,id,Idaho
+16019,16,id,Idaho
+16021,16,id,Idaho
+16023,16,id,Idaho
+16025,16,id,Idaho
+16027,16,id,Idaho
+16029,16,id,Idaho
+16031,16,id,Idaho
+16033,16,id,Idaho
+16035,16,id,Idaho
+16037,16,id,Idaho
+16039,16,id,Idaho
+16041,16,id,Idaho
+16043,16,id,Idaho
+16045,16,id,Idaho
+16047,16,id,Idaho
+16049,16,id,Idaho
+16051,16,id,Idaho
+16053,16,id,Idaho
+16055,16,id,Idaho
+16057,16,id,Idaho
+16059,16,id,Idaho
+16061,16,id,Idaho
+16063,16,id,Idaho
+16065,16,id,Idaho
+16067,16,id,Idaho
+16069,16,id,Idaho
+16071,16,id,Idaho
+16073,16,id,Idaho
+16075,16,id,Idaho
+16077,16,id,Idaho
+16079,16,id,Idaho
+16081,16,id,Idaho
+16083,16,id,Idaho
+16085,16,id,Idaho
+16087,16,id,Idaho
+17000,17,il,Illinois
+17001,17,il,Illinois
+17003,17,il,Illinois
+17005,17,il,Illinois
+17007,17,il,Illinois
+17009,17,il,Illinois
+17011,17,il,Illinois
+17013,17,il,Illinois
+17015,17,il,Illinois
+17017,17,il,Illinois
+17019,17,il,Illinois
+17021,17,il,Illinois
+17023,17,il,Illinois
+17025,17,il,Illinois
+17027,17,il,Illinois
+17029,17,il,Illinois
+17031,17,il,Illinois
+17033,17,il,Illinois
+17035,17,il,Illinois
+17037,17,il,Illinois
+17039,17,il,Illinois
+17041,17,il,Illinois
+17043,17,il,Illinois
+17045,17,il,Illinois
+17047,17,il,Illinois
+17049,17,il,Illinois
+17051,17,il,Illinois
+17053,17,il,Illinois
+17055,17,il,Illinois
+17057,17,il,Illinois
+17059,17,il,Illinois
+17061,17,il,Illinois
+17063,17,il,Illinois
+17065,17,il,Illinois
+17067,17,il,Illinois
+17069,17,il,Illinois
+17071,17,il,Illinois
+17073,17,il,Illinois
+17075,17,il,Illinois
+17077,17,il,Illinois
+17079,17,il,Illinois
+17081,17,il,Illinois
+17083,17,il,Illinois
+17085,17,il,Illinois
+17087,17,il,Illinois
+17089,17,il,Illinois
+17091,17,il,Illinois
+17093,17,il,Illinois
+17095,17,il,Illinois
+17097,17,il,Illinois
+17099,17,il,Illinois
+17101,17,il,Illinois
+17103,17,il,Illinois
+17105,17,il,Illinois
+17107,17,il,Illinois
+17109,17,il,Illinois
+17111,17,il,Illinois
+17113,17,il,Illinois
+17115,17,il,Illinois
+17117,17,il,Illinois
+17119,17,il,Illinois
+17121,17,il,Illinois
+17123,17,il,Illinois
+17125,17,il,Illinois
+17127,17,il,Illinois
+17129,17,il,Illinois
+17131,17,il,Illinois
+17133,17,il,Illinois
+17135,17,il,Illinois
+17137,17,il,Illinois
+17139,17,il,Illinois
+17141,17,il,Illinois
+17143,17,il,Illinois
+17145,17,il,Illinois
+17147,17,il,Illinois
+17149,17,il,Illinois
+17151,17,il,Illinois
+17153,17,il,Illinois
+17155,17,il,Illinois
+17157,17,il,Illinois
+17159,17,il,Illinois
+17161,17,il,Illinois
+17163,17,il,Illinois
+17165,17,il,Illinois
+17167,17,il,Illinois
+17169,17,il,Illinois
+17171,17,il,Illinois
+17173,17,il,Illinois
+17175,17,il,Illinois
+17177,17,il,Illinois
+17179,17,il,Illinois
+17181,17,il,Illinois
+17183,17,il,Illinois
+17185,17,il,Illinois
+17187,17,il,Illinois
+17189,17,il,Illinois
+17191,17,il,Illinois
+17193,17,il,Illinois
+17195,17,il,Illinois
+17197,17,il,Illinois
+17199,17,il,Illinois
+17201,17,il,Illinois
+17203,17,il,Illinois
+18000,18,in,Indiana
+18001,18,in,Indiana
+18003,18,in,Indiana
+18005,18,in,Indiana
+18007,18,in,Indiana
+18009,18,in,Indiana
+18011,18,in,Indiana
+18013,18,in,Indiana
+18015,18,in,Indiana
+18017,18,in,Indiana
+18019,18,in,Indiana
+18021,18,in,Indiana
+18023,18,in,Indiana
+18025,18,in,Indiana
+18027,18,in,Indiana
+18029,18,in,Indiana
+18031,18,in,Indiana
+18033,18,in,Indiana
+18035,18,in,Indiana
+18037,18,in,Indiana
+18039,18,in,Indiana
+18041,18,in,Indiana
+18043,18,in,Indiana
+18045,18,in,Indiana
+18047,18,in,Indiana
+18049,18,in,Indiana
+18051,18,in,Indiana
+18053,18,in,Indiana
+18055,18,in,Indiana
+18057,18,in,Indiana
+18059,18,in,Indiana
+18061,18,in,Indiana
+18063,18,in,Indiana
+18065,18,in,Indiana
+18067,18,in,Indiana
+18069,18,in,Indiana
+18071,18,in,Indiana
+18073,18,in,Indiana
+18075,18,in,Indiana
+18077,18,in,Indiana
+18079,18,in,Indiana
+18081,18,in,Indiana
+18083,18,in,Indiana
+18085,18,in,Indiana
+18087,18,in,Indiana
+18089,18,in,Indiana
+18091,18,in,Indiana
+18093,18,in,Indiana
+18095,18,in,Indiana
+18097,18,in,Indiana
+18099,18,in,Indiana
+18101,18,in,Indiana
+18103,18,in,Indiana
+18105,18,in,Indiana
+18107,18,in,Indiana
+18109,18,in,Indiana
+18111,18,in,Indiana
+18113,18,in,Indiana
+18115,18,in,Indiana
+18117,18,in,Indiana
+18119,18,in,Indiana
+18121,18,in,Indiana
+18123,18,in,Indiana
+18125,18,in,Indiana
+18127,18,in,Indiana
+18129,18,in,Indiana
+18131,18,in,Indiana
+18133,18,in,Indiana
+18135,18,in,Indiana
+18137,18,in,Indiana
+18139,18,in,Indiana
+18141,18,in,Indiana
+18143,18,in,Indiana
+18145,18,in,Indiana
+18147,18,in,Indiana
+18149,18,in,Indiana
+18151,18,in,Indiana
+18153,18,in,Indiana
+18155,18,in,Indiana
+18157,18,in,Indiana
+18159,18,in,Indiana
+18161,18,in,Indiana
+18163,18,in,Indiana
+18165,18,in,Indiana
+18167,18,in,Indiana
+18169,18,in,Indiana
+18171,18,in,Indiana
+18173,18,in,Indiana
+18175,18,in,Indiana
+18177,18,in,Indiana
+18179,18,in,Indiana
+18181,18,in,Indiana
+18183,18,in,Indiana
+19000,19,ia,Iowa
+19001,19,ia,Iowa
+19003,19,ia,Iowa
+19005,19,ia,Iowa
+19007,19,ia,Iowa
+19009,19,ia,Iowa
+19011,19,ia,Iowa
+19013,19,ia,Iowa
+19015,19,ia,Iowa
+19017,19,ia,Iowa
+19019,19,ia,Iowa
+19021,19,ia,Iowa
+19023,19,ia,Iowa
+19025,19,ia,Iowa
+19027,19,ia,Iowa
+19029,19,ia,Iowa
+19031,19,ia,Iowa
+19033,19,ia,Iowa
+19035,19,ia,Iowa
+19037,19,ia,Iowa
+19039,19,ia,Iowa
+19041,19,ia,Iowa
+19043,19,ia,Iowa
+19045,19,ia,Iowa
+19047,19,ia,Iowa
+19049,19,ia,Iowa
+19051,19,ia,Iowa
+19053,19,ia,Iowa
+19055,19,ia,Iowa
+19057,19,ia,Iowa
+19059,19,ia,Iowa
+19061,19,ia,Iowa
+19063,19,ia,Iowa
+19065,19,ia,Iowa
+19067,19,ia,Iowa
+19069,19,ia,Iowa
+19071,19,ia,Iowa
+19073,19,ia,Iowa
+19075,19,ia,Iowa
+19077,19,ia,Iowa
+19079,19,ia,Iowa
+19081,19,ia,Iowa
+19083,19,ia,Iowa
+19085,19,ia,Iowa
+19087,19,ia,Iowa
+19089,19,ia,Iowa
+19091,19,ia,Iowa
+19093,19,ia,Iowa
+19095,19,ia,Iowa
+19097,19,ia,Iowa
+19099,19,ia,Iowa
+19101,19,ia,Iowa
+19103,19,ia,Iowa
+19105,19,ia,Iowa
+19107,19,ia,Iowa
+19109,19,ia,Iowa
+19111,19,ia,Iowa
+19113,19,ia,Iowa
+19115,19,ia,Iowa
+19117,19,ia,Iowa
+19119,19,ia,Iowa
+19121,19,ia,Iowa
+19123,19,ia,Iowa
+19125,19,ia,Iowa
+19127,19,ia,Iowa
+19129,19,ia,Iowa
+19131,19,ia,Iowa
+19133,19,ia,Iowa
+19135,19,ia,Iowa
+19137,19,ia,Iowa
+19139,19,ia,Iowa
+19141,19,ia,Iowa
+19143,19,ia,Iowa
+19145,19,ia,Iowa
+19147,19,ia,Iowa
+19149,19,ia,Iowa
+19151,19,ia,Iowa
+19153,19,ia,Iowa
+19155,19,ia,Iowa
+19157,19,ia,Iowa
+19159,19,ia,Iowa
+19161,19,ia,Iowa
+19163,19,ia,Iowa
+19165,19,ia,Iowa
+19167,19,ia,Iowa
+19169,19,ia,Iowa
+19171,19,ia,Iowa
+19173,19,ia,Iowa
+19175,19,ia,Iowa
+19177,19,ia,Iowa
+19179,19,ia,Iowa
+19181,19,ia,Iowa
+19183,19,ia,Iowa
+19185,19,ia,Iowa
+19187,19,ia,Iowa
+19189,19,ia,Iowa
+19191,19,ia,Iowa
+19193,19,ia,Iowa
+19195,19,ia,Iowa
+19197,19,ia,Iowa
+20000,20,ks,Kansas
+20001,20,ks,Kansas
+20003,20,ks,Kansas
+20005,20,ks,Kansas
+20007,20,ks,Kansas
+20009,20,ks,Kansas
+20011,20,ks,Kansas
+20013,20,ks,Kansas
+20015,20,ks,Kansas
+20017,20,ks,Kansas
+20019,20,ks,Kansas
+20021,20,ks,Kansas
+20023,20,ks,Kansas
+20025,20,ks,Kansas
+20027,20,ks,Kansas
+20029,20,ks,Kansas
+20031,20,ks,Kansas
+20033,20,ks,Kansas
+20035,20,ks,Kansas
+20037,20,ks,Kansas
+20039,20,ks,Kansas
+20041,20,ks,Kansas
+20043,20,ks,Kansas
+20045,20,ks,Kansas
+20047,20,ks,Kansas
+20049,20,ks,Kansas
+20051,20,ks,Kansas
+20053,20,ks,Kansas
+20055,20,ks,Kansas
+20057,20,ks,Kansas
+20059,20,ks,Kansas
+20061,20,ks,Kansas
+20063,20,ks,Kansas
+20065,20,ks,Kansas
+20067,20,ks,Kansas
+20069,20,ks,Kansas
+20071,20,ks,Kansas
+20073,20,ks,Kansas
+20075,20,ks,Kansas
+20077,20,ks,Kansas
+20079,20,ks,Kansas
+20081,20,ks,Kansas
+20083,20,ks,Kansas
+20085,20,ks,Kansas
+20087,20,ks,Kansas
+20089,20,ks,Kansas
+20091,20,ks,Kansas
+20093,20,ks,Kansas
+20095,20,ks,Kansas
+20097,20,ks,Kansas
+20099,20,ks,Kansas
+20101,20,ks,Kansas
+20103,20,ks,Kansas
+20105,20,ks,Kansas
+20107,20,ks,Kansas
+20109,20,ks,Kansas
+20111,20,ks,Kansas
+20113,20,ks,Kansas
+20115,20,ks,Kansas
+20117,20,ks,Kansas
+20119,20,ks,Kansas
+20121,20,ks,Kansas
+20123,20,ks,Kansas
+20125,20,ks,Kansas
+20127,20,ks,Kansas
+20129,20,ks,Kansas
+20131,20,ks,Kansas
+20133,20,ks,Kansas
+20135,20,ks,Kansas
+20137,20,ks,Kansas
+20139,20,ks,Kansas
+20141,20,ks,Kansas
+20143,20,ks,Kansas
+20145,20,ks,Kansas
+20147,20,ks,Kansas
+20149,20,ks,Kansas
+20151,20,ks,Kansas
+20153,20,ks,Kansas
+20155,20,ks,Kansas
+20157,20,ks,Kansas
+20159,20,ks,Kansas
+20161,20,ks,Kansas
+20163,20,ks,Kansas
+20165,20,ks,Kansas
+20167,20,ks,Kansas
+20169,20,ks,Kansas
+20171,20,ks,Kansas
+20173,20,ks,Kansas
+20175,20,ks,Kansas
+20177,20,ks,Kansas
+20179,20,ks,Kansas
+20181,20,ks,Kansas
+20183,20,ks,Kansas
+20185,20,ks,Kansas
+20187,20,ks,Kansas
+20189,20,ks,Kansas
+20191,20,ks,Kansas
+20193,20,ks,Kansas
+20195,20,ks,Kansas
+20197,20,ks,Kansas
+20199,20,ks,Kansas
+20201,20,ks,Kansas
+20203,20,ks,Kansas
+20205,20,ks,Kansas
+20207,20,ks,Kansas
+20209,20,ks,Kansas
+21000,21,ky,Kentucky
+21001,21,ky,Kentucky
+21003,21,ky,Kentucky
+21005,21,ky,Kentucky
+21007,21,ky,Kentucky
+21009,21,ky,Kentucky
+21011,21,ky,Kentucky
+21013,21,ky,Kentucky
+21015,21,ky,Kentucky
+21017,21,ky,Kentucky
+21019,21,ky,Kentucky
+21021,21,ky,Kentucky
+21023,21,ky,Kentucky
+21025,21,ky,Kentucky
+21027,21,ky,Kentucky
+21029,21,ky,Kentucky
+21031,21,ky,Kentucky
+21033,21,ky,Kentucky
+21035,21,ky,Kentucky
+21037,21,ky,Kentucky
+21039,21,ky,Kentucky
+21041,21,ky,Kentucky
+21043,21,ky,Kentucky
+21045,21,ky,Kentucky
+21047,21,ky,Kentucky
+21049,21,ky,Kentucky
+21051,21,ky,Kentucky
+21053,21,ky,Kentucky
+21055,21,ky,Kentucky
+21057,21,ky,Kentucky
+21059,21,ky,Kentucky
+21061,21,ky,Kentucky
+21063,21,ky,Kentucky
+21065,21,ky,Kentucky
+21067,21,ky,Kentucky
+21069,21,ky,Kentucky
+21071,21,ky,Kentucky
+21073,21,ky,Kentucky
+21075,21,ky,Kentucky
+21077,21,ky,Kentucky
+21079,21,ky,Kentucky
+21081,21,ky,Kentucky
+21083,21,ky,Kentucky
+21085,21,ky,Kentucky
+21087,21,ky,Kentucky
+21089,21,ky,Kentucky
+21091,21,ky,Kentucky
+21093,21,ky,Kentucky
+21095,21,ky,Kentucky
+21097,21,ky,Kentucky
+21099,21,ky,Kentucky
+21101,21,ky,Kentucky
+21103,21,ky,Kentucky
+21105,21,ky,Kentucky
+21107,21,ky,Kentucky
+21109,21,ky,Kentucky
+21111,21,ky,Kentucky
+21113,21,ky,Kentucky
+21115,21,ky,Kentucky
+21117,21,ky,Kentucky
+21119,21,ky,Kentucky
+21121,21,ky,Kentucky
+21123,21,ky,Kentucky
+21125,21,ky,Kentucky
+21127,21,ky,Kentucky
+21129,21,ky,Kentucky
+21131,21,ky,Kentucky
+21133,21,ky,Kentucky
+21135,21,ky,Kentucky
+21137,21,ky,Kentucky
+21139,21,ky,Kentucky
+21141,21,ky,Kentucky
+21143,21,ky,Kentucky
+21145,21,ky,Kentucky
+21147,21,ky,Kentucky
+21149,21,ky,Kentucky
+21151,21,ky,Kentucky
+21153,21,ky,Kentucky
+21155,21,ky,Kentucky
+21157,21,ky,Kentucky
+21159,21,ky,Kentucky
+21161,21,ky,Kentucky
+21163,21,ky,Kentucky
+21165,21,ky,Kentucky
+21167,21,ky,Kentucky
+21169,21,ky,Kentucky
+21171,21,ky,Kentucky
+21173,21,ky,Kentucky
+21175,21,ky,Kentucky
+21177,21,ky,Kentucky
+21179,21,ky,Kentucky
+21181,21,ky,Kentucky
+21183,21,ky,Kentucky
+21185,21,ky,Kentucky
+21187,21,ky,Kentucky
+21189,21,ky,Kentucky
+21191,21,ky,Kentucky
+21193,21,ky,Kentucky
+21195,21,ky,Kentucky
+21197,21,ky,Kentucky
+21199,21,ky,Kentucky
+21201,21,ky,Kentucky
+21203,21,ky,Kentucky
+21205,21,ky,Kentucky
+21207,21,ky,Kentucky
+21209,21,ky,Kentucky
+21211,21,ky,Kentucky
+21213,21,ky,Kentucky
+21215,21,ky,Kentucky
+21217,21,ky,Kentucky
+21219,21,ky,Kentucky
+21221,21,ky,Kentucky
+21223,21,ky,Kentucky
+21225,21,ky,Kentucky
+21227,21,ky,Kentucky
+21229,21,ky,Kentucky
+21231,21,ky,Kentucky
+21233,21,ky,Kentucky
+21235,21,ky,Kentucky
+21237,21,ky,Kentucky
+21239,21,ky,Kentucky
+22000,22,la,Louisiana
+22001,22,la,Louisiana
+22003,22,la,Louisiana
+22005,22,la,Louisiana
+22007,22,la,Louisiana
+22009,22,la,Louisiana
+22011,22,la,Louisiana
+22013,22,la,Louisiana
+22015,22,la,Louisiana
+22017,22,la,Louisiana
+22019,22,la,Louisiana
+22021,22,la,Louisiana
+22023,22,la,Louisiana
+22025,22,la,Louisiana
+22027,22,la,Louisiana
+22029,22,la,Louisiana
+22031,22,la,Louisiana
+22033,22,la,Louisiana
+22035,22,la,Louisiana
+22037,22,la,Louisiana
+22039,22,la,Louisiana
+22041,22,la,Louisiana
+22043,22,la,Louisiana
+22045,22,la,Louisiana
+22047,22,la,Louisiana
+22049,22,la,Louisiana
+22051,22,la,Louisiana
+22053,22,la,Louisiana
+22055,22,la,Louisiana
+22057,22,la,Louisiana
+22059,22,la,Louisiana
+22061,22,la,Louisiana
+22063,22,la,Louisiana
+22065,22,la,Louisiana
+22067,22,la,Louisiana
+22069,22,la,Louisiana
+22071,22,la,Louisiana
+22073,22,la,Louisiana
+22075,22,la,Louisiana
+22077,22,la,Louisiana
+22079,22,la,Louisiana
+22081,22,la,Louisiana
+22083,22,la,Louisiana
+22085,22,la,Louisiana
+22087,22,la,Louisiana
+22089,22,la,Louisiana
+22091,22,la,Louisiana
+22093,22,la,Louisiana
+22095,22,la,Louisiana
+22097,22,la,Louisiana
+22099,22,la,Louisiana
+22101,22,la,Louisiana
+22103,22,la,Louisiana
+22105,22,la,Louisiana
+22107,22,la,Louisiana
+22109,22,la,Louisiana
+22111,22,la,Louisiana
+22113,22,la,Louisiana
+22115,22,la,Louisiana
+22117,22,la,Louisiana
+22119,22,la,Louisiana
+22121,22,la,Louisiana
+22123,22,la,Louisiana
+22125,22,la,Louisiana
+22127,22,la,Louisiana
+23000,23,me,Maine
+23001,23,me,Maine
+23003,23,me,Maine
+23005,23,me,Maine
+23007,23,me,Maine
+23009,23,me,Maine
+23011,23,me,Maine
+23013,23,me,Maine
+23015,23,me,Maine
+23017,23,me,Maine
+23019,23,me,Maine
+23021,23,me,Maine
+23023,23,me,Maine
+23025,23,me,Maine
+23027,23,me,Maine
+23029,23,me,Maine
+23031,23,me,Maine
+24000,24,md,Maryland
+24001,24,md,Maryland
+24003,24,md,Maryland
+24005,24,md,Maryland
+24009,24,md,Maryland
+24011,24,md,Maryland
+24013,24,md,Maryland
+24015,24,md,Maryland
+24017,24,md,Maryland
+24019,24,md,Maryland
+24021,24,md,Maryland
+24023,24,md,Maryland
+24025,24,md,Maryland
+24027,24,md,Maryland
+24029,24,md,Maryland
+24031,24,md,Maryland
+24033,24,md,Maryland
+24035,24,md,Maryland
+24037,24,md,Maryland
+24039,24,md,Maryland
+24041,24,md,Maryland
+24043,24,md,Maryland
+24045,24,md,Maryland
+24047,24,md,Maryland
+24510,24,md,Maryland
+25000,25,ma,Massachusetts
+25001,25,ma,Massachusetts
+25003,25,ma,Massachusetts
+25005,25,ma,Massachusetts
+25007,25,ma,Massachusetts
+25009,25,ma,Massachusetts
+25011,25,ma,Massachusetts
+25013,25,ma,Massachusetts
+25015,25,ma,Massachusetts
+25017,25,ma,Massachusetts
+25019,25,ma,Massachusetts
+25021,25,ma,Massachusetts
+25023,25,ma,Massachusetts
+25025,25,ma,Massachusetts
+25027,25,ma,Massachusetts
+26000,26,mi,Michigan
+26001,26,mi,Michigan
+26003,26,mi,Michigan
+26005,26,mi,Michigan
+26007,26,mi,Michigan
+26009,26,mi,Michigan
+26011,26,mi,Michigan
+26013,26,mi,Michigan
+26015,26,mi,Michigan
+26017,26,mi,Michigan
+26019,26,mi,Michigan
+26021,26,mi,Michigan
+26023,26,mi,Michigan
+26025,26,mi,Michigan
+26027,26,mi,Michigan
+26029,26,mi,Michigan
+26031,26,mi,Michigan
+26033,26,mi,Michigan
+26035,26,mi,Michigan
+26037,26,mi,Michigan
+26039,26,mi,Michigan
+26041,26,mi,Michigan
+26043,26,mi,Michigan
+26045,26,mi,Michigan
+26047,26,mi,Michigan
+26049,26,mi,Michigan
+26051,26,mi,Michigan
+26053,26,mi,Michigan
+26055,26,mi,Michigan
+26057,26,mi,Michigan
+26059,26,mi,Michigan
+26061,26,mi,Michigan
+26063,26,mi,Michigan
+26065,26,mi,Michigan
+26067,26,mi,Michigan
+26069,26,mi,Michigan
+26071,26,mi,Michigan
+26073,26,mi,Michigan
+26075,26,mi,Michigan
+26077,26,mi,Michigan
+26079,26,mi,Michigan
+26081,26,mi,Michigan
+26083,26,mi,Michigan
+26085,26,mi,Michigan
+26087,26,mi,Michigan
+26089,26,mi,Michigan
+26091,26,mi,Michigan
+26093,26,mi,Michigan
+26095,26,mi,Michigan
+26097,26,mi,Michigan
+26099,26,mi,Michigan
+26101,26,mi,Michigan
+26103,26,mi,Michigan
+26105,26,mi,Michigan
+26107,26,mi,Michigan
+26109,26,mi,Michigan
+26111,26,mi,Michigan
+26113,26,mi,Michigan
+26115,26,mi,Michigan
+26117,26,mi,Michigan
+26119,26,mi,Michigan
+26121,26,mi,Michigan
+26123,26,mi,Michigan
+26125,26,mi,Michigan
+26127,26,mi,Michigan
+26129,26,mi,Michigan
+26131,26,mi,Michigan
+26133,26,mi,Michigan
+26135,26,mi,Michigan
+26137,26,mi,Michigan
+26139,26,mi,Michigan
+26141,26,mi,Michigan
+26143,26,mi,Michigan
+26145,26,mi,Michigan
+26147,26,mi,Michigan
+26149,26,mi,Michigan
+26151,26,mi,Michigan
+26153,26,mi,Michigan
+26155,26,mi,Michigan
+26157,26,mi,Michigan
+26159,26,mi,Michigan
+26161,26,mi,Michigan
+26163,26,mi,Michigan
+26165,26,mi,Michigan
+27000,27,mn,Minnesota
+27001,27,mn,Minnesota
+27003,27,mn,Minnesota
+27005,27,mn,Minnesota
+27007,27,mn,Minnesota
+27009,27,mn,Minnesota
+27011,27,mn,Minnesota
+27013,27,mn,Minnesota
+27015,27,mn,Minnesota
+27017,27,mn,Minnesota
+27019,27,mn,Minnesota
+27021,27,mn,Minnesota
+27023,27,mn,Minnesota
+27025,27,mn,Minnesota
+27027,27,mn,Minnesota
+27029,27,mn,Minnesota
+27031,27,mn,Minnesota
+27033,27,mn,Minnesota
+27035,27,mn,Minnesota
+27037,27,mn,Minnesota
+27039,27,mn,Minnesota
+27041,27,mn,Minnesota
+27043,27,mn,Minnesota
+27045,27,mn,Minnesota
+27047,27,mn,Minnesota
+27049,27,mn,Minnesota
+27051,27,mn,Minnesota
+27053,27,mn,Minnesota
+27055,27,mn,Minnesota
+27057,27,mn,Minnesota
+27059,27,mn,Minnesota
+27061,27,mn,Minnesota
+27063,27,mn,Minnesota
+27065,27,mn,Minnesota
+27067,27,mn,Minnesota
+27069,27,mn,Minnesota
+27071,27,mn,Minnesota
+27073,27,mn,Minnesota
+27075,27,mn,Minnesota
+27077,27,mn,Minnesota
+27079,27,mn,Minnesota
+27081,27,mn,Minnesota
+27083,27,mn,Minnesota
+27085,27,mn,Minnesota
+27087,27,mn,Minnesota
+27089,27,mn,Minnesota
+27091,27,mn,Minnesota
+27093,27,mn,Minnesota
+27095,27,mn,Minnesota
+27097,27,mn,Minnesota
+27099,27,mn,Minnesota
+27101,27,mn,Minnesota
+27103,27,mn,Minnesota
+27105,27,mn,Minnesota
+27107,27,mn,Minnesota
+27109,27,mn,Minnesota
+27111,27,mn,Minnesota
+27113,27,mn,Minnesota
+27115,27,mn,Minnesota
+27117,27,mn,Minnesota
+27119,27,mn,Minnesota
+27121,27,mn,Minnesota
+27123,27,mn,Minnesota
+27125,27,mn,Minnesota
+27127,27,mn,Minnesota
+27129,27,mn,Minnesota
+27131,27,mn,Minnesota
+27133,27,mn,Minnesota
+27135,27,mn,Minnesota
+27137,27,mn,Minnesota
+27139,27,mn,Minnesota
+27141,27,mn,Minnesota
+27143,27,mn,Minnesota
+27145,27,mn,Minnesota
+27147,27,mn,Minnesota
+27149,27,mn,Minnesota
+27151,27,mn,Minnesota
+27153,27,mn,Minnesota
+27155,27,mn,Minnesota
+27157,27,mn,Minnesota
+27159,27,mn,Minnesota
+27161,27,mn,Minnesota
+27163,27,mn,Minnesota
+27165,27,mn,Minnesota
+27167,27,mn,Minnesota
+27169,27,mn,Minnesota
+27171,27,mn,Minnesota
+27173,27,mn,Minnesota
+28000,28,ms,Mississippi
+28001,28,ms,Mississippi
+28003,28,ms,Mississippi
+28005,28,ms,Mississippi
+28007,28,ms,Mississippi
+28009,28,ms,Mississippi
+28011,28,ms,Mississippi
+28013,28,ms,Mississippi
+28015,28,ms,Mississippi
+28017,28,ms,Mississippi
+28019,28,ms,Mississippi
+28021,28,ms,Mississippi
+28023,28,ms,Mississippi
+28025,28,ms,Mississippi
+28027,28,ms,Mississippi
+28029,28,ms,Mississippi
+28031,28,ms,Mississippi
+28033,28,ms,Mississippi
+28035,28,ms,Mississippi
+28037,28,ms,Mississippi
+28039,28,ms,Mississippi
+28041,28,ms,Mississippi
+28043,28,ms,Mississippi
+28045,28,ms,Mississippi
+28047,28,ms,Mississippi
+28049,28,ms,Mississippi
+28051,28,ms,Mississippi
+28053,28,ms,Mississippi
+28055,28,ms,Mississippi
+28057,28,ms,Mississippi
+28059,28,ms,Mississippi
+28061,28,ms,Mississippi
+28063,28,ms,Mississippi
+28065,28,ms,Mississippi
+28067,28,ms,Mississippi
+28069,28,ms,Mississippi
+28071,28,ms,Mississippi
+28073,28,ms,Mississippi
+28075,28,ms,Mississippi
+28077,28,ms,Mississippi
+28079,28,ms,Mississippi
+28081,28,ms,Mississippi
+28083,28,ms,Mississippi
+28085,28,ms,Mississippi
+28087,28,ms,Mississippi
+28089,28,ms,Mississippi
+28091,28,ms,Mississippi
+28093,28,ms,Mississippi
+28095,28,ms,Mississippi
+28097,28,ms,Mississippi
+28099,28,ms,Mississippi
+28101,28,ms,Mississippi
+28103,28,ms,Mississippi
+28105,28,ms,Mississippi
+28107,28,ms,Mississippi
+28109,28,ms,Mississippi
+28111,28,ms,Mississippi
+28113,28,ms,Mississippi
+28115,28,ms,Mississippi
+28117,28,ms,Mississippi
+28119,28,ms,Mississippi
+28121,28,ms,Mississippi
+28123,28,ms,Mississippi
+28125,28,ms,Mississippi
+28127,28,ms,Mississippi
+28129,28,ms,Mississippi
+28131,28,ms,Mississippi
+28133,28,ms,Mississippi
+28135,28,ms,Mississippi
+28137,28,ms,Mississippi
+28139,28,ms,Mississippi
+28141,28,ms,Mississippi
+28143,28,ms,Mississippi
+28145,28,ms,Mississippi
+28147,28,ms,Mississippi
+28149,28,ms,Mississippi
+28151,28,ms,Mississippi
+28153,28,ms,Mississippi
+28155,28,ms,Mississippi
+28157,28,ms,Mississippi
+28159,28,ms,Mississippi
+28161,28,ms,Mississippi
+28163,28,ms,Mississippi
+29000,29,mo,Missouri
+29001,29,mo,Missouri
+29003,29,mo,Missouri
+29005,29,mo,Missouri
+29007,29,mo,Missouri
+29009,29,mo,Missouri
+29011,29,mo,Missouri
+29013,29,mo,Missouri
+29015,29,mo,Missouri
+29017,29,mo,Missouri
+29019,29,mo,Missouri
+29021,29,mo,Missouri
+29023,29,mo,Missouri
+29025,29,mo,Missouri
+29027,29,mo,Missouri
+29029,29,mo,Missouri
+29031,29,mo,Missouri
+29033,29,mo,Missouri
+29035,29,mo,Missouri
+29037,29,mo,Missouri
+29039,29,mo,Missouri
+29041,29,mo,Missouri
+29043,29,mo,Missouri
+29045,29,mo,Missouri
+29047,29,mo,Missouri
+29049,29,mo,Missouri
+29051,29,mo,Missouri
+29053,29,mo,Missouri
+29055,29,mo,Missouri
+29057,29,mo,Missouri
+29059,29,mo,Missouri
+29061,29,mo,Missouri
+29063,29,mo,Missouri
+29065,29,mo,Missouri
+29067,29,mo,Missouri
+29069,29,mo,Missouri
+29071,29,mo,Missouri
+29073,29,mo,Missouri
+29075,29,mo,Missouri
+29077,29,mo,Missouri
+29079,29,mo,Missouri
+29081,29,mo,Missouri
+29083,29,mo,Missouri
+29085,29,mo,Missouri
+29087,29,mo,Missouri
+29089,29,mo,Missouri
+29091,29,mo,Missouri
+29093,29,mo,Missouri
+29095,29,mo,Missouri
+29097,29,mo,Missouri
+29099,29,mo,Missouri
+29101,29,mo,Missouri
+29103,29,mo,Missouri
+29105,29,mo,Missouri
+29107,29,mo,Missouri
+29109,29,mo,Missouri
+29111,29,mo,Missouri
+29113,29,mo,Missouri
+29115,29,mo,Missouri
+29117,29,mo,Missouri
+29119,29,mo,Missouri
+29121,29,mo,Missouri
+29123,29,mo,Missouri
+29125,29,mo,Missouri
+29127,29,mo,Missouri
+29129,29,mo,Missouri
+29131,29,mo,Missouri
+29133,29,mo,Missouri
+29135,29,mo,Missouri
+29137,29,mo,Missouri
+29139,29,mo,Missouri
+29141,29,mo,Missouri
+29143,29,mo,Missouri
+29145,29,mo,Missouri
+29147,29,mo,Missouri
+29149,29,mo,Missouri
+29151,29,mo,Missouri
+29153,29,mo,Missouri
+29155,29,mo,Missouri
+29157,29,mo,Missouri
+29159,29,mo,Missouri
+29161,29,mo,Missouri
+29163,29,mo,Missouri
+29165,29,mo,Missouri
+29167,29,mo,Missouri
+29169,29,mo,Missouri
+29171,29,mo,Missouri
+29173,29,mo,Missouri
+29175,29,mo,Missouri
+29177,29,mo,Missouri
+29179,29,mo,Missouri
+29181,29,mo,Missouri
+29183,29,mo,Missouri
+29185,29,mo,Missouri
+29186,29,mo,Missouri
+29187,29,mo,Missouri
+29189,29,mo,Missouri
+29195,29,mo,Missouri
+29197,29,mo,Missouri
+29199,29,mo,Missouri
+29201,29,mo,Missouri
+29203,29,mo,Missouri
+29205,29,mo,Missouri
+29207,29,mo,Missouri
+29209,29,mo,Missouri
+29211,29,mo,Missouri
+29213,29,mo,Missouri
+29215,29,mo,Missouri
+29217,29,mo,Missouri
+29219,29,mo,Missouri
+29221,29,mo,Missouri
+29223,29,mo,Missouri
+29225,29,mo,Missouri
+29227,29,mo,Missouri
+29229,29,mo,Missouri
+29510,29,mo,Missouri
+30000,30,mt,Montana
+30001,30,mt,Montana
+30003,30,mt,Montana
+30005,30,mt,Montana
+30007,30,mt,Montana
+30009,30,mt,Montana
+30011,30,mt,Montana
+30013,30,mt,Montana
+30015,30,mt,Montana
+30017,30,mt,Montana
+30019,30,mt,Montana
+30021,30,mt,Montana
+30023,30,mt,Montana
+30025,30,mt,Montana
+30027,30,mt,Montana
+30029,30,mt,Montana
+30031,30,mt,Montana
+30033,30,mt,Montana
+30035,30,mt,Montana
+30037,30,mt,Montana
+30039,30,mt,Montana
+30041,30,mt,Montana
+30043,30,mt,Montana
+30045,30,mt,Montana
+30047,30,mt,Montana
+30049,30,mt,Montana
+30051,30,mt,Montana
+30053,30,mt,Montana
+30055,30,mt,Montana
+30057,30,mt,Montana
+30059,30,mt,Montana
+30061,30,mt,Montana
+30063,30,mt,Montana
+30065,30,mt,Montana
+30067,30,mt,Montana
+30069,30,mt,Montana
+30071,30,mt,Montana
+30073,30,mt,Montana
+30075,30,mt,Montana
+30077,30,mt,Montana
+30079,30,mt,Montana
+30081,30,mt,Montana
+30083,30,mt,Montana
+30085,30,mt,Montana
+30087,30,mt,Montana
+30089,30,mt,Montana
+30091,30,mt,Montana
+30093,30,mt,Montana
+30095,30,mt,Montana
+30097,30,mt,Montana
+30099,30,mt,Montana
+30101,30,mt,Montana
+30103,30,mt,Montana
+30105,30,mt,Montana
+30107,30,mt,Montana
+30109,30,mt,Montana
+30111,30,mt,Montana
+31000,31,ne,Nebraska
+31001,31,ne,Nebraska
+31003,31,ne,Nebraska
+31005,31,ne,Nebraska
+31007,31,ne,Nebraska
+31009,31,ne,Nebraska
+31011,31,ne,Nebraska
+31013,31,ne,Nebraska
+31015,31,ne,Nebraska
+31017,31,ne,Nebraska
+31019,31,ne,Nebraska
+31021,31,ne,Nebraska
+31023,31,ne,Nebraska
+31025,31,ne,Nebraska
+31027,31,ne,Nebraska
+31029,31,ne,Nebraska
+31031,31,ne,Nebraska
+31033,31,ne,Nebraska
+31035,31,ne,Nebraska
+31037,31,ne,Nebraska
+31039,31,ne,Nebraska
+31041,31,ne,Nebraska
+31043,31,ne,Nebraska
+31045,31,ne,Nebraska
+31047,31,ne,Nebraska
+31049,31,ne,Nebraska
+31051,31,ne,Nebraska
+31053,31,ne,Nebraska
+31055,31,ne,Nebraska
+31057,31,ne,Nebraska
+31059,31,ne,Nebraska
+31061,31,ne,Nebraska
+31063,31,ne,Nebraska
+31065,31,ne,Nebraska
+31067,31,ne,Nebraska
+31069,31,ne,Nebraska
+31071,31,ne,Nebraska
+31073,31,ne,Nebraska
+31075,31,ne,Nebraska
+31077,31,ne,Nebraska
+31079,31,ne,Nebraska
+31081,31,ne,Nebraska
+31083,31,ne,Nebraska
+31085,31,ne,Nebraska
+31087,31,ne,Nebraska
+31089,31,ne,Nebraska
+31091,31,ne,Nebraska
+31093,31,ne,Nebraska
+31095,31,ne,Nebraska
+31097,31,ne,Nebraska
+31099,31,ne,Nebraska
+31101,31,ne,Nebraska
+31103,31,ne,Nebraska
+31105,31,ne,Nebraska
+31107,31,ne,Nebraska
+31109,31,ne,Nebraska
+31111,31,ne,Nebraska
+31113,31,ne,Nebraska
+31115,31,ne,Nebraska
+31117,31,ne,Nebraska
+31119,31,ne,Nebraska
+31121,31,ne,Nebraska
+31123,31,ne,Nebraska
+31125,31,ne,Nebraska
+31127,31,ne,Nebraska
+31129,31,ne,Nebraska
+31131,31,ne,Nebraska
+31133,31,ne,Nebraska
+31135,31,ne,Nebraska
+31137,31,ne,Nebraska
+31139,31,ne,Nebraska
+31141,31,ne,Nebraska
+31143,31,ne,Nebraska
+31145,31,ne,Nebraska
+31147,31,ne,Nebraska
+31149,31,ne,Nebraska
+31151,31,ne,Nebraska
+31153,31,ne,Nebraska
+31155,31,ne,Nebraska
+31157,31,ne,Nebraska
+31159,31,ne,Nebraska
+31161,31,ne,Nebraska
+31163,31,ne,Nebraska
+31165,31,ne,Nebraska
+31167,31,ne,Nebraska
+31169,31,ne,Nebraska
+31171,31,ne,Nebraska
+31173,31,ne,Nebraska
+31175,31,ne,Nebraska
+31177,31,ne,Nebraska
+31179,31,ne,Nebraska
+31181,31,ne,Nebraska
+31183,31,ne,Nebraska
+31185,31,ne,Nebraska
+32000,32,nv,Nevada
+32001,32,nv,Nevada
+32003,32,nv,Nevada
+32005,32,nv,Nevada
+32007,32,nv,Nevada
+32009,32,nv,Nevada
+32011,32,nv,Nevada
+32013,32,nv,Nevada
+32015,32,nv,Nevada
+32017,32,nv,Nevada
+32019,32,nv,Nevada
+32021,32,nv,Nevada
+32023,32,nv,Nevada
+32027,32,nv,Nevada
+32029,32,nv,Nevada
+32031,32,nv,Nevada
+32033,32,nv,Nevada
+32510,32,nv,Nevada
+33000,33,nh,New Hampshire
+33001,33,nh,New Hampshire
+33003,33,nh,New Hampshire
+33005,33,nh,New Hampshire
+33007,33,nh,New Hampshire
+33009,33,nh,New Hampshire
+33011,33,nh,New Hampshire
+33013,33,nh,New Hampshire
+33015,33,nh,New Hampshire
+33017,33,nh,New Hampshire
+33019,33,nh,New Hampshire
+34000,34,nj,New Jersey
+34001,34,nj,New Jersey
+34003,34,nj,New Jersey
+34005,34,nj,New Jersey
+34007,34,nj,New Jersey
+34009,34,nj,New Jersey
+34011,34,nj,New Jersey
+34013,34,nj,New Jersey
+34015,34,nj,New Jersey
+34017,34,nj,New Jersey
+34019,34,nj,New Jersey
+34021,34,nj,New Jersey
+34023,34,nj,New Jersey
+34025,34,nj,New Jersey
+34027,34,nj,New Jersey
+34029,34,nj,New Jersey
+34031,34,nj,New Jersey
+34033,34,nj,New Jersey
+34035,34,nj,New Jersey
+34037,34,nj,New Jersey
+34039,34,nj,New Jersey
+34041,34,nj,New Jersey
+35000,35,nm,New Mexico
+35001,35,nm,New Mexico
+35003,35,nm,New Mexico
+35005,35,nm,New Mexico
+35006,35,nm,New Mexico
+35007,35,nm,New Mexico
+35009,35,nm,New Mexico
+35011,35,nm,New Mexico
+35013,35,nm,New Mexico
+35015,35,nm,New Mexico
+35017,35,nm,New Mexico
+35019,35,nm,New Mexico
+35021,35,nm,New Mexico
+35023,35,nm,New Mexico
+35025,35,nm,New Mexico
+35027,35,nm,New Mexico
+35028,35,nm,New Mexico
+35029,35,nm,New Mexico
+35031,35,nm,New Mexico
+35033,35,nm,New Mexico
+35035,35,nm,New Mexico
+35037,35,nm,New Mexico
+35039,35,nm,New Mexico
+35041,35,nm,New Mexico
+35043,35,nm,New Mexico
+35045,35,nm,New Mexico
+35047,35,nm,New Mexico
+35049,35,nm,New Mexico
+35051,35,nm,New Mexico
+35053,35,nm,New Mexico
+35055,35,nm,New Mexico
+35057,35,nm,New Mexico
+35059,35,nm,New Mexico
+35061,35,nm,New Mexico
+36000,36,ny,New York
+36001,36,ny,New York
+36003,36,ny,New York
+36005,36,ny,New York
+36007,36,ny,New York
+36009,36,ny,New York
+36011,36,ny,New York
+36013,36,ny,New York
+36015,36,ny,New York
+36017,36,ny,New York
+36019,36,ny,New York
+36021,36,ny,New York
+36023,36,ny,New York
+36025,36,ny,New York
+36027,36,ny,New York
+36029,36,ny,New York
+36031,36,ny,New York
+36033,36,ny,New York
+36035,36,ny,New York
+36037,36,ny,New York
+36039,36,ny,New York
+36041,36,ny,New York
+36043,36,ny,New York
+36045,36,ny,New York
+36047,36,ny,New York
+36049,36,ny,New York
+36051,36,ny,New York
+36053,36,ny,New York
+36055,36,ny,New York
+36057,36,ny,New York
+36059,36,ny,New York
+36061,36,ny,New York
+36063,36,ny,New York
+36065,36,ny,New York
+36067,36,ny,New York
+36069,36,ny,New York
+36071,36,ny,New York
+36073,36,ny,New York
+36075,36,ny,New York
+36077,36,ny,New York
+36079,36,ny,New York
+36081,36,ny,New York
+36083,36,ny,New York
+36085,36,ny,New York
+36087,36,ny,New York
+36089,36,ny,New York
+36091,36,ny,New York
+36093,36,ny,New York
+36095,36,ny,New York
+36097,36,ny,New York
+36099,36,ny,New York
+36101,36,ny,New York
+36103,36,ny,New York
+36105,36,ny,New York
+36107,36,ny,New York
+36109,36,ny,New York
+36111,36,ny,New York
+36113,36,ny,New York
+36115,36,ny,New York
+36117,36,ny,New York
+36119,36,ny,New York
+36121,36,ny,New York
+36123,36,ny,New York
+37000,37,nc,North Carolina
+37001,37,nc,North Carolina
+37003,37,nc,North Carolina
+37005,37,nc,North Carolina
+37007,37,nc,North Carolina
+37009,37,nc,North Carolina
+37011,37,nc,North Carolina
+37013,37,nc,North Carolina
+37015,37,nc,North Carolina
+37017,37,nc,North Carolina
+37019,37,nc,North Carolina
+37021,37,nc,North Carolina
+37023,37,nc,North Carolina
+37025,37,nc,North Carolina
+37027,37,nc,North Carolina
+37029,37,nc,North Carolina
+37031,37,nc,North Carolina
+37033,37,nc,North Carolina
+37035,37,nc,North Carolina
+37037,37,nc,North Carolina
+37039,37,nc,North Carolina
+37041,37,nc,North Carolina
+37043,37,nc,North Carolina
+37045,37,nc,North Carolina
+37047,37,nc,North Carolina
+37049,37,nc,North Carolina
+37051,37,nc,North Carolina
+37053,37,nc,North Carolina
+37055,37,nc,North Carolina
+37057,37,nc,North Carolina
+37059,37,nc,North Carolina
+37061,37,nc,North Carolina
+37063,37,nc,North Carolina
+37065,37,nc,North Carolina
+37067,37,nc,North Carolina
+37069,37,nc,North Carolina
+37071,37,nc,North Carolina
+37073,37,nc,North Carolina
+37075,37,nc,North Carolina
+37077,37,nc,North Carolina
+37079,37,nc,North Carolina
+37081,37,nc,North Carolina
+37083,37,nc,North Carolina
+37085,37,nc,North Carolina
+37087,37,nc,North Carolina
+37089,37,nc,North Carolina
+37091,37,nc,North Carolina
+37093,37,nc,North Carolina
+37095,37,nc,North Carolina
+37097,37,nc,North Carolina
+37099,37,nc,North Carolina
+37101,37,nc,North Carolina
+37103,37,nc,North Carolina
+37105,37,nc,North Carolina
+37107,37,nc,North Carolina
+37109,37,nc,North Carolina
+37111,37,nc,North Carolina
+37113,37,nc,North Carolina
+37115,37,nc,North Carolina
+37117,37,nc,North Carolina
+37119,37,nc,North Carolina
+37121,37,nc,North Carolina
+37123,37,nc,North Carolina
+37125,37,nc,North Carolina
+37127,37,nc,North Carolina
+37129,37,nc,North Carolina
+37131,37,nc,North Carolina
+37133,37,nc,North Carolina
+37135,37,nc,North Carolina
+37137,37,nc,North Carolina
+37139,37,nc,North Carolina
+37141,37,nc,North Carolina
+37143,37,nc,North Carolina
+37145,37,nc,North Carolina
+37147,37,nc,North Carolina
+37149,37,nc,North Carolina
+37151,37,nc,North Carolina
+37153,37,nc,North Carolina
+37155,37,nc,North Carolina
+37157,37,nc,North Carolina
+37159,37,nc,North Carolina
+37161,37,nc,North Carolina
+37163,37,nc,North Carolina
+37165,37,nc,North Carolina
+37167,37,nc,North Carolina
+37169,37,nc,North Carolina
+37171,37,nc,North Carolina
+37173,37,nc,North Carolina
+37175,37,nc,North Carolina
+37177,37,nc,North Carolina
+37179,37,nc,North Carolina
+37181,37,nc,North Carolina
+37183,37,nc,North Carolina
+37185,37,nc,North Carolina
+37187,37,nc,North Carolina
+37189,37,nc,North Carolina
+37191,37,nc,North Carolina
+37193,37,nc,North Carolina
+37195,37,nc,North Carolina
+37197,37,nc,North Carolina
+37199,37,nc,North Carolina
+38000,38,nd,North Dakota
+38001,38,nd,North Dakota
+38003,38,nd,North Dakota
+38005,38,nd,North Dakota
+38007,38,nd,North Dakota
+38009,38,nd,North Dakota
+38011,38,nd,North Dakota
+38013,38,nd,North Dakota
+38015,38,nd,North Dakota
+38017,38,nd,North Dakota
+38019,38,nd,North Dakota
+38021,38,nd,North Dakota
+38023,38,nd,North Dakota
+38025,38,nd,North Dakota
+38027,38,nd,North Dakota
+38029,38,nd,North Dakota
+38031,38,nd,North Dakota
+38033,38,nd,North Dakota
+38035,38,nd,North Dakota
+38037,38,nd,North Dakota
+38039,38,nd,North Dakota
+38041,38,nd,North Dakota
+38043,38,nd,North Dakota
+38045,38,nd,North Dakota
+38047,38,nd,North Dakota
+38049,38,nd,North Dakota
+38051,38,nd,North Dakota
+38053,38,nd,North Dakota
+38055,38,nd,North Dakota
+38057,38,nd,North Dakota
+38059,38,nd,North Dakota
+38061,38,nd,North Dakota
+38063,38,nd,North Dakota
+38065,38,nd,North Dakota
+38067,38,nd,North Dakota
+38069,38,nd,North Dakota
+38071,38,nd,North Dakota
+38073,38,nd,North Dakota
+38075,38,nd,North Dakota
+38077,38,nd,North Dakota
+38079,38,nd,North Dakota
+38081,38,nd,North Dakota
+38083,38,nd,North Dakota
+38085,38,nd,North Dakota
+38087,38,nd,North Dakota
+38089,38,nd,North Dakota
+38091,38,nd,North Dakota
+38093,38,nd,North Dakota
+38095,38,nd,North Dakota
+38097,38,nd,North Dakota
+38099,38,nd,North Dakota
+38101,38,nd,North Dakota
+38103,38,nd,North Dakota
+38105,38,nd,North Dakota
+39000,39,oh,Ohio
+39001,39,oh,Ohio
+39003,39,oh,Ohio
+39005,39,oh,Ohio
+39007,39,oh,Ohio
+39009,39,oh,Ohio
+39011,39,oh,Ohio
+39013,39,oh,Ohio
+39015,39,oh,Ohio
+39017,39,oh,Ohio
+39019,39,oh,Ohio
+39021,39,oh,Ohio
+39023,39,oh,Ohio
+39025,39,oh,Ohio
+39027,39,oh,Ohio
+39029,39,oh,Ohio
+39031,39,oh,Ohio
+39033,39,oh,Ohio
+39035,39,oh,Ohio
+39037,39,oh,Ohio
+39039,39,oh,Ohio
+39041,39,oh,Ohio
+39043,39,oh,Ohio
+39045,39,oh,Ohio
+39047,39,oh,Ohio
+39049,39,oh,Ohio
+39051,39,oh,Ohio
+39053,39,oh,Ohio
+39055,39,oh,Ohio
+39057,39,oh,Ohio
+39059,39,oh,Ohio
+39061,39,oh,Ohio
+39063,39,oh,Ohio
+39065,39,oh,Ohio
+39067,39,oh,Ohio
+39069,39,oh,Ohio
+39071,39,oh,Ohio
+39073,39,oh,Ohio
+39075,39,oh,Ohio
+39077,39,oh,Ohio
+39079,39,oh,Ohio
+39081,39,oh,Ohio
+39083,39,oh,Ohio
+39085,39,oh,Ohio
+39087,39,oh,Ohio
+39089,39,oh,Ohio
+39091,39,oh,Ohio
+39093,39,oh,Ohio
+39095,39,oh,Ohio
+39097,39,oh,Ohio
+39099,39,oh,Ohio
+39101,39,oh,Ohio
+39103,39,oh,Ohio
+39105,39,oh,Ohio
+39107,39,oh,Ohio
+39109,39,oh,Ohio
+39111,39,oh,Ohio
+39113,39,oh,Ohio
+39115,39,oh,Ohio
+39117,39,oh,Ohio
+39119,39,oh,Ohio
+39121,39,oh,Ohio
+39123,39,oh,Ohio
+39125,39,oh,Ohio
+39127,39,oh,Ohio
+39129,39,oh,Ohio
+39131,39,oh,Ohio
+39133,39,oh,Ohio
+39135,39,oh,Ohio
+39137,39,oh,Ohio
+39139,39,oh,Ohio
+39141,39,oh,Ohio
+39143,39,oh,Ohio
+39145,39,oh,Ohio
+39147,39,oh,Ohio
+39149,39,oh,Ohio
+39151,39,oh,Ohio
+39153,39,oh,Ohio
+39155,39,oh,Ohio
+39157,39,oh,Ohio
+39159,39,oh,Ohio
+39161,39,oh,Ohio
+39163,39,oh,Ohio
+39165,39,oh,Ohio
+39167,39,oh,Ohio
+39169,39,oh,Ohio
+39171,39,oh,Ohio
+39173,39,oh,Ohio
+39175,39,oh,Ohio
+40000,40,ok,Oklahoma
+40001,40,ok,Oklahoma
+40003,40,ok,Oklahoma
+40005,40,ok,Oklahoma
+40007,40,ok,Oklahoma
+40009,40,ok,Oklahoma
+40011,40,ok,Oklahoma
+40013,40,ok,Oklahoma
+40015,40,ok,Oklahoma
+40017,40,ok,Oklahoma
+40019,40,ok,Oklahoma
+40021,40,ok,Oklahoma
+40023,40,ok,Oklahoma
+40025,40,ok,Oklahoma
+40027,40,ok,Oklahoma
+40029,40,ok,Oklahoma
+40031,40,ok,Oklahoma
+40033,40,ok,Oklahoma
+40035,40,ok,Oklahoma
+40037,40,ok,Oklahoma
+40039,40,ok,Oklahoma
+40041,40,ok,Oklahoma
+40043,40,ok,Oklahoma
+40045,40,ok,Oklahoma
+40047,40,ok,Oklahoma
+40049,40,ok,Oklahoma
+40051,40,ok,Oklahoma
+40053,40,ok,Oklahoma
+40055,40,ok,Oklahoma
+40057,40,ok,Oklahoma
+40059,40,ok,Oklahoma
+40061,40,ok,Oklahoma
+40063,40,ok,Oklahoma
+40065,40,ok,Oklahoma
+40067,40,ok,Oklahoma
+40069,40,ok,Oklahoma
+40071,40,ok,Oklahoma
+40073,40,ok,Oklahoma
+40075,40,ok,Oklahoma
+40077,40,ok,Oklahoma
+40079,40,ok,Oklahoma
+40081,40,ok,Oklahoma
+40083,40,ok,Oklahoma
+40085,40,ok,Oklahoma
+40087,40,ok,Oklahoma
+40089,40,ok,Oklahoma
+40091,40,ok,Oklahoma
+40093,40,ok,Oklahoma
+40095,40,ok,Oklahoma
+40097,40,ok,Oklahoma
+40099,40,ok,Oklahoma
+40101,40,ok,Oklahoma
+40103,40,ok,Oklahoma
+40105,40,ok,Oklahoma
+40107,40,ok,Oklahoma
+40109,40,ok,Oklahoma
+40111,40,ok,Oklahoma
+40113,40,ok,Oklahoma
+40115,40,ok,Oklahoma
+40117,40,ok,Oklahoma
+40119,40,ok,Oklahoma
+40121,40,ok,Oklahoma
+40123,40,ok,Oklahoma
+40125,40,ok,Oklahoma
+40127,40,ok,Oklahoma
+40129,40,ok,Oklahoma
+40131,40,ok,Oklahoma
+40133,40,ok,Oklahoma
+40135,40,ok,Oklahoma
+40137,40,ok,Oklahoma
+40139,40,ok,Oklahoma
+40141,40,ok,Oklahoma
+40143,40,ok,Oklahoma
+40145,40,ok,Oklahoma
+40147,40,ok,Oklahoma
+40149,40,ok,Oklahoma
+40151,40,ok,Oklahoma
+40153,40,ok,Oklahoma
+41000,41,or,Oregon
+41001,41,or,Oregon
+41003,41,or,Oregon
+41005,41,or,Oregon
+41007,41,or,Oregon
+41009,41,or,Oregon
+41011,41,or,Oregon
+41013,41,or,Oregon
+41015,41,or,Oregon
+41017,41,or,Oregon
+41019,41,or,Oregon
+41021,41,or,Oregon
+41023,41,or,Oregon
+41025,41,or,Oregon
+41027,41,or,Oregon
+41029,41,or,Oregon
+41031,41,or,Oregon
+41033,41,or,Oregon
+41035,41,or,Oregon
+41037,41,or,Oregon
+41039,41,or,Oregon
+41041,41,or,Oregon
+41043,41,or,Oregon
+41045,41,or,Oregon
+41047,41,or,Oregon
+41049,41,or,Oregon
+41051,41,or,Oregon
+41053,41,or,Oregon
+41055,41,or,Oregon
+41057,41,or,Oregon
+41059,41,or,Oregon
+41061,41,or,Oregon
+41063,41,or,Oregon
+41065,41,or,Oregon
+41067,41,or,Oregon
+41069,41,or,Oregon
+41071,41,or,Oregon
+42000,42,pa,Pennsylvania
+42001,42,pa,Pennsylvania
+42003,42,pa,Pennsylvania
+42005,42,pa,Pennsylvania
+42007,42,pa,Pennsylvania
+42009,42,pa,Pennsylvania
+42011,42,pa,Pennsylvania
+42013,42,pa,Pennsylvania
+42015,42,pa,Pennsylvania
+42017,42,pa,Pennsylvania
+42019,42,pa,Pennsylvania
+42021,42,pa,Pennsylvania
+42023,42,pa,Pennsylvania
+42025,42,pa,Pennsylvania
+42027,42,pa,Pennsylvania
+42029,42,pa,Pennsylvania
+42031,42,pa,Pennsylvania
+42033,42,pa,Pennsylvania
+42035,42,pa,Pennsylvania
+42037,42,pa,Pennsylvania
+42039,42,pa,Pennsylvania
+42041,42,pa,Pennsylvania
+42043,42,pa,Pennsylvania
+42045,42,pa,Pennsylvania
+42047,42,pa,Pennsylvania
+42049,42,pa,Pennsylvania
+42051,42,pa,Pennsylvania
+42053,42,pa,Pennsylvania
+42055,42,pa,Pennsylvania
+42057,42,pa,Pennsylvania
+42059,42,pa,Pennsylvania
+42061,42,pa,Pennsylvania
+42063,42,pa,Pennsylvania
+42065,42,pa,Pennsylvania
+42067,42,pa,Pennsylvania
+42069,42,pa,Pennsylvania
+42071,42,pa,Pennsylvania
+42073,42,pa,Pennsylvania
+42075,42,pa,Pennsylvania
+42077,42,pa,Pennsylvania
+42079,42,pa,Pennsylvania
+42081,42,pa,Pennsylvania
+42083,42,pa,Pennsylvania
+42085,42,pa,Pennsylvania
+42087,42,pa,Pennsylvania
+42089,42,pa,Pennsylvania
+42091,42,pa,Pennsylvania
+42093,42,pa,Pennsylvania
+42095,42,pa,Pennsylvania
+42097,42,pa,Pennsylvania
+42099,42,pa,Pennsylvania
+42101,42,pa,Pennsylvania
+42103,42,pa,Pennsylvania
+42105,42,pa,Pennsylvania
+42107,42,pa,Pennsylvania
+42109,42,pa,Pennsylvania
+42111,42,pa,Pennsylvania
+42113,42,pa,Pennsylvania
+42115,42,pa,Pennsylvania
+42117,42,pa,Pennsylvania
+42119,42,pa,Pennsylvania
+42121,42,pa,Pennsylvania
+42123,42,pa,Pennsylvania
+42125,42,pa,Pennsylvania
+42127,42,pa,Pennsylvania
+42129,42,pa,Pennsylvania
+42131,42,pa,Pennsylvania
+42133,42,pa,Pennsylvania
+44000,44,ri,Rhode Island
+44001,44,ri,Rhode Island
+44003,44,ri,Rhode Island
+44005,44,ri,Rhode Island
+44007,44,ri,Rhode Island
+44009,44,ri,Rhode Island
+45000,45,sc,South Carolina
+45001,45,sc,South Carolina
+45003,45,sc,South Carolina
+45005,45,sc,South Carolina
+45007,45,sc,South Carolina
+45009,45,sc,South Carolina
+45011,45,sc,South Carolina
+45013,45,sc,South Carolina
+45015,45,sc,South Carolina
+45017,45,sc,South Carolina
+45019,45,sc,South Carolina
+45021,45,sc,South Carolina
+45023,45,sc,South Carolina
+45025,45,sc,South Carolina
+45027,45,sc,South Carolina
+45029,45,sc,South Carolina
+45031,45,sc,South Carolina
+45033,45,sc,South Carolina
+45035,45,sc,South Carolina
+45037,45,sc,South Carolina
+45039,45,sc,South Carolina
+45041,45,sc,South Carolina
+45043,45,sc,South Carolina
+45045,45,sc,South Carolina
+45047,45,sc,South Carolina
+45049,45,sc,South Carolina
+45051,45,sc,South Carolina
+45053,45,sc,South Carolina
+45055,45,sc,South Carolina
+45057,45,sc,South Carolina
+45059,45,sc,South Carolina
+45061,45,sc,South Carolina
+45063,45,sc,South Carolina
+45065,45,sc,South Carolina
+45067,45,sc,South Carolina
+45069,45,sc,South Carolina
+45071,45,sc,South Carolina
+45073,45,sc,South Carolina
+45075,45,sc,South Carolina
+45077,45,sc,South Carolina
+45079,45,sc,South Carolina
+45081,45,sc,South Carolina
+45083,45,sc,South Carolina
+45085,45,sc,South Carolina
+45087,45,sc,South Carolina
+45089,45,sc,South Carolina
+45091,45,sc,South Carolina
+46000,46,sd,South Dakota
+46003,46,sd,South Dakota
+46005,46,sd,South Dakota
+46007,46,sd,South Dakota
+46009,46,sd,South Dakota
+46011,46,sd,South Dakota
+46013,46,sd,South Dakota
+46015,46,sd,South Dakota
+46017,46,sd,South Dakota
+46019,46,sd,South Dakota
+46021,46,sd,South Dakota
+46023,46,sd,South Dakota
+46025,46,sd,South Dakota
+46027,46,sd,South Dakota
+46029,46,sd,South Dakota
+46031,46,sd,South Dakota
+46033,46,sd,South Dakota
+46035,46,sd,South Dakota
+46037,46,sd,South Dakota
+46039,46,sd,South Dakota
+46041,46,sd,South Dakota
+46043,46,sd,South Dakota
+46045,46,sd,South Dakota
+46047,46,sd,South Dakota
+46049,46,sd,South Dakota
+46051,46,sd,South Dakota
+46053,46,sd,South Dakota
+46055,46,sd,South Dakota
+46057,46,sd,South Dakota
+46059,46,sd,South Dakota
+46061,46,sd,South Dakota
+46063,46,sd,South Dakota
+46065,46,sd,South Dakota
+46067,46,sd,South Dakota
+46069,46,sd,South Dakota
+46071,46,sd,South Dakota
+46073,46,sd,South Dakota
+46075,46,sd,South Dakota
+46077,46,sd,South Dakota
+46079,46,sd,South Dakota
+46081,46,sd,South Dakota
+46083,46,sd,South Dakota
+46085,46,sd,South Dakota
+46087,46,sd,South Dakota
+46089,46,sd,South Dakota
+46091,46,sd,South Dakota
+46093,46,sd,South Dakota
+46095,46,sd,South Dakota
+46097,46,sd,South Dakota
+46099,46,sd,South Dakota
+46101,46,sd,South Dakota
+46102,46,sd,South Dakota
+46103,46,sd,South Dakota
+46105,46,sd,South Dakota
+46107,46,sd,South Dakota
+46109,46,sd,South Dakota
+46111,46,sd,South Dakota
+46115,46,sd,South Dakota
+46117,46,sd,South Dakota
+46119,46,sd,South Dakota
+46121,46,sd,South Dakota
+46123,46,sd,South Dakota
+46125,46,sd,South Dakota
+46127,46,sd,South Dakota
+46129,46,sd,South Dakota
+46135,46,sd,South Dakota
+46137,46,sd,South Dakota
+47000,47,tn,Tennessee
+47001,47,tn,Tennessee
+47003,47,tn,Tennessee
+47005,47,tn,Tennessee
+47007,47,tn,Tennessee
+47009,47,tn,Tennessee
+47011,47,tn,Tennessee
+47013,47,tn,Tennessee
+47015,47,tn,Tennessee
+47017,47,tn,Tennessee
+47019,47,tn,Tennessee
+47021,47,tn,Tennessee
+47023,47,tn,Tennessee
+47025,47,tn,Tennessee
+47027,47,tn,Tennessee
+47029,47,tn,Tennessee
+47031,47,tn,Tennessee
+47033,47,tn,Tennessee
+47035,47,tn,Tennessee
+47037,47,tn,Tennessee
+47039,47,tn,Tennessee
+47041,47,tn,Tennessee
+47043,47,tn,Tennessee
+47045,47,tn,Tennessee
+47047,47,tn,Tennessee
+47049,47,tn,Tennessee
+47051,47,tn,Tennessee
+47053,47,tn,Tennessee
+47055,47,tn,Tennessee
+47057,47,tn,Tennessee
+47059,47,tn,Tennessee
+47061,47,tn,Tennessee
+47063,47,tn,Tennessee
+47065,47,tn,Tennessee
+47067,47,tn,Tennessee
+47069,47,tn,Tennessee
+47071,47,tn,Tennessee
+47073,47,tn,Tennessee
+47075,47,tn,Tennessee
+47077,47,tn,Tennessee
+47079,47,tn,Tennessee
+47081,47,tn,Tennessee
+47083,47,tn,Tennessee
+47085,47,tn,Tennessee
+47087,47,tn,Tennessee
+47089,47,tn,Tennessee
+47091,47,tn,Tennessee
+47093,47,tn,Tennessee
+47095,47,tn,Tennessee
+47097,47,tn,Tennessee
+47099,47,tn,Tennessee
+47101,47,tn,Tennessee
+47103,47,tn,Tennessee
+47105,47,tn,Tennessee
+47107,47,tn,Tennessee
+47109,47,tn,Tennessee
+47111,47,tn,Tennessee
+47113,47,tn,Tennessee
+47115,47,tn,Tennessee
+47117,47,tn,Tennessee
+47119,47,tn,Tennessee
+47121,47,tn,Tennessee
+47123,47,tn,Tennessee
+47125,47,tn,Tennessee
+47127,47,tn,Tennessee
+47129,47,tn,Tennessee
+47131,47,tn,Tennessee
+47133,47,tn,Tennessee
+47135,47,tn,Tennessee
+47137,47,tn,Tennessee
+47139,47,tn,Tennessee
+47141,47,tn,Tennessee
+47143,47,tn,Tennessee
+47145,47,tn,Tennessee
+47147,47,tn,Tennessee
+47149,47,tn,Tennessee
+47151,47,tn,Tennessee
+47153,47,tn,Tennessee
+47155,47,tn,Tennessee
+47157,47,tn,Tennessee
+47159,47,tn,Tennessee
+47161,47,tn,Tennessee
+47163,47,tn,Tennessee
+47165,47,tn,Tennessee
+47167,47,tn,Tennessee
+47169,47,tn,Tennessee
+47171,47,tn,Tennessee
+47173,47,tn,Tennessee
+47175,47,tn,Tennessee
+47177,47,tn,Tennessee
+47179,47,tn,Tennessee
+47181,47,tn,Tennessee
+47183,47,tn,Tennessee
+47185,47,tn,Tennessee
+47187,47,tn,Tennessee
+47189,47,tn,Tennessee
+48000,48,tx,Texas
+48001,48,tx,Texas
+48003,48,tx,Texas
+48005,48,tx,Texas
+48007,48,tx,Texas
+48009,48,tx,Texas
+48011,48,tx,Texas
+48013,48,tx,Texas
+48015,48,tx,Texas
+48017,48,tx,Texas
+48019,48,tx,Texas
+48021,48,tx,Texas
+48023,48,tx,Texas
+48025,48,tx,Texas
+48027,48,tx,Texas
+48029,48,tx,Texas
+48031,48,tx,Texas
+48033,48,tx,Texas
+48035,48,tx,Texas
+48037,48,tx,Texas
+48039,48,tx,Texas
+48041,48,tx,Texas
+48043,48,tx,Texas
+48045,48,tx,Texas
+48047,48,tx,Texas
+48049,48,tx,Texas
+48051,48,tx,Texas
+48053,48,tx,Texas
+48055,48,tx,Texas
+48057,48,tx,Texas
+48059,48,tx,Texas
+48061,48,tx,Texas
+48063,48,tx,Texas
+48065,48,tx,Texas
+48067,48,tx,Texas
+48069,48,tx,Texas
+48071,48,tx,Texas
+48073,48,tx,Texas
+48075,48,tx,Texas
+48077,48,tx,Texas
+48079,48,tx,Texas
+48081,48,tx,Texas
+48083,48,tx,Texas
+48085,48,tx,Texas
+48087,48,tx,Texas
+48089,48,tx,Texas
+48091,48,tx,Texas
+48093,48,tx,Texas
+48095,48,tx,Texas
+48097,48,tx,Texas
+48099,48,tx,Texas
+48101,48,tx,Texas
+48103,48,tx,Texas
+48105,48,tx,Texas
+48107,48,tx,Texas
+48109,48,tx,Texas
+48111,48,tx,Texas
+48113,48,tx,Texas
+48115,48,tx,Texas
+48117,48,tx,Texas
+48119,48,tx,Texas
+48121,48,tx,Texas
+48123,48,tx,Texas
+48125,48,tx,Texas
+48127,48,tx,Texas
+48129,48,tx,Texas
+48131,48,tx,Texas
+48133,48,tx,Texas
+48135,48,tx,Texas
+48137,48,tx,Texas
+48139,48,tx,Texas
+48141,48,tx,Texas
+48143,48,tx,Texas
+48145,48,tx,Texas
+48147,48,tx,Texas
+48149,48,tx,Texas
+48151,48,tx,Texas
+48153,48,tx,Texas
+48155,48,tx,Texas
+48157,48,tx,Texas
+48159,48,tx,Texas
+48161,48,tx,Texas
+48163,48,tx,Texas
+48165,48,tx,Texas
+48167,48,tx,Texas
+48169,48,tx,Texas
+48171,48,tx,Texas
+48173,48,tx,Texas
+48175,48,tx,Texas
+48177,48,tx,Texas
+48179,48,tx,Texas
+48181,48,tx,Texas
+48183,48,tx,Texas
+48185,48,tx,Texas
+48187,48,tx,Texas
+48189,48,tx,Texas
+48191,48,tx,Texas
+48193,48,tx,Texas
+48195,48,tx,Texas
+48197,48,tx,Texas
+48199,48,tx,Texas
+48201,48,tx,Texas
+48203,48,tx,Texas
+48205,48,tx,Texas
+48207,48,tx,Texas
+48209,48,tx,Texas
+48211,48,tx,Texas
+48213,48,tx,Texas
+48215,48,tx,Texas
+48217,48,tx,Texas
+48219,48,tx,Texas
+48221,48,tx,Texas
+48223,48,tx,Texas
+48225,48,tx,Texas
+48227,48,tx,Texas
+48229,48,tx,Texas
+48231,48,tx,Texas
+48233,48,tx,Texas
+48235,48,tx,Texas
+48237,48,tx,Texas
+48239,48,tx,Texas
+48241,48,tx,Texas
+48243,48,tx,Texas
+48245,48,tx,Texas
+48247,48,tx,Texas
+48249,48,tx,Texas
+48251,48,tx,Texas
+48253,48,tx,Texas
+48255,48,tx,Texas
+48257,48,tx,Texas
+48259,48,tx,Texas
+48261,48,tx,Texas
+48263,48,tx,Texas
+48265,48,tx,Texas
+48267,48,tx,Texas
+48269,48,tx,Texas
+48271,48,tx,Texas
+48273,48,tx,Texas
+48275,48,tx,Texas
+48277,48,tx,Texas
+48279,48,tx,Texas
+48281,48,tx,Texas
+48283,48,tx,Texas
+48285,48,tx,Texas
+48287,48,tx,Texas
+48289,48,tx,Texas
+48291,48,tx,Texas
+48293,48,tx,Texas
+48295,48,tx,Texas
+48297,48,tx,Texas
+48299,48,tx,Texas
+48301,48,tx,Texas
+48303,48,tx,Texas
+48305,48,tx,Texas
+48307,48,tx,Texas
+48309,48,tx,Texas
+48311,48,tx,Texas
+48313,48,tx,Texas
+48315,48,tx,Texas
+48317,48,tx,Texas
+48319,48,tx,Texas
+48321,48,tx,Texas
+48323,48,tx,Texas
+48325,48,tx,Texas
+48327,48,tx,Texas
+48329,48,tx,Texas
+48331,48,tx,Texas
+48333,48,tx,Texas
+48335,48,tx,Texas
+48337,48,tx,Texas
+48339,48,tx,Texas
+48341,48,tx,Texas
+48343,48,tx,Texas
+48345,48,tx,Texas
+48347,48,tx,Texas
+48349,48,tx,Texas
+48351,48,tx,Texas
+48353,48,tx,Texas
+48355,48,tx,Texas
+48357,48,tx,Texas
+48359,48,tx,Texas
+48361,48,tx,Texas
+48363,48,tx,Texas
+48365,48,tx,Texas
+48367,48,tx,Texas
+48369,48,tx,Texas
+48371,48,tx,Texas
+48373,48,tx,Texas
+48375,48,tx,Texas
+48377,48,tx,Texas
+48379,48,tx,Texas
+48381,48,tx,Texas
+48383,48,tx,Texas
+48385,48,tx,Texas
+48387,48,tx,Texas
+48389,48,tx,Texas
+48391,48,tx,Texas
+48393,48,tx,Texas
+48395,48,tx,Texas
+48397,48,tx,Texas
+48399,48,tx,Texas
+48401,48,tx,Texas
+48403,48,tx,Texas
+48405,48,tx,Texas
+48407,48,tx,Texas
+48409,48,tx,Texas
+48411,48,tx,Texas
+48413,48,tx,Texas
+48415,48,tx,Texas
+48417,48,tx,Texas
+48419,48,tx,Texas
+48421,48,tx,Texas
+48423,48,tx,Texas
+48425,48,tx,Texas
+48427,48,tx,Texas
+48429,48,tx,Texas
+48431,48,tx,Texas
+48433,48,tx,Texas
+48435,48,tx,Texas
+48437,48,tx,Texas
+48439,48,tx,Texas
+48441,48,tx,Texas
+48443,48,tx,Texas
+48445,48,tx,Texas
+48447,48,tx,Texas
+48449,48,tx,Texas
+48451,48,tx,Texas
+48453,48,tx,Texas
+48455,48,tx,Texas
+48457,48,tx,Texas
+48459,48,tx,Texas
+48461,48,tx,Texas
+48463,48,tx,Texas
+48465,48,tx,Texas
+48467,48,tx,Texas
+48469,48,tx,Texas
+48471,48,tx,Texas
+48473,48,tx,Texas
+48475,48,tx,Texas
+48477,48,tx,Texas
+48479,48,tx,Texas
+48481,48,tx,Texas
+48483,48,tx,Texas
+48485,48,tx,Texas
+48487,48,tx,Texas
+48489,48,tx,Texas
+48491,48,tx,Texas
+48493,48,tx,Texas
+48495,48,tx,Texas
+48497,48,tx,Texas
+48499,48,tx,Texas
+48501,48,tx,Texas
+48503,48,tx,Texas
+48505,48,tx,Texas
+48507,48,tx,Texas
+49000,49,ut,Utah
+49001,49,ut,Utah
+49003,49,ut,Utah
+49005,49,ut,Utah
+49007,49,ut,Utah
+49009,49,ut,Utah
+49011,49,ut,Utah
+49013,49,ut,Utah
+49015,49,ut,Utah
+49017,49,ut,Utah
+49019,49,ut,Utah
+49021,49,ut,Utah
+49023,49,ut,Utah
+49025,49,ut,Utah
+49027,49,ut,Utah
+49029,49,ut,Utah
+49031,49,ut,Utah
+49033,49,ut,Utah
+49035,49,ut,Utah
+49037,49,ut,Utah
+49039,49,ut,Utah
+49041,49,ut,Utah
+49043,49,ut,Utah
+49045,49,ut,Utah
+49047,49,ut,Utah
+49049,49,ut,Utah
+49051,49,ut,Utah
+49053,49,ut,Utah
+49055,49,ut,Utah
+49057,49,ut,Utah
+50000,50,vt,Vermont
+50001,50,vt,Vermont
+50003,50,vt,Vermont
+50005,50,vt,Vermont
+50007,50,vt,Vermont
+50009,50,vt,Vermont
+50011,50,vt,Vermont
+50013,50,vt,Vermont
+50015,50,vt,Vermont
+50017,50,vt,Vermont
+50019,50,vt,Vermont
+50021,50,vt,Vermont
+50023,50,vt,Vermont
+50025,50,vt,Vermont
+50027,50,vt,Vermont
+51000,51,va,Virginia
+51001,51,va,Virginia
+51003,51,va,Virginia
+51005,51,va,Virginia
+51007,51,va,Virginia
+51009,51,va,Virginia
+51011,51,va,Virginia
+51013,51,va,Virginia
+51015,51,va,Virginia
+51017,51,va,Virginia
+51019,51,va,Virginia
+51021,51,va,Virginia
+51023,51,va,Virginia
+51025,51,va,Virginia
+51027,51,va,Virginia
+51029,51,va,Virginia
+51031,51,va,Virginia
+51033,51,va,Virginia
+51035,51,va,Virginia
+51036,51,va,Virginia
+51037,51,va,Virginia
+51041,51,va,Virginia
+51043,51,va,Virginia
+51045,51,va,Virginia
+51047,51,va,Virginia
+51049,51,va,Virginia
+51051,51,va,Virginia
+51053,51,va,Virginia
+51057,51,va,Virginia
+51059,51,va,Virginia
+51061,51,va,Virginia
+51063,51,va,Virginia
+51065,51,va,Virginia
+51067,51,va,Virginia
+51069,51,va,Virginia
+51071,51,va,Virginia
+51073,51,va,Virginia
+51075,51,va,Virginia
+51077,51,va,Virginia
+51079,51,va,Virginia
+51081,51,va,Virginia
+51083,51,va,Virginia
+51085,51,va,Virginia
+51087,51,va,Virginia
+51089,51,va,Virginia
+51091,51,va,Virginia
+51093,51,va,Virginia
+51095,51,va,Virginia
+51097,51,va,Virginia
+51099,51,va,Virginia
+51101,51,va,Virginia
+51103,51,va,Virginia
+51105,51,va,Virginia
+51107,51,va,Virginia
+51109,51,va,Virginia
+51111,51,va,Virginia
+51113,51,va,Virginia
+51115,51,va,Virginia
+51117,51,va,Virginia
+51119,51,va,Virginia
+51121,51,va,Virginia
+51125,51,va,Virginia
+51127,51,va,Virginia
+51131,51,va,Virginia
+51133,51,va,Virginia
+51135,51,va,Virginia
+51137,51,va,Virginia
+51139,51,va,Virginia
+51141,51,va,Virginia
+51143,51,va,Virginia
+51145,51,va,Virginia
+51147,51,va,Virginia
+51149,51,va,Virginia
+51153,51,va,Virginia
+51155,51,va,Virginia
+51157,51,va,Virginia
+51159,51,va,Virginia
+51161,51,va,Virginia
+51163,51,va,Virginia
+51165,51,va,Virginia
+51167,51,va,Virginia
+51169,51,va,Virginia
+51171,51,va,Virginia
+51173,51,va,Virginia
+51175,51,va,Virginia
+51177,51,va,Virginia
+51179,51,va,Virginia
+51181,51,va,Virginia
+51183,51,va,Virginia
+51185,51,va,Virginia
+51187,51,va,Virginia
+51191,51,va,Virginia
+51193,51,va,Virginia
+51195,51,va,Virginia
+51197,51,va,Virginia
+51199,51,va,Virginia
+51510,51,va,Virginia
+51520,51,va,Virginia
+51530,51,va,Virginia
+51540,51,va,Virginia
+51550,51,va,Virginia
+51570,51,va,Virginia
+51580,51,va,Virginia
+51590,51,va,Virginia
+51595,51,va,Virginia
+51600,51,va,Virginia
+51610,51,va,Virginia
+51620,51,va,Virginia
+51630,51,va,Virginia
+51640,51,va,Virginia
+51650,51,va,Virginia
+51660,51,va,Virginia
+51670,51,va,Virginia
+51678,51,va,Virginia
+51680,51,va,Virginia
+51683,51,va,Virginia
+51685,51,va,Virginia
+51690,51,va,Virginia
+51700,51,va,Virginia
+51710,51,va,Virginia
+51720,51,va,Virginia
+51730,51,va,Virginia
+51735,51,va,Virginia
+51740,51,va,Virginia
+51750,51,va,Virginia
+51760,51,va,Virginia
+51770,51,va,Virginia
+51775,51,va,Virginia
+51790,51,va,Virginia
+51800,51,va,Virginia
+51810,51,va,Virginia
+51820,51,va,Virginia
+51830,51,va,Virginia
+51840,51,va,Virginia
+53000,53,wa,Washington
+53001,53,wa,Washington
+53003,53,wa,Washington
+53005,53,wa,Washington
+53007,53,wa,Washington
+53009,53,wa,Washington
+53011,53,wa,Washington
+53013,53,wa,Washington
+53015,53,wa,Washington
+53017,53,wa,Washington
+53019,53,wa,Washington
+53021,53,wa,Washington
+53023,53,wa,Washington
+53025,53,wa,Washington
+53027,53,wa,Washington
+53029,53,wa,Washington
+53031,53,wa,Washington
+53033,53,wa,Washington
+53035,53,wa,Washington
+53037,53,wa,Washington
+53039,53,wa,Washington
+53041,53,wa,Washington
+53043,53,wa,Washington
+53045,53,wa,Washington
+53047,53,wa,Washington
+53049,53,wa,Washington
+53051,53,wa,Washington
+53053,53,wa,Washington
+53055,53,wa,Washington
+53057,53,wa,Washington
+53059,53,wa,Washington
+53061,53,wa,Washington
+53063,53,wa,Washington
+53065,53,wa,Washington
+53067,53,wa,Washington
+53069,53,wa,Washington
+53071,53,wa,Washington
+53073,53,wa,Washington
+53075,53,wa,Washington
+53077,53,wa,Washington
+54000,54,wv,West Virginia
+54001,54,wv,West Virginia
+54003,54,wv,West Virginia
+54005,54,wv,West Virginia
+54007,54,wv,West Virginia
+54009,54,wv,West Virginia
+54011,54,wv,West Virginia
+54013,54,wv,West Virginia
+54015,54,wv,West Virginia
+54017,54,wv,West Virginia
+54019,54,wv,West Virginia
+54021,54,wv,West Virginia
+54023,54,wv,West Virginia
+54025,54,wv,West Virginia
+54027,54,wv,West Virginia
+54029,54,wv,West Virginia
+54031,54,wv,West Virginia
+54033,54,wv,West Virginia
+54035,54,wv,West Virginia
+54037,54,wv,West Virginia
+54039,54,wv,West Virginia
+54041,54,wv,West Virginia
+54043,54,wv,West Virginia
+54045,54,wv,West Virginia
+54047,54,wv,West Virginia
+54049,54,wv,West Virginia
+54051,54,wv,West Virginia
+54053,54,wv,West Virginia
+54055,54,wv,West Virginia
+54057,54,wv,West Virginia
+54059,54,wv,West Virginia
+54061,54,wv,West Virginia
+54063,54,wv,West Virginia
+54065,54,wv,West Virginia
+54067,54,wv,West Virginia
+54069,54,wv,West Virginia
+54071,54,wv,West Virginia
+54073,54,wv,West Virginia
+54075,54,wv,West Virginia
+54077,54,wv,West Virginia
+54079,54,wv,West Virginia
+54081,54,wv,West Virginia
+54083,54,wv,West Virginia
+54085,54,wv,West Virginia
+54087,54,wv,West Virginia
+54089,54,wv,West Virginia
+54091,54,wv,West Virginia
+54093,54,wv,West Virginia
+54095,54,wv,West Virginia
+54097,54,wv,West Virginia
+54099,54,wv,West Virginia
+54101,54,wv,West Virginia
+54103,54,wv,West Virginia
+54105,54,wv,West Virginia
+54107,54,wv,West Virginia
+54109,54,wv,West Virginia
+55000,55,wi,Wisconsin
+55001,55,wi,Wisconsin
+55003,55,wi,Wisconsin
+55005,55,wi,Wisconsin
+55007,55,wi,Wisconsin
+55009,55,wi,Wisconsin
+55011,55,wi,Wisconsin
+55013,55,wi,Wisconsin
+55015,55,wi,Wisconsin
+55017,55,wi,Wisconsin
+55019,55,wi,Wisconsin
+55021,55,wi,Wisconsin
+55023,55,wi,Wisconsin
+55025,55,wi,Wisconsin
+55027,55,wi,Wisconsin
+55029,55,wi,Wisconsin
+55031,55,wi,Wisconsin
+55033,55,wi,Wisconsin
+55035,55,wi,Wisconsin
+55037,55,wi,Wisconsin
+55039,55,wi,Wisconsin
+55041,55,wi,Wisconsin
+55043,55,wi,Wisconsin
+55045,55,wi,Wisconsin
+55047,55,wi,Wisconsin
+55049,55,wi,Wisconsin
+55051,55,wi,Wisconsin
+55053,55,wi,Wisconsin
+55055,55,wi,Wisconsin
+55057,55,wi,Wisconsin
+55059,55,wi,Wisconsin
+55061,55,wi,Wisconsin
+55063,55,wi,Wisconsin
+55065,55,wi,Wisconsin
+55067,55,wi,Wisconsin
+55069,55,wi,Wisconsin
+55071,55,wi,Wisconsin
+55073,55,wi,Wisconsin
+55075,55,wi,Wisconsin
+55077,55,wi,Wisconsin
+55078,55,wi,Wisconsin
+55079,55,wi,Wisconsin
+55081,55,wi,Wisconsin
+55083,55,wi,Wisconsin
+55085,55,wi,Wisconsin
+55087,55,wi,Wisconsin
+55089,55,wi,Wisconsin
+55091,55,wi,Wisconsin
+55093,55,wi,Wisconsin
+55095,55,wi,Wisconsin
+55097,55,wi,Wisconsin
+55099,55,wi,Wisconsin
+55101,55,wi,Wisconsin
+55103,55,wi,Wisconsin
+55105,55,wi,Wisconsin
+55107,55,wi,Wisconsin
+55109,55,wi,Wisconsin
+55111,55,wi,Wisconsin
+55113,55,wi,Wisconsin
+55115,55,wi,Wisconsin
+55117,55,wi,Wisconsin
+55119,55,wi,Wisconsin
+55121,55,wi,Wisconsin
+55123,55,wi,Wisconsin
+55125,55,wi,Wisconsin
+55127,55,wi,Wisconsin
+55129,55,wi,Wisconsin
+55131,55,wi,Wisconsin
+55133,55,wi,Wisconsin
+55135,55,wi,Wisconsin
+55137,55,wi,Wisconsin
+55139,55,wi,Wisconsin
+55141,55,wi,Wisconsin
+56000,56,wy,Wyoming
+56001,56,wy,Wyoming
+56003,56,wy,Wyoming
+56005,56,wy,Wyoming
+56007,56,wy,Wyoming
+56009,56,wy,Wyoming
+56011,56,wy,Wyoming
+56013,56,wy,Wyoming
+56015,56,wy,Wyoming
+56017,56,wy,Wyoming
+56019,56,wy,Wyoming
+56021,56,wy,Wyoming
+56023,56,wy,Wyoming
+56025,56,wy,Wyoming
+56027,56,wy,Wyoming
+56029,56,wy,Wyoming
+56031,56,wy,Wyoming
+56033,56,wy,Wyoming
+56035,56,wy,Wyoming
+56037,56,wy,Wyoming
+56039,56,wy,Wyoming
+56041,56,wy,Wyoming
+56043,56,wy,Wyoming
+56045,56,wy,Wyoming
+70002,70,pw,Republic of Palau
+70003,70,pw,Republic of Palau
+72000,72,pr,Puerto Rico
+72001,72,pr,Puerto Rico
+72003,72,pr,Puerto Rico
+72005,72,pr,Puerto Rico
+72007,72,pr,Puerto Rico
+72009,72,pr,Puerto Rico
+72011,72,pr,Puerto Rico
+72013,72,pr,Puerto Rico
+72015,72,pr,Puerto Rico
+72017,72,pr,Puerto Rico
+72019,72,pr,Puerto Rico
+72021,72,pr,Puerto Rico
+72023,72,pr,Puerto Rico
+72025,72,pr,Puerto Rico
+72027,72,pr,Puerto Rico
+72029,72,pr,Puerto Rico
+72031,72,pr,Puerto Rico
+72033,72,pr,Puerto Rico
+72035,72,pr,Puerto Rico
+72037,72,pr,Puerto Rico
+72039,72,pr,Puerto Rico
+72041,72,pr,Puerto Rico
+72043,72,pr,Puerto Rico
+72045,72,pr,Puerto Rico
+72047,72,pr,Puerto Rico
+72049,72,pr,Puerto Rico
+72051,72,pr,Puerto Rico
+72053,72,pr,Puerto Rico
+72054,72,pr,Puerto Rico
+72055,72,pr,Puerto Rico
+72057,72,pr,Puerto Rico
+72059,72,pr,Puerto Rico
+72061,72,pr,Puerto Rico
+72063,72,pr,Puerto Rico
+72065,72,pr,Puerto Rico
+72067,72,pr,Puerto Rico
+72069,72,pr,Puerto Rico
+72071,72,pr,Puerto Rico
+72073,72,pr,Puerto Rico
+72075,72,pr,Puerto Rico
+72077,72,pr,Puerto Rico
+72079,72,pr,Puerto Rico
+72081,72,pr,Puerto Rico
+72083,72,pr,Puerto Rico
+72085,72,pr,Puerto Rico
+72087,72,pr,Puerto Rico
+72089,72,pr,Puerto Rico
+72091,72,pr,Puerto Rico
+72093,72,pr,Puerto Rico
+72095,72,pr,Puerto Rico
+72097,72,pr,Puerto Rico
+72099,72,pr,Puerto Rico
+72101,72,pr,Puerto Rico
+72103,72,pr,Puerto Rico
+72105,72,pr,Puerto Rico
+72107,72,pr,Puerto Rico
+72109,72,pr,Puerto Rico
+72111,72,pr,Puerto Rico
+72113,72,pr,Puerto Rico
+72115,72,pr,Puerto Rico
+72117,72,pr,Puerto Rico
+72119,72,pr,Puerto Rico
+72121,72,pr,Puerto Rico
+72123,72,pr,Puerto Rico
+72125,72,pr,Puerto Rico
+72127,72,pr,Puerto Rico
+72129,72,pr,Puerto Rico
+72131,72,pr,Puerto Rico
+72133,72,pr,Puerto Rico
+72135,72,pr,Puerto Rico
+72137,72,pr,Puerto Rico
+72139,72,pr,Puerto Rico
+72141,72,pr,Puerto Rico
+72143,72,pr,Puerto Rico
+72145,72,pr,Puerto Rico
+72147,72,pr,Puerto Rico
+72149,72,pr,Puerto Rico
+72151,72,pr,Puerto Rico
+72153,72,pr,Puerto Rico
diff --git a/_delphi_utils_python/delphi_utils/data/fips_zip_cross.csv b/_delphi_utils_python/delphi_utils/data/fips_zip_table.csv
similarity index 99%
rename from _delphi_utils_python/delphi_utils/data/fips_zip_cross.csv
rename to _delphi_utils_python/delphi_utils/data/fips_zip_table.csv
index c40902412..6b1235963 100644
--- a/_delphi_utils_python/delphi_utils/data/fips_zip_cross.csv
+++ b/_delphi_utils_python/delphi_utils/data/fips_zip_table.csv
@@ -168,7 +168,6 @@ fips,zip,weight
01027,36267,0.0025122021246052253
01027,36268,0.0016508756818834338
01027,36276,0.013422337065747919
-01029,36207,0.0
01029,36258,0.039072936147475285
01029,36262,0.09671386588298156
01029,36264,0.5497595511621693
@@ -963,7 +962,6 @@ fips,zip,weight
02020,99506,0.026553494205451195
02020,99507,0.12970057500017135
02020,99508,0.12287116295326667
-02020,99513,0.0
02020,99515,0.07689856284224161
02020,99516,0.0688595258818611
02020,99517,0.05703741270483096
@@ -1077,7 +1075,6 @@ fips,zip,weight
02170,99676,0.017371762458565088
02170,99683,0.005887971234339008
02170,99688,0.031001741670880385
-02170,99693,0.0
02170,99694,0.016989718523512557
02170,99729,0.0001348390359008933
02180,99659,0.04224610198061526
@@ -1175,7 +1172,6 @@ fips,zip,weight
02290,99726,0.005368647100930566
02290,99730,0.025769506084466716
02290,99733,0.018611309949892626
-02290,99738,0.0
02290,99740,0.10468861846814603
02290,99741,0.08410880458124552
02290,99745,0.01395848246241947
@@ -1542,9 +1538,6 @@ fips,zip,weight
04019,85716,0.03351461195459567
04019,85718,0.027918131840666598
04019,85719,0.04487487490550967
-04019,85723,0.0
-04019,85724,0.0
-04019,85726,0.0
04019,85730,0.03909476985164125
04019,85735,0.01147655874620891
04019,85736,0.005075189312212384
@@ -2455,7 +2448,6 @@ fips,zip,weight
05145,72137,0.02367792827858218
05145,72139,0.0028024287716020553
05145,72143,0.4559266178836473
-05145,72149,0.0
05145,72173,0.0004800456692096113
05147,72006,0.35853994490358126
05147,72021,0.0011019283746556473
@@ -2641,7 +2633,6 @@ fips,zip,weight
06013,94804,0.03675719886865729
06013,94805,0.013010250529304044
06013,94806,0.05706379007434565
-06013,94850,0.0
06013,95219,1.525234528640568e-05
06015,95531,0.8577423415862359
06015,95543,0.026751993285774236
@@ -2693,7 +2684,6 @@ fips,zip,weight
06019,93628,0.00035145380424560495
06019,93630,0.020594977972337253
06019,93631,0.014108666936795279
-06019,93633,0.0
06019,93634,3.546781510735463e-05
06019,93640,0.012768413438647666
06019,93641,0.0006394954542083638
@@ -2788,7 +2778,6 @@ fips,zip,weight
06025,92275,0.008628987898789879
06025,92281,0.013934726806013934
06025,92283,0.018094517785111845
-06027,89019,0.0
06027,89060,0.001623991771775023
06027,89061,0.002760786012017539
06027,92328,0.024089211281329508
@@ -2961,9 +2950,7 @@ fips,zip,weight
06037,90071,1.5277228221929238e-06
06037,90073,5.4896173410799064e-05
06037,90077,0.0009550304602468699
-06037,90079,0.0
06037,90089,0.00032764562126630907
-06037,90090,0.0
06037,90094,0.0005564985000308091
06037,90095,3.0554456443858477e-07
06037,90201,0.010315082647258476
@@ -3016,7 +3003,6 @@ fips,zip,weight
06037,90503,0.0045203281344925695
06037,90504,0.0032695305358691495
06037,90505,0.0037355878448261377
-06037,90506,0.0
06037,90601,0.0032564939677864366
06037,90602,0.002625340745844467
06037,90603,0.002043380198777109
@@ -3048,7 +3034,6 @@ fips,zip,weight
06037,90744,0.00548096024508748
06037,90745,0.005830910619557806
06037,90746,0.002647034409919606
-06037,90747,0.0
06037,90755,0.0011278668355309627
06037,90802,0.004007420658988332
06037,90803,0.0032622993145107696
@@ -3062,7 +3047,6 @@ fips,zip,weight
06037,90814,0.0019484576874248551
06037,90815,0.0040372621781151665
06037,90822,1.1916238013104806e-05
-06037,90831,0.0
06037,91001,0.003679367644969438
06037,91006,0.003230115287056572
06037,91007,0.003472513974844516
@@ -3147,7 +3131,6 @@ fips,zip,weight
06037,91605,0.005738432464721061
06037,91606,0.004578890842676631
06037,91607,0.0028443143503587855
-06037,91608,0.0
06037,91702,0.006080846073268568
06037,91706,0.007798617614542292
06037,91711,0.00363648955775989
@@ -3859,7 +3842,6 @@ fips,zip,weight
06073,92129,0.016666591207351204
06073,92130,0.015827052423311238
06073,92131,0.010603219611832969
-06073,92132,0.0
06073,92134,6.403261912169238e-05
06073,92135,0.00018465972484084012
06073,92139,0.011359321952774974
@@ -3938,7 +3920,6 @@ fips,zip,weight
06079,93401,0.10397187162721004
06079,93402,0.05310417215276258
06079,93405,0.13144376736233454
-06079,93410,0.0
06079,93420,0.10538125739463915
06079,93422,0.11636704856075751
06079,93424,0.004676935401916023
@@ -4323,11 +4304,9 @@ fips,zip,weight
06107,93654,0.0017255455369884142
06107,93666,0.0015649770794180637
06107,93673,0.001612469158417745
-06109,95223,0.0
06109,95305,0.004425897824987354
06109,95310,0.033998121251535514
06109,95311,0.0008490497868343088
-06109,95314,0.0
06109,95321,0.06600910470409711
06109,95327,0.17714430233398368
06109,95329,0.02072042777657345
@@ -4417,7 +4396,6 @@ fips,zip,weight
08001,80010,0.04438375645092991
08001,80011,0.04147616750792001
08001,80019,0.0038269667552077316
-08001,80020,0.0
08001,80022,0.09669091921929879
08001,80023,0.004707848452116494
08001,80024,0.000516300840347552
@@ -4435,7 +4413,6 @@ fips,zip,weight
08001,80229,0.11231354859455212
08001,80233,0.10277556991234209
08001,80234,0.05573105255172633
-08001,80239,0.0
08001,80241,0.07188809858628678
08001,80260,0.07113176314472501
08001,80601,0.07661406285736283
@@ -4472,7 +4449,6 @@ fips,zip,weight
08005,80122,0.0520679087347444
08005,80123,0.019080319508813764
08005,80128,0.0031887944643646973
-08005,80129,0.0
08005,80136,0.002727258423469807
08005,80137,0.0015419499548079293
08005,80220,0.00042307470415364957
@@ -4480,7 +4456,6 @@ fips,zip,weight
08005,80224,0.0002045443817602355
08005,80231,0.023678197491971194
08005,80236,0.0022657223825749166
-08005,80237,0.0
08005,80246,0.007314646951152354
08005,80247,0.023192186054968242
08007,81121,0.022343594836146972
@@ -4528,7 +4503,6 @@ fips,zip,weight
08014,80020,0.6898495231619818
08014,80021,0.04662813791622681
08014,80023,0.23861582780153517
-08014,80027,0.0
08014,80234,0.02372559895507166
08014,80516,0.0011809121651845623
08015,80449,0.00022460553652647538
@@ -4578,11 +4552,9 @@ fips,zip,weight
08029,81418,0.05537606616696821
08029,81419,0.1254523132592401
08029,81428,0.11957224088911864
-08029,81434,0.0
08031,80012,0.0007647986030345342
08031,80014,0.007438041315786843
08031,80110,0.0017578704274541037
-08031,80111,0.0
08031,80123,0.01994141542727082
08031,80202,0.016908880661425825
08031,80203,0.03139006728228233
@@ -4616,10 +4588,6 @@ fips,zip,weight
08031,80246,0.014481186620856509
08031,80247,0.020299654424334925
08031,80249,0.03899639761529464
-08031,80264,0.0
-08031,80290,0.0
-08031,80293,0.0
-08031,80294,0.0
08033,81320,0.187984496124031
08033,81323,0.02374031007751938
08033,81324,0.6492248062015504
@@ -4713,7 +4681,6 @@ fips,zip,weight
08041,80929,0.00037122567146045965
08041,80930,0.0013193778193464822
08041,80938,2.7319638159427765e-05
-08041,80939,0.0
08041,80951,0.006752771737995028
08041,81008,0.00011088559017650094
08043,80926,0.0015803861267725953
@@ -4794,7 +4761,6 @@ fips,zip,weight
08059,80235,0.007969424349397522
08059,80401,0.07366666479590978
08059,80403,0.03169436322241616
-08059,80419,0.0
08059,80421,2.8061353342949024e-05
08059,80425,0.000344219267673508
08059,80433,0.015628303055133075
@@ -4990,7 +4956,6 @@ fips,zip,weight
08105,81132,0.25012518778167253
08105,81144,0.6061592388582875
08105,81154,0.09163745618427642
-08107,80426,0.0
08107,80428,0.03003105193755583
08107,80463,0.0030201199540601472
08107,80467,0.094602067293377
@@ -5152,7 +5117,6 @@ fips,zip,weight
09003,06013,0.010431603979356028
09003,06016,0.0069640967591111545
09003,06019,0.011329800204471071
-09003,06020,0.0
09003,06022,0.00018232376674190784
09003,06023,0.0014496417282055985
09003,06026,0.005723624014836457
@@ -5199,7 +5163,6 @@ fips,zip,weight
09003,06118,0.030151653106103484
09003,06119,0.017308453782602956
09003,06120,0.0144147630797728
-09003,06160,0.0
09003,06444,0.0004138637649969687
09003,06447,0.007163198786596183
09003,06451,4.921623151315304e-05
@@ -5213,7 +5176,6 @@ fips,zip,weight
09005,06039,0.010224981176978523
09005,06057,0.035313567844487616
09005,06058,0.00940887814791999
-09005,06059,0.0
09005,06061,0.0008898155607154328
09005,06063,0.017296119035208266
09005,06065,0.002174519683878543
@@ -5487,37 +5449,15 @@ fips,zip,weight
11001,20032,0.059251516063038974
11001,20036,0.009032395304816336
11001,20037,0.024333455759543845
-11001,20045,0.0
11001,20052,0.0007810903023484228
-11001,20053,0.0
11001,20057,0.006461444884107804
11001,20064,0.003140980151996849
-11001,20202,0.0
-11001,20204,0.0
-11001,20228,0.0
-11001,20230,0.0
-11001,20240,0.0
-11001,20245,0.0
-11001,20260,0.0
11001,20307,0.000586648673891475
11001,20317,0.0015006905170651611
11001,20319,0.00013959911786652661
11001,20373,0.0002177081481013689
11001,20390,0.0009705462480244232
-11001,20405,0.0
-11001,20418,0.0
-11001,20427,0.0
-11001,20506,0.0
-11001,20510,0.0
-11001,20520,0.0
11001,20535,1.3295154082526346e-05
-11001,20540,0.0
-11001,20551,0.0
-11001,20553,0.0
-11001,20560,0.0
-11001,20565,0.0
-11001,20566,0.0
-11001,20593,0.0
12001,32601,0.07514069929165185
12001,32603,0.02725442313290423
12001,32605,0.09268767991719766
@@ -5798,7 +5738,6 @@ fips,zip,weight
12035,32174,0.018287075739842836
12035,32180,0.0001462966059187427
12037,32320,0.33405489652783793
-12037,32321,0.0
12037,32322,0.3469564464455797
12037,32323,0.018789505584899127
12037,32328,0.2726642999393887
@@ -6124,7 +6063,6 @@ fips,zip,weight
12086,33054,0.011641084001591081
12086,33055,0.017302397796521974
12086,33056,0.014043727470210305
-12086,33101,0.0
12086,33109,0.00023794101706565852
12086,33122,4.005741028041389e-07
12086,33125,0.021101042013413625
@@ -6262,7 +6200,6 @@ fips,zip,weight
12095,32837,0.04469543333251887
12095,32839,0.043875157510410524
12095,34734,0.0033465508274314196
-12095,34747,0.0
12095,34760,0.0007635546216434139
12095,34761,0.03272376949900345
12095,34786,0.024514030207093467
@@ -6713,7 +6650,6 @@ fips,zip,weight
13021,31207,0.006261772968941863
13021,31210,0.18209287225083093
13021,31211,0.05669026082148804
-13021,31213,0.0
13021,31216,0.10356355313827975
13021,31217,0.07948722894044886
13021,31220,0.08182735764752776
@@ -6867,7 +6803,6 @@ fips,zip,weight
13063,30294,0.05185333662267177
13063,30296,0.0830069692858024
13063,30297,0.10480140619217959
-13063,30337,0.0
13063,30349,0.07035201060811644
13063,30354,5.011101517207352e-05
13065,31623,0.017675651789659744
@@ -7178,7 +7113,6 @@ fips,zip,weight
13127,31520,0.2805113907517645
13127,31522,0.18143571195338207
13127,31523,0.1661392007635697
-13127,31524,0.0
13127,31525,0.35474593725667497
13127,31527,0.010109763142692086
13127,31543,0.0014316931655489413
@@ -7699,7 +7633,6 @@ fips,zip,weight
13269,31076,0.3133842353469571
13269,31081,0.028183247249045588
13269,31812,0.013024927015495171
-13271,30411,0.0
13271,31037,0.20103030303030303
13271,31055,0.4996969696969697
13271,31060,0.0676969696969697
@@ -7795,7 +7728,6 @@ fips,zip,weight
13299,31552,0.024124256444150696
13299,31554,0.010547477417933465
13299,31624,0.0013218770654329147
-13299,31631,0.0
13301,30807,0.01576962632841961
13301,30810,0.007713404182379157
13301,30820,0.0450805622214604
@@ -7932,7 +7864,6 @@ fips,zip,weight
15003,96822,0.04721639685818505
15003,96825,0.03174861284065266
15003,96826,0.03235603599218218
-15003,96850,0.0
15003,96853,0.00048467961313754514
15003,96857,0.0026458051608936987
15003,96859,0.00016365805118930096
@@ -8106,7 +8037,6 @@ fips,zip,weight
16029,83120,0.016085020824357317
16029,83217,0.12106850495476087
16029,83241,0.28364210828665803
-16029,83254,0.0
16029,83276,0.5661352865144335
16029,83285,0.005313801522332328
16031,83211,0.0038776577204600905
@@ -8128,7 +8058,6 @@ fips,zip,weight
16035,83544,0.694669558269604
16035,83546,0.06700148384887569
16035,83553,0.12555644332838717
-16035,83823,0.0
16035,83827,0.016322337632690333
16037,83226,0.5716575091575091
16037,83227,0.03250915750915751
@@ -8335,7 +8264,6 @@ fips,zip,weight
16085,83611,0.24875773248149274
16085,83615,0.15931447114897068
16085,83638,0.5874657742622452
-16085,83657,0.0
16085,83677,0.00446202210729135
16087,83610,0.09276328691900372
16087,83645,0.0623651696411061
@@ -8441,7 +8369,6 @@ fips,zip,weight
17013,62065,0.01906071919827078
17013,62070,0.0072705836117115345
17013,62355,0.0391039496954215
-17013,62366,0.0
17015,61014,0.06713459413790862
17015,61046,0.18398648209527524
17015,61051,0.10014947683109118
@@ -8812,7 +8739,6 @@ fips,zip,weight
17041,61943,0.008058058058058058
17041,61953,0.3111111111111111
17041,61956,0.1432932932932933
-17043,60007,0.0
17043,60101,0.04266329597654767
17043,60103,0.02731305975195327
17043,60106,0.022149054883501794
@@ -9876,7 +9802,6 @@ fips,zip,weight
17161,61282,0.052925867187182306
17161,61284,0.015534138505957465
17163,62059,0.0027623900228100837
-17163,62060,0.0
17163,62201,0.027360991794294517
17163,62203,0.03039739905797316
17163,62204,0.02947536807180733
@@ -10617,10 +10542,8 @@ fips,zip,weight
18057,46069,0.019852933142488774
18057,46074,0.09740720911683402
18057,46077,0.0038205332721465276
-18057,46240,0.0
18057,46250,0.0006482887725853975
18057,46256,0.005769041661658818
-18057,46260,0.0
18057,46280,0.02474059343917194
18057,46290,0.0006191521985366155
18059,46040,0.07895488700322847
@@ -11285,7 +11208,6 @@ fips,zip,weight
18157,47904,0.09420650538256743
18157,47905,0.225199675888413
18157,47906,0.38665933557124665
-18157,47907,0.0
18157,47909,0.22787938418798473
18157,47918,0.0004051394837365436
18157,47920,0.012015279546243778
@@ -12535,7 +12457,6 @@ fips,zip,weight
19153,50315,0.08325515511796396
19153,50316,0.03817573843581646
19153,50317,0.08407718744194687
-19153,50319,0.0
19153,50320,0.042299832806984954
19153,50321,0.018219394389745496
19153,50322,0.0732166078394947
@@ -13780,7 +13701,6 @@ fips,zip,weight
20173,67230,0.019983345539915525
20173,67232,0.0005979553138763758
20173,67235,0.02296710242492952
-20173,67260,0.0
20175,67859,0.0320233530846985
20175,67869,0.002178459393516905
20175,67870,0.003485535029627048
@@ -13944,7 +13864,6 @@ fips,zip,weight
20209,66109,0.12932922764356686
20209,66111,0.06447414367797848
20209,66112,0.07274689692390718
-20209,66115,0.0
20209,66118,1.9047014380495857e-05
20209,66217,0.0002603091965334434
21001,42129,0.0137221269296741
@@ -14474,7 +14393,6 @@ fips,zip,weight
21111,40223,0.029700605589559247
21111,40228,0.02124286192342153
21111,40229,0.031217278193378457
-21111,40231,0.0
21111,40241,0.03871968004145212
21111,40242,0.014748426654576464
21111,40243,0.013776892602307933
@@ -15274,7 +15192,6 @@ fips,zip,weight
22033,70818,0.02192102614665664
22033,70819,0.011450095531054976
22033,70820,0.039125703419807305
-22033,70836,0.0
22035,71237,0.012372728444387164
22035,71254,0.8711174120376337
22035,71276,0.03724706792112386
@@ -15391,7 +15308,6 @@ fips,zip,weight
22057,70375,0.0012977844224340207
22057,70377,0.00527419589277186
22057,70394,0.14875724163707718
-22059,71328,0.0
22059,71342,0.5059100067159167
22059,71343,0.01994627266621894
22059,71371,0.14445936870382808
@@ -15465,8 +15381,6 @@ fips,zip,weight
22071,70129,0.02636194154652458
22071,70130,0.040904054050123755
22071,70131,0.08700545910903384
-22071,70139,0.0
-22071,70163,0.0
22073,71201,0.13218188914910226
22073,71202,0.1889409315638824
22073,71203,0.24138043195420245
@@ -16074,7 +15988,6 @@ fips,zip,weight
23021,04479,0.07658967778728258
23021,04481,0.03187909894496721
23021,04485,0.013287710293698317
-23021,04732,0.0
23021,04942,0.016310236669518106
23023,04008,0.0771541098801462
23023,04086,0.24897288414133115
@@ -16212,7 +16125,6 @@ fips,zip,weight
24001,21557,0.02523739129276706
24001,21562,0.041391985297055414
24001,21766,0.009322519211048517
-24003,20701,0.0
24003,20711,0.012355483803770441
24003,20714,0.0016832324013867602
24003,20724,0.029931777939797937
@@ -16248,7 +16160,6 @@ fips,zip,weight
24003,21146,0.049669305280699926
24003,21225,0.026782924397756185
24003,21226,0.007947460829973068
-24003,21240,0.0
24003,21401,0.06697963009805526
24003,21402,0.009703230318270419
24003,21403,0.05629807906914458
@@ -16983,7 +16894,6 @@ fips,zip,weight
25013,01128,0.0056764978748193055
25013,01129,0.015143800297741051
25013,01151,0.018766316425381346
-25013,01199,0.0
25013,01521,0.005352866297007487
25015,01002,0.1819838056680162
25015,01003,0.06561234817813766
@@ -17199,13 +17109,11 @@ fips,zip,weight
25025,02134,0.029781723497964045
25025,02135,0.05925043627600343
25025,02136,0.03945597074873272
-25025,02149,0.0
25025,02150,0.04864685188775934
25025,02151,0.07175424503476358
25025,02152,0.024233400736821696
25025,02163,0.0035760782249799174
25025,02199,0.0015872136505913964
-25025,02203,0.0
25025,02210,0.0028946566577103127
25025,02215,0.0361818232181934
25025,02467,0.007239411650646796
@@ -17417,7 +17325,6 @@ fips,zip,weight
26017,48659,0.0005288992400553025
26017,48706,0.37668760612780805
26017,48708,0.2527024895380019
-26017,48710,0.0
26017,48732,0.10654999953605329
26017,48747,0.013667869835113342
26017,48757,0.0006866411186682874
@@ -17658,9 +17565,6 @@ fips,zip,weight
26049,48519,0.01753211677117828
26049,48529,0.024122219873646635
26049,48532,0.04550365203504075
-26049,48551,0.0
-26049,48553,0.0
-26049,48554,0.0
26049,48746,0.0019399234364358016
26051,48610,0.027518293632259067
26051,48612,0.35489646582593803
@@ -17780,7 +17684,6 @@ fips,zip,weight
26065,48912,0.06064543690702932
26065,48915,0.03281653286815358
26065,48917,0.01917442460705958
-26065,48921,0.0
26065,48933,0.00900692429555528
26065,49251,0.02112177148044643
26065,49264,0.005368554086046387
@@ -18085,7 +17988,6 @@ fips,zip,weight
26099,48315,0.03158584410055911
26099,48316,0.03020768676469539
26099,48317,0.03164173141271234
-26099,48397,0.0
26101,49613,0.021994905591719564
26101,49614,0.11280475478106174
26101,49619,0.044879311041927786
@@ -18168,7 +18070,6 @@ fips,zip,weight
26111,48652,0.002750242140884143
26111,48657,0.09543340228867976
26111,48662,0.0037546784010331342
-26111,48667,0.0
26111,48858,0.0019969149457723994
26111,48880,0.011491229119085485
26111,48883,0.022049767425175476
@@ -18675,15 +18576,12 @@ fips,zip,weight
26163,48228,0.028633669196257903
26163,48229,0.005248865199298686
26163,48230,0.009324480496368198
-26163,48233,0.0
26163,48234,0.019850773158502987
26163,48235,0.02475194772666353
26163,48236,0.01676824579365742
26163,48238,0.017435614066695082
26163,48239,0.019512420190444385
26163,48240,0.009734239123270335
-26163,48242,0.0
-26163,48243,0.0
26165,49601,0.6378799450129831
26165,49618,0.023247288834580725
26165,49620,0.046800061096685504
@@ -19063,7 +18961,6 @@ fips,zip,weight
27051,56531,0.3313393153871718
27051,56565,0.0014955134596211367
27051,56590,0.0619807244931871
-27053,55111,0.0
27053,55305,0.01680629975920342
27053,55311,0.028451309195826193
27053,55316,0.02003514328481246
@@ -19478,7 +19375,6 @@ fips,zip,weight
27109,55901,0.35991486883700297
27109,55902,0.1522932726970218
27109,55904,0.18254672508457656
-27109,55905,0.0
27109,55906,0.12156147745549331
27109,55920,0.048707781043757975
27109,55923,0.014183905496090067
@@ -19617,11 +19513,9 @@ fips,zip,weight
27123,55126,0.04929026423403586
27123,55127,0.0329938659955961
27123,55130,0.03455292544825417
-27123,55155,0.0
27123,55418,0.000275243787354514
27123,55421,0.006035703051273986
27123,55432,0.00034995281535073924
-27123,55449,0.0
27125,56535,0.006358522866226461
27125,56715,0.08314991440449988
27125,56716,0.006847640009782343
@@ -19753,7 +19647,6 @@ fips,zip,weight
27137,55811,0.13108187747844935
27137,55812,0.05455834906555592
27137,55814,0.003855643123270704
-27137,56649,0.0
27137,56669,0.0006942155364438185
27139,55020,0.02860815220737639
27139,55044,0.023897851117542022
@@ -20219,7 +20112,6 @@ fips,zip,weight
28049,39213,0.09080457427074627
28049,39216,0.01408157857186538
28049,39217,0.004496809833459037
-28049,39269,0.0
28049,39272,0.0511690482499949
28051,38924,0.0344306698614439
28051,39038,0.007240337535159912
@@ -20863,7 +20755,6 @@ fips,zip,weight
29021,64506,0.26003071714442666
29021,64507,0.15401172632593804
29023,63901,0.8092022246109267
-29023,63902,0.0
29023,63932,0.029303173342057297
29023,63937,0.006449502266672898
29023,63940,0.032551292237229516
@@ -21347,7 +21238,6 @@ fips,zip,weight
29095,64086,0.032522049727215285
29095,64088,0.002044031221167738
29095,64101,0.0005028494803888703
-29095,64102,0.0
29095,64105,0.005199077960952774
29095,64106,0.01142313819609053
29095,64108,0.011249588375425345
@@ -22276,7 +22166,6 @@ fips,zip,weight
29510,63139,0.07137309188396901
29510,63143,0.005205234047617556
29510,63147,0.03561920988180173
-29510,63155,0.0
30001,59724,0.013843824356478478
30001,59725,0.8608046722907203
30001,59727,0.004218040233614536
@@ -22468,7 +22357,6 @@ fips,zip,weight
30045,59452,0.2533783783783784
30045,59453,0.008204633204633204
30045,59462,0.08108108108108109
-30045,59463,0.0
30045,59464,0.009652509652509652
30045,59469,0.07577220077220077
30045,59479,0.39864864864864863
@@ -23760,7 +23648,6 @@ fips,zip,weight
32033,89318,0.12153539381854436
32033,89319,0.0448654037886341
32510,89701,0.4997828997358613
-32510,89702,0.0
32510,89703,0.17574266382024098
32510,89705,0.0008141259905199551
32510,89706,0.32366031045337773
@@ -23960,7 +23847,6 @@ fips,zip,weight
33015,03077,0.034397726464401486
33015,03079,0.09747208042733797
33015,03087,0.04603977332389414
-33015,03103,0.0
33015,03261,0.014382348258773875
33015,03290,0.0160251741903578
33015,03291,0.00013210352851911945
@@ -24079,7 +23965,6 @@ fips,zip,weight
34003,07458,0.012550877456591199
34003,07463,0.010622947776859541
34003,07481,0.018468351017991064
-34003,07495,0.0
34003,07601,0.04751877107464678
34003,07603,0.00904524944868945
34003,07604,0.013083405883886706
@@ -25665,7 +25550,6 @@ fips,zip,weight
36031,12996,0.05298450596901194
36031,12997,0.03147066294132588
36031,12998,0.013360426720853441
-36033,12912,0.0
36033,12913,0.001647318746487335
36033,12914,0.018275547975735964
36033,12916,0.04137677086765247
@@ -25882,7 +25766,6 @@ fips,zip,weight
36047,11237,0.019920948616600792
36047,11238,0.019667824489958876
36047,11239,0.00534714736295764
-36047,11425,0.0
36049,13305,0.010816997083471776
36049,13309,0.0345553217410566
36049,13312,0.012219884077232622
@@ -26119,7 +26002,6 @@ fips,zip,weight
36061,10017,0.010451821359928568
36061,10018,0.003297289525856198
36061,10019,0.027032855607851448
-36061,10020,0.0
36061,10021,0.02751272505309462
36061,10022,0.02013055475682411
36061,10023,0.03846396375945236
@@ -26145,30 +26027,13 @@ fips,zip,weight
36061,10069,0.0032783722021278204
36061,10075,0.01647131377029829
36061,10103,1.8917323728377498e-06
-36061,10110,0.0
-36061,10111,0.0
-36061,10112,0.0
-36061,10115,0.0
36061,10119,5.801312610035766e-05
36061,10128,0.0381202990450535
-36061,10152,0.0
-36061,10153,0.0
-36061,10154,0.0
36061,10162,0.0010625230160772028
36061,10165,1.2611549152251667e-06
-36061,10167,0.0
-36061,10168,0.0
-36061,10169,0.0
36061,10170,1.2611549152251667e-06
-36061,10171,0.0
-36061,10172,0.0
36061,10173,1.2611549152251667e-06
-36061,10174,0.0
-36061,10177,0.0
36061,10199,5.67519711851325e-06
-36061,10271,0.0
-36061,10278,0.0
-36061,10279,0.0
36061,10280,0.004951924774631617
36061,10282,0.003016051979760986
36061,10463,0.005336577023775293
@@ -26300,7 +26165,6 @@ fips,zip,weight
36067,13215,0.032642722246727165
36067,13219,0.032895384839387955
36067,13224,0.019037483994467117
-36067,13290,0.0
36069,14424,0.25022468058296504
36069,14425,0.09929491990253032
36069,14432,0.053052413115786935
@@ -26483,13 +26347,11 @@ fips,zip,weight
36081,11105,0.01644669304377686
36081,11106,0.017427093111557605
36081,11109,0.0015793092998589693
-36081,11351,0.0
36081,11354,0.024601003621249083
36081,11355,0.038494711577686504
36081,11356,0.010506912111863335
36081,11357,0.017550371583729393
36081,11358,0.016831321876952843
-36081,11359,0.0
36081,11360,0.008465420612698489
36081,11361,0.012823650817986284
36081,11362,0.007989789852792056
@@ -26501,7 +26363,6 @@ fips,zip,weight
36081,11368,0.04928045717933476
36081,11369,0.01731053891968609
36081,11370,0.012819616249806116
-36081,11371,0.0
36081,11372,0.029871942805961477
36081,11373,0.04519612932494502
36081,11374,0.019545241406145632
@@ -26523,7 +26384,6 @@ fips,zip,weight
36081,11421,0.017540061020602297
36081,11422,0.013639081875733507
36081,11423,0.013442732890965347
-36081,11424,0.0
36081,11426,0.007885339365461048
36081,11427,0.010576396341632889
36081,11428,0.008592733653050447
@@ -26534,7 +26394,6 @@ fips,zip,weight
36081,11434,0.026506664658348285
36081,11435,0.024067095765406894
36081,11436,0.008046273807314402
-36081,11451,0.0
36081,11691,0.026912811188485163
36081,11692,0.008311210451145414
36081,11693,0.005341768270542004
@@ -26580,7 +26439,6 @@ fips,zip,weight
36085,10308,0.05836409020118192
36085,10309,0.06937682674460777
36085,10310,0.053254538860324704
-36085,10311,0.0
36085,10312,0.1265205982121904
36085,10314,0.18242911697565764
36087,10901,0.0752838584862378
@@ -27975,7 +27833,6 @@ fips,zip,weight
37119,28217,0.026319337819205157
37119,28226,0.04054465501267904
37119,28227,0.053445523624770015
-37119,28244,0.0
37119,28262,0.04082520323435128
37119,28269,0.07338402049524373
37119,28270,0.034280165458207015
@@ -27983,7 +27840,6 @@ fips,zip,weight
37119,28277,0.06487840735601787
37119,28278,0.020968261079479963
37119,28280,1.0873962080319434e-05
-37119,28282,0.0
37121,28705,0.4310289492265229
37121,28740,0.03780730470505167
37121,28749,0.0007060786956800822
@@ -28362,7 +28218,6 @@ fips,zip,weight
37183,27615,0.04679947568960025
37183,27616,0.046941541166246575
37183,27617,0.01674263840007636
-37183,27703,0.0
37185,27537,0.024508868968148006
37185,27551,0.09355330917413694
37185,27553,0.09765401487697883
@@ -29007,7 +28862,6 @@ fips,zip,weight
38099,58321,0.002608148214767515
38099,58345,0.004856551848187786
38101,58701,0.45995946493717066
-38101,58702,0.0
38101,58703,0.31448723145520874
38101,58704,0.0773408998783948
38101,58705,0.012176732873935954
@@ -30935,7 +30789,6 @@ fips,zip,weight
40025,73946,0.01818181818181818
40025,73947,0.1907070707070707
40025,73949,0.035555555555555556
-40027,73019,0.0
40027,73020,0.0013645872025962347
40027,73026,0.040808586342398
40027,73051,0.040132157729076655
@@ -30945,8 +30798,6 @@ fips,zip,weight
40027,73072,0.159191413657602
40027,73135,0.004148501495571934
40027,73139,0.02851166155109382
-40027,73149,0.0
-40027,73150,0.0
40027,73159,0.035225117788508536
40027,73160,0.20983362984105883
40027,73165,0.02271314343805595
@@ -31755,7 +31606,6 @@ fips,zip,weight
41001,97837,0.005888186438576918
41001,97840,0.006074129168216189
41001,97867,0.00731374736581133
-41001,97869,0.0
41001,97870,0.03551506136110078
41001,97877,0.01419362836246436
41001,97884,0.009731002851121854
@@ -32121,7 +31971,6 @@ fips,zip,weight
41051,97204,0.001408883582154504
41051,97205,0.010455112914675508
41051,97206,0.062431493715780856
-41051,97208,0.0
41051,97209,0.020330897252133044
41051,97210,0.014404338708668443
41051,97211,0.04250313462997767
@@ -32384,8 +32233,6 @@ fips,zip,weight
42003,15239,0.017185625022479296
42003,15241,0.016426233581940706
42003,15243,0.010958451724284505
-42003,15260,0.0
-42003,15290,0.0
42003,15332,0.001205707615494528
42003,15642,0.00014713720053492545
42003,15668,1.8800864512796033e-05
@@ -32645,7 +32492,6 @@ fips,zip,weight
42017,19067,0.08210169068643053
42017,19440,0.0022710951956740433
42019,15044,0.00773950027738195
-42019,15086,0.0
42019,16001,0.21957228791158587
42019,16002,0.0863528080843241
42019,16020,0.006254691018263698
@@ -33028,7 +32874,6 @@ fips,zip,weight
42043,17111,0.11456173069750093
42043,17112,0.12625885863483774
42043,17113,0.04009324878776576
-42043,17120,0.0
42043,17980,0.0008616187989556136
42045,19003,0.010943166022337154
42045,19008,0.03673662159043542
@@ -33234,7 +33079,6 @@ fips,zip,weight
42057,17212,0.04728864937689458
42057,17215,0.013742000673627484
42057,17223,0.019467834287638937
-42057,17224,0.0
42057,17228,0.07969013135735938
42057,17229,0.074503199730549
42057,17233,0.33997979117547994
@@ -33526,7 +33370,6 @@ fips,zip,weight
42075,19551,0.002126257786296119
42077,18011,0.011004386303745096
42077,18015,0.020546671359124684
-42077,18016,0.0
42077,18017,0.0034764246903406897
42077,18018,0.051868828630860925
42077,18031,0.021488024217661383
@@ -33557,7 +33400,6 @@ fips,zip,weight
42077,18105,3.43350586700315e-05
42077,18106,0.01971118493148725
42077,18109,0.047857349276245575
-42077,18195,0.0
42077,18951,0.00010872768578843309
42077,19529,0.004137374569738796
42077,19530,0.001862676932849209
@@ -33777,7 +33619,6 @@ fips,zip,weight
42091,19095,0.008830140747167679
42091,19096,0.016295066472969494
42091,19118,0.00010001575248101575
-42091,19150,0.0
42091,19401,0.05219947141674814
42091,19403,0.05533371506012197
42091,19405,0.006409759537127097
@@ -33814,7 +33655,6 @@ fips,zip,weight
42093,17815,0.004160508019926644
42093,17820,0.008868451305633109
42093,17821,0.8609514424919253
-42093,17822,0.0
42093,17847,0.037827776865385666
42093,17884,0.016696775606284558
42095,18013,0.05979142526071842
@@ -33892,7 +33732,6 @@ fips,zip,weight
42101,19104,0.033950063105911775
42101,19106,0.007693285609624077
42101,19107,0.009747668095669348
-42101,19109,0.0
42101,19111,0.041343218834001966
42101,19112,8.518970436551364e-06
42101,19114,0.02025352456019177
@@ -35007,7 +34846,6 @@ fips,zip,weight
45077,29667,0.002256257129437026
45077,29670,0.00025162718915654566
45077,29671,0.15122794068308396
-45077,29678,0.0
45077,29682,0.03202375360665638
45077,29685,0.010316714755418371
45079,29016,0.04168747269209163
@@ -35020,7 +34858,6 @@ fips,zip,weight
45079,29075,0.0019063520795622412
45079,29078,0.0006683935667769386
45079,29130,0.0007438154089424297
-45079,29147,0.0
45079,29180,0.0006085762436801698
45079,29201,0.05355991095021118
45079,29202,0.0003511016790462518
@@ -35588,7 +35425,6 @@ fips,zip,weight
46103,57780,0.0010104212069580378
46103,57790,0.011005666283631177
46103,57791,0.0010896699290723938
-46103,82701,0.0
46105,57620,0.1727028839704896
46105,57626,0.06673373574782025
46105,57638,0.5536552649228705
@@ -35889,7 +35725,6 @@ fips,zip,weight
47037,37072,0.024704754093390416
47037,37076,0.055023209575525665
47037,37080,0.006433895394945754
-47037,37086,0.0
47037,37115,0.05954544656691363
47037,37122,0.00022339914565783868
47037,37135,0.0009350849953963819
@@ -35918,8 +35753,6 @@ fips,zip,weight
47037,37221,0.05504395378190818
47037,37228,0.0018510214925935204
47037,37240,0.0012031639701857884
-47037,37243,0.0
-47037,37246,0.0
47039,38311,0.06685378923194693
47039,38329,0.2675002126392787
47039,38341,0.035042953134302966
@@ -36542,7 +36375,6 @@ fips,zip,weight
47157,38126,0.007906050165796362
47157,38127,0.04877733268365882
47157,38128,0.04836230277994576
-47157,38131,0.0
47157,38132,7.545998249328406e-06
47157,38133,0.022408380801255654
47157,38134,0.04521993350897543
@@ -36804,7 +36636,6 @@ fips,zip,weight
48027,76501,0.05446516350508485
48027,76502,0.10168098377036762
48027,76504,0.07822457169565007
-48027,76508,0.0
48027,76511,0.0032104694828114172
48027,76513,0.11014875819942946
48027,76519,0.0010185826873176785
@@ -37275,7 +37106,6 @@ fips,zip,weight
48107,79356,0.005281399570886285
48107,79357,0.3800957253672223
48107,79370,0.02574682290807064
-48109,79772,0.0
48109,79847,0.026348808030112924
48109,79855,0.971978251777499
48109,88220,0.001672940192388122
@@ -37372,10 +37202,6 @@ fips,zip,weight
48113,75252,0.0002605421387849277
48113,75253,0.007790927812936656
48113,75254,0.009819102679361305
-48113,75270,0.0
-48113,75287,0.0
-48113,75390,0.0
-48113,76051,0.0
48115,79331,0.9486011711125569
48115,79351,0.014530470613749728
48115,79377,0.020024578905515796
@@ -37905,7 +37731,6 @@ fips,zip,weight
48201,77096,0.007972712738233908
48201,77098,0.003195145021611701
48201,77099,0.010999499323023151
-48201,77201,0.0
48201,77336,0.003047312141673258
48201,77338,0.008300877296510484
48201,77339,0.007338619641638438
@@ -37936,7 +37761,6 @@ fips,zip,weight
48201,77504,0.005993706962000108
48201,77505,0.005674583422827205
48201,77506,0.00879104714305018
-48201,77507,0.0
48201,77520,0.008916155299295608
48201,77521,0.011381909995921768
48201,77530,0.007595922158291629
@@ -38244,7 +38068,6 @@ fips,zip,weight
48265,78024,0.028836272040302268
48265,78025,0.09986901763224182
48265,78028,0.7432342569269521
-48265,78029,0.0
48265,78055,0.000947103274559194
48265,78058,0.020916876574307304
48265,78631,0.00507808564231738
@@ -38572,7 +38395,6 @@ fips,zip,weight
48341,79018,0.002054982190154352
48341,79029,0.7387432642250433
48341,79036,0.0063019453831400125
-48341,79058,0.0
48341,79083,0.0031966389624623255
48341,79086,0.0931135263494383
48341,79105,0.0002739976253539136
@@ -38948,8 +38770,6 @@ fips,zip,weight
48429,76464,0.0033229491173416407
48429,76470,0.019937694704049845
48429,76475,0.0004153686396677051
-48429,76481,0.0
-48431,76945,0.0
48431,76951,1.0
48433,79502,0.9060402684563759
48433,79528,0.006711409395973154
@@ -39321,7 +39141,6 @@ fips,zip,weight
48491,78665,0.08513552837969239
48491,78681,0.119726790306592
48491,78717,0.053321787928901125
-48491,78726,0.0
48491,78727,4.731723127952891e-05
48491,78728,0.004140257736958779
48491,78729,0.05876090366448298
@@ -39340,7 +39159,6 @@ fips,zip,weight
48493,78161,0.020131413392981967
48493,78223,0.006151265203411156
48495,79745,0.8627975771235386
-48495,79756,0.0
48495,79789,0.13720242287646148
48497,76020,0.011466842559236896
48497,76023,0.09528641737277387
@@ -39437,7 +39255,6 @@ fips,zip,weight
49007,84542,0.08438069429519227
49009,84023,0.251180358829084
49009,84046,0.7488196411709159
-49009,84078,0.0
49011,84010,0.14624493032149022
49011,84014,0.049817442630653325
49011,84015,0.20390956639769772
@@ -39577,8 +39394,6 @@ fips,zip,weight
49035,84123,0.03680844554729497
49035,84124,0.020681684641943174
49035,84128,0.027177064162267943
-49035,84144,0.0
-49035,84180,0.0
49037,81324,0.0031873050318730503
49037,84511,0.31683168316831684
49037,84512,0.07412179574121795
@@ -39817,7 +39632,6 @@ fips,zip,weight
50011,05471,0.018116700875466008
50011,05476,0.06666527038914255
50011,05478,0.30262220919029864
-50011,05481,0.0
50011,05483,0.02729024420893897
50011,05485,0.0019478071461483685
50011,05488,0.16106061240732208
@@ -40073,7 +39887,6 @@ fips,zip,weight
51009,22967,0.008067258059530801
51009,24483,0.0040181745124099775
51009,24521,0.3195685098754366
-51009,24526,0.0
51009,24553,0.01514542700831453
51009,24572,0.5067536240843199
51009,24574,0.12292523104503446
@@ -40097,7 +39910,6 @@ fips,zip,weight
51013,22209,0.05930827878840421
51013,22211,0.0031209813752546634
51013,22213,0.014140742774301994
-51013,22214,0.0
51015,22812,0.009979661016949153
51015,22841,0.0014101694915254236
51015,22843,0.03332881355932203
@@ -40368,7 +40180,6 @@ fips,zip,weight
51059,22031,0.02385724296171119
51059,22032,0.02618685323270403
51059,22033,0.03484338917618694
-51059,22035,0.0
51059,22039,0.0169765726256002
51059,22041,0.025874389632864515
51059,22042,0.03074253554042336
@@ -40388,7 +40199,6 @@ fips,zip,weight
51059,22180,0.021716220188846343
51059,22181,0.013754869532580339
51059,22182,0.022984563558609113
-51059,22185,0.0
51059,22207,7.950257274023181e-05
51059,22302,0.0008199858374486699
51059,22303,0.01164897580348443
@@ -40561,7 +40371,6 @@ fips,zip,weight
51087,23231,0.09702379982732501
51087,23233,0.09316956358838191
51087,23238,0.07551761773665434
-51087,23250,0.0
51087,23294,0.05720429406877678
51089,24054,0.08939816439216265
51089,24055,0.23126073387379734
@@ -40690,7 +40499,6 @@ fips,zip,weight
51113,22738,0.0863390441839495
51113,22740,0.0018785692816351068
51113,22743,0.015329125338142471
-51113,22835,0.0
51113,22948,0.0229185452359483
51113,22960,0.07619477006311992
51113,22973,0.00826570483919447
@@ -41228,10 +41036,8 @@ fips,zip,weight
51770,24017,0.24107510924231182
51770,24018,0.037575232912853494
51770,24019,0.03624577458982604
-51775,24018,0.0
51775,24153,1.0
51790,24401,1.0
-51790,24482,0.0
51800,23321,0.0007448129100904416
51800,23432,0.01818289294792221
51800,23433,0.014399716261748538
@@ -41385,7 +41191,6 @@ fips,zip,weight
53025,98860,0.002906193895870736
53025,99103,0.0004151705565529623
53025,99115,0.011063734290843806
-53025,99116,0.0
53025,99123,0.011871633752244166
53025,99133,0.012971274685816877
53025,99135,0.002861310592459605
@@ -41501,17 +41306,13 @@ fips,zip,weight
53033,98144,0.013918971608528988
53033,98146,0.013422401772117423
53033,98148,0.005183174204879847
-53033,98154,0.0
53033,98155,0.01697243597278238
-53033,98158,0.0
53033,98164,7.300974654226359e-05
53033,98166,0.010511850103223355
53033,98168,0.017467452410331347
-53033,98174,0.0
53033,98177,0.009853726785101248
53033,98178,0.012474828465930596
53033,98188,0.011966867037859956
-53033,98195,0.0
53033,98198,0.017907582088068395
53033,98199,0.010193403336390077
53033,98224,0.00015223308853493258
@@ -41546,7 +41347,6 @@ fips,zip,weight
53037,98925,0.016839789808138824
53037,98926,0.7390688011731639
53037,98934,0.02730050103873885
-53037,98937,0.0
53037,98940,0.0185750947085421
53037,98941,0.02246120004888183
53037,98943,0.0161310032995234
@@ -41895,7 +41695,6 @@ fips,zip,weight
53073,98283,0.00039276126081336384
53073,98284,0.010539922442080144
53073,98295,0.011976732624042955
-53073,98862,0.0
53075,99004,0.00024566732177952477
53075,99017,0.0035956762551366804
53075,99033,0.01974271931391817
@@ -41911,7 +41710,6 @@ fips,zip,weight
53075,99158,0.013467035912095766
53075,99161,0.03126675004466679
53075,99163,0.7013578702876541
-53075,99164,0.0
53075,99170,0.018938717169912453
53075,99171,0.021417723780596747
53075,99174,0.000982669287118099
@@ -41925,7 +41723,6 @@ fips,zip,weight
53077,98908,0.14488284799223783
53077,98921,0.002121440112485662
53077,98923,0.005895630080047363
-53077,98929,0.0
53077,98930,0.05903441584337523
53077,98932,0.020688152414782654
53077,98933,0.0052090399661227395
@@ -42269,7 +42066,6 @@ fips,zip,weight
54039,25302,0.07809885892169914
54039,25303,0.036837716185908226
54039,25304,0.04544112543573859
-54039,25305,0.0
54039,25306,0.03323785500069926
54039,25309,0.06917949063259143
54039,25311,0.0560179837669569
@@ -42876,7 +42672,6 @@ fips,zip,weight
55007,54821,0.08298921007060077
55007,54827,0.014719595044625017
55007,54832,0.027441055015319037
-55007,54838,0.0
55007,54839,0.02011455974423871
55007,54844,0.01778340215798588
55007,54847,0.14799520447582257
@@ -43044,7 +42839,6 @@ fips,zip,weight
55025,53718,0.024080414200334785
55025,53719,0.058366268980255
55025,53726,0.010607019851538602
-55025,53792,0.0
55025,53911,5.327071974889002e-05
55025,53925,0.0005921245387472776
55027,53003,0.00158857129981185
@@ -43352,7 +43146,6 @@ fips,zip,weight
55065,53807,0.05381325730577334
55065,53811,0.0065930149679258735
55065,53818,0.04003326205749584
-55067,54175,0.0
55067,54408,0.0022525904790509084
55067,54409,0.6506983030485057
55067,54418,0.054062171497221805
@@ -43408,7 +43201,6 @@ fips,zip,weight
55073,54449,0.026703863109135258
55073,54451,0.0003282039041346233
55073,54452,0.011255902075889694
-55073,54454,0.0
55073,54455,0.12427739197243087
55073,54471,0.013829319051490718
55073,54473,0.004542640400408763
@@ -43703,7 +43495,6 @@ fips,zip,weight
55107,54848,0.41619789901728227
55107,54868,0.003524229074889868
55107,54895,0.06167400881057269
-55107,54896,0.0
55109,54002,0.0744323907759796
55109,54005,0.0025727666133143635
55109,54007,0.010421483194024542
@@ -44001,7 +43792,6 @@ fips,zip,weight
56001,82084,0.00044078349265819997
56001,82201,0.0027548968291137496
56001,82329,0.000716273175569575
-56001,82637,0.0
56003,82401,0.0042852245457661985
56003,82410,0.15083990401097017
56003,82411,0.056907781967775115
@@ -44158,7 +43948,6 @@ fips,zip,weight
56035,82922,0.025080511369181224
56035,82923,0.05445496242802771
56035,82925,0.028300966136430173
-56035,82932,0.0
56035,82941,0.49068019908265836
56035,83001,0.0005855372304089002
56035,83113,0.31989850688006244
@@ -44193,7 +43982,6 @@ fips,zip,weight
56043,82401,0.9142153990390249
56043,82442,0.08578460096097504
56045,82701,0.7465316315205327
-56045,82715,0.0
56045,82723,0.03856825749167592
56045,82729,0.003607103218645949
56045,82730,0.2112930077691454
diff --git a/_delphi_utils_python/delphi_utils/data/jhu_fips_cross.csv b/_delphi_utils_python/delphi_utils/data/jhu_fips_cross.csv
deleted file mode 100644
index afd2109cc..000000000
--- a/_delphi_utils_python/delphi_utils/data/jhu_fips_cross.csv
+++ /dev/null
@@ -1,9 +0,0 @@
-fips_jhu,fips,weight
-70002,25007,0.5
-70002,25019,0.5
-70003,29095,0.25
-70003,29165,0.25
-70003,29037,0.25
-70003,29047,0.25
-2158,2270,1
-46102,46113,1
diff --git a/_delphi_utils_python/delphi_utils/data/jhu_uid_fips_cross.csv b/_delphi_utils_python/delphi_utils/data/jhu_uid_fips_table.csv
similarity index 86%
rename from _delphi_utils_python/delphi_utils/data/jhu_uid_fips_cross.csv
rename to _delphi_utils_python/delphi_utils/data/jhu_uid_fips_table.csv
index 01c3023a5..427459b98 100644
--- a/_delphi_utils_python/delphi_utils/data/jhu_uid_fips_cross.csv
+++ b/_delphi_utils_python/delphi_utils/data/jhu_uid_fips_table.csv
@@ -82,17 +82,15 @@ jhu_uid,fips,weight
63072149,72149,1.0
63072151,72151,1.0
63072153,72153,1.0
-63072888,72888,1.0
-63072999,72999,1.0
84088888,88888,1.0
84099999,99999,1.0
-84000001,10000,1.0
-84000002,20000,1.0
-84000004,40000,1.0
-84000005,50000,1.0
-84000006,60000,1.0
-84000008,80000,1.0
-84000009,90000,1.0
+84000001,01000,1.0
+84000002,02000,1.0
+84000004,04000,1.0
+84000005,05000,1.0
+84000006,06000,1.0
+84000008,08000,1.0
+84000009,09000,1.0
84000010,10000,1.0
84000011,11000,1.0
84000012,12000,1.0
@@ -137,423 +135,321 @@ jhu_uid,fips,weight
84000054,54000,1.0
84000055,55000,1.0
84000056,56000,1.0
-84080001,80001,1.0
-84080002,80002,1.0
-84080004,80004,1.0
-84080005,80005,1.0
-84080006,80006,1.0
-84080008,80008,1.0
-84080009,80009,1.0
-84080010,80010,1.0
-84080011,80011,1.0
-84080012,80012,1.0
-84080013,80013,1.0
-84080015,80015,1.0
-84080016,80016,1.0
-84080017,80017,1.0
-84080018,80018,1.0
-84080019,80019,1.0
-84080020,80020,1.0
-84080021,80021,1.0
-84080022,80022,1.0
-84080023,80023,1.0
-84080024,80024,1.0
-84080025,80025,1.0
-84080026,80026,1.0
-84080027,80027,1.0
-84080028,80028,1.0
-84080029,80029,1.0
-84080030,80030,1.0
-84080031,80031,1.0
-84080032,80032,1.0
-84080033,80033,1.0
-84080034,80034,1.0
-84080035,80035,1.0
-84080036,80036,1.0
-84080037,80037,1.0
-84080038,80038,1.0
-84080039,80039,1.0
-84080040,80040,1.0
-84080041,80041,1.0
-84080042,80042,1.0
-84080044,80044,1.0
-84080045,80045,1.0
-84080046,80046,1.0
-84080047,80047,1.0
-84080048,80048,1.0
-84080049,80049,1.0
-84080050,80050,1.0
-84080051,80051,1.0
-84080053,80053,1.0
-84080054,80054,1.0
-84080055,80055,1.0
-84080056,80056,1.0
-84090001,90001,1.0
-84090002,90002,1.0
-84090004,90004,1.0
-84090005,90005,1.0
-84090006,90006,1.0
-84090008,90008,1.0
-84090009,90009,1.0
-84090010,90010,1.0
-84090011,90011,1.0
-84090012,90012,1.0
-84090013,90013,1.0
-84090015,90015,1.0
-84090016,90016,1.0
-84090017,90017,1.0
-84090018,90018,1.0
-84090019,90019,1.0
-84090020,90020,1.0
-84090021,90021,1.0
-84090022,90022,1.0
-84090023,90023,1.0
-84090024,90024,1.0
-84090025,90025,1.0
-84090026,90026,1.0
-84090027,90027,1.0
-84090028,90028,1.0
-84090029,90029,1.0
-84090030,90030,1.0
-84090031,90031,1.0
-84090032,90032,1.0
-84090033,90033,1.0
-84090034,90034,1.0
-84090035,90035,1.0
-84090036,90036,1.0
-84090037,90037,1.0
-84090038,90038,1.0
-84090039,90039,1.0
-84090040,90040,1.0
-84090041,90041,1.0
-84090042,90042,1.0
-84090044,90044,1.0
-84090045,90045,1.0
-84090046,90046,1.0
-84090047,90047,1.0
-84090048,90048,1.0
-84090049,90049,1.0
-84090050,90050,1.0
-84090051,90051,1.0
-84090053,90053,1.0
-84090054,90054,1.0
-84090055,90055,1.0
-84090056,90056,1.0
-84001001,1001,1.0
-84001003,1003,1.0
-84001005,1005,1.0
-84001007,1007,1.0
-84001009,1009,1.0
-84001011,1011,1.0
-84001013,1013,1.0
-84001015,1015,1.0
-84001017,1017,1.0
-84001019,1019,1.0
-84001021,1021,1.0
-84001023,1023,1.0
-84001025,1025,1.0
-84001027,1027,1.0
-84001029,1029,1.0
-84001031,1031,1.0
-84001033,1033,1.0
-84001035,1035,1.0
-84001037,1037,1.0
-84001039,1039,1.0
-84001041,1041,1.0
-84001043,1043,1.0
-84001045,1045,1.0
-84001047,1047,1.0
-84001049,1049,1.0
-84001051,1051,1.0
-84001053,1053,1.0
-84001055,1055,1.0
-84001057,1057,1.0
-84001059,1059,1.0
-84001061,1061,1.0
-84001063,1063,1.0
-84001065,1065,1.0
-84001067,1067,1.0
-84001069,1069,1.0
-84001071,1071,1.0
-84001073,1073,1.0
-84001075,1075,1.0
-84001077,1077,1.0
-84001079,1079,1.0
-84001081,1081,1.0
-84001083,1083,1.0
-84001085,1085,1.0
-84001087,1087,1.0
-84001089,1089,1.0
-84001091,1091,1.0
-84001093,1093,1.0
-84001095,1095,1.0
-84001097,1097,1.0
-84001099,1099,1.0
-84001101,1101,1.0
-84001103,1103,1.0
-84001105,1105,1.0
-84001107,1107,1.0
-84001109,1109,1.0
-84001111,1111,1.0
-84001113,1113,1.0
-84001115,1115,1.0
-84001117,1117,1.0
-84001119,1119,1.0
-84001121,1121,1.0
-84001123,1123,1.0
-84001125,1125,1.0
-84001127,1127,1.0
-84001129,1129,1.0
-84001131,1131,1.0
-84001133,1133,1.0
-84002013,2013,1.0
-84002016,2016,1.0
-84002020,2020,1.0
-84002050,2050,1.0
-84002060,2060,1.0
-84002068,2068,1.0
-84002070,2070,1.0
-84002090,2090,1.0
-84002100,2100,1.0
-84002105,2105,1.0
-84002110,2110,1.0
-84002122,2122,1.0
-84002130,2130,1.0
-84002150,2150,1.0
-84002164,2164,1.0
-84002170,2170,1.0
-84002180,2180,1.0
-84002185,2185,1.0
-84002188,2188,1.0
-84002195,2195,1.0
-84002198,2198,1.0
-84002220,2220,1.0
-84002230,2230,1.0
-84002240,2240,1.0
-84002261,2261,1.0
-84002275,2275,1.0
-84002282,2282,1.0
-84002290,2290,1.0
-84004001,4001,1.0
-84004003,4003,1.0
-84004005,4005,1.0
-84004007,4007,1.0
-84004009,4009,1.0
-84004011,4011,1.0
-84004012,4012,1.0
-84004013,4013,1.0
-84004015,4015,1.0
-84004017,4017,1.0
-84004019,4019,1.0
-84004021,4021,1.0
-84004023,4023,1.0
-84004025,4025,1.0
-84004027,4027,1.0
-84005001,5001,1.0
-84005003,5003,1.0
-84005005,5005,1.0
-84005007,5007,1.0
-84005009,5009,1.0
-84005011,5011,1.0
-84005013,5013,1.0
-84005015,5015,1.0
-84005017,5017,1.0
-84005019,5019,1.0
-84005021,5021,1.0
-84005023,5023,1.0
-84005025,5025,1.0
-84005027,5027,1.0
-84005029,5029,1.0
-84005031,5031,1.0
-84005033,5033,1.0
-84005035,5035,1.0
-84005037,5037,1.0
-84005039,5039,1.0
-84005041,5041,1.0
-84005043,5043,1.0
-84005045,5045,1.0
-84005047,5047,1.0
-84005049,5049,1.0
-84005051,5051,1.0
-84005053,5053,1.0
-84005055,5055,1.0
-84005057,5057,1.0
-84005059,5059,1.0
-84005061,5061,1.0
-84005063,5063,1.0
-84005065,5065,1.0
-84005067,5067,1.0
-84005069,5069,1.0
-84005071,5071,1.0
-84005073,5073,1.0
-84005075,5075,1.0
-84005077,5077,1.0
-84005079,5079,1.0
-84005081,5081,1.0
-84005083,5083,1.0
-84005085,5085,1.0
-84005087,5087,1.0
-84005089,5089,1.0
-84005091,5091,1.0
-84005093,5093,1.0
-84005095,5095,1.0
-84005097,5097,1.0
-84005099,5099,1.0
-84005101,5101,1.0
-84005103,5103,1.0
-84005105,5105,1.0
-84005107,5107,1.0
-84005109,5109,1.0
-84005111,5111,1.0
-84005113,5113,1.0
-84005115,5115,1.0
-84005117,5117,1.0
-84005119,5119,1.0
-84005121,5121,1.0
-84005123,5123,1.0
-84005125,5125,1.0
-84005127,5127,1.0
-84005129,5129,1.0
-84005131,5131,1.0
-84005133,5133,1.0
-84005135,5135,1.0
-84005137,5137,1.0
-84005139,5139,1.0
-84005141,5141,1.0
-84005143,5143,1.0
-84005145,5145,1.0
-84005147,5147,1.0
-84005149,5149,1.0
-84006001,6001,1.0
-84006003,6003,1.0
-84006005,6005,1.0
-84006007,6007,1.0
-84006009,6009,1.0
-84006011,6011,1.0
-84006013,6013,1.0
-84006015,6015,1.0
-84006017,6017,1.0
-84006019,6019,1.0
-84006021,6021,1.0
-84006023,6023,1.0
-84006025,6025,1.0
-84006027,6027,1.0
-84006029,6029,1.0
-84006031,6031,1.0
-84006033,6033,1.0
-84006035,6035,1.0
-84006037,6037,1.0
-84006039,6039,1.0
-84006041,6041,1.0
-84006043,6043,1.0
-84006045,6045,1.0
-84006047,6047,1.0
-84006049,6049,1.0
-84006051,6051,1.0
-84006053,6053,1.0
-84006055,6055,1.0
-84006057,6057,1.0
-84006059,6059,1.0
-84006061,6061,1.0
-84006063,6063,1.0
-84006065,6065,1.0
-84006067,6067,1.0
-84006069,6069,1.0
-84006071,6071,1.0
-84006073,6073,1.0
-84006075,6075,1.0
-84006077,6077,1.0
-84006079,6079,1.0
-84006081,6081,1.0
-84006083,6083,1.0
-84006085,6085,1.0
-84006087,6087,1.0
-84006089,6089,1.0
-84006091,6091,1.0
-84006093,6093,1.0
-84006095,6095,1.0
-84006097,6097,1.0
-84006099,6099,1.0
-84006101,6101,1.0
-84006103,6103,1.0
-84006105,6105,1.0
-84006107,6107,1.0
-84006109,6109,1.0
-84006111,6111,1.0
-84006113,6113,1.0
-84006115,6115,1.0
-84008001,8001,1.0
-84008003,8003,1.0
-84008005,8005,1.0
-84008007,8007,1.0
-84008009,8009,1.0
-84008011,8011,1.0
-84008013,8013,1.0
-84008014,8014,1.0
-84008015,8015,1.0
-84008017,8017,1.0
-84008019,8019,1.0
-84008021,8021,1.0
-84008023,8023,1.0
-84008025,8025,1.0
-84008027,8027,1.0
-84008029,8029,1.0
-84008031,8031,1.0
-84008033,8033,1.0
-84008035,8035,1.0
-84008037,8037,1.0
-84008039,8039,1.0
-84008041,8041,1.0
-84008043,8043,1.0
-84008045,8045,1.0
-84008047,8047,1.0
-84008049,8049,1.0
-84008051,8051,1.0
-84008053,8053,1.0
-84008055,8055,1.0
-84008057,8057,1.0
-84008059,8059,1.0
-84008061,8061,1.0
-84008063,8063,1.0
-84008065,8065,1.0
-84008067,8067,1.0
-84008069,8069,1.0
-84008071,8071,1.0
-84008073,8073,1.0
-84008075,8075,1.0
-84008077,8077,1.0
-84008079,8079,1.0
-84008081,8081,1.0
-84008083,8083,1.0
-84008085,8085,1.0
-84008087,8087,1.0
-84008089,8089,1.0
-84008091,8091,1.0
-84008093,8093,1.0
-84008095,8095,1.0
-84008097,8097,1.0
-84008099,8099,1.0
-84008101,8101,1.0
-84008103,8103,1.0
-84008105,8105,1.0
-84008107,8107,1.0
-84008109,8109,1.0
-84008111,8111,1.0
-84008113,8113,1.0
-84008115,8115,1.0
-84008117,8117,1.0
-84008119,8119,1.0
-84008121,8121,1.0
-84008123,8123,1.0
-84008125,8125,1.0
-84009001,9001,1.0
-84009003,9003,1.0
-84009005,9005,1.0
-84009007,9007,1.0
-84009009,9009,1.0
-84009011,9011,1.0
-84009013,9013,1.0
-84009015,9015,1.0
+84001001,01001,1.0
+84001003,01003,1.0
+84001005,01005,1.0
+84001007,01007,1.0
+84001009,01009,1.0
+84001011,01011,1.0
+84001013,01013,1.0
+84001015,01015,1.0
+84001017,01017,1.0
+84001019,01019,1.0
+84001021,01021,1.0
+84001023,01023,1.0
+84001025,01025,1.0
+84001027,01027,1.0
+84001029,01029,1.0
+84001031,01031,1.0
+84001033,01033,1.0
+84001035,01035,1.0
+84001037,01037,1.0
+84001039,01039,1.0
+84001041,01041,1.0
+84001043,01043,1.0
+84001045,01045,1.0
+84001047,01047,1.0
+84001049,01049,1.0
+84001051,01051,1.0
+84001053,01053,1.0
+84001055,01055,1.0
+84001057,01057,1.0
+84001059,01059,1.0
+84001061,01061,1.0
+84001063,01063,1.0
+84001065,01065,1.0
+84001067,01067,1.0
+84001069,01069,1.0
+84001071,01071,1.0
+84001073,01073,1.0
+84001075,01075,1.0
+84001077,01077,1.0
+84001079,01079,1.0
+84001081,01081,1.0
+84001083,01083,1.0
+84001085,01085,1.0
+84001087,01087,1.0
+84001089,01089,1.0
+84001091,01091,1.0
+84001093,01093,1.0
+84001095,01095,1.0
+84001097,01097,1.0
+84001099,01099,1.0
+84001101,01101,1.0
+84001103,01103,1.0
+84001105,01105,1.0
+84001107,01107,1.0
+84001109,01109,1.0
+84001111,01111,1.0
+84001113,01113,1.0
+84001115,01115,1.0
+84001117,01117,1.0
+84001119,01119,1.0
+84001121,01121,1.0
+84001123,01123,1.0
+84001125,01125,1.0
+84001127,01127,1.0
+84001129,01129,1.0
+84001131,01131,1.0
+84001133,01133,1.0
+84002013,02013,1.0
+84002016,02016,1.0
+84002020,02020,1.0
+84002050,02050,1.0
+84002060,02060,1.0
+84002068,02068,1.0
+84002070,02070,1.0
+84002090,02090,1.0
+84002100,02100,1.0
+84002105,02105,1.0
+84002110,02110,1.0
+84002122,02122,1.0
+84002130,02130,1.0
+84002150,02150,1.0
+84002164,02164,1.0
+84002170,02170,1.0
+84002180,02180,1.0
+84002185,02185,1.0
+84002188,02188,1.0
+84002195,02195,1.0
+84002198,02198,1.0
+84002220,02220,1.0
+84002230,02230,1.0
+84002240,02240,1.0
+84002261,02261,1.0
+84002275,02275,1.0
+84002282,02282,1.0
+84002290,02290,1.0
+84004001,04001,1.0
+84004003,04003,1.0
+84004005,04005,1.0
+84004007,04007,1.0
+84004009,04009,1.0
+84004011,04011,1.0
+84004012,04012,1.0
+84004013,04013,1.0
+84004015,04015,1.0
+84004017,04017,1.0
+84004019,04019,1.0
+84004021,04021,1.0
+84004023,04023,1.0
+84004025,04025,1.0
+84004027,04027,1.0
+84005001,05001,1.0
+84005003,05003,1.0
+84005005,05005,1.0
+84005007,05007,1.0
+84005009,05009,1.0
+84005011,05011,1.0
+84005013,05013,1.0
+84005015,05015,1.0
+84005017,05017,1.0
+84005019,05019,1.0
+84005021,05021,1.0
+84005023,05023,1.0
+84005025,05025,1.0
+84005027,05027,1.0
+84005029,05029,1.0
+84005031,05031,1.0
+84005033,05033,1.0
+84005035,05035,1.0
+84005037,05037,1.0
+84005039,05039,1.0
+84005041,05041,1.0
+84005043,05043,1.0
+84005045,05045,1.0
+84005047,05047,1.0
+84005049,05049,1.0
+84005051,05051,1.0
+84005053,05053,1.0
+84005055,05055,1.0
+84005057,05057,1.0
+84005059,05059,1.0
+84005061,05061,1.0
+84005063,05063,1.0
+84005065,05065,1.0
+84005067,05067,1.0
+84005069,05069,1.0
+84005071,05071,1.0
+84005073,05073,1.0
+84005075,05075,1.0
+84005077,05077,1.0
+84005079,05079,1.0
+84005081,05081,1.0
+84005083,05083,1.0
+84005085,05085,1.0
+84005087,05087,1.0
+84005089,05089,1.0
+84005091,05091,1.0
+84005093,05093,1.0
+84005095,05095,1.0
+84005097,05097,1.0
+84005099,05099,1.0
+84005101,05101,1.0
+84005103,05103,1.0
+84005105,05105,1.0
+84005107,05107,1.0
+84005109,05109,1.0
+84005111,05111,1.0
+84005113,05113,1.0
+84005115,05115,1.0
+84005117,05117,1.0
+84005119,05119,1.0
+84005121,05121,1.0
+84005123,05123,1.0
+84005125,05125,1.0
+84005127,05127,1.0
+84005129,05129,1.0
+84005131,05131,1.0
+84005133,05133,1.0
+84005135,05135,1.0
+84005137,05137,1.0
+84005139,05139,1.0
+84005141,05141,1.0
+84005143,05143,1.0
+84005145,05145,1.0
+84005147,05147,1.0
+84005149,05149,1.0
+84006001,06001,1.0
+84006003,06003,1.0
+84006005,06005,1.0
+84006007,06007,1.0
+84006009,06009,1.0
+84006011,06011,1.0
+84006013,06013,1.0
+84006015,06015,1.0
+84006017,06017,1.0
+84006019,06019,1.0
+84006021,06021,1.0
+84006023,06023,1.0
+84006025,06025,1.0
+84006027,06027,1.0
+84006029,06029,1.0
+84006031,06031,1.0
+84006033,06033,1.0
+84006035,06035,1.0
+84006037,06037,1.0
+84006039,06039,1.0
+84006041,06041,1.0
+84006043,06043,1.0
+84006045,06045,1.0
+84006047,06047,1.0
+84006049,06049,1.0
+84006051,06051,1.0
+84006053,06053,1.0
+84006055,06055,1.0
+84006057,06057,1.0
+84006059,06059,1.0
+84006061,06061,1.0
+84006063,06063,1.0
+84006065,06065,1.0
+84006067,06067,1.0
+84006069,06069,1.0
+84006071,06071,1.0
+84006073,06073,1.0
+84006075,06075,1.0
+84006077,06077,1.0
+84006079,06079,1.0
+84006081,06081,1.0
+84006083,06083,1.0
+84006085,06085,1.0
+84006087,06087,1.0
+84006089,06089,1.0
+84006091,06091,1.0
+84006093,06093,1.0
+84006095,06095,1.0
+84006097,06097,1.0
+84006099,06099,1.0
+84006101,06101,1.0
+84006103,06103,1.0
+84006105,06105,1.0
+84006107,06107,1.0
+84006109,06109,1.0
+84006111,06111,1.0
+84006113,06113,1.0
+84006115,06115,1.0
+84008001,08001,1.0
+84008003,08003,1.0
+84008005,08005,1.0
+84008007,08007,1.0
+84008009,08009,1.0
+84008011,08011,1.0
+84008013,08013,1.0
+84008014,08014,1.0
+84008015,08015,1.0
+84008017,08017,1.0
+84008019,08019,1.0
+84008021,08021,1.0
+84008023,08023,1.0
+84008025,08025,1.0
+84008027,08027,1.0
+84008029,08029,1.0
+84008031,08031,1.0
+84008033,08033,1.0
+84008035,08035,1.0
+84008037,08037,1.0
+84008039,08039,1.0
+84008041,08041,1.0
+84008043,08043,1.0
+84008045,08045,1.0
+84008047,08047,1.0
+84008049,08049,1.0
+84008051,08051,1.0
+84008053,08053,1.0
+84008055,08055,1.0
+84008057,08057,1.0
+84008059,08059,1.0
+84008061,08061,1.0
+84008063,08063,1.0
+84008065,08065,1.0
+84008067,08067,1.0
+84008069,08069,1.0
+84008071,08071,1.0
+84008073,08073,1.0
+84008075,08075,1.0
+84008077,08077,1.0
+84008079,08079,1.0
+84008081,08081,1.0
+84008083,08083,1.0
+84008085,08085,1.0
+84008087,08087,1.0
+84008089,08089,1.0
+84008091,08091,1.0
+84008093,08093,1.0
+84008095,08095,1.0
+84008097,08097,1.0
+84008099,08099,1.0
+84008101,08101,1.0
+84008103,08103,1.0
+84008105,08105,1.0
+84008107,08107,1.0
+84008109,08109,1.0
+84008111,08111,1.0
+84008113,08113,1.0
+84008115,08115,1.0
+84008117,08117,1.0
+84008119,08119,1.0
+84008121,08121,1.0
+84008123,08123,1.0
+84008125,08125,1.0
+84009001,09001,1.0
+84009003,09003,1.0
+84009005,09005,1.0
+84009007,09007,1.0
+84009009,09009,1.0
+84009011,09011,1.0
+84009013,09013,1.0
+84009015,09015,1.0
84010001,10001,1.0
84010003,10003,1.0
84010005,10005,1.0
@@ -2650,7 +2546,6 @@ jhu_uid,fips,weight
84046097,46097,1.0
84046099,46099,1.0
84046101,46101,1.0
-84046102,46102,1.0
84046103,46103,1.0
84046105,46105,1.0
84046107,46107,1.0
@@ -3380,16 +3275,131 @@ jhu_uid,fips,weight
84056041,56041,1.0
84056043,56043,1.0
84056045,56045,1.0
-84070002,25007,0.5
-84070002,25019,0.5
-84070003,29095,0.25
-84070003,29165,0.25
-84070003,29037,0.25
-84070003,29047,0.25
-84002158,2270,1.0
+84070002,25007,0.6191260718163777
+84070002,25019,0.38087392818362226
+84070003,29095,0.6214027691108004
+84070003,29165,0.08233223983474929
+84070003,29037,0.09169349717069915
+84070003,29047,0.20457149388375118
+84002158,02270,1.0
+84046102,46113,1.0
84070015,49000,1.0
84070016,49000,1.0
84070017,49000,1.0
84070018,49000,1.0
84070019,49000,1.0
84070020,49000,1.0
+84090001,01000,1.0
+84090002,02000,1.0
+84090003,03000,1.0
+84090004,04000,1.0
+84090005,05000,1.0
+84090006,06000,1.0
+84090007,07000,1.0
+84090008,08000,1.0
+84090009,09000,1.0
+84090010,10000,1.0
+84090011,11000,1.0
+84090012,12000,1.0
+84090013,13000,1.0
+84090014,14000,1.0
+84090015,15000,1.0
+84090016,16000,1.0
+84090017,17000,1.0
+84090018,18000,1.0
+84090019,19000,1.0
+84090020,20000,1.0
+84090021,21000,1.0
+84090022,22000,1.0
+84090023,23000,1.0
+84090024,24000,1.0
+84090025,25000,1.0
+84090026,26000,1.0
+84090027,27000,1.0
+84090028,28000,1.0
+84090029,29000,1.0
+84090030,30000,1.0
+84090031,31000,1.0
+84090032,32000,1.0
+84090033,33000,1.0
+84090034,34000,1.0
+84090035,35000,1.0
+84090036,36000,1.0
+84090037,37000,1.0
+84090038,38000,1.0
+84090039,39000,1.0
+84090040,40000,1.0
+84090041,41000,1.0
+84090042,42000,1.0
+84090043,43000,1.0
+84090044,44000,1.0
+84090045,45000,1.0
+84090046,46000,1.0
+84090047,47000,1.0
+84090048,48000,1.0
+84090049,49000,1.0
+84090050,50000,1.0
+84090051,51000,1.0
+84090052,52000,1.0
+84090053,53000,1.0
+84090054,54000,1.0
+84090055,55000,1.0
+84090056,56000,1.0
+84080001,01000,1.0
+84080002,02000,1.0
+84080003,03000,1.0
+84080004,04000,1.0
+84080005,05000,1.0
+84080006,06000,1.0
+84080007,07000,1.0
+84080008,08000,1.0
+84080009,09000,1.0
+84080010,10000,1.0
+84080011,11000,1.0
+84080012,12000,1.0
+84080013,13000,1.0
+84080014,14000,1.0
+84080015,15000,1.0
+84080016,16000,1.0
+84080017,17000,1.0
+84080018,18000,1.0
+84080019,19000,1.0
+84080020,20000,1.0
+84080021,21000,1.0
+84080022,22000,1.0
+84080023,23000,1.0
+84080024,24000,1.0
+84080025,25000,1.0
+84080026,26000,1.0
+84080027,27000,1.0
+84080028,28000,1.0
+84080029,29000,1.0
+84080030,30000,1.0
+84080031,31000,1.0
+84080032,32000,1.0
+84080033,33000,1.0
+84080034,34000,1.0
+84080035,35000,1.0
+84080036,36000,1.0
+84080037,37000,1.0
+84080038,38000,1.0
+84080039,39000,1.0
+84080040,40000,1.0
+84080041,41000,1.0
+84080042,42000,1.0
+84080043,43000,1.0
+84080044,44000,1.0
+84080045,45000,1.0
+84080046,46000,1.0
+84080047,47000,1.0
+84080048,48000,1.0
+84080049,49000,1.0
+84080050,50000,1.0
+84080051,51000,1.0
+84080052,52000,1.0
+84080053,53000,1.0
+84080054,54000,1.0
+84080055,55000,1.0
+84080056,56000,1.0
+63072888,72000,1.0
+63072999,72000,1.0
diff --git a/_delphi_utils_python/delphi_utils/data/state_code_hhs_region_number_table.csv b/_delphi_utils_python/delphi_utils/data/state_code_hhs_region_number_table.csv
new file mode 100644
index 000000000..17464ccbb
--- /dev/null
+++ b/_delphi_utils_python/delphi_utils/data/state_code_hhs_region_number_table.csv
@@ -0,0 +1,60 @@
+state_code,hhs_region_number
+01,4
+02,10
+04,9
+05,6
+06,9
+08,8
+09,1
+10,3
+11,3
+12,4
+13,4
+15,9
+16,10
+17,5
+18,5
+19,7
+20,7
+21,4
+22,6
+23,1
+24,3
+25,1
+26,5
+27,5
+28,4
+29,7
+30,8
+31,7
+32,9
+33,1
+34,2
+35,6
+36,2
+37,4
+38,8
+39,5
+40,6
+41,10
+42,3
+44,1
+45,4
+46,8
+47,4
+48,6
+49,8
+50,1
+51,3
+53,10
+54,3
+55,5
+56,8
+60,9
+66,9
+69,9
+72,2
+78,2
+70,9
+68,9
+64,9
diff --git a/_delphi_utils_python/delphi_utils/data/state_codes.csv b/_delphi_utils_python/delphi_utils/data/state_codes.csv
deleted file mode 100644
index 80e80033b..000000000
--- a/_delphi_utils_python/delphi_utils/data/state_codes.csv
+++ /dev/null
@@ -1,53 +0,0 @@
-st_code,state_id,state_name
-72,PR,Puerto Rico
-25,MA,Massachusetts
-44,RI,Rhode Island
-33,NH,New Hampshire
-23,ME,Maine
-50,VT,Vermont
-09,CT,Connecticut
-36,NY,New York
-34,NJ,New Jersey
-42,PA,Pennsylvania
-10,DE,Delaware
-11,DC,District of Columbia
-51,VA,Virginia
-24,MD,Maryland
-54,WV,West Virginia
-37,NC,North Carolina
-45,SC,South Carolina
-13,GA,Georgia
-12,FL,Florida
-01,AL,Alabama
-47,TN,Tennessee
-28,MS,Mississippi
-21,KY,Kentucky
-39,OH,Ohio
-18,IN,Indiana
-26,MI,Michigan
-19,IA,Iowa
-55,WI,Wisconsin
-27,MN,Minnesota
-46,SD,South Dakota
-38,ND,North Dakota
-30,MT,Montana
-17,IL,Illinois
-29,MO,Missouri
-20,KS,Kansas
-31,NE,Nebraska
-22,LA,Louisiana
-05,AR,Arkansas
-40,OK,Oklahoma
-48,TX,Texas
-08,CO,Colorado
-56,WY,Wyoming
-16,ID,Idaho
-49,UT,Utah
-04,AZ,Arizona
-35,NM,New Mexico
-32,NV,Nevada
-06,CA,California
-15,HI,Hawaii
-41,OR,Oregon
-53,WA,Washington
-02,AK,Alaska
diff --git a/_delphi_utils_python/delphi_utils/data/state_codes_table.csv b/_delphi_utils_python/delphi_utils/data/state_codes_table.csv
new file mode 100644
index 000000000..bd36de6fd
--- /dev/null
+++ b/_delphi_utils_python/delphi_utils/data/state_codes_table.csv
@@ -0,0 +1,61 @@
+state_code,state_id,state_name
+01,al,Alabama
+02,ak,Alaska
+04,az,Arizona
+05,ar,Arkansas
+06,ca,California
+08,co,Colorado
+09,ct,Connecticut
+10,de,Delaware
+11,dc,District of Columbia
+12,fl,Florida
+13,ga,Georgia
+15,hi,Hawaii
+16,id,Idaho
+17,il,Illinois
+18,in,Indiana
+19,ia,Iowa
+20,ks,Kansas
+21,ky,Kentucky
+22,la,Louisiana
+23,me,Maine
+24,md,Maryland
+25,ma,Massachusetts
+26,mi,Michigan
+27,mn,Minnesota
+28,ms,Mississippi
+29,mo,Missouri
+30,mt,Montana
+31,ne,Nebraska
+32,nv,Nevada
+33,nh,New Hampshire
+34,nj,New Jersey
+35,nm,New Mexico
+36,ny,New York
+37,nc,North Carolina
+38,nd,North Dakota
+39,oh,Ohio
+40,ok,Oklahoma
+41,or,Oregon
+42,pa,Pennsylvania
+44,ri,Rhode Island
+45,sc,South Carolina
+46,sd,South Dakota
+47,tn,Tennessee
+48,tx,Texas
+49,ut,Utah
+50,vt,Vermont
+51,va,Virginia
+53,wa,Washington
+54,wv,West Virginia
+55,wi,Wisconsin
+56,wy,Wyoming
+60,as,American Samoa
+66,gu,Guam
+69,mp,Northern Mariana Islands
+72,pr,Puerto Rico
+74,um,U.S. Minor Outlying Islands
+78,vi,U.S. Virgin Islands
+70,pw,Republic of Palau
+68,mh,Marshall Islands
+64,fm,Federated States of Micronesia
diff --git a/_delphi_utils_python/delphi_utils/data/zip_fips_cross.csv b/_delphi_utils_python/delphi_utils/data/zip_fips_table.csv
similarity index 99%
rename from _delphi_utils_python/delphi_utils/data/zip_fips_cross.csv
rename to _delphi_utils_python/delphi_utils/data/zip_fips_table.csv
index 54740b7fb..5fa76c088 100644
--- a/_delphi_utils_python/delphi_utils/data/zip_fips_cross.csv
+++ b/_delphi_utils_python/delphi_utils/data/zip_fips_table.csv
@@ -291,7 +291,6 @@ fips,zip,weight
25013,01128,1.0
25013,01129,1.0
25013,01151,1.0
-25013,01199,
25003,01201,1.0
25003,01220,1.0
25003,01222,1.0
@@ -584,7 +583,6 @@ fips,zip,weight
25017,02145,1.0
25017,02148,1.0
25017,02149,1.0
-25025,02149,0.0
25025,02150,1.0
25025,02151,1.0
25025,02152,1.0
@@ -602,7 +600,6 @@ fips,zip,weight
25021,02190,1.0
25021,02191,1.0
25025,02199,1.0
-25025,02203,
25025,02210,1.0
25021,02215,3.8277511961722486e-05
25025,02215,0.9999617224880383
@@ -878,7 +875,6 @@ fips,zip,weight
33011,03101,1.0
33011,03102,1.0
33011,03103,1.0
-33015,03103,0.0
33011,03104,0.9976522958716995
33013,03104,0.002347704128300506
33013,03106,1.0
@@ -1422,7 +1418,6 @@ fips,zip,weight
23029,04694,1.0
23003,04730,1.0
23003,04732,1.0
-23021,04732,0.0
23003,04733,0.9276018099547512
23019,04733,0.07239819004524888
23003,04734,1.0
@@ -1692,7 +1687,6 @@ fips,zip,weight
50011,05476,1.0
50007,05477,1.0
50011,05478,1.0
-50011,05481,
50007,05482,1.0
50011,05483,1.0
50011,05485,1.0
@@ -1843,7 +1837,6 @@ fips,zip,weight
09003,06016,1.0
09005,06018,1.0
09003,06019,1.0
-09003,06020,
09005,06021,1.0
09003,06022,1.0
09003,06023,1.0
@@ -1865,7 +1858,6 @@ fips,zip,weight
09003,06053,1.0
09005,06057,1.0
09005,06058,1.0
-09005,06059,
09003,06060,1.0
09005,06061,1.0
09003,06062,1.0
@@ -1909,7 +1901,6 @@ fips,zip,weight
09003,06118,1.0
09003,06119,1.0
09003,06120,1.0
-09003,06160,
09013,06226,0.022123893805309734
09015,06226,0.9778761061946902
09013,06231,1.0
@@ -2284,7 +2275,6 @@ fips,zip,weight
34031,07470,1.0
34031,07480,1.0
34003,07481,1.0
-34003,07495,
34031,07501,1.0
34031,07502,1.0
34031,07503,1.0
@@ -2807,7 +2797,6 @@ fips,zip,weight
36061,10017,1.0
36061,10018,1.0
36061,10019,1.0
-36061,10020,
36061,10021,1.0
36061,10022,1.0
36061,10023,1.0
@@ -2833,30 +2822,13 @@ fips,zip,weight
36061,10069,1.0
36061,10075,1.0
36061,10103,1.0
-36061,10110,
-36061,10111,
-36061,10112,
-36061,10115,
36061,10119,1.0
36061,10128,1.0
-36061,10152,
-36061,10153,
-36061,10154,
36061,10162,1.0
36061,10165,1.0
-36061,10167,
-36061,10168,
-36061,10169,
36061,10170,1.0
-36061,10171,
-36061,10172,
36061,10173,1.0
-36061,10174,
-36061,10177,
36061,10199,1.0
-36061,10271,
-36061,10278,
-36061,10279,
36061,10280,1.0
36061,10282,1.0
36085,10301,1.0
@@ -2869,7 +2841,6 @@ fips,zip,weight
36085,10308,1.0
36085,10309,1.0
36085,10310,1.0
-36085,10311,
36085,10312,1.0
36085,10314,1.0
36005,10451,1.0
@@ -3103,13 +3074,11 @@ fips,zip,weight
36047,11237,1.0
36047,11238,1.0
36047,11239,1.0
-36081,11351,
36081,11354,1.0
36081,11355,1.0
36081,11356,1.0
36081,11357,1.0
36081,11358,1.0
-36081,11359,
36081,11360,1.0
36081,11361,1.0
36081,11362,1.0
@@ -3122,7 +3091,6 @@ fips,zip,weight
36081,11369,1.0
36005,11370,0.2794547470268091
36081,11370,0.7205452529731909
-36081,11371,
36081,11372,1.0
36081,11373,1.0
36081,11374,1.0
@@ -3144,8 +3112,6 @@ fips,zip,weight
36081,11421,1.0
36081,11422,1.0
36081,11423,1.0
-36081,11424,
-36047,11425,
36081,11426,1.0
36081,11427,1.0
36081,11428,1.0
@@ -3156,7 +3122,6 @@ fips,zip,weight
36081,11434,1.0
36081,11435,1.0
36081,11436,1.0
-36081,11451,
36059,11501,1.0
36059,11507,1.0
36059,11509,1.0
@@ -3848,7 +3813,6 @@ fips,zip,weight
36019,12911,1.0
36019,12912,0.5540540540540541
36031,12912,0.44594594594594594
-36033,12912,0.0
36031,12913,0.9265341400172861
36033,12913,0.07346585998271392
36033,12914,0.9032567049808429
@@ -4075,7 +4039,6 @@ fips,zip,weight
36067,13215,1.0
36067,13219,1.0
36067,13224,1.0
-36067,13290,
36065,13301,1.0
36075,13302,1.0
36065,13303,1.0
@@ -4995,7 +4958,6 @@ fips,zip,weight
42003,15085,0.013972809667673716
42129,15085,0.9860271903323263
42003,15086,1.0
-42019,15086,0.0
42129,15087,1.0
42003,15088,1.0
42003,15089,0.014372404982433726
@@ -5074,8 +5036,6 @@ fips,zip,weight
42003,15241,0.9852905123804854
42125,15241,0.014709487619514587
42003,15243,1.0
-42003,15260,
-42003,15290,
42125,15301,1.0
42059,15310,1.0
42125,15311,1.0
@@ -6093,7 +6053,6 @@ fips,zip,weight
42043,17111,1.0
42043,17112,1.0
42043,17113,1.0
-42043,17120,
42055,17201,1.0
42055,17202,1.0
42055,17210,1.0
@@ -6111,7 +6070,6 @@ fips,zip,weight
42055,17222,0.9368313331472695
42057,17223,1.0
42055,17224,1.0
-42057,17224,0.0
42055,17225,1.0
42057,17228,1.0
42057,17229,0.8667711598746082
@@ -6336,7 +6294,6 @@ fips,zip,weight
42037,17821,0.022284428344036447
42093,17821,0.8632197156814315
42097,17821,0.11449585597453209
-42093,17822,
42097,17823,1.0
42037,17824,0.15504252733900364
42097,17824,0.8449574726609963
@@ -6447,7 +6404,6 @@ fips,zip,weight
42095,18014,1.0
42077,18015,0.21871954191033138
42095,18015,0.7812804580896686
-42077,18016,
42077,18017,0.03235771924685078
42095,18017,0.9676422807531492
42077,18018,0.5592817696603215
@@ -6523,7 +6479,6 @@ fips,zip,weight
42077,18106,1.0
42077,18109,0.9878336876919442
42095,18109,0.012166312308055753
-42077,18195,
42025,18201,0.0026166593981683385
42079,18201,0.993276639046373
42107,18201,0.0041067015554586426
@@ -6912,7 +6867,6 @@ fips,zip,weight
42101,19104,1.0
42101,19106,1.0
42101,19107,1.0
-42101,19109,
42101,19111,1.0
42101,19112,1.0
42045,19113,1.0
@@ -6952,7 +6906,6 @@ fips,zip,weight
42101,19147,1.0
42101,19148,1.0
42101,19149,1.0
-42091,19150,0.0
42101,19150,1.0
42101,19151,1.0
42101,19152,1.0
@@ -7193,9 +7146,7 @@ fips,zip,weight
11001,20032,1.0
11001,20036,1.0
11001,20037,1.0
-11001,20045,
11001,20052,1.0
-11001,20053,
11001,20057,1.0
11001,20064,1.0
51107,20105,1.0
@@ -7259,32 +7210,12 @@ fips,zip,weight
51059,20194,1.0
51107,20197,1.0
51061,20198,1.0
-11001,20202,
-11001,20204,
-11001,20228,
-11001,20230,
-11001,20240,
-11001,20245,
-11001,20260,
11001,20307,1.0
11001,20317,1.0
11001,20319,1.0
11001,20373,1.0
11001,20390,1.0
-11001,20405,
-11001,20418,
-11001,20427,
-11001,20506,
-11001,20510,
-11001,20520,
11001,20535,1.0
-11001,20540,
-11001,20551,
-11001,20553,
-11001,20560,
-11001,20565,
-11001,20566,
-11001,20593,
24017,20601,0.9880360986918364
24033,20601,0.011963901308163603
24017,20602,1.0
@@ -7349,7 +7280,6 @@ fips,zip,weight
24037,20692,1.0
24017,20693,1.0
24017,20695,1.0
-24003,20701,0.0
24027,20701,1.0
24031,20705,0.0064533374064457
24033,20705,0.9935466625935543
@@ -7604,7 +7534,6 @@ fips,zip,weight
24510,21237,0.001563591603180412
24005,21239,0.17393116382454069
24510,21239,0.8260688361754593
-24003,21240,
24005,21244,1.0
24005,21250,1.0
24510,21251,1.0
@@ -7846,7 +7775,6 @@ fips,zip,weight
51059,22032,0.9642577526636484
51600,22032,0.03574224733635157
51059,22033,1.0
-51059,22035,
51059,22039,1.0
51059,22041,1.0
51059,22042,0.9915913766884337
@@ -7875,7 +7803,6 @@ fips,zip,weight
51059,22180,1.0
51059,22181,1.0
51059,22182,1.0
-51059,22185,
51153,22191,1.0
51153,22192,1.0
51153,22193,1.0
@@ -7892,7 +7819,6 @@ fips,zip,weight
51013,22209,1.0
51013,22211,1.0
51013,22213,1.0
-51013,22214,
51510,22301,1.0
51059,22302,0.05380649074916591
51510,22302,0.9461935092508341
@@ -8078,7 +8004,6 @@ fips,zip,weight
51165,22831,1.0
51165,22832,1.0
51165,22834,1.0
-51113,22835,0.0
51139,22835,1.0
51165,22840,1.0
51015,22841,0.03726262988176281
@@ -8332,7 +8257,6 @@ fips,zip,weight
51041,23237,1.0
51075,23238,0.07778308267685208
51087,23238,0.9222169173231479
-51087,23250,
51087,23294,1.0
51001,23301,1.0
51001,23302,1.0
@@ -8617,7 +8541,6 @@ fips,zip,weight
51770,24017,1.0
51161,24018,0.8999231444883619
51770,24018,0.10007685551163813
-51775,24018,0.0
51023,24019,0.15655422232284355
51161,24019,0.7107388121651196
51770,24019,0.13270696551203684
@@ -8900,7 +8823,6 @@ fips,zip,weight
51015,24477,1.0
51015,24479,1.0
51015,24482,1.0
-51790,24482,0.0
51009,24483,0.22146507666098808
51163,24483,0.778534923339012
51017,24484,0.9109311740890689
@@ -8928,7 +8850,6 @@ fips,zip,weight
51029,24522,0.004341691088679041
51019,24523,0.6716969185310258
51515,24523,0.32830308146897424
-51009,24526,0.0
51019,24526,1.0
51143,24527,1.0
51031,24528,0.8296875
@@ -9326,7 +9247,6 @@ fips,zip,weight
54039,25302,1.0
54039,25303,1.0
54039,25304,1.0
-54039,25305,
54039,25306,1.0
54039,25309,1.0
54039,25311,1.0
@@ -10249,7 +10169,6 @@ fips,zip,weight
37183,27617,0.9924995065464833
37063,27701,1.0
37063,27703,1.0
-37183,27703,0.0
37063,27704,1.0
37063,27705,0.9043472624346398
37135,27705,0.09565273756536018
@@ -10601,7 +10520,6 @@ fips,zip,weight
37119,28226,1.0
37119,28227,0.9902286692857862
37179,28227,0.009771330714213761
-37119,28244,
37025,28262,7.98998588435827e-05
37119,28262,0.9999201001411564
37025,28269,0.05013511991892805
@@ -10611,7 +10529,6 @@ fips,zip,weight
37119,28277,1.0
37119,28278,1.0
37119,28280,1.0
-37119,28282,
37051,28301,1.0
37051,28303,1.0
37051,28304,0.9917624572643821
@@ -11248,7 +11165,6 @@ fips,zip,weight
45071,29145,1.0
45003,29146,0.2563667232597623
45075,29146,0.7436332767402377
-45079,29147,
45027,29148,1.0
45085,29150,1.0
45085,29152,1.0
@@ -11575,7 +11491,6 @@ fips,zip,weight
45045,29673,0.5124270159381411
45073,29676,1.0
45073,29678,1.0
-45077,29678,0.0
45045,29680,1.0
45045,29681,1.0
45077,29682,1.0
@@ -12052,7 +11967,6 @@ fips,zip,weight
13121,30332,1.0
13121,30334,1.0
13121,30336,1.0
-13063,30337,0.0
13121,30337,1.0
13089,30338,0.9925335395781896
13121,30338,0.007466460421810393
@@ -12077,7 +11991,6 @@ fips,zip,weight
13107,30401,1.0
13209,30410,1.0
13175,30411,0.05216197666437886
-13271,30411,0.0
13309,30411,0.9478380233356212
13209,30412,1.0
13163,30413,0.753015873015873
@@ -12596,7 +12509,6 @@ fips,zip,weight
13207,31210,0.08537845517954017
13021,31211,0.5415796585186095
13169,31211,0.4584203414813905
-13021,31213,
13021,31216,1.0
13021,31217,0.671664493698392
13169,31217,0.22001303780964798
@@ -12663,7 +12575,6 @@ fips,zip,weight
13127,31520,1.0
13127,31522,1.0
13127,31523,1.0
-13127,31524,
13127,31525,1.0
13127,31527,1.0
13161,31532,1.0
@@ -12732,7 +12643,6 @@ fips,zip,weight
13049,31631,0.012522361359570662
13065,31631,0.7710196779964222
13101,31631,0.21645796064400716
-13299,31631,0.0
13075,31632,0.10587663914521613
13185,31632,0.8941233608547838
13065,31634,1.0
@@ -13068,7 +12978,6 @@ fips,zip,weight
12073,32312,1.0
12073,32317,1.0
12037,32320,1.0
-12037,32321,0.0
12077,32321,1.0
12037,32322,1.0
12037,32323,1.0
@@ -13432,7 +13341,6 @@ fips,zip,weight
12011,33071,1.0
12011,33073,1.0
12011,33076,1.0
-12086,33101,
12086,33109,1.0
12086,33122,1.0
12086,33125,1.0
@@ -13975,7 +13883,6 @@ fips,zip,weight
12097,34743,1.0
12097,34744,1.0
12097,34746,1.0
-12095,34747,0.0
12097,34747,1.0
12069,34748,1.0
12069,34753,1.0
@@ -14602,7 +14509,6 @@ fips,zip,weight
01015,36205,1.0
01015,36206,1.0
01015,36207,1.0
-01029,36207,0.0
01015,36250,1.0
01027,36251,1.0
01027,36255,0.9814241486068112
@@ -15067,7 +14973,6 @@ fips,zip,weight
47111,37083,1.0
47149,37085,0.875092936802974
47189,37085,0.12490706319702602
-47037,37086,0.0
47149,37086,1.0
47159,37087,0.02370417193426043
47169,37087,0.005932120976368764
@@ -15194,8 +15099,6 @@ fips,zip,weight
47187,37221,0.057771100792133295
47037,37228,1.0
47037,37240,1.0
-47037,37243,
-47037,37246,
47061,37301,1.0
47065,37302,1.0
47107,37303,1.0
@@ -15673,7 +15576,6 @@ fips,zip,weight
47157,38126,1.0
47157,38127,1.0
47157,38128,1.0
-47157,38131,
47157,38132,1.0
47157,38133,1.0
47157,38134,1.0
@@ -16393,7 +16295,6 @@ fips,zip,weight
28049,39217,1.0
28121,39218,1.0
28121,39232,1.0
-28049,39269,
28049,39272,1.0
28023,39301,0.059018543480636815
28075,39301,0.9409814565193632
@@ -16893,7 +16794,6 @@ fips,zip,weight
21111,40228,1.0
21029,40229,0.37221860414631497
21111,40229,0.627781395853685
-21111,40231,
21111,40241,0.9898923692562439
21185,40241,0.010107630743756037
21111,40242,1.0
@@ -19809,7 +19709,6 @@ fips,zip,weight
18097,46237,1.0
18059,46239,0.0015387650424146776
18097,46239,0.9984612349575853
-18057,46240,0.0
18097,46240,1.0
18097,46241,1.0
18057,46250,0.009597756928717782
@@ -19820,7 +19719,6 @@ fips,zip,weight
18081,46259,0.02849272617715417
18097,46259,0.9373332185590083
18145,46259,0.03417405526383748
-18057,46260,0.0
18097,46260,1.0
18011,46268,0.01794512317244142
18097,46268,0.9820548768275585
@@ -20697,7 +20595,6 @@ fips,zip,weight
18157,47906,0.997536283820104
18171,47906,0.001537956160783611
18181,47906,0.000925760019112465
-18157,47907,
18157,47909,1.0
18107,47916,1.0
18007,47917,0.6476578411405295
@@ -20982,7 +20879,6 @@ fips,zip,weight
26163,48228,1.0
26163,48229,1.0
26163,48230,1.0
-26163,48233,
26163,48234,1.0
26163,48235,1.0
26099,48236,0.0025811088966576274
@@ -20991,8 +20887,6 @@ fips,zip,weight
26163,48238,1.0
26163,48239,1.0
26163,48240,1.0
-26163,48242,
-26163,48243,
26125,48301,1.0
26125,48302,1.0
26125,48304,1.0
@@ -21047,7 +20941,6 @@ fips,zip,weight
26125,48386,1.0
26125,48390,1.0
26125,48393,1.0
-26099,48397,
26151,48401,1.0
26049,48411,1.0
26087,48412,1.0
@@ -21151,9 +21044,6 @@ fips,zip,weight
26049,48519,1.0
26049,48529,1.0
26049,48532,1.0
-26049,48551,
-26049,48553,
-26049,48554,
26145,48601,1.0
26145,48602,1.0
26145,48603,1.0
@@ -21239,14 +21129,12 @@ fips,zip,weight
26129,48661,1.0
26057,48662,0.8030112923462986
26111,48662,0.19698870765370138
-26111,48667,
26157,48701,1.0
26011,48703,1.0
26001,48705,1.0
26017,48706,1.0
26017,48708,0.9989729293522118
26145,48708,0.00102707064778813
-26017,48710,
26063,48720,1.0
26001,48721,1.0
26145,48722,1.0
@@ -21449,7 +21337,6 @@ fips,zip,weight
26065,48915,1.0
26045,48917,0.8320129748612064
26065,48917,0.1679870251387936
-26065,48921,
26065,48933,1.0
26077,49001,1.0
26077,49002,1.0
@@ -22498,7 +22385,6 @@ fips,zip,weight
19153,50315,1.0
19153,50316,1.0
19153,50317,1.0
-19153,50319,
19153,50320,0.9095720776951116
19181,50320,0.0904279223048884
19153,50321,1.0
@@ -23972,7 +23858,6 @@ fips,zip,weight
55025,53718,1.0
55025,53719,1.0
55025,53726,1.0
-55025,53792,
55043,53801,1.0
55043,53802,1.0
55065,53803,1.0
@@ -24192,7 +24077,6 @@ fips,zip,weight
55009,54173,1.0
55078,54174,0.058745436442084305
55083,54174,0.9412545635579157
-55067,54175,0.0
55083,54175,1.0
55075,54177,1.0
55009,54180,0.9472212513107305
@@ -24301,7 +24185,6 @@ fips,zip,weight
55119,54451,0.9962569119523607
55069,54452,0.9220557851239669
55073,54452,0.07794421487603306
-55073,54454,0.0
55097,54454,0.014073494917904612
55141,54454,0.9859265050820953
55073,54455,0.9783898056256973
@@ -24646,7 +24529,6 @@ fips,zip,weight
55031,54836,1.0
55013,54837,0.11725780836421387
55095,54837,0.8827421916357862
-55007,54838,0.0
55031,54838,1.0
55007,54839,1.0
55013,54840,0.9888003446047814
@@ -24699,7 +24581,6 @@ fips,zip,weight
55007,54891,1.0
55013,54893,1.0
55107,54895,1.0
-55107,54896,0.0
55113,54896,1.0
55139,54901,1.0
55139,54902,1.0
@@ -24910,7 +24791,6 @@ fips,zip,weight
27003,55110,0.014301226197727694
27123,55110,0.892290579729336
27163,55110,0.09340819407293625
-27053,55111,
27123,55112,1.0
27123,55113,1.0
27123,55114,1.0
@@ -24933,7 +24813,6 @@ fips,zip,weight
27163,55129,1.0
27123,55130,1.0
27037,55150,1.0
-27123,55155,
27171,55301,1.0
27171,55302,1.0
27003,55303,1.0
@@ -25109,7 +24988,6 @@ fips,zip,weight
27053,55447,1.0
27003,55448,1.0
27003,55449,1.0
-27123,55449,0.0
27053,55450,1.0
27053,55454,1.0
27053,55455,1.0
@@ -25230,7 +25108,6 @@ fips,zip,weight
27109,55901,1.0
27109,55902,1.0
27109,55904,1.0
-27109,55905,
27109,55906,0.9964200477326969
27157,55906,0.003579952267303103
27099,55909,1.0
@@ -25989,7 +25866,6 @@ fips,zip,weight
27119,56646,1.0
27007,56647,1.0
27071,56649,1.0
-27137,56649,0.0
27007,56650,1.0
27087,56651,0.5185873605947955
27119,56651,0.48141263940520446
@@ -27143,7 +27019,6 @@ fips,zip,weight
38025,58656,0.09836065573770492
38089,58656,0.9016393442622951
38101,58701,1.0
-38101,58702,
38101,58703,1.0
38101,58704,1.0
38101,58705,1.0
@@ -27517,7 +27392,6 @@ fips,zip,weight
30051,59461,1.0
30045,59462,1.0
30013,59463,1.0
-30045,59463,0.0
30027,59464,0.96
30045,59464,0.04
30013,59465,1.0
@@ -27736,7 +27610,6 @@ fips,zip,weight
17031,60004,1.0
17031,60005,1.0
17031,60007,1.0
-17043,60007,0.0
17031,60008,1.0
17031,60010,0.4429073591110103
17089,60010,0.0031069282231545527
@@ -28922,7 +28795,6 @@ fips,zip,weight
17119,62058,1.0
17163,62059,1.0
17119,62060,1.0
-17163,62060,0.0
17119,62061,1.0
17119,62062,1.0
17083,62063,0.3319604612850082
@@ -29123,7 +28995,6 @@ fips,zip,weight
17149,62362,1.0
17149,62363,1.0
17001,62365,1.0
-17013,62366,0.0
17149,62366,1.0
17067,62367,0.5204460966542751
17109,62367,0.32788104089219333
@@ -29787,7 +29658,6 @@ fips,zip,weight
29189,63144,1.0
29189,63146,1.0
29510,63147,1.0
-29510,63155,
29183,63301,1.0
29183,63303,1.0
29183,63304,1.0
@@ -30141,7 +30011,6 @@ fips,zip,weight
29133,63882,1.0
29023,63901,0.9989614885331025
29181,63901,0.001038511466897447
-29023,63902,
29023,63932,1.0
29069,63933,1.0
29223,63934,1.0
@@ -30265,7 +30134,6 @@ fips,zip,weight
29107,64097,1.0
29165,64098,1.0
29095,64101,1.0
-29095,64102,
29095,64105,1.0
29095,64106,1.0
29095,64108,1.0
@@ -31323,7 +31191,6 @@ fips,zip,weight
20209,66109,0.99462890625
20209,66111,1.0
20209,66112,1.0
-20209,66115,
20209,66118,1.0
20091,66202,1.0
20091,66203,1.0
@@ -31849,7 +31716,6 @@ fips,zip,weight
20173,67230,1.0
20173,67232,1.0
20173,67235,1.0
-20173,67260,
20125,67301,1.0
20099,67330,1.0
20099,67332,1.0
@@ -33171,8 +33037,6 @@ fips,zip,weight
22071,70129,1.0
22071,70130,1.0
22071,70131,1.0
-22071,70139,
-22071,70163,
22007,70301,0.019123080140344355
22057,70301,0.9093105932104933
22109,70301,0.07156632664916235
@@ -33491,7 +33355,6 @@ fips,zip,weight
22033,70818,1.0
22033,70819,1.0
22033,70820,1.0
-22033,70836,
22013,71001,0.8373427499448245
22027,71001,0.07834915029794748
22061,71001,0.08430809975722799
@@ -33661,7 +33524,6 @@ fips,zip,weight
22029,71326,0.7036082474226805
22009,71327,1.0
22009,71328,0.06190990018883194
-22059,71328,0.0
22079,71328,0.9380900998111681
22009,71331,1.0
22009,71333,1.0
@@ -34133,7 +33995,6 @@ fips,zip,weight
05119,72142,0.49419767907162865
05023,72143,0.0007961557053086525
05145,72143,0.9992038442946913
-05145,72149,
05053,72150,0.9900882891887389
05069,72150,0.009911710811261036
05069,72152,1.0
@@ -34637,7 +34498,6 @@ fips,zip,weight
40031,73017,0.008988764044943821
40051,73017,0.3955056179775281
40051,73018,1.0
-40027,73019,
40027,73020,0.016770783277270544
40109,73020,0.9832292167227294
40015,73021,0.125
@@ -34776,9 +34636,7 @@ fips,zip,weight
40109,73141,1.0
40109,73142,1.0
40109,73145,1.0
-40027,73149,0.0
40109,73149,1.0
-40027,73150,0.0
40109,73150,1.0
40109,73151,1.0
40027,73159,0.296836902800659
@@ -35760,11 +35618,8 @@ fips,zip,weight
48113,75252,0.025588918380889183
48113,75253,1.0
48113,75254,1.0
-48113,75270,
48085,75287,0.47245122847114523
-48113,75287,0.0
48121,75287,0.5275487715288548
-48113,75390,
48231,75401,1.0
48231,75402,1.0
48085,75407,1.0
@@ -36167,7 +36022,6 @@ fips,zip,weight
48139,76050,0.0374468085106383
48217,76050,0.05395744680851064
48251,76050,0.908595744680851
-48113,76051,0.0
48439,76051,1.0
48121,76052,0.03732416380118787
48439,76052,0.9262894654579557
@@ -36420,7 +36274,6 @@ fips,zip,weight
48363,76475,0.9733879222108496
48429,76475,0.0040941658137154556
48221,76476,1.0
-48429,76481,0.0
48503,76481,1.0
48447,76483,1.0
48363,76484,1.0
@@ -36435,7 +36288,6 @@ fips,zip,weight
48027,76501,1.0
48027,76502,1.0
48027,76504,1.0
-48027,76508,
48027,76511,0.30027132951462165
48331,76511,0.0485378353934278
48491,76511,0.6511908350919505
@@ -36692,7 +36544,6 @@ fips,zip,weight
48105,76943,0.9853777416734363
48465,76943,0.01462225832656377
48081,76945,1.0
-48431,76945,0.0
48081,76949,1.0
48137,76950,0.010526315789473684
48435,76950,0.9875598086124402
@@ -36802,7 +36653,6 @@ fips,zip,weight
48201,77098,1.0
48157,77099,0.04408485697904058
48201,77099,0.9559151430209594
-48201,77201,
48339,77301,1.0
48339,77302,1.0
48339,77303,1.0
@@ -36972,7 +36822,6 @@ fips,zip,weight
48201,77504,1.0
48201,77505,1.0
48201,77506,1.0
-48201,77507,
48167,77510,1.0
48039,77511,0.9387693825465931
48167,77511,0.06123061745340683
@@ -37205,7 +37054,6 @@ fips,zip,weight
48259,78027,1.0
48171,78028,0.0195906432748538
48265,78028,0.9804093567251462
-48265,78029,
48029,78039,0.07604103802051901
48325,78039,0.923958961979481
48479,78040,1.0
@@ -37636,7 +37484,6 @@ fips,zip,weight
48453,78724,1.0
48453,78725,1.0
48453,78726,1.0
-48491,78726,0.0
48453,78727,0.9992506275993855
48491,78727,0.0007493724006144854
48453,78728,0.9137888565939208
@@ -37827,7 +37674,6 @@ fips,zip,weight
48129,79057,0.03648424543946932
48179,79057,0.917910447761194
48483,79057,0.04560530679933665
-48341,79058,0.0
48375,79058,1.0
48179,79059,0.03345280764635603
48393,79059,0.966547192353644
@@ -38163,7 +38009,6 @@ fips,zip,weight
48461,79755,1.0
48103,79756,0.000772115596735054
48475,79756,0.9992278844032649
-48495,79756,0.0
48135,79758,1.0
48135,79759,1.0
48135,79761,1.0
@@ -38176,7 +38021,6 @@ fips,zip,weight
48135,79766,0.9632052330335241
48329,79766,0.007849550286181521
48389,79770,1.0
-48109,79772,0.0
48389,79772,0.997175806072017
48475,79772,0.002824193927983055
48475,79777,1.0
@@ -38266,7 +38110,6 @@ fips,zip,weight
08005,80017,1.0
08005,80018,1.0
08001,80019,1.0
-08001,80020,0.0
08013,80020,0.0031362676281709374
08014,80020,0.8225768598920441
08059,80020,0.17428687247978494
@@ -38279,7 +38122,6 @@ fips,zip,weight
08013,80025,1.0
08013,80026,1.0
08013,80027,1.0
-08014,80027,0.0
08001,80030,1.0
08001,80031,0.9439467169633384
08059,80031,0.05605328303666156
@@ -38304,7 +38146,6 @@ fips,zip,weight
08005,80110,0.9494417022092299
08031,80110,0.05055829779077012
08005,80111,1.0
-08031,80111,0.0
08005,80112,0.929835369818941
08035,80112,0.07016463018105898
08005,80113,1.0
@@ -38324,7 +38165,6 @@ fips,zip,weight
08059,80127,1.0
08005,80128,0.05213215959757631
08059,80128,0.9478678404024237
-08005,80129,0.0
08035,80129,1.0
08035,80130,1.0
08035,80131,1.0
@@ -38386,10 +38226,8 @@ fips,zip,weight
08059,80235,0.56267335886937
08005,80236,0.08038206289152143
08031,80236,0.9196179371084786
-08005,80237,0.0
08031,80237,1.0
08031,80238,1.0
-08001,80239,0.0
08031,80239,1.0
08001,80241,1.0
08005,80246,0.32497087378640777
@@ -38398,10 +38236,6 @@ fips,zip,weight
08031,80247,0.47872215018271835
08031,80249,1.0
08001,80260,1.0
-08031,80264,
-08031,80290,
-08031,80293,
-08031,80294,
08013,80301,1.0
08013,80302,1.0
08013,80303,1.0
@@ -38412,7 +38246,6 @@ fips,zip,weight
08013,80403,0.0476635000823678
08047,80403,0.022019658448190656
08059,80403,0.9303168414694415
-08059,80419,
08093,80420,1.0
08059,80421,0.0018652076597861229
08093,80421,0.9981347923402139
@@ -38423,7 +38256,6 @@ fips,zip,weight
08117,80424,1.0
08059,80425,1.0
08037,80426,1.0
-08107,80426,0.0
08047,80427,1.0
08107,80428,1.0
08093,80432,1.0
@@ -38679,7 +38511,6 @@ fips,zip,weight
08041,80929,1.0
08041,80930,1.0
08041,80938,1.0
-08041,80939,
08041,80951,1.0
08101,81001,1.0
08101,81003,1.0
@@ -38871,7 +38702,6 @@ fips,zip,weight
08091,81432,0.9977628635346756
08113,81432,0.0022371364653243847
08111,81433,1.0
-08029,81434,0.0
08051,81434,1.0
08113,81435,1.0
08077,81501,1.0
@@ -39045,7 +38875,6 @@ fips,zip,weight
56025,82635,1.0
56009,82636,0.009294147199196181
56025,82636,0.9907058528008038
-56001,82637,0.0
56009,82637,1.0
56025,82638,1.0
56019,82639,0.9428571428571428
@@ -39059,14 +38888,12 @@ fips,zip,weight
56025,82648,1.0
56013,82649,1.0
46033,82701,0.005499541704857928
-46103,82701,0.0
56027,82701,0.008065994500458295
56045,82701,0.9864344637946838
56011,82710,1.0
56011,82711,1.0
56011,82712,1.0
56011,82714,1.0
-56045,82715,
56005,82716,1.0
56005,82718,1.0
56011,82720,1.0
@@ -39105,7 +38932,6 @@ fips,zip,weight
56037,82929,1.0
49043,82930,0.0023949637334063226
56041,82930,0.9976050362665937
-56035,82932,0.0
56037,82932,1.0
56041,82933,1.0
56037,82934,1.0
@@ -39192,7 +39018,6 @@ fips,zip,weight
16037,83253,0.40606060606060607
16059,83253,0.593939393939394
16007,83254,1.0
-16029,83254,0.0
16023,83255,0.7328936521022259
16037,83255,0.2671063478977741
16007,83261,1.0
@@ -39413,7 +39238,6 @@ fips,zip,weight
16075,83655,1.0
16027,83656,1.0
16045,83657,1.0
-16085,83657,0.0
16027,83660,0.8908319185059422
16075,83660,0.10916808149405773
16075,83661,0.9966602570590021
@@ -39462,7 +39286,6 @@ fips,zip,weight
16055,83815,1.0
16017,83821,1.0
16017,83822,1.0
-16035,83823,0.0
16057,83823,1.0
16009,83824,1.0
16017,83825,1.0
@@ -39589,7 +39412,6 @@ fips,zip,weight
49045,84074,1.0
49011,84075,1.0
49047,84076,1.0
-49009,84078,0.0
49047,84078,1.0
49045,84080,1.0
49035,84081,1.0
@@ -39631,8 +39453,6 @@ fips,zip,weight
49035,84123,1.0
49035,84124,1.0
49035,84128,1.0
-49035,84144,
-49035,84180,
49003,84301,1.0
49003,84302,1.0
49005,84304,1.0
@@ -40120,9 +39940,6 @@ fips,zip,weight
04019,85716,1.0
04019,85718,1.0
04019,85719,1.0
-04019,85723,
-04019,85724,
-04019,85726,
04019,85730,1.0
04019,85735,1.0
04019,85736,1.0
@@ -40747,7 +40564,6 @@ fips,zip,weight
32003,89015,1.0
32017,89017,1.0
32003,89018,1.0
-06027,89019,0.0
06071,89019,0.025813692480359147
32003,89019,0.9741863075196409
32023,89020,1.0
@@ -40910,7 +40726,6 @@ fips,zip,weight
32031,89521,0.9510421527453725
32031,89523,1.0
32510,89701,1.0
-32510,89702,
32510,89703,1.0
32031,89704,1.0
32005,89705,0.9909438518816663
@@ -40999,9 +40814,7 @@ fips,zip,weight
06037,90071,1.0
06037,90073,1.0
06037,90077,1.0
-06037,90079,
06037,90089,1.0
-06037,90090,
06037,90094,1.0
06037,90095,1.0
06037,90201,1.0
@@ -41055,7 +40868,6 @@ fips,zip,weight
06037,90503,1.0
06037,90504,1.0
06037,90505,1.0
-06037,90506,
06037,90601,1.0
06037,90602,1.0
06037,90603,1.0
@@ -41098,7 +40910,6 @@ fips,zip,weight
06037,90744,1.0
06037,90745,1.0
06037,90746,1.0
-06037,90747,
06037,90755,1.0
06037,90802,1.0
06037,90803,1.0
@@ -41113,7 +40924,6 @@ fips,zip,weight
06037,90815,0.9976593763370498
06059,90815,0.0023406236629501926
06037,90822,1.0
-06037,90831,
06037,91001,1.0
06037,91006,1.0
06037,91007,1.0
@@ -41206,7 +41016,6 @@ fips,zip,weight
06037,91605,1.0
06037,91606,1.0
06037,91607,1.0
-06037,91608,
06071,91701,1.0
06037,91702,1.0
06037,91706,1.0
@@ -41356,7 +41165,6 @@ fips,zip,weight
06073,92129,1.0
06073,92130,1.0
06073,92131,1.0
-06073,92132,
06073,92134,1.0
06073,92135,1.0
06073,92139,1.0
@@ -41738,7 +41546,6 @@ fips,zip,weight
06079,93401,1.0
06079,93402,1.0
06079,93405,1.0
-06079,93410,
06079,93420,1.0
06079,93422,1.0
06079,93424,1.0
@@ -41862,7 +41669,6 @@ fips,zip,weight
06019,93631,0.8234740605984568
06031,93631,0.04849131171193777
06107,93631,0.1280346276896054
-06019,93633,0.0
06107,93633,1.0
06019,93634,1.0
06047,93635,1.0
@@ -42136,7 +41942,6 @@ fips,zip,weight
06013,94804,1.0
06013,94805,1.0
06013,94806,1.0
-06013,94850,
06041,94901,1.0
06041,94903,1.0
06041,94904,1.0
@@ -42264,7 +42069,6 @@ fips,zip,weight
06009,95222,1.0
06003,95223,0.026235906331309625
06009,95223,0.9737640936686903
-06109,95223,0.0
06009,95224,1.0
06009,95225,1.0
06009,95226,1.0
@@ -42304,7 +42108,6 @@ fips,zip,weight
06109,95311,0.021392808375056895
06047,95312,1.0
06099,95313,1.0
-06109,95314,
06047,95315,1.0
06099,95316,1.0
06047,95317,1.0
@@ -42951,7 +42754,6 @@ fips,zip,weight
15003,96822,1.0
15003,96825,1.0
15003,96826,1.0
-15003,96850,
15003,96853,1.0
15003,96857,1.0
15003,96859,1.0
@@ -43092,7 +42894,6 @@ fips,zip,weight
41051,97205,1.0
41005,97206,0.03546516513992772
41051,97206,0.9645348348600723
-41051,97208,
41051,97209,1.0
41051,97210,0.9729034628455957
41067,97210,0.027096537154404337
@@ -43438,7 +43239,6 @@ fips,zip,weight
41001,97867,0.15465268676277852
41061,97867,0.8453473132372215
41059,97868,1.0
-41001,97869,0.0
41023,97869,1.0
41001,97870,1.0
41023,97873,1.0
@@ -43557,17 +43357,13 @@ fips,zip,weight
53033,98144,1.0
53033,98146,1.0
53033,98148,1.0
-53033,98154,
53033,98155,1.0
-53033,98158,
53033,98164,1.0
53033,98166,1.0
53033,98168,1.0
-53033,98174,
53033,98177,1.0
53033,98178,1.0
53033,98188,1.0
-53033,98195,
53033,98198,1.0
53033,98199,1.0
53061,98201,1.0
@@ -43933,7 +43729,6 @@ fips,zip,weight
53047,98859,1.0
53025,98860,1.0
53047,98862,1.0
-53073,98862,0.0
53037,98901,0.0019556498392389538
53077,98901,0.9980443501607611
53077,98902,1.0
@@ -43944,7 +43739,6 @@ fips,zip,weight
53077,98923,1.0
53037,98925,1.0
53037,98926,1.0
-53077,98929,
53005,98930,0.05854969840020981
53077,98930,0.9414503015997902
53077,98932,1.0
@@ -43952,7 +43746,6 @@ fips,zip,weight
53037,98934,1.0
53077,98935,1.0
53077,98936,1.0
-53037,98937,0.0
53077,98937,1.0
53077,98938,1.0
53077,98939,1.0
@@ -44025,7 +43818,6 @@ fips,zip,weight
53017,99115,0.1373578302712161
53025,99115,0.8626421697287839
53017,99116,0.1299513551077137
-53025,99116,0.0
53047,99116,0.8700486448922863
53043,99117,1.0
53019,99118,1.0
@@ -44076,7 +43868,6 @@ fips,zip,weight
53019,99160,1.0
53075,99161,1.0
53075,99163,1.0
-53075,99164,
53019,99166,0.9823091247672253
53047,99166,0.017690875232774673
53065,99167,1.0
@@ -44168,7 +43959,6 @@ fips,zip,weight
02020,99507,1.0
02020,99508,1.0
02185,99510,1.0
-02020,99513,
02020,99515,1.0
02020,99516,1.0
02020,99517,1.0
@@ -44296,7 +44086,6 @@ fips,zip,weight
02050,99690,1.0
02290,99691,1.0
02016,99692,1.0
-02170,99693,0.0
02261,99693,1.0
02170,99694,1.0
02164,99695,1.0
@@ -44327,7 +44116,6 @@ fips,zip,weight
02240,99737,0.9914188784673718
02261,99737,0.008581121532628218
02240,99738,1.0
-02290,99738,0.0
02180,99739,1.0
02290,99740,1.0
02290,99741,1.0
diff --git a/_delphi_utils_python/delphi_utils/data/zip_hrr_cross.csv b/_delphi_utils_python/delphi_utils/data/zip_hrr_table.csv
similarity index 92%
rename from _delphi_utils_python/delphi_utils/data/zip_hrr_cross.csv
rename to _delphi_utils_python/delphi_utils/data/zip_hrr_table.csv
index 400f9384e..c0e8c2753 100644
--- a/_delphi_utils_python/delphi_utils/data/zip_hrr_cross.csv
+++ b/_delphi_utils_python/delphi_utils/data/zip_hrr_table.csv
@@ -1,2999 +1,2999 @@
zip,hrr
-501,301
-544,301
-1001,230
-1002,230
-1003,230
-1004,230
-1005,231
-1007,230
-1008,230
-1009,230
-1010,231
-1011,295
-1012,230
-1013,230
-1014,230
-1020,230
-1021,230
-1022,230
-1026,230
-1027,230
-1028,230
-1029,230
-1030,230
-1031,230
-1032,230
-1033,230
-1034,230
-1035,230
-1036,230
-1037,230
-1038,230
-1039,230
-1040,230
-1041,230
-1050,230
-1053,230
-1054,230
-1056,230
-1057,230
-1059,230
-1060,230
-1061,230
-1062,230
-1063,230
-1066,230
-1068,231
-1069,230
-1070,230
-1071,230
-1072,230
-1073,230
-1074,231
-1075,230
-1077,230
-1079,230
-1080,230
-1081,231
-1082,230
-1083,230
-1084,230
-1085,230
-1086,230
-1088,230
-1089,230
-1090,230
-1092,230
-1093,230
-1094,230
-1095,230
-1096,230
-1097,230
-1098,230
-1101,230
-1102,230
-1103,230
-1104,230
-1105,230
-1106,230
-1107,230
-1108,230
-1109,230
-1111,230
-1115,230
-1116,230
-1118,230
-1119,230
-1128,230
-1129,230
-1138,230
-1139,230
-1144,230
-1151,230
-1152,230
-1199,230
-1201,295
-1202,295
-1203,295
-1220,230
-1222,230
-1223,295
-1224,295
-1225,295
-1226,295
-1227,295
-1229,295
-1230,230
-1235,295
-1236,230
-1237,295
-1238,295
-1240,295
-1242,295
-1243,295
-1244,230
-1245,230
-1247,230
-1252,230
-1253,230
-1254,295
-1255,230
-1256,230
-1257,230
-1258,230
-1259,230
-1260,295
-1262,295
-1263,295
-1264,295
-1266,295
-1267,230
-1270,295
-1301,230
-1302,230
-1330,230
-1331,231
-1337,230
-1338,230
-1339,230
-1340,230
-1341,230
-1342,230
-1343,230
-1344,230
-1346,230
-1347,230
-1349,230
-1350,230
-1351,230
-1354,230
-1355,231
-1360,230
-1364,231
-1366,231
-1367,230
-1368,231
-1370,230
-1373,230
-1375,230
-1376,230
-1378,231
-1379,230
-1380,230
-1420,231
-1430,231
-1431,231
-1432,227
-1434,227
-1436,231
-1438,231
-1440,231
-1441,231
-1450,227
-1451,227
-1452,231
-1453,231
-1460,227
-1462,231
-1463,227
-1464,227
-1467,227
-1468,231
-1469,227
-1470,227
-1471,227
-1472,227
-1473,231
-1474,231
-1475,231
-1501,231
-1503,231
-1504,364
-1505,231
-1506,231
-1507,231
-1508,231
-1509,231
-1510,231
-1515,231
-1516,231
-1518,231
-1519,231
-1520,231
-1521,231
-1522,231
-1523,231
-1524,231
-1525,231
-1526,231
-1527,231
-1529,364
-1531,231
-1532,231
-1534,231
-1535,231
-1536,231
-1537,231
-1538,231
-1540,231
-1541,231
-1542,231
-1543,231
-1545,231
-1546,231
-1550,231
-1560,231
-1561,231
-1562,231
-1564,231
-1566,231
-1568,231
-1569,231
-1570,231
-1571,231
-1581,231
-1583,231
-1585,230
-1586,231
-1588,231
-1590,231
-1601,231
-1602,231
-1603,231
-1604,231
-1605,231
-1606,231
-1607,231
-1608,231
-1609,231
-1610,231
-1611,231
-1612,231
-1613,231
-1614,231
-1615,231
-1653,231
-1655,231
-1701,227
-1702,227
-1703,227
-1704,227
-1705,227
-1718,227
-1719,227
-1720,227
-1721,227
-1730,227
-1731,227
-1740,231
-1741,227
-1742,227
-1745,227
-1746,227
-1747,231
-1748,227
-1749,231
-1752,231
-1754,227
-1756,231
-1757,227
-1760,227
-1770,227
-1772,227
-1773,227
-1775,227
-1776,227
-1778,227
-1784,227
-1801,227
-1803,227
-1805,227
-1810,227
-1812,227
-1813,227
-1815,227
-1821,227
-1822,227
-1824,227
-1826,227
-1827,227
-1830,227
-1831,227
-1832,227
-1833,227
-1834,227
-1835,227
-1840,227
-1841,227
-1842,227
-1843,227
-1844,227
-1845,227
-1850,227
-1851,227
-1852,227
-1853,227
-1854,227
-1860,227
-1862,227
-1863,227
-1864,227
-1865,227
-1866,227
-1867,227
-1876,227
-1879,227
-1880,227
-1885,227
-1886,227
-1887,227
-1888,227
-1889,227
-1890,227
-1899,227
-1901,227
-1902,227
-1903,227
-1904,227
-1905,227
-1906,227
-1907,227
-1908,227
-1910,227
-1913,227
-1915,227
-1921,227
-1922,227
-1923,227
-1929,227
-1930,227
-1931,227
-1936,227
-1937,227
-1938,227
-1940,227
-1944,227
-1945,227
-1949,227
-1950,227
-1951,227
-1952,227
-1960,227
-1961,227
-1965,227
-1966,227
-1969,227
-1970,227
-1971,227
-1982,227
-1983,227
-1984,227
-1985,227
-2018,227
-2019,364
-2020,227
-2021,227
-2025,227
-2026,227
-2027,227
-2030,227
-2032,227
-2035,227
-2038,227
-2040,227
-2041,227
-2043,227
-2044,227
-2045,227
-2047,227
-2048,364
-2050,227
-2051,227
-2052,227
-2053,227
-2054,227
-2055,227
-2056,227
-2059,227
-2060,227
-2061,227
-2062,227
-2065,227
-2066,227
-2067,227
-2070,227
-2071,227
-2072,227
-2081,227
-2090,227
-2093,227
-2108,227
-2109,227
-2110,227
-2111,227
-2112,227
-2113,227
-2114,227
-2115,227
-2116,227
-2117,227
-2118,227
-2119,227
-2120,227
-2121,227
-2122,227
-2123,227
-2124,227
-2125,227
-2126,227
-2127,227
-2128,227
-2129,227
-2130,227
-2131,227
-2132,227
-2133,227
-2134,227
-2135,227
-2136,227
-2137,227
-2138,227
-2139,227
-2140,227
-2141,227
-2142,227
-2143,227
-2144,227
-2145,227
-2148,227
-2149,227
-2150,227
-2151,227
-2152,227
-2153,227
-2155,227
-2156,227
-2163,227
-2169,227
-2170,227
-2171,227
-2176,227
-2180,227
-2184,227
-2185,227
-2186,227
-2187,227
-2188,227
-2189,227
-2190,227
-2191,227
-2196,227
-2199,227
-2201,227
-2203,227
-2204,227
-2205,227
-2206,227
-2210,227
-2211,227
-2212,227
-2215,227
-2217,227
-2222,227
-2238,227
-2241,227
-2266,227
-2269,227
-2283,227
-2284,227
-2293,227
-2297,227
-2298,227
-2301,227
-2302,227
-2303,227
-2304,227
-2305,227
-2322,227
-2324,227
-2325,227
-2327,227
-2330,227
-2331,227
-2332,227
-2333,227
-2334,227
-2337,227
-2338,227
-2339,227
-2341,227
-2343,227
-2344,227
-2345,227
-2346,227
-2347,227
-2348,227
-2349,227
-2350,227
-2351,227
-2355,227
-2356,227
-2357,227
-2358,227
-2359,227
-2360,227
-2361,227
-2362,227
-2364,227
-2366,227
-2367,227
-2368,227
-2370,227
-2375,227
-2379,227
-2381,227
-2382,227
-2420,227
-2421,227
-2445,227
-2446,227
-2447,227
-2451,227
-2452,227
-2453,227
-2454,227
-2455,227
-2456,227
-2457,227
-2458,227
-2459,227
-2460,227
-2461,227
-2462,227
-2464,227
-2465,227
-2466,227
-2467,227
-2468,227
-2471,227
-2472,227
-2474,227
-2475,227
-2476,227
-2477,227
-2478,227
-2479,227
-2481,227
-2482,227
-2492,227
-2493,227
-2494,227
-2495,227
-2532,227
-2534,227
-2535,227
-2536,227
-2537,227
-2538,227
-2539,227
-2540,227
-2541,227
-2542,227
-2543,227
-2552,227
-2553,227
-2554,227
-2556,227
-2557,227
-2558,227
-2559,227
-2561,227
-2562,227
-2563,227
-2564,227
-2568,227
-2571,227
-2574,227
-2575,227
-2576,227
-2584,227
-2601,227
-2630,227
-2631,227
-2632,227
-2633,227
-2634,227
-2635,227
-2637,227
-2638,227
-2639,227
-2641,227
-2642,227
-2643,227
-2644,227
-2645,227
-2646,227
-2647,227
-2648,227
-2649,227
-2650,227
-2651,227
-2652,227
-2653,227
-2655,227
-2657,227
-2659,227
-2660,227
-2661,227
-2662,227
-2663,227
-2664,227
-2666,227
-2667,227
-2668,227
-2669,227
-2670,227
-2671,227
-2672,227
-2673,227
-2675,227
-2702,227
-2703,364
-2712,364
-2713,227
-2714,227
-2715,227
-2717,227
-2718,227
-2719,227
-2720,227
-2721,227
-2722,227
-2723,227
-2724,227
-2725,227
-2726,227
-2738,227
-2739,227
-2740,227
-2741,227
-2742,227
-2743,227
-2744,227
-2745,227
-2746,227
-2747,227
-2748,227
-2760,364
-2761,364
-2762,364
-2763,364
-2764,227
-2766,364
-2767,227
-2768,227
-2769,364
-2770,227
-2771,364
-2777,227
-2779,227
-2780,227
-2790,227
-2791,227
-2801,227
-2802,364
-2804,364
-2806,364
-2807,364
-2808,364
-2809,364
-2812,364
-2813,364
-2814,364
-2815,364
-2816,364
-2817,364
-2818,364
-2822,364
-2823,364
-2824,364
-2825,364
-2826,364
-2827,364
-2828,364
-2829,364
-2830,364
-2831,364
-2832,364
-2833,364
-2835,364
-2836,364
-2837,227
-2838,364
-2839,364
-2840,364
-2841,364
-2842,364
-2852,364
-2857,364
-2858,364
-2859,364
-2860,364
-2861,364
-2862,364
-2863,364
-2864,364
-2865,364
-2871,364
-2872,364
-2873,364
-2874,364
-2875,364
-2876,364
-2877,364
-2878,227
-2879,364
-2880,364
-2881,364
-2882,364
-2883,364
-2885,364
-2886,364
-2887,364
-2888,364
-2889,364
-2891,364
-2892,364
-2893,364
-2894,364
-2895,364
-2896,364
-2898,364
-2901,364
-2902,364
-2903,364
-2904,364
-2905,364
-2906,364
-2907,364
-2908,364
-2909,364
-2910,364
-2911,364
-2912,364
-2914,364
-2915,364
-2916,364
-2917,364
-2918,364
-2919,364
-2920,364
-2921,364
-2940,364
-3031,282
-3032,282
-3033,282
-3034,282
-3036,282
-3037,282
-3038,282
-3040,282
-3041,282
-3042,282
-3043,282
-3044,282
-3045,282
-3046,282
-3047,282
-3048,282
-3049,282
-3051,282
-3052,282
-3053,282
-3054,282
-3055,282
-3057,282
-3060,282
-3061,282
-3062,282
-3063,282
-3064,282
-3070,282
-3071,282
-3073,227
-3076,227
-3077,282
-3079,227
-3082,282
-3084,282
-3086,282
-3087,282
-3101,282
-3102,282
-3103,282
-3104,282
-3105,282
-3106,282
-3108,282
-3109,282
-3110,282
-3111,282
-3215,282
-3216,281
-3217,282
-3218,282
-3220,282
-3221,281
-3222,282
-3223,282
-3224,282
-3225,282
-3226,282
-3227,282
-3229,282
-3230,281
-3231,282
-3233,281
-3234,282
-3235,282
-3237,282
-3238,281
-3240,281
-3241,282
-3242,282
-3243,282
-3244,282
-3245,282
-3246,282
-3247,282
-3249,282
-3251,281
-3252,282
-3253,282
-3254,282
-3255,281
-3256,282
-3257,281
-3258,282
-3259,282
-3260,282
-3261,282
-3262,281
-3263,282
-3264,282
-3266,282
-3268,282
-3269,282
-3272,281
-3273,282
-3275,282
-3276,282
-3278,282
-3279,281
-3280,282
-3281,282
-3282,282
-3284,281
-3285,282
-3287,281
-3289,282
-3290,222
-3291,222
-3293,281
-3298,282
-3299,282
-3301,282
-3302,282
-3303,282
-3304,282
-3305,282
-3307,282
-3431,281
-3435,281
-3440,282
-3441,281
-3442,282
-3443,281
-3444,281
-3445,281
-3446,281
-3447,281
-3448,281
-3449,282
-3450,281
-3451,281
-3452,282
-3455,281
-3456,281
-3457,281
-3458,282
-3461,282
-3462,281
-3464,281
-3465,281
-3466,281
-3467,281
-3468,282
-3469,281
-3470,281
-3561,281
-3570,281
-3574,281
-3575,281
-3576,281
-3579,281
-3580,281
-3581,281
-3582,281
-3583,281
-3584,281
-3585,281
-3586,281
-3588,281
-3589,222
-3590,281
-3592,281
-3593,281
-3595,281
-3597,281
-3598,281
-3601,281
-3602,281
-3603,281
-3604,281
-3605,281
-3607,281
-3608,281
-3609,281
-3740,281
-3741,281
-3743,281
-3745,281
-3746,281
-3748,281
-3749,281
-3750,281
-3751,281
-3752,281
-3753,281
-3754,281
-3755,281
-3756,281
-3765,281
-3766,281
-3768,281
-3769,281
-3770,281
-3771,281
-3773,281
-3774,281
-3777,281
-3779,281
-3780,281
-3781,281
-3782,281
-3784,281
-3785,281
-3801,282
-3802,282
-3803,282
-3804,222
-3809,282
-3810,282
-3811,227
-3812,222
-3813,222
-3814,282
-3815,222
-3816,282
-3817,222
-3818,222
-3819,282
-3820,222
-3821,222
-3822,222
-3823,222
-3824,222
-3825,222
-3826,227
-3827,282
-3830,282
-3832,222
-3833,282
-3835,222
-3836,282
-3837,282
-3838,222
-3839,222
-3840,282
-3841,282
-3842,282
-3843,282
-3844,282
-3845,222
-3846,222
-3847,222
-3848,282
-3849,222
-3850,282
-3851,222
-3852,222
-3853,282
-3854,282
-3855,222
-3856,282
-3857,282
-3858,282
-3859,282
-3860,222
-3861,222
-3862,282
-3864,282
-3865,227
-3866,222
-3867,222
-3868,222
-3869,222
-3870,282
-3871,282
-3872,282
-3873,282
-3874,227
-3875,222
-3878,222
-3882,282
-3883,282
-3884,222
-3885,282
-3886,282
-3887,222
-3890,282
-3894,282
-3896,282
-3897,282
-3901,222
-3902,222
-3903,222
-3904,222
-3905,222
-3906,222
-3907,222
-3908,222
-3909,222
-3910,222
-3911,222
-4001,222
-4002,222
-4003,222
-4004,222
-4005,222
-4006,222
-4007,222
-4008,222
-4009,222
-4010,222
-4011,222
-4013,222
-4014,222
-4015,222
-4016,222
-4017,222
-4019,222
-4020,222
-4021,222
-4022,222
-4024,222
-4027,222
-4028,222
-4029,222
-4030,222
-4032,222
-4033,222
-4034,222
-4037,222
-4038,222
-4039,222
-4040,222
-4041,222
-4042,222
-4043,222
-4046,222
-4047,222
-4048,222
-4049,222
-4050,222
-4051,222
-4054,222
-4055,222
-4056,222
-4057,222
-4061,222
-4062,222
-4063,222
-4064,222
-4066,222
-4068,222
-4069,222
-4070,222
-4071,222
-4072,222
-4073,222
-4074,222
-4076,222
-4077,222
-4078,222
-4079,222
-4082,222
-4083,222
-4084,222
-4085,222
-4086,222
-4087,222
-4088,222
-4090,222
-4091,222
-4092,222
-4093,222
-4094,222
-4095,222
-4096,222
-4097,222
-4098,222
-4101,222
-4102,222
-4103,222
-4104,222
-4105,222
-4106,222
-4107,222
-4108,222
-4109,222
-4110,222
-4112,222
-4116,222
-4122,222
-4123,222
-4124,222
-4210,222
-4211,222
-4212,222
-4216,222
-4217,222
-4219,222
-4220,222
-4221,222
-4222,222
-4223,222
-4224,222
-4225,222
-4226,222
-4227,222
-4228,222
-4230,222
-4231,222
-4234,222
-4236,222
-4237,222
-4238,222
-4239,222
-4240,222
-4241,222
-4243,222
-4250,222
-4252,222
-4253,222
-4254,222
-4255,222
-4256,222
-4257,222
-4258,222
-4259,222
-4260,222
-4261,222
-4262,222
-4263,222
-4265,222
-4266,222
-4267,222
-4268,222
-4270,222
-4271,222
-4274,222
-4275,222
-4276,222
-4280,222
-4281,222
-4282,222
-4284,222
-4285,222
-4286,222
-4287,222
-4288,222
-4289,222
-4290,222
-4291,222
-4292,222
-4294,222
-4330,222
-4332,222
-4333,222
-4336,222
-4338,222
-4341,222
-4342,222
-4343,222
-4344,222
-4345,222
-4346,222
-4347,222
-4348,222
-4349,222
-4350,222
-4351,222
-4352,222
-4353,222
-4354,222
-4355,222
-4357,222
-4358,222
-4359,222
-4360,222
-4363,222
-4364,222
-4401,221
-4402,221
-4406,221
-4408,221
-4410,221
-4411,221
-4412,221
-4413,221
-4414,221
-4415,221
-4416,221
-4417,221
-4418,221
-4419,221
-4420,221
-4421,221
-4422,221
-4424,221
-4426,221
-4427,221
-4428,221
-4429,221
-4430,221
-4431,221
-4434,221
-4435,221
-4438,221
-4441,221
-4442,221
-4443,221
-4444,221
-4448,221
-4449,221
-4450,221
-4451,221
-4453,221
-4454,221
-4455,221
-4456,221
-4457,221
-4459,221
-4460,221
-4461,221
-4462,221
-4463,221
-4464,221
-4468,221
-4469,221
-4471,221
-4472,221
-4473,221
-4474,221
-4475,221
-4476,221
-4478,221
-4479,221
-4481,221
-4485,221
-4487,221
-4488,221
-4489,221
-4490,221
-4491,221
-4492,221
-4493,221
-4495,221
-4496,221
-4497,221
-4530,222
-4535,222
-4537,222
-4538,222
-4539,222
-4541,222
-4543,222
-4544,222
-4547,222
-4548,222
-4549,222
-4551,222
-4553,222
-4554,222
-4555,222
-4556,222
-4558,222
-4562,222
-4563,222
-4564,222
-4565,222
-4568,222
-4570,222
-4571,222
-4572,222
-4573,222
-4574,222
-4575,222
-4576,222
-4578,222
-4579,222
-4605,221
-4606,221
-4607,221
-4609,221
-4611,221
-4612,221
-4613,221
-4614,221
-4616,221
-4617,221
-4619,221
-4622,221
-4623,221
-4624,221
-4625,221
-4626,221
-4627,221
-4628,221
-4629,221
-4630,221
-4631,221
-4634,221
-4635,221
-4637,221
-4640,221
-4642,221
-4643,221
-4644,221
-4645,221
-4646,221
-4648,221
-4649,221
-4650,221
-4652,221
-4653,221
-4654,221
-4655,221
-4657,221
-4658,221
-4660,221
-4662,221
-4664,221
-4666,221
-4667,221
-4668,221
-4669,221
-4671,221
-4672,221
-4673,221
-4674,221
-4675,221
-4676,221
-4677,221
-4679,221
-4680,221
-4681,221
-4683,221
-4684,221
-4685,221
-4686,221
-4691,221
-4693,221
-4694,221
-4730,221
-4732,221
-4733,221
-4734,221
-4735,221
-4736,221
-4737,221
-4738,221
-4739,221
-4740,221
-4741,221
-4742,221
-4743,221
-4744,221
-4745,221
-4746,221
-4747,221
-4750,221
-4751,221
-4756,221
-4757,221
-4758,221
-4760,221
-4761,221
-4762,221
-4763,221
-4764,221
-4765,221
-4766,221
-4768,221
-4769,221
-4772,221
-4773,221
-4774,221
-4775,221
-4776,221
-4777,221
-4779,221
-4780,221
-4781,221
-4783,221
-4785,221
-4786,221
-4787,221
-4841,222
-4843,222
-4847,222
-4848,222
-4849,222
-4850,222
-4851,222
-4852,222
-4853,222
-4854,222
-4855,222
-4856,222
-4858,222
-4859,222
-4860,222
-4861,222
-4862,222
-4863,222
-4864,222
-4865,222
-4901,222
-4903,222
-4910,222
-4911,221
-4912,221
-4915,221
-4917,222
-4918,222
-4920,221
-4921,221
-4922,222
-4923,221
-4924,221
-4925,222
-4926,222
-4927,222
-4928,221
-4929,221
-4930,221
-4932,221
-4933,221
-4935,222
-4936,222
-4937,222
-4938,222
-4939,221
-4940,222
-4941,222
-4942,221
-4943,221
-4944,222
-4945,222
-4947,222
-4949,221
-4950,221
-4951,221
-4952,221
-4953,221
-4954,222
-4955,222
-4956,222
-4957,221
-4958,221
-4961,221
-4962,222
-4963,222
-4964,222
-4965,221
-4966,222
-4967,221
-4969,221
-4970,222
-4971,221
-4972,221
-4973,222
-4974,221
-4975,222
-4976,221
-4978,222
-4979,221
-4981,221
-4982,222
-4983,222
-4984,222
-4985,222
-4986,222
-4987,222
-4988,222
-4989,222
-4992,222
-5001,281
-5009,281
-5030,281
-5031,281
-5032,281
-5033,281
-5034,281
-5035,281
-5036,424
-5037,281
-5038,281
-5039,281
-5040,281
-5041,424
-5042,281
-5043,281
-5045,281
-5046,281
-5047,281
-5048,281
-5049,281
-5050,281
-5051,281
-5052,281
-5053,281
-5054,281
-5055,281
-5056,281
-5058,281
-5059,281
-5060,281
-5061,281
-5062,281
-5065,281
-5067,281
-5068,281
-5069,281
-5070,281
-5071,281
-5072,281
-5073,281
-5074,281
-5075,281
-5076,424
-5077,281
-5079,281
-5081,281
-5083,281
-5084,281
-5085,281
-5086,424
-5088,281
-5089,281
-5091,281
-5101,281
-5141,281
-5142,281
-5143,281
-5146,281
-5148,281
-5149,281
-5150,281
-5151,281
-5152,281
-5153,281
-5154,281
-5155,281
-5156,281
-5158,281
-5159,281
-5161,281
-5201,295
-5250,295
-5251,295
-5252,295
-5253,424
-5254,295
-5255,295
-5257,295
-5260,295
-5261,295
-5262,295
-5301,281
-5302,281
-5303,281
-5304,281
-5340,281
-5341,281
-5342,295
-5343,281
-5344,281
-5345,281
-5346,281
-5350,230
-5351,281
-5352,230
-5353,281
-5354,281
-5355,281
-5356,295
-5357,281
-5358,295
-5359,281
-5360,281
-5361,295
-5362,281
-5363,295
-5401,424
-5402,424
-5403,424
-5404,424
-5405,424
-5406,424
-5407,424
-5408,424
-5439,424
-5440,424
-5441,424
-5442,424
-5443,424
-5444,424
-5445,424
-5446,424
-5447,424
-5448,424
-5449,424
-5450,424
-5451,424
-5452,424
-5453,424
-5454,424
-5455,424
-5456,424
-5457,424
-5458,424
-5459,424
-5460,424
-5461,424
-5462,424
-5463,424
-5464,424
-5465,424
-5466,424
-5468,424
-5469,424
-5470,424
-5471,424
-5472,424
-5473,424
-5474,424
-5476,424
-5477,424
-5478,424
-5479,424
-5481,424
-5482,424
-5483,424
-5485,424
-5486,424
-5487,424
-5488,424
-5489,424
-5490,424
-5491,424
-5492,424
-5494,424
-5495,424
-5501,227
-5601,424
-5602,424
-5603,424
-5604,424
-5609,424
-5620,424
-5633,424
-5640,424
-5641,424
-5647,424
-5648,424
-5649,424
-5650,424
-5651,424
-5652,424
-5653,424
-5654,424
-5655,424
-5656,424
-5657,424
-5658,424
-5660,424
-5661,424
-5662,424
-5663,424
-5664,424
-5665,424
-5666,424
-5667,424
-5669,281
-5670,424
-5671,424
-5672,424
-5673,424
-5674,424
-5675,424
-5676,424
-5677,424
-5678,424
-5679,424
-5680,424
-5681,424
-5682,424
-5701,424
-5702,424
-5730,424
-5731,424
-5732,424
-5733,424
-5734,424
-5735,424
-5736,424
-5737,424
-5738,424
-5739,424
-5740,424
-5741,424
-5742,424
-5743,424
-5744,424
-5745,424
-5746,281
-5747,281
-5748,281
-5750,424
-5751,424
-5753,424
-5757,424
-5758,424
-5759,424
-5760,424
-5761,424
-5762,281
-5763,424
-5764,424
-5765,424
-5766,424
-5767,281
-5768,295
-5769,424
-5770,424
-5772,281
-5773,424
-5774,424
-5775,424
-5776,295
-5777,424
-5778,424
-5819,281
-5820,281
-5821,281
-5822,281
-5823,281
-5824,281
-5825,281
-5826,424
-5827,424
-5828,281
-5829,281
-5830,281
-5832,281
-5833,281
-5836,281
-5837,281
-5838,281
-5839,281
-5840,281
-5841,424
-5842,424
-5843,424
-5845,281
-5846,281
-5847,424
-5848,281
-5849,281
-5850,281
-5851,281
-5853,281
-5855,281
-5857,281
-5858,281
-5859,281
-5860,281
-5861,281
-5862,281
-5863,281
-5866,281
-5867,281
-5868,281
-5871,281
-5872,281
-5873,281
-5874,281
-5875,281
-5901,281
-5902,281
-5903,281
-5904,281
-5905,281
-5906,281
-5907,281
-6001,110
-6002,110
-6006,110
-6010,110
-6011,110
-6013,110
-6016,110
-6018,110
-6019,110
-6020,110
-6021,110
-6022,110
-6023,110
-6024,110
-6025,110
-6026,110
-6027,110
-6028,110
-6029,110
-6030,110
-6031,110
-6032,110
-6033,110
-6034,110
-6035,110
-6037,110
-6039,110
-6040,110
-6041,110
-6042,110
-6043,110
-6045,110
-6050,110
-6051,110
-6052,110
-6053,110
-6057,110
-6058,110
-6059,110
-6060,110
-6061,110
-6062,110
-6063,110
-6064,110
-6065,110
-6066,110
-6067,110
-6068,110
-6069,110
-6070,110
-6071,110
-6072,110
-6073,110
-6074,110
-6075,110
-6076,110
-6077,110
-6078,110
-6079,110
-6080,110
-6081,110
-6082,110
-6083,110
-6084,110
-6085,110
-6088,110
-6089,110
-6090,110
-6091,110
-6092,110
-6093,110
-6094,110
-6095,110
-6096,110
-6098,110
-6101,110
-6102,110
-6103,110
-6104,110
-6105,110
-6106,110
-6107,110
-6108,110
-6109,110
-6110,110
-6111,110
-6112,110
-6114,110
-6115,110
-6117,110
-6118,110
-6119,110
-6120,110
-6123,110
-6126,110
-6127,110
-6128,110
-6129,110
-6131,110
-6132,110
-6133,110
-6134,110
-6137,110
-6138,110
-6140,110
-6141,110
-6142,110
-6143,110
-6144,110
-6145,110
-6146,110
-6147,110
-6150,110
-6151,110
-6152,110
-6153,110
-6154,110
-6155,110
-6156,110
-6160,110
-6161,110
-6167,110
-6176,110
-6180,110
-6183,110
-6199,110
-6226,110
-6230,110
-6231,110
-6232,110
-6233,110
-6234,110
-6235,110
-6237,110
-6238,110
-6239,110
-6241,110
-6242,110
-6243,110
-6244,110
-6245,110
-6246,110
-6247,110
-6248,110
-6249,110
-6250,110
-6251,110
-6254,110
-6255,110
-6256,110
-6258,110
-6259,110
-6260,110
-6262,110
-6263,110
-6264,110
-6265,110
-6266,110
-6267,110
-6268,110
-6269,110
-6277,110
-6278,110
-6279,110
-6280,110
-6281,110
-6282,110
-6320,111
-6330,110
-6331,110
-6332,110
-6333,111
-6334,110
-6335,111
-6336,110
-6338,111
-6339,111
-6340,111
-6349,111
-6350,110
-6351,110
-6353,111
-6354,110
-6355,111
-6357,111
-6359,364
-6360,110
-6365,110
-6370,111
-6371,111
-6372,111
-6373,110
-6374,110
-6375,111
-6376,111
-6377,110
-6378,364
-6379,364
-6380,110
-6382,111
-6383,110
-6384,110
-6385,111
-6387,110
-6388,111
-6389,110
-6390,111
-6401,111
-6403,111
-6404,111
-6405,111
-6408,111
-6409,110
-6410,111
-6411,111
-6412,110
-6413,110
-6414,110
-6415,110
-6416,110
-6417,110
-6418,111
-6419,110
-6420,111
-6422,110
-6423,110
-6424,110
-6426,110
-6437,111
-6438,110
-6439,111
-6440,111
-6441,110
-6442,110
-6443,111
-6444,111
-6447,110
-6450,111
-6451,111
-6455,110
-6456,110
-6457,110
-6459,110
-6460,111
-6461,111
-6467,111
-6468,109
-6469,110
-6470,111
-6471,111
-6472,111
-6473,111
-6474,110
-6475,110
-6477,111
-6478,111
-6479,111
-6480,110
-6481,110
-6482,111
-6483,111
-6484,111
-6487,111
-6488,111
-6489,111
-6491,109
-6492,111
-6493,111
-6494,111
-6495,111
-6498,110
-6501,111
-6502,111
-6503,111
-6504,111
-6505,111
-6506,111
-6507,111
-6508,111
-6509,111
-6510,111
-6511,111
-6512,111
-6513,111
-6514,111
-6515,111
-6516,111
-6517,111
-6518,111
-6519,111
-6520,111
-6521,111
-6524,111
-6525,111
-6530,111
-6531,111
-6532,111
-6533,111
-6534,111
-6535,111
-6536,111
-6537,111
-6538,111
-6540,111
-6601,109
-6602,109
-6604,109
-6605,109
-6606,109
-6607,109
-6608,109
-6610,109
-6611,109
-6612,109
-6614,109
-6615,109
-6673,109
-6699,109
-6701,111
-6702,111
-6703,111
-6704,111
-6705,111
-6706,111
-6708,111
-6710,111
-6712,111
-6716,111
-6720,111
-6721,111
-6722,111
-6723,111
-6724,111
-6725,111
-6726,111
-6749,111
-6750,110
-6751,111
-6752,111
-6753,110
-6754,110
-6755,111
-6756,110
-6757,110
-6758,110
-6759,110
-6762,111
-6763,110
-6770,111
-6776,111
-6777,111
-6778,110
-6779,111
-6781,110
-6782,111
-6783,111
-6784,111
-6785,111
-6786,110
-6787,111
-6790,110
-6791,110
-6792,110
-6793,111
-6794,111
-6795,111
-6796,110
-6798,111
-6801,111
-6804,111
-6807,109
-6810,111
-6811,111
-6812,111
-6813,111
-6814,111
-6816,111
-6817,111
-6820,109
-6824,109
-6825,109
-6828,109
-6829,109
-6830,109
-6831,109
-6836,109
-6838,109
-6840,109
-6850,109
-6851,109
-6852,109
-6853,109
-6854,109
-6855,109
-6856,109
-6857,109
-6858,109
-6860,109
-6870,109
-6875,111
-6876,111
-6877,111
-6878,109
-6879,111
-6880,109
-6881,109
-6883,109
-6888,109
-6889,109
-6890,109
-6896,111
-6897,109
-6901,109
-6902,109
-6903,109
-6904,109
-6905,109
-6906,109
-6907,109
-6910,109
-6911,109
-6912,109
-6913,109
-6914,109
-6926,109
-6927,109
-7001,289
-7002,289
-7003,289
-7004,289
-7005,285
-7006,289
-7007,289
-7008,289
-7009,289
-7010,284
-7011,284
-7012,284
-7013,284
-7014,284
-7015,284
-7016,289
-7017,289
-7018,289
-7019,289
-7020,284
-7021,289
-7022,284
-7023,285
-7024,284
-7026,284
-7027,285
-7028,289
-7029,289
-7030,284
-7031,289
-7032,289
-7033,289
-7034,285
-7035,291
-7036,289
-7039,289
-7040,289
-7041,285
-7042,289
-7043,289
-7044,289
-7045,285
-7046,285
-7047,284
-7050,289
-7051,289
-7052,289
-7054,285
-7055,284
-7057,284
-7058,285
-7059,285
-7060,285
-7061,285
-7062,285
-7063,285
-7064,288
-7065,289
-7066,289
-7067,288
-7068,289
-7069,285
-7070,284
-7071,284
-7072,284
-7073,284
-7074,284
-7075,284
-7076,285
-7077,288
-7078,285
-7079,289
-7080,285
-7081,285
-7082,285
-7083,289
-7086,284
-7087,284
-7088,285
-7090,285
-7091,285
-7092,285
-7093,284
-7094,284
-7095,288
-7096,284
-7097,289
-7099,289
-7101,289
-7102,289
-7103,289
-7104,289
-7105,289
-7106,289
-7107,289
-7108,289
-7109,289
-7110,289
-7111,289
-7112,289
-7114,289
-7175,289
-7184,289
-7188,289
-7189,289
-7191,289
-7192,289
-7193,289
-7195,289
-7198,289
-7199,289
-7201,289
-7202,289
-7203,289
-7204,289
-7205,289
-7206,289
-7207,289
-7208,289
-7302,289
-7303,289
-7304,289
-7305,289
-7306,289
-7307,289
-7308,289
-7310,289
-7311,289
-7395,289
-7399,289
-7401,292
-7403,291
-7405,291
-7407,291
-7410,292
-7416,285
-7417,292
-7418,292
-7419,285
-7420,291
-7421,291
-7422,285
-7423,292
-7424,291
-7428,285
-7430,292
-7432,292
-7435,291
-7436,292
-7438,285
-7439,285
-7440,291
-7442,291
-7444,291
-7446,292
-7450,292
-7451,292
-7452,292
-7456,291
-7457,291
-7458,292
-7460,285
-7461,285
-7462,285
-7463,292
-7465,291
-7470,291
-7474,291
-7480,291
-7481,292
-7495,292
-7501,291
-7502,291
-7503,291
-7504,291
-7505,291
-7506,292
-7507,292
-7508,291
-7509,291
-7510,291
-7511,291
-7512,291
-7513,291
-7514,291
-7522,291
-7524,291
-7533,291
-7538,291
-7543,291
-7544,291
-7601,284
-7602,284
-7603,284
-7604,284
-7605,284
-7606,284
-7607,284
-7608,284
-7620,284
-7621,284
-7624,284
-7626,284
-7627,284
-7628,284
-7630,284
-7631,284
-7632,284
-7640,284
-7641,284
-7642,284
-7643,284
-7644,284
-7645,284
-7646,284
-7647,284
-7648,284
-7649,284
-7650,284
-7652,284
-7653,284
-7656,284
-7657,284
-7660,284
-7661,284
-7662,284
-7663,284
-7666,284
-7670,284
-7675,284
-7676,284
-7677,284
-7699,284
-7701,283
-7702,283
-7703,283
-7704,283
-7710,283
-7711,283
-7712,283
-7715,283
-7716,283
-7717,283
-7718,283
-7719,283
-7720,283
-7721,283
-7722,283
-7723,283
-7724,283
-7726,283
-7727,283
-7728,283
-7730,283
-7731,283
-7732,283
-7733,283
-7734,283
-7735,283
-7737,283
-7738,283
-7739,283
-7740,283
-7746,283
-7747,283
-7748,283
-7750,283
-7751,283
-7752,283
-7753,283
-7754,283
-7755,283
-7756,283
-7757,283
-7758,283
-7760,283
-7762,283
-7763,283
-7764,283
-7765,283
-7799,283
-7801,285
-7802,285
-7803,285
-7806,285
-7820,285
-7821,285
-7822,285
-7823,346
-7825,285
-7826,285
-7827,285
-7828,285
-7829,346
-7830,356
-7831,356
-7832,285
-7833,285
-7834,285
-7836,285
-7837,285
-7838,285
-7839,285
-7840,285
-7842,285
-7843,285
-7844,285
-7845,285
-7846,285
-7847,285
-7848,285
-7849,285
-7850,285
-7851,285
-7852,285
-7853,285
-7855,285
-7856,285
-7857,285
-7860,285
-7863,346
-7865,285
-7866,285
-7869,285
-7870,285
-7871,285
-7874,285
-7875,285
-7876,285
-7877,285
-7878,285
-7879,285
-7880,285
-7881,285
-7882,346
-7885,285
-7890,285
-7901,285
-7902,285
-7920,285
-7921,285
-7922,285
-7924,285
-7926,285
-7927,285
-7928,285
-7930,285
-7931,285
-7932,285
-7933,285
-7934,285
-7935,285
-7936,285
-7938,285
-7939,285
-7940,285
-7945,285
-7946,285
-7950,285
-7960,285
-7961,285
-7962,285
-7963,285
-7970,285
-7974,285
-7976,285
-7977,285
-7978,285
-7979,356
-7980,285
-7981,285
-7999,285
-8001,283
-8002,283
-8003,283
-8004,283
-8005,283
-8006,283
-8007,283
-8008,283
-8009,283
-8010,283
-8011,283
-8012,283
-8014,356
-8015,283
-8016,283
-8018,283
-8019,283
-8020,356
-8021,283
-8022,283
-8023,112
-8025,356
-8026,283
-8027,356
-8028,283
-8029,283
-8030,283
-8031,283
-8032,283
-8033,283
-8034,283
-8035,283
-8036,283
-8037,283
-8038,112
-8039,356
-8041,283
-8042,283
-8043,283
-8045,283
-8046,283
-8048,283
-8049,283
-8050,283
-8051,356
-8052,283
-8053,283
-8054,283
-8055,283
-8056,356
-8057,283
-8059,283
-8060,283
-8061,356
-8062,356
-8063,356
-8064,283
-8065,283
-8066,356
-8067,112
-8068,283
-8069,112
-8070,112
-8071,356
-8072,112
-8073,283
-8074,356
-8075,283
-8076,283
-8077,283
-8078,283
-8079,112
-8080,283
-8081,283
-8083,283
-8084,283
-8085,356
-8086,356
-8087,283
-8088,283
-8089,283
-8090,356
-8091,283
-8092,283
-8093,356
-8094,283
-8095,283
-8096,356
-8097,356
-8098,112
-8099,283
-8101,283
-8102,283
-8103,283
-8104,283
-8105,283
-8106,283
-8107,283
-8108,283
-8109,283
-8110,283
-8201,283
-8202,283
-8203,283
-8204,283
-8205,283
-8210,283
-8212,283
-8213,283
-8214,283
-8215,283
-8217,283
-8218,283
-8219,283
-8220,283
-8221,283
-8223,283
-8224,283
-8225,283
-8226,283
-8230,283
-8231,283
-8232,283
-8234,283
-8240,283
-8241,283
-8242,283
-8243,283
-8244,283
-8245,283
-8246,283
-8247,283
-8248,283
-8250,283
-8251,283
-8252,283
-8260,283
-8270,283
-8302,283
-8310,283
-8311,283
-8312,283
-8313,283
-8314,283
-8315,283
-8316,283
-8317,283
-8318,283
-8319,283
-8320,283
-8321,283
-8322,283
-8323,283
-8324,283
-8326,283
-8327,283
-8328,283
-8329,283
-8330,283
-8332,283
-8340,283
-8341,283
-8342,283
-8343,283
-8344,283
-8345,283
-8346,283
-8347,283
-8348,283
-8349,283
-8350,283
-8352,283
-8353,283
-8360,283
-8361,283
-8362,283
-8401,283
-8402,283
-8403,283
-8404,283
-8405,283
-8406,283
-8501,356
-8502,288
-8504,288
-8505,356
-8510,283
-8511,283
-8512,288
-8514,283
-8515,283
-8518,283
-8520,288
-8525,288
-8526,283
-8527,283
-8528,288
-8530,356
-8533,283
-8534,356
-8535,283
-8536,288
-8540,288
-8541,288
-8542,288
-8543,288
-8544,288
-8550,288
-8551,356
-8553,288
-8554,283
-8555,283
-8556,356
-8557,356
-8558,288
-8559,356
-8560,356
-8561,356
-8562,283
-8601,356
-8602,356
-8603,356
-8604,356
-8605,356
-8606,356
-8607,356
-8608,356
-8609,356
-8610,356
-8611,356
-8618,356
-8619,356
-8620,356
-8625,356
-8628,356
-8629,356
-8638,356
-8640,283
-8641,283
-8645,356
-8646,356
-8647,356
-8648,356
-8650,356
-8666,356
-8690,356
-8691,356
-8695,356
-8701,283
-8720,283
-8721,283
-8722,283
-8723,283
-8724,283
-8730,283
-8731,283
-8732,283
-8733,283
-8734,283
-8735,283
-8736,283
-8738,283
-8739,283
-8740,283
-8741,283
-8742,283
-8750,283
-8751,283
-8752,283
-8753,283
-8754,283
-8755,283
-8756,283
-8757,283
-8758,283
-8759,283
-8801,356
-8802,346
-8803,356
-8804,346
-8805,288
-8807,288
-8808,346
-8809,356
-8810,288
-8812,285
-8816,288
-8817,288
-8818,288
-8820,288
-8821,285
-8822,356
-8823,288
-8824,288
-8825,356
-8826,356
-8827,356
-8828,288
-8829,356
-8830,288
-8831,288
-8832,288
-8833,356
-8834,346
-8835,288
-8836,288
-8837,288
-8840,288
-8844,288
-8846,288
-8848,346
-8850,288
-8852,288
-8853,288
-8854,288
-8855,288
-8857,288
-8858,356
-8859,288
-8861,288
-8862,288
-8863,288
-8865,346
-8867,356
-8868,356
-8869,288
-8870,356
-8871,288
-8872,288
-8873,288
-8875,288
-8876,288
-8879,288
-8880,288
-8882,288
-8884,288
-8885,356
-8886,346
-8887,356
-8888,356
-8889,356
-8890,288
-8899,288
-8901,288
-8902,288
-8903,288
-8904,288
-8906,288
-8933,288
-8989,288
+00501,301
+00544,301
+01001,230
+01002,230
+01003,230
+01004,230
+01005,231
+01007,230
+01008,230
+01009,230
+01010,231
+01011,295
+01012,230
+01013,230
+01014,230
+01020,230
+01021,230
+01022,230
+01026,230
+01027,230
+01028,230
+01029,230
+01030,230
+01031,230
+01032,230
+01033,230
+01034,230
+01035,230
+01036,230
+01037,230
+01038,230
+01039,230
+01040,230
+01041,230
+01050,230
+01053,230
+01054,230
+01056,230
+01057,230
+01059,230
+01060,230
+01061,230
+01062,230
+01063,230
+01066,230
+01068,231
+01069,230
+01070,230
+01071,230
+01072,230
+01073,230
+01074,231
+01075,230
+01077,230
+01079,230
+01080,230
+01081,231
+01082,230
+01083,230
+01084,230
+01085,230
+01086,230
+01088,230
+01089,230
+01090,230
+01092,230
+01093,230
+01094,230
+01095,230
+01096,230
+01097,230
+01098,230
+01101,230
+01102,230
+01103,230
+01104,230
+01105,230
+01106,230
+01107,230
+01108,230
+01109,230
+01111,230
+01115,230
+01116,230
+01118,230
+01119,230
+01128,230
+01129,230
+01138,230
+01139,230
+01144,230
+01151,230
+01152,230
+01199,230
+01201,295
+01202,295
+01203,295
+01220,230
+01222,230
+01223,295
+01224,295
+01225,295
+01226,295
+01227,295
+01229,295
+01230,230
+01235,295
+01236,230
+01237,295
+01238,295
+01240,295
+01242,295
+01243,295
+01244,230
+01245,230
+01247,230
+01252,230
+01253,230
+01254,295
+01255,230
+01256,230
+01257,230
+01258,230
+01259,230
+01260,295
+01262,295
+01263,295
+01264,295
+01266,295
+01267,230
+01270,295
+01301,230
+01302,230
+01330,230
+01331,231
+01337,230
+01338,230
+01339,230
+01340,230
+01341,230
+01342,230
+01343,230
+01344,230
+01346,230
+01347,230
+01349,230
+01350,230
+01351,230
+01354,230
+01355,231
+01360,230
+01364,231
+01366,231
+01367,230
+01368,231
+01370,230
+01373,230
+01375,230
+01376,230
+01378,231
+01379,230
+01380,230
+01420,231
+01430,231
+01431,231
+01432,227
+01434,227
+01436,231
+01438,231
+01440,231
+01441,231
+01450,227
+01451,227
+01452,231
+01453,231
+01460,227
+01462,231
+01463,227
+01464,227
+01467,227
+01468,231
+01469,227
+01470,227
+01471,227
+01472,227
+01473,231
+01474,231
+01475,231
+01501,231
+01503,231
+01504,364
+01505,231
+01506,231
+01507,231
+01508,231
+01509,231
+01510,231
+01515,231
+01516,231
+01518,231
+01519,231
+01520,231
+01521,231
+01522,231
+01523,231
+01524,231
+01525,231
+01526,231
+01527,231
+01529,364
+01531,231
+01532,231
+01534,231
+01535,231
+01536,231
+01537,231
+01538,231
+01540,231
+01541,231
+01542,231
+01543,231
+01545,231
+01546,231
+01550,231
+01560,231
+01561,231
+01562,231
+01564,231
+01566,231
+01568,231
+01569,231
+01570,231
+01571,231
+01581,231
+01583,231
+01585,230
+01586,231
+01588,231
+01590,231
+01601,231
+01602,231
+01603,231
+01604,231
+01605,231
+01606,231
+01607,231
+01608,231
+01609,231
+01610,231
+01611,231
+01612,231
+01613,231
+01614,231
+01615,231
+01653,231
+01655,231
+01701,227
+01702,227
+01703,227
+01704,227
+01705,227
+01718,227
+01719,227
+01720,227
+01721,227
+01730,227
+01731,227
+01740,231
+01741,227
+01742,227
+01745,227
+01746,227
+01747,231
+01748,227
+01749,231
+01752,231
+01754,227
+01756,231
+01757,227
+01760,227
+01770,227
+01772,227
+01773,227
+01775,227
+01776,227
+01778,227
+01784,227
+01801,227
+01803,227
+01805,227
+01810,227
+01812,227
+01813,227
+01815,227
+01821,227
+01822,227
+01824,227
+01826,227
+01827,227
+01830,227
+01831,227
+01832,227
+01833,227
+01834,227
+01835,227
+01840,227
+01841,227
+01842,227
+01843,227
+01844,227
+01845,227
+01850,227
+01851,227
+01852,227
+01853,227
+01854,227
+01860,227
+01862,227
+01863,227
+01864,227
+01865,227
+01866,227
+01867,227
+01876,227
+01879,227
+01880,227
+01885,227
+01886,227
+01887,227
+01888,227
+01889,227
+01890,227
+01899,227
+01901,227
+01902,227
+01903,227
+01904,227
+01905,227
+01906,227
+01907,227
+01908,227
+01910,227
+01913,227
+01915,227
+01921,227
+01922,227
+01923,227
+01929,227
+01930,227
+01931,227
+01936,227
+01937,227
+01938,227
+01940,227
+01944,227
+01945,227
+01949,227
+01950,227
+01951,227
+01952,227
+01960,227
+01961,227
+01965,227
+01966,227
+01969,227
+01970,227
+01971,227
+01982,227
+01983,227
+01984,227
+01985,227
+02018,227
+02019,364
+02020,227
+02021,227
+02025,227
+02026,227
+02027,227
+02030,227
+02032,227
+02035,227
+02038,227
+02040,227
+02041,227
+02043,227
+02044,227
+02045,227
+02047,227
+02048,364
+02050,227
+02051,227
+02052,227
+02053,227
+02054,227
+02055,227
+02056,227
+02059,227
+02060,227
+02061,227
+02062,227
+02065,227
+02066,227
+02067,227
+02070,227
+02071,227
+02072,227
+02081,227
+02090,227
+02093,227
+02108,227
+02109,227
+02110,227
+02111,227
+02112,227
+02113,227
+02114,227
+02115,227
+02116,227
+02117,227
+02118,227
+02119,227
+02120,227
+02121,227
+02122,227
+02123,227
+02124,227
+02125,227
+02126,227
+02127,227
+02128,227
+02129,227
+02130,227
+02131,227
+02132,227
+02133,227
+02134,227
+02135,227
+02136,227
+02137,227
+02138,227
+02139,227
+02140,227
+02141,227
+02142,227
+02143,227
+02144,227
+02145,227
+02148,227
+02149,227
+02150,227
+02151,227
+02152,227
+02153,227
+02155,227
+02156,227
+02163,227
+02169,227
+02170,227
+02171,227
+02176,227
+02180,227
+02184,227
+02185,227
+02186,227
+02187,227
+02188,227
+02189,227
+02190,227
+02191,227
+02196,227
+02199,227
+02201,227
+02203,227
+02204,227
+02205,227
+02206,227
+02210,227
+02211,227
+02212,227
+02215,227
+02217,227
+02222,227
+02238,227
+02241,227
+02266,227
+02269,227
+02283,227
+02284,227
+02293,227
+02297,227
+02298,227
+02301,227
+02302,227
+02303,227
+02304,227
+02305,227
+02322,227
+02324,227
+02325,227
+02327,227
+02330,227
+02331,227
+02332,227
+02333,227
+02334,227
+02337,227
+02338,227
+02339,227
+02341,227
+02343,227
+02344,227
+02345,227
+02346,227
+02347,227
+02348,227
+02349,227
+02350,227
+02351,227
+02355,227
+02356,227
+02357,227
+02358,227
+02359,227
+02360,227
+02361,227
+02362,227
+02364,227
+02366,227
+02367,227
+02368,227
+02370,227
+02375,227
+02379,227
+02381,227
+02382,227
+02420,227
+02421,227
+02445,227
+02446,227
+02447,227
+02451,227
+02452,227
+02453,227
+02454,227
+02455,227
+02456,227
+02457,227
+02458,227
+02459,227
+02460,227
+02461,227
+02462,227
+02464,227
+02465,227
+02466,227
+02467,227
+02468,227
+02471,227
+02472,227
+02474,227
+02475,227
+02476,227
+02477,227
+02478,227
+02479,227
+02481,227
+02482,227
+02492,227
+02493,227
+02494,227
+02495,227
+02532,227
+02534,227
+02535,227
+02536,227
+02537,227
+02538,227
+02539,227
+02540,227
+02541,227
+02542,227
+02543,227
+02552,227
+02553,227
+02554,227
+02556,227
+02557,227
+02558,227
+02559,227
+02561,227
+02562,227
+02563,227
+02564,227
+02568,227
+02571,227
+02574,227
+02575,227
+02576,227
+02584,227
+02601,227
+02630,227
+02631,227
+02632,227
+02633,227
+02634,227
+02635,227
+02637,227
+02638,227
+02639,227
+02641,227
+02642,227
+02643,227
+02644,227
+02645,227
+02646,227
+02647,227
+02648,227
+02649,227
+02650,227
+02651,227
+02652,227
+02653,227
+02655,227
+02657,227
+02659,227
+02660,227
+02661,227
+02662,227
+02663,227
+02664,227
+02666,227
+02667,227
+02668,227
+02669,227
+02670,227
+02671,227
+02672,227
+02673,227
+02675,227
+02702,227
+02703,364
+02712,364
+02713,227
+02714,227
+02715,227
+02717,227
+02718,227
+02719,227
+02720,227
+02721,227
+02722,227
+02723,227
+02724,227
+02725,227
+02726,227
+02738,227
+02739,227
+02740,227
+02741,227
+02742,227
+02743,227
+02744,227
+02745,227
+02746,227
+02747,227
+02748,227
+02760,364
+02761,364
+02762,364
+02763,364
+02764,227
+02766,364
+02767,227
+02768,227
+02769,364
+02770,227
+02771,364
+02777,227
+02779,227
+02780,227
+02790,227
+02791,227
+02801,227
+02802,364
+02804,364
+02806,364
+02807,364
+02808,364
+02809,364
+02812,364
+02813,364
+02814,364
+02815,364
+02816,364
+02817,364
+02818,364
+02822,364
+02823,364
+02824,364
+02825,364
+02826,364
+02827,364
+02828,364
+02829,364
+02830,364
+02831,364
+02832,364
+02833,364
+02835,364
+02836,364
+02837,227
+02838,364
+02839,364
+02840,364
+02841,364
+02842,364
+02852,364
+02857,364
+02858,364
+02859,364
+02860,364
+02861,364
+02862,364
+02863,364
+02864,364
+02865,364
+02871,364
+02872,364
+02873,364
+02874,364
+02875,364
+02876,364
+02877,364
+02878,227
+02879,364
+02880,364
+02881,364
+02882,364
+02883,364
+02885,364
+02886,364
+02887,364
+02888,364
+02889,364
+02891,364
+02892,364
+02893,364
+02894,364
+02895,364
+02896,364
+02898,364
+02901,364
+02902,364
+02903,364
+02904,364
+02905,364
+02906,364
+02907,364
+02908,364
+02909,364
+02910,364
+02911,364
+02912,364
+02914,364
+02915,364
+02916,364
+02917,364
+02918,364
+02919,364
+02920,364
+02921,364
+02940,364
+03031,282
+03032,282
+03033,282
+03034,282
+03036,282
+03037,282
+03038,282
+03040,282
+03041,282
+03042,282
+03043,282
+03044,282
+03045,282
+03046,282
+03047,282
+03048,282
+03049,282
+03051,282
+03052,282
+03053,282
+03054,282
+03055,282
+03057,282
+03060,282
+03061,282
+03062,282
+03063,282
+03064,282
+03070,282
+03071,282
+03073,227
+03076,227
+03077,282
+03079,227
+03082,282
+03084,282
+03086,282
+03087,282
+03101,282
+03102,282
+03103,282
+03104,282
+03105,282
+03106,282
+03108,282
+03109,282
+03110,282
+03111,282
+03215,282
+03216,281
+03217,282
+03218,282
+03220,282
+03221,281
+03222,282
+03223,282
+03224,282
+03225,282
+03226,282
+03227,282
+03229,282
+03230,281
+03231,282
+03233,281
+03234,282
+03235,282
+03237,282
+03238,281
+03240,281
+03241,282
+03242,282
+03243,282
+03244,282
+03245,282
+03246,282
+03247,282
+03249,282
+03251,281
+03252,282
+03253,282
+03254,282
+03255,281
+03256,282
+03257,281
+03258,282
+03259,282
+03260,282
+03261,282
+03262,281
+03263,282
+03264,282
+03266,282
+03268,282
+03269,282
+03272,281
+03273,282
+03275,282
+03276,282
+03278,282
+03279,281
+03280,282
+03281,282
+03282,282
+03284,281
+03285,282
+03287,281
+03289,282
+03290,222
+03291,222
+03293,281
+03298,282
+03299,282
+03301,282
+03302,282
+03303,282
+03304,282
+03305,282
+03307,282
+03431,281
+03435,281
+03440,282
+03441,281
+03442,282
+03443,281
+03444,281
+03445,281
+03446,281
+03447,281
+03448,281
+03449,282
+03450,281
+03451,281
+03452,282
+03455,281
+03456,281
+03457,281
+03458,282
+03461,282
+03462,281
+03464,281
+03465,281
+03466,281
+03467,281
+03468,282
+03469,281
+03470,281
+03561,281
+03570,281
+03574,281
+03575,281
+03576,281
+03579,281
+03580,281
+03581,281
+03582,281
+03583,281
+03584,281
+03585,281
+03586,281
+03588,281
+03589,222
+03590,281
+03592,281
+03593,281
+03595,281
+03597,281
+03598,281
+03601,281
+03602,281
+03603,281
+03604,281
+03605,281
+03607,281
+03608,281
+03609,281
+03740,281
+03741,281
+03743,281
+03745,281
+03746,281
+03748,281
+03749,281
+03750,281
+03751,281
+03752,281
+03753,281
+03754,281
+03755,281
+03756,281
+03765,281
+03766,281
+03768,281
+03769,281
+03770,281
+03771,281
+03773,281
+03774,281
+03777,281
+03779,281
+03780,281
+03781,281
+03782,281
+03784,281
+03785,281
+03801,282
+03802,282
+03803,282
+03804,222
+03809,282
+03810,282
+03811,227
+03812,222
+03813,222
+03814,282
+03815,222
+03816,282
+03817,222
+03818,222
+03819,282
+03820,222
+03821,222
+03822,222
+03823,222
+03824,222
+03825,222
+03826,227
+03827,282
+03830,282
+03832,222
+03833,282
+03835,222
+03836,282
+03837,282
+03838,222
+03839,222
+03840,282
+03841,282
+03842,282
+03843,282
+03844,282
+03845,222
+03846,222
+03847,222
+03848,282
+03849,222
+03850,282
+03851,222
+03852,222
+03853,282
+03854,282
+03855,222
+03856,282
+03857,282
+03858,282
+03859,282
+03860,222
+03861,222
+03862,282
+03864,282
+03865,227
+03866,222
+03867,222
+03868,222
+03869,222
+03870,282
+03871,282
+03872,282
+03873,282
+03874,227
+03875,222
+03878,222
+03882,282
+03883,282
+03884,222
+03885,282
+03886,282
+03887,222
+03890,282
+03894,282
+03896,282
+03897,282
+03901,222
+03902,222
+03903,222
+03904,222
+03905,222
+03906,222
+03907,222
+03908,222
+03909,222
+03910,222
+03911,222
+04001,222
+04002,222
+04003,222
+04004,222
+04005,222
+04006,222
+04007,222
+04008,222
+04009,222
+04010,222
+04011,222
+04013,222
+04014,222
+04015,222
+04016,222
+04017,222
+04019,222
+04020,222
+04021,222
+04022,222
+04024,222
+04027,222
+04028,222
+04029,222
+04030,222
+04032,222
+04033,222
+04034,222
+04037,222
+04038,222
+04039,222
+04040,222
+04041,222
+04042,222
+04043,222
+04046,222
+04047,222
+04048,222
+04049,222
+04050,222
+04051,222
+04054,222
+04055,222
+04056,222
+04057,222
+04061,222
+04062,222
+04063,222
+04064,222
+04066,222
+04068,222
+04069,222
+04070,222
+04071,222
+04072,222
+04073,222
+04074,222
+04076,222
+04077,222
+04078,222
+04079,222
+04082,222
+04083,222
+04084,222
+04085,222
+04086,222
+04087,222
+04088,222
+04090,222
+04091,222
+04092,222
+04093,222
+04094,222
+04095,222
+04096,222
+04097,222
+04098,222
+04101,222
+04102,222
+04103,222
+04104,222
+04105,222
+04106,222
+04107,222
+04108,222
+04109,222
+04110,222
+04112,222
+04116,222
+04122,222
+04123,222
+04124,222
+04210,222
+04211,222
+04212,222
+04216,222
+04217,222
+04219,222
+04220,222
+04221,222
+04222,222
+04223,222
+04224,222
+04225,222
+04226,222
+04227,222
+04228,222
+04230,222
+04231,222
+04234,222
+04236,222
+04237,222
+04238,222
+04239,222
+04240,222
+04241,222
+04243,222
+04250,222
+04252,222
+04253,222
+04254,222
+04255,222
+04256,222
+04257,222
+04258,222
+04259,222
+04260,222
+04261,222
+04262,222
+04263,222
+04265,222
+04266,222
+04267,222
+04268,222
+04270,222
+04271,222
+04274,222
+04275,222
+04276,222
+04280,222
+04281,222
+04282,222
+04284,222
+04285,222
+04286,222
+04287,222
+04288,222
+04289,222
+04290,222
+04291,222
+04292,222
+04294,222
+04330,222
+04332,222
+04333,222
+04336,222
+04338,222
+04341,222
+04342,222
+04343,222
+04344,222
+04345,222
+04346,222
+04347,222
+04348,222
+04349,222
+04350,222
+04351,222
+04352,222
+04353,222
+04354,222
+04355,222
+04357,222
+04358,222
+04359,222
+04360,222
+04363,222
+04364,222
+04401,221
+04402,221
+04406,221
+04408,221
+04410,221
+04411,221
+04412,221
+04413,221
+04414,221
+04415,221
+04416,221
+04417,221
+04418,221
+04419,221
+04420,221
+04421,221
+04422,221
+04424,221
+04426,221
+04427,221
+04428,221
+04429,221
+04430,221
+04431,221
+04434,221
+04435,221
+04438,221
+04441,221
+04442,221
+04443,221
+04444,221
+04448,221
+04449,221
+04450,221
+04451,221
+04453,221
+04454,221
+04455,221
+04456,221
+04457,221
+04459,221
+04460,221
+04461,221
+04462,221
+04463,221
+04464,221
+04468,221
+04469,221
+04471,221
+04472,221
+04473,221
+04474,221
+04475,221
+04476,221
+04478,221
+04479,221
+04481,221
+04485,221
+04487,221
+04488,221
+04489,221
+04490,221
+04491,221
+04492,221
+04493,221
+04495,221
+04496,221
+04497,221
+04530,222
+04535,222
+04537,222
+04538,222
+04539,222
+04541,222
+04543,222
+04544,222
+04547,222
+04548,222
+04549,222
+04551,222
+04553,222
+04554,222
+04555,222
+04556,222
+04558,222
+04562,222
+04563,222
+04564,222
+04565,222
+04568,222
+04570,222
+04571,222
+04572,222
+04573,222
+04574,222
+04575,222
+04576,222
+04578,222
+04579,222
+04605,221
+04606,221
+04607,221
+04609,221
+04611,221
+04612,221
+04613,221
+04614,221
+04616,221
+04617,221
+04619,221
+04622,221
+04623,221
+04624,221
+04625,221
+04626,221
+04627,221
+04628,221
+04629,221
+04630,221
+04631,221
+04634,221
+04635,221
+04637,221
+04640,221
+04642,221
+04643,221
+04644,221
+04645,221
+04646,221
+04648,221
+04649,221
+04650,221
+04652,221
+04653,221
+04654,221
+04655,221
+04657,221
+04658,221
+04660,221
+04662,221
+04664,221
+04666,221
+04667,221
+04668,221
+04669,221
+04671,221
+04672,221
+04673,221
+04674,221
+04675,221
+04676,221
+04677,221
+04679,221
+04680,221
+04681,221
+04683,221
+04684,221
+04685,221
+04686,221
+04691,221
+04693,221
+04694,221
+04730,221
+04732,221
+04733,221
+04734,221
+04735,221
+04736,221
+04737,221
+04738,221
+04739,221
+04740,221
+04741,221
+04742,221
+04743,221
+04744,221
+04745,221
+04746,221
+04747,221
+04750,221
+04751,221
+04756,221
+04757,221
+04758,221
+04760,221
+04761,221
+04762,221
+04763,221
+04764,221
+04765,221
+04766,221
+04768,221
+04769,221
+04772,221
+04773,221
+04774,221
+04775,221
+04776,221
+04777,221
+04779,221
+04780,221
+04781,221
+04783,221
+04785,221
+04786,221
+04787,221
+04841,222
+04843,222
+04847,222
+04848,222
+04849,222
+04850,222
+04851,222
+04852,222
+04853,222
+04854,222
+04855,222
+04856,222
+04858,222
+04859,222
+04860,222
+04861,222
+04862,222
+04863,222
+04864,222
+04865,222
+04901,222
+04903,222
+04910,222
+04911,221
+04912,221
+04915,221
+04917,222
+04918,222
+04920,221
+04921,221
+04922,222
+04923,221
+04924,221
+04925,222
+04926,222
+04927,222
+04928,221
+04929,221
+04930,221
+04932,221
+04933,221
+04935,222
+04936,222
+04937,222
+04938,222
+04939,221
+04940,222
+04941,222
+04942,221
+04943,221
+04944,222
+04945,222
+04947,222
+04949,221
+04950,221
+04951,221
+04952,221
+04953,221
+04954,222
+04955,222
+04956,222
+04957,221
+04958,221
+04961,221
+04962,222
+04963,222
+04964,222
+04965,221
+04966,222
+04967,221
+04969,221
+04970,222
+04971,221
+04972,221
+04973,222
+04974,221
+04975,222
+04976,221
+04978,222
+04979,221
+04981,221
+04982,222
+04983,222
+04984,222
+04985,222
+04986,222
+04987,222
+04988,222
+04989,222
+04992,222
+05001,281
+05009,281
+05030,281
+05031,281
+05032,281
+05033,281
+05034,281
+05035,281
+05036,424
+05037,281
+05038,281
+05039,281
+05040,281
+05041,424
+05042,281
+05043,281
+05045,281
+05046,281
+05047,281
+05048,281
+05049,281
+05050,281
+05051,281
+05052,281
+05053,281
+05054,281
+05055,281
+05056,281
+05058,281
+05059,281
+05060,281
+05061,281
+05062,281
+05065,281
+05067,281
+05068,281
+05069,281
+05070,281
+05071,281
+05072,281
+05073,281
+05074,281
+05075,281
+05076,424
+05077,281
+05079,281
+05081,281
+05083,281
+05084,281
+05085,281
+05086,424
+05088,281
+05089,281
+05091,281
+05101,281
+05141,281
+05142,281
+05143,281
+05146,281
+05148,281
+05149,281
+05150,281
+05151,281
+05152,281
+05153,281
+05154,281
+05155,281
+05156,281
+05158,281
+05159,281
+05161,281
+05201,295
+05250,295
+05251,295
+05252,295
+05253,424
+05254,295
+05255,295
+05257,295
+05260,295
+05261,295
+05262,295
+05301,281
+05302,281
+05303,281
+05304,281
+05340,281
+05341,281
+05342,295
+05343,281
+05344,281
+05345,281
+05346,281
+05350,230
+05351,281
+05352,230
+05353,281
+05354,281
+05355,281
+05356,295
+05357,281
+05358,295
+05359,281
+05360,281
+05361,295
+05362,281
+05363,295
+05401,424
+05402,424
+05403,424
+05404,424
+05405,424
+05406,424
+05407,424
+05408,424
+05439,424
+05440,424
+05441,424
+05442,424
+05443,424
+05444,424
+05445,424
+05446,424
+05447,424
+05448,424
+05449,424
+05450,424
+05451,424
+05452,424
+05453,424
+05454,424
+05455,424
+05456,424
+05457,424
+05458,424
+05459,424
+05460,424
+05461,424
+05462,424
+05463,424
+05464,424
+05465,424
+05466,424
+05468,424
+05469,424
+05470,424
+05471,424
+05472,424
+05473,424
+05474,424
+05476,424
+05477,424
+05478,424
+05479,424
+05481,424
+05482,424
+05483,424
+05485,424
+05486,424
+05487,424
+05488,424
+05489,424
+05490,424
+05491,424
+05492,424
+05494,424
+05495,424
+05501,227
+05601,424
+05602,424
+05603,424
+05604,424
+05609,424
+05620,424
+05633,424
+05640,424
+05641,424
+05647,424
+05648,424
+05649,424
+05650,424
+05651,424
+05652,424
+05653,424
+05654,424
+05655,424
+05656,424
+05657,424
+05658,424
+05660,424
+05661,424
+05662,424
+05663,424
+05664,424
+05665,424
+05666,424
+05667,424
+05669,281
+05670,424
+05671,424
+05672,424
+05673,424
+05674,424
+05675,424
+05676,424
+05677,424
+05678,424
+05679,424
+05680,424
+05681,424
+05682,424
+05701,424
+05702,424
+05730,424
+05731,424
+05732,424
+05733,424
+05734,424
+05735,424
+05736,424
+05737,424
+05738,424
+05739,424
+05740,424
+05741,424
+05742,424
+05743,424
+05744,424
+05745,424
+05746,281
+05747,281
+05748,281
+05750,424
+05751,424
+05753,424
+05757,424
+05758,424
+05759,424
+05760,424
+05761,424
+05762,281
+05763,424
+05764,424
+05765,424
+05766,424
+05767,281
+05768,295
+05769,424
+05770,424
+05772,281
+05773,424
+05774,424
+05775,424
+05776,295
+05777,424
+05778,424
+05819,281
+05820,281
+05821,281
+05822,281
+05823,281
+05824,281
+05825,281
+05826,424
+05827,424
+05828,281
+05829,281
+05830,281
+05832,281
+05833,281
+05836,281
+05837,281
+05838,281
+05839,281
+05840,281
+05841,424
+05842,424
+05843,424
+05845,281
+05846,281
+05847,424
+05848,281
+05849,281
+05850,281
+05851,281
+05853,281
+05855,281
+05857,281
+05858,281
+05859,281
+05860,281
+05861,281
+05862,281
+05863,281
+05866,281
+05867,281
+05868,281
+05871,281
+05872,281
+05873,281
+05874,281
+05875,281
+05901,281
+05902,281
+05903,281
+05904,281
+05905,281
+05906,281
+05907,281
+06001,110
+06002,110
+06006,110
+06010,110
+06011,110
+06013,110
+06016,110
+06018,110
+06019,110
+06020,110
+06021,110
+06022,110
+06023,110
+06024,110
+06025,110
+06026,110
+06027,110
+06028,110
+06029,110
+06030,110
+06031,110
+06032,110
+06033,110
+06034,110
+06035,110
+06037,110
+06039,110
+06040,110
+06041,110
+06042,110
+06043,110
+06045,110
+06050,110
+06051,110
+06052,110
+06053,110
+06057,110
+06058,110
+06059,110
+06060,110
+06061,110
+06062,110
+06063,110
+06064,110
+06065,110
+06066,110
+06067,110
+06068,110
+06069,110
+06070,110
+06071,110
+06072,110
+06073,110
+06074,110
+06075,110
+06076,110
+06077,110
+06078,110
+06079,110
+06080,110
+06081,110
+06082,110
+06083,110
+06084,110
+06085,110
+06088,110
+06089,110
+06090,110
+06091,110
+06092,110
+06093,110
+06094,110
+06095,110
+06096,110
+06098,110
+06101,110
+06102,110
+06103,110
+06104,110
+06105,110
+06106,110
+06107,110
+06108,110
+06109,110
+06110,110
+06111,110
+06112,110
+06114,110
+06115,110
+06117,110
+06118,110
+06119,110
+06120,110
+06123,110
+06126,110
+06127,110
+06128,110
+06129,110
+06131,110
+06132,110
+06133,110
+06134,110
+06137,110
+06138,110
+06140,110
+06141,110
+06142,110
+06143,110
+06144,110
+06145,110
+06146,110
+06147,110
+06150,110
+06151,110
+06152,110
+06153,110
+06154,110
+06155,110
+06156,110
+06160,110
+06161,110
+06167,110
+06176,110
+06180,110
+06183,110
+06199,110
+06226,110
+06230,110
+06231,110
+06232,110
+06233,110
+06234,110
+06235,110
+06237,110
+06238,110
+06239,110
+06241,110
+06242,110
+06243,110
+06244,110
+06245,110
+06246,110
+06247,110
+06248,110
+06249,110
+06250,110
+06251,110
+06254,110
+06255,110
+06256,110
+06258,110
+06259,110
+06260,110
+06262,110
+06263,110
+06264,110
+06265,110
+06266,110
+06267,110
+06268,110
+06269,110
+06277,110
+06278,110
+06279,110
+06280,110
+06281,110
+06282,110
+06320,111
+06330,110
+06331,110
+06332,110
+06333,111
+06334,110
+06335,111
+06336,110
+06338,111
+06339,111
+06340,111
+06349,111
+06350,110
+06351,110
+06353,111
+06354,110
+06355,111
+06357,111
+06359,364
+06360,110
+06365,110
+06370,111
+06371,111
+06372,111
+06373,110
+06374,110
+06375,111
+06376,111
+06377,110
+06378,364
+06379,364
+06380,110
+06382,111
+06383,110
+06384,110
+06385,111
+06387,110
+06388,111
+06389,110
+06390,111
+06401,111
+06403,111
+06404,111
+06405,111
+06408,111
+06409,110
+06410,111
+06411,111
+06412,110
+06413,110
+06414,110
+06415,110
+06416,110
+06417,110
+06418,111
+06419,110
+06420,111
+06422,110
+06423,110
+06424,110
+06426,110
+06437,111
+06438,110
+06439,111
+06440,111
+06441,110
+06442,110
+06443,111
+06444,111
+06447,110
+06450,111
+06451,111
+06455,110
+06456,110
+06457,110
+06459,110
+06460,111
+06461,111
+06467,111
+06468,109
+06469,110
+06470,111
+06471,111
+06472,111
+06473,111
+06474,110
+06475,110
+06477,111
+06478,111
+06479,111
+06480,110
+06481,110
+06482,111
+06483,111
+06484,111
+06487,111
+06488,111
+06489,111
+06491,109
+06492,111
+06493,111
+06494,111
+06495,111
+06498,110
+06501,111
+06502,111
+06503,111
+06504,111
+06505,111
+06506,111
+06507,111
+06508,111
+06509,111
+06510,111
+06511,111
+06512,111
+06513,111
+06514,111
+06515,111
+06516,111
+06517,111
+06518,111
+06519,111
+06520,111
+06521,111
+06524,111
+06525,111
+06530,111
+06531,111
+06532,111
+06533,111
+06534,111
+06535,111
+06536,111
+06537,111
+06538,111
+06540,111
+06601,109
+06602,109
+06604,109
+06605,109
+06606,109
+06607,109
+06608,109
+06610,109
+06611,109
+06612,109
+06614,109
+06615,109
+06673,109
+06699,109
+06701,111
+06702,111
+06703,111
+06704,111
+06705,111
+06706,111
+06708,111
+06710,111
+06712,111
+06716,111
+06720,111
+06721,111
+06722,111
+06723,111
+06724,111
+06725,111
+06726,111
+06749,111
+06750,110
+06751,111
+06752,111
+06753,110
+06754,110
+06755,111
+06756,110
+06757,110
+06758,110
+06759,110
+06762,111
+06763,110
+06770,111
+06776,111
+06777,111
+06778,110
+06779,111
+06781,110
+06782,111
+06783,111
+06784,111
+06785,111
+06786,110
+06787,111
+06790,110
+06791,110
+06792,110
+06793,111
+06794,111
+06795,111
+06796,110
+06798,111
+06801,111
+06804,111
+06807,109
+06810,111
+06811,111
+06812,111
+06813,111
+06814,111
+06816,111
+06817,111
+06820,109
+06824,109
+06825,109
+06828,109
+06829,109
+06830,109
+06831,109
+06836,109
+06838,109
+06840,109
+06850,109
+06851,109
+06852,109
+06853,109
+06854,109
+06855,109
+06856,109
+06857,109
+06858,109
+06860,109
+06870,109
+06875,111
+06876,111
+06877,111
+06878,109
+06879,111
+06880,109
+06881,109
+06883,109
+06888,109
+06889,109
+06890,109
+06896,111
+06897,109
+06901,109
+06902,109
+06903,109
+06904,109
+06905,109
+06906,109
+06907,109
+06910,109
+06911,109
+06912,109
+06913,109
+06914,109
+06926,109
+06927,109
+07001,289
+07002,289
+07003,289
+07004,289
+07005,285
+07006,289
+07007,289
+07008,289
+07009,289
+07010,284
+07011,284
+07012,284
+07013,284
+07014,284
+07015,284
+07016,289
+07017,289
+07018,289
+07019,289
+07020,284
+07021,289
+07022,284
+07023,285
+07024,284
+07026,284
+07027,285
+07028,289
+07029,289
+07030,284
+07031,289
+07032,289
+07033,289
+07034,285
+07035,291
+07036,289
+07039,289
+07040,289
+07041,285
+07042,289
+07043,289
+07044,289
+07045,285
+07046,285
+07047,284
+07050,289
+07051,289
+07052,289
+07054,285
+07055,284
+07057,284
+07058,285
+07059,285
+07060,285
+07061,285
+07062,285
+07063,285
+07064,288
+07065,289
+07066,289
+07067,288
+07068,289
+07069,285
+07070,284
+07071,284
+07072,284
+07073,284
+07074,284
+07075,284
+07076,285
+07077,288
+07078,285
+07079,289
+07080,285
+07081,285
+07082,285
+07083,289
+07086,284
+07087,284
+07088,285
+07090,285
+07091,285
+07092,285
+07093,284
+07094,284
+07095,288
+07096,284
+07097,289
+07099,289
+07101,289
+07102,289
+07103,289
+07104,289
+07105,289
+07106,289
+07107,289
+07108,289
+07109,289
+07110,289
+07111,289
+07112,289
+07114,289
+07175,289
+07184,289
+07188,289
+07189,289
+07191,289
+07192,289
+07193,289
+07195,289
+07198,289
+07199,289
+07201,289
+07202,289
+07203,289
+07204,289
+07205,289
+07206,289
+07207,289
+07208,289
+07302,289
+07303,289
+07304,289
+07305,289
+07306,289
+07307,289
+07308,289
+07310,289
+07311,289
+07395,289
+07399,289
+07401,292
+07403,291
+07405,291
+07407,291
+07410,292
+07416,285
+07417,292
+07418,292
+07419,285
+07420,291
+07421,291
+07422,285
+07423,292
+07424,291
+07428,285
+07430,292
+07432,292
+07435,291
+07436,292
+07438,285
+07439,285
+07440,291
+07442,291
+07444,291
+07446,292
+07450,292
+07451,292
+07452,292
+07456,291
+07457,291
+07458,292
+07460,285
+07461,285
+07462,285
+07463,292
+07465,291
+07470,291
+07474,291
+07480,291
+07481,292
+07495,292
+07501,291
+07502,291
+07503,291
+07504,291
+07505,291
+07506,292
+07507,292
+07508,291
+07509,291
+07510,291
+07511,291
+07512,291
+07513,291
+07514,291
+07522,291
+07524,291
+07533,291
+07538,291
+07543,291
+07544,291
+07601,284
+07602,284
+07603,284
+07604,284
+07605,284
+07606,284
+07607,284
+07608,284
+07620,284
+07621,284
+07624,284
+07626,284
+07627,284
+07628,284
+07630,284
+07631,284
+07632,284
+07640,284
+07641,284
+07642,284
+07643,284
+07644,284
+07645,284
+07646,284
+07647,284
+07648,284
+07649,284
+07650,284
+07652,284
+07653,284
+07656,284
+07657,284
+07660,284
+07661,284
+07662,284
+07663,284
+07666,284
+07670,284
+07675,284
+07676,284
+07677,284
+07699,284
+07701,283
+07702,283
+07703,283
+07704,283
+07710,283
+07711,283
+07712,283
+07715,283
+07716,283
+07717,283
+07718,283
+07719,283
+07720,283
+07721,283
+07722,283
+07723,283
+07724,283
+07726,283
+07727,283
+07728,283
+07730,283
+07731,283
+07732,283
+07733,283
+07734,283
+07735,283
+07737,283
+07738,283
+07739,283
+07740,283
+07746,283
+07747,283
+07748,283
+07750,283
+07751,283
+07752,283
+07753,283
+07754,283
+07755,283
+07756,283
+07757,283
+07758,283
+07760,283
+07762,283
+07763,283
+07764,283
+07765,283
+07799,283
+07801,285
+07802,285
+07803,285
+07806,285
+07820,285
+07821,285
+07822,285
+07823,346
+07825,285
+07826,285
+07827,285
+07828,285
+07829,346
+07830,356
+07831,356
+07832,285
+07833,285
+07834,285
+07836,285
+07837,285
+07838,285
+07839,285
+07840,285
+07842,285
+07843,285
+07844,285
+07845,285
+07846,285
+07847,285
+07848,285
+07849,285
+07850,285
+07851,285
+07852,285
+07853,285
+07855,285
+07856,285
+07857,285
+07860,285
+07863,346
+07865,285
+07866,285
+07869,285
+07870,285
+07871,285
+07874,285
+07875,285
+07876,285
+07877,285
+07878,285
+07879,285
+07880,285
+07881,285
+07882,346
+07885,285
+07890,285
+07901,285
+07902,285
+07920,285
+07921,285
+07922,285
+07924,285
+07926,285
+07927,285
+07928,285
+07930,285
+07931,285
+07932,285
+07933,285
+07934,285
+07935,285
+07936,285
+07938,285
+07939,285
+07940,285
+07945,285
+07946,285
+07950,285
+07960,285
+07961,285
+07962,285
+07963,285
+07970,285
+07974,285
+07976,285
+07977,285
+07978,285
+07979,356
+07980,285
+07981,285
+07999,285
+08001,283
+08002,283
+08003,283
+08004,283
+08005,283
+08006,283
+08007,283
+08008,283
+08009,283
+08010,283
+08011,283
+08012,283
+08014,356
+08015,283
+08016,283
+08018,283
+08019,283
+08020,356
+08021,283
+08022,283
+08023,112
+08025,356
+08026,283
+08027,356
+08028,283
+08029,283
+08030,283
+08031,283
+08032,283
+08033,283
+08034,283
+08035,283
+08036,283
+08037,283
+08038,112
+08039,356
+08041,283
+08042,283
+08043,283
+08045,283
+08046,283
+08048,283
+08049,283
+08050,283
+08051,356
+08052,283
+08053,283
+08054,283
+08055,283
+08056,356
+08057,283
+08059,283
+08060,283
+08061,356
+08062,356
+08063,356
+08064,283
+08065,283
+08066,356
+08067,112
+08068,283
+08069,112
+08070,112
+08071,356
+08072,112
+08073,283
+08074,356
+08075,283
+08076,283
+08077,283
+08078,283
+08079,112
+08080,283
+08081,283
+08083,283
+08084,283
+08085,356
+08086,356
+08087,283
+08088,283
+08089,283
+08090,356
+08091,283
+08092,283
+08093,356
+08094,283
+08095,283
+08096,356
+08097,356
+08098,112
+08099,283
+08101,283
+08102,283
+08103,283
+08104,283
+08105,283
+08106,283
+08107,283
+08108,283
+08109,283
+08110,283
+08201,283
+08202,283
+08203,283
+08204,283
+08205,283
+08210,283
+08212,283
+08213,283
+08214,283
+08215,283
+08217,283
+08218,283
+08219,283
+08220,283
+08221,283
+08223,283
+08224,283
+08225,283
+08226,283
+08230,283
+08231,283
+08232,283
+08234,283
+08240,283
+08241,283
+08242,283
+08243,283
+08244,283
+08245,283
+08246,283
+08247,283
+08248,283
+08250,283
+08251,283
+08252,283
+08260,283
+08270,283
+08302,283
+08310,283
+08311,283
+08312,283
+08313,283
+08314,283
+08315,283
+08316,283
+08317,283
+08318,283
+08319,283
+08320,283
+08321,283
+08322,283
+08323,283
+08324,283
+08326,283
+08327,283
+08328,283
+08329,283
+08330,283
+08332,283
+08340,283
+08341,283
+08342,283
+08343,283
+08344,283
+08345,283
+08346,283
+08347,283
+08348,283
+08349,283
+08350,283
+08352,283
+08353,283
+08360,283
+08361,283
+08362,283
+08401,283
+08402,283
+08403,283
+08404,283
+08405,283
+08406,283
+08501,356
+08502,288
+08504,288
+08505,356
+08510,283
+08511,283
+08512,288
+08514,283
+08515,283
+08518,283
+08520,288
+08525,288
+08526,283
+08527,283
+08528,288
+08530,356
+08533,283
+08534,356
+08535,283
+08536,288
+08540,288
+08541,288
+08542,288
+08543,288
+08544,288
+08550,288
+08551,356
+08553,288
+08554,283
+08555,283
+08556,356
+08557,356
+08558,288
+08559,356
+08560,356
+08561,356
+08562,283
+08601,356
+08602,356
+08603,356
+08604,356
+08605,356
+08606,356
+08607,356
+08608,356
+08609,356
+08610,356
+08611,356
+08618,356
+08619,356
+08620,356
+08625,356
+08628,356
+08629,356
+08638,356
+08640,283
+08641,283
+08645,356
+08646,356
+08647,356
+08648,356
+08650,356
+08666,356
+08690,356
+08691,356
+08695,356
+08701,283
+08720,283
+08721,283
+08722,283
+08723,283
+08724,283
+08730,283
+08731,283
+08732,283
+08733,283
+08734,283
+08735,283
+08736,283
+08738,283
+08739,283
+08740,283
+08741,283
+08742,283
+08750,283
+08751,283
+08752,283
+08753,283
+08754,283
+08755,283
+08756,283
+08757,283
+08758,283
+08759,283
+08801,356
+08802,346
+08803,356
+08804,346
+08805,288
+08807,288
+08808,346
+08809,356
+08810,288
+08812,285
+08816,288
+08817,288
+08818,288
+08820,288
+08821,285
+08822,356
+08823,288
+08824,288
+08825,356
+08826,356
+08827,356
+08828,288
+08829,356
+08830,288
+08831,288
+08832,288
+08833,356
+08834,346
+08835,288
+08836,288
+08837,288
+08840,288
+08844,288
+08846,288
+08848,346
+08850,288
+08852,288
+08853,288
+08854,288
+08855,288
+08857,288
+08858,356
+08859,288
+08861,288
+08862,288
+08863,288
+08865,346
+08867,356
+08868,356
+08869,288
+08870,356
+08871,288
+08872,288
+08873,288
+08875,288
+08876,288
+08879,288
+08880,288
+08882,288
+08884,288
+08885,356
+08886,346
+08887,356
+08888,356
+08889,356
+08890,288
+08899,288
+08901,288
+08902,288
+08903,288
+08904,288
+08906,288
+08933,288
+08989,288
10001,303
10002,303
10003,303
diff --git a/_delphi_utils_python/delphi_utils/data/zip_hsa_cross.csv b/_delphi_utils_python/delphi_utils/data/zip_hsa_table.csv
similarity index 92%
rename from _delphi_utils_python/delphi_utils/data/zip_hsa_cross.csv
rename to _delphi_utils_python/delphi_utils/data/zip_hsa_table.csv
index 2f3a2f3b0..252e48837 100644
--- a/_delphi_utils_python/delphi_utils/data/zip_hsa_cross.csv
+++ b/_delphi_utils_python/delphi_utils/data/zip_hsa_table.csv
@@ -1,2999 +1,2999 @@
zip,hsa
-501,33095
-544,33095
-1001,22058
-1002,22046
-1003,22046
-1004,22046
-1005,22070
-1007,22063
-1008,22066
-1009,22049
-1010,22057
-1011,22051
-1012,22046
-1013,22058
-1014,22058
-1020,22058
-1021,22058
-1022,22023
-1026,22046
-1027,22046
-1028,22058
-1029,22020
-1030,22058
-1031,22063
-1032,22046
-1033,22023
-1034,22066
-1035,22046
-1036,22058
-1037,22063
-1038,22046
-1039,22021
-1040,22023
-1041,22023
-1050,22066
-1053,22046
-1054,22021
-1056,22028
-1057,22049
-1059,22046
-1060,22046
-1061,22046
-1062,22046
-1063,22046
-1066,22046
-1068,22070
-1069,22049
-1070,22046
-1071,22066
-1072,22021
-1073,22046
-1074,22070
-1075,22023
-1077,22066
-1079,22049
-1080,22049
-1081,22057
-1082,22063
-1083,22063
-1084,22046
-1085,22066
-1086,22066
-1088,22046
-1089,22058
-1090,22058
-1092,22063
-1093,22021
-1094,22063
-1095,22058
-1096,22046
-1097,22066
-1098,22046
-1101,22058
-1102,22058
-1103,22058
-1104,22058
-1105,22058
-1106,22058
-1107,22058
-1108,22058
-1109,22058
-1111,22058
-1115,22058
-1116,22058
-1118,22058
-1119,22058
-1128,22058
-1129,22058
-1138,22058
-1139,22058
-1144,22058
-1151,22058
-1152,22058
-1199,22058
-1201,22051
-1202,22051
-1203,22051
-1220,22045
-1222,22020
-1223,22051
-1224,22051
-1225,22051
-1226,22051
-1227,22051
-1229,22051
-1230,22020
-1235,22051
-1236,22020
-1237,22051
-1238,22051
-1240,22051
-1242,22051
-1243,22051
-1244,22020
-1245,22020
-1247,22045
-1252,22020
-1253,22020
-1254,22051
-1255,22020
-1256,22045
-1257,22020
-1258,22020
-1259,22020
-1260,22051
-1262,22051
-1263,22051
-1264,22051
-1266,22051
-1267,22045
-1270,22051
-1301,22021
-1302,22021
-1330,22021
-1331,22002
-1337,22021
-1338,22021
-1339,22021
-1340,22021
-1341,22021
-1342,22021
-1343,22021
-1344,22021
-1346,22021
-1347,22021
-1349,22021
-1350,22045
-1351,22021
-1354,22021
-1355,22002
-1360,22021
-1364,22002
-1366,22002
-1367,22021
-1368,22002
-1370,22021
-1373,22021
-1375,22021
-1376,22021
-1378,22002
-1379,22021
-1380,22021
-1420,22016
-1430,22018
-1431,22016
-1432,22004
-1434,22004
-1436,22018
-1438,22018
-1440,22018
-1441,22018
-1450,22004
-1451,22004
-1452,22018
-1453,22026
-1460,22004
-1462,22016
-1463,22004
-1464,22004
-1467,22004
-1468,22018
-1469,22004
-1470,22004
-1471,22004
-1472,22004
-1473,22018
-1474,22016
-1475,22018
-1501,22070
-1503,22070
-1504,41009
-1505,22070
-1506,22070
-1507,22057
-1508,22057
-1509,22057
-1510,22010
-1515,22070
-1516,22070
-1518,22057
-1519,22070
-1520,22070
-1521,22057
-1522,22070
-1523,22010
-1524,22070
-1525,22070
-1526,22070
-1527,22070
-1529,41009
-1531,22070
-1532,22070
-1534,22070
-1535,22070
-1536,22070
-1537,22070
-1538,22070
-1540,22070
-1541,22070
-1542,22070
-1543,22070
-1545,22070
-1546,22070
-1550,22057
-1560,22070
-1561,22010
-1562,22070
-1564,22070
-1566,22057
-1568,22070
-1569,22070
-1570,22065
-1571,22065
-1581,22070
-1583,22070
-1585,22063
-1586,22070
-1588,22070
-1590,22070
-1601,22070
-1602,22070
-1603,22070
-1604,22070
-1605,22070
-1606,22070
-1607,22070
-1608,22070
-1609,22070
-1610,22070
-1611,22070
-1612,22070
-1613,22070
-1614,22070
-1615,22070
-1653,22070
-1655,22070
-1701,22039
-1702,22039
-1703,22039
-1704,22039
-1705,22039
-1718,22011
-1719,22011
-1720,22011
-1721,22039
-1730,22011
-1731,22011
-1740,22031
-1741,22011
-1742,22011
-1745,22039
-1746,22039
-1747,22070
-1748,22039
-1749,22031
-1752,22031
-1754,22011
-1756,22070
-1757,22039
-1760,22039
-1770,22039
-1772,22039
-1773,22011
-1775,22011
-1776,22011
-1778,22039
-1784,22039
-1801,22067
-1803,22008
-1805,22008
-1810,22025
-1812,22025
-1813,22067
-1815,22067
-1821,22027
-1822,22027
-1824,22027
-1826,22027
-1827,22027
-1830,22022
-1831,22022
-1832,22022
-1833,22022
-1834,22022
-1835,22022
-1840,22025
-1841,22025
-1842,22025
-1843,22025
-1844,22034
-1845,22025
-1850,22027
-1851,22027
-1852,22027
-1853,22027
-1854,22027
-1860,22042
-1862,22027
-1863,22027
-1864,22067
-1865,22027
-1866,22027
-1867,22067
-1876,22027
-1879,22027
-1880,22033
-1885,22005
-1886,22027
-1887,22067
-1888,22067
-1889,22067
-1890,22067
-1899,22025
-1901,22029
-1902,22029
-1903,22029
-1904,22029
-1905,22029
-1906,22033
-1907,22054
-1908,22029
-1910,22029
-1913,22042
-1915,22005
-1921,22005
-1922,22042
-1923,22005
-1929,22005
-1930,22019
-1931,22019
-1936,22005
-1937,22005
-1938,22005
-1940,22029
-1944,22005
-1945,22054
-1949,22005
-1950,22042
-1951,22042
-1952,22042
-1960,22054
-1961,22054
-1965,22005
-1966,22019
-1969,22042
-1970,22054
-1971,22054
-1982,22005
-1983,22005
-1984,22005
-1985,22042
-2018,22056
-2019,41009
-2020,22056
-2021,22047
-2025,22056
-2026,22006
-2027,22006
-2030,22039
-2032,22047
-2035,22047
-2038,22044
-2040,22056
-2041,22056
-2043,22056
-2044,22056
-2045,22056
-2047,22056
-2048,22003
-2050,22056
-2051,22056
-2052,22039
-2053,22039
-2054,22039
-2055,22056
-2056,22044
-2059,22056
-2060,22056
-2061,22056
-2062,22047
-2065,22056
-2066,22056
-2067,22047
-2070,22044
-2071,22047
-2072,22060
-2081,22047
-2090,22047
-2093,22044
-2108,22006
-2109,22006
-2110,22006
-2111,22006
-2112,22006
-2113,22006
-2114,22006
-2115,22006
-2116,22006
-2117,22006
-2118,22006
-2119,22006
-2120,22006
-2121,22006
-2122,22006
-2123,22006
-2124,22006
-2125,22006
-2126,22006
-2127,22006
-2128,22006
-2129,22006
-2130,22006
-2131,22006
-2132,22006
-2133,22006
-2134,22006
-2135,22006
-2136,22006
-2137,22006
-2138,22009
-2139,22009
-2140,22009
-2141,22009
-2142,22006
-2143,22055
-2144,22055
-2145,22055
-2148,22030
-2149,22013
-2150,22006
-2151,22006
-2152,22068
-2153,22055
-2155,22032
-2156,22032
-2163,22006
-2169,22053
-2170,22053
-2171,22006
-2176,22033
-2180,22059
-2184,22056
-2185,22056
-2186,22037
-2187,22037
-2188,22056
-2189,22056
-2190,22056
-2191,22056
-2196,22006
-2199,22006
-2201,22006
-2203,22006
-2204,22006
-2205,22006
-2206,22006
-2210,22006
-2211,22006
-2212,22006
-2215,22006
-2217,22006
-2222,22006
-2238,22009
-2241,22006
-2266,22006
-2269,22053
-2283,22006
-2284,22006
-2293,22006
-2297,22006
-2298,22006
-2301,22007
-2302,22007
-2303,22007
-2304,22007
-2305,22007
-2322,22007
-2324,22007
-2325,22007
-2327,22056
-2330,22052
-2331,22052
-2332,22052
-2333,22007
-2334,22007
-2337,22007
-2338,22007
-2339,22056
-2341,22007
-2343,22007
-2344,22061
-2345,22052
-2346,22061
-2347,22061
-2348,22061
-2349,22061
-2350,22007
-2351,22007
-2355,22052
-2356,22007
-2357,22007
-2358,22056
-2359,22056
-2360,22052
-2361,22052
-2362,22052
-2364,22052
-2366,22052
-2367,22052
-2368,22007
-2370,22056
-2375,22007
-2379,22007
-2381,22052
-2382,22007
-2420,22072
-2421,22072
-2445,22006
-2446,22006
-2447,22006
-2451,22062
-2452,22062
-2453,22062
-2454,22062
-2455,22062
-2456,22009
-2457,22043
-2458,22043
-2459,22006
-2460,22043
-2461,22043
-2462,22043
-2464,22043
-2465,22043
-2466,22043
-2467,22006
-2468,22043
-2471,22009
-2472,22009
-2474,22072
-2475,22072
-2476,22072
-2477,22009
-2478,22009
-2479,22009
-2481,22043
-2482,22043
-2492,22040
-2493,22062
-2494,22040
-2495,22043
-2532,22015
-2534,22015
-2535,22048
-2536,22015
-2537,22015
-2538,22064
-2539,22048
-2540,22015
-2541,22015
-2542,22015
-2543,22015
-2552,22048
-2553,22015
-2554,22038
-2556,22015
-2557,22048
-2558,22064
-2559,22015
-2561,22015
-2562,22015
-2563,22015
-2564,22038
-2568,22048
-2571,22064
-2574,22015
-2575,22048
-2576,22064
-2584,22038
-2601,22024
-2630,22024
-2631,22024
-2632,22024
-2633,22024
-2634,22024
-2635,22024
-2637,22024
-2638,22024
-2639,22024
-2641,22024
-2642,22024
-2643,22024
-2644,22015
-2645,22024
-2646,22024
-2647,22024
-2648,22024
-2649,22024
-2650,22024
-2651,22024
-2652,22024
-2653,22024
-2655,22024
-2657,22024
-2659,22024
-2660,22024
-2661,22024
-2662,22024
-2663,22024
-2664,22024
-2666,22024
-2667,22024
-2668,22024
-2669,22024
-2670,22024
-2671,22024
-2672,22024
-2673,22024
-2675,22024
-2702,22014
-2703,22003
-2712,22003
-2713,22041
-2714,22041
-2715,22061
-2717,22041
-2718,22061
-2719,22041
-2720,22014
-2721,22014
-2722,22014
-2723,22014
-2724,22014
-2725,22014
-2726,22014
-2738,22064
-2739,22041
-2740,22041
-2741,22041
-2742,22041
-2743,22041
-2744,22041
-2745,22041
-2746,22041
-2747,22041
-2748,22041
-2760,22003
-2761,22003
-2762,22003
-2763,22003
-2764,22061
-2766,22003
-2767,22061
-2768,22061
-2769,41005
-2770,22064
-2771,41005
-2777,22014
-2779,22061
-2780,22061
-2790,22014
-2791,22014
-2801,22014
-2802,41005
-2804,41008
-2806,41005
-2807,41008
-2808,41008
-2809,41005
-2812,41006
-2813,41006
-2814,41005
-2815,41005
-2816,41007
-2817,41007
-2818,41007
-2822,41006
-2823,41005
-2824,41009
-2825,41005
-2826,41009
-2827,41007
-2828,41005
-2829,41005
-2830,41009
-2831,41007
-2832,41008
-2833,41008
-2835,41002
-2836,41006
-2837,22014
-2838,41009
-2839,41005
-2840,41002
-2841,41002
-2842,41002
-2852,41007
-2857,41005
-2858,41009
-2859,41009
-2860,41004
-2861,41004
-2862,41004
-2863,41004
-2864,41009
-2865,41005
-2871,41002
-2872,41002
-2873,41008
-2874,41006
-2875,41006
-2876,41009
-2877,41006
-2878,22014
-2879,41006
-2880,41006
-2881,41006
-2882,41006
-2883,41006
-2885,41005
-2886,41007
-2887,41007
-2888,41007
-2889,41007
-2891,41008
-2892,41006
-2893,41007
-2894,41008
-2895,41009
-2896,41009
-2898,41008
-2901,41005
-2902,41005
-2903,41005
-2904,41005
-2905,41005
-2906,41005
-2907,41005
-2908,41005
-2909,41005
-2910,41005
-2911,41005
-2912,41005
-2914,41005
-2915,41005
-2916,41005
-2917,41005
-2918,41005
-2919,41005
-2920,41005
-2921,41005
-2940,41005
-3031,30016
-3032,30015
-3033,30016
-3034,30015
-3036,30015
-3037,30015
-3038,30005
-3040,30015
-3041,30005
-3042,30007
-3043,30020
-3044,30007
-3045,30015
-3046,30015
-3047,30020
-3048,30020
-3049,30016
-3051,30016
-3052,30016
-3053,30015
-3054,30016
-3055,30016
-3057,30016
-3060,30016
-3061,30016
-3062,30016
-3063,30016
-3064,30016
-3070,30015
-3071,30020
-3073,22034
-3076,22027
-3077,30007
-3079,22034
-3082,30016
-3084,30020
-3086,30016
-3087,30005
-3101,30015
-3102,30015
-3103,30015
-3104,30015
-3105,30015
-3106,30015
-3108,30015
-3109,30015
-3110,30015
-3111,30015
-3215,30021
-3216,30017
-3217,30021
-3218,30004
-3220,30011
-3221,30017
-3222,30008
-3223,30021
-3224,30004
-3225,30004
-3226,30011
-3227,30011
-3229,30004
-3230,30017
-3231,30008
-3233,30017
-3234,30004
-3235,30008
-3237,30011
-3238,30025
-3240,30013
-3241,30021
-3242,30004
-3243,30008
-3244,30004
-3245,30021
-3246,30011
-3247,30011
-3249,30011
-3251,30014
-3252,30008
-3253,30011
-3254,30011
-3255,30017
-3256,30011
-3257,30017
-3258,30004
-3259,30011
-3260,30004
-3261,30004
-3262,30014
-3263,30004
-3264,30021
-3266,30021
-3268,30004
-3269,30008
-3272,30017
-3273,30004
-3275,30004
-3276,30008
-3278,30004
-3279,30025
-3280,30004
-3281,30004
-3282,30021
-3284,30017
-3285,30021
-3287,30017
-3289,30011
-3290,30006
-3291,30006
-3293,30014
-3298,30011
-3299,30011
-3301,30004
-3302,30004
-3303,30004
-3304,30004
-3305,30004
-3307,30004
-3431,30010
-3435,30010
-3440,30020
-3441,30010
-3442,30020
-3443,30010
-3444,30010
-3445,30010
-3446,30010
-3447,30010
-3448,30010
-3449,30020
-3450,30010
-3451,47004
-3452,30020
-3455,30010
-3456,30010
-3457,30010
-3458,30020
-3461,30020
-3462,30010
-3464,30010
-3465,30010
-3466,47004
-3467,30010
-3468,30020
-3469,30010
-3470,30010
-3561,30014
-3570,30001
-3574,30014
-3575,30012
-3576,30003
-3579,30001
-3580,30014
-3581,30001
-3582,30012
-3583,30012
-3584,30012
-3585,30014
-3586,30014
-3588,30001
-3589,30019
-3590,30012
-3592,30003
-3593,30001
-3595,30012
-3597,30003
-3598,30012
-3601,30017
-3602,30010
-3603,30002
-3604,30010
-3605,30017
-3607,30010
-3608,30010
-3609,47011
-3740,30025
-3741,30013
-3743,30002
-3745,30002
-3746,30002
-3748,30013
-3749,30013
-3750,30013
-3751,30017
-3752,30017
-3753,30013
-3754,30017
-3755,30013
-3756,30013
-3765,30025
-3766,30013
-3768,30013
-3769,30013
-3770,30013
-3771,30025
-3773,30017
-3774,30025
-3777,30013
-3779,30025
-3780,30025
-3781,30013
-3782,30017
-3784,30013
-3785,30025
-3801,30022
-3802,30022
-3803,30022
-3804,20033
-3809,30024
-3810,30024
-3811,22022
-3812,30019
-3813,30019
-3814,30024
-3815,30023
-3816,30024
-3817,30019
-3818,30019
-3819,30007
-3820,30006
-3821,30006
-3822,30006
-3823,30006
-3824,30006
-3825,30006
-3826,22022
-3827,30007
-3830,30024
-3832,30019
-3833,30007
-3835,30023
-3836,30024
-3837,30011
-3838,30019
-3839,30023
-3840,30022
-3841,30005
-3842,30007
-3843,30007
-3844,30007
-3845,30019
-3846,30019
-3847,30019
-3848,30007
-3849,30019
-3850,30024
-3851,30023
-3852,30023
-3853,30024
-3854,30022
-3855,30023
-3856,30007
-3857,30007
-3858,30007
-3859,30007
-3860,30019
-3861,30006
-3862,30007
-3864,30024
-3865,22022
-3866,30023
-3867,30023
-3868,30023
-3869,30006
-3870,30022
-3871,30022
-3872,30024
-3873,30005
-3874,22042
-3875,30019
-3878,30006
-3882,30024
-3883,30011
-3884,30023
-3885,30007
-3886,30011
-3887,30023
-3890,30024
-3894,30024
-3896,30024
-3897,30011
-3901,30006
-3902,20033
-3903,20033
-3904,20033
-3905,20033
-3906,20029
-3907,20033
-3908,30006
-3909,20033
-3910,20033
-3911,20033
-4001,20029
-4002,20029
-4003,20010
-4004,20025
-4005,20006
-4006,20006
-4007,20006
-4008,20010
-4009,20009
-4010,20009
-4011,20010
-4013,20025
-4014,20006
-4015,20025
-4016,20009
-4017,20025
-4019,20025
-4020,20025
-4021,20025
-4022,20009
-4024,20025
-4027,20029
-4028,20025
-4029,20025
-4030,20029
-4032,20010
-4033,20010
-4034,20010
-4037,20009
-4038,20025
-4039,20025
-4040,20009
-4041,20025
-4042,20025
-4043,20006
-4046,20006
-4047,20025
-4048,20025
-4049,20025
-4050,20025
-4051,20023
-4054,20033
-4055,20009
-4056,20029
-4057,20009
-4061,20029
-4062,20025
-4063,20006
-4064,20006
-4066,20010
-4068,20025
-4069,20025
-4070,20025
-4071,20025
-4072,20006
-4073,20029
-4074,20025
-4076,20029
-4077,20025
-4078,20010
-4079,20010
-4082,20025
-4083,20029
-4084,20025
-4085,20025
-4086,20010
-4087,20029
-4088,20023
-4090,20033
-4091,20025
-4092,20025
-4093,20025
-4094,20006
-4095,20029
-4096,20025
-4097,20025
-4098,20025
-4101,20025
-4102,20025
-4103,20025
-4104,20025
-4105,20025
-4106,20025
-4107,20025
-4108,20025
-4109,20025
-4110,20025
-4112,20025
-4116,20025
-4122,20025
-4123,20025
-4124,20025
-4210,20019
-4211,20019
-4212,20019
-4216,20028
-4217,20023
-4219,20023
-4220,20019
-4221,20019
-4222,20019
-4223,20019
-4224,20028
-4225,20016
-4226,20028
-4227,20016
-4228,20019
-4230,20019
-4231,20023
-4234,20016
-4236,20019
-4237,20028
-4238,20019
-4239,20016
-4240,20019
-4241,20019
-4243,20019
-4250,20019
-4252,20019
-4253,20016
-4254,20016
-4255,20023
-4256,20019
-4257,20028
-4258,20019
-4259,20019
-4260,20019
-4261,20023
-4262,20016
-4263,20019
-4265,20019
-4266,20019
-4267,20023
-4268,20023
-4270,20023
-4271,20023
-4274,20019
-4275,20028
-4276,20028
-4280,20019
-4281,20023
-4282,20019
-4284,20001
-4285,20016
-4286,20023
-4287,20010
-4288,20019
-4289,20023
-4290,20028
-4291,20019
-4292,20023
-4294,20016
-4330,20001
-4332,20001
-4333,20001
-4336,20001
-4338,20001
-4341,20001
-4342,20001
-4343,20001
-4344,20001
-4345,20001
-4346,20001
-4347,20001
-4348,20001
-4349,20016
-4350,20019
-4351,20001
-4352,20016
-4353,20001
-4354,20031
-4355,20001
-4357,20001
-4358,20031
-4359,20001
-4360,20016
-4363,20001
-4364,20001
-4401,20002
-4402,20002
-4406,20035
-4408,20002
-4410,20002
-4411,20002
-4412,20002
-4413,20018
-4414,20014
-4415,20014
-4416,20002
-4417,20020
-4418,20002
-4419,20002
-4420,20002
-4421,20002
-4422,20002
-4424,20018
-4426,20014
-4427,20002
-4428,20002
-4429,20002
-4430,20022
-4431,20002
-4434,20024
-4435,20002
-4438,20002
-4441,20035
-4442,20035
-4443,20014
-4444,20002
-4448,20020
-4449,20002
-4450,20002
-4451,20020
-4453,20002
-4454,20011
-4455,20020
-4456,20002
-4457,20020
-4459,20020
-4460,20022
-4461,20002
-4462,20022
-4463,20014
-4464,20035
-4468,20002
-4469,20002
-4471,20018
-4472,20002
-4473,20002
-4474,20002
-4475,20020
-4476,20002
-4478,20035
-4479,20014
-4481,20014
-4485,20035
-4487,20020
-4488,20002
-4489,20002
-4490,20011
-4491,20011
-4492,20011
-4493,20020
-4495,20020
-4496,20002
-4497,20018
-4530,20010
-4535,20010
-4537,20008
-4538,20008
-4539,20013
-4541,20013
-4543,20013
-4544,20008
-4547,20027
-4548,20010
-4549,20008
-4551,20013
-4553,20013
-4554,20013
-4555,20013
-4556,20013
-4558,20013
-4562,20010
-4563,20027
-4564,20013
-4565,20010
-4568,20013
-4570,20008
-4571,20008
-4572,20027
-4573,20013
-4574,20027
-4575,20008
-4576,20008
-4578,20010
-4579,20010
-4605,20015
-4606,20021
-4607,20015
-4609,20003
-4611,20021
-4612,20003
-4613,20015
-4614,20007
-4616,20007
-4617,20007
-4619,20011
-4622,20015
-4623,20021
-4624,20015
-4625,20003
-4626,20021
-4627,20007
-4628,20021
-4629,20007
-4630,20021
-4631,20011
-4634,20015
-4635,20003
-4637,20011
-4640,20015
-4642,20007
-4643,20021
-4644,20003
-4645,20007
-4646,20003
-4648,20021
-4649,20021
-4650,20007
-4652,20021
-4653,20003
-4654,20021
-4655,20021
-4657,20011
-4658,20015
-4660,20003
-4662,20003
-4664,20015
-4666,20011
-4667,20011
-4668,20011
-4669,20015
-4671,20011
-4672,20003
-4673,20007
-4674,20003
-4675,20003
-4676,20007
-4677,20015
-4679,20003
-4680,20015
-4681,20007
-4683,20007
-4684,20007
-4685,20003
-4686,20021
-4691,20021
-4693,20015
-4694,20011
-4730,20018
-4732,20026
-4733,20022
-4734,20026
-4735,20026
-4736,20012
-4737,20017
-4738,20026
-4739,20017
-4740,20026
-4741,20017
-4742,20026
-4743,20017
-4744,20017
-4745,20017
-4746,20012
-4747,20018
-4750,20012
-4751,20012
-4756,20017
-4757,20026
-4758,20026
-4760,20018
-4761,20018
-4762,20012
-4763,20018
-4764,20026
-4765,20018
-4766,20026
-4768,20026
-4769,20026
-4772,20017
-4773,20017
-4774,20017
-4775,20026
-4776,20022
-4777,20022
-4779,20012
-4780,20018
-4781,20017
-4783,20012
-4785,20012
-4786,20026
-4787,20026
-4841,20027
-4843,20027
-4847,20027
-4848,20027
-4849,20027
-4850,20027
-4851,20027
-4852,20027
-4853,20027
-4854,20027
-4855,20027
-4856,20027
-4858,20027
-4859,20027
-4860,20027
-4861,20027
-4862,20027
-4863,20027
-4864,20027
-4865,20027
-4901,20031
-4903,20031
-4910,20031
-4911,20030
-4912,20030
-4915,20005
-4917,20031
-4918,20031
-4920,20030
-4921,20005
-4922,20031
-4923,20014
-4924,20030
-4925,20031
-4926,20031
-4927,20031
-4928,20024
-4929,20024
-4930,20014
-4932,20002
-4933,20024
-4935,20031
-4936,20016
-4937,20031
-4938,20016
-4939,20002
-4940,20016
-4941,20031
-4942,20030
-4943,20024
-4944,20031
-4945,20031
-4947,20016
-4949,20005
-4950,20030
-4951,20005
-4952,20005
-4953,20024
-4954,20016
-4955,20016
-4956,20016
-4957,20030
-4958,20030
-4961,20030
-4962,20031
-4963,20031
-4964,20016
-4965,20024
-4966,20016
-4967,20024
-4969,20024
-4970,20016
-4971,20024
-4972,20005
-4973,20027
-4974,20005
-4975,20031
-4976,20030
-4978,20031
-4979,20030
-4981,20005
-4982,20016
-4983,20016
-4984,20016
-4985,20031
-4986,20031
-4987,20031
-4988,20031
-4989,20031
-4992,20016
-5001,30013
-5009,30013
-5030,47015
-5031,47009
-5032,47009
-5033,30025
-5034,30013
-5035,30013
-5036,47003
-5037,47015
-5038,47009
-5039,30013
-5040,30013
-5041,47003
-5042,30025
-5043,30013
-5045,30013
-5046,30025
-5047,30013
-5048,47015
-5049,47015
-5050,47013
-5051,30025
-5052,30013
-5053,30013
-5054,30013
-5055,30013
-5056,30013
-5058,30013
-5059,30013
-5060,47009
-5061,47009
-5062,47015
-5065,30013
-5067,30013
-5068,47009
-5069,30025
-5070,30013
-5071,30013
-5072,30013
-5073,30013
-5074,30013
-5075,30013
-5076,47003
-5077,47009
-5079,30013
-5081,30025
-5083,30013
-5084,30013
-5085,30025
-5086,47003
-5088,30013
-5089,47015
-5091,30013
-5101,47011
-5141,47011
-5142,47011
-5143,47011
-5146,47011
-5148,47011
-5149,47011
-5150,47011
-5151,47011
-5152,47011
-5153,47011
-5154,47011
-5155,47011
-5156,47011
-5158,47004
-5159,47004
-5161,47011
-5201,47002
-5250,47002
-5251,47002
-5252,47002
-5253,47010
-5254,47002
-5255,47002
-5257,47002
-5260,47002
-5261,47002
-5262,47002
-5301,47004
-5302,47004
-5303,47004
-5304,47004
-5340,47011
-5341,47004
-5342,47002
-5343,47014
-5344,47004
-5345,47014
-5346,47004
-5350,22045
-5351,47014
-5352,22045
-5353,47014
-5354,47004
-5355,47014
-5356,47002
-5357,47004
-5358,47002
-5359,47014
-5360,47014
-5361,47002
-5362,47004
-5363,47002
-5401,47005
-5402,47005
-5403,47005
-5404,47005
-5405,47005
-5406,47005
-5407,47005
-5408,47005
-5439,47005
-5440,47012
-5441,47012
-5442,47007
-5443,47006
-5444,47005
-5445,47005
-5446,47005
-5447,47012
-5448,47005
-5449,47005
-5450,47012
-5451,47005
-5452,47005
-5453,47005
-5454,47012
-5455,47012
-5456,47006
-5457,47012
-5458,47005
-5459,47012
-5460,47012
-5461,47005
-5462,47005
-5463,33099
-5464,47005
-5465,47005
-5466,47005
-5468,47005
-5469,47006
-5470,47012
-5471,47012
-5472,47006
-5473,47005
-5474,47005
-5476,47012
-5477,47005
-5478,47012
-5479,47012
-5481,47012
-5482,47005
-5483,47012
-5485,47012
-5486,47005
-5487,47006
-5488,47012
-5489,47005
-5490,47005
-5491,47006
-5492,47007
-5494,47005
-5495,47005
-5501,22025
-5601,47003
-5602,47003
-5603,47003
-5604,47003
-5609,47003
-5620,47003
-5633,47003
-5640,47003
-5641,47003
-5647,47003
-5648,47003
-5649,47003
-5650,47003
-5651,47003
-5652,47007
-5653,47007
-5654,47003
-5655,47007
-5656,47007
-5657,47007
-5658,47003
-5660,47003
-5661,47007
-5662,47007
-5663,47003
-5664,47003
-5665,47007
-5666,47003
-5667,47003
-5669,47009
-5670,47003
-5671,47003
-5672,47007
-5673,47003
-5674,47003
-5675,47003
-5676,47003
-5677,47003
-5678,47003
-5679,47003
-5680,47007
-5681,47003
-5682,47003
-5701,47010
-5702,47010
-5730,47010
-5731,47010
-5732,47010
-5733,47010
-5734,47006
-5735,47010
-5736,47010
-5737,47010
-5738,47010
-5739,47010
-5740,47006
-5741,47010
-5742,47010
-5743,47010
-5744,47010
-5745,47010
-5746,47009
-5747,47009
-5748,47009
-5750,47010
-5751,47010
-5753,47006
-5757,47010
-5758,47010
-5759,47010
-5760,47010
-5761,47010
-5762,47009
-5763,47010
-5764,47010
-5765,47010
-5766,47006
-5767,47009
-5768,33016
-5769,47006
-5770,47006
-5772,47009
-5773,47010
-5774,47010
-5775,47010
-5776,33016
-5777,47010
-5778,47010
-5819,47013
-5820,47008
-5821,47013
-5822,47008
-5823,47008
-5824,47013
-5825,47008
-5826,47007
-5827,47007
-5828,47013
-5829,47008
-5830,47008
-5832,47013
-5833,47008
-5836,47013
-5837,47013
-5838,47013
-5839,47008
-5840,47013
-5841,47007
-5842,47007
-5843,47007
-5845,47008
-5846,47008
-5847,47007
-5848,47013
-5849,47013
-5850,47013
-5851,47013
-5853,47008
-5855,47008
-5857,47008
-5858,47013
-5859,47008
-5860,47008
-5861,47013
-5862,47013
-5863,47013
-5866,47013
-5867,47013
-5868,47008
-5871,47013
-5872,47008
-5873,47013
-5874,47008
-5875,47008
-5901,30003
-5902,30003
-5903,30003
-5904,30012
-5905,30012
-5906,30012
-5907,30003
-6001,7007
-6002,7007
-6006,7007
-6010,7002
-6011,7002
-6013,7002
-6016,7007
-6018,7021
-6019,7007
-6020,7007
-6021,7028
-6022,7007
-6023,7012
-6024,7021
-6025,7007
-6026,7007
-6027,7007
-6028,7008
-6029,7020
-6030,7007
-6031,7021
-6032,7007
-6033,7007
-6034,7007
-6035,7007
-6037,7012
-6039,7021
-6040,7008
-6041,7008
-6042,7008
-6043,7008
-6045,7008
-6050,7012
-6051,7012
-6052,7012
-6053,7012
-6057,7025
-6058,7028
-6059,7028
-6060,7007
-6061,7025
-6062,7012
-6063,7028
-6064,7007
-6065,7007
-6066,7020
-6067,7007
-6068,7021
-6069,7021
-6070,7007
-6071,7023
-6072,7023
-6073,7007
-6074,7008
-6075,7023
-6076,7023
-6077,7023
-6078,7007
-6079,7021
-6080,7007
-6081,7007
-6082,7023
-6083,7023
-6084,7020
-6085,7007
-6088,7007
-6089,7007
-6090,7007
-6091,7007
-6092,7007
-6093,7007
-6094,7028
-6095,7007
-6096,7007
-6098,7028
-6101,7007
-6102,7007
-6103,7007
-6104,7007
-6105,7007
-6106,7007
-6107,7007
-6108,7007
-6109,7007
-6110,7007
-6111,7007
-6112,7007
-6114,7007
-6115,7007
-6117,7007
-6118,7007
-6119,7007
-6120,7007
-6123,7007
-6126,7007
-6127,7007
-6128,7007
-6129,7007
-6131,7007
-6132,7007
-6133,7007
-6134,7007
-6137,7007
-6138,7007
-6140,7007
-6141,7007
-6142,7007
-6143,7007
-6144,7007
-6145,7007
-6146,7007
-6147,7007
-6150,7007
-6151,7007
-6152,7007
-6153,7007
-6154,7007
-6155,7007
-6156,7007
-6160,7007
-6161,7007
-6167,7007
-6176,7007
-6180,7007
-6183,7007
-6199,7007
-6226,7027
-6230,7019
-6231,7027
-6232,7008
-6233,7019
-6234,7019
-6235,7027
-6237,7027
-6238,7027
-6239,7019
-6241,7019
-6242,7019
-6243,7019
-6244,7019
-6245,7019
-6246,7019
-6247,7027
-6248,7008
-6249,7027
-6250,7027
-6251,7027
-6254,7018
-6255,7019
-6256,7027
-6258,7019
-6259,7019
-6260,7019
-6262,7019
-6263,7019
-6264,7027
-6265,7023
-6266,7027
-6267,7019
-6268,7027
-6269,7027
-6277,7019
-6278,7027
-6279,7023
-6280,7027
-6281,7019
-6282,7019
-6320,7014
-6330,7018
-6331,7018
-6332,7019
-6333,7014
-6334,7018
-6335,7014
-6336,7018
-6338,7014
-6339,7014
-6340,7014
-6349,7014
-6350,7018
-6351,7018
-6353,7014
-6354,7019
-6355,7014
-6357,7014
-6359,41008
-6360,7018
-6365,7018
-6370,7014
-6371,7014
-6372,7014
-6373,7019
-6374,7019
-6375,7014
-6376,7014
-6377,7019
-6378,41008
-6379,41008
-6380,7018
-6382,7014
-6383,7018
-6384,7018
-6385,7014
-6387,7019
-6388,7014
-6389,7018
-6390,7014
-6401,7004
-6403,7026
-6404,7003
-6405,7013
-6408,7026
-6409,7010
-6410,7026
-6411,7026
-6412,7010
-6413,7010
-6414,7010
-6415,7010
-6416,7010
-6417,7010
-6418,7004
-6419,7010
-6420,7014
-6422,7010
-6423,7010
-6424,7010
-6426,7010
-6437,7013
-6438,7010
-6439,7014
-6440,7003
-6441,7010
-6442,7010
-6443,7013
-6444,7022
-6447,7010
-6450,7009
-6451,7009
-6455,7010
-6456,7010
-6457,7010
-6459,7010
-6460,7011
-6461,7011
-6467,7022
-6468,7001
-6469,7010
-6470,7003
-6471,7013
-6472,7013
-6473,7013
-6474,7010
-6475,7010
-6477,7013
-6478,7004
-6479,7022
-6480,7010
-6481,7010
-6482,7003
-6483,7004
-6484,7004
-6487,7026
-6488,7026
-6489,7022
-6491,7001
-6492,7009
-6493,7009
-6494,7009
-6495,7009
-6498,7010
-6501,7013
-6502,7013
-6503,7013
-6504,7013
-6505,7013
-6506,7013
-6507,7013
-6508,7013
-6509,7013
-6510,7013
-6511,7013
-6512,7013
-6513,7013
-6514,7013
-6515,7013
-6516,7013
-6517,7013
-6518,7013
-6519,7013
-6520,7013
-6521,7013
-6524,7013
-6525,7013
-6530,7013
-6531,7013
-6532,7013
-6533,7013
-6534,7013
-6535,7013
-6536,7013
-6537,7013
-6538,7013
-6540,7013
-6601,7001
-6602,7001
-6604,7001
-6605,7001
-6606,7001
-6607,7001
-6608,7001
-6610,7001
-6611,7001
-6612,7001
-6614,7001
-6615,7001
-6673,7001
-6699,7001
-6701,7026
-6702,7026
-6703,7026
-6704,7026
-6705,7026
-6706,7026
-6708,7026
-6710,7026
-6712,7026
-6716,7026
-6720,7026
-6721,7026
-6722,7026
-6723,7026
-6724,7026
-6725,7026
-6726,7026
-6749,7026
-6750,7025
-6751,7026
-6752,7015
-6753,7021
-6754,7021
-6755,7015
-6756,7025
-6757,7021
-6758,7025
-6759,7025
-6762,7026
-6763,7025
-6770,7026
-6776,7015
-6777,7015
-6778,7025
-6779,7026
-6781,7002
-6782,7026
-6783,7015
-6784,7015
-6785,7015
-6786,7002
-6787,7026
-6790,7025
-6791,7025
-6792,7025
-6793,7015
-6794,7015
-6795,7026
-6796,7021
-6798,7026
-6801,7003
-6804,7003
-6807,7006
-6810,7003
-6811,7003
-6812,7003
-6813,7003
-6814,7003
-6816,7003
-6817,7003
-6820,7024
-6824,7001
-6825,7001
-6828,7001
-6829,7017
-6830,7006
-6831,7006
-6836,7006
-6838,7017
-6840,7017
-6850,7017
-6851,7017
-6852,7017
-6853,7017
-6854,7017
-6855,7017
-6856,7017
-6857,7017
-6858,7017
-6860,7017
-6870,7006
-6875,7003
-6876,7003
-6877,7003
-6878,7006
-6879,7003
-6880,7017
-6881,7017
-6883,7017
-6888,7017
-6889,7017
-6890,7001
-6896,7003
-6897,7017
-6901,7024
-6902,7024
-6903,7024
-6904,7024
-6905,7024
-6906,7024
-6907,7024
-6910,7024
-6911,7024
-6912,7024
-6913,7024
-6914,7024
-6926,7024
-6927,7024
-7001,31048
-7002,31002
-7003,31030
-7004,31030
-7005,31007
-7006,31030
-7007,31030
-7008,31048
-7009,31030
-7010,31061
-7011,31040
-7012,31040
-7013,31040
-7014,31040
-7015,31040
-7016,31064
-7017,31035
-7018,31038
-7019,31035
-7020,31061
-7021,31030
-7022,31061
-7023,31044
-7024,31013
-7026,31040
-7027,31059
-7028,31030
-7029,31024
-7030,31020
-7031,31024
-7032,31024
-7033,31064
-7034,31007
-7035,31046
-7036,31011
-7039,31026
-7040,31026
-7041,31059
-7042,31030
-7043,31030
-7044,31030
-7045,31007
-7046,31007
-7047,31037
-7050,31038
-7051,31038
-7052,31026
-7054,31007
-7055,31040
-7057,31040
-7058,31007
-7059,31059
-7060,31044
-7061,31044
-7062,31044
-7063,31044
-7064,31010
-7065,31048
-7066,31048
-7067,31010
-7068,31026
-7069,31044
-7070,31040
-7071,31040
-7072,31016
-7073,31040
-7074,31016
-7075,31016
-7076,31044
-7077,31010
-7078,31059
-7079,31026
-7080,31044
-7081,31059
-7082,31007
-7083,31064
-7086,31020
-7087,31020
-7088,31059
-7090,31059
-7091,31059
-7092,31059
-7093,31037
-7094,31054
-7095,31010
-7096,31054
-7097,31023
-7099,31024
-7101,31035
-7102,31035
-7103,31035
-7104,31035
-7105,31035
-7106,31035
-7107,31035
-7108,31035
-7109,31003
-7110,31003
-7111,31022
-7112,31035
-7114,31035
-7175,31035
-7184,31035
-7188,31035
-7189,31035
-7191,31035
-7192,31035
-7193,31035
-7195,31035
-7198,31035
-7199,31035
-7201,31011
-7202,31011
-7203,31011
-7204,31064
-7205,31011
-7206,31011
-7207,31011
-7208,31011
-7302,31023
-7303,31023
-7304,31023
-7305,31023
-7306,31023
-7307,31023
-7308,31023
-7310,31023
-7311,31023
-7395,31023
-7399,31023
-7401,31050
-7403,31046
-7405,31046
-7407,31041
-7410,31050
-7416,31060
-7417,31050
-7418,33133
-7419,31060
-7420,31046
-7421,31046
-7422,31060
-7423,31050
-7424,31041
-7428,31060
-7430,31050
-7432,31050
-7435,31046
-7436,31050
-7438,31008
-7439,31036
-7440,31046
-7442,31046
-7444,31046
-7446,31050
-7450,31050
-7451,31050
-7452,31050
-7456,31046
-7457,31046
-7458,31050
-7460,31060
-7461,31060
-7462,31060
-7463,31050
-7465,31046
-7470,31066
-7474,31066
-7480,31046
-7481,31050
-7495,31050
-7501,31041
-7502,31066
-7503,31041
-7504,31041
-7505,31041
-7506,31050
-7507,31050
-7508,31066
-7509,31041
-7510,31041
-7511,31066
-7512,31066
-7513,31041
-7514,31041
-7522,31041
-7524,31041
-7533,31041
-7538,31066
-7543,31041
-7544,31041
-7601,31016
-7602,31016
-7603,31061
-7604,31016
-7605,31013
-7606,31016
-7607,31016
-7608,31016
-7620,31013
-7621,31061
-7624,31067
-7626,31013
-7627,31013
-7628,31013
-7630,31067
-7631,31013
-7632,31013
-7640,31067
-7641,31013
-7642,31067
-7643,31016
-7644,31016
-7645,31067
-7646,31061
-7647,31067
-7648,31067
-7649,31067
-7650,31013
-7652,31039
-7653,31039
-7656,31067
-7657,31061
-7660,31061
-7661,31016
-7662,31016
-7663,31016
-7666,31061
-7670,31013
-7675,31067
-7676,31067
-7677,31067
-7699,31016
-7701,31049
-7702,31049
-7703,31049
-7704,31049
-7710,31015
-7711,31027
-7712,31033
-7715,31033
-7716,31049
-7717,31033
-7718,31049
-7719,31033
-7720,31033
-7721,31021
-7722,31049
-7723,31027
-7724,31027
-7726,31015
-7727,31033
-7728,31015
-7730,31021
-7731,31025
-7732,31049
-7733,31021
-7734,31021
-7735,31021
-7737,31049
-7738,31049
-7739,31049
-7740,31027
-7746,31015
-7747,31021
-7748,31049
-7750,31027
-7751,31021
-7752,31049
-7753,31033
-7754,31033
-7755,31027
-7756,31033
-7757,31027
-7758,31049
-7760,31049
-7762,31033
-7763,31015
-7764,31027
-7765,31021
-7799,31027
-7801,31008
-7802,31008
-7803,31008
-7806,31008
-7820,31017
-7821,31036
-7822,31060
-7823,31043
-7825,31036
-7826,31036
-7827,33102
-7828,31008
-7829,31043
-7830,31014
-7831,31014
-7832,31036
-7833,31036
-7834,31007
-7836,31008
-7837,31036
-7838,31036
-7839,31036
-7840,31017
-7842,31007
-7843,31008
-7844,31036
-7845,31008
-7846,31036
-7847,31008
-7848,31036
-7849,31008
-7850,31008
-7851,31036
-7852,31008
-7853,31017
-7855,31036
-7856,31008
-7857,31008
-7860,31036
-7863,31043
-7865,31017
-7866,31007
-7869,31008
-7870,31017
-7871,31036
-7874,31008
-7875,31036
-7876,31008
-7877,31036
-7878,31007
-7879,31036
-7880,31017
-7881,31036
-7882,31043
-7885,31008
-7890,31036
-7901,31059
-7902,31059
-7920,31031
-7921,31031
-7922,31059
-7924,31031
-7926,31031
-7927,31031
-7928,31059
-7930,31031
-7931,31031
-7932,31031
-7933,31059
-7934,31031
-7935,31031
-7936,31031
-7938,31031
-7939,31031
-7940,31031
-7945,31031
-7946,31031
-7950,31031
-7960,31031
-7961,31031
-7962,31031
-7963,31031
-7970,31031
-7974,31059
-7976,31031
-7977,31031
-7978,31031
-7979,31014
-7980,31031
-7981,31031
-7999,31031
-8001,31004
-8002,31005
-8003,31005
-8004,31005
-8005,31028
-8006,31028
-8007,31005
-8008,31028
-8009,31005
-8010,31068
-8011,31032
-8012,31058
-8014,31069
-8015,31032
-8016,31068
-8018,31005
-8019,31032
-8020,31069
-8021,31058
-8022,31032
-8023,31053
-8025,31069
-8026,31005
-8027,31069
-8028,31058
-8029,31005
-8030,31005
-8031,31005
-8032,31058
-8033,31005
-8034,31005
-8035,31005
-8036,31032
-8037,31019
-8038,31053
-8039,31069
-8041,31032
-8042,31032
-8043,31005
-8045,31005
-8046,31068
-8048,31032
-8049,31005
-8050,31028
-8051,31069
-8052,31005
-8053,31005
-8054,31005
-8055,31032
-8056,31069
-8057,31032
-8059,31005
-8060,31032
-8061,31069
-8062,31069
-8063,31069
-8064,31032
-8065,31051
-8066,31069
-8067,31053
-8068,31032
-8069,31053
-8070,31053
-8071,31069
-8072,31053
-8073,31068
-8074,31069
-8075,31051
-8076,31051
-8077,31051
-8078,31005
-8079,31053
-8080,31058
-8081,31005
-8083,31005
-8084,31058
-8085,31069
-8086,31069
-8087,31028
-8088,31032
-8089,31005
-8090,31069
-8091,31005
-8092,31028
-8093,31069
-8094,31058
-8095,31019
-8096,31069
-8097,31069
-8098,31053
-8099,31005
-8101,31005
-8102,31005
-8103,31005
-8104,31005
-8105,31005
-8106,31005
-8107,31005
-8108,31005
-8109,31005
-8110,31005
-8201,31001
-8202,31006
-8203,31001
-8204,31006
-8205,31001
-8210,31006
-8212,31006
-8213,31001
-8214,31006
-8215,31001
-8217,31019
-8218,31006
-8219,31006
-8220,31001
-8221,31055
-8223,31055
-8224,31028
-8225,31055
-8226,31055
-8230,31055
-8231,31001
-8232,31001
-8234,31001
-8240,31001
-8241,31001
-8242,31006
-8243,31006
-8244,31055
-8245,31006
-8246,31055
-8247,31006
-8248,31055
-8250,31006
-8251,31006
-8252,31006
-8260,31006
-8270,31006
-8302,31004
-8310,31065
-8311,31004
-8312,31012
-8313,31004
-8314,31004
-8315,31004
-8316,31004
-8317,31065
-8318,31012
-8319,31065
-8320,31004
-8321,31004
-8322,31012
-8323,31004
-8324,31004
-8326,31065
-8327,31004
-8328,31012
-8329,31004
-8330,31001
-8332,31004
-8340,31065
-8341,31065
-8342,31001
-8343,31012
-8344,31012
-8345,31004
-8346,31065
-8347,31004
-8348,31004
-8349,31004
-8350,31065
-8352,31004
-8353,31004
-8360,31065
-8361,31065
-8362,31065
-8401,31001
-8402,31055
-8403,31055
-8404,31001
-8405,31001
-8406,31001
-8501,31063
-8502,31056
-8504,31047
-8505,31063
-8510,31015
-8511,31032
-8512,31047
-8514,31015
-8515,31032
-8518,31068
-8520,31047
-8525,31047
-8526,31015
-8527,31025
-8528,31047
-8530,31014
-8533,31015
-8534,31063
-8535,31015
-8536,31047
-8540,31047
-8541,31047
-8542,31047
-8543,31047
-8544,31047
-8550,31047
-8551,31014
-8553,31047
-8554,31068
-8555,31015
-8556,31014
-8557,31014
-8558,31047
-8559,31014
-8560,31063
-8561,31063
-8562,31032
-8601,31063
-8602,31063
-8603,31063
-8604,31063
-8605,31063
-8606,31063
-8607,31063
-8608,31063
-8609,31063
-8610,31063
-8611,31063
-8618,31063
-8619,31063
-8620,31063
-8625,31063
-8628,31063
-8629,31063
-8638,31063
-8640,31032
-8641,31032
-8645,31063
-8646,31063
-8647,31063
-8648,31063
-8650,31063
-8666,31063
-8690,31063
-8691,31063
-8695,31063
-8701,31025
-8720,31025
-8721,31062
-8722,31062
-8723,31045
-8724,31045
-8730,31045
-8731,31062
-8732,31062
-8733,31025
-8734,31062
-8735,31045
-8736,31045
-8738,31045
-8739,31045
-8740,31062
-8741,31062
-8742,31045
-8750,31033
-8751,31062
-8752,31062
-8753,31062
-8754,31062
-8755,31062
-8756,31062
-8757,31062
-8758,31028
-8759,31062
-8801,31014
-8802,31043
-8803,31014
-8804,31043
-8805,31056
-8807,31056
-8808,31043
-8809,31014
-8810,31047
-8812,31044
-8816,31034
-8817,31010
-8818,31010
-8820,31010
-8821,31031
-8822,31014
-8823,31047
-8824,31047
-8825,31014
-8826,31014
-8827,31014
-8828,31034
-8829,31014
-8830,31010
-8831,31047
-8832,31042
-8833,31014
-8834,31043
-8835,31056
-8836,31056
-8837,31010
-8840,31010
-8844,31056
-8846,31056
-8848,31043
-8850,31034
-8852,31047
-8853,31056
-8854,31034
-8855,31034
-8857,31034
-8858,31014
-8859,31057
-8861,31042
-8862,31042
-8863,31010
-8865,31043
-8867,31014
-8868,31014
-8869,31056
-8870,31014
-8871,31057
-8872,31057
-8873,31034
-8875,31034
-8876,31056
-8879,31057
-8880,31056
-8882,31034
-8884,31034
-8885,31014
-8886,31043
-8887,31014
-8888,31014
-8889,31014
-8890,31034
-8899,31010
-8901,31034
-8902,31034
-8903,31034
-8904,31034
-8906,31010
-8933,31034
-8989,31010
+00501,33095
+00544,33095
+01001,22058
+01002,22046
+01003,22046
+01004,22046
+01005,22070
+01007,22063
+01008,22066
+01009,22049
+01010,22057
+01011,22051
+01012,22046
+01013,22058
+01014,22058
+01020,22058
+01021,22058
+01022,22023
+01026,22046
+01027,22046
+01028,22058
+01029,22020
+01030,22058
+01031,22063
+01032,22046
+01033,22023
+01034,22066
+01035,22046
+01036,22058
+01037,22063
+01038,22046
+01039,22021
+01040,22023
+01041,22023
+01050,22066
+01053,22046
+01054,22021
+01056,22028
+01057,22049
+01059,22046
+01060,22046
+01061,22046
+01062,22046
+01063,22046
+01066,22046
+01068,22070
+01069,22049
+01070,22046
+01071,22066
+01072,22021
+01073,22046
+01074,22070
+01075,22023
+01077,22066
+01079,22049
+01080,22049
+01081,22057
+01082,22063
+01083,22063
+01084,22046
+01085,22066
+01086,22066
+01088,22046
+01089,22058
+01090,22058
+01092,22063
+01093,22021
+01094,22063
+01095,22058
+01096,22046
+01097,22066
+01098,22046
+01101,22058
+01102,22058
+01103,22058
+01104,22058
+01105,22058
+01106,22058
+01107,22058
+01108,22058
+01109,22058
+01111,22058
+01115,22058
+01116,22058
+01118,22058
+01119,22058
+01128,22058
+01129,22058
+01138,22058
+01139,22058
+01144,22058
+01151,22058
+01152,22058
+01199,22058
+01201,22051
+01202,22051
+01203,22051
+01220,22045
+01222,22020
+01223,22051
+01224,22051
+01225,22051
+01226,22051
+01227,22051
+01229,22051
+01230,22020
+01235,22051
+01236,22020
+01237,22051
+01238,22051
+01240,22051
+01242,22051
+01243,22051
+01244,22020
+01245,22020
+01247,22045
+01252,22020
+01253,22020
+01254,22051
+01255,22020
+01256,22045
+01257,22020
+01258,22020
+01259,22020
+01260,22051
+01262,22051
+01263,22051
+01264,22051
+01266,22051
+01267,22045
+01270,22051
+01301,22021
+01302,22021
+01330,22021
+01331,22002
+01337,22021
+01338,22021
+01339,22021
+01340,22021
+01341,22021
+01342,22021
+01343,22021
+01344,22021
+01346,22021
+01347,22021
+01349,22021
+01350,22045
+01351,22021
+01354,22021
+01355,22002
+01360,22021
+01364,22002
+01366,22002
+01367,22021
+01368,22002
+01370,22021
+01373,22021
+01375,22021
+01376,22021
+01378,22002
+01379,22021
+01380,22021
+01420,22016
+01430,22018
+01431,22016
+01432,22004
+01434,22004
+01436,22018
+01438,22018
+01440,22018
+01441,22018
+01450,22004
+01451,22004
+01452,22018
+01453,22026
+01460,22004
+01462,22016
+01463,22004
+01464,22004
+01467,22004
+01468,22018
+01469,22004
+01470,22004
+01471,22004
+01472,22004
+01473,22018
+01474,22016
+01475,22018
+01501,22070
+01503,22070
+01504,41009
+01505,22070
+01506,22070
+01507,22057
+01508,22057
+01509,22057
+01510,22010
+01515,22070
+01516,22070
+01518,22057
+01519,22070
+01520,22070
+01521,22057
+01522,22070
+01523,22010
+01524,22070
+01525,22070
+01526,22070
+01527,22070
+01529,41009
+01531,22070
+01532,22070
+01534,22070
+01535,22070
+01536,22070
+01537,22070
+01538,22070
+01540,22070
+01541,22070
+01542,22070
+01543,22070
+01545,22070
+01546,22070
+01550,22057
+01560,22070
+01561,22010
+01562,22070
+01564,22070
+01566,22057
+01568,22070
+01569,22070
+01570,22065
+01571,22065
+01581,22070
+01583,22070
+01585,22063
+01586,22070
+01588,22070
+01590,22070
+01601,22070
+01602,22070
+01603,22070
+01604,22070
+01605,22070
+01606,22070
+01607,22070
+01608,22070
+01609,22070
+01610,22070
+01611,22070
+01612,22070
+01613,22070
+01614,22070
+01615,22070
+01653,22070
+01655,22070
+01701,22039
+01702,22039
+01703,22039
+01704,22039
+01705,22039
+01718,22011
+01719,22011
+01720,22011
+01721,22039
+01730,22011
+01731,22011
+01740,22031
+01741,22011
+01742,22011
+01745,22039
+01746,22039
+01747,22070
+01748,22039
+01749,22031
+01752,22031
+01754,22011
+01756,22070
+01757,22039
+01760,22039
+01770,22039
+01772,22039
+01773,22011
+01775,22011
+01776,22011
+01778,22039
+01784,22039
+01801,22067
+01803,22008
+01805,22008
+01810,22025
+01812,22025
+01813,22067
+01815,22067
+01821,22027
+01822,22027
+01824,22027
+01826,22027
+01827,22027
+01830,22022
+01831,22022
+01832,22022
+01833,22022
+01834,22022
+01835,22022
+01840,22025
+01841,22025
+01842,22025
+01843,22025
+01844,22034
+01845,22025
+01850,22027
+01851,22027
+01852,22027
+01853,22027
+01854,22027
+01860,22042
+01862,22027
+01863,22027
+01864,22067
+01865,22027
+01866,22027
+01867,22067
+01876,22027
+01879,22027
+01880,22033
+01885,22005
+01886,22027
+01887,22067
+01888,22067
+01889,22067
+01890,22067
+01899,22025
+01901,22029
+01902,22029
+01903,22029
+01904,22029
+01905,22029
+01906,22033
+01907,22054
+01908,22029
+01910,22029
+01913,22042
+01915,22005
+01921,22005
+01922,22042
+01923,22005
+01929,22005
+01930,22019
+01931,22019
+01936,22005
+01937,22005
+01938,22005
+01940,22029
+01944,22005
+01945,22054
+01949,22005
+01950,22042
+01951,22042
+01952,22042
+01960,22054
+01961,22054
+01965,22005
+01966,22019
+01969,22042
+01970,22054
+01971,22054
+01982,22005
+01983,22005
+01984,22005
+01985,22042
+02018,22056
+02019,41009
+02020,22056
+02021,22047
+02025,22056
+02026,22006
+02027,22006
+02030,22039
+02032,22047
+02035,22047
+02038,22044
+02040,22056
+02041,22056
+02043,22056
+02044,22056
+02045,22056
+02047,22056
+02048,22003
+02050,22056
+02051,22056
+02052,22039
+02053,22039
+02054,22039
+02055,22056
+02056,22044
+02059,22056
+02060,22056
+02061,22056
+02062,22047
+02065,22056
+02066,22056
+02067,22047
+02070,22044
+02071,22047
+02072,22060
+02081,22047
+02090,22047
+02093,22044
+02108,22006
+02109,22006
+02110,22006
+02111,22006
+02112,22006
+02113,22006
+02114,22006
+02115,22006
+02116,22006
+02117,22006
+02118,22006
+02119,22006
+02120,22006
+02121,22006
+02122,22006
+02123,22006
+02124,22006
+02125,22006
+02126,22006
+02127,22006
+02128,22006
+02129,22006
+02130,22006
+02131,22006
+02132,22006
+02133,22006
+02134,22006
+02135,22006
+02136,22006
+02137,22006
+02138,22009
+02139,22009
+02140,22009
+02141,22009
+02142,22006
+02143,22055
+02144,22055
+02145,22055
+02148,22030
+02149,22013
+02150,22006
+02151,22006
+02152,22068
+02153,22055
+02155,22032
+02156,22032
+02163,22006
+02169,22053
+02170,22053
+02171,22006
+02176,22033
+02180,22059
+02184,22056
+02185,22056
+02186,22037
+02187,22037
+02188,22056
+02189,22056
+02190,22056
+02191,22056
+02196,22006
+02199,22006
+02201,22006
+02203,22006
+02204,22006
+02205,22006
+02206,22006
+02210,22006
+02211,22006
+02212,22006
+02215,22006
+02217,22006
+02222,22006
+02238,22009
+02241,22006
+02266,22006
+02269,22053
+02283,22006
+02284,22006
+02293,22006
+02297,22006
+02298,22006
+02301,22007
+02302,22007
+02303,22007
+02304,22007
+02305,22007
+02322,22007
+02324,22007
+02325,22007
+02327,22056
+02330,22052
+02331,22052
+02332,22052
+02333,22007
+02334,22007
+02337,22007
+02338,22007
+02339,22056
+02341,22007
+02343,22007
+02344,22061
+02345,22052
+02346,22061
+02347,22061
+02348,22061
+02349,22061
+02350,22007
+02351,22007
+02355,22052
+02356,22007
+02357,22007
+02358,22056
+02359,22056
+02360,22052
+02361,22052
+02362,22052
+02364,22052
+02366,22052
+02367,22052
+02368,22007
+02370,22056
+02375,22007
+02379,22007
+02381,22052
+02382,22007
+02420,22072
+02421,22072
+02445,22006
+02446,22006
+02447,22006
+02451,22062
+02452,22062
+02453,22062
+02454,22062
+02455,22062
+02456,22009
+02457,22043
+02458,22043
+02459,22006
+02460,22043
+02461,22043
+02462,22043
+02464,22043
+02465,22043
+02466,22043
+02467,22006
+02468,22043
+02471,22009
+02472,22009
+02474,22072
+02475,22072
+02476,22072
+02477,22009
+02478,22009
+02479,22009
+02481,22043
+02482,22043
+02492,22040
+02493,22062
+02494,22040
+02495,22043
+02532,22015
+02534,22015
+02535,22048
+02536,22015
+02537,22015
+02538,22064
+02539,22048
+02540,22015
+02541,22015
+02542,22015
+02543,22015
+02552,22048
+02553,22015
+02554,22038
+02556,22015
+02557,22048
+02558,22064
+02559,22015
+02561,22015
+02562,22015
+02563,22015
+02564,22038
+02568,22048
+02571,22064
+02574,22015
+02575,22048
+02576,22064
+02584,22038
+02601,22024
+02630,22024
+02631,22024
+02632,22024
+02633,22024
+02634,22024
+02635,22024
+02637,22024
+02638,22024
+02639,22024
+02641,22024
+02642,22024
+02643,22024
+02644,22015
+02645,22024
+02646,22024
+02647,22024
+02648,22024
+02649,22024
+02650,22024
+02651,22024
+02652,22024
+02653,22024
+02655,22024
+02657,22024
+02659,22024
+02660,22024
+02661,22024
+02662,22024
+02663,22024
+02664,22024
+02666,22024
+02667,22024
+02668,22024
+02669,22024
+02670,22024
+02671,22024
+02672,22024
+02673,22024
+02675,22024
+02702,22014
+02703,22003
+02712,22003
+02713,22041
+02714,22041
+02715,22061
+02717,22041
+02718,22061
+02719,22041
+02720,22014
+02721,22014
+02722,22014
+02723,22014
+02724,22014
+02725,22014
+02726,22014
+02738,22064
+02739,22041
+02740,22041
+02741,22041
+02742,22041
+02743,22041
+02744,22041
+02745,22041
+02746,22041
+02747,22041
+02748,22041
+02760,22003
+02761,22003
+02762,22003
+02763,22003
+02764,22061
+02766,22003
+02767,22061
+02768,22061
+02769,41005
+02770,22064
+02771,41005
+02777,22014
+02779,22061
+02780,22061
+02790,22014
+02791,22014
+02801,22014
+02802,41005
+02804,41008
+02806,41005
+02807,41008
+02808,41008
+02809,41005
+02812,41006
+02813,41006
+02814,41005
+02815,41005
+02816,41007
+02817,41007
+02818,41007
+02822,41006
+02823,41005
+02824,41009
+02825,41005
+02826,41009
+02827,41007
+02828,41005
+02829,41005
+02830,41009
+02831,41007
+02832,41008
+02833,41008
+02835,41002
+02836,41006
+02837,22014
+02838,41009
+02839,41005
+02840,41002
+02841,41002
+02842,41002
+02852,41007
+02857,41005
+02858,41009
+02859,41009
+02860,41004
+02861,41004
+02862,41004
+02863,41004
+02864,41009
+02865,41005
+02871,41002
+02872,41002
+02873,41008
+02874,41006
+02875,41006
+02876,41009
+02877,41006
+02878,22014
+02879,41006
+02880,41006
+02881,41006
+02882,41006
+02883,41006
+02885,41005
+02886,41007
+02887,41007
+02888,41007
+02889,41007
+02891,41008
+02892,41006
+02893,41007
+02894,41008
+02895,41009
+02896,41009
+02898,41008
+02901,41005
+02902,41005
+02903,41005
+02904,41005
+02905,41005
+02906,41005
+02907,41005
+02908,41005
+02909,41005
+02910,41005
+02911,41005
+02912,41005
+02914,41005
+02915,41005
+02916,41005
+02917,41005
+02918,41005
+02919,41005
+02920,41005
+02921,41005
+02940,41005
+03031,30016
+03032,30015
+03033,30016
+03034,30015
+03036,30015
+03037,30015
+03038,30005
+03040,30015
+03041,30005
+03042,30007
+03043,30020
+03044,30007
+03045,30015
+03046,30015
+03047,30020
+03048,30020
+03049,30016
+03051,30016
+03052,30016
+03053,30015
+03054,30016
+03055,30016
+03057,30016
+03060,30016
+03061,30016
+03062,30016
+03063,30016
+03064,30016
+03070,30015
+03071,30020
+03073,22034
+03076,22027
+03077,30007
+03079,22034
+03082,30016
+03084,30020
+03086,30016
+03087,30005
+03101,30015
+03102,30015
+03103,30015
+03104,30015
+03105,30015
+03106,30015
+03108,30015
+03109,30015
+03110,30015
+03111,30015
+03215,30021
+03216,30017
+03217,30021
+03218,30004
+03220,30011
+03221,30017
+03222,30008
+03223,30021
+03224,30004
+03225,30004
+03226,30011
+03227,30011
+03229,30004
+03230,30017
+03231,30008
+03233,30017
+03234,30004
+03235,30008
+03237,30011
+03238,30025
+03240,30013
+03241,30021
+03242,30004
+03243,30008
+03244,30004
+03245,30021
+03246,30011
+03247,30011
+03249,30011
+03251,30014
+03252,30008
+03253,30011
+03254,30011
+03255,30017
+03256,30011
+03257,30017
+03258,30004
+03259,30011
+03260,30004
+03261,30004
+03262,30014
+03263,30004
+03264,30021
+03266,30021
+03268,30004
+03269,30008
+03272,30017
+03273,30004
+03275,30004
+03276,30008
+03278,30004
+03279,30025
+03280,30004
+03281,30004
+03282,30021
+03284,30017
+03285,30021
+03287,30017
+03289,30011
+03290,30006
+03291,30006
+03293,30014
+03298,30011
+03299,30011
+03301,30004
+03302,30004
+03303,30004
+03304,30004
+03305,30004
+03307,30004
+03431,30010
+03435,30010
+03440,30020
+03441,30010
+03442,30020
+03443,30010
+03444,30010
+03445,30010
+03446,30010
+03447,30010
+03448,30010
+03449,30020
+03450,30010
+03451,47004
+03452,30020
+03455,30010
+03456,30010
+03457,30010
+03458,30020
+03461,30020
+03462,30010
+03464,30010
+03465,30010
+03466,47004
+03467,30010
+03468,30020
+03469,30010
+03470,30010
+03561,30014
+03570,30001
+03574,30014
+03575,30012
+03576,30003
+03579,30001
+03580,30014
+03581,30001
+03582,30012
+03583,30012
+03584,30012
+03585,30014
+03586,30014
+03588,30001
+03589,30019
+03590,30012
+03592,30003
+03593,30001
+03595,30012
+03597,30003
+03598,30012
+03601,30017
+03602,30010
+03603,30002
+03604,30010
+03605,30017
+03607,30010
+03608,30010
+03609,47011
+03740,30025
+03741,30013
+03743,30002
+03745,30002
+03746,30002
+03748,30013
+03749,30013
+03750,30013
+03751,30017
+03752,30017
+03753,30013
+03754,30017
+03755,30013
+03756,30013
+03765,30025
+03766,30013
+03768,30013
+03769,30013
+03770,30013
+03771,30025
+03773,30017
+03774,30025
+03777,30013
+03779,30025
+03780,30025
+03781,30013
+03782,30017
+03784,30013
+03785,30025
+03801,30022
+03802,30022
+03803,30022
+03804,20033
+03809,30024
+03810,30024
+03811,22022
+03812,30019
+03813,30019
+03814,30024
+03815,30023
+03816,30024
+03817,30019
+03818,30019
+03819,30007
+03820,30006
+03821,30006
+03822,30006
+03823,30006
+03824,30006
+03825,30006
+03826,22022
+03827,30007
+03830,30024
+03832,30019
+03833,30007
+03835,30023
+03836,30024
+03837,30011
+03838,30019
+03839,30023
+03840,30022
+03841,30005
+03842,30007
+03843,30007
+03844,30007
+03845,30019
+03846,30019
+03847,30019
+03848,30007
+03849,30019
+03850,30024
+03851,30023
+03852,30023
+03853,30024
+03854,30022
+03855,30023
+03856,30007
+03857,30007
+03858,30007
+03859,30007
+03860,30019
+03861,30006
+03862,30007
+03864,30024
+03865,22022
+03866,30023
+03867,30023
+03868,30023
+03869,30006
+03870,30022
+03871,30022
+03872,30024
+03873,30005
+03874,22042
+03875,30019
+03878,30006
+03882,30024
+03883,30011
+03884,30023
+03885,30007
+03886,30011
+03887,30023
+03890,30024
+03894,30024
+03896,30024
+03897,30011
+03901,30006
+03902,20033
+03903,20033
+03904,20033
+03905,20033
+03906,20029
+03907,20033
+03908,30006
+03909,20033
+03910,20033
+03911,20033
+04001,20029
+04002,20029
+04003,20010
+04004,20025
+04005,20006
+04006,20006
+04007,20006
+04008,20010
+04009,20009
+04010,20009
+04011,20010
+04013,20025
+04014,20006
+04015,20025
+04016,20009
+04017,20025
+04019,20025
+04020,20025
+04021,20025
+04022,20009
+04024,20025
+04027,20029
+04028,20025
+04029,20025
+04030,20029
+04032,20010
+04033,20010
+04034,20010
+04037,20009
+04038,20025
+04039,20025
+04040,20009
+04041,20025
+04042,20025
+04043,20006
+04046,20006
+04047,20025
+04048,20025
+04049,20025
+04050,20025
+04051,20023
+04054,20033
+04055,20009
+04056,20029
+04057,20009
+04061,20029
+04062,20025
+04063,20006
+04064,20006
+04066,20010
+04068,20025
+04069,20025
+04070,20025
+04071,20025
+04072,20006
+04073,20029
+04074,20025
+04076,20029
+04077,20025
+04078,20010
+04079,20010
+04082,20025
+04083,20029
+04084,20025
+04085,20025
+04086,20010
+04087,20029
+04088,20023
+04090,20033
+04091,20025
+04092,20025
+04093,20025
+04094,20006
+04095,20029
+04096,20025
+04097,20025
+04098,20025
+04101,20025
+04102,20025
+04103,20025
+04104,20025
+04105,20025
+04106,20025
+04107,20025
+04108,20025
+04109,20025
+04110,20025
+04112,20025
+04116,20025
+04122,20025
+04123,20025
+04124,20025
+04210,20019
+04211,20019
+04212,20019
+04216,20028
+04217,20023
+04219,20023
+04220,20019
+04221,20019
+04222,20019
+04223,20019
+04224,20028
+04225,20016
+04226,20028
+04227,20016
+04228,20019
+04230,20019
+04231,20023
+04234,20016
+04236,20019
+04237,20028
+04238,20019
+04239,20016
+04240,20019
+04241,20019
+04243,20019
+04250,20019
+04252,20019
+04253,20016
+04254,20016
+04255,20023
+04256,20019
+04257,20028
+04258,20019
+04259,20019
+04260,20019
+04261,20023
+04262,20016
+04263,20019
+04265,20019
+04266,20019
+04267,20023
+04268,20023
+04270,20023
+04271,20023
+04274,20019
+04275,20028
+04276,20028
+04280,20019
+04281,20023
+04282,20019
+04284,20001
+04285,20016
+04286,20023
+04287,20010
+04288,20019
+04289,20023
+04290,20028
+04291,20019
+04292,20023
+04294,20016
+04330,20001
+04332,20001
+04333,20001
+04336,20001
+04338,20001
+04341,20001
+04342,20001
+04343,20001
+04344,20001
+04345,20001
+04346,20001
+04347,20001
+04348,20001
+04349,20016
+04350,20019
+04351,20001
+04352,20016
+04353,20001
+04354,20031
+04355,20001
+04357,20001
+04358,20031
+04359,20001
+04360,20016
+04363,20001
+04364,20001
+04401,20002
+04402,20002
+04406,20035
+04408,20002
+04410,20002
+04411,20002
+04412,20002
+04413,20018
+04414,20014
+04415,20014
+04416,20002
+04417,20020
+04418,20002
+04419,20002
+04420,20002
+04421,20002
+04422,20002
+04424,20018
+04426,20014
+04427,20002
+04428,20002
+04429,20002
+04430,20022
+04431,20002
+04434,20024
+04435,20002
+04438,20002
+04441,20035
+04442,20035
+04443,20014
+04444,20002
+04448,20020
+04449,20002
+04450,20002
+04451,20020
+04453,20002
+04454,20011
+04455,20020
+04456,20002
+04457,20020
+04459,20020
+04460,20022
+04461,20002
+04462,20022
+04463,20014
+04464,20035
+04468,20002
+04469,20002
+04471,20018
+04472,20002
+04473,20002
+04474,20002
+04475,20020
+04476,20002
+04478,20035
+04479,20014
+04481,20014
+04485,20035
+04487,20020
+04488,20002
+04489,20002
+04490,20011
+04491,20011
+04492,20011
+04493,20020
+04495,20020
+04496,20002
+04497,20018
+04530,20010
+04535,20010
+04537,20008
+04538,20008
+04539,20013
+04541,20013
+04543,20013
+04544,20008
+04547,20027
+04548,20010
+04549,20008
+04551,20013
+04553,20013
+04554,20013
+04555,20013
+04556,20013
+04558,20013
+04562,20010
+04563,20027
+04564,20013
+04565,20010
+04568,20013
+04570,20008
+04571,20008
+04572,20027
+04573,20013
+04574,20027
+04575,20008
+04576,20008
+04578,20010
+04579,20010
+04605,20015
+04606,20021
+04607,20015
+04609,20003
+04611,20021
+04612,20003
+04613,20015
+04614,20007
+04616,20007
+04617,20007
+04619,20011
+04622,20015
+04623,20021
+04624,20015
+04625,20003
+04626,20021
+04627,20007
+04628,20021
+04629,20007
+04630,20021
+04631,20011
+04634,20015
+04635,20003
+04637,20011
+04640,20015
+04642,20007
+04643,20021
+04644,20003
+04645,20007
+04646,20003
+04648,20021
+04649,20021
+04650,20007
+04652,20021
+04653,20003
+04654,20021
+04655,20021
+04657,20011
+04658,20015
+04660,20003
+04662,20003
+04664,20015
+04666,20011
+04667,20011
+04668,20011
+04669,20015
+04671,20011
+04672,20003
+04673,20007
+04674,20003
+04675,20003
+04676,20007
+04677,20015
+04679,20003
+04680,20015
+04681,20007
+04683,20007
+04684,20007
+04685,20003
+04686,20021
+04691,20021
+04693,20015
+04694,20011
+04730,20018
+04732,20026
+04733,20022
+04734,20026
+04735,20026
+04736,20012
+04737,20017
+04738,20026
+04739,20017
+04740,20026
+04741,20017
+04742,20026
+04743,20017
+04744,20017
+04745,20017
+04746,20012
+04747,20018
+04750,20012
+04751,20012
+04756,20017
+04757,20026
+04758,20026
+04760,20018
+04761,20018
+04762,20012
+04763,20018
+04764,20026
+04765,20018
+04766,20026
+04768,20026
+04769,20026
+04772,20017
+04773,20017
+04774,20017
+04775,20026
+04776,20022
+04777,20022
+04779,20012
+04780,20018
+04781,20017
+04783,20012
+04785,20012
+04786,20026
+04787,20026
+04841,20027
+04843,20027
+04847,20027
+04848,20027
+04849,20027
+04850,20027
+04851,20027
+04852,20027
+04853,20027
+04854,20027
+04855,20027
+04856,20027
+04858,20027
+04859,20027
+04860,20027
+04861,20027
+04862,20027
+04863,20027
+04864,20027
+04865,20027
+04901,20031
+04903,20031
+04910,20031
+04911,20030
+04912,20030
+04915,20005
+04917,20031
+04918,20031
+04920,20030
+04921,20005
+04922,20031
+04923,20014
+04924,20030
+04925,20031
+04926,20031
+04927,20031
+04928,20024
+04929,20024
+04930,20014
+04932,20002
+04933,20024
+04935,20031
+04936,20016
+04937,20031
+04938,20016
+04939,20002
+04940,20016
+04941,20031
+04942,20030
+04943,20024
+04944,20031
+04945,20031
+04947,20016
+04949,20005
+04950,20030
+04951,20005
+04952,20005
+04953,20024
+04954,20016
+04955,20016
+04956,20016
+04957,20030
+04958,20030
+04961,20030
+04962,20031
+04963,20031
+04964,20016
+04965,20024
+04966,20016
+04967,20024
+04969,20024
+04970,20016
+04971,20024
+04972,20005
+04973,20027
+04974,20005
+04975,20031
+04976,20030
+04978,20031
+04979,20030
+04981,20005
+04982,20016
+04983,20016
+04984,20016
+04985,20031
+04986,20031
+04987,20031
+04988,20031
+04989,20031
+04992,20016
+05001,30013
+05009,30013
+05030,47015
+05031,47009
+05032,47009
+05033,30025
+05034,30013
+05035,30013
+05036,47003
+05037,47015
+05038,47009
+05039,30013
+05040,30013
+05041,47003
+05042,30025
+05043,30013
+05045,30013
+05046,30025
+05047,30013
+05048,47015
+05049,47015
+05050,47013
+05051,30025
+05052,30013
+05053,30013
+05054,30013
+05055,30013
+05056,30013
+05058,30013
+05059,30013
+05060,47009
+05061,47009
+05062,47015
+05065,30013
+05067,30013
+05068,47009
+05069,30025
+05070,30013
+05071,30013
+05072,30013
+05073,30013
+05074,30013
+05075,30013
+05076,47003
+05077,47009
+05079,30013
+05081,30025
+05083,30013
+05084,30013
+05085,30025
+05086,47003
+05088,30013
+05089,47015
+05091,30013
+05101,47011
+05141,47011
+05142,47011
+05143,47011
+05146,47011
+05148,47011
+05149,47011
+05150,47011
+05151,47011
+05152,47011
+05153,47011
+05154,47011
+05155,47011
+05156,47011
+05158,47004
+05159,47004
+05161,47011
+05201,47002
+05250,47002
+05251,47002
+05252,47002
+05253,47010
+05254,47002
+05255,47002
+05257,47002
+05260,47002
+05261,47002
+05262,47002
+05301,47004
+05302,47004
+05303,47004
+05304,47004
+05340,47011
+05341,47004
+05342,47002
+05343,47014
+05344,47004
+05345,47014
+05346,47004
+05350,22045
+05351,47014
+05352,22045
+05353,47014
+05354,47004
+05355,47014
+05356,47002
+05357,47004
+05358,47002
+05359,47014
+05360,47014
+05361,47002
+05362,47004
+05363,47002
+05401,47005
+05402,47005
+05403,47005
+05404,47005
+05405,47005
+05406,47005
+05407,47005
+05408,47005
+05439,47005
+05440,47012
+05441,47012
+05442,47007
+05443,47006
+05444,47005
+05445,47005
+05446,47005
+05447,47012
+05448,47005
+05449,47005
+05450,47012
+05451,47005
+05452,47005
+05453,47005
+05454,47012
+05455,47012
+05456,47006
+05457,47012
+05458,47005
+05459,47012
+05460,47012
+05461,47005
+05462,47005
+05463,33099
+05464,47005
+05465,47005
+05466,47005
+05468,47005
+05469,47006
+05470,47012
+05471,47012
+05472,47006
+05473,47005
+05474,47005
+05476,47012
+05477,47005
+05478,47012
+05479,47012
+05481,47012
+05482,47005
+05483,47012
+05485,47012
+05486,47005
+05487,47006
+05488,47012
+05489,47005
+05490,47005
+05491,47006
+05492,47007
+05494,47005
+05495,47005
+05501,22025
+05601,47003
+05602,47003
+05603,47003
+05604,47003
+05609,47003
+05620,47003
+05633,47003
+05640,47003
+05641,47003
+05647,47003
+05648,47003
+05649,47003
+05650,47003
+05651,47003
+05652,47007
+05653,47007
+05654,47003
+05655,47007
+05656,47007
+05657,47007
+05658,47003
+05660,47003
+05661,47007
+05662,47007
+05663,47003
+05664,47003
+05665,47007
+05666,47003
+05667,47003
+05669,47009
+05670,47003
+05671,47003
+05672,47007
+05673,47003
+05674,47003
+05675,47003
+05676,47003
+05677,47003
+05678,47003
+05679,47003
+05680,47007
+05681,47003
+05682,47003
+05701,47010
+05702,47010
+05730,47010
+05731,47010
+05732,47010
+05733,47010
+05734,47006
+05735,47010
+05736,47010
+05737,47010
+05738,47010
+05739,47010
+05740,47006
+05741,47010
+05742,47010
+05743,47010
+05744,47010
+05745,47010
+05746,47009
+05747,47009
+05748,47009
+05750,47010
+05751,47010
+05753,47006
+05757,47010
+05758,47010
+05759,47010
+05760,47010
+05761,47010
+05762,47009
+05763,47010
+05764,47010
+05765,47010
+05766,47006
+05767,47009
+05768,33016
+05769,47006
+05770,47006
+05772,47009
+05773,47010
+05774,47010
+05775,47010
+05776,33016
+05777,47010
+05778,47010
+05819,47013
+05820,47008
+05821,47013
+05822,47008
+05823,47008
+05824,47013
+05825,47008
+05826,47007
+05827,47007
+05828,47013
+05829,47008
+05830,47008
+05832,47013
+05833,47008
+05836,47013
+05837,47013
+05838,47013
+05839,47008
+05840,47013
+05841,47007
+05842,47007
+05843,47007
+05845,47008
+05846,47008
+05847,47007
+05848,47013
+05849,47013
+05850,47013
+05851,47013
+05853,47008
+05855,47008
+05857,47008
+05858,47013
+05859,47008
+05860,47008
+05861,47013
+05862,47013
+05863,47013
+05866,47013
+05867,47013
+05868,47008
+05871,47013
+05872,47008
+05873,47013
+05874,47008
+05875,47008
+05901,30003
+05902,30003
+05903,30003
+05904,30012
+05905,30012
+05906,30012
+05907,30003
+06001,7007
+06002,7007
+06006,7007
+06010,7002
+06011,7002
+06013,7002
+06016,7007
+06018,7021
+06019,7007
+06020,7007
+06021,7028
+06022,7007
+06023,7012
+06024,7021
+06025,7007
+06026,7007
+06027,7007
+06028,7008
+06029,7020
+06030,7007
+06031,7021
+06032,7007
+06033,7007
+06034,7007
+06035,7007
+06037,7012
+06039,7021
+06040,7008
+06041,7008
+06042,7008
+06043,7008
+06045,7008
+06050,7012
+06051,7012
+06052,7012
+06053,7012
+06057,7025
+06058,7028
+06059,7028
+06060,7007
+06061,7025
+06062,7012
+06063,7028
+06064,7007
+06065,7007
+06066,7020
+06067,7007
+06068,7021
+06069,7021
+06070,7007
+06071,7023
+06072,7023
+06073,7007
+06074,7008
+06075,7023
+06076,7023
+06077,7023
+06078,7007
+06079,7021
+06080,7007
+06081,7007
+06082,7023
+06083,7023
+06084,7020
+06085,7007
+06088,7007
+06089,7007
+06090,7007
+06091,7007
+06092,7007
+06093,7007
+06094,7028
+06095,7007
+06096,7007
+06098,7028
+06101,7007
+06102,7007
+06103,7007
+06104,7007
+06105,7007
+06106,7007
+06107,7007
+06108,7007
+06109,7007
+06110,7007
+06111,7007
+06112,7007
+06114,7007
+06115,7007
+06117,7007
+06118,7007
+06119,7007
+06120,7007
+06123,7007
+06126,7007
+06127,7007
+06128,7007
+06129,7007
+06131,7007
+06132,7007
+06133,7007
+06134,7007
+06137,7007
+06138,7007
+06140,7007
+06141,7007
+06142,7007
+06143,7007
+06144,7007
+06145,7007
+06146,7007
+06147,7007
+06150,7007
+06151,7007
+06152,7007
+06153,7007
+06154,7007
+06155,7007
+06156,7007
+06160,7007
+06161,7007
+06167,7007
+06176,7007
+06180,7007
+06183,7007
+06199,7007
+06226,7027
+06230,7019
+06231,7027
+06232,7008
+06233,7019
+06234,7019
+06235,7027
+06237,7027
+06238,7027
+06239,7019
+06241,7019
+06242,7019
+06243,7019
+06244,7019
+06245,7019
+06246,7019
+06247,7027
+06248,7008
+06249,7027
+06250,7027
+06251,7027
+06254,7018
+06255,7019
+06256,7027
+06258,7019
+06259,7019
+06260,7019
+06262,7019
+06263,7019
+06264,7027
+06265,7023
+06266,7027
+06267,7019
+06268,7027
+06269,7027
+06277,7019
+06278,7027
+06279,7023
+06280,7027
+06281,7019
+06282,7019
+06320,7014
+06330,7018
+06331,7018
+06332,7019
+06333,7014
+06334,7018
+06335,7014
+06336,7018
+06338,7014
+06339,7014
+06340,7014
+06349,7014
+06350,7018
+06351,7018
+06353,7014
+06354,7019
+06355,7014
+06357,7014
+06359,41008
+06360,7018
+06365,7018
+06370,7014
+06371,7014
+06372,7014
+06373,7019
+06374,7019
+06375,7014
+06376,7014
+06377,7019
+06378,41008
+06379,41008
+06380,7018
+06382,7014
+06383,7018
+06384,7018
+06385,7014
+06387,7019
+06388,7014
+06389,7018
+06390,7014
+06401,7004
+06403,7026
+06404,7003
+06405,7013
+06408,7026
+06409,7010
+06410,7026
+06411,7026
+06412,7010
+06413,7010
+06414,7010
+06415,7010
+06416,7010
+06417,7010
+06418,7004
+06419,7010
+06420,7014
+06422,7010
+06423,7010
+06424,7010
+06426,7010
+06437,7013
+06438,7010
+06439,7014
+06440,7003
+06441,7010
+06442,7010
+06443,7013
+06444,7022
+06447,7010
+06450,7009
+06451,7009
+06455,7010
+06456,7010
+06457,7010
+06459,7010
+06460,7011
+06461,7011
+06467,7022
+06468,7001
+06469,7010
+06470,7003
+06471,7013
+06472,7013
+06473,7013
+06474,7010
+06475,7010
+06477,7013
+06478,7004
+06479,7022
+06480,7010
+06481,7010
+06482,7003
+06483,7004
+06484,7004
+06487,7026
+06488,7026
+06489,7022
+06491,7001
+06492,7009
+06493,7009
+06494,7009
+06495,7009
+06498,7010
+06501,7013
+06502,7013
+06503,7013
+06504,7013
+06505,7013
+06506,7013
+06507,7013
+06508,7013
+06509,7013
+06510,7013
+06511,7013
+06512,7013
+06513,7013
+06514,7013
+06515,7013
+06516,7013
+06517,7013
+06518,7013
+06519,7013
+06520,7013
+06521,7013
+06524,7013
+06525,7013
+06530,7013
+06531,7013
+06532,7013
+06533,7013
+06534,7013
+06535,7013
+06536,7013
+06537,7013
+06538,7013
+06540,7013
+06601,7001
+06602,7001
+06604,7001
+06605,7001
+06606,7001
+06607,7001
+06608,7001
+06610,7001
+06611,7001
+06612,7001
+06614,7001
+06615,7001
+06673,7001
+06699,7001
+06701,7026
+06702,7026
+06703,7026
+06704,7026
+06705,7026
+06706,7026
+06708,7026
+06710,7026
+06712,7026
+06716,7026
+06720,7026
+06721,7026
+06722,7026
+06723,7026
+06724,7026
+06725,7026
+06726,7026
+06749,7026
+06750,7025
+06751,7026
+06752,7015
+06753,7021
+06754,7021
+06755,7015
+06756,7025
+06757,7021
+06758,7025
+06759,7025
+06762,7026
+06763,7025
+06770,7026
+06776,7015
+06777,7015
+06778,7025
+06779,7026
+06781,7002
+06782,7026
+06783,7015
+06784,7015
+06785,7015
+06786,7002
+06787,7026
+06790,7025
+06791,7025
+06792,7025
+06793,7015
+06794,7015
+06795,7026
+06796,7021
+06798,7026
+06801,7003
+06804,7003
+06807,7006
+06810,7003
+06811,7003
+06812,7003
+06813,7003
+06814,7003
+06816,7003
+06817,7003
+06820,7024
+06824,7001
+06825,7001
+06828,7001
+06829,7017
+06830,7006
+06831,7006
+06836,7006
+06838,7017
+06840,7017
+06850,7017
+06851,7017
+06852,7017
+06853,7017
+06854,7017
+06855,7017
+06856,7017
+06857,7017
+06858,7017
+06860,7017
+06870,7006
+06875,7003
+06876,7003
+06877,7003
+06878,7006
+06879,7003
+06880,7017
+06881,7017
+06883,7017
+06888,7017
+06889,7017
+06890,7001
+06896,7003
+06897,7017
+06901,7024
+06902,7024
+06903,7024
+06904,7024
+06905,7024
+06906,7024
+06907,7024
+06910,7024
+06911,7024
+06912,7024
+06913,7024
+06914,7024
+06926,7024
+06927,7024
+07001,31048
+07002,31002
+07003,31030
+07004,31030
+07005,31007
+07006,31030
+07007,31030
+07008,31048
+07009,31030
+07010,31061
+07011,31040
+07012,31040
+07013,31040
+07014,31040
+07015,31040
+07016,31064
+07017,31035
+07018,31038
+07019,31035
+07020,31061
+07021,31030
+07022,31061
+07023,31044
+07024,31013
+07026,31040
+07027,31059
+07028,31030
+07029,31024
+07030,31020
+07031,31024
+07032,31024
+07033,31064
+07034,31007
+07035,31046
+07036,31011
+07039,31026
+07040,31026
+07041,31059
+07042,31030
+07043,31030
+07044,31030
+07045,31007
+07046,31007
+07047,31037
+07050,31038
+07051,31038
+07052,31026
+07054,31007
+07055,31040
+07057,31040
+07058,31007
+07059,31059
+07060,31044
+07061,31044
+07062,31044
+07063,31044
+07064,31010
+07065,31048
+07066,31048
+07067,31010
+07068,31026
+07069,31044
+07070,31040
+07071,31040
+07072,31016
+07073,31040
+07074,31016
+07075,31016
+07076,31044
+07077,31010
+07078,31059
+07079,31026
+07080,31044
+07081,31059
+07082,31007
+07083,31064
+07086,31020
+07087,31020
+07088,31059
+07090,31059
+07091,31059
+07092,31059
+07093,31037
+07094,31054
+07095,31010
+07096,31054
+07097,31023
+07099,31024
+07101,31035
+07102,31035
+07103,31035
+07104,31035
+07105,31035
+07106,31035
+07107,31035
+07108,31035
+07109,31003
+07110,31003
+07111,31022
+07112,31035
+07114,31035
+07175,31035
+07184,31035
+07188,31035
+07189,31035
+07191,31035
+07192,31035
+07193,31035
+07195,31035
+07198,31035
+07199,31035
+07201,31011
+07202,31011
+07203,31011
+07204,31064
+07205,31011
+07206,31011
+07207,31011
+07208,31011
+07302,31023
+07303,31023
+07304,31023
+07305,31023
+07306,31023
+07307,31023
+07308,31023
+07310,31023
+07311,31023
+07395,31023
+07399,31023
+07401,31050
+07403,31046
+07405,31046
+07407,31041
+07410,31050
+07416,31060
+07417,31050
+07418,33133
+07419,31060
+07420,31046
+07421,31046
+07422,31060
+07423,31050
+07424,31041
+07428,31060
+07430,31050
+07432,31050
+07435,31046
+07436,31050
+07438,31008
+07439,31036
+07440,31046
+07442,31046
+07444,31046
+07446,31050
+07450,31050
+07451,31050
+07452,31050
+07456,31046
+07457,31046
+07458,31050
+07460,31060
+07461,31060
+07462,31060
+07463,31050
+07465,31046
+07470,31066
+07474,31066
+07480,31046
+07481,31050
+07495,31050
+07501,31041
+07502,31066
+07503,31041
+07504,31041
+07505,31041
+07506,31050
+07507,31050
+07508,31066
+07509,31041
+07510,31041
+07511,31066
+07512,31066
+07513,31041
+07514,31041
+07522,31041
+07524,31041
+07533,31041
+07538,31066
+07543,31041
+07544,31041
+07601,31016
+07602,31016
+07603,31061
+07604,31016
+07605,31013
+07606,31016
+07607,31016
+07608,31016
+07620,31013
+07621,31061
+07624,31067
+07626,31013
+07627,31013
+07628,31013
+07630,31067
+07631,31013
+07632,31013
+07640,31067
+07641,31013
+07642,31067
+07643,31016
+07644,31016
+07645,31067
+07646,31061
+07647,31067
+07648,31067
+07649,31067
+07650,31013
+07652,31039
+07653,31039
+07656,31067
+07657,31061
+07660,31061
+07661,31016
+07662,31016
+07663,31016
+07666,31061
+07670,31013
+07675,31067
+07676,31067
+07677,31067
+07699,31016
+07701,31049
+07702,31049
+07703,31049
+07704,31049
+07710,31015
+07711,31027
+07712,31033
+07715,31033
+07716,31049
+07717,31033
+07718,31049
+07719,31033
+07720,31033
+07721,31021
+07722,31049
+07723,31027
+07724,31027
+07726,31015
+07727,31033
+07728,31015
+07730,31021
+07731,31025
+07732,31049
+07733,31021
+07734,31021
+07735,31021
+07737,31049
+07738,31049
+07739,31049
+07740,31027
+07746,31015
+07747,31021
+07748,31049
+07750,31027
+07751,31021
+07752,31049
+07753,31033
+07754,31033
+07755,31027
+07756,31033
+07757,31027
+07758,31049
+07760,31049
+07762,31033
+07763,31015
+07764,31027
+07765,31021
+07799,31027
+07801,31008
+07802,31008
+07803,31008
+07806,31008
+07820,31017
+07821,31036
+07822,31060
+07823,31043
+07825,31036
+07826,31036
+07827,33102
+07828,31008
+07829,31043
+07830,31014
+07831,31014
+07832,31036
+07833,31036
+07834,31007
+07836,31008
+07837,31036
+07838,31036
+07839,31036
+07840,31017
+07842,31007
+07843,31008
+07844,31036
+07845,31008
+07846,31036
+07847,31008
+07848,31036
+07849,31008
+07850,31008
+07851,31036
+07852,31008
+07853,31017
+07855,31036
+07856,31008
+07857,31008
+07860,31036
+07863,31043
+07865,31017
+07866,31007
+07869,31008
+07870,31017
+07871,31036
+07874,31008
+07875,31036
+07876,31008
+07877,31036
+07878,31007
+07879,31036
+07880,31017
+07881,31036
+07882,31043
+07885,31008
+07890,31036
+07901,31059
+07902,31059
+07920,31031
+07921,31031
+07922,31059
+07924,31031
+07926,31031
+07927,31031
+07928,31059
+07930,31031
+07931,31031
+07932,31031
+07933,31059
+07934,31031
+07935,31031
+07936,31031
+07938,31031
+07939,31031
+07940,31031
+07945,31031
+07946,31031
+07950,31031
+07960,31031
+07961,31031
+07962,31031
+07963,31031
+07970,31031
+07974,31059
+07976,31031
+07977,31031
+07978,31031
+07979,31014
+07980,31031
+07981,31031
+07999,31031
+08001,31004
+08002,31005
+08003,31005
+08004,31005
+08005,31028
+08006,31028
+08007,31005
+08008,31028
+08009,31005
+08010,31068
+08011,31032
+08012,31058
+08014,31069
+08015,31032
+08016,31068
+08018,31005
+08019,31032
+08020,31069
+08021,31058
+08022,31032
+08023,31053
+08025,31069
+08026,31005
+08027,31069
+08028,31058
+08029,31005
+08030,31005
+08031,31005
+08032,31058
+08033,31005
+08034,31005
+08035,31005
+08036,31032
+08037,31019
+08038,31053
+08039,31069
+08041,31032
+08042,31032
+08043,31005
+08045,31005
+08046,31068
+08048,31032
+08049,31005
+08050,31028
+08051,31069
+08052,31005
+08053,31005
+08054,31005
+08055,31032
+08056,31069
+08057,31032
+08059,31005
+08060,31032
+08061,31069
+08062,31069
+08063,31069
+08064,31032
+08065,31051
+08066,31069
+08067,31053
+08068,31032
+08069,31053
+08070,31053
+08071,31069
+08072,31053
+08073,31068
+08074,31069
+08075,31051
+08076,31051
+08077,31051
+08078,31005
+08079,31053
+08080,31058
+08081,31005
+08083,31005
+08084,31058
+08085,31069
+08086,31069
+08087,31028
+08088,31032
+08089,31005
+08090,31069
+08091,31005
+08092,31028
+08093,31069
+08094,31058
+08095,31019
+08096,31069
+08097,31069
+08098,31053
+08099,31005
+08101,31005
+08102,31005
+08103,31005
+08104,31005
+08105,31005
+08106,31005
+08107,31005
+08108,31005
+08109,31005
+08110,31005
+08201,31001
+08202,31006
+08203,31001
+08204,31006
+08205,31001
+08210,31006
+08212,31006
+08213,31001
+08214,31006
+08215,31001
+08217,31019
+08218,31006
+08219,31006
+08220,31001
+08221,31055
+08223,31055
+08224,31028
+08225,31055
+08226,31055
+08230,31055
+08231,31001
+08232,31001
+08234,31001
+08240,31001
+08241,31001
+08242,31006
+08243,31006
+08244,31055
+08245,31006
+08246,31055
+08247,31006
+08248,31055
+08250,31006
+08251,31006
+08252,31006
+08260,31006
+08270,31006
+08302,31004
+08310,31065
+08311,31004
+08312,31012
+08313,31004
+08314,31004
+08315,31004
+08316,31004
+08317,31065
+08318,31012
+08319,31065
+08320,31004
+08321,31004
+08322,31012
+08323,31004
+08324,31004
+08326,31065
+08327,31004
+08328,31012
+08329,31004
+08330,31001
+08332,31004
+08340,31065
+08341,31065
+08342,31001
+08343,31012
+08344,31012
+08345,31004
+08346,31065
+08347,31004
+08348,31004
+08349,31004
+08350,31065
+08352,31004
+08353,31004
+08360,31065
+08361,31065
+08362,31065
+08401,31001
+08402,31055
+08403,31055
+08404,31001
+08405,31001
+08406,31001
+08501,31063
+08502,31056
+08504,31047
+08505,31063
+08510,31015
+08511,31032
+08512,31047
+08514,31015
+08515,31032
+08518,31068
+08520,31047
+08525,31047
+08526,31015
+08527,31025
+08528,31047
+08530,31014
+08533,31015
+08534,31063
+08535,31015
+08536,31047
+08540,31047
+08541,31047
+08542,31047
+08543,31047
+08544,31047
+08550,31047
+08551,31014
+08553,31047
+08554,31068
+08555,31015
+08556,31014
+08557,31014
+08558,31047
+08559,31014
+08560,31063
+08561,31063
+08562,31032
+08601,31063
+08602,31063
+08603,31063
+08604,31063
+08605,31063
+08606,31063
+08607,31063
+08608,31063
+08609,31063
+08610,31063
+08611,31063
+08618,31063
+08619,31063
+08620,31063
+08625,31063
+08628,31063
+08629,31063
+08638,31063
+08640,31032
+08641,31032
+08645,31063
+08646,31063
+08647,31063
+08648,31063
+08650,31063
+08666,31063
+08690,31063
+08691,31063
+08695,31063
+08701,31025
+08720,31025
+08721,31062
+08722,31062
+08723,31045
+08724,31045
+08730,31045
+08731,31062
+08732,31062
+08733,31025
+08734,31062
+08735,31045
+08736,31045
+08738,31045
+08739,31045
+08740,31062
+08741,31062
+08742,31045
+08750,31033
+08751,31062
+08752,31062
+08753,31062
+08754,31062
+08755,31062
+08756,31062
+08757,31062
+08758,31028
+08759,31062
+08801,31014
+08802,31043
+08803,31014
+08804,31043
+08805,31056
+08807,31056
+08808,31043
+08809,31014
+08810,31047
+08812,31044
+08816,31034
+08817,31010
+08818,31010
+08820,31010
+08821,31031
+08822,31014
+08823,31047
+08824,31047
+08825,31014
+08826,31014
+08827,31014
+08828,31034
+08829,31014
+08830,31010
+08831,31047
+08832,31042
+08833,31014
+08834,31043
+08835,31056
+08836,31056
+08837,31010
+08840,31010
+08844,31056
+08846,31056
+08848,31043
+08850,31034
+08852,31047
+08853,31056
+08854,31034
+08855,31034
+08857,31034
+08858,31014
+08859,31057
+08861,31042
+08862,31042
+08863,31010
+08865,31043
+08867,31014
+08868,31014
+08869,31056
+08870,31014
+08871,31057
+08872,31057
+08873,31034
+08875,31034
+08876,31056
+08879,31057
+08880,31056
+08882,31034
+08884,31034
+08885,31014
+08886,31043
+08887,31014
+08888,31014
+08889,31014
+08890,31034
+08899,31010
+08901,31034
+08902,31034
+08903,31034
+08904,31034
+08906,31010
+08933,31034
+08989,31010
10001,33080
10002,33080
10003,33080
diff --git a/_delphi_utils_python/delphi_utils/data/zip_msa_table.csv b/_delphi_utils_python/delphi_utils/data/zip_msa_table.csv
new file mode 100644
index 000000000..d37d075c5
--- /dev/null
+++ b/_delphi_utils_python/delphi_utils/data/zip_msa_table.csv
@@ -0,0 +1,20750 @@
+msa,zip,weight
+10180,76437,0.02272330012235623
+10180,76443,0.9304164470216132
+10180,76464,0.06324110671936757
+10180,76469,1.0
+10180,79501,1.0
+10180,79503,1.0
+10180,79504,0.9956942949407964
+10180,79508,1.0
+10180,79510,0.9954898521673766
+10180,79520,0.9681502654144548
+10180,79525,1.0
+10180,79530,1.0
+10180,79533,0.8792372881355932
+10180,79536,0.9967923015236567
+10180,79541,1.0
+10180,79553,0.9760737964831364
+10180,79560,0.12408759124087593
+10180,79561,0.7719033232628398
+10180,79562,1.0
+10180,79563,1.0
+10180,79566,0.5105105105105106
+10180,79567,0.019270678920841985
+10180,79601,0.9861271676300578
+10180,79602,0.9999999999999999
+10180,79603,1.0
+10180,79605,1.0
+10180,79606,1.0
+10180,79607,1.0
+10180,79699,1.0
+10380,00601,0.005654281098546043
+10380,00602,1.0
+10380,00603,1.0
+10380,00610,1.0
+10380,00631,0.6700863930885529
+10380,00641,0.997916065531724
+10380,00650,0.11841578877183626
+10380,00662,1.0
+10380,00664,0.008460438512869399
+10380,00669,0.9938138784292632
+10380,00670,0.01121647802589987
+10380,00676,0.9999999999999998
+10380,00677,1.0000000000000002
+10380,00678,0.06829864481110032
+10380,00680,0.00455796353629171
+10380,00685,0.9999999999999999
+10380,00690,1.0
+10420,44056,1.0
+10420,44067,1.0
+10420,44087,1.0
+10420,44141,0.020652563642882756
+10420,44201,0.989446291744976
+10420,44202,0.9916159705536528
+10420,44203,0.9969453064391
+10420,44216,0.9358674877893396
+10420,44221,1.0
+10420,44223,1.0
+10420,44224,0.9999999999999999
+10420,44231,0.8962445835339432
+10420,44234,0.7366412213740458
+10420,44236,1.0
+10420,44240,0.9999999999999999
+10420,44241,1.0
+10420,44243,1.0
+10420,44250,1.0
+10420,44255,1.0
+10420,44256,0.0007737068618127308
+10420,44260,0.9295910780669144
+10420,44262,1.0
+10420,44264,1.0
+10420,44265,1.0
+10420,44266,1.0
+10420,44272,1.0
+10420,44278,1.0000000000000002
+10420,44281,0.0045069105962475785
+10420,44285,1.0
+10420,44286,1.0
+10420,44288,1.0
+10420,44301,1.0
+10420,44302,1.0
+10420,44303,1.0
+10420,44304,1.0
+10420,44305,1.0
+10420,44306,1.0
+10420,44307,1.0
+10420,44308,1.0
+10420,44310,1.0
+10420,44311,1.0
+10420,44312,0.9999999999999999
+10420,44313,1.0
+10420,44314,1.0
+10420,44319,1.0
+10420,44320,1.0
+10420,44321,0.99625
+10420,44333,0.9979747375153228
+10420,44411,1.0
+10420,44412,0.8392586989409985
+10420,44429,0.024844720496894408
+10420,44444,0.0904916778266692
+10420,44449,0.4693877551020408
+10420,44491,0.007681365576102419
+10420,44614,0.0148471615720524
+10420,44632,0.052841781874039935
+10420,44685,0.5079111627231819
+10420,44720,0.08936170212765958
+10500,31701,1.0000000000000002
+10500,31705,0.9800084352593841
+10500,31707,0.9999999999999999
+10500,31714,0.026258881680568433
+10500,31721,0.9964667827817865
+10500,31743,0.09047619047619047
+10500,31744,0.3853841349156777
+10500,31763,1.0
+10500,31764,0.04861111111111111
+10500,31771,0.01376632545005295
+10500,31772,1.0
+10500,31775,0.09298422289358846
+10500,31781,1.0
+10500,31787,0.7661290322580645
+10500,31789,1.0
+10500,31791,1.0
+10500,31795,0.3288557213930348
+10500,31796,1.0
+10500,39826,1.0
+10500,39842,0.9974871365322484
+10500,39877,0.622
+10500,39885,1.0
+10500,39886,0.04146039603960396
+10540,97321,0.6568918485237484
+10540,97322,1.0
+10540,97327,1.0
+10540,97329,1.0
+10540,97333,0.05973710062216401
+10540,97345,1.0
+10540,97346,0.3782559456398641
+10540,97348,1.0
+10540,97350,0.3901098901098901
+10540,97352,0.014810849393290509
+10540,97355,1.0
+10540,97358,0.7282608695652174
+10540,97360,0.7959092930191196
+10540,97374,1.0
+10540,97377,1.0
+10540,97383,0.08480233649734015
+10540,97386,1.0
+10540,97389,1.0
+10540,97413,0.006557377049180328
+10540,97446,0.9960515378221114
+10540,97759,0.0025421035907213217
+10580,12007,1.0
+10580,12008,1.0
+10580,12009,1.0
+10580,12010,0.03832463627881259
+10580,12018,1.0
+10580,12019,1.0000000000000002
+10580,12020,1.0
+10580,12022,1.0
+10580,12023,1.0
+10580,12025,0.09827429609445958
+10580,12027,1.0
+10580,12028,0.6774744027303754
+10580,12031,1.0
+10580,12033,1.0
+10580,12035,1.0
+10580,12036,0.8464912280701754
+10580,12040,1.0
+10580,12041,1.0
+10580,12043,0.9994123868844752
+10580,12045,1.0
+10580,12046,0.9645042839657284
+10580,12047,1.0
+10580,12052,1.0
+10580,12053,0.9880095923261392
+10580,12054,1.0
+10580,12056,1.0
+10580,12057,0.23814713896457765
+10580,12059,1.0
+10580,12061,1.0
+10580,12062,0.9037162162162162
+10580,12063,1.0
+10580,12064,0.0852575488454707
+10580,12065,1.0
+10580,12066,0.6938870741950537
+10580,12067,1.0
+10580,12071,1.0
+10580,12074,1.0
+10580,12076,1.0
+10580,12077,1.0
+10580,12083,0.33886693017127806
+10580,12084,1.0
+10580,12085,1.0
+10580,12086,0.17319034852546916
+10580,12087,0.1276794035414725
+10580,12089,1.0
+10580,12090,1.0
+10580,12092,1.0
+10580,12093,0.7929171668667467
+10580,12094,0.9585537918871252
+10580,12110,1.0
+10580,12118,1.0000000000000002
+10580,12120,0.9559543230016312
+10580,12121,1.0
+10580,12122,1.0
+10580,12123,1.0
+10580,12131,1.0
+10580,12134,0.2821387940841866
+10580,12137,0.7736748064324003
+10580,12138,1.0
+10580,12140,1.0
+10580,12143,0.9365388358964376
+10580,12144,1.0
+10580,12147,1.0
+10580,12148,1.0
+10580,12149,1.0
+10580,12150,1.0
+10580,12151,1.0
+10580,12153,1.0
+10580,12154,0.8222143364088006
+10580,12156,0.8207547169811321
+10580,12157,0.9999999999999999
+10580,12158,1.0
+10580,12159,1.0
+10580,12160,1.0
+10580,12161,1.0
+10580,12166,0.0036683785766691117
+10580,12167,0.302707136997539
+10580,12168,1.0
+10580,12169,1.0
+10580,12170,1.0
+10580,12175,1.0
+10580,12180,1.0
+10580,12182,1.0
+10580,12183,1.0
+10580,12184,0.01175153889199776
+10580,12185,0.8762886597938144
+10580,12186,1.0
+10580,12187,1.0
+10580,12188,1.0
+10580,12189,1.0
+10580,12193,1.0
+10580,12194,1.0
+10580,12196,1.0
+10580,12198,1.0
+10580,12202,1.0
+10580,12203,1.0
+10580,12204,1.0
+10580,12205,1.0
+10580,12206,1.0
+10580,12207,1.0
+10580,12208,1.0
+10580,12209,1.0
+10580,12210,1.0
+10580,12211,1.0
+10580,12222,1.0
+10580,12302,1.0
+10580,12303,1.0
+10580,12304,1.0
+10580,12305,1.0
+10580,12306,1.0
+10580,12307,1.0
+10580,12308,1.0
+10580,12309,1.0000000000000002
+10580,12469,0.9542097488921713
+10580,12803,1.0
+10580,12822,1.0
+10580,12828,0.3905588484335309
+10580,12831,1.0
+10580,12833,1.0
+10580,12835,0.9815597387629658
+10580,12850,1.0
+10580,12859,1.0
+10580,12863,1.0
+10580,12866,1.0
+10580,12871,1.0
+10580,12884,1.0
+10580,13459,0.9585958595859586
+10740,87001,1.0
+10740,87002,1.0
+10740,87004,1.0
+10740,87006,0.4039829302987198
+10740,87008,1.0
+10740,87013,0.6773076923076923
+10740,87014,0.003058103975535168
+10740,87015,0.32338801983975585
+10740,87016,1.0
+10740,87018,1.0
+10740,87022,1.0
+10740,87023,1.0
+10740,87024,1.0
+10740,87025,1.0
+10740,87026,0.5345803593403888
+10740,87027,1.0
+10740,87031,1.0
+10740,87032,1.0
+10740,87035,0.9859658778205834
+10740,87036,0.9882226980728052
+10740,87041,1.0
+10740,87042,1.0
+10740,87043,1.0
+10740,87044,1.0
+10740,87046,0.7419354838709677
+10740,87047,0.9560686554965263
+10740,87048,1.0
+10740,87052,1.0
+10740,87053,1.0
+10740,87059,1.0
+10740,87061,1.0
+10740,87063,1.0
+10740,87068,1.0
+10740,87070,1.0
+10740,87072,1.0
+10740,87083,1.0
+10740,87102,1.0
+10740,87104,1.0
+10740,87105,1.0
+10740,87106,1.0
+10740,87107,1.0
+10740,87108,1.0
+10740,87109,1.0
+10740,87110,1.0
+10740,87111,1.0
+10740,87112,1.0
+10740,87113,1.0
+10740,87114,1.0
+10740,87116,1.0
+10740,87117,1.0
+10740,87120,1.0
+10740,87121,1.0
+10740,87122,1.0
+10740,87123,1.0
+10740,87124,1.0
+10740,87144,1.0
+10740,88301,0.02813852813852814
+10740,88318,0.15223097112860892
+10740,88321,0.8556149732620321
+10780,70656,0.14193388018891376
+10780,71301,1.0
+10780,71302,1.0
+10780,71303,1.0
+10780,71325,0.7993943981831946
+10780,71328,0.938090099811168
+10780,71346,1.0
+10780,71351,0.009824378368979307
+10780,71360,0.9929017844517971
+10780,71367,0.017996870109546162
+10780,71404,0.33877038895859474
+10780,71405,1.0
+10780,71407,1.0
+10780,71409,1.0
+10780,71417,1.0
+10780,71423,1.0
+10780,71424,1.0
+10780,71427,0.7481840193704601
+10780,71430,1.0
+10780,71432,1.0
+10780,71433,1.0
+10780,71438,0.6740467404674046
+10780,71447,0.6017699115044248
+10780,71454,0.8812821527502968
+10780,71455,0.5903083700440529
+10780,71463,0.040829552819183414
+10780,71466,1.0
+10780,71467,0.9999999999999999
+10780,71472,1.0
+10780,71485,1.0
+10900,07820,1.0
+10900,07821,0.0908299793321005
+10900,07823,1.0
+10900,07825,1.0
+10900,07832,1.0
+10900,07833,1.0
+10900,07838,1.0
+10900,07840,0.7693055043720057
+10900,07846,1.0
+10900,07860,0.017954960438222763
+10900,07863,1.0
+10900,07865,0.6477843764275925
+10900,07874,0.00887142055025267
+10900,07880,1.0
+10900,07882,0.979505934308584
+10900,08802,0.3031718711581018
+10900,08804,0.2818477084085168
+10900,08808,1.0
+10900,08827,0.06632101965867357
+10900,08865,1.0
+10900,08886,1.0
+10900,18011,0.7056880733944955
+10900,18013,1.0
+10900,18014,1.0
+10900,18015,1.0
+10900,18017,1.0
+10900,18018,1.0
+10900,18020,1.0
+10900,18030,1.0
+10900,18031,0.9976089266737512
+10900,18032,1.0
+10900,18034,1.0
+10900,18035,1.0
+10900,18036,0.8332553423802839
+10900,18037,1.0
+10900,18038,1.0
+10900,18040,1.0
+10900,18041,0.0982669616519174
+10900,18042,1.0
+10900,18045,1.0
+10900,18046,1.0
+10900,18049,1.0
+10900,18051,1.0
+10900,18052,1.0
+10900,18053,1.0
+10900,18055,0.9894736842105264
+10900,18058,0.12584530853761622
+10900,18059,1.0
+10900,18062,0.920413946039177
+10900,18063,1.0
+10900,18064,1.0
+10900,18066,1.0
+10900,18067,1.0
+10900,18068,1.0
+10900,18069,1.0
+10900,18071,0.9919644545282662
+10900,18072,1.0
+10900,18077,0.08059071729957806
+10900,18078,1.0
+10900,18079,1.0
+10900,18080,1.0
+10900,18083,1.0
+10900,18085,1.0
+10900,18086,1.0
+10900,18087,1.0
+10900,18088,1.0
+10900,18091,1.0
+10900,18092,0.9720757058641016
+10900,18101,1.0
+10900,18102,1.0
+10900,18103,1.0
+10900,18104,1.0
+10900,18105,1.0
+10900,18106,1.0
+10900,18109,1.0
+10900,18201,0.0026166593981683385
+10900,18210,0.7745216759505934
+10900,18211,0.02607361963190184
+10900,18212,1.0
+10900,18216,0.9662605435801312
+10900,18229,1.0
+10900,18230,1.0
+10900,18232,1.0
+10900,18235,1.0
+10900,18237,0.006430868167202572
+10900,18240,0.8607041891544591
+10900,18244,0.746268656716418
+10900,18250,1.0
+10900,18254,1.0
+10900,18255,0.9785566059488126
+10900,18343,1.0
+10900,18351,1.0
+10900,18610,0.0017971246006389773
+10900,18624,1.0
+10900,18661,0.1411867364746946
+10900,18951,0.001096649447346397
+10900,19529,0.4618332801022038
+10900,19530,0.03961781888997079
+10900,19539,0.016750054383293453
+11020,15946,0.062173974340899475
+11020,16601,1.0
+11020,16602,1.0
+11020,16613,0.007166123778501629
+11020,16617,1.0
+11020,16625,0.7699069286452948
+11020,16631,1.0
+11020,16635,1.0
+11020,16636,0.052560646900269535
+11020,16637,1.0
+11020,16641,0.054272517321016164
+11020,16648,1.0
+11020,16655,0.05434103685196752
+11020,16662,0.9362582781456954
+11020,16665,1.0
+11020,16673,0.8689980068853053
+11020,16682,1.0
+11020,16686,0.9110320284697508
+11020,16693,1.0
+11100,79001,0.8955823293172691
+11100,79010,1.0
+11100,79012,1.0
+11100,79015,1.0
+11100,79016,1.0
+11100,79018,0.04562043795620438
+11100,79019,1.0
+11100,79036,0.11505460218408739
+11100,79039,0.8844672657252889
+11100,79042,0.3327630453378956
+11100,79058,1.0
+11100,79068,1.0
+11100,79080,0.7933884297520661
+11100,79091,1.0
+11100,79092,0.9421338155515372
+11100,79094,1.0
+11100,79097,1.0
+11100,79098,0.6943907156673115
+11100,79101,1.0
+11100,79102,1.0
+11100,79103,1.0
+11100,79104,1.0
+11100,79106,1.0
+11100,79107,1.0
+11100,79108,1.0000000000000002
+11100,79109,1.0
+11100,79110,1.0
+11100,79111,1.0
+11100,79118,1.0000000000000002
+11100,79119,1.0
+11100,79121,1.0
+11100,79124,1.0
+11100,79226,0.029178560101490645
+11100,88430,0.05555555555555555
+11180,50010,1.0
+11180,50011,1.0
+11180,50012,1.0
+11180,50014,1.0000000000000002
+11180,50036,1.0
+11180,50046,0.8372703412073491
+11180,50055,0.8488499452354874
+11180,50056,1.0
+11180,50105,1.0
+11180,50107,0.022747952684258416
+11180,50124,0.9837333333333332
+11180,50134,1.0
+11180,50154,0.9871244635193132
+11180,50156,0.8805530371713509
+11180,50161,0.7435271128480704
+11180,50201,1.0
+11180,50206,0.034220532319391636
+11180,50212,1.0
+11180,50217,0.1901743264659271
+11180,50220,0.050110864745011086
+11180,50223,1.0
+11180,50226,0.00825571549534293
+11180,50235,0.045548654244306416
+11180,50236,1.0
+11180,50243,0.5040983606557377
+11180,50244,0.9183673469387756
+11180,50247,0.015109343936381709
+11180,50248,0.9255656108597285
+11180,50249,0.05555555555555555
+11180,50276,0.38696861342868494
+11180,50278,1.0
+11180,50530,0.013278008298755186
+11260,99501,1.0
+11260,99502,1.0
+11260,99503,0.9993133282977408
+11260,99504,1.0
+11260,99505,1.0
+11260,99506,1.0
+11260,99507,1.0
+11260,99508,1.0
+11260,99515,1.0
+11260,99516,1.0
+11260,99517,1.0
+11260,99518,1.0
+11260,99540,1.0
+11260,99567,1.0
+11260,99577,1.0
+11260,99587,1.0
+11260,99588,0.08775510204081632
+11260,99645,1.0
+11260,99652,1.0
+11260,99654,1.0
+11260,99667,1.0
+11260,99674,1.0
+11260,99676,1.0
+11260,99683,1.0
+11260,99688,1.0
+11260,99694,1.0
+11260,99729,0.05194805194805195
+11460,48103,1.0
+11460,48104,1.0
+11460,48105,1.0
+11460,48108,1.0
+11460,48109,1.0
+11460,48111,0.004821213338690237
+11460,48118,1.0
+11460,48130,1.0
+11460,48137,0.2875312760633861
+11460,48158,0.9928854836502942
+11460,48160,0.6561479869423286
+11460,48167,0.0621807374384694
+11460,48168,0.06423029245672834
+11460,48169,0.04910392543122087
+11460,48170,0.04846983459700223
+11460,48176,0.9986478295332679
+11460,48178,0.07315825375170533
+11460,48189,0.5418133802816901
+11460,48190,1.0
+11460,48191,0.9555994079921064
+11460,48197,1.0
+11460,48198,1.0
+11460,49236,0.13311285655229432
+11460,49240,0.09180742272779502
+11460,49285,0.015559440559440559
+11460,49287,0.0533587422582182
+11500,35096,0.04632117722328855
+11500,35905,0.11341653666146645
+11500,36201,1.0
+11500,36203,0.7321134102877813
+11500,36205,1.0
+11500,36206,1.0
+11500,36207,1.0
+11500,36250,1.0
+11500,36260,0.7301624676242053
+11500,36265,1.0
+11500,36271,1.0
+11500,36272,0.6605422361640152
+11500,36277,1.0
+11500,36279,1.0
+11540,53014,0.9683496608892238
+11540,53020,0.01857142857142857
+11540,53042,0.07608370702541106
+11540,53049,0.032639738882088945
+11540,53061,0.9110854503464204
+11540,53088,1.0
+11540,54106,1.0
+11540,54107,0.0016098738932116983
+11540,54110,0.8675533907830648
+11540,54113,1.0
+11540,54115,0.049711010733887034
+11540,54123,1.0
+11540,54129,1.0
+11540,54130,0.9642345069300621
+11540,54136,1.0
+11540,54140,1.0
+11540,54155,0.32012474775270594
+11540,54160,1.0
+11540,54165,0.9571561215015254
+11540,54169,1.0
+11540,54170,0.9359249329758712
+11540,54180,0.05277874868926949
+11540,54313,0.0006964370281639134
+11540,54911,1.0
+11540,54913,1.0
+11540,54914,0.97870385561936
+11540,54915,0.9074662525385258
+11540,54922,0.6287978863936592
+11540,54929,0.005145209238509032
+11540,54931,1.0
+11540,54940,0.10174129353233832
+11540,54942,1.0
+11540,54944,1.0
+11540,54952,0.1965875082591628
+11540,54956,0.0018971332209106238
+11540,54961,0.21624842282349646
+11640,00612,0.9989255335024624
+11640,00616,1.0
+11640,00627,1.0
+11640,00650,0.015068675823443125
+11640,00652,1.0
+11640,00659,1.0
+11640,00678,0.9317013551888996
+11640,00688,1.0
+11700,28701,1.0
+11700,28704,0.9999999999999999
+11700,28709,1.0
+11700,28711,0.9866757513816337
+11700,28715,1.0
+11700,28716,1.0
+11700,28721,1.0
+11700,28726,1.0
+11700,28729,1.0
+11700,28730,1.0
+11700,28731,1.0
+11700,28732,1.0
+11700,28735,1.0
+11700,28739,0.9914080663095116
+11700,28742,0.8878228782287823
+11700,28743,1.0
+11700,28745,1.0
+11700,28748,1.0
+11700,28751,0.9886831275720164
+11700,28753,1.0
+11700,28754,0.9822893605938272
+11700,28757,1.0
+11700,28759,1.0
+11700,28766,0.06656101426307448
+11700,28773,0.372113676731794
+11700,28778,1.0
+11700,28785,1.0
+11700,28786,0.999951723472048
+11700,28787,1.0
+11700,28790,1.0
+11700,28791,1.0
+11700,28792,0.9997552693566644
+11700,28801,1.0
+11700,28803,1.0
+11700,28804,1.0
+11700,28805,1.0
+11700,28806,1.0
+12020,30530,0.21697274881516587
+12020,30565,0.11601513240857506
+12020,30601,0.996976241900648
+12020,30602,1.0
+12020,30605,0.9999999999999999
+12020,30606,1.0
+12020,30607,0.7393299678751721
+12020,30609,1.0
+12020,30619,1.0
+12020,30621,0.8412605206498336
+12020,30622,0.9482791956689869
+12020,30624,0.062045193412485634
+12020,30627,1.0
+12020,30628,1.0
+12020,30629,1.0
+12020,30630,1.0
+12020,30633,0.9789945716308708
+12020,30646,1.0
+12020,30648,1.0
+12020,30660,0.2141057934508816
+12020,30662,0.08890711022607474
+12020,30666,0.1556761750779536
+12020,30667,1.0
+12020,30669,0.04678539088439481
+12020,30677,0.9905654849106358
+12020,30680,0.005629410365515237
+12020,30683,1.0
+12060,30002,1.0
+12060,30004,1.0
+12060,30005,1.0
+12060,30008,1.0
+12060,30009,1.0
+12060,30011,1.0
+12060,30012,1.0
+12060,30013,1.0
+12060,30014,1.0
+12060,30016,1.0
+12060,30017,1.0
+12060,30019,1.0
+12060,30021,1.0
+12060,30022,1.0
+12060,30024,1.0
+12060,30025,1.0
+12060,30028,1.0
+12060,30030,1.0
+12060,30032,1.0
+12060,30033,1.0
+12060,30034,1.0
+12060,30035,1.0
+12060,30038,1.0
+12060,30039,1.0000000000000002
+12060,30040,0.9999999999999999
+12060,30041,1.0
+12060,30043,1.0
+12060,30044,1.0
+12060,30045,1.0
+12060,30046,1.0
+12060,30047,1.0
+12060,30052,1.0
+12060,30054,1.0
+12060,30055,1.0
+12060,30056,1.0
+12060,30058,1.0
+12060,30060,1.0
+12060,30062,1.0
+12060,30064,1.0
+12060,30066,1.0
+12060,30067,1.0
+12060,30068,1.0
+12060,30070,1.0
+12060,30071,1.0
+12060,30072,1.0
+12060,30075,1.0
+12060,30076,1.0
+12060,30078,1.0
+12060,30079,1.0
+12060,30080,1.0
+12060,30082,1.0
+12060,30083,1.0
+12060,30084,1.0
+12060,30087,1.0
+12060,30088,1.0
+12060,30092,0.9999999999999999
+12060,30093,1.0
+12060,30094,0.9999999999999999
+12060,30096,1.0
+12060,30097,1.0
+12060,30101,1.0
+12060,30102,1.0
+12060,30103,0.7489344428658413
+12060,30104,0.043542905692438405
+12060,30106,0.9999999999999999
+12060,30107,1.0
+12060,30108,1.0
+12060,30110,1.0
+12060,30113,0.9297201672563524
+12060,30114,1.0
+12060,30115,1.0
+12060,30116,1.0
+12060,30117,1.0
+12060,30118,1.0
+12060,30120,1.0
+12060,30121,1.0
+12060,30122,1.0
+12060,30126,1.0
+12060,30127,1.0
+12060,30132,1.0
+12060,30134,1.0
+12060,30135,1.0
+12060,30137,1.0
+12060,30139,0.31365409622886864
+12060,30141,1.0
+12060,30143,1.0
+12060,30144,1.0
+12060,30145,0.7686798758653617
+12060,30148,1.0
+12060,30152,1.0
+12060,30153,0.2830373146488513
+12060,30157,0.9999999999999999
+12060,30161,0.0036796166352900906
+12060,30164,1.0
+12060,30168,1.0
+12060,30170,0.9999999999999999
+12060,30171,0.9100544256659984
+12060,30175,0.7560092196246295
+12060,30176,1.0
+12060,30177,1.0
+12060,30178,0.9501153402537484
+12060,30179,1.0
+12060,30180,1.0
+12060,30182,1.0
+12060,30183,0.9999999999999999
+12060,30184,1.0
+12060,30185,0.9999999999999999
+12060,30187,1.0
+12060,30188,1.0
+12060,30189,1.0
+12060,30204,0.9639813236492996
+12060,30205,1.0
+12060,30206,1.0
+12060,30213,1.0
+12060,30214,1.0
+12060,30215,1.0
+12060,30216,1.0
+12060,30217,0.9899289727552212
+12060,30218,1.0
+12060,30220,1.0
+12060,30222,1.0
+12060,30223,1.0
+12060,30224,1.0
+12060,30228,1.0
+12060,30230,0.2102603537295397
+12060,30233,0.9089068825910931
+12060,30234,1.0
+12060,30236,0.9999999999999998
+12060,30238,0.9999999999999999
+12060,30248,1.0
+12060,30250,1.0
+12060,30251,1.0
+12060,30252,0.9999999999999999
+12060,30253,1.0
+12060,30256,0.7830856334041048
+12060,30257,1.0
+12060,30258,0.7471395881006865
+12060,30259,1.0
+12060,30260,1.0
+12060,30263,0.9999999999999999
+12060,30265,1.0
+12060,30268,1.0
+12060,30269,1.0
+12060,30273,1.0
+12060,30274,1.0
+12060,30275,1.0
+12060,30276,1.0
+12060,30277,1.0
+12060,30281,1.0
+12060,30284,1.0
+12060,30285,0.32814710042432815
+12060,30288,0.9999999999999999
+12060,30289,1.0
+12060,30290,1.0
+12060,30291,1.0
+12060,30292,1.0
+12060,30293,1.0
+12060,30294,1.0
+12060,30295,1.0000000000000002
+12060,30296,1.0
+12060,30297,1.0
+12060,30303,1.0
+12060,30305,1.0
+12060,30306,1.0
+12060,30307,1.0
+12060,30308,1.0
+12060,30309,1.0
+12060,30310,1.0
+12060,30311,1.0
+12060,30312,1.0
+12060,30313,1.0
+12060,30314,1.0
+12060,30315,0.9999999999999999
+12060,30316,1.0
+12060,30317,0.9999999999999999
+12060,30318,1.0
+12060,30319,1.0
+12060,30322,1.0
+12060,30324,1.0
+12060,30326,1.0
+12060,30327,1.0
+12060,30328,1.0
+12060,30329,1.0
+12060,30331,1.0
+12060,30332,1.0
+12060,30334,1.0
+12060,30336,1.0
+12060,30337,1.0
+12060,30338,1.0
+12060,30339,1.0
+12060,30340,1.0
+12060,30341,1.0
+12060,30342,1.0
+12060,30344,1.0
+12060,30345,1.0
+12060,30346,1.0
+12060,30349,1.0
+12060,30350,1.0
+12060,30354,1.0
+12060,30360,1.0
+12060,30363,1.0
+12060,30506,0.26133390932872536
+12060,30517,0.33469865418373324
+12060,30518,0.9162150804007876
+12060,30519,0.925173314578519
+12060,30533,0.0005534471853257431
+12060,30534,0.8759228030728874
+12060,30536,0.0016740404161186178
+12060,30548,0.4161940768746062
+12060,30620,0.9999999999999999
+12060,30621,0.15873947935016638
+12060,30622,0.0034802784222737818
+12060,30623,1.0
+12060,30625,0.8031173092698933
+12060,30641,1.0
+12060,30650,0.962931329005808
+12060,30655,1.0
+12060,30656,1.0
+12060,30663,1.0
+12060,30666,0.8260769141933249
+12060,30680,0.9920448238496709
+12060,30734,0.15233698788228506
+12060,31016,0.08503625576796309
+12060,31029,0.0003069933075458955
+12060,31038,0.6307490144546649
+12060,31064,1.0
+12060,31085,1.0
+12060,31097,0.046850998463901686
+12060,31816,0.9346576916762436
+12060,31822,0.11825382206667895
+12060,31830,0.9616613418530352
+12100,08037,0.8073473753496792
+12100,08094,0.0786680020030045
+12100,08201,1.0
+12100,08203,1.0
+12100,08205,1.0
+12100,08215,0.9500074393691414
+12100,08217,1.0
+12100,08221,1.0
+12100,08225,1.0
+12100,08232,1.0
+12100,08234,1.0
+12100,08240,1.0
+12100,08241,1.0
+12100,08244,1.0
+12100,08270,0.07583608101742817
+12100,08310,1.0
+12100,08317,1.0
+12100,08319,1.0
+12100,08326,1.0
+12100,08330,1.0
+12100,08340,0.676200204290092
+12100,08341,1.0
+12100,08344,0.028561655549854625
+12100,08346,1.0
+12100,08350,1.0
+12100,08360,0.042140468227424746
+12100,08401,1.0
+12100,08402,1.0
+12100,08403,1.0
+12100,08406,1.0
+12220,36801,0.9876204195552354
+12220,36804,0.9533835478322756
+12220,36830,0.9778018734375472
+12220,36832,0.9999546916768609
+12220,36849,1.0
+12220,36850,0.01825095057034221
+12220,36852,0.8172851103804603
+12220,36854,0.17508232711306254
+12220,36865,1.0
+12220,36866,0.05259165613147914
+12220,36867,0.1924358397118415
+12220,36870,0.8178139807272534
+12220,36874,0.9235539805087964
+12220,36877,1.0
+12220,36879,0.7719962157048249
+12260,29006,0.18933612127548352
+12260,29105,0.7939233817701453
+12260,29129,0.6308470290771175
+12260,29137,0.8999606144151241
+12260,29138,0.001286409997243407
+12260,29146,0.2563667232597623
+12260,29164,1.0
+12260,29801,1.0
+12260,29803,1.0
+12260,29805,1.0
+12260,29809,1.0
+12260,29816,1.0
+12260,29821,0.4667114996637525
+12260,29824,0.9943760984182776
+12260,29828,1.0
+12260,29829,1.0
+12260,29831,1.0
+12260,29832,0.8322399250234301
+12260,29834,1.0
+12260,29835,0.05650319829424307
+12260,29838,0.5449101796407185
+12260,29841,1.0
+12260,29842,1.0
+12260,29845,0.01358695652173913
+12260,29847,1.0
+12260,29850,1.0
+12260,29851,1.0
+12260,29853,0.17522796352583586
+12260,29856,1.0
+12260,29860,1.0
+12260,30426,0.9190909090909092
+12260,30434,0.054120111731843584
+12260,30441,0.35598316295850874
+12260,30442,0.035333852948817884
+12260,30456,1.0
+12260,30668,0.2032224532224532
+12260,30802,1.0
+12260,30805,1.0
+12260,30808,1.0
+12260,30809,1.0
+12260,30812,1.0
+12260,30813,0.9999999999999999
+12260,30814,1.0000000000000002
+12260,30815,1.0000000000000002
+12260,30816,0.8587008060692272
+12260,30817,0.9907503908285564
+12260,30824,0.9948840183710248
+12260,30830,1.0
+12260,30901,1.0
+12260,30903,1.0
+12260,30904,1.0
+12260,30905,1.0
+12260,30906,1.0
+12260,30907,1.0
+12260,30909,1.0
+12260,30912,1.0
+12420,76511,0.6511908350919505
+12420,76527,0.8831936914736324
+12420,76530,1.0
+12420,76537,1.0
+12420,76573,1.0
+12420,76574,1.0
+12420,76577,0.01608667104399212
+12420,76578,1.0
+12420,78602,1.0
+12420,78610,1.0000000000000002
+12420,78612,0.9999999999999999
+12420,78613,1.0
+12420,78615,1.0
+12420,78616,1.0
+12420,78617,1.0
+12420,78619,1.0
+12420,78620,0.995893366743231
+12420,78621,0.9734983147883097
+12420,78622,1.0
+12420,78623,0.04182041820418205
+12420,78626,1.0
+12420,78628,1.0
+12420,78632,0.3769230769230769
+12420,78633,1.0
+12420,78634,1.0
+12420,78640,0.9999999999999999
+12420,78641,1.0
+12420,78642,0.9768670117249392
+12420,78644,1.0
+12420,78645,1.0
+12420,78648,0.935832357152154
+12420,78650,0.900562851782364
+12420,78652,1.0
+12420,78653,1.0
+12420,78654,0.032700962798382034
+12420,78655,0.751004016064257
+12420,78656,1.0
+12420,78659,0.8918360316913537
+12420,78660,1.0
+12420,78661,1.0
+12420,78662,1.0
+12420,78663,0.08445040214477212
+12420,78664,1.0
+12420,78665,1.0
+12420,78666,0.9040510057021116
+12420,78669,0.6860611613789944
+12420,78676,0.9976194254880176
+12420,78681,1.0
+12420,78701,1.0
+12420,78702,1.0
+12420,78703,1.0
+12420,78704,1.0
+12420,78705,1.0
+12420,78712,1.0
+12420,78717,1.0
+12420,78719,1.0
+12420,78721,1.0
+12420,78722,1.0
+12420,78723,1.0
+12420,78724,1.0
+12420,78725,1.0
+12420,78726,1.0
+12420,78727,1.0000000000000002
+12420,78728,1.0
+12420,78729,1.0
+12420,78730,1.0
+12420,78731,1.0
+12420,78732,1.0
+12420,78733,1.0
+12420,78734,1.0
+12420,78735,1.0
+12420,78736,1.0
+12420,78737,1.0
+12420,78738,1.0
+12420,78739,1.0
+12420,78741,1.0
+12420,78742,1.0
+12420,78744,1.0
+12420,78745,1.0
+12420,78746,1.0
+12420,78747,1.0
+12420,78748,1.0
+12420,78749,1.0
+12420,78750,1.0
+12420,78751,1.0
+12420,78752,1.0
+12420,78753,1.0
+12420,78754,1.0
+12420,78756,1.0
+12420,78757,1.0
+12420,78758,1.0
+12420,78759,0.9999999999999999
+12420,78941,0.029034436191762318
+12420,78942,0.003671153632217153
+12420,78945,0.00238231370306842
+12420,78953,1.0
+12420,78957,0.9729789345979928
+12420,78959,0.024496461622210124
+12540,93203,1.0
+12540,93205,1.0
+12540,93206,1.0
+12540,93215,0.987656982698216
+12540,93220,1.0
+12540,93222,1.0
+12540,93224,1.0
+12540,93225,0.9340161512704352
+12540,93226,1.0
+12540,93238,0.9966442953020134
+12540,93240,1.0
+12540,93241,1.0
+12540,93243,0.9217186580341378
+12540,93249,1.0
+12540,93250,1.0
+12540,93251,1.0
+12540,93252,0.8917624521072797
+12540,93255,1.0
+12540,93263,1.0
+12540,93268,1.0
+12540,93276,1.0
+12540,93280,1.0
+12540,93283,1.0
+12540,93285,1.0
+12540,93287,1.0
+12540,93301,1.0
+12540,93304,1.0
+12540,93305,1.0
+12540,93306,1.0
+12540,93307,1.0
+12540,93308,1.0
+12540,93309,1.0
+12540,93311,1.0
+12540,93312,1.0
+12540,93313,1.0
+12540,93314,1.0
+12540,93461,0.006777572396796057
+12540,93501,1.0
+12540,93505,1.0
+12540,93516,0.9799913005654632
+12540,93518,1.0
+12540,93519,1.0
+12540,93523,1.0
+12540,93524,1.0
+12540,93527,0.9706744868035192
+12540,93528,1.0
+12540,93531,1.0
+12540,93554,1.0
+12540,93555,0.993058968058968
+12540,93560,0.997355896351137
+12540,93561,1.0
+12580,20701,1.0
+12580,20711,1.0
+12580,20714,0.20828538550057535
+12580,20723,1.0
+12580,20724,1.0
+12580,20733,1.0
+12580,20736,0.0014600179694519318
+12580,20751,1.0
+12580,20754,0.1471730686232197
+12580,20755,1.0
+12580,20758,1.0
+12580,20759,1.0
+12580,20763,1.0
+12580,20764,1.0
+12580,20765,1.0
+12580,20776,1.0
+12580,20777,0.9864212432106216
+12580,20778,1.0
+12580,20779,1.0
+12580,20794,1.0
+12580,20833,0.01085972850678733
+12580,21001,1.0
+12580,21005,1.0
+12580,21009,1.0
+12580,21010,1.0
+12580,21012,1.0
+12580,21013,1.0
+12580,21014,1.0
+12580,21015,1.0
+12580,21017,1.0
+12580,21028,1.0
+12580,21029,1.0
+12580,21030,1.0
+12580,21031,1.0
+12580,21032,1.0
+12580,21034,1.0
+12580,21035,1.0
+12580,21036,1.0
+12580,21037,1.0
+12580,21040,1.0
+12580,21042,1.0
+12580,21043,1.0000000000000002
+12580,21044,1.0
+12580,21045,1.0
+12580,21046,1.0
+12580,21047,1.0
+12580,21048,1.0
+12580,21050,1.0
+12580,21051,1.0
+12580,21052,1.0
+12580,21053,1.0
+12580,21054,1.0
+12580,21056,1.0
+12580,21057,1.0
+12580,21060,1.0
+12580,21061,1.0
+12580,21071,1.0
+12580,21074,1.0
+12580,21075,1.0
+12580,21076,1.0
+12580,21077,1.0
+12580,21078,1.0
+12580,21082,1.0
+12580,21084,1.0
+12580,21085,1.0
+12580,21087,1.0
+12580,21090,1.0
+12580,21093,1.0
+12580,21102,1.0
+12580,21104,1.0
+12580,21105,1.0
+12580,21108,1.0
+12580,21111,0.9999999999999999
+12580,21113,1.0
+12580,21114,1.0
+12580,21117,1.0
+12580,21120,1.0
+12580,21122,1.0
+12580,21128,1.0
+12580,21130,1.0
+12580,21131,1.0
+12580,21132,1.0
+12580,21133,1.0
+12580,21136,1.0
+12580,21140,1.0
+12580,21144,1.0
+12580,21146,1.0
+12580,21152,1.0
+12580,21153,1.0
+12580,21154,1.0
+12580,21155,1.0
+12580,21156,1.0
+12580,21157,1.0
+12580,21158,1.0
+12580,21160,1.0
+12580,21161,1.0
+12580,21162,1.0
+12580,21163,0.9999999999999999
+12580,21201,1.0
+12580,21202,1.0
+12580,21204,1.0
+12580,21205,1.0
+12580,21206,1.0
+12580,21207,1.0
+12580,21208,1.0
+12580,21209,1.0
+12580,21210,1.0000000000000002
+12580,21211,1.0
+12580,21212,1.0
+12580,21213,1.0
+12580,21214,1.0
+12580,21215,0.9999999999999999
+12580,21216,1.0
+12580,21217,1.0
+12580,21218,1.0
+12580,21219,1.0
+12580,21220,1.0
+12580,21221,1.0
+12580,21222,1.0
+12580,21223,1.0
+12580,21224,1.0
+12580,21225,1.0
+12580,21226,1.0
+12580,21227,1.0
+12580,21228,0.9999999999999999
+12580,21229,1.0
+12580,21230,1.0
+12580,21231,1.0
+12580,21234,1.0
+12580,21236,1.0000000000000002
+12580,21237,1.0
+12580,21239,1.0
+12580,21244,1.0
+12580,21250,1.0
+12580,21251,1.0
+12580,21252,1.0
+12580,21286,1.0
+12580,21401,1.0
+12580,21402,1.0
+12580,21403,1.0
+12580,21405,1.0
+12580,21409,1.0
+12580,21607,1.0
+12580,21617,1.0
+12580,21619,1.0
+12580,21620,0.2530148603438886
+12580,21623,1.0
+12580,21628,1.0
+12580,21638,1.0
+12580,21640,0.05637254901960784
+12580,21644,1.0
+12580,21649,0.17168998923573736
+12580,21651,0.4551414768806073
+12580,21657,0.8893178893178894
+12580,21658,1.0
+12580,21666,1.0
+12580,21668,1.0
+12580,21723,1.0
+12580,21737,1.0
+12580,21738,1.0
+12580,21757,0.4591567852437418
+12580,21771,0.5262659405337754
+12580,21776,0.8594594594594595
+12580,21784,1.0
+12580,21787,0.9771813335827176
+12580,21791,0.528309032380231
+12580,21794,1.0
+12580,21797,1.0
+12620,04401,1.0
+12620,04410,1.0
+12620,04411,1.0
+12620,04412,1.0
+12620,04417,1.0
+12620,04418,1.0
+12620,04419,1.0
+12620,04422,1.0
+12620,04427,1.0
+12620,04428,1.0
+12620,04429,0.6521093915624337
+12620,04430,1.0
+12620,04434,1.0
+12620,04435,1.0
+12620,04444,1.0
+12620,04448,1.0
+12620,04449,1.0
+12620,04450,1.0
+12620,04451,0.6949806949806949
+12620,04453,1.0
+12620,04455,1.0
+12620,04456,1.0
+12620,04457,1.0
+12620,04459,0.888745148771022
+12620,04460,0.9901338971106411
+12620,04461,1.0
+12620,04462,0.9896587383660806
+12620,04468,1.0
+12620,04469,1.0
+12620,04473,1.0
+12620,04474,1.0
+12620,04475,1.0
+12620,04487,1.0
+12620,04488,1.0
+12620,04489,1.0
+12620,04493,1.0
+12620,04495,1.0
+12620,04497,0.11825192802056556
+12620,04733,0.07239819004524888
+12620,04765,0.9833597464342314
+12620,04777,1.0
+12620,04928,1.0
+12620,04930,0.9068684516880092
+12620,04932,1.0
+12620,04933,1.0
+12620,04939,1.0
+12620,04953,1.0
+12620,04969,1.0
+12700,02532,0.844996059889677
+12700,02534,1.0
+12700,02536,1.0
+12700,02537,1.0
+12700,02540,1.0
+12700,02542,1.0
+12700,02543,0.9637795275590552
+12700,02553,1.0
+12700,02556,1.0
+12700,02559,1.0
+12700,02561,1.0
+12700,02562,1.0
+12700,02563,1.0
+12700,02601,1.0
+12700,02630,1.0
+12700,02631,1.0
+12700,02632,1.0
+12700,02633,1.0
+12700,02635,1.0
+12700,02637,1.0
+12700,02638,1.0
+12700,02639,1.0
+12700,02641,1.0
+12700,02642,1.0
+12700,02643,1.0
+12700,02644,1.0
+12700,02645,1.0
+12700,02646,1.0
+12700,02647,1.0
+12700,02648,1.0
+12700,02649,1.0
+12700,02650,1.0
+12700,02651,1.0
+12700,02652,1.0
+12700,02653,1.0
+12700,02655,1.0
+12700,02657,1.0
+12700,02659,1.0
+12700,02660,1.0
+12700,02663,1.0
+12700,02664,1.0
+12700,02666,1.0
+12700,02667,1.0
+12700,02668,1.0
+12700,02669,1.0
+12700,02670,1.0
+12700,02671,1.0
+12700,02672,1.0
+12700,02673,1.0
+12700,02675,1.0
+12940,70301,0.019123080140344355
+12940,70339,0.9320404442234378
+12940,70341,1.0
+12940,70346,1.0
+12940,70372,1.0
+12940,70380,0.08997732030704815
+12940,70390,1.0
+12940,70391,1.0
+12940,70393,1.0
+12940,70403,0.051016877474914464
+12940,70422,0.19562223671812712
+12940,70441,1.0
+12940,70443,0.20621579358874123
+12940,70444,0.11988188976377953
+12940,70449,1.0
+12940,70453,1.0
+12940,70462,0.9782417968064572
+12940,70466,0.04816729323308271
+12940,70706,1.0
+12940,70710,1.0
+12940,70711,1.0
+12940,70712,1.0
+12940,70714,1.0
+12940,70715,1.0
+12940,70719,1.0
+12940,70721,1.0
+12940,70722,1.0
+12940,70725,1.0
+12940,70726,1.0
+12940,70729,1.0
+12940,70730,1.0
+12940,70732,1.0
+12940,70733,1.0
+12940,70734,1.0
+12940,70736,1.0
+12940,70737,1.0
+12940,70739,1.0
+12940,70740,1.0
+12940,70744,1.0
+12940,70747,1.0
+12940,70748,0.9999999999999999
+12940,70749,1.0
+12940,70750,0.0010251153254741158
+12940,70752,1.0
+12940,70753,1.0
+12940,70754,1.0
+12940,70755,1.0
+12940,70756,1.0
+12940,70757,0.9974819011646208
+12940,70759,1.0
+12940,70760,1.0
+12940,70761,1.0
+12940,70762,1.0
+12940,70764,1.0
+12940,70767,1.0
+12940,70769,1.0
+12940,70770,1.0
+12940,70772,1.0
+12940,70773,1.0
+12940,70774,1.0
+12940,70775,1.0
+12940,70776,1.0
+12940,70777,1.0
+12940,70778,1.0
+12940,70780,1.0
+12940,70782,1.0
+12940,70783,1.0
+12940,70785,1.0
+12940,70787,1.0
+12940,70788,1.0
+12940,70789,1.0
+12940,70791,1.0000000000000002
+12940,70801,1.0
+12940,70802,1.0
+12940,70803,1.0
+12940,70805,1.0
+12940,70806,1.0
+12940,70807,1.0
+12940,70808,1.0
+12940,70809,1.0
+12940,70810,1.0
+12940,70811,1.0
+12940,70812,1.0
+12940,70814,1.0
+12940,70815,1.0
+12940,70816,1.0
+12940,70817,1.0
+12940,70818,1.0
+12940,70819,1.0
+12940,70820,1.0
+12980,48813,0.0012274572750448495
+12980,49011,0.9628008752735229
+12980,49012,0.02875112309074573
+12980,49014,1.0
+12980,49015,1.0
+12980,49017,0.9266297810921338
+12980,49021,0.1142025234551925
+12980,49029,1.0
+12980,49033,1.0
+12980,49034,0.08078694014231896
+12980,49037,1.0
+12980,49051,1.0
+12980,49052,0.2512820512820513
+12980,49068,1.0
+12980,49076,0.23185879276530835
+12980,49092,0.8088705989940558
+12980,49094,0.17958089668615984
+12980,49224,0.8717660292463442
+12980,49237,0.004697986577181208
+12980,49245,0.974406604747162
+12980,49252,0.00345489443378119
+12980,49284,0.2552840158520476
+13020,48604,0.01193207893529142
+13020,48611,1.0
+13020,48613,0.9136442141623488
+13020,48623,0.04459372543414565
+13020,48631,1.0
+13020,48634,1.0
+13020,48642,0.06143693651826378
+13020,48650,0.9320281262925686
+13020,48652,0.3062015503875969
+13020,48658,0.044959128065395086
+13020,48659,0.02
+13020,48706,1.0
+13020,48708,0.9989729293522118
+13020,48732,1.0
+13020,48747,0.9859437751004017
+13020,48757,0.01938695310453236
+13140,77369,0.0550098231827112
+13140,77374,1.0
+13140,77376,1.0
+13140,77519,1.0
+13140,77564,0.06539235412474849
+13140,77585,1.0
+13140,77611,1.0
+13140,77613,1.0
+13140,77619,1.0
+13140,77622,1.0
+13140,77625,1.0
+13140,77627,1.0
+13140,77629,1.0
+13140,77630,1.0
+13140,77632,0.8959870038637162
+13140,77640,1.0
+13140,77642,1.0
+13140,77651,1.0
+13140,77655,1.0
+13140,77656,0.9869082407948568
+13140,77657,1.0
+13140,77659,1.0
+13140,77662,0.9770667653042352
+13140,77663,0.6127124907612712
+13140,77665,0.1721998138380391
+13140,77701,1.0
+13140,77702,1.0
+13140,77703,1.0
+13140,77705,1.0
+13140,77706,1.0
+13140,77707,1.0
+13140,77708,1.0
+13140,77713,1.0
+13220,25002,1.0
+13220,25007,1.0
+13220,25008,1.0
+13220,25031,1.0
+13220,25036,0.8824786324786325
+13220,25040,1.0
+13220,25044,1.0
+13220,25048,1.0
+13220,25057,1.0
+13220,25059,0.5693215339233039
+13220,25060,1.0
+13220,25062,1.0
+13220,25083,0.0625
+13220,25085,1.0
+13220,25090,1.0
+13220,25115,1.0
+13220,25118,1.0
+13220,25119,1.0
+13220,25136,0.5867630700778643
+13220,25139,1.0
+13220,25140,1.0
+13220,25152,1.0
+13220,25161,1.0
+13220,25173,1.0
+13220,25174,1.0
+13220,25180,1.0
+13220,25185,1.0
+13220,25186,1.0
+13220,25209,0.3382233088834556
+13220,25801,1.0
+13220,25811,0.4935064935064935
+13220,25812,1.0
+13220,25813,1.0
+13220,25817,1.0
+13220,25818,1.0
+13220,25823,1.0
+13220,25825,0.9184100418410042
+13220,25827,1.0
+13220,25831,1.0
+13220,25832,1.0
+13220,25836,1.0
+13220,25837,1.0
+13220,25839,1.0
+13220,25840,1.0
+13220,25843,1.0
+13220,25844,1.0
+13220,25846,1.0
+13220,25849,1.0
+13220,25853,1.0
+13220,25854,1.0
+13220,25855,1.0
+13220,25857,1.0
+13220,25862,1.0
+13220,25864,0.9999999999999999
+13220,25865,1.0
+13220,25868,1.0
+13220,25871,1.0
+13220,25873,1.0
+13220,25878,1.0
+13220,25879,1.0
+13220,25880,1.0
+13220,25901,1.0
+13220,25902,0.8047619047619048
+13220,25904,1.0
+13220,25906,1.0
+13220,25907,1.0
+13220,25908,1.0
+13220,25911,1.0
+13220,25915,1.0
+13220,25917,1.0
+13220,25918,1.0
+13220,25920,1.0
+13220,25921,1.0
+13220,25932,1.0
+13220,25936,1.0
+13220,25938,1.0
+13220,25942,1.0
+13220,25951,0.024484536082474227
+13220,25962,0.24829217025748815
+13220,25976,0.5460007510326699
+13220,25989,1.0
+13220,26656,0.10473815461346632
+13220,26680,0.5058823529411764
+13220,26690,0.5462328767123288
+13380,98220,1.0
+13380,98225,1.0
+13380,98226,1.0
+13380,98229,0.9901388476633356
+13380,98230,1.0
+13380,98237,0.0002484472049689441
+13380,98240,1.0
+13380,98244,1.0
+13380,98247,1.0
+13380,98248,1.0
+13380,98262,1.0
+13380,98264,1.0
+13380,98266,1.0
+13380,98276,1.0
+13380,98281,1.0
+13380,98283,0.18202764976958524
+13380,98284,0.08713164276026468
+13380,98295,1.0
+13460,97701,0.998999881341854
+13460,97702,1.0
+13460,97707,1.0
+13460,97712,1.0
+13460,97739,0.8629515338536939
+13460,97756,0.9988972998748288
+13460,97759,0.9930092151255164
+13460,97760,0.4571555424004736
+13740,59001,0.9999999999999999
+13740,59002,1.0
+13740,59006,1.0
+13740,59007,1.0
+13740,59008,1.0
+13740,59013,1.0
+13740,59014,1.0
+13740,59015,0.9166666666666666
+13740,59019,0.9999999999999999
+13740,59024,0.9051282051282052
+13740,59026,1.0
+13740,59028,1.0
+13740,59029,1.0
+13740,59037,1.0
+13740,59041,1.0
+13740,59044,1.0
+13740,59057,1.0
+13740,59061,1.0
+13740,59063,1.0
+13740,59064,0.8908450704225352
+13740,59067,1.0
+13740,59068,1.0
+13740,59069,0.7462039045553145
+13740,59070,1.0
+13740,59071,1.0
+13740,59079,1.0
+13740,59088,1.0
+13740,59101,0.9994439108235176
+13740,59102,1.0
+13740,59105,1.0
+13740,59106,1.0
+13780,13730,0.034937611408199634
+13780,13732,1.0
+13780,13734,1.0
+13780,13736,0.8708297690333618
+13780,13743,1.0
+13780,13744,1.0
+13780,13746,0.8408822371012209
+13780,13748,1.0
+13780,13754,0.5580060422960725
+13780,13760,1.0
+13780,13777,1.0
+13780,13778,0.011264290517821116
+13780,13787,0.8219895287958116
+13780,13790,1.0
+13780,13794,1.0
+13780,13795,1.0
+13780,13797,1.0
+13780,13802,1.0
+13780,13803,0.0850314465408805
+13780,13811,0.9999999999999999
+13780,13812,1.0
+13780,13813,0.8311156601842374
+13780,13826,1.0
+13780,13827,1.0
+13780,13833,1.0
+13780,13835,0.7829252150893449
+13780,13845,1.0
+13780,13850,1.0
+13780,13862,0.9935545476247314
+13780,13864,0.7345517841601392
+13780,13865,1.0
+13780,13901,1.0
+13780,13902,1.0
+13780,13903,1.0
+13780,13904,1.0
+13780,13905,1.0
+13780,14817,0.04411764705882353
+13780,14859,0.6958211856171039
+13780,14883,0.7869922630560928
+13780,14889,0.006289308176100629
+13780,14892,0.9076810355354744
+13820,35004,1.0
+13820,35005,1.0
+13820,35006,0.9839794937520026
+13820,35007,1.0
+13820,35013,1.0
+13820,35016,0.017761354154249613
+13820,35020,1.0
+13820,35022,0.9999999999999999
+13820,35023,1.0
+13820,35031,1.0
+13820,35034,0.9898935210250858
+13820,35035,1.0
+13820,35036,1.0
+13820,35040,0.9999999999999999
+13820,35042,1.0
+13820,35043,1.0
+13820,35045,1.0
+13820,35046,0.9890368050117464
+13820,35049,1.0
+13820,35051,1.0
+13820,35052,1.0
+13820,35054,1.0
+13820,35060,1.0
+13820,35061,1.0
+13820,35062,0.678877139979859
+13820,35063,0.1725297465080186
+13820,35064,1.0
+13820,35068,1.0
+13820,35071,1.0
+13820,35073,1.0
+13820,35074,1.0
+13820,35078,1.0
+13820,35079,1.0
+13820,35080,1.0
+13820,35085,1.0
+13820,35091,1.0
+13820,35094,1.0
+13820,35097,1.0
+13820,35111,0.49566294919454773
+13820,35112,1.0
+13820,35114,1.0
+13820,35115,1.0
+13820,35116,1.0
+13820,35117,1.0
+13820,35118,1.0
+13820,35119,1.0
+13820,35120,1.0
+13820,35121,1.0
+13820,35124,1.0
+13820,35125,1.0
+13820,35126,1.0
+13820,35127,1.0
+13820,35128,1.0
+13820,35130,0.38076090318589545
+13820,35131,1.0
+13820,35133,1.0
+13820,35135,1.0
+13820,35139,1.0
+13820,35143,1.0
+13820,35146,1.0
+13820,35147,1.0
+13820,35148,0.007031828275351593
+13820,35171,1.0
+13820,35172,1.0
+13820,35173,0.9999999999999999
+13820,35176,1.0
+13820,35178,1.0
+13820,35180,1.0
+13820,35184,1.0
+13820,35186,1.0
+13820,35187,1.0
+13820,35188,0.9178637200736648
+13820,35203,1.0
+13820,35204,1.0
+13820,35205,1.0
+13820,35206,1.0
+13820,35207,1.0
+13820,35208,1.0
+13820,35209,1.0
+13820,35210,1.0
+13820,35211,1.0
+13820,35212,1.0
+13820,35213,1.0
+13820,35214,1.0
+13820,35215,1.0
+13820,35216,1.0
+13820,35217,1.0
+13820,35218,1.0
+13820,35221,1.0
+13820,35222,1.0
+13820,35223,1.0
+13820,35224,1.0
+13820,35226,1.0
+13820,35228,1.0
+13820,35229,1.0
+13820,35233,1.0
+13820,35234,1.0
+13820,35235,1.0
+13820,35242,1.0
+13820,35243,1.0000000000000002
+13820,35244,1.0
+13820,35254,1.0
+13820,35444,0.0194647201946472
+13820,35456,0.004256451183825486
+13820,35952,0.4008023812605151
+13820,35953,1.0
+13820,35957,0.02415089530363856
+13820,35972,0.199297629499561
+13820,35976,0.021939528023598817
+13820,35980,0.23832590583220306
+13820,35987,1.0
+13820,36006,0.24295506473724296
+13820,36051,0.171875
+13820,36091,0.8939144736842105
+13820,36750,1.0000000000000002
+13820,36758,0.3151558073654391
+13820,36790,1.0
+13820,36792,1.0
+13820,36793,0.7887323943661972
+13900,58477,1.0
+13900,58494,1.0
+13900,58501,1.0
+13900,58503,1.0
+13900,58504,1.0
+13900,58505,1.0
+13900,58520,0.8446969696969697
+13900,58521,1.0
+13900,58523,0.02210555402044764
+13900,58530,1.0
+13900,58532,0.8013468013468014
+13900,58535,0.8353765323992994
+13900,58545,0.02513724357122219
+13900,58554,1.0000000000000002
+13900,58558,1.0
+13900,58560,1.0
+13900,58563,1.0
+13900,58566,1.0
+13900,58570,0.5465994962216625
+13900,58571,0.11276948590381425
+13900,58572,1.0
+13900,58579,0.4109243697478992
+13900,58631,0.9113043478260868
+13900,58638,0.8901209677419355
+13980,24058,1.0
+13980,24060,1.0
+13980,24070,0.008070432868672045
+13980,24073,1.0
+13980,24084,0.9752300070771408
+13980,24086,1.0
+13980,24087,0.9680633622892182
+13980,24093,1.0
+13980,24124,0.9473805147058824
+13980,24128,0.7323717948717948
+13980,24132,1.0
+13980,24134,1.0
+13980,24136,1.0
+13980,24138,0.6001239925604464
+13980,24141,0.9928391716663441
+13980,24142,1.0
+13980,24147,1.0
+13980,24149,0.7406409104522312
+13980,24150,1.0
+13980,24162,0.9904997934737712
+13980,24167,1.0
+13980,24301,1.0
+13980,24313,0.014705882352941175
+13980,24315,0.0045045045045045045
+13980,24324,0.9225037257824144
+13980,24347,0.9813568099430346
+14010,60936,0.0043971302939134465
+14010,61701,1.0
+14010,61704,1.0
+14010,61705,1.0
+14010,61720,1.0
+14010,61722,1.0
+14010,61723,0.009478672985781993
+14010,61724,1.0
+14010,61725,0.6218487394957983
+14010,61726,0.9095911949685536
+14010,61728,1.0
+14010,61729,0.012115563839701773
+14010,61730,1.0
+14010,61731,0.7071428571428572
+14010,61732,0.9627862595419848
+14010,61736,1.0
+14010,61737,1.0
+14010,61738,0.007834757834757834
+14010,61739,0.001837859914233204
+14010,61744,0.8921713441654358
+14010,61745,0.9820780399274048
+14010,61748,0.990294751976995
+14010,61752,0.9907812860106016
+14010,61753,1.0
+14010,61754,0.9262490087232356
+14010,61761,1.0
+14010,61770,1.0
+14010,61772,1.0
+14010,61774,1.0
+14010,61776,1.0
+14010,61842,0.02613941018766756
+14010,61843,0.016504443504020312
+14020,46120,0.13503527040644944
+14020,46151,0.0021021312376701923
+14020,46166,0.043798785776235916
+14020,47264,0.02591036414565826
+14020,47401,0.9990490356245886
+14020,47403,0.9927636892262962
+14020,47404,1.0000000000000002
+14020,47405,1.0
+14020,47406,1.0
+14020,47408,1.0
+14020,47427,0.9002744739249772
+14020,47429,1.0
+14020,47431,1.0
+14020,47433,0.911055900621118
+14020,47434,1.0
+14020,47436,0.19603126879134092
+14020,47448,0.006662225183211193
+14020,47455,1.0
+14020,47456,0.6158333333333333
+14020,47458,1.0
+14020,47459,0.06719367588932806
+14020,47460,0.995815534826955
+14020,47462,0.06220488606035721
+14020,47464,1.0
+14020,47468,0.7776
+14020,47471,0.12724605793912724
+14020,47833,0.5128712871287129
+14020,47841,0.0074836295603367626
+14020,47868,0.8491658154579503
+14100,17756,0.02184074790457769
+14100,17772,0.3959983326385994
+14100,17774,0.022709475332811275
+14100,17777,0.02210884353741497
+14100,17814,0.7586419753086421
+14100,17815,0.9925727387218652
+14100,17820,0.9999999999999999
+14100,17821,0.885504144025468
+14100,17824,0.15504252733900364
+14100,17846,0.9919743178170144
+14100,17847,0.05733963986391171
+14100,17859,1.0
+14100,17878,0.5896596858638743
+14100,17884,1.0
+14100,17888,1.0
+14100,17920,1.0
+14100,17921,0.0018238665971860343
+14100,17945,0.5166666666666667
+14100,17985,0.1231647634584013
+14100,18603,0.797463768115942
+14100,18631,1.0
+14100,18635,0.21669672764751352
+14100,18655,0.03902516725071679
+14260,83302,0.2653061224489796
+14260,83316,0.00031165593185123624
+14260,83602,1.0
+14260,83604,1.0
+14260,83605,1.0
+14260,83607,0.9756120007362415
+14260,83616,1.0
+14260,83617,1.0
+14260,83622,1.0
+14260,83624,0.793305439330544
+14260,83626,1.0
+14260,83627,0.18548387096774194
+14260,83628,1.0
+14260,83629,0.9999999999999999
+14260,83631,1.0
+14260,83634,0.9999999999999999
+14260,83636,1.0
+14260,83637,1.0
+14260,83639,1.0
+14260,83641,1.0
+14260,83642,1.0
+14260,83644,1.0
+14260,83646,1.0
+14260,83650,1.0
+14260,83651,1.0
+14260,83656,1.0
+14260,83657,1.0
+14260,83660,0.8908319185059422
+14260,83666,1.0
+14260,83669,1.0000000000000002
+14260,83670,1.0
+14260,83676,1.0
+14260,83686,1.0
+14260,83687,1.0
+14260,83702,1.0
+14260,83703,1.0
+14260,83704,1.0
+14260,83705,1.0
+14260,83706,1.0
+14260,83709,1.0
+14260,83712,1.0
+14260,83713,1.0
+14260,83714,1.0
+14260,83716,0.989258417682297
+14260,89832,0.27300613496932513
+14260,97910,0.1060842433697348
+14460,01431,1.0
+14460,01432,1.0
+14460,01434,0.1883008356545961
+14460,01450,1.0
+14460,01460,1.0
+14460,01463,1.0
+14460,01464,1.0
+14460,01469,1.0
+14460,01474,1.0
+14460,01701,1.0
+14460,01702,1.0
+14460,01718,1.0
+14460,01719,1.0
+14460,01720,1.0
+14460,01721,1.0
+14460,01730,1.0
+14460,01731,1.0
+14460,01741,1.0
+14460,01742,1.0
+14460,01746,1.0
+14460,01748,1.0
+14460,01749,1.0
+14460,01752,1.0
+14460,01754,1.0
+14460,01760,1.0
+14460,01770,1.0
+14460,01773,1.0
+14460,01775,1.0
+14460,01776,1.0
+14460,01778,1.0
+14460,01801,1.0
+14460,01803,1.0
+14460,01810,1.0
+14460,01821,1.0
+14460,01824,1.0
+14460,01826,1.0
+14460,01827,1.0
+14460,01830,1.0
+14460,01832,1.0
+14460,01833,1.0
+14460,01834,1.0
+14460,01835,1.0
+14460,01840,1.0
+14460,01841,1.0
+14460,01843,1.0
+14460,01844,1.0
+14460,01845,1.0
+14460,01850,1.0
+14460,01851,1.0
+14460,01852,1.0
+14460,01854,1.0
+14460,01860,1.0
+14460,01862,1.0
+14460,01863,1.0
+14460,01864,1.0
+14460,01867,1.0
+14460,01876,1.0
+14460,01879,1.0
+14460,01880,1.0
+14460,01886,1.0
+14460,01887,1.0
+14460,01890,1.0
+14460,01901,1.0
+14460,01902,1.0
+14460,01904,1.0
+14460,01905,1.0
+14460,01906,1.0
+14460,01907,1.0
+14460,01908,1.0
+14460,01913,1.0
+14460,01915,1.0
+14460,01921,1.0
+14460,01922,1.0
+14460,01923,1.0
+14460,01929,1.0
+14460,01930,1.0
+14460,01937,1.0
+14460,01938,1.0
+14460,01940,1.0
+14460,01944,1.0
+14460,01945,1.0
+14460,01949,1.0
+14460,01950,1.0
+14460,01951,1.0
+14460,01952,1.0
+14460,01960,1.0
+14460,01966,1.0
+14460,01969,1.0
+14460,01970,1.0
+14460,01982,1.0
+14460,01983,1.0
+14460,01984,1.0
+14460,01985,1.0
+14460,02019,1.0
+14460,02021,1.0
+14460,02025,1.0
+14460,02026,1.0
+14460,02030,1.0
+14460,02032,1.0
+14460,02035,1.0
+14460,02038,1.0
+14460,02043,1.0
+14460,02045,1.0
+14460,02047,1.0
+14460,02050,1.0
+14460,02052,1.0
+14460,02053,1.0
+14460,02054,1.0
+14460,02056,1.0
+14460,02061,1.0
+14460,02062,1.0
+14460,02066,1.0
+14460,02067,1.0
+14460,02071,1.0
+14460,02072,1.0
+14460,02081,1.0
+14460,02090,1.0
+14460,02093,1.0
+14460,02108,1.0
+14460,02109,1.0
+14460,02110,1.0
+14460,02111,1.0
+14460,02113,1.0
+14460,02114,1.0
+14460,02115,1.0
+14460,02116,1.0
+14460,02118,1.0
+14460,02119,1.0
+14460,02120,1.0
+14460,02121,1.0
+14460,02122,1.0
+14460,02124,1.0
+14460,02125,1.0
+14460,02126,1.0
+14460,02127,1.0
+14460,02128,1.0
+14460,02129,1.0
+14460,02130,1.0
+14460,02131,1.0
+14460,02132,1.0
+14460,02134,1.0
+14460,02135,1.0
+14460,02136,1.0
+14460,02138,1.0
+14460,02139,1.0
+14460,02140,1.0
+14460,02141,1.0
+14460,02142,1.0
+14460,02143,1.0
+14460,02144,1.0
+14460,02145,1.0
+14460,02148,1.0
+14460,02149,1.0
+14460,02150,1.0
+14460,02151,1.0
+14460,02152,1.0
+14460,02155,1.0
+14460,02163,1.0
+14460,02169,1.0
+14460,02170,1.0
+14460,02171,1.0
+14460,02176,1.0
+14460,02180,1.0
+14460,02184,1.0
+14460,02186,1.0
+14460,02188,1.0
+14460,02189,1.0
+14460,02190,1.0
+14460,02191,1.0
+14460,02199,1.0
+14460,02210,1.0
+14460,02215,1.0
+14460,02301,1.0
+14460,02302,1.0
+14460,02322,1.0
+14460,02324,1.0
+14460,02330,1.0
+14460,02332,1.0
+14460,02333,1.0
+14460,02338,1.0
+14460,02339,1.0
+14460,02341,1.0
+14460,02343,1.0
+14460,02346,1.0
+14460,02347,1.0
+14460,02351,1.0
+14460,02359,1.0
+14460,02360,1.0
+14460,02364,1.0
+14460,02366,1.0
+14460,02367,1.0
+14460,02368,1.0
+14460,02370,1.0
+14460,02379,1.0
+14460,02382,1.0
+14460,02420,1.0
+14460,02421,1.0
+14460,02445,1.0
+14460,02446,1.0
+14460,02451,1.0
+14460,02452,1.0
+14460,02453,1.0
+14460,02457,1.0
+14460,02458,1.0
+14460,02459,1.0
+14460,02460,1.0
+14460,02461,1.0
+14460,02462,1.0
+14460,02464,1.0
+14460,02465,1.0
+14460,02466,1.0
+14460,02467,1.0
+14460,02468,1.0
+14460,02472,1.0
+14460,02474,1.0
+14460,02476,1.0
+14460,02478,1.0
+14460,02481,1.0
+14460,02482,1.0
+14460,02492,1.0
+14460,02493,1.0
+14460,02494,1.0
+14460,02532,0.1550039401103231
+14460,02538,1.0
+14460,02558,1.0
+14460,02571,1.0
+14460,02576,1.0
+14460,02738,1.0
+14460,02739,1.0
+14460,02762,1.0
+14460,02770,1.0
+14460,03032,1.0
+14460,03034,1.0
+14460,03036,1.0
+14460,03037,1.0
+14460,03038,1.0
+14460,03042,1.0
+14460,03044,1.0
+14460,03053,1.0
+14460,03077,1.0
+14460,03079,1.0
+14460,03087,1.0
+14460,03225,0.007377049180327869
+14460,03261,1.0
+14460,03290,1.0
+14460,03291,1.0
+14460,03801,1.0
+14460,03811,1.0
+14460,03819,1.0
+14460,03820,1.0
+14460,03823,1.0
+14460,03824,1.0
+14460,03825,1.0
+14460,03826,1.0
+14460,03827,1.0
+14460,03833,1.0
+14460,03835,1.0
+14460,03839,1.0
+14460,03840,1.0
+14460,03841,1.0
+14460,03842,1.0
+14460,03844,1.0
+14460,03848,1.0
+14460,03851,1.0
+14460,03852,1.0
+14460,03854,1.0
+14460,03855,1.0
+14460,03856,1.0
+14460,03857,1.0
+14460,03858,1.0
+14460,03861,1.0
+14460,03862,1.0
+14460,03865,1.0
+14460,03867,1.0
+14460,03868,1.0
+14460,03869,1.0
+14460,03870,1.0
+14460,03871,1.0
+14460,03873,1.0
+14460,03874,1.0
+14460,03878,1.0
+14460,03884,1.0
+14460,03885,1.0
+14460,03887,0.8277623026926648
+14500,80020,0.003136267628170937
+14500,80025,1.0
+14500,80026,1.0
+14500,80027,1.0
+14500,80301,1.0
+14500,80302,1.0
+14500,80303,1.0
+14500,80304,1.0
+14500,80305,1.0
+14500,80310,1.0
+14500,80403,0.0476635000823678
+14500,80422,0.02496532593619972
+14500,80455,1.0
+14500,80466,1.0
+14500,80471,1.0
+14500,80481,1.0
+14500,80501,1.0
+14500,80503,0.9993561679114088
+14500,80504,0.5968299342947351
+14500,80510,1.0
+14500,80516,0.4154241137553076
+14500,80540,0.6568034073077785
+14500,80544,1.0
+14540,42101,1.0
+14540,42102,1.0
+14540,42103,1.0
+14540,42104,0.9934819317798042
+14540,42120,1.0
+14540,42122,1.0
+14540,42133,0.18102189781021902
+14540,42134,0.02526064938933572
+14540,42153,1.0
+14540,42159,1.0
+14540,42160,0.22038152610441766
+14540,42163,1.0
+14540,42164,1.0
+14540,42170,0.6607270135424091
+14540,42171,0.732641426692004
+14540,42206,0.003144072498612909
+14540,42207,0.9892294946147472
+14540,42210,1.0
+14540,42256,0.12132060461416072
+14540,42259,1.0
+14540,42261,1.0
+14540,42273,1.0
+14540,42274,0.8946481247366204
+14540,42275,1.0
+14540,42285,1.0
+14540,42320,0.003900060938452163
+14540,42333,0.0774077407740774
+14540,42339,0.07125
+14540,42721,0.06328478151682573
+14540,42729,0.21954236239950525
+14540,42754,0.006775685712424262
+14740,98110,1.0
+14740,98310,1.0
+14740,98311,1.0
+14740,98312,1.0
+14740,98314,1.0
+14740,98315,1.0
+14740,98329,0.013560929350403034
+14740,98337,1.0
+14740,98340,1.0
+14740,98342,1.0
+14740,98345,1.0
+14740,98346,1.0
+14740,98353,1.0
+14740,98359,1.0
+14740,98364,1.0
+14740,98366,1.0
+14740,98367,1.0
+14740,98370,1.0
+14740,98380,1.0
+14740,98383,1.0
+14740,98392,1.0
+14740,98528,0.003205449263748372
+14860,06468,1.0
+14860,06470,1.0
+14860,06482,1.0
+14860,06484,1.0
+14860,06604,1.0
+14860,06605,1.0
+14860,06606,1.0
+14860,06607,1.0
+14860,06608,1.0
+14860,06610,1.0
+14860,06611,1.0
+14860,06612,1.0
+14860,06614,1.0
+14860,06615,1.0
+14860,06776,0.00014875971586894267
+14860,06784,0.969639468690702
+14860,06801,1.0
+14860,06804,1.0
+14860,06807,1.0
+14860,06810,1.0
+14860,06811,1.0
+14860,06812,1.0
+14860,06820,1.0
+14860,06824,1.0
+14860,06825,1.0
+14860,06830,1.0
+14860,06831,1.0
+14860,06840,1.0
+14860,06850,1.0
+14860,06851,1.0
+14860,06853,1.0
+14860,06854,1.0
+14860,06855,1.0
+14860,06856,1.0
+14860,06870,1.0
+14860,06877,1.0
+14860,06878,1.0
+14860,06880,1.0
+14860,06883,1.0
+14860,06890,1.0
+14860,06896,1.0
+14860,06897,1.0
+14860,06901,1.0
+14860,06902,1.0
+14860,06903,1.0
+14860,06905,1.0
+14860,06906,1.0
+14860,06907,1.0
+15180,78520,1.0
+15180,78521,1.0
+15180,78526,1.0
+15180,78535,1.0
+15180,78550,1.0
+15180,78552,1.0
+15180,78559,1.0
+15180,78566,1.0
+15180,78567,1.0
+15180,78569,0.014359990096558552
+15180,78575,1.0
+15180,78578,1.0
+15180,78583,1.0
+15180,78586,1.0
+15180,78592,1.0
+15180,78593,1.0
+15180,78597,1.0
+15260,31304,1.0
+15260,31305,1.0
+15260,31323,0.09137343927355278
+15260,31327,1.0
+15260,31331,1.0
+15260,31503,0.116830839174086
+15260,31520,1.0
+15260,31522,1.0
+15260,31523,1.0
+15260,31525,1.0
+15260,31527,1.0
+15260,31542,1.0
+15260,31543,0.9382819015846537
+15260,31553,0.9967538667175864
+15260,31557,0.06769635228393033
+15260,31561,1.0
+15260,31566,1.0
+15380,14001,0.9583685545224007
+15380,14004,0.9435610831234256
+15380,14006,1.0
+15380,14008,1.0
+15380,14012,1.0
+15380,14013,0.015419760137064534
+15380,14025,1.0
+15380,14026,1.0
+15380,14028,1.0
+15380,14030,0.8251245157719977
+15380,14031,1.0
+15380,14032,1.0
+15380,14033,1.0
+15380,14034,1.0
+15380,14035,1.0
+15380,14037,0.13550600343053176
+15380,14043,1.0
+15380,14047,1.0
+15380,14051,1.0
+15380,14052,1.0
+15380,14055,1.0
+15380,14057,1.0
+15380,14059,1.0
+15380,14061,1.0
+15380,14067,1.0
+15380,14068,1.0
+15380,14069,1.0
+15380,14070,0.5671420083184789
+15380,14072,1.0
+15380,14075,1.0
+15380,14080,1.0
+15380,14081,0.6575121163166397
+15380,14085,1.0
+15380,14086,1.0
+15380,14091,1.0
+15380,14092,1.0
+15380,14094,1.0
+15380,14102,1.0
+15380,14105,0.9393342093736312
+15380,14108,1.0
+15380,14109,1.0
+15380,14111,1.0
+15380,14112,1.0
+15380,14120,1.0
+15380,14126,1.0
+15380,14127,1.0
+15380,14131,1.0
+15380,14132,1.0
+15380,14134,1.0
+15380,14139,1.0
+15380,14141,0.9513457556935818
+15380,14145,0.029666254635352288
+15380,14150,1.0
+15380,14169,1.0
+15380,14170,1.0
+15380,14172,1.0
+15380,14174,1.0
+15380,14201,1.0
+15380,14202,1.0
+15380,14203,1.0
+15380,14204,1.0
+15380,14206,1.0
+15380,14207,1.0
+15380,14208,1.0
+15380,14209,1.0
+15380,14210,1.0
+15380,14211,1.0
+15380,14212,1.0
+15380,14213,1.0
+15380,14214,1.0
+15380,14215,1.0
+15380,14216,1.0
+15380,14217,1.0
+15380,14218,1.0
+15380,14219,1.0
+15380,14220,1.0
+15380,14221,1.0
+15380,14222,1.0
+15380,14223,1.0
+15380,14224,1.0
+15380,14225,1.0
+15380,14226,1.0
+15380,14227,1.0
+15380,14228,1.0
+15380,14261,1.0
+15380,14301,1.0
+15380,14302,1.0
+15380,14303,1.0
+15380,14304,1.0
+15380,14305,1.0
+15500,27201,1.0
+15500,27215,0.9631509779163552
+15500,27217,0.9690155328245929
+15500,27244,0.8943766316235094
+15500,27249,0.2703828287682204
+15500,27253,1.0
+15500,27258,1.0
+15500,27298,0.2380998452012384
+15500,27302,0.6880584582765411
+15500,27312,0.002895225609089916
+15500,27340,1.0
+15500,27349,0.9417528579205224
+15540,05401,1.0
+15540,05403,1.0
+15540,05404,1.0
+15540,05405,1.0
+15540,05408,1.0
+15540,05439,1.0
+15540,05440,1.0
+15540,05441,1.0
+15540,05444,0.5338389731621938
+15540,05445,1.0
+15540,05446,1.0
+15540,05447,1.0
+15540,05448,1.0
+15540,05450,1.0
+15540,05452,1.0
+15540,05454,1.0
+15540,05455,1.0
+15540,05457,1.0
+15540,05458,1.0
+15540,05459,1.0
+15540,05461,0.9678555702333772
+15540,05462,1.0
+15540,05463,1.0
+15540,05464,0.06981382978723404
+15540,05465,1.0
+15540,05468,1.0
+15540,05471,0.9654017857142856
+15540,05474,1.0
+15540,05476,1.0
+15540,05477,1.0
+15540,05478,1.0
+15540,05482,1.0
+15540,05483,1.0
+15540,05485,1.0
+15540,05486,1.0
+15540,05487,0.020026702269692925
+15540,05488,1.0
+15540,05489,1.0
+15540,05494,1.0
+15540,05495,1.0
+15540,05676,0.09791332263242376
+15680,20606,1.0
+15680,20609,1.0
+15680,20618,1.0
+15680,20619,1.0
+15680,20620,1.0
+15680,20621,1.0
+15680,20622,0.3612244897959184
+15680,20624,1.0
+15680,20626,1.0
+15680,20628,1.0
+15680,20630,1.0
+15680,20634,1.0
+15680,20636,1.0
+15680,20650,1.0
+15680,20653,1.0
+15680,20659,0.9843390926887394
+15680,20660,1.0
+15680,20667,1.0
+15680,20670,1.0
+15680,20674,1.0
+15680,20680,1.0
+15680,20684,1.0
+15680,20686,1.0
+15680,20687,1.0
+15680,20690,1.0
+15680,20692,1.0
+15940,43903,0.4615036231884058
+15940,43908,0.02986022871664549
+15940,43945,0.12723284236916327
+15940,43986,0.009113924050632912
+15940,43988,0.18537964458804526
+15940,44201,0.010553708255023856
+15940,44216,0.06413251221066044
+15940,44260,0.0704089219330855
+15940,44427,0.3945409429280397
+15940,44601,0.9172380574601916
+15940,44607,1.0
+15940,44608,0.8394598649662416
+15940,44612,0.03948611373512186
+15940,44613,1.0
+15940,44614,0.9851528384279477
+15940,44615,1.0
+15940,44618,0.07582385535141441
+15940,44620,1.0
+15940,44621,0.010596885813148788
+15940,44625,0.15514809590973205
+15940,44626,0.98555592878737
+15940,44632,0.9471582181259599
+15940,44634,0.2453789279112754
+15940,44640,1.0
+15940,44641,1.0
+15940,44643,0.7131830811979005
+15940,44644,1.0
+15940,44646,1.0
+15940,44647,1.0
+15940,44651,1.0
+15940,44652,1.0
+15940,44656,0.03638814016172507
+15940,44657,0.8168182697890459
+15940,44662,0.9350662800331401
+15940,44666,0.8442622950819673
+15940,44669,1.0
+15940,44670,1.0
+15940,44675,0.7925072046109509
+15940,44685,0.4920888372768181
+15940,44688,1.0
+15940,44689,0.6379310344827587
+15940,44695,0.5018656716417911
+15940,44702,1.0
+15940,44703,1.0
+15940,44704,1.0
+15940,44705,1.0
+15940,44706,1.0
+15940,44707,1.0
+15940,44708,1.0
+15940,44709,1.0
+15940,44710,1.0
+15940,44714,1.0
+15940,44718,1.0
+15940,44720,0.9106382978723404
+15940,44721,1.0
+15940,44730,1.0
+15980,33901,1.0
+15980,33903,1.0
+15980,33904,1.0
+15980,33905,1.0
+15980,33907,1.0
+15980,33908,1.0
+15980,33909,1.0
+15980,33912,1.0
+15980,33913,1.0
+15980,33914,1.0
+15980,33916,1.0
+15980,33917,0.9953603572176096
+15980,33919,1.0
+15980,33920,1.0
+15980,33921,0.7697674418604651
+15980,33922,1.0
+15980,33924,1.0
+15980,33928,1.0
+15980,33931,1.0
+15980,33936,0.9962619774665684
+15980,33945,1.0
+15980,33955,0.181610337972167
+15980,33956,1.0
+15980,33957,1.0
+15980,33965,1.0
+15980,33966,1.0
+15980,33967,1.0
+15980,33971,1.0
+15980,33972,1.0
+15980,33973,1.0
+15980,33974,1.0
+15980,33976,1.0
+15980,33990,1.0
+15980,33991,1.0
+15980,33993,1.0
+15980,34110,0.007706386667951064
+15980,34119,0.003183724180773412
+15980,34134,0.8746456916099773
+15980,34135,1.0
+16020,62914,1.0
+16020,62952,0.009786476868327402
+16020,62957,0.9819277108433736
+16020,62962,1.0
+16020,62969,1.0
+16020,62988,1.0
+16020,62990,1.0
+16020,62992,0.04651162790697674
+16020,63655,0.2915298752462245
+16020,63662,1.0
+16020,63701,1.0
+16020,63703,1.0
+16020,63730,0.20699708454810495
+16020,63732,0.46043165467625896
+16020,63739,1.0
+16020,63740,0.18055815695823188
+16020,63743,1.0
+16020,63744,1.0
+16020,63745,1.0
+16020,63747,1.0
+16020,63750,1.0
+16020,63751,1.0
+16020,63755,1.0
+16020,63760,1.0
+16020,63764,1.0
+16020,63766,1.0
+16020,63769,1.0
+16020,63770,0.5052083333333334
+16020,63771,0.0031446540880503146
+16020,63775,0.005565529622980251
+16020,63780,0.0004451038575667656
+16020,63781,1.0
+16020,63782,1.0
+16020,63785,1.0
+16020,63787,1.0
+16020,63960,0.025255562236921228
+16060,62280,0.4324324324324325
+16060,62832,0.0076020851433536065
+16060,62841,1.0
+16060,62890,0.21998612074947954
+16060,62896,0.06122287343576746
+16060,62901,1.0000000000000002
+16060,62902,0.9984550871772235
+16060,62903,1.0
+16060,62905,0.10487444608567208
+16060,62907,0.9963031423290204
+16060,62908,0.4689507494646681
+16060,62912,0.5326547921967769
+16060,62915,1.0
+16060,62916,0.8412060301507538
+16060,62917,0.0524945770065076
+16060,62918,1.0
+16060,62921,1.0
+16060,62922,1.0
+16060,62923,0.8803088803088803
+16060,62924,1.0
+16060,62927,1.0
+16060,62932,1.0
+16060,62933,1.0
+16060,62939,0.9833279897403014
+16060,62940,1.0
+16060,62942,1.0
+16060,62943,0.6895104895104895
+16060,62948,1.0
+16060,62949,1.0
+16060,62950,1.0
+16060,62951,1.0
+16060,62958,0.9279398762157384
+16060,62959,1.0
+16060,62966,1.0
+16060,62967,1.0
+16060,62972,0.9311203319502076
+16060,62974,1.0
+16060,62975,1.0
+16060,62985,0.5171597633136095
+16060,62987,0.3730834752981261
+16060,62994,1.0
+16060,62995,1.0
+16180,89701,1.0
+16180,89703,1.0
+16180,89705,0.009056148118333671
+16180,89706,0.9169656586365966
+16220,82601,1.0
+16220,82604,0.9993818097519512
+16220,82609,1.0
+16220,82620,0.923809523809524
+16220,82630,1.0
+16220,82635,1.0
+16220,82636,0.9907058528008038
+16220,82638,1.0
+16220,82639,0.057142857142857134
+16220,82642,0.09574468085106384
+16220,82643,1.0
+16220,82644,1.0
+16220,82646,1.0
+16220,82648,1.0
+16300,50651,0.08831749580771381
+16300,52032,0.041208791208791215
+16300,52033,0.2979387882573392
+16300,52202,1.0
+16300,52205,1.0
+16300,52206,1.0
+16300,52208,0.9257849666983824
+16300,52209,1.0
+16300,52212,1.0
+16300,52213,1.0
+16300,52214,1.0
+16300,52216,0.0196078431372549
+16300,52218,0.8333333333333334
+16300,52219,1.0
+16300,52224,0.14136904761904762
+16300,52225,0.1610738255033557
+16300,52227,1.0
+16300,52228,0.9772727272727273
+16300,52229,1.0
+16300,52233,1.0
+16300,52249,1.0
+16300,52253,0.7822681704260651
+16300,52257,1.0
+16300,52301,0.011102504518461141
+16300,52302,1.0
+16300,52305,1.0
+16300,52306,0.08665906499429875
+16300,52309,0.19143576826196476
+16300,52310,0.9992225159384233
+16300,52312,1.0
+16300,52313,1.0
+16300,52314,1.0
+16300,52315,1.0
+16300,52318,0.9002904162633107
+16300,52320,0.9426433915211969
+16300,52321,1.0
+16300,52323,0.9158016147635524
+16300,52324,1.0
+16300,52328,1.0
+16300,52332,1.0
+16300,52336,1.0
+16300,52338,0.01370697532744441
+16300,52341,1.0
+16300,52345,1.0
+16300,52346,1.0
+16300,52349,1.0
+16300,52351,1.0
+16300,52352,0.7930864197530865
+16300,52354,1.0
+16300,52362,1.0
+16300,52401,1.0
+16300,52402,1.0
+16300,52403,1.0
+16300,52404,0.9986506508625252
+16300,52405,1.0
+16300,52411,1.0
+16540,17021,0.009191176470588236
+16540,17201,1.0
+16540,17202,1.0
+16540,17210,1.0
+16540,17214,1.0
+16540,17217,1.0
+16540,17219,1.0
+16540,17220,1.0
+16540,17221,1.0
+16540,17222,0.9368313331472696
+16540,17224,1.0
+16540,17225,1.0
+16540,17235,1.0
+16540,17236,0.974142776840922
+16540,17237,1.0
+16540,17240,0.295067264573991
+16540,17244,1.0
+16540,17246,1.0
+16540,17247,1.0
+16540,17250,1.0
+16540,17251,1.0
+16540,17252,1.0
+16540,17254,1.0
+16540,17256,1.0
+16540,17257,0.3374053436205172
+16540,17261,1.0
+16540,17262,1.0
+16540,17263,1.0
+16540,17265,1.0
+16540,17268,1.0
+16540,17270,1.0
+16540,17271,1.0
+16540,17272,1.0
+16580,60936,0.00277713492247165
+16580,60949,0.9528301886792452
+16580,60957,0.01798753339269813
+16580,60960,0.006578947368421052
+16580,61801,1.0
+16580,61802,1.0
+16580,61810,0.03878116343490305
+16580,61813,1.0
+16580,61815,1.0
+16580,61816,1.0
+16580,61818,0.9633633633633634
+16580,61820,1.0
+16580,61821,1.0
+16580,61822,1.0
+16580,61830,0.905857740585774
+16580,61839,1.0
+16580,61840,1.0
+16580,61842,0.03619302949061663
+16580,61843,0.9834955564959796
+16580,61845,0.9285714285714286
+16580,61847,1.0
+16580,61849,0.9098805646036916
+16580,61851,1.0
+16580,61852,0.9386973180076628
+16580,61853,0.9999999999999999
+16580,61854,1.0
+16580,61855,1.0
+16580,61856,1.0
+16580,61859,0.9776407093292212
+16580,61862,0.9274509803921568
+16580,61863,1.0
+16580,61864,1.0
+16580,61866,1.0
+16580,61871,1.0
+16580,61872,0.9723684210526315
+16580,61873,1.0
+16580,61874,1.0
+16580,61875,1.0
+16580,61877,1.0
+16580,61878,1.0
+16580,61880,1.0
+16580,61884,1.0
+16580,61913,0.4323040380047506
+16580,61929,1.0
+16580,61936,1.0
+16580,61956,0.015812994156067378
+16620,25003,1.0
+16620,25009,1.0
+16620,25015,1.0
+16620,25019,1.0
+16620,25021,1.0
+16620,25024,1.0
+16620,25025,1.0
+16620,25028,1.0
+16620,25030,1.0
+16620,25035,1.0
+16620,25036,0.11752136752136752
+16620,25039,1.0
+16620,25043,0.969258589511754
+16620,25045,0.8689881054990518
+16620,25047,0.39172749391727496
+16620,25049,1.0
+16620,25051,1.0
+16620,25053,1.0
+16620,25054,1.0
+16620,25061,1.0
+16620,25063,0.3878686700055649
+16620,25064,1.0
+16620,25067,1.0
+16620,25071,0.989313499187826
+16620,25075,1.0
+16620,25081,1.0
+16620,25083,0.9375
+16620,25086,1.0
+16620,25088,1.0
+16620,25093,1.0
+16620,25102,1.0
+16620,25103,1.0
+16620,25107,1.0
+16620,25108,0.916184971098266
+16620,25110,1.0
+16620,25111,0.8011527377521613
+16620,25112,1.0
+16620,25113,1.0
+16620,25114,1.0
+16620,25124,0.03377265238879736
+16620,25125,0.8852621167161226
+16620,25126,1.0
+16620,25130,1.0
+16620,25132,1.0
+16620,25133,1.0
+16620,25134,1.0
+16620,25136,0.4132369299221357
+16620,25141,1.0
+16620,25142,1.0
+16620,25143,0.7384310525702297
+16620,25148,1.0
+16620,25149,1.0
+16620,25154,1.0
+16620,25156,1.0
+16620,25160,1.0
+16620,25162,1.0
+16620,25164,0.8098647573587908
+16620,25165,1.0
+16620,25169,1.0
+16620,25177,0.9981315396113604
+16620,25181,1.0
+16620,25193,1.0
+16620,25201,1.0
+16620,25202,1.0
+16620,25203,1.0
+16620,25204,1.0
+16620,25205,1.0
+16620,25206,1.0
+16620,25208,1.0
+16620,25209,0.6617766911165445
+16620,25211,1.0
+16620,25214,1.0
+16620,25235,0.10432033719704953
+16620,25239,0.9549653579676676
+16620,25241,0.8859649122807017
+16620,25244,0.8797814207650273
+16620,25245,0.8552097428958051
+16620,25248,0.9999999999999999
+16620,25252,0.5826330532212886
+16620,25262,1.0
+16620,25264,0.562358276643991
+16620,25271,1.0
+16620,25275,1.0
+16620,25285,1.0
+16620,25301,1.0
+16620,25302,1.0
+16620,25303,1.0
+16620,25304,1.0
+16620,25306,1.0
+16620,25309,1.0
+16620,25311,1.0
+16620,25312,1.0
+16620,25313,1.0
+16620,25314,1.0
+16620,25315,1.0
+16620,25320,1.0
+16620,25501,1.0
+16620,25505,0.14675052410901468
+16620,25506,0.8646019456025412
+16620,25508,0.07593778591033852
+16620,25510,0.04631454473787938
+16620,25521,1.0
+16620,25523,0.9410653570079336
+16620,25524,0.8029259896729777
+16620,25529,1.0
+16620,25534,0.0425531914893617
+16620,25540,1.0
+16620,25557,1.0
+16620,25564,1.0
+16620,25565,1.0
+16620,25567,1.0
+16620,25571,1.0
+16620,25573,1.0
+16620,26143,0.023312073894875742
+16620,26164,0.9921326555313484
+16620,26617,0.732620320855615
+16700,29018,0.06108295545478795
+16700,29059,0.029663810151615032
+16700,29401,1.0
+16700,29403,1.0
+16700,29404,1.0
+16700,29405,1.0
+16700,29406,0.9999999999999999
+16700,29407,1.0
+16700,29409,1.0
+16700,29410,1.0
+16700,29412,1.0
+16700,29414,1.0
+16700,29418,1.0
+16700,29420,1.0
+16700,29423,1.0
+16700,29424,1.0
+16700,29426,1.0
+16700,29429,1.0
+16700,29431,1.0
+16700,29432,0.036803364879074665
+16700,29434,1.0
+16700,29436,0.9823305748154776
+16700,29437,1.0
+16700,29438,0.7803156146179402
+16700,29439,1.0
+16700,29445,1.0
+16700,29448,1.0
+16700,29449,1.0
+16700,29450,1.0
+16700,29451,1.0
+16700,29453,1.0
+16700,29455,1.0
+16700,29456,1.0
+16700,29458,1.0
+16700,29461,1.0
+16700,29464,1.0
+16700,29466,1.0
+16700,29468,1.0
+16700,29469,1.0
+16700,29470,0.9999999999999999
+16700,29471,1.0
+16700,29472,0.9357476635514019
+16700,29477,1.0
+16700,29479,1.0
+16700,29482,1.0
+16700,29483,1.0
+16700,29485,1.0
+16700,29487,1.0
+16700,29492,1.0
+16740,27013,1.0
+16740,27020,0.06696776203083632
+16740,27028,0.0017028522775649213
+16740,27054,1.0
+16740,27055,0.003732394366197183
+16740,28006,1.0
+16740,28007,1.0
+16740,28012,1.0
+16740,28016,1.0
+16740,28021,0.7971642668233911
+16740,28023,1.0
+16740,28025,1.0
+16740,28027,1.0
+16740,28031,1.0
+16740,28032,1.0
+16740,28033,1.0
+16740,28034,1.0
+16740,28036,1.0
+16740,28037,0.9029365122764804
+16740,28039,1.0
+16740,28052,1.0
+16740,28054,1.0
+16740,28056,1.0
+16740,28071,0.9421841541755889
+16740,28072,1.0
+16740,28075,1.0
+16740,28077,1.0
+16740,28078,1.0
+16740,28079,1.0
+16740,28080,1.0
+16740,28081,1.0
+16740,28083,0.9999999999999999
+16740,28086,0.1426144043251593
+16740,28088,1.0
+16740,28090,0.019899304723087992
+16740,28091,1.0
+16740,28092,0.9901218563650507
+16740,28097,0.03650586701434159
+16740,28098,1.0
+16740,28101,1.0
+16740,28102,1.0
+16740,28103,0.9999999999999999
+16740,28104,1.0
+16740,28105,1.0
+16740,28107,0.9886328246652133
+16740,28108,1.0
+16740,28110,1.0
+16740,28112,1.0
+16740,28115,1.0
+16740,28117,1.0
+16740,28119,1.0
+16740,28120,1.0
+16740,28124,0.9083358501963154
+16740,28125,1.0
+16740,28133,1.0
+16740,28134,1.0
+16740,28135,1.0
+16740,28137,0.2346153846153846
+16740,28138,1.0
+16740,28144,1.0
+16740,28146,1.0
+16740,28147,1.0
+16740,28159,1.0
+16740,28164,1.0
+16740,28166,1.0
+16740,28168,0.658455522971652
+16740,28170,1.0
+16740,28173,1.0
+16740,28174,1.0
+16740,28202,1.0
+16740,28203,1.0
+16740,28204,1.0
+16740,28205,1.0
+16740,28206,1.0
+16740,28207,1.0
+16740,28208,1.0
+16740,28209,1.0
+16740,28210,1.0
+16740,28211,1.0
+16740,28212,1.0
+16740,28213,1.0
+16740,28214,1.0
+16740,28215,1.0000000000000002
+16740,28216,1.0
+16740,28217,1.0
+16740,28226,1.0
+16740,28227,1.0
+16740,28262,1.0
+16740,28269,1.0
+16740,28270,1.0
+16740,28273,1.0
+16740,28277,1.0
+16740,28278,1.0
+16740,28280,1.0
+16740,28625,0.9977341181021856
+16740,28634,0.919425837320574
+16740,28636,0.04147048170952553
+16740,28650,0.20180089203063198
+16740,28660,1.0
+16740,28673,0.016725798276735936
+16740,28677,1.0
+16740,28678,0.4718714121699196
+16740,28689,0.7879672897196262
+16740,29014,0.6700158646218932
+16740,29031,0.27353595255744995
+16740,29055,0.7800322803781415
+16740,29058,0.9848293299620732
+16740,29067,0.7491095077175998
+16740,29702,0.04036186499652053
+16740,29704,1.0
+16740,29706,1.0000000000000002
+16740,29707,1.0
+16740,29708,1.0
+16740,29710,1.0
+16740,29712,1.0
+16740,29714,1.0
+16740,29715,1.0
+16740,29717,1.0
+16740,29720,1.0
+16740,29724,1.0
+16740,29726,1.0
+16740,29729,1.0
+16740,29730,1.0
+16740,29732,1.0
+16740,29733,1.0
+16740,29742,0.9999999999999999
+16740,29743,1.0
+16740,29745,1.0
+16820,22901,1.0
+16820,22902,1.0
+16820,22903,1.0
+16820,22904,1.0
+16820,22911,1.0
+16820,22920,0.9902054467271859
+16820,22922,0.9588559959859508
+16820,22923,0.6883813306852036
+16820,22931,1.0
+16820,22932,1.0
+16820,22935,1.0
+16820,22936,1.0
+16820,22937,1.0
+16820,22938,1.0000000000000002
+16820,22940,1.0
+16820,22942,0.05805497349932207
+16820,22943,1.0
+16820,22946,1.0
+16820,22947,0.9549785612196283
+16820,22949,1.0
+16820,22958,0.9883934025656688
+16820,22959,1.0
+16820,22963,1.0
+16820,22964,1.0
+16820,22967,0.8665644171779141
+16820,22968,0.9999999999999999
+16820,22969,1.0
+16820,22971,1.0
+16820,22973,0.9822322726538524
+16820,22974,0.8196843082636954
+16820,22976,1.0
+16820,23022,1.0
+16820,23038,0.22028169014084506
+16820,23055,1.0
+16820,23084,0.6453585325180656
+16820,23093,0.002835985504962975
+16820,24464,1.0
+16820,24521,0.022409228441754917
+16820,24553,0.27287066246056785
+16820,24562,0.21830985915492956
+16820,24581,1.0
+16820,24590,0.7579886054000495
+16820,24599,0.4471947194719472
+16860,30707,1.0000000000000002
+16860,30710,0.0010508932592703801
+16860,30725,1.0
+16860,30726,1.0
+16860,30728,1.0
+16860,30731,0.2619439868204283
+16860,30736,0.9903970362426575
+16860,30738,1.0
+16860,30739,1.0
+16860,30740,0.026046511627906974
+16860,30741,1.0
+16860,30742,1.0
+16860,30747,0.013642564802182813
+16860,30750,1.0
+16860,30752,1.0
+16860,30753,0.1991936688069285
+16860,30755,0.3790406673618352
+16860,30757,1.0
+16860,37302,1.0
+16860,37308,0.6872294372294372
+16860,37311,0.004310817228655975
+16860,37315,1.0
+16860,37327,0.9223196706640416
+16860,37336,0.3227034745359353
+16860,37338,0.2502424830261881
+16860,37340,1.0
+16860,37341,1.0
+16860,37343,1.0
+16860,37347,1.0
+16860,37350,1.0
+16860,37351,1.0
+16860,37353,0.1475736760469754
+16860,37356,0.3676588897827836
+16860,37363,1.0
+16860,37365,0.00380517503805175
+16860,37373,1.0
+16860,37374,1.0
+16860,37375,0.09188897871193748
+16860,37377,0.9999999999999999
+16860,37379,0.9906838084591021
+16860,37380,1.0
+16860,37396,1.0
+16860,37397,1.0
+16860,37402,1.0
+16860,37403,1.0
+16860,37404,1.0
+16860,37405,0.9999999999999999
+16860,37406,1.0
+16860,37407,1.0
+16860,37408,1.0
+16860,37409,1.0
+16860,37410,1.0
+16860,37411,1.0
+16860,37412,1.0
+16860,37415,1.0
+16860,37416,1.0
+16860,37419,0.9999999999999999
+16860,37421,1.0
+16940,82001,1.0
+16940,82005,1.0
+16940,82007,1.0
+16940,82009,1.0
+16940,82050,1.0
+16940,82053,1.0
+16940,82054,1.0
+16940,82059,1.0
+16940,82060,1.0
+16940,82061,1.0
+16940,82081,1.0
+16940,82082,0.9881693648816936
+16980,46301,1.0
+16980,46303,1.0
+16980,46304,1.0
+16980,46307,1.0
+16980,46310,1.0
+16980,46311,1.0
+16980,46312,1.0
+16980,46319,1.0
+16980,46320,1.0
+16980,46321,1.0
+16980,46322,1.0
+16980,46323,1.0
+16980,46324,1.0
+16980,46327,1.0
+16980,46341,1.0
+16980,46342,1.0
+16980,46347,1.0
+16980,46348,0.012440191387559809
+16980,46349,1.0
+16980,46356,1.0
+16980,46360,0.030234957020057306
+16980,46368,1.0
+16980,46373,1.0
+16980,46374,0.11758893280632413
+16980,46375,1.0
+16980,46376,1.0
+16980,46377,1.0
+16980,46379,1.0
+16980,46381,1.0
+16980,46383,1.0
+16980,46385,1.0
+16980,46390,0.0017882689556509301
+16980,46391,0.2009047912811022
+16980,46392,1.0
+16980,46393,1.0
+16980,46394,1.0
+16980,46402,1.0
+16980,46403,1.0
+16980,46404,1.0
+16980,46405,1.0
+16980,46406,1.0
+16980,46407,1.0
+16980,46408,1.0
+16980,46409,1.0
+16980,46410,1.0
+16980,47922,0.9999999999999999
+16980,47943,1.0
+16980,47946,0.06947162426614481
+16980,47948,0.9742457689477557
+16980,47951,1.0
+16980,47957,0.06810982048574446
+16980,47959,0.02480510276399717
+16980,47963,1.0
+16980,47964,1.0
+16980,47977,0.8907524932003626
+16980,47978,0.9979648944288986
+16980,47995,0.01778542742398164
+16980,53104,1.0
+16980,53105,0.14128314798973482
+16980,53128,0.12652285682351627
+16980,53139,0.16309778729478944
+16980,53140,1.0
+16980,53142,1.0
+16980,53143,1.0
+16980,53144,1.0
+16980,53158,1.0
+16980,53168,1.0
+16980,53170,1.0
+16980,53177,0.04022091487573538
+16980,53179,1.0
+16980,53181,1.0
+16980,53182,0.07894177645558861
+16980,53192,1.0
+16980,53403,0.01706036745406824
+16980,60002,1.0
+16980,60004,1.0
+16980,60005,1.0
+16980,60007,1.0
+16980,60008,1.0
+16980,60010,1.0
+16980,60012,1.0
+16980,60013,0.9999999999999999
+16980,60014,1.0
+16980,60015,1.0
+16980,60016,1.0
+16980,60018,1.0
+16980,60020,1.0
+16980,60021,1.0
+16980,60022,1.0
+16980,60025,1.0
+16980,60026,1.0
+16980,60029,1.0
+16980,60030,1.0
+16980,60031,1.0
+16980,60033,0.9929607814969114
+16980,60034,1.0
+16980,60035,1.0
+16980,60040,1.0
+16980,60041,1.0
+16980,60042,1.0
+16980,60043,1.0
+16980,60044,1.0
+16980,60045,1.0
+16980,60046,1.0
+16980,60047,1.0
+16980,60048,1.0
+16980,60050,1.0
+16980,60051,1.0
+16980,60053,1.0
+16980,60056,1.0
+16980,60060,1.0
+16980,60061,1.0
+16980,60062,1.0
+16980,60064,1.0
+16980,60067,1.0
+16980,60068,1.0
+16980,60069,1.0
+16980,60070,1.0
+16980,60071,1.0
+16980,60072,1.0
+16980,60073,1.0
+16980,60074,1.0
+16980,60076,1.0
+16980,60077,1.0
+16980,60081,1.0
+16980,60083,1.0
+16980,60084,1.0
+16980,60085,1.0
+16980,60087,1.0
+16980,60088,1.0
+16980,60089,1.0
+16980,60090,1.0
+16980,60091,1.0
+16980,60093,1.0
+16980,60096,1.0
+16980,60097,1.0
+16980,60098,1.0
+16980,60099,1.0
+16980,60101,1.0
+16980,60102,1.0
+16980,60103,1.0
+16980,60104,1.0
+16980,60106,1.0
+16980,60107,1.0
+16980,60108,1.0
+16980,60109,1.0
+16980,60110,1.0
+16980,60111,1.0
+16980,60112,1.0
+16980,60115,1.0
+16980,60118,1.0
+16980,60119,1.0
+16980,60120,1.0
+16980,60123,1.0
+16980,60124,1.0
+16980,60126,1.0
+16980,60129,0.5743801652892562
+16980,60130,1.0
+16980,60131,1.0
+16980,60133,1.0
+16980,60134,1.0
+16980,60135,0.997930463576159
+16980,60136,1.0
+16980,60137,1.0
+16980,60139,1.0
+16980,60140,0.9999999999999999
+16980,60141,1.0
+16980,60142,1.0
+16980,60143,1.0
+16980,60144,1.0
+16980,60145,0.9687856870955462
+16980,60146,0.9679321784002948
+16980,60148,1.0
+16980,60150,1.0
+16980,60151,1.0
+16980,60152,1.0
+16980,60153,1.0
+16980,60154,1.0
+16980,60155,1.0
+16980,60156,1.0
+16980,60157,1.0
+16980,60160,1.0
+16980,60162,1.0
+16980,60163,1.0
+16980,60164,1.0
+16980,60165,1.0
+16980,60169,1.0
+16980,60171,1.0
+16980,60172,1.0
+16980,60173,1.0
+16980,60174,1.0
+16980,60175,1.0
+16980,60176,1.0
+16980,60177,1.0
+16980,60178,1.0000000000000002
+16980,60180,1.0
+16980,60181,1.0
+16980,60184,1.0
+16980,60185,1.0000000000000002
+16980,60187,1.0
+16980,60188,1.0
+16980,60189,1.0
+16980,60190,1.0
+16980,60191,1.0
+16980,60192,1.0
+16980,60193,1.0
+16980,60194,1.0
+16980,60195,1.0
+16980,60201,1.0
+16980,60202,1.0
+16980,60203,1.0
+16980,60301,1.0
+16980,60302,1.0
+16980,60304,1.0
+16980,60305,1.0
+16980,60401,0.9867897909452352
+16980,60402,1.0
+16980,60403,1.0
+16980,60404,1.0
+16980,60406,1.0
+16980,60407,1.0
+16980,60408,1.0
+16980,60409,1.0
+16980,60410,1.0
+16980,60411,1.0
+16980,60415,1.0
+16980,60416,1.0
+16980,60417,1.0
+16980,60419,1.0
+16980,60420,0.0408062930186824
+16980,60421,1.0
+16980,60422,1.0
+16980,60423,1.0000000000000002
+16980,60424,0.99672131147541
+16980,60425,1.0
+16980,60426,1.0
+16980,60428,1.0
+16980,60429,1.0
+16980,60430,1.0
+16980,60431,1.0
+16980,60432,1.0
+16980,60433,1.0
+16980,60435,1.0
+16980,60436,1.0
+16980,60437,1.0
+16980,60438,1.0
+16980,60439,1.0
+16980,60440,1.0
+16980,60441,1.0
+16980,60442,1.0
+16980,60443,1.0
+16980,60444,1.0
+16980,60445,1.0
+16980,60446,1.0
+16980,60447,1.0
+16980,60448,1.0
+16980,60449,1.0
+16980,60450,0.9999999999999999
+16980,60451,1.0
+16980,60452,1.0
+16980,60453,1.0
+16980,60455,1.0
+16980,60456,1.0
+16980,60457,1.0
+16980,60458,1.0
+16980,60459,1.0
+16980,60461,1.0
+16980,60462,1.0
+16980,60463,1.0
+16980,60464,1.0
+16980,60465,1.0
+16980,60466,1.0
+16980,60467,1.0
+16980,60468,0.987246566383257
+16980,60469,1.0
+16980,60470,0.017857142857142856
+16980,60471,0.9999999999999999
+16980,60472,1.0
+16980,60473,1.0
+16980,60474,1.0
+16980,60475,1.0
+16980,60476,1.0
+16980,60477,0.9999999999999999
+16980,60478,1.0
+16980,60479,1.0
+16980,60480,1.0
+16980,60481,0.9932495148088767
+16980,60482,1.0
+16980,60484,1.0
+16980,60487,1.0
+16980,60490,1.0
+16980,60491,1.0
+16980,60501,1.0
+16980,60502,1.0
+16980,60503,1.0
+16980,60504,0.9999999999999999
+16980,60505,1.0
+16980,60506,1.0
+16980,60510,1.0
+16980,60511,1.0
+16980,60512,1.0
+16980,60513,1.0
+16980,60514,1.0
+16980,60515,1.0
+16980,60516,1.0
+16980,60517,1.0
+16980,60518,0.07793296089385475
+16980,60519,1.0
+16980,60520,1.0
+16980,60521,1.0
+16980,60523,1.0
+16980,60525,1.0
+16980,60526,1.0
+16980,60527,1.0
+16980,60530,0.3281972265023113
+16980,60531,0.09779179810725552
+16980,60532,1.0
+16980,60534,1.0
+16980,60536,1.0
+16980,60537,0.3684210526315789
+16980,60538,1.0
+16980,60539,1.0
+16980,60540,1.0
+16980,60541,0.9850698856416772
+16980,60542,1.0
+16980,60543,1.0
+16980,60544,1.0
+16980,60545,1.0
+16980,60546,1.0
+16980,60548,0.6688492388279588
+16980,60550,1.0
+16980,60552,0.4671762589928058
+16980,60554,1.0
+16980,60555,1.0
+16980,60556,1.0
+16980,60558,1.0
+16980,60559,1.0
+16980,60560,1.0
+16980,60561,1.0
+16980,60563,1.0
+16980,60564,1.0
+16980,60565,1.0
+16980,60585,0.9999999999999999
+16980,60586,1.0
+16980,60601,1.0
+16980,60602,1.0
+16980,60603,1.0
+16980,60604,1.0
+16980,60605,1.0
+16980,60606,1.0
+16980,60607,1.0
+16980,60608,1.0
+16980,60609,1.0
+16980,60610,1.0
+16980,60611,1.0
+16980,60612,1.0
+16980,60613,1.0
+16980,60614,1.0
+16980,60615,1.0
+16980,60616,1.0
+16980,60617,1.0
+16980,60618,1.0
+16980,60619,1.0
+16980,60620,1.0
+16980,60621,1.0
+16980,60622,1.0
+16980,60623,1.0
+16980,60624,1.0
+16980,60625,1.0
+16980,60626,1.0
+16980,60628,1.0
+16980,60629,1.0
+16980,60630,1.0
+16980,60631,1.0
+16980,60632,1.0
+16980,60633,1.0
+16980,60634,1.0
+16980,60636,1.0
+16980,60637,1.0
+16980,60638,1.0
+16980,60639,1.0
+16980,60640,1.0
+16980,60641,1.0
+16980,60642,1.0
+16980,60643,1.0
+16980,60644,1.0
+16980,60645,1.0
+16980,60646,1.0
+16980,60647,1.0
+16980,60649,1.0
+16980,60651,1.0
+16980,60652,1.0
+16980,60653,1.0
+16980,60654,1.0
+16980,60655,1.0
+16980,60656,1.0
+16980,60657,1.0
+16980,60659,1.0
+16980,60660,1.0
+16980,60661,1.0
+16980,60706,1.0
+16980,60707,1.0
+16980,60712,1.0
+16980,60714,1.0
+16980,60803,1.0
+16980,60804,1.0
+16980,60805,1.0
+16980,60827,1.0
+16980,60940,0.018699910952804988
+16980,60950,0.005752794214332676
+16980,60961,0.005714285714285714
+16980,61038,0.06646971935007387
+16980,61068,0.002221025710055189
+16980,61360,0.03801945181255526
+17020,95901,0.010506482723382513
+17020,95914,0.6020761245674741
+17020,95916,1.0
+17020,95917,1.0
+17020,95926,1.0
+17020,95928,1.0
+17020,95930,0.5072463768115942
+17020,95938,1.0
+17020,95941,0.8010657193605684
+17020,95942,1.0
+17020,95948,0.9975948196114708
+17020,95954,1.0
+17020,95965,1.0
+17020,95966,0.9954312567307378
+17020,95968,1.0
+17020,95969,1.0
+17020,95973,0.9975592202021466
+17020,95974,1.0
+17020,95978,1.0
+17140,41001,1.0
+17140,41002,1.0
+17140,41003,0.22218234027279254
+17140,41004,0.9747695293546822
+17140,41005,1.0
+17140,41006,1.0
+17140,41007,1.0
+17140,41010,0.5110351258936898
+17140,41011,1.0
+17140,41014,1.0
+17140,41015,1.0
+17140,41016,1.0
+17140,41017,1.0
+17140,41018,1.0
+17140,41030,1.0
+17140,41033,1.0
+17140,41035,1.0
+17140,41040,1.0
+17140,41042,1.0000000000000002
+17140,41043,1.0
+17140,41044,0.4695340501792114
+17140,41045,0.2513747054202671
+17140,41046,0.9349363507779349
+17140,41048,1.0
+17140,41051,1.0
+17140,41052,1.0
+17140,41059,1.0
+17140,41063,1.0
+17140,41064,0.013506994693680656
+17140,41071,1.0
+17140,41073,1.0
+17140,41074,1.0
+17140,41075,1.0
+17140,41076,1.0
+17140,41080,1.0
+17140,41083,0.36726998491704377
+17140,41085,1.0
+17140,41086,0.5907614579574161
+17140,41091,1.0
+17140,41092,1.0
+17140,41094,1.0
+17140,41095,1.0
+17140,41097,1.0
+17140,41099,1.0
+17140,45001,1.0
+17140,45002,1.0
+17140,45003,0.30272596843615496
+17140,45005,0.9917564996829424
+17140,45011,1.0
+17140,45013,1.0
+17140,45014,1.0
+17140,45015,1.0
+17140,45030,1.0
+17140,45032,1.0
+17140,45033,1.0
+17140,45034,1.0
+17140,45036,1.0
+17140,45039,1.0
+17140,45040,1.0
+17140,45041,1.0
+17140,45042,0.9817398208007259
+17140,45044,1.0
+17140,45050,0.9999999999999999
+17140,45051,1.0
+17140,45052,1.0
+17140,45053,0.9999999999999999
+17140,45054,1.0
+17140,45056,1.0
+17140,45062,1.0
+17140,45064,0.5421771088554428
+17140,45065,1.0
+17140,45066,0.9489072528210076
+17140,45067,1.0
+17140,45068,0.9819639278557114
+17140,45069,1.0
+17140,45101,1.0
+17140,45102,1.0
+17140,45103,1.0
+17140,45106,1.0
+17140,45107,0.30337808575140757
+17140,45111,1.0
+17140,45112,1.0
+17140,45113,0.31345605392792325
+17140,45115,1.0
+17140,45118,0.991698948533481
+17140,45120,1.0
+17140,45121,1.0
+17140,45122,1.0
+17140,45130,1.0
+17140,45131,1.0
+17140,45133,0.0011715481171548118
+17140,45140,1.0
+17140,45142,0.09608460846084607
+17140,45144,0.028558052434456933
+17140,45145,1.0
+17140,45147,0.9999999999999999
+17140,45148,0.052267002518891686
+17140,45150,1.0
+17140,45152,1.0
+17140,45153,1.0
+17140,45154,0.9490841692106412
+17140,45156,1.0
+17140,45157,1.0
+17140,45158,1.0
+17140,45160,1.0
+17140,45162,1.0
+17140,45167,1.0
+17140,45168,1.0
+17140,45171,0.7827882391807071
+17140,45174,1.0
+17140,45176,1.0
+17140,45202,1.0
+17140,45203,1.0
+17140,45204,1.0
+17140,45205,1.0
+17140,45206,1.0
+17140,45207,1.0
+17140,45208,1.0
+17140,45209,1.0
+17140,45211,1.0
+17140,45212,1.0
+17140,45213,1.0
+17140,45214,1.0
+17140,45215,1.0
+17140,45216,1.0
+17140,45217,1.0
+17140,45218,1.0
+17140,45219,1.0
+17140,45220,1.0
+17140,45223,1.0
+17140,45224,1.0
+17140,45225,1.0
+17140,45226,1.0
+17140,45227,1.0
+17140,45229,1.0
+17140,45230,1.0
+17140,45231,1.0
+17140,45232,1.0
+17140,45233,1.0
+17140,45236,1.0
+17140,45237,1.0
+17140,45238,1.0
+17140,45239,1.0
+17140,45240,1.0
+17140,45241,1.0
+17140,45242,1.0
+17140,45243,1.0
+17140,45244,1.0
+17140,45245,1.0
+17140,45246,1.0
+17140,45247,1.0
+17140,45248,1.0
+17140,45249,1.0
+17140,45251,1.0
+17140,45252,1.0
+17140,45255,1.0
+17140,45327,0.01626107435236066
+17140,45342,0.003371030882992605
+17140,45458,0.05445113788487282
+17140,45697,0.2494891704127503
+17140,46173,0.024039320822162646
+17140,47001,1.0
+17140,47003,1.0
+17140,47006,0.33555043915749977
+17140,47010,1.0
+17140,47011,0.008613938919342208
+17140,47012,0.9999999999999999
+17140,47016,1.0
+17140,47017,0.01380670611439842
+17140,47018,0.8173099415204679
+17140,47022,1.0
+17140,47024,1.0
+17140,47025,1.0
+17140,47030,1.0
+17140,47031,0.030365126676602086
+17140,47032,1.0
+17140,47035,1.0
+17140,47036,1.0
+17140,47040,0.8700729927007299
+17140,47041,0.4269387755102041
+17140,47060,1.0
+17140,47240,0.005424347158218126
+17140,47325,0.6806596701649176
+17140,47331,0.006402321908745571
+17140,47353,1.0
+17140,47374,0.0003413333333333333
+17300,37010,0.637956828382133
+17300,37015,0.00931098696461825
+17300,37023,1.0
+17300,37028,1.0
+17300,37040,1.0
+17300,37042,1.0
+17300,37043,0.9952184253348354
+17300,37050,0.7257210123602119
+17300,37051,0.317106336687517
+17300,37052,1.0
+17300,37058,1.0
+17300,37079,1.0
+17300,37142,1.0
+17300,37171,1.0
+17300,37175,0.3783251231527094
+17300,37178,0.16098484848484848
+17300,37191,1.0
+17300,42211,1.0
+17300,42215,1.0
+17300,42217,1.0
+17300,42223,1.0
+17300,42232,1.0
+17300,42236,1.0
+17300,42240,1.0
+17300,42254,1.0
+17300,42262,1.0
+17300,42266,0.942084942084942
+17300,42408,0.04794418880807482
+17300,42442,0.021974885844748857
+17300,42453,0.03947368421052632
+17300,42464,0.04669260700389105
+17420,37307,1.0
+17420,37309,0.1323666978484565
+17420,37310,0.9999999999999999
+17420,37311,0.9956891827713442
+17420,37312,1.0
+17420,37317,1.0
+17420,37323,1.0
+17420,37325,0.8666666666666667
+17420,37326,1.0
+17420,37333,1.0
+17420,37336,0.3910042836744407
+17420,37353,0.8524263239530246
+17420,37361,1.0
+17420,37362,1.0
+17420,37369,0.9205020920502092
+17420,37391,1.0
+17460,44001,1.0
+17460,44011,1.0
+17460,44012,1.0
+17460,44017,1.0
+17460,44021,1.0
+17460,44022,1.0
+17460,44023,1.0
+17460,44024,1.0000000000000002
+17460,44026,1.0
+17460,44028,1.0
+17460,44035,1.0
+17460,44039,1.0
+17460,44040,1.0
+17460,44041,0.005874891514787369
+17460,44044,1.0
+17460,44045,1.0
+17460,44046,1.0
+17460,44049,1.0
+17460,44050,1.0
+17460,44052,1.0
+17460,44053,1.0
+17460,44054,1.0
+17460,44055,1.0
+17460,44057,0.9979960923801413
+17460,44060,1.0
+17460,44062,0.7628907293614747
+17460,44064,0.984308992154496
+17460,44065,1.0
+17460,44070,1.0
+17460,44072,1.0
+17460,44074,1.0
+17460,44077,1.0
+17460,44080,1.0
+17460,44081,1.0
+17460,44086,0.9979088247595149
+17460,44089,0.4121013900245297
+17460,44090,1.0
+17460,44092,1.0
+17460,44094,1.0
+17460,44095,1.0
+17460,44099,0.17415730337078653
+17460,44101,1.0
+17460,44102,1.0
+17460,44103,1.0
+17460,44104,1.0
+17460,44105,1.0
+17460,44106,1.0
+17460,44107,1.0
+17460,44108,1.0
+17460,44109,1.0
+17460,44110,1.0
+17460,44111,1.0
+17460,44112,1.0
+17460,44113,1.0
+17460,44114,1.0
+17460,44115,1.0
+17460,44116,1.0
+17460,44117,1.0
+17460,44118,1.0
+17460,44119,1.0
+17460,44120,1.0
+17460,44121,1.0
+17460,44122,1.0
+17460,44123,1.0
+17460,44124,1.0
+17460,44125,1.0
+17460,44126,1.0
+17460,44127,1.0
+17460,44128,1.0
+17460,44129,1.0
+17460,44130,1.0
+17460,44131,1.0
+17460,44132,1.0
+17460,44133,1.0
+17460,44134,1.0
+17460,44135,1.0
+17460,44136,1.0000000000000002
+17460,44137,1.0
+17460,44138,1.0
+17460,44139,1.0
+17460,44140,1.0
+17460,44141,0.9793474363571172
+17460,44142,1.0
+17460,44143,1.0
+17460,44144,1.0
+17460,44145,1.0
+17460,44146,1.0
+17460,44147,1.0
+17460,44149,1.0
+17460,44202,0.008384029446347323
+17460,44203,0.0030546935608999227
+17460,44212,1.0
+17460,44214,0.09874759152215801
+17460,44215,1.0
+17460,44217,0.07556735876388218
+17460,44230,0.019146873485215703
+17460,44231,0.1037554164660568
+17460,44233,1.0
+17460,44234,0.2633587786259542
+17460,44235,0.9775342465753424
+17460,44251,1.0
+17460,44253,1.0000000000000002
+17460,44254,1.0
+17460,44256,0.9992262931381873
+17460,44270,0.0735658042744657
+17460,44273,0.9888359630842511
+17460,44274,1.0
+17460,44275,1.0000000000000002
+17460,44280,1.0000000000000002
+17460,44281,0.9954930894037524
+17460,44287,0.04881598094986109
+17460,44321,0.00375
+17460,44333,0.002025262484677291
+17460,44491,0.14736842105263154
+17460,44851,0.0860964581763376
+17460,44859,0.04317789291882556
+17460,44880,0.09846368715083799
+17460,44889,0.10458003878860213
+17660,83801,0.8406504065040651
+17660,83803,0.8588709677419355
+17660,83810,0.9386038687973086
+17660,83814,1.0
+17660,83815,1.0
+17660,83833,0.9965635738831616
+17660,83835,1.0
+17660,83842,1.0
+17660,83854,1.0
+17660,83858,1.0
+17660,83861,0.06572327044025157
+17660,83869,0.7507810622446527
+17660,83876,1.0
+17780,76567,0.022484416740872662
+17780,76629,0.9049773755656108
+17780,76653,0.0166358595194085
+17780,76687,0.1834924965893588
+17780,77801,1.0
+17780,77802,1.0
+17780,77803,1.0
+17780,77807,0.9999999999999999
+17780,77808,1.0
+17780,77836,0.9952925353059852
+17780,77837,1.0
+17780,77840,1.0
+17780,77845,1.0
+17780,77856,1.0
+17780,77859,1.0
+17780,77867,1.0
+17780,77868,0.07646186577267745
+17780,77878,1.0
+17780,77879,1.0
+17820,80106,0.6580812854442344
+17820,80132,1.0
+17820,80133,0.991185112634672
+17820,80808,0.966461974492206
+17820,80809,1.0
+17820,80813,1.0
+17820,80814,1.0
+17820,80816,0.9123552123552124
+17820,80817,1.0
+17820,80819,1.0
+17820,80827,0.30965391621129323
+17820,80829,1.0
+17820,80831,0.9952712226617559
+17820,80832,0.7132132132132132
+17820,80833,0.5318302387267905
+17820,80840,1.0
+17820,80860,1.0
+17820,80863,1.0
+17820,80864,1.0
+17820,80902,1.0
+17820,80903,1.0
+17820,80904,1.0
+17820,80905,1.0
+17820,80906,1.0
+17820,80907,1.0
+17820,80908,1.0
+17820,80909,1.0
+17820,80910,1.0
+17820,80911,1.0
+17820,80913,1.0
+17820,80914,1.0
+17820,80915,1.0
+17820,80916,1.0
+17820,80917,1.0
+17820,80918,1.0
+17820,80919,1.0
+17820,80920,1.0
+17820,80921,1.0
+17820,80922,1.0
+17820,80923,1.0
+17820,80924,1.0
+17820,80925,1.0
+17820,80926,0.9472558802565931
+17820,80927,1.0
+17820,80928,1.0
+17820,80929,1.0
+17820,80930,1.0
+17820,80938,1.0
+17820,80951,1.0
+17820,81008,0.007156933928015766
+17860,65010,1.0
+17860,65018,0.020871143375680586
+17860,65025,0.26463104325699743
+17860,65039,0.9475945017182129
+17860,65068,1.0
+17860,65081,0.02138492871690428
+17860,65201,0.9983509653195322
+17860,65202,0.9892796528240272
+17860,65203,1.0
+17860,65215,1.0
+17860,65230,0.9132290184921764
+17860,65233,1.0
+17860,65237,1.0
+17860,65240,0.8167325428194994
+17860,65243,0.22808267997148965
+17860,65248,1.0
+17860,65250,1.0
+17860,65254,0.9342541436464088
+17860,65255,1.0
+17860,65256,1.0
+17860,65257,0.1950127877237852
+17860,65274,1.0
+17860,65276,1.0
+17860,65279,0.9999999999999999
+17860,65284,0.9567979669631512
+17860,65287,0.7725118483412322
+17860,65322,1.0
+17860,65347,0.07488986784140969
+17860,65348,0.8066666666666666
+17860,65354,0.07802547770700638
+17900,29006,0.8106638787245165
+17900,29009,0.9262295081967212
+17900,29010,0.00778296642205915
+17900,29014,0.32998413537810684
+17900,29015,1.0
+17900,29016,1.0
+17900,29020,0.973422962204514
+17900,29030,0.7437722419928826
+17900,29031,0.06226834692364715
+17900,29032,0.9719710669077758
+17900,29033,1.0
+17900,29036,0.9816614420062696
+17900,29037,0.4199029126213592
+17900,29044,1.0
+17900,29045,1.0
+17900,29047,0.3600325821341298
+17900,29052,1.0
+17900,29053,1.0
+17900,29054,1.0
+17900,29055,0.21996771962185846
+17900,29058,0.015170670037926675
+17900,29061,1.0
+17900,29063,0.9999999999999999
+17900,29065,1.0
+17900,29067,0.25089049228240023
+17900,29070,1.0
+17900,29072,1.0
+17900,29073,1.0
+17900,29074,1.0
+17900,29075,0.37225784677691526
+17900,29078,1.0
+17900,29105,0.20607661822985468
+17900,29112,0.09741086587436333
+17900,29118,0.03530672719248471
+17900,29123,1.0
+17900,29127,0.043321732869314775
+17900,29128,0.06631435390385271
+17900,29129,0.3691529709228824
+17900,29130,1.0
+17900,29135,0.9741002354524051
+17900,29138,0.9832766700358356
+17900,29160,1.0
+17900,29166,1.0
+17900,29169,1.0
+17900,29170,1.0
+17900,29172,1.0
+17900,29175,1.0
+17900,29180,1.0
+17900,29201,1.0
+17900,29202,1.0
+17900,29203,1.0
+17900,29204,1.0
+17900,29205,1.0
+17900,29206,1.0
+17900,29207,1.0
+17900,29208,1.0
+17900,29209,1.0
+17900,29210,1.0
+17900,29212,1.0
+17900,29223,1.0
+17900,29225,1.0
+17900,29229,1.0
+17900,29666,0.030652503793626707
+17900,29718,0.06431535269709543
+17900,29824,0.00562390158172232
+17900,29832,0.16776007497656986
+17900,29848,0.05193075898801598
+17980,31058,0.6462552991050401
+17980,31801,1.0
+17980,31803,0.9802190038855528
+17980,31804,1.0
+17980,31805,1.0
+17980,31807,1.0
+17980,31808,1.0
+17980,31810,1.0
+17980,31811,1.0
+17980,31812,0.7946902654867256
+17980,31814,1.0
+17980,31815,1.0
+17980,31816,0.06534230832375636
+17980,31820,1.0
+17980,31821,1.0
+17980,31822,0.5647448885614293
+17980,31823,1.0
+17980,31825,0.7711937716262975
+17980,31826,1.0
+17980,31827,1.0
+17980,31829,0.9999999999999998
+17980,31830,0.038338658146964855
+17980,31831,1.0
+17980,31833,0.2972463768115942
+17980,31836,1.0
+17980,31901,1.0
+17980,31903,1.0
+17980,31904,1.0
+17980,31905,1.0
+17980,31906,1.0
+17980,31907,1.0
+17980,31909,1.0
+17980,36027,0.007072135785007072
+17980,36804,0.03813534191329103
+17980,36856,1.0
+17980,36858,1.0
+17980,36859,1.0
+17980,36860,0.8677215189873417
+17980,36867,0.8075641602881585
+17980,36869,1.0
+17980,36870,0.18218601927274666
+17980,36871,1.0
+17980,36874,0.07644601949120365
+17980,36875,1.0
+18020,46124,0.2425249169435216
+18020,47201,0.9712207767269936
+18020,47203,1.0
+18020,47226,1.0
+18020,47232,0.6424797463895738
+18020,47244,0.8969465648854962
+18020,47246,1.0
+18020,47247,1.0
+18020,47274,0.013764337851929093
+18020,47280,1.0
+18020,47283,0.034258712344949795
+18140,43001,1.0
+18140,43002,1.0
+18140,43003,1.0
+18140,43004,1.0
+18140,43008,1.0
+18140,43011,0.3163796555867041
+18140,43013,1.0
+18140,43015,1.0
+18140,43016,1.0
+18140,43017,1.0
+18140,43019,0.2047126436781609
+18140,43021,1.0
+18140,43023,1.0
+18140,43025,1.0
+18140,43026,1.0
+18140,43029,1.0
+18140,43030,1.0
+18140,43031,0.9999999999999999
+18140,43032,1.0
+18140,43033,1.0
+18140,43035,1.0
+18140,43036,1.0
+18140,43040,1.0
+18140,43044,0.02369753979739508
+18140,43045,0.9897593445980544
+18140,43046,1.0
+18140,43050,0.003855421686746988
+18140,43054,1.0
+18140,43055,1.0
+18140,43056,1.0
+18140,43060,0.02379032258064516
+18140,43061,1.0
+18140,43062,1.0
+18140,43064,1.0
+18140,43065,0.9999999999999999
+18140,43066,1.0
+18140,43067,1.0
+18140,43068,1.0
+18140,43071,1.0
+18140,43074,1.0
+18140,43076,1.0
+18140,43077,1.0
+18140,43080,0.7373590396507821
+18140,43081,1.0
+18140,43082,1.0
+18140,43084,0.015457788347205709
+18140,43085,1.0
+18140,43102,1.0
+18140,43103,1.0
+18140,43105,1.0
+18140,43107,1.0
+18140,43109,1.0
+18140,43110,1.0
+18140,43111,1.0
+18140,43112,1.0
+18140,43113,1.0
+18140,43115,0.11279333838001515
+18140,43116,1.0
+18140,43117,1.0
+18140,43119,1.0
+18140,43123,1.0
+18140,43125,1.0
+18140,43126,1.0
+18140,43127,1.0
+18140,43130,1.0
+18140,43135,0.8449943757030371
+18140,43136,1.0
+18140,43137,1.0
+18140,43138,0.9967999132179856
+18140,43140,0.9977561705310397
+18140,43143,0.8744292237442923
+18140,43144,1.0
+18140,43145,0.6366006256517206
+18140,43146,0.9999999999999999
+18140,43147,1.0000000000000002
+18140,43148,0.9999999999999999
+18140,43149,1.0
+18140,43150,1.0
+18140,43151,1.0
+18140,43152,0.9153094462540716
+18140,43153,0.8331616889804325
+18140,43154,1.0
+18140,43155,1.0
+18140,43156,1.0
+18140,43157,1.0
+18140,43158,1.0
+18140,43162,1.0
+18140,43164,0.9664094416704494
+18140,43201,1.0
+18140,43202,1.0
+18140,43203,1.0
+18140,43204,1.0
+18140,43205,1.0
+18140,43206,1.0
+18140,43207,1.0
+18140,43209,1.0
+18140,43210,1.0
+18140,43211,1.0
+18140,43212,1.0
+18140,43213,1.0
+18140,43214,1.0
+18140,43215,1.0
+18140,43217,1.0
+18140,43219,1.0
+18140,43220,1.0
+18140,43221,1.0
+18140,43222,1.0
+18140,43223,1.0
+18140,43224,1.0
+18140,43227,1.0
+18140,43228,1.0
+18140,43229,1.0
+18140,43230,1.0
+18140,43231,1.0
+18140,43232,1.0
+18140,43235,1.0
+18140,43240,1.0
+18140,43302,0.0003650301149844862
+18140,43314,0.06649858178380083
+18140,43315,0.9550099347147316
+18140,43317,1.0
+18140,43319,0.0019230769230769234
+18140,43320,1.0
+18140,43321,1.0
+18140,43334,1.0
+18140,43338,1.0
+18140,43340,0.10459035444509006
+18140,43342,0.038723667905824044
+18140,43344,0.9903117843931653
+18140,43356,0.15321849501359927
+18140,43358,0.4660848869496232
+18140,43721,1.0
+18140,43730,1.0
+18140,43731,0.84251968503937
+18140,43739,1.0
+18140,43740,0.65625
+18140,43746,0.08912280701754385
+18140,43748,1.0
+18140,43760,0.6843255051884215
+18140,43761,1.0
+18140,43764,1.0
+18140,43766,1.0
+18140,43777,0.4240560033941451
+18140,43782,1.0
+18140,43783,1.0
+18140,43822,0.2204928664072633
+18140,43830,0.12374147450470932
+18140,44813,0.10197490994907464
+18140,44833,0.15664972840371474
+18140,44903,0.0133973908288415
+18140,44904,0.09370056090896016
+18140,45369,0.005077574047954865
+18140,45622,0.07165109034267912
+18140,45644,0.24782301718051306
+18140,45654,0.4023991275899673
+18140,45732,0.034547738693467334
+18140,45764,0.1966917612130209
+18580,78330,1.0
+18580,78335,1.0
+18580,78336,0.7468407398108629
+18580,78339,1.0
+18580,78343,1.0
+18580,78351,1.0
+18580,78352,1.0
+18580,78359,1.0
+18580,78362,1.0
+18580,78368,0.8857700227592934
+18580,78370,1.0
+18580,78373,1.0
+18580,78374,1.0
+18580,78380,0.997104705933192
+18580,78383,0.13026278609776773
+18580,78387,0.9491330687278045
+18580,78390,0.990562678062678
+18580,78401,1.0
+18580,78402,1.0
+18580,78404,1.0
+18580,78405,1.0
+18580,78406,1.0
+18580,78407,1.0
+18580,78408,1.0
+18580,78409,1.0
+18580,78410,1.0
+18580,78411,1.0
+18580,78412,1.0
+18580,78413,1.0
+18580,78414,1.0
+18580,78415,1.0
+18580,78416,1.0
+18580,78417,1.0
+18580,78418,0.9997990219066122
+18580,78419,1.0
+18700,97321,0.3431081514762516
+18700,97324,0.8818827708703375
+18700,97326,0.5972944849115505
+18700,97330,1.0
+18700,97331,1.0
+18700,97333,0.940262899377836
+18700,97361,0.01927518209273405
+18700,97370,0.9940756861322694
+18700,97448,0.02115321790264619
+18700,97456,0.9316582914572864
+18880,32413,0.08493296770262035
+18880,32433,1.0
+18880,32435,1.0
+18880,32439,1.0
+18880,32455,0.5536317567567568
+18880,32459,1.0
+18880,32461,1.0
+18880,32462,0.05275498241500586
+18880,32464,0.1412118177265899
+18880,32531,0.9924471299093656
+18880,32536,1.0
+18880,32539,0.9999999999999999
+18880,32541,1.0
+18880,32542,1.0
+18880,32544,1.0
+18880,32547,1.0
+18880,32548,1.0
+18880,32550,1.0
+18880,32564,0.8441513363415479
+18880,32567,1.0
+18880,32569,1.0
+18880,32578,1.0
+18880,32579,1.0
+18880,32580,1.0
+19060,21502,1.0
+19060,21521,0.9422924901185772
+19060,21524,1.0
+19060,21529,1.0
+19060,21530,1.0
+19060,21532,0.9026248399487836
+19060,21539,0.8091521816246896
+19060,21540,1.0
+19060,21542,1.0
+19060,21543,1.0
+19060,21545,1.0
+19060,21555,1.0
+19060,21557,1.0
+19060,21562,0.9894937917860552
+19060,21766,1.0
+19060,26710,0.869198312236287
+19060,26717,0.8589743589743589
+19060,26719,1.0
+19060,26726,0.982188486397114
+19060,26743,0.8084314941103534
+19060,26750,1.0
+19060,26753,1.0
+19060,26763,0.18311688311688312
+19060,26767,1.0
+19100,75001,1.0
+19100,75002,1.0
+19100,75006,1.0
+19100,75007,1.0
+19100,75009,0.9999999999999999
+19100,75010,1.0
+19100,75013,1.0
+19100,75019,1.0000000000000002
+19100,75022,1.0
+19100,75023,1.0
+19100,75024,1.0
+19100,75025,1.0
+19100,75028,0.9999999999999999
+19100,75032,1.0
+19100,75034,1.0
+19100,75035,1.0
+19100,75038,1.0
+19100,75039,1.0
+19100,75040,1.0
+19100,75041,1.0
+19100,75042,1.0
+19100,75043,1.0
+19100,75044,1.0
+19100,75048,1.0
+19100,75050,1.0
+19100,75051,0.9999999999999999
+19100,75052,1.0
+19100,75054,1.0
+19100,75056,1.0
+19100,75057,1.0
+19100,75060,1.0
+19100,75061,1.0
+19100,75062,1.0
+19100,75063,1.0
+19100,75065,1.0
+19100,75067,1.0
+19100,75068,1.0
+19100,75069,1.0
+19100,75070,1.0
+19100,75071,1.0
+19100,75074,1.0
+19100,75075,1.0
+19100,75077,1.0
+19100,75078,1.0
+19100,75080,1.0
+19100,75081,1.0
+19100,75082,1.0
+19100,75087,0.9999999999999999
+19100,75088,1.0
+19100,75089,0.9999999999999999
+19100,75093,1.0
+19100,75094,1.0
+19100,75098,1.0
+19100,75101,1.0
+19100,75104,1.0
+19100,75114,1.0
+19100,75115,1.0
+19100,75116,1.0
+19100,75119,0.9930453742340514
+19100,75125,1.0
+19100,75126,1.0
+19100,75132,1.0
+19100,75134,1.0
+19100,75135,1.0
+19100,75137,1.0
+19100,75141,1.0
+19100,75142,1.0
+19100,75143,0.4649428825501061
+19100,75146,0.9999999999999999
+19100,75147,0.5611935777037261
+19100,75149,1.0
+19100,75150,1.0
+19100,75152,1.0
+19100,75154,1.0
+19100,75157,1.0
+19100,75158,1.0
+19100,75159,1.0
+19100,75160,1.0
+19100,75161,1.0
+19100,75164,1.0
+19100,75165,1.0
+19100,75166,1.0
+19100,75167,1.0
+19100,75169,0.16552854411363016
+19100,75172,1.0
+19100,75173,1.0
+19100,75180,1.0
+19100,75181,1.0
+19100,75182,1.0
+19100,75189,1.0
+19100,75201,1.0
+19100,75202,1.0
+19100,75203,1.0
+19100,75204,1.0
+19100,75205,1.0
+19100,75206,1.0
+19100,75207,1.0
+19100,75208,1.0
+19100,75209,1.0
+19100,75210,1.0
+19100,75211,1.0
+19100,75212,1.0
+19100,75214,1.0
+19100,75215,1.0
+19100,75216,1.0
+19100,75217,1.0
+19100,75218,1.0
+19100,75219,1.0
+19100,75220,1.0
+19100,75223,1.0
+19100,75224,1.0
+19100,75225,1.0
+19100,75226,1.0
+19100,75227,1.0
+19100,75228,1.0
+19100,75229,1.0
+19100,75230,1.0
+19100,75231,1.0
+19100,75232,1.0
+19100,75233,1.0
+19100,75234,1.0
+19100,75235,1.0
+19100,75236,1.0
+19100,75237,1.0
+19100,75238,1.0
+19100,75240,1.0
+19100,75241,1.0
+19100,75243,1.0
+19100,75244,1.0
+19100,75246,1.0
+19100,75247,1.0
+19100,75248,1.0
+19100,75249,1.0
+19100,75251,1.0
+19100,75252,1.0
+19100,75253,1.0
+19100,75254,1.0
+19100,75287,1.0
+19100,75401,1.0
+19100,75402,1.0
+19100,75407,1.0
+19100,75409,1.0
+19100,75422,1.0
+19100,75423,0.988933601609658
+19100,75424,0.9390354868061874
+19100,75428,0.9727425909406284
+19100,75442,1.0
+19100,75449,0.1661045531197302
+19100,75452,0.062102689486552565
+19100,75453,0.8291858678955453
+19100,75454,1.0
+19100,75474,1.0
+19100,75491,0.002916059154342845
+19100,75495,0.041014799154334036
+19100,75496,0.8478066248880931
+19100,76001,1.0
+19100,76002,1.0
+19100,76006,1.0
+19100,76008,1.0
+19100,76009,1.0
+19100,76010,1.0
+19100,76011,1.0
+19100,76012,1.0
+19100,76013,1.0
+19100,76014,1.0
+19100,76015,1.0
+19100,76016,1.0
+19100,76017,1.0
+19100,76018,1.0
+19100,76020,1.0
+19100,76021,1.0
+19100,76022,1.0
+19100,76023,0.9999999999999999
+19100,76028,1.0
+19100,76031,1.0
+19100,76033,0.9993956243200772
+19100,76034,1.0
+19100,76035,0.7558569667077681
+19100,76036,1.0
+19100,76039,1.0
+19100,76040,1.0
+19100,76041,1.0
+19100,76044,1.0
+19100,76049,0.029088738559490648
+19100,76050,0.9460425531914892
+19100,76051,1.0
+19100,76052,1.0
+19100,76053,1.0
+19100,76054,1.0
+19100,76058,1.0
+19100,76059,1.0
+19100,76060,1.0
+19100,76061,1.0
+19100,76063,0.9999999999999999
+19100,76064,1.0
+19100,76065,1.0
+19100,76066,0.9516231699554424
+19100,76067,0.10390197585567663
+19100,76070,0.031914893617021274
+19100,76071,1.0
+19100,76073,1.0
+19100,76078,1.0
+19100,76082,1.0
+19100,76084,1.0
+19100,76085,1.0
+19100,76086,1.0
+19100,76087,0.9867049220075972
+19100,76088,1.0
+19100,76092,1.0
+19100,76093,0.9341288782816228
+19100,76102,1.0
+19100,76103,1.0
+19100,76104,1.0
+19100,76105,1.0
+19100,76106,1.0
+19100,76107,1.0
+19100,76108,0.9999999999999999
+19100,76109,1.0
+19100,76110,1.0
+19100,76111,1.0
+19100,76112,1.0
+19100,76114,1.0
+19100,76115,1.0
+19100,76116,1.0
+19100,76117,1.0
+19100,76118,1.0
+19100,76119,1.0
+19100,76120,1.0
+19100,76123,1.0
+19100,76126,0.9999999999999999
+19100,76127,1.0
+19100,76129,1.0
+19100,76131,1.0
+19100,76132,1.0
+19100,76133,1.0
+19100,76134,1.0
+19100,76135,1.0
+19100,76137,1.0
+19100,76140,1.0
+19100,76148,1.0
+19100,76155,1.0
+19100,76164,1.0
+19100,76177,0.9999999999999999
+19100,76179,1.0
+19100,76180,1.0
+19100,76182,1.0
+19100,76201,1.0
+19100,76205,1.0
+19100,76207,1.0
+19100,76208,1.0
+19100,76209,1.0
+19100,76210,1.0
+19100,76225,1.0
+19100,76226,1.0
+19100,76227,1.0
+19100,76234,0.99736960287419
+19100,76244,1.0
+19100,76247,1.0
+19100,76248,1.0
+19100,76249,1.0
+19100,76258,0.9502928367622766
+19100,76259,1.0
+19100,76262,1.0
+19100,76266,0.9993330863282698
+19100,76270,0.3291958985429034
+19100,76272,0.011169652265542677
+19100,76426,0.9693859493894886
+19100,76431,0.9834515366430259
+19100,76462,0.26324614352783365
+19100,76486,0.2109090909090909
+19100,76487,0.9457518946948544
+19100,76490,1.0
+19100,76623,1.0
+19100,76651,1.0
+19100,76670,0.7145969498910676
+19140,30705,1.0
+19140,30708,1.0
+19140,30710,0.9989491067407296
+19140,30711,1.0
+19140,30720,1.0
+19140,30721,1.0
+19140,30735,0.4483991548837965
+19140,30736,0.009602963757342368
+19140,30740,0.9739534883720932
+19140,30751,1.0
+19140,30755,0.6209593326381647
+19140,30756,1.0
+19180,60932,1.0
+19180,60942,0.9689370651998058
+19180,60960,0.7913533834586466
+19180,60963,1.0
+19180,61810,0.9390581717451524
+19180,61811,1.0
+19180,61812,1.0
+19180,61814,1.0
+19180,61817,1.0
+19180,61831,1.0
+19180,61832,1.0
+19180,61833,1.0
+19180,61834,1.0
+19180,61841,1.0
+19180,61844,1.0
+19180,61846,1.0
+19180,61848,1.0
+19180,61849,0.09011943539630836
+19180,61850,1.0
+19180,61857,1.0
+19180,61858,1.0
+19180,61859,0.022359290670778718
+19180,61862,0.07254901960784314
+19180,61865,1.0
+19180,61870,0.9660889223813112
+19180,61876,0.94
+19180,61883,1.0
+19300,36480,0.01015228426395939
+19300,36502,0.011985834922364479
+19300,36507,1.0
+19300,36511,1.0
+19300,36526,1.0
+19300,36527,1.0
+19300,36530,1.0
+19300,36532,1.0
+19300,36535,1.0
+19300,36542,1.0
+19300,36549,1.0
+19300,36550,1.0
+19300,36551,1.0
+19300,36555,1.0
+19300,36559,1.0
+19300,36561,1.0
+19300,36562,0.9611528822055138
+19300,36564,1.0
+19300,36567,1.0
+19300,36574,1.0
+19300,36576,1.0
+19300,36578,1.0
+19300,36579,1.0
+19300,36580,1.0
+19340,52722,1.0
+19340,52726,0.8907788719785139
+19340,52728,1.0
+19340,52745,1.0
+19340,52746,1.0
+19340,52747,0.06837606837606837
+19340,52748,1.0
+19340,52753,1.0
+19340,52756,1.0
+19340,52758,1.0
+19340,52765,0.8565121412803532
+19340,52767,1.0
+19340,52768,1.0
+19340,52769,0.3845007451564829
+19340,52773,0.9932773109243698
+19340,52801,1.0
+19340,52802,1.0
+19340,52803,1.0
+19340,52804,1.0
+19340,52806,1.0
+19340,52807,1.0
+19340,61201,1.0
+19340,61231,1.0
+19340,61232,1.0
+19340,61234,1.0
+19340,61235,1.0
+19340,61236,1.0
+19340,61238,1.0
+19340,61239,1.0
+19340,61240,1.0
+19340,61241,1.0
+19340,61242,1.0
+19340,61244,1.0
+19340,61250,0.0113262696382901
+19340,61254,1.0
+19340,61256,1.0
+19340,61257,1.0
+19340,61258,1.0
+19340,61259,1.0
+19340,61260,1.0
+19340,61262,1.0
+19340,61263,1.0
+19340,61264,1.0
+19340,61265,1.0
+19340,61272,0.9999999999999999
+19340,61273,1.0
+19340,61274,1.0
+19340,61275,1.0
+19340,61276,1.0
+19340,61277,0.11296572280178838
+19340,61278,1.0
+19340,61279,1.0
+19340,61281,1.0
+19340,61282,1.0
+19340,61284,1.0
+19340,61344,0.029411764705882356
+19340,61361,0.0198722498225692
+19340,61412,0.4504163512490538
+19340,61413,1.0
+19340,61414,0.07611241217798595
+19340,61419,1.0
+19340,61434,0.9459541062801932
+19340,61442,0.9225721784776902
+19340,61443,0.997115519909948
+19340,61465,1.0
+19340,61466,1.0
+19340,61468,1.0
+19340,61476,0.9164619164619164
+19340,61486,1.0
+19340,61490,0.9715857011915674
+19430,43153,0.016477857878475798
+19430,45005,0.008243500317057704
+19430,45066,0.051092747178992405
+19430,45068,0.014218914018513216
+19430,45169,0.019069572506286672
+19430,45301,1.0
+19430,45304,0.0032876712328767125
+19430,45305,1.0
+19430,45307,1.0
+19430,45308,0.3887227680478428
+19430,45309,0.9930710220242516
+19430,45312,0.9923344947735192
+19430,45314,0.994421906693712
+19430,45315,1.0
+19430,45316,0.7652173913043478
+19430,45317,0.4533898305084746
+19430,45318,0.9968313140726934
+19430,45322,1.0
+19430,45324,0.951565545658664
+19430,45325,1.0
+19430,45326,1.0
+19430,45327,0.9717393742290008
+19430,45335,0.9717538550223376
+19430,45337,0.8295857988165679
+19430,45339,1.0
+19430,45342,0.9966289691170074
+19430,45344,0.10203479799469184
+19430,45345,1.0
+19430,45354,1.0
+19430,45356,0.9722310503734308
+19430,45359,1.0
+19430,45361,1.0
+19430,45368,0.011212185318383751
+19430,45370,1.0
+19430,45371,1.0
+19430,45373,1.0
+19430,45377,1.0
+19430,45381,0.03939008894536213
+19430,45383,1.0
+19430,45384,1.0
+19430,45385,1.0
+19430,45387,0.9576320371445154
+19430,45402,1.0
+19430,45403,1.0
+19430,45404,1.0
+19430,45405,1.0
+19430,45406,1.0
+19430,45409,1.0
+19430,45410,1.0
+19430,45414,1.0
+19430,45415,1.0
+19430,45416,1.0
+19430,45417,1.0
+19430,45418,1.0
+19430,45419,1.0
+19430,45420,1.0
+19430,45424,0.9999999999999999
+19430,45426,1.0
+19430,45428,1.0
+19430,45429,1.0
+19430,45430,1.0
+19430,45431,1.0
+19430,45432,1.0
+19430,45433,1.0000000000000002
+19430,45434,1.0
+19430,45439,1.0
+19430,45440,1.0
+19430,45449,1.0
+19430,45458,0.9455488621151272
+19430,45459,1.0
+19460,35019,0.21492678318375055
+19460,35087,0.42080378250591016
+19460,35175,0.229914699464392
+19460,35179,0.014735432016075016
+19460,35565,0.001260659992584353
+19460,35601,1.0
+19460,35603,0.9999999999999999
+19460,35618,1.0
+19460,35619,0.9980525803310615
+19460,35621,0.9519635343618512
+19460,35622,0.7927720628045479
+19460,35640,1.0
+19460,35643,1.0
+19460,35650,1.0
+19460,35651,1.0
+19460,35654,0.002072538860103627
+19460,35670,1.0
+19460,35672,0.9802948021722264
+19460,35673,1.0
+19460,35754,0.9869451697127938
+19460,35775,1.0
+19500,61749,0.03776978417266187
+19500,61756,0.9375267436884896
+19500,61818,0.03663663663663664
+19500,61830,0.09414225941422594
+19500,61882,0.025245441795231416
+19500,61925,0.3410087719298245
+19500,61937,0.02027695351137488
+19500,62501,1.0
+19500,62513,0.8640996602491506
+19500,62514,1.0
+19500,62521,1.0
+19500,62522,1.0
+19500,62523,1.0
+19500,62526,1.0
+19500,62532,1.0
+19500,62535,1.0
+19500,62537,1.0
+19500,62539,0.04197349042709867
+19500,62543,0.06666666666666668
+19500,62544,1.0
+19500,62547,0.026119402985074626
+19500,62549,1.0
+19500,62550,0.015684907633321716
+19500,62551,1.0
+19500,62554,1.0
+19500,62573,1.0
+19660,32102,0.2206627680311891
+19660,32110,1.0
+19660,32114,1.0
+19660,32117,1.0
+19660,32118,1.0
+19660,32119,1.0
+19660,32124,1.0
+19660,32127,1.0
+19660,32128,1.0
+19660,32129,1.0
+19660,32130,1.0
+19660,32132,1.0
+19660,32136,1.0
+19660,32137,1.0
+19660,32141,1.0
+19660,32164,1.0
+19660,32168,1.0
+19660,32169,1.0
+19660,32174,1.0
+19660,32176,1.0
+19660,32180,1.0000000000000002
+19660,32190,1.0
+19660,32713,1.0
+19660,32720,0.9164309764309764
+19660,32724,1.0
+19660,32725,1.0
+19660,32738,1.0
+19660,32744,1.0
+19660,32754,0.05285954211968532
+19660,32759,1.0
+19660,32763,1.0
+19660,32764,1.0
+19740,80002,1.0
+19740,80003,1.0
+19740,80004,1.0
+19740,80005,1.0
+19740,80007,1.0
+19740,80010,1.0
+19740,80011,1.0
+19740,80012,1.0000000000000002
+19740,80013,1.0
+19740,80014,1.0
+19740,80015,1.0
+19740,80016,1.0
+19740,80017,1.0
+19740,80018,1.0
+19740,80019,1.0
+19740,80020,0.996863732371829
+19740,80021,1.0
+19740,80022,1.0
+19740,80023,1.0
+19740,80024,1.0
+19740,80030,1.0
+19740,80031,1.0
+19740,80033,1.0
+19740,80045,1.0
+19740,80101,1.0
+19740,80102,1.0
+19740,80103,1.0
+19740,80104,1.0
+19740,80105,1.0
+19740,80106,0.3419187145557656
+19740,80107,1.0
+19740,80108,1.0
+19740,80109,1.0
+19740,80110,1.0
+19740,80111,1.0
+19740,80112,0.9999999999999999
+19740,80113,1.0
+19740,80116,1.0
+19740,80117,1.0
+19740,80118,1.0
+19740,80120,0.9999999999999999
+19740,80121,1.0
+19740,80122,1.0
+19740,80123,1.0
+19740,80124,1.0
+19740,80125,1.0
+19740,80126,1.0
+19740,80127,1.0
+19740,80128,0.9999999999999999
+19740,80129,1.0
+19740,80130,1.0
+19740,80131,1.0
+19740,80133,0.00881488736532811
+19740,80134,1.0
+19740,80135,1.0
+19740,80136,1.0
+19740,80137,1.0
+19740,80138,1.0
+19740,80202,1.0
+19740,80203,1.0
+19740,80204,1.0
+19740,80205,1.0
+19740,80206,1.0
+19740,80207,1.0
+19740,80209,1.0
+19740,80210,1.0
+19740,80211,1.0
+19740,80212,1.0
+19740,80214,1.0000000000000002
+19740,80215,1.0
+19740,80216,1.0
+19740,80218,1.0
+19740,80219,1.0
+19740,80220,1.0
+19740,80221,1.0
+19740,80222,1.0
+19740,80223,1.0
+19740,80224,0.9999999999999999
+19740,80226,1.0
+19740,80227,1.0
+19740,80228,1.0
+19740,80229,1.0
+19740,80230,1.0
+19740,80231,1.0
+19740,80232,1.0
+19740,80233,1.0
+19740,80234,1.0
+19740,80235,1.0
+19740,80236,1.0
+19740,80237,1.0
+19740,80238,1.0
+19740,80239,1.0
+19740,80241,1.0
+19740,80246,1.0
+19740,80247,1.0
+19740,80249,1.0
+19740,80260,1.0
+19740,80401,1.0
+19740,80403,0.9523364999176323
+19740,80420,1.0
+19740,80421,1.0
+19740,80422,0.9750346740638004
+19740,80425,1.0
+19740,80427,1.0
+19740,80432,1.0
+19740,80433,1.0
+19740,80436,1.0
+19740,80438,1.0
+19740,80439,1.0
+19740,80440,1.0
+19740,80444,1.0
+19740,80448,1.0
+19740,80449,0.9955995599559956
+19740,80452,1.0
+19740,80453,1.0
+19740,80454,1.0
+19740,80456,1.0
+19740,80457,1.0
+19740,80465,1.0
+19740,80470,1.0
+19740,80475,1.0
+19740,80476,1.0
+19740,80516,0.0032586155821072377
+19740,80601,1.0
+19740,80602,1.0
+19740,80603,0.4048275286060302
+19740,80640,1.0
+19740,80642,0.20956138315154327
+19740,80643,0.1248754566589173
+19740,80654,0.01271725307333616
+19740,80701,0.003303827452936043
+19740,80808,0.03353802550779405
+19740,80816,0.08764478764478764
+19740,80820,1.0
+19740,80827,0.6903460837887068
+19740,80828,0.05537264292128105
+19740,80830,1.0
+19740,80831,0.004728777338243987
+19740,80832,0.2777777777777778
+19740,80833,0.033156498673740056
+19740,80835,1.0
+19780,50001,1.0
+19780,50002,0.2305319969159599
+19780,50003,1.0
+19780,50007,1.0
+19780,50009,1.0
+19780,50021,1.0
+19780,50023,1.0
+19780,50026,0.8544520547945206
+19780,50028,1.0
+19780,50029,0.9869753979739508
+19780,50032,1.0
+19780,50033,1.0
+19780,50035,1.0
+19780,50038,1.0
+19780,50039,1.0
+19780,50046,0.16272965879265092
+19780,50047,1.0
+19780,50048,0.7735191637630662
+19780,50054,1.0
+19780,50055,0.1511500547645126
+19780,50058,0.1084587441619097
+19780,50061,0.9999999999999999
+19780,50063,1.0
+19780,50066,1.0
+19780,50069,1.0
+19780,50070,0.9200805910006717
+19780,50072,1.0
+19780,50073,1.0
+19780,50106,0.0933589990375361
+19780,50109,1.0
+19780,50111,1.0000000000000002
+19780,50112,0.07090846047156726
+19780,50115,1.0
+19780,50118,1.0
+19780,50124,0.016266666666666662
+19780,50125,1.0
+19780,50127,1.0
+19780,50128,0.8888888888888888
+19780,50131,1.0
+19780,50135,1.0
+19780,50139,0.6987577639751553
+19780,50141,0.17750439367311072
+19780,50146,1.0
+19780,50149,0.3381742738589212
+19780,50151,0.06767955801104973
+19780,50153,0.9427792915531336
+19780,50155,0.9529411764705882
+19780,50156,0.11944696282864914
+19780,50160,1.0
+19780,50161,0.2564728871519297
+19780,50164,0.8128834355828221
+19780,50166,1.0
+19780,50167,1.0
+19780,50168,1.0
+19780,50169,0.9999999999999999
+19780,50170,0.898360655737705
+19780,50208,1.0
+19780,50210,0.8344175044352453
+19780,50211,0.9999999999999999
+19780,50216,1.0
+19780,50218,1.0
+19780,50220,0.9461197339246121
+19780,50222,1.0
+19780,50225,0.0653061224489796
+19780,50226,0.9917442845046572
+19780,50228,0.9937939594538684
+19780,50229,1.0
+19780,50232,1.0
+19780,50233,1.0000000000000002
+19780,50234,0.08972267536704731
+19780,50235,0.024844720496894408
+19780,50237,0.9360258481421648
+19780,50240,1.0
+19780,50243,0.4959016393442623
+19780,50244,0.08163265306122447
+19780,50250,0.5442060085836911
+19780,50251,1.0
+19780,50257,0.936491935483871
+19780,50261,1.0
+19780,50263,1.0
+19780,50265,1.0
+19780,50266,1.0
+19780,50273,1.0
+19780,50276,0.6130313865713151
+19780,50277,1.0
+19780,50309,1.0
+19780,50310,1.0
+19780,50311,1.0
+19780,50312,1.0
+19780,50313,1.0
+19780,50314,1.0
+19780,50315,1.0
+19780,50316,1.0
+19780,50317,1.0
+19780,50320,1.0
+19780,50321,1.0
+19780,50322,1.0
+19780,50323,1.0
+19780,50324,1.0
+19780,50325,1.0
+19780,50327,1.0
+19820,48001,1.0
+19820,48002,1.0
+19820,48003,1.0
+19820,48005,1.0
+19820,48006,1.0
+19820,48009,1.0
+19820,48014,0.9999999999999999
+19820,48015,1.0
+19820,48017,1.0
+19820,48021,1.0
+19820,48022,1.0
+19820,48023,1.0
+19820,48025,1.0
+19820,48026,1.0
+19820,48027,1.0
+19820,48028,1.0
+19820,48030,1.0
+19820,48032,0.8143841515934539
+19820,48033,1.0
+19820,48034,1.0
+19820,48035,1.0
+19820,48036,1.0
+19820,48038,1.0
+19820,48039,1.0
+19820,48040,1.0
+19820,48041,1.0
+19820,48042,1.0
+19820,48043,1.0
+19820,48044,1.0
+19820,48045,1.0
+19820,48047,1.0
+19820,48048,1.0
+19820,48049,1.0
+19820,48050,1.0
+19820,48051,1.0
+19820,48054,1.0
+19820,48059,1.0
+19820,48060,1.0
+19820,48062,1.0
+19820,48063,1.0
+19820,48064,1.0
+19820,48065,1.0
+19820,48066,1.0
+19820,48067,1.0
+19820,48069,1.0
+19820,48070,1.0
+19820,48071,1.0
+19820,48072,1.0
+19820,48073,1.0
+19820,48074,1.0
+19820,48075,1.0
+19820,48076,1.0
+19820,48079,1.0
+19820,48080,1.0
+19820,48081,1.0
+19820,48082,1.0
+19820,48083,1.0
+19820,48084,1.0
+19820,48085,1.0
+19820,48088,1.0
+19820,48089,1.0
+19820,48091,1.0
+19820,48092,1.0
+19820,48093,1.0
+19820,48094,1.0
+19820,48095,1.0
+19820,48096,1.0
+19820,48097,0.8892525913802509
+19820,48098,1.0
+19820,48101,1.0
+19820,48111,0.9934299151560986
+19820,48114,1.0
+19820,48116,1.0
+19820,48120,1.0
+19820,48122,1.0
+19820,48124,1.0
+19820,48125,1.0
+19820,48126,1.0
+19820,48127,1.0
+19820,48128,1.0
+19820,48134,0.9661341554559044
+19820,48135,1.0
+19820,48137,0.7124687239366139
+19820,48138,1.0
+19820,48139,1.0
+19820,48141,1.0
+19820,48143,1.0
+19820,48146,1.0
+19820,48150,1.0
+19820,48152,1.0
+19820,48154,1.0
+19820,48164,0.9923705722070844
+19820,48165,1.0
+19820,48167,0.9378192625615306
+19820,48168,0.9357697075432716
+19820,48169,0.9508960745687792
+19820,48170,0.9515301654029976
+19820,48173,1.0
+19820,48174,1.0
+19820,48178,0.9268417462482946
+19820,48180,1.0
+19820,48183,1.0
+19820,48184,1.0
+19820,48185,1.0
+19820,48186,1.0
+19820,48187,1.0
+19820,48188,1.0
+19820,48189,0.4581866197183099
+19820,48192,1.0
+19820,48193,1.0
+19820,48195,1.0
+19820,48201,1.0
+19820,48202,1.0
+19820,48203,1.0
+19820,48204,1.0
+19820,48205,1.0
+19820,48206,1.0
+19820,48207,1.0
+19820,48208,1.0
+19820,48209,1.0
+19820,48210,1.0
+19820,48211,1.0
+19820,48212,1.0
+19820,48213,1.0
+19820,48214,1.0
+19820,48215,1.0
+19820,48216,1.0
+19820,48217,1.0
+19820,48218,1.0
+19820,48219,1.0
+19820,48220,1.0
+19820,48221,1.0
+19820,48223,1.0
+19820,48224,1.0
+19820,48225,1.0
+19820,48226,1.0
+19820,48227,1.0
+19820,48228,1.0
+19820,48229,1.0
+19820,48230,1.0
+19820,48234,1.0
+19820,48235,1.0
+19820,48236,1.0
+19820,48237,1.0
+19820,48238,1.0
+19820,48239,1.0
+19820,48240,1.0
+19820,48301,1.0
+19820,48302,1.0
+19820,48304,1.0
+19820,48306,1.0
+19820,48307,1.0
+19820,48309,1.0
+19820,48310,1.0
+19820,48312,1.0
+19820,48313,1.0
+19820,48314,1.0
+19820,48315,1.0
+19820,48316,1.0
+19820,48317,1.0
+19820,48320,1.0
+19820,48322,1.0
+19820,48323,1.0
+19820,48324,1.0
+19820,48326,1.0
+19820,48327,1.0
+19820,48328,1.0
+19820,48329,1.0
+19820,48331,1.0
+19820,48334,1.0
+19820,48335,1.0
+19820,48336,1.0
+19820,48340,1.0
+19820,48341,1.0
+19820,48342,1.0
+19820,48346,1.0
+19820,48348,1.0
+19820,48350,1.0
+19820,48353,1.0
+19820,48356,1.0
+19820,48357,1.0
+19820,48359,1.0
+19820,48360,1.0
+19820,48362,1.0
+19820,48363,1.0
+19820,48367,1.0
+19820,48370,1.0
+19820,48371,0.9999999999999999
+19820,48374,1.0
+19820,48375,1.0
+19820,48377,1.0
+19820,48380,1.0
+19820,48381,1.0
+19820,48382,1.0
+19820,48383,1.0
+19820,48386,1.0
+19820,48390,1.0
+19820,48393,1.0
+19820,48412,1.0
+19820,48416,0.3780487804878049
+19820,48418,0.09531539888682744
+19820,48421,0.9766812095682262
+19820,48423,0.0011617952794423384
+19820,48428,0.9999999999999999
+19820,48430,0.4041864010016876
+19820,48435,0.42870859337494
+19820,48438,0.15940152496043736
+19820,48439,0.007315734926537828
+19820,48440,1.0
+19820,48442,0.9423290918767234
+19820,48444,1.0
+19820,48446,1.0
+19820,48451,0.054107130764542564
+19820,48453,0.04819277108433735
+19820,48455,1.0
+19820,48461,1.0
+19820,48462,0.9904266546057591
+19820,48464,0.7817122366651725
+19820,48727,0.6769109535066982
+19820,48744,0.08450704225352113
+19820,48760,0.4529977794226499
+19820,48816,1.0
+19820,48836,1.0
+19820,48843,1.0
+19820,48855,1.0
+19820,48872,0.029464285714285717
+19820,48892,0.1875855773619352
+19820,49285,0.039685314685314686
+20020,36027,0.004181784638091138
+20020,36301,1.0
+20020,36303,0.9674355495251018
+20020,36305,1.0000000000000002
+20020,36310,1.0
+20020,36312,1.0
+20020,36313,1.0
+20020,36314,1.0
+20020,36316,0.540650406504065
+20020,36317,0.8627118644067797
+20020,36318,0.7546296296296297
+20020,36319,1.0
+20020,36320,1.0
+20020,36321,1.0
+20020,36322,0.002755731922398589
+20020,36340,1.0
+20020,36343,1.0
+20020,36344,1.0
+20020,36345,0.9520582971107134
+20020,36350,0.07415902140672782
+20020,36352,0.6180143295803481
+20020,36353,0.7433943089430894
+20020,36370,1.0
+20020,36373,1.0
+20020,36375,1.0
+20020,36376,1.0
+20020,36442,0.004781997187060478
+20020,36453,0.3821656050955414
+20020,36477,0.9322684997978165
+20100,19901,1.0
+20100,19902,1.0
+20100,19904,1.0
+20100,19934,1.0
+20100,19936,1.0
+20100,19938,0.9247337561325836
+20100,19943,1.0
+20100,19946,1.0
+20100,19950,0.2094662638469285
+20100,19952,0.9907045009784736
+20100,19953,1.0
+20100,19954,1.0
+20100,19955,1.0
+20100,19962,1.0
+20100,19963,0.4086743725918984
+20100,19964,1.0
+20100,19977,0.8105638705186217
+20100,19979,1.0
+20220,52001,1.0
+20220,52002,1.0
+20220,52003,1.0
+20220,52031,0.091015625
+20220,52032,0.5013736263736264
+20220,52033,0.7020612117426608
+20220,52039,1.0
+20220,52040,0.8405718422005067
+20220,52045,1.0
+20220,52046,1.0
+20220,52052,0.04846938775510204
+20220,52053,0.8194325021496129
+20220,52054,0.10425531914893617
+20220,52065,0.8752212389380531
+20220,52068,1.0
+20220,52073,0.9787835926449788
+20220,52078,0.7450765864332604
+20220,52079,0.41687979539641945
+20220,52237,0.009855453350854141
+20260,54820,0.6932870370370371
+20260,54830,0.06686046511627906
+20260,54836,1.0
+20260,54838,1.0
+20260,54842,1.0
+20260,54849,1.0
+20260,54854,1.0
+20260,54859,0.14451476793248946
+20260,54864,1.0
+20260,54873,0.7277599142550911
+20260,54874,1.0
+20260,54880,1.0
+20260,55601,1.0
+20260,55602,1.0
+20260,55603,1.0
+20260,55607,1.0
+20260,55609,1.0
+20260,55614,1.0
+20260,55616,1.0
+20260,55702,1.0
+20260,55703,1.0
+20260,55705,1.0
+20260,55706,1.0
+20260,55707,1.0
+20260,55708,1.0
+20260,55710,1.0
+20260,55711,1.0
+20260,55713,1.0
+20260,55717,1.0
+20260,55718,1.0
+20260,55719,1.0
+20260,55720,1.0
+20260,55723,0.8971646212441812
+20260,55724,1.0
+20260,55725,1.0
+20260,55726,1.0
+20260,55731,1.0
+20260,55732,1.0
+20260,55733,1.0
+20260,55734,1.0
+20260,55736,0.953548387096774
+20260,55738,1.0
+20260,55741,1.0
+20260,55746,0.9965172974228
+20260,55749,0.6971046770601337
+20260,55750,1.0
+20260,55751,1.0
+20260,55756,0.04872389791183295
+20260,55757,1.0
+20260,55758,1.0
+20260,55763,1.0
+20260,55765,1.0
+20260,55766,1.0
+20260,55767,0.9333627537511032
+20260,55768,1.0
+20260,55771,0.955952380952381
+20260,55779,1.0
+20260,55780,1.0
+20260,55781,0.7997275204359673
+20260,55782,1.0
+20260,55783,0.027903159622486663
+20260,55787,0.17714285714285713
+20260,55790,1.0
+20260,55792,1.0
+20260,55797,1.0
+20260,55798,0.9948364888123925
+20260,55802,1.0
+20260,55803,1.0
+20260,55804,1.0
+20260,55805,1.0
+20260,55806,1.0
+20260,55807,1.0
+20260,55808,1.0
+20260,55810,1.0
+20260,55811,1.0
+20260,55812,1.0
+20260,55814,1.0
+20260,56669,0.37066666666666653
+20500,27207,1.0
+20500,27208,0.5340095465393795
+20500,27231,1.0
+20500,27243,1.0
+20500,27252,1.0
+20500,27278,1.0000000000000002
+20500,27291,0.4025270758122744
+20500,27298,0.0035797213622291023
+20500,27302,0.27816901408450706
+20500,27305,0.022551928783382788
+20500,27312,0.9971047743909099
+20500,27330,0.020396869317732626
+20500,27343,0.7132867132867133
+20500,27344,0.9840195316834979
+20500,27349,0.05824714207947741
+20500,27355,0.20601503759398496
+20500,27502,0.002756965391975609
+20500,27503,1.0
+20500,27507,0.8750648004147227
+20500,27509,1.0
+20500,27510,1.0
+20500,27514,1.0
+20500,27516,1.0
+20500,27517,1.0
+20500,27519,0.03660217468987697
+20500,27522,0.9699229833806242
+20500,27523,0.22675879396984924
+20500,27525,0.32448642974958763
+20500,27540,0.00023839525933998568
+20500,27541,0.9957559681697613
+20500,27544,0.11260957518543492
+20500,27559,1.0
+20500,27560,0.1186403217964019
+20500,27562,0.5619195046439629
+20500,27565,0.9728766580875073
+20500,27572,1.0
+20500,27573,1.0
+20500,27574,1.0
+20500,27581,1.0
+20500,27582,1.0
+20500,27583,0.9999999999999999
+20500,27587,0.036173179094916914
+20500,27596,0.07132338818106153
+20500,27613,0.02108222066057625
+20500,27617,0.0075004934535166795
+20500,27701,1.0
+20500,27703,1.0
+20500,27704,1.0
+20500,27705,1.0
+20500,27707,1.0
+20500,27709,1.0
+20500,27712,1.0
+20500,27713,1.0
+20700,18058,0.8741546914623838
+20700,18071,0.008035545471733787
+20700,18210,0.22547832404940665
+20700,18301,1.0
+20700,18302,0.9920516069577238
+20700,18321,1.0
+20700,18322,1.0
+20700,18323,1.0
+20700,18324,0.020485896644018942
+20700,18325,0.7971602434077079
+20700,18326,1.0
+20700,18327,1.0
+20700,18330,1.0
+20700,18331,1.0
+20700,18332,1.0
+20700,18333,1.0
+20700,18334,1.0
+20700,18335,1.0
+20700,18342,1.0
+20700,18344,1.0
+20700,18346,1.0
+20700,18347,1.0
+20700,18349,1.0
+20700,18350,1.0
+20700,18352,1.0
+20700,18353,1.0
+20700,18354,1.0
+20700,18355,1.0
+20700,18356,1.0
+20700,18357,1.0
+20700,18360,1.0
+20700,18370,1.0
+20700,18372,1.0
+20700,18424,0.04632104044183146
+20700,18466,1.0
+20700,18610,0.9972044728434504
+20740,54433,0.10840108401084013
+20740,54701,0.9966239723732702
+20740,54703,0.9949138909916728
+20740,54720,1.0
+20740,54722,1.0
+20740,54724,0.9990242542514636
+20740,54726,1.0
+20740,54727,0.9999999999999999
+20740,54729,0.9999999999999999
+20740,54730,0.1211503161329798
+20740,54732,1.0
+20740,54738,0.5731978405843124
+20740,54739,0.22686868686868691
+20740,54741,0.6746987951807228
+20740,54742,1.0
+20740,54745,0.8681999115435648
+20740,54748,1.0
+20740,54755,0.0985070647827246
+20740,54757,0.5645745322872662
+20740,54758,0.14375270211846086
+20740,54766,0.06795547744581136
+20740,54768,0.8492487479131887
+20740,54770,0.14231318419800096
+20940,92004,0.0012883277505797474
+20940,92222,1.0
+20940,92225,0.0008638420403126285
+20940,92227,1.0
+20940,92231,1.0
+20940,92233,1.0
+20940,92243,1.0
+20940,92249,1.0
+20940,92250,1.0
+20940,92251,1.0
+20940,92257,1.0
+20940,92259,1.0
+20940,92266,1.0
+20940,92273,1.0
+20940,92274,0.19948487450128785
+20940,92275,1.0
+20940,92281,1.0
+20940,92283,1.0
+21060,40051,0.18170452177536986
+21060,40052,0.056310679611650476
+21060,40104,1.0
+21060,40108,1.0
+21060,40117,1.0
+21060,40121,1.0
+21060,40142,0.9691840277777778
+21060,40150,0.02120399707531075
+21060,40155,1.0
+21060,40157,0.9531963470319634
+21060,40160,1.0
+21060,40161,1.0
+21060,40162,1.0
+21060,40175,0.9603672532517216
+21060,40176,0.4532760472610097
+21060,40177,0.6486671223513328
+21060,42701,1.0
+21060,42712,0.3051212938005391
+21060,42716,0.8906447534766119
+21060,42718,0.0028381046396841066
+21060,42724,1.0
+21060,42732,1.0
+21060,42740,1.0
+21060,42748,1.0
+21060,42757,0.4293880295897781
+21060,42764,0.3971377459749553
+21060,42776,0.9999999999999999
+21060,42784,0.7322160148975791
+21060,42788,1.0
+21140,46507,1.0
+21140,46514,1.0
+21140,46516,1.0
+21140,46517,1.0
+21140,46526,1.0
+21140,46528,1.0
+21140,46530,0.06029920951198797
+21140,46540,0.924628268672022
+21140,46542,0.047165316817532166
+21140,46543,0.6825396825396826
+21140,46550,0.7475428478596378
+21140,46553,1.0
+21140,46561,0.12815708611256835
+21140,46567,0.12822966507177033
+21140,46573,0.8591865357643759
+21140,46767,0.018682858477347037
+21300,14812,0.2961472110408281
+21300,14814,0.8881408596582082
+21300,14816,1.0
+21300,14824,0.33185840707964603
+21300,14825,1.0
+21300,14830,0.010025188916876574
+21300,14838,1.0
+21300,14845,1.0
+21300,14859,0.304178814382896
+21300,14861,1.0
+21300,14864,0.891354246365723
+21300,14871,0.9065249266862171
+21300,14872,1.0
+21300,14889,0.961006289308176
+21300,14892,0.0923189644645256
+21300,14894,1.0
+21300,14901,1.0
+21300,14903,1.0
+21300,14904,1.0
+21300,14905,1.0
+21340,79821,1.0
+21340,79835,1.0
+21340,79836,1.0
+21340,79837,0.8963730569948186
+21340,79838,1.0
+21340,79839,1.0
+21340,79847,0.6227544910179641
+21340,79849,1.0
+21340,79851,1.0
+21340,79853,1.0
+21340,79855,0.002568493150684932
+21340,79901,1.0
+21340,79902,1.0
+21340,79903,1.0
+21340,79904,1.0
+21340,79905,1.0
+21340,79906,1.0
+21340,79907,1.0
+21340,79908,1.0
+21340,79911,1.0
+21340,79912,1.0
+21340,79915,1.0
+21340,79916,1.0
+21340,79920,1.0
+21340,79922,1.0
+21340,79924,1.0
+21340,79925,1.0
+21340,79927,1.0
+21340,79928,1.0
+21340,79930,1.0
+21340,79932,1.0
+21340,79934,1.0
+21340,79935,1.0
+21340,79936,1.0
+21340,79938,1.0
+21340,88063,0.002109539807797484
+21420,73056,0.17006802721088435
+21420,73073,0.038817005545286505
+21420,73701,1.0
+21420,73703,1.0
+21420,73705,1.0
+21420,73718,0.06387225548902195
+21420,73720,1.0
+21420,73727,1.0
+21420,73730,1.0
+21420,73733,1.0
+21420,73735,1.0
+21420,73736,1.0
+21420,73738,1.0
+21420,73739,0.05691056910569105
+21420,73743,1.0
+21420,73753,1.0
+21420,73754,0.9582560296846012
+21420,73757,0.1348314606741573
+21420,73761,0.043037974683544304
+21420,73773,1.0
+21420,74630,0.034188034188034185
+21420,74640,1.0
+21500,16401,0.9838930253760828
+21500,16403,0.05477308294209703
+21500,16407,0.8664840505434303
+21500,16410,1.0
+21500,16411,1.0
+21500,16412,0.9364503816793892
+21500,16415,1.0
+21500,16417,1.0
+21500,16421,1.0
+21500,16423,1.0
+21500,16426,1.0
+21500,16427,1.0
+21500,16428,1.0
+21500,16435,0.022296015180265652
+21500,16438,0.8077446492638871
+21500,16441,0.9833267561168114
+21500,16442,1.0
+21500,16443,1.0
+21500,16444,1.0
+21500,16501,1.0
+21500,16502,1.0
+21500,16503,1.0
+21500,16504,1.0
+21500,16505,1.0
+21500,16506,1.0
+21500,16507,1.0
+21500,16508,1.0
+21500,16509,1.0
+21500,16510,1.0
+21500,16511,1.0
+21500,16546,1.0
+21500,16563,1.0
+21660,97324,0.01953818827708704
+21660,97390,0.08108108108108109
+21660,97401,1.0
+21660,97402,1.0
+21660,97403,1.0
+21660,97404,1.0
+21660,97405,1.0
+21660,97408,1.0
+21660,97412,1.0
+21660,97413,0.9934426229508196
+21660,97419,1.0
+21660,97424,0.9845970217119472
+21660,97426,1.0
+21660,97430,1.0
+21660,97431,1.0
+21660,97434,1.0
+21660,97437,1.0
+21660,97438,1.0
+21660,97439,1.0
+21660,97446,0.003948462177888612
+21660,97448,0.9788467820973538
+21660,97451,1.0
+21660,97452,1.0
+21660,97453,1.0
+21660,97454,1.0
+21660,97455,1.0
+21660,97456,0.06834170854271357
+21660,97461,1.0
+21660,97463,1.0
+21660,97477,1.0
+21660,97478,1.0
+21660,97480,1.0
+21660,97487,1.0
+21660,97488,1.0
+21660,97489,1.0
+21660,97490,1.0
+21660,97492,1.0
+21660,97493,0.934984520123839
+21660,97498,0.0545755237045204
+21780,42301,0.002851083883129124
+21780,42406,0.9819971870604782
+21780,42420,1.0
+21780,42451,1.0
+21780,42452,0.988323213451658
+21780,42458,1.0
+21780,42462,0.30022744503411675
+21780,47523,0.22707423580786024
+21780,47537,0.2663438256658596
+21780,47541,0.025326797385620915
+21780,47601,0.9914363845710996
+21780,47610,1.0
+21780,47612,0.8896631823461092
+21780,47613,0.8607689436356849
+21780,47616,0.9285714285714286
+21780,47619,0.9262971698113208
+21780,47620,1.0
+21780,47630,1.0
+21780,47631,1.0
+21780,47633,0.9280094413847364
+21780,47637,0.9011280690112808
+21780,47638,1.0
+21780,47639,0.06955025804866061
+21780,47660,0.004053506282934738
+21780,47708,1.0
+21780,47710,1.0
+21780,47711,1.0
+21780,47712,1.0
+21780,47713,1.0
+21780,47714,1.0
+21780,47715,1.0
+21780,47720,1.0
+21780,47725,0.9954576998296638
+21820,99701,0.9971607340028392
+21820,99702,1.0
+21820,99703,1.0
+21820,99705,1.0
+21820,99709,1.0
+21820,99712,1.0
+21820,99714,1.0
+21820,99760,0.0356687898089172
+21820,99775,1.0
+22020,56514,0.9166666666666666
+22020,56519,0.3033333333333333
+22020,56525,1.0
+22020,56529,1.0
+22020,56536,1.0
+22020,56546,1.0
+22020,56547,1.0
+22020,56549,1.0
+22020,56552,0.8927738927738927
+22020,56554,0.03765227021040975
+22020,56560,0.9994358043467596
+22020,56580,1.0
+22020,56585,0.9084842707340324
+22020,58002,1.0
+22020,58004,1.0
+22020,58005,1.0
+22020,58006,1.0
+22020,58007,1.0
+22020,58011,1.0
+22020,58012,1.0
+22020,58021,1.0
+22020,58027,0.1588785046728972
+22020,58029,1.0
+22020,58031,0.4565217391304348
+22020,58035,0.12213740458015268
+22020,58036,1.0
+22020,58038,0.7259036144578314
+22020,58042,1.0
+22020,58046,0.018867924528301886
+22020,58047,0.996629213483146
+22020,58048,0.9186602870813396
+22020,58051,0.8079561042524005
+22020,58052,0.7831325301204819
+22020,58059,1.0
+22020,58064,0.9222222222222224
+22020,58071,0.8264058679706602
+22020,58078,1.0
+22020,58079,1.0
+22020,58102,1.0
+22020,58103,1.0
+22020,58104,1.0
+22020,58105,1.0
+22140,81137,0.029856459330143536
+22140,87013,0.01980769230769231
+22140,87037,1.0
+22140,87313,0.055634051571882726
+22140,87325,0.4350692155570205
+22140,87328,0.15592203898050974
+22140,87364,1.0
+22140,87401,1.0
+22140,87402,1.0
+22140,87410,1.0
+22140,87412,0.9389233954451346
+22140,87413,1.0
+22140,87415,1.0
+22140,87416,1.0
+22140,87417,1.0
+22140,87418,1.0
+22140,87419,0.961206896551724
+22140,87420,1.0
+22140,87421,1.0
+22140,87455,1.0
+22140,87461,1.0
+22140,87499,1.0
+22180,27330,0.0002898779877197144
+22180,27332,0.39783701547823785
+22180,27501,0.6936429343805134
+22180,27504,0.03700398187560072
+22180,27505,0.7823948439620081
+22180,27521,1.0
+22180,27526,0.2038360672597316
+22180,27540,0.03552089364165787
+22180,27546,1.0
+22180,27592,0.0022303857255313564
+22180,28301,1.0
+22180,28303,1.0
+22180,28304,0.9999999999999999
+22180,28305,1.0
+22180,28306,0.9950608572940555
+22180,28307,1.0
+22180,28308,1.0
+22180,28310,1.0
+22180,28311,1.0
+22180,28312,0.9873772791023844
+22180,28314,1.0
+22180,28315,0.13303655508946152
+22180,28318,0.16382105035660255
+22180,28323,1.0
+22180,28326,0.7517284370395557
+22180,28334,0.6648466356190782
+22180,28339,1.0
+22180,28342,1.0
+22180,28344,0.2743777452415813
+22180,28348,1.0
+22180,28356,1.0
+22180,28357,0.37984
+22180,28364,0.005672226348841921
+22180,28371,0.40052155238533516
+22180,28376,1.0
+22180,28377,0.3069635243960209
+22180,28382,0.11706349206349205
+22180,28384,0.03810862197238985
+22180,28386,0.19085298306694096
+22180,28390,1.0
+22180,28391,1.0
+22180,28395,1.0
+22220,72632,0.007192627556754327
+22220,72701,1.0
+22220,72703,1.0
+22220,72704,1.0
+22220,72712,1.0
+22220,72714,1.0
+22220,72715,1.0
+22220,72717,1.0
+22220,72718,1.0
+22220,72719,1.0
+22220,72721,1.0
+22220,72722,1.0
+22220,72727,1.0
+22220,72729,1.0
+22220,72730,1.0
+22220,72732,1.0
+22220,72734,1.0
+22220,72736,1.0
+22220,72738,0.9999999999999999
+22220,72739,1.0
+22220,72740,0.9762129309441476
+22220,72742,0.8880733944954129
+22220,72744,1.0
+22220,72745,1.0
+22220,72747,1.0
+22220,72749,1.0
+22220,72751,1.0
+22220,72752,0.7542662116040956
+22220,72753,1.0
+22220,72756,0.9999999999999999
+22220,72758,1.0
+22220,72760,1.0
+22220,72761,0.9999999999999999
+22220,72762,1.0
+22220,72764,1.0
+22220,72768,1.0
+22220,72769,1.0
+22220,72773,1.0
+22220,72774,1.0
+22220,72776,1.0
+22220,72959,0.9389806173725772
+22380,85931,1.0
+22380,86001,1.0
+22380,86003,1.0
+22380,86004,1.0
+22380,86011,1.0
+22380,86015,1.0
+22380,86016,1.0
+22380,86017,1.0
+22380,86018,1.0
+22380,86020,1.0
+22380,86022,0.6230769230769231
+22380,86023,1.0
+22380,86024,1.0
+22380,86030,0.002183406113537118
+22380,86035,1.0
+22380,86036,1.0
+22380,86038,1.0
+22380,86040,1.0
+22380,86044,0.7751117384144907
+22380,86045,1.0
+22380,86046,1.0
+22380,86047,0.058383433533734125
+22380,86052,1.0
+22380,86053,1.0
+22380,86054,0.056330749354005165
+22380,86320,0.4694960212201592
+22380,86336,0.2782685512367491
+22380,86337,0.044198895027624314
+22380,86435,1.0
+22420,48411,1.0
+22420,48415,0.018266286558969485
+22420,48418,0.3044990723562152
+22420,48420,0.9730500951173112
+22420,48421,0.02331879043177373
+22420,48423,0.9988382047205576
+22420,48429,0.02515652951699464
+22420,48430,0.5958135989983123
+22420,48433,0.9975091519794692
+22420,48436,0.9681190223166845
+22420,48437,1.0
+22420,48438,0.8405984750395626
+22420,48439,0.9926842650734622
+22420,48442,0.0576709081232764
+22420,48449,0.3965681601525262
+22420,48451,0.9458928692354576
+22420,48457,0.8282361308677099
+22420,48458,1.0
+22420,48462,0.009573345394240916
+22420,48463,1.0
+22420,48464,0.08202599731062303
+22420,48473,1.0
+22420,48502,1.0
+22420,48503,1.0
+22420,48504,1.0
+22420,48505,1.0
+22420,48506,1.0
+22420,48507,1.0
+22420,48509,1.0
+22420,48519,1.0
+22420,48529,1.0
+22420,48532,1.0
+22420,48746,0.09685741088180112
+22500,29069,0.9332669322709164
+22500,29079,1.0
+22500,29101,0.18888521336420772
+22500,29114,0.7420091324200914
+22500,29161,1.0
+22500,29501,0.9999999999999999
+22500,29505,1.0
+22500,29506,0.9999999999999999
+22500,29530,1.0
+22500,29532,1.0
+22500,29540,1.0
+22500,29541,1.0
+22500,29550,0.9267438979060836
+22500,29554,0.01264466352336048
+22500,29555,0.9852484472049691
+22500,29560,0.8206967213114754
+22500,29583,1.0
+22500,29591,1.0
+22500,29593,0.6862845445240532
+22520,35610,0.7921847246891652
+22520,35614,0.0009388412017167383
+22520,35616,1.0
+22520,35630,1.0
+22520,35633,1.0
+22520,35634,1.0
+22520,35645,1.0
+22520,35646,1.0
+22520,35648,1.0
+22520,35652,0.9871794871794872
+22520,35653,0.025112107623318385
+22520,35654,0.13333333333333333
+22520,35660,1.0
+22520,35661,1.0
+22520,35672,0.01970519782777347
+22520,35674,1.0
+22520,35677,1.0
+22520,38852,0.005397396549899461
+22540,53006,0.2254075323215289
+22540,53010,0.96016143731285
+22540,53011,0.029646017699115044
+22540,53014,0.001632755589047978
+22540,53019,1.0
+22540,53040,0.04811507936507937
+22540,53048,0.00624256837098692
+22540,53049,0.9673602611179112
+22540,53057,1.0
+22540,53061,0.07909930715935334
+22540,53065,0.9923629829290208
+22540,53079,0.9823071479122436
+22540,53919,1.0
+22540,53931,1.0
+22540,53946,0.01801185590515276
+22540,53963,0.3740474478792236
+22540,54932,1.0
+22540,54935,1.0
+22540,54937,1.0
+22540,54964,0.2162426614481409
+22540,54971,0.8972014408423385
+22540,54974,1.0
+22540,54979,0.9660326086956522
+22660,80503,0.0006438320885912954
+22660,80504,0.0037119208123560033
+22660,80511,1.0
+22660,80512,1.0
+22660,80513,0.927933177933178
+22660,80515,1.0
+22660,80517,1.0
+22660,80521,1.0
+22660,80524,0.9814007831249212
+22660,80525,1.0
+22660,80526,1.0
+22660,80528,1.0
+22660,80532,1.0
+22660,80534,0.0711441465357048
+22660,80535,1.0
+22660,80536,1.0
+22660,80537,0.9965740192164037
+22660,80538,1.0
+22660,80540,0.3431965926922215
+22660,80545,1.0
+22660,80547,1.0
+22660,80549,0.9733857903263132
+22660,80550,0.13165659008464328
+22660,80612,0.2581395348837209
+22660,82063,0.29
+22900,72821,0.82373046875
+22900,72855,0.005543237250554324
+22900,72901,1.0
+22900,72903,1.0
+22900,72904,1.0
+22900,72908,1.0
+22900,72916,1.0
+22900,72921,1.0
+22900,72923,1.0
+22900,72927,0.021261923916791173
+22900,72928,1.0
+22900,72930,1.0
+22900,72932,1.0
+22900,72933,0.98999799959992
+22900,72934,1.0
+22900,72935,1.0
+22900,72936,1.0
+22900,72937,1.0
+22900,72938,1.0
+22900,72940,1.0
+22900,72941,1.0
+22900,72944,0.5971223021582733
+22900,72945,1.0
+22900,72946,1.0
+22900,72947,1.0
+22900,72948,1.0
+22900,72949,0.9642330745799352
+22900,72951,0.3623481781376518
+22900,72952,1.0
+22900,72955,1.0
+22900,72956,1.0
+22900,72959,0.061019382627422826
+22900,74435,0.8882260596546311
+22900,74931,0.048901488306165836
+22900,74936,1.0
+22900,74945,1.0
+22900,74946,1.0
+22900,74948,0.9966374726305912
+22900,74954,1.0
+22900,74955,1.0
+22900,74962,0.987234878240377
+23060,46562,0.05680868838763575
+23060,46704,1.0
+23060,46706,0.01642512077294686
+23060,46723,0.8335933437337493
+23060,46725,0.9675476603119584
+23060,46733,0.007509186771049689
+23060,46741,1.0
+23060,46743,1.0
+23060,46745,1.0
+23060,46748,0.9779898714452668
+23060,46750,0.0012122993277249182
+23060,46764,0.8871075484301937
+23060,46765,1.0
+23060,46773,0.956581103222283
+23060,46774,1.0
+23060,46777,0.006550567183256111
+23060,46783,0.43996247654784243
+23060,46787,0.9571024916516824
+23060,46788,0.5941717791411043
+23060,46797,1.0
+23060,46798,0.8934376881396751
+23060,46802,1.0
+23060,46803,1.0
+23060,46804,1.0
+23060,46805,1.0
+23060,46806,1.0
+23060,46807,1.0
+23060,46808,1.0
+23060,46809,1.0
+23060,46814,1.0
+23060,46815,1.0
+23060,46816,1.0
+23060,46818,1.0
+23060,46819,1.0
+23060,46825,1.0
+23060,46835,1.0
+23060,46845,1.0
+23060,46962,0.00390625
+23420,93210,0.9966673502871206
+23420,93234,1.0
+23420,93242,0.9169550173010379
+23420,93602,1.0
+23420,93605,1.0
+23420,93606,1.0
+23420,93608,1.0
+23420,93609,1.0
+23420,93611,1.0
+23420,93612,1.0
+23420,93616,1.0
+23420,93618,0.009836529615738448
+23420,93619,0.9968582772311412
+23420,93620,0.061307475758523626
+23420,93621,1.0
+23420,93622,0.9449953032042584
+23420,93624,1.0
+23420,93625,1.0
+23420,93626,0.7593818984547461
+23420,93627,1.0
+23420,93628,1.0
+23420,93630,1.0
+23420,93631,0.8234740605984568
+23420,93634,1.0
+23420,93640,1.0
+23420,93641,1.0
+23420,93646,0.970161977834612
+23420,93648,1.0
+23420,93650,1.0
+23420,93651,1.0
+23420,93652,1.0
+23420,93654,0.9743753358409456
+23420,93656,0.9437668303500713
+23420,93657,1.0
+23420,93660,1.0
+23420,93662,1.0
+23420,93664,1.0
+23420,93667,1.0
+23420,93668,1.0
+23420,93675,1.0
+23420,93701,1.0
+23420,93702,1.0
+23420,93703,1.0
+23420,93704,1.0
+23420,93705,1.0
+23420,93706,1.0
+23420,93710,1.0
+23420,93711,1.0
+23420,93720,1.0
+23420,93721,1.0
+23420,93722,1.0
+23420,93723,1.0
+23420,93725,1.0
+23420,93726,1.0
+23420,93727,1.0
+23420,93728,1.0
+23420,93730,1.0
+23460,35901,0.9971563981042654
+23460,35903,0.997622733303848
+23460,35904,1.0
+23460,35905,0.8865834633385336
+23460,35906,1.0
+23460,35907,1.0
+23460,35952,0.599197618739485
+23460,35954,0.9938788659793816
+23460,35956,1.0
+23460,35961,0.07123119435062941
+23460,35972,0.8007023705004391
+23460,35990,1.0
+23460,36272,0.07857196205840615
+23540,32008,0.19890751553964967
+23540,32601,1.0
+23540,32603,1.0
+23540,32605,1.0
+23540,32606,1.0
+23540,32607,1.0
+23540,32608,1.0
+23540,32609,1.0
+23540,32612,1.0
+23540,32615,1.0
+23540,32616,1.0
+23540,32618,1.0
+23540,32619,1.0
+23540,32621,1.0
+23540,32622,0.23724884080370945
+23540,32625,1.0
+23540,32626,1.0
+23540,32631,1.0
+23540,32639,1.0
+23540,32640,0.4662226450999049
+23540,32641,1.0
+23540,32643,0.878474762253109
+23540,32653,1.0
+23540,32658,1.0
+23540,32666,0.1286342123056119
+23540,32667,0.5640484976278334
+23540,32668,0.8394332939787486
+23540,32669,0.9999999999999999
+23540,32683,1.0
+23540,32693,1.0
+23540,32694,1.0
+23540,32696,0.9128489768867534
+23540,34431,0.09021113243761997
+23540,34449,0.8942684229263083
+23540,34498,1.0
+23580,30501,1.0
+23580,30504,1.0
+23580,30506,0.7386660906712746
+23580,30507,1.0
+23580,30510,0.06163309612833193
+23580,30517,0.2446710691298169
+23580,30518,0.08378491959921258
+23580,30519,0.07482668542148098
+23580,30527,1.0
+23580,30531,0.01072790140969944
+23580,30533,0.014943074003795066
+23580,30542,1.0
+23580,30543,0.7278805437931803
+23580,30548,0.1759294265910523
+23580,30554,0.7014645577035735
+23580,30564,0.6419448801254761
+23580,30566,1.0
+23580,30567,0.01274740020127474
+23580,30575,0.3265454545454545
+23900,17019,0.004909429490435077
+23900,17222,0.06316866685273048
+23900,17301,0.7424130273871207
+23900,17304,1.0
+23900,17306,1.0
+23900,17307,0.9949143922698762
+23900,17316,0.7827244132591338
+23900,17320,1.0
+23900,17324,0.401516947143873
+23900,17325,1.0
+23900,17331,0.19738725841088045
+23900,17340,1.0
+23900,17343,1.0
+23900,17344,1.0
+23900,17350,1.0
+23900,17353,1.0
+23900,17372,0.9770787612777372
+24020,12028,0.3225255972696246
+24020,12057,0.7618528610354224
+24020,12094,0.041446208112874784
+24020,12154,0.17778566359119946
+24020,12185,0.12371134020618554
+24020,12801,1.0
+24020,12804,0.9999999999999999
+24020,12808,0.9934640522875816
+24020,12809,1.0
+24020,12810,1.0
+24020,12811,1.0
+24020,12814,1.0
+24020,12815,1.0
+24020,12816,1.0
+24020,12817,1.0
+24020,12819,1.0
+24020,12821,1.0
+24020,12823,1.0
+24020,12824,1.0
+24020,12827,1.0
+24020,12828,0.609441151566469
+24020,12832,1.0
+24020,12834,1.0
+24020,12835,0.01844026123703419
+24020,12836,0.9773519163763066
+24020,12837,1.0
+24020,12838,1.0
+24020,12839,1.0
+24020,12841,1.0
+24020,12843,1.0
+24020,12844,1.0
+24020,12845,1.0
+24020,12846,1.0
+24020,12849,1.0
+24020,12853,0.9672316384180792
+24020,12856,1.0
+24020,12857,0.0963855421686747
+24020,12860,1.0
+24020,12861,1.0
+24020,12862,1.0
+24020,12865,1.0
+24020,12870,0.02054340622929092
+24020,12873,1.0
+24020,12874,1.0
+24020,12878,1.0
+24020,12885,1.0
+24020,12886,1.0
+24020,12887,1.0
+24140,27524,0.024234073593775333
+24140,27530,1.0
+24140,27531,1.0
+24140,27534,1.0
+24140,27542,0.0755502025621373
+24140,27569,0.2742458239840439
+24140,27830,0.9396424815983176
+24140,27863,0.9908819769919046
+24140,27883,0.1699859747545582
+24140,28333,1.0
+24140,28365,0.6188170788614092
+24140,28551,0.2847512949691336
+24140,28578,0.6608517994656609
+24220,56517,1.0
+24220,56523,1.0
+24220,56535,0.9809244314013206
+24220,56540,0.8939857288481141
+24220,56542,0.9441498762813716
+24220,56556,1.0
+24220,56568,1.0
+24220,56592,0.992248062015504
+24220,56621,0.014227204138823024
+24220,56634,0.0036607687614399033
+24220,56644,0.011435832274459974
+24220,56646,1.0
+24220,56651,0.4814126394052045
+24220,56684,0.8120567375886525
+24220,56710,0.040816326530612235
+24220,56715,0.028571428571428567
+24220,56716,0.9970263381478336
+24220,56721,1.0
+24220,56722,1.0
+24220,56723,1.0
+24220,56736,0.9645625692137321
+24220,56742,0.02178649237472767
+24220,56744,0.17069243156199676
+24220,56750,0.022449783379283186
+24220,56762,0.15356856455493184
+24220,58201,1.0
+24220,58202,1.0
+24220,58203,1.0
+24220,58204,1.0
+24220,58205,1.0
+24220,58212,0.04008438818565401
+24220,58214,1.0
+24220,58228,1.0
+24220,58231,0.3224489795918367
+24220,58233,0.0706713780918728
+24220,58235,1.0
+24220,58240,0.09012539184952978
+24220,58244,1.0
+24220,58251,1.0
+24220,58256,1.0
+24220,58258,1.0
+24220,58261,0.062050359712230226
+24220,58266,0.8768472906403941
+24220,58267,0.9822368421052632
+24220,58275,0.5607094133697135
+24220,58278,1.0
+24260,68628,0.8583535108958837
+24260,68663,0.7700394218134035
+24260,68801,1.0
+24260,68803,1.0
+24260,68810,1.0
+24260,68816,1.0
+24260,68817,0.07253886010362694
+24260,68820,1.0
+24260,68824,0.9999999999999999
+24260,68826,1.0
+24260,68827,1.0
+24260,68831,1.0
+24260,68832,0.9665653495440728
+24260,68835,1.0
+24260,68838,1.0
+24260,68864,0.9055501460564751
+24260,68872,1.0
+24260,68873,1.0
+24260,68876,0.0453074433656958
+24260,68882,0.16913319238900634
+24260,68883,0.9610120282040648
+24260,68956,0.04197530864197531
+24300,81501,1.0
+24300,81503,1.0
+24300,81504,1.0
+24300,81505,1.0
+24300,81506,1.0
+24300,81507,1.0
+24300,81520,1.0
+24300,81521,1.0
+24300,81522,1.0
+24300,81523,1.0
+24300,81524,1.0
+24300,81525,1.0
+24300,81526,1.0
+24300,81527,1.0
+24300,81624,1.0
+24300,81630,0.8998978549540347
+24300,81643,1.0
+24300,81646,1.0
+24340,48809,1.0
+24340,48811,0.9338769721680552
+24340,48815,0.9999999999999999
+24340,48818,1.0
+24340,48829,0.981561155500922
+24340,48834,1.0
+24340,48837,0.010673148050301172
+24340,48838,1.0
+24340,48845,0.8155533399800599
+24340,48846,1.0
+24340,48849,0.8215847472450586
+24340,48850,0.8196244970943227
+24340,48851,1.0
+24340,48852,1.0
+24340,48860,1.0
+24340,48861,0.09264126149802893
+24340,48865,1.0
+24340,48870,1.0
+24340,48873,0.8328173374613003
+24340,48875,0.9559198900451601
+24340,48877,0.3311036789297659
+24340,48881,1.0
+24340,48884,1.0
+24340,48885,1.0
+24340,48886,0.975897920604915
+24340,48888,1.0
+24340,48890,0.400092936802974
+24340,48891,1.0
+24340,49301,1.0
+24340,49302,1.0
+24340,49306,1.0
+24340,49310,0.026856763925729443
+24340,49315,0.9811699723826262
+24340,49316,0.877104712563515
+24340,49318,0.32188841201716745
+24340,49319,1.0
+24340,49321,1.0
+24340,49322,1.0
+24340,49325,0.21634363541121004
+24340,49326,1.0
+24340,49327,0.005353319057815846
+24340,49329,0.8494387223700961
+24340,49330,0.9375
+24340,49331,1.0
+24340,49333,0.018407649003663658
+24340,49336,0.05261948529411765
+24340,49337,0.01886168100595632
+24340,49339,1.0
+24340,49341,1.0
+24340,49343,0.6808161778101656
+24340,49345,1.0
+24340,49347,1.0
+24340,49348,0.01695054718999424
+24340,49401,1.0
+24340,49403,0.9595632834613831
+24340,49404,0.9830692949570684
+24340,49415,0.08981481481481482
+24340,49417,1.0
+24340,49418,1.0
+24340,49423,0.6547124085643774
+24340,49424,1.0
+24340,49426,0.9992479845987244
+24340,49428,1.0
+24340,49434,0.75
+24340,49435,1.0
+24340,49448,0.8994134897360704
+24340,49451,0.033599467731204265
+24340,49456,0.9416070179215328
+24340,49460,1.0
+24340,49464,0.9864269859175432
+24340,49503,1.0
+24340,49504,1.0
+24340,49505,1.0
+24340,49506,1.0
+24340,49507,1.0
+24340,49508,1.0
+24340,49509,1.0
+24340,49512,1.0
+24340,49519,1.0
+24340,49525,1.0
+24340,49534,1.0
+24340,49544,1.0
+24340,49546,1.0
+24340,49548,1.0
+24420,97497,0.9934340118187788
+24420,97523,1.0
+24420,97526,0.9947668469522
+24420,97527,0.956574615133628
+24420,97531,1.0
+24420,97532,1.0
+24420,97534,1.0
+24420,97538,1.0
+24420,97543,1.0
+24420,97544,1.0
+24500,59401,1.0
+24500,59404,0.998138980905944
+24500,59405,1.0
+24500,59412,1.0
+24500,59414,1.0
+24500,59421,0.9311851447296559
+24500,59440,0.4
+24500,59443,0.9248366013071896
+24500,59463,1.0
+24500,59465,1.0
+24500,59468,0.148861646234676
+24500,59472,1.0
+24500,59477,1.0
+24500,59480,1.0
+24500,59483,1.0
+24500,59485,1.0
+24500,59487,0.970967741935484
+24540,80504,0.3994581448929089
+24540,80513,0.07206682206682206
+24540,80514,1.0
+24540,80516,0.5813172706625852
+24540,80520,1.0
+24540,80524,0.018599216875078945
+24540,80530,1.0
+24540,80534,0.9288558534642952
+24540,80537,0.003425980783596507
+24540,80542,1.0
+24540,80543,1.0
+24540,80546,1.0
+24540,80549,0.026614209673686648
+24540,80550,0.8683434099153567
+24540,80603,0.5951724713939698
+24540,80610,1.0
+24540,80611,1.0
+24540,80612,0.7418604651162791
+24540,80615,1.0
+24540,80620,1.0
+24540,80621,1.0
+24540,80622,1.0
+24540,80623,1.0
+24540,80624,1.0
+24540,80631,1.0
+24540,80634,1.0
+24540,80642,0.7904386168484567
+24540,80643,0.8751245433410827
+24540,80644,1.0
+24540,80645,1.0
+24540,80648,1.0
+24540,80649,0.411371237458194
+24540,80650,1.0
+24540,80651,1.0
+24540,80652,1.0
+24540,80654,0.005934718100890208
+24540,80729,1.0
+24540,80742,1.0
+24540,80754,1.0
+24580,54101,1.0
+24580,54110,0.02304233795429
+24580,54111,0.03470919324577861
+24580,54112,0.18345008756567427
+24580,54114,0.05272305909617613
+24580,54115,0.9502889892661128
+24580,54124,0.9278536459675342
+24580,54126,0.9958620689655172
+24580,54130,0.03576549306993787
+24580,54137,0.31928251121076234
+24580,54138,1.0
+24580,54139,0.9880490956072352
+24580,54141,1.0
+24580,54149,1.0
+24580,54153,1.0
+24580,54154,0.958002883922134
+24580,54155,0.6798752522472941
+24580,54157,0.0013364517206815904
+24580,54161,0.3757418397626113
+24580,54162,0.7039161610590181
+24580,54165,0.007958615200955034
+24580,54171,1.0
+24580,54173,1.0
+24580,54174,0.9412545635579156
+24580,54175,1.0
+24580,54180,0.9472212513107304
+24580,54201,0.9710009354536949
+24580,54205,0.9701423977951308
+24580,54208,0.9112357696749711
+24580,54213,0.05094043887147336
+24580,54216,1.0
+24580,54217,0.9454422687373396
+24580,54229,1.0
+24580,54301,1.0
+24580,54302,1.0
+24580,54303,1.0
+24580,54304,1.0
+24580,54307,1.0
+24580,54311,1.0
+24580,54313,0.999303562971836
+24580,54491,0.043583535108958835
+24660,27025,0.7956545160711079
+24660,27027,1.0
+24660,27048,1.0
+24660,27203,1.0
+24660,27205,1.0
+24660,27208,0.34307875894988066
+24660,27214,1.0
+24660,27215,0.036849022083644704
+24660,27233,1.0
+24660,27235,1.0
+24660,27239,0.2659984579799537
+24660,27244,0.026035419459535736
+24660,27248,1.0
+24660,27249,0.6810027230498158
+24660,27260,1.0000000000000002
+24660,27262,0.9362831118910336
+24660,27263,1.0
+24660,27265,0.8263868065967016
+24660,27282,1.0
+24660,27283,1.0
+24660,27284,0.04931946182728409
+24660,27288,1.0
+24660,27292,0.0015080302611405734
+24660,27298,0.7583204334365325
+24660,27301,1.0
+24660,27310,1.0
+24660,27311,0.15696649029982362
+24660,27313,1.0
+24660,27316,1.0
+24660,27317,1.0
+24660,27320,0.9473710960331376
+24660,27325,0.005668257756563246
+24660,27326,0.6694111776447106
+24660,27341,0.6507462686567164
+24660,27344,0.01598046831650205
+24660,27350,1.0
+24660,27355,0.7939849624060149
+24660,27357,0.9991132505700533
+24660,27358,1.0
+24660,27360,0.07677284957902959
+24660,27370,1.0
+24660,27371,0.02570093457943925
+24660,27377,1.0
+24660,27401,1.0
+24660,27403,1.0
+24660,27405,1.0
+24660,27406,1.0
+24660,27407,1.0
+24660,27408,1.0
+24660,27409,1.0
+24660,27410,1.0
+24660,27455,1.0
+24780,27812,0.9093713844967221
+24780,27827,1.0
+24780,27828,0.8798368426854812
+24780,27829,0.6984455958549223
+24780,27834,0.9983747212457952
+24780,27837,0.9488395730984244
+24780,27852,0.039301310043668124
+24780,27858,1.0
+24780,27871,0.1262177960597532
+24780,27879,1.0
+24780,27884,1.0
+24780,27886,0.015747302116622668
+24780,27888,0.048828125
+24780,27889,0.08220474734236202
+24780,28513,0.9493524067272376
+24780,28530,0.5231860338243317
+24780,28586,0.01667072280360185
+24780,28590,1.0
+24860,29178,0.026650873556411016
+24860,29322,0.015715749914588316
+24860,29325,1.0
+24860,29332,0.9396303901437372
+24860,29335,0.10470463388751326
+24860,29351,1.0
+24860,29355,0.5925925925925926
+24860,29356,0.4650730740648997
+24860,29360,1.0
+24860,29370,1.0
+24860,29384,1.0
+24860,29388,0.01962681409813407
+24860,29601,1.0
+24860,29605,1.0
+24860,29607,1.0
+24860,29609,1.0
+24860,29611,1.0
+24860,29613,1.0
+24860,29614,1.0
+24860,29615,1.0
+24860,29617,1.0
+24860,29621,1.0
+24860,29624,1.0
+24860,29625,1.0
+24860,29626,1.0
+24860,29627,0.9989110905428212
+24860,29630,1.0
+24860,29631,1.0
+24860,29634,1.0
+24860,29635,1.0
+24860,29640,1.0
+24860,29642,1.0
+24860,29643,0.2318577648766328
+24860,29644,1.0
+24860,29645,1.0
+24860,29650,0.9981306692816868
+24860,29651,0.6253150966296331
+24860,29654,0.79551172386032
+24860,29655,0.7287070292457671
+24860,29657,1.0
+24860,29661,0.9999999999999999
+24860,29662,1.0
+24860,29667,1.0
+24860,29669,1.0
+24860,29670,1.0
+24860,29671,1.0
+24860,29673,1.0
+24860,29680,1.0
+24860,29681,1.0
+24860,29682,1.0
+24860,29683,1.0
+24860,29684,1.0
+24860,29685,1.0
+24860,29687,1.0
+24860,29689,0.8860889688866033
+24860,29690,1.0
+24860,29692,0.4382207578253707
+24860,29697,1.0
+25020,00704,0.07718316427655357
+25020,00714,1.0
+25020,00723,1.0
+25020,00784,1.0
+25060,39426,0.0252745230353966
+25060,39452,0.09879839786381844
+25060,39455,0.055652710626478766
+25060,39466,0.11659095825221714
+25060,39470,0.005303204980401199
+25060,39501,1.0
+25060,39503,1.0
+25060,39507,1.0
+25060,39520,1.0
+25060,39525,1.0
+25060,39530,1.0
+25060,39531,1.0
+25060,39532,1.0
+25060,39534,1.0
+25060,39540,1.0
+25060,39553,1.0
+25060,39556,1.0
+25060,39560,1.0
+25060,39561,1.0
+25060,39562,1.0
+25060,39563,1.0
+25060,39564,1.0
+25060,39565,1.0
+25060,39567,1.0
+25060,39571,1.0
+25060,39572,1.0
+25060,39573,0.9512913457181694
+25060,39574,0.9999999999999999
+25060,39576,1.0
+25060,39577,0.8776749566223251
+25060,39581,1.0
+25180,21711,1.0
+25180,21713,1.0
+25180,21719,0.9748062015503876
+25180,21722,1.0
+25180,21733,1.0
+25180,21734,1.0
+25180,21740,1.0
+25180,21742,1.0
+25180,21746,1.0
+25180,21750,1.0
+25180,21756,1.0
+25180,21758,0.3639504165819955
+25180,21767,1.0
+25180,21769,0.003381986472054112
+25180,21779,1.0
+25180,21780,0.05107692307692308
+25180,21781,1.0
+25180,21782,1.0
+25180,21783,0.875684556407448
+25180,21795,1.0
+25180,25401,1.0
+25180,25403,1.0
+25180,25404,1.0
+25180,25405,1.0
+25180,25411,1.0
+25180,25413,1.0
+25180,25419,1.0
+25180,25420,1.0
+25180,25422,0.9911764705882352
+25180,25427,1.0
+25180,25428,1.0
+25180,25430,0.20648422090729784
+25180,25434,0.35105117017056725
+25180,25443,0.02122229684351914
+25220,70401,1.0
+25220,70402,1.0
+25220,70403,0.9489831225250857
+25220,70422,0.8043777632818728
+25220,70433,0.0019593357530594546
+25220,70435,0.002710353550563151
+25220,70436,1.0
+25220,70437,0.12263197777216467
+25220,70442,1.0
+25220,70443,0.7937842064112588
+25220,70444,0.8801181102362204
+25220,70446,1.0
+25220,70451,1.0
+25220,70454,1.0
+25220,70455,1.0
+25220,70456,1.0
+25220,70462,0.021758203193542727
+25220,70465,1.0
+25220,70466,0.9518327067669172
+25260,93201,0.0037091988130563795
+25260,93202,1.0
+25260,93204,1.0
+25260,93212,0.9940565205721078
+25260,93230,1.0
+25260,93239,1.0
+25260,93242,0.08304498269896192
+25260,93245,1.0
+25260,93266,1.0
+25260,93631,0.04849131171193777
+25260,93656,0.05623316964992872
+25420,17005,1.0
+25420,17006,1.0
+25420,17007,1.0
+25420,17011,0.9603596831087724
+25420,17013,1.0
+25420,17015,1.0
+25420,17017,0.07293447293447293
+25420,17018,1.0
+25420,17019,0.0067716268833587275
+25420,17020,0.9999999999999999
+25420,17021,0.09466911764705882
+25420,17022,0.11475575974596312
+25420,17023,1.0
+25420,17024,1.0
+25420,17025,1.0
+25420,17027,1.0
+25420,17028,0.7150537634408602
+25420,17030,1.0
+25420,17032,1.0
+25420,17033,0.9965826066462408
+25420,17034,1.0
+25420,17035,0.013110846245530394
+25420,17036,1.0
+25420,17037,1.0
+25420,17040,1.0
+25420,17043,1.0
+25420,17045,0.6782089552238806
+25420,17047,1.0
+25420,17048,1.0
+25420,17050,1.0
+25420,17053,1.0
+25420,17055,0.978619622046324
+25420,17057,1.0
+25420,17061,1.0
+25420,17062,0.757728072379995
+25420,17065,1.0
+25420,17068,1.0
+25420,17069,1.0
+25420,17070,0.5330741779250574
+25420,17071,1.0
+25420,17072,1.0
+25420,17074,1.0
+25420,17078,0.06815708774359483
+25420,17080,1.0
+25420,17081,1.0
+25420,17090,1.0
+25420,17093,1.0
+25420,17097,1.0
+25420,17098,1.0
+25420,17101,1.0
+25420,17102,1.0
+25420,17103,1.0
+25420,17104,1.0
+25420,17109,1.0
+25420,17110,1.0
+25420,17111,1.0
+25420,17112,1.0
+25420,17113,1.0
+25420,17240,0.704932735426009
+25420,17241,1.0
+25420,17257,0.6625946563794828
+25420,17266,1.0
+25420,17307,0.00508560773012375
+25420,17324,0.5984830528561271
+25420,17980,0.07134033353922174
+25500,22801,1.0
+25500,22802,1.0
+25500,22807,1.0
+25500,22811,1.0
+25500,22812,0.9175534894141368
+25500,22815,0.9966487133453024
+25500,22820,1.0
+25500,22821,1.0
+25500,22827,0.9417597227570274
+25500,22830,1.0
+25500,22831,1.0
+25500,22832,1.0
+25500,22834,1.0
+25500,22840,1.0
+25500,22841,0.9627373701182372
+25500,22844,0.05499116607773852
+25500,22846,1.0
+25500,22849,0.03469468675654243
+25500,22850,1.0
+25500,22853,0.9906114037096404
+25500,24441,0.6236156351791531
+25500,24471,1.0
+25500,24486,0.06045845272206304
+25540,06001,1.0
+25540,06002,1.0
+25540,06010,1.0
+25540,06013,1.0
+25540,06016,1.0
+25540,06019,1.0
+25540,06022,1.0
+25540,06023,1.0
+25540,06026,1.0
+25540,06027,1.0
+25540,06029,1.0
+25540,06032,1.0
+25540,06033,1.0
+25540,06035,1.0
+25540,06037,1.0
+25540,06040,1.0
+25540,06042,1.0
+25540,06043,1.0
+25540,06051,1.0
+25540,06052,1.0
+25540,06053,1.0
+25540,06060,1.0
+25540,06062,1.0
+25540,06065,0.5317460317460317
+25540,06066,1.0
+25540,06067,1.0
+25540,06070,1.0
+25540,06071,1.0
+25540,06073,1.0
+25540,06074,1.0
+25540,06076,1.0
+25540,06078,1.0
+25540,06081,1.0
+25540,06082,1.0
+25540,06084,1.0
+25540,06085,1.0
+25540,06088,1.0
+25540,06089,1.0
+25540,06090,1.0
+25540,06091,1.0
+25540,06092,1.0
+25540,06093,1.0
+25540,06095,1.0
+25540,06096,1.0
+25540,06103,1.0
+25540,06105,1.0
+25540,06106,1.0
+25540,06107,1.0
+25540,06108,1.0
+25540,06109,1.0
+25540,06110,1.0
+25540,06111,1.0
+25540,06112,1.0
+25540,06114,1.0
+25540,06117,1.0
+25540,06118,1.0
+25540,06119,1.0
+25540,06120,1.0
+25540,06226,0.02212389380530973
+25540,06231,1.0
+25540,06232,1.0
+25540,06237,1.0
+25540,06238,1.0
+25540,06242,0.05752840909090909
+25540,06248,1.0
+25540,06250,0.9900435594275048
+25540,06268,1.0
+25540,06269,1.0
+25540,06279,1.0
+25540,06409,1.0
+25540,06412,1.0
+25540,06413,1.0
+25540,06414,1.0
+25540,06415,0.0460342884261731
+25540,06416,1.0
+25540,06417,1.0
+25540,06419,1.0
+25540,06420,0.010521281683405069
+25540,06422,1.0
+25540,06423,1.0
+25540,06424,1.0
+25540,06426,1.0
+25540,06438,1.0
+25540,06441,1.0
+25540,06442,1.0
+25540,06444,1.0
+25540,06447,1.0
+25540,06451,0.001801875588680945
+25540,06455,1.0
+25540,06456,1.0
+25540,06457,1.0
+25540,06467,1.0
+25540,06469,1.0
+25540,06475,1.0
+25540,06479,1.0
+25540,06480,1.0
+25540,06481,1.0
+25540,06489,1.0
+25540,06498,1.0
+25620,39119,0.6077006901561932
+25620,39168,0.12569622158663254
+25620,39401,0.992136696951529
+25620,39402,1.0
+25620,39406,1.0
+25620,39423,1.0
+25620,39425,1.0
+25620,39428,1.0
+25620,39429,0.002661833833607068
+25620,39455,0.6969447587696739
+25620,39456,0.07507739938080496
+25620,39462,1.0
+25620,39464,0.13456889605157132
+25620,39465,0.9974282240718226
+25620,39474,0.00231404958677686
+25620,39475,1.0000000000000002
+25620,39476,0.6503561065681878
+25620,39479,0.8409247757073844
+25620,39482,0.8956494972296327
+25620,39577,0.12232504337767497
+25860,28037,0.09706348772351944
+25860,28090,0.008750899064972428
+25860,28092,0.009878143634949444
+25860,28168,0.341544477028348
+25860,28601,1.0
+25860,28602,1.0
+25860,28605,0.03810082063305978
+25860,28606,0.1566265060240964
+25860,28609,1.0
+25860,28610,1.0
+25860,28611,0.928813559322034
+25860,28612,1.0
+25860,28613,1.0
+25860,28619,1.0
+25860,28625,0.002265881897814253
+25860,28628,1.0
+25860,28630,1.0000000000000002
+25860,28636,0.9585295182904744
+25860,28637,1.0
+25860,28638,1.0
+25860,28645,0.9982181414166824
+25860,28650,0.798199107969368
+25860,28654,0.05550786838340487
+25860,28655,0.999218124954542
+25860,28657,0.07145868465430016
+25860,28658,1.0
+25860,28666,1.0
+25860,28667,1.0
+25860,28671,1.0
+25860,28673,0.983274201723264
+25860,28678,0.5281285878300803
+25860,28681,1.0
+25860,28682,1.0
+25860,28689,0.04614485981308411
+25860,28690,1.0
+25860,28761,0.0785568065506653
+25940,29902,1.0
+25940,29904,1.0
+25940,29905,1.0
+25940,29906,1.0
+25940,29907,1.0
+25940,29909,1.0
+25940,29910,1.0
+25940,29912,1.0
+25940,29915,1.0
+25940,29916,0.401174168297456
+25940,29920,1.0
+25940,29922,0.2915980230642504
+25940,29926,1.0
+25940,29927,1.0
+25940,29928,1.0
+25940,29934,0.9146757679180888
+25940,29935,1.0
+25940,29936,1.0
+25940,29940,1.0
+25940,29941,1.0
+25940,29943,1.0
+25940,29944,0.016412661195779603
+25940,29945,0.35158025201404663
+25980,30427,0.1749844527363184
+25980,31301,1.0
+25980,31309,1.0
+25980,31313,1.0
+25980,31314,1.0
+25980,31315,1.0
+25980,31316,1.0
+25980,31320,1.0
+25980,31323,0.9086265607264473
+26140,34428,1.0
+26140,34429,1.0
+26140,34433,1.0
+26140,34434,1.0
+26140,34436,1.0
+26140,34442,1.0
+26140,34445,1.0
+26140,34446,1.0
+26140,34448,1.0
+26140,34449,0.1057315770736917
+26140,34450,1.0
+26140,34452,1.0
+26140,34453,1.0
+26140,34461,1.0
+26140,34465,1.0
+26300,71901,0.9979993896442982
+26300,71909,0.6509543461439257
+26300,71913,0.9833778432636524
+26300,71933,0.4517326732673268
+26300,71949,1.0
+26300,71956,1.0
+26300,71964,0.9299541518084564
+26300,71968,1.0
+26300,72087,0.3968795709410044
+26380,70030,0.10010905125408942
+26380,70301,0.9808769198596556
+26380,70343,1.0
+26380,70344,1.0
+26380,70345,1.0
+26380,70352,1.0
+26380,70353,1.0
+26380,70354,1.0
+26380,70355,1.0
+26380,70356,1.0
+26380,70357,1.0
+26380,70359,1.0
+26380,70360,1.0
+26380,70363,1.0
+26380,70364,1.0
+26380,70373,1.0
+26380,70374,1.0
+26380,70375,1.0
+26380,70377,1.0
+26380,70394,1.0
+26380,70395,1.0
+26380,70397,1.0
+26420,77002,1.0
+26420,77003,1.0
+26420,77004,1.0
+26420,77005,1.0
+26420,77006,1.0
+26420,77007,1.0
+26420,77008,1.0
+26420,77009,1.0
+26420,77010,1.0
+26420,77011,1.0
+26420,77012,1.0
+26420,77013,1.0
+26420,77014,1.0
+26420,77015,1.0
+26420,77016,1.0
+26420,77017,1.0
+26420,77018,1.0
+26420,77019,1.0
+26420,77020,1.0
+26420,77021,1.0
+26420,77022,1.0
+26420,77023,1.0
+26420,77024,1.0
+26420,77025,1.0
+26420,77026,1.0
+26420,77027,1.0
+26420,77028,1.0
+26420,77029,1.0
+26420,77030,1.0
+26420,77031,1.0
+26420,77032,1.0
+26420,77033,1.0
+26420,77034,1.0
+26420,77035,1.0
+26420,77036,1.0
+26420,77037,1.0
+26420,77038,1.0
+26420,77039,1.0
+26420,77040,1.0
+26420,77041,1.0
+26420,77042,1.0
+26420,77043,1.0
+26420,77044,1.0
+26420,77045,1.0
+26420,77046,1.0
+26420,77047,1.0
+26420,77048,1.0
+26420,77049,1.0
+26420,77050,1.0
+26420,77051,1.0
+26420,77053,1.0
+26420,77054,1.0
+26420,77055,1.0
+26420,77056,1.0
+26420,77057,1.0
+26420,77058,1.0
+26420,77059,1.0
+26420,77060,1.0
+26420,77061,1.0
+26420,77062,1.0
+26420,77063,1.0
+26420,77064,1.0
+26420,77065,1.0
+26420,77066,1.0
+26420,77067,1.0
+26420,77068,1.0
+26420,77069,1.0
+26420,77070,1.0
+26420,77071,1.0
+26420,77072,1.0
+26420,77073,1.0
+26420,77074,1.0
+26420,77075,1.0
+26420,77076,1.0
+26420,77077,1.0
+26420,77078,1.0
+26420,77079,1.0
+26420,77080,1.0
+26420,77081,1.0
+26420,77082,1.0
+26420,77083,1.0
+26420,77084,1.0
+26420,77085,1.0
+26420,77086,1.0
+26420,77087,1.0
+26420,77088,1.0
+26420,77089,1.0
+26420,77090,1.0
+26420,77091,1.0
+26420,77092,1.0
+26420,77093,1.0
+26420,77094,1.0
+26420,77095,1.0
+26420,77096,1.0
+26420,77098,1.0
+26420,77099,1.0
+26420,77301,1.0
+26420,77302,1.0
+26420,77303,1.0
+26420,77304,1.0
+26420,77306,1.0
+26420,77316,1.0
+26420,77318,1.0
+26420,77327,1.0
+26420,77328,0.5790752519116702
+26420,77336,1.0
+26420,77338,1.0
+26420,77339,1.0
+26420,77345,1.0
+26420,77346,1.0
+26420,77354,1.0
+26420,77355,0.9999999999999999
+26420,77356,0.9953873785615152
+26420,77357,0.9999999999999999
+26420,77358,0.07310234328059283
+26420,77362,1.0
+26420,77363,0.06301621290914652
+26420,77365,0.9999999999999999
+26420,77368,1.0
+26420,77369,0.9449901768172888
+26420,77371,0.001696020874103066
+26420,77372,1.0
+26420,77373,1.0
+26420,77375,1.0
+26420,77377,1.0
+26420,77378,0.9107252298263534
+26420,77379,1.0
+26420,77380,1.0
+26420,77381,1.0
+26420,77382,1.0
+26420,77384,1.0
+26420,77385,1.0
+26420,77386,1.0
+26420,77388,1.0
+26420,77389,1.0
+26420,77396,1.0
+26420,77401,1.0
+26420,77406,1.0
+26420,77407,1.0
+26420,77417,1.0
+26420,77418,1.0
+26420,77422,1.0
+26420,77423,1.0
+26420,77426,0.06666666666666668
+26420,77429,1.0
+26420,77430,1.0
+26420,77433,1.0
+26420,77435,0.09032826613791584
+26420,77441,1.0
+26420,77444,1.0
+26420,77445,1.0
+26420,77446,1.0
+26420,77447,1.0
+26420,77449,1.0
+26420,77450,1.0
+26420,77451,1.0
+26420,77459,1.0
+26420,77461,1.0
+26420,77464,1.0
+26420,77466,1.0
+26420,77469,1.0
+26420,77471,1.0
+26420,77473,1.0
+26420,77474,1.0
+26420,77476,1.0
+26420,77477,1.0
+26420,77478,1.0
+26420,77479,1.0
+26420,77480,0.9568976164011362
+26420,77481,1.0
+26420,77484,0.9801228767618358
+26420,77485,0.9985199802664035
+26420,77486,1.0
+26420,77489,1.0
+26420,77493,0.9999999999999999
+26420,77494,1.0000000000000002
+26420,77498,1.0
+26420,77502,1.0
+26420,77503,1.0
+26420,77504,1.0
+26420,77505,1.0
+26420,77506,1.0
+26420,77510,1.0
+26420,77511,1.0
+26420,77514,1.0
+26420,77515,1.0
+26420,77517,1.0
+26420,77518,1.0
+26420,77520,1.0
+26420,77521,1.0
+26420,77523,1.0
+26420,77530,1.0
+26420,77531,1.0
+26420,77532,1.0
+26420,77533,1.0
+26420,77534,1.0
+26420,77535,1.0
+26420,77536,1.0
+26420,77538,1.0
+26420,77539,1.0
+26420,77541,1.0
+26420,77545,1.0
+26420,77546,1.0
+26420,77547,1.0
+26420,77550,1.0
+26420,77551,1.0
+26420,77554,1.0
+26420,77560,0.9999999999999999
+26420,77561,1.0
+26420,77562,1.0
+26420,77563,1.0
+26420,77564,0.9346076458752516
+26420,77565,1.0
+26420,77566,1.0
+26420,77568,1.0
+26420,77571,1.0
+26420,77573,1.0
+26420,77575,1.0
+26420,77577,1.0
+26420,77578,1.0
+26420,77580,1.0
+26420,77581,1.0
+26420,77583,1.0
+26420,77584,1.0
+26420,77586,1.0
+26420,77587,1.0
+26420,77590,1.0
+26420,77591,1.0
+26420,77597,1.0
+26420,77598,1.0
+26420,77617,1.0
+26420,77623,1.0
+26420,77650,1.0
+26420,77661,1.0
+26420,77665,0.8278001861619609
+26420,77833,0.012476356758329695
+26420,77835,0.031475967673330496
+26420,77868,0.001998581651731029
+26420,77873,0.27167182662538697
+26420,78931,1.0
+26420,78933,0.4933705512909979
+26420,78940,0.08388941849380363
+26420,78944,1.0
+26420,78950,0.669774288518155
+26420,78954,0.04014939309056957
+26580,25011,1.0
+26580,25033,1.0
+26580,25070,1.0
+26580,25082,0.6879856545128512
+26580,25109,1.0
+26580,25123,0.16407355021216408
+26580,25124,0.9662273476112028
+26580,25143,0.2615689474297704
+26580,25159,1.0
+26580,25168,1.0
+26580,25177,0.001868460388639761
+26580,25213,1.0
+26580,25245,0.14479025710419485
+26580,25504,0.9999999999999999
+26580,25506,0.1353980543974588
+26580,25507,1.0
+26580,25510,0.9536854552621207
+26580,25511,1.0
+26580,25512,1.0
+26580,25514,1.0
+26580,25517,1.0
+26580,25520,0.4336963484945548
+26580,25523,0.0589346429920665
+26580,25526,0.999132499315131
+26580,25530,1.0
+26580,25534,0.9574468085106383
+26580,25535,1.0
+26580,25537,1.0
+26580,25541,0.8963636363636364
+26580,25545,1.0
+26580,25555,1.0
+26580,25559,1.0
+26580,25560,1.0
+26580,25570,1.0
+26580,25669,1.0
+26580,25674,0.35259212991880073
+26580,25699,1.0
+26580,25701,0.9999999999999999
+26580,25702,1.0
+26580,25703,1.0
+26580,25704,1.0
+26580,25705,1.0
+26580,40351,0.0029022578582320823
+26580,41101,0.9999999999999999
+26580,41102,1.0000000000000002
+26580,41121,1.0
+26580,41129,0.9460794194718808
+26580,41132,0.8823529411764706
+26580,41139,1.0
+26580,41141,0.2287687931735067
+26580,41142,1.0
+26580,41143,0.9999999999999999
+26580,41144,1.0
+26580,41146,1.0
+26580,41164,0.8627809523809524
+26580,41168,1.0
+26580,41169,1.0
+26580,41174,0.7843137254901961
+26580,41175,1.0
+26580,41180,0.062557497700092
+26580,41183,1.0
+26580,45619,1.0
+26580,45623,0.2023468803663423
+26580,45638,0.9657961636237578
+26580,45645,1.0
+26580,45656,0.025305015815634886
+26580,45659,1.0
+26580,45669,1.0
+26580,45678,0.9137148047229792
+26580,45680,1.0
+26580,45682,0.04008264462809917
+26580,45688,0.9621052631578948
+26580,45696,1.0
+26620,35610,0.2078152753108348
+26620,35611,1.0
+26620,35613,1.0
+26620,35614,0.9990611587982832
+26620,35615,1.0
+26620,35620,1.0
+26620,35647,1.0
+26620,35649,1.0
+26620,35652,0.01282051282051282
+26620,35671,1.0
+26620,35739,1.0
+26620,35741,1.0
+26620,35748,0.9719566602931804
+26620,35749,1.0
+26620,35750,1.0
+26620,35756,1.0
+26620,35757,1.0
+26620,35758,1.0
+26620,35759,1.0
+26620,35760,0.9632773938795656
+26620,35761,1.0
+26620,35763,1.0
+26620,35773,1.0
+26620,35776,0.011192930780559648
+26620,35801,1.0
+26620,35802,1.0
+26620,35803,1.0
+26620,35805,1.0
+26620,35806,1.0
+26620,35808,1.0
+26620,35810,1.0
+26620,35811,1.0
+26620,35816,1.0
+26620,35824,1.0
+26620,35896,1.0
+26820,83213,1.0
+26820,83236,0.00967032967032967
+26820,83244,1.0
+26820,83255,0.7328936521022259
+26820,83274,0.0008652390222799049
+26820,83285,0.7175572519083969
+26820,83401,1.0
+26820,83402,0.9909087421842033
+26820,83404,1.0
+26820,83406,1.0
+26820,83425,1.0
+26820,83427,1.0
+26820,83428,1.0
+26820,83431,1.0
+26820,83434,0.8638713383113154
+26820,83435,0.8958652373660031
+26820,83442,1.0
+26820,83443,0.985546522131888
+26820,83444,1.0
+26820,83449,1.0
+26820,83450,1.0
+26820,83454,1.0
+26900,46001,0.9934984224113204
+26900,46011,1.0
+26900,46012,0.9922736169774391
+26900,46013,1.0
+26900,46016,1.0
+26900,46017,0.991701244813278
+26900,46030,1.0
+26900,46031,0.8361869504858862
+26900,46032,1.0
+26900,46033,1.0
+26900,46034,1.0
+26900,46035,0.06019766397124888
+26900,46036,0.93509388665009
+26900,46037,1.0
+26900,46038,1.0
+26900,46040,1.0
+26900,46044,1.0
+26900,46048,1.0
+26900,46050,0.14302461899179367
+26900,46051,1.0
+26900,46052,1.0
+26900,46055,1.0
+26900,46056,1.0
+26900,46060,0.9999999999999999
+26900,46062,1.0
+26900,46063,1.0
+26900,46064,1.0
+26900,46069,0.9768907563025211
+26900,46070,1.0
+26900,46071,1.0
+26900,46074,1.0
+26900,46075,1.0
+26900,46077,0.9999999999999999
+26900,46103,1.0
+26900,46105,1.0
+26900,46106,1.0
+26900,46107,1.0
+26900,46110,1.0
+26900,46111,1.0
+26900,46112,1.0
+26900,46113,1.0
+26900,46115,0.05587170201758924
+26900,46117,0.9463487332339792
+26900,46118,1.0
+26900,46120,0.8649647295935505
+26900,46121,1.0
+26900,46122,1.0
+26900,46123,1.0
+26900,46124,0.7574750830564784
+26900,46125,1.0
+26900,46126,1.0
+26900,46128,1.0
+26900,46130,1.0
+26900,46131,1.0
+26900,46135,0.9971417682926829
+26900,46140,0.9974054951612484
+26900,46142,1.0
+26900,46143,1.0
+26900,46144,1.0
+26900,46147,0.9999999999999999
+26900,46149,1.0
+26900,46150,0.13743455497382198
+26900,46151,0.9978978687623298
+26900,46157,1.0
+26900,46158,1.0
+26900,46160,1.0
+26900,46161,0.974387947269303
+26900,46162,1.0
+26900,46163,1.0
+26900,46164,1.0
+26900,46165,1.0
+26900,46166,0.956201214223764
+26900,46167,1.0
+26900,46168,1.0
+26900,46171,1.0
+26900,46172,1.0
+26900,46175,0.9731993299832497
+26900,46176,1.0
+26900,46180,1.0
+26900,46181,1.0
+26900,46182,0.9449922158796056
+26900,46183,1.0
+26900,46184,1.0
+26900,46186,0.9811751283513976
+26900,46201,1.0
+26900,46202,1.0
+26900,46203,1.0
+26900,46204,1.0
+26900,46205,1.0
+26900,46208,1.0
+26900,46214,1.0
+26900,46216,1.0
+26900,46217,1.0
+26900,46218,1.0
+26900,46219,1.0
+26900,46220,1.0
+26900,46221,1.0
+26900,46222,1.0
+26900,46224,1.0
+26900,46225,1.0
+26900,46226,1.0
+26900,46227,1.0
+26900,46228,1.0
+26900,46229,1.0000000000000002
+26900,46231,1.0
+26900,46234,1.0
+26900,46235,1.0
+26900,46236,1.0
+26900,46237,1.0
+26900,46239,0.9999999999999999
+26900,46240,1.0
+26900,46241,1.0
+26900,46250,1.0
+26900,46254,1.0
+26900,46256,1.0
+26900,46259,1.0
+26900,46260,1.0
+26900,46268,0.9999999999999999
+26900,46278,1.0000000000000002
+26900,46280,1.0
+26900,46290,1.0
+26900,46928,0.006463340739244597
+26900,47201,0.028779223273006575
+26900,47234,1.0
+26900,47235,0.21188340807174888
+26900,47240,0.0030241935483870967
+26900,47272,0.3512983831455169
+26900,47274,0.005074730622175878
+26900,47356,0.07853312575678949
+26900,47384,0.4515
+26900,47401,0.000950964375411475
+26900,47433,0.088944099378882
+26900,47448,0.9933377748167888
+26900,47456,0.38416666666666666
+26900,47468,0.2224
+26900,47840,0.025333333333333333
+26900,47868,0.030983997276132106
+26900,47872,0.0015748031496062992
+26900,47933,0.0006443068332319148
+26900,47954,0.01936936936936937
+26900,47968,0.07026476578411406
+26900,47989,0.00234192037470726
+26980,52201,1.0
+26980,52203,0.07660455486542443
+26980,52228,0.022727272727272728
+26980,52235,1.0
+26980,52240,1.0
+26980,52241,1.0
+26980,52242,1.0
+26980,52245,1.0
+26980,52246,1.0
+26980,52247,1.0
+26980,52248,0.2545454545454545
+26980,52253,0.03508771929824561
+26980,52317,1.0
+26980,52322,1.0
+26980,52325,0.05040091638029783
+26980,52327,1.0
+26980,52333,0.9938391699092088
+26980,52338,0.9862930246725556
+26980,52340,1.0
+26980,52353,1.0
+26980,52356,0.9171686746987951
+26980,52358,0.07607822126975622
+26980,52359,1.0
+26980,52404,0.0013493491374748652
+26980,52540,0.6471830985915493
+26980,52585,0.09210526315789473
+26980,52621,0.8922155688622755
+26980,52641,0.004693695880877235
+26980,52654,0.1226851851851852
+26980,52755,0.9631742738589212
+27060,13045,0.015010626992561104
+27060,13053,0.8947158524426719
+27060,13062,1.0
+27060,13068,1.0
+27060,13073,0.9901914992993928
+27060,13092,0.09363008442056793
+27060,13102,1.0
+27060,13736,0.12917023096663816
+27060,13864,0.2654482158398607
+27060,14817,0.9558823529411764
+27060,14850,1.0
+27060,14853,1.0
+27060,14854,1.0
+27060,14867,1.0
+27060,14881,1.0
+27060,14882,1.0
+27060,14883,0.21300773694390715
+27060,14886,0.6466755516066933
+27100,48158,0.007114516349705842
+27100,48827,0.0029428338864191353
+27100,49201,1.0
+27100,49202,1.0
+27100,49203,1.0
+27100,49224,0.12823397075365578
+27100,49230,0.7866348448687349
+27100,49233,0.12282690854119425
+27100,49234,1.0
+27100,49237,0.9953020134228188
+27100,49240,0.9081925772722049
+27100,49241,1.0
+27100,49245,0.005779153766769866
+27100,49246,0.970199692780338
+27100,49249,0.10504694835680753
+27100,49250,0.02782271109673245
+27100,49251,0.04751966607802215
+27100,49252,0.04414587332053743
+27100,49254,1.0
+27100,49259,1.0
+27100,49261,1.0
+27100,49263,1.0
+27100,49264,0.2429718875502008
+27100,49269,1.0
+27100,49272,1.0
+27100,49277,1.0
+27100,49283,1.0
+27100,49284,0.6638044914134742
+27100,49285,0.055244755244755236
+27140,38924,0.8573281452658884
+27140,39038,0.02221156919143496
+27140,39039,1.0
+27140,39040,1.0
+27140,39041,1.0
+27140,39042,0.9989473068600504
+27140,39044,1.0
+27140,39045,1.0
+27140,39046,1.0
+27140,39047,1.0
+27140,39051,0.006156074597139236
+27140,39056,1.0
+27140,39059,1.0000000000000002
+27140,39062,1.0
+27140,39063,1.0
+27140,39066,1.0
+27140,39071,1.0
+27140,39073,1.0000000000000002
+27140,39078,1.0
+27140,39079,0.9332351497299951
+27140,39082,1.0
+27140,39083,1.0
+27140,39086,0.13394495412844035
+27140,39088,0.7407407407407407
+27140,39094,0.17138523761375127
+27140,39095,0.9799290005461497
+27140,39110,1.0
+27140,39111,0.944455066921606
+27140,39114,0.9946989397879575
+27140,39117,0.03963728148078901
+27140,39119,0.1274972756992372
+27140,39140,0.15244444444444444
+27140,39144,0.09111880046136102
+27140,39145,0.9798839458413926
+27140,39146,1.0
+27140,39149,1.0
+27140,39154,1.0
+27140,39157,1.0
+27140,39162,1.0
+27140,39167,1.0
+27140,39169,1.0
+27140,39170,1.0
+27140,39174,1.0
+27140,39175,0.9523022919677885
+27140,39179,1.0
+27140,39191,0.6529601189001734
+27140,39192,0.44893248701673405
+27140,39193,1.0
+27140,39194,0.9936917562724016
+27140,39201,1.0
+27140,39202,1.0
+27140,39203,1.0
+27140,39204,1.0
+27140,39206,1.0
+27140,39208,1.0
+27140,39209,0.9999999999999999
+27140,39211,1.0
+27140,39212,1.0
+27140,39213,1.0000000000000002
+27140,39216,1.0
+27140,39217,1.0
+27140,39218,1.0
+27140,39232,1.0
+27140,39272,1.0
+27180,38001,1.0
+27180,38006,0.8348377184559248
+27180,38021,1.0
+27180,38034,0.7605070046697798
+27180,38040,0.11226651261313306
+27180,38044,0.04393063583815029
+27180,38050,1.0
+27180,38059,0.030927835051546393
+27180,38220,0.07950243374797188
+27180,38233,0.541023842917251
+27180,38259,0.026744186046511628
+27180,38301,1.0
+27180,38305,0.996988435592676
+27180,38313,0.7899500624219725
+27180,38315,0.06398348813209494
+27180,38316,1.0
+27180,38330,1.0
+27180,38332,0.9071428571428573
+27180,38334,0.3746729461015175
+27180,38337,1.0
+27180,38340,0.978198685736374
+27180,38343,0.9999999999999999
+27180,38347,1.0
+27180,38351,0.001363403965233199
+27180,38352,0.7813765182186235
+27180,38355,1.0
+27180,38356,0.7596899224806202
+27180,38358,1.0
+27180,38359,0.05755395683453238
+27180,38362,1.0
+27180,38366,1.0
+27180,38368,0.23778337531486146
+27180,38369,1.0
+27180,38382,1.0
+27180,38391,1.0
+27180,38392,0.8930412371134021
+27260,32003,1.0
+27260,32009,1.0
+27260,32011,1.0
+27260,32033,1.0
+27260,32034,1.0
+27260,32040,1.0
+27260,32043,0.9930172133809678
+27260,32046,1.0
+27260,32058,0.006567028985507246
+27260,32063,1.0
+27260,32065,1.0
+27260,32068,1.0
+27260,32072,1.0
+27260,32073,1.0000000000000002
+27260,32079,1.0
+27260,32080,1.0
+27260,32081,1.0
+27260,32082,1.0
+27260,32084,1.0
+27260,32086,1.0
+27260,32087,1.0
+27260,32091,0.028761633919338163
+27260,32092,1.0
+27260,32095,1.0
+27260,32097,1.0
+27260,32145,1.0
+27260,32202,1.0
+27260,32204,1.0
+27260,32205,1.0
+27260,32206,1.0
+27260,32207,1.0
+27260,32208,1.0
+27260,32209,1.0
+27260,32210,1.0
+27260,32211,1.0
+27260,32212,1.0
+27260,32216,1.0
+27260,32217,1.0
+27260,32218,1.0
+27260,32219,1.0
+27260,32220,1.0
+27260,32221,1.0
+27260,32222,1.0
+27260,32223,1.0
+27260,32224,0.9999999999999999
+27260,32225,1.0
+27260,32226,1.0
+27260,32227,1.0
+27260,32228,1.0
+27260,32233,1.0
+27260,32234,1.0
+27260,32244,1.0
+27260,32246,1.0
+27260,32250,1.0
+27260,32254,1.0
+27260,32256,1.0
+27260,32257,1.0
+27260,32258,1.0
+27260,32259,1.0
+27260,32266,1.0
+27260,32277,1.0
+27260,32656,0.9062366205223348
+27260,32666,0.21112237998647732
+27340,28445,0.6761804087385482
+27340,28454,0.6463654223968566
+27340,28460,1.0
+27340,28518,0.15792135541787836
+27340,28521,0.06121556624398776
+27340,28539,1.0
+27340,28540,1.0
+27340,28543,1.0
+27340,28544,1.0
+27340,28546,1.0
+27340,28547,1.0
+27340,28555,0.606183574879227
+27340,28572,0.0024498545398866944
+27340,28574,0.9775526420341676
+27340,28582,0.5377833753148614
+27340,28584,0.4484029484029484
+27500,53114,0.07281553398058252
+27500,53190,0.06833333333333333
+27500,53501,1.0
+27500,53505,1.0
+27500,53511,1.0
+27500,53520,0.18546255506607928
+27500,53521,0.0812363238512035
+27500,53525,1.0
+27500,53534,0.7981236970118137
+27500,53536,1.0
+27500,53537,1.0
+27500,53538,0.006660168940870695
+27500,53545,1.0
+27500,53546,1.0
+27500,53548,1.0
+27500,53563,0.9906785980611484
+27500,53576,1.0
+27500,53585,0.009932279909706548
+27500,53589,0.0009780202810521438
+27620,63361,0.05878453038674032
+27620,63384,0.004092071611253197
+27620,63388,1.0
+27620,65001,0.7681159420289855
+27620,65011,0.03917438921651222
+27620,65013,0.24551920341394026
+27620,65014,0.1714031971580817
+27620,65016,1.0
+27620,65018,0.9791288566243194
+27620,65023,1.0
+27620,65024,1.0
+27620,65025,0.7353689567430025
+27620,65032,0.4916294642857143
+27620,65034,0.44477172312223856
+27620,65035,1.0
+27620,65039,0.052405498281786936
+27620,65040,0.8551324503311258
+27620,65043,1.0
+27620,65046,1.0
+27620,65048,1.0
+27620,65050,1.0
+27620,65051,0.9995896594173164
+27620,65053,1.0
+27620,65054,1.0
+27620,65058,0.3333333333333333
+27620,65059,1.0
+27620,65061,0.225201072386059
+27620,65062,0.2857142857142857
+27620,65063,1.0
+27620,65067,1.0
+27620,65069,0.07751937984496124
+27620,65074,1.0
+27620,65076,1.0
+27620,65077,1.0
+27620,65080,1.0
+27620,65081,0.9526476578411406
+27620,65084,0.009268795056642637
+27620,65085,1.0
+27620,65101,1.0
+27620,65109,1.0
+27620,65201,0.0016490346804678186
+27620,65202,0.010720347175972672
+27620,65231,1.0
+27620,65240,0.009749670619235836
+27620,65251,1.0
+27620,65262,1.0
+27620,65264,0.15555555555555556
+27620,65287,0.22748815165876776
+27740,37601,1.0
+27740,37604,1.0
+27740,37614,1.0
+27740,37615,1.0
+27740,37640,0.3200641196900882
+27740,37641,0.21244309559939298
+27740,37643,1.0
+27740,37650,1.0
+27740,37656,0.6975795485450095
+27740,37657,1.0
+27740,37658,1.0
+27740,37659,0.9976073953235454
+27740,37663,0.06095642060614352
+27740,37681,0.7212873713445516
+27740,37682,1.0
+27740,37686,0.007352941176470587
+27740,37687,1.0
+27740,37690,1.0
+27740,37692,1.0
+27740,37694,0.9043478260869565
+27780,15714,0.909261694533158
+27780,15722,1.0
+27780,15724,0.07669983416252073
+27780,15737,1.0
+27780,15738,1.0
+27780,15760,1.0
+27780,15762,1.0
+27780,15773,1.0
+27780,15775,1.0
+27780,15901,1.0
+27780,15902,1.0
+27780,15904,1.0
+27780,15905,0.8858004334306983
+27780,15906,1.0
+27780,15909,1.0
+27780,15921,1.0
+27780,15922,1.0
+27780,15925,1.0
+27780,15927,1.0
+27780,15930,1.0
+27780,15931,1.0
+27780,15934,1.0
+27780,15938,1.0
+27780,15940,1.0
+27780,15942,1.0
+27780,15943,1.0
+27780,15945,1.0
+27780,15946,0.9302128859438884
+27780,15948,1.0
+27780,15951,1.0
+27780,15952,1.0
+27780,15955,1.0
+27780,15956,1.0
+27780,15957,0.2185430463576159
+27780,15958,1.0
+27780,15960,1.0
+27780,15961,0.4672131147540984
+27780,15962,1.0
+27780,15963,0.2509447543638654
+27780,16613,0.9928338762214984
+27780,16619,1.0
+27780,16624,1.0
+27780,16627,0.03863037752414399
+27780,16630,1.0
+27780,16636,0.9474393530997304
+27780,16639,0.9069611780455152
+27780,16640,1.0
+27780,16641,0.945727482678984
+27780,16646,0.9937451133698202
+27780,16668,1.0
+27780,16699,1.0
+27860,72324,0.012133468149646108
+27860,72354,0.9668016194331984
+27860,72365,1.0
+27860,72377,1.0
+27860,72386,0.7422622397298818
+27860,72401,0.9900868562501164
+27860,72404,1.0
+27860,72411,1.0
+27860,72414,1.0
+27860,72416,0.9163064153553518
+27860,72417,1.0
+27860,72419,1.0
+27860,72421,1.0
+27860,72427,1.0
+27860,72429,1.0
+27860,72432,1.0
+27860,72437,1.0
+27860,72447,1.0
+27860,72450,0.0020536730219521
+27860,72467,1.0
+27860,72472,1.0
+27860,72479,0.9187374076561451
+27900,64748,0.11989283322170127
+27900,64755,0.8293528505392912
+27900,64801,1.0
+27900,64804,1.0
+27900,64830,1.0
+27900,64832,0.7428180574555403
+27900,64833,1.0
+27900,64834,1.0
+27900,64835,1.0
+27900,64836,1.0
+27900,64840,1.0
+27900,64841,1.0
+27900,64842,0.948130277442702
+27900,64843,0.10708806382325868
+27900,64844,1.0
+27900,64848,0.2405913978494624
+27900,64849,1.0
+27900,64850,0.9958026846195404
+27900,64855,0.9677996422182468
+27900,64857,1.0
+27900,64858,1.0
+27900,64859,1.0
+27900,64861,0.04749787955894826
+27900,64862,0.9484566976326041
+27900,64865,0.9171252292813074
+27900,64866,1.0
+27900,64867,0.4215277777777778
+27900,64870,1.0
+27900,64873,0.4235074626865672
+27900,65723,0.17387687188019968
+27980,96708,1.0
+27980,96713,1.0
+27980,96729,1.0
+27980,96732,1.0
+27980,96748,1.0
+27980,96753,1.0
+27980,96757,1.0
+27980,96761,1.0
+27980,96763,1.0
+27980,96768,1.0
+27980,96770,1.0
+27980,96779,1.0
+27980,96790,1.0
+27980,96793,1.0
+28020,49001,1.0
+28020,49002,1.0
+28020,49004,1.0
+28020,49006,1.0
+28020,49007,1.0
+28020,49008,1.0
+28020,49009,0.991737878287144
+28020,49012,0.9712488769092544
+28020,49024,1.0
+28020,49034,0.9192130598576812
+28020,49048,1.0
+28020,49052,0.7487179487179487
+28020,49053,1.0
+28020,49060,0.3245109321058688
+28020,49071,0.1751689557444953
+28020,49074,1.0
+28020,49078,0.05167378117277016
+28020,49080,0.10030375901784584
+28020,49083,0.9965522195086912
+28020,49087,0.9857982370225268
+28020,49088,1.0
+28020,49097,0.9897346503970559
+28100,60401,0.013210209054764652
+28100,60424,0.003278688524590164
+28100,60468,0.012753433616742969
+28100,60481,0.006750485191123112
+28100,60901,1.0
+28100,60910,1.0
+28100,60913,1.0
+28100,60914,1.0
+28100,60915,1.0
+28100,60917,0.9390243902439024
+28100,60919,0.1971326164874552
+28100,60922,0.5526636844245628
+28100,60935,1.0
+28100,60940,0.981300089047195
+28100,60941,0.9779303580186366
+28100,60950,0.9942472057856672
+28100,60954,1.0
+28100,60958,1.0
+28100,60961,0.8414285714285714
+28100,60964,0.930756843800322
+28100,60969,1.0
+28140,64001,1.0
+28140,64011,0.8622021893110109
+28140,64012,1.0
+28140,64014,1.0
+28140,64015,1.0
+28140,64016,1.0
+28140,64017,1.0
+28140,64018,1.0
+28140,64020,0.931541019955654
+28140,64021,1.0
+28140,64022,1.0
+28140,64024,1.0
+28140,64029,1.0
+28140,64030,1.0
+28140,64034,1.0
+28140,64035,0.9907312049433572
+28140,64036,1.0
+28140,64037,1.0
+28140,64048,1.0
+28140,64050,1.0
+28140,64052,1.0
+28140,64053,1.0
+28140,64054,1.0
+28140,64055,1.0
+28140,64056,1.0
+28140,64057,1.0
+28140,64058,1.0
+28140,64060,1.0
+28140,64061,0.027753173900206672
+28140,64062,0.9999999999999999
+28140,64063,1.0
+28140,64064,1.0
+28140,64065,1.0
+28140,64066,1.0
+28140,64067,1.0
+28140,64068,1.0
+28140,64070,0.9105469930492596
+28140,64071,1.0
+28140,64072,1.0
+28140,64074,1.0
+28140,64075,1.0000000000000002
+28140,64076,0.9551093355761144
+28140,64077,0.9999999999999999
+28140,64078,1.0
+28140,64079,1.0
+28140,64080,1.0
+28140,64081,1.0
+28140,64082,1.0
+28140,64083,1.0
+28140,64084,1.0
+28140,64085,1.0
+28140,64086,1.0
+28140,64088,1.0
+28140,64089,1.0
+28140,64090,1.0
+28140,64092,1.0
+28140,64093,0.0006882063170095625
+28140,64096,1.0
+28140,64097,1.0
+28140,64098,1.0
+28140,64101,1.0
+28140,64105,1.0
+28140,64106,1.0
+28140,64108,1.0
+28140,64109,1.0
+28140,64110,1.0
+28140,64111,1.0
+28140,64112,1.0
+28140,64113,1.0
+28140,64114,1.0
+28140,64116,1.0
+28140,64117,1.0
+28140,64118,0.9999999999999999
+28140,64119,1.0
+28140,64120,1.0
+28140,64123,1.0
+28140,64124,1.0
+28140,64125,1.0
+28140,64126,1.0
+28140,64127,1.0
+28140,64128,1.0
+28140,64129,1.0
+28140,64130,1.0
+28140,64131,1.0
+28140,64132,1.0
+28140,64133,1.0
+28140,64134,1.0
+28140,64136,1.0
+28140,64137,1.0
+28140,64138,1.0
+28140,64139,1.0
+28140,64145,1.0
+28140,64146,1.0
+28140,64147,1.0
+28140,64149,1.0
+28140,64150,1.0
+28140,64151,1.0
+28140,64152,1.0
+28140,64153,1.0
+28140,64154,1.0
+28140,64155,1.0
+28140,64156,1.0
+28140,64157,1.0
+28140,64158,1.0
+28140,64161,1.0
+28140,64163,1.0
+28140,64164,1.0
+28140,64165,1.0
+28140,64166,1.0
+28140,64167,1.0
+28140,64192,1.0
+28140,64429,0.5300197598419213
+28140,64439,0.694884287454324
+28140,64440,0.0271370420624152
+28140,64444,0.9402985074626866
+28140,64454,0.7945256842894638
+28140,64465,1.0
+28140,64474,0.2121951219512195
+28140,64477,1.0
+28140,64484,0.15541090317331166
+28140,64490,0.2923151750972763
+28140,64492,1.0
+28140,64493,1.0
+28140,64624,0.8766546329723226
+28140,64625,0.8897515527950309
+28140,64637,1.0
+28140,64644,0.94510582010582
+28140,64649,0.7627314814814815
+28140,64650,1.0
+28140,64668,0.1497175141242938
+28140,64671,1.0
+28140,64701,1.0
+28140,64720,1.0
+28140,64722,1.0
+28140,64723,1.0
+28140,64724,0.1296395911780527
+28140,64725,1.0
+28140,64730,1.0
+28140,64734,1.0
+28140,64739,0.8014042126379137
+28140,64742,1.0
+28140,64743,1.0
+28140,64745,1.0
+28140,64746,1.0
+28140,64747,0.9391304347826088
+28140,64752,0.7319727891156462
+28140,64770,0.1240530303030303
+28140,64779,0.8722614184923877
+28140,64780,0.6306729264475743
+28140,64788,0.1568904593639576
+28140,65321,0.09352517985611512
+28140,65327,0.4317180616740088
+28140,66002,0.008942202835332607
+28140,66007,1.0
+28140,66010,0.9686468646864688
+28140,66012,1.0
+28140,66013,1.0
+28140,66014,0.97134670487106
+28140,66018,1.0
+28140,66019,1.0
+28140,66020,1.0
+28140,66021,0.9391271056661562
+28140,66025,0.023883696780893044
+28140,66026,1.0
+28140,66027,1.0
+28140,66030,1.0
+28140,66031,1.0
+28140,66033,0.05215123859191656
+28140,66040,1.0
+28140,66042,0.3089802130898021
+28140,66043,1.0
+28140,66044,0.020832600204103182
+28140,66048,1.0
+28140,66052,1.0
+28140,66053,1.0
+28140,66054,0.24825174825174826
+28140,66056,1.0
+28140,66061,1.0
+28140,66062,1.0
+28140,66064,0.9926205313217448
+28140,66071,1.0
+28140,66072,1.0
+28140,66075,1.0
+28140,66083,1.0
+28140,66085,1.0
+28140,66086,0.9972333230863818
+28140,66092,0.10235063663075417
+28140,66097,0.008403361344537815
+28140,66101,1.0
+28140,66102,1.0
+28140,66103,1.0
+28140,66104,1.0
+28140,66105,1.0
+28140,66106,1.0
+28140,66109,1.0
+28140,66111,1.0
+28140,66112,1.0
+28140,66118,1.0
+28140,66202,1.0
+28140,66203,1.0
+28140,66204,1.0
+28140,66205,1.0
+28140,66206,1.0
+28140,66207,1.0
+28140,66208,1.0
+28140,66209,1.0
+28140,66210,1.0
+28140,66211,1.0
+28140,66212,1.0
+28140,66213,1.0
+28140,66214,1.0
+28140,66215,1.0
+28140,66216,1.0
+28140,66217,1.0
+28140,66218,1.0
+28140,66219,1.0
+28140,66220,1.0
+28140,66221,1.0
+28140,66223,1.0
+28140,66224,1.0
+28140,66226,1.0
+28140,66227,1.0
+28140,66738,0.05585106382978723
+28140,66754,0.04878048780487805
+28140,66767,1.0
+28420,98930,0.058549698400209814
+28420,98944,0.0019533024438993366
+28420,99301,1.0
+28420,99320,1.0
+28420,99326,0.995359160613398
+28420,99330,1.0
+28420,99335,1.0
+28420,99336,1.0
+28420,99337,1.0
+28420,99338,1.0
+28420,99343,1.0
+28420,99344,0.04435987393708747
+28420,99345,1.0
+28420,99346,1.0
+28420,99350,0.9783496417289468
+28420,99352,1.0
+28420,99353,1.0
+28420,99354,1.0
+28420,99359,0.012658227848101266
+28420,99371,0.012861736334405145
+28660,76501,1.0
+28660,76502,1.0
+28660,76504,1.0
+28660,76511,0.30027132951462165
+28660,76513,1.0
+28660,76519,0.5047923322683706
+28660,76522,1.0
+28660,76525,0.5753295668549906
+28660,76527,0.04928536224741252
+28660,76528,0.9999999999999999
+28660,76534,0.9659655831739962
+28660,76538,0.5151116951379764
+28660,76539,0.9626323173064659
+28660,76541,1.0
+28660,76542,1.0
+28660,76543,1.0
+28660,76544,1.0
+28660,76548,1.0
+28660,76549,0.9959541469993257
+28660,76550,0.9208527533229759
+28660,76554,1.0
+28660,76557,0.3980301274623407
+28660,76559,1.0
+28660,76561,1.0
+28660,76566,0.8914728682170543
+28660,76569,0.9639711769415532
+28660,76571,1.0
+28660,76579,0.9762799436355096
+28660,76596,1.0
+28660,76597,1.0
+28660,76598,1.0
+28660,76599,1.0
+28660,76634,0.006203299027209925
+28660,76657,0.016439239282260664
+28660,76689,0.0457957957957958
+28660,76844,0.004225352112676056
+28660,76853,0.9870530209617756
+28700,24201,1.0
+28700,24202,1.0
+28700,24210,1.0
+28700,24211,1.0
+28700,24221,0.4200426439232409
+28700,24230,0.0210482442429926
+28700,24236,1.0
+28700,24244,0.8331294775467413
+28700,24245,1.0
+28700,24250,1.0
+28700,24251,1.0
+28700,24258,0.9999999999999999
+28700,24270,1.0
+28700,24271,1.0
+28700,24290,1.0
+28700,24319,0.09585900558819314
+28700,24340,1.0
+28700,24361,1.0
+28700,24370,0.13831405964698726
+28700,37617,1.0
+28700,37618,1.0
+28700,37620,1.0
+28700,37642,1.0
+28700,37645,1.0
+28700,37656,0.0799564862659777
+28700,37659,0.002392604676454595
+28700,37660,1.0
+28700,37663,0.9390435793938564
+28700,37664,1.0
+28700,37665,1.0
+28700,37686,0.9926470588235294
+28700,37694,0.09565217391304348
+28700,37711,0.6808088818398097
+28700,37731,0.7721518987341772
+28700,37811,0.9517884914463453
+28700,37857,1.0
+28700,37869,0.04690916318823296
+28700,37873,1.0
+28700,37881,0.07158446093408992
+28700,37891,0.23138444567015995
+28740,12401,1.0
+28740,12404,1.0
+28740,12406,0.13001215066828675
+28740,12409,1.0
+28740,12410,1.0
+28740,12411,1.0
+28740,12412,1.0
+28740,12416,1.0
+28740,12417,1.0
+28740,12419,1.0
+28740,12420,1.0
+28740,12428,1.0
+28740,12429,1.0
+28740,12432,1.0
+28740,12433,1.0
+28740,12435,1.0
+28740,12440,1.0
+28740,12441,0.5877192982456141
+28740,12443,1.0
+28740,12446,1.0
+28740,12448,1.0
+28740,12449,1.0
+28740,12453,1.0
+28740,12455,0.0261569416498994
+28740,12456,1.0
+28740,12457,1.0
+28740,12458,0.957611386138614
+28740,12461,1.0
+28740,12464,1.0
+28740,12465,0.9812030075187971
+28740,12466,1.0
+28740,12471,1.0
+28740,12472,1.0
+28740,12475,1.0
+28740,12477,1.0
+28740,12480,0.8974763406940063
+28740,12481,1.0
+28740,12483,0.7876447876447876
+28740,12484,1.0
+28740,12486,1.0
+28740,12487,1.0
+28740,12489,1.0
+28740,12490,1.0
+28740,12491,1.0
+28740,12493,1.0
+28740,12494,1.0
+28740,12495,1.0
+28740,12498,1.0
+28740,12515,1.0
+28740,12525,1.0
+28740,12528,1.0
+28740,12542,0.9589041095890408
+28740,12547,1.0
+28740,12548,1.0
+28740,12561,1.0
+28740,12566,0.5033944015623547
+28740,12586,0.0009569377990430623
+28740,12589,0.8031112143022986
+28740,12725,0.7111913357400722
+28740,12740,0.17868504772004246
+28740,12758,0.019544779811974267
+28940,37701,1.0
+28940,37705,1.0
+28940,37709,0.023579849946409437
+28940,37710,1.0
+28940,37714,1.0
+28940,37715,0.174
+28940,37716,1.0
+28940,37719,1.0
+28940,37721,1.0
+28940,37726,0.9121256750122728
+28940,37729,1.0
+28940,37733,1.0
+28940,37737,1.0
+28940,37742,1.0
+28940,37748,1.0
+28940,37754,0.9999999999999999
+28940,37757,1.0
+28940,37762,1.0
+28940,37763,1.0
+28940,37764,0.06696910779866062
+28940,37766,1.0
+28940,37769,1.0000000000000002
+28940,37770,1.0
+28940,37771,1.0
+28940,37772,1.0
+28940,37774,0.9925768244091479
+28940,37777,1.0
+28940,37779,0.9999999999999999
+28940,37801,0.9690335933768508
+28940,37803,1.0
+28940,37804,1.0
+28940,37806,1.0
+28940,37807,1.0
+28940,37819,1.0
+28940,37825,0.03345636385283962
+28940,37828,1.0
+28940,37829,1.0
+28940,37830,1.0
+28940,37840,1.0
+28940,37845,1.0
+28940,37846,0.6737574552683896
+28940,37847,0.4716285924834193
+28940,37848,0.27235772357723576
+28940,37849,1.0
+28940,37852,0.08209538702111024
+28940,37853,1.0
+28940,37854,0.8555080866646323
+28940,37865,0.21212700841622034
+28940,37866,1.0
+28940,37870,0.2146288209606987
+28940,37871,0.386468141011605
+28940,37872,0.9196472317491424
+28940,37874,0.03745243340676948
+28940,37878,1.0
+28940,37880,0.4331320103537533
+28940,37882,1.0
+28940,37885,0.05743043220840735
+28940,37886,1.0
+28940,37887,1.0
+28940,37888,0.08135716891645385
+28940,37902,1.0
+28940,37909,1.0
+28940,37912,1.0
+28940,37914,1.0
+28940,37915,1.0
+28940,37916,1.0
+28940,37917,1.0
+28940,37918,1.0
+28940,37919,1.0
+28940,37920,1.0
+28940,37921,1.0
+28940,37922,1.0
+28940,37923,1.0
+28940,37924,1.0
+28940,37931,1.0
+28940,37932,1.0
+28940,37934,1.0
+28940,37938,1.0
+29020,46076,0.04893867924528302
+29020,46901,0.9577498472085668
+29020,46902,0.9976188475222008
+29020,46919,0.04686192468619247
+29020,46929,0.06098319850653393
+29020,46932,0.033352668213457067
+29020,46936,1.0
+29020,46979,0.9864779209803508
+29100,54601,1.0
+29100,54603,1.0
+29100,54614,1.0
+29100,54619,0.005098139179199593
+29100,54623,0.30466321243523314
+29100,54636,1.0
+29100,54642,0.0748235294117647
+29100,54644,0.9832635983263598
+29100,54650,1.0
+29100,54653,0.8523489932885906
+29100,54656,0.0004603786614490418
+29100,54658,0.15593762495002
+29100,54661,0.00029282576866764275
+29100,54667,0.007175472928897586
+29100,54669,1.0
+29100,55919,1.0
+29100,55921,1.0
+29100,55931,1.0
+29100,55941,1.0
+29100,55943,0.8908139915004903
+29100,55947,0.8952482363902569
+29100,55954,0.06033287101248265
+29100,55971,0.04710992315402606
+29100,55974,0.9849906191369606
+29180,70339,0.06795955577656224
+29180,70380,0.04492323796231682
+29180,70392,0.00035477767265846736
+29180,70501,1.0
+29180,70503,1.0
+29180,70506,1.0
+29180,70507,1.0
+29180,70508,1.0
+29180,70510,1.0
+29180,70512,0.40194274028629856
+29180,70513,1.0
+29180,70515,0.2545596664929651
+29180,70516,1.0
+29180,70517,1.0
+29180,70518,1.0
+29180,70519,1.0
+29180,70520,0.9834827492529205
+29180,70525,0.762509505703422
+29180,70526,0.9999999999999999
+29180,70528,1.0
+29180,70529,0.9999999999999999
+29180,70531,1.0
+29180,70533,1.0
+29180,70534,1.0
+29180,70535,0.2213560252539116
+29180,70537,1.0
+29180,70542,0.9493449781659388
+29180,70543,1.0
+29180,70544,0.7461676800548086
+29180,70546,0.06593607305936074
+29180,70548,1.0
+29180,70552,1.0
+29180,70555,0.9999999999999999
+29180,70556,1.0
+29180,70558,1.0
+29180,70559,1.0
+29180,70560,1.0
+29180,70563,1.0
+29180,70575,1.0
+29180,70578,1.0
+29180,70582,1.0
+29180,70583,1.0000000000000002
+29180,70592,1.0
+29180,70757,0.002518098835379289
+29200,46041,0.006822652881838349
+29200,46058,0.02419730107026524
+29200,46065,0.2333060779503952
+29200,46913,1.0
+29200,46915,1.0
+29200,46917,1.0
+29200,46920,1.0
+29200,46923,1.0
+29200,46929,0.939016801493466
+29200,46947,0.005889281507656065
+29200,47901,1.0
+29200,47904,1.0
+29200,47905,1.0
+29200,47906,0.9990742399808875
+29200,47909,1.0
+29200,47917,1.0
+29200,47918,0.21942730580604336
+29200,47920,0.8943661971830985
+29200,47921,1.0
+29200,47923,0.10732684602175158
+29200,47924,1.0
+29200,47926,0.2898814949863264
+29200,47930,0.9771480804387568
+29200,47932,0.09501586708978907
+29200,47941,1.0
+29200,47942,1.0
+29200,47944,1.0
+29200,47948,0.025754231052244298
+29200,47950,0.07346491228070176
+29200,47955,0.03768382352941176
+29200,47960,0.13890555222288875
+29200,47967,0.09974093264248704
+29200,47970,1.0
+29200,47971,1.0
+29200,47975,1.0
+29200,47977,0.10924750679963736
+29200,47981,0.950530035335689
+29200,47982,1.0
+29200,47983,1.0
+29200,47991,1.0
+29200,47992,1.0
+29200,47993,1.0
+29200,47997,1.0
+29340,70542,0.050655021834061134
+29340,70549,0.017223910840932118
+29340,70601,1.0
+29340,70605,1.0
+29340,70607,1.0
+29340,70611,1.0
+29340,70615,1.0
+29340,70630,1.0
+29340,70631,1.0
+29340,70632,1.0
+29340,70633,0.8646764860599684
+29340,70643,1.0
+29340,70645,1.0
+29340,70646,1.0
+29340,70647,0.665058025968057
+29340,70657,0.03986095017381228
+29340,70661,0.8527501082719792
+29340,70663,1.0
+29340,70665,1.0
+29340,70668,1.0
+29340,70669,1.0
+29420,85360,1.0
+29420,86021,1.0
+29420,86022,0.3769230769230769
+29420,86401,1.0
+29420,86403,1.0
+29420,86404,1.0
+29420,86406,1.0
+29420,86409,1.0
+29420,86411,1.0
+29420,86413,1.0
+29420,86426,1.0
+29420,86429,1.0
+29420,86431,1.0
+29420,86432,1.0
+29420,86433,1.0
+29420,86434,0.938255033557047
+29420,86436,1.0
+29420,86437,1.0
+29420,86438,1.0
+29420,86440,1.0
+29420,86441,1.0
+29420,86442,1.0
+29420,86443,1.0
+29420,86444,1.0
+29420,86445,1.0
+29460,33801,1.0
+29460,33803,1.0
+29460,33805,1.0
+29460,33809,1.0
+29460,33810,0.9932887422605866
+29460,33811,1.0
+29460,33812,1.0
+29460,33813,1.0
+29460,33815,1.0
+29460,33823,1.0
+29460,33825,0.07316975382888301
+29460,33827,1.0
+29460,33830,1.0
+29460,33834,0.033029001074113856
+29460,33837,1.0
+29460,33838,1.0
+29460,33839,1.0
+29460,33841,1.0
+29460,33843,1.0
+29460,33844,1.0
+29460,33847,1.0
+29460,33849,1.0
+29460,33850,1.0
+29460,33851,1.0
+29460,33853,1.0
+29460,33854,1.0
+29460,33855,1.0
+29460,33856,1.0
+29460,33859,1.0
+29460,33860,1.0
+29460,33867,1.0
+29460,33868,1.0
+29460,33877,1.0
+29460,33880,1.0
+29460,33881,1.0
+29460,33884,1.0
+29460,33896,0.9015528418513492
+29460,33897,1.0
+29460,33898,1.0
+29460,34714,0.09853592100783112
+29460,34759,0.7853496851176666
+29540,17022,0.8852442402540369
+29540,17073,0.0018971732119142481
+29540,17501,1.0
+29540,17502,1.0
+29540,17505,1.0
+29540,17507,1.0
+29540,17508,1.0
+29540,17509,1.0
+29540,17512,1.0
+29540,17516,1.0
+29540,17517,1.0
+29540,17518,1.0
+29540,17519,1.0
+29540,17520,1.0
+29540,17522,1.0
+29540,17527,0.963157894736842
+29540,17529,1.0
+29540,17532,1.0
+29540,17535,1.0
+29540,17536,1.0
+29540,17538,1.0
+29540,17540,1.0
+29540,17543,1.0
+29540,17545,0.9742190440346256
+29540,17547,1.0
+29540,17550,1.0
+29540,17551,1.0
+29540,17552,1.0
+29540,17554,1.0
+29540,17555,0.9974750830564784
+29540,17557,1.0
+29540,17560,1.0
+29540,17562,1.0
+29540,17563,1.0
+29540,17565,1.0
+29540,17566,1.0
+29540,17569,0.8305800293685757
+29540,17570,1.0
+29540,17572,1.0
+29540,17576,1.0
+29540,17578,1.0
+29540,17579,1.0
+29540,17581,1.0
+29540,17582,1.0
+29540,17584,1.0
+29540,17601,1.0
+29540,17602,1.0
+29540,17603,1.0
+29540,17606,1.0
+29540,19310,0.030006523157208087
+29540,19344,0.025757194395502975
+29540,19362,0.3986242476354256
+29540,19363,0.02474347698622105
+29540,19501,1.0
+29540,19540,0.0757485285336518
+29540,19543,0.1495342929720576
+29540,19551,0.0073500198649185545
+29620,48414,1.0
+29620,48418,0.6001855287569573
+29620,48429,0.9748434704830052
+29620,48433,0.002490848020530626
+29620,48436,0.031880977683315624
+29620,48449,0.6034318398474738
+29620,48460,0.6343347639484979
+29620,48476,1.0
+29620,48616,0.00252894982031146
+29620,48649,0.024111675126903556
+29620,48808,1.0
+29620,48813,0.9987725427249552
+29620,48817,1.0
+29620,48819,1.0
+29620,48820,1.0
+29620,48821,1.0000000000000002
+29620,48822,1.0
+29620,48823,1.0
+29620,48825,1.0
+29620,48827,0.9970571661135809
+29620,48831,0.8248861047835991
+29620,48835,0.9906716417910448
+29620,48837,0.9893268519496988
+29620,48840,1.0
+29620,48841,0.7578692493946732
+29620,48842,1.0
+29620,48845,0.1575274177467597
+29620,48848,1.0
+29620,48849,0.02378870036732552
+29620,48853,1.0
+29620,48854,1.0
+29620,48857,1.0
+29620,48861,0.9073587385019712
+29620,48864,1.0
+29620,48866,1.0
+29620,48867,1.0
+29620,48872,0.9705357142857143
+29620,48873,0.16718266253869968
+29620,48875,0.044080109954839984
+29620,48876,1.0
+29620,48879,0.9916459197787
+29620,48890,0.599907063197026
+29620,48892,0.8124144226380648
+29620,48894,1.0
+29620,48895,1.0
+29620,48897,0.01901639344262295
+29620,48906,1.0
+29620,48910,1.0
+29620,48911,1.0
+29620,48912,1.0
+29620,48915,1.0
+29620,48917,1.0
+29620,48933,1.0
+29620,49021,0.5451310255580718
+29620,49073,0.08180165623106443
+29620,49076,0.7681412072346917
+29620,49096,1.0
+29620,49251,0.9524803339219778
+29620,49264,0.7570281124497992
+29620,49284,0.0809114927344782
+29620,49285,0.8895104895104895
+29700,78019,0.06684636118598382
+29700,78040,1.0
+29700,78041,1.0
+29700,78043,1.0
+29700,78044,1.0
+29700,78045,1.0
+29700,78046,1.0
+29700,78344,1.0
+29700,78369,1.0
+29700,78371,1.0
+29740,87936,0.8854368932038835
+29740,87937,1.0
+29740,87940,1.0
+29740,87941,1.0
+29740,88001,1.0
+29740,88002,1.0
+29740,88003,1.0
+29740,88004,1.0
+29740,88005,1.0
+29740,88007,1.0
+29740,88008,1.0
+29740,88011,1.0
+29740,88012,1.0
+29740,88021,1.0
+29740,88024,1.0
+29740,88027,1.0
+29740,88032,1.0
+29740,88033,1.0
+29740,88044,1.0
+29740,88046,1.0
+29740,88047,1.0
+29740,88048,1.0
+29740,88052,1.0
+29740,88063,0.9978904601922024
+29740,88072,1.0
+29740,88081,0.4434046345811052
+29820,89002,1.0
+29820,89004,1.0
+29820,89005,1.0
+29820,89007,1.0
+29820,89011,1.0
+29820,89012,1.0
+29820,89014,1.0
+29820,89015,1.0
+29820,89018,1.0
+29820,89019,0.9741863075196407
+29820,89021,1.0
+29820,89025,1.0
+29820,89026,1.0
+29820,89027,1.0
+29820,89029,1.0
+29820,89030,1.0
+29820,89031,1.0
+29820,89032,1.0
+29820,89039,1.0
+29820,89040,1.0
+29820,89044,1.0
+29820,89046,1.0
+29820,89052,1.0
+29820,89054,1.0
+29820,89074,1.0
+29820,89081,1.0
+29820,89084,1.0
+29820,89085,1.0
+29820,89086,1.0
+29820,89101,1.0
+29820,89102,1.0
+29820,89103,1.0
+29820,89104,1.0
+29820,89106,1.0
+29820,89107,1.0
+29820,89108,1.0
+29820,89109,1.0
+29820,89110,1.0
+29820,89113,1.0
+29820,89115,1.0
+29820,89117,1.0
+29820,89118,1.0
+29820,89119,1.0
+29820,89120,1.0
+29820,89121,1.0
+29820,89122,1.0
+29820,89123,1.0
+29820,89124,0.9829968119022316
+29820,89128,1.0
+29820,89129,1.0
+29820,89130,1.0
+29820,89131,1.0
+29820,89134,1.0
+29820,89135,1.0
+29820,89138,1.0
+29820,89139,1.0
+29820,89141,1.0
+29820,89142,1.0
+29820,89143,1.0
+29820,89144,1.0
+29820,89145,1.0
+29820,89146,1.0
+29820,89147,1.0
+29820,89148,1.0
+29820,89149,1.0
+29820,89156,1.0
+29820,89161,1.0
+29820,89166,1.0
+29820,89169,1.0
+29820,89178,1.0
+29820,89179,1.0
+29820,89183,1.0
+29820,89191,1.0
+29940,66006,0.9922241587344148
+29940,66021,0.0608728943338438
+29940,66025,0.9761163032191068
+29940,66044,0.961642678678256
+29940,66045,1.0
+29940,66046,1.0
+29940,66047,1.0
+29940,66049,1.0
+29940,66050,0.9621295279912184
+29940,66092,0.08349657198824682
+29940,66409,0.04337671004337671
+29940,66524,0.19807923169267708
+30020,73006,0.2151694459386767
+30020,73017,0.008988764044943821
+30020,73055,0.0008046670690002013
+30020,73082,0.009395973154362415
+30020,73501,1.0
+30020,73503,1.0
+30020,73505,1.0
+30020,73507,1.0
+30020,73527,1.0
+30020,73528,0.8073529411764706
+30020,73531,1.0
+30020,73533,0.0010550749103186326
+30020,73538,1.0
+30020,73540,0.9999999999999999
+30020,73541,1.0
+30020,73543,1.0
+30020,73548,0.06551059730250483
+30020,73552,1.0
+30020,73557,1.0
+30020,73559,0.012962962962962964
+30020,73562,1.0
+30020,73564,0.029038112522686024
+30020,73567,1.0
+30020,73568,1.0
+30020,73572,1.0
+30140,17003,1.0
+30140,17010,1.0
+30140,17016,1.0
+30140,17026,0.90929203539823
+30140,17028,0.2849462365591398
+30140,17033,0.003417393353759133
+30140,17038,1.0
+30140,17039,1.0
+30140,17041,1.0
+30140,17042,1.0
+30140,17046,1.0
+30140,17064,1.0
+30140,17067,0.8710652051714446
+30140,17073,0.9981028267880856
+30140,17077,1.0
+30140,17078,0.9318429122564053
+30140,17083,1.0
+30140,17087,0.741958800144561
+30140,17088,1.0
+30140,17545,0.025780955965374483
+30140,17963,0.0067618332081142
+30140,19551,0.05641636869288836
+30300,83501,1.0
+30300,83524,0.962588473205258
+30300,83535,0.3774104683195592
+30300,83537,0.22509578544061304
+30300,83540,1.0
+30300,83541,0.4702602230483272
+30300,83545,1.0
+30300,83548,0.3162393162393162
+30300,83555,0.062056737588652475
+30300,83832,0.12139107611548555
+30300,99401,1.0
+30300,99402,1.0
+30300,99403,0.9962656026191936
+30340,04210,1.0
+30340,04222,1.0
+30340,04228,1.0
+30340,04236,1.0
+30340,04240,1.0
+30340,04250,1.0
+30340,04252,1.0
+30340,04253,1.0
+30340,04254,1.0
+30340,04256,1.0
+30340,04258,1.0
+30340,04263,1.0
+30340,04274,1.0
+30340,04280,1.0
+30340,04282,1.0
+30460,40311,0.07800922689780512
+30460,40324,1.0
+30460,40339,1.0
+30460,40347,0.9768702565955909
+30460,40348,1.0
+30460,40353,0.008855094085374658
+30460,40356,1.0
+30460,40361,0.9992864983534577
+30460,40370,0.7488237423090843
+30460,40374,0.004112808460634548
+30460,40379,0.9403892944038929
+30460,40383,0.9999999999999999
+30460,40390,1.0
+30460,40391,1.0
+30460,40502,1.0
+30460,40503,1.0
+30460,40504,1.0
+30460,40505,1.0
+30460,40506,1.0
+30460,40507,1.0
+30460,40508,1.0
+30460,40509,1.0
+30460,40510,1.0
+30460,40511,1.0
+30460,40513,1.0
+30460,40514,1.0
+30460,40515,1.0
+30460,40516,1.0
+30460,40517,1.0
+30460,40601,0.013416454827906226
+30460,41010,0.0335716506061548
+30460,41031,0.0008812791136850056
+30620,45801,1.0
+30620,45804,1.0
+30620,45805,1.0
+30620,45806,0.7642946764653163
+30620,45807,1.0
+30620,45808,1.0
+30620,45809,1.0
+30620,45810,0.025768321513002363
+30620,45817,0.8255641330166271
+30620,45820,1.0
+30620,45830,0.20616570327552985
+30620,45833,0.5534827036655104
+30620,45844,0.02395577395577396
+30620,45850,0.9063783191897072
+30620,45854,1.0
+30620,45877,0.04488078541374474
+30620,45887,0.8018927444794953
+30620,45896,0.09334609861177597
+30700,68017,0.1566193853427896
+30700,68065,0.2503311258278146
+30700,68301,0.13847203274215553
+30700,68313,1.0
+30700,68314,1.0
+30700,68317,0.988628762541806
+30700,68333,0.06857211480725353
+30700,68336,1.0
+30700,68339,1.0
+30700,68343,0.021904761904761903
+30700,68347,0.033073929961089495
+30700,68358,0.7932871603622802
+30700,68359,0.14511041009463724
+30700,68360,1.0
+30700,68364,1.0
+30700,68366,0.09073543457497613
+30700,68367,0.1735357917570499
+30700,68368,1.0
+30700,68372,1.0
+30700,68402,1.0
+30700,68404,1.0
+30700,68405,1.0
+30700,68419,1.0
+30700,68423,1.0
+30700,68428,0.9999999999999999
+30700,68430,1.0
+30700,68434,1.0
+30700,68438,1.0
+30700,68439,1.0
+30700,68456,1.0
+30700,68461,1.0
+30700,68462,0.9921609615887118
+30700,68502,1.0
+30700,68503,1.0
+30700,68504,1.0
+30700,68505,1.0
+30700,68506,1.0
+30700,68507,1.0
+30700,68508,1.0
+30700,68510,1.0
+30700,68512,1.0
+30700,68514,1.0
+30700,68516,1.0
+30700,68517,1.0
+30700,68520,1.0
+30700,68521,1.0
+30700,68522,1.0
+30700,68523,1.0
+30700,68524,1.0
+30700,68526,1.0
+30700,68527,1.0
+30700,68528,1.0
+30700,68531,1.0
+30700,68532,1.0
+30780,71602,0.013624735846958069
+30780,71603,0.002504149317182541
+30780,71909,0.3490456538560743
+30780,72001,0.7809187279151943
+30780,72002,1.0
+30780,72007,1.0
+30780,72011,1.0
+30780,72015,1.0
+30780,72016,1.0
+30780,72019,1.0
+30780,72022,1.0
+30780,72023,1.0
+30780,72024,0.9383108287000264
+30780,72025,0.8040141676505312
+30780,72032,1.0
+30780,72034,1.0
+30780,72035,1.0
+30780,72037,1.0
+30780,72039,0.5739089629282027
+30780,72046,0.9384787472035795
+30780,72047,1.0
+30780,72057,1.0
+30780,72058,1.0
+30780,72061,1.0
+30780,72065,1.0
+30780,72070,1.0
+30780,72072,1.0
+30780,72076,1.0
+30780,72079,0.05725190839694656
+30780,72083,1.0
+30780,72084,0.6216436126932465
+30780,72086,1.0
+30780,72087,0.6031204290589957
+30780,72099,1.0
+30780,72103,1.0
+30780,72104,0.009206131711912306
+30780,72106,1.0
+30780,72111,0.6417033773861968
+30780,72113,1.0
+30780,72114,1.0
+30780,72116,1.0
+30780,72117,1.0
+30780,72118,1.0
+30780,72119,1.0
+30780,72120,1.0
+30780,72122,0.9999999999999998
+30780,72125,0.6674033149171271
+30780,72126,1.0
+30780,72128,1.0
+30780,72129,1.0
+30780,72131,0.2621464046642194
+30780,72132,0.18476249228871067
+30780,72135,1.0
+30780,72142,1.0
+30780,72150,0.9900882891887388
+30780,72160,0.003912071535022355
+30780,72167,0.7405468295520652
+30780,72173,0.9959242123815818
+30780,72176,0.9577447488023584
+30780,72181,1.0
+30780,72201,1.0
+30780,72202,1.0
+30780,72204,1.0
+30780,72205,1.0
+30780,72206,1.0
+30780,72207,1.0
+30780,72209,1.0
+30780,72210,1.0
+30780,72211,1.0
+30780,72212,1.0
+30780,72223,1.0
+30780,72227,1.0
+30780,72853,0.05953991880920163
+30780,72857,0.21608391608391608
+30860,83228,1.0
+30860,83232,1.0
+30860,83237,1.0
+30860,83241,0.002525252525252525
+30860,83263,1.0
+30860,83283,1.0
+30860,83286,1.0
+30860,84304,1.0
+30860,84305,1.0
+30860,84308,1.0
+30860,84318,1.0
+30860,84319,1.0
+30860,84320,1.0
+30860,84321,1.0
+30860,84325,1.0
+30860,84326,1.0
+30860,84327,1.0
+30860,84328,1.0
+30860,84332,1.0
+30860,84333,1.0
+30860,84335,1.0
+30860,84338,1.0
+30860,84339,1.0
+30860,84341,1.0
+30980,75494,0.011047689191677408
+30980,75601,1.0
+30980,75602,1.0
+30980,75603,1.0
+30980,75604,1.0
+30980,75605,1.0
+30980,75640,0.9836629406706793
+30980,75641,1.0
+30980,75642,1.0
+30980,75644,1.0
+30980,75645,1.0
+30980,75647,0.9066383752652318
+30980,75650,1.0
+30980,75651,0.9725902238465052
+30980,75652,1.0
+30980,75654,0.998791978738826
+30980,75657,0.03528983749696823
+30980,75661,1.0
+30980,75662,0.9820671666123247
+30980,75667,1.0
+30980,75669,0.2095709570957096
+30980,75670,1.0
+30980,75672,1.0
+30980,75681,1.0
+30980,75682,1.0
+30980,75683,0.7922841083290751
+30980,75684,0.8921568627450981
+30980,75686,0.06114747785906816
+30980,75691,0.9324484474994076
+30980,75692,1.0
+30980,75693,1.0
+30980,75755,0.9860115404791048
+30980,75760,0.1384850803366488
+30980,75765,0.002629157355067701
+30980,75784,0.480243161094225
+30980,75789,0.006716712761754247
+30980,75946,0.21240916713247626
+30980,75975,0.025952960259529603
+31020,98581,1.0
+31020,98601,0.04393024815560027
+31020,98603,1.0
+31020,98611,1.0
+31020,98616,0.7466666666666667
+31020,98625,1.0
+31020,98626,1.0
+31020,98632,0.9992480438979778
+31020,98645,1.0
+31020,98649,1.0
+31020,98674,0.7851858009809627
+31080,90001,1.0
+31080,90002,1.0
+31080,90003,1.0
+31080,90004,1.0
+31080,90005,1.0
+31080,90006,1.0
+31080,90007,1.0
+31080,90008,1.0
+31080,90010,1.0
+31080,90011,1.0
+31080,90012,1.0
+31080,90013,1.0
+31080,90014,1.0
+31080,90015,1.0
+31080,90016,1.0
+31080,90017,1.0
+31080,90018,1.0
+31080,90019,1.0
+31080,90020,1.0
+31080,90021,1.0
+31080,90022,1.0
+31080,90023,1.0
+31080,90024,1.0
+31080,90025,1.0
+31080,90026,1.0
+31080,90027,1.0
+31080,90028,1.0
+31080,90029,1.0
+31080,90031,1.0
+31080,90032,1.0
+31080,90033,1.0
+31080,90034,1.0
+31080,90035,1.0
+31080,90036,1.0
+31080,90037,1.0
+31080,90038,1.0
+31080,90039,1.0
+31080,90040,1.0
+31080,90041,1.0
+31080,90042,1.0
+31080,90043,1.0
+31080,90044,1.0
+31080,90045,1.0
+31080,90046,1.0
+31080,90047,1.0
+31080,90048,1.0
+31080,90049,1.0
+31080,90056,1.0
+31080,90057,1.0
+31080,90058,1.0
+31080,90059,1.0
+31080,90061,1.0
+31080,90062,1.0
+31080,90063,1.0
+31080,90064,1.0
+31080,90065,1.0
+31080,90066,1.0
+31080,90067,1.0
+31080,90068,1.0
+31080,90069,1.0
+31080,90071,1.0
+31080,90073,1.0
+31080,90077,1.0
+31080,90089,1.0
+31080,90094,1.0
+31080,90095,1.0
+31080,90201,1.0
+31080,90210,1.0
+31080,90211,1.0
+31080,90212,1.0
+31080,90220,1.0
+31080,90221,1.0
+31080,90222,1.0
+31080,90230,1.0
+31080,90232,1.0
+31080,90240,1.0
+31080,90241,1.0
+31080,90242,1.0
+31080,90245,1.0
+31080,90247,1.0
+31080,90248,1.0
+31080,90249,1.0
+31080,90250,1.0
+31080,90254,1.0
+31080,90255,1.0
+31080,90260,1.0
+31080,90262,1.0
+31080,90263,1.0
+31080,90265,0.9668249061603004
+31080,90266,1.0
+31080,90270,1.0
+31080,90272,1.0
+31080,90274,1.0
+31080,90275,1.0
+31080,90277,1.0
+31080,90278,1.0
+31080,90280,1.0
+31080,90290,1.0
+31080,90291,1.0
+31080,90292,1.0
+31080,90293,1.0
+31080,90301,1.0
+31080,90302,1.0
+31080,90303,1.0
+31080,90304,1.0
+31080,90305,1.0
+31080,90401,1.0
+31080,90402,1.0
+31080,90403,1.0
+31080,90404,1.0
+31080,90405,1.0
+31080,90501,1.0
+31080,90502,1.0
+31080,90503,1.0
+31080,90504,1.0
+31080,90505,1.0
+31080,90601,1.0
+31080,90602,1.0
+31080,90603,1.0
+31080,90604,1.0
+31080,90605,1.0
+31080,90606,1.0
+31080,90620,1.0
+31080,90621,1.0
+31080,90623,1.0
+31080,90630,1.0
+31080,90631,1.0
+31080,90638,0.9999999999999999
+31080,90640,1.0
+31080,90650,1.0
+31080,90660,1.0
+31080,90670,1.0
+31080,90680,1.0
+31080,90701,1.0
+31080,90703,1.0
+31080,90704,1.0
+31080,90706,1.0
+31080,90710,1.0
+31080,90712,1.0
+31080,90713,1.0
+31080,90715,1.0
+31080,90716,1.0
+31080,90717,1.0
+31080,90720,1.0
+31080,90723,1.0
+31080,90731,1.0
+31080,90732,1.0
+31080,90740,0.9999999999999999
+31080,90742,1.0
+31080,90743,1.0
+31080,90744,1.0
+31080,90745,1.0
+31080,90746,1.0
+31080,90755,1.0
+31080,90802,1.0
+31080,90803,1.0
+31080,90804,1.0
+31080,90805,1.0
+31080,90806,1.0
+31080,90807,1.0
+31080,90808,1.0
+31080,90810,1.0
+31080,90813,1.0
+31080,90814,1.0
+31080,90815,1.0
+31080,90822,1.0
+31080,91001,1.0
+31080,91006,1.0
+31080,91007,1.0
+31080,91008,1.0
+31080,91010,1.0
+31080,91011,1.0
+31080,91016,1.0
+31080,91020,1.0
+31080,91024,1.0
+31080,91030,1.0
+31080,91040,1.0
+31080,91042,1.0
+31080,91046,1.0
+31080,91101,1.0
+31080,91103,1.0
+31080,91104,1.0
+31080,91105,1.0
+31080,91106,1.0
+31080,91107,1.0
+31080,91108,1.0
+31080,91201,1.0
+31080,91202,1.0
+31080,91203,1.0
+31080,91204,1.0
+31080,91205,1.0
+31080,91206,1.0
+31080,91207,1.0
+31080,91208,1.0
+31080,91210,1.0
+31080,91214,1.0
+31080,91301,1.0
+31080,91302,1.0
+31080,91303,1.0
+31080,91304,0.9952021659931118
+31080,91306,1.0
+31080,91307,0.9162784996322628
+31080,91311,0.9926689826845748
+31080,91316,1.0
+31080,91321,1.0
+31080,91324,1.0
+31080,91325,1.0
+31080,91326,1.0
+31080,91330,1.0
+31080,91331,1.0
+31080,91335,1.0
+31080,91340,1.0
+31080,91342,1.0
+31080,91343,1.0
+31080,91344,1.0
+31080,91345,1.0
+31080,91350,1.0
+31080,91351,1.0
+31080,91352,1.0
+31080,91354,1.0
+31080,91355,1.0
+31080,91356,1.0
+31080,91361,0.3493492513944613
+31080,91362,0.033707865168539325
+31080,91364,1.0
+31080,91367,1.0
+31080,91371,1.0
+31080,91381,1.0
+31080,91384,1.0
+31080,91387,1.0
+31080,91390,1.0
+31080,91401,1.0
+31080,91402,1.0
+31080,91403,1.0
+31080,91405,1.0
+31080,91406,1.0
+31080,91411,1.0
+31080,91423,1.0
+31080,91436,1.0
+31080,91501,1.0
+31080,91502,1.0
+31080,91504,1.0
+31080,91505,1.0
+31080,91506,1.0
+31080,91601,1.0
+31080,91602,1.0
+31080,91604,1.0
+31080,91605,1.0
+31080,91606,1.0
+31080,91607,1.0
+31080,91702,1.0
+31080,91706,1.0
+31080,91711,1.0
+31080,91722,1.0
+31080,91723,1.0
+31080,91724,1.0
+31080,91731,1.0
+31080,91732,1.0
+31080,91733,1.0
+31080,91740,1.0
+31080,91741,1.0
+31080,91744,1.0
+31080,91745,1.0
+31080,91746,1.0
+31080,91748,1.0
+31080,91750,1.0
+31080,91754,1.0
+31080,91755,1.0
+31080,91759,0.13865546218487396
+31080,91765,1.0
+31080,91766,0.934398525119066
+31080,91767,1.0
+31080,91768,1.0
+31080,91770,1.0
+31080,91773,1.0
+31080,91775,1.0
+31080,91776,1.0
+31080,91780,1.0
+31080,91789,1.0
+31080,91790,1.0
+31080,91791,1.0
+31080,91792,1.0
+31080,91801,1.0
+31080,91803,1.0
+31080,92397,0.014507560277891298
+31080,92530,0.00027879560299506136
+31080,92602,1.0
+31080,92603,1.0
+31080,92604,1.0
+31080,92606,1.0
+31080,92610,1.0
+31080,92612,1.0
+31080,92614,1.0
+31080,92617,1.0
+31080,92618,1.0
+31080,92620,1.0
+31080,92624,1.0
+31080,92625,1.0
+31080,92626,1.0
+31080,92627,1.0
+31080,92629,1.0
+31080,92630,1.0
+31080,92637,1.0
+31080,92646,1.0
+31080,92647,1.0
+31080,92648,1.0
+31080,92649,1.0
+31080,92651,1.0
+31080,92653,1.0
+31080,92655,1.0
+31080,92656,1.0
+31080,92657,1.0
+31080,92660,1.0
+31080,92661,1.0
+31080,92662,1.0
+31080,92663,1.0
+31080,92672,0.9921657381615598
+31080,92673,1.0
+31080,92675,1.0
+31080,92676,1.0
+31080,92677,1.0
+31080,92678,1.0
+31080,92679,1.0
+31080,92683,1.0
+31080,92688,1.0
+31080,92691,1.0
+31080,92692,1.0
+31080,92694,1.0
+31080,92701,1.0
+31080,92703,1.0
+31080,92704,1.0
+31080,92705,1.0
+31080,92706,1.0
+31080,92707,1.0
+31080,92708,1.0
+31080,92780,1.0
+31080,92782,1.0
+31080,92801,1.0
+31080,92802,1.0
+31080,92804,1.0
+31080,92805,1.0
+31080,92806,1.0
+31080,92807,1.0
+31080,92808,1.0
+31080,92821,1.0
+31080,92823,1.0
+31080,92831,1.0
+31080,92832,1.0
+31080,92833,1.0
+31080,92835,1.0
+31080,92840,1.0
+31080,92841,1.0
+31080,92843,1.0
+31080,92844,1.0
+31080,92845,1.0
+31080,92861,1.0
+31080,92865,1.0
+31080,92866,1.0
+31080,92867,1.0
+31080,92868,1.0
+31080,92869,1.0
+31080,92870,1.0
+31080,92886,1.0
+31080,92887,1.0
+31080,93243,0.07828134196586227
+31080,93510,1.0
+31080,93532,1.0
+31080,93534,1.0
+31080,93535,1.0
+31080,93536,1.0
+31080,93543,1.0
+31080,93544,1.0
+31080,93550,1.0
+31080,93551,1.0
+31080,93552,1.0
+31080,93553,1.0
+31080,93560,0.0026441036488630354
+31080,93563,1.0
+31080,93591,1.0
+31140,40003,0.928496319663512
+31140,40007,1.0
+31140,40008,0.07422324510932106
+31140,40010,1.0
+31140,40011,0.8148293448411141
+31140,40013,0.1499348109517601
+31140,40014,1.0
+31140,40019,1.0
+31140,40022,1.0
+31140,40023,1.0
+31140,40025,1.0
+31140,40026,1.0
+31140,40031,1.0
+31140,40036,1.0
+31140,40041,1.0
+31140,40046,0.8966111430212522
+31140,40047,0.9999999999999999
+31140,40050,1.0
+31140,40055,0.7442922374429224
+31140,40056,1.0
+31140,40057,1.0
+31140,40058,1.0
+31140,40059,0.9999999999999999
+31140,40065,0.9999999999999999
+31140,40067,1.0
+31140,40068,1.0
+31140,40070,1.0
+31140,40071,1.0
+31140,40075,0.8420256991685563
+31140,40076,0.904610492845787
+31140,40077,1.0
+31140,40109,1.0
+31140,40110,1.0
+31140,40118,1.0
+31140,40150,0.9787960029246892
+31140,40165,1.0
+31140,40177,0.35133287764866716
+31140,40202,1.0
+31140,40203,1.0
+31140,40204,1.0
+31140,40205,1.0
+31140,40206,1.0
+31140,40207,1.0
+31140,40208,1.0
+31140,40209,1.0
+31140,40210,1.0
+31140,40211,1.0
+31140,40212,1.0
+31140,40213,1.0
+31140,40214,1.0
+31140,40215,1.0
+31140,40216,1.0
+31140,40217,1.0
+31140,40218,1.0
+31140,40219,1.0
+31140,40220,1.0
+31140,40222,1.0
+31140,40223,1.0
+31140,40228,1.0
+31140,40229,1.0
+31140,40241,1.0
+31140,40242,1.0
+31140,40243,1.0
+31140,40245,0.9999999999999999
+31140,40258,1.0
+31140,40272,1.0
+31140,40280,1.0
+31140,40291,1.0
+31140,40299,1.0
+31140,40601,0.0122462978654723
+31140,47104,1.0
+31140,47106,1.0
+31140,47108,0.9882257409663012
+31140,47110,1.0
+31140,47111,1.0
+31140,47112,1.0
+31140,47114,1.0
+31140,47115,1.0
+31140,47117,0.9999999999999999
+31140,47119,1.0000000000000002
+31140,47120,1.0
+31140,47122,1.0
+31140,47124,1.0
+31140,47125,0.6085645355850422
+31140,47126,1.0
+31140,47129,1.0
+31140,47130,1.0
+31140,47135,1.0
+31140,47136,1.0
+31140,47141,1.0
+31140,47142,1.0
+31140,47143,1.0
+31140,47147,0.6222222222222222
+31140,47150,1.0
+31140,47160,1.0
+31140,47161,1.0
+31140,47162,1.0
+31140,47163,1.0
+31140,47164,1.0
+31140,47165,0.9999999999999999
+31140,47166,1.0
+31140,47167,1.0
+31140,47170,0.07191618790131801
+31140,47172,1.0
+31140,47177,0.5552825552825553
+31140,47281,0.29003021148036257
+31180,79235,0.012261935820506132
+31180,79250,0.057692307692307696
+31180,79311,0.2882438316400581
+31180,79322,1.0
+31180,79329,1.0
+31180,79343,1.0000000000000002
+31180,79345,0.03260869565217391
+31180,79350,1.0
+31180,79351,0.7677224736048266
+31180,79356,0.0187018701870187
+31180,79357,1.0
+31180,79358,0.0492831541218638
+31180,79363,0.9910597876699572
+31180,79364,0.9873959862946649
+31180,79366,1.0
+31180,79370,0.08258337744838537
+31180,79373,1.0
+31180,79381,1.0
+31180,79382,1.0
+31180,79401,1.0
+31180,79403,1.0
+31180,79404,1.0
+31180,79406,1.0
+31180,79407,0.9504929725194042
+31180,79410,1.0
+31180,79411,1.0
+31180,79412,1.0
+31180,79413,1.0
+31180,79414,1.0
+31180,79415,1.0
+31180,79416,1.0
+31180,79423,0.9999999999999999
+31180,79424,1.0
+31340,22922,0.04114400401404917
+31340,22967,0.1334355828220859
+31340,23958,0.4845425867507887
+31340,23960,0.01708542713567839
+31340,23963,0.20272572402044295
+31340,24064,0.2889381422526698
+31340,24095,1.0
+31340,24101,0.14562948467058054
+31340,24104,1.0
+31340,24121,0.6427959241976955
+31340,24122,1.0
+31340,24139,0.11304347826086955
+31340,24174,1.0
+31340,24179,0.29823807477438763
+31340,24483,0.22146507666098808
+31340,24501,1.0
+31340,24502,1.0
+31340,24503,1.0
+31340,24504,0.9999999999999998
+31340,24517,1.0
+31340,24521,0.9775907715582449
+31340,24522,0.9956583089113209
+31340,24523,0.6716969185310258
+31340,24526,1.0
+31340,24528,0.8296875
+31340,24536,1.0
+31340,24538,1.0
+31340,24550,1.0
+31340,24551,1.0
+31340,24553,0.5189274447949528
+31340,24554,1.0
+31340,24556,1.0
+31340,24569,0.14849624060150374
+31340,24570,1.0
+31340,24571,1.0
+31340,24572,1.0
+31340,24574,1.0
+31340,24588,1.0
+31340,24593,1.0
+31340,24595,1.0
+31420,30204,0.015785963091973616
+31420,30233,0.09109311740890688
+31420,31008,0.12420744594374898
+31420,31014,0.0288601337598139
+31420,31016,0.6176664469347396
+31420,31017,0.5299748110831234
+31420,31020,1.0
+31420,31029,0.999693006692454
+31420,31030,0.13806186436212256
+31420,31031,0.125
+31420,31032,1.0
+31420,31033,0.8537593984962406
+31420,31038,0.3692509855453351
+31420,31044,0.9704568876674682
+31420,31046,1.0
+31420,31050,1.0
+31420,31052,1.0
+31420,31061,0.0007084904582333447
+31420,31066,0.9999999999999999
+31420,31078,1.0
+31420,31097,0.040706605222734255
+31420,31201,1.0
+31420,31204,1.0
+31420,31206,1.0
+31420,31207,1.0
+31420,31210,1.0000000000000002
+31420,31211,1.0
+31420,31216,1.0
+31420,31217,1.0000000000000002
+31420,31220,1.0
+31460,93601,0.9476165531691986
+31460,93604,1.0
+31460,93610,0.9919019846431418
+31460,93614,1.0
+31460,93622,0.05041227429287131
+31460,93623,0.028985507246376805
+31460,93626,0.2406181015452539
+31460,93636,1.0
+31460,93637,1.0
+31460,93638,1.0
+31460,93643,1.0
+31460,93644,1.0
+31460,93645,1.0
+31460,93653,0.9186330349877948
+31460,93669,1.0
+31540,53502,1.0
+31540,53503,1.0
+31540,53504,0.2715930902111324
+31540,53506,1.0
+31540,53507,1.0
+31540,53508,1.0
+31540,53515,1.0
+31540,53516,0.48466542750929376
+31540,53517,1.0
+31540,53520,0.8145374449339207
+31540,53521,0.9187636761487965
+31540,53522,0.9327188940092166
+31540,53523,0.5122246918569408
+31540,53526,1.0
+31540,53527,1.0
+31540,53528,1.0
+31540,53529,1.0
+31540,53531,1.0
+31540,53532,1.0
+31540,53533,1.0
+31540,53534,0.1815496872828353
+31540,53543,0.9518586227909812
+31540,53544,1.0
+31540,53550,1.0
+31540,53553,1.0
+31540,53554,0.11904761904761905
+31540,53555,1.0
+31540,53558,1.0
+31540,53559,0.9980207817911924
+31540,53560,1.0000000000000002
+31540,53561,0.15698393077873918
+31540,53562,1.0
+31540,53565,0.876810073452256
+31540,53566,1.0
+31540,53569,0.24502164502164506
+31540,53570,1.0
+31540,53571,1.0
+31540,53572,0.9999999999999999
+31540,53573,0.07740039190071847
+31540,53574,1.0000000000000002
+31540,53575,1.0
+31540,53578,0.11715057393652938
+31540,53580,1.0
+31540,53582,1.0
+31540,53583,0.26257177657908476
+31540,53588,0.09394162374294823
+31540,53589,0.999021979718948
+31540,53590,1.0
+31540,53593,1.0
+31540,53594,0.03674183514774495
+31540,53597,1.0
+31540,53598,1.0
+31540,53703,1.0
+31540,53704,1.0
+31540,53705,1.0
+31540,53706,1.0
+31540,53711,1.0
+31540,53713,1.0
+31540,53714,1.0
+31540,53715,1.0
+31540,53716,1.0
+31540,53717,1.0
+31540,53718,1.0
+31540,53719,1.0
+31540,53726,1.0
+31540,53818,0.0017228811874627262
+31540,53901,0.9963309103496021
+31540,53911,0.9999999999999999
+31540,53913,0.0003520949650419999
+31540,53923,0.8884652049571021
+31540,53925,0.8437218866469606
+31540,53926,0.18243243243243246
+31540,53928,1.0
+31540,53932,0.9782355227361056
+31540,53935,1.0
+31540,53954,0.9812301472711522
+31540,53955,1.0
+31540,53956,0.38151309979393583
+31540,53960,1.0
+31540,53965,0.30428928640123104
+31540,53969,1.0
+31700,03031,1.0
+31700,03033,1.0
+31700,03043,1.0
+31700,03045,1.0
+31700,03047,1.0
+31700,03048,1.0
+31700,03049,1.0
+31700,03051,1.0
+31700,03052,1.0
+31700,03054,1.0
+31700,03055,1.0
+31700,03057,1.0
+31700,03060,1.0
+31700,03062,1.0
+31700,03063,1.0
+31700,03064,1.0
+31700,03070,1.0
+31700,03071,1.0
+31700,03076,1.0
+31700,03082,1.0
+31700,03084,1.0
+31700,03086,1.0
+31700,03101,1.0
+31700,03102,1.0
+31700,03103,1.0
+31700,03104,0.9976522958716996
+31700,03109,1.0
+31700,03110,1.0
+31700,03244,1.0
+31700,03281,1.0
+31700,03440,1.0
+31700,03442,1.0
+31700,03449,1.0
+31700,03458,0.9989462592202318
+31740,66407,0.7202505219206681
+31740,66411,0.047987616099071206
+31740,66422,0.8234086242299795
+31740,66427,0.020296643247462918
+31740,66432,0.9090909090909092
+31740,66441,0.9948403499588724
+31740,66442,1.0
+31740,66449,1.0
+31740,66502,0.9992246294184721
+31740,66503,1.0
+31740,66506,1.0
+31740,66514,1.0
+31740,66517,1.0
+31740,66520,1.0
+31740,66521,0.9621409921671018
+31740,66531,1.0
+31740,66535,1.0
+31740,66536,0.9510453850076492
+31740,66547,0.9519495864513589
+31740,66549,1.0
+31740,66554,1.0
+31740,66834,0.10377358490566037
+31740,66849,0.1670103092783505
+31740,66872,0.015873015873015872
+31740,66933,0.0436241610738255
+31740,67432,0.0013291244392756273
+31740,67447,0.240625
+31740,67487,0.015471167369901546
+31860,55332,0.06191467221644121
+31860,55334,0.019054100034025183
+31860,55335,0.08410067526089625
+31860,56001,1.0
+31860,56003,1.0
+31860,56010,1.0
+31860,56021,1.0
+31860,56024,1.0
+31860,56034,1.0
+31860,56037,1.0
+31860,56048,0.1216008209338122
+31860,56054,0.9328277356446372
+31860,56055,1.0
+31860,56058,0.022556390977443608
+31860,56062,0.06265586034912718
+31860,56063,0.7345814977973568
+31860,56065,1.0
+31860,56068,0.15731370745170192
+31860,56073,0.08419356763530043
+31860,56074,1.0
+31860,56078,0.7584033613445378
+31860,56080,1.0
+31860,56082,0.9437375891740826
+31860,56088,0.024665981500513873
+31860,56090,1.0
+31900,43019,0.009195402298850576
+31900,44805,0.01307775544906477
+31900,44813,0.8653583405788101
+31900,44822,0.6882716049382716
+31900,44827,0.09778779766098353
+31900,44833,0.024239238362245195
+31900,44837,0.21067789100575987
+31900,44843,0.9861751152073732
+31900,44864,0.216916354556804
+31900,44865,0.4813628421665696
+31900,44875,0.9934143870314084
+31900,44878,0.9567842389577376
+31900,44901,1.0
+31900,44902,1.0
+31900,44903,0.9841028044684008
+31900,44904,0.9062994390910398
+31900,44905,1.0
+31900,44906,1.0
+31900,44907,1.0
+32420,00660,1.0
+32420,00669,0.006186121570736954
+32420,00670,0.9887835219741
+32420,00680,0.9701410388716891
+32420,00682,1.0
+32580,78501,1.0
+32580,78503,1.0
+32580,78504,1.0
+32580,78516,1.0
+32580,78537,1.0
+32580,78538,1.0
+32580,78539,1.0
+32580,78541,1.0
+32580,78542,1.0
+32580,78543,1.0
+32580,78549,1.0
+32580,78557,1.0
+32580,78558,1.0
+32580,78560,1.0
+32580,78562,1.0
+32580,78563,1.0
+32580,78565,1.0
+32580,78569,0.02129239910869027
+32580,78570,1.0
+32580,78572,1.0
+32580,78573,1.0
+32580,78574,1.0
+32580,78576,1.0
+32580,78577,1.0
+32580,78579,1.0
+32580,78589,1.0
+32580,78595,1.0
+32580,78596,1.0
+32780,97497,0.006565988181221274
+32780,97501,1.0
+32780,97502,1.0
+32780,97503,1.0
+32780,97504,1.0
+32780,97520,1.0
+32780,97522,1.0
+32780,97524,1.0
+32780,97525,1.0
+32780,97526,0.0052331530478000295
+32780,97527,0.04342538486637202
+32780,97530,1.0
+32780,97535,1.0
+32780,97536,1.0
+32780,97537,1.0
+32780,97539,1.0
+32780,97540,1.0
+32780,97541,1.0
+32820,38002,1.0
+32820,38004,1.0
+32820,38011,1.0000000000000002
+32820,38015,1.0
+32820,38016,1.0
+32820,38017,0.9999999999999999
+32820,38018,1.0
+32820,38019,1.0
+32820,38023,1.0
+32820,38028,1.0
+32820,38029,1.0
+32820,38036,1.0
+32820,38039,0.1607538802660754
+32820,38042,0.01507537688442211
+32820,38046,1.0
+32820,38049,1.0
+32820,38053,1.0
+32820,38054,1.0
+32820,38057,1.0
+32820,38058,1.0
+32820,38060,1.0
+32820,38066,1.0
+32820,38068,1.0
+32820,38069,0.15361952861952866
+32820,38075,0.04930795847750865
+32820,38076,1.0
+32820,38103,1.0
+32820,38104,1.0
+32820,38105,1.0
+32820,38106,1.0
+32820,38107,1.0
+32820,38108,1.0
+32820,38109,1.0
+32820,38111,1.0
+32820,38112,1.0
+32820,38114,1.0
+32820,38115,1.0
+32820,38116,1.0
+32820,38117,1.0
+32820,38118,1.0
+32820,38119,1.0
+32820,38120,1.0
+32820,38122,1.0
+32820,38125,1.0
+32820,38126,1.0
+32820,38127,1.0
+32820,38128,1.0
+32820,38132,1.0
+32820,38133,1.0
+32820,38134,1.0
+32820,38135,1.0
+32820,38138,1.0
+32820,38139,1.0
+32820,38141,1.0
+32820,38152,1.0
+32820,38611,1.0
+32820,38618,0.9999999999999999
+32820,38619,0.02378097521982414
+32820,38626,0.7479674796747967
+32820,38632,1.0
+32820,38635,0.9669405934383037
+32820,38637,1.0
+32820,38641,1.0
+32820,38642,0.4454976303317536
+32820,38651,1.0
+32820,38654,1.0
+32820,38659,0.9060190073917634
+32820,38661,1.0
+32820,38664,1.0
+32820,38665,0.8125232948192322
+32820,38668,1.0
+32820,38670,0.09135399673735728
+32820,38671,1.0
+32820,38672,1.0
+32820,38676,1.0
+32820,38680,1.0
+32820,38685,0.9146250927988122
+32820,72301,1.0
+32820,72325,1.0
+32820,72327,1.0
+32820,72331,0.9670226130653268
+32820,72332,1.0
+32820,72338,0.17307692307692307
+32820,72339,1.0
+32820,72348,0.2779491133384734
+32820,72364,1.0
+32820,72376,1.0
+32820,72384,1.0
+32820,72386,0.10635903207653348
+32900,93610,0.008098015356858139
+32900,93620,0.9386925242414764
+32900,93622,0.004592422502870264
+32900,93635,1.0
+32900,93665,1.0
+32900,95301,1.0
+32900,95303,1.0
+32900,95312,1.0
+32900,95315,1.0
+32900,95317,1.0
+32900,95322,1.0
+32900,95324,1.0
+32900,95333,1.0
+32900,95334,1.0
+32900,95340,1.0
+32900,95341,1.0
+32900,95348,1.0
+32900,95360,0.015454234972677597
+32900,95365,1.0
+32900,95369,0.9272065514103732
+32900,95374,1.0
+32900,95380,0.037838887405645484
+32900,95388,1.0
+33100,33004,1.0
+33100,33009,1.0
+33100,33010,1.0
+33100,33012,1.0
+33100,33013,1.0
+33100,33014,1.0
+33100,33015,1.0
+33100,33016,1.0
+33100,33018,1.0
+33100,33019,1.0
+33100,33020,1.0
+33100,33021,1.0
+33100,33023,1.0
+33100,33024,1.0
+33100,33025,1.0
+33100,33026,1.0
+33100,33027,1.0
+33100,33028,1.0
+33100,33029,1.0
+33100,33030,1.0
+33100,33031,1.0
+33100,33032,1.0
+33100,33033,1.0
+33100,33034,0.99983882232848
+33100,33035,1.0
+33100,33039,1.0
+33100,33054,1.0
+33100,33055,1.0
+33100,33056,1.0
+33100,33060,1.0
+33100,33062,1.0
+33100,33063,1.0
+33100,33064,1.0
+33100,33065,1.0
+33100,33066,1.0
+33100,33067,1.0
+33100,33068,1.0
+33100,33069,1.0
+33100,33071,1.0
+33100,33073,1.0
+33100,33076,1.0
+33100,33109,1.0
+33100,33122,1.0
+33100,33125,1.0
+33100,33126,1.0
+33100,33127,1.0
+33100,33128,1.0
+33100,33129,1.0
+33100,33130,1.0
+33100,33131,1.0
+33100,33132,1.0
+33100,33133,1.0
+33100,33134,1.0
+33100,33135,1.0
+33100,33136,1.0
+33100,33137,1.0
+33100,33138,1.0
+33100,33139,1.0
+33100,33140,1.0
+33100,33141,1.0
+33100,33142,1.0
+33100,33143,1.0
+33100,33144,1.0
+33100,33145,1.0
+33100,33146,1.0
+33100,33147,1.0
+33100,33149,1.0
+33100,33150,1.0
+33100,33154,1.0
+33100,33155,1.0
+33100,33156,1.0
+33100,33157,1.0
+33100,33158,1.0
+33100,33160,1.0
+33100,33161,1.0
+33100,33162,1.0
+33100,33165,1.0
+33100,33166,1.0
+33100,33167,1.0
+33100,33168,1.0
+33100,33169,1.0
+33100,33170,1.0
+33100,33172,1.0
+33100,33173,1.0
+33100,33174,1.0
+33100,33175,1.0
+33100,33176,1.0
+33100,33177,1.0
+33100,33178,1.0
+33100,33179,1.0
+33100,33180,1.0
+33100,33181,1.0
+33100,33182,1.0
+33100,33183,1.0
+33100,33184,1.0
+33100,33185,1.0
+33100,33186,1.0
+33100,33187,1.0
+33100,33189,1.0
+33100,33190,1.0
+33100,33193,1.0
+33100,33194,1.0
+33100,33196,1.0
+33100,33301,1.0
+33100,33304,1.0
+33100,33305,1.0
+33100,33306,1.0
+33100,33308,1.0
+33100,33309,1.0
+33100,33311,1.0
+33100,33312,1.0
+33100,33313,1.0
+33100,33314,1.0
+33100,33315,1.0
+33100,33316,1.0
+33100,33317,1.0
+33100,33319,1.0
+33100,33321,1.0
+33100,33322,1.0
+33100,33323,1.0
+33100,33324,1.0
+33100,33325,1.0
+33100,33326,1.0
+33100,33327,1.0
+33100,33328,1.0
+33100,33330,1.0
+33100,33331,1.0
+33100,33332,1.0
+33100,33334,1.0
+33100,33351,1.0
+33100,33401,1.0
+33100,33403,1.0
+33100,33404,1.0
+33100,33405,1.0
+33100,33406,1.0
+33100,33407,1.0
+33100,33408,1.0
+33100,33409,1.0
+33100,33410,1.0
+33100,33411,1.0
+33100,33412,1.0
+33100,33413,1.0
+33100,33414,1.0
+33100,33415,1.0
+33100,33417,1.0
+33100,33418,1.0
+33100,33426,1.0
+33100,33428,1.0
+33100,33430,1.0
+33100,33431,1.0
+33100,33432,1.0
+33100,33433,1.0
+33100,33434,1.0
+33100,33435,1.0
+33100,33436,1.0
+33100,33437,1.0
+33100,33438,0.9324618736383442
+33100,33440,0.013422478853264449
+33100,33441,1.0
+33100,33442,1.0
+33100,33444,1.0
+33100,33445,1.0
+33100,33446,1.0
+33100,33449,1.0
+33100,33458,0.9805449833994656
+33100,33460,1.0
+33100,33461,1.0
+33100,33462,1.0
+33100,33463,1.0
+33100,33467,1.0
+33100,33469,0.6718804069485778
+33100,33470,1.0
+33100,33472,1.0
+33100,33473,1.0
+33100,33476,1.0
+33100,33477,1.0
+33100,33478,0.9649716624685138
+33100,33480,1.0
+33100,33483,1.0
+33100,33484,1.0
+33100,33486,1.0
+33100,33487,1.0
+33100,33493,1.0
+33100,33496,1.0
+33100,33498,1.0
+33140,46340,1.0
+33140,46345,1.0
+33140,46346,1.0
+33140,46348,0.9875598086124402
+33140,46350,1.0
+33140,46360,0.9697650429799428
+33140,46365,1.0
+33140,46371,1.0
+33140,46382,1.0
+33140,46390,0.9982117310443491
+33140,46391,0.7990952087188978
+33140,46532,0.3506561679790026
+33140,46552,0.33230904302019315
+33140,46554,0.007891541885876164
+33140,46574,0.17064396210576807
+33220,48612,0.015228426395939087
+33220,48615,0.2818835840418574
+33220,48618,0.8433154088633413
+33220,48623,0.07482312584863861
+33220,48626,0.07963145771635406
+33220,48628,0.8627450980392157
+33220,48637,0.11729681452813336
+33220,48640,1.0
+33220,48642,0.9385630634817362
+33220,48652,0.14857881136950904
+33220,48657,1.0
+33220,48662,0.19698870765370136
+33220,48858,0.0033383308345827085
+33220,48880,0.09007404630237137
+33220,48883,0.2589160348216793
+33260,79331,0.005883240307738724
+33260,79701,1.0
+33260,79703,1.0
+33260,79705,1.0
+33260,79706,1.0
+33260,79707,1.0
+33260,79713,0.5016891891891891
+33260,79748,0.16184971098265896
+33260,79749,1.0
+33260,79765,0.3671141908474087
+33260,79766,0.00784955028618152
+33260,79782,0.9906941649899396
+33260,79783,1.0
+33340,53002,1.0
+33340,53004,1.0
+33340,53005,1.0
+33340,53007,1.0
+33340,53010,0.039838562687150116
+33340,53012,1.0
+33340,53013,0.09401451027811368
+33340,53017,1.0
+33340,53018,1.0
+33340,53021,1.0
+33340,53022,1.0
+33340,53024,1.0
+33340,53027,0.974456694342362
+33340,53029,0.9999999999999999
+33340,53033,1.0
+33340,53036,0.015808823529411764
+33340,53037,1.0
+33340,53040,0.906001984126984
+33340,53045,1.0
+33340,53046,1.0
+33340,53051,1.0
+33340,53058,1.0
+33340,53066,0.8931717410582324
+33340,53069,1.0
+33340,53072,1.0
+33340,53074,1.0
+33340,53075,0.046038863976083706
+33340,53076,1.0
+33340,53080,1.0
+33340,53086,1.0
+33340,53089,1.0
+33340,53090,0.9999999999999999
+33340,53091,0.02576808721506442
+33340,53092,1.0
+33340,53095,1.0
+33340,53097,1.0
+33340,53103,1.0
+33340,53110,1.0
+33340,53118,0.9321021938350458
+33340,53119,0.9356276747503568
+33340,53122,1.0
+33340,53129,1.0
+33340,53130,1.0
+33340,53132,1.0
+33340,53146,1.0
+33340,53149,0.9507792412236972
+33340,53150,0.9850301810865192
+33340,53151,1.0
+33340,53153,1.0
+33340,53154,1.0
+33340,53172,1.0
+33340,53183,1.0
+33340,53186,1.0
+33340,53188,1.0
+33340,53189,1.0
+33340,53202,1.0
+33340,53203,1.0
+33340,53204,1.0
+33340,53205,1.0
+33340,53206,1.0
+33340,53207,1.0
+33340,53208,1.0
+33340,53209,1.0
+33340,53210,1.0
+33340,53211,1.0
+33340,53212,1.0
+33340,53213,1.0
+33340,53214,1.0
+33340,53215,1.0
+33340,53216,1.0
+33340,53217,1.0
+33340,53218,1.0
+33340,53219,1.0
+33340,53220,1.0
+33340,53221,1.0
+33340,53222,1.0
+33340,53223,1.0
+33340,53224,1.0
+33340,53225,0.9999999999999999
+33340,53226,1.0
+33340,53227,1.0
+33340,53228,1.0
+33340,53233,1.0
+33340,53235,1.0
+33340,53295,1.0
+33340,53702,1.0
+33460,54002,1.0
+33460,54003,1.0
+33460,54005,0.07100785340314136
+33460,54007,0.73989898989899
+33460,54010,1.0
+33460,54011,1.0
+33460,54013,0.9907913669064748
+33460,54014,1.0
+33460,54015,1.0
+33460,54016,1.0
+33460,54017,0.9913993907901809
+33460,54020,0.013085399449035813
+33460,54021,1.0
+33460,54022,1.0
+33460,54023,1.0
+33460,54025,1.0
+33460,54026,0.3703703703703704
+33460,54027,1.0
+33460,54028,1.0
+33460,54082,1.0
+33460,54723,1.0
+33460,54734,0.0514018691588785
+33460,54740,0.7582684824902723
+33460,54749,0.11372867587327375
+33460,54750,1.0
+33460,54761,1.0
+33460,54767,0.9944116733933561
+33460,54769,0.20916334661354585
+33460,55001,1.0
+33460,55003,1.0
+33460,55005,1.0
+33460,55006,0.6483165396903416
+33460,55008,1.0
+33460,55009,0.0987546699875467
+33460,55011,1.0
+33460,55012,1.0
+33460,55013,1.0
+33460,55014,1.0
+33460,55016,1.0
+33460,55017,1.0
+33460,55020,1.0
+33460,55024,1.0
+33460,55025,1.0
+33460,55029,1.0
+33460,55031,1.0
+33460,55032,1.0
+33460,55033,0.9975244167118829
+33460,55038,1.0
+33460,55040,1.0
+33460,55042,1.0
+33460,55043,1.0
+33460,55044,0.9999999999999998
+33460,55045,1.0
+33460,55047,1.0
+33460,55054,1.0
+33460,55055,1.0
+33460,55056,1.0
+33460,55057,0.11828306641736445
+33460,55065,0.9841798501248961
+33460,55068,1.0
+33460,55069,0.9366425992779784
+33460,55070,1.0
+33460,55071,1.0
+33460,55073,1.0
+33460,55074,1.0
+33460,55075,1.0
+33460,55076,1.0
+33460,55077,1.0
+33460,55079,1.0
+33460,55080,1.0
+33460,55082,1.0
+33460,55084,1.0
+33460,55085,1.0
+33460,55088,0.3309859154929577
+33460,55089,0.16979051819184124
+33460,55090,1.0
+33460,55092,1.0
+33460,55101,1.0
+33460,55102,1.0
+33460,55103,1.0
+33460,55104,1.0
+33460,55105,1.0
+33460,55106,1.0
+33460,55107,1.0
+33460,55108,1.0
+33460,55109,1.0
+33460,55110,0.9999999999999998
+33460,55112,1.0
+33460,55113,1.0
+33460,55114,1.0
+33460,55115,1.0
+33460,55116,1.0
+33460,55117,1.0
+33460,55118,1.0
+33460,55119,1.0
+33460,55120,1.0
+33460,55121,1.0
+33460,55122,1.0
+33460,55123,1.0
+33460,55124,1.0
+33460,55125,1.0
+33460,55126,0.9999999999999999
+33460,55127,1.0
+33460,55128,1.0
+33460,55129,1.0
+33460,55130,1.0
+33460,55150,1.0
+33460,55301,1.0
+33460,55302,1.0
+33460,55303,1.0
+33460,55304,1.0
+33460,55305,1.0
+33460,55306,1.0
+33460,55308,1.0
+33460,55309,1.0
+33460,55311,1.0
+33460,55313,1.0
+33460,55315,1.0
+33460,55316,1.0
+33460,55317,1.0
+33460,55318,1.0
+33460,55319,1.0
+33460,55320,0.6133118841745425
+33460,55321,1.0
+33460,55322,1.0
+33460,55327,0.9999999999999999
+33460,55328,0.9999999999999999
+33460,55330,1.0
+33460,55331,1.0
+33460,55337,1.0
+33460,55339,0.8431174089068826
+33460,55340,1.0
+33460,55341,1.0
+33460,55343,1.0
+33460,55344,1.0
+33460,55345,1.0
+33460,55346,1.0
+33460,55347,1.0
+33460,55349,1.0
+33460,55352,1.0
+33460,55356,1.0
+33460,55357,1.0
+33460,55358,1.0
+33460,55359,1.0
+33460,55360,1.0
+33460,55362,1.0
+33460,55363,1.0
+33460,55364,1.0
+33460,55367,1.0
+33460,55368,1.0
+33460,55369,1.0
+33460,55371,0.993188176620849
+33460,55372,1.0
+33460,55373,1.0
+33460,55374,1.0
+33460,55375,1.0
+33460,55376,1.0
+33460,55378,1.0
+33460,55379,1.0
+33460,55382,0.38871737300028064
+33460,55384,1.0
+33460,55386,1.0
+33460,55387,1.0
+33460,55388,0.9999999999999999
+33460,55390,1.0
+33460,55391,1.0
+33460,55395,0.0148686030428769
+33460,55397,0.9948013367991088
+33460,55398,1.0
+33460,55401,1.0
+33460,55402,1.0
+33460,55403,1.0
+33460,55404,1.0
+33460,55405,1.0
+33460,55406,1.0
+33460,55407,1.0
+33460,55408,1.0
+33460,55409,1.0
+33460,55410,1.0
+33460,55411,1.0
+33460,55412,1.0
+33460,55413,1.0
+33460,55414,1.0
+33460,55415,1.0
+33460,55416,1.0
+33460,55417,1.0
+33460,55418,1.0000000000000002
+33460,55419,1.0
+33460,55420,1.0
+33460,55421,1.0
+33460,55422,1.0
+33460,55423,1.0
+33460,55424,1.0
+33460,55425,1.0
+33460,55426,1.0
+33460,55427,1.0
+33460,55428,1.0
+33460,55429,1.0
+33460,55430,1.0
+33460,55431,1.0
+33460,55432,1.0
+33460,55433,1.0
+33460,55434,1.0
+33460,55435,1.0
+33460,55436,1.0
+33460,55437,1.0
+33460,55438,1.0
+33460,55439,1.0
+33460,55441,1.0
+33460,55442,1.0
+33460,55443,1.0
+33460,55444,1.0
+33460,55445,1.0
+33460,55446,1.0
+33460,55447,1.0
+33460,55448,1.0
+33460,55449,1.0
+33460,55450,1.0
+33460,55454,1.0
+33460,55455,1.0
+33460,56011,0.9244817927170869
+33460,56017,1.0
+33460,56028,0.9416909620991254
+33460,56044,0.08693563880883766
+33460,56050,1.0
+33460,56052,0.7310443490701002
+33460,56057,1.0
+33460,56058,0.9000835421888054
+33460,56063,0.25036710719530103
+33460,56069,0.8999328408327737
+33460,56071,0.9768130659219768
+33460,56082,0.05626241082591748
+33460,56096,0.9119496855345912
+33460,56304,0.5795880149812734
+33460,56313,1.0
+33460,56330,0.8403311649911295
+33460,56342,0.6075209930631618
+33460,56353,0.996665184526456
+33460,56357,0.3100097181729835
+33460,56358,0.030098280098280094
+33460,56359,1.0
+33460,56363,1.0
+33460,56386,1.0
+33460,56450,0.3824975417895772
+33540,59801,1.0
+33540,59802,1.0
+33540,59803,1.0
+33540,59804,1.0
+33540,59808,1.0
+33540,59820,0.4805290227773696
+33540,59821,0.2452671434581405
+33540,59823,1.0
+33540,59825,0.9145936981757876
+33540,59826,1.0
+33540,59833,0.20172540381791484
+33540,59834,1.0
+33540,59846,1.0
+33540,59847,0.9908094733121244
+33540,59851,1.0
+33540,59868,0.9990262901655308
+33660,36505,1.0
+33660,36509,1.0
+33660,36512,1.0
+33660,36513,1.0
+33660,36518,1.0
+33660,36521,1.0
+33660,36522,1.0
+33660,36523,1.0
+33660,36525,1.0
+33660,36528,1.0
+33660,36529,1.0
+33660,36538,1.0
+33660,36539,1.0
+33660,36541,1.0
+33660,36544,1.0
+33660,36548,1.0
+33660,36553,1.0
+33660,36556,1.0
+33660,36558,0.9333160352880124
+33660,36560,1.0
+33660,36568,1.0
+33660,36569,1.0
+33660,36571,1.0
+33660,36572,1.0
+33660,36575,1.0
+33660,36581,1.0
+33660,36582,1.0
+33660,36583,1.0
+33660,36584,1.0
+33660,36585,1.0
+33660,36587,1.0
+33660,36590,1.0
+33660,36602,1.0
+33660,36603,1.0
+33660,36604,1.0
+33660,36605,1.0
+33660,36606,1.0
+33660,36607,1.0
+33660,36608,1.0
+33660,36609,1.0
+33660,36610,1.0
+33660,36611,1.0
+33660,36612,1.0
+33660,36613,1.0
+33660,36615,1.0
+33660,36616,1.0
+33660,36617,1.0
+33660,36618,1.0
+33660,36619,1.0
+33660,36688,1.0
+33660,36693,1.0
+33660,36695,1.0
+33660,36919,0.007466168922071863
+33700,95230,0.2395543175487465
+33700,95307,1.0
+33700,95313,1.0
+33700,95316,1.0
+33700,95319,1.0
+33700,95323,1.0
+33700,95326,1.0
+33700,95328,1.0
+33700,95329,0.11097560975609756
+33700,95350,1.0
+33700,95351,1.0
+33700,95354,1.0
+33700,95355,1.0
+33700,95356,1.0
+33700,95357,1.0
+33700,95358,1.0
+33700,95360,0.9845457650273224
+33700,95361,0.9869028788358114
+33700,95363,1.0
+33700,95367,1.0
+33700,95368,1.0
+33700,95380,0.9621611125943546
+33700,95382,1.0
+33700,95385,0.6456876456876457
+33700,95386,1.0
+33700,95387,1.0
+33740,71201,1.0
+33740,71202,1.0
+33740,71203,1.0
+33740,71209,1.0
+33740,71220,1.0
+33740,71222,0.8937087043952887
+33740,71223,1.0
+33740,71225,1.0
+33740,71227,0.039339752407152685
+33740,71229,1.0
+33740,71234,0.9536573146292585
+33740,71238,0.7167794798717492
+33740,71241,1.0
+33740,71250,1.0
+33740,71256,0.7412790697674418
+33740,71260,1.0
+33740,71261,1.0
+33740,71264,0.4861244019138756
+33740,71277,1.0
+33740,71280,1.0
+33740,71291,1.0
+33740,71292,1.0
+33740,71418,0.03129467831612391
+33740,71749,0.1302504816955684
+33780,48111,0.0017488715052111645
+33780,48117,1.0
+33780,48131,1.0
+33780,48133,1.0
+33780,48134,0.033865844544095663
+33780,48140,1.0
+33780,48144,1.0
+33780,48145,1.0
+33780,48157,1.0
+33780,48159,1.0
+33780,48160,0.3438520130576714
+33780,48161,1.0
+33780,48162,1.0
+33780,48164,0.007629427792915531
+33780,48166,1.0
+33780,48177,1.0
+33780,48179,1.0
+33780,48182,1.0
+33780,48191,0.04440059200789344
+33780,49229,0.03543913713405239
+33780,49238,0.18904899135446687
+33780,49267,0.9302554027504912
+33780,49270,1.0
+33780,49276,0.3339980059820538
+33860,35010,0.012730591852421216
+33860,36003,1.0
+33860,36006,0.7570449352627571
+33860,36013,1.0
+33860,36020,1.0
+33860,36022,1.0
+33860,36024,1.0
+33860,36025,1.0
+33860,36026,0.30303030303030304
+33860,36032,0.8460880718255664
+33860,36036,0.7024463305042437
+33860,36040,1.0
+33860,36041,0.016691957511380882
+33860,36043,1.0
+33860,36046,0.3731543624161074
+33860,36047,1.0
+33860,36051,0.828125
+33860,36052,0.9769959404600812
+33860,36054,1.0
+33860,36064,1.0
+33860,36066,0.9999999999999999
+33860,36067,1.0
+33860,36069,0.9550387596899224
+33860,36078,0.6405645344866834
+33860,36080,0.9964773227653017
+33860,36091,0.09484649122807018
+33860,36092,1.0
+33860,36093,1.0
+33860,36104,1.0
+33860,36105,1.0
+33860,36106,1.0
+33860,36107,1.0
+33860,36108,1.0
+33860,36109,1.0
+33860,36110,1.0
+33860,36111,1.0
+33860,36112,1.0
+33860,36113,1.0
+33860,36115,1.0
+33860,36116,1.0
+33860,36117,1.0
+33860,36703,0.012460602506780034
+33860,36749,0.620752984389348
+33860,36752,1.0
+33860,36758,0.2082152974504249
+33860,36761,0.4659776055124892
+33860,36785,0.76137339055794
+34060,26374,0.9549090909090908
+34060,26405,0.06615776081424936
+34060,26410,1.0
+34060,26425,1.0
+34060,26440,0.2740088105726872
+34060,26444,1.0
+34060,26501,1.0
+34060,26505,1.0
+34060,26508,1.0
+34060,26519,1.0
+34060,26520,1.0
+34060,26521,1.0
+34060,26525,1.0
+34060,26534,1.0
+34060,26537,1.0
+34060,26541,1.0
+34060,26542,1.0
+34060,26543,1.0
+34060,26547,1.0
+34060,26554,0.021972974932920785
+34060,26562,0.3769716088328076
+34060,26570,0.552990264255911
+34060,26588,0.1126005361930295
+34060,26590,1.0
+34060,26705,1.0
+34060,26716,1.0
+34060,26764,1.0
+34100,37708,1.0
+34100,37709,0.9764201500535906
+34100,37711,0.014869151467089609
+34100,37725,0.9878834446480288
+34100,37760,1.0
+34100,37811,0.04821150855365474
+34100,37813,1.0
+34100,37814,1.0
+34100,37820,1.0
+34100,37848,0.7276422764227642
+34100,37860,1.0
+34100,37861,1.0
+34100,37871,0.3945697394350777
+34100,37876,0.020002735416809136
+34100,37877,1.0
+34100,37881,0.5491051942383238
+34100,37888,0.9186428310835462
+34100,37890,1.0
+34100,37891,0.7686155543298401
+34580,98221,0.9952518478633317
+34580,98229,0.009861152336664358
+34580,98232,1.0
+34580,98233,1.0
+34580,98235,1.0
+34580,98237,0.9997515527950309
+34580,98238,1.0
+34580,98241,0.14936589948332551
+34580,98255,1.0
+34580,98257,1.0
+34580,98263,1.0
+34580,98267,1.0
+34580,98273,1.0
+34580,98274,1.0
+34580,98283,0.8179723502304147
+34580,98284,0.9128683572397354
+34580,98292,0.0030495068375661124
+34620,46001,0.006501577588679607
+34620,46012,0.007726383022561039
+34620,46017,0.008298755186721992
+34620,46989,0.0032723772858517805
+34620,47302,0.9976080023195129
+34620,47303,1.0
+34620,47304,1.0
+34620,47305,1.0
+34620,47306,1.0
+34620,47320,0.9221093372036768
+34620,47334,0.9721115537848606
+34620,47336,0.11715261360651433
+34620,47338,1.0
+34620,47342,1.0
+34620,47354,0.04162976085031001
+34620,47356,0.011070749005362394
+34620,47367,1.0
+34620,47368,0.15536028119507908
+34620,47383,1.0
+34620,47396,1.0
+34740,49303,0.9557130203720108
+34740,49318,0.6781115879828327
+34740,49330,0.006801470588235293
+34740,49403,0.040436716538617065
+34740,49404,0.01693070504293143
+34740,49412,0.006597379123361952
+34740,49415,0.9101851851851852
+34740,49425,0.7983606557377049
+34740,49437,0.8135323094755144
+34740,49440,1.0
+34740,49441,1.0
+34740,49442,1.0
+34740,49444,1.0
+34740,49445,1.0
+34740,49448,0.10058651026392962
+34740,49451,0.9664005322687956
+34740,49456,0.05839298207846725
+34740,49457,0.9932796971131094
+34740,49461,1.0
+34820,28420,1.0
+34820,28422,1.0
+34820,28436,0.0031774852473899226
+34820,28451,1.0
+34820,28452,1.0
+34820,28456,0.07927829414980864
+34820,28461,1.0
+34820,28462,1.0
+34820,28465,1.0
+34820,28467,1.0
+34820,28468,1.0
+34820,28469,1.0
+34820,28470,1.0
+34820,28479,1.0
+34820,29511,1.0
+34820,29526,1.0
+34820,29527,1.0
+34820,29544,1.0
+34820,29545,1.0
+34820,29566,1.0
+34820,29568,1.0
+34820,29569,1.0
+34820,29572,1.0
+34820,29575,1.0
+34820,29576,0.6782704736971283
+34820,29577,1.0
+34820,29579,1.0
+34820,29581,0.6197849462365591
+34820,29582,1.0
+34820,29588,1.0
+34900,94503,1.0
+34900,94508,1.0
+34900,94515,0.9188652482269504
+34900,94558,1.0
+34900,94559,1.0
+34900,94567,1.0
+34900,94573,1.0
+34900,94574,1.0
+34900,94576,1.0
+34900,94589,0.00020083009773731424
+34900,94599,1.0
+34940,34101,1.0
+34940,34102,1.0
+34940,34103,1.0
+34940,34104,1.0
+34940,34105,1.0
+34940,34108,1.0
+34940,34109,1.0
+34940,34110,0.9922936133320488
+34940,34112,1.0
+34940,34113,1.0
+34940,34114,1.0
+34940,34116,1.0
+34940,34117,1.0
+34940,34119,0.9968162758192266
+34940,34120,1.0
+34940,34134,0.12535430839002268
+34940,34137,1.0
+34940,34138,1.0
+34940,34139,1.0
+34940,34140,1.0
+34940,34141,0.9741379310344828
+34940,34142,0.9499707002636976
+34940,34145,1.0
+34980,37010,0.3620431716178671
+34980,37012,0.20767888307155324
+34980,37013,1.0
+34980,37014,1.0
+34980,37015,0.9906890130353817
+34980,37016,1.0
+34980,37020,0.2948768864177919
+34980,37022,1.0
+34980,37025,0.17169932540957275
+34980,37026,1.0
+34980,37027,1.0
+34980,37029,1.0
+34980,37030,1.0
+34980,37031,1.0
+34980,37032,1.0000000000000002
+34980,37035,1.0
+34980,37036,1.0
+34980,37037,1.0
+34980,37043,0.0047815746651646025
+34980,37046,0.9836289222373806
+34980,37048,1.0
+34980,37049,1.0
+34980,37051,0.6720152298069078
+34980,37055,0.990156897572528
+34980,37057,1.0
+34980,37060,0.87847533632287
+34980,37062,1.0
+34980,37064,1.0
+34980,37066,1.0
+34980,37067,1.0
+34980,37069,1.0
+34980,37072,1.0
+34980,37073,1.0
+34980,37074,1.0
+34980,37075,1.0
+34980,37076,1.0
+34980,37080,1.0
+34980,37082,1.0
+34980,37083,1.0
+34980,37085,1.0000000000000002
+34980,37086,1.0
+34980,37087,1.0
+34980,37090,1.0
+34980,37091,0.002427993334920257
+34980,37095,0.2826321467098166
+34980,37110,0.007724265271580244
+34980,37115,1.0
+34980,37118,1.0
+34980,37122,1.0000000000000002
+34980,37127,1.0
+34980,37128,1.0
+34980,37129,1.0
+34980,37130,1.0
+34980,37132,1.0
+34980,37135,1.0
+34980,37138,1.0
+34980,37141,1.0
+34980,37143,1.0
+34980,37145,0.9258229021789522
+34980,37146,1.0
+34980,37148,1.0
+34980,37149,1.0
+34980,37150,0.6996322026971802
+34980,37151,1.0
+34980,37153,0.9552536231884058
+34980,37165,1.0
+34980,37166,0.008627100996578908
+34980,37167,1.0
+34980,37172,1.0
+34980,37174,1.0
+34980,37179,1.0
+34980,37181,0.878748370273794
+34980,37184,1.0
+34980,37186,1.0
+34980,37187,0.9999999999999999
+34980,37188,0.9999999999999999
+34980,37189,1.0
+34980,37190,0.9898714009331968
+34980,37201,1.0
+34980,37203,1.0
+34980,37204,1.0
+34980,37205,1.0
+34980,37206,1.0
+34980,37207,1.0
+34980,37208,1.0
+34980,37209,1.0
+34980,37210,1.0
+34980,37211,1.0
+34980,37212,1.0
+34980,37213,1.0
+34980,37214,1.0
+34980,37215,1.0
+34980,37216,1.0
+34980,37217,1.0
+34980,37218,1.0
+34980,37219,1.0
+34980,37220,1.0
+34980,37221,1.0
+34980,37228,1.0
+34980,37240,1.0
+34980,37357,0.06240928882438316
+34980,38401,0.9923809873506031
+34980,38451,0.8923971749065226
+34980,38461,0.6033357505438723
+34980,38474,0.9611638041527814
+34980,38476,0.6441368078175894
+34980,38482,1.0
+34980,38483,0.019954087939254808
+34980,38487,0.8003784295175024
+34980,38547,1.0
+34980,38548,0.3844049247606019
+34980,38552,1.0
+34980,38560,1.0
+34980,38563,1.0
+34980,38567,0.9489795918367347
+34980,38569,0.6942148760330579
+35100,28501,0.03158565893373878
+35100,28504,0.00212549671934202
+35100,28510,1.0
+35100,28515,1.0
+35100,28519,1.0
+35100,28523,1.0
+35100,28526,0.9883487344314986
+35100,28527,1.0
+35100,28529,1.0
+35100,28530,0.08647026732133115
+35100,28532,1.0
+35100,28533,1.0
+35100,28537,1.0
+35100,28552,1.0
+35100,28555,0.3938164251207729
+35100,28556,1.0
+35100,28560,1.0
+35100,28562,0.9999999999999999
+35100,28571,1.0
+35100,28572,0.05833716123105191
+35100,28573,1.0000000000000002
+35100,28574,0.013574361011786518
+35100,28583,1.0
+35100,28585,1.0
+35100,28586,0.9374543684594792
+35100,28587,1.0
+35300,06401,1.0
+35300,06403,1.0
+35300,06405,1.0
+35300,06410,1.0
+35300,06418,1.0
+35300,06437,1.0
+35300,06443,1.0
+35300,06450,1.0
+35300,06451,0.998198124411319
+35300,06460,1.0
+35300,06461,1.0
+35300,06471,1.0
+35300,06472,1.0
+35300,06473,1.0
+35300,06477,1.0
+35300,06478,1.0
+35300,06483,1.0
+35300,06488,1.0
+35300,06492,1.0
+35300,06510,1.0
+35300,06511,1.0
+35300,06512,1.0
+35300,06513,1.0
+35300,06514,1.0
+35300,06515,1.0
+35300,06516,1.0
+35300,06517,1.0
+35300,06518,1.0
+35300,06519,1.0
+35300,06524,1.0
+35300,06525,1.0
+35300,06702,1.0
+35300,06704,1.0
+35300,06705,1.0
+35300,06706,1.0
+35300,06708,0.9974165476918894
+35300,06710,1.0
+35300,06712,1.0
+35300,06716,1.0
+35300,06762,1.0
+35300,06770,1.0
+35380,70001,1.0
+35380,70002,1.0
+35380,70003,1.0
+35380,70005,1.0
+35380,70006,1.0
+35380,70030,0.8998909487459106
+35380,70031,1.0
+35380,70032,1.0
+35380,70036,1.0
+35380,70037,1.0
+35380,70038,1.0
+35380,70039,1.0
+35380,70040,1.0
+35380,70041,1.0
+35380,70043,1.0
+35380,70047,1.0
+35380,70049,1.0
+35380,70050,1.0
+35380,70051,1.0
+35380,70052,1.0
+35380,70053,1.0
+35380,70056,1.0
+35380,70057,1.0
+35380,70058,1.0
+35380,70062,1.0
+35380,70065,1.0
+35380,70067,1.0
+35380,70068,1.0000000000000002
+35380,70070,1.0
+35380,70071,1.0
+35380,70072,1.0
+35380,70075,1.0
+35380,70076,1.0
+35380,70079,1.0
+35380,70080,1.0
+35380,70082,1.0
+35380,70083,1.0
+35380,70084,1.0
+35380,70085,1.0
+35380,70086,1.0
+35380,70087,1.0
+35380,70090,1.0
+35380,70091,1.0
+35380,70092,1.0
+35380,70094,1.0
+35380,70112,1.0
+35380,70113,1.0
+35380,70114,1.0
+35380,70115,1.0
+35380,70116,1.0
+35380,70117,1.0
+35380,70118,1.0
+35380,70119,1.0
+35380,70121,1.0
+35380,70122,1.0
+35380,70123,1.0
+35380,70124,1.0
+35380,70125,1.0
+35380,70126,1.0
+35380,70127,1.0
+35380,70128,1.0
+35380,70129,1.0
+35380,70130,1.0
+35380,70131,1.0
+35380,70358,1.0
+35380,70420,1.0
+35380,70427,0.033544651325313236
+35380,70431,0.9923592992918376
+35380,70433,0.9980406642469406
+35380,70435,0.9972896464494369
+35380,70437,0.8773680222278353
+35380,70445,1.0
+35380,70447,1.0
+35380,70448,1.0
+35380,70452,1.0
+35380,70458,1.0
+35380,70460,1.0
+35380,70461,1.0
+35380,70463,1.0
+35380,70464,1.0
+35380,70471,1.0
+35380,70723,1.0
+35380,70743,1.0
+35380,70763,1.0
+35620,06390,1.0
+35620,07001,1.0
+35620,07002,1.0
+35620,07003,1.0
+35620,07004,1.0
+35620,07005,1.0
+35620,07006,1.0
+35620,07008,1.0
+35620,07009,1.0
+35620,07010,1.0
+35620,07011,1.0
+35620,07012,1.0
+35620,07013,1.0
+35620,07014,1.0
+35620,07016,1.0
+35620,07017,1.0
+35620,07018,1.0
+35620,07020,1.0
+35620,07021,1.0
+35620,07022,1.0
+35620,07023,1.0
+35620,07024,1.0
+35620,07026,1.0
+35620,07027,1.0
+35620,07028,1.0
+35620,07029,1.0
+35620,07030,1.0
+35620,07031,1.0
+35620,07032,1.0
+35620,07033,1.0
+35620,07034,1.0
+35620,07035,1.0
+35620,07036,1.0
+35620,07039,1.0
+35620,07040,1.0
+35620,07041,1.0
+35620,07042,1.0
+35620,07043,1.0
+35620,07044,1.0
+35620,07045,1.0
+35620,07046,1.0
+35620,07047,1.0
+35620,07050,1.0
+35620,07052,1.0
+35620,07054,1.0
+35620,07055,1.0
+35620,07057,1.0
+35620,07058,1.0
+35620,07059,1.0
+35620,07060,1.0
+35620,07062,1.0
+35620,07063,0.9999999999999999
+35620,07064,1.0
+35620,07065,1.0
+35620,07066,1.0
+35620,07067,1.0
+35620,07068,1.0
+35620,07069,1.0
+35620,07070,1.0
+35620,07071,1.0
+35620,07072,1.0
+35620,07073,1.0
+35620,07074,1.0
+35620,07075,1.0
+35620,07076,1.0
+35620,07077,1.0
+35620,07078,1.0
+35620,07079,1.0
+35620,07080,1.0
+35620,07081,1.0
+35620,07082,1.0
+35620,07083,1.0
+35620,07086,1.0
+35620,07087,1.0
+35620,07088,1.0
+35620,07090,1.0
+35620,07092,1.0
+35620,07093,1.0
+35620,07094,1.0
+35620,07095,1.0
+35620,07102,1.0
+35620,07103,1.0
+35620,07104,1.0
+35620,07105,1.0
+35620,07106,1.0
+35620,07107,1.0
+35620,07108,1.0
+35620,07109,1.0
+35620,07110,1.0000000000000002
+35620,07111,1.0
+35620,07112,1.0
+35620,07114,1.0
+35620,07201,1.0
+35620,07202,1.0
+35620,07203,1.0
+35620,07204,1.0
+35620,07205,1.0
+35620,07206,1.0
+35620,07208,1.0
+35620,07302,1.0
+35620,07304,1.0
+35620,07305,1.0
+35620,07306,1.0
+35620,07307,1.0
+35620,07310,1.0
+35620,07311,1.0
+35620,07401,1.0
+35620,07403,1.0
+35620,07405,1.0
+35620,07407,1.0
+35620,07410,1.0
+35620,07416,1.0
+35620,07417,1.0
+35620,07418,1.0
+35620,07419,1.0
+35620,07420,1.0
+35620,07421,1.0
+35620,07422,1.0
+35620,07423,1.0
+35620,07424,1.0
+35620,07430,1.0
+35620,07432,1.0
+35620,07435,1.0
+35620,07436,1.0
+35620,07438,1.0
+35620,07439,1.0
+35620,07440,1.0
+35620,07442,1.0
+35620,07444,1.0
+35620,07446,1.0
+35620,07450,1.0
+35620,07452,1.0
+35620,07456,1.0
+35620,07457,1.0
+35620,07458,1.0
+35620,07460,1.0
+35620,07461,1.0
+35620,07462,1.0
+35620,07463,1.0
+35620,07465,1.0
+35620,07470,1.0
+35620,07480,1.0
+35620,07481,1.0
+35620,07501,1.0
+35620,07502,1.0
+35620,07503,1.0
+35620,07504,1.0
+35620,07505,1.0
+35620,07506,1.0
+35620,07508,1.0
+35620,07512,1.0
+35620,07513,1.0
+35620,07514,1.0
+35620,07522,1.0
+35620,07524,1.0
+35620,07601,1.0
+35620,07603,1.0
+35620,07604,1.0
+35620,07605,1.0
+35620,07606,1.0
+35620,07607,1.0
+35620,07608,1.0
+35620,07620,1.0
+35620,07621,1.0
+35620,07624,1.0
+35620,07626,1.0
+35620,07627,1.0
+35620,07628,1.0
+35620,07630,1.0
+35620,07631,1.0
+35620,07632,1.0
+35620,07640,1.0
+35620,07641,1.0
+35620,07642,1.0
+35620,07643,1.0
+35620,07644,1.0
+35620,07645,1.0
+35620,07646,1.0
+35620,07647,1.0
+35620,07648,1.0
+35620,07649,1.0
+35620,07650,1.0
+35620,07652,1.0
+35620,07656,1.0
+35620,07657,1.0
+35620,07660,1.0
+35620,07661,1.0
+35620,07662,1.0
+35620,07663,1.0
+35620,07666,1.0
+35620,07670,1.0
+35620,07675,1.0
+35620,07676,1.0
+35620,07677,1.0
+35620,07701,1.0
+35620,07702,1.0
+35620,07703,1.0
+35620,07704,1.0
+35620,07711,1.0
+35620,07712,1.0
+35620,07716,1.0
+35620,07717,1.0
+35620,07718,1.0
+35620,07719,1.0
+35620,07720,1.0
+35620,07721,1.0
+35620,07722,1.0
+35620,07723,1.0
+35620,07724,1.0
+35620,07726,1.0
+35620,07727,1.0
+35620,07728,1.0
+35620,07730,1.0
+35620,07731,1.0
+35620,07732,1.0
+35620,07733,1.0
+35620,07734,1.0
+35620,07735,1.0
+35620,07737,1.0
+35620,07738,1.0
+35620,07739,1.0
+35620,07740,1.0
+35620,07746,1.0
+35620,07747,1.0
+35620,07748,1.0
+35620,07750,1.0
+35620,07751,1.0
+35620,07753,1.0
+35620,07755,1.0
+35620,07756,1.0
+35620,07757,1.0
+35620,07758,1.0
+35620,07760,1.0
+35620,07762,1.0
+35620,07764,1.0
+35620,07801,1.0
+35620,07803,1.0
+35620,07821,0.9091700206678996
+35620,07822,1.0
+35620,07826,1.0
+35620,07827,1.0
+35620,07828,1.0
+35620,07830,1.0
+35620,07834,1.0
+35620,07836,1.0
+35620,07840,0.23069449562799424
+35620,07842,1.0
+35620,07843,1.0
+35620,07847,1.0
+35620,07848,1.0
+35620,07849,1.0
+35620,07850,1.0
+35620,07851,1.0
+35620,07852,1.0
+35620,07853,1.0
+35620,07856,1.0
+35620,07857,1.0
+35620,07860,0.9820450395617772
+35620,07865,0.3522156235724075
+35620,07866,1.0
+35620,07869,1.0
+35620,07870,1.0
+35620,07871,1.0
+35620,07874,0.9911285794497472
+35620,07876,1.0
+35620,07878,1.0
+35620,07881,1.0
+35620,07882,0.020494065691415955
+35620,07885,1.0
+35620,07901,1.0
+35620,07920,1.0
+35620,07921,1.0
+35620,07922,1.0
+35620,07924,1.0
+35620,07926,1.0
+35620,07927,1.0
+35620,07928,1.0
+35620,07930,1.0
+35620,07931,1.0
+35620,07932,1.0
+35620,07933,1.0
+35620,07934,1.0
+35620,07935,1.0
+35620,07936,1.0
+35620,07939,1.0
+35620,07940,1.0
+35620,07945,1.0
+35620,07946,1.0
+35620,07950,1.0
+35620,07960,1.0
+35620,07961,1.0
+35620,07970,1.0
+35620,07974,1.0
+35620,07976,1.0
+35620,07977,1.0
+35620,07979,1.0
+35620,07980,1.0
+35620,07981,1.0
+35620,08005,1.0
+35620,08006,1.0
+35620,08008,1.0
+35620,08050,1.0
+35620,08087,0.9687603717225356
+35620,08092,1.0
+35620,08501,0.8971437253114555
+35620,08502,1.0
+35620,08510,1.0
+35620,08512,0.4873824839188521
+35620,08514,1.0
+35620,08525,0.1302706104468219
+35620,08527,1.0
+35620,08528,1.0
+35620,08530,0.9328459918225748
+35620,08533,1.0
+35620,08535,1.0
+35620,08536,1.0
+35620,08540,0.2954048604478404
+35620,08551,1.0
+35620,08553,1.0
+35620,08555,1.0
+35620,08558,0.9834062452858652
+35620,08559,1.0
+35620,08691,0.015757415254237288
+35620,08701,1.0
+35620,08720,1.0
+35620,08721,1.0
+35620,08722,1.0
+35620,08723,1.0
+35620,08724,1.0
+35620,08730,1.0
+35620,08731,1.0
+35620,08732,1.0
+35620,08733,1.0
+35620,08734,1.0
+35620,08735,1.0
+35620,08736,1.0
+35620,08738,1.0
+35620,08740,1.0
+35620,08741,1.0
+35620,08742,1.0
+35620,08750,1.0
+35620,08751,1.0
+35620,08752,1.0
+35620,08753,1.0
+35620,08755,1.0
+35620,08757,1.0
+35620,08758,1.0
+35620,08759,1.0
+35620,08801,1.0
+35620,08802,0.6968281288418982
+35620,08804,0.7181522915914832
+35620,08805,1.0
+35620,08807,1.0
+35620,08809,1.0
+35620,08810,1.0
+35620,08812,1.0
+35620,08816,1.0
+35620,08817,1.0
+35620,08820,1.0
+35620,08821,1.0
+35620,08822,1.0
+35620,08823,1.0
+35620,08824,1.0
+35620,08825,1.0
+35620,08826,1.0
+35620,08827,0.9336789803413263
+35620,08828,1.0
+35620,08829,1.0
+35620,08830,1.0
+35620,08831,1.0
+35620,08832,1.0
+35620,08833,1.0
+35620,08835,1.0
+35620,08836,1.0
+35620,08837,1.0
+35620,08840,1.0
+35620,08844,1.0
+35620,08846,1.0
+35620,08848,1.0
+35620,08850,1.0
+35620,08852,1.0
+35620,08853,1.0
+35620,08854,1.0
+35620,08857,1.0
+35620,08858,1.0
+35620,08859,1.0
+35620,08861,1.0
+35620,08863,1.0
+35620,08867,1.0
+35620,08869,1.0
+35620,08872,1.0
+35620,08873,1.0
+35620,08876,1.0
+35620,08879,1.0
+35620,08880,1.0
+35620,08882,1.0
+35620,08884,1.0
+35620,08887,1